From e9d6a0068bfafee418f59a71991cef1c89aca063 Mon Sep 17 00:00:00 2001 From: Dick Kreisberg Date: Tue, 29 Jul 2014 15:02:12 -0700 Subject: [PATCH] regression fixed for csv/tsv export --- .hgignore | 11 + src/dataimport/META_example/META.example.pw | 39 + .../META_example/META.example.rface | 37 + src/dataimport/README | 46 + src/dataimport/config/META | 10 + src/dataimport/config/rfex_sql.config | 32 + src/dataimport/config/rfex_sql_breve.config | 33 + src/dataimport/config/rfex_sql_sandbox.config | 29 + .../networks/consolidated_pathway_list.tsv | 2429 + .../networks/out_pathway_all_list.tsv | 2268 + .../networks/out_pathway_members_list.tsv | 96553 ++++++++++++++++ .../networks/uniprot_pathways_gene.tsv | 223 + src/dataimport/python/README | 36 + .../python/compute_feature_interestingness.py | 106 + src/dataimport/python/compute_quantiles.py | 100 + .../python/createPWShardedDataset.py | 66 + .../python/createRFShardedDataset.py | 66 + .../python/createSchemaFromTemplate.py | 49 + src/dataimport/python/db_util.py | 195 + src/dataimport/python/drop_dataset.py | 79 + .../python/filterAssociationsByPvalue.py | 23 + src/dataimport/python/fix_datasets.py | 56 + src/dataimport/python/getPairwiseInfo.py | 76 + src/dataimport/python/getRFACEInfo.py | 75 + src/dataimport/python/hide_dataset.py | 80 + src/dataimport/python/manage_pathways.py | 56 + .../python/parse_aggressiveness_features.py | 209 + .../python/parse_associations_rfex.py | 252 + src/dataimport/python/parse_features_rfex.py | 229 + src/dataimport/python/parse_gsea.py | 28 + src/dataimport/python/parse_pairwise.py | 243 + src/dataimport/python/parse_samples_values.py | 92 + src/dataimport/python/process_meta_config.py | 108 + src/dataimport/python/smtp.py | 22 + .../python/start_re_dataimport_fixed.py | 105 + src/dataimport/python/translatePathways.py | 47 + src/dataimport/python/update_rgex_dataset.py | 66 + .../sql/create_schema_pairwise_template.sql | 56 + .../sql/create_schema_re_template.sql | 86 + .../sql/create_schema_rface_template.sql | 64 + src/dataimport/sql/drop_ds_template.sql | 12 + src/dataimport/sql/hide_ds_template.sql | 1 + src/dataimport/sql/pathway_schema.sql | 11 + .../populate_mv_rf_associations_template.sql | 56 + src/dataimport/sql/reset_tables.sql | 5 + src/dataimport/sql/rfex_admin.sql | 23354 ++++ src/dataimport/sql/rfex_admin.sql~ | 23351 ++++ src/instances/all_pairs/appspot.html | 75 + src/instances/all_pairs/appspot/globals.js | 425 + .../all_pairs/appspot/globals.js.orig | 428 + src/instances/all_pairs/appspot/topbar.css | 65 + src/instances/all_pairs/index.html | 111 + src/instances/all_pairs/index_debug.html | 107 + src/instances/all_pairs/index_local.html | 109 + src/instances/all_pairs/js/association.js | 177 + src/instances/all_pairs/js/globals.js | 515 + src/instances/gtown/js/globals.js | 495 + src/instances/random_forest/appspot.html | 99 + .../random_forest/appspot/globals.js | 421 + .../random_forest/appspot/globals.js.orig | 431 + .../random_forest/appspot/topbar.css | 65 + src/instances/random_forest/index.html | 110 + src/instances/random_forest/index_debug.html | 107 + src/instances/random_forest/index_local.html | 110 + src/instances/random_forest/js/association.js | 102 + src/instances/random_forest/js/globals.js | 515 + src/webapp/css/icons.css | 14 + src/webapp/data/cytoband.hg18.json | 6036 + src/webapp/data/cytoband.hg19.json | 6036 + src/webapp/help/contact_us.html | 30 + src/webapp/help/quick_start.html | 261 + src/webapp/help/user_guide.html | 598 + src/webapp/index.html.maintenance | 53 + src/webapp/inventory.html | 47 + src/webapp/js/controller/data_plot.js | 1673 + src/webapp/js/controller/data_retrieval.js | 958 + src/webapp/js/model/data_loader.js | 340 + src/webapp/js/namespace.js | 2 + src/webapp/js/overrides.js | 503 + src/webapp/js/utils.js | 716 + src/webapp/js/view/google_drive.js | 249 + src/webapp/js/view/layout.js | 2294 + src/webapp/js/view/panels.js | 677 + 83 files changed, 176124 insertions(+) create mode 100644 .hgignore create mode 100644 src/dataimport/META_example/META.example.pw create mode 100755 src/dataimport/META_example/META.example.rface create mode 100644 src/dataimport/README create mode 100644 src/dataimport/config/META create mode 100644 src/dataimport/config/rfex_sql.config create mode 100644 src/dataimport/config/rfex_sql_breve.config create mode 100755 src/dataimport/config/rfex_sql_sandbox.config create mode 100755 src/dataimport/networks/consolidated_pathway_list.tsv create mode 100644 src/dataimport/networks/out_pathway_all_list.tsv create mode 100644 src/dataimport/networks/out_pathway_members_list.tsv create mode 100644 src/dataimport/networks/uniprot_pathways_gene.tsv create mode 100755 src/dataimport/python/README create mode 100755 src/dataimport/python/compute_feature_interestingness.py create mode 100755 src/dataimport/python/compute_quantiles.py create mode 100644 src/dataimport/python/createPWShardedDataset.py create mode 100644 src/dataimport/python/createRFShardedDataset.py create mode 100755 src/dataimport/python/createSchemaFromTemplate.py create mode 100755 src/dataimport/python/db_util.py create mode 100644 src/dataimport/python/drop_dataset.py create mode 100755 src/dataimport/python/filterAssociationsByPvalue.py create mode 100644 src/dataimport/python/fix_datasets.py create mode 100644 src/dataimport/python/getPairwiseInfo.py create mode 100644 src/dataimport/python/getRFACEInfo.py create mode 100644 src/dataimport/python/hide_dataset.py create mode 100755 src/dataimport/python/manage_pathways.py create mode 100755 src/dataimport/python/parse_aggressiveness_features.py create mode 100755 src/dataimport/python/parse_associations_rfex.py create mode 100755 src/dataimport/python/parse_features_rfex.py create mode 100755 src/dataimport/python/parse_gsea.py create mode 100755 src/dataimport/python/parse_pairwise.py create mode 100755 src/dataimport/python/parse_samples_values.py create mode 100644 src/dataimport/python/process_meta_config.py create mode 100644 src/dataimport/python/smtp.py create mode 100755 src/dataimport/python/start_re_dataimport_fixed.py create mode 100755 src/dataimport/python/translatePathways.py create mode 100755 src/dataimport/python/update_rgex_dataset.py create mode 100644 src/dataimport/sql/create_schema_pairwise_template.sql create mode 100755 src/dataimport/sql/create_schema_re_template.sql create mode 100644 src/dataimport/sql/create_schema_rface_template.sql create mode 100644 src/dataimport/sql/drop_ds_template.sql create mode 100644 src/dataimport/sql/hide_ds_template.sql create mode 100644 src/dataimport/sql/pathway_schema.sql create mode 100644 src/dataimport/sql/populate_mv_rf_associations_template.sql create mode 100755 src/dataimport/sql/reset_tables.sql create mode 100644 src/dataimport/sql/rfex_admin.sql create mode 100755 src/dataimport/sql/rfex_admin.sql~ create mode 100644 src/instances/all_pairs/appspot.html create mode 100644 src/instances/all_pairs/appspot/globals.js create mode 100644 src/instances/all_pairs/appspot/globals.js.orig create mode 100644 src/instances/all_pairs/appspot/topbar.css create mode 100755 src/instances/all_pairs/index.html create mode 100644 src/instances/all_pairs/index_debug.html create mode 100644 src/instances/all_pairs/index_local.html create mode 100644 src/instances/all_pairs/js/association.js create mode 100755 src/instances/all_pairs/js/globals.js create mode 100755 src/instances/gtown/js/globals.js create mode 100644 src/instances/random_forest/appspot.html create mode 100644 src/instances/random_forest/appspot/globals.js create mode 100644 src/instances/random_forest/appspot/globals.js.orig create mode 100644 src/instances/random_forest/appspot/topbar.css create mode 100755 src/instances/random_forest/index.html create mode 100644 src/instances/random_forest/index_debug.html create mode 100644 src/instances/random_forest/index_local.html create mode 100644 src/instances/random_forest/js/association.js create mode 100644 src/instances/random_forest/js/globals.js create mode 100644 src/webapp/css/icons.css create mode 100644 src/webapp/data/cytoband.hg18.json create mode 100644 src/webapp/data/cytoband.hg19.json create mode 100644 src/webapp/help/contact_us.html create mode 100644 src/webapp/help/quick_start.html create mode 100644 src/webapp/help/user_guide.html create mode 100644 src/webapp/index.html.maintenance create mode 100644 src/webapp/inventory.html create mode 100755 src/webapp/js/controller/data_plot.js create mode 100755 src/webapp/js/controller/data_retrieval.js create mode 100755 src/webapp/js/model/data_loader.js create mode 100644 src/webapp/js/namespace.js create mode 100644 src/webapp/js/overrides.js create mode 100644 src/webapp/js/utils.js create mode 100755 src/webapp/js/view/google_drive.js create mode 100755 src/webapp/js/view/layout.js create mode 100755 src/webapp/js/view/panels.js diff --git a/.hgignore b/.hgignore new file mode 100644 index 0000000..2920dbc --- /dev/null +++ b/.hgignore @@ -0,0 +1,11 @@ +#glob syntax + +syntax: glob + +*.png +*.jpg +*.ico +*.gif +*.pom +.idea* +.DS_Store diff --git a/src/dataimport/META_example/META.example.pw b/src/dataimport/META_example/META.example.pw new file mode 100644 index 0000000..10a284c --- /dev/null +++ b/src/dataimport/META_example/META.example.pw @@ -0,0 +1,39 @@ +#drwxrwsr-x. 2 erkkila2 csbgroup 4.0K Jul 9 13:59 . +#-rwxr-x---. 1 erkkila2 csbgroup 1.5G Jul 9 14:00 coadread.merge.12apr.rnaseq.276.hg18Plus.rface +# +[build] +source=TCGA +afm=/titan/cancerregulome3/TCGA/outputs/kirc/kirc.bigMerge.25jun.tsv +annotations=na +quantile_features=CNVR,GEXP,METH +associations=/titan/cancerregulome3/TCGA/outputs/kirc/keep.pwpvD.short.sort +interesting_scores=/titan/cancerregulome3/TCGA/outputs/kirc/featScores.pwpvD.short.txt +afm_description=Kidney Renal AllPairs +comment= +dataset_label=kirc_31july_pw +dataset_date=31-07-12 +contact=re@csacr.org +disease_code=KIRC +#python bin must be 2.5+ and imported the MySQLDb package +python_bin=python + +#the directory needs to exist and end in / +[results] +path=/home/csbgroup/public_html/RE/dataimport/results/ +#/proj/ilyalab/jlin/load_associations/dataimport_meta/python/results/ + +[dbetl] +#only supports blank, absolute, negative, negative_log10 +pvalue_transform=absolute +#collapse_edge_directions=1 implies taking the rf-ace higher important (A->B, B->A) set +#n/a for pairwise +collapse_edge_directions=1 +reverse_directions=1 +keep_unmapped_associations=1 + + +#ISB specific - requires smtp python module +[pubcrawl] +dopubcrawl=no +notify=re@systemsbiology.org + diff --git a/src/dataimport/META_example/META.example.rface b/src/dataimport/META_example/META.example.rface new file mode 100755 index 0000000..5d037ce --- /dev/null +++ b/src/dataimport/META_example/META.example.rface @@ -0,0 +1,37 @@ +#RE DataImport META configs +[build] +source=TCGA +afm=/home/csbgroup/re_data/tcga/crc/coadread.all.23jan14.TP.afm +annotations=na +quantile_features=CNVR +associations=/home/csbgroup/re_data/tcga/crc/coadread.all.23jan14.TP.rface +interesting_scores=/home/csbgroup/re_data/tcga/crc/featScores.coadread.all.23jan14.TP.txt +#good idea to include method_version +afm_description=CRC RFACE_1.0.4 +comment= +dataset_label=crc_31july_test +dataset_date=31-07-12 +contact=re@csacr.org +disease_code=COADREAD +#python bin must be 2.5+ and imported the MySQLDb package +python_bin=python + +#the directory needs to exist and end in / +[results] +path=/home/csbgroup/public_html/RE/dataimport/results/ +#/proj/ilyalab/jlin/load_associations/dataimport_meta/python/results/ + +[dbetl] +#only supports absolute, negative, negative_log10 +pvalue_transform=negative_log10 +#collapse_edge_directions=1 implies taking the rf-ace higher important (A->B, B->A) set +#the following settings are valid for rface only +collapse_edge_directions=1 +reverse_directions=1 +process_gene_interest_score=0 +keep_unmapped_associations=1 + +#ISB specific - requires smtp python module +[pubcrawl] +dopubcrawl=no +notify=aeakin@systemsbiology.org diff --git a/src/dataimport/README b/src/dataimport/README new file mode 100644 index 0000000..b2aeea0 --- /dev/null +++ b/src/dataimport/README @@ -0,0 +1,46 @@ +#RE-Config and MySql Data Import notes and requirements +#Requires python 2.5, 2.6, or 2.7 and libraries MySQLdb + +The python executable is explicitly set to /tools/bin/python2.7 in the sh scripts, update it as needed + +Set up the RE admin dependencies and set permissions by executing rfex_admin.sql with root on the mysql server: + +mysql -u root -ppassword < rfex_admin.sql + +It is also recommended taking a look at MySQL's /etc/my.cnf If you have millions of associations, then you should consider following the my-large.cnf (See MySQL documentation) settings + +#Config +if you want to call your database a different schema name then tcga, you will want to replace the rfex_admin.sql 'tcga' with name you want and then modify one of the example config/rfex_sql.config files. +The host can be localhost, or the actual server name. If you are running the data import on the db server, then localhost is best, if you are running the data import from a different server, then put in the entire address, such as machine.systemsbiology.net with the appropriate port. The server you are on must have access to the db server. + +The rfex_admin.sql contains grant statements and it is important that you replace the existing server name of saskatoon with your server name. +Within the config file, the path dictated needs to exist, since the script only creates dir dynamically relative to this path. +[results] +path=/titan/cancerregulome3/TCGA/outputs_sandbox/parsed_associations + +If you were to update the random_forest database name for the chrom and ref info, be aware that RE contains a google-dsapi-svc.config file containing this database name and you will need to update this and then redeploy the same name war file in your web app server. + +#MySQL Engine +RE db tables are using the MyISAM engine, versus InnoDB, since MyISAM is better fitted for read-intensive (select) and offers full-text indexing and simpler to design and drop. + +#SH +From python dir, run sh: +There should be corresponding sh files to the config files setup above, the commands required for the sh is: +dataset_label feature_matrix_file associations_file dataset_comment dataset_description re_instance + +#RFACE analysis example: +sh load_rface_associations.sh test_gbm_rface /titan/cancerregulome3/TCGA/outputs/gbm/gbm.merge.u133a.31oct.hg18.tsv /titan/cancerregulome3/TCGA/outputs/gbm/rf.u133a.31oct.mask1.F/all_associations.out "BRCA Her2 subset" "59 Her2-classified patients" internal + +#All Pairs example: +sh load_pairwise_associations.sh test_kirc_0206_pw /titan/cancerregulome3/TCGA/outputs/kirc/bigMerge.06feb12.hg18.tsv /titan/cancerregulome3/TCGA/outputs/kirc/bigMerge.06feb12.pwpv "Kidney" "Kidney sandbox" public + +Regarding processing time, we are averaging about 800,000-1 million edges per minute. It is recommended that you modify your /etc/my.cnf to have high memory settings as quite a number of views, indexes and buffers are used. + +You can load multiple associations (right now limited to RFACE and pairwise) by using +start_load_feature_associations.sh + +ie +sh start_load_feature_associations.sh test_gbm /titan/cancerregulome3/TCGA/outputs/gbm/gbm.merge.u133a.31oct.hg18.tsv /titan/cancerregulome3/TCGA/outputs/gbm/rf.u133a.31oct.mask1.F/all_associations.out "test new flow" "test" internal /titan/cancerregulome3/TCGA/outputs/gbm/bigMerge.06feb12.1e04_1e08_8_0.pwpv + +Please contact codefor@systemsbiology.net with any questions. +Thanks diff --git a/src/dataimport/config/META b/src/dataimport/config/META new file mode 100644 index 0000000..358d30f --- /dev/null +++ b/src/dataimport/config/META @@ -0,0 +1,10 @@ +#” sh /home/csbgroup/public_html/RE/dataimport/python/load_rface_associations.sh tcga_coadread_nov10 /home/csbgroup/tcga/rf-ace/coadread/coadread.nov10.tsv /home/csbgroup/tcga/rf-ace/coadread/coadread.nov10.associations.filtered.tsv "TCGA Colorectal" "466 patients" public ” +# +[build] +afm=/path/matrix.afm.tsv +annotations=/path/matrix.feature.annotation.tsv +associations=/path/rface.associations +afm_description=TUT Prostate AFM 20K features 100 samples +comment=your build comment +dataset_label=gbm_dataset_01May +intermediate_results_dir=./results diff --git a/src/dataimport/config/rfex_sql.config b/src/dataimport/config/rfex_sql.config new file mode 100644 index 0000000..41c748e --- /dev/null +++ b/src/dataimport/config/rfex_sql.config @@ -0,0 +1,32 @@ +[mysql_configs] +host= +port=3306 +db=tcga +username= +password= + +[solr_configs] +solrpath=http://host:8080/solr + +[cutoff] +pvalue=.5 +#rface method +importance=0.0001 +correlation=0 +#pairwise method +loggedpvalue=-4 + +#this is used for dataset label, ie cancer_type_method_date +#the list tokens can be any string as long as it matches, otherwise +#the update dataset script will fail +[cancer_types] +list=brca,coad,coadread,gbm,ov + +[pubcrawl] +dopubcrawl=no +pubcrawl_contact= + +[results] +path= +dosmtp=no +notify= \ No newline at end of file diff --git a/src/dataimport/config/rfex_sql_breve.config b/src/dataimport/config/rfex_sql_breve.config new file mode 100644 index 0000000..9355139 --- /dev/null +++ b/src/dataimport/config/rfex_sql_breve.config @@ -0,0 +1,33 @@ +[mysql_configs] +host=breve +port=3306 +db=tcga +username=visquick_rw +password=r34dwr1t3 + +[solr_configs] +solrpath=http://glados9:7080/solr + +#[cutoff] +#pvalue=.5 +#rface method +#importance=0.0001 +#correlation=0 +#pairwise method +#loggedpvalue=-4 + +#[cancer_types] +#list=brca,coad,coadread,gbm,ov + +[pubcrawl] +dopubcrawl=no +pubcrawl_contact=jlin@systemsbiology.org,aeakin@systemsbiology.org + +#[results] +#path=/local/tcga/re_dbetl +#/proj/ilyalab/jlin/load_associations/dataimport_meta/python/results + +[notification] +dosmtp=no +notify=rkreisberg@systemsbiology.org + diff --git a/src/dataimport/config/rfex_sql_sandbox.config b/src/dataimport/config/rfex_sql_sandbox.config new file mode 100755 index 0000000..4142659 --- /dev/null +++ b/src/dataimport/config/rfex_sql_sandbox.config @@ -0,0 +1,29 @@ +[mysql_configs] +host= +port= +db= +username= +password= + +[cutoff] +pvalue=.5 +#rface method +importance=0.0001 +correlation=0 +#pairwise method +loggedpvalue=-4 + +#this is used for dataset label, ie cancer_type_method_date +#the list tokens can be any string as long as it matches, otherwise +#the update dataset script will fail +[cancer_types] +list=brca,coad,coadread,gbm,ov,kirc + +[pubcrawl] +dopubcrawl=no +pubcrawl_contact=jlin@systemsbiology.org,aeakin@systemsbiology.org + +[results] +path=/titan/cancerregulome3/TCGA/outputs_sandbox/parsed_associations +dosmtp=no +notify=jlin@systemsbiology.org,aeakin@systemsbiology.org,sreynolds@systemsbiology.org,bbernard@systemsbiology.org,rkreisberg@systemsbiology.org diff --git a/src/dataimport/networks/consolidated_pathway_list.tsv b/src/dataimport/networks/consolidated_pathway_list.tsv new file mode 100755 index 0000000..49b9b22 --- /dev/null +++ b/src/dataimport/networks/consolidated_pathway_list.tsv @@ -0,0 +1,2429 @@ +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html LDHC,LDHB,LDHA,PGAM1,ADH1C,PGAM2,ADH1B,ADH1A,ACSS2,PDHB,ACSS1,PGAM4,PDHA2,PDHA1,LDHAL6B,PFKL,LDHAL6A,FBP1,PFKP,ALDH3B2,FBP2,PFKM,ALDH3B1,PGM2,G6PC,ALDH7A1,ALDH1B1,PKM2,PGM1,DLD,PKLR,ALDH9A1,ALDOA,ALDOC,ALDOB,ADH5,HK2,HK1,ADH6,ADH7,ALDH3A2,G6PC2,ALDH3A1,GALM,TPI1,AKR1A1,ADH4,HK3,ALDH1A3,ENO2,ENO3,GAPDH,ENO1,BPGM,DLAT,PCK2,PCK1,GPI,GCK,ALDH2,PGK1,PGK2 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html LOC642502,OGDHL,OGDH,PDHB,IDH3G,LOC283398,IDH2,IDH1,PDHA2,PDHA1,SUCLA2,FH,DLST,ACO2,SUCLG2,ACO1,SUCLG1,CS,IDH3B,ACLY,DLAT,PCK2,IDH3A,PCK1,SDHA,SDHB,SDHC,SDHD,DLD,MDH2,PC,MDH1 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html ALDOA,TALDO1,ALDOC,PGD,ALDOB,TKTL2,TKTL1,DERA,RPIA,PRPS1L1,PFKL,PFKP,FBP1,TKT,RBKS,PFKM,FBP2,LOC729020,PGM2,GPI,PGLS,RPE,G6PD,H6PD,PGM1,PRPS2,PRPS1 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGDH,UGT1A7,UGT1A6,UGT1A9,CRYL1,UGT1A8,UGT1A3,UGT1A5,UGT1A4,UGT2A1,UGT2A3,UGT2B28,GUSB,LOC729020,UGT1A1,DHDH,UGT1A10,RPE,UGT2B17,AKR1B1,UGT2B11,UGT2B4,UGT2B10,UGT2B15,DCXR,UGP2,UGT2B7,XYLB +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html ALDOA,SORD,PFKFB4,PFKFB3,ALDOC,PFKFB2,ALDOB,PFKFB1,HK2,HK1,GMPPB,MTMR2,TPI1,MTMR1,HK3,GMPPA,TSTA3,MTMR6,MTMR7,PFKL,GMDS,PFKP,FBP1,PFKM,FBP2,PMM2,PMM1,KHK,MPI,AKR1B10,AKR1B1,FUK,PHPT1,FPGT +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html LALBA,HK2,HK1,GLB1,G6PC2,GALK2,GALK1,HK3,GALE,B4GALT1,B4GALT2,PFKL,PFKP,GALT,PFKM,PGM2,G6PC,GCK,GLA,GANC,MGAM,PGM1,AKR1B1,GAA,LCT,UGP2 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGDH,ALDH3A2,UGT1A7,UGT1A6,UGT1A9,UGT1A8,UGT1A3,UGT1A5,MIOX,UGT1A4,UGT2A1,UGT2A3,UGT2B28,UGT1A1,UGT1A10,ALDH7A1,UGT2B17,ALDH1B1,ALDH2,UGT2B11,UGT2B4,UGT2B10,UGT2B15,ALDH9A1,UGT2B7 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACOX1,ACADSB,CPT2,EHHADH,ADH1C,ADH5,ADH6,ADH1B,ECHS1,ADH1A,ADH7,ACAT2,ACAT1,DCI,ALDH3A2,HADHA,ACOX3,HADHB,ACSL1,CYP4A22,ADH4,ACSL4,HADH,ACSL3,ACSL6,ACSL5,CPT1C,CPT1B,GCDH,ACAA2,ACADM,ACADS,ACADL,PECI,CPT1A,ACADVL,CYP4A11,ALDH7A1,ALDH1B1,ALDH2,ALDH9A1,ACAA1 +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html TM7SF2,SOAT1,SOAT2,EBP,LIPA,CYP51A1,LSS,SC4MOL,FDFT1,CEL,CYP27B1,SQLE,DHCR7,HSD17B7,SC5DL,NSDHL,DHCR24 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html ACOX2,CYP46A1,HSD3B7,AMACR,CYP7B1,CYP39A1,BAAT,AKR1C4,CYP27A1,CH25H,CYP7A1,HSD17B4,CYP8B1,SCP2,AKR1D1,SLC27A5 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP3A4,CYP3A5,CYP3A7,CYP11B1,CYP11B2,SULT2B1,AKR1C3,CYP3A43,AKR1C2,AKR1C4,CYP7A1,SRD5A3,SRD5A1,SULT1E1,SRD5A2,AKR1C1,STS,CYP11A1,CYP1A1,UGT1A1,UGT1A10,UGT2B17,HSD11B1,UGT2B11,HSD11B2,UGT2B10,UGT2B15,AKR1D1,HSD3B2,HSD3B1,CYP1B1,HSD17B2,HSD17B1,HSD17B12,COMT,UGT1A7,UGT1A6,UGT1A9,UGT1A8,UGT1A3,UGT1A5,UGT1A4,HSD17B6,UGT2A1,HSD17B3,UGT2A3,UGT2B28,HSD17B7,CYP19A1,HSD17B8,CYP21A2,CYP7B1,CYP17A1,UGT2B4,UGT2B7 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html LOC642502,ATP6AP1,NDUFAB1,COX5A,COX5B,LOC100133737,UQCR10,UQCR11,ATP8,ATP6,LOC727947,COX6C,LOC644310,ATP5C1,ATP6V1G3,COX7B,COX7C,ATP6V1B2,ATP12A,ATP6V1B1,ATP6V0B,ATP6V0C,COX6B1,COX6B2,ATP5J2,COX8C,NDUFA4L2,COX8A,LHPP,LOC390424,PPA2,PPA1,UQCRHL,NDUFV3,ATP6V0E2,COX3,COX2,NDUFV1,COX1,NDUFV2,COX6A2,COX6A1,ATP5D,UQCRC2,ATP5E,COX11,ATP6V0E1,UQCRC1,COX10,ATP5B,CYC1,UQCRFS1,UQCRQ,NDUFS7,NDUFS6,NDUFS5,NDUFS4,NDUFS8,ATP5L,ATP5O,NDUFS3,ATP5I,ATP6V0D1,NDUFS2,ATP6V0D2,ATP5H,COX17,NDUFS1,COX15,ATP5J,ND1,NDUFB10,ND4,ATP4A,ATP4B,ND5,ND2,ND3,NDUFC2,COX4I2,ATP6V1H,COX4I1,NDUFC1,NDUFA10,ATP6V1D,NDUFA11,ATP6V1F,ATP6V1C1,ATP6V1C2,ATP6V1A,UQCRH,UQCRB,NDUFB3,NDUFB4,NDUFB5,NDUFB6,NDUFB7,NDUFB8,NDUFB9,COX7B2,CYTB,ATP5G2,ATP6V1G2,ATP5G1,COX7A2L,ATP6V1G1,ATP5G3,NDUFB1,NDUFB2,ND6,TCIRG1,NDUFA4,NDUFA5,NDUFA2,NDUFA3,COX7A2,NDUFA8,COX7A1,NDUFA9,NDUFA6,NDUFA7,ATP5F1,NDUFA1,SDHA,SDHB,ND4L,LOC100130247,ATP6V1E1,SDHC,ATP6V1E2,SDHD,ATP6V0A1,ATP5A1,ATP6V0A4,ATP6V0A2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADCY3,ADCY4,FHIT,ADCY1,GDA,GMPR2,ADCY2,ADCY7,ADCY8,ADCY5,ADCY6,PDE3B,PNP,PRIM1,NT5C3,PDE4A,PDE4B,NT5C2,PRIM2,NUDT2,NUDT5,POLE,PDE4D,PDE4C,POLR2J2,NME7,POLR2J3,NME6,NME4,NME5,NME2,NME3,NME1,PDE5A,ADSL,PRPS2,PRPS1,XDH,ADSS,ENPP1,ENPP3,NT5C1A,NT5C1B,PNPT1,ZNRD1,RRM2B,PPAT,ADA,PDE6A,PDE6B,POLE4,PDE6C,PDE6D,POLE2,POLE3,ENTPD8,ENTPD5,ENTPD6,ENTPD3,PRPS1L1,ENTPD4,ENTPD1,ENTPD2,ALLC,GUCY2F,C17ORF48,ADSSL1,AK1,AK2,AK5,GUCY2C,AK7,PDE6H,PDE6G,GART,GUCY2D,POLD3,POLD4,PDE7B,PDE7A,POLD1,POLD2,GUK1,PDE11A,CANT1,NT5M,GUCY1A2,GUCY1A3,PDE8B,PDE8A,ADCY10,NT5E,IMPDH1,IMPDH2,NT5C,POLR1E,POLR1D,POLR1A,PDE10A,POLR1C,POLR1B,DGUOK,GMPR,GMPS,PRUNE,RRM2,ADK,PKM2,RRM1,PKLR,GUCY1B3,PDE9A,PRHOXNB,POLR2H,POLR2G,POLR2F,POLR2E,POLR2L,POLR2K,POLR2J,POLR2I,POLA1,DCK,POLA2,HPRT1,POLR2D,AK3L1,POLR2C,PFAS,POLR2B,POLR2A,PDE1B,ATIC,PDE1C,NUDT9,PDE1A,PAPSS1,PAPSS2,POLR3G,POLR3F,POLR3H,POLR3K,NPR1,NPR2,POLR3GL,PDE3A,POLR3A,POLR3C,AMPD2,POLR3B,AMPD3,APRT,POLR3D,AMPD1,ITPA,NME1-NME2,PDE2A,ADCY9,PAICS +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html CTPS,DTYMK,PNP,PRIM1,NT5C3,PRIM2,NT5C2,NUDT2,POLE,POLR2J2,POLR2J3,NME7,NME6,NME4,NME5,NME2,NME3,NME1,NT5C1A,PNPT1,NT5C1B,ZNRD1,CTPS2,RRM2B,CMPK1,TK2,CMPK2,TK1,POLE4,POLE2,UPRT,POLE3,ENTPD8,DHODH,ENTPD5,CDA,ENTPD6,ENTPD3,ENTPD4,ENTPD1,UPB1,AK3,POLD3,POLD4,POLD1,POLD2,DUT,CAD,CANT1,NT5M,NT5E,NT5C,POLR1E,POLR1D,POLR1A,POLR1C,POLR1B,UMPS,RRM2,RRM1,TXNRD2,TXNRD1,POLR2H,POLR2G,POLR2F,POLR2E,POLR2L,POLR2K,POLR2J,POLR2I,POLA1,DCK,UPP1,UPP2,DPYS,POLA2,POLR2D,POLR2C,POLR2B,POLR2A,TYMS,TYMP,UCK1,UCK2,DCTD,POLR3G,POLR3F,POLR3H,POLR3K,POLR3A,POLR3GL,POLR3C,POLR3B,POLR3D,ITPA,NME1-NME2,UCKL1,DPYD +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ADSS,ASS1,GLUD2,NIT2,GLUD1,IL4I1,ASNS,CAD,ASL,AGXT,PPAT,GLS2,GOT2,ASPA,GAD2,GOT1,ALDH4A1,GPT2,GAD1,ADSSL1,ALDH5A1,ACY3,CPS1,DDO,GLUL,GLS,GFPT1,GFPT2,ADSL,ABAT,GPT,AGXT2 +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html AMT,GCAT,PSPH,AGXT,PIPOX,GLDC,ALAS1,ALAS2,SRR,DMGDH,DAO,GNMT,SARDH,CHDH,SHMT1,SHMT2,GATM,MAOA,MAOB,GLYCTK,CTH,SDS,BHMT,DLD,PHGDH,AGXT2,GAMT,AOC2,PSAT1,CBS,AOC3 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html LDHC,LDHB,LDHA,AHCY,SRM,IL4I1,GOT2,GOT1,MAT1A,TRDMT1,DNMT3L,ENOPH1,AMD1,DNMT3B,DNMT3A,MAT2A,LDHAL6B,LDHAL6A,CDO1,TAT,ADI1,CTH,SDS,MTR,BHMT,DNMT1,MTAP,AHCYL1,MAT2B,AHCYL2,APIP,SMS,MPST,CBS +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html BCAT1,HSD17B10,ACADSB,BCAT2,EHHADH,HMGCS1,IL4I1,ECHS1,ACAT2,ACAT1,HIBADH,ALDH3A2,HADHA,AUH,HADHB,MCCC2,MUT,IVD,MCCC1,OXCT1,MCEE,OXCT2,ACAD8,HADH,HMGCL,BCKDHA,ACAA2,ALDH6A1,ACADM,ACADS,BCKDHB,DBT,ALDH7A1,HMGCS2,ALDH1B1,DLD,AOX1,ALDH2,ABAT,HIBCH,PCCB,PCCA,ALDH9A1,ACAA1 +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html IARS,BCAT1,BCAT2,VARS2,LARS,PDHA2,LARS2,PDHA1,IARS2,VARS,PDHB +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html EHHADH,SETD1B,SETD1A,OGDHL,AASS,ECHS1,ACAT2,OGDH,ACAT1,PIPOX,HADHA,BBOX1,ALDH3A2,AASDHPPT,PLOD1,PLOD2,PLOD3,SETMAR,HADH,AASDH,AADAT,SETDB1,GCDH,DLST,SETDB2,EHMT1,SUV39H1,WHSC1,EHMT2,SUV39H2,SUV420H2,DOT1L,ALDH7A1,ALDH1B1,WHSC1L1,TMLHE,ASH1L,ALDH2,SETD7,SETD8,SETD2,NSD1,ALDH9A1,SUV420H1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html SAT1,CKMT1B,SAT2,CKB,GOT2,GOT1,P4HA2,P4HA1,P4HA3,NOS3,DAO,NOS2,GATM,OTC,LAP3,PYCR1,PYCR2,ALDH7A1,GLUL,CKM,ALDH1B1,SMS,OAT,ADC,ALDH9A1,PRODH,PYCRL,ALDH18A1,SRM,ASS1,NAGS,GLUD2,GLUD1,AGMAT,ASL,ALDH3A2,GLS2,ARG1,CKMT2,ARG2,ALDH4A1,AMD1,ODC1,NOS1,ACY1,MAOA,MAOB,CPS1,ABP1,CKMT1A,GLS,ALDH2,PRODH2,GAMT +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html CNDP1,WBSCR22,ALDH3A2,ALDH3A1,ASPA,HNMT,HDC,ALDH1A3,HEMK1,LCMT1,DDC,ACY3,MAOA,LCMT2,METTL6,MAOB,HAL,FTCD,ALDH3B2,METTL2B,ALDH3B1,AMDHD1,ABP1,ALDH7A1,TRMT11,ALDH1B1,ALDH2,UROC1,ALDH9A1 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html TYRP1,PNMT,TH,ADH5,ADH1C,IL4I1,WBSCR22,ADH6,ADH1B,ADH1A,ADH7,COMT,FAH,MIF,ALDH3A1,DCT,GOT2,TYR,GOT1,ALDH1A3,ADH4,TPO,GSTZ1,HEMK1,HPD,LCMT1,DDC,NAT6,LCMT2,MAOA,METTL6,MAOB,HGD,ALDH3B2,DBH,METTL2B,TAT,ALDH3B1,TRMT11,AOX1,AOC2,AOC3 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html DDC,NAT6,MAOA,MAOB,IL4I1,ALDH3B2,PAH,TAT,ALDH3B1,MIF,ALDH3A1,GOT2,GOT1,PRDX6,ALDH1A3,AOC2,HPD,AOC3 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html KYNU,CYP1B1,EHHADH,OGDHL,IL4I1,ECHS1,WARS2,KMO,ACAT2,OGDH,ACAT1,ALDH3A2,HADHA,AFMID,WARS,TDO2,HAAO,AANAT,CAT,HADH,AADAT,GCDH,DDC,CYP1A1,MAOA,ASMT,MAOB,ACMSD,IDO2,IDO1,CYP1A2,INMT,ABP1,ALDH7A1,ALDH1B1,AOX1,ALDH2,TPH1,ALDH9A1,TPH2 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html ACADM,CNDP1,SRM,UPB1,EHHADH,DPYS,ECHS1,HADHA,ALDH3A2,ALDH7A1,GAD2,MLYCD,ALDH1B1,ALDH2,ABAT,DPYD,HIBCH,AOC2,SMS,GAD1,ALDH9A1,AOC3 +KEGG TAURINE AND HYPOTAURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TAURINE_AND_HYPOTAURINE_METABOLISM.html GGT5,ADO,GGT6,GAD2,BAAT,GGT7,CSAD,GGT1,CDO1,GAD1 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html SEPHS2,SEPHS1,AHCY,WBSCR22,GGT1,SCLY,MAT1A,MARS2,PAPSS1,PAPSS2,MARS,HEMK1,LCMT1,MAT2A,LCMT2,METTL6,METTL2B,GGT5,GGT6,CTH,GGT7,TRMT11,AHCYL1,MAT2B,AHCYL2,CBS +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html PGD,GGT1,ANPEP,GSTM5,GSTM1,GSS,GPX2,GSTM2,GSR,GPX1,GSTM3,GSTM4,GPX6,OPLAH,GPX5,GPX4,GPX3,GSTZ1,GPX7,GSTT1,GSTT2,LAP3,G6PD,RRM2,RRM1,SMS,GSTP1,GCLC,GGCT,SRM,RRM2B,GCLM,GSTK1,IDH2,IDH1,GSTO2,GSTO1,GSTA1,ODC1,GSTA2,GSTA3,GSTA4,GSTA5,MGST3,TXNDC12,GGT5,GGT6,GGT7,MGST1,MGST2 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UXS1,TREH,AMY2B,AMY2A,UGT1A1,PGM2L1,PGM2,UGT1A10,UGT2B17,G6PC,MGAM,PGM1,UGT2B11,GAA,UGT2B10,UGT2B15,AMY1C,AMY1B,AMY1A,UGP2,ENPP1,ENPP3,UGDH,HK2,HK1,G6PC2,UGT1A7,UGT1A6,UGT1A9,UGT1A8,UGT1A3,HK3,UGT1A5,UGT1A4,GYS1,GYS2,UGT2A1,UGT2A3,UGT2B28,AGL,GUSB,SI,GBA3,GPI,GBE1,PYGM,GCK,GANC,PYGL,UGT2B4,UGT2B7,PYGB +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html RFT1,MGAT5B,TUSC3,GANAB,FUT8,ALG1,ALG2,ALG3,MAN1B1,ALG5,ALG6,ALG8,ALG9,STT3B,STT3A,DAD1,RPN1,RPN2,DDOST,MGAT4B,B4GALT1,MGAT4A,B4GALT3,ST6GAL1,B4GALT2,MAN1A2,DPAGT1,MOGS,MAN1A1,MAN1C1,MGAT1,MAN2A2,MAN2A1,MGAT2,MGAT3,ALG10B,DPM1,DPM2,DPM3,ALG10,ALG11,MGAT5,DOLPP1,ALG12,ALG13,ALG14 +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html AGA,HEXA,HEXB,ENGASE,FUCA2,FUCA1,MANBA,GLB1,MAN2C1,MAN2B2,NEU1,NEU3,MAN2B1,NEU2,GBA,NEU4 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT3,GCNT4,GALNT2,GALNT1,GCNT3,GALNT7,GALNT6,GALNT5,GALNT4,ST3GAL1,ST3GAL2,GALNT10,GALNTL5,GALNTL4,GALNTL6,B3GNT6,GALNT11,GCNT1,GALNT12,GALNT13,C1GALT1,B4GALT5,GALNT14,C1GALT1C1,WBSCR17,GALNTL2,GALNTL1,ST6GALNAC1,GALNT8,GALNT9 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html CYB5R3,CYB5R1,GNPDA1,CHIA,GNPDA2,GNE,GNPNAT1,HEXA,HEXB,UGDH,HK2,HK1,NAGK,UXS1,CHIT1,GMPPB,GALK2,GALK1,NANS,HK3,GMPPA,GALE,TSTA3,NANP,UAP1,GMDS,CMAS,NPL,GALT,PMM2,PMM1,PGM2,GPI,PGM3,RENBP,AMDHD2,MPI,GCK,GFPT1,PGM1,GFPT2,FUK,FPGT,UGP2 +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html ARSB,SGSH,HGSNAT,HYAL1,NAGLU,HYAL2,HYAL3,HS3ST3A1,HEXA,GUSB,HEXB,HYAL4,GLB1,GNS,IDS,HPSE2,HPSE,GALNS,SPAM1,HS3ST3B1,IDUA +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html B3GALT6,UST,CHST3,CHPF2,DSE,CSGALNACT1,B3GAT2,B3GAT1,B3GAT3,CHST7,CHSY3,XYLT2,CHPF,XYLT1,CHST12,CSGALNACT2,CHST11,CHST14,CHST13,CHSY1,CHST15,B4GALT7 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html B4GALT1,B4GALT3,B4GALT2,FUT8,CHST2,CHST4,CHST1,ST3GAL1,ST3GAL3,ST3GAL2,CHST6,B3GNT7,B3GNT1,B3GNT2,B4GALT4 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html EXTL3,NDST3,HS3ST5,NDST4,NDST1,B3GALT6,NDST2,HS3ST2,HS3ST1,EXTL1,EXTL2,HS2ST1,XYLT2,XYLT1,HS6ST3,HS6ST2,HS6ST1,B4GALT7,HS3ST3A1,GLCE,B3GAT2,B3GAT1,B3GAT3,EXT1,EXT2,HS3ST3B1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html PNLIP,DAK,GPAT2,AGPAT6,AGPAT9,MGLL,AGPAT4,AGPAT3,AGPAT2,AGPAT1,PPAP2C,PNPLA3,ALDH7A1,DGAT1,DGAT2,ALDH1B1,LCLAT1,GPAM,ALDH9A1,GK2,ALDH3A2,DGKA,DGKB,DGKE,AKR1A1,DGKD,DGKG,PPAP2A,AGK,PPAP2B,LPL,PNLIPRP1,PNLIPRP2,DGKQ,DGKH,DGKI,GLYCTK,AWAT2,CEL,GLA,AKR1B1,LIPG,MBOAT1,ALDH2,MBOAT2,DGKZ,GK,LIPC,LIPF +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCZ1,IMPA2,CDIPT,IMPA1,SYNJ1,PIP5K1B,PIP5K1C,ITPKB,PIP5K1A,ITPKA,PTEN,PLCB3,PLCB4,MIOX,PIK3C3,SYNJ2,PIK3CA,PLCB1,ITPK1,PLCB2,IPMK,PIK3CG,ALDH6A1,MINPP1,PIK3C2G,INPPL1,PIK3C2A,PIK3CB,PIK3C2B,PIK3CD,PI4KA,PI4KB,PLCE1,INPP4B,INPP4A,INPP1,OCRL,ISYNA1,TPI1,INPP5K,INPP5J,PIKFYVE,PLCD3,PLCD4,INPP5E,PLCD1,INPP5B,INPP5A,PLCG1,PLCG2,PIP4K2A,IPPK,PIP4K2C,PIP4K2B +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html GPAA1,GPLD1,PIGK,PIGL,PIGM,PIGF,PIGG,PIGH,PIGB,PIGC,PIGA,PIGZ,PIGY,PIGX,PIGW,PGAP1,PIGV,PIGU,PIGT,PIGS,PIGQ,PIGP,PIGO,PIGN,DPM2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html CDIPT,GPAT2,CDS2,AGPAT6,LCAT,AGPAT9,PLA2G1B,GNPAT,PHOSPHO1,PTDSS1,PCYT2,AGPAT4,AGPAT3,AGPAT2,CHAT,AGPAT1,PTDSS2,PLD2,CRLS1,PLD1,LPGAT1,PPAP2C,TAZ,LYPLA2,PISD,LYPLA1,LPCAT2,CDS1,CHPT1,LPCAT3,LPCAT4,PLA2G2A,LCLAT1,PLA2G6,PLA2G2C,PLA2G2E,PLA2G3,PLA2G2D,GPAM,PLA2G5,PLA2G2F,CHKA,ACHE,PGS1,CHKB,GPD1L,DGKA,JMJD7-PLA2G4B,DGKB,DGKE,LPCAT1,DGKD,PLA2G12A,DGKG,PLA2G12B,PEMT,ETNK1,PCYT1A,ETNK2,PCYT1B,PPAP2A,PPAP2B,GPD2,GPD1,C17ORF48,PLA2G15,DGKQ,PLA2G10,DGKH,DGKI,PLA2G4A,MBOAT7,MBOAT1,DGKZ,MBOAT2,PLA2G4B,PLA2G4E +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html ENPP6,ENPP2,PAFAH2,JMJD7-PLA2G4B,AGPS,LPCAT1,PLA2G12A,PLA2G12B,PLA2G1B,PAFAH1B3,PAFAH1B1,PAFAH1B2,PPAP2A,PPAP2B,PLD2,PLD1,PLA2G10,PPAP2C,LPCAT2,CHPT1,LPCAT4,PLA2G4A,PLA2G2A,PLA2G7,PLA2G6,PLA2G2C,PLA2G3,PLA2G2E,PLA2G2D,PLA2G4B,PLA2G4E,PLA2G5,PLA2G2F +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP2J2,PTGES2,PTGS2,CYP2C19,CYP2C18,PTGS1,GGT1,LTC4S,AKR1C3,GPX2,GPX1,PTGIS,GPX6,PTGES,GPX5,GPX4,GPX3,PLA2G1B,ALOX12B,GPX7,CYP2E1,CBR3,ALOX15,PTGDS,ALOX15B,PLA2G2A,PLA2G6,PLA2G2C,PLA2G2E,PLA2G3,PLA2G2D,PLA2G5,PLA2G2F,ALOX12,CYP2U1,CYP2B6,JMJD7-PLA2G4B,CBR1,CYP4A22,PLA2G12A,PLA2G12B,HPGDS,TBXAS1,PLA2G10,CYP2C9,CYP2C8,EPHX2,GGT5,CYP4A11,GGT6,PLA2G4A,GGT7,LTA4H,CYP4F3,ALOX5,CYP4F2,PLA2G4B,PLA2G4E +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP3A4,CYP3A5,CYP3A7,CYP2J2,CYP2C19,CYP2C18,CYP3A43,JMJD7-PLA2G4B,PLA2G12A,PLA2G12B,PLA2G1B,PLA2G10,CYP2C9,CYP2C8,CYP1A2,CYP2E1,ALOX15,PLA2G4A,AKR1B10,PLA2G2A,PLA2G6,PLA2G2C,PLA2G2E,PLA2G3,PLA2G4B,PLA2G2D,PLA2G4E,PLA2G5,PLA2G2F +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html ACOX1,PLA2G10,FADS2,ACOX3,JMJD7-PLA2G4B,PLA2G4A,PLA2G12A,PLA2G12B,PLA2G1B,PLA2G2A,PLA2G6,PLA2G2C,PLA2G3,PLA2G2E,PLA2G2D,PLA2G4B,PLA2G4E,PLA2G5,PLA2G2F +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html ENPP7,SGMS2,SGPP1,SGPP2,SGMS1,ASAH1,ASAH2,GLB1,GALC,UGT8,CERK,B4GALT6,PPAP2A,PPAP2B,GAL3ST1,GBA,SGPL1,ACER3,SPTLC1,SPTLC2,SPHK2,PPAP2C,ACER2,ACER1,UGCG,SPHK1,ASAH2C,GLA,SMPD1,ARSA,KDSR,NEU1,NEU3,NEU2,SMPD4,SMPD3,DEGS2,NEU4,SMPD2,DEGS1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html FUT9,GCNT2,FUT7,B3GALT5,FUT6,FUT5,ST8SIA1,ST3GAL3,B3GNT5,B3GNT4,ST3GAL4,ST3GAL6,FUT3,B3GNT1,FUT4,FUT1,B3GNT3,FUT2,B3GNT2,B4GALT4,B4GALT1,B4GALT3,B4GALT2,B3GALT2,B3GALT1,ABO +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html A4GALT,FUT9,B3GALT5,GBGT1,HEXA,HEXB,ST8SIA1,ST3GAL1,ST3GAL2,GLA,B3GALNT1,NAGA,FUT1,FUT2 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html SLC33A1,HEXA,B3GALT4,HEXB,ST8SIA1,GLB1,ST6GALNAC5,ST3GAL1,ST6GALNAC6,ST6GALNAC3,ST6GALNAC4,ST3GAL2,ST3GAL5,ST8SIA5,B4GALNT1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html LDHC,ME1,LDHB,LDHA,ME3,ME2,LDHD,ACAT2,ACSS2,ACAT1,PDHB,ALDH3A2,ACSS1,ACOT12,ACYP2,ACYP1,GLO1,PDHA2,PDHA1,LDHAL6B,LDHAL6A,ACACA,ACACB,DLAT,GRHPR,PCK2,PCK1,HAGH,ALDH7A1,ALDH1B1,PKM2,AKR1B1,PKLR,DLD,ALDH2,HAGHL,MDH2,ALDH9A1,PC,MDH1 +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html MTHFD2L,ACO2,ACO1,CS,GRHPR,MTHFD1L,HYI,AFMID,GLYCTK,HAO1,MTHFD1,MTHFD2,PGP,HAO2,MDH2,MDH1 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html LDHC,LDHB,LDHA,EHHADH,ECHS1,ACAT2,ACSS2,ACSS3,ACAT1,HADHA,ALDH3A2,MUT,ACSS1,LOC283398,MCEE,SUCLA2,ALDH6A1,ACADM,LDHAL6B,LDHAL6A,SUCLG2,SUCLG1,ACACA,ACACB,ALDH7A1,ALDH1B1,MLYCD,ALDH2,ABAT,HIBCH,PCCB,ALDH9A1,PCCA +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html EHHADH,HMGCS1,ECHS1,ACAT2,ACAT1,PDHB,HADHA,ALDH3A2,GAD2,OXCT1,OXCT2,BDH2,PDHA2,PDHA1,HADH,BDH1,GAD1,HMGCL,ALDH5A1,ACADS,ACSM2A,ACSM3,ALDH7A1,ACSM1,HMGCS2,L2HGDH,ALDH1B1,AKR1B10,ALDH2,ABAT,AACS,ACSM5,ALDH9A1,ACSM4 +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html SHMT1,SHMT2,MTHFD2L,ALDH1L1,AMT,FTCD,MTHFD1L,GART,MTHFD1,MTHFD2,TYMS,MTHFS,MTHFR,DHFR,ATIC,MTR,MTFMT +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html ENPP1,ENPP3,ACP6,ACP5,ACP2,ACPT,ACP1,ACPP,MTMR2,TYR,MTMR1,RFK,FLAD1,MTMR6,MTMR7,PHPT1 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NMNAT3,NMNAT2,NAMPT,ENPP1,NUDT12,BST1,NT5C1A,ENPP3,NT5C1B,NADSYN1,NADK,PNP,C9ORF95,CD38,NNT,NT5M,NT5C3,NT5C2,AOX1,QPRT,NT5E,NNMT,NT5C,NMNAT1 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html BCAT1,COASY,BCAT2,ENPP1,ENPP3,UPB1,PPCS,DPYS,PPCDC,PANK4,PANK2,PANK3,PANK1,VNN1,DPYD,VNN2 +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html ALPL,ALPPL2,ALPI,DHFR,GGH,QDPR,SPR,PTS,FPGS,ALPP,GCH1 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP3A4,CYP3A5,CYP3A7,CYP2C19,CYP2C18,ADH1C,ADH1B,ADH1A,RPE65,CYP3A43,RDH8,CYP1A1,CYP26A1,DHRS9,CYP1A2,PNPLA4,UGT1A1,RDH5,UGT1A10,UGT2B17,DHRS3,DGAT1,LRAT,DHRS4,DGAT2,UGT2B11,CYP2A6,CYP2A7,UGT2B10,UGT2B15,BCMO1,CYP2B6,DHRS4L2,ADH5,ADH6,ADH7,UGT1A7,ALDH1A1,ALDH1A2,CYP2A13,UGT1A6,UGT1A9,UGT1A8,CYP4A22,UGT1A3,ADH4,UGT1A5,UGT1A4,CYP26B1,UGT2A1,UGT2A3,UGT2B28,CYP2C9,CYP2C8,AWAT2,RDH12,CYP4A11,RDH11,RDH10,CYP26C1,UGT2B4,RDH16,UGT2B7,RETSAT +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html HCCS,FTMT,ALAD,COX10,UROS,PPOX,FTH1,UGT1A7,UGT1A6,HMOX2,ALAS1,UGT1A9,UGT1A8,ALAS2,UGT1A3,UGT1A5,CPOX,HMOX1,UGT1A4,UGT2A1,UGT2A3,UGT2B28,COX15,FECH,HMBS,GUSB,EPRS,UGT1A1,MMAB,EARS2,BLVRA,UGT1A10,UGT2B17,BLVRB,UGT2B11,UGT2B4,CP,UGT2B10,UGT2B15,UROD,UGT2B7 +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html DHDDS,MVD,HMGCR,HMGCS1,FDPS,ACAT2,PMVK,PDSS1,ACAT1,PDSS2,HMGCS2,GGPS1,MVK,IDI2,IDI1 +KEGG LIMONENE AND PINENE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LIMONENE_AND_PINENE_DEGRADATION.html ALDH7A1,NAT6,ALDH1B1,EHHADH,ALDH2,ECHS1,YOD1,HADHA,ALDH3A2,ALDH9A1 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA14,CA13,GLUD2,AMT,GLUD1,CA5A,CA12,CA5B,HAL,ASNS,CPS1,GLS2,CTH,GLUL,CA9,CA8,GLS,CA7,CA6,CA4,CA3,CA2,CA1 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html SUOX,SULT2B1,SULT1A1,CHST12,CHST11,SULT1A3,CHST13,SULT1A2,SULT1E1,SULT1A4,PAPSS1,PAPSS2,BPNT1 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html TARS2,VARS2,PSTK,NARS,FARS2,QARS,WARS2,IARS2,VARS,KARS,IARS,WARS,PARS2,NARS2,HARS2,SEPSECS,LARS,MARS2,TARSL2,MARS,CARS,YARS,DARS,RARS2,SARS,AARS,GARS,EPRS,DARS2,LARS2,SARS2,EARS2,TARS,RARS,HARS,FARSB,CARS2,FARSA,YARS2,MTFMT,AARS2 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP3A4,CYP3A5,CYP3A7,CYP2C19,CYP2C18,CYP2S1,ADH1C,ADH1B,ADH1A,GSTM5,CYP3A43,AKR1C3,GSTM1,AKR1C2,GSTM2,GSTM3,AKR1C4,GSTM4,GSTZ1,AKR1C1,CYP1A1,ALDH3B2,GSTT1,GSTT2,CYP1A2,CYP2E1,UGT1A1,DHDH,ALDH3B1,UGT1A10,UGT2B17,UGT2B11,UGT2B10,UGT2B15,GSTP1,CYP1B1,CYP2F1,CYP2B6,ADH5,ADH6,ADH7,ALDH3A1,UGT1A7,UGT1A6,UGT1A9,UGT1A8,UGT1A3,ALDH1A3,GSTK1,ADH4,UGT1A5,UGT1A4,UGT2A1,GSTO2,GSTO1,UGT2A3,UGT2B28,GSTA1,GSTA2,GSTA3,GSTA4,GSTA5,CYP2C9,CYP2C8,EPHX1,MGST3,UGT2B4,UGT2B7,MGST1,MGST2 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP3A4,CYP3A5,CYP3A7,CYP2C19,CYP2C18,CYP2D6,ADH1C,ADH1B,ADH1A,GSTM5,CYP3A43,GSTM1,GSTM2,GSTM3,GSTM4,GSTZ1,ALDH3B2,GSTT1,GSTT2,CYP1A2,CYP2E1,UGT1A1,ALDH3B1,UGT1A10,UGT2B17,UGT2B11,CYP2A6,CYP2A7,UGT2B10,UGT2B15,GSTP1,CYP2B6,ADH5,ADH6,ADH7,ALDH3A1,FMO4,UGT1A7,FMO5,CYP2A13,UGT1A6,UGT1A9,UGT1A8,UGT1A3,FMO1,ALDH1A3,GSTK1,UGT1A5,FMO2,ADH4,FMO3,UGT1A4,UGT2A1,GSTO2,GSTO1,UGT2A3,UGT2B28,GSTA1,GSTA2,GSTA3,GSTA4,GSTA5,CYP2C9,MAOA,CYP2C8,MAOB,MGST3,AOX1,UGT2B4,UGT2B7,MGST1,MGST2 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CYP3A4,CYP3A5,CYP3A7,CYP3A43,IMPDH1,IMPDH2,UGT1A1,GMPS,UGT1A10,UGT2B17,UMPS,UGT2B11,CYP2A6,CYP2A7,UGT2B10,UGT2B15,XDH,UPP1,UPP2,DPYS,HPRT1,TK2,TK1,UGT1A7,CYP2A13,UGT1A6,TYMP,UGT1A9,UGT1A8,UGT1A3,UGT1A5,UGT1A4,CDA,UGT2A1,UCK1,UGT2A3,UCK2,UGT2B28,CES2,CES1,CES7,NAT1,UPB1,GUSB,NAT2,TPMT,ITPA,UCKL1,UGT2B4,DPYD,UGT2B7 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html ACOX1,SCD,FADS1,HSD17B12,ACOT2,ACOT1,FADS2,TECR,HADHA,ACOT4,ACOX3,PECR,ACOT7,BAAT,PTPLB,ELOVL5,PTPLA,ELOVL2,ELOVL6,YOD1,SCD5,ACAA1 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA8,ABCA7,ABCA9,ABCD1,ABCA2,ABCA1,ABCA4,ABCA3,ABCA6,ABCA5,TAP2,TAP1,ABCD2,ABCB10,ABCD3,ABCD4,ABCA13,ABCA12,ABCB9,ABCA10,ABCB8,ABCB11,ABCC11,ABCC10,ABCB1,CFTR,ABCC12,ABCB7,ABCB6,ABCG4,ABCB5,ABCG1,ABCB4,ABCG2,ABCG8,ABCC9,ABCG5,ABCC3,ABCC4,ABCC1,ABCC2,ABCC8,ABCC5,ABCC6 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL18,RPL17,RPL36A,RPL19,RPL14,RPL13,RPL15,RPLP2,RPS27L,RPL22L1,RPS2,RPS3,RPS3A,RPLP0,RPLP1,RPL26L1,RPL10,FAU,RPL11,RPL12,RPS27A,RPL36AL,RSL24D1P11,RPL35A,RPS4X,RPS18,RPS19,RPL41,RPS16,RPS17,RPS15,RPL3L,RPS12,RPS13,RPS4Y1,RPS10,RPS11,UBA52,RPL35,RPL27A,RPS15A,RPL36,RPL37,RPL38,RPL39,RPL10L,RPS25,RPS26,RPS27,MRPL13,RPL30,RPS28,RPL7,RPS29,RPL32,RPL6,RPL31,RPL9,RPL34,RPL8,RPL3,RPL5,RSL24D1,RPL7A,RPL10A,RPL4,RPS20,RPS21,RPS23,RPS24,RPSA,RPL26,RPS9,RPL27,RPL24,RPL23A,RPS6,RPS5,RPS8,RPL28,RPS7,RPL29,RPL23,RPL18A,RPL13A,RPL22,RPL21,RPL37A +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html CNOT8,LSM6,LSM7,CNOT3,CNOT2,EDC4,SKIV2L2,CNOT1,CNOT7,CNOT6,CNOT4,DCPS,PARN,EDC3,LSM5,LSM4,LSM3,LSM2,LSM1,ZCCHC7,EXOSC8,EXOSC9,EXOSC6,EXOSC7,EXOSC4,EXOSC5,TTC37,CNOT10,EXOSC2,PAPD7,EXOSC3,EXOSC1,XRN1,XRN2,C1D,SKIV2L,PNPT1,NAA38,EXOSC10,PATL1,CNOT6L,ENO2,RQCD1,ENO3,ENO1,HSPA9,C1DP2,C1DP3,DDX6,DIS3,PAPOLB,PAPOLA,WDR61,DCP1B,DCP2,DCP1A,HSPD1,PAPOLG,MPHOSPH6 +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2H,POLR2G,POLR2F,POLR2E,POLR2L,POLR2K,POLR2J,POLR2I,ZNRD1,POLR2D,POLR2C,POLR2B,POLR2A,POLR3G,POLR3F,POLR3H,POLR3K,POLR1E,POLR1D,POLR1A,POLR3GL,POLR1C,POLR3A,POLR1B,POLR3C,POLR2J2,POLR3B,POLR2J3,POLR3D +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html LOC391764,STON1,TAF9B,TBP,TAF7L,GTF2E1,TBPL2,GTF2E2,TAF5L,GTF2A1,GTF2A2,TAF9,TBPL1,TAF1L,TAF2,TAF1,TAF4,TAF6,TAF5,TAF4B,TAF7,GTF2H4,GTF2H3,GTF2A1L,TAF6L,GTF2B,GTF2H2,GTF2H1,TAF11,TAF10,TAF13,TAF12,GTF2I,GTF2F1,GTF2IRD1,GTF2F2 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html POLA1,RNASEH1,POLA2,RPA4,RPA3,RPA1,PRIM1,RPA2,POLE4,MCM7,POLE2,POLE3,PRIM2,FEN1,SSBP1,LIG1,POLE,MCM2,RNASEH2A,MCM3,RNASEH2B,MCM4,RNASEH2C,MCM5,MCM6,POLD3,RFC5,POLD4,DNA2,RFC3,RFC4,RFC1,RFC2,POLD1,POLD2,PCNA +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html NCBP2,NCBP1,CHERP,LSM6,U2AF2,SNRPD3,LSM7,SNRPD1,SNRPD2,SART1,SMNDC1,CTNNBL1,SFRS6,SFRS7,SFRS4,SFRS5,DDX23,DHX38,RBM8A,SFRS9,PQBP1,LSM5,U2AF1,LSM4,LSM3,LSM2,ACIN1,SNRPA1,SF3B14,EFTUD2,MAGOH,SFRS1,SFRS3,HNRNPU,SFRS2,AQR,SNRPB,SNRPA,SLU7,SNRPC,SNRPF,SNRPE,BAT1,SNRPG,CCDC12,NHP2L1,PPIL1,SNRPB2,HSPA1A,HSPA1B,NAA38,XAB2,HNRNPA3,HSPA1L,HNRNPM,DDX46,TCERG1,HNRNPK,CDC40,ISY1,HNRNPC,PRPF40B,PRPF40A,DDX42,DHX8,SNW1,DDX5,RBMX,HNRNPA1,PPIE,PPIH,SNRNP27,PUF60,HNRNPA1L2,CRNKL1,CWC15,ZMAT2,BUD31,SFRS2B,PLRG1,PCBP1,MAGOHB,PRPF31,PRPF3,CDC5L,PRPF4,PRPF6,EIF4A3,SNRNP200,LOC120364,THOC4,SNRNP40,THOC2,THOC3,PRPF38B,THOC1,PRPF38A,TRA2B,TRA2A,SR140,LOC653884,WBP11,SF3B5,SF3B4,SF3B3,SF3B2,PRPF19,SF3B1,HSPA2,PRPF8,USP39,DHX15,HSPA6,DHX16,SNRNP70,RBM25,HSPA8,BCAS2,RBM22,SFRS13A,SF3A2,PRPF18,SF3A1,SF3A3,SYF2,PHF5A,TXNL4A,RBM17 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB10,LOC345645,SHFM1,PSMA7,PSMA8,PSMB11,PSMB5,PSMB4,PSMF1,PSMB7,PSMB6,PSMB1,PSMB3,PSMB2,PSMD1,IFNG,PSMD2,PSMD3,PSMD4,PSMD6,PSMD7,LOC121906,PSMD8,LOC100132108,PSMB8,PSMB9,PSMA2,PSMA1,PSMD14,PSMC6,PSMC5,PSMD13,PSMA6,PSME1,PSMC4,PSMD12,PSME2,PSMC3,PSMA5,PSMD11,PSMC2,PSMA4,PSMC1,PSMA3,POMP,PSME3,LOC652826,PSME4 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SRP14,OXA1L,SRP54,SEC11C,SRP9L1,SEC11A,SRP68,SRPRB,SRP19,SEC62,SEC63,IMMP1L,IMMP2L,SEC61B,SRPR,SPCS3,SPCS1,SRP72,SPCS2,HSPA5,SEC61A1,SRP9,SEC61G,SEC61A2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACOX2,ACOX1,SLC27A1,PPARA,PPARD,CPT2,EHHADH,PPARG,AQP7,MMP1,ACOX3,APOA2,PDPK1,APOA1,CYP7A1,APOA5,ILK,SCD5,ACADM,RXRB,RXRA,RXRG,ACADL,CD36,CYP27A1,UBC,SLC27A6,SLC27A2,SLC27A5,SLC27A4,ACAA1,ME1,GK2,ACSL1,CYP4A22,SORBS1,PLIN1,APOC3,ACSL4,ACSL3,ACSL6,PLTP,ACSL5,NR1H3,ANGPTL4,CPT1C,CPT1B,LPL,OLR1,SCD,FADS2,UCP1,PCK2,ADIPOQ,DBI,CPT1A,PCK1,CYP4A11,HMGCS2,FABP3,FABP4,FABP1,GK,FABP2,FABP7,CYP8B1,SCP2,FABP5,FABP6 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html HMGB1,APEX2,UNG,XRCC1,SMUG1,MUTYH,HMGB1L1,POLE4,POLE2,POLE3,NTHL1,APEX1,FEN1,POLL,LIG1,NEIL3,NEIL2,POLE,LIG3,NEIL1,MBD4,POLB,LOC645490,POLD3,POLD4,MPG,POLD1,POLD2,TDG,PCNA,PARP3,PARP4,PARP1,OGG1,PARP2 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RAD23B,RAD23A,CETN2,RPA4,RBX1,RPA3,RPA1,ERCC8,RPA2,ERCC5,POLE4,ERCC6,POLE2,POLE3,ERCC3,ERCC4,ERCC1,ERCC2,CCNH,LIG1,DDB1,POLE,GTF2H4,GTF2H3,CDK7,GTF2H5,GTF2H2,GTF2H1,RFC5,POLD3,XPA,POLD4,MNAT1,RFC3,XPC,RFC4,CUL4A,RFC1,RFC2,POLD1,POLD2,DDB2,PCNA,CUL4B +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html EXO1,MSH6,SSBP1,MSH3,MSH2,LIG1,MLH1,MLH3,RPA4,RPA3,POLD3,RPA1,RFC5,RPA2,POLD4,RFC3,RFC4,RFC1,RFC2,POLD1,POLD2,PCNA,PMS2 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RAD51C,NBN,XRCC3,XRCC2,BLM,MRE11A,SHFM1,RPA4,RPA3,RPA1,RPA2,RAD51L1,MUS81,RAD51L3,SSBP1,EME1,BRCA2,RAD52,RAD54L,RAD50,RAD51,POLD3,POLD4,POLD1,POLD2,TOP3A,RAD54B,TOP3B +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html POLL,XRCC5,XRCC4,MRE11A,XRCC6,PRKDC,LIG4,RAD50,DCLRE1C,DNTT,POLM,LOC731751,NHEJ1,FEN1 +KEGG MAPK SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MAPK_SIGNALING_PATHWAY.html MEF2C,HRAS,PRKX,MAP3K7,MAP3K6,MAP3K5,BDNF,MAP3K4,MAP3K8,PLA2G1B,MOS,FAS,RAPGEF2,MAP2K7,MAP2K6,MAP2K5,MAPKSP1,BRAF,PTPRR,MECOM,MAPK1,JUN,MAPK3,PLA2G2A,PDGFRA,MAPK9,PDGFRB,PLA2G2C,MAPK8,MAPK7,PLA2G2E,PLA2G2D,PLA2G2F,IL1R2,IL1R1,CACNB1,DUSP10,CACNB2,HSPA1A,CACNB3,HSPA1B,CACNB4,HSPA1L,KRAS,RAC2,DUSP14,RAC3,RAC1,DUSP16,NTF4,NTF3,MAP2K1,TAOK2,MAP2K2,TAOK1,MAP2K3,TGFBR1,TAOK3,TGFBR2,MAP2K4,PLA2G4A,NTRK1,NTRK2,PLA2G4B,PLA2G4E,FGF6,FGF5,FGF8,FGF7,FGF9,NFKB1,NFKB2,DAXX,MAPT,FGF1,FGF2,MYC,FGF3,FGF4,CACNG8,CACNG7,CACNG6,TP53,CACNG5,CACNG4,CACNG3,CACNG2,CACNG1,FLNC,ECSIT,FLNB,FLNA,GADD45G,PLA2G6,PLA2G3,GADD45B,MAP3K14,MAP3K13,GADD45A,PLA2G5,MAP3K12,MAP3K11,MKNK2,MKNK1,GNG12,SOS1,PLA2G12A,PLA2G12B,SOS2,PPP3CB,PPP3CC,CHP,PPP3CA,RASA1,RASA2,PLA2G10,NLK,MAPK11,MAPK10,DUSP5,RPS6KA5,DUSP4,NRAS,RPS6KA6,DUSP3,RPS6KA3,RPS6KA4,DUSP2,DUSP1,RPS6KA1,MAPK12,MAPK13,RPS6KA2,MAPK14,DUSP9,DUSP8,CD14,DUSP7,DUSP6,FGF19,FGF18,ZAK,PDGFB,FGF14,PDGFA,FGF17,FGF16,GNA12,TGFB3,FGF11,FGF10,FGF13,FGF12,TGFB1,TGFB2,PRKACG,IL1B,RRAS,PRKACA,PRKACB,IL1A,EGFR,RELA,RELB,CHP2,FGF23,FGF22,FGF21,FGF20,STK4,STK3,DDIT3,MAP4K3,MAP4K4,RASGRF2,ARRB2,RASGRF1,ARRB1,HSPB1,STMN1,PPP5C,NGF,FGFR2,TRAF2,FGFR1,FGFR4,FGFR3,GRB2,MRAS,MAPKAPK5,MAP4K2,MAPKAPK3,MAP4K1,ELK1,MAPKAPK2,SRF,ATF2,ELK4,JUND,EGF,TRAF6,PTPN7,CACNA2D1,PTPN5,CACNA1I,NR4A1,CACNA2D3,CACNA1S,CACNA2D2,CACNA2D4,ATF4,IKBKG,CACNA1G,RAP1A,CACNA1H,CACNA1E,RAP1B,CACNA1F,CACNA1C,IKBKB,CACNA1D,CACNA1A,CACNA1B,FASLG,AKT1,CDC42,MAX,FOS,CASP3,PAK2,PAK1,CHUK,AKT3,AKT2,PRKCA,PRKCG,PRKCB,CRKL,RRAS2,TNF,PPM1A,PPP3R1,PPP3R2,PPM1B,TNFRSF1A,JMJD7-PLA2G4B,HSPA2,RASGRP3,MAP3K3,MAP3K2,RASGRP4,RASGRP1,MAP3K1,RASGRP2,HSPA6,NFATC4,NFATC2,HSPA8,NF1,RAF1,TAB1,TAB2,CDC25B,MAPK8IP2,MAPK8IP3,MAPK8IP1,CRK +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html HRAS,NRG4,NRG3,STAT5A,BTC,STAT5B,RPS6KB2,RPS6KB1,AKT1,PAK6,PAK7,EIF4EBP1,PAK2,PAK3,PAK4,GAB1,PIK3CA,TGFA,SHC1,PAK1,SHC3,NRG1,SHC2,MAP2K7,NRG2,MYC,AKT3,AKT2,SHC4,PIK3CG,EGFR,PRKCA,BRAF,PIK3CB,PIK3CD,PRKCG,PRKCB,NCK2,MAPK1,CRKL,EREG,JUN,NCK1,MAPK3,MAPK9,MAPK8,ERBB4,ERBB3,GRB2,CAMK2G,ERBB2,ELK1,SRC,PTK2,KRAS,SOS1,SOS2,CAMK2D,CAMK2B,PIK3R5,PIK3R3,EGF,CAMK2A,PIK3R1,PIK3R2,MAP2K1,MAP2K2,CBL,MAP2K4,RAF1,MAPK10,BAD,CBLC,NRAS,CDKN1A,CBLB,CDKN1B,PLCG1,GSK3B,PLCG2,ARAF,HBEGF,MTOR,AREG,ABL1,CRK,ABL2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html SLC8A3,ADCY3,ADCY4,GNA14,GNA15,ADCY1,ADCY2,TNNC2,ADCY7,TNNC1,ADCY8,GNA11,LHCGR,ITPKB,ITPKA,PRKX,PRKACG,ATP2B1,ATP2B2,AGTR1,ATP2B3,ATP2B4,GRIN2C,GRIN2D,CHRNA7,PRKACA,PRKACB,EGFR,BST1,MYLK3,HTR4,GRIN2A,CHP2,MYLK2,NTSR1,CD38,PLCE1,SLC25A31,CAMK4,HTR7,RYR3,HTR6,RYR1,PDGFRA,RYR2,PDGFRB,PHKA2,DRD1,ADORA2B,ERBB4,CYSLTR1,CYSLTR2,ADORA2A,ERBB3,ERBB2,DRD5,PHKA1,TRHR,BDKRB1,BDKRB2,ADRB3,GRPR,TRPC1,SPHK2,CACNA1I,GRIN1,SPHK1,VDAC2,CACNA1S,VDAC3,VDAC1,P2RX5,P2RX4,P2RX7,P2RX6,P2RX1,ATP2A2,PLCG1,ATP2A3,PPID,P2RX3,AVPR1B,P2RX2,ATP2A1,LTB4R2,PLCG2,TBXA2R,CACNA1G,ADRA1B,AVPR1A,CACNA1H,ADRA1A,CACNA1E,CACNA1F,CACNA1C,CACNA1D,ADRA1D,CACNA1A,MYLK,CACNA1B,PLCZ1,CCKAR,TACR3,PHKB,TACR2,TACR1,EDNRA,EDNRB,PLCB3,PLCB4,NOS3,NOS2,PLCB1,PLCB2,HTR5A,PRKCA,PTGER1,PTGER3,CCKBR,SLC25A4,PHKG1,SLC25A5,PHKG2,SLC25A6,PRKCG,GRM1,PRKCB,GRM5,GNAL,CHRM5,ADRB2,ADRB1,CHRM3,GNAQ,CHRM2,CHRM1,GNAS,PTAFR,CAMK2G,PPP3R1,PPP3R2,OXTR,HRH1,PDE1B,HRH2,PDE1C,CALML3,PTK2B,PDE1A,PPP3CB,PLCD3,CAMK2D,PLCD4,PPP3CC,CALML6,PLCD1,CAMK2B,CHP,PPP3CA,CALML5,CAMK2A,SLC8A1,SLC8A2,NOS1,LOC729317,ITPR3,PTGFR,ITPR1,ITPR2,ADCY9,PLN,CALM3,HTR2B,HTR2C,CALM2,HTR2A,CALM1,F2R +KEGG CYTOKINE CYTOKINE RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOKINE_CYTOKINE_RECEPTOR_INTERACTION.html IL9R,IL6ST,OSMR,GDF5,IFNE,IFNG,CCR10,FAS,IFNK,LIFR,CD40,VEGFB,CCR9,CCR8,VEGFC,CCR7,CCR6,PPBP,CCR5,IFNB1,CD40LG,CCR4,CCR3,CCR2,CX3CR1,VEGFA,PDGFRA,PDGFRB,TNFRSF6B,IL1R2,IL1R1,CD70,PF4V1,LIF,IFNA2,IL17A,IFNA1,IL17B,IL23A,IFNA7,IFNA6,LOC652799,IFNA5,IFNA4,IFNA8,BMP2,IL23R,TGFBR1,TGFBR2,HGF,KDR,GH2,GH1,IL5RA,BMP7,ACVRL1,IL28RA,FLT3LG,TNFRSF11B,TNFRSF11A,CCL3L1,IL4R,IL1RAP,CCL3L3,XCR1,IL13RA1,GHR,LTBR,IL6R,TNFRSF10A,INHBB,INHBA,TNFRSF10C,TNFRSF10B,IL20RB,IL20RA,TNFRSF10D,INHBE,INHBC,IL12A,IL12B,CSF3,CXCL1,CSF2,CXCL5,CXCL3,CCR1,CSF1,CXCL2,CXCL9,KIT,CXCL6,IL7R,CCL28,CCL27,CCL26,CCL24,CCL25,CCL22,CCL23,CCL20,IL10RB,CCL21,IL10RA,CD27,IL4,IL3,IL18R1,IL6,IL5,IL8,IL7,IL9,CCL19,CCL16,CCL15,CCL18,CCL17,CCL11,CCL13,CCL14,PPBPL1,CNTF,IL28B,IL28A,IL2,PDGFB,PDGFA,IL18,IL19,TGFB3,TNFSF15,TNFSF14,IL13,TNFSF13,TNFSF12,IL15,CXCL11,TNFSF18,CXCL12,IL10,TGFB1,IL17RA,IL11,CXCL10,TGFB2,IL17RB,IL1B,CSF3R,IL15RA,PDGFC,IL1A,EGFR,IL29,IL25,IL26,TNFRSF17,CCL4L1,CCL4L2,TNFRSF14,IL24,IL21,IL22,IL11RA,IL20,RELT,EDA,CCL1,CCL3,CCL2,IL22RA1,TNFRSF12A,BMPR2,CCL8,CNTFR,CX3CL1,CCL5,CCL4,CCL7,IL12RB2,IL12RB1,EGF,CSF1R,MET,TNFRSF13B,TNFRSF13C,TNFSF10,TNFSF11,CXCL14,CXCL13,CXCL16,XCL1,XCL2,IL3RA,IL22RA2,IFNA21,LEPR,IL21R,FASLG,CXCR1,CXCR2,CXCR3,ACVR1B,CXCR5,CXCR4,CLCF1,CXCR6,CSF2RB,TPO,IFNGR2,PRL,LTB,IFNGR1,CSF2RA,LTA,IL18RAP,EDAR,IFNAR1,OSM,AMH,IFNAR2,TNFRSF9,ACVR2A,ACVR2B,TNFSF13B,NGFR,ACVR1,TNFRSF21,TNF,TNFRSF25,CRLF2,CTF1,IFNW1,KITLG,TNFRSF8,PF4,TNFRSF4,TNFRSF1A,TNFRSF1B,TNFRSF18,TNFRSF19,PLEKHO2,IL2RG,FIGF,EPO,AMHR2,IL2RB,IL2RA,FLT1,TNFSF4,FLT3,FLT4,IFNA10,EDA2R,TNFSF9,TNFSF8,LEP,TSLP,PRLR,EPOR,IFNA14,IFNA13,BMPR1B,IFNA16,MPL,BMPR1A,IFNA17 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADCY3,ADCY4,HRAS,ADCY1,ADCY2,ADCY7,ADCY8,ADCY5,ADCY6,STAT5B,FOXO3,CXCL11,CXCL12,PRKX,CXCL10,GNG8,PRKACG,TIAM2,TIAM1,CCR10,PIK3CA,GNG2,PRKACA,GNG3,PRKACB,GNG4,GNG5,GNG7,PIK3CG,ROCK1,BRAF,NCF1,PIK3CB,ROCK2,RELA,PIK3CD,CCL4L1,CCL4L2,CCR9,MAPK1,CCR8,CCR7,CCR6,PPBP,CCR5,ARRB2,CCR4,ARRB1,CCR3,MAPK3,CX3CR1,CCR2,CCL1,CCL3,CCL2,GNAI3,FGR,GNAI2,GRB2,GNAI1,NFKBIB,ADRBK2,CCL8,NFKBIA,ADRBK1,CX3CL1,PF4V1,CCL5,CCL4,CCL7,PXN,DOCK2,PTK2,KRAS,RAC2,RAC1,ITK,VAV3,MAP2K1,VAV2,VAV1,GNGT1,GNGT2,CXCL14,CXCL13,CXCL16,IKBKG,GRK6,RAP1A,GRK7,GRK4,RAP1B,GRK5,IKBKB,XCL1,XCL2,GRK1,PREX1,BCAR1,CXCR1,CXCR2,NFKB1,CXCR3,AKT1,CDC42,PLCB3,PLCB4,CXCR5,CXCR4,CCL3L1,CXCR6,CCL3L3,RHOA,SHC1,PAK1,PLCB1,XCR1,SHC3,CSK,SHC2,PLCB2,CHUK,AKT3,SHC4,AKT2,LYN,PRKCD,WAS,ELMO1,PRKCB,CRKL,GNB2,GNB1,GNB5,GNB4,WASL,GNB3,CXCL1,PRKCZ,PARD3,CXCL5,CXCL3,CCR1,CXCL2,CXCL9,GNG13,PF4,GNG11,GNG12,CXCL6,CCL28,CCL27,CCL26,CCL24,CCL25,CCL22,CCL23,CCL20,PTK2B,CCL21,SOS1,RASGRP2,SOS2,PIK3R5,PIK3R3,PIK3R1,PIK3R2,IL8,HCK,RAF1,CCL19,STAT1,CCL16,CCL15,CCL18,STAT3,CCL17,STAT2,CCL11,NRAS,CCL13,PPBPL1,CCL14,ADCY9,GSK3A,GSK3B,GNG10,JAK2,JAK3,CRK +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCZ1,IMPA2,CDIPT,IMPA1,SYNJ1,PIP5K1B,PIP5K1C,ITPKB,PIP5K1A,PTEN,ITPKA,CDS2,PLCB3,PLCB4,PIK3C3,PIK3CA,SYNJ2,PLCB1,ITPK1,PLCB2,PIK3CG,PRKCA,PIK3C2G,PIK3CB,PIK3C2A,INPPL1,PIK3C2B,PIK3CD,PI4KA,PRKCG,PI4KB,CDS1,PRKCB,PLCE1,INPP4B,INPP4A,INPP1,OCRL,DGKA,DGKB,DGKE,INPP5K,CALML3,DGKD,INPP5J,DGKG,PIKFYVE,PLCD3,PLCD4,CALML6,INPP5E,PLCD1,PIK3R5,CALML5,INPP5D,PIK3R3,INPP5B,PIK3R1,INPP5A,PIK3R2,DGKQ,DGKH,DGKI,ITPR3,ITPR1,ITPR2,PLCG1,PLCG2,CALM3,DGKZ,IPPK,PIP4K2A,PIP4K2C,CALM2,PIP4K2B,CALM1 +KEGG NEUROACTIVE LIGAND RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROACTIVE_LIGAND_RECEPTOR_INTERACTION.html CGA,ADORA3,LHCGR,LPAR4,LPAR3,LPAR2,GRIN3B,GRIN3A,LPAR1,ADORA1,S1PR2,AGTR1,S1PR3,HTR1B,AGTR2,HTR1A,S1PR1,GRIN2B,CHRNA9,MC1R,LTB4R,GRIN2C,S1PR4,GRIN2D,S1PR5,CHRNA5,GRID2,CHRNA4,CHRNA7,CHRNA6,CHRNA1,HTR1D,CHRNA3,HTR1F,CHRNA2,HTR1E,GRID1,C5AR1,GRIN2A,HTR4,SSTR4,CRHR1,SSTR5,CRHR2,SSTR2,SSTR3,SSTR1,LPAR6,HTR7,MC2R,HTR6,F2,PRLHR,PTH1R,TRHR,PPYR1,BDKRB1,BDKRB2,HCRTR2,HCRTR1,ADRB3,GPR156,PTH2R,NPY5R,GH2,GH1,AVPR1B,CHRNB4,AVPR1A,CHRNB3,CHRNB2,CHRND,CHRNB1,UTS2R,GHSR,CHRNE,LHB,CHRNG,GPR83,CSH1,OPRM1,MCHR1,CCKAR,MCHR2,GLRA1,TRPV1,GLRA3,GLRA2,EDNRA,EDNRB,KISS1R,NMUR1,NMUR2,MC5R,HTR5A,GHR,RXFP1,CCKBR,GZMA,NPBWR1,NPBWR2,RXFP2,GRM1,GRM5,GRM4,GRM3,GRM2,GRM8,GRM7,GRM6,GIPR,PTGDR,AVPR2,PARD3,NPY2R,OPRK1,FPR1,FPR3,FPR2,GCGR,NPFFR2,MAS1,NPFFR1,MC3R,OPRL1,GRIA3,BRS3,GRIA4,NPY1R,PTGFR,PLG,P2RY13,P2RY10,P2RY11,GRIA2,GRIA1,P2RY14,MC4R,HTR2B,NMBR,HTR2C,HTR2A,F2RL2,F2RL3,TSPO,THRA,GRIK1,THRB,GABRB3,GRIK2,GABRB2,GRIK3,GABRB1,GRIK4,F2RL1,GRIK5,VIPR1,VIPR2,GHRHR,SCTR,PTGIR,GALR1,GALR3,GALR2,GLP2R,NTSR1,NTSR2,GABRR2,GABRR1,GPR50,GLP1R,C3AR1,DRD1,CYSLTR1,DRD3,ADORA2B,CYSLTR2,DRD2,ADORA2A,ADCYAP1R1,DRD5,DRD4,P2RY8,P2RY6,P2RY4,CNR1,P2RY2,CNR2,P2RY1,GRPR,ADRA2A,ADRA2C,ADRA2B,GABRQ,GABRP,GABRD,GABRE,GABRA2,GABRA1,GABRA4,GABRA3,GABRA6,GRIN1,GABRA5,P2RX5,P2RX4,P2RX7,GPR35,P2RX6,P2RX1,P2RX3,P2RX2,LTB4R2,TBXA2R,MTNR1B,ADRA1B,ADRA1A,ADRA1D,MTNR1A,TACR3,TACR2,LEPR,TACR1,GABBR1,GNRHR,GABBR2,TAAR8,TAAR9,TAAR6,TAAR1,CALCRL,TAAR5,PRL,TAAR2,GABRG1,GABRG2,PTGER1,GABRG3,PTGER2,PTGER3,PTGER4,FSHR,CHRM5,ADRB2,CHRM4,ADRB1,CHRM3,CHRM2,CHRM1,FSHB,TSHR,CTSG,PTAFR,CALCR,PRSS1,OXTR,TSHB,NR3C1,APLNR,HRH1,HRH3,HRH2,PRSS2,PRSS3,HRH4,GLRB,LEP,PRLR,MLNR,CHRNA10,OPRD1,F2R +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html DBF4,TGFB3,PKMYT1,TTK,PTTG2,PTTG1,CDC16,TGFB1,TGFB2,RAD21,CDKN2A,CDKN2B,CDKN2C,CDKN2D,CCNA1,CCNA2,STAG2,CUL1,STAG1,ANAPC1,LOC651610,ANAPC2,RBL2,ANAPC5,RBL1,ANAPC4,SKP2,ESPL1,SKP1,ORC1L,WEE1,WEE2,MAD2L1,EP300,ANAPC7,MAD2L2,LOC728622,FZR1,ANAPC13,CHEK1,ANAPC10,ANAPC11,CHEK2,RBX1,ORC6L,TFDP2,TFDP1,CREBBP,SMAD4,SMAD3,CDC23,CDC20,SMAD2,ATR,CDC26,CDC27,ATM,CDKN1C,CDKN1A,HDAC2,CDKN1B,HDAC1,PLK1,PCNA,ABL1,SMC1A,SMC1B,E2F1,E2F2,MAD1L1,E2F3,E2F4,E2F5,CDC14A,CDC14B,CCNE2,CCNE1,CDC45,MCM7,ORC4L,MYC,CDC7,CDC6,CDK1,CCNH,TP53,CDK6,CDK7,MCM2,RB1,CDK4,MCM3,MCM4,CDK2,MCM5,MCM6,CCND1,CCND3,CCND2,GADD45G,ORC5L,MDM2,BUB1B,GADD45B,GADD45A,YWHAZ,PRKDC,SFN,LOC650621,ZBTB17,ORC2L,BUB1,BUB3,YWHAB,CDC25C,YWHAE,SMC3,CDC25A,CDC25B,CCNB1,CCNB3,YWHAG,CCNB2,YWHAH,ORC3L,GSK3B,YWHAQ,LOC731751 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ADCY3,ADCY4,ADCY1,ADCY2,PPP2R5B,ADCY7,PPP2R5A,ADCY8,PPP2R5D,BTRC,ADCY5,PPP2R5C,ADCY6,PKMYT1,PTTG2,AURKA,PTTG1,CDC16,PRKX,PRKACG,PGR,MOS,STAG3,PRKACA,PRKACB,CUL1,ANAPC1,ANAPC2,ANAPC5,SGOL1,ANAPC4,CHP2,ESPL1,SKP1,PPP1CC,PPP1CB,MAPK1,REC8,PPP1CA,MAD2L1,MAPK3,PPP2R5E,ANAPC7,MAD2L2,LOC728622,ANAPC13,ANAPC10,ANAPC11,RBX1,INS,FBXO43,FBXO5,MAP2K1,CDC23,CDC20,CDC26,CDC27,PLK1,SMC1A,SMC1B,PLCZ1,CPEB1,CCNE2,CCNE1,SLK,PPP2R1B,CDK1,PPP2R1A,AR,CDK2,SPDYC,SPDYA,YWHAZ,CAMK2G,PPP3R1,PPP3R2,LOC650621,IGF1R,CALML3,PPP2CA,PPP2CB,PPP3CB,CAMK2D,BUB1,PPP3CC,CALML6,CAMK2B,CHP,PPP3CA,CALML5,CAMK2A,FBXW11,YWHAB,IGF1,ITPR3,CDC25C,YWHAE,ITPR1,SMC3,ITPR2,CCNB1,RPS6KA6,YWHAG,RPS6KA3,CCNB2,YWHAH,MAPK12,ADCY9,RPS6KA1,RPS6KA2,YWHAQ,CALM3,CALM2,CALM1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html STEAP3,LRDD,ZMAT3,RPRM,PMAIP1,PTEN,GTSE1,CCNE2,CCNE1,TP53I3,CASP3,CDKN2A,CASP9,SERPINE1,CASP8,FAS,TP53AIP1,LOC651610,CDK1,CYCS,TP53,CDK6,CDK4,CDK2,RFWD2,PPM1D,CCND1,TNFRSF10B,CCND3,CCND2,SERPINB5,RRM2,CD82,GADD45G,DDB2,MDM2,SIAH1,MDM4,GADD45B,GADD45A,BID,CHEK1,SFN,RRM2B,CHEK2,CCNG1,SESN2,CCNG2,SESN1,SESN3,SHISA5,BAI1,RCHY1,THBS1,IGF1,ATR,TP73,ATM,CCNB1,CCNB3,EI24,CDKN1A,CCNB2,BBC3,BAX,TSC2,APAF1,PERP,IGFBP3 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html BTRC,SAE1,CDC16,CUL3,CUL2,CUL5,CUL7,WWP2,KLHL9,WWP1,ITCH,CUL1,ANAPC1,ANAPC2,ANAPC5,SOCS3,ANAPC4,SOCS1,SKP2,UBE2J1,SKP1,UBE2J2,TRIM37,PIAS4,HUWE1,PIAS3,UBR5,TRIM32,PIAS2,PIAS1,ANAPC7,LOC728622,FZR1,SYVN1,ANAPC13,PPIL2,UBA7,UBA6,KEAP1,ANAPC10,UBE2QL1,CDC34,ANAPC11,RBX1,UBE2D4,FBXW7,UBE2D3,FBXW8,UBE2D2,LOC652346,RHOBTB2,FBXO4,RCHY1,TRAF6,UBE2D1,FBXO2,CDC23,UBE2L6,CDC20,UBOX5,CDC26,UBE2L3,CDC27,BRCA1,UBE2E3,CBLC,CBLB,RNF7,NEDD4,UBA1,UBA2,UBA3,AIRE,SMURF2,SMURF1,UBE2E2,UBE2E1,UBE2G1,UBE2G2,FANCL,MGRN1,UBE2A,DDB1,HERC4,UBE2F,HERC3,UBE2I,UBE2H,HERC2,UBE2NL,UBE2C,HERC1,UBE2B,RFWD2,UBE2N,UBE2O,UBE2K,UBE2M,KLHL13,DDB2,MDM2,UBE2W,SIAH1,UBE2S,UBE2U,UBE2Z,UBE3B,XIAP,UBE3A,PML,NHLRC1,UBE3C,LOC650621,STUB1,UBE2R2,PRPF19,ERCC8,MAP3K1,NEDD4L,FBXW11,TRIP12,UBE4A,VHL,CBL,UBE4B,BIRC6,LOC652671,PARK2,MID1,BIRC3,UBE2Q2,BIRC2,UBE2Q1,CUL4A,TCEB2,DET1,CUL4B,TCEB1 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html SNAP29,STX8,STX7,BET1,USE1,TSNARE1,STX12,STX19,STX18,STX17,STX16,SNAP47,SEC22B,SNAP23,STX11,SNAP25,STX10,STX6,STX5,STX4,STX1A,STX3,STX2,VTI1B,STX1B,VTI1A,BNIP1,VAMP8,VAMP7,VAMP5,VAMP4,BET1L,VAMP3,GOSR2,GOSR1,VAMP2,VAMP1,YKT6 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA21,ATG12,BECN1L1,IFNA2,IFNA1,ATG5,IFNA7,INS,IFNA6,IFNA5,ATG7,IFNG,IFNA4,PIK3C3,PRKAA1,PRKAA2,IFNA8,PIK3R4,GABARAPL2,GABARAPL1,BECN1,IFNA10,ATG3,GABARAP,ATG4D,ATG4C,ATG4B,ULK1,ULK2,ATG4A,ULK3,IFNA14,IFNA13,IFNA16,IFNA17 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html HGSNAT,GNPTG,AP4E1,AP1G1,LGMN,ATP6AP1,IDS,MCOLN1,IDUA,NAPSA,AP4M1,GNS,NPC1,NPC2,NEU1,CTSL2,NAGLU,ACP5,PPT2,ACP2,CTSA,PPT1,ABCA2,CTSL1,ATP6V0B,SLC11A2,ATP6V0C,SLC11A1,CD68,LAPTM5,NAGA,GALNS,GALC,SCARB2,ENTPD4,LAPTM4B,ABCB9,LAPTM4A,GUSB,CD63,DNASE2,LAMP1,LAMP2,LAMP3,CLTCL1,ARSB,SGSH,CLTA,CLTB,GM2A,AP1B1,ARSG,HEXA,HEXB,AP3S2,AP3S1,CLTC,ASAH1,GLB1,AP1S3,AP1S1,AP1S2,TPP1,AP3B2,ATP6V0D1,MAN2B1,ATP6V0D2,AP3B1,CLN3,HYAL1,CTSZ,ATP6V1H,CTSS,CD164,M6PR,CTSW,DNASE2B,CTSK,CTSO,IGF2R,GAA,CTSE,CTSD,SORT1,CTSC,CTSB,CTSH,CLN5,CTSG,CTSF,AP1M1,MFSD8,AP1M2,PSAPL1,NAGPA,GNPTAB,AP3M2,AP3M1,AP3D1,GBA,AGA,TCIRG1,PLA2G15,LIPA,PSAP,AP4S1,FUCA1,MANBA,SLC17A5,GLA,SUMF1,SMPD1,ARSA,ATP6V0A1,GGA1,AP4B1,ATP6V0A4,CTNS,GGA2,GGA3,ATP6V0A2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HRAS,CHMP4C,CHMP5,CHMP4B,CHMP4A,CHMP6,FAM125A,DAB2,WWP1,VPS4B,GIT2,VPS4A,DNAJC6,STAM,ITCH,EGFR,SH3GL3,PLD2,RET,PLD1,VPS45,PSD3,HLA-A,PSD4,HLA-C,HLA-B,PSD2,HLA-E,HLA-G,HLA-F,CCR5,ARRB2,ACAP3,ARRB1,ACAP1,ACAP2,PDGFRA,PDCD6IP,SH3GL2,SH3GL1,CHMP2A,FGFR2,ARFGAP1,ARFGAP2,FGFR4,ARFGAP3,FGFR3,ERBB4,ERBB3,STAM2,ASAP2,ASAP1,ADRBK2,HSPA1A,ADRBK1,ARF6,ASAP3,HSPA1B,SRC,CHMP2B,HSPA1L,ADRB3,LOC652799,SNF8,EGF,IQSEC3,TRAF6,IQSEC1,AP2M1,CSF1R,IQSEC2,GIT1,PARD6A,PARD6B,MET,LOC652614,KDR,EPS15,CBLC,CBLB,RABEP1,NEDD4,NTRK1,GRK6,GRK7,HGS,GRK4,SMURF2,GRK5,PARD6G,SMURF1,CLTCL1,GRK1,PIP4K2B,CLTA,CLTB,RAB5B,LDLR,RAB5C,TSG101,AP2S1,VPS37A,PIP5K1B,VPS37B,CXCR1,PIP5K1C,CXCR2,VPS37C,PIP5K1A,VPS37D,CLTC,ZFYVE20,CDC42,AP2B1,SMAP2,SMAP1,CXCR4,AGAP1,AGAP2,EPN3,RAB4A,PRKCI,LDLRAP1,RAB11FIP4,RAB11FIP5,RAB11FIP2,ADRB2,RAB11FIP3,ADRB1,CHMP1B,PSD,RAB5A,SH3KBP1,MDM2,RAB11FIP1,EPN1,EPN2,PRKCZ,PARD3,USP8,EEA1,KIT,IGF1R,HSPA2,SH3GLB2,SH3GLB1,PIKFYVE,HSPA6,RAB11B,RAB11A,IL2RG,NEDD4L,EHD1,EHD2,VPS36,EHD3,HSPA8,EHD4,STAMBP,FAM125B,DNM3,IL2RB,IL2RA,DNM1L,FLT1,VTA1,CBL,RUFY1,AP2A2,RAB31,TFRC,AP2A1,RAB22A,VPS24,VPS28,ARAP3,ARAP2,DNM1,ARAP1,DNM2,F2R,VPS25,RNF41 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ACOX2,ACOX1,EHHADH,PEX6,PRDX5,PEX5,MPV17,PEX3,PMVK,PRDX1,AGXT,PEX11G,PEX7,ACOX3,FAR1,PECR,FAR2,ACOT8,AGPS,PEX1,PEX2,MPV17L,PXMP4,PXMP2,GNPAT,DAO,NOS2,CAT,HMGCL,NUDT19,NUDT12,DECR2,PECI,DDO,HAO1,DHRS4,PEX26,HAO2,MVK,SLC27A2,CROT,ACAA1,XDH,HACL1,ECH1,ABCD1,PIPOX,ACSL1,PEX19,GSTK1,PEX16,ABCD2,IDH2,PEX14,IDH1,ABCD3,PEX13,ABCD4,PEX12,HSD17B4,ACSL4,ACSL3,PEX10,ACSL6,ACSL5,PAOX,AMACR,EPHX2,CRAT,SOD1,PHYH,SOD2,PEX11A,PEX11B,BAAT,MLYCD,SCP2,SLC25A17 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PGF,RPS6KB2,RPS6KB1,AKT1,PDPK1,EIF4EBP1,PIK3CA,MLST8,CAB39,AKT3,AKT2,PIK3CG,BRAF,PIK3CB,PIK3CD,RPTOR,DDIT4,VEGFB,MAPK1,VEGFC,HIF1A,MAPK3,VEGFA,CAB39L,STK11,INS,PIK3R5,PRKAA1,PRKAA2,PIK3R3,FIGF,PIK3R1,PIK3R2,STRADA,IGF1,RICTOR,RPS6,EIF4E1B,EIF4B,RPS6KA6,RPS6KA3,EIF4E,TSC1,RPS6KA1,RPS6KA2,ULK1,ULK2,TSC2,ULK3,RHEB,MTOR,EIF4E2 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html FASLG,NFKB1,PRKX,PRKACG,AKT1,CASP6,PRKAR2B,PRKAR2A,CASP3,MYD88,CASP9,CASP7,IL1RAP,CASP8,EXOG,PIK3CA,IL1B,CSF2RB,PRKACA,FAS,PRKACB,IL1A,CHUK,AKT3,AKT2,PIK3CG,LOC651610,IRAK2,IRAK1,AIFM1,DFFA,PIK3CB,DFFB,RELA,PIK3CD,CYCS,TP53,CHP2,FADD,TNFRSF10A,TNFRSF10C,TNFRSF10B,TNFRSF10D,RIPK1,MAP3K14,NGF,BID,TRAF2,IL1R1,TNF,XIAP,PPP3R1,PPP3R2,NFKBIA,BCL2L1,IRAK4,IRAK3,TNFRSF1A,BCL2,PPP3CB,PPP3CC,PIK3R5,CHP,PPP3CA,PIK3R3,PIK3R1,PIK3R2,CFLAR,IL3,ENDOD1,BAD,BIRC3,CAPN2,BIRC2,ATM,TRADD,CAPN1,CASP10,TNFSF10,NTRK1,PRKAR1B,BAX,ENDOG,PRKAR1A,IKBKG,APAF1,IKBKB,IL3RA +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html UQCRC2,ATP1B1,UQCRC1,SLC9A6,ATP1B3,ATP1B2,TNNC1,ATP1B4,CYC1,COX5A,UQCRFS1,UQCRQ,COX5B,UQCR10,UQCR11,CACNG8,CACNG7,CACNG6,CACNG5,COX4I2,CACNG4,COX4I1,MYH7,LOC727947,CACNG3,MYH6,CACNG2,CACNG1,COX6C,TNNT2,LOC644310,UQCRH,RYR2,UQCRB,FXYD2,MYL2,MYL3,COX7B2,COX7B,CACNB1,COX7C,CYTB,CACNB2,CACNB3,COX7A2L,CACNB4,TPM2,TPM1,TPM4,TPM3,COX6B1,COX6B2,ACTC1,CACNA2D1,SLC8A1,COX7A2,COX7A1,COX8C,COX8A,ATP1A3,ATP1A4,ATP1A1,ATP1A2,CACNA2D3,TNNI3,CACNA2D2,CACNA1S,UQCRHL,CACNA2D4,ATP2A2,COX3,COX2,LOC100130247,COX1,COX6A2,COX6A1,CACNA1F,CACNA1C,CACNA1D,SLC9A1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADCY3,GNA13,ADCY4,ADCY1,ADCY2,ADCY7,ADCY8,GNA11,ADCY5,GNA12,ADCY6,PRKG1,PRKX,PRKACG,AGTR1,ACTG2,PTGIR,PLA2G1B,PRKACA,PRKACB,ROCK1,BRAF,ROCK2,MYLK3,MYLK2,PPP1CC,PPP1CB,MAPK1,PPP1CA,MAPK3,PLA2G2A,PLA2G2C,PLA2G2E,PLA2G2D,PLA2G2F,KCNMB3,MYL6,KCNMB4,ADORA2B,ADORA2A,KCNMB1,KCNMB2,MYL9,MAP2K1,MAP2K2,CACNA1S,PLA2G4A,AVPR1B,ADRA1B,AVPR1A,MYH11,ADRA1A,CACNA1F,CACNA1C,PLA2G4B,CACNA1D,ADRA1D,PLA2G4E,MYLK,MRVI1,EDNRA,PLCB3,PLCB4,GUCY1A2,RHOA,GUCY1A3,CALCRL,PLCB1,PLCB2,RAMP1,PPP1R14A,PRKCA,KCNMA1,RAMP3,RAMP2,ARHGEF1,ACTA2,PRKCH,PRKCG,PRKCE,ARHGEF12,PRKCD,PRKCB,ARHGEF11,PRKCQ,GNAQ,PLA2G6,GNAS,GUCY1B3,PLA2G3,PLA2G5,PPP1R12B,CALD1,JMJD7-PLA2G4B,CYP4A22,CALML3,MYL6B,PLA2G12A,PLA2G12B,PPP1R12A,CALML6,CALML5,PLA2G10,NPR1,RAF1,NPR2,ITPR3,ITPR1,ITPR2,CYP4A11,ADCY9,ARAF,CALM3,CALM2,CALM1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP2R5B,PPP2R5A,PPP2R5D,BTRC,WNT3A,PPP2R5C,MMP7,PRKX,CTNNB1,WNT2,CSNK2A2,MAP3K7,PRKACG,WNT1,WNT4,WNT3,CSNK2A1,PRKACA,PRKACB,WNT6,CUL1,WNT10A,WNT10B,VANGL1,ROCK1,ROCK2,VANGL2,CHP2,SKP1,EP300,JUN,MAPK9,PPP2R5E,MAPK8,LOC728622,WNT5A,WNT5B,CXXC4,DAAM1,DAAM2,RBX1,RAC2,RAC3,RAC1,CACYBP,AXIN2,AXIN1,DVL2,DVL3,TCF7,CREBBP,SMAD4,SMAD3,SMAD2,PORCN,DVL1,SFRP5,SFRP1,PRICKLE1,SFRP2,SFRP4,PRICKLE2,WIF1,PPARD,PLCB3,PLCB4,FRAT1,RHOA,FRAT2,SOX17,PLCB1,FOSL1,MYC,PLCB2,PPP2R1B,PRKCA,PPP2R1A,TBL1XR1,CTBP1,CTBP2,TP53,LEF1,PRKCG,PRKCB,CTNNBIP1,SENP2,CCND1,PSEN1,CCND3,CCND2,WNT9B,WNT11,SIAH1,RUVBL1,WNT9A,CER1,NKD1,WNT16,NKD2,APC2,CAMK2G,PPP3R1,PPP3R2,TCF7L2,TCF7L1,CHD8,PPP2CA,PPP2CB,PPP3CB,NFAT5,CAMK2D,PPP3CC,NFATC4,CAMK2B,CHP,PPP3CA,NFATC2,NFATC3,FBXW11,CAMK2A,WNT8A,WNT8B,APC,NFATC1,CSNK1A1,FZD9,FZD8,NLK,FZD1,CSNK2B,CSNK1A1L,FZD3,FZD2,MAPK10,FZD5,FZD4,FZD7,DKK4,WNT2B,FZD6,DKK2,FZD10,WNT7B,DKK1,CSNK1E,GSK3B,LRP6,TBL1X,WNT7A,LRP5,TBL1Y +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html ETV7,LOC652554,GRB2,CPEB1,KRAS,SOS1,SOS2,PIWIL1,PIWIL2,PIWIL3,PIWIL4,ETV6,EGFR,MAP2K1,SPIRE1,SPIRE2,NOTCH3,FMN2,NOTCH2,MAPK1,NOTCH1,ETS1,ETS2,NOTCH4,MAPK3 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html MFNG,APH1A,JAG2,JAG1,CIR1,NUMB,PSENEN,MAML3,RBPJL,LFNG,PTCRA,DTX4,DVL2,KAT2A,DVL3,CTBP1,KAT2B,CTBP2,DTX1,DTX3L,DTX2,MAML1,MAML2,DTX3,CREBBP,DLL3,DLL1,SNW1,RFNG,DVL1,NUMBL,NCSTN,HES1,NOTCH3,NOTCH2,NOTCH1,HDAC2,EP300,HDAC1,PSEN1,HES5,DLL4,PSEN2,NOTCH4,ADAM17,RBPJ,NCOR2 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT3A,BTRC,STK36,GLI2,GLI3,SHH,PRKX,ZIC2,GLI1,WNT2,PRKACG,WNT1,WNT4,WNT3,RAB23,PRKACA,HHIP,PRKACB,WNT6,IHH,WNT10A,WNT10B,CSNK1G1,CSNK1G2,SMO,WNT9B,WNT11,CSNK1G3,WNT9A,WNT5A,DHH,WNT16,WNT5B,SUFU,FBXW11,WNT8A,WNT8B,CSNK1A1,BMP4,BMP2,CSNK1A1L,GAS1,WNT2B,WNT7B,CSNK1D,CSNK1E,GSK3B,PTCH1,PTCH2,BMP7,LRP2,WNT7A,BMP5,BMP8B,BMP6,BMP8A +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html NOG,E2F4,ACVRL1,LTBP1,E2F5,GDF7,GDF6,GDF5,FST,TGFB3,RPS6KB2,RPS6KB1,TGFB1,ACVR1C,TGFB2,CDKN2B,ZFYVE16,ZFYVE9,IFNG,RHOA,MYC,CUL1,PITX2,PPP2R1B,PPP2R1A,RBL2,ROCK1,ROCK2,NODAL,RBL1,SKP1,LEFTY1,INHBB,ACVR2A,AMH,INHBA,MAPK1,ACVR2B,EP300,INHBE,MAPK3,INHBC,ACVR1,LOC728622,TNF,BMPR2,DCN,RBX1,COMP,PPP2CA,LEFTY2,PPP2CB,THBS1,THBS2,THBS3,TFDP1,THBS4,BMP4,AMHR2,BMP2,SMAD9,SMAD7,SMAD6,TGFBR1,TGFBR2,CREBBP,SMAD5,SMAD4,SMAD3,SMAD2,SMAD1,SP1,ID2,ID1,ID4,SMURF2,SMURF1,ID3,BMP7,BMPR1B,CHRD,BMP5,BMP8B,BMP6,BMPR1A,BMP8A +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html HRAS,PLXNA3,PLXNA1,PLXNA2,EFNA1,EFNA2,EFNA3,L1CAM,LRRC4C,CXCL12,UNC5B,UNC5A,ROBO1,SEMA7A,ROBO2,UNC5D,ROBO3,UNC5C,ROCK1,EFNB3,ROCK2,PLXNB1,PLXNB2,EFNB1,PLXNB3,EFNB2,CHP2,MAPK1,RND1,MAPK3,EFNA5,EFNA4,PLXNC1,GNAI3,GNAI2,GNAI1,EPHB3,ITGB1,EPHB4,EPHB1,EPHB2,SEMA5A,SEMA5B,PTK2,EPHB6,KRAS,RAC2,RAC3,RAC1,MET,NTN4,EPHA1,NTN1,EPHA2,NTN3,EPHA3,EPHA5,EPHA4,SEMA6A,EPHA7,SEMA6B,EPHA6,SEMA6C,SEMA6D,RGS3,EPHA8,ABL1,NRP1,FES,PAK6,PAK7,CDC42,PAK2,SEMA3G,PAK3,CXCR4,PAK4,SEMA3F,SEMA3E,SEMA3D,RHOA,SEMA3C,SEMA3B,RHOD,PAK1,SEMA3A,LIMK2,LIMK1,ARHGEF12,CDK5,SLIT1,SLIT2,SLIT3,NCK2,SEMA4G,SEMA4F,CFL2,NCK1,CFL1,SRGAP3,SEMA4C,SEMA4B,SEMA4D,SEMA4A,SRGAP1,SRGAP2,ABLIM1,DCC,ABLIM2,ABLIM3,PPP3R1,PPP3R2,PPP3CB,NFAT5,PPP3CC,NFATC4,CHP,PPP3CA,NFATC2,NFATC3,RASA1,NFATC1,NGEF,NTNG1,DPYSL5,DPYSL2,NRAS,FYN,GSK3B +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html HRAS,PTGS2,AKT1,CDC42,CASP9,PLA2G1B,PIK3CA,NOS3,SHC2,AKT3,AKT2,PIK3CG,PRKCA,PIK3CB,PIK3CD,CHP2,PRKCG,PRKCB,SH2D2A,MAPK1,VEGFA,MAPK3,PLA2G2A,HSPB1,PLA2G6,PLA2G2C,PLA2G2E,PLA2G3,PLA2G2D,PLA2G5,PLA2G2F,PPP3R1,MAPKAPK3,PPP3R2,MAPKAPK2,SRC,PXN,PTK2,JMJD7-PLA2G4B,KRAS,RAC2,RAC3,PLA2G12A,PLA2G12B,RAC1,PPP3CB,NFAT5,PPP3CC,PIK3R5,NFATC4,CHP,PPP3CA,NFATC2,PIK3R3,NFATC3,PIK3R1,PIK3R2,NFATC1,SPHK2,PLA2G10,MAP2K1,MAP2K2,SPHK1,RAF1,MAPK11,BAD,KDR,NRAS,PLA2G4A,PLCG1,MAPK12,MAPK13,MAPK14,PLCG2,PLA2G4B,PLA2G4E +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html HRAS,PGF,CTNNB1,ACTG1,ILK,PIK3CA,RAPGEF1,PIK3CG,ROCK1,BRAF,ROCK2,PIK3CB,MYLK3,PIK3CD,MYLK2,VEGFB,VEGFC,MAPK1,PPP1CA,LAMC3,JUN,VEGFA,MAPK3,PDGFRA,MAPK9,PDGFRB,LAMC2,MAPK8,LAMC1,ITGA2B,IBSP,ERBB2,ITGA11,ITGA10,PXN,LAMB4,LAMB3,LAMB2,RAC2,RAC3,RAC1,LAMB1,SPP1,LOC646048,MAP2K1,HGF,KDR,LAMA2,LAMA1,LAMA4,LAMA3,LAMA5,LOC646821,BCAR1,PTEN,PDPK1,COL11A2,COL11A1,PARVG,FLNC,FLNB,FLNA,CCND1,CCND3,CCND2,PARVB,PARVA,COL3A1,COL2A1,COL6A6,BCL2,SOS1,COL6A3,SOS2,COL6A2,COL6A1,THBS1,THBS2,THBS3,THBS4,IGF1,MAPK10,BIRC3,CAPN2,BIRC2,FYN,GSK3B,PDGFB,PDGFA,VTN,MYL10,CHAD,VCL,PDGFC,PDGFD,EGFR,ACTN4,ACTN1,ACTN2,ACTN3,PPP1CC,PPP1CB,RASGRF1,COL1A2,RELN,COL1A1,CAV3,CAV2,MYL7,CAV1,MYL5,MYL2,GRB2,DIAPH1,ITGB4,ELK1,ITGB5,ITGB3,ITGB1,SRC,MYL9,PTK2,DOCK1,ITGB8,ITGB7,ITGAV,ITGB6,EGF,FN1,VAV3,MET,ITGA1,MYLPF,ITGA2,MYL12B,ITGA3,MYL12A,ITGA4,VAV2,VAV1,ITGA9,ITGA6,ITGA5,ITGA8,ITGA7,RAP1A,RAP1B,MYLK,TLN1,TLN2,PIP5K1C,AKT1,PAK6,PAK7,CDC42,ARHGAP5,PAK2,PAK3,PAK4,RHOA,SHC1,ZYX,PAK1,SHC3,SHC2,AKT3,AKT2,SHC4,PRKCA,PRKCG,VASP,PRKCB,CRKL,XIAP,TNC,IGF1R,COMP,TNR,PPP1R12A,TNN,PIK3R5,PIK3R3,FIGF,PIK3R1,PIK3R2,ACTB,COL4A4,COL4A2,FLT1,COL4A1,TNXB,FLT4,RAF1,BAD,COL5A3,COL5A2,COL5A1,COL4A6,VWF,GRLF1,CRK +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html VTN,SDC4,SDC2,SDC3,CHAD,GP9,CD47,GP5,GP6,CD44,SV2B,SV2A,COL11A2,COL11A1,SV2C,SDC1,CD36,LAMC3,COL1A2,RELN,LAMC2,LAMC1,COL1A1,ITGA2B,IBSP,TNC,COL3A1,DAG1,ITGA11,ITGB4,ITGA10,ITGB5,COL2A1,ITGB3,ITGB1,HMMR,LAMB4,LAMB3,LAMB2,COL6A6,ITGB8,GP1BB,TNR,COMP,ITGB7,ITGAV,COL6A3,ITGB6,COL6A2,COL6A1,GP1BA,TNN,AGRN,THBS1,LAMB1,THBS2,THBS3,THBS4,FN1,SPP1,COL4A4,COL4A2,TNXB,COL4A1,ITGA1,HSPG2,ITGA2,ITGA3,ITGA4,COL5A3,COL5A2,COL5A1,COL4A6,LAMA2,LAMA1,VWF,ITGA9,LAMA4,LAMA3,ITGA6,LAMA5,ITGA5,ITGA8,ITGA7 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html PVR,MPZL1,CADM3,OCLN,CADM1,L1CAM,NRCAM,NEGR1,SPN,F11R,PTPRM,PTPRF,HLA-A,HLA-C,CD40,HLA-B,HLA-E,HLA-DQA2,PDCD1LG2,HLA-G,HLA-DQA1,HLA-F,NCAM1,NCAM2,CD40LG,CD34,HLA-DPA1,MADCAM1,CD226,HLA-DRA,GLG1,ITGAL,HLA-DRB1,HLA-DRB3,ITGB2,ITGB1,ITGAM,ALCAM,PVRL1,ITGB8,PVRL3,ITGAV,ITGB7,ICOS,PVRL2,HLA-DRB4,HLA-DRB5,HLA-DPB1,HLA-DOA,HLA-DOB,CD276,ITGA4,LOC652614,ITGA9,ITGA6,ITGA8,NLGN4X,CD58,CD274,CLDN8,CLDN7,CLDN9,CLDN4,CD8A,CLDN3,CD8B,CLDN6,CLDN5,SDC4,HLA-DMB,HLA-DMA,PDCD1,SDC2,SDC3,CNTNAP2,CNTNAP1,ESAM,ICAM1,NRXN2,NRXN3,ICAM2,ICAM3,NRXN1,SIGLEC1,CD86,SDC1,CD80,CNTN2,CLDN1,CNTN1,CLDN2,VCAN,JAM2,JAM3,ICOSLG,HLA-DQB1,CLDN16,CLDN17,CLDN18,CLDN19,CDH1,CLDN10,CLDN11,CDH2,NEO1,CDH3,CDH4,CLDN14,CDH5,CLDN15,VCAM1,CD2,CD22,CD4,CD6,SELPLG,CD28,PTPRC,SELP,MAG,MPZ,SELL,CTLA4,NLGN1,NFASC,CLDN22,CD99,NLGN2,NLGN3,CLDN20,CLDN23,CDH15,PECAM1,SELE +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html LOC646821,WASF3,WASF1,WASF2,LMO7,FER,IQGAP1,VCL,CTNNB1,MAP3K7,ACTG1,CSNK2A2,CDC42,CSNK2A1,RHOA,INSR,PTPRJ,EGFR,PTPRM,PTPRF,ACTN4,BAIAP2,LEF1,ACTN1,ACTN2,ACTN3,CTNNA1,WAS,CTNNA3,CTNNA2,FARP2,MAPK1,EP300,MAPK3,WASL,FGFR1,PARD3,ERBB2,CTNND1,CDH1,ACP1,TCF7L2,TCF7L1,SRC,PVRL4,IGF1R,PVRL1,RAC2,SORBS1,RAC3,PVRL3,PVRL2,RAC1,SSX2IP,YES1,MLLT4,ACTB,PTPRB,LOC646048,PTPN6,TCF7,NLK,TGFBR1,MET,TGFBR2,CREBBP,SMAD4,CSNK2B,SMAD3,SMAD2,SNAI2,SNAI1,TJP1,FYN,PTPN1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html HRAS,MYH15,OCLN,VAPA,ZAK,CASK,MYL10,AMOTL1,CTNNB1,CSNK2A2,ACTG1,CSNK2A1,RRAS,F11R,MAGI3,INADL,MAGI2,MAGI1,MYH1,ACTN4,MPDZ,MYH3,MYH2,MYH4,ACTN1,MYH7,ACTN2,MYH6,ACTN3,CTNNA1,CSDA,MYH9,MYH8,CTNNA3,CTNNA2,IGSF5,CGN,RAB13,MYH7B,MYL7,MYL5,GNAI3,MYL2,GNAI2,GNAI1,MRAS,SRC,TJAP1,LLGL1,LLGL2,MYL9,KRAS,PPP2R2B,PPP2R2C,PPP2R2D,PARD6A,PARD6B,LOC646048,EPB41,CRB3,MYLPF,MYL12B,MYL12A,MYH11,MYH13,PARD6G,MYH14,MYH10,CLDN8,CLDN7,LOC646821,CLDN9,CLDN4,CLDN3,CLDN6,CLDN5,PTEN,AKT1,CDC42,CTTN,RHOA,AKT3,AKT2,PPP2R1B,PRKCA,PPP2R1A,SYMPK,MPP5,PRKCI,PRKCH,PRKCG,CDK4,PRKCE,PRKCD,PRKCB,EPB41L2,EPB41L3,PRKCQ,EPB41L1,RRAS2,ASH1L,CLDN1,CLDN2,JAM2,JAM3,PPP2R2A,CLDN16,CLDN17,PRKCZ,PARD3,RAB3B,CLDN18,CLDN19,CLDN10,CLDN11,CLDN14,CLDN15,PPP2CA,PPP2CB,EXOC4,EXOC3,YES1,MLLT4,ACTB,HCLS1,CSNK2B,CLDN22,CLDN20,CLDN23,NRAS,TJP1,TJP3,TJP2,SPTAN1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ADCY3,ADCY4,ADCY1,HRAS,ADCY2,PDGFB,TUBB2B,ADCY7,PDGFA,TUBB2A,ADCY8,GNA11,ADCY5,TUBB2C,ADCY6,GJA1,LPAR1,PRKG2,PRKG1,PRKX,PRKACG,PLCB3,PLCB4,GUCY1A2,TUBB6,GUCY1A3,PRKACA,PDGFC,PRKACB,TUBB8,PDGFD,TUBB1,PLCB1,TUBA1A,PLCB2,TUBA1B,TUBA1C,TUBB3,TUBB4,MAP2K5,EGFR,PRKCA,GJD2,CDK1,PRKCG,GRM1,PRKCB,GRM5,MAPK1,ADRB1,GNAQ,MAPK3,PDGFRA,TUBA4A,PDGFRB,GNAS,GUCY1B3,MAPK7,DRD1,GNAI3,GNAI2,GNAI1,GRB2,DRD2,SRC,TUBB4Q,TUBB,KRAS,MAP3K2,SOS1,SOS2,TUBA3C,TUBA3D,TUBA3E,EGF,MAP2K1,MAP2K2,RAF1,ITPR3,ITPR1,ITPR2,NRAS,TJP1,TUBA8,ADCY9,CSNK1D,TUBAL3,HTR2B,HTR2C,HTR2A +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html A2M,MASP1,MASP2,F13A1,C1QC,SERPINA5,CD46,SERPINE1,CFH,SERPINA1,CFI,CFD,KNG1,F11,F12,F10,C5AR1,C4A,C4B,F8,F9,SERPING1,F7,PROC,PLAUR,C8G,C1QA,C8A,C1QB,C8B,THBD,F5,SERPINF2,F3,F2,TFPI,PROS1,C3AR1,MBL2,C7,C9,C3,C6,C5,C1R,BDKRB1,C1S,BDKRB2,F13B,FGG,FGA,FGB,KLKB1,SERPINC1,C2,PLAT,CR1,CR2,CFB,C4BPB,C4BPA,PLG,VWF,CD55,CD59,SERPIND1,CPB2,PLAU,F2R +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HSP90AB1,KLRC4,IFNA21,KLRC2,KLRC3,PDIA3,CD8A,CD8B,LGMN,HLA-DMB,CANX,HLA-DMA,RFXAP,RFXANK,B2M,TAPBP,KLRD1,LTA,CIITA,HSP90AA1,HLA-A,HLA-C,HLA-B,CTSS,HLA-E,HLA-DQA2,HLA-DQA1,HLA-G,HLA-F,PSME1,PSME2,KIR3DL3,HLA-DPA1,KIR2DL1,PSME3,CTSB,KIR2DL3,KIR2DL2,KLRC1,KIR3DL1,HLA-DRA,KIR2DL4,KIR3DL2,HLA-DQB1,KIR2DL5A,HLA-DRB1,HLA-DRB3,NFYC,IFI30,NFYB,HSPA1A,NFYA,HSPA1B,CALR,CD74,CTSL1,HSPA1L,IFNA2,IFNA1,HSPA2,IFNA7,IFNA6,TAP2,IFNA5,TAP1,IFNA4,HSPA6,HLA-DRB4,HLA-DRB5,HSPA4,CD4,HLA-DPB1,HSPA5,IFNA8,HLA-DOA,HLA-DOB,HSPA8,KIR2DS5,RFX5,CREB1,IFNA10,KIR2DS1,KIR2DS4,KIR2DS3,LOC652614,IFNA14,IFNA13,IFNA16,IFNA17 +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html THOP1,MME,ANPEP,CTSA,ENPEP,LNPEP,AGTR1,ACE,AGTR2,REN,AGT,MAS1,ACE2,CPA3,CMA1,NLN,CTSG +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TBK1,TLR1,TIRAP,TLR2,TLR3,TLR4,TLR5,CXCL11,TLR6,TLR7,TLR8,CXCL10,TLR9,MAP3K7,MYD88,MAP3K8,IL1B,PIK3CA,MAP2K7,MAP2K6,PIK3CG,PIK3CB,RELA,PIK3CD,FADD,CD40,MAPK1,IFNB1,JUN,MAPK3,MAPK9,MAPK8,CCL3,NFKBIA,CCL5,CCL4,IRAK4,IFNA2,IFNA1,IFNA7,IFNA6,IFNA5,IFNA4,RAC1,IFNA8,TRAF6,TRAF3,SPP1,MAP2K1,MAP2K2,MAP2K3,MAP2K4,IKBKE,IKBKG,IKBKB,IFNA21,TOLLIP,NFKB1,AKT1,FOS,TICAM1,CASP8,TICAM2,LBP,CHUK,AKT3,AKT2,IRAK1,LY96,IFNAR1,IFNAR2,CD86,CTSK,CD80,RIPK1,IL12A,IL12B,TNF,CXCL9,PIK3R5,PIK3R3,PIK3R1,PIK3R2,IL6,IL8,IFNA10,MAPK11,MAPK10,STAT1,TAB1,TAB2,MAPK12,IRF5,MAPK13,IRF7,MAPK14,IFNA14,IRF3,IFNA13,IFNA16,CD14,IFNA17 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html HSP90AB1,IL18,NFKB1,CASP5,MAP3K7,NLRC4,NOD2,NOD1,CASP8,IL1B,CASP1,CHUK,HSP90AA1,RELA,NLRP3,NLRP1,MAPK1,CARD18,MAPK3,MAPK9,RIPK2,NAIP,MAPK8,TNFAIP3,CXCL1,TNF,CCL2,XIAP,NFKBIB,CXCL2,CCL8,NFKBIA,CCL5,PYDC1,CCL7,MEFV,PYCARD,PSTPIP1,TRAF6,IL6,CARD8,CARD9,IL8,MAPK11,MAPK10,TAB1,BIRC3,CARD6,SUGT1,BIRC2,TAB2,TAB3,CCL11,HSP90B1,CCL13,ERBB2IP,MAPK12,MAPK13,MAPK14,IKBKG,TRIP6,IKBKB +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA21,TBK1,DAK,NFKB1,CXCL10,MAP3K7,TMEM173,ATG5,ISG15,IFNE,CASP8,IFNK,CHUK,RELA,FADD,TANK,SIKE1,IFNB1,RIPK1,IL12A,MAPK9,MAPK8,IL12B,MAVS,TRAF2,OTUD5,IFIH1,TNF,ATG12,NFKBIB,NLRX1,IFNW1,NFKBIA,AZI2,PIN1,RNF125,CYLD,IFNA2,IFNA1,IFNA7,DDX3X,IFNA6,MAP3K1,IFNA5,DDX3Y,IFNA4,IFNA8,TRAF6,TBKBP1,DHX58,TRAF3,IL8,IFNA10,MAPK11,TRIM25,MAPK10,TRADD,DDX58,CASP10,IKBKE,MAPK12,MAPK13,IRF7,MAPK14,IKBKG,IFNA14,IRF3,IFNA13,IKBKB,IFNA16,IFNA17 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA21,TBK1,IL18,NFKB1,CXCL10,TMEM173,IL1B,CASP1,CHUK,POLR1D,RELA,CCL4L1,CCL4L2,POLR1C,IFNB1,RIPK1,RIPK3,MAVS,NFKBIB,NFKBIA,IL33,CCL5,CCL4,IFNA2,IFNA1,IFNA7,IFNA6,IFNA5,IFNA4,PYCARD,IFNA8,ZBP1,POLR3G,POLR3F,IL6,POLR3H,POLR3K,IFNA10,TREX1,POLR3A,POLR3GL,POLR3C,POLR3B,AIM2,POLR3D,DDX58,IKBKE,IRF7,IKBKG,IFNA14,IRF3,IFNA13,IFNA16,IKBKB,IFNA17,ADAR +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL9R,IL6ST,OSMR,STAT5A,STAT5B,IL19,IL13,IL15,IL10,IL11,IFNE,IFNG,SPRED2,PIK3CA,IL15RA,CSF3R,STAM,IFNK,SPRED1,PIK3CG,IL29,SOCS2,PIK3CB,SOCS3,PIK3CD,SOCS1,LIFR,PIM1,SOCS7,IL26,SOCS4,IL24,SOCS5,IL21,IL22,IL11RA,IL20,EP300,PIAS4,IFNB1,PIAS3,PIAS2,PIAS1,IL22RA1,GRB2,STAM2,CNTFR,BCL2L1,LIF,IL12RB2,IFNA2,IFNA1,IL23A,IL12RB1,IFNA7,IFNA6,IFNA5,IFNA4,IFNA8,PTPN6,IL23R,CREBBP,PTPN11,GH2,GH1,CBLC,CBLB,IL5RA,IL3RA,IL22RA2,CSH1,IFNA21,LEPR,IL21R,IL28RA,SPRY4,SPRY3,AKT1,SPRY2,SPRY1,CLCF1,IL4R,CSF2RB,TPO,IL13RA1,IFNGR2,PRL,MYC,IFNGR1,CSF2RA,AKT3,GHR,IL13RA2,AKT2,IL6R,IFNAR1,OSM,TYK2,IFNAR2,CCND1,IL20RB,CCND3,IL20RA,CCND2,IL12A,IL12B,CSF3,CSF2,CRLF2,CTF1,IFNW1,IL7R,STAT6,STAT4,IL10RB,IL10RA,SOS1,SOS2,IL2RG,PIK3R5,PIK3R3,PIK3R1,PIK3R2,EPO,IL4,IL3,IL6,IL2RB,IL5,IL2RA,IL7,CBL,IL9,IFNA10,STAT1,STAT3,CISH,STAT2,IRF9,LEP,TSLP,CNTF,PRLR,JAK1,EPOR,JAK2,IFNA14,JAK3,IFNA13,IL28B,MPL,IFNA16,IL28A,IL2,IFNA17 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL9R,CD8A,CD8B,GYPA,ANPEP,GP9,FLT3LG,IL11,GP5,DNTT,CD44,IL4R,MS4A1,CSF3R,IL1B,TPO,CSF2RA,IL1A,CD3G,CD3D,CD3E,IL6R,IL11RA,CD38,CD37,CD36,CD34,CD33,HLA-DRA,ITGA2B,CSF3,IL1R2,CSF2,IL1R1,TNF,HLA-DRB1,FCER2,CSF1,HLA-DRB3,MME,KITLG,KIT,ITGB3,IL7R,ITGAM,CD9,GP1BB,LOC652799,FCGR1A,CD2,HLA-DRB4,CD22,HLA-DRB5,GP1BA,CD4,CD5,CD7,THPO,EPO,CSF1R,IL4,IL3,IL6,CR1,IL5,IL2RA,CR2,IL7,FLT3,CD1C,ITGA1,CD1B,ITGA2,CD1A,ITGA3,ITGA4,CD1E,CD1D,CD55,CD19,ITGA6,TFRC,ITGA5,CD59,EPOR,IL5RA,CD14,IL3RA +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html MICB,KLRC2,HRAS,MICA,KLRC3,CD48,IFNG,PIK3CA,FAS,KLRD1,SYK,PIK3CG,BRAF,PIK3CB,PIK3CD,CHP2,HLA-A,HLA-C,HLA-B,HLA-E,HLA-G,HCST,MAPK1,IFNB1,MAPK3,KIR2DL1,KIR2DL3,KIR2DL2,KLRC1,KIR3DL1,KIR2DL4,KIR3DL2,ITGAL,GRB2,KLRK1,ITGB2,IFNA2,IFNA1,KRAS,RAC2,IFNA7,RAC3,IFNA6,IFNA5,IFNA4,RAC1,ZAP70,FCER1G,IFNA8,TYROBP,PTPN6,VAV3,MAP2K1,MAP2K2,KIR2DS5,KIR2DS1,KIR2DS4,KIR2DS3,VAV2,VAV1,PTPN11,LAT,TNFSF10,PLCG1,PLCG2,IFNA21,FASLG,SH2D1A,RAET1E,CASP3,RAET1G,RAET1L,SHC1,PAK1,SHC3,FCGR3A,SHC2,IFNGR2,SH2D1B,FCGR3B,IFNGR1,SHC4,PRKCA,ICAM1,ICAM2,GZMB,PRKCG,NCR2,NCR1,NCR3,IFNAR1,PRKCB,TNFRSF10A,IFNAR2,TNFRSF10C,TNFRSF10B,ULBP3,TNFRSF10D,ULBP1,ULBP2,LCK,LCP2,BID,PRF1,CSF2,CD244,TNF,KIR2DL5A,CD247,PPP3R1,PPP3R2,PTK2B,SOS1,SOS2,PPP3CB,NFAT5,PPP3CC,NFATC4,PIK3R5,CHP,PPP3CA,PIK3R3,NFATC2,NFATC3,PIK3R1,PIK3R2,NFATC1,IFNA10,RAF1,NRAS,FYN,ARAF,IFNA14,IFNA13,IFNA16,SH3BP2,IFNA17 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html HRAS,IL10,MAP3K7,MAP3K8,IFNG,PIK3CA,MAP2K7,PIK3CG,BCL10,CD3G,CD3D,CD3E,PIK3CB,RELA,PIK3CD,CHP2,MAPK1,CD40LG,JUN,MAPK3,MAPK9,GRAP2,NFKBIE,GRB2,NFKBIB,NFKBIA,KRAS,ICOS,ZAP70,TEC,PTPN6,ITK,VAV3,MAP2K1,MAP2K2,MALT1,VAV2,VAV1,CBLC,LAT,CBLB,PLCG1,IKBKG,IKBKB,CD8A,CD8B,NFKB1,PDCD1,AKT1,PAK6,FOS,PAK7,CDC42,PAK2,PAK3,PAK4,RHOA,PAK1,AKT3,CHUK,AKT2,DLG1,CDK4,NCK2,CARD11,PRKCQ,NCK1,LCK,MAP3K14,LCP2,CSF2,TNF,CD247,PPP3R1,PPP3R2,RASGRP1,SOS1,SOS2,NFAT5,PPP3CB,PPP3CC,NFATC4,CD4,PIK3R5,CHP,PPP3CA,NFATC2,PIK3R3,NFATC3,PIK3R1,PIK3R2,CD28,NFATC1,IL4,PDK1,PTPRC,IL5,CBL,CTLA4,RAF1,MAPK11,NRAS,MAPK12,FYN,MAPK13,MAPK14,GSK3B,IL2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html HRAS,NFKB1,BTK,AKT1,FOS,PIK3CA,PIK3AP1,CHUK,AKT3,SYK,AKT2,PIK3CG,BCL10,LYN,PIK3CB,RELA,PIK3CD,CHP2,PRKCB,CARD11,MAPK1,LILRB3,JUN,CD81,MAPK3,IFITM1,GRB2,NFKBIE,NFKBIB,PPP3R1,PPP3R2,NFKBIA,CD72,KRAS,RAC2,DAPP1,RASGRP3,RAC3,SOS1,SOS2,RAC1,PPP3CB,NFAT5,CD22,PPP3CC,PIK3R5,NFATC4,CHP,PPP3CA,INPP5D,NFATC2,PIK3R3,NFATC3,PIK3R1,PIK3R2,NFATC1,BLNK,PTPN6,VAV3,CR2,MAP2K1,MAP2K2,RAF1,MALT1,VAV2,VAV1,NRAS,CD19,FCGR2B,GSK3B,PLCG2,IKBKG,CD79B,CD79A,IKBKB +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html HRAS,IL13,BTK,AKT1,GAB2,PLA2G1B,PIK3CA,MS4A2,MAP2K7,MAP2K6,AKT3,SYK,AKT2,PIK3CG,PRKCA,LYN,PIK3CB,PIK3CD,PRKCE,PRKCD,PRKCB,MAPK1,MAPK3,PLA2G2A,PLA2G6,MAPK9,PLA2G2C,MAPK8,PLA2G2E,PLA2G3,PLA2G2D,PLA2G5,LCP2,PLA2G2F,CSF2,TNF,GRB2,JMJD7-PLA2G4B,KRAS,RAC2,RAC3,PLA2G12A,SOS1,SOS2,PLA2G12B,RAC1,FCER1G,PIK3R5,INPP5D,PIK3R3,PIK3R1,PIK3R2,IL4,PDK1,FCER1A,IL3,VAV3,IL5,PLA2G10,MAP2K1,MAP2K2,MAP2K3,MAP2K4,RAF1,MAPK11,MAPK10,VAV2,VAV1,LAT,NRAS,PLA2G4A,PLCG1,MAPK12,FYN,MAPK13,MAPK14,PLCG2,PLA2G4B,PLA2G4E +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html RPS6KB2,RPS6KB1,GAB2,PIK3CA,SYK,PIK3CG,PLD2,PLD1,PIK3CB,NCF1,PIK3CD,ARPC1A,ARPC1B,MAPK1,MAPK3,ASAP2,ASAP1,ARF6,ARPC4,ARPC5,ASAP3,DOCK2,ARPC3,RAC2,ARPC2,RAC1,VAV3,MAP2K1,SPHK2,SPHK1,VAV2,VAV1,LAT,MYO10,PLA2G4A,PLCG1,PLCG2,PLA2G4F,MARCKS,PLA2G4B,PLA2G4E,PIP4K2B,PLA2G4D,WASF3,MARCKSL1,WASF1,WASF2,PIP5K1B,PIP5K1C,PIP5K1A,AKT1,CDC42,GSN,PAK1,FCGR3A,AKT3,AKT2,PRKCA,LIMK2,LYN,LIMK1,PPAP2C,PRKCG,PRKCE,WAS,PRKCD,VASP,PRKCB,CRKL,ARPC5L,CFL2,CFL1,SCIN,PLA2G6,WASL,LOC653888,AMPH,FCGR1A,PIKFYVE,PIK3R5,INPP5D,PIK3R3,PPAP2A,PPAP2B,PIK3R1,PIK3R2,DNM3,PTPRC,DNM1L,HCK,RAF1,FCGR2B,FCGR2C,FCGR2A,CRK,DNM1,DNM2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html OCLN,MMP9,MYL10,CXCL12,MMP2,VCL,CTNNB1,ACTG1,PIK3CA,RAPGEF4,RAPGEF3,PIK3CG,F11R,ROCK1,NCF2,ACTN4,NCF1,PIK3CB,ROCK2,NCF4,PIK3CD,ACTN1,ACTN2,ACTN3,CTNNA1,CTNNA3,THY1,CTNNA2,MYL7,ITGAL,GNAI3,MYL5,GNAI2,MYL2,GNAI1,SIPA1,ITGB2,ITGB1,PXN,ITGAM,MYL9,PTK2,RAC2,RAC1,LOC646048,ITK,VAV3,MYLPF,MYL12B,ITGA4,MYL12A,VAV2,VAV1,PTPN11,PLCG1,PLCG2,RAP1A,RAP1B,CLDN8,LOC646821,CLDN7,CLDN9,CLDN4,CLDN3,BCAR1,CLDN6,CLDN5,CDC42,ARHGAP5,CXCR4,RHOA,ESAM,MSN,RHOH,PRKCA,ICAM1,PRKCG,VASP,PRKCB,CLDN1,CLDN2,TXK,JAM2,JAM3,CLDN16,CLDN17,CLDN18,CLDN19,CTNND1,CLDN10,CLDN11,CLDN14,CDH5,CLDN15,VCAM1,EZR,PTK2B,PIK3R5,PIK3R3,PIK3R1,MLLT4,PIK3R2,ACTB,NOX3,NOX1,CD99,CLDN22,MAPK11,CLDN20,CLDN23,CYBA,CYBB,RASSF5,MAPK12,MAPK13,MAPK14,PECAM1,GRLF1 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DQB1,HLA-DRB1,HLA-DRB3,TNFSF13,IL15,HLA-DMB,CXCL12,CCL28,HLA-DMA,IL10,CCL27,TGFB1,CCL25,CXCR4,ITGB7,ICOS,CCR10,HLA-DRB4,IL15RA,HLA-DRB5,HLA-DPB1,HLA-DOA,HLA-DOB,CD28,IL4,IL6,IL5,LTBR,TNFRSF13B,TNFRSF13C,TNFRSF17,CD40,PIGR,ITGA4,HLA-DQA2,HLA-DQA1,CCR9,CD86,TNFSF13B,CD80,CD40LG,MADCAM1,AICDA,HLA-DPA1,MAP3K14,ICOSLG,HLA-DRA,IL2 +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html ARNTL,NPAS2,CRY2,CSNK1D,NR1D1,CSNK1E,PER2,PER1,PER3,BHLHE40,CRY1,BHLHE41,CLOCK +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html ADCY1,HRAS,ADCY8,PRKX,PRKACG,PLCB3,PLCB4,GRIN2B,GRIN2C,GRIN2D,PPP1R1A,PRKACA,PRKACB,RAPGEF3,PLCB1,PLCB2,PRKCA,BRAF,GRIN2A,CHP2,PRKCG,PPP1CC,GRM1,PPP1CB,PRKCB,GRM5,MAPK1,PPP1CA,EP300,GNAQ,CAMK4,MAPK3,CAMK2G,PPP3R1,PPP3R2,KRAS,CALML3,PPP3CB,CAMK2D,PPP1R12A,PPP3CC,CALML6,CAMK2B,CHP,PPP3CA,CALML5,CAMK2A,MAP2K1,MAP2K2,GRIN1,CREBBP,RAF1,ITPR3,ITPR1,ITPR2,RPS6KA6,NRAS,ATF4,RPS6KA3,GRIA2,RPS6KA1,GRIA1,RPS6KA2,ARAF,CALM3,RAP1A,RAP1B,CACNA1C,CALM2,CALM1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html HRAS,FOXO3,MAGED1,BDNF,MAP3K5,GAB1,PIK3CA,NGFRAP1,FRS2,MAP2K7,RAPGEF1,MAP2K5,IRS4,PIK3CG,IRS2,BRAF,PIK3CB,RELA,PIK3CD,IRS1,MAPK1,CAMK4,PRDM4,JUN,MAPK3,RIPK2,MAPK9,MAPK8,MAPK7,NGF,NFKBIE,GRB2,NFKBIB,NFKBIA,MAPKAPK2,IRAK4,IRAK3,KRAS,RAC1,TRAF6,ARHGDIA,ARHGDIB,NTF4,NTF3,MAP2K1,MAP2K2,PTPN11,NTRK3,ATF4,PLCG1,NTRK1,NTRK2,PLCG2,RAP1A,RAP1B,IKBKB,ABL1,FASLG,NFKB1,AKT1,CDC42,RHOA,SHC1,CSK,SHC3,SHC2,AKT3,SHC4,AKT2,IRAK2,IRAK1,TP53,KIDINS220,PRKCD,CRKL,PSEN1,SORT1,NGFR,ZNF274,YWHAZ,CAMK2G,MAP3K3,CALML3,BCL2,MAP3K1,SOS1,SOS2,CAMK2D,SH2B3,CALML6,CAMK2B,PIK3R5,SH2B2,CALML5,SH2B1,PIK3R3,CAMK2A,PIK3R1,PIK3R2,PDK1,YWHAB,RAF1,MAPK11,BAD,MAPK10,YWHAE,TP73,RPS6KA5,RPS6KA6,NRAS,YWHAG,RPS6KA3,YWHAH,RPS6KA4,MAPK12,RPS6KA1,MAPK13,RPS6KA2,GSK3B,MAPK14,BAX,YWHAQ,CALM3,CRK,CALM2,CALM1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GNAZ,GNA13,HRAS,GNA11,GNA12,PRKG2,PRKG1,PLCB3,PLCB4,GUCY1A2,GRID2,PLA2G1B,GUCY1A3,PLCB1,PLCB2,PPP2R1B,PRKCA,PPP2R1A,LYN,BRAF,PRKCG,GRM1,PRKCB,GRM5,CRHR1,MAPK1,GNAQ,MAPK3,PLA2G2A,RYR1,PLA2G6,PLA2G2C,GNAS,GUCY1B3,PLA2G2E,PLA2G3,PLA2G2D,PLA2G5,PLA2G2F,GNAI3,GNAI2,GNAI1,IGF1R,JMJD7-PLA2G4B,KRAS,PLA2G12A,PPP2CA,PPP2CB,PLA2G12B,GNAO1,NOS1,PLA2G10,MAP2K1,MAP2K2,RAF1,IGF1,GRIA3,ITPR3,ITPR1,ITPR2,NRAS,PLA2G4A,GRIA2,GRIA1,C7ORF16,ARAF,CRH,PLA2G4B,PLA2G4E,CACNA1A +KEGG OLFACTORY TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OLFACTORY_TRANSDUCTION.html OR4S1,OR8S1,OR6S1,OR4S2,OR52L1,OR51L1,OR2S2,CLCA2,OR5R1,CLCA1,CLCA4,OR1S2,OR1S1,OR52K2,OR52K1,OR10K1,OR10K2,OR2T2,OR8U8,OR2T1,OR2T4,OR2T3,OR8U1,OR52N2,OR56B4,OR52N5,OR52N4,OR52N1,OR56B1,OR2T5,OR2T6,OR2T8,OR5P3,OR5P2,OR1Q1,OR6T1,GUCY2D,OR56A3,OR56A4,OR56A1,OR52M1,OR51I2,OR5AK2,OR51I1,OR56A5,OR2AT4,OR2A42,OR51Q1,OR7E24,OR2V2,OR10P1,OR5AN1,OR4A47,OR2W3,OR2W1,GNAL,OR10AD1,OR5V1,OR4N5,OR4N4,OR6V1,OR4N2,OR5D13,OR5D14,OR2A25,OR5D16,OR5D18,OR9Q1,OR9Q2,PDE1C,OR5AP2,OR5B12,OR6Y1,OR4Q3,OR10R2,OR5B17,OR52R1,OR2A12,OR2A14,OR2Y1,OR5T2,OR5T3,OR5T1,OR51M1,OR10Q1,OR4P4,OR6X1,OR2AK2,OR51D1,OR1J2,OR2J3,OR10T2,OR1J1,OR2J2,OR1J4,OR52D1,OR8K1,OR8K5,OR8K3,OR10S1,OR1K1,OR2K2,ARRB2,OR8J1,OR8J3,OR2L8,OR51B2,OR2L3,OR2L13,OR2L2,OR2T33,OR51B5,OR51B6,OR2T34,OR51B4,OR2M7,OR1I1,OR5M10,OR5M11,OR52E2,OR52E4,OR2M2,OR2M3,OR5AC2,OR2M4,OR2M5,OR2T29,OR52E6,OR2T27,OR52E8,OR51A2,OR51A4,OR10V1,OR51A7,OR52H1,OR1N2,OR1N1,OR9K2,OR2T10,OR2T11,OR2T12,OR8G1,OR51G1,OR51G2,OR10X1,OR1L8,OR52J3,OR1L6,OR8H3,OR51F1,OR51F2,OR1L4,OR1L3,OR1L1,OR9I1,CALML3,OR8I2,CALML6,CALML5,GUCA1B,GUCA1A,GUCA1C,OR52I1,OR52I2,OR2B11,OR8G2,OR8G5,OR9G1,OR7A5,OR9G4,OR51E1,OR51E2,OR1M1,OR10Z1,OR4X1,OR4X2,PDC,OR8H1,OR8H2,ADCY3,OR5C1,OR1E2,OR1E1,OR4C6,PRKG2,PRKG1,PRKX,OR4C3,OR6C6,OR4D1,OR4D2,OR6C4,OR6C2,OR6C3,OR6C1,OR7C1,OR7C2,OR8A1,OR4D9,OR1D2,OR4D6,OR1D5,OR1D4,OR4D5,OR4E2,OR8B8,OR13F1,OR2D2,OR2D3,OR7D2,OR8B4,OR7D4,OR13G1,OR2B6,OR2B3,ADRBK2,OR4A5,OR1G1,OR6A2,OR5F1,OR2C3,OR2C1,OR2A2,OR2A5,OR7G2,OR2AG1,OR2A4,OR13H1,OR2AG2,OR7G1,OR2A7,OR4B1,OR1F1,OR12D2,OR6B1,OR12D3,OR6B2,OR6B3,OR8D1,OR8D2,OR8D4,OR2B2,OR10A5,OR10A6,OR10A3,OR52A1,OR10A4,OR1A1,OR10A2,OR1A2,OR52A5,OR11A1,OR10A7,OR9A4,OR7G3,OR13A1,OR9A2,OR52B2,OR52B4,OR52B6,OR2AE1,OR2H2,OR2H1,OR1C1,OR6F1,OR5A1,OR5A2,OR13C5,OR2G3,OR13C4,OR2G2,OR13C3,OR13C2,OR2G6,OR13C9,OR13C8,OR1B1,OR5B3,OR2F2,OR2F1,OR13D1,CALM3,CALM2,CALM1,OR7A17,OR5L1,OR5L2,OR4D11,OR4L1,OR4D10,CNGB1,OR6C65,OR6C68,PRKACG,OR51T1,PRKACA,PRKACB,OR5B21,OR14C36,OR7A10,OR5M1,OR4M2,OR4F17,OR4F16,OR4F15,OR5M3,OR4M1,OR5M9,CNGA3,OR10AG1,CNGA4,OR5M8,OR6M1,OR5AR1,OR2Z1,OR11G2,OR5AS1,OR10C1,OR4K5,OR4K2,OR6C74,OR11H4,OR6C76,OR11H1,OR6C75,OR6C70,OR4K1,OR14A16,OR51S1,OR11H6,OR4A15,OR4A16,OR52W1,OR8B12,OR6K3,OR6K2,OR4C45,OR6K6,OR4C46,OR2A1,OR5H2,OR4K17,OR4C13,OR4C16,OR5AU1,OR4C15,OR4C12,OR4C11,OR14J1,OR5I1,OR10J5,OR10J3,OR10J1,OR4K15,OR4K14,OR4K13,OR14I1,OR5H6,OR6Q1,OR13J1,CAMK2G,OR5J2,OR10G2,OR10G4,OR4F4,OR10G3,OR4F3,OR10G7,OR10G8,OR10G9,CAMK2D,CAMK2B,CAMK2A,OR6N1,OR51V1,OR6N2,OR5K2,OR11L1,OR5K1,OR10H1,OR10H5,OR10H4,OR10H3,OR10H2,OR4F5,OR4F6,OR3A3,OR3A1,OR3A2 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R1,ADCY4,TAS2R4,TAS2R5,ADCY8,TAS2R3,ADCY6,TAS1R3,TAS1R1,TAS1R2,PRKX,PRKACG,TAS2R60,TAS2R9,TAS2R8,PRKACA,TAS2R7,GNG3,PRKACB,TAS2R20,PLCB2,TRPM5,TAS2R16,GRM4,TAS2R50,TAS2R13,TAS2R14,TAS2R19,GNB1,GNAS,GNB3,TAS2R10,GNG13,TAS2R46,PDE1A,TAS2R42,TAS2R43,SCNN1G,TAS2R45,SCNN1B,SCNN1A,TAS2R40,TAS2R41,KCNB1,ITPR3,GNAT3,ACCN1,TAS2R39,TAS2R38,TAS2R31,CACNA1A,CACNA1B +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html HRAS,ACTG1,MOS,PIK3CA,PIK3CG,ROCK1,BRAF,PIK3CB,ROCK2,MYLK3,PIK3CD,MYLK2,MYH9,MAPK1,PPP1CA,F2,MAPK3,PDGFRA,PDGFRB,ITGA2B,ITGA11,ITGA10,BDKRB1,BDKRB2,PXN,C3ORF10,PFN1,PFN2,PFN3,KRAS,PFN4,RAC2,INS,RAC3,RAC1,GIT1,LOC646048,MAP2K1,MAP2K2,NCKAP1L,NCKAP1,SLC9A1,FGF6,LOC646821,FGF5,FGF8,FGF7,FGF9,WASF1,BCAR1,WASF2,INSRR,FGF1,FGF2,FGF3,FGF4,ARHGEF4,ARHGEF1,ARHGEF7,ARHGEF6,ARHGEF12,WAS,TMSB4X,TMSB4Y,APC2,ABI2,GNG12,EZR,SOS1,SOS2,NRAS,ARAF,CD14,GNA13,FGF19,FGF18,ENAH,PDGFB,FGF14,PDGFA,FGF17,FGF16,GNA12,FGF11,IQGAP3,FGF10,IQGAP2,FGF13,MYL10,FGF12,IQGAP1,VCL,TIAM2,TIAM1,RRAS,PDGFC,PDGFD,EGFR,ACTN4,BAIAP2,FGF23,ACTN1,FGF22,ACTN2,FGF21,ACTN3,PPP1CC,FGF20,PPP1CB,ARPC1A,ARPC1B,FGFR2,FGFR1,FGD1,MYL7,ITGAL,FGFR4,FGFR3,MYL5,SSH1,MYL2,DIAPH1,DIAPH2,MRAS,ITGAE,SSH3,SSH2,DIAPH3,ITGB4,ITGB5,ARPC4,ITGB2,ARPC5,ITGB3,ITGB1,ITGAM,MYL9,PTK2,DOCK1,ARPC3,ITGAX,ITGB8,ARPC2,ITGB7,ITGAV,ITGB6,EGF,TMSL3,FGD3,FN1,VAV3,ITGA1,ITGA2,MYLPF,MYL12B,ITGA3,MYL12A,ITGA4,VAV2,VAV1,ITGA9,ITGA6,ITGA5,ITGA8,ITGA7,CYFIP2,CYFIP1,ITGAD,MYH14,PIP4K2A,MYLK,PIP4K2C,MYH10,PIP4K2B,PIP5K1B,PIP5K1C,PIP5K1A,PAK6,PAK7,CDC42,PAK2,GSN,PAK3,PAK4,RHOA,MSN,PAK1,CSK,LIMK2,LIMK1,CHRM5,CHRM4,CRKL,CHRM3,CHRM2,RRAS2,CFL2,ARPC5L,CHRM1,SCIN,CFL1,WASL,RDX,LOC653888,PIKFYVE,PPP1R12A,PIK3R5,PIK3R3,PIK3R1,PIK3R2,APC,ACTB,RAF1,GRLF1,CRK,F2R +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html HRAS,FOXO1,PDE3B,RPS6KB2,RPS6KB1,PRKX,PRKACG,PRKAR2B,EIF4EBP1,PRKAR2A,SLC2A4,PIK3CA,PRKACA,PRKACB,INSR,RAPGEF1,IRS4,PIK3CG,IRS2,BRAF,SOCS2,PTPRF,PIK3CB,SOCS3,PIK3CD,PRKAB2,SOCS1,PRKAB1,FBP1,SOCS4,FBP2,PPP1R3A,PPP1CC,IRS1,PPP1CB,PPARGC1A,RPTOR,MAPK1,PPP1CA,MAPK3,MAPK9,MAPK8,PHKA2,GRB2,PHKA1,ELK1,G6PC2,PPP1R3D,PPP1R3C,PPP1R3B,KRAS,INS,GYS1,GYS2,SREBF1,MAP2K1,MAP2K2,ACACA,ACACB,RPS6,EIF4E1B,CBLC,CBLB,EIF4E,TSC1,PRKAR1B,PRKAR1A,TSC2,RHEB,PTPN1,MTOR,IKBKB,EIF4E2,PRKAG3,PHKB,PRKAG1,PRKAG2,RHOQ,AKT1,PDPK1,SHC1,SHC3,SHC2,AKT3,SHC4,AKT2,PHKG1,FLOT2,PHKG2,FLOT1,PRKCI,G6PC,CRKL,PKLR,PRKCZ,EXOC7,MKNK2,HK2,HK1,MKNK1,INPP5K,SORBS1,CALML3,SOS1,HK3,SOS2,FASN,CALML6,PRKAA1,PIK3R5,SH2B2,PRKAA2,CALML5,INPP5D,PIK3R3,TRIP10,PIK3R1,PIK3R2,CBL,RAF1,PDE3A,BAD,MAPK10,PCK2,PCK1,NRAS,GCK,PYGM,PYGL,GSK3B,ARAF,CALM3,CRK,LIPE,CALM2,CALM1,PYGB +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ADCY3,CGA,ADCY4,ADCY1,HRAS,ADCY2,ADCY7,ADCY8,GNA11,ADCY5,ADCY6,MMP2,PRKX,PRKACG,MAP3K4,PLA2G1B,PRKACA,PRKACB,MAP2K7,MAP2K6,EGFR,PLD2,PLD1,MAPK1,JUN,MAPK3,PLA2G2A,MAPK9,PLA2G2C,MAPK8,MAPK7,PLA2G2E,PLA2G2D,PLA2G2F,GRB2,ELK1,SRC,KRAS,GNRH1,MAP2K1,GNRH2,MAP2K2,MAP2K3,MAP2K4,CACNA1S,ATF4,PLA2G4A,CACNA1F,CACNA1C,LHB,PLA2G4B,CACNA1D,PLA2G4E,GNRHR,CDC42,PLCB3,PLCB4,PLCB1,PLCB2,PRKCA,MMP14,PRKCD,PRKCB,GNAQ,PLA2G6,GNAS,PLA2G3,FSHB,PLA2G5,CAMK2G,JMJD7-PLA2G4B,MAP3K3,MAP3K2,PTK2B,CALML3,PLA2G12A,MAP3K1,SOS1,SOS2,PLA2G12B,CAMK2D,CALML6,CAMK2B,CALML5,CAMK2A,PLA2G10,RAF1,MAPK11,MAPK10,ITPR3,ITPR1,ITPR2,NRAS,MAPK12,ADCY9,MAPK13,MAPK14,CALM3,HBEGF,CALM2,CALM1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html HSP90AB1,ADCY3,ADCY4,ADCY1,ADCY2,ADCY7,ADCY8,ADCY5,ADCY6,PKMYT1,PDE3B,CDC16,CPEB1,PRKX,PRKACG,PGR,AKT1,MOS,PIK3CA,PRKACA,PRKACB,CCNA1,CCNA2,AKT3,AKT2,PIK3CG,ANAPC1,CDK1,ANAPC2,HSP90AA1,BRAF,ANAPC5,PIK3CB,PIK3CD,ANAPC4,CDK2,SPDYC,SPDYA,MAPK1,MAD2L1,MAPK3,MAPK9,MAPK8,ANAPC7,MAD2L2,FZR1,GNAI3,GNAI2,ANAPC13,GNAI1,ANAPC10,ANAPC11,LOC650621,IGF1R,KRAS,INS,BUB1,PIK3R5,PIK3R3,PIK3R1,PIK3R2,MAP2K1,RAF1,IGF1,CDC23,PDE3A,MAPK11,MAPK10,CDC25C,CDC26,CDC27,CDC25A,CDC25B,CCNB1,RPS6KA6,CCNB3,RPS6KA3,CCNB2,ADCY9,RPS6KA1,MAPK12,PLK1,MAPK13,RPS6KA2,MAPK14,ARAF +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html ADCY3,ADCY4,ADCY1,HRAS,ADCY2,ADCY7,ADCY8,ADCY5,WNT3A,EDN1,ADCY6,PRKX,CTNNB1,PRKACG,WNT2,WNT1,WNT4,WNT3,MC1R,CREB3L2,CREB3L1,PRKACA,CREB3L4,PRKACB,CREB3L3,WNT6,WNT10A,WNT10B,MAPK1,EP300,MAPK3,WNT5A,GNAI3,WNT5B,GNAI2,GNAI1,POMC,KRAS,LOC652799,DVL2,DVL3,TCF7,MAP2K1,MAP2K2,CREBBP,DVL1,ASIP,MITF,EDNRB,TYR,PLCB3,PLCB4,PLCB1,PLCB2,PRKCA,LEF1,PRKCG,PRKCB,GNAQ,WNT9B,GNAS,WNT11,WNT9A,WNT16,TYRP1,CAMK2G,KITLG,KIT,TCF7L2,TCF7L1,DCT,CALML3,CAMK2D,CALML6,CAMK2B,CALML5,CAMK2A,WNT8A,WNT8B,FZD9,FZD8,GNAO1,CREB3,CREB1,FZD1,RAF1,FZD3,FZD2,FZD5,FZD4,FZD7,FZD6,WNT2B,NRAS,WNT7B,FZD10,ADCY9,GSK3B,CALM3,WNT7A,CALM2,CALM1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PRKAG3,PPARA,PRKAG1,LEPR,PRKAG2,NFKB1,CAMKK1,CAMKK2,AKT1,SLC2A4,SLC2A1,CHUK,AKT3,AKT2,IRS4,IRS2,SOCS3,RXRB,RXRA,RELA,PRKAB2,RXRG,ADIPOR2,PRKAB1,ADIPOR1,IRS1,PPARGC1A,PRKCQ,G6PC,CD36,MAPK9,MAPK8,TRAF2,TNF,NFKBIE,STK11,NFKBIB,NFKBIA,POMC,G6PC2,TNFRSF1A,TNFRSF1B,ACSL1,PRKAA1,PRKAA2,ACSL4,ACSL3,AGRP,ACSL6,ACSL5,CPT1C,CPT1B,MAPK10,ACACB,PCK2,ADIPOQ,STAT3,CPT1A,TRADD,PTPN11,PCK1,LEP,NPY,IKBKG,JAK2,MTOR,IKBKB +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PRKCZ,TNF,HK2,HK1,PDX1,KCNJ11,SLC2A4,INS,SLC2A2,HK3,PIK3CA,PIK3R5,PIK3R3,INSR,PIK3R1,PIK3R2,IRS4,PIK3CG,IRS2,SOCS2,PIK3CB,SOCS3,PIK3CD,SOCS1,SOCS4,MAPK10,PRKCE,IRS1,ADIPOQ,PRKCD,MAPK1,GCK,PKM2,PKLR,MAPK3,CACNA1G,MAPK9,MAPK8,CACNA1E,MTOR,MAFA,IKBKB,CACNA1C,ABCC8,CACNA1D,CACNA1A,CACNA1B +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DQB1,PRF1,TNF,HLA-DRB1,HLA-DRB3,FASLG,HLA-DMB,HLA-DMA,GAD2,INS,IFNG,HLA-DRB4,HLA-DRB5,IL1B,FAS,HLA-DPB1,HLA-DOA,GAD1,HLA-DOB,IL1A,LTA,CD28,ICA1,PTPRN2,HLA-A,GZMB,HLA-C,HLA-B,PTPRN,HLA-E,HLA-DQA2,HLA-G,HLA-DQA1,LOC652614,HLA-F,CD86,CPE,CD80,IL12A,HLA-DPA1,HSPD1,IL12B,HLA-DRA,IL2 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html HNF1B,HNF1A,ONECUT1,FOXA2,FOXA3,PAX6,PAX4,PDX1,BHLHA15,INS,IAPP,SLC2A2,NKX2-2,HNF4G,NEUROG3,NKX6-1,HES1,HHEX,GCK,HNF4A,PKLR,MNX1,NEUROD1,MAFA,NR5A2 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html FXYD2,ATP1B1,FXYD4,ATP1B3,ATP1B2,ATP1B4,NR3C2,SFN,KCNJ1,PDPK1,KRAS,INS,PIK3CA,PIK3R5,SCNN1G,NEDD4L,SCNN1B,PIK3R3,INSR,SCNN1A,PIK3R1,PIK3R2,IRS4,PIK3CG,PRKCA,SGK1,IRS2,PIK3CB,PIK3CD,ATP1A3,IGF1,ATP1A4,ATP1A1,PRKCG,ATP1A2,IRS1,SLC9A3R2,PRKCB,MAPK1,MAPK3,HSD11B1,HSD11B2 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html ADCY3,DYNC1LI1,AVPR2,DYNC1LI2,RAB5B,RAB5C,DYNC2LI1,ADCY6,AQP4,AQP3,PRKX,AQP2,PRKACG,DYNLL1,DYNLL2,DYNC2H1,CREB3L2,RAB11B,RAB11A,CREB3L1,PRKACA,CREB3L4,PRKACB,CREB3L3,DYNC1H1,ARHGDIA,NSF,ARHGDIB,DYNC1I1,STX4,AVP,CREB3,CREB1,CREB5,DCTN5,DCTN6,DCTN4,DCTN1,DCTN2,ADCY9,RAB5A,GNAS,VAMP2,DYNC1I2 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html FXYD2,ATP1B1,SLC38A3,ATP1B3,ATP1B2,GLUD2,SLC9A3,GLUD1,ATP1B4,ATP1A3,ATP1A4,ATP1A1,ATP1A2,AQP1,PCK2,PCK1,GLS2,GLS,SLC25A10,CA4,CA2,SLC4A4,MDH1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html LOC642502,SNCA,IDE,NDUFAB1,COX5A,COX5B,APP,LOC100133737,UQCR10,UQCR11,GRIN2B,GRIN2C,APOE,GRIN2D,IL1B,PSENEN,FAS,ATP8,ATP6,CHP2,GRIN2A,LOC727947,FADD,COX6C,MAPK1,LOC644310,BACE2,RYR3,MAPK3,BACE1,ATP5C1,EIF2AK3,HSD17B10,CDK5R1,COX7B,COX7C,MME,COX6B1,COX6B2,LPL,COX8C,NDUFA4L2,COX8A,GRIN1,CACNA1S,LOC390424,UQCRHL,NDUFV3,ATF6,ATP2A2,COX3,ATP2A3,COX2,NDUFV1,COX1,NDUFV2,ATP2A1,COX6A2,COX6A1,CACNA1F,CACNA1C,CACNA1D,UQCRC2,ATP5D,ATP5E,UQCRC1,ATP5B,CYC1,UQCRFS1,UQCRQ,NDUFS7,NDUFS6,NDUFS5,CASP3,PLCB3,NDUFS4,PLCB4,CASP9,MAPT,CASP7,NDUFS8,CASP8,ATP5O,NDUFS3,PLCB1,NDUFS2,ATP5H,PLCB2,NDUFS1,ATP5J,NDUFB10,ADAM10,CYCS,NDUFC2,COX4I2,COX4I1,NDUFC1,NDUFA10,CDK5,PSEN1,GNAQ,UQCRH,PSEN2,ERN1,ADAM17,UQCRB,NDUFB3,BID,NDUFB4,NDUFB5,NDUFB6,TNF,NDUFB7,APH1A,NDUFB8,NDUFB9,COX7B2,PPP3R1,PPP3R2,CYTB,ATP5G2,COX7A2L,ATP5G1,ATP5G3,NDUFB1,NDUFB2,TNFRSF1A,CALML3,PPP3CB,PPP3CC,CALML6,CHP,PPP3CA,CALML5,GAPDH,NDUFA4,NDUFA5,NDUFA2,NOS1,NDUFA3,COX7A2,NDUFA8,COX7A1,NDUFA9,NDUFA6,NDUFA7,ATP5F1,BAD,CAPN2,ITPR3,NDUFA1,ITPR1,ITPR2,CAPN1,NAE1,SDHA,NCSTN,SDHB,LRP1,GSK3B,LOC100130247,SDHC,SDHD,CALM3,APAF1,ATP5A1,APBB1,CALM2,CALM1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SEPT5,LOC642502,SNCAIP,SLC6A3,SNCA,NDUFAB1,COX5A,COX5B,UQCR10,LOC100133737,UQCR11,HTRA2,ATP8,ATP6,UBE2J1,LOC727947,UBE2J2,COX6C,SLC25A31,LOC644310,ATP5C1,LRRK2,COX7B,UBA7,COX7C,COX6B1,COX6B2,COX8C,NDUFA4L2,COX8A,UBE2L6,UBE2L3,VDAC2,VDAC3,LOC390424,UQCRHL,VDAC1,NDUFV3,GPR37,COX3,UBA1,COX2,NDUFV1,COX1,PPID,NDUFV2,COX6A2,COX6A1,ATP5D,UQCRC2,ATP5E,UQCRC1,UBE2G1,ATP5B,CYC1,UBE2G2,UCHL1,PINK1,UQCRFS1,UQCRQ,NDUFS7,NDUFS6,NDUFS5,CASP3,NDUFS4,CASP9,NDUFS8,ATP5O,NDUFS3,NDUFS2,ATP5H,NDUFS1,ATP5J,ND1,NDUFB10,ND4,SLC25A4,SLC25A5,ND5,ND2,SLC25A6,ND3,CYCS,NDUFC2,COX4I2,COX4I1,NDUFC1,NDUFA10,UQCRH,UBB,UQCRB,NDUFB3,NDUFB4,NDUFB5,NDUFB6,NDUFB7,NDUFB8,NDUFB9,COX7B2,TH,CYTB,ATP5G2,ATP5G1,COX7A2L,ATP5G3,NDUFB1,NDUFB2,ND6,NDUFA4,NDUFA5,NDUFA2,NDUFA3,COX7A2,LOC729317,COX7A1,NDUFA8,NDUFA9,NDUFA6,NDUFA7,ATP5F1,PARK2,NDUFA1,PARK7,SDHA,SDHB,ND4L,LOC100130247,SDHC,SDHD,SLC18A2,ATP5A1,APAF1,SLC18A1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html ALS2,PRPH,DAXX,GPX1,MAP3K5,SLC1A2,CASP3,GRIN2B,CASP9,GRIN2C,GRIN2D,CAT,CASP1,MAP2K6,CYCS,GRIN2A,CHP2,TP53,RAB5A,BID,DERL1,TNF,PPP3R1,PPP3R2,BCL2L1,TNFRSF1A,TNFRSF1B,BCL2,RAC1,PPP3CB,PPP3CC,NEFH,CCS,CHP,PPP3CA,NEFL,NEFM,NOS1,MAP2K3,GRIN1,TOMM40,MAPK11,BAD,SOD1,PRPH2,GRIA2,MAPK12,MAPK13,GRIA1,BAX,MAPK14,TOMM40L,APAF1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html LOC642502,NDUFAB1,TBP,REST,COX5A,COX5B,TBPL2,LOC100133737,UQCR10,BDNF,UQCR11,SIN3A,GRIN2B,CREB3L2,CREB3L1,CREB3L4,CREB3L3,ATP8,TBPL1,ATP6,TAF4B,RCOR1,LOC727947,POLR2J2,DCTN4,PPARGC1A,POLR2J3,DCTN1,COX6C,DCTN2,EP300,SLC25A31,LOC644310,ATP5C1,COX7B,COX7C,COX6B1,COX6B2,HAP1,AP2M1,HIP1,TAF4,HTT,COX8C,NDUFA4L2,GRIN1,CREBBP,COX8A,UCP1,VDAC2,LOC390424,VDAC3,VDAC1,UQCRHL,NDUFV3,NRF1,HDAC2,HDAC1,COX3,COX2,BBC3,NDUFV1,PPID,COX1,NDUFV2,COX6A2,COX6A1,DNAL1,CLTCL1,DNAL4,UQCRC2,ATP5D,ATP5E,CLTA,CLTB,UQCRC1,AP2S1,ATP5B,CYC1,PPARG,CLTC,UQCRFS1,UQCRQ,NDUFS7,NDUFS6,GPX1,NDUFS5,CASP3,AP2B1,PLCB3,NDUFS4,PLCB4,CASP9,NDUFS8,CASP8,DLG4,ATP5O,NDUFS3,PLCB1,NDUFS2,ATP5H,PLCB2,NDUFS1,ATP5J,NDUFB10,SLC25A4,SLC25A5,SLC25A6,CYCS,TP53,NDUFC2,COX4I2,COX4I1,NDUFC1,NDUFA10,DNAI2,GRM5,GNAQ,UQCRH,UQCRB,NDUFB3,POLR2H,NDUFB4,POLR2G,NDUFB5,POLR2F,NDUFB6,POLR2E,NDUFB7,POLR2L,NDUFB8,POLR2K,NDUFB9,COX7B2,POLR2J,POLR2I,DNAH3,CYTB,DNAH1,ATP5G2,COX7A2L,ATP5G1,DNAH2,POLR2D,ATP5G3,POLR2C,NDUFB1,POLR2B,NDUFB2,POLR2A,TFAM,DNALI1,DNAI1,TGM2,NDUFA4,NDUFA5,NDUFA2,COX7A2,NDUFA3,NDUFA8,COX7A1,LOC729317,CREB3,NDUFA9,NDUFA6,CREB1,NDUFA7,ATP5F1,CREB5,SOD1,NDUFA1,ITPR1,SOD2,SDHA,SDHB,AP2A2,SP1,AP2A1,BAX,SDHC,IFT57,LOC100130247,SDHD,APAF1,ATP5A1 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html C7,C9,C6,C5,ELK1,STIP1,HSPA1A,CCL5,C1QC,PRKX,PRKACG,IL1B,PRKACA,PRKACB,HSPA5,IL1A,EGR1,IL6,MAP2K1,MAP2K2,SOD1,C8G,C8A,NCAM1,C1QA,MAPK1,C8B,NCAM2,C1QB,NOTCH1,FYN,BAX,MAPK3,LAMC1,PRNP +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ADCY3,LOC646821,ATP6V0E1,ATP6AP1,PDIA4,PRKX,ACTG1,PRKACG,PRKACA,PRKACB,ATP6V0D1,KCNQ1,KDELR1,ATP6V0D2,PRKCA,KDELR3,KDELR2,ATP6V1H,CFTR,PRKCG,ATP6V1D,ATP6V1F,PRKCB,ATP6V1C1,ATP6V1C2,ATP6V1A,SEC61B,GNAS,ATP6V1G3,SEC61G,ATP6V1G2,ATP6V1B2,ATP6V1G1,ATP6V1B1,ATP6V0B,ATP6V0C,ERO1L,SEC61A1,SEC61A2,ACTB,TCIRG1,LOC646048,MUC2,SLC12A2,TJP1,ATP6V0E2,ADCY9,ARF1,PLCG1,ATP6V1E1,PLCG2,ATP6V1E2,ATP6V0A1,ATP6V0A4,TJP2,ATP6V0A2 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V0E1,ATP6AP1,CXCR1,CXCR2,NFKB1,CDC42,CASP3,NOD1,PAK1,CSK,ATP6V0D1,ATP6V0D2,CHUK,EGFR,F11R,ADAM10,LYN,RELA,ATP6V1H,ATP6V1D,ATP6V1F,ATP6V1C1,ATP6V1A,IGSF5,ATP6V1C2,JUN,MAPK9,ADAM17,MAPK8,ATP6V1G3,JAM2,MAP3K14,JAM3,CXCL1,NFKBIA,ATP6V1G2,ATP6V1B2,ATP6V1G1,ATP6V1B1,CCL5,SRC,ATP6V0B,ATP6V0C,RAC1,GIT1,TCIRG1,IL8,PTPRZ1,MET,MAP2K4,MAPK11,MAPK10,PTPN11,TJP1,ATP6V0E2,PLCG1,MAPK12,MAPK13,ATP6V1E1,MAPK14,PLCG2,IKBKG,ATP6V1E2,HBEGF,ATP6V0A1,IKBKB,ATP6V0A4,ATP6V0A2 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html LOC646821,OCLN,TUBB2B,TUBB2A,TUBB2C,TLR4,TLR5,CTNNB1,ACTG1,CDC42,CTTN,RHOA,TUBB6,TUBB8,TUBA1A,TUBB1,TUBA1B,TUBB3,TUBA1C,TUBB4,PRKCA,ARHGEF2,ROCK1,LY96,ROCK2,WAS,NCL,ARPC1A,ARPC1B,NCK2,KRT18,ARPC5L,NCK1,CLDN1,TUBA4A,WASL,YWHAZ,CDH1,ARPC4,ARPC5,ITGB1,LOC653888,TUBB4Q,TUBB,EZR,ARPC3,ARPC2,TUBA3C,TUBA3D,TUBA3E,ACTB,LOC646048,HCLS1,TUBA8,FYN,YWHAQ,TUBAL3,ABL1,CD14 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html PTGS2,MARCKSL1,TLR2,TGFB3,TLR4,NFKB1,HLA-DMB,HLA-DMA,TGFB1,IL10,TGFB2,MAP3K7,FOS,MYD88,IFNG,IL1B,NOS2,FCGR3A,FCGR3B,IFNGR2,IFNGR1,IL1A,IRAK1,NCF2,NCF1,NCF4,RELA,HLA-DQA2,HLA-DQA1,PRKCB,MAPK1,JUN,MAPK3,IL12A,HLA-DPA1,IL12B,HLA-DRA,HLA-DQB1,TNF,HLA-DRB1,C3,NFKBIB,HLA-DRB3,ELK1,NFKBIA,ITGB2,ITGB1,ITGAM,IRAK4,FCGR1A,HLA-DRB4,HLA-DRB5,HLA-DPB1,HLA-DOA,TRAF6,HLA-DOB,IL4,PTPN6,CR1,MAPK11,ITGA4,TAB1,STAT1,TAB2,CYBA,MAPK12,MAPK13,FCGR2C,MAPK14,JAK1,JAK2,FCGR2A +KEGG PATHWAYS IN CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHWAYS_IN_CANCER.html HRAS,PTGS2,PGF,STAT5A,STAT5B,SHH,CTNNB1,CUL2,PIK3CA,RARA,FAS,RARB,CCNA1,PIK3CG,WNT10A,PLD1,WNT10B,BCR,BRAF,PIK3CB,RXRB,RXRA,PIK3CD,SKP2,RXRG,CTNNA1,MECOM,CTNNA3,CTNNA2,VEGFB,JUP,MAPK1,VEGFC,PIAS4,LAMC3,PIAS3,JUN,MAPK3,VEGFA,PDGFRA,MAPK9,PDGFRB,MAPK8,LAMC2,PIAS2,PIAS1,LAMC1,ITGA2B,ERBB2,NFKBIA,BCL2L1,LAMB4,LAMB3,KRAS,LAMB2,RAC2,RAC3,LOC652799,RAC1,LAMB1,FH,BMP4,DVL2,DVL3,BMP2,TCF7,MAP2K1,MAP2K2,TGFBR1,TGFBR2,CREBBP,SMAD4,SMAD3,SMAD2,HGF,DVL1,LAMA2,CBLC,LAMA1,LAMA4,CBLB,LAMA3,LAMA5,ETS1,NTRK1,FGF6,FGF5,PPARD,FGF8,FGF7,FGF9,PPARG,MITF,SPI1,MLH1,NFKB1,NFKB2,GLI2,GLI3,PTEN,GLI1,FLT3LG,CCNE2,CCNE1,TGFA,HHIP,NOS2,FGF1,MYC,FGF2,FGF3,FGF4,AR,CTBP1,CTBP2,TP53,RAD51,CCND1,WNT9B,WNT9A,BID,APC2,PML,TFG,ZBTB16,KIT,SUFU,SOS1,BCL2,SOS2,WNT8A,WNT8B,FZD9,FZD8,IL6,IL8,FZD1,LOC652671,IGF1,BIRC5,FZD3,FZD2,MAPK10,APPL1,STAT1,BIRC3,FZD5,BIRC2,FZD4,FZD7,STAT3,FZD6,NRAS,WNT7B,RASSF5,GSK3B,RASSF1,ARAF,TCEB2,PTCH1,TCEB1,PTCH2,WNT7A,FGF19,FGF18,PDGFB,PDGFA,FGF14,MMP9,WNT3A,FGF17,STK36,ARNT2,FGF16,TGFB3,FGF11,FOXO1,FGF10,FGF13,FGF12,MMP2,MMP1,TGFB1,TGFB2,WNT2,WNT1,WNT4,CDKN2A,WNT3,CDKN2B,SLC2A1,RALB,CSF3R,RALA,WNT6,EGFR,RET,RELA,FGF23,FADD,FGF22,FGF21,FGF20,STK4,CCDC6,EP300,HIF1A,TRAF1,FGFR2,WNT5A,TRAF2,FGFR1,WNT5B,FGFR3,GRB2,ITGB1,RBX1,ARNT,PTK2,LOC652346,ITGAV,NKX3-1,EGF,TRAF6,AXIN2,RUNX1,TRAF5,TRAF4,TRAF3,CSF1R,FN1,AXIN1,EPAS1,MET,ITGA2,BRCA2,ITGA3,CDKN1A,HDAC2,CDKN1B,HDAC1,ITGA6,PLCG1,PLCG2,IKBKG,MTOR,IKBKB,ABL1,E2F1,HSP90AB1,E2F2,E2F3,FASLG,AKT1,CDC42,MAX,FOS,CASP3,CASP9,PAX8,CASP8,RHOA,TPR,CHUK,AKT3,CSF2RA,AKT2,PRKCA,HSP90AA1,RALBP1,CYCS,RUNX1T1,LEF1,CDK6,PRKCG,RB1,CDK4,DAPK2,DAPK3,CDK2,PRKCB,DAPK1,SMO,CRKL,NCOA4,MDM2,WNT11,GSTP1,DCC,CKS1B,WNT16,XIAP,EGLN3,EGLN2,KITLG,EGLN1,CDH1,TCF7L2,TCF7L1,TPM3,IGF1R,PIK3R5,PIK3R3,FIGF,PIK3R1,PIK3R2,APC,CEBPA,COL4A4,MSH6,COL4A2,COL4A1,MSH3,KLK3,VHL,MSH2,FLT3,CBL,RAF1,BAD,RALGDS,COL4A6,WNT2B,HSP90B1,FZD10,BAX,JAK1,CRK +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html TGFB3,MLH1,TGFB1,CTNNB1,TGFB2,AKT1,FOS,CASP3,CASP9,RHOA,PIK3CA,MYC,AKT3,AKT2,PIK3CG,BRAF,PIK3CB,PIK3CD,CYCS,TP53,LEF1,MAPK1,CCND1,JUN,MAPK3,MAPK9,MAPK8,DCC,APC2,TCF7L2,TCF7L1,KRAS,RAC2,RAC3,BCL2,RAC1,PIK3R5,AXIN2,PIK3R3,PIK3R1,PIK3R2,APC,AXIN1,MSH6,TCF7,MSH3,MAP2K1,MSH2,TGFBR1,TGFBR2,SMAD4,SMAD3,RAF1,BIRC5,SMAD2,BAD,MAPK10,APPL1,RALGDS,BAX,GSK3B,ARAF +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html HRAS,PDGFB,PGF,ARNT2,TGFB3,FLCN,TGFB1,TGFB2,AKT1,PAK6,CDC42,PAK7,CUL2,PAK2,PAK3,PAK4,GAB1,SLC2A1,PIK3CA,TGFA,PAK1,RAPGEF1,AKT3,AKT2,PIK3CG,BRAF,PIK3CB,PIK3CD,VEGFB,MAPK1,VEGFC,CRKL,HIF1A,EP300,JUN,MAPK3,VEGFA,GRB2,EGLN3,EGLN2,EGLN1,ARNT,RBX1,KRAS,SOS1,SOS2,RAC1,PIK3R5,PIK3R3,FIGF,PIK3R1,PIK3R2,FH,MAP2K1,EPAS1,VHL,MAP2K2,MET,CREBBP,RAF1,HGF,PTPN11,NRAS,ETS1,ARAF,TCEB2,RAP1A,RAP1B,TCEB1,CRK +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html E2F1,E2F2,E2F3,PGF,TGFB3,NFKB1,TGFB1,TGFB2,AKT1,CDC42,CDKN2A,CASP9,RALB,PIK3CA,RALA,TGFA,AKT3,CHUK,AKT2,PIK3CG,EGFR,PLD1,BRAF,PIK3CB,RALBP1,ARHGEF6,RELA,PIK3CD,TP53,CDK6,RB1,CDK4,RAD51,VEGFB,MAPK1,VEGFC,CCND1,MAPK3,VEGFA,MAPK9,MAPK8,ERBB2,BCL2L1,KRAS,RAC2,RAC3,RAC1,PIK3R5,PIK3R3,EGF,FIGF,PIK3R1,PIK3R2,MAP2K1,TGFBR1,TGFBR2,SMAD4,BRCA2,RAF1,SMAD3,SMAD2,BAD,MAPK10,STAT1,RALGDS,STAT3,IKBKG,ARAF,JAK1,IKBKB +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html HRAS,MLH1,FOXO3,PTEN,CTNNB1,AKT1,PDPK1,CASP9,ILK,PIK3CA,MYC,AKT3,AKT2,EGFR,PIK3CG,BRAF,PIK3CB,PIK3CD,TP53,LEF1,CTNNA1,CTNNA3,CTNNA2,MAPK1,CCND1,MAPK3,APC2,GRB2,ERBB2,ELK1,CDH1,TCF7L2,TCF7L1,KRAS,SOS1,SOS2,PIK3R5,AXIN2,EGF,PIK3R3,PIK3R1,PIK3R2,AXIN1,APC,TCF7,MAP2K1,MAP2K2,RAF1,BAD,NRAS,GSK3B,ARAF +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html E2F1,E2F2,E2F3,HRAS,PDGFB,PDGFA,PTEN,AKT1,CDKN2A,PIK3CA,TGFA,SHC1,SHC3,SHC2,AKT3,AKT2,SHC4,PIK3CG,PRKCA,EGFR,BRAF,PIK3CB,PIK3CD,TP53,CDK6,PRKCG,RB1,CDK4,PRKCB,MAPK1,CCND1,MAPK3,PDGFRA,MDM2,PDGFRB,GRB2,CAMK2G,IGF1R,KRAS,CALML3,SOS1,SOS2,CAMK2D,CALML6,PIK3R5,CAMK2B,CALML5,EGF,PIK3R3,CAMK2A,PIK3R1,PIK3R2,MAP2K1,MAP2K2,RAF1,IGF1,NRAS,CDKN1A,PLCG1,PLCG2,ARAF,CALM3,MTOR,CALM2,CALM1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html HSP90AB1,E2F1,E2F2,E2F3,HRAS,PDGFB,PDGFA,FOXO1,NFKB1,PTEN,CTNNB1,INSRR,CCNE2,AKT1,CCNE1,PDPK1,CASP9,CREB3L2,PIK3CA,TGFA,CREB3L1,PDGFC,CREB3L4,SRD5A2,CREB3L3,PDGFD,CHUK,AKT3,AKT2,PIK3CG,EGFR,AR,HSP90AA1,BRAF,PIK3CB,RELA,PIK3CD,TP53,LEF1,RB1,CDK2,MAPK1,CCND1,EP300,MAPK3,PDGFRA,PDGFRB,MDM2,GSTP1,FGFR2,FGFR1,GRB2,ERBB2,NFKBIA,TCF7L2,TCF7L1,IGF1R,KRAS,INS,BCL2,SOS1,SOS2,NKX3-1,PIK3R5,PIK3R3,EGF,PIK3R1,PIK3R2,TCF7,MAP2K1,CREB3,KLK3,MAP2K2,CREB1,CREBBP,RAF1,IGF1,CREB5,BAD,NRAS,ATF4,HSP90B1,CDKN1A,CDKN1B,GSK3B,ARAF,IKBKG,MTOR,IKBKB +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html HRAS,PPARG,TFG,CDH1,TCF7L2,TCF7L1,TPM3,CTNNB1,KRAS,PAX8,TPR,MYC,RET,TCF7,MAP2K1,BRAF,MAP2K2,RXRB,RXRA,RXRG,TP53,LEF1,MAPK1,CCDC6,NRAS,CCND1,NCOA4,NTRK1,MAPK3 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT3A,STK36,GLI2,GLI3,SHH,CTNNB1,GLI1,WNT2,WNT1,WNT4,WNT3,HHIP,WNT6,WNT10A,WNT10B,TP53,LEF1,SMO,WNT9B,WNT11,WNT9A,WNT5A,WNT16,WNT5B,APC2,TCF7L2,TCF7L1,SUFU,AXIN2,WNT8A,AXIN1,WNT8B,APC,DVL2,FZD9,BMP4,FZD8,DVL3,TCF7,BMP2,FZD1,FZD3,FZD2,FZD5,FZD4,FZD7,WNT2B,DVL1,FZD6,WNT7B,FZD10,GSK3B,PTCH1,PTCH2,WNT7A +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html E2F1,FGF6,FGF19,E2F2,FGF5,FGF18,E2F3,FGF8,HRAS,FGF7,PDGFB,PDGFA,FGF9,FGF14,FGF17,MITF,FGF16,FGF11,FGF10,FGF13,FGF12,PTEN,AKT1,CDKN2A,PIK3CA,PDGFC,PDGFD,FGF1,FGF2,FGF3,AKT3,AKT2,FGF4,PIK3CG,EGFR,BRAF,PIK3CB,PIK3CD,TP53,FGF23,CDK6,FGF22,RB1,FGF21,CDK4,FGF20,MAPK1,CCND1,MAPK3,PDGFRA,MDM2,PDGFRB,FGFR1,CDH1,IGF1R,KRAS,PIK3R5,PIK3R3,EGF,PIK3R1,PIK3R2,MAP2K1,MAP2K2,MET,RAF1,IGF1,BAD,HGF,NRAS,CDKN1A,ARAF +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html E2F1,E2F2,E2F3,HRAS,FGFR3,PGF,ERBB2,MMP9,CDH1,MMP2,MMP1,TYMP,KRAS,CDKN2A,THBS1,EGF,MYC,FIGF,EGFR,IL8,BRAF,MAP2K1,MAP2K2,TP53,RAF1,RB1,DAPK2,CDK4,DAPK3,DAPK1,VEGFB,RPS6KA5,MAPK1,NRAS,VEGFC,CDKN1A,CCND1,RASSF1,MAPK3,ARAF,VEGFA,MDM2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html E2F1,E2F2,E2F3,HRAS,STAT5A,STAT5B,TGFB3,NFKB1,TGFB1,TGFB2,AKT1,CDKN2A,GAB2,PIK3CA,SHC1,SHC3,SHC2,MYC,AKT3,CHUK,SHC4,AKT2,PIK3CG,CTBP1,BCR,CTBP2,BRAF,PIK3CB,RELA,PIK3CD,TP53,CDK6,RB1,CDK4,MECOM,MAPK1,CCND1,CRKL,MAPK3,MDM2,GRB2,NFKBIA,BCL2L1,KRAS,SOS1,SOS2,PIK3R5,PIK3R3,RUNX1,PIK3R1,PIK3R2,MAP2K1,MAP2K2,TGFBR1,TGFBR2,CBL,SMAD4,SMAD3,RAF1,BAD,PTPN11,CBLC,NRAS,CBLB,CDKN1A,HDAC2,CDKN1B,HDAC1,IKBKG,ARAF,ABL1,IKBKB,CRK +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PPARD,HRAS,STAT5A,STAT5B,SPI1,RPS6KB2,RPS6KB1,NFKB1,AKT1,EIF4EBP1,PIK3CA,RARA,CCNA1,MYC,CHUK,AKT3,AKT2,PIK3CG,BRAF,PIK3CB,RELA,PIK3CD,PIM1,RUNX1T1,LEF1,PIM2,JUP,MAPK1,CCND1,MAPK3,GRB2,PML,KIT,ZBTB16,TCF7L2,TCF7L1,KRAS,LOC652346,SOS1,LOC652799,SOS2,PIK3R5,PIK3R3,RUNX1,PIK3R1,PIK3R2,CEBPA,TCF7,MAP2K1,FLT3,MAP2K2,RAF1,LOC652671,BAD,STAT3,NRAS,IKBKG,ARAF,MTOR,IKBKB +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html E2F1,E2F2,FHIT,E2F3,PTGS2,NFKB1,PTEN,CCNE2,AKT1,CCNE1,MAX,CDKN2B,CASP9,PIK3CA,NOS2,RARB,MYC,CHUK,AKT3,AKT2,PIK3CG,PIK3CB,RXRB,RXRA,RELA,PIK3CD,CYCS,TP53,SKP2,RXRG,CDK6,RB1,CDK4,CDK2,CCND1,PIAS4,LAMC3,PIAS3,PIAS2,LAMC2,LAMC1,PIAS1,ITGA2B,TRAF1,CKS1B,TRAF2,XIAP,NFKBIA,BCL2L1,ITGB1,LAMB4,PTK2,LAMB3,LAMB2,BCL2,ITGAV,PIK3R5,PIK3R3,TRAF6,LAMB1,TRAF5,PIK3R1,TRAF4,PIK3R2,TRAF3,FN1,COL4A4,COL4A2,COL4A1,ITGA2,ITGA3,BIRC3,BIRC2,COL4A6,LAMA2,LAMA1,LAMA4,CDKN1B,LAMA3,ITGA6,LAMA5,IKBKG,APAF1,IKBKB +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html E2F1,FHIT,E2F2,HRAS,E2F3,FOXO3,AKT1,PDPK1,CDKN2A,CASP9,TGFA,PIK3CA,RARB,AKT3,AKT2,PIK3CG,PRKCA,EGFR,BRAF,RXRB,PIK3CB,RXRA,PIK3CD,RXRG,TP53,PRKCG,CDK6,RB1,CDK4,STK4,PRKCB,MAPK1,CCND1,MAPK3,GRB2,ERBB2,KRAS,SOS1,SOS2,PIK3R5,EGF,PIK3R3,PIK3R1,PIK3R2,MAP2K1,MAP2K2,RAF1,BAD,NRAS,RASSF5,PLCG1,RASSF1,PLCG2,ARAF +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DQB1,TNF,HLA-DRB1,HLA-DRB3,IL13,HLA-DMB,HLA-DMA,IL10,EPX,HLA-DRB4,MS4A2,FCER1G,HLA-DRB5,HLA-DPB1,HLA-DOA,HLA-DOB,IL4,FCER1A,IL3,IL5,RNASE3,IL9,PRG2,CD40,HLA-DQA2,HLA-DQA1,CCL11,CD40LG,HLA-DPA1,HLA-DRA +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA21,CGA,FASLG,HLA-DMB,HLA-DMA,IL10,TPO,FAS,HLA-A,HLA-C,GZMB,HLA-B,CD40,HLA-E,HLA-DQA2,HLA-G,HLA-DQA1,HLA-F,CD86,CD80,CD40LG,HLA-DPA1,TSHR,HLA-DRA,TG,HLA-DQB1,PRF1,HLA-DRB1,HLA-DRB3,TSHB,IFNA2,IFNA1,IFNA7,IFNA6,IFNA5,IFNA4,HLA-DRB4,HLA-DRB5,IFNA8,HLA-DPB1,HLA-DOA,HLA-DOB,CD28,IL4,IL5,IFNA10,CTLA4,LOC652614,IFNA14,IFNA13,IFNA16,IFNA17,IL2 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H2AA3,LOC340096,HIST2H2AA4,SNRPD3,SNRPD1,C1QC,IL10,HIST1H2BO,HIST1H2BM,HIST1H2BN,HIST1H2BK,H2AFV,GRIN2B,HIST1H2BL,HIST1H2BI,IFNG,HIST1H2BJ,H2AFZ,H2AFY,H2AFX,HIST3H3,C4A,ACTN4,C4B,GRIN2A,ACTN1,ACTN2,CD40,H2AFJ,ACTN3,H2BFWT,HLA-DQA2,HLA-DQA1,C1QA,C1QB,CD40LG,SNRPB,HLA-DPA1,HLA-DRA,HIST1H4L,HIST1H4K,LOC391769,HLA-DRB1,HLA-DRB3,H2AFB2,H2AFB1,TROVE2,LOC651868,HIST1H4A,HIST1H4B,HLA-DRB4,HIST1H4E,HLA-DRB5,HIST1H4F,HIST1H4C,HLA-DPB1,HIST1H4D,HIST1H4I,HLA-DOA,HLA-DOB,HIST1H4J,HIST1H4G,HIST1H4H,HIST2H3A,HIST1H3J,SSB,HIST2H3C,HIST2H3D,LOC644950,HIST1H3A,HIST1H3B,HIST1H3C,H3F3A,H3F3B,HIST1H3D,H3F3C,HIST1H3E,HIST1H3F,HIST1H3G,HIST1H3H,HIST1H3I,HIST4H4,HIST2H4A,HLA-DMB,HLA-DMA,HIST2H4B,HIST2H2AB,HIST2H2AC,HIST3H2A,HIST3H2BB,FCGR3A,FCGR3B,ELANE,H2BFM,H2AFB3,C8G,C8A,C8B,CD86,CD80,HIST2H2BE,HIST2H2BF,CTSG,HIST1H2AB,HLA-DQB1,HIST1H2AC,C7,HIST1H2AA,C9,TNF,C3,HIST1H2AG,C6,HIST1H2AD,C5,HIST1H2AE,C1R,C1S,FCGR1A,C2,CD28,HIST1H2BA,HIST1H2BB,HIST1H2BC,HIST1H2BD,HIST1H2BE,HIST1H2BF,HIST1H2BG,HIST1H2BH,TRIM21,FCGR2B,FCGR2C,H2AFY2,HIST1H2AI,HIST1H2AH,HIST1H2AK,HIST1H2AJ,FCGR2A,HIST1H2AM,HIST1H2AL +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DQB1,PRF1,TNF,HLA-DRB1,HLA-DRB3,FASLG,HLA-DMB,HLA-DMA,IL10,IFNG,HLA-DRB4,HLA-DRB5,FAS,HLA-DPB1,HLA-DOA,HLA-DOB,CD28,IL4,IL5,HLA-A,GZMB,HLA-C,HLA-B,CD40,HLA-E,HLA-DQA2,HLA-G,LOC652614,HLA-DQA1,HLA-F,CD86,CD80,CD40LG,IL12A,HLA-DPA1,IL12B,HLA-DRA,IL2 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DQB1,PRF1,KIR2DL5A,TNF,HLA-DRB1,HLA-DRB3,FASLG,HLA-DMB,HLA-DMA,IFNG,HLA-DRB4,HLA-DRB5,IL1B,FAS,HLA-DPB1,HLA-DOA,KLRD1,HLA-DOB,IL1A,CD28,IL6,HLA-A,GZMB,HLA-C,HLA-B,HLA-E,HLA-DQA2,HLA-G,HLA-DQA1,LOC652614,HLA-F,CD86,CD80,HLA-DPA1,KIR2DL1,KIR2DL3,KIR2DL2,KIR3DL1,KLRC1,HLA-DRA,KIR3DL2,IL2 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html CD8A,CD8B,UNG,RAG1,RAG2,IL7R,RFXANK,RFXAP,ADA,BTK,ICOS,TAP2,TAP1,ZAP70,IGLL1,IL2RG,CD4,BLNK,CIITA,PTPRC,CD3D,RFX5,CD3E,TNFRSF13B,TNFRSF13C,CD40,DCLRE1C,CD19,CD40LG,LCK,IKBKG,AIRE,AICDA,JAK3,CD79A +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html PRKAG3,LOC646821,TNNC1,PRKAG1,MYBPC3,PRKAG2,TGFB3,TTN,TGFB1,TGFB2,ACTG1,DES,CACNG8,CACNG7,PRKAB2,CACNG6,CACNG5,PRKAB1,CACNG4,MYH7,CACNG3,MYH6,CACNG2,CACNG1,TNNT2,SGCG,SGCD,RYR2,SGCA,SGCB,ITGA2B,TNF,MYL2,MYL3,DAG1,ITGA11,CACNB1,ITGB4,ITGA10,CACNB2,ITGB5,CACNB3,CACNB4,ITGB3,TPM2,TPM1,ITGB1,TPM4,TPM3,ACE,ITGB8,DMD,ITGB7,ITGAV,ITGB6,PRKAA1,PRKAA2,EMD,ACTB,LOC646048,IL6,CACNA2D1,SLC8A1,ACTC1,ITGA1,LMNA,ITGA2,IGF1,ITGA3,ITGA4,CACNA2D3,TNNI3,CACNA2D2,CACNA1S,CACNA2D4,LAMA2,ITGA9,ITGA6,ATP2A2,ITGA5,ITGA8,ITGA7,CACNA1F,CACNA1C,CACNA1D +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html LOC646821,GJA1,CTNNB1,ACTG1,DES,ACTN4,CACNG8,CACNG7,CACNG6,CACNG5,CACNG4,LEF1,ACTN1,ACTN2,CACNG3,ACTN3,CACNG2,CACNG1,CTNNA1,CTNNA3,CTNNA2,JUP,SGCG,DSP,SGCD,RYR2,SGCA,SGCB,ITGA2B,DAG1,ITGA11,CACNB1,ITGB4,ITGA10,CACNB2,ITGB5,CACNB3,CACNB4,ITGB3,CDH2,TCF7L2,ITGB1,TCF7L1,ITGB8,DMD,ITGB7,ITGAV,ITGB6,EMD,ACTB,LOC646048,CACNA2D1,SLC8A1,TCF7,ITGA1,LMNA,ITGA2,ITGA3,ITGA4,CACNA2D3,CACNA2D2,CACNA1S,CACNA2D4,LAMA2,ITGA9,ITGA6,ATP2A2,DSG2,ITGA5,PKP2,ITGA8,ITGA7,DSC2,CACNA1F,CACNA1C,CACNA1D +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ADCY3,LOC646821,ADCY4,ADCY1,ADCY2,ADCY7,ADCY8,TNNC1,ADCY5,MYBPC3,ADCY6,TGFB3,TTN,TGFB1,PRKX,TGFB2,PRKACG,ACTG1,DES,PRKACA,PRKACB,CACNG8,CACNG7,CACNG6,CACNG5,CACNG4,MYH7,CACNG3,MYH6,CACNG2,CACNG1,TNNT2,ADRB1,SGCG,SGCD,RYR2,GNAS,SGCA,SGCB,ITGA2B,TNF,MYL2,MYL3,DAG1,CACNB1,ITGA11,ITGB4,ITGA10,CACNB2,ITGB5,CACNB3,CACNB4,ITGB3,TPM2,ITGB1,TPM1,TPM4,TPM3,ITGB8,DMD,ITGB7,ITGAV,ITGB6,EMD,ACTB,LOC646048,ACTC1,CACNA2D1,SLC8A1,ITGA1,LMNA,ITGA2,IGF1,ITGA3,ITGA4,CACNA2D3,TNNI3,CACNA2D2,CACNA1S,CACNA2D4,LAMA2,ITGA9,ITGA6,ATP2A2,ADCY9,ITGA5,PLN,ITGA8,ITGA7,CACNA1F,CACNA1C,CACNA1D +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html LOC646821,MYH15,HLA-DMB,CXADR,HLA-DMA,ACTG1,CASP3,CASP9,CASP8,ICAM1,MYH1,MYH3,CYCS,MYH2,HLA-A,MYH4,MYH7,HLA-C,MYH6,CD40,HLA-B,MYH9,HLA-E,MYH8,HLA-DQA2,HLA-DQA1,HLA-G,HLA-F,EIF4G1,EIF4G2,CCND1,CD86,EIF4G3,CD80,SGCG,CD40LG,SGCD,HLA-DPA1,MYH7B,SGCA,HLA-DRA,SGCB,HLA-DQB1,BID,ITGAL,PRF1,CAV1,HLA-DRB1,HLA-DRB3,DAG1,ITGB2,RAC2,RAC3,DMD,RAC1,HLA-DRB4,HLA-DRB5,HLA-DPB1,HLA-DOA,HLA-DOB,CD28,ACTB,LOC646048,LOC652614,LAMA2,CD55,FYN,MYH11,MYH13,MYH14,ABL1,ABL2,MYH10 +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html TNF,RELA,CREBBP,NFKBIA,NFKB1,FADD,TRADD,TNFRSF1A,TNFRSF1B,HDAC3,EP300,RIPK1,IKBKG,IKBKB,TRAF6,CHUK +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html CAV1,PDE3B,PRKG2,BDKRB2,PRKG1,PRKACG,AKT1,PRKAR2B,PRKAR2A,NOS3,PRKACB,CHRNA1,KNG1,HSP90AA1,FLT1,ACTA1,FLT4,PDE3A,CYCSP35,TNNI1,KDR,PDE2A,PRKAR1B,SLC7A1,CHRM1,PRKAR1A,VEGFA,CALM3,RYR2,CALM2,CALM1 +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html PTPRC,ADCY1,CD3G,HLA-DRB1,CD3D,CD3E,CREBBP,CD247,TRA@,TRB@,PRKACG,PRKAR2B,GNGT1,PRKAR2A,GNB1,PRKAR1B,LCK,PRKAR1A,ZAP70,CD4,GNAS,PRKACB,CSK,HLA-DRA +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html CCNB1,PRKCA,CDK1,GRB2,PTPRA,CDC25C,CSK,CDC25A,SRC,PRKCB,CDC25B +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html PLAT,COL4A4,COL4A3,COL4A2,F10,COL4A1,F7,COL4A6,PLG,COL4A5,PROC,FGG,FGA,FGB,AHSP,F2,SERPINC1,TFPI,PROS1,F2R +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html CSF3,ITGAL,ICAM1,SELP,TNF,IL8,SELL,C5,ITGB2,ITGAM,PECAM1,IFNG,SELPLG,IL1A +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html VCAM1,ICAM1,ITGAL,IL8,CD34,SELL,PECAM1,ITGB2,ITGA4,ITGB1,IL1A +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html ARFGAP1,KDELR3,KDELR2,COPA,ARFGAP3,CLTB,CYTH1,GPLD1,ASAP2,CYTH4,COP,CYTH2,CYTH3,ARFGEF2,ARFGEF1,GBF1,ARF1,KDELR1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html NRG3,UTRN,DAG1,ITGB1,PXN,SRC,PAK6,CDC42,PAK7,MUSK,CTTN,PTK2,PAK2,PAK3,PAK4,DMD,RAC1,GIT2,PAK1,NRG1,CHRNA1,NRG2,EGFR,ACTA1,ITGA1,DVL1,LAMA2,MAPK1,LAMA4,LAMA3,SP1,RAPSN,CHRM1,JUN,MAPK3,MAPK8 +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html CCNB1,PRKACG,CDK1,PRKAR2B,PPP1CA,PRKAR2A,PPP2CA,PRKAG1,AKAP8,PRKACB,DDX5,NCAPD2 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html PIK3CG,HSP90AA1,RELA,NFKBIA,FASLG,FOXO1,NFKB1,BAD,FOXO3,FOXO4,AKT1,GH1,PDPK1,YWHAH,CASP9,PPP2CA,IKBKG,PIK3CA,IKBKB,PIK3R1,CHUK,GHR +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html MEF2C,BMP10,NOG,HNF1A,MYL2,TGFB3,BMPR2,TGFB1,TGFB2,CTNNB1,ATF2,MAP3K7,WNT1,GATA4,NKX2-5,AXIN1,APC,BMP4,BMP2,TGFBR1,SMAD6,SMAD5,TGFBR2,SMAD4,FZD1,SMAD1,DVL1,RFC1,GSK3B,NPPB,TGFBR3,BMP7,CHRD,BMP5,NPPA,BMPR1A,ACVR1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html MEF2C,MEF2A,HRAS,GRB2,ELK1,SRC,ATF2,AGTR1,PTK2,PTK2B,SOS1,AGT,MAP3K1,RAC1,SHC1,PAK1,EGFR,PRKCA,MAP2K1,MAP2K2,MAP2K4,RAF1,CYCSP35,PRKCB,MAPK1,MEF2D,LOC729991-MEF2B,GNAQ,JUN,MAPK3,CALM3,MAPK8,CALM2,CALM1 +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html COL4A4,COL4A3,COL4A2,COL4A1,COL4A6,COL4A5,AGTR1,ACE,AGTR2,REN,AGT,ACE2,CMA1 +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html IL4,HLA-DRB1,CD80,CD40LG,FASLG,CD4,FAS,CD40,IL10,IL2,HLA-DRA,CD28 +BIOCARTA DNAFRAGMENT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DNAFRAGMENT_PATHWAY.html HMGB1,CASP3,HMGB2,DFFA,ENDOG,CASP7,DFFB,GZMB,TOP2B,TOP2A +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html BID,PRKCA,TLN1,CYCS,TP53,BAD,BCL2L1,STAT1,PXN,ATM,PRKCB,AKT1,CASP6,CASP3,PTK2,CASP9,BCL2,CASP7,BAX,EIF2S1,APAF1,PARP1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html PRKCA,F2RL3,HRAS,TBXAS1,MAP2K1,GNAI1,PTGS1,ITGA1,RAF1,ITGB1,SRC,PRKCB,MAPK1,GNGT1,PTK2,PLA2G4A,GNB1,MAPK3,F2,PLCB1,SYK,F2R +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html NBN,MRE11A,RELA,TP53,NFKBIA,NFKB1,CHEK1,CHEK2,RAD50,TP73,ATM,BRCA1,RBBP8,RAD51,CDKN1A,JUN,MDM2,MAPK8,ABL1,GADD45A +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html PRKCA,PRKCB,PRKACG,PRKAR2B,GNGT1,PRKAR2A,ARRB1,GNB1,PRKAR1B,PRKAR1A,GNAS,GRK4,PRKACB +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html PIK3CG,DPF2,ZBTB7A,XIAP,ITGA1,BIRC5,ITGB1,AKT1,FOS,CASP3,CCT4,CASP7,JUND,PIK3CA,MTOR,PIK3R1 +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html ICAM1,PTPRC,ITGAL,CR1,CR2,FCGR2B,HLA-DRB1,CD80,ITGB2,CD40,HLA-DRA +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html HRAS,GRB2,ELK1,BTK,FOS,SOS1,MAP3K1,RAC1,PPP3CB,PPP3CC,SHC1,NFATC4,PPP3CA,NFATC2,NFATC3,NFATC1,SYK,BLNK,PRKCA,LYN,MAP2K1,RAF1,CYCSP35,VAV1,PRKCB,PLCG1,MAPK14,JUN,MAPK3,CALM3,MAPK8,CD79B,CD79A,CALM2,CALM1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html HRAS,GRB2,GNAI1,STAT5A,CAMK2G,GNA11,STAT5B,STAT6,AGTR2,STAT4,PTK2B,SOS1,AGT,MAPT,CAMK2D,SHC1,CAMK2B,CAMK2A,PRKCA,KNG1,MAP2K1,MAP2K2,RAF1,CYCSP35,STAT1,CDK5,STAT3,STAT2,PRKCB,MAPK1,GNGT1,PLCG1,FYN,GNB1,MAPK14,MAPK3,F2,CALM3,JAK2,MAPK8,CALM2,MYLK,CALM1 +BIOCARTA NEUROTRANSMITTERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NEUROTRANSMITTERS_PATHWAY.html PNMT,HDC,TH,DBH,TPH1,GAD1 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html FOSL2,RELA,NFKB1,IFNAR1,IRF9,IFNAR2,FOS,TNFSF11,TNFRSF11A,IFNB1,MAPK8,EIF2AK2,TRAF6,FOSL1 +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CAMK1G,CAMK2G,CREB1,CYCSP35,CAMKK1,CAMKK2,CAMK4,CAMK2D,CALM3,CAMK1,CAMK2B,CAMK2A,CALM2,CALM1 +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html PRKCA,HRAS,TNF,MAP2K1,RELA,NFKBIA,RAF1,CUZD1,NFKB1,PRKCB,MAPK1,FOS,JUN,MAPK3,PLCB1,MYC +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html MEF2C,GRIP1,TBP,POLR2A,GTF2E1,GTF2A1,PELP1,ERCC3,SRA1,CREBBP,HDAC10,ESR1,HDAC11,SPEN,NR0B1,PPARGC1A,HIST2H3C,BRCA1,NRIP1,HDAC5,HDAC4,HDAC3,CCND1,HDAC2,EP300,HDAC1,PHB2,GTF2F1,CARM1,HDAC9,HDAC8,HDAC7,NCOR2,MED1,HDAC6 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html PRF1,LMNB1,XIAP,LMNB2,DFFA,DFFB,CYCS,LMNA,GZMB,BIRC3,BIRC2,CASP10,CASP6,CASP3,CASP4,CASP9,CASP7,CASP8,APAF1,PARP1,CASP1,CASP2,ARHGDIB +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html EGFR,PRKCA,GRB2,CBL,MET,SRC,PRKCB,SH3GLB2,SH3GLB1,PDGFRA,SH3KBP1,EGF,CSF1R +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html PRKCA,HRAS,PIK3C2G,MYL2,MAP2K1,ROCK2,LIMK1,PPP1R12B,NOX1,RAF1,PRKCB,CCL11,MAPK1,GNGT1,PTK2,GNAQ,GNB1,CCR3,MAPK3,CFL1,RHOA,GNAS,PLCB1 +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html IKBKAP,RELA,NFKBIA,NFKB1,CD40,DUSP1,CD40LG,MAP3K1,IKBKG,IKBKB,TRAF6,TNFAIP3,MAP3K14,CHUK,TRAF3 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html CDC6,KITLG,MCM2,MCM3,MCM4,MCM5,CDK2,ORC1L,MCM6,CDT1,CCNE1,ORC2L,ORC3L,MCM7,CDKN1B,ORC4L,ORC6L,ORC5L +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html E2F1,TGFB3,TGFB1,TGFB2,CCNE1,CDKN2A,CDKN2B,CCNA1,TFDP1,CDK1,SMAD4,SKP2,TP53,SMAD3,CDK6,RB1,ATR,CDK4,CDK2,CDC25A,ATM,CCND1,CDKN1A,CDKN1B,DHFR,HDAC1,GSK3B,ABL1 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html CDK1,TP53,PRKDC,CHEK1,ATR,CHEK2,CDC34,CDC25C,MYT1,ATM,CDC25A,BRCA1,WEE1,CDC25B,CCNB1,CDKN1A,YWHAH,EP300,RPS6KA1,PLK1,CDKN2D,YWHAQ,MDM2,GADD45A +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html BCAR1,ACTN1,ACTN2,ACTN3,CTNNA1,SRC,CTNNA3,PXN,VCL,CTNNA2,CTNNB1,PTK2,PECAM1,CSK +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html KNG1,C7,ITGAL,ICAM1,SELP,IL6,TNF,IL8,C3,C6,C5,ITGB2,ITGA4,ITGB1,VCAM1,SELPLG,IL1A +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html TRAF2,MAP2K1,AIFM1,RELA,MAP2K4,CYCS,RAF1,NFKB1,FADD,BAD,TRADD,MAPK1,TNFRSF1A,RIPK1,BCL2,MAP3K1,BAX,MAPK3,CASP8,SMPD1,MAPK8,NSMAF +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html TNF,RELA,TP53,NFKBIA,NFKB1,HSPA1A,RB1,TAX1BP3,WT1,LIN7A,TNFRSF1A,TNFRSF1B,IFNG,USH1C,JAK2,IKBKB,IFNGR2,IFNGR1,DNAJA3 +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C7,C9,C4A,C3,C4B,C6,C5,C1R,C1S,C1QC,C1QA,C8A,C1QB,C2 +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C7,MBL2,C9,C4A,MASP1,CFB,MASP2,C4B,C3,C6,C5,C1R,C1S,C1QC,C8A,C1QA,C1QB,C2,CFD +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html NCOA1,EP300,KAT2B,NCOA2,NCOA3,HDAC1,RXRA,TSC2,CREBBP,CARM1,NCOR1,MED1 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html MEF2C,MYOD1,MEF2A,AKT1,IGF1R,INS,PPP3CB,PPP3CC,PIK3CA,PPP3CA,NFATC2,INSR,PIK3R1,MAP2K6,NFATC1,PIK3CG,CAMK1G,IGF1,CYCSP35,HDAC5,MEF2D,LOC729991-MEF2B,YWHAH,MAPK14,CABIN1,CALM3,CAMK1,MAPK7,CALM2,CALM1 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html PIK3CG,HSP90AA1,CORIN,RELA,ANXA1,CYCSP35,NFKB1,NR3C1,AKT1,GNGT1,ADRB2,GNB1,CALM3,PIK3CA,NOS3,GNAS,PIK3R1,CALM2,NPPA,CALM1 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html PIK3CG,TGFBR1,TGFBR2,SMAD5,TGFB3,SMAD4,TP53,RPS6KB1,SMAD1,PTEN,TGFB1,TGFB2,CDKN2A,CDKN1B,PPP2CA,TGFBR3,MDM2,PIK3CA,CD79B,CD79A,MTOR,MYC,PIK3R1 +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html ITGAL,ICAM1,PRF1,CD3G,CD3D,CD3E,CD247,HLA-A,FASLG,ITGB2,GZMB,TRA@,TRB@,B2M,FAS +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html PRKCA,HRAS,PIK3C2G,MAP2K1,GNAI1,RELA,BCAR1,RAF1,NFKB1,CXCL12,PXN,PRKCB,MAPK1,GNGT1,PTK2,PLCG1,GNAQ,PTK2B,CXCR4,GNB1,MAPK3,PIK3CA,CRK,PIK3R1 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html E2F1,CDK1,CCNH,RBL1,CDK6,CDK7,RB1,CDK4,CDC25A,CDK2,CCNB1,CCNE1,CCND1,CDKN1A,CDKN2A,CDKN1B,CCND3,CDKN2B,CCND2,CDKN2C,CDKN2D,CCNA1,TFDP1 +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html PRKACG,PRKAR2B,ADRB2,ADCY1,PRKAR2A,EZR,PRKAR1B,PRKAR1A,GNAS,CFTR,PRKACB,SLC9A3R1 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL4,IL3,IL6,IL5,TNF,IL8,IL16,IL18,IL9,IL13,IL15,IL10,IFNA1,IL17A,IFNB1,IFNG,IL12A,IL12B,LTA,IL1A,IL2 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html CSF3,CSF2,TNF,HLA-DRB1,PDGFA,CSF1,TGFB3,IL13,IL15,TGFB1,IL10,IL11,TGFB2,IFNA1,IFNG,CD4,LTA,IL1A,IL4,IL3,IL6,IL5,IL8,IL7,IFNB1,IL12A,IL12B,HLA-DRA,IL2 +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html PRF1,CYCS,GZMB,CASP10,CASP3,ARHGAP5,CASP9,JUN,CASP8,APAF1,CASP1,PARP1,ARHGDIB +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html IL4,CSF2,IL3,IL5,TLR2,IL13,TLR4,ANPEP,CD40,TLR7,IL10,TLR9,IFNA1,ITGAX,IFNB1,CD33,IFNG,IL12A,CD2,IL12B,CD5,CD7 +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html CSNK1A1,APP,CAPNS2,CDK5R1,CAPNS1,CSNK1D,GSK3B,PPP2CA,MAPT,CDK5,CAPN1 +BIOCARTA RNA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RNA_PATHWAY.html EIF2S1,RELA,EIF2S2,TP53,NFKBIA,NFKB1,EIF2AK2,DNAJC3,MAP3K14,CHUK +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html ALDOA,MTA3,ESR1,MTA1,CDH1,MBD3,SNAI2,SNAI1,HDAC1,HSPB2,TUBA3C,CTSD,HSPB1,TUBA4A,TUBA4B,TUBA1A,PDZK1,GAPDH,TUBA1C +BIOCARTA SKP2E2F PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SKP2E2F_PATHWAY.html E2F1,CCNE1,SKP2,SKP1,RB1,CDC34,CCNA1,CDK2,CUL1,TFDP1 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html PRKCA,CYCSP35,PRKCB,CDKN1A,PLCG1,GNAQ,SP1,SP3,PPP3CB,CALM3,PPP3CC,NFATC4,MARCKS,PPP3CA,NFATC2,NFATC3,CALM2,NFATC1,CALM1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html HRAS,GRB2,STAT5A,STAT5B,ELK1,SRF,STAT6,FOS,STAT4,CSNK2A1,SOS1,MAP3K1,PIK3CA,SHC1,EGF,PIK3R1,RASA1,PRKCA,EGFR,MAP2K1,MAP2K4,RAF1,STAT1,STAT3,PRKCB,STAT2,PLCG1,JUN,MAPK3,JAK1,MAPK8 +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html GPD2,SDHA,SDHB,UQCRC1,SLC25A4,COX1,SLC25A6,SDHC,SDHD,CYCS,ATP5A1,NDUFA1 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html SYNJ1,CYCSP35,AMPH,EPS15,NME2,PICALM,AP2A1,NME1,PPP3CB,CALM3,SYNJ2,PPP3CC,PPP3CA,BIN1,EPN1,CALM2,DNM1,AP2M1,CALM1 +BIOCARTA EPHA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPHA4_PATHWAY.html EPHA4,SELP,LYN,ACTA1,FYN,ITGA1,L1CAM,RAP1B,ITGB1,EPHB1 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html PTPN6,HRAS,MAP2K1,GRB2,STAT5A,STAT5B,RAF1,ELK1,FOS,CSNK2A1,PLCG1,SOS1,JUN,MAPK3,EPOR,MAPK8,SHC1,JAK2,EPO +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html PIK3CG,TLN1,HRAS,ROCK1,MAP2K1,MYL2,DIAPH1,ITGA1,RAF1,ITGB1,PXN,SRC,MAPK1,PFN1,PTK2,ARHGAP5,FYN,GSN,MAPK3,RHOA,PIK3CA,SHC1,PIK3R1,MYLK +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html HRAS,GRB2,MKNK2,MKNK1,ELK1,ITGB1,SRC,IGF1R,SOS1,PPP2CA,SHC1,MYC,EGFR,MAP2K1,MAP2K2,PTPRR,RAF1,STAT3,RPS6KA5,MAPK1,GNGT1,RPS6KA1,GNB1,MAPK3,PDGFRA,GNAS,NGFR,NGF +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html CSF3,CSF2,IL3,CCL3,IL6,FLT3,IL9,TGFB3,IGF1,KITLG,TGFB1,IL11,TGFB2,IL1A,EPO +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html CDKN1A,HIF1A,RELA,GRIN1,NFKBIA,EPOR,JAK2,NFKB1,ARNT,SOD2,EPO +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF6,EIF5,EIF2S3,EEF2,EIF4G1,EIF4G2,EIF3A,EIF4G3,EIF4E,EIF4A2,EIF2S1,EIF1AX,EIF2S2,EIF4A1,EEF2K,EIF1 +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html F10,F7,PROC,FGG,FGA,F5,FGB,F3,F2,TFPI,SERPINC1,PROS1,F2R +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html LMNB1,LMNB2,PRKDC,FASLG,DAXX,MAP3K7,CASP6,CASP3,PAK2,CASP7,MAP3K1,CASP8,PAK1,FAS,ARHGDIB,CFLAR,DFFA,DFFB,MAP2K4,LMNA,PTPN13,FADD,RB1,CASP10,JUN,RIPK2,MAPK8,FAF1,PARP1,SPTAN1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html HRAS,GRB2,ELK1,BTK,FOS,PAK2,SOS1,MAP3K1,PPP3CB,PIK3CA,PPP3CC,FCER1G,SHC1,NFATC4,PPP3CA,NFATC2,NFATC3,MAP2K7,PIK3R1,NFATC1,SYK,PIK3CG,FCER1A,LYN,MAP2K1,MAP2K4,RAF1,CYCSP35,VAV1,PRKCB,MAPK1,PLA2G4A,PLCG1,JUN,MAPK3,CALM3,MAPK8,CALM2,CALM1 +BIOCARTA FEEDER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FEEDER_PATHWAY.html KHK,TPI1,MPI,PYGM,PYGL,PGM1,HK1,TREH,LCT +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html PLAT,FGG,FGA,FGB,F13A1,SERPINE1,F2,SERPINB2,CPB2,PLG,PLAU,F2R +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html GNA15,HRAS,FPR1,NCF1C,NFKBIA,ELK1,NFKB1,MAP3K1,RAC1,PPP3CB,PPP3CC,NFATC4,PPP3CA,PAK1,NFATC2,PLCB1,NFATC3,MAP2K6,NFATC1,CAMK1G,PIK3C2G,NCF2,MAP2K1,MAP2K2,RELA,MAP2K3,RAF1,CYCSP35,MAPK1,GNGT1,GNB1,MAPK14,MAPK3,CAMK1,CALM3,CALM2,CALM1 +BIOCARTA FREE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FREE_PATHWAY.html GSS,XDH,GPX1,GSR,TNF,IL8,RELA,NOX1,NFKB1,SOD1 +BIOCARTA GABA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GABA_PATHWAY.html GABRA2,GPHN,GABRA1,GABRA4,GABRA3,GABRA6,GABRA5,DNM1,GABARAP,SRC +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html MAF,IL4,IL5,MAP2K3,IL13,JUNB,PRKACG,PRKAR2B,PRKAR2A,GATA3,MAPK14,PRKAR1B,PRKAR1A,PRKACB,NFATC2,NFATC1 +BIOCARTA GLYCOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLYCOLYSIS_PATHWAY.html GPI,TPI1,PFKL,ALDOB,PKLR,PGAM1,HK1,PGK1,GAPDH,ENO1 +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html PRF1,HMGB2,SET,GZMA,NME1,DFFA,DFFB,CREBBP,ANP32A,GZMB,APEX1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html HRAS,HNF1A,GRB2,STAT5A,STAT5B,SRF,SLC2A4,INS,SOS1,PIK3CA,SHC1,INSR,PIK3R1,GHR,PRKCA,PIK3CG,PTPN6,MAP2K1,SOCS1,RAF1,IRS1,PRKCB,MAPK1,GH1,RPS6KA1,PLCG1,MAPK3,JAK2 +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html ALAD,FECH,HMBS,UROS,HBA2,HBA1,GATA1,ALAS1,ALAS2,CPOX,AHSP,UROD,HBB +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html CD3G,CD3D,CCR5,CD3E,CD247,FASLG,CD4,FAS,TRA@,TRB@,CD28 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html FASLG,NFKB1,DAXX,CRADD,ACTG1,CASP6,BAG4,MAP3K5,CASP3,CASP9,PAK2,GSN,CASP7,CASP8,FAS,MAP2K7,CASP2,CHUK,DFFA,DFFB,RELA,CYCS,FADD,RB1,PRKCD,PSEN1,CDK11A,RIPK1,PSEN2,MDM2,CDK11B,MAPK8,MAP3K14,BID,TRAF1,TRAF2,TNF,XIAP,LMNB1,LMNB2,PRKDC,NFKBIA,TNFRSF1A,PTK2,NUMA1,TNFRSF1B,MAP3K1,BCL2,RASA1,ARHGDIB,CFLAR,LMNA,BIRC3,BIRC2,TRADD,APAF1,PARP1,SPTAN1 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html ACTA1,WASF1,ARPC4,ARPC5,ARPC1A,ACTR3,ACTR2,ARPC1B,CDC42,ARPC3,ARPC2,RAC1,WASL +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html ADCY1,HRAS,GNAI1,PAQR7,ARPC4,ARPC5,MYT1,SRC,PIN1,PAQR5,PGR,PRKACG,ACTR3,PRKAR2B,ACTR2,PRKAR2A,ARPC3,ARPC2,CAP1,PRKACB,CDK1,ACTA1,CDC25C,CCNB1,ARPC1A,MAPK1,ARPC1B,GNGT1,RPS6KA1,GNB1,PRKAR1B,MAPK3,PRKAR1A,GNAS +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html PIK3CG,MAP2K1,MAP2K2,MAP2K3,RELA,CREB1,NFKB1,RB1,AKT1,MAPK1,SP1,MAPK14,MAP3K1,MAPK3,PIK3CA,PIK3R1,MAP2K6 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html CSNK1A1,TAF1,HSP90AA1,NFKBIB,TP53,FHL2,ABCB1,HSPA1A,ATM,HIC1,RPA1,AKT1,CDKN1A,EP300,HIF1A,CSNK1D,BAX,DNAJB1P1,MDM2,MAPK8,NQO1,IGFBP3,GADD45A +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html P4HB,LDHA,HSP90AA1,COPS5,VHL,CREB1,EDN1,ARNT,EP300,HIF1A,JUN,VEGFA,NOS3,ASPH,EPO +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html PIK3CG,HRAS,MAP2K1,GRB2,RAF1,ELK1,IGF1,IRS1,SRF,PTPN11,FOS,IGF1R,CSNK2A1,SOS1,JUN,MAPK3,PIK3CA,MAPK8,SHC1,PIK3R1,RASA1 +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html CSF3,IL3,IL6,CD3G,IL8,CD3D,CD8A,CD3E,CD247,KITLG,TRA@,TRB@,IL17A,CD34,CD58,CD2,CD4 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html HRAS,IL2RB,IL2RA,MAP2K1,GRB2,STAT5A,STAT5B,RAF1,ELK1,FOS,CSNK2A1,SOS1,JUN,LCK,MAPK3,JAK1,MAPK8,SHC1,IL2RG,JAK3,IL2,SYK +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html PTPN6,IL3,HRAS,MAP2K1,GRB2,STAT5A,STAT5B,RAF1,FOS,SOS1,MAPK3,CSF2RB,SHC1,JAK2,IL3RA +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html AKT1,STAT6,IL4,GRB2,IL4R,JAK1,IL2RG,SHC1,RPS6KB1,JAK3,IRS1 +BIOCARTA IL5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL5_PATHWAY.html IL4,CCL11,IL6,IL5,HLA-DRB1,CCR3,IL1B,CD4,IL5RA,HLA-DRA +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html IL6,HRAS,CEBPB,MAP2K1,GRB2,IL6ST,RAF1,ELK1,IL6R,SRF,STAT3,PTPN11,TYK2,FOS,CSNK2A1,SOS1,JUN,MAPK3,JAK1,JAK2,SHC1,JAK3 +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html IL6,TNF,STAT5A,STAT5B,STAT1,IL10,STAT3,STAT2,BLVRA,STAT6,STAT4,IL10RB,IL10RA,HMOX1,BLVRB,JAK1,IL1A +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html IL18R1,CD3G,CD3D,CD3E,IL18,CD247,CXCR3,TRA@,TRB@,IL12RB2,TYK2,STAT4,IL12RB1,CCR5,JUN,MAPK14,IFNG,IL12A,JAK2,MAPK8,IL12B,ETV5,MAP2K6 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html E2F1,HRAS,NMI,GRB2,STAT5A,STAT5B,FASLG,RPS6KB1,BCL2L1,AKT1,FOS,SOS1,BCL2,PIK3CA,IL2RG,SHC1,FAS,MYC,PIK3R1,SYK,PIK3CG,CFLAR,PTPN6,IL2RB,IKZF3,IL2RA,SOCS3,SOCS1,CBL,RAF1,BAD,IRS1,MAPK1,CRKL,PPIA,MAPK3,JAK1,JAK3 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html IL22RA1,SOCS3,STAT5A,STAT5B,STAT1,IL22,STAT3,STAT2,STAT6,TYK2,STAT4,IL10RA,JAK1,JAK2,JAK3,IL22RA2 +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html PIK3CG,NMI,IL7,STAT5A,CREBBP,STAT5B,IL7R,EP300,FYN,PTK2B,BCL2,LCK,JAK1,PIK3CA,IL2RG,JAK3,PIK3R1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html TOLLIP,GNAI1,TIRAP,GJA1,NFKB1,TLR4,CTNNB1,AKT1,WNT1,PDPK1,MYD88,PPP2CA,PIK3CA,LBP,PIK3R1,APC,AXIN1,IRAK1,LY96,RELA,FZD1,LEF1,DVL1,CCND1,GSK3B,EIF2AK2,CD14 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html BID,TRAF2,XIAP,TNFRSF25,NFKBIA,NFKB1,TNFSF12,CASP6,CASP3,CASP9,CASP7,BCL2,CASP8,CHUK,CFLAR,DFFA,DFFB,RELA,CYCS,LMNA,GAS2,FADD,BIRC3,BIRC2,TRADD,TNFRSF10A,CASP10,TNFSF10,TNFRSF10B,RIPK1,APAF1,MAP3K14,SPTAN1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html E2F1,HRAS,NFKBIA,NFKB1,AKT1,CCNE1,RAC1,RHOA,PIK3CA,PAK1,CHUK,PIK3R1,TFDP1,RELA,RAF1,CDK6,RB1,CDK4,CDK2,MAPK1,CCND1,CDKN1A,CDKN1B,IKBKG,MAPK3,IKBKB +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html PIK3CG,HRAS,BCR,MAP2K1,GRB2,STAT5A,STAT5B,MAP2K4,RAF1,BAD,STAT1,AKT1,FOS,CRKL,SOS1,JUN,MAP3K1,MAPK3,PIK3CA,MAPK8,JAK2,MYC,PIK3R1 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html PIK3CG,HRAS,MAP2K1,GRB2,RAF1,ELK1,IRS1,SRF,PTPN11,FOS,CSNK2A1,SLC2A4,INS,SOS1,JUN,MAPK3,PIK3CA,MAPK8,SHC1,INSR,PIK3R1,RASA1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html TLN1,CAV1,HRAS,GRB2,PPP1R12B,BCAR1,ITGB1,PXN,SRC,VCL,PTK2,SOS1,RHOA,SHC1,ZYX,CSK,RAPGEF1,CAPNS2,BCR,CAPNS1,ACTA1,ROCK1,MAP2K1,MAP2K2,ITGA1,RAF1,ACTN1,ACTN2,ACTN3,CAPN1,MAPK1,CRKL,TNS1,FYN,JUN,MAPK3,RAP1A,MAPK8 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html F11,COL4A4,KNG1,F12,COL4A3,COL4A2,F10,COL4A1,F8,F9,SERPING1,COL4A6,COL4A5,PROC,FGG,F5,FGA,FGB,KLKB1,F2,SERPINC1,PROS1,F2R +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html TRAF2,HRAS,TNF,NFKBIA,FASLG,NFKB1,DAXX,FOS,TNFRSF1A,TNFRSF1B,MAP3K5,MAP3K1,PPP2CA,BCL2,HOXA7,FAS,EGF,MAP2K7,MAP2K6,CHUK,CEBPA,EGFR,PRKCA,MAP2K1,MAP2K3,RELA,MAP2K4,RAF1,PRKCH,PRKCG,PRKCE,PRKCD,PRKCB,MAPK1,PRKCQ,SP1,ETS1,MAPK13,ETS2,MAPK14,JUN,RIPK1,MAPK3,MAPK8,IKBKB,MAP3K14 +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html PTPRC,CD3G,CD3D,HLA-DRB1,CD3E,CD247,TRA@,TRB@,FYN,LCK,ZAP70,CD4,HLA-DRA +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html C8A,C7,MBL2,C9,MASP1,C4A,MASP2,C4B,C3,C6,C5,C2 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html HRAS,GRB2,BCAR1,SRC,PTK2B,SOS1,MAP3K1,RAC1,SHC1,PAK1,PRKCA,MAP2K1,MAP2K2,MAP2K3,MAP2K4,RAF1,CYCSP35,PRKCB,MAPK1,CRKL,GNAQ,PLCG1,MAPK14,JUN,MAPK3,CALM3,MAPK8,CALM2,CALM1 +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html EGFR,THRA,THRB,MAP2K1,RXRA,MAPK14,MAP3K1,RARA,ZBTB16,EGF,NCOR2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MEF2C,HRAS,MEF2A,TGFB3,RPS6KB2,NFKB1,RPS6KB1,DAXX,TGFB1,TGFB2,MAP3K7,FOS,MAX,MAP3K6,MAP3K5,MAP3K4,PAK2,MAP3K9,MAP3K8,SHC1,PAK1,RAPGEF2,MYC,MAP2K7,CHUK,MAP2K6,MAP2K5,BRAF,RELA,MAP4K3,MAPK1,MAP4K4,MAP4K5,MAPK6,MAPK4,RIPK1,JUN,MAPK3,MAP3K10,MAPK9,MAPK8,MAPK7,MAP3K14,MAP3K13,MAP3K12,MAP3K11,TRAF2,GRB2,MAPKAPK5,MKNK2,MAP4K2,MAPKAPK3,NFKBIA,MKNK1,ELK1,MAP4K1,MAPKAPK2,ATF2,MAP3K3,MAP3K2,MAP3K1,RAC1,CEBPA,MAP2K1,MAP2K2,TGFBR1,MAP2K3,CREB1,MAP2K4,RAF1,MAPK11,MAPK10,STAT1,TRADD,RPS6KA5,MEF2D,RPS6KA3,RPS6KA4,LOC729991-MEF2B,SP1,MAPK12,RPS6KA1,MAPK13,RPS6KA2,MAPK14,ARAF,IKBKB +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html HRAS,TLN1,MYL2,CXCR3,ITGB1,PXN,PRKACG,PRKAR2B,PTK2,PRKAR2A,EZR,PRKACB,EGF,EGFR,CAPNS2,CAPNS1,ACTA1,ITGA1,CAPN2,CAPN1,MAPK1,PRKAR1B,PRKAR1A,MAPK3,MYLK +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html ACOX1,PPARA,PTGS2,PDGFA,STAT5A,EHHADH,STAT5B,CITED2,PRKACG,PRKAR2B,PRKAR2A,APOA2,APOA1,PIK3CA,NOS2,PRKACB,MYC,NR2F1,PIK3CG,PRKCA,HSP90AA1,RXRA,RELA,NR0B2,RB1,PPARGC1A,PRKCB,NRIP1,MAPK1,NCOA1,CD36,EP300,JUN,MAPK3,MED1,ME1,TNF,FRA8B,NFKBIA,HSPA1A,MRPL11,INS,FAT1,HSD17B4,PIK3R1,NR1H3,CPT1B,LPL,CREBBP,SRA1,DUSP1,SP1,PRKAR1B,PRKAR1A,FABP1,NCOR1,NCOR2,DUT +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html E2F1,HRAS,E2F4,RBL2,CSF1,RBL1,HDAC5,FOS,SIN3B,HDAC2,SIN3A,ETS1,ETS2,JUN,DDX20,NCOR2,ETV3,CSF1R +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html ICAM1,ITGAL,SELP,CD44,SELL,PECAM1,ITGB2,ITGA4,SELE,ITGB1,ITGAM +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html PDK2,MKNK1,RPS6KB1,FKBP1A,RPS6,PTEN,EIF4B,EIF4G1,AKT1,EIF4G2,EIF4EBP1,PDPK1,EIF3A,EIF4G3,EIF4E,TSC1,EIF4A2,PPP2CA,EIF4A1,TSC2,PIK3CA,MTOR,PIK3R1 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html ADCY1,HRAS,MAP2K1,GRB2,RAF1,BAD,IRS1,PRKACG,AKT1,MAPK1,PRKAR2B,IGF1R,PRKAR2A,YWHAH,RPS6KA1,SOS1,PRKAR1B,MAPK3,PRKAR1A,PIK3CA,SHC1,PRKACB,PIK3R1 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html LDB1,CREBBP,FZD1,LEF1,TRRAP,DVL1,CTNNB1,WNT1,EP300,HDAC1,GSK3B,PITX2,APC,MED1,AXIN1 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html PIK3CG,HRAS,MAP2K1,GRB2,RAF1,ELK1,FOS,CSNK2A1,PLCG1,SOS1,JUN,MAPK3,PIK3CA,MAPK8,SHC1,NGFR,PIK3R1,NGF +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html VIP,NFKBIA,NFKB1,VIPR2,PRKACG,PRKAR2B,PRKAR2A,MAP3K1,PPP3CB,PPP3CC,PRKACB,PPP3CA,NFATC2,MYC,CHUK,NFATC1,EGR3,EGR2,RELA,CYCSP35,GNAQ,PLCG1,PRKAR1B,PRKAR1A,CALM3,CALM2,CALM1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html MEF2C,HRAS,EDN1,RPS6KB1,AKT1,PRKACG,PRKAR2B,PRKAR2A,GATA4,PIK3CA,PRKACB,FGF2,PIK3CG,CAMK1G,ACTA1,MYH2,CYCSP35,MAPK1,CAMK4,MAPK3,F2,CAMK1,MAPK8,NPPA,CTF1,FKBP1A,CALR,LIF,HAND1,HAND2,AGT,PPP3CB,PPP3CC,NFATC4,PPP3CA,NFATC2,NKX2-5,NFATC3,PIK3R1,NFATC1,CSNK1A1,MAP2K1,CREBBP,RAF1,IGF1,ELSPBP1,MAPK14,GSK3B,PRKAR1B,PRKAR1A,HBEGF,CALM3,CALM2,CALM1 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html TNF,IL8,TGFBR1,MAP2K3,RELA,TGFBR2,CREBBP,TLR2,SMAD4,NFKBIA,SMAD3,NFKB1,MAPK11,NR3C1,MAP3K7,EP300,MYD88,DUSP1,MAPK14,IL1B,MAP3K14,IKBKB,CHUK,MAP2K6 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html IRAK1,IL1R1,TNF,RELA,NFKBIA,NFKB1,TLR4,FADD,TAB1,TRADD,MAP3K7,TNFRSF1A,TNFRSF1B,MYD88,RIPK1,MAP3K1,IKBKG,MAP3K14,TNFAIP3,IKBKB,TRAF6,CHUK,IL1A +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PRKCA,NOS1,GRIN1,GRIN2A,CYCSP35,PRKCB,PRKACG,PRKAR2B,PRKAR2A,GRIN2B,GRIN2C,PRKAR1B,GRIN2D,PRKAR1A,PPP3CB,DLG4,CALM3,PPP3CC,PPP3CA,PRKACB,CALM2,CALM1 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html CD3G,CD3D,CD3E,CD247,CXCR3,IL12RB2,TYK2,STAT4,IL12RB1,CCR5,IFNG,IL12A,CD2,CD4,JAK2,IL12B,NOS2 +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html KAT2B,RXRA,TBP,GTF2B,POLR2A,GTF2E1,HDAC3,NCOA1,NCOA2,NCOA3,GTF2A1,GTF2F1,RARA,ERCC3,NCOR2 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html PPARA,PPARD,IDDM11,ABCB11,PPARG,ABCB1,CYP2E1,NR0B2,CYP1A2,ABCB4,NR1I3,ABCC3,RARA,NR1H4,NR1H3 +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html PRKCA,MAFG,FXYD2,MAFF,CREB1,KEAP1,MAFK,PRKCB,FOS,MAPK1,JUN,MAPK14,MAPK8 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html HMGN1,MEF2C,TRAF2,MEF2A,HRAS,GRB2,MAPKAPK5,TGFB3,ELK1,MKNK1,MAPKAPK2,DAXX,TGFB1,TGFB2,ATF2,MAP3K7,CDC42,MAX,MAP3K5,MAP3K9,MAP3K1,RAC1,SHC1,RAPGEF2,MYC,MAP2K6,CREB1,TGFBR1,MAP2K4,STAT1,DDIT3,TRADD,RPS6KA5,MEF2D,PLA2G4A,LOC729991-MEF2B,MAPK14,RIPK1,HSPB2,HSPB1 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html E2F1,TP53,RB1,CDK4,TIMP3,CDK2,ATM,CCNE1,CCND1,CDKN1A,BCL2,BAX,PCNA,MDM2,APAF1,GADD45A +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html HRAS,PDGFA,GRB2,STAT5A,STAT5B,ELK1,SRF,STAT6,FOS,STAT4,CSNK2A1,SOS1,MAP3K1,PIK3CA,SHC1,PIK3R1,RASA1,PIK3CG,PRKCA,MAP2K1,MAP2K4,RAF1,STAT1,STAT3,PRKCB,STAT2,PLCG1,JUN,MAPK3,PDGFRA,JAK1,MAPK8 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html PRKCA,CCL2,CYCSP35,CXCL12,CCL4,PRKCB,FOS,GNAQ,CCR5,PLCG1,PTK2B,CXCR4,JUN,MAPK14,CALM3,MAPK8,CALM2,CALM1 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html PRKCZ,ARHGEF2,LYN,PFKL,PFKP,EEA1,RPS6KB1,BAD,PFKM,JAG1,PRKCE,VAV2,BTK,AKT1,PDPK1,ARF1,PLCG1,AP2A1,GSK3A,GSK3B,RAC1,RAB5A,AP2M1 +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html RAP2B,PRKACG,PRKAR2B,PTGER1,ADRB2,ADCY1,PRKAR2A,PLCE1,PRKAR1B,PRKAR1A,GNAS,PRKACB +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html ADCY1,PDGFA,GNAI1,ITGB3,SRC,ASAH1,SPHKAP,AKT1,PTK2,S1PR1,ITGAV,RAC1,RHOA,PIK3CA,PLCB1,PIK3R1,PRKCA,PIK3CG,SPHK1,PRKCB,MAPK1,GNGT1,GNB1,MAPK3,PDGFRA,SMPD1,SMPD2 +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html EGR1,MAPK1,CDK5R1,HRAS,MAP2K1,MAP2K2,MAPK3,RAF1,NGFR,CDK5,NGF +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html GNA13,MYL7,MYL2,PPP1R12B,GNA12,ARHGAP5,PLCB1,ARHGEF4,PRKCA,ARHGEF3,ARHGEF2,ARHGEF1,ROCK1,ARHGEF7,ARHGEF18,ARHGEF6,ARHGEF19,ARHGEF5,ARHGEF16,ARHGEF17,PKN1,ARHGEF9,ARHGEF15,ARHGEF12,ARHGEF10,ARHGEF11,PRKCB,GNGT1,GNAQ,GNB1,MYLK +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html COL4A4,PLAT,F11,COL4A3,COL4A2,COL4A1,F9,PLG,COL4A6,COL4A5,APP,F2,SERPINE1,PLAU +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html HNF1A,BTRC,FZD1,DLL1,DVL1,CTNNB1,WNT1,NOTCH1,PSEN1,GSK3B,ADAM17,RBPJ,AXIN1,APC +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html UBE2A,UBE3A,PSMA7,PSMA2,PSMB5,PSMA1,PSMB4,PSMB7,PSMB6,PSMB1,PSMA6,PSMA5,UBA1,PSMA4,PSMB3,PSMA3,PSMB2,RPN1,RPN2 +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html CDK1,PCNT,PRKAG1,PKN1,AKAP9,NUP85,PRKCE,PRKACG,PRKAR2B,PRKAR2A,PPP1CA,PPP2CA,MAP2,RHOA,PRKACB +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html PDK2,GRB2,BCAR1,FASLG,FOXO3,PTEN,ITGB1,AKT1,MAPK1,PTK2,PDPK1,CDKN1B,SOS1,MAPK3,ILK,PIK3CA,SHC1,PIK3R1 +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB2A,RAB3A,RAB7A,RAB8A,RAB9A,ACTA1,RAB4A,RAB5A,RAB11A,RAB6A,RAB1A,RAB27A +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html PIK3CG,PLD1,CDK5R1,MYL2,NCF2,LIMK1,RALBP1,PPP1R12B,WASF1,ARFIP2,TRIO,RPS6KB1,CDK5,VAV1,MAP3K1,RAC1,CFL1,PDGFRA,CHN1,PIK3CA,PAK1,PIK3R1,MYLK +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html PIK3CG,PLD1,HRAS,MAP2K1,RALBP1,RELA,RAF1,ELK1,NFKB1,BAD,BCL2L1,FOXO4,RALGDS,AKT1,CDC42,CASP9,RAC1,MAPK3,RHOA,PIK3CA,RALA,PIK3R1,CHUK +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html KLRC4,PTPN6,KLRC2,KLRC3,MAP2K1,IL18,HLA-A,VAV1,ITGB1,B2M,LAT,PTK2B,RAC1,MAPK3,PIK3CA,PAK1,KLRD1,PIK3R1,KLRC1,SYK +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html CDK1,TP53,CHEK1,RB1,MYT1,CDK4,CDC25C,CDK2,WEE1,ATM,CDC25B,YWHAH,MAPK14 +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAG3,YWHAZ,PPP2R3B,PPP2R3A,PPP2R5B,PPP2R5A,PPP2R5D,PRKAG1,PPP2R5C,PRKAG2,PRKACG,PRKAR2B,PRKAR2A,PPP2CA,PPP2CB,FASN,PRKAA1,PRKACA,PRKAA2,PRKACB,PPP2R2B,PPP2R2C,PPP2R2D,PPP2R1B,PPP2R1A,PRKAB2,ACACA,PRKAB1,MLXIPL,YWHAB,YWHAA,YWHAE,YWHAD,YWHAG,YWHAH,GCK,PRKAR1B,MLX,PKLR,PRKAR1A,YWHAQ,PPP2R5E,PPP2R4,PPP2R2A +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html ADCY1,KITLG,KIT,BCL2L1,PRKACG,AKT1,IGF1R,PRKAR2B,PRKAR2A,BCL2,CSF2RB,PIK3CA,PRKACB,PIK3R1,PIK3CG,IL3,IGF1,BAD,MAPK1,YWHAH,RPS6KA1,BAX,PRKAR1B,PRKAR1A,MAPK3,IL3RA +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html DRD1,CDK5R1,DRD2,GRM1,CDK5,PRKACG,PRKAR2B,PRKAR2A,PPP1CA,CSNK1D,PPP1R1B,PRKAR1B,PPP2CA,PRKAR1A,PRKACB,PPP3CA,PLCB1 +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html PPP1CA,EIF2AK1,EIF2S1,GSK3B,EIF2S2,EIF5,EIF2S3,EIF2AK2,EIF2AK3,EIF2AK4,EIF2B5 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html PRKCA,PDK2,MKNK1,RPS6KB1,IRS1,PTEN,PRKCB,EIF4G1,AKT1,MAPK1,EIF4G2,EIF4EBP1,PDPK1,EIF4G3,EIF4E,EIF4A2,MAPK14,MAPK3,EIF4A1,PIK3CA,PABPC1,MTOR,PIK3R1,GHR +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html CSF3,IL4,CSF2,IL3,IL6,IL5,CD8A,IL8,IL7,CSF1,IL9,IL11,CD4,IL2,EPO +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html E2F1,CKS1B,SKP2,NEDD8,RB1,SKP1,CDK2,RBX1,CCNE1,CDKN1B,UBE2M,CUL1,TFDP1 +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html MEF2C,PPARA,MEF2A,ESRRA,CAMK1G,CAMK2G,CYCSP35,PPARGC1A,HDAC5,MEF2D,YWHAH,LOC729991-MEF2B,CAMK4,SLC2A4,PPP3CB,CAMK2D,CAMK1,CALM3,PPP3CC,CAMK2B,PPP3CA,CAMK2A,CALM2,CALM1 +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html HRAS,SP100,TNF,CREBBP,PML,TP53,FASLG,PAX3,RB1,SIRT1,DAXX,TNFRSF1A,SUMO1,TNFRSF1B,PRAM1,RARA,FAS +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html CREB1,CREM,OPRK1,KCNIP3,POLR2A,PRKACG,PRKAR2B,FOS,PRKAR2A,JUN,PRKAR1B,PRKAR1A,MAPK3,PRKACB +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html PRKAG3,LEP,PRKAG1,LEPR,PRKAG2,PRKAB2,ACACA,PRKAB1,PRKAA1,PRKAA2,CPT1A +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html TLN1,MYL2,DIAPH1,PPP1R12B,PIP5K1B,ARPC4,PIP5K1A,ARPC5,SRC,VCL,ARHGAP4,ACTR3,PFN1,ACTR2,ARHGAP6,ARHGAP5,ARPC3,ARPC2,GSN,ARHGAP1,RHOA,ARHGEF1,ROCK1,LIMK1,BAIAP2,ARHGEF5,ARHGEF11,ARPC1A,ARPC1B,CFL1,OPHN1,MYLK +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html PRKACG,GNA13,PRKAR2B,PRKAR2A,PRKAG1,GNA12,RHOA,LPAR3,AKAP13,LPAR2,LPAR1,PRKACB +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html NBN,MRE11A,HUS1,TP53,TREX1,BRCA2,RAD9A,CHEK1,ATR,CHEK2,RAD50,ATM,BRCA1,RAD51,RAD1,FANCD2,FANCE,FANCF,FANCG,RAD17,FANCC +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html EGFR,PRKCA,HRAS,RELA,EDN1,NFKB1,PRKCB,EDNRA,FOS,AGTR1,EDNRB,PLCG1,JUN,AGT,RHOA,ADAM12,EGF,MYC +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html PIK3CG,EGFR,IL6,HRAS,ERBB4,MAP2K1,GRB2,GRIP1,ERBB3,IL6ST,ESR1,RAF1,IL6R,STAT3,MAPK1,EP300,SOS1,MAPK3,PIK3CA,SHC1,CARM1,PIK3R1 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html PIK3CG,MEF2C,HRAS,MEF2A,GRB2,CREB1,AKT1,MAPK1,MEF2D,LOC729991-MEF2B,RPS6KA1,PLCG1,NTRK1,MAPK3,PIK3CA,SHC1,MAPK7,PIK3R1 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html HRAS,HNF1A,ROCK1,ACTA1,MAP2K1,DIAPH1,MAP2K2,LIMK1,MAP4K2,RAF1,MAL,SRF,MAPK1,CDC42,MAP3K1,RAC1,MAPK3,RHOA,MAPK8 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html PRKCA,CAPNS2,CAPNS1,CYCSP35,CAPN2,TRA@,TRB@,PRKCB,MEF2D,HDAC2,EP300,HDAC1,CABIN1,PPP3CB,CALM3,PPP3CC,PPP3CA,NFATC2,CALM2,NFATC1,CALM1 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html BID,XIAP,AIFM1,DFFA,DFFB,CYCS,BCL2L1,BIRC3,BIRC2,BAK1,CASP6,CASP3,CASP9,ENDOG,CASP7,BCL2,BAX,CASP8,DIABLO,BIK,APAF1 +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html PIK3CG,FASLG,FOXO3,BAD,SRC,AKT1,PTK2,MUSK,YWHAH,PTK2B,RAPSN,PIK3CA,CHRNB1,PIK3R1,TERT,CHRNG +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html SEPT5,SUMO1,SNCAIP,GPR37,UBE2G1,UBE2G2,SNCA,UBE2F,UBE2L6,PARK2,UBE2L3,UBE2E2 +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html ARPC4,ARPC5,ARPC1A,ACTR3,CDC42,ACTR2,ARPC1B,ARPC3,ARPC2,RAC1,PDGFRA,RHOA,PIK3CA,WASL,PAK1,PIK3R1 +BIOCARTA RANMS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANMS_PATHWAY.html NUMA1,RAN,KIF15,TPX2,AURKA,RANBP1,RANGAP1,RCC1,KPNA2,KPNB1 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html MAPK1,GNGT1,ADCY1,MAP2K1,MAP2K2,GNB1,ARRB1,MAPK3,RAF1,GNAS,PLCB1,DNM1 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html IL4,IL2RA,CD3G,CD3D,CD3E,TGFBR1,TGFBR2,CD247,TGFB3,SMAD4,SMAD3,TRA@,TGFB1,TRB@,TGFB2,IFNG,TGFBR3,TOB2,IL2,TOB1,CD28 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html HRAS,ADCY1,MAP2K1,MAP2K2,HCK,RAF1,SRC,MAPK1,GNGT1,ARRB1,GNB1,MAPK3,GNAS,PLCB1,DNM1 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CSF2,CCL3,CCR1,TGFB3,CXCR3,CCL4,TGFB1,TGFB2,IL12RB2,IL12RB1,CXCR4,IL4R,IFNG,CD4,IFNGR2,IFNGR1,CD28,IL4,IL18R1,IL5,CCR7,CCR5,CD40LG,CCR4,CCR3,IL12A,IL12B,IL2 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IL1R1,TNF,TOLLIP,TGFB3,NFKBIA,NFKB1,TGFB1,TGFB2,MAP3K7,IRAK3,IFNA1,MYD88,MAP3K1,IL1RAP,IL1B,TRAF6,MAP2K6,IL1A,CHUK,IRAK2,IRAK1,IL6,RELA,MAP2K3,IL1RN,TAB1,ECSIT,IFNB1,MAPK14,JUN,MAPK8,IKBKB,MAP3K14 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html HRAS,GRB2,ELK1,MAP4K1,ITGB1,PTEN,SRC,PXN,FOS,PTK2,DOCK1,PTK2B,SOS1,GAB1,PIK3CA,PAK1,RAPGEF1,PIK3R1,RASA1,PIK3CG,ACTA1,MAP2K1,MAP2K2,MET,ITGA1,RAF1,HGF,STAT3,PTPN11,MAPK1,CRKL,JUN,MAPK3,RAP1A,MAPK8,RAP1B,CRK +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html HRAS,ADCY1,GNAI1,ELK1,PRKACG,FOS,PRKAR2B,PRKAR2A,PPP3CB,PPP3CC,NFATC4,PRKACB,PPP3CA,NFATC2,NFATC3,NFATC1,PRKCA,MAP2K1,CREB1,RAF1,CYCSP35,PRKCB,GNGT1,RPS6KA3,PLCG1,GNAQ,GNB1,PRKAR1B,JUN,MAPK3,PRKAR1A,CALM3,GNAS,CALM2,CALM1 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html PDK2,INPPL1,EIF2S3,IGF1,RPS6KB1,RPS6,PTEN,AKT1,IGF1R,EIF4EBP1,PDPK1,EIF4E,GSK3B,EIF2S1,PPP2CA,EIF2S2,PIK3CA,MTOR,PIK3R1,EIF2B5 +BIOCARTA SODD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SODD_PATHWAY.html TNFRSF1A,TRAF2,BAG4,TNFRSF1B,TNF,RIPK1,CASP8,FADD,BIRC3,TRADD +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html GLI2,GLI3,SHH,SUFU,GLI1,PRKACG,PRKAR2B,SMO,PRKAR2A,DYRK1B,PRKAR1B,GSK3B,DYRK1A,PRKAR1A,PTCH1,PRKACB +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html CCNB1,CDK1,XPO1,MNAT1,CCNH,PTCH1,CDK7,CDC25C,CDC25A,SHH,CDC25B +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html PTPRB,EGFR,HRAS,MAP2K1,GRB2,CBL,RAF1,SRC,SPRY4,SPRY3,MAPK1,SPRY2,SPRY1,SOS1,MAPK3,SHC1,EGF,RASA1 +BIOCARTA BARRESTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_PATHWAY.html GNGT1,PPARA,ADCY1,AP2A1,GNB1,ARRB1,GNAS,PLCB1,DNM1,AP2M1 +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CDK1,CD3G,CD3D,CD3E,CAMK2G,CD247,CCNB1,PRKACG,PRKAR2B,PRKAR2A,CAMK4,MAPK13,PRKAR1B,PRKAR1A,CAMK2D,CD2,CAMK2B,PRKACB,CAMK2A +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html TNF,ACTA1,CYCS,MAPKAPK3,FASLG,MAPKAPK2,DAXX,CASP3,CASP9,BCL2,HSPB2,HSPB1,FAS,APAF1,IL1A +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html HRAS,GRB2,CD247,ELK1,NFKBIA,NFKB1,TRB@,FOS,MAP3K1,SOS1,RAC1,PPP3CB,ZAP70,PIK3CA,PPP3CC,NFATC4,SHC1,PPP3CA,NFATC2,NFATC3,PIK3R1,RASA1,NFATC1,PIK3CG,PTPN7,PRKCA,CD3G,CD3D,MAP2K1,CD3E,RELA,MAP2K4,RAF1,CYCSP35,TRA@,VAV1,PRKCB,LAT,PLCG1,FYN,JUN,LCK,MAPK3,CALM3,MAPK8,CALM2,CALM1 +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html PTPRC,ITGAL,ICAM1,CD3G,CD3D,CD8A,CD3E,CD247,ITGB2,TRA@,TRB@,THY1,CD2,CD28 +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html PTPRC,ITGAL,ICAM1,CD3G,CD3D,CD3E,CD247,ITGB2,TRA@,TRB@,THY1,CD2,CD4,CD28 +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html TRAF2,RELA,TNFRSF13B,TNFRSF13C,TNFRSF17,NFKB1,TNFSF13,TNFSF13B,MAPK14,MAPK8,MAP3K14,TRAF6,TRAF5,CHUK,TRAF3 +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html XRCC5,EGFR,PRKCA,HSP90AA1,XRCC6,TP53,RB1,POLR2A,AKT1,IGF1R,KRAS,PPP2CA,BCL2,TEP1,TNKS,MYC,TERT,TERF1 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html MAP2K1,SMAD7,TGFBR1,CREBBP,TGFBR2,TGFB3,SMAD4,SMAD3,SMAD2,CDH1,TAB1,TGFB1,TGFB2,MAP3K7,EP300,ZFYVE9,MAPK3,SKIL,APC +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IL4,IL18R1,IL2RA,HLA-DRB1,IL18,CD40,IL12RB2,CD86,IL12RB1,CD40LG,IL4R,IFNG,IL12A,IL12B,IFNGR2,IFNGR1,IL2,HLA-DRA,CD28 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html IL4,TRAF2,RELA,NFKBIA,NFKB1,ATF2,TNFRSF9,MAP3K5,MAP4K5,JUN,MAPK14,MAP3K1,IFNG,MAPK8,IKBKB,CHUK,IL2 +BIOCARTA KREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KREB_PATHWAY.html SDHA,ACO2,CS,IDH2,SUCLA2,OGDH,MDH1,FH +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html ITK,CD3G,HLA-DRB1,CD3D,CD3E,GRB2,CD247,CTLA4,TRA@,TRB@,PTPN11,CD86,CD80,ICOS,LCK,PIK3CA,PIK3R1,ICOSLG,IL2,HLA-DRA,CD28 +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html PIK3CG,HRAS,IGF1,FOXO3,SOD1,SOD3,SOD2,AKT1,IGF1R,GH1,PIK3CA,SHC1,CAT,PIK3R1,GHR +BIOCARTA SARS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SARS_PATHWAY.html LDHC,LDHB,LDHA,EIF4E,CKM,MAPK14,ANPEP,GPT,NCL,FBL +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html GNA13,F2RL3,ADCY1,GNAI1,PPP1R12B,GNA12,MAP3K7,PTK2B,RHOA,PIK3CA,PLCB1,PIK3R1,PIK3CG,ARHGEF4,PRKCA,ARHGEF3,ARHGEF2,ARHGEF1,ROCK1,ARHGEF7,ARHGEF6,ARHGEF18,ARHGEF19,ARHGEF5,ARHGEF16,ARHGEF17,ARHGEF9,ARHGEF15,ARHGEF12,ARHGEF10,ARHGEF11,PRKCB,GNGT1,GNAQ,GNB1,F2,F2R +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html TRAF2,TNF,MAP4K2,NFKBIA,NFKB1,CRADD,ATF1,TNFRSF1A,MAP3K1,CASP2,CHUK,LTA,MAP2K6,RELA,MAP2K3,MAP2K4,TANK,TRADD,MAPK14,JUN,RIPK1,IKBKG,MAPK8,MAP3K14,IKBKB +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html TRAF2,TNF,LMNB1,LMNB2,PRKDC,CRADD,MAP3K7,BAG4,TNFRSF1A,CASP3,PAK2,MAP3K1,CASP8,PAK1,CASP2,ARHGDIB,MADD,DFFA,DFFB,MAP2K4,LMNA,FADD,RB1,TRADD,JUN,RIPK1,MAPK8,PARP1,SPTAN1 +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html TRAF1,IKBKAP,TRAF2,RELA,NFKBIA,NFKB1,TANK,TNFRSF1B,DUSP1,MAP3K1,RIPK1,IKBKG,MAP3K14,TNFAIP3,IKBKB,LTA,CHUK,TRAF3 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html PPARA,TOLLIP,TLR2,TIRAP,PGLYRP1,NFKBIA,TLR3,ELK1,NFKB1,TLR4,TLR6,TLR7,TLR9,MAP3K7,FOS,MYD88,MAP3K1,TRAF6,MAP2K6,CHUK,IRAK1,TLR10,LY96,RELA,MAP2K3,MAP2K4,TAB1,ECSIT,TAB2,MAPK14,JUN,IKBKG,MAPK8,IKBKB,EIF2AK2,MAP3K14,CD14 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html PIK3CG,PRKCA,HRAS,MAP2K1,GRB2,STAT5A,STAT5B,RAF1,STAT1,STAT3,PRKCB,FOS,CSNK2A1,PLCG1,SOS1,JUN,MAPK3,PIK3CA,SHC1,JAK2,MPL,PIK3R1,RASA1,THPO +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html ADCY1,HRAS,GRB2,CAMK2G,PRKACG,AKT1,PRKAR2B,PRKAR2A,SOS1,RAC1,CAMK2D,PIK3CA,CAMK2B,PRKACB,CAMK2A,PIK3R1,PRKCA,CREB1,PRKCB,RPS6KA5,MAPK1,RPS6KA1,MAPK14,PRKAR1B,PRKAR1A,MAPK3,GNAS +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html CREB1,RXRA,CREBBP,PRKACG,PRKAR2B,PRKAR2A,EP300,NCOA3,PRKAR1B,PRKAR1A,RARA,PRKACB,CARM1 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html PIK3CG,EGFR,HRAS,GRB2,CYCS,BAD,ITGB1,CTNNB1,AKT1,MAPK1,GH1,PTK2,CASP9,SOS1,MAPK3,RHOA,PIK3CA,SHC1,APAF1,PIK3R1,GHR +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html AKT1,PRKCA,HRAS,PLCG1,GRB2,SOS1,NTRK1,PIK3CA,SHC1,PIK3R1,NGF,PRKCB +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html PIK3CG,E2F1,POLR1D,TBX2,TP53,POLR1A,POLR1C,RB1,POLR1B,CDKN2A,RAC1,MDM2,PIK3CA,ABL1,MYC,PIK3R1,TWIST1 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html TLN1,CAPNS2,CAPNS1,ACTA1,ITGA1,ACTN1,ACTN2,ACTN3,ITGB3,ITGB1,PXN,SRC,CAPN1,PTK2,EZR,RAC1,RHOA,SPTAN1 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html HRAS,PXN,ARNT,PTK2,EIF1AX,PIK3CA,EIF1,SHC1,NOS3,EIF2B2,EIF2B3,PIK3R1,EIF2B4,EIF2B5,PIK3CG,PRKCA,FLT1,VHL,FLT4,ELAVL1,EIF2S3,EIF2B1,PRKCB,KDR,HIF1A,PLCG1,EIF2S1,EIF2S2,VEGFA +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html COL4A4,P4HB,COL4A3,SLC23A1,COL4A2,COL4A1,SLC23A2,SLC2A3,SLC2A1,COL4A6,COL4A5 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html PPARD,BTRC,CTNNB1,MAP3K7,WNT1,CSNK2A1,PPP2CA,FRAT1,MYC,APC,AXIN1,CSNK1A1,CTBP1,NLK,CREBBP,FZD1,SMAD4,LEF1,TLE1,TAB1,DVL1,CCND1,CSNK1D,HDAC1,GSK3B,WIF1 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html WASF3,ACTA1,WASF1,WASF2,ABI2,ARPC4,ARPC5,PSMA7,NCKAP1,ARPC1A,ACTR3,ACTR2,ARPC1B,ARPC3,ARPC2,NCK1,NTRK1,PIR,RAC1,WASL +PWCOMMONS mRNA Processing NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,PABPC1,CSTF2,CSTF1,CSTF3,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,PCF11,CLP1,CPSF7,NUDT21,ETF1,GSPT2,EIF5B,EEF2,ADAR,ADARB1,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,RNGTT,RNMT,METTL3,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,SNRNP70,SNRPA, +PWCOMMONS mRNA Editing NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,PABPC1,CSTF2,CSTF1,CSTF3,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,PCF11,CLP1,CPSF7,NUDT21,ETF1,GSPT2,EIF5B,EEF2,ADAR,ADARB1, +PWCOMMONS mRNA Editing: C to U Conversion NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,PABPC1,CSTF2,CSTF1,CSTF3,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,PCF11,CLP1,CPSF7,NUDT21,ETF1,GSPT2,EIF5B,EEF2, +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF4H,PABPC1,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL31,RPL35A,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL32,RPL3L,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL19,RPL23,RPL41,RPL7,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL36A,RPL38,RPL9,RPLP0,UBA52,RPL37A,RPL12, +PWCOMMONS Translation initiation complex formation EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,PABPC1,RPL13A,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL31,RPL35A,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL32,RPL3L,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL19,RPL23,RPL41,RPL7,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL36A,RPL38,RPL9,RPLP0,UBA52,RPL37A,RPL12, +PWCOMMONS Formation of the Editosome NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,PABPC1,CSTF2,CSTF1,CSTF3,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,PCF11,CLP1,CPSF7,NUDT21,ETF1,GSPT2,EIF5B,EEF2, +PWCOMMONS mRNA Editing: A to I Conversion ADARB1, +PWCOMMONS Formation of editosomes by ADAR proteins ADARB1, +PWCOMMONS C6 deamination of adenosine ADARB1, +PWCOMMONS mRNA Capping NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NCBP2,NCBP1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,RNGTT,RNMT,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,METTL3,PABPC1,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,ETF1,GSPT2,SNRNP70,SNRPA,EIF5B,EEF2, +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2, +PWCOMMONS mRNA Splicing NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,PABPC1,CSTF2,CSTF1,CSTF3,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,PCF11,CLP1,CPSF7,NUDT21,ETF1,GSPT2,EIF5B,EEF2,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,SNRNP70,SNRPA, +PWCOMMONS mRNA Splicing - Major Pathway EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,PABPC1,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,PRPF4,PHF5A,SNRPB2,SF3B5,SNRPA1,SF3B14,SF3B2,SF3B3,SF3B1,SF3B4,SF3A3,SF3A1,SF3A2,ETF1,GSPT2,SNRNP70,SNRPA,EIF5B,EEF2, +PWCOMMONS mRNA 3'-end processing EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,PAPOLA,PABPN1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,CSTF2,CSTF1,CSTF3,EEF2, +PWCOMMONS mRNA Splicing - Minor Pathway PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4, +PWCOMMONS Formation of the Early Elongation Complex TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,DLD,HADH,ALAD,CS,GCDH,ECHS1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,FH,INS,SYT5, +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase SDHC,SDHD,SDHB,SDHA,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UROD,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,SUCLG1,SUCLA2,CYCS,CPOX,UROS,DLST,OGDH,DLD,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,FH,INS,SYT5,SUCLG2,KCNJ11, +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis GART,NT5C2,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXN,XDH,PAICS,CPS1,UPP1,ASS1,CMPK1,ADSL,ATIC,OAT,NP,GYS2,CAT,UMPS,UGDH,RRM2,RRM1,AMPD1,PRPS1,PPAT,ARG1,KCNJ11,AMPD3,GBE1,TXNRD1,DPYD,DPYS,AK1,PYCR1,VAMP2,NT5C1A,CTPS,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,NME2,OTC,AMPD2,INS,SYT5,SLC35D1,PFAS,GSR,ASL,UPB1, +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ TXN,GLRX,GMPS,HPRT1,TXNRD1,XDH,GUK1,IMPDH2,NP,NME2,NME1,CAT,RRM2,RRM1,GDA,GSR,IMPDH1, +PWCOMMONS De novo synthesis of IMP NT5C2,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXN,XDH,PAICS,ADSL,ATIC,NP,CAT,RRM2,RRM1,AMPD1,PPAT,KCNJ11,AMPD3,TXNRD1,AK1,VAMP2,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,NME2,AMPD2,INS,SYT5,PFAS,GSR, +PWCOMMONS Extension of Telomeres POLD4,POLD3,POLD2,POLD1,LIG1,DNA2,RPA1,RPA3,RPA2,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,POLE2,POLE,FEN1,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP,TERT,DKC1,RUVBL2,NHP2,RUVBL1,WDR79, +PWCOMMONS Telomere Extension By Telomerase DKC1,RUVBL2,LIG1,DNA2,PCNA,POLD4,POLD3,POLD2,POLD1,RPA1,RPA3,RPA2,RFC2,RFC1,RFC3,RFC5,RFC4,PRIM2,POLA1,PRIM1,POLA2,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP,FEN1,NHP2,RUVBL1,WDR79,POLE2,POLE, +PWCOMMONS Telomere C-strand synthesis initiation PCNA,POLD4,POLD3,POLD2,POLD1,DNA2,RPA1,RPA3,RPA2,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP,POLE2,POLE,FEN1, +PWCOMMONS Removal of the Flap Intermediate from the C-strand PCNA,POLD4,POLD3,POLD2,POLD1,RPA1,RPA3,RPA2,FEN1, +PWCOMMONS Polymerase switching on the C-strand of the telomere DNA2,PCNA,POLD4,POLD3,POLD2,POLD1,RPA1,RPA3,RPA2,RFC2,RFC1,RFC3,RFC5,RFC4,PRIM2,POLA1,PRIM1,POLA2,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP,FEN1, +PWCOMMONS Processive synthesis on the C-strand of the telomere DNA2,PCNA,POLD4,POLD3,POLD2,POLD1,RPA1,RPA3,RPA2,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP,FEN1, +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis POLD4,POLD3,POLD2,POLD1,LIG1,DNA2,RPA1,RPA3,RPA2,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,POLE2,POLE,FEN1,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP, +PWCOMMONS Packaging Of Telomere Ends HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP, +PWCOMMONS Recycling of eIF2:GDP EIF2B1,EIF2B3,EIF2B4,EIF2B2,EIF2S3,EIF2S2,EIF2S1,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27, +PWCOMMONS Steroid metabolism ACOT8,ABCB11,CYP39A1,CYP8B1,BAAT,HSD3B7,AKR1C4,HSD17B4,AMACR,SLC27A5,AKR1D1,CYP27A1,SLC27A2,CYP7A1,ACOX2,CH25H,CYP7B1,SLCO1B1,SLCO1B3,ALB,FABP6,ABCC3,SLC10A1,SLCO1A2,SLC10A2,GGPS1,EBP,SQLE,CYP11B1,LBR,MVK,CYP11B2,FDFT1,STAR,CYP21A2,CYP51A1,NSDHL,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,PMVK,SC5DL,SC4MOL,MVD,LSS,CYP17A1,HMGCS1,HSD11B1, +PWCOMMONS Metabolism of bile acids and bile salts ACOT8,ABCB11,CYP39A1,CYP8B1,BAAT,HSD3B7,AKR1C4,HSD17B4,AMACR,SLC27A5,AKR1D1,CYP27A1,SLC27A2,CYP7A1,ACOX2,CH25H,CYP7B1,SLCO1B1,SLCO1B3,ALB,FABP6,ABCC3,SLC10A1,SLCO1A2,SLC10A2, +PWCOMMONS Recycling of bile acids and salts BAAT,ABCB11,SLCO1B3,ALB,FABP6,ABCC3,SLC10A1,SLCO1A2,SLC10A2,SLC27A5, +PWCOMMONS Synthesis of bile acids and bile salts ACOT8,ABCB11,CYP39A1,CYP8B1,BAAT,HSD3B7,AKR1C4,HSD17B4,AMACR,SLC27A5,AKR1D1,CYP27A1,SLC27A2,CYP7A1,ACOX2,CH25H,CYP7B1, +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol ABCB11,CYP8B1,CYP7A1,BAAT,HSD3B7,AKR1C4,HSD17B4,AMACR,SLC27A5,AKR1D1,CYP27A1,SLC27A2,ACOX2, +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol ABCB11,CYP8B1,BAAT,HSD3B7,AKR1C4,HSD17B4,AMACR,CYP7B1,SLC27A5,AKR1D1,CYP27A1,SLC27A2,ACOX2, +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol ACOT8,ABCB11,CYP39A1,CYP8B1,BAAT,HSD3B7,AKR1C4,HSD17B4,AMACR,SLC27A5,AKR1D1,CYP27A1,SLC27A2, +PWCOMMONS Steroid hormone biosynthesis HSD11B1,CYP17A1,HSD17B3,CYP21A2,CYP11B1,CYP11A1,CYP11B2,STAR, +PWCOMMONS Glucocorticoid biosynthesis CYP19A1,CYP17A1,HSD17B3,CYP21A2,CYP11B1, +PWCOMMONS Mineralocorticoid biosynthesis CYP17A1,HSD17B3,CYP21A2,CYP11B1,CYP11B2, +PWCOMMONS Pregnenolone biosynthesis CYP19A1,HSD17B3,CYP11B1,CYP11B2,STAR,CYP17A1,CYP21A2, +PWCOMMONS Androgen biosynthesis CYP17A1,HSD17B3,CYP21A2,CYP11B1, +PWCOMMONS Estrogen biosynthesis +PWCOMMONS Cholesterol biosynthesis EBP,SQLE,CYP11B1,LBR,MVK,CYP11B2,FDFT1,STAR,CYP21A2,CYP51A1,NSDHL,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,PMVK,SC5DL,SC4MOL,MVD,LSS,CYP17A1,HMGCS1, +PWCOMMONS Transformation of lanosterol to cholesterol SC4MOL,DHCR24,EBP,DHCR7,TM7SF2,CYP51A1,LBR,NSDHL, +PWCOMMONS RNA Polymerase II Transcription Pre-Initiation NCBP1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,RNGTT,RNMT,EIF5,EEF1G,EEF1D,EEF1B2,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EEF1A1,PABPC1,SNRNP70,SNRPA,APOBEC1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,METTL3,ETF1,GSPT2,EIF5B,EEF2, +PWCOMMONS RNA Polymerase II Transcription Initiation NCBP1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,RNGTT,RNMT,EIF5,EEF1G,EEF1D,EEF1B2,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EEF1A1,PABPC1,SNRNP70,SNRPA,APOBEC1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,METTL3,ETF1,GSPT2,EIF5B,EEF2, +PWCOMMONS RNA Polymerase II Promoter Escape NCBP1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,RNGTT,RNMT,EIF5,EEF1G,EEF1D,EEF1B2,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EEF1A1,PABPC1,SNRNP70,SNRPA,APOBEC1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,METTL3,ETF1,GSPT2,EIF5B,EEF2, +PWCOMMONS Amplification of signal from the kinetochores ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,MAD2L1,CDC20,NEK2,CDC2,CCNB1,MAD1L1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,MAD2L1,CDC20,NEK2,CDC2,CCNB1,MAD1L1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,MAD2L1,CDC20,NEK2,CDC2,CCNB1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components CDC20,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,NEK2,CDC2,CCNB1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Inhibition of HSL AKT2, +PWCOMMONS PI3K Cascade FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1,PDPK1, +PWCOMMONS PKB-mediated events FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1, +PWCOMMONS mTOR signalling FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1, +PWCOMMONS mTORC1-mediated signalling RPS6KB1,RPS6,EIF4G1,EEF2K,FRAP1,LST8,RHEB,EIF4EBP1,EIF4E,AKT2,PDE3B,TSC1, +PWCOMMONS S6K1-mediated signalling RPS6KB1,RPS6,EIF4G1,EEF2K,FRAP1,LST8,RHEB, +PWCOMMONS S6K1 signalling RPS6,EEF2K,EIF4G1,RPS6KB1, +PWCOMMONS Release of eIF4E EIF4E,RHEB,FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4G1,EEF2K,AKT2,PDE3B,TSC1, +PWCOMMONS Inhibition of TSC complex formation by PKB PDE3B,TSC1, +PWCOMMONS PDE3B signalling AKT2, +PWCOMMONS Activation of PKB PDE3B,PDPK1,TSC1, +PWCOMMONS vRNP Assembly IPO5, +PWCOMMONS Transport of Notch receptor precursor to golgi NOTCH3,NOTCH2,NOTCH1,ADAM10,PSENEN,HES1,FURIN, +PWCOMMONS Maturation of Notch precursor via proteolytic cleavage NOTCH3,NOTCH2,NOTCH1,ADAM10,PSENEN,HES1,FURIN, +PWCOMMONS Mature Notch receptor trafficks to plasma membrane NOTCH4,NOTCH1,NOTCH2,ADAM10,PSENEN,HES1, +PWCOMMONS Notch receptor binds with a ligand NOTCH3,NOTCH1,NOTCH2,HES1,ADAM10,PSENEN, +PWCOMMONS Receptor-ligand binding initiates the second proteolytic cleavage of Notch receptor NOTCH3,NOTCH1,NOTCH2,HES1,ADAM10,PSENEN, +PWCOMMONS A third proteolytic cleavage releases NICD NOTCH3,NOTCH1,HES1,NOTCH2,PSENEN, +PWCOMMONS NICD trafficks to nucleus NOTCH4,NOTCH1,HES1,NOTCH2, +PWCOMMONS Gab1 signalosome PIK3R1,GAB1,EGFR,EGF,PTPN11,PAG1,CSK,PXN, +PWCOMMONS Thrombin signalling through PARs F2RL3,F2RL2,F2,GNAQ,ARHGEF1,GNA13,PRKCA,MARCKS, +PWCOMMONS Thrombin signalling G-protein cascades ARHGEF1,GNA13,PRKCA,MARCKS, +PWCOMMONS Proteinase-activated receptor G (q) cascade GNAQ,MARCKS, +PWCOMMONS G alpha (q) signalling events GNAQ,MARCKS, +PWCOMMONS Proteinase-activated receptor G (12/13) cascade ARHGEF1,GNA13, +PWCOMMONS G alpha (12/13) signalling events GNA13, +PWCOMMONS Thrombin-mediated activation of PARs F2RL3,F2RL2,F2, +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS ERK2 activation MAPK1,MAP2K2,ATF1,CREB1, +PWCOMMONS P450 Dehalogenation +PWCOMMONS E2F transcriptional targets at G1/S PLK1,CDK2,TFDP1,E2F1,CDC6,CUL1,BTRC,SKP1,PRIM2,POLA1,PRIM1,POLA2,PCNA,ORC6L,ORC3L,ORC4L,ORC5L,ORC1L,ORC2L,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,DHFR,CDT1,FBXO5,CDC25A,CDC2,CKS1B,RPA1,RPA2,RPA3,RPA4,CDC45L,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC7,DBF4,POLE2,POLE,TYMS,CCNH,CDK7,MNAT1,CCNB1,WEE1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,RFC2,RFC1,RFC3,RFC5,RFC4,RRM2,POLD4,POLD3,POLD2,POLD1,TK2,CCNA1,CCNE1, +PWCOMMONS Phosphorylation of proteins involved in G1/S transition by active Cyclin E:Cdk2 complexes CDK2, +PWCOMMONS Phosphorylation of Emi1 ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,PLK1,FBXO5,CUL1,BTRC,SKP1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC2,CCNB1, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,TXNRD1,AK1,VAMP2,NME2,NME1,RRM2,RRM1,INS,SYT5,GSR,KCNJ11, +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected pyrimidine APEX1,TDG,SMUG1,NTHL1, +PWCOMMONS Glutamate Binding, Activation of AMPA Receptors and Synaptic Plasticity NSF,AKAP5,EPB41L1,DLG1,DLG4,MDM2, +PWCOMMONS Trafficking of AMPA receptors NSF,AKAP5,EPB41L1,DLG1,DLG4,MDM2, +PWCOMMONS Trafficking of GluR2-containing AMPA receptors NSF, +PWCOMMONS Ca-dependent events CAV1,NOS3,CALM1,HSP90AA1,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,AKT1, +PWCOMMONS CaM pathway NOS3,CALM1,HSP90AA1,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,AKT1, +PWCOMMONS Calmodulin induced events LIPE,PFKFB1,FABP4,CALM1,MLXIPL,CREB1,ADRBK1,CAMK4, +PWCOMMONS CaMK IV-mediated phosphorylation of CREB CALM1,CREB1, +PWCOMMONS PKA-mediated phosphorylation of CREB LIPE,PFKFB1,FABP4,CALM1,MLXIPL,CREB1, +PWCOMMONS PKA activation LIPE,PFKFB1,MLXIPL,CREB1,FABP4,CALM1, +PWCOMMONS phospho-PLA2 pathway +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate XDH,HPRT1,GDA,NP,TXN,GLRX,GMPS,TXNRD1,GUK1,IMPDH2,NME2,NME1,RRM2,RRM1,GSR,IMPDH1,CAT,NT5E,NT5C,NT5M,NT5C1A,NT5C1B, +PWCOMMONS Hydrolysis of extracellular nucleoside 5'-monophosphates by plasma membrane-bound 5'-nucleotidase +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic IA +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic IB +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II XDH,HPRT1,GDA,NP,TXN,GLRX,GMPS,TXNRD1,GUK1,IMPDH2,NME2,NME1,RRM2,RRM1,GSR,IMPDH1,CAT, +PWCOMMONS Hydrolysis of mitochondrial nucleoside 5'- and 3'-monophosphates by 5',3'-nucleotidase, mitochondrial +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'- and 3'-monophosphates by 5',3'-nucleotidase, cytosolic +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,HADHB,HADHA,INS,SYT5,KCNJ11,ACADM,ACADL,ACADVL, +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,HADHB,HADHA,INS,SYT5,KCNJ11,ACADM, +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,ETFA,ETFB,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,ECHS1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,HADHB,HADHA,HADH,VAMP2,INS,SYT5,KCNJ11,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9, +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,ETFA,ETFB,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,ECHS1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,HADH,VAMP2,INS,SYT5,KCNJ11,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9, +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HADHB,HADHA,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,ACADL,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,INS,SYT5,KCNJ11,ACADM, +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,ACADL,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,HADHB,HADHA,INS,SYT5,KCNJ11,ACADM, +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,HADHB,HADHA,INS,SYT5,KCNJ11,ACADM, +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HADHB,HADHA,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,ACADL,ACADVL,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,INS,SYT5,KCNJ11,ACADM, +PWCOMMONS Apoptotic cleavage of cell adhesion proteins TJP2,DSG3,CDH1,CASP3,PKP1,DSP,DSG2,DSG1, +PWCOMMONS Nicotinate metabolism AFMID,ACMSD,NMNAT2,NAMPT,NAPRT1,KYNU,HAAO,TDO2,NMNAT3,INDO,QPRT,KMO,NADK,NMNAT1, +PWCOMMONS Nicotinamide salvaging NMNAT3,NADSYN1,NMNAT2,NADK,NMNAT1,NAPRT1, +PWCOMMONS Catecholamines biosynthesis SLC18A2,VAMP2,RAB3A,SYT1,RIMS1,CPLX1,DBH,MAOA,SLC22A2,DDC, +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange PCNA,POLD4,POLD3,POLD2,POLD1,RAD51,RPA1,RPA3,RPA2,RAD52,BRCA2, +PWCOMMONS Assembly of the RAD51-ssDNA nucleoprotein complex RAD52,RPA1,RPA3,RPA2, +PWCOMMONS Resolution of D-loop structures PCNA,POLD4,POLD3,POLD2,POLD1, +PWCOMMONS Resolution of D-loop structures through Holliday junction intermediates PCNA,POLD4,POLD3,POLD2,POLD1, +PWCOMMONS Synaptic stable pairing/D-loop structure formation between recombining DNA molecules PCNA,POLD4,POLD3,POLD2,POLD1, +PWCOMMONS Homologous DNA pairing and strand exchange PCNA,POLD4,POLD3,POLD2,POLD1,RAD51,RPA1,RPA3,RPA2,RAD52,BRCA2, +PWCOMMONS Peptide hormones LHB,FSHB,TSHB,CGB,PCSK1,POMC, +PWCOMMONS Glycoprotein hormones LHB,FSHB,TSHB,CGB, +PWCOMMONS Serotonin clearance from the synaptic cleft ALDH2, +PWCOMMONS Metabolism of serotonin ALDH2, +PWCOMMONS Protein folding CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4,TBCE,TBCB,TBCC,TBCD,ACTB,TBCA,VBP1,PFDN1,PFDN5,PFDN2,PFDN4,PFDN6, +PWCOMMONS Chaperonin-mediated protein folding CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4,TBCE,TBCB,TBCC,TBCD,ACTB,TBCA,VBP1,PFDN1,PFDN5,PFDN2,PFDN4,PFDN6, +PWCOMMONS Association of TriC/CCT with target proteins during biosynthesis CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4, +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding TBCB,TBCC,TBCD,CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4,ACTB,TBCA,VBP1,PFDN1,PFDN5,PFDN2,PFDN4,PFDN6, +PWCOMMONS Folding of actin by CCT/TriC CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4, +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC TBCB,TBCC,TBCD,CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4,ACTB,TBCA,VBP1,PFDN1,PFDN5,PFDN2,PFDN4,PFDN6, +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC TBCB,TBCD,TBCC,CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4,TBCA, +PWCOMMONS Post-chaperonin tubulin folding pathway TBCB,TBCD,TBCC,TBCA, +PWCOMMONS FGFR2c ligand binding and activation CBL, +PWCOMMONS FMO reactions +PWCOMMONS N-oxidation of nitrogen compounds +PWCOMMONS Botulinum neurotoxicity +PWCOMMONS Proteolytic cleavage of SNARE complex proteins +PWCOMMONS BoNT Light Chain Types B, D, and F cleave VAMP/Synaptobrevin +PWCOMMONS Translocation of BoNT Light chain +PWCOMMONS Valine catabolism ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UROD,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,DLD,BCAT1,DBT,BCKDHA,BCKDHB,MCEE,ALAD,CS,HIBCH,PPOX,ACO2,IDH3G,IDH3A,IDH3B,ALDH6A1,SUCLG1,SUCLG2,BCAT2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,HIBADH,PCCB,PCCA,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,MUT,FH,INS,SYT5, +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase DBT,BCKDHA,BCKDHB,DLD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UROD,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,MCEE,ALAD,CS,HIBCH,PPOX,ACO2,IDH3G,IDH3A,IDH3B,ALDH6A1,SUCLG1,SUCLG2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,HIBADH,PCCB,PCCA,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,MUT,FH,INS,SYT5, +PWCOMMONS PLC beta mediated events CAV1,HSP90AA1,NOS3,VAMP2,INS,SYT5,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4, +PWCOMMONS Autointegration results in viral DNA circles +PWCOMMONS 2-LTR circle formation XRCC5,BANF1,LIG4,XRCC4, +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,CDC20,WEE1,CDK2,CUL1,BTRC,SKP1,XPO1,FBXO5,CDC25C,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CHEK1, +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex CDT1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L, +PWCOMMONS Alcohol Dehydrogenase ADH1C,ADH1A,ACSS2,ADH7,ADH1B,ADH6,ALDH1A1,ALDH2, +PWCOMMONS Ethanol is oxidized by NAD+ to form acetaldehyde, NADH, and H+ ADH1C,ADH1A,ACSS2,ADH7,ADH1B,ADH6,ALDH1A1,ALDH2, +PWCOMMONS Cleavage of the damaged pyrimidine CCNO,APEX1,TDG,NTHL1, +PWCOMMONS Transcription-coupled NER (TC-NER) PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,ERCC5,TCEA1,ERCC8,XAB2,ERCC6,ERCC4,ERCC1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2, +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER PCNA,POLD4,POLD3,POLD2,POLD1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2, +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2, +PWCOMMONS Dual incision reaction in TC-NER PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,ERCC5,TCEA1,ERCC8,XAB2,ERCC6,ERCC4,ERCC1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2, +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex PCNA,POLD4,POLD3,POLD2,POLD1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,ERCC5,TCEA1,ERCC8,XAB2,ERCC6,ERCC4,ERCC1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RFC2,RFC1,RFC3,RFC5,RFC4,POLE2,POLE,RPA1,RPA3,RPA2, +PWCOMMONS Nuclear Events (kinase and transcription factor activation) MAPKAPK2,ATF1,CREB1,MAPK7, +PWCOMMONS ERK/MAPK targets MAPK7,ATF1,CREB1, +PWCOMMONS CREB phosphorylation MAPKAPK2,ATF1,CREB1, +PWCOMMONS Minus-strand DNA synthesis PPIA,BANF1,LIG4,XRCC4,XRCC6,XRCC5,FEN1, +PWCOMMONS Eicosanoid ligand-binding receptors FPR2,OXER1,MGLL,PFKFB1,MLXIPL,TBXA2R,PTGIR,CREB1,LIPE,GNAS,PTGER3,GPR44,FABP4,PTGDR,PTGFR,PTGER1, +PWCOMMONS Leukotriene receptors +PWCOMMONS Prostanoid ligand receptors PFKFB1,MLXIPL,TBXA2R,PTGIR,CREB1,LIPE,GNAS,PTGER3,GPR44,FABP4,PTGDR,PTGFR,PTGER1, +PWCOMMONS Terminal pathway of complement C6,C7,C5,C8A,C8B,C8G, +PWCOMMONS Serotonin Neurotransmitter Release Cycle CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,DDC,AANAT,SLC22A2, +PWCOMMONS Synthesis of Serotonin AANAT, +PWCOMMONS Leukotriene synthesis GGT5,DPEP2,ALOX5,LTC4S,LTA4H, +PWCOMMONS Neurotransmitter Clearance In The Synaptic Cleft ALDH2,SLC22A2,COMT,SLC6A3,BCHE, +PWCOMMONS Dopamine clearance from the synaptic cleft MAOA,SLC6A3, +PWCOMMONS Enzymatic degradation of dopamine by COMT MAOA, +PWCOMMONS Enzymatic degradation of Dopamine by monoamine oxidase MAOA, +PWCOMMONS Activation of Chaperones by IRE1alpha NFYA,HSPA5, +PWCOMMONS RAF phosphorylates MEK RAF1,YWHAB,MAP2K1,MAPK3,MAPK1, +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS NF-kB is activated and signals survival RELA,TRAF6,SQSTM1,NGFR,IKBKB,NFKBIA, +PWCOMMONS RNA Polymerase I Promoter Clearance UBTF,TAF1C,TAF1B,TAF1A,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,MAPK3,PCAF, +PWCOMMONS RNA Polymerase I Promoter Opening TAF1C,TAF1B,TAF1A,RRN3,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,MAPK3, +PWCOMMONS RNA Polymerase I Transcription Initiation TAF1B,TAF1A,UBTF,POLR1C,POLR1D,POLR1A,POLR2K,POLR2H,POLR1B,RRN3,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,PCAF, +PWCOMMONS RNA Polymerase I Promoter Escape UBTF,TAF1C,TAF1B,TAF1A,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS Formation of Acetoacetic Acid HMGCL,ACAT1,BDH1, +PWCOMMONS Regulation of gene expression in endocrine-committed (NEUROG3+) progenitor cells NEUROD1,NKX2-2,NEUROG3, +PWCOMMONS Regulation of gene expression in beta cells ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,SLC30A7,GOT2,GYG2,UPP1,SPCS3,SEC11C,SEC11A,SPCS1,SPCS2,PC,CPE,ADSL,INS,PCK1,MDH1,OAT,GYS2,ECHS1,TXN,MAFA,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,SRP19,SRP9,SRP54,SRP14,SRP72,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,HNF4G,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,SRPRB,SRPR,ATIC,PFKFB1,SYT5,GART,SLC35D1,ASL,NKX6-1,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDX1,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,FOXA3,G6PC,ERO1L,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,PFKFB2,PFKFB4,PFKFB3,PCSK2,GOT1,SLC2A2,PGK1,PCSK1,GCDH,NP,NKX2-2,FOXA2,EXOC4,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,KIF5B,OTC,FH,PFAS,GPI,UROD,EXOC6,EXOC5,EXOC8,EXOC2,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,IAPP,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,TRAM2,SEC61B,SSR3,TRAM1,SSR2,SSR4,SEC61G,RPN2,RPN1,DDOST,DAD1,STT3B,STT3A,PGD,PPAP2A, +PWCOMMONS Glycolysis ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,PFKFB2,PFKFB4,PFKFB3,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS Fructose 6-phosphate and ATP react to form fructose 2,6-bisphosphate and ADP PFKFB2,PFKFB4,PFKFB3, +PWCOMMONS Transcriptional activation of lipogenesis genes by ChREBP:MLX PPAP2C,ACLY,ACACB,DGAT1,AGPAT1,PPAP2A,PPAP2B, +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,DPYS,AK1,MDH2,PKM2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,PCK1,MDH1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,DPYS,AK1,MDH2,PKM2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,SLC35D1,PFAS,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PGM1,PCK2,GBE1,SUCLA2,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,DPYS,AK1,MDH2,PKM2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS AKT-mediated inactivation of FOXO1A +PWCOMMONS Mitochondrial tRNA aminoacylation IARS2,QARS,VARS2,WARS2,HARS2,YARS2,SARS2,GARS,PARS2,EARS2,RARS2,NARS2,FARS2,TARS2,DARS2,MARS2,KARS,CARS2,LARS2, +PWCOMMONS Translation RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF2S3,EIF2S2,EIF2S1,EIF5,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF5B,EEF2,EIF4EBP1,PABPC1, +PWCOMMONS Eukaryotic Translation Elongation RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EEF2, +PWCOMMONS Peptide chain elongation RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2, +PWCOMMONS Eukaryotic Translation Termination GSPT2,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12, +PWCOMMONS Eukaryotic Translation Initiation RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF2S3,EIF2S2,EIF2S1,EIF5,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF5B,EEF2,EIF4EBP1,PABPC1, +PWCOMMONS Cap-dependent Translation Initiation RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF2S3,EIF2S2,EIF2S1,EIF5,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF5B,EEF2,EIF4EBP1,PABPC1, +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF2S2,EIF2S1,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27, +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,EIF4EBP1,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,EIF5,EIF5B,EEF2, +PWCOMMONS Ribosomal scanning and start codon recognition RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF2S3,EIF2S2,EIF2S1,EIF5,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EIF5B,EEF2, +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,EIF2S3,EIF2S2,EIF2S1,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF5B,EIF5,EIF4E,EIF4H,EIF4B,EIF4G1,EIF4A2,EEF2, +PWCOMMONS Formation of a pool of free 40S subunits RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF2S3,EIF2S2,EIF2S1,EIF5,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EIF5B,EEF2,EIF4EBP1,PABPC1, +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter GTF3C2,GTF3C3,GTF3C4,GTF3C5,GTF3C1,POLR3B,POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,BRF1,BDP1,TBP, +PWCOMMONS Platelet activation triggers COL1A2,GP6,FCER1G,SYK,PLCG2,F2R,F2RL3,F2RL2,F2,GNAQ,ARHGEF1,GNA13,PRKCA,MARCKS, +PWCOMMONS Collagen-mediated activation cascade COL1A2,GP6,FCER1G,SYK,PLCG2, +PWCOMMONS Histamine receptors PFKFB1,MLXIPL,HRH1,CREB1,LIPE,GNAS,HRH2,FABP4, +PWCOMMONS AKT phosphorylates targets in the cytosol PDPK1,CASP9,AKT1S1,MDM2,BAD, +PWCOMMONS Gene Expression NCBP1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,RNGTT,RNMT,EIF5,EEF1G,EEF1D,EEF1B2,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EEF1A1,PABPC1,SNRNP70,SNRPA,APOBEC1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,METTL3,ETF1,GSPT2,EIF5B,EEF2,NARS,SCYE1,EEF1E1,LARS,MARS,RARS,IARS,JTV1,EPRS,QARS,KARS,DARS,FARSA,FARSB,HARS,GARS,CARS,VARS,YARS,WARS,AARS,SARS,TARS,AARS2,IARS2,VARS2,WARS2,HARS2,YARS2,SARS2,PARS2,EARS2,RARS2,NARS2,FARS2,TARS2,DARS2,MARS2,CARS2,LARS2,SLBP,MED30,CCNC,MED13,MED12,MED20,MED4,MED10,MED7,CDK8,MED24,MED6,MED31,MED17,MED1,MED14,MED25,EIF4EBP1, +PWCOMMONS Formation and Maturation of mRNA Transcript NCBP1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,RNGTT,RNMT,EIF5,EEF1G,EEF1D,EEF1B2,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EEF1A1,PABPC1,SNRNP70,SNRPA,APOBEC1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,METTL3,ETF1,GSPT2,EIF5B,EEF2, +PWCOMMONS Elongation and Processing of Capped Transcripts EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,METTL3,PABPC1,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,ETF1,GSPT2,SNRNP70,SNRPA,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,EIF5B,EEF2, +PWCOMMONS Elongation of Intron-Containing Transcripts and co-transcriptional mRNA splicing EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,METTL3,PABPC1,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,ETF1,GSPT2,SNRNP70,SNRPA,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,EIF5B,EEF2, +PWCOMMONS RNA Polymerase II Transcription Elongation TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2, +PWCOMMONS Formation of RNA Pol II elongation complex POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,CCNT2,CDK9,CCNT1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS Post-Elongation Processing of the Transcript EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,PAPOLA,PABPN1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,CSTF2,CSTF1,CSTF3,EEF2, +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,PAPOLA,PABPN1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,CSTF2,CSTF1,CSTF3,EEF2, +PWCOMMONS RNA Polymerase II Transcription Initiation And Promoter Clearance NCBP1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,RNGTT,RNMT,EIF5,EEF1G,EEF1D,EEF1B2,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EEF1A1,PABPC1,SNRNP70,SNRPA,APOBEC1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,METTL3,ETF1,GSPT2,EIF5B,EEF2, +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF5,NXF1,THOC4,EIF5B,NCBP2,NCBP1,EEF2,CPSF2,CPSF1,CPSF3,SLBP,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,RBM8A,MAGOH, +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF5,NXF1,THOC4,EIF5B,NCBP2,NCBP1,EEF2,CPSF2,CPSF1,CPSF3,SLBP, +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF5,NXF1,THOC4,EIF5B,NCBP2,NCBP1,EEF2, +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,NXF1,THOC4,SLBP,EIF5,EIF5B,EEF2,NCBP2,NCBP1, +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,THOC4,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,EIF5,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF5B,EEF2, +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,EIF5B,EEF2, +PWCOMMONS tRNA Aminoacylation SCYE1,EEF1E1,LARS,MARS,RARS,IARS,JTV1,EPRS,QARS,KARS,DARS,FARSA,FARSB,HARS,GARS,CARS,VARS,YARS,WARS,AARS,SARS,TARS,AARS2,IARS2,VARS2,WARS2,HARS2,YARS2,SARS2,PARS2,EARS2,RARS2,NARS2,FARS2,TARS2,DARS2,MARS2,CARS2,LARS2, +PWCOMMONS Cytosolic tRNA aminoacylation SCYE1,EEF1E1,LARS,MARS,RARS,IARS,JTV1,EPRS,QARS,KARS,DARS,FARSA,FARSB,HARS,GARS,CARS,VARS,YARS,WARS,AARS,SARS,TARS, +PWCOMMONS Generic Transcription Pathway CCNC,MED13,MED12,MED20,MED4,MED10,MED7,CDK8,MED24,MED6,MED31,MED17,MED1,MED14,MED25, +PWCOMMONS Apoptotic execution phase DFFB,CASP3,KPNB1,KPNA1,OCLN,TJP2,DSG3,CDH1,PKP1,DSP,DSG2,DSG1,FNTA,CASP8,GSN,SPTAN1,ADD1,MAPT,PLEC1,VIM,GAS2,DBNL,CASP6,ACIN1,MST4,PTK2,CASP7,BIRC2,STK24,PRKCQ,ROCK1,CLSPN,LMNB1,BCAP31,BMX,PRKCD,PAK2,ARHGAP10,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A, +PWCOMMONS Apoptosis induced DNA fragmentation DFFB,CASP3,KPNB1,KPNA1, +PWCOMMONS Activation of DNA fragmentation factor DFFB,CASP3,KPNB1,KPNA1, +PWCOMMONS Apoptotic cleavage of cellular proteins TJP2,DSG3,CDH1,PKP1,CASP3,DSP,DSG2,DSG1,FNTA,CASP8,GSN,SPTAN1,ADD1,MAPT,PLEC1,VIM,GAS2,DBNL,CASP6,ACIN1,MST4,PTK2,CASP7,BIRC2,STK24,PRKCQ,ROCK1,CLSPN,LMNB1,BCAP31,BMX,PRKCD, +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins SPTAN1,ADD1,CASP3,MAPT,PLEC1,VIM,GAS2,DBNL,CASP8,CASP6, +PWCOMMONS Breakdown of the nuclear lamina CASP6, +PWCOMMONS Stimulation of the cell death response by PAK-2p34 ARHGAP10,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,CASP3, +PWCOMMONS Cleavage of the damaged purine OGG1,MPG,MUTYH, +PWCOMMONS FasL/ CD95L signaling BID,MST4,CASP8,FADD,TNFRSF10B,TNFSF10,DSG3,GSN,DIABLO,XIAP,CASP3,FASLG,FAS,BAX,BAK1,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,CASP10,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX,BCL2,CDH1,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,BAD,PLEC1, +PWCOMMONS SMAC-mediated apoptotic response MST4,DSG3,DIABLO,XIAP,CASP3,SPTAN1,CASP9,CDH1,CASP7,GAS2,DSG1,FNTA,PTK2,ADD1,BIRC2,DBNL,DSG2,BMX,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,GSN,MAPT,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,CLSPN,LMNB1,BCAP31,PRKCD,PAK2,ARHGAP10,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A, +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes FNTA,CASP3,XIAP,DIABLO,MST4,DSG3,PTK2,SPTAN1,ADD1,BIRC2,CASP7,CDH1,GAS2,DBNL,DSG2,CASP9,DSG1,BMX, +PWCOMMONS SMAC binds to IAPs MST4,DSG3,DIABLO,XIAP,CASP3,SPTAN1,CASP9,CDH1,CASP7,GAS2,DSG1,FNTA,PTK2,ADD1,BIRC2,DBNL,DSG2,BMX, +PWCOMMONS Cytochrome c-mediated apoptotic response DSG3,GSN,SPTAN1,CDH1,CASP7,PAK2,ARHGAP10,CASP3,CLSPN,GAS2,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,VIM,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,DSG1,CYCS,APAF1,CASP9,FNTA,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,PTK2,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX, +PWCOMMONS Formation of apoptosome APAF1,CASP9, +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage DSG3,GSN,SPTAN1,CDH1,CASP7,PAK2,ARHGAP10,CASP3,CLSPN,GAS2,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,VIM,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,DSG1,CYCS,APAF1,CASP9,FNTA,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,PTK2,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX, +PWCOMMONS Release of apoptotic factors from the mitochondria DSG3,GSN,DIABLO,XIAP,CASP3,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,CLSPN,CDC25A,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,FNTA,PTK2, +PWCOMMONS Apoptotic factor-mediated response MST4,DSG3,DIABLO,XIAP,CASP3,SPTAN1,CASP9,CDH1,CASP7,GAS2,DSG1,FNTA,PTK2,ADD1,BIRC2,DBNL,DSG2,BMX,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,GSN,MAPT,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,CLSPN,LMNB1,BCAP31,PRKCD,PAK2,ARHGAP10,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,CYCS,APAF1, +PWCOMMONS Transport of connexins along the secretory pathway GJB2,GJB1, +PWCOMMONS Insulin Synthesis and Secretion INS,SRPRB,SRPR,EXOC4,EXOC6,EXOC5,EXOC8,EXOC2,NKX2-2,KIF5B,SLC30A7,PDX1,SRP19,SRP9,SRP54,SRP14,SRP72,ERO1L,VAMP2,SYT5,TRAM2,SEC61B,SSR3,TRAM1,SSR2,SSR4,SEC61G,RPN2,RPN1,DDOST,DAD1,STT3B,STT3A,MAFA,PCSK2,SPCS3,SEC11C,SEC11A,SPCS1,SPCS2,CPE, +PWCOMMONS G2/M Transition ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,PLK1,FBXO5,CDC20,CCNB2,CUL1,BTRC,SKP1,CDC25C,PKMYT1,WEE1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CCNA2,CCNA1,CDK2,CDC25B,XPO1,CCNH,CDK7,MNAT1,CEP250,CKAP5,ALMS1,ODF2,CEP152,SSNA1,CEP110,CLASP1,NEDD1,CEP135,DYNC1H1,AZI1,CEP57,TSGA14,PRKACA,CEP72,CEP76,MAPRE1,CEP164,TUBG1,PLK4,CSNK1E,AKAP9,PCM1,YWHAG,PRKAR2B,CEP290,YWHAE,NLP,OFD1,SDCCAG8,PCNT,FGFR1OP,DCTN3,CEP78,HSP90AA1,PPP2R1A,CEP110,CDK5RAP2,CEP70,CEP63,TUBB2C,CENPJ,CEP27,TUBB,ACTR1A,CEP192,NDE1,TUBA4A,CSNK1D,SFI1,DYNLL1,TUBB4,DCTN2,TUBA1A,NEK2,PAFAH1B1,CETN2,DYNC1I2,NUMA1,TUBGCP4,TUBGCP5,TUBGCP6,TUBG2,TUBGCP3,TUBGCP2, +PWCOMMONS Polo-like kinase mediated events ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,PLK1,FBXO5,CDC20,CCNB2,CUL1,BTRC,SKP1,CDC25C,PKMYT1,WEE1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CCNA2,CCNA1, +PWCOMMONS Phosphorylation of proteins involved in the G2/M transition by Cyclin A:Cdc2 complexes CCNA1,CCNA2, +PWCOMMONS Cyclin A/B1 associated events during G2/M transition WEE1,CDK2,CUL1,BTRC,SKP1,CCNB1,CDC20,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CCNA2,FZR1,CCNA1,PKMYT1,CCNB2,CDC25B,XPO1,FBXO5,CCNH,CDK7,MNAT1, +PWCOMMONS Centrosome maturation CKAP5,ALMS1,ODF2,CEP152,SSNA1,CEP110,CLASP1,NEDD1,CEP135,DYNC1H1,AZI1,CEP57,TSGA14,PRKACA,CEP72,CEP76,MAPRE1,CEP164,TUBG1,PLK4,CSNK1E,AKAP9,PCM1,YWHAG,PRKAR2B,CEP290,YWHAE,NLP,OFD1,SDCCAG8,PCNT,FGFR1OP,DCTN3,CEP78,HSP90AA1,PLK1,CDC2,PPP2R1A,CEP110,CDK5RAP2,CEP70,CEP63,TUBB2C,CENPJ,CEP27,TUBB,ACTR1A,CEP192,NDE1,TUBA4A,CSNK1D,SFI1,DYNLL1,TUBB4,DCTN2,TUBA1A,NEK2,PAFAH1B1,CETN2,DYNC1I2,FBXO5,NUMA1,TUBGCP4,TUBGCP5,TUBGCP6,TUBG2,TUBGCP3,TUBGCP2,FZR1,CCNB1, +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CKAP5,ALMS1,ODF2,CEP152,SSNA1,CEP110,CLASP1,NEDD1,CEP135,DYNC1H1,AZI1,CEP57,PRKACA,TSGA14,CEP72,CEP76,MAPRE1,CEP164,TUBG1,PLK4,AKAP9,CSNK1E,PCM1,YWHAG,PRKAR2B,YWHAE,NLP,CEP290,OFD1,SDCCAG8,PCNT,FGFR1OP,DCTN3,CEP250,CEP78,HSP90AA1,CDC2,PPP2R1A,CEP110,CDK5RAP2,CEP63,CEP70,TUBB2C,CENPJ,CEP27,TUBB,ACTR1A,CEP192,NDE1,TUBA4A,CSNK1D,SFI1,TUBB4,DYNLL1,DCTN2,NEK2,TUBA1A,PAFAH1B1,CETN2,DYNC1I2,NUMA1,TUBGCP4,TUBGCP5,TUBGCP6,TUBG2,TUBGCP3,TUBGCP2,FZR1,CCNB1, +PWCOMMONS Recruitment of NuMA to mitotic centrosomes TUBGCP4,TUBGCP5,TUBGCP6,NEDD1,TUBG1,TUBG2,TUBGCP3,TUBGCP2,FZR1,CDC2,CCNB1, +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CKAP5,ALMS1,ODF2,CEP152,SSNA1,CEP110,CLASP1,NEDD1,CEP135,DYNC1H1,AZI1,CEP57,TSGA14,PRKACA,CEP72,CEP76,MAPRE1,CEP164,TUBG1,PLK4,CSNK1E,AKAP9,PCM1,YWHAG,PRKAR2B,CEP290,YWHAE,NLP,OFD1,SDCCAG8,PCNT,FGFR1OP,DCTN3,CEP78,HSP90AA1,PLK1,CDC2,PPP2R1A,CEP110,CDK5RAP2,CEP70,CEP63,TUBB2C,CENPJ,CEP27,TUBB,ACTR1A,CEP192,NDE1,TUBA4A,CSNK1D,SFI1,DYNLL1,TUBB4,DCTN2,TUBA1A,NEK2,PAFAH1B1,CETN2,DYNC1I2,FBXO5, +PWCOMMONS Loss of Nlp from mitotic centrosomes CKAP5,ALMS1,ODF2,CEP152,SSNA1,CEP110,CLASP1,NEDD1,DYNC1H1,CEP135,AZI1,CEP57,TSGA14,PRKACA,CEP72,CEP76,MAPRE1,CEP164,TUBG1,PLK4,AKAP9,CSNK1E,PCM1,PRKAR2B,YWHAG,CEP290,YWHAE,OFD1,SDCCAG8,PCNT,FGFR1OP,DCTN3,CEP250,CEP78,HSP90AA1,PLK1,CDC2,PPP2R1A,CEP110,CDK5RAP2,CEP70,CEP63,TUBB2C,CENPJ,CEP27,TUBB,ACTR1A,CEP192,NDE1,TUBA4A,CSNK1D,SFI1,TUBB4,DYNLL1,DCTN2,NEK2,TUBA1A,PAFAH1B1,CETN2,DYNC1I2,FBXO5, +PWCOMMONS Cyclin B2 mediated events CCNB2,CCNB1, +PWCOMMONS M Phase ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,MAD2L1,CDC20,NEK2,CDC2,CCNB1,MAD1L1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,REC8,STAG2,SMC3,SMC1A,RAD21,STAG1,PLK1,FBXO5,CCDC99,CKAP5,CENPA,NUDC,ZWINT,CENPF,NDEL1,XPO1,KIF2A,SKA1,SGOL1,RANGAP1,ERCC6L,BUB1,KIF2C,SGOL2,TAOK1,RANBP2,CLASP1,AHCTF1,RCC2,KIF18A,NDE1,CLASP2,CLIP1,PPP1CC,MAPRE1,INCENP,PAFAH1B1,KIF2B,FAM33A,CENPE,B9D2,RPS27,CENPN,APITD1,CENPL,CENPC1,CENPT,CENPM,MLF1IP,CENPO,CENPP,CENPQ,CENPI,CENPH,CENPK,AURKB,CDCA8,BIRC5,NUP85,SEC13,NUP107,NUP133,NUP160,NUP37,NUP43,ZWILCH,ZW10,KNTC1,CASC5,MIS12,PMF1,DSN1,NSL1,NUF2,NDC80,SPC24,SPC25,KIF20A,KIF23,GORASP1, +PWCOMMONS Mitotic Telophase /Cytokinesis FBXO5,NUDC,KIF20A,KIF23, +PWCOMMONS Mitotic Prometaphase STAG2,SMC3,SMC1A,RAD21,STAG1,PLK1,FBXO5,CCDC99,CKAP5,CENPA,NUDC,ZWINT,CENPF,NDEL1,XPO1,KIF2A,SKA1,SGOL1,RANGAP1,ERCC6L,MAD1L1,BUB1,KIF2C,SGOL2,TAOK1,RANBP2,CLASP1,AHCTF1,RCC2,KIF18A,NDE1,CLASP2,CDC20,CLIP1,PPP1CC,MAPRE1,INCENP,PAFAH1B1,KIF2B,FAM33A,CENPE,B9D2,RPS27,BUB3,BUB1B,MAD2L1,CENPN,APITD1,CENPL,CENPC1,CENPT,CENPM,MLF1IP,CENPO,CENPP,CENPQ,CENPI,CENPH,CENPK,AURKB,CDCA8,BIRC5,NUP85,SEC13,NUP107,NUP133,NUP160,NUP37,NUP43,ZWILCH,ZW10,KNTC1,CASC5,MIS12,PMF1,DSN1,NSL1,NUF2,NDC80,SPC24,SPC25, +PWCOMMONS Mitotic Spindle Checkpoint ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,MAD2L1,CDC20,NEK2,CDC2,CCNB1,MAD1L1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Initiation of checkpoint signal from defective kinetochores ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,MAD2L1,CDC20,NEK2,CDC2,CCNB1,MAD1L1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Mitotic Metaphase/Anaphase Transition FBXO5,REC8,STAG2,SMC3,SMC1A,RAD21,STAG1, +PWCOMMONS Mitotic Prophase PLK1, +PWCOMMONS Golgi Cisternae Pericentriolar Stack Reorganization PLK1, +PWCOMMONS M/G1 Transition CDC6,TFDP1,E2F1,POLE2,POLE,PRIM2,POLA1,PRIM1,POLA2,CDC45L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,GINS4,GINS1,GINS2,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,DNA2,RPA1,RPA3,RPA2,FEN1,CDK2,RFC2,RFC1,RFC3,RFC5,RFC4,CDT1,GMNN,MCM10,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,RPA4,CDC7,DBF4,CDC2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Assembly of the pre-replicative complex CDT1,GMNN,TFDP1,E2F1,POLE2,POLE,PRIM2,POLA1,PRIM1,POLA2,CDC6,MCM10,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,RFC2,RFC1,RFC3,RFC5,RFC4,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,RPA1,RPA2,RPA3,RPA4,CDC45L,CDK2,CDC7,DBF4,POLD4,POLD3,POLD2,POLD1,PCNA,CDC2, +PWCOMMONS Assembly of the ORC complex at the origin of replication ORC3L,ORC2L,ORC6L,ORC4L,ORC1L,CDC2, +PWCOMMONS CDC6 association with the ORC:origin complex ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,CDT1, +PWCOMMONS Activation of the pre-replicative complex POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,POLE2,POLE,RB1,CDT1,GMNN,TFDP1,E2F1,CDK2,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,CDC7,DBF4,RFC2,RFC1,RFC3,RFC5,RFC4,CDC45L,RPA1,RPA2,RPA3,RPA4, +PWCOMMONS DNA replication initiation POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,POLE2,POLE,RB1,TFDP1,E2F1, +PWCOMMONS Switching of origins to a post-replicative state CDT1,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2, +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2, +PWCOMMONS Orc1 removal from chromatin CDT1,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2, +PWCOMMONS DNA strand elongation MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,GINS4,GINS1,GINS2,POLD4,POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,LIG1,DNA2,RPA1,RPA3,RPA2,FEN1, +PWCOMMONS Unwinding of DNA MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,GINS4,GINS1,GINS2, +PWCOMMONS Leading Strand Synthesis POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,LIG1,DNA2,RPA1,RPA3,RPA2,FEN1, +PWCOMMONS Polymerase switching POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4, +PWCOMMONS Processive synthesis on the lagging strand PCNA,POLD4,POLD3,POLD2,POLD1,DNA2,PRIM2,POLA1,PRIM1,POLA2,RPA1,RPA3,RPA2,FEN1, +PWCOMMONS Removal of the Flap Intermediate POLD4,POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RPA1,RPA3,RPA2,FEN1, +PWCOMMONS Lagging Strand Synthesis POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,LIG1,DNA2,RPA1,RPA3,RPA2,FEN1, +PWCOMMONS G1 Phase CDK2,TFDP1,E2F1,CDC6,PRIM2,POLA1,PRIM1,POLA2,ORC6L,ORC3L,ORC4L,ORC5L,ORC1L,ORC2L,PCNA,BCL2,PMAIP1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,DHFR,BCL2L1,CDT1,CDC25A,CDC2,CKS1B,CUL1,SKP1,RPA1,RPA2,RPA3,RPA4,CDC45L,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC7,DBF4,POLE2,POLE,TYMS,CCNH,CDK7,MNAT1,CCND1,CDK4,WEE1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,RFC2,RFC1,RFC3,RFC5,RFC4,RRM2,BBC3,POLD4,POLD3,POLD2,POLD1,TK2,CCNA1,CCNE1, +PWCOMMONS Cyclin D associated events in G1 CDK2,TFDP1,E2F1,CDC6,PRIM2,POLA1,PRIM1,POLA2,ORC6L,ORC3L,ORC4L,ORC5L,ORC1L,ORC2L,PCNA,BCL2,PMAIP1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,DHFR,BCL2L1,CDT1,CDC25A,CDC2,CKS1B,CUL1,SKP1,RPA1,RPA2,RPA3,RPA4,CDC45L,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC7,DBF4,POLE2,POLE,TYMS,CCNH,CDK7,MNAT1,CCND1,CDK4,WEE1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,RFC2,RFC1,RFC3,RFC5,RFC4,RRM2,BBC3,POLD4,POLD3,POLD2,POLD1,TK2,CCNA1,CCNE1, +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 CDK4,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A, +PWCOMMONS G1/S Transition CDC6,TFDP1,E2F1,POLE2,POLE,PRIM2,POLA1,PRIM1,POLA2,CDC45L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,GINS4,GINS1,GINS2,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,DNA2,RPA1,RPA3,RPA2,FEN1,CDK2,RFC2,RFC1,RFC3,RFC5,RFC4,ORC1L,CDT1,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,GMNN,MCM10,CDC7,DBF4,RPA4,CKS1B,CUL1,SKP1,WEE1,CDC25A,CCNH,CDK7,MNAT1,PLK1,BTRC,DHFR,FBXO5,CDC2,TYMS,CCNB1,RRM2,TK2,CCNA1,CCNE1, +PWCOMMONS Cyclin E associated events during G1/S transition ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDK2,CKS1B,CUL1,SKP1,WEE1,CDC25A,RB1,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDK2,CKS1B,CUL1,SKP1,RB1,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS E2F mediated regulation of DNA replication TFDP1,E2F1,PRIM2,POLA1,PRIM1,POLA2,PLK1,CDK2,CDC6,CUL1,BTRC,SKP1,PCNA,ORC6L,ORC3L,ORC4L,ORC5L,ORC1L,ORC2L,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,DHFR,CDT1,FBXO5,CDC25A,CDC2,CKS1B,RPA1,RPA2,RPA3,RPA4,CDC45L,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC7,DBF4,POLE2,POLE,TYMS,CCNH,CDK7,MNAT1,CCNB1,WEE1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,RFC2,RFC1,RFC3,RFC5,RFC4,RRM2,POLD4,POLD3,POLD2,POLD1,TK2,CCNA1,CCNE1, +PWCOMMONS E2F-enabled inhibition of pre-replication complex formation ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,CDC25A, +PWCOMMONS Inhibition of replication initiation of damaged DNA by Rb/E2F1 TFDP1,E2F1,PRIM2,POLA1,PRIM1,POLA2, +PWCOMMONS S Phase ORC1L,CDT1,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDK2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC45L,GINS4,GINS1,GINS2,POLD4,POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,LIG1,DNA2,RPA1,RPA3,RPA2,FEN1,POLE2,POLE,RB1,TFDP1,E2F1,CKS1B,CUL1,SKP1,WEE1,CCNH,CDK7,MNAT1,CCND1,CDK4,CDC25A, +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDK2,CKS1B,CUL1,SKP1,WEE1,RB1,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Synthesis of DNA ORC1L,CDT1,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDK2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC45L,GINS4,GINS1,GINS2,POLD4,POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,LIG1,DNA2,RPA1,RPA3,RPA2,FEN1,POLE2,POLE,RB1,TFDP1,E2F1, +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D CDK4,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A, +PWCOMMONS G2 Phase +PWCOMMONS G2/M Checkpoints ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,CDC20,WEE1,CDK2,CCNB2,CUL1,BTRC,SKP1,XPO1,FBXO5,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,CDC25C,CHEK1,ATM,TP53,CKS1B,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,CDKN1A,ATRIP,RPA1,RPA3,RPA2,CLSPN,CDC45L,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,CDC7,DBF4,RFC2,RFC3,RFC5,RFC4,HUS1,RAD1, +PWCOMMONS G2/M DNA replication checkpoint ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,CDC20,WEE1,CDK2,CCNB2,CUL1,BTRC,SKP1,XPO1,FBXO5,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Activation of ATR in response to replication stress RPA3,RPA2,CLSPN,CDC45L,CDK2,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,CDC7,DBF4,RFC2,RFC3,RFC5,RFC4,HUS1,RAD1,CHEK1,CDC25A,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25C,ATRIP, +PWCOMMONS G2/M DNA damage checkpoint CDC25C,CHEK1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC2,CCNB1,CDC20,WEE1,CDK2,CUL1,BTRC,SKP1,XPO1,FBXO5,ATM,TP53,CKS1B,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,CDKN1A,CCNH,CDK7,MNAT1,ATRIP, +PWCOMMONS p53-Dependent G1 DNA Damage Response ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDK2,CKS1B,CUL1,SKP1,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,TP53,ATM,CDKN1A,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Transcriptional activation of p53 responsive genes CDKN1A, +PWCOMMONS Transcriptional activation of cell cycle inhibitor p21 CDKN1A, +PWCOMMONS Stabilization of p53 PMAIP1,BCL2,BBC3,MDM2,TP53,ATM, +PWCOMMONS p53-Independent DNA Damage Response CDC25C,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS G1/S DNA Damage Checkpoints CDC25C,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2,CKS1B,CUL1,SKP1,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,TP53,ATM,CDKN1A,CCNH,CDK7,MNAT1, +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CDC25C,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2,CKS1B,CUL1,SKP1,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,TP53,ATM,CDKN1A,CCNH,CDK7,MNAT1, +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CDC25C,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2,CKS1B,CUL1,SKP1,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,TP53,ATM,CDKN1A,CCNH,CDK7,MNAT1, +PWCOMMONS Dual incision reaction in GG-NER PCNA,POLD4,POLD3,POLD2,POLD1,ERCC5,XPA,DDB2,DDB1,ERCC4,ERCC1,RAD23B,XPC,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RPA1,RPA3,RPA2,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4, +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A hexamer GBE1,GYS2,UGDH,SLC35D1,NME1, +PWCOMMONS p38MAPK events +PWCOMMONS snRNP Assembly WDR77,PRMT5,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GEMIN4,SIP1,GEMIN6,GEMIN5,DDX20,SMN1,GEMIN7,SNUPN,PHAX,NCBP2,NCBP1,TGS1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Reverse Transcription of HIV RNA PPIA,BANF1,LIG4,XRCC4,XRCC6,XRCC5,FEN1, +PWCOMMONS Plus-strand DNA synthesis PPIA,BANF1,LIG4,XRCC4,XRCC6,XRCC5,FEN1, +PWCOMMONS Integration of provirus LIG4,XRCC4,XRCC6,XRCC5,PPIA, +PWCOMMONS Downstream TCR signaling MAP3K7,TRAF6,MALT1,BCL10,CARD11,PDPK1,NFKBIA,NFKB1,RELA,FOXO1,THEM4,CHUK,IKBKB,IKBKG,PRKCQ,INPP5D,UBE2V1,UBE2N,CREB1,TRAT1,MDM2,RPS6KB2,RICTOR,FRAP1,LST8,NR4A1,RIPK2,ZAP70,LCK,CD4,CD3E,CD3D,CD3G,PTEN,BAD,TRIB3,CASP9,AKT1S1, +PWCOMMONS Reversible phosphorylation of mitochondrial nucleoside diphosphates by nucleoside diphosphate kinase D, mitochondrial hexamer +PWCOMMONS Glucagon-type ligand receptors IQGAP1,MGLL,PFKFB1,GLP1R,GNAS,MLXIPL,GCG,GCGR,ADCY8,CREB1,LIPE,SCTR,SCT,GLP2R,GHRHR,GHRH,GIPR,GIP,VAMP2,VIP,FABP4,INS,SYT5,ADCYAP1R1,KCNJ11, +PWCOMMONS Citric acid cycle (TCA cycle) SDHC,SDHD,SDHB,SDHA,UROD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,SUCLG1,SUCLA2,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,CPOX,UROS,DLST,OGDH,DLD,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,FH,INS,SYT5,SUCLG2,KCNJ11, +PWCOMMONS Glycogenin catalyzes the synthesis of an oligo(1,4)glucose moiety covalently attached to itself GYS1,GYG1,GBE1,GYS2, +PWCOMMONS Acetylcholine Neurotransmitter Release Cycle VAMP2,RAB3A,SYT1,RIMS1,CPLX1,SLC5A7,CHAT, +PWCOMMONS Cytochrome P450 - arranged by substrate type PTGIS,TBXAS1,CYP4F3,CYP4F2,CYP4F12,CYP4A11,CYP2J2,CYP4B1,LGMN,GC,CYP26B1,CUBN,LRP2,CYP26A1,CYP27B1,CYP24A1,CYP2R1,CYP26C1,CYP46A1,EBP,ACOT8,LBR,ABCB11,CYP39A1,CYP7A1,CYP21A2,CYP51A1,NSDHL,CYP11B2,HSD17B4,AMACR,CYP7B1,SC5DL,SC4MOL,CYP17A1,ACOX2,CYP11B1,CYP1B1,CYP8B1,BAAT,HSD3B7,AKR1C4,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,SLC27A5,AKR1D1,CYP27A1,SLC27A2,CYP2C19,CYP2E1,CYP3A4,CYP1A1,CYP2F1,CYP2C18,CYP3A7,CYP2C9,CYP1A2,CYP2A6,CYP2D6,CYP2C8,CYP3A5,CYP2A13,CYP2B6,CYP4F11,CYP2W1, +PWCOMMONS Eicosanoids PTGIS,TBXAS1,CYP4F3,CYP4F2, +PWCOMMONS Xenobiotics CYP2E1,CYP3A4,CYP1A1,CYP2F1,CYP2C18,CYP3A7,CYP2C9,CYP1A2,CYP2A6,CYP2D6,CYP2C8,CYP3A5,CYP2A13,CYP2B6, +PWCOMMONS CYP2E1 reactions +PWCOMMONS Aromatic amines can be N-hydroxylated or N-dealkylated by CYP1A2 +PWCOMMONS Fatty acids CYP4A11,CYP2J2,CYP4B1, +PWCOMMONS Endogenous sterols EBP,ACOT8,LBR,ABCB11,CYP39A1,CYP7A1,CYP21A2,CYP51A1,NSDHL,CYP11B2,HSD17B4,AMACR,CYP7B1,SC5DL,SC4MOL,CYP17A1,ACOX2,CYP11B1,CYP1B1,CYP8B1,BAAT,HSD3B7,AKR1C4,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,SLC27A5,AKR1D1,CYP27A1,SLC27A2, +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 ABCB11,CYP8B1,BAAT,AKR1C4,HSD17B4,AMACR,SLC27A5,AKR1D1,CYP27A1,SLC27A2,ACOX2, +PWCOMMONS Unknown CYP2W1, +PWCOMMONS Vitamins GC,CYP26B1,CUBN,LRP2,CYP26A1,CYP27B1,CYP24A1,CYP2R1,CYP26C1, +PWCOMMONS vWF interaction with collagen COL1A1,COL1A2,GP5,GP9,GP1BA,GP1BB, +PWCOMMONS Processing of DNA double-strand break ends RPA3,RPA2,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,RAD51,RAD52,BRCA2, +PWCOMMONS Histidine catabolism HAL,FTCD,AMDHD1, +PWCOMMONS Collagen adhesion via alpha 2 beta 1 glycoprotein ITGB1,COL1A1,COL1A2, +PWCOMMONS Depyrimidination CCNO,APEX1,TDG,NTHL1, +PWCOMMONS Hormone ligand-binding receptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FSHR,FSHB,CGA,CGB,LHCGR,LHB,FABP4,TSHR,TSHB, +PWCOMMONS Proline synthesis PYCR1, +PWCOMMONS BH3-only proteins associate with and inactivate anti-apoptotic BCL-2 members PMAIP1,BID,BCL2,BAD,BBC3, +PWCOMMONS Propionyl-CoA catabolism SDHC,SDHD,SDHB,SDHA,UROD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,SUCLG1,SUCLA2,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,CPOX,UROS,DLST,OGDH,DLD,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PCCB,PCCA,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,MCEE,ALAD,CS,MUT,PPOX,ACO2,IDH3G,IDH3A,IDH3B,FH,INS,SYT5,SUCLG2,KCNJ11, +PWCOMMONS IRS activation RAF1,YWHAB,SOS1,MAP2K1,MAPK3,SHC1,MAPK1,INSR,INS, +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides DPYS,DTYMK,TYMP,NME2,NME1,DPYD,UPB1,GYG2,TXN,GLRX,GBE1,TXNRD1,CPS1,UPP1,UCK1,ASS1,PYCR1,CTPS,CMPK1,OAT,GYS2,OTC,UGDH,RRM2,RRM1,SLC35D1,GSR,ASL,ARG1, +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by thymidine phosphorylase DPYS,DTYMK,TYMP,NME2,NME1,DPYD,UPB1, +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 TXN,GLRX,GBE1,TXNRD1,DPYD,DPYS,CPS1,UPP1,UCK1,ASS1,PYCR1,CTPS,CMPK1,OAT,GYS2,NME2,NME1,OTC,UGDH,RRM2,RRM1,SLC35D1,GSR,ASL,ARG1,UPB1, +PWCOMMONS Galactose catabolism GART,NT5C2,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXN,PGLS,XDH,PAICS,CPS1,UPP1,TALDO1,GALE,ASS1,CMPK1,ADSL,ATIC,OAT,NP,GYS2,CAT,UMPS,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,ARG1,KCNJ11,AMPD3,TKT,PGM1,RPE,GBE1,TXNRD1,DPYD,GALK1,DPYS,AK1,PYCR1,VAMP2,NT5C1A,CTPS,PRPS1,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,NME2,RPIA,GALT,OTC,AMPD2,INS,SYT5,PGD,PFAS,SLC35D1,GSR,ASL,UPB1, +PWCOMMONS Striated Muscle Contraction TTN,TCAP,VIM,NEB,TMOD1,DMD, +PWCOMMONS PI3K/AKT signalling FRAP1,LST8,PDPK1,NGF,NR4A1,FOXO1,CHUK,THEM4,PTEN,CREB1,BAD,RHOA,TRIB3,PHLPP,CASP9,AKT1S1,MDM2,RPS6KB2, +PWCOMMONS AKT phosphorylates targets in the nucleus NR4A1,RPS6KB2,FOXO1, +PWCOMMONS Negative regulation of the PI3K/AKT network FRAP1,LST8,THEM4,TRIB3,PDPK1,NR4A1,FOXO1,PHLPP,CHUK,PTEN,CREB1,BAD,CASP9,AKT1S1,MDM2,RPS6KB2, +PWCOMMONS MRN complex relocalizes to nuclear foci MRE11A,NBN,H2AFX, +PWCOMMONS Assembly of the RAD50-MRE11-NBS1 complex at DNA double-strand breaks MRE11A,NBN,H2AFX, +PWCOMMONS c-src mediated regulation of Cx43 function and closure of gap junctions +PWCOMMONS Digestion of dietary lipid CEL,PNLIP,CLPS, +PWCOMMONS Amine-derived hormones AANAT,SLC5A5,DIO3,PNMT,SLC18A2,VAMP2,RAB3A,SYT1,RIMS1,CPLX1,DBH,MAOA,SLC22A2, +PWCOMMONS Serotonin and melatonin biosynthesis AANAT, +PWCOMMONS Thyroxine biosynthesis DIO3, +PWCOMMONS Regulation of thyroid hormone activity +PWCOMMONS Exocytosis of Dense granule LAMP2, +PWCOMMONS Lectin pathway of complement activation C2,C3,C9,C6,C7,C5,C8A,C8B,C8G,MBL2,MASP1, +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,PLK1,CDK2,CUL1,BTRC,SKP1,FBXO5,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC20,CDC2,CCNB1,MAD2L1,BUB3,BUB1B,NEK2,PTTG1, +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CUL1,BTRC,SKP1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC2,CCNB1, +PWCOMMONS Transmembrane transport of small molecules SLC29A1,SLC29A2,SLC28A2,SLC28A1,SLC7A7,SLC3A2,SLC6A15,SLC38A1,SLC38A4,SLC7A10,SLC7A3,SLC38A2,SLC7A1,SLC38A5,SLC1A4,SLC36A2,SLC6A12,SLC6A20,SLC7A6,SLC6A6,SLC36A1,SLC6A19,SLC7A8,SLC7A11,SLC43A2,SLC16A10,SLC7A5,SLC38A3,SLC6A14,SLC43A1,SLC1A5,SLC7A9,SLC3A1,SLC6A18,PEX3,ABCA7,APOA1,SLC5A1,SLC2A2,SLC2A5,CFTR, +PWCOMMONS ABC-family proteins mediated transport APOA1, +PWCOMMONS Amino acid transport across the plasma membrane SLC3A2,SLC6A15,SLC38A1,SLC38A4,SLC7A10,SLC7A3,SLC38A2,SLC7A1,SLC38A5,SLC1A4,SLC36A2,SLC6A12,SLC6A20,SLC7A6,SLC6A6,SLC36A1,SLC6A19,SLC7A8,SLC7A11,SLC43A2,SLC16A10,SLC7A5,SLC38A3,SLC6A14,SLC43A1,SLC1A5,SLC7A9,SLC3A1,SLC6A18, +PWCOMMONS Hexose uptake SLC2A2,SLC2A5, +PWCOMMONS Transport of nucleosides and free purine and pyrimidine bases across the plasma membrane SLC29A1,SLC29A2,SLC28A2,SLC28A1, +PWCOMMONS Muscle contraction TTN,TCAP,VIM,NEB,TMOD1,DMD, +PWCOMMONS VEGF ligand-receptor interactions FLT4, +PWCOMMONS Neurophilin interactions with VEGF and VEGFR +PWCOMMONS VEGF binds to VEGFR leading to receptor dimerization FLT4, +PWCOMMONS Activation of BMF and translocation to mitochondria BMF,DYNLL2, +PWCOMMONS LPS transferred from LBP carrier to CD14 LBP, +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid PPAP2C,GK,GPD1,AGPAT5,DGAT1,AGPAT2,AGPAT4,AGPAT3,PPAP2A,AGPAT1,PPAP2B, +PWCOMMONS Synthesis of phosphatidic acid from lysophosphatidic acid AGPAT5,DGAT1,AGPAT4,AGPAT2,AGPAT3,PPAP2A,AGPAT1,PPAP2B, +PWCOMMONS Conversion of Phosphatidic Acid to Diacylglycerol PPAP2A,DGAT1,PPAP2B, +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate PPAP2C,GK,GPD1,AGPAT5,DGAT1,AGPAT2,AGPAT4,AGPAT3,PPAP2A,AGPAT1,PPAP2B, +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate PPAP2C,AGPAT5,DGAT1,AGPAT4,PPAP2B,GK,GPD1,AGPAT2,AGPAT3,PPAP2A,AGPAT1, +PWCOMMONS Interactions of Rev with host cellular proteins RAN,XPO1,RANBP1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RANGAP1, +PWCOMMONS Nuclear import of Rev protein RAN,XPO1,RANBP1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RANGAP1, +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA RAN,XPO1,RANBP1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RANGAP1, +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNMT, +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade IRF3,TBK1,TICAM1,TLR3,MAP3K7IP1,MAP3K7IP2,TRAF6,MAP3K7,CHUK,IKBKB,IKBKG,RELA,RIPK1,JUN,MAPK1,MAPK8, +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates TBK1 TBK1,TICAM1,TLR3,RIPK1,CHUK,IKBKB,IKBKG, +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates RIP1 CHUK,IKBKB,IKBKG,RIPK1,TICAM1,TLR3, +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade MAP3K7IP2,MAP3K7,TRAF6,ATF2,TICAM1,TLR3,IKBKB,CHUK,IKBKG,MAPK1,RELA,MAPK8,JUN, +PWCOMMONS Gap junction trafficking and regulation GJB1,GJB2,AP2M1, +PWCOMMONS Regulation of gap junction activity +PWCOMMONS Gap junction trafficking GJB1,GJB2,AP2M1, +PWCOMMONS Gap junction degradation +PWCOMMONS Formation of annular gap junctions +PWCOMMONS Gap junction assembly GJB1,GJB2, +PWCOMMONS Oligomerization of connexins into connexons GJB1,GJB2, +PWCOMMONS Transport of connexons to the plasma membrane GJB2, +PWCOMMONS Microtubule-dependent trafficking of connexons from Golgi to the plasma membrane +PWCOMMONS Response to elevated platelet cytosolic Ca++ IGF1,CD36,VWF,SERPINE1,F5,APP,SERPINF2,SELP,SERPING1,A2M,FN1,ITGB1,ITGA5,ITGB3,ITGA2B,CD63,HGF,SERPINA1,LAMP2,F8,PF4,PPBP,PECAM1,CD9,SPARC,PLG,STX4,PICK1,STXBP3,ALB,CFD,SRGN,ALDOA,PROS1,TMSB4X,F13A1,CLU,TIMP1,GP5,GP9,GP1BA,GP1BB,FGB,FGG,FGA,EGF,MMRN1,KNG1,HRG, +PWCOMMONS Platelet degranulation PF4,IGF1,IGF1,SRGN,FN1,CD36,VWF,SERPINE1,PLG,F5,APP,SERPINF2,SELP,SERPING1,ALDOA,A2M,ITGB1,ITGA5,PROS1,ALB,CFD,ITGB3,ITGA2B,GP5,GP9,GP1BA,GP1BB,TMSB4X,F13A1,HGF,SERPINA1,FGB,FGG,FGA,EGF,CLU,F8,PPBP,TIMP1,PECAM1,MMRN1,CD9,KNG1,HRG,CD63,LAMP2, +PWCOMMONS Exocytosis of Alpha granule PF4,IGF1,IGF1,SRGN,FN1,CD36,VWF,SERPINE1,PLG,F5,APP,SERPINF2,SELP,SERPING1,ALDOA,A2M,ITGB1,ITGA5,PROS1,ALB,CFD,ITGB3,ITGA2B,GP5,GP9,GP1BA,GP1BB,TMSB4X,F13A1,HGF,SERPINA1,FGB,FGG,FGA,EGF,CLU,F8,PPBP,TIMP1,PECAM1,MMRN1,CD9,KNG1,HRG, +PWCOMMONS Disinhibition of SNARE formation PICK1,STXBP3, +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding VAMP8,AP1G1,AP1B1,HSPA8,DNAJC6,STX4,VAMP7,SNAP23,VAMP2,SH3GL2,ARF1,GBF1,VTI1B, +PWCOMMONS Late Phase of HIV Life Cycle GTF2A1,GTF2A2,GTF2E2,GTF2E1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNGTT,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,RNMT,KPNB1,RAN,XPO1,RANBP1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RANGAP1, +PWCOMMONS Transcription of the HIV genome GTF2A1,GTF2A2,GTF2E2,GTF2E1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNGTT,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,RNMT, +PWCOMMONS HIV-1 Transcription Pre-Initiation GTF2A1,GTF2A2,GTF2E2,GTF2E1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNGTT,RNMT, +PWCOMMONS HIV-1 Transcription Initiation GTF2A1,GTF2A2,GTF2E2,GTF2E1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNGTT,RNMT, +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,RNMT, +PWCOMMONS HIV-1 Transcription Elongation TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS Formation of the HIV-1 Early Elongation Complex TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,CDK9,CCNT1,TH1L,WHSC2,RDBP,COBRA1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,NCBP2,NCBP1, +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,CDK9,CCNT1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1, +PWCOMMONS Glutathione conjugation GCLC,GCLM, +PWCOMMONS Glutathione synthesis GCLC,GCLM, +PWCOMMONS Ceramide signalling NGFR,NGF, +PWCOMMONS Regulation of PAK-2p34 activity by PS-GAP/RHG10 ARHGAP10, +PWCOMMONS Regulation of Insulin Secretion ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,PCK1,MDH1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,ETFA,ETFB,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,PFKFB2,PFKFB4,PFKFB3,GOT1,SLC2A2,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A,ADCY8,AKAP5,IQGAP1,MGLL,GLP1R,GNAS,CREB1,LIPE,FABP4,CAV1,HSP90AA1,CALM1,NOS3,PRKCA,AKT1,CHRM3,MARCKS,PLA2G4A,ADRBK1,CAMK4, +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,PCK1,MDH1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,ETFA,ETFB,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,PFKFB2,PFKFB4,PFKFB3,GOT1,SLC2A2,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase PDHX,DLAT,DLD,PDHA1,PDHB,SDHC,SDHD,SDHB,SDHA,UROD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,SUCLG1,SUCLA2,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,CPOX,UROS,DLST,OGDH,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,FH,INS,SYT5,SUCLG2,KCNJ11, +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,VAMP2,INS,SYT5,KCNJ11, +PWCOMMONS Electron Transport Chain SDHC,SDHD,SDHB,SDHA,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UROD,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,SUCLG1,SUCLA2,CYCS,CPOX,UROS,DLST,OGDH,DLD,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,FH,INS,SYT5,SUCLG2,KCNJ11, +PWCOMMONS Inhibition of Insulin Secretion by Adrenaline/Noradrenaline INS,ADCY8, +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine HSP90AA1,CALM1,NOS3,PRKCA,AKT1,VAMP2,INS,SYT5,CHRM3,MARCKS,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4, +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 IQGAP1,MGLL,PFKFB1,GLP1R,GNAS,MLXIPL,ADCY8,CREB1,LIPE,VAMP2,FABP4,INS,SYT5,KCNJ11, +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins CCNB1,CDC20,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,FZR1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,PTTG1,BUB3,BUB1B,MAD2L1, +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,CDC20,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC20,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,PTTG1,CDC2,CCNB1, +PWCOMMONS ARMS-mediated activation NGF,MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1,FRS2,BRAF,RAP1A, +PWCOMMONS MAP kinase cascade RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1, +PWCOMMONS ERK activation MAPK3,MAP2K1,ATF1,CREB1,MAPK1,MAP2K2, +PWCOMMONS ERK1 activation MAPK3,MAP2K1,ATF1,CREB1, +PWCOMMONS MEK activation RAF1,YWHAB,MAP2K1,MAPK1,MAPK3, +PWCOMMONS Interactions of Tat with host cellular proteins CCNT1, +PWCOMMONS Phosphorylation of the APC/C FBXO5,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,FZR1,CDC2,CCNB1, +PWCOMMONS Homologous Recombination Repair RPA3,RPA2,RAD50,MRE11A,H2AFX,BRCA1,TP53BP1,MDC1,NBN,ATM,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,RAD51,RAD52,BRCA2,PMAIP1,BCL2,BCL2L1,TP53,MDM2,BBC3, +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks RPA3,RPA2,RAD50,MRE11A,H2AFX,BRCA1,TP53BP1,MDC1,NBN,ATM,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,RAD51,RAD52,BRCA2,PMAIP1,BCL2,BCL2L1,TP53,MDM2,BBC3, +PWCOMMONS Recruitment of repair and signaling proteins to double-strand breaks MRE11A,H2AFX,BRCA1,TP53BP1,MDC1,NBN,ATM, +PWCOMMONS ATM mediated response to DNA double-strand break TP53BP1,MDC1,H2AFX,PMAIP1,BCL2,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,BCL2L1,ATM,TP53,RAD51,RAD52,BRCA2,NBN,RAD50,MRE11A,RPA1,RPA3,RPA2,MDM2,BBC3, +PWCOMMONS ATM mediated phosphorylation of repair proteins MRE11A,BRCA1,TP53BP1,MDC1,H2AFX,ATM,NBN,TP53, +PWCOMMONS Agmatine biosynthesis +PWCOMMONS Intrinsic Pathway F5,KNG1,PLG,FGB,FGG,FGA,PLAT,C1QBP,PROC,F12,F11,GP5,GP9,GP1BA,GP1BB,F8,F9,F13B,F13A1,SERPINC1,F2,VWF,KLKB1,SERPINE1,F2RL3,PROS1,SERPING1,THBD,SERPINF2,A2M,PRCP, +PWCOMMONS Common Pathway F5,PLG,FGB,FGG,FGA,PLAT,PROC,F8,F9,F13B,F13A1,SERPINC1,F2,F11,GP5,GP9,GP1BA,GP1BB,SERPINE1,F2RL3,PROS1,THBD,VWF,SERPINF2, +PWCOMMONS SHC-mediated signalling RAF1,YWHAB,MAP2K1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SHC1,SOS1, +PWCOMMONS RAF activation RAF1,YWHAB,MAP2K1,MAPK1,MAPK3, +PWCOMMONS Acetylation NAT2, +PWCOMMONS Signalling to RAS RAF1,YWHAB,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SHC1,SOS1,NGF,MAP2K1,RALGDS, +PWCOMMONS Signaling by FGFR CBL,FGF23,FGFR4, +PWCOMMONS FGFR ligand binding and activation CBL,FGF23,FGFR4, +PWCOMMONS FGFR2 ligand binding and activation CBL, +PWCOMMONS FGFR2b ligand binding and activation CBL, +PWCOMMONS FGFR3 ligand binding and activation CBL, +PWCOMMONS FGFR3c ligand binding and activation SDC2, +PWCOMMONS FGFR3b ligand binding and activation CBL, +PWCOMMONS FGFR4 ligand binding and activation FGFR4,SDC2, +PWCOMMONS FGFR1 ligand binding and activation CBL,FGF23, +PWCOMMONS FGFR1b ligand binding and activation CBL, +PWCOMMONS FGFR1c and Klotho ligand binding and activation SDC2,CBL, +PWCOMMONS FGFR1c ligand binding and activation SDC2, +PWCOMMONS Purine metabolism XDH,GUK1,GDA,NP,NME2,NME1,CAT,ADA,ADK,DGUOK,TXN,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXNRD1,AK1,VAMP2,ADSL,APRT,GMPS,IMPDH2,IMPDH1,ADSS,AMPD2,RRM2,RRM1,AMPD1,INS,SYT5,GSR,KCNJ11,AMPD3,GART,PAICS,ATIC,PPAT,PFAS,ADSSL1, +PWCOMMONS Purine biosynthesis TXN,GLRX,GMPS,HPRT1,TXNRD1,XDH,GUK1,NP,IMPDH2,IMPDH1,NME2,NME1,CAT,RRM2,RRM1,GDA,GSR,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,ADSSL1,AK1,VAMP2,ADSL,ADSS,AMPD2,AMPD1,INS,SYT5,KCNJ11,AMPD3, +PWCOMMONS dATP formation GLRX,RRM2,RRM1,TXNRD1,NME2,NME1, +PWCOMMONS ATP formation TXN,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,ADSSL1,TXNRD1,XDH,AK1,VAMP2,ADSL,NP,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,NME2,CAT,AMPD2,RRM2,RRM1,AMPD1,INS,SYT5,GSR,KCNJ11,AMPD3, +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate TXN,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXNRD1,XDH,AK1,ADSSL1,VAMP2,ADSL,NP,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,NME2,CAT,AMPD2,RRM2,RRM1,AMPD1,INS,SYT5,GSR,KCNJ11,AMPD3, +PWCOMMONS dGTP formation GLRX,RRM2,RRM1,TXNRD1,NME2,NME1, +PWCOMMONS Purine catabolism XDH,ADA,HPRT1,NT5C2,NP,TXN,GLRX,GMPS,TXNRD1,GUK1,IMPDH2,NME2,NME1,RRM2,RRM1,GSR,IMPDH1,CAT, +PWCOMMONS Xanthine formation XDH,HPRT1,NT5C2,GDA,NP,TXN,GLRX,GMPS,TXNRD1,GUK1,IMPDH2,NME2,NME1,RRM2,RRM1,GSR,IMPDH1,CAT, +PWCOMMONS Inosine formation XDH,HPRT1,NP,TXN,GLRX,GMPS,TXNRD1,GUK1,IMPDH2,NME2,NME1,RRM2,RRM1,GDA,GSR,IMPDH1,CAT,ADA, +PWCOMMONS Hypoxanthine formation XDH,CAT,ADA, +PWCOMMONS Guanine formation XDH,HPRT1,GDA,NP,CAT, +PWCOMMONS Purine salvage reactions XDH,GUK1,GDA,NP,NME2,NME1,CAT,ADA,ADK,DGUOK,TXN,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXNRD1,AK1,VAMP2,ADSL,APRT,GMPS,IMPDH2,IMPDH1,ADSS,AMPD2,RRM2,RRM1,AMPD1,INS,SYT5,GSR,KCNJ11,AMPD3, +PWCOMMONS Deoxyribonucleotide salvage XDH,GUK1,GDA,NP,NME2,NME1,CAT,ADA,ADK,DGUOK, +PWCOMMONS Ribonucleotide salvage TXN,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXNRD1,XDH,AK1,ADA,VAMP2,ADSL,APRT,NP,GMPS,GUK1,IMPDH2,NME1,IMPDH1,ADSS,NME2,CAT,AMPD2,RRM2,RRM1,AMPD1,INS,SYT5,GDA,GSR,KCNJ11,ADK,AMPD3, +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,PGLS,GYG1,UPP1,ADSL,ATIC,OAT,NP,GYS2,AGL,TXN,PYGM,ARG1,KCNJ11,AMPD3,RPE,GLRX,DPYD,GART,DPYS,AK1,PYGL,UMPS,VAMP2,NT5C1A,CTPS,PRPS1,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,CAT,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,TKT,PGM1,GBE1,TXNRD1,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus KPNB1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Reversal of Alkylation Damage By DNA Dioxygenases ALKBH3, +PWCOMMONS ABH3 mediated Reversal of Alkylation Damage +PWCOMMONS ABH2 mediated Reversal of Alkylation Damage +PWCOMMONS PERK regulated gene expression ATF4,EIF2AK3,HSPA5, +PWCOMMONS Creation of C4 and C2 activators C2,C3,C9,C6,C7,C5,C8A,C8B,C8G,C1QC,C1QA,C1QB,C1S,C1R,MBL2,MASP1, +PWCOMMONS Classical antibody-mediated complement activation C2,C3,C9,C6,C7,C5,C8A,C8B,C8G,C1QC,C1QA,C1QB,C1S,C1R, +PWCOMMONS Metabolism of folate and pterines AMD1,AHCY,MTHFD1,SLC46A1,MTHFR,SRM,MTR,SMS,NNMT,TPMT,SLC19A1,SHMT1,DHFR,SLC25A32, +PWCOMMONS Regulation of DNA replication ORC6L,ORC3L,ORC4L,ORC5L,ORC1L,ORC2L,CDT1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC6,CDC2,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDK2,MCM10, +PWCOMMONS Removal of licensing factors from origins CDT1,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2,GMNN,MCM10, +PWCOMMONS Association of licensing factors with the pre-replicative complex ORC6L,ORC3L,ORC4L,ORC5L,ORC1L,ORC2L,CDT1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC6,CDC2, +PWCOMMONS Influenza Life Cycle RAN,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,HSPA1A,CALR,CANX,KPNA1,KPNB1,HNRNPD,HNRNPH2,HNRNPUL1,CD2BP2,HNRNPH1,SFRS9,HNRNPA0,HNRNPL,HNRNPA2B1,HNRNPA1,SFRS2,PCBP2,RNPS1,SMC1A,RBM5,HNRNPU,CCAR1,U2AF1,RBMX,HNRNPA3,HNRNPM,SRRM1,U2AF2,THOC4,PCBP1,SF4,YBX1,HNRNPR,HNRNPC,PTBP1,SFRS3,SFRS5,SFRS7,SFRS6,DHX9,SFRS1,HNRNPF,SNRNP70,SNRPA,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1,HSP90AA1,IPO5,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,GRSF1, +PWCOMMONS Virus Assembly and Release CANX, +PWCOMMONS Assembly of Viral Components at the Budding Site CANX, +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPH2,HNRNPUL1,CD2BP2,HNRNPH1,SFRS9,HNRNPA0,HNRNPL,HNRNPA2B1,HNRNPA1,SFRS2,PCBP2,RNPS1,SMC1A,RBM5,HNRNPU,CCAR1,U2AF1,RBMX,HNRNPA3,HNRNPM,SRRM1,U2AF2,THOC4,PCBP1,SF4,YBX1,HNRNPR,HNRNPC,PTBP1,SFRS3,SFRS5,SFRS7,SFRS6,DHX9,SFRS1,HNRNPF,SNRNP70,SNRPA,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1,HSP90AA1,IPO5,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,GRSF1, +PWCOMMONS Viral Messenger RNA Synthesis HNRNPH2,HNRNPUL1,CD2BP2,HNRNPH1,SFRS9,HNRNPA0,HNRNPL,HNRNPA2B1,HNRNPA1,SFRS2,PCBP2,RNPS1,SMC1A,RBM5,HNRNPU,CCAR1,U2AF1,RBMX,HNRNPA3,HNRNPM,SRRM1,U2AF2,THOC4,PCBP1,SF4,YBX1,HNRNPR,HNRNPC,PTBP1,SFRS3,SFRS5,SFRS7,SFRS6,DHX9,SFRS1,HNRNPF,SNRNP70,SNRPA,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1, +PWCOMMONS Viral mRNA Translation RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,GRSF1, +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus RAN,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,HSPA1A, +PWCOMMONS Viral RNP Complexes in the Host Cell Nucleus +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery RAN,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS PLC-mediated hydrolysis of PIP2 +PWCOMMONS NADPH regeneration CROT,HSD17B4,AMACR,ACOX3,HACL1,ACOX2,ACOT8,SLC27A2,IDH1,PHYH, +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,BRF1,BDP1,TBP,GTF3C2,GTF3C3,GTF3C4,GTF3C5,GTF3C1, +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NT5C2,PFKFB1,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,PCK1,MDH1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,ACLY,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,FASN,PRPS1,DLST,OGDH,ACACB,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,AGPAT1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PPAP2C,PCK2,SUCLA2,GBE1,TXNRD1,PPAP2B,TPI1,SLC25A10,G6PC,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,GSR,PPAP2A, +PWCOMMONS Influenza Virus Induced Apoptosis SLC25A6, +PWCOMMONS HIV Life Cycle PPIA,BANF1,CD4,XRCC6,XRCC5,FEN1,LIG4,XRCC4,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNGTT,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,RNMT,KPNB1,RAN,XPO1,RANBP1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RANGAP1, +PWCOMMONS Early Phase of HIV Life Cycle PPIA,BANF1,CD4,XRCC6,XRCC5,FEN1,LIG4,XRCC4, +PWCOMMONS Binding and entry of HIV virion PPIA,BANF1,XRCC6,XRCC5,FEN1,LIG4,XRCC4,CD4, +PWCOMMONS Uncoating of the HIV Virion PPIA,BANF1,XRCC6,XRCC5,FEN1,LIG4,XRCC4, +PWCOMMONS 3' -UTR-mediated translational regulation EIF4H,PABPC1,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL31,RPL35A,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL32,RPL3L,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL19,RPL23,RPL41,RPL7,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL36A,RPL38,RPL9,RPLP0,UBA52,RPL37A,RPL12, +PWCOMMONS SOS-mediated signalling RAF1,YWHAB,MAP2K1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SOS1,SHC1, +PWCOMMONS Complement cascade C6,C7,C5,C8A,C8B,C8G,C4A,C2,C3,C1QC,C1QA,C1QB,C1S,C1R,MBL2,MASP1,CFD,CFB, +PWCOMMONS Activation of C3 and C5 C2,C3,C9,C6,C7,C5,C8A,C8B,C8G, +PWCOMMONS Initial triggering of complement C2,C3,C9,C6,C7,C5,C8A,C8B,C8G,C1QC,C1QA,C1QB,C1S,C1R,MBL2,MASP1,CFD,CFB, +PWCOMMONS Alternative complement activation C4A,C2,C9,C6,C7,C5,C8A,C8B,C8G,CFD,CFB, +PWCOMMONS Metabolism of lipids and lipoproteins CROT,SLC27A2,HSD17B4,AMACR,ACOX3,HACL1,ACOX2,ACOT8,PHYH,IDH1,SLC25A17,PPAP2C,GNPAT,AGPS,FAR2,DGAT1,FAR1,PPAP2A,AGPAT1,PPAP2B,ABCD1,ACAA1,PNLIPRP2,CEL,PNLIP,CLPS,ABCG5,ABCG8,APOA2,APOC3,APOE,APOC2,APOA4,APOA1,APOB,LCAT,LDLR,CUBN,AMN,CETP,APOA5,LDLRAP1,ABCA1,LIPC,ALB,LPL,A2M,P4HB,MTTP,SAR1B,ACADS,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,HADHB,HADHA,INS,SYT5,KCNJ11,ACADM,ACADL,ACADVL,UROD,DCI,CPOX,UROS,DLST,OGDH,DLD,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,SDHC,SDHD,SDHB,SDHA,FECH,DECR1,SUCLA2,MDH2,FH,SLC25A20,CPT1B,CPT2,FASN,ACACB,GPAM,GK,GPD1,AGPAT5,AGPAT2,AGPAT4,AGPAT3,CYP46A1,ABCB11,CYP39A1,CYP8B1,BAAT,HSD3B7,AKR1C4,SLC27A5,AKR1D1,CYP27A1,CYP7A1,CH25H,CYP7B1,SLCO1B1,SLCO1B3,FABP6,ABCC3,SLC10A1,SLCO1A2,SLC10A2,GGPS1,EBP,SQLE,CYP11B1,LBR,MVK,CYP11B2,FDFT1,STAR,CYP21A2,CYP51A1,NSDHL,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,PMVK,SC5DL,SC4MOL,MVD,LSS,CYP17A1,HMGCS1,HSD11B1,FABP4,LIPE,MGLL,PLIN,CAV1,ABHD5,HMGCS2,HMGCL,ACAT1,BDH1,OXCT1,GPD2, +PWCOMMONS Hormone-sensitive lipase (HSL)-mediated triacylglycerol hydrolysis LIPE,MGLL,PLIN,CAV1,ABHD5, +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,HADHB,HADHA,INS,SYT5,KCNJ11,ACADM,ACADL,ACADVL,UROD,DCI,CPOX,UROS,DLST,OGDH,DLD,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,SDHC,SDHD,SDHB,SDHA,FECH,DECR1,SUCLA2,MDH2,FH, +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids UROD,DCI,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,HADHB,HADHA,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,DLD,HADH,ETFA,ETFB,ALAD,CS,ECHS1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,DECR1,SUCLA2,CYCS,ACADL,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,FH,INS,SYT5,ACADM, +PWCOMMONS Lipoprotein metabolism APOC3,APOE,APOC2,APOA4,APOA1,APOB,LCAT,LDLR,CUBN,AMN,CETP,APOA5,LDLRAP1,ABCA1,LIPC,ALB,LPL,A2M,P4HB,MTTP,SAR1B, +PWCOMMONS LDL endocytosis LDLR,APOB,APOE,LIPC, +PWCOMMONS HDL-mediated lipid transport APOC3,APOE,APOC2,APOA4,APOA1,APOB,LCAT,LDLR,CUBN,AMN,CETP,APOA5,LDLRAP1,ABCA1,LIPC,ALB,LPL,A2M, +PWCOMMONS Chylomicron-mediated lipid transport APOA2,APOC2,APOA4,APOA1,APOE,APOB,LDLR,P4HB,MTTP,APOA5,LDLRAP1,LIPC,SAR1B,LPL, +PWCOMMONS Trafficking of dietary sterols ABCG8, +PWCOMMONS Triacylglyceride Biosynthesis ACACB,PPAP2C,PPAP2A,PPAP2B,GPAM,GK,GPD1,AGPAT5,AGPAT2,AGPAT4,AGPAT3,AGPAT1,DGAT1, +PWCOMMONS Fatty Acyl-CoA Biosynthesis PPAP2C,GK,GPD1,AGPAT5,DGAT1,AGPAT2,AGPAT4,AGPAT3,PPAP2A,AGPAT1,PPAP2B,FASN,ACACB, +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,ETFA,ETFB,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,ECHS1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,HADH,VAMP2,INS,SYT5,KCNJ11,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,SLC25A20,HADHB,HADHA,ACADL,ACADM,ACADVL,CPT1B,CPT2, +PWCOMMONS Peroxisomal lipid metabolism CROT,SLC27A2,HSD17B4,AMACR,ACOX3,HACL1,ACOX2,ACOT8,PHYH,IDH1,SLC25A17,PPAP2C,GNPAT,AGPS,FAR2,DGAT1,FAR1,PPAP2A,AGPAT1,PPAP2B,ABCD1,ACAA1, +PWCOMMONS Beta-oxidation of pristanoyl-CoA CRAT,ACOX2,CROT,ACOT8,AMACR,ACOX3, +PWCOMMONS Alpha-oxidation of phytanate CROT,SLC27A2,HSD17B4,AMACR,ACOX3,HACL1,ACOX2,ACOT8,PHYH,IDH1,SLC25A17, +PWCOMMONS Beta-oxidation of very long chain fatty acids CRAT,ABCD1,ACOT8,ACAA1, +PWCOMMONS Plasmalogen biosynthesis GNPAT,AGPS,FAR2,DGAT1,FAR1,PPAP2A,AGPAT1,PPAP2B, +PWCOMMONS Ketone body metabolism HMGCL,ACAT1,BDH1,OXCT1, +PWCOMMONS Utilization of Ketone Bodies OXCT1,BDH1, +PWCOMMONS Synthesis of Ketone Bodies HMGCL,ACAT1,BDH1, +PWCOMMONS Transport of gamma-carboxylated protein precursors from the endoplasmic reticulum to the Golgi apparatus F10,PROC,GAS6,F2,F9,PROS1,PROZ,FURIN,NOTCH2, +PWCOMMONS Phosphorylase kinase activates glycogen phosphorylase PYGL,PHKG1,CALM1,PHKB,PHKA1,PHKG2,PHKA2, +PWCOMMONS Conjugation of benzoate with glycine +PWCOMMONS Cell surface interactions at the vascular wall GP6,FCER1G,COL1A1,COL1A2,CD47,PROC,OLR1,APOB,MERTK,CXADR,JAM3,JAM2,ITGB2,ITGAX,FN1,ITGB1,ITGA5,CD58,CD2,THBD,F2,F11R,ITGAL,F5,CD244,CD48,BSG,PPIA,MMP1,SPN,CAV1,PPIL2,ITGA4,PLCG1,PECAM1,PTPN6,INPP5D,ITGB3,ITGAV,PTPN11,TREM1,PROS1,CD177,SELPLG,ITGAM,ANGPT1,TEK,ANGPT4,GRB14,SOS1,GRB7,DOK2,SHC1,ANGPT2,PLCG2, +PWCOMMONS Tie2 Signaling TEK,ANGPT4,GRB14,SOS1,GRB7,PTPN11,DOK2,SHC1,ANGPT2, +PWCOMMONS PECAM1 interactions PECAM1,PTPN6,INPP5D,ITGB3,ITGAV,PTPN11, +PWCOMMONS Basigin interactions PPIA,MMP1,SPN,CAV1,PPIL2, +PWCOMMONS Breakdown of hydrogen peroxide to water and molecular oxygen +PWCOMMONS Digestion of dietary carbohydrate SI,LCT,MGAM,SLC2A2,TREH,SLC2A5, +PWCOMMONS De novo synthesis of UMP GLRX,TXN,DHODH,CPS1,UPP1,ASS1,CAD,CMPK1,OAT,GYS2,UMPS,UGDH,RRM2,RRM1,ARG1,GBE1,TXNRD1,DPYD,DPYS,PYCR1,NT5C1A,CTPS,NME2,NME1,OTC,SLC35D1,ASL,GSR,UPB1, +PWCOMMONS Vamp8 associated clathrin derived vesicle budding VAMP8,AP1G1,AP1B1,HSPA8,DNAJC6,STX4,VAMP7,SNAP23,VAMP2,SH3GL2,ARF1,GBF1,VTI1B, +PWCOMMONS Synthesis of GPI-anchored proteins PIGL,PLAUR,PIGG,PIGF,PIGH,DPM2,PIGC,PIGA,PIGP,PIGO,PIGB,PGAP1,PIGM,PIGX,PIGU,PIGT,GPAA1,PIGS,PIGK,PIGV,PIGN,DPM3,DPM1, +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGL,PLAUR,PIGG,PIGF,PIGH,DPM2,PIGC,PIGA,PIGP,PIGO,PIGB,PGAP1,PIGM,PIGX,PIGU,PIGT,GPAA1,PIGS,PIGK,PIGV,PIGN, +PWCOMMONS Synthesis of dolichol-phosphate mannose DPM2,DPM1,PIGB,PGAP1,PIGM,PIGX,PLAUR,PIGU,PIGT,GPAA1,PIGS,PIGK,PIGV,PIGG,PIGF,PIGN,PIGO, +PWCOMMONS Attachment of GPI anchor to uPAR PGAP1,PIGU,PIGT,GPAA1,PIGS,PIGK, +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase DBT,BCKDHA,BCKDHB,DLD,UROD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,MCEE,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,ACADSB,PCCB,PCCA,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,MUT,HSD17B10,FH,INS,SYT5, +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,PGLS,GYG1,UPP1,ADSL,ATIC,OAT,NP,GYS2,TXN,PYGM,ARG1,KCNJ11,AMPD3,RPE,GLRX,DPYD,GART,DPYS,AK1,PYGL,UMPS,VAMP2,NT5C1A,CTPS,PRPS1,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,INS,SYT5,SLC35D1,PFAS,ASL,UPB1,XDH,PAICS,CPS1,TALDO1,ASS1,AGL,CMPK1,CAT,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,TKT,PGM1,GBE1,TXNRD1,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Grb2 events in EGFR signaling RAF1,YWHAB,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SHC1,SOS1,MAP2K1,EGFR,EGF, +PWCOMMONS Base-Excision Repair, AP Site Formation XRCC1,POLB,FEN1,APEX1,POLD4,POLD3,POLD2,POLD1,OGG1,MPG,MUTYH,SMUG1,CCNO,TDG,NTHL1,LIG1,PCNA, +PWCOMMONS Displacement of DNA glycosylase by APE1 OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Removal of DNA patch containing abasic residue PCNA,POLD4,POLD3,POLD2,POLD1,POLB,LIG3,XRCC1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway LIG3,XRCC1,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway PCNA,POLD4,POLD3,POLD2,POLD1,POLB,LIG3,XRCC1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway PCNA,POLD4,POLD3,POLD2,POLD1,POLB,LIG3,XRCC1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Depurination OGG1,MPG,MUTYH, +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected purine MUTYH,APEX1,OGG1, +PWCOMMONS Vpu mediated degradation of CD4 CD4,SKP1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS APOBEC3G mediated resistance to HIV-1 infection BANF1, +PWCOMMONS Cell Cycle, Mitotic RB1,CDC6,TFDP1,E2F1,POLE2,POLE,PRIM2,POLA1,PRIM1,POLA2,CDC45L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,GINS4,GINS1,GINS2,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,DNA2,RPA1,RPA3,RPA2,FEN1,RFC2,RFC1,RFC3,RFC5,RFC4,CDT1,GMNN,MCM10,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,RPA4,CDC7,DBF4,CDC2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CCNB1,CDC20,WEE1,CCNB2,CUL1,BTRC,SKP1,XPO1,FBXO5,CCNH,CDK7,MNAT1,PSMA3,PSMC6,PSMD8,PSMD10,PSMB5,PSMD1,PSMD6,PSMB4,PSMD4,PSMB8,PSMA2,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMD13,PSMB2,PSMD14,PSMB1,PSMA6,PSMB10,PSMB9,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,CDC25C,CHEK1,ATM,TP53,CKS1B,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,CDKN1A,ATRIP,CLSPN,HUS1,RAD1,CCND1,CDK4,PLK1,PKMYT1,CCNA2,CCNA1,CDC25B,CEP250,CKAP5,ALMS1,ODF2,CEP152,SSNA1,CEP110,CLASP1,NEDD1,CEP135,DYNC1H1,AZI1,CEP57,TSGA14,PRKACA,CEP72,CEP76,MAPRE1,CEP164,TUBG1,PLK4,CSNK1E,AKAP9,PCM1,YWHAG,PRKAR2B,CEP290,YWHAE,NLP,OFD1,SDCCAG8,PCNT,FGFR1OP,DCTN3,CEP78,HSP90AA1,PPP2R1A,CEP110,CDK5RAP2,CEP70,CEP63,TUBB2C,CENPJ,CEP27,TUBB,ACTR1A,CEP192,NDE1,TUBA4A,CSNK1D,SFI1,DYNLL1,TUBB4,DCTN2,TUBA1A,NEK2,PAFAH1B1,CETN2,DYNC1I2,NUMA1,TUBGCP4,TUBGCP5,TUBGCP6,TUBG2,TUBGCP3,TUBGCP2,DHFR,TYMS,RRM2,TK2,CCNE1,BUB3,BUB1B,MAD2L1,MAD1L1,PTTG1,REC8,STAG2,SMC3,SMC1A,RAD21,STAG1,CCDC99,CENPA,NUDC,ZWINT,CENPF,NDEL1,KIF2A,SKA1,SGOL1,RANGAP1,ERCC6L,BUB1,KIF2C,SGOL2,TAOK1,RANBP2,AHCTF1,RCC2,KIF18A,CLASP2,CLIP1,PPP1CC,INCENP,KIF2B,FAM33A,CENPE,B9D2,RPS27,CENPN,APITD1,CENPL,CENPC1,CENPT,CENPM,MLF1IP,CENPO,CENPP,CENPQ,CENPI,CENPH,CENPK,AURKB,CDCA8,BIRC5,NUP85,SEC13,NUP107,NUP133,NUP160,NUP37,NUP43,ZWILCH,ZW10,KNTC1,CASC5,MIS12,PMF1,DSN1,NSL1,NUF2,NDC80,SPC24,SPC25,KIF20A,KIF23,GORASP1, +PWCOMMONS APC/C-mediated degradation of cell cycle proteins ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC20,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC2,CCNB1,PTTG1,BUB3,BUB1B,MAD2L1,PLK1,FBXO5,CDK2,CUL1,BTRC,SKP1,NEK2, +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC20,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins CCNB1,CDC20,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,FZR1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,PTTG1,BUB3,BUB1B,MAD2L1,PLK1,FBXO5, +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,PSMA3,PSMC6,PSMD8,PSMD10,PSMB5,PSMD1,PSMD6,PSMB4,PSMD4,PSMB8,PSMA2,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMD13,PSMB2,PSMD14,PSMB1,PSMA6,PSMB10,PSMB9,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Gluconeogenesis NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,GOT2,PGLS,HADH,UPP1,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Peptide ligand-binding receptors GPER,KNG1,C5AR1,C5,PRLHR,DARC,KISS1,KISS1R,GAL,F2,TAC3,TACR3,TAC1,TACR2,TACR1,POMC,MC2R,XCR1,IL8RB,CXCL16,CXCR6,CX3CL1,CCL25,CCL5,IL8RA,CCR10,CCR7,CCL16,CCL20,CCR6,CCK,HCRTR2,HCRT,NPFF,HCRTR1,QRFPR,QRFP,AGT,NTS,PNOC,OPRL1,MGLL,AVP,AVPR2,PFKFB1,MLXIPL,CREB1,LIPE,GNAS,OXTR,OXT,FABP4, +PWCOMMONS Vasopressin-like receptors AVP,AVPR2,PFKFB1,MLXIPL,CREB1,LIPE,GNAS,OXTR,OXT,FABP4, +PWCOMMONS Orexin and neuropeptides FF and QRFP bind to their respective receptors HCRT,NPFF,HCRTR1,QRFPR,QRFP, +PWCOMMONS Tachykinin receptors bind tachykinins TACR3,TAC1,TACR2,TACR1, +PWCOMMONS Chemokine receptors bind chemokines IL8RB,CXCL16,CXCR6,CX3CL1,CCL25,CCL5,IL8RA,CCR10,CCR7,CCL16,CCL20,CCR6, +PWCOMMONS Tryptophan catabolism AFMID,ACMSD,NMNAT2,KYNU,HAAO,TDO2,NMNAT3,QPRT,KMO,NADK,NMNAT1, +PWCOMMONS trans-Golgi Network Vesicle Budding VAMP8,AP1G1,AP1B1,HSPA8,DNAJC6,STX4,VAMP7,SNAP23,VAMP2,SH3GL2,ARF1,GBF1,VTI1B, +PWCOMMONS Vamp7 associated clathrin derived vesicle budding VAMP8,AP1G1,AP1B1,HSPA8,DNAJC6,STX4,VAMP7,SNAP23,VAMP2,SH3GL2,ARF1,GBF1,VTI1B, +PWCOMMONS Receptor-ligand complexes bind G proteins PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4, +PWCOMMONS RNA Polymerase III Transcription Initiation BDP1,TBP,POU2F1,ZNF143,SNAPC1,SNAPC2,SNAPC3,SNAPC5,SNAPC4,POLR3B,POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,BRF1,GTF3C2,GTF3C3,GTF3C4,GTF3C5,GTF3C1,GTF3A, +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter BDP1,TBP,POU2F1,ZNF143,SNAPC1,SNAPC2,SNAPC3,SNAPC5,SNAPC4,POLR3B,POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E, +PWCOMMONS RNA Polymerase III Chain Elongation POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,NFIX,SSB,NFIB,NFIA,NFIC, +PWCOMMONS RNA Polymerase III Transcription Termination POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,NFIX,SSB,NFIB,NFIA,NFIC, +PWCOMMONS COPI Mediated Transport ARCN1,COPG,COPB1,COPZ1,COPE,COPB2,COPA,ARF1,GBF1, +PWCOMMONS IRS-related events FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1,PDPK1,MAP2K2,RAF1,YWHAB,MAP2K1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SOS1,SHC1,INSR,INS, +PWCOMMONS IRS-mediated signalling FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1,PDPK1,MAP2K2,RAF1,YWHAB,MAP2K1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SOS1,SHC1, +PWCOMMONS NFG and proNGF binds to p75NTR RELA,MAPK8,SMPD2,MAGED1,NGFR,BAD,TRAF6,MYD88,NFKBIA,SQSTM1,IKBKB,PSENEN,NGF,AATF,RIPK2, +PWCOMMONS Synthesis of deoxyribonucleoside 5'-diphosphates from ribonucleoside 5'-diphosphates TXNRD1,NME2,NME1,GLRX,RRM2,RRM1,RRM2B,GSR, +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin RRM2,RRM1,TXN,TXNRD1,NME2,NME1, +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) GLRX,RRM2,RRM1,TXNRD1,NME2,NME1, +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and glutaredoxin RRM1,GLRX,GSR, +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (glutaredoxin) RRM1,GLRX,GSR, +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin TXNRD1,NME2,NME1,GLRX,RRM2,RRM1,RRM2B, +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) RRM1,RRM2B, +PWCOMMONS Reversible phosphorylation of nucleoside diphosphates GBE1,GYS2,UGDH,SLC35D1,NME1,CTPS,NME2,NME3,NME4, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase C hexamer GBE1,GYS2,UGDH,NME3,SLC35D1, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A,B heterohexamer CTPS,GBE1,GYS2,NME2,NME1,UGDH,SLC35D1, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase B hexamer GBE1,GYS2,UGDH,NME2,SLC35D1, +PWCOMMONS Translesion synthesis by Pol zeta +PWCOMMONS Death Receptor Signalling TNFSF10,FADD,CASP10,CASP8,CFLAR,BCL2L1,BID,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,BAX,BAK1,TNFRSF1A,TNF,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,TRAF2,RIPK1,TRADD,BMX,BCL2,CDH1,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,BAD,PLEC1,FASLG,FAS, +PWCOMMONS TNF signaling BID,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,BAX,BAK1,TNFRSF1A,TNF,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,CASP8,FADD,TRAF2,RIPK1,TRADD,BMX,BCL2,CDH1,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,BAD,PLEC1, +PWCOMMONS TRAIL signaling TNFSF10,FADD,CASP10,CASP8,CFLAR, +PWCOMMONS eNOS activation and regulation CAV1,HSP90AA1,CALM1,LYPLA1,WASL,NOSTRIN,ZDHHC21,AKT1,NOSIP, +PWCOMMONS eNOS acylation cycle CAV1,HSP90AA1,CALM1,LYPLA1,WASL,NOSTRIN,ZDHHC21,AKT1, +PWCOMMONS NOSTRIN mediated eNOS trafficking WASL,NOS3,NOSTRIN,CALM1,HSP90AA1,AKT1, +PWCOMMONS eNOS activation NOS3,CAV1,HSP90AA1,LYPLA1,WASL,NOSTRIN,ZDHHC21,AKT1, +PWCOMMONS NOSIP mediated eNOS trafficking NOS3, +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells GLUL,RIMS1,CPLX1,SLC18A3,VAMP2,RAB3A,SYT1,SLC17A7,SLC38A1,UNC13B,DBT,BCKDHA,BCKDHB,DLD,BCAT1,MCCC2,MCCC1,AUH,IVD,BCAT2, +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism GLUL,RIMS1,CPLX1,SLC18A3,VAMP2,RAB3A,SYT1,SLC17A7,SLC38A1,UNC13B, +PWCOMMONS Glutamate Neurotransmitter Release Cycle DBT,BCKDHA,BCKDHB,DLD,RIMS1,CPLX1,SLC18A3,VAMP2,RAB3A,SYT1,SLC17A7,UNC13B,BCAT1,MCCC2,MCCC1,AUH,IVD,BCAT2, +PWCOMMONS Oxidative decarboxylation of alpha-ketoisocaproate to isovaleryl-CoA by branched-chain alpha-ketoacid dehydrogenase BCKDHA,BCKDHB,DLD,MCCC2,MCCC1,AUH,IVD, +PWCOMMONS Amine ligand-binding receptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4,HRH1,HRH2, +PWCOMMONS Serotonin receptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4, +PWCOMMONS Dopamine receptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4, +PWCOMMONS Adrenoceptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4, +PWCOMMONS G-protein mediated events GNAL,CALM1,CAV1,HSP90AA1,NOS3,VAMP2,INS,SYT5,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4, +PWCOMMONS Adenylate cyclase activating pathway +PWCOMMONS Adenylate cyclase inhibitory pathway GNAL, +PWCOMMONS Polyamines are oxidized to amines, aldehydes and H2O2 by PAOs +PWCOMMONS Further platelet releasate PLEK,PPIA,PSAP,CAP1,FLNA,CALU,SOD1,TF,TUBA4A,CFL1,TTN,PFN1,VCL,BRPF3,ACTBL3,WDR1,SCG3,HSPA5,CALM1,APOA1, +PWCOMMONS HIV-1 elongation arrest and recovery TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1, +PWCOMMONS NRAGE signals death through JNK MAGED1,NGFR,BAD,AATF, +PWCOMMONS Glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer GYS2,GYG2,GYS1,GBE1, +PWCOMMONS Activation of BAD and translocation to mitochondria YWHAB,AKT1,BCL2,BCL2L1,PPP3R1,PPP3CC,BID, +PWCOMMONS Nucleotide Excision Repair PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,ERCC5,TCEA1,ERCC8,XAB2,ERCC6,ERCC4,ERCC1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2,XPA,DDB2,DDB1,RAD23B,XPC, +PWCOMMONS Global Genomic NER (GG-NER) PCNA,POLD4,POLD3,POLD2,POLD1,ERCC5,XPA,DDB2,DDB1,ERCC4,ERCC1,RAD23B,XPC,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RPA1,RPA3,RPA2,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4, +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2, +PWCOMMONS Formation of incision complex in GG-NER PCNA,POLD4,POLD3,POLD2,POLD1,ERCC5,XPA,DDB2,DDB1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RPA1,RPA3,RPA2,RAD23B,XPC,ERCC4,ERCC1,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4, +PWCOMMONS DNA Damage Recognition in GG-NER PCNA,POLD4,POLD3,POLD2,POLD1,ERCC5,XPA,DDB2,DDB1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RPA1,RPA3,RPA2,RAD23B,XPC,ERCC4,ERCC1,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4, +PWCOMMONS Cell death signalling via NRAGE, NRIF and NADE NGFRAP1,NGFR,SQSTM1,MAPK8,PSENEN,TRAF6,MAGED1,BAD,AATF, +PWCOMMONS NRIF signals cell death from the nucleus MAPK8,PSENEN,NGFR,TRAF6, +PWCOMMONS NADE modulates death signalling NGFRAP1,NGFR, +PWCOMMONS Activation and oligomerization of BAK protein DSG3,GSN,DIABLO,XIAP,CASP3,BAK1,BID,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,MAPT,BIRC2,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2, +PWCOMMONS Toll Receptor Cascades MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR6,TLR2,ATF2,IRF3,TBK1,TICAM1,TLR3,MAP3K7IP1,MAP3K7IP2,MAP3K7,CHUK,IKBKB,IKBKG,RELA,RIPK1,JUN,MAPK1,MAPK8,TLR10,LY96,TLR4,CD180,LY86,TICAM2,LBP,CD14,TLR5,ZFYVE20,EEA1,TLR9,PIK3C3,PIK3R4, +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ZFYVE20,ECSIT,SIGIRR,EEA1,TLR9,PIK3C3,PIK3R4, +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade LY96,TLR4,MYD88,IRAK4,CD180,LY86,ECSIT,IRF3,RIPK1,TICAM1,TICAM2,IRAK3,LBP,MAP3K1,TRAF6,SIGIRR,TBK1,CD14, +PWCOMMONS Activated TLR4 signalling TICAM1,TICAM2,LY96,TLR4,TBK1,IRF3,IRAK4,MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR, +PWCOMMONS TRAM Cascade TICAM1,TICAM2,LY96,TLR4,TBK1,IRF3, +PWCOMMONS Toll Like Receptor 10 (TLR10) Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR10, +PWCOMMONS Toll Like Receptor 5 (TLR5) Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR5, +PWCOMMONS Toll Like Receptor 7/8 (TLR7/8) Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR, +PWCOMMONS Toll Like Receptor 2 Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR6,TLR2, +PWCOMMONS Toll Like Receptor TLR1:TLR2 Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR2, +PWCOMMONS Toll Like Receptor TLR6:TLR2 Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR6,TLR2, +PWCOMMONS P450 Dehydrogenation of alkanes to form alkenes CYP3A4, +PWCOMMONS Activation of Pro-Caspase 8 BID,MST4,CASP8,FADD,TNFRSF10B,TNFSF10,DSG3,GSN,DIABLO,XIAP,CASP3,BAX,BAK1,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,TRAF2,RIPK1,TRADD,BMX,BCL2,CDH1,FASLG,FAS,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,BAD,PLEC1, +PWCOMMONS Lysine catabolism NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,AASS,PGLS,HADH,UPP1,GOT1,PGK1,ADSL,GCDH,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,AADAT,ASS1,CMPK1,ALAD,CS,CAT,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,TKT,FECH,SUCLA2,GBE1,TXNRD1,TPI1,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Signalling by NGF SH3GL2,AP2A2,AP2A1,NGF,DNM1,RPS6KA5,MAPKAPK2,ATF1,CREB1,MAPK7,ADCYAP1R1,ADORA2A,ADCYAP1,RAF1,YWHAB,SHC1,SOS1,MAP2K1,CALM1,HSP90AA1,CAV1,NOS3,FRS2,MAPK3,MAPK1,MAP2K2,RAP1A,BRAF,PLCG1,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,ADRBK1,CAMK4,VAMP2,KIDINS220,INS,SYT5,MAP2K5,RALGDS,RICTOR,FRAP1,LST8,PDPK1,NR4A1,FOXO1,CHUK,THEM4,PTEN,BAD,RHOA,TRIB3,PHLPP,CASP9,AKT1S1,MDM2,RPS6KB2,TRAF6,NGFR,NFKB1,RELA,ADAM17,PSENEN,SQSTM1,IKBKB,NFKBIA,PRKCI,MYD88,RIPK2,ARHGEF1,ARHGDIA,SMPD2,PRDM4,MAPK8,MAGED1,AATF,YWHAE,NGFRAP1, +PWCOMMONS TRKA signalling from the plasma membrane MAPK7,CREB1,MAP2K5,CAV1,HSP90AA1,CALM1,NOS3,PLCG1,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,ADRBK1,CAMK4,AKT1,FRS2,KIDINS220,VAMP2,INS,SYT5,PLA2G4A,MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,BRAF,RAP1A,SHC1,SOS1,RALGDS,RICTOR,FRAP1,LST8,PDPK1,NR4A1,FOXO1,CHUK,THEM4,PTEN,BAD,RHOA,TRIB3,PHLPP,CASP9,AKT1S1,MDM2,RPS6KB2, +PWCOMMONS Signalling to ERKs NGF,MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1,FRS2,BRAF,RAP1A,SHC1,SOS1,RALGDS, +PWCOMMONS Signalling to p38 via RIT and RIN RAF1,YWHAB,MAP2K1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,NGF,BRAF, +PWCOMMONS Prolonged ERK activation events NGF,MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1,FRS2,BRAF,RAP1A, +PWCOMMONS Frs2-mediated activation RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1,FRS2,NGF,RAP1A,KIDINS220,BRAF, +PWCOMMONS Signalling to ERK5 CREB1,MAP2K5, +PWCOMMONS Signalling to STAT3 +PWCOMMONS PLC-gamma1 signalling HSP90AA1,CALM1,NOS3,PLCG1,NGF,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,AKT1,FRS2,KIDINS220,VAMP2,INS,SYT5,PLA2G4A, +PWCOMMONS p75 NTR receptor-mediated signalling NGFR,NFKB1,RELA,ADAM17,PSENEN,SQSTM1,IKBKB,NFKBIA,PRKCI,MYD88,RIPK2,ARHGEF1,RHOA,ARHGDIA,NGF,SMPD2,PRDM4,MAPK8,MAGED1,BAD,AATF,YWHAE,NGFRAP1, +PWCOMMONS p75NTR signals via NF-kB RELA,TRAF6,SQSTM1,NGFR,IKBKB,NFKBIA,PRKCI,MYD88,RIPK2, +PWCOMMONS p75NTR recruits signalling complexes RELA,PRKCI,TRAF6,SQSTM1,NGFR,MYD88,NFKBIA,RIPK2,IKBKB, +PWCOMMONS p75NTR regulates axonogenesis NGFR,RHOA,ARHGDIA,NGF, +PWCOMMONS Axonal growth stimulation NGF,ARHGDIA,NGFR,ARHGEF1, +PWCOMMONS Axonal growth inhibition (RHOA activation) NGFR,RHOA,ARHGDIA, +PWCOMMONS Regulated proteolysis of p75NTR NGFR,NFKB1,RELA,ADAM17,PSENEN, +PWCOMMONS p75NTR negatively regulates cell cycle via SC1 NGFR,NGF, +PWCOMMONS Retrograde neurotrophin signalling SH3GL2,AP2A2,AP2A1,NGF,DNM1, +PWCOMMONS NGF processing YWHAB,SHC1,SOS1,NGF,MAP2K1,CALM1,HSP90AA1,CAV1,NOS3,MAPK3,MAPK1,MAP2K2,PLCG1,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,VAMP2,FRS2,KIDINS220,INS,SYT5, +PWCOMMONS Activation of TRKA receptors ADORA2A,ADCYAP1,RAF1,YWHAB,SHC1,SOS1,NGF,MAP2K1,CALM1,HSP90AA1,CAV1,NOS3,FRS2,MAPK3,MAPK1,MAP2K2,RAP1A,BRAF,PLCG1,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,VAMP2,KIDINS220,INS,SYT5, +PWCOMMONS NGF-independant TRKA activation ADORA2A,ADCYAP1, +PWCOMMONS TRKA activation by NGF YWHAB,SHC1,SOS1,NGF,MAP2K1,CALM1,HSP90AA1,CAV1,NOS3,FRS2,MAPK3,MAPK1,MAP2K2,RAP1A,BRAF,PLCG1,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,VAMP2,KIDINS220,INS,SYT5, +PWCOMMONS Elevation of cytosolic Ca++ levels +PWCOMMONS Nef mediated downregulation of MHC class I complex cell surface expression AP1G1,AP1B1,B2M,HLA-A, +PWCOMMONS P450 Prostaglandin isomerizations TBXAS1, +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates TK1,NME2,NME1,DTYMK,UCK2,GUK1,DGUOK,GYG2,TXN,GLRX,GBE1,TXNRD1,UCK1,CTPS,CMPK1,GYS2,UGDH,RRM2,RRM1,SLC35D1,GSR,ADK,DCK,TYMS,DCTD, +PWCOMMONS Phosphorylation of cytosolic nucleosides by deoxycytidine kinase DCK,DTYMK,TYMS,NME2,NME1,DCTD, +PWCOMMONS Phosphorylation of cytosolic nucleosides by thymidine kinase 1, soluble NME2,NME1,DTYMK, +PWCOMMONS Phosphorylation of cytosolic nucleosides by adenosine kinase NME1,ADK, +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 2 +PWCOMMONS Phosphorylation of mitochondrial nucleosides by deoxyguanosine kinase NME1,GUK1,DGUOK, +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 TXN,GLRX,GBE1,TXNRD1,UCK1,CTPS,CMPK1,GYS2,NME2,NME1,UGDH,RRM2,RRM1,SLC35D1,GSR, +PWCOMMONS Phosphorylation of mitochondrial nucleosides by thymidine kinase 2, mitochondrial +PWCOMMONS Glucagon signaling in metabolic regulation PFKFB1,MLXIPL,GCG,GCGR,GNAS,CREB1,LIPE,FABP4, +PWCOMMONS G(s)-alpha mediated events in glucagon signalling PFKFB1,MLXIPL,GCG,GCGR,GNAS,CREB1,LIPE,FABP4, +PWCOMMONS PKA activation in glucagon signalling LIPE,PFKFB1,MLXIPL,CREB1,FABP4,GNAS, +PWCOMMONS Glucose metabolism NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,BSG,CMPK1,ALAD,CS,CAT,PPOX,SLC25A1,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR,GYG1,PYGM,PYGL,AGL,PGM1,PHKG1,CALM1,PHKB,PHKA1,PHKG2,PHKA2,GYS1,PFKFB1,PFKFB2,PFKFB4,PFKFB3,MLX,MLXIPL,HK1,GPT,PKM2,FASN,AGPAT1,PPAP2C,HK3,ACLY,ACACB,HK2,PPAP2B,DGAT1,PPAP2A,SLC2A4,SLC2A1,SLC2A2,SLC2A3,GCKR,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Pyruvate metabolism NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,BSG,CMPK1,ALAD,CS,CAT,PPOX,SLC25A1,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Glucose uptake PFKFB2,PFKFB4,PFKFB3,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,HK1,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,HK3,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,HK2,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A,SLC2A4,SLC2A1,SLC2A2,SLC2A3,GCKR,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,HK1,RPE,SLC2A4,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,SLC2A1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,PFKFB2,PFKFB4,PFKFB3,GOT1,SLC2A2,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,SLC2A3,PRPS1,ACACB,OTC,FH,HK2,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,HK1,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,HK3,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,PFKFB2,PFKFB4,PFKFB3,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,HK2,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Glycogen synthesis PGM1,GYG1,GBE1,GYS2,GYS1,UGDH,SLC35D1, +PWCOMMONS Phosphorylated glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer when activated by glucose-6-phosphate GYS1,GYS2,GYG2,GBE1, +PWCOMMONS Glycogen branching enzyme transfers terminal alpha(1,4)glucose blocks to form alpha(1,6) branches GYG2,GBE1, +PWCOMMONS UTP and glucose 1-phosphate react to form UDP-glucose and pyrophosphate GYG1,GBE1,GYS2,GYS1,UGDH,SLC35D1, +PWCOMMONS Glycogen breakdown (glycogenolysis) GART,NT5C2,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXN,PGLS,XDH,PAICS,CPS1,TALDO1,UPP1,ASS1,CMPK1,ADSL,ATIC,OAT,NP,GYS2,CAT,GYG1,PYGM,PYGL,UMPS,UGDH,AGL,RRM2,RRM1,G6PD,AMPD1,PPAT,ARG1,KCNJ11,AMPD3,TKT,PGM1,RPE,GBE1,TXNRD1,DPYD,DPYS,AK1,PHKG1,CALM1,PHKB,PHKA1,PHKG2,PHKA2,PYCR1,VAMP2,NT5C1A,CTPS,PRPS1,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,NME2,RPIA,OTC,AMPD2,INS,SYT5,PGD,PFAS,SLC35D1,GSR,ASL,UPB1, +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,PGLS,GYG1,UPP1,ADSL,ATIC,OAT,NP,GYS2,AGL,TXN,PYGM,ARG1,KCNJ11,AMPD3,RPE,GLRX,DPYD,GART,DPYS,AK1,PYGL,UMPS,VAMP2,NT5C1A,CTPS,PRPS1,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,INS,SYT5,SLC35D1,PFAS,ASL,UPB1,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,CAT,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,TKT,PGM1,GBE1,TXNRD1,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,PGLS,GYG1,UPP1,ADSL,ATIC,OAT,NP,GYS2,TXN,PYGM,ARG1,KCNJ11,AMPD3,RPE,GLRX,DPYD,GART,DPYS,AK1,PYGL,UMPS,VAMP2,NT5C1A,CTPS,PRPS1,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,INS,SYT5,SLC35D1,PFAS,ASL,UPB1,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,CAT,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,TKT,PGM1,GBE1,TXNRD1,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Down-stream signal transduction RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1,RASA1,PDGFRB,PTPN11,PLCG1,SOS1,BCAR1,GRB7, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by deoxythymidylate kinase (thymidylate kinase) NME1,DTYMK, +PWCOMMONS Urea synthesis NAGS,CPS1,OAT,ASL,ASS1,ARG1,PYCR1, +PWCOMMONS Vif-mediated degradation of APOBEC3G TCEB1,CUL5,TCEB2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,TXNRD1,AK1,VAMP2,NME2,NME1,RRM2,RRM1,INS,SYT5,GSR,KCNJ11,GUK1,DTYMK,AK5,GYG2,GBE1,CTPS,CMPK1,GYS2,UGDH,SLC35D1,AK2, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 5 +PWCOMMONS Reversible phosphorylation of mitochondrial nucleoside monophosphates by adenylate kinase 2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by guanylate kinase 1 GLRX,TXNRD1,NME2,NME1,RRM2,RRM1,GUK1,GSR, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase TXN,GLRX,GBE1,TXNRD1,CTPS,CMPK1,GYS2,NME2,NME1,UGDH,RRM2,RRM1,SLC35D1,GSR, +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells ONECUT3,PDX1,NEUROG3,ONECUT1,INSM1,FGF10,HES1,NKX6-1,NKX2-2,PTF1A, +PWCOMMONS Regulation of gene expression in late stage (branching morphogenesis) pancreatic bud precursor cells NEUROD1,NEUROG3,HES1,INSM1,ONECUT3,NKX2-2,ONECUT1, +PWCOMMONS Nef Mediated CD4 Down-regulation AP2S1,AP2B1,AP2M1,CD4,ARF1,LCK, +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization DSG3,GSN,DIABLO,XIAP,CASP3,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,MAPT,BIRC2,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2, +PWCOMMONS Axon guidance MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,CREB1,FYN,NCAM1,PTK2,PTPRA,SPTB,SOS1,GFRA1,AGRN,CNTN2,NCAN,PRNP,GDNF,ATF1, +PWCOMMONS NCAM signaling for neurite out-growth MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,CREB1,FYN,NCAM1,PTK2,PTPRA,SPTB,SOS1,GFRA1,AGRN,CNTN2,NCAN,PRNP,GDNF,ATF1, +PWCOMMONS NCAM1 interactions GFRA1,AGRN,CNTN2,NCAN,PRNP,GDNF, +PWCOMMONS Isoleucine catabolism DBT,BCKDHA,BCKDHB,DLD,UROD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,BCAT1,MCEE,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,BCAT2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,ACADSB,PCCB,PCCA,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,MUT,HSD17B10,FH,INS,SYT5, +PWCOMMONS Post-translational protein modification F10,F9,PROS1,PROZ,GAS6,PROC,F2,GGCX,FURIN,NOTCH2,DHPS,DOHH,PIGW,PIGL,PLAUR,PIGG,PIGF,PIGH,DPM2,PIGC,PIGA,PIGP,PIGO,PIGB,PGAP1,PIGM,PIGX,PIGU,PIGT,GPAA1,PIGS,PIGK,PIGV,PIGN,DPM3,DPM1, +PWCOMMONS Hypusine synthesis from eIF5A-lysine DOHH, +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins F10,F9,PROS1,PROZ,GAS6,PROC,F2,GGCX,FURIN,NOTCH2, +PWCOMMONS Removal of aminoterminal propeptides from gamma-carboxylated proteins F7,PROS1,PROZ,GAS6,F2,FURIN,NOTCH2,F9,PROC, +PWCOMMONS Gamma-carboxylation of protein precursors F10,F9,PROS1,PROZ,GAS6,PROC,F2,GGCX,FURIN,NOTCH2, +PWCOMMONS Metabolism of non-coding RNA WDR77,PRMT5,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GEMIN4,SIP1,GEMIN6,GEMIN5,DDX20,SMN1,GEMIN7,SNUPN,PHAX,NCBP2,NCBP1,TGS1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Platelet Adhesion to exposed collagen ITGB1,COL1A1,COL1A2,CD36,VWF,GP5,GP9,GP1BA,GP1BB, +PWCOMMONS Collagen adhesion via Gp IV COL1A1,COL1A2, +PWCOMMONS Biotin metabolism +PWCOMMONS ChREBP activates metabolic gene expression NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,ACLY,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,FASN,PRPS1,DLST,OGDH,ACACB,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,AGPAT1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PPAP2C,PCK2,SUCLA2,GBE1,TXNRD1,PPAP2B,TPI1,SLC25A10,G6PC,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,GSR,PPAP2A, +PWCOMMONS Dopamine Neurotransmitter Release Cycle DDC,RIMS1,CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,SLC22A2, +PWCOMMONS Synthesis of Dopamine RIMS1,CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,SLC22A2,DDC, +PWCOMMONS RNA Polymerase II Transcription Termination EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2, +PWCOMMONS Electric Transmission Across Gap Junctions GJD2,PANX2,PANX1,GJC1, +PWCOMMONS RNA Polymerase III Transcription POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,NFIX,SSB,NFIB,NFIA,NFIC,BRF2,BDP1,TBP,POU2F1,ZNF143,SNAPC1,SNAPC2,SNAPC3,SNAPC5,SNAPC4,BRF1,GTF3C2,GTF3C3,GTF3C4,GTF3C5,GTF3C1,GTF3A, +PWCOMMONS Host Interactions of HIV factors BANF1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,MAPT,BIRC2,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,CLSPN,DFFA,DFFB,KPNB1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,ATP6V1H,AP2S1,AP2B1,AP2M1,CD4,ARF1,LCK,CD28,PACS1,AP1G1,AP1B1,B2M,HLA-A,FYN,DOCK2,ELMO1,HCK,RAN,XPO1,RANBP1,RANGAP1,RBX1,TCEB1,CUL5,TCEB2,PPIA,CDK9,CCNT1,BTRC,SKP1, +PWCOMMONS Interactions of Vpr with host cellular proteins BANF1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,MAPT,BIRC2,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,CLSPN,DFFA,DFFB,KPNB1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2, +PWCOMMONS Vpr-mediated nuclear import of PICs BANF1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis AP2S1,AP2B1,AP2M1,CD4,ARF1,LCK,CD28,PACS1,AP1G1,AP1B1,B2M,HLA-A,FYN,PAK2,DOCK2,ELMO1,HCK, +PWCOMMONS Nef and signal transduction LCK,PAK2,DOCK2,ELMO1,HCK, +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters AP2S1,AP2B1,AP2M1,CD4,ARF1,LCK,CD28,PACS1,AP1G1,AP1B1,B2M,HLA-A, +PWCOMMONS Nef Mediated CD8 Down-regulation AP2S1,AP2B1,AP2M1, +PWCOMMONS Nef mediated downregulation of CD28 cell surface expression CD28, +PWCOMMONS Regulation of beta-cell development ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,SLC30A7,GOT2,GYG2,UPP1,SPCS3,SEC11C,SEC11A,SPCS1,SPCS2,PC,CPE,ADSL,INS,PCK1,MDH1,OAT,GYS2,ECHS1,TXN,MAFA,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,SRP19,SRP9,SRP54,SRP14,SRP72,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,HNF4G,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,SRPRB,SRPR,ATIC,PFKFB1,SYT5,GART,SLC35D1,ASL,NKX6-1,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDX1,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,FOXA3,G6PC,ERO1L,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,PFKFB2,PFKFB4,PFKFB3,PCSK2,GOT1,SLC2A2,PGK1,PCSK1,GCDH,NP,NKX2-2,FOXA2,EXOC4,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,KIF5B,OTC,FH,PFAS,GPI,UROD,EXOC6,EXOC5,EXOC8,EXOC2,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,IAPP,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,TRAM2,SEC61B,SSR3,TRAM1,SSR2,SSR4,SEC61G,RPN2,RPN1,DDOST,DAD1,STT3B,STT3A,PGD,PPAP2A,NEUROD1,ONECUT3,NEUROG3,ONECUT1,INSM1,FGF10,HES1,PTF1A,NOTCH1, +PWCOMMONS NS1 Mediated Effects on Host Pathways PABPN1,CPSF4, +PWCOMMONS Inhibition of Host mRNA Processing and RNA Silencing CPSF4, +PWCOMMONS Inhibition of PKR +PWCOMMONS SHC activation RAF1,YWHAB,SHC1,SOS1,MAP2K1,MAPK3,INSR,INS,MAPK1, +PWCOMMONS Nonhomologous End-joining (NHEJ) PRKDC,XRCC6,XRCC5,XRCC4, +PWCOMMONS Processing of DNA ends prior to end rejoining XRCC4,PRKDC,XRCC6,XRCC5, +PWCOMMONS MicroRNA biogenesis POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,TARBP2,DICER1, +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) DLAT,PDHA1,PDHB,DLD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UROD,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,FH,INS,SYT5, +PWCOMMONS DNA Damage Reversal ALKBH3,MGMT, +PWCOMMONS Golgi to ER Retrograde Transport ARCN1,COPG,COPB1,COPZ1,COPE,COPB2,COPA,ARF1,GBF1, +PWCOMMONS ER to Golgi Transport PREB,SEC23A,SEC13,SEC31A, +PWCOMMONS COPII (Coat Protein 2) Mediated Vesicle Transport PREB,SEC23A,SEC13,SEC31A, +PWCOMMONS DNA Replication Pre-Initiation CDC6,TFDP1,E2F1,POLE2,POLE,PRIM2,POLA1,PRIM1,POLA2,CDC45L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,GINS4,GINS1,GINS2,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,DNA2,RPA1,RPA3,RPA2,FEN1,CDK2,RFC2,RFC1,RFC3,RFC5,RFC4,CDT1,GMNN,MCM10,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,RPA4,CDC7,DBF4,CDC2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS EGFR downregulation CBL,EGF,EPN1,EPS15L1,SH3KBP1,SH3GL2,EPS15,HGS,AP2A2,AP2A1,SPRY2, +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,METTL3,PABPC1,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,ETF1,GSPT2,SNRNP70,SNRPA,SLBP,EIF5B,EEF2, +PWCOMMONS Pyruvate metabolism and TCA cycle NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,BSG,CMPK1,ALAD,CS,CAT,PPOX,SLC25A1,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Metablism of nucleotides DPYD,OTC,DPYS,CPS1,ASL,ASS1,ARG1,UPB1,PYCR1,GYG2,GLRX,TYMS,TXN,UPP1,CMPK1,TYMP,GYS2,DCTD,UGDH,RRM2,RRM1,DTYMK,TK1,GBE1,TXNRD1,UCK1,NT5C1A,CTPS,NME2,NME1,CDA,DCK,SLC35D1,GSR,DHODH,CAD,UMPS,SLC28A3,SLC29A1,SLC29A2,SLC28A2,SLC28A1,NT5C2,XDH,GUK1,GDA,NP,CAT,ADA,ADK,DGUOK,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,AK1,VAMP2,ADSL,APRT,GMPS,IMPDH2,IMPDH1,ADSS,AMPD2,AMPD1,INS,SYT5,KCNJ11,AMPD3,GART,PAICS,ATIC,PPAT,PFAS,ADSSL1,AK5,AK2,TK2,UCK2,RRM2B,NME3,NME4,NT5E,NT5C,NT5M,NT5C1B, +PWCOMMONS Pyrimidine metabolism DPYD,OTC,DPYS,CPS1,ASL,ASS1,ARG1,UPB1,PYCR1,GYG2,GLRX,TYMS,TXN,UPP1,CMPK1,TYMP,GYS2,DCTD,UGDH,RRM2,RRM1,DTYMK,TK1,GBE1,TXNRD1,UCK1,NT5C1A,CTPS,NME2,NME1,CDA,DCK,SLC35D1,GSR,DHODH,CAD,UMPS, +PWCOMMONS Pyrimidine salvage reactions GLRX,TYMS,TXN,CPS1,UPP1,ASS1,CMPK1,OAT,TYMP,GYS2,DCTD,UGDH,RRM2,RRM1,DTYMK,ARG1,TK1,GBE1,TXNRD1,DPYD,DPYS,UCK1,PYCR1,NT5C1A,CTPS,NME2,NME1,CDA,OTC,DCK,SLC35D1,GSR,ASL,UPB1, +PWCOMMONS Pyrimidine biosynthesis (interconversion) TXN,GLRX,TYMS,GBE1,TXNRD1,CMPK1,CTPS,GYS2,NME2,NME1,DCTD,UGDH,RRM2,RRM1,DTYMK,SLC35D1,GSR, +PWCOMMONS Pyrimidine catabolism DPYD,OTC,DPYS,CPS1,ASL,ASS1,ARG1,UPB1,PYCR1, +PWCOMMONS Synaptic Transmission CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,DDC,AANAT,SLC22A2,GLS,GLUL,SLC18A3,SLC17A7,SLC38A1,UNC13B,SLC5A7,CHAT,PNMT,DBT,BCKDHA,BCKDHB,DLD,BCAT1,MCCC2,MCCC1,AUH,IVD,BCAT2,GJA10,GJD2,PANX2,PANX1,GJC1,PICK1,NSF,AKAP5,EPB41L1,DLG1,DLG4,MDM2,ALDH2,COMT,SLC6A3,BCHE, +PWCOMMONS Transmission across Electrical Synapses GJD2,PANX2,PANX1,GJC1, +PWCOMMONS Transmission across Chemical Synapses CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,DDC,AANAT,SLC22A2,GLS,GLUL,SLC18A3,SLC17A7,SLC38A1,UNC13B,SLC5A7,CHAT,PNMT,DBT,BCKDHA,BCKDHB,DLD,BCAT1,MCCC2,MCCC1,AUH,IVD,BCAT2,PICK1,NSF,AKAP5,EPB41L1,DLG1,DLG4,MDM2,ALDH2,COMT,SLC6A3,BCHE, +PWCOMMONS Neurotransmitter Release Cycle CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,DDC,AANAT,SLC22A2,GLS,GLUL,SLC18A3,SLC17A7,SLC38A1,UNC13B,SLC5A7,CHAT,PNMT,DBT,BCKDHA,BCKDHB,DLD,BCAT1,MCCC2,MCCC1,AUH,IVD,BCAT2, +PWCOMMONS Norepinephrine Neurotransmitter Release Cycle CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,SLC22A2, +PWCOMMONS Neuroransmitter Receptor Binding And Downstream Transmission In The Postsynaptic Cell NSF,AKAP5,EPB41L1,DLG1,DLG4,MDM2, +PWCOMMONS Depolarization of the Presynaptic Terminal Triggers the Opening of Calcium Channels CPLX1,VAMP2,SLC17A7,RAB3A,SYT1,SLC18A3, +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NT5C2,PFKFB1,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,GOT2,PGLS,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,ACLY,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,FASN,PRPS1,DLST,OGDH,ACACB,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,AGPAT1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PPAP2C,PCK2,SUCLA2,GBE1,TXNRD1,PPAP2B,TPI1,SLC25A10,G6PC,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,GSR,PPAP2A, +PWCOMMONS Insulin receptor recycling YWHAB,INSR,INS,RHEB,FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1,PDPK1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SHC1,SOS1,MAP2K1,MAP2K2, +PWCOMMONS Insulin receptor signalling cascade RAF1,YWHAB,SHC1,SOS1,MAP2K1,MAPK3,INSR,INS,MAPK1,RPS6KA5,ATF1,CREB1,RHEB,FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1,PDPK1, +PWCOMMONS SHC-related events RAF1,YWHAB,SHC1,SOS1,MAP2K1,MAPK3,INSR,INS,MAPK1,RPS6KA5,ATF1,CREB1, +PWCOMMONS Activation of BH3-only proteins BBC3,BCL2L1,TFDP1,E2F1,PMAIP1,BAD,YWHAB,AKT1,PPP3R1,PPP3CC,BID,MAPK8,BMF,DYNLL2,DYNLL1, +PWCOMMONS Activation of NOXA and translocation to mitochondria PMAIP1,BCL2,TFDP1,E2F1, +PWCOMMONS Activation of PUMA and translocation to mitochondria BBC3,BCL2L1,TFDP1,E2F1, +PWCOMMONS Activation of BIM and translocation to mitochondria BMF,DYNLL2,DYNLL1,BCL2, +PWCOMMONS Double-Strand Break Repair RPA3,RPA2,RAD50,MRE11A,H2AFX,BRCA1,TP53BP1,MDC1,NBN,ATM,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,RAD51,RAD52,BRCA2,PMAIP1,BCL2,BCL2L1,TP53,MDM2,BBC3,LIG4,PRKDC,XRCC6,XRCC5,XRCC4, +PWCOMMONS Ornithine and proline metabolism SMS,OAT,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ODC1,NQO1,AZIN1,ASL,ASS1,ARG1,SRM,PYCR1,PRODH,ALDH4A1, +PWCOMMONS Proline catabolism PRODH,ALDH4A1,OAT,ASL,ASS1,ARG1,PYCR1, +PWCOMMONS Ornithine metabolism SMS,OAT,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ODC1,NQO1,AZIN1,ASL,ASS1,ARG1,SRM,PYCR1, +PWCOMMONS Regulation of ornithine decarboxylase (ODC) ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ODC1,SRM,NQO1,AZIN1,SMS, +PWCOMMONS Activation of Chaperones by ATF6-alpha MBTPS1,HSPA5,MBTPS2,NFYA, +PWCOMMONS Translesion synthesis by Pol eta +PWCOMMONS Vitamin C (ascorbate) metabolism CYB5A,GSR, +PWCOMMONS Conjugation of carboxylic acids GLYAT, +PWCOMMONS Conjugation of salicylate with glycine GLYAT, +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,PAK2, +PWCOMMONS Vitamin B2 (riboflavin) metabolism FLAD1,ENPP1,ACP5, +PWCOMMONS Glucuronidation GYG2,GBE1,SLC35D1,GYS2, +PWCOMMONS Formation of the active cofactor, UDP-glucuronate GYG2,GBE1,SLC35D1,GYS2, +PWCOMMONS P450 Hydroxylations CYP2E1,CYP2A6,CYP1A2, +PWCOMMONS Simple hydroxylation CYP2E1,CYP2A6, +PWCOMMONS Activation, translocation and oligomerization of BAX DSG3,GSN,DIABLO,XIAP,CASP3,BAX,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,MAPT,BIRC2,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,BID,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2, +PWCOMMONS Generation of second messenger molecules MAP3K7,TRAF6,MALT1,BCL10,CARD11,PDPK1,NFKBIA,NFKB1,RELA,LCP2,LAT,GRAP2,ZAP70,LCK,CD4,CD3E,CD3D,CD3G,FOXO1,THEM4,PLCG1,CHUK,IKBKB,IKBKG,PRKCQ,INPP5D,UBE2V1,UBE2N,CREB1,TRAT1,ITK,MDM2,RPS6KB2,RICTOR,FRAP1,LST8,NR4A1,RIPK2,PTEN,BAD,TRIB3,CASP9,AKT1S1, +PWCOMMONS Metabolism of water-soluble vitamins and cofactors AMD1,AHCY,MTHFD1,SLC46A1,MTHFR,SRM,MTR,SMS,NNMT,TPMT,SLC19A1,SHMT1,DHFR,SLC25A32,RFK,FLAD1,ENPP1,ACP5,CYB5R3,CYB5A,GSR,FASN,PPCDC,COASY,AASDHPPT,SLC5A6,PANK2,PPCS,SLC25A16,NADSYN1,AFMID,ACMSD,NMNAT2,NAMPT,NAPRT1,KYNU,HAAO,TDO2,NMNAT3,INDO,QPRT,KMO,NADK,NMNAT1,TPK1, +PWCOMMONS Vitamin B5 (pantothenate) metabolism PPCDC,COASY,AASDHPPT,SLC5A6,PANK2,PPCS,SLC25A16, +PWCOMMONS Coenzyme A biosynthesis PPCDC,SLC25A16,COASY,AASDHPPT,PANK2,PPCS, +PWCOMMONS Vitamin B1 (thiamin) metabolism +PWCOMMONS RNA Polymerase II Transcription NCBP1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,RNGTT,RNMT,EIF5,EEF1G,EEF1D,EEF1B2,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EEF1A1,PABPC1,SNRNP70,SNRPA,APOBEC1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,METTL3,ETF1,GSPT2,EIF5B,EEF2, +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE - 11 NCBP1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,RNGTT,RNMT,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,EIF5,EEF1G,EEF1D,EEF1B2,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EEF1A1,PABPC1,SNRNP70,SNRPA,APOBEC1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,METTL3,ETF1,GSPT2,EIF5B,EEF2, +PWCOMMONS Signaling by Wnt CSNK1A1,CUL1,BTRC,SKP1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Degradation of beta-catenin by the destruction complex CSNK1A1,CUL1,BTRC,SKP1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Beta-catenin phosphorylation cascade CSNK1A1,CUL1,BTRC,SKP1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS DNA Repair PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,ERCC5,TCEA1,ERCC8,XAB2,ERCC6,ERCC4,ERCC1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2,XPA,DDB2,DDB1,RAD23B,XPC,FANCI,ZBTB32,USP1,FANCD2,RAD50,MRE11A,H2AFX,BRCA1,TP53BP1,MDC1,NBN,ATM,RAD51,RAD52,BRCA2,PMAIP1,BCL2,BCL2L1,TP53,MDM2,BBC3,LIG4,PRKDC,XRCC6,XRCC5,XRCC4,UBE2T,FANCF,FAAP100,FANCG,FANCL,FANCA,FAAP24,FANCM,FANCE,FANCB,FANCC,POLH,MAD2L2,ALKBH2,ALKBH3,MGMT,POLB,LIG3,XRCC1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Regulation of the Fanconi anemia pathway ZBTB32,USP1,FANCD2, +PWCOMMONS DNA Damage Bypass MAD2L2, +PWCOMMONS Translesion synthesis by DNA polymerases bypassing lesion on DNA template MAD2L2, +PWCOMMONS Base Excision Repair PCNA,POLD4,POLD3,POLD2,POLD1,POLB,LIG3,XRCC1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Resolution of Abasic Sites (AP sites) PCNA,POLD4,POLD3,POLD2,POLD1,POLB,LIG3,XRCC1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Fanconi Anemia pathway FANCD2,FANCI,ZBTB32,USP1,UBE2T,FANCF,FAAP100,FANCG,FANCL,FANCA,FAAP24,FANCM,FANCE,FANCB,FANCC, +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains MAP3K7,TRAF6,MALT1,BCL10,CARD11,PDPK1,NFKBIA,NFKB1,RELA,LCP2,LAT,GRAP2,ZAP70,LCK,CD4,CD3E,CD3D,CD3G,FOXO1,THEM4,PLCG1,CHUK,IKBKB,IKBKG,CSK,PAG1,PRKCQ,INPP5D,UBE2V1,UBE2N,CREB1,TRAT1,ITK,MDM2,RPS6KB2,RICTOR,FRAP1,LST8,NR4A1,RIPK2,PTEN,PTPRC,BAD,TRIB3,CASP9,AKT1S1, +PWCOMMONS p130Cas linkage to MAPK signaling for integrins TLN1,APBB1IP,ITGB3,ITGA2B,BCAR1, +PWCOMMONS Innate Immunity Signaling MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR6,TLR2,ATF2,IRF3,TBK1,TICAM1,TLR3,MAP3K7IP1,MAP3K7IP2,MAP3K7,CHUK,IKBKB,IKBKG,RELA,RIPK1,JUN,MAPK1,MAPK8,TLR10,LY96,TLR4,CD180,LY86,TICAM2,LBP,CD14,TLR5,ZFYVE20,EEA1,TLR9,PIK3C3,PIK3R4,C9,C6,C7,C5,C8A,C8B,C8G,C4A,C2,C3,C1QC,C1QA,C1QB,C1S,C1R,MBL2,MASP1,CFD,CFB, +PWCOMMONS Regulatory RNA pathways POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,TARBP2,DICER1, +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle PRKAA2,PRKAB2,ACSL1,ACADS,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,ETFA,ETFB,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,ECHS1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,HADH,VAMP2,INS,SYT5,KCNJ11,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,SLC25A20,HADHB,HADHA,ACADL,ACADM,ACADVL,CPT1B,CPT2,STK11,ACACB, +PWCOMMONS Amino Acid conjugation GLYAT, +PWCOMMONS Metabolism of polyamines TPMT,COMT,AMD1,NNMT,SMS,AHCY,PAOX,SAT1,ODC1,AGMAT,SRM, +PWCOMMONS Interconversion of polyamines SAT1, +PWCOMMONS Opioid Signalling GNAI1,GNAL,CALM1,CAV1,HSP90AA1,NOS3,VAMP2,INS,SYT5,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,PPP1CA,PPP3R1,PRKACA,PDE4B,CDK5, +PWCOMMONS G-protein activation +PWCOMMONS DARPP-32 events PFKFB1,MLXIPL,PPP1CA,PPP3R1,CALM1,PRKACA,CREB1,LIPE,PDE4B,FABP4,CDK5, +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A CCNB1,CDC20,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,FZR1,BUB3,BUB1B,MAD2L1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,PTTG1, +PWCOMMONS Vitamin D (calciferol) metabolism GC,CUBN,LRP2,CYP27B1,CYP2R1,CYP24A1, +PWCOMMONS Carnitine synthesis TMLHE,ALAD,UROD,ALDH9A1,CPOX,UROS,PPOX,SHMT1,BBOX1, +PWCOMMONS Regulation of Apoptosis ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,PAK2,ARHGAP10, +PWCOMMONS RNA Polymerase I Chain Elongation TAF1C,TAF1B,TAF1A,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS RNA Polymerase I Transcription Termination UBTF,TAF1C,TAF1B,TAF1A,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,PTRF, +PWCOMMONS Class B/2 (Secretin family receptors) PFKFB1,MLXIPL,AKAP5,IQGAP1,GLP1R,GNAS,GCG,GCGR,ADCY8,SCTR,SCT,GLP2R,GHRHR,GHRH,GIPR,GIP,VAMP2,VIP,INS,SYT5,ADCYAP1R1,KCNJ11,CREB1,CRH,LIPE,FABP4,IAPP,CALCRL,RAMP1,CALCR,CALCA, +PWCOMMONS Calcitonin-like ligand receptors PFKFB1,MLXIPL,IAPP,CREB1,LIPE,GNAS,CALCRL,RAMP1,FABP4,CALCR,CALCA, +PWCOMMONS Creatine metabolism GAMT, +PWCOMMONS Telomere Maintenance POLD4,POLD3,POLD2,POLD1,LIG1,DNA2,RPA1,RPA3,RPA2,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,POLE2,POLE,FEN1,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP,TERT,DKC1,RUVBL2,NHP2,RUVBL1,WDR79, +PWCOMMONS Leucine catabolism BCKDHA,BCKDHB,DLD,RIMS1,CPLX1,SLC18A3,VAMP2,RAB3A,SYT1,SLC17A7,UNC13B,BCAT1,MCCC2,MCCC1,AUH,IVD,BCAT2, +PWCOMMONS Intrinsic Pathway for Apoptosis MST4,DSG3,DIABLO,XIAP,CASP3,SPTAN1,CASP9,CDH1,CASP7,GAS2,DSG1,FNTA,PTK2,ADD1,BIRC2,DBNL,DSG2,BMX,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,GSN,MAPT,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,CLSPN,LMNB1,BCAP31,PRKCD,PAK2,ARHGAP10,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,CYCS,APAF1,BCL2L1,PMAIP1,BID,BCL2,BAD,BBC3,BAX,GZMB,BAK1,NMT1,TFDP1,E2F1,YWHAB,AKT1,PPP3R1,PPP3CC,MAPK8,BMF,DYNLL2,DYNLL1, +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria BID,MST4,DSG3,GZMB,GSN,DIABLO,XIAP,CASP3,BAX,BAK1,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX,BCL2,CDH1,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,BAD, +PWCOMMONS Fructose catabolism ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,SLC25A21,GLRX,AGPAT1,UROS,TALDO1,ASS1,KHK,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,TKT,FECH,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS P2Y receptors P2RY8,P2RY12,P2RY4,P2RY11,P2RY6,P2RY10,P2RY14,LPAR4,P2RY13,P2RY1,P2RY5,GPR17, +PWCOMMONS Transcription from mitochondrial promoters TFAM,TFB2M,POLRMT, +PWCOMMONS Mitochondrial transcription termination +PWCOMMONS Mitochondrial transcription initiation TFB2M,POLRMT,MTERF, +PWCOMMONS Mal Cascade LY96,TLR4, +PWCOMMONS Shc events in EGFR signaling RAF1,YWHAB,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,MAP2K1,SOS1,SHC1,EGFR,EGF, +PWCOMMONS Membrane Trafficking VAMP8,AP1G1,AP1B1,HSPA8,DNAJC6,STX4,VAMP7,SNAP23,VAMP2,SH3GL2,ARF1,GBF1,VTI1B,SAR1B,PREB,SEC23A,SEC13,SEC31A,ARFGAP1,ARCN1,COPG,COPB1,COPZ1,COPE,COPB2,COPA, +PWCOMMONS Pausing and recovery of elongation TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2, +PWCOMMONS Aldehyde Dehydrogenase ACSS2,ALDH2, +PWCOMMONS Acetaldehyde is oxidized by NAD+ to form acetate, NADH, and H+ ACSS2,ALDH2, +PWCOMMONS Metabolism of porphyrins ALAD,UROD,CPOX,UROS,PPOX, +PWCOMMONS Heme biosynthesis ALAD,UROD,CPOX,UROS,PPOX, +PWCOMMONS Signaling by TGF beta TGFBR2,TGFB1,SMAD4,FURIN,NOTCH2,SKI, +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A, +PWCOMMONS Methylation TPMT,COMT,AMD1,NNMT,SMS,AHCY,SRM, +PWCOMMONS Olfactory Signaling Pathway GNAL,GNB1, +PWCOMMONS Metabolism of proteins CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4,TBCE,TBCB,TBCC,TBCD,ACTB,TBCA,VBP1,PFDN1,PFDN5,PFDN2,PFDN4,PFDN6,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF2S3,EIF2S2,EIF2S1,EIF5,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF5B,EEF2,EIF4EBP1,PABPC1,F7,F10,F9,PROS1,PROZ,GAS6,PROC,F2,GGCX,FURIN,NOTCH2,DHPS,DOHH,PIGW,PIGL,PLAUR,PIGG,PIGF,PIGH,DPM2,PIGC,PIGA,PIGP,PIGO,PIGB,PGAP1,PIGM,PIGX,PIGU,PIGT,GPAA1,PIGS,PIGK,PIGV,PIGN,DPM3,DPM1, +PWCOMMONS Biological oxidations NAT2,GSS,GCLC,GCLM,UGDH,GYG2,GBE1,SLC35D1,GYS2,MTR,TPMT,COMT,AMD1,NNMT,SMS,AHCY,SRM,ACSM2B,GLYAT,SULT2A1,SULT1E1,SULT1A3,SULT1A1,ALDH1A1,ACSS2,ALDH2,ADH4,ADH1C,ADH1A,ADH7,ADH1B,ADH6,PTGES3,PTGS2,PTGIS,TBXAS1,CYP4F8,CYP4F3,CYP4F2,CYP4F12,CYP4A11,CYP2J2,CYP4B1,LGMN,GC,CYP26B1,CUBN,LRP2,CYP26A1,CYP27B1,CYP24A1,CYP2R1,CYP26C1,CYP46A1,EBP,ACOT8,LBR,ABCB11,CYP39A1,CYP7A1,CYP21A2,CYP51A1,NSDHL,CYP11B2,HSD17B4,AMACR,CYP7B1,SC5DL,SC4MOL,CYP17A1,ACOX2,CYP11B1,CYP1B1,CYP8B1,BAAT,HSD3B7,AKR1C4,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,SLC27A5,AKR1D1,CYP27A1,SLC27A2,CYP2C19,CYP2E1,CYP3A4,CYP1A1,CYP2F1,CYP2C18,CYP3A7,CYP2C9,CYP1A2,CYP2A6,CYP2D6,CYP2C8,CYP3A5,CYP2A13,CYP2B6,CYP4F11,CYP2W1,MAOB,MAOA,PAOX,FMO2,FMO3,FMO1, +PWCOMMONS Phase 1 - Functionalization of compounds ACSS2,ALDH2,ADH4,ADH1C,ADH1A,ADH7,ADH1B,ADH6,PTGES3,PTGS2,PTGIS,TBXAS1,CYP4F8,CYP4F3,CYP4F2,CYP4F12,CYP4A11,CYP2J2,CYP4B1,LGMN,GC,CYP26B1,CUBN,LRP2,CYP26A1,CYP27B1,CYP24A1,CYP2R1,CYP26C1,CYP46A1,EBP,ACOT8,LBR,ABCB11,CYP39A1,CYP7A1,CYP21A2,CYP51A1,NSDHL,CYP11B2,HSD17B4,AMACR,CYP7B1,SC5DL,SC4MOL,CYP17A1,ACOX2,CYP11B1,CYP1B1,CYP8B1,BAAT,HSD3B7,AKR1C4,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,SLC27A5,AKR1D1,CYP27A1,SLC27A2,CYP2C19,CYP2E1,CYP3A4,CYP1A1,CYP2F1,CYP2C18,CYP3A7,CYP2C9,CYP1A2,CYP2A6,CYP2D6,CYP2C8,CYP3A5,CYP2A13,CYP2B6,CYP4F11,CYP2W1,MAOB,MAOA,PAOX,FMO2,FMO3,FMO1, +PWCOMMONS Amine Oxidase reactions MAOA,PAOX, +PWCOMMONS Monoamines are oxidized to aldehydes by MAOA and MAOB, producing NH3 and H2O2 MAOA, +PWCOMMONS FMO oxidizes nucleophiles FMO3,FMO1, +PWCOMMONS Ethanol catabolism ACSS2,ALDH2,ADH4,ADH1C,ADH1A,ADH7,ADH1B,ADH6, +PWCOMMONS Acetate, ATP, and coenzyme A react to form acetyl CoA, AMP, and pyrophosphate +PWCOMMONS COX reactions PTGS2,PTGIS,TBXAS1, +PWCOMMONS Phase II conjugation NAT2,GSS,GCLC,GCLM,UGDH,GYG2,GBE1,SLC35D1,GYS2,MTR,TPMT,COMT,AMD1,NNMT,SMS,AHCY,SRM,ACSM2B,GLYAT,SULT2A1,SULT1E1,SULT1A3,SULT1A1, +PWCOMMONS Cytosolic sulfonation of small molecules SULT1E1,SULT1A3,SULT1A1, +PWCOMMONS Class A/1 (Rhodopsin-like receptors) MGLL,PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FSHR,FSHB,CGA,CGB,LHCGR,LHB,FABP4,TSHR,TSHB,OPN4,APLNR,GPER,KNG1,C5AR1,C5,PRLHR,DARC,KISS1,KISS1R,GAL,F2,TAC3,TACR3,TAC1,TACR2,TACR1,POMC,MC2R,XCR1,IL8RB,CXCL16,CXCR6,CX3CL1,CCL25,CCL5,IL8RA,CCR10,CCR7,CCL16,CCL20,CCR6,CCK,HCRTR2,HCRT,NPFF,HCRTR1,QRFPR,QRFP,AGT,NTS,PNOC,OPRL1,AVP,AVPR2,OXTR,OXT,GPR17,FPR2,OXER1,TBXA2R,PTGIR,PTGER3,GPR44,PTGDR,PTGFR,PTGER1,P2RY2,P2RY8,P2RY12,P2RY4,P2RY11,P2RY6,P2RY10,P2RY14,LPAR4,P2RY13,P2RY1,P2RY5,HRH1,HRH2, +PWCOMMONS Nucleotide-like (purinergic) receptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4,P2RY2,P2RY8,P2RY12,P2RY4,P2RY11,P2RY6,P2RY10,P2RY14,LPAR4,P2RY13,P2RY1,P2RY5,GPR17, +PWCOMMONS Adenosine P1 receptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4, +PWCOMMONS Opsins +PWCOMMONS AMPK inhibits chREBP transcriptional activation activity PRKAB2,PRKAG2,MLXIPL,STK11, +PWCOMMONS Integrin cell surface interactions ITGB3,ITGAV,ITGB1,FN1,ITGA2,LAMB2,LAMA5,LAMC3,ITGA8,PTK2,TLN1,APBB1IP,ITGA2B,CSK,PTPN1,BCAR1,PTPRA,FYN,NCAM1,SPTB,SOS1,IBSP,VTN,ITGB5,ITGA1,LAMA1,LAMB1,LAMC1,ITGA5,ITGA7,FGB,FGG,FGA,ITGB2,ITGAD,ITGB8,ITGAL,THBS1,BSG,ITGA4,SPP1,PECAM1,ITGB6,ITGA9,COL1A1,COL1A2,LAMA2,VCAM1,ITGA3,CDH1,ITGAE,ITGAX,ITGA11,F11R,ITGA6,ITGB4,COL2A1,ITGA10,JAM2,FBN1,JAM3,ITGAM, +PWCOMMONS Integrin alphaIIbbeta3 signaling TLN1,APBB1IP,ITGB3,ITGA2B,CSK,PTPN1,BCAR1,PTPRA,FYN,NCAM1,SPTB,SOS1, +PWCOMMONS Grb2:SOS provides linkage to MAPK signaling for Intergrins PTK2,TLN1,APBB1IP,ITGB3,ITGA2B, +PWCOMMONS Influenza Infection RAN,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,HSPA1A,CALR,CANX,KPNA1,KPNB1,HNRNPD,HNRNPH2,HNRNPUL1,CD2BP2,HNRNPH1,SFRS9,HNRNPA0,HNRNPL,HNRNPA2B1,HNRNPA1,SFRS2,PCBP2,RNPS1,SMC1A,RBM5,HNRNPU,CCAR1,U2AF1,RBMX,HNRNPA3,HNRNPM,SRRM1,U2AF2,THOC4,PCBP1,SF4,YBX1,HNRNPR,HNRNPC,PTBP1,SFRS3,SFRS5,SFRS7,SFRS6,DHX9,SFRS1,HNRNPF,SNRNP70,SNRPA,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1,HSP90AA1,IPO5,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,GRSF1,EIF2AK2,PABPN1,CPSF4,TGFB1,SLC25A6, +PWCOMMONS Host Interactions with Influenza Factors PABPN1,CPSF4,TGFB1,SLC25A6, +PWCOMMONS Prostanoid hormones PTGS2,PTGIS,ABCC1,GGT5,DPEP2,ALOX5,LTC4S,LTA4H,TBXAS1, +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,GOT1,PGK1,ADSL,GCDH,PCK1,ATIC,OAT,NP,GLS2,GYS2,ECHS1,TXN,ASNS,GLUD1,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GLUL,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,GLS,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,TKT,FECH,SUCLA2,GBE1,TXNRD1,TPI1,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Translocation of ZAP-70 to Immunological synapse MAP3K7,TRAF6,MALT1,BCL10,CARD11,PDPK1,NFKBIA,NFKB1,RELA,ZAP70,LCK,CD4,CD3E,CD3D,CD3G,LCP2,LAT,GRAP2,FOXO1,THEM4,PLCG1,CHUK,IKBKB,IKBKG,PRKCQ,INPP5D,UBE2V1,UBE2N,CREB1,TRAT1,ITK,MDM2,RPS6KB2,RICTOR,FRAP1,LST8,NR4A1,RIPK2,PTEN,BAD,TRIB3,CASP9,AKT1S1, +PWCOMMONS Hemostasis IGF1,IGF1,CD36,VWF,SERPINE1,F5,APP,SERPINF2,SELP,SERPING1,A2M,FN1,ITGB1,ITGA5,ITGB3,ITGA2B,CD63,HGF,SERPINA1,LAMP2,F8,PF4,PPBP,PECAM1,CD9,SPARC,PLG,STX4,PICK1,STXBP3,ALB,CFD,SRGN,ALDOA,PROS1,TMSB4X,F13A1,CLU,TIMP1,GP5,GP9,GP1BA,GP1BB,FGB,FGG,FGA,EGF,MMRN1,KNG1,HRG,COL1A1,COL1A2,GP6,FCER1G,SYK,F2R,F2RL3,F2RL2,F2,GNAQ,ARHGEF1,GNA13,PRKCA,MARCKS,P2RX1,PTK2,TLN1,APBB1IP,CSK,PTPN1,BCAR1,PTPRA,FYN,NCAM1,SPTB,SOS1,ITGA2,F10,PLAT,PROC,F9,F13B,SERPINC1,F11,THBD,C1QBP,F12,KLKB1,PRCP,F7,F3,TFPI,PLEK,PPIA,PSAP,CAP1,FLNA,CALU,SOD1,TF,TUBA4A,CFL1,TTN,PFN1,VCL,BRPF3,ACTBL3,WDR1,SCG3,HSPA5,CALM1,APOA1,CD47,OLR1,APOB,MERTK,CXADR,JAM3,JAM2,ITGB2,ITGAX,CD58,CD2,F11R,ITGAL,CD244,CD48,BSG,MMP1,SPN,CAV1,PPIL2,ITGA4,PLCG1,PTPN6,INPP5D,ITGAV,PTPN11,TREM1,CD177,SELPLG,ITGAM,ANGPT1,TEK,ANGPT4,GRB14,GRB7,DOK2,SHC1,ANGPT2,PLAUR,PLAU,SERPINB2, +PWCOMMONS Dissolution of Fibrin Clot PLAT,PLAUR,PLAU,SERPINE1,HRG,SERPINF2,SERPINB2, +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F5,PLG,FGB,FGG,FGA,PLAT,PROC,F8,F9,F13B,F13A1,SERPINC1,F2,F11,GP5,GP9,GP1BA,GP1BB,SERPINE1,F2RL3,PROS1,THBD,VWF,SERPINF2,KNG1,C1QBP,F12,KLKB1,SERPING1,A2M,PRCP,F7,F3,TFPI, +PWCOMMONS Extrinsic Pathway F5,PLG,FGB,FGG,FGA,PLAT,PROC,F7,F3,F8,F9,F13B,F13A1,SERPINC1,F2,F11,GP5,GP9,GP1BA,GP1BB,TFPI,SERPINE1,F2RL3,PROS1,THBD,VWF,SERPINF2, +PWCOMMONS Formation of Platelet plug IGF1,CD36,VWF,SERPINE1,F5,APP,SERPINF2,SELP,SERPING1,A2M,FN1,ITGB1,ITGA5,ITGB3,ITGA2B,CD63,HGF,SERPINA1,LAMP2,F8,PF4,PPBP,PECAM1,CD9,SPARC,PLG,STX4,PICK1,STXBP3,ALB,CFD,SRGN,ALDOA,PROS1,TMSB4X,F13A1,CLU,TIMP1,GP5,GP9,GP1BA,GP1BB,FGB,FGG,FGA,EGF,MMRN1,KNG1,HRG,COL1A1,COL1A2,GP6,FCER1G,SYK,PLCG2,F2R,F2RL3,F2RL2,F2,GNAQ,ARHGEF1,GNA13,PRKCA,MARCKS,P2RX1,PTK2,TLN1,APBB1IP,CSK,PTPN1,BCAR1,PTPRA,FYN,NCAM1,SPTB,SOS1,ITGA2, +PWCOMMONS Platelet Activation IGF1,CD36,VWF,SERPINE1,F5,APP,SERPINF2,SELP,SERPING1,A2M,FN1,ITGB1,ITGA5,ITGB3,ITGA2B,CD63,HGF,SERPINA1,LAMP2,F8,PF4,PPBP,PECAM1,CD9,SPARC,PLG,STX4,PICK1,STXBP3,ALB,CFD,SRGN,ALDOA,PROS1,TMSB4X,F13A1,CLU,TIMP1,GP5,GP9,GP1BA,GP1BB,FGB,FGG,FGA,EGF,MMRN1,KNG1,HRG,COL1A1,COL1A2,GP6,FCER1G,SYK,PLCG2,F2R,F2RL3,F2RL2,F2,GNAQ,ARHGEF1,GNA13,PRKCA,MARCKS,P2RX1, +PWCOMMONS Platelet Aggregation (Plug Formation) TLN1,APBB1IP,ITGB3,ITGA2B,CSK,PTPN1,BCAR1,PTPRA,FYN,NCAM1,SPTB,SOS1,FGB,FGG,FGA, +PWCOMMONS Signaling by PDGF PDGFRB,SOS1,PDGFRA,BCAR1,PLCG1,MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1,PTPN11,GRB7,FURIN,NOTCH2, +PWCOMMONS P450 oxidation +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,CDK9,CCNT1, +PWCOMMONS Branched-chain amino acid catabolism DBT,BCKDHA,BCKDHB,DLD,UROD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,BCAT1,MCEE,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,BCAT2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,ACADSB,PCCB,PCCA,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,MUT,HSD17B10,FH,INS,SYT5,RIMS1,CPLX1,SLC18A3,RAB3A,SYT1,SLC17A7,UNC13B,MCCC2,MCCC1,AUH,IVD,ACAD8,HIBCH,ALDH6A1,HIBADH, +PWCOMMONS Alanine metabolism NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,PCK1,MDH1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,PPOX,SLC25A1,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Caspase-8 is formed from procaspase-8 BID,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,BAX,BAK1,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX,CASP8,BCL2,CDH1,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FADD,TNFRSF10B,TNFSF10,TRAF2,RIPK1,TRADD,FASLG,FAS,FNTA,PTK2,BAD,PLEC1, +PWCOMMONS RNA Polymerase I Transcription UBTF,TAF1C,TAF1B,TAF1A,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,PTRF,RRN3,MAPK3,PCAF, +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell HLA-C,B2M,TYROBP,KIR2DS2,KIR2DL4,HLA-G,CD19,IFITM1,CD81,C3,CXADR,CRTAM,CD200R1,CD200,VCAM1,ITGB1,ITGA4,CD160,KIR3DL2,HLA-A,HLA-E,CD96,KLRK1,HCST,ITGAL,ITGB2,SELL,CD3E,CD3D,CD3G,CD8A,CDH1,KLRG1,CD226,KIR3DL1,HLA-B,KIR2DS1,HLA-C,KIR2DL1, +PWCOMMONS PKA-mediated phosphorylation of key metabolic factors MLXIPL,CREB1, +PWCOMMONS Signaling in Immune system MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR6,TLR2,ATF2,IRF3,TBK1,TICAM1,TLR3,MAP3K7IP1,MAP3K7IP2,MAP3K7,CHUK,IKBKB,IKBKG,RELA,RIPK1,JUN,MAPK1,MAPK8,TLR10,LY96,TLR4,CD180,LY86,TICAM2,LBP,CD14,TLR5,ZFYVE20,EEA1,TLR9,PIK3C3,PIK3R4,C9,C6,C7,C5,C8A,C8B,C8G,C4A,C2,C3,C1QC,C1QA,C1QB,C1S,C1R,MBL2,MASP1,CFD,CFB,SYK,GP6,FCER1G,COL1A1,COL1A2,CD47,PROC,OLR1,APOB,MERTK,CXADR,JAM3,JAM2,ITGB2,ITGAX,FN1,ITGB1,ITGA5,CD58,CD2,THBD,F2,F11R,ITGAL,F5,CD244,CD48,BSG,PPIA,MMP1,SPN,CAV1,PPIL2,ITGA4,PLCG1,PECAM1,PTPN6,INPP5D,ITGB3,ITGAV,PTPN11,TREM1,PROS1,CD177,SELPLG,ITGAM,ANGPT1,TEK,ANGPT4,GRB14,SOS1,GRB7,DOK2,SHC1,ANGPT2,PLCG2,CD40LG,HLA-C,B2M,TYROBP,KIR2DS2,KIR2DL4,HLA-G,CD19,IFITM1,CD81,CRTAM,CD200R1,CD200,VCAM1,CD160,KIR3DL2,HLA-A,HLA-E,CD96,KLRK1,HCST,SELL,CD3E,CD3D,CD3G,CD8A,CDH1,KLRG1,CD226,KIR3DL1,HLA-B,KIR2DS1,HLA-C,KIR2DL1,MALT1,BCL10,CARD11,PDPK1,NFKBIA,NFKB1,FOXO1,THEM4,PRKCQ,UBE2V1,UBE2N,CREB1,TRAT1,MDM2,RPS6KB2,RICTOR,FRAP1,LST8,NR4A1,RIPK2,ZAP70,LCK,CD4,PTEN,BAD,TRIB3,CASP9,AKT1S1,LCP2,LAT,GRAP2,ITK,CSK,PAG1,PTPRC, +PWCOMMONS TCR signaling MAP3K7,TRAF6,MALT1,BCL10,CARD11,PDPK1,NFKBIA,NFKB1,RELA,FOXO1,THEM4,CHUK,IKBKB,IKBKG,PRKCQ,INPP5D,UBE2V1,UBE2N,CREB1,TRAT1,MDM2,RPS6KB2,RICTOR,FRAP1,LST8,NR4A1,RIPK2,ZAP70,LCK,CD4,CD3E,CD3D,CD3G,PTEN,BAD,TRIB3,CASP9,AKT1S1,LCP2,LAT,GRAP2,PLCG1,ITK,CSK,PAG1,PTPRC, +PWCOMMONS Steroid hormones GC,CUBN,LRP2,CYP27B1,CYP2R1,CYP24A1,CYP19A1,HSD11B1,CYP17A1,HSD17B3,CYP21A2,CYP11B1,CYP11A1,CYP11B2,STAR, +PWCOMMONS Extrinsic Pathway for Apoptosis BID,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,BAX,BAK1,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX,CASP8,BCL2,CDH1,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FADD,TNFRSF10B,TNFSF10,TRAF2,RIPK1,TRADD,FASLG,FAS,FNTA,PTK2,BAD,PLEC1,CASP10,CFLAR,TNFRSF1A,TNF, +PWCOMMONS Pausing and recovery of HIV-1 elongation TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1, +PWCOMMONS Integration of energy metabolism NT5C2,PFKFB1,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,PRKAG2,PRKAA2,PRKAB2,ACSL1,ACADS,ETFA,ETFB,SLC25A20,HADHB,HADHA,ACADL,ACADM,ACADVL,CPT1B,CPT2,STK11,ACACB,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,GOT2,PGLS,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,PCK1,MDH1,ATIC,OAT,NP,GYS2,ECHS1,TXN,CREB1,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,PKM2,PFKFB2,PFKFB4,PFKFB3,SLC2A2,PGM1,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,ACLY,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,FASN,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,AGPAT1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,MGLL,GCG,GCGR,GNAS,LIPE,FABP4,SLC25A11,PPAT,TKT,FECH,PPAP2C,PCK2,SUCLA2,GBE1,TXNRD1,PPAP2B,TPI1,SLC25A10,G6PC,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,GSR,PPAP2A, +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NT5C2,PFKFB1,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,ACLY,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,FASN,PRPS1,DLST,OGDH,ACACB,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,AGPAT1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PPAP2C,PCK2,SUCLA2,GBE1,TXNRD1,PPAP2B,TPI1,SLC25A10,G6PC,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,GSR,PPAP2A, +PWCOMMONS Glyoxylate metabolism DAO,CAT,GRHPR,AGXT, +PWCOMMONS Phenylalanine and tyrosine catabolism GSTZ1,TAT,HGD,FAH,PAH,PCBD1,HPD, +PWCOMMONS Unfolded Protein Response MBTPS1,HSPA5,MBTPS2,NFYA,ERN1,EIF2S1,ATF4,EIF2AK3, +PWCOMMONS Signaling by Insulin receptor YWHAB,INSR,INS,RHEB,FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1,PDPK1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SHC1,SOS1,MAP2K1,MAP2K2, +PWCOMMONS Diabetes pathways ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,PCK1,MDH1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,ETFA,ETFB,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,PFKFB2,PFKFB4,PFKFB3,GOT1,SLC2A2,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A,ADCY8,AKAP5,IQGAP1,MGLL,GLP1R,GNAS,CREB1,LIPE,FABP4,CAV1,HSP90AA1,CALM1,NOS3,PRKCA,AKT1,CHRM3,MARCKS,PLA2G4A,ADRBK1,CAMK4,ATF6,MBTPS1,HSPA5,MBTPS2,NFYA,ERN1,EIF2S1,ATF4,EIF2AK3,PCSK1,SRPRB,SRPR,NKX2-2,KIF5B,SLC30A7,PDX1,SRP19,SRP9,SRP54,SRP14,SRP72,ERO1L,TRAM2,SEC61B,SSR3,TRAM1,SSR2,SSR4,SEC61G,RPN2,RPN1,DDOST,DAD1,STT3B,STT3A,MAFA,PCSK2,SPCS3,SEC11C,SEC11A,SPCS1,SPCS2,CPE,EXOC4,PLG,IGFALS,IGFBP3,IGFBP5,CTSL1,IGFBP6,IGFBP2,IGFBP1,PAPPA,IGFBP4,F2RL3,F2,KLK3,EXOC6,EXOC5,EXOC8,EXOC2, +PWCOMMONS Regulation of IGF Activity by IGFBP IGFALS,IGFBP3,IGFBP5,CTSL1,IGFBP6,IGFBP2,IGFBP1,PAPPA,IGFBP4,F2RL3,F2,KLK3, +PWCOMMONS Signaling by GPCR MGLL,PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FSHR,FSHB,CGA,CGB,LHCGR,LHB,FABP4,TSHR,TSHB,OPN4,APLNR,GPER,KNG1,C5AR1,C5,PRLHR,DARC,KISS1,KISS1R,GAL,F2,TAC3,TACR3,TAC1,TACR2,TACR1,POMC,MC2R,XCR1,IL8RB,CXCL16,CXCR6,CX3CL1,CCL25,CCL5,IL8RA,CCR10,CCR7,CCL16,CCL20,CCR6,CCK,HCRTR2,HCRT,NPFF,HCRTR1,QRFPR,QRFP,AGT,NTS,PNOC,OPRL1,AVP,AVPR2,OXTR,OXT,GPR17,FPR2,OXER1,TBXA2R,PTGIR,PTGER3,GPR44,PTGDR,PTGFR,PTGER1,P2RY2,P2RY8,P2RY12,P2RY4,P2RY11,P2RY6,P2RY10,P2RY14,LPAR4,P2RY13,P2RY1,P2RY5,HRH1,HRH2,CASR,GABBR1,GABBR2,GPRC6A,GNGT1,GNAL,GNB1,AKAP5,IQGAP1,GLP1R,GCG,GCGR,ADCY8,SCTR,SCT,GLP2R,GHRHR,GHRH,GIPR,GIP,VAMP2,VIP,INS,SYT5,ADCYAP1R1,KCNJ11,CRH,IAPP,CALCRL,RAMP1,CALCR,CALCA, +PWCOMMONS Class C/3 (Metabotropic glutamate/pheromone receptors) GABBR1,GABBR2,GPRC6A, +PWCOMMONS Signaling by Notch NOTCH3,NOTCH2,NOTCH1,ADAM10,PSENEN,HES1,FURIN, +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,CDK9,CCNT1,TH1L,WHSC2,RDBP,COBRA1, +PWCOMMONS Phase 1 functionalization PTGS2,PTGIS,TBXAS1,CYP3A4,CYP1A1,CYP2D6,CYP4A11,CYP2A6,CYP1A2,CYP2E1,MAOB,MAOA,PAOX,FMO3, +PWCOMMONS Cytochrome p450 CYP1A1,CYP2D6,CYP4A11,CYP2A6,CYP1A2,CYP2E1,PTGIS,TBXAS1, +PWCOMMONS P450 Epoxidations CYP3A4,CYP1A1, +PWCOMMONS Signaling by VEGF FLT4, +PWCOMMONS Signaling by EGFR YWHAB,GAB1,EGFR,EGF,MAP2K1,PTPN11,MAPK1,MAP2K2,SOS1,SHC1,RPS6KA5,MAPK3,ATF1,CREB1,PIK3CA,PIK3R1,CALM1,CAV1,HSP90AA1,NOS3,PLCG1,VAMP2,INS,SYT5,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,ADRBK1,CAMK4,CBL,EPN1,EPS15L1,SH3KBP1,SH3GL2,EPS15,HGS,AP2A2,AP2A1,SPRY2,PAG1,LRIG1,CSK,PXN, +PWCOMMONS EGFR interacts with phospholipase C-gamma CAV1,HSP90AA1,NOS3,PLCG1,EGFR,EGF,VAMP2,INS,SYT5,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4, +PWCOMMONS Elongation arrest and recovery TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2, +PWCOMMONS Signal attenuation SHC1,GRB10,INSR,INS,MAPK3, +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A BUB1B,MAD2L1,CDC20,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,NEK2, +PWCOMMONS Apoptosis MST4,DSG3,DIABLO,XIAP,CASP3,SPTAN1,CASP9,CDH1,CASP7,GAS2,DSG1,FNTA,PTK2,ADD1,BIRC2,DBNL,DSG2,BMX,GSN,PAK2,ARHGAP10,CLSPN,CDC25A,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,MAPT,BCL2L1,PMAIP1,BID,BCL2,BAD,BBC3,BAX,GZMB,BAK1,NMT1,PLEC1,CASP8,TFDP1,E2F1,YWHAB,AKT1,PPP3R1,PPP3CC,MAPK8,BMF,DYNLL2,DYNLL1,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,FADD,TNFRSF10B,TNFSF10,TRAF2,RIPK1,TRADD,FASLG,FAS,CASP10,CFLAR,TNFRSF1A,TNF, +PWCOMMONS Hormone biosynthesis LHB,FSHB,TSHB,CGB,PCSK1,POMC,LGMN,GC,CUBN,LRP2,CYP27B1,CYP2R1,CYP24A1,CYP19A1,HSD11B1,CYP17A1,HSD17B3,CYP21A2,CYP11B1,CYP11A1,CYP11B2,STAR,PTGES3,PTGS2,PTGIS,ABCC1,GGT5,DPEP2,ALOX5,LTC4S,LTA4H,TBXAS1,DDC,AANAT,SLC5A5,DIO3,PNMT,SLC18A2,VAMP2,RAB3A,SYT1,RIMS1,CPLX1,DBH,MAOA,SLC22A2, +PWCOMMONS Metabolism of carbohydrates ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,SLC25A21,GLRX,AGPAT1,UROS,TALDO1,ASS1,KHK,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,TKT,FECH,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A,SLC5A1,SI,LCT,MGAM,SLC2A2,TREH,SLC2A5,GALE,GALK1,GALT,PRPS1,BSG,GYG1,PYGM,PYGL,AGL,PHKG1,CALM1,PHKB,PHKA1,PHKG2,PHKA2,GYS1,PFKFB2,PFKFB4,PFKFB3,HK1,HK3,HK2,SLC2A4,SLC2A1,SLC2A3,GCKR,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Metabolism of amino acids NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,PCK1,MDH1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,PPOX,SLC25A1,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR,GLS2,ASNS,GLUD1,GLUL,GLS,QDPR,GSTZ1,TAT,HGD,FAH,PAH,PCBD1,HPD,MTR,TPMT,COMT,AMD1,NNMT,SMS,AHCY,PAOX,SAT1,ODC1,AGMAT,SRM,NADSYN1,AFMID,ACMSD,NMNAT2,KYNU,HAAO,TDO2,NMNAT3,QPRT,KMO,NADK,NMNAT1,TMLHE,ALDH9A1,SHMT1,BBOX1,ACAT1,DBT,BCKDHA,BCKDHB,BCAT1,MCEE,BCAT2,ACADSB,PCCB,PCCA,MUT,HSD17B10,RIMS1,CPLX1,SLC18A3,RAB3A,SYT1,SLC17A7,UNC13B,MCCC2,MCCC1,AUH,IVD,ACAD8,HIBCH,ALDH6A1,HIBADH,NAGS,SLC7A7,SLC3A2,SLC6A15,SLC38A1,SLC38A4,SLC7A10,SLC7A3,SLC38A2,SLC7A1,SLC38A5,SLC1A4,SLC36A2,SLC6A12,SLC6A20,SLC7A6,SLC6A6,SLC36A1,SLC6A19,SLC7A8,SLC7A11,SLC43A2,SLC16A10,SLC7A5,SLC38A3,SLC6A14,SLC43A1,SLC1A5,SLC7A9,SLC3A1,SLC6A18,UROC1,HAL,FTCD,AMDHD1,GATM,GAMT,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NQO1,AZIN1,PRODH,ALDH4A1,AASS,AADAT, +PWCOMMONS Formation of PAPS SULT1E1,SULT1A3,SULT1A1, +PWCOMMONS Transcription UBTF,TAF1C,TAF1B,TAF1A,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,PTRF,RRN3,MAPK3,PCAF,POLR3B,POLR3E,POLR3D,LZTS1,POLR2L,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,NFIX,SSB,NFIB,NFIA,NFIC,BRF2,BDP1,TBP,POU2F1,ZNF143,SNAPC1,SNAPC2,SNAPC3,SNAPC5,SNAPC4,BRF1,GTF3C2,GTF3C3,GTF3C4,GTF3C5,GTF3C1,GTF3A,NCBP2,NCBP1,POLR2G,POLR2B,POLR2A,POLR2D,POLR2C,POLR2J,POLR2I,GTF2F1,GTF2F2,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,RNGTT,RNMT,EIF5,EEF1G,EEF1D,EEF1B2,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EEF1A1,PABPC1,SNRNP70,SNRPA,APOBEC1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,METTL3,ETF1,GSPT2,EIF5B,EEF2,MTERF,TFAM,TFB2M,POLRMT, +PWCOMMONS Cell Cycle Checkpoints ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,CDC20,WEE1,CDK2,CCNB2,CUL1,BTRC,SKP1,XPO1,FBXO5,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,CDC25C,CHEK1,ATM,TP53,CKS1B,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,CDKN1A,ATRIP,RPA1,RPA3,RPA2,CLSPN,CDC45L,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,CDC7,DBF4,RFC2,RFC3,RFC5,RFC4,HUS1,RAD1,BUB3,BUB1B,MAD2L1,NEK2,MAD1L1,PTTG1,PLK1,NUDC,KIF20A,KIF23,REC8,STAG2,SMC3,SMC1A,RAD21,STAG1, +PWCOMMONS DNA Replication ORC1L,CDT1,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDK2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC45L,GINS4,GINS1,GINS2,POLD4,POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,LIG1,DNA2,RPA1,RPA3,RPA2,FEN1,GMNN,CDC2,MCM10,RB1,TFDP1,E2F1,POLE2,POLE,RPA4,CDC7,DBF4, +PWCOMMONS HIV Infection BANF1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,MAPT,BIRC2,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,CLSPN,DFFA,DFFB,KPNB1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,ATP6V1H,AP2S1,AP2B1,AP2M1,CD4,ARF1,LCK,CD28,PACS1,AP1G1,AP1B1,B2M,HLA-A,FYN,DOCK2,ELMO1,HCK,RAN,XPO1,RANBP1,RANGAP1,RBX1,TCEB1,CUL5,TCEB2,PPIA,CDK9,CCNT1,BTRC,SKP1,LIG1,XRCC6,XRCC5,FEN1,LIG4,XRCC4,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNGTT,CTDP1,TCEA1,ELL,TCEB3,SSRP1,SUPT16H,CCNT2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,RNMT, +PWCOMMONS Metabolism of nitric oxide CAV1,HSP90AA1,CALM1,LYPLA1,WASL,NOSTRIN,ZDHHC21,AKT1,NOSIP, +PWCOMMONS Signaling by BMP ZFYVE16,BMP2,SKI, +PWCOMMONS Metabolism of vitamins and cofactors AMD1,AHCY,MTHFD1,SLC46A1,MTHFR,SRM,MTR,SMS,NNMT,TPMT,SLC19A1,SHMT1,DHFR,SLC25A32,RFK,FLAD1,ENPP1,ACP5,CYB5R3,CYB5A,GSR,FASN,PPCDC,COASY,AASDHPPT,SLC5A6,PANK2,PPCS,SLC25A16,NADSYN1,AFMID,ACMSD,NMNAT2,NAMPT,NAPRT1,KYNU,HAAO,TDO2,NMNAT3,INDO,QPRT,KMO,NADK,NMNAT1,TPK1, +PWCOMMONS Ceramide signaling pathway RELA,SMPD1,CTSD,MAP4K4,EGF,PAWR,PRKCZ,KSR1,AKT1,CRADD,TRAF2,RIPK1,TNFRSF1A,TRADD,TNF,MADD,BIRC3,BID,BCL2,PRKCD,MAPK3,IGF1,MYC,BAG4,MAP3K1,BAD,CASP8,MAPK8,AIFM1,MAP2K1,MAP2K2,NFKBIA,RAF1,RB1,BAX,CYCS,PRKRA,SMPD3,EIF2A,FADD,PDGFA,NSMAF,SPHK2,ASAH1,MAP2K4,MAPK1, +PWCOMMONS Visual signal transduction: Cones CNGA3,GNGT2,GNAT2,GNB3,GUCY2D,RDH12,SLC24A2,GRK7,PDE6C,PDE6H,ARR3,GRK1,GUCY2F,LRAT,RGS9,GNB5, +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor VDR,RPS6KB1,RXRA,FAM120B,TGFB1,BCL2,NCOR2,TNF,NCOA1,ABCA1,MED1,NR1H4, +PWCOMMONS Aurora B signaling PEBP1,RHOA,RACGAP1,KIF23,CBX5,AURKB,INCENP,CDCA8,BIRC5,CENPA,SGOL1,AURKC,H3F3A,SMC4,SMC2,NCAPG,NCAPD2,NCAPH,PPP2R5D,PPP1CC,SEPT1,MYLK,KIF20A,RASA1,STMN1,EVI5,NSUN2,NPM1,NCL,CUL3,KLHL9,KLHL13,VIM,PSMA3,BUB1,KIF2C,NDC80,AURKA,TACC1, +PWCOMMONS IL2 signaling events mediated by PI3K PIK3CA,JAK1,GAB2,LCK,IL2RG,PIK3R1,JAK3,PTPN11,IL2RA,IL2,IL2RB,SOS1,SHC1,GRB2,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,ARRB2,REL,SYK,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,E2F1,AKT1,BCL2L1,CALM1,TERT,RPS6KB1,HSP90AA1,RAC1,BCL2,PRKCZ,UGCG,FOXO3,MYC,MYB,SMPD1,SGMS1,EIF3A,RPS6, +PWCOMMONS Syndecan-4-mediated signaling events ADAM12,THBS1,FN1,GIPC1,PRKCA,TNFRSF13B,CXCR4,CXCL12,NLK,GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,MAP3K7,NFATC2,CSNK1A1,CAMK2A,MAP3K7IP1,NUDT16L1,RAC1,SDCBP,CCL5,FGFR1,FGF2,TFPI,LAMA1,PLG,F2,TNC,ACTN1,LAMA3,PTK2,RHOA,MDK,FZD7,ITGB1,ITGA5,PRKCD,DNM2,MMP9, +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway MAPK7,MAP2K5,MAPK14,FOS,RIT1,SRF,BRAF,RPS6KA5,CDK5R1,CDK5,MAP3K2,MAP2K1,RPS6KA1,MEF2C,RUSC1,MAPKAPK2,RIT2,CREB1,NTF3,RAF1,EHD4,TRPV1,ELK1,PRKCD, +PWCOMMONS Presenilin action in Notch and Wnt signaling CSNK1A1,MAPK1,AXIN1,CTNNB1,APC,MYC,CCND1,PPARD,FOS,JUN,CTBP1,CREBBP,HNF1A,TLE1,DVL1,FBXW11,ADAM10,DTX1,DLL1,HDAC1,NLK,NEDD4,PPP2R5D,MAP3K7,WNT1,WIF1,LRP6,FZD1,MAPK3,FRAT1,MAP3K7IP1,RBPJ,GSK3B,DKK2,KREMEN2,DKK1,APH1B,PSENEN,NCSTN,PSEN1,APH1A,CSNK2A1, +PWCOMMONS IL1-mediated signaling events RELA,IL1RN,IL1R1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKBIA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,MAP3K3,IRAK1,MAP3K7IP1,MAP3K7IP2,MAP3K7,IL1B,SQSTM1,IL1R2,MAPKAPK3,KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,MAP2K6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAPK11,MAP3K12,PRKG1,CCM2,RAC1,MAP2K3,DUSP16,DUSP8,DUSP10,TOLLIP,IRAK4,MYD88,IRAK3,IL1A,TICAM2,UBE2V1,UBE2N, +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression XPO1,HDAC1,RAN,MDM2,SUMO1,PIAS2,RANGAP1,UBE2I,HDAC4,PIAS1, +PWCOMMONS Canonical NF-kappaB pathway CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3, +PWCOMMONS Thromboxane A2 receptor signaling ROCK1,PRKACA,PLCB2,SYK,PRKG1,DNM1,PTGDR,PRKCZ,RAC1,GNG2,GNB1,ARR3,TBXA2R,SLC9A3R1,GNB5,NOS3,GNAI2,ARRB2,AKT1,ARHGEF1,RAB11A,EGFR,EGF,ICAM1,PTGIR,TGM2,SELE,VCAM1, +PWCOMMONS VEGFR1 specific signals PLCG1,PDPK1,FLT1,VEGFB,PGF,PIK3CA,PIK3R1,VEGFA,CD2AP,CBL,AKT1,CALM1,NRP1,HIF1A,NOS3,PRKACA,NCK1,RASA1,PTPN11,NRP2,HSP90AA1,SHC2,CAV1,GAB1, +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 JAK2,ITGB1,GIT1,PXN,ITGA4,ARF6,CD44,ITGB7,PTK2,MADCAM1,BCAR1,CRK,DOCK1,PIK3CA,PIK3R1,RHOA,SRC,EPO,EPOR,VCAM1,CRKL,CBL, +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,MAPK14,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,JUN,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,PTGS2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A, +PWCOMMONS Class I PI3K signaling events mediated by Akt MAP3K5,AKT1,CHUK,IKBKB,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,CDKN1A,AKT2,HSP90AA1,PDPK1,RAF1,TP53,CASP9,KPNA1,CDKN1B,MDM2,TSC2,TBC1D4,PRKACA,AKT1S1,TSC1,FRAP1,RHEB,LST8,RAPTOR,BAD,YWHAZ,INSR,INS,PPP2R5D,FKBP1A,IRS1,EIF4B,EIF4E,EIF4G1,RPS6KB1,EIF3A,RPS6,EEF2,EIF4EBP1,PTEN,MKNK1,PRKAB1,AKT3,CDKN2A,PRKDC,RICTOR,MAPKAP1, +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling PTK2,BMX,ANGPT1,TEK,ITGB1,ITGA5,RAC1,PTPN11,FES,PIK3CA,PIK3R1,FN1,PAK1,DOK2,NCK1,CRK,MAPK14,RELA,F2,FGF2,ELF2,ANGPT2,FOXO1,STAT5A,ELF1,AKT1,MAPK8,FYN,PLD2,GRB7,SHC1,TNIP2,ETS1,TNF,CDKN1A,ELK1,NOS3,RPS6KB1,GRB2,AGTR1,RASA1,GRB14, +PWCOMMONS IFN-gamma pathway PTPN11,MAP3K11,CASP1,CBL,STAT1,PIK3CA,PIK3R1,IL1B,CRKL,RAPGEF1,SMAD7,CEBPB,PIAS4,PIAS1,SOCS1,JAK1,IFNG,JAK2,IFNGR1,CALM1,PTGES2,PRKCD,IRF1,MAP2K1,IRS2,IL2RG,IL4R,IL4,FES,JAK3,STAT6,PTPN6,SOCS5,SELP,TFF3,IL10,FRAP1,SP1,BCL6,IL5,IRS1,INPP5D,SHC1,IGHG3,ETS1,OPRM1,AICDA,IRF4,CD40LG,IL13RA1,THY1,CCL26,SOCS3,AKT1,GRB2,COL1A2,HMGA1,CCL17,SPI1,PIGR,PARP14,LTA,GTF3A,DOK2,EGR2,IGHG1,CCL11,RETNLB,IL13RA2,COL1A1,RPS6KB1,ARG1,MAPK14,FCER2,IGHE,ALOX15,ITGB3,STAT3,DAPK1,LST8,RAPTOR,RHEB,INSR,INS,PPP2R5D,FKBP1A,EIF4B,EIF4E,EIF4G1,TSC2,PDPK1,EIF3A,RPS6,MAP3K5,TSC1,EEF2,EIF4EBP1,PTEN,MKNK1,PRKAB1,PTPN2,TGFBR2,PML,TGFBR1,ZFYVE9,PPP2CB,STRAP,CAMK2A,SOS1,SMAD4,MAP3K7,DAB2,EIF2A,MAP3K7IP2,CAMK2B,MAP3K6,MAP3K10,TRAF2,MAP3K4,MAP2K3,MAP2K6,TRAF6,TXN,MAPKAPK3,KRT8,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TCF3,RAF1,YWHAZ,SRF,CREB1,TH,ETV1,ATF1,MEF2C,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,MEF2A,PLA2G4A,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,FASLG,GATA3,IL8,FOSL1,JUNB,IKZF1,GBP3,CSF2,IL2,PRKCQ,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,ITCH,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,RIPK1,MAP3K3,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,DUSP16,DUSP8,DUSP10,MAPK13,MLTK,STMN1,MAPK12,SNTA1,PKN1,CCND1,EEF2K,ATM,RHOA,SKIL,DACT2,AXIN1,RNF111,SMAD2,NEDD4L,PPP2CA,TGFBRAP1,TGFBR3,DYNLRB1,XIAP,CAV1,PPP1R15A,PPP1CA,WWP1,CTNNB1,PARD6A,OCLN,ARRB2,PPP2R2A,SMURF2,YAP1,SMAD3,SPTBN1,YWHAE,DAXX,ZFYVE16,CTGF,SMURF1,PPM1A,NUP153,UBE2I,SIN3A,SAP18,HDAC2,RBBP7,NCOR1,HDAC1,SAP30,SKI,SIN3B,RBBP4,CTBP1,TGIF1,NR3C1,HNF4A,CDKN1A,CITED1,RUNX2,MYOD1,SNIP1,PCAF,CBFB,RBL1,TFDP1,DLX1,ZBTB17,MED15,AR,MAX,CDKN2B,TFE3,IRF7,IGHA1,TGIF2,FOXG1,GSC,FOXH1,NCOA1,DCP1A,VDR,EP300,PIAS3,MYC,SERPINE1,ATF3,LAMC1,IFNB1,HSPA8,GCN5L2,NKX2-5,ITGB5,NCOA2,IRF9, +PWCOMMONS Ras signaling in the CD4+ TCR pathway RCAN1,IL2,FOS,CREM,JUN,IL2RA,CHP,CALM1,PTGS2,FKBP1A,CABIN1,IL3,CD40LG,CSF2,BATF3,IL4,RCAN2,FOSL1,JUNB,FASLG,POU2F1,IFNG,PRKACA,AKAP5,MAP3K8,ELK1,BRAF,RAF1,PRKCA,PRKCB,PTPN7, +PWCOMMONS Aurora C signaling AURKB,AURKC,H3F3A, +PWCOMMONS Effects of Botulinum toxin STXBP1,STX1A,VAMP2,RAB3GAP2,RIMS1,UNC13B, +PWCOMMONS Hedgehog signaling events mediated by Gli proteins GLI1,GLI3,GLI2,IFT172,MAP2K1,SPOP,SMO,ARRB2,SUFU,LGALS3,MTSS1,PRKCD,KIF3A,SHH,PRKACA,PTCH1,AKT1,PIAS1,XPO1,STK36,FBXW11,SAP18,SIN3A,HDAC2,RBBP7,HDAC1,SAP30,RBBP4,SIN3B,RAB23,GNG2,GNB1,CREBBP,FOXA2, +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha TFF3,ARNT,SP1,AKT1,SMAD3,SMAD4,PKM2,PGM1,HK1,NCOA2,TERT,TF,FECH,PFKFB3,HK2,NT5E,ID2,MCL1,ALDOA,PGK1,EGLN1,LDHA,SERPINE1,ENG,CITED2,BNIP3,ADM,BHLHE40,HDAC7,COPS5,CREB1,CA9,CXCR4,SLC2A1,EGLN3,ITGB2,NOS2,NCOA1,EPO,LEP,ABCB1,CP,HNF4A,HMOX1,GATA2,IGFBP1,GCK,ETS1,ABCG2,CXCL12,NDRG1,FURIN,EDN1,ENO1,BHLHE41,NPM1,FOS,JUN,TFRC,ADFP,VEGFA,PFKL,ARD1A,TP53,HIF3A,HSP90AA1,TCEB1,GNB2L1,TCEB2,CUL2,RBX1,VHL,HIF1AN,CDKN2A,OS9, +PWCOMMONS FOXA2 and FOXA3 transcription factor networks ALDOB,NKX2-1,HNF4A,GCK,FOXA3,HMGCS1,FOXA1,TTR,PCK1,F2,G6PC,NF1,HNF1A,PKLR,AFP,ABCC8,SLC2A2,ALAS1,HADH,FOXF1,CREB1,ACADVL,PDX1,TAT,ACADM,APOA1,INS,KCNJ11,TFRC,NR3C1,ALB,AKT1,IGFBP1,UCP2,SP1,BDH1, +PWCOMMONS Signaling events mediated by PTP1B INSR,INS,CSN2,SRC,LEP,LEPR,JAK2,PRL,PRLR,PDGFRB,PTPN1,CSF1R,CSF1,EGFR,EGF,STAT5B,CAV1,RHOA,ITGB3,ITGA2B,STAT3,FCGR2A,CAPN1,STAT5A,LAT,NOX4,BCAR1,CRK,SOCS3,AKT1,TXN,IRS1,SHC1,PIK3CA,PIK3R1,CDH2,GRB2,FER,TRPV6,YBX1,TYK2,CSK, +PWCOMMONS BMP receptor signaling SMAD1,BMP7,SMURF1,BMPR2,XIAP,NUP214,SMAD9,SMURF2,SMAD5,MAPK1,MAP3K7IP2,CALM1,MAP3K5,CAMK2B,MAP3K6,MAP3K10,TRAF2,MAP3K4,MAP2K3,MAP3K7,MAP2K6,TRAF6,TXN,MAPKAPK3,KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,MAPK14,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAP3K3,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,DUSP16,DUSP8,DUSP10,MAPK13,MLTK,STMN1,MAPK12,SNTA1,PKN1,CCND1,EEF2K,ATM,BAMBI,AHSG,SMAD7,SKI,CHRDL1,SOSTDC1,BMP6,PPM1A,GREM1,CHRD,ZFYVE16,PPP1CA,PPP1R15A,FST,NOG,CER1, +PWCOMMONS EPHB forward signaling EPHB3,EPHB2,KALRN,RAC1,PXN,EPHB1,SRC,RASA1,PIK3CA,PIK3R1,GRB2,PTK2,NCK1,RRAS,WASL,ITSN1,GRB7,MAP2K1,SYNJ1,TF,RHOA,EPHB4,EFNB2,MAP4K4,HRAS,ROCK1,GRIA1,EFNA5,PAK1,DNM1, +PWCOMMONS PDGFR-beta signaling pathway S1PR1,GRB10,PLCG1,SPHK1,HRAS,ABL1,AKT1,MYC,BCAR1,HIF1A,RAC1,PTPN11,PTPN1,PTEN,VAV2,PIK3CA,PIK3R1,CBL,SNX15,DNM2,GAB1,GRB7,ACP1,FER,PDGFB,LRP1,PTPN2,SOS1,SHC1,GRB2,CSK,DOK1,SHB,SH2B2,PTPRJ,PRKCD,RASA1, +PWCOMMONS VEGFR3 signaling in lymphatic endothelium SOS1,GRB2,FLT4,ITGB1,COL1A1,COL1A2,ITGA1,FIGF,ITGA4,FN1,ITGA2,PIK3CA,PIK3R1,MAP2K4,CRK,AKT1,ITGA5,RPS6KA1, +PWCOMMONS IL27-mediated signaling events IL6ST,JAK2,EBI3,TYK2,IL27,IL27RA,STAT1,IL2,IL18,IL12B,IL12A,IL12RB1,IL12RB2,TNF,STAT2,GATA3,JAK1,IL6,IFNG,TBX21,STAT5A,IL1B,IL17A,STAT3,TGFB1, +PWCOMMONS IL12-mediated signaling events RELB,STAT4,IL12B,IL12A,IL12RB1,JAK2,IL12RB2,TYK2,GADD45G,STAT3,SOCS1,NFKB1,RELA,CD8A,CD3E,CD3D,HLA-A,CD3G,B2M,CD247,CD8B,MAPK14,HLX,EOMES,IL1B,HLA-DRA,HLA-DRB1,CD4,GZMA,STAT1,IL18R1,IL18,IL18RAP,STAT6,NOS2,IL2,IL2RB,IL2RG,IL2RA,IL1R1,RAB7A,SPHK2,FASLG,FOS,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKBIA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,SRC,XPO1,RAN,BIRC2,UBE2D3,ATF2,IL6ST,EBI3,IL27,IL27RA,STAT2,GATA3,JAK1,IL6,IFNG,TBX21,STAT5A,IL17A,TGFB1,CCR5,IL4,CCL4,GADD45B,IRF1,CREBBP,JUN,PIAS2,CD28,IL13,ETV5,PRF1,CCL3,GZMB,FRAP1,MAP3K14, +PWCOMMONS amb2 Integrin signaling AKT1,ITGAM,ITGB2,ICAM1,ROCK1,MYH2,PLAU,AGER,HMGB1,TLN1,MMP2,SELPLG,SELP,MMP9,HCK,RHOA,PLAUR,LRP1,PLAT,APOB,LPA,NFKB1,GP1BA,JAM3,JAM2,PLG,CYR61,MST1R,MST1,TNF,IL6,VTN,CTGF,THY1, +PWCOMMONS Insulin Pathway TRIP10,RHOQ,PTPN1,FOXO3,PIK3CA,PIK3R1,AKT2,INSR,INS,IRS1,GRB2,EXOC6,EXOC4,EXOC5,EXOC2,EXOC1,EXOC7,EXOC3,SOS1,SHC1,CAV1,AKT1,PDPK1,GRB14,SH2B2,SORBS1,RAPGEF1,CBL,GRB10,INPP5D,SGK1,DOK1,RASA1,NCK1,HRAS,PPP1R3A,PPP1CC,STXBP4,STX4,VAMP2,ASIP,SLC2A4,TBC1D4,GSK3B,LNPEP,GYS1,NCK2,EIF4EBP1,PTPN11,PTPRA, +PWCOMMONS Glypican 2 network GPC2, +PWCOMMONS Alpha-synuclein signaling SNCAIP,GRK5,SLC6A3,PLCB2,PARK2,PLD2,SYK,PRKCD,BAD,STUB1,UCHL1,MAOB,TOR1A,CSNK2A1,TH,UBE2L3,KLK6,PPP2R5D,PARK7,PTK2B,PLD1,FKBP1A, +PWCOMMONS Osteopontin-mediated events PIK3CA,PIK3R1,CHUK,MAP3K1,CD44,ROCK2,SYK,MMP2,BCAR1,PTK2B,ITGB3,SPP1,ITGAV,MAP3K14,GSN,MAPK8,RAC1,NFKBIA,NFKB1,RELA,PIP5K1A,VAV3,FOS,JUN,MMP9,ILK, +PWCOMMONS Retinoic acid receptors-mediated signaling CCNH,RXRA,PRKACA,MAPK8,MAPK14,PRKCA,NCOA2,PCAF,AKT1,NCOR2,NRIP1,NCOA1,CDK7,MNAT1,NCOA3,NR4A1,RPS6KB1,FAM120B,TGFB1,BCL2,TNF,ABCA1,MED1,NR1H4,HDAC1,HDAC3,CDC2,MAPK3,PRKCG,RBP1, +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 NOS3,CAV1,GAB1,MAPK11,VEGFA,FLT1,GRB10,HSPB1,AKT1,KDR,RHOA,ROCK1,ITGB3,ITGAV,CDC42,FRS2,VCL,PTK2,PDPK1,PRKCA,MAP3K13,SHB,SRC,PLCG1,MAP2K3,NEDD4,PIK3CA,PIK3R1,FYN,EPAS1,IQGAP1,RAC1,VEGFB,PGF,CD2AP,CBL,CALM1,NRP1,HIF1A,PRKACA,NCK1,RASA1,PTPN11,NRP2,SHC2,HRAS,FLT4,PTPN6,PTK2B,SH2D2A,PXN,SOS1,SHC1,GRB2,FES,CDH5,CTNNB1,VEGFC,VHL,ARNT,S1PR1,YES1,PAK1, +PWCOMMONS Alternative NF-kappaB pathway FBXW11,NFKB2,RELB,MAP3K14,NFKB1, +PWCOMMONS Signaling events mediated by the Hedgehog family SMO,PTCH1,ARRB2,GAS1,ADRBK1,GLI2,HHAT,DHH,HHIP,IHH,AKT1,PTCH2,STIL,TGFB2,BOC,PTHLH,LRP2,LRPAP1,CDON,PIK3CA,PIK3R1,GSK3B,GLI1,GLI3,IFT172,MAP2K1,SPOP,SUFU,LGALS3,MTSS1,PRKCD,KIF3A,PRKACA,PIAS1,XPO1,STK36,FBXW11,SAP18,SIN3A,HDAC2,RBBP7,HDAC1,SAP30,RBBP4,SIN3B,RAB23,GNG2,GNB1,CREBBP,FOXA2, +PWCOMMONS Aurora A signaling TACC3,NDEL1,AURKA,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,GIT1,PAK1,ARHGEF7,AKT1,JUB,MDM2,DLGAP5,TPX2,CENPA,RASA1,GSK3B,GADD45A,BRCA1,CKAP5,TDRD7,TACC1,PRKACA,CDC25B,OAZ1,CPEB1,BIRC5,PPP2R5D,AURKAIP1,TP53, +PWCOMMONS PDGFR-alpha signaling pathway PLCG1,SHB,PDGFRA,CRK,FOS,JUN,ELK1,SRF,ITGAV,PIK3CA,PIK3R1,CSNK2A1,CRKL,SOS1,SHC1,GRB2,CAV1,RAPGEF1,IFNG,IRF1,CAV3, +PWCOMMONS Signaling events mediated by HDAC Class II HDAC5,HDAC4,YWHAE,HDAC10,RANGAP1,UBE2I,RANBP2,SUMO1,HDAC7,HDAC3,XPO1,RAN,SRF,NCOR2,HDAC11,HDAC6,RFXANK,ESR1,NR3C1,HSP90AA1,CAMK4,TUBB2A,HDAC9,ANKRA2,MEF2C,GATA1,ADRBK1,GATA2,GNG2,GNB1,BCL6,BCOR, +PWCOMMONS a6b1 and a6b4 Integrin signaling ITGA6,ITGB4,PIK3CA,PIK3R1,PRKCA,ITGB1,SHC1,AKT1,CD9,PMP22,HRAS,RPS6KB1,ERBB3,COL17A1,ERBB2,MET,GRB2,EGFR,EGF,MST1R,MST1,IL1A, +PWCOMMONS Noncanonical Wnt signaling pathway GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,MAP3K7,NFATC2,CSNK1A1,CAMK2A,MAP3K7IP1, +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes EGR3,FOS,CREM,JUN,CTLA4,TNF,IL2RA,NFATC2,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,CALM1,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,PTGS2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK, +PWCOMMONS Class I PI3K signaling events PTEN,RAP1A,SGK1,CD4,AP2M1,AP2A1,ARFGAP1,GGA3,ARF1,GOSR2,PLD2,ARFIP2,RAC1,USO1,GBF1,CLTB,COPA,CLTA,ASAP1,CYTH2,ARF6,GSK3B,BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,MAPK14,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,JUN,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,PTGS2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,CD19,PIK3CA,PIK3R1,IKBKB,AKT1,NFKBIB,SYK,CD79B,LYN,CD79A,PDPK1,CHUK,IKBKG,NFKB1,RELA,FCGR2B,PTPRC,POU2F2,BCL2A1,NFKBIA,CSK,PAG1,DAPP1,MAP4K1,BCL10,CARD11,MAP3K7,MALT1,BLNK,CD72,BTK,PLCG2,DOK1,INPP5D,RASA1,ETS1,ELK1,SOS1,SHC1,GRB2,VAV2,CAMK2G,PPP3CA,PPP3CB,PPP3CC,IBTK,MAP2K1,TRAF6,PTPN6,HRAS,RAF1,CD22,SH3BP5,RHOA,FOXO3,SLC2A4,MAP3K5,TNFAIP3,ATM,CYLD,NOD2,RIPK2,PRKCA,ERC1,FBXW11,TNFRSF1A,LCK,ARRB2,REL,BCL3,SRC,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,CDKN1A,AKT2,HSP90AA1,TP53,CASP9,KPNA1,CDKN1B,MDM2,TSC2,TBC1D4,AKT1S1,TSC1,FRAP1,RHEB,LST8,RAPTOR,YWHAZ,INSR,INS,PPP2R5D,IRS1,EIF4B,EIF4E,EIF4G1,RPS6KB1,EIF3A,RPS6,EEF2,EIF4EBP1,MKNK1,PRKAB1,AKT3,CDKN2A,PRKDC,RICTOR,MAPKAP1,ARF5,PDE3B,MAPK1,ADAP1,CYTH3, +PWCOMMONS Signaling mediated by p38-gamma and p38-delta MLTK,STMN1,MAPK12,SNTA1,PKN1,MAP2K6,CCND1,EEF2K,MAP2K3, +PWCOMMONS p38 MAPK signaling pathway CALM1,MAP3K5,CAMK2B,MAP3K6,MAP3K10,TRAF2,MAP3K4,MAP2K3,MAP3K7,MAP2K6,TRAF6,TXN,MAPKAPK3,KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,MAPK14,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAP3K3,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,DUSP16,DUSP8,DUSP10,MAPK13,MLTK,STMN1,MAPK12,SNTA1,PKN1,CCND1,EEF2K,ATM, +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PIK3CA,PIK3R1,BAG1,MET,HGF,ELK1,HRAS,MAPK3,RAF1,SRC,MAP2K2,INPP5D,INPPL1,CRKL,GAB1,PTPN11,MAP2K1,PXN,PTK2B,RASA1,PTK2,STAT3,PAK1,SOS1,GRB2,RAP1B,RAP1A,RAPGEF1,SHC1,RANBP9,MAP4K1,HGS,RANBP10,FOS,JUN,PDPK1,PLCG1,MAPK8,DOCK1,AKT1,MAP3K5,MAP2K4,PTPRJ,PTEN,GLMN,CRK,CBL,RPS6KB1,SH3KBP1,CTNNB1,BAD,NCK1, +PWCOMMONS Syndecan-1-mediated signaling events SDC1,MET,HGF,BSG,LAMA5,SDCBP,HPSE,PRKACA,PPIB,MAPK1,PIK3CA,PIK3R1,BAG1,ELK1,HRAS,MAPK3,RAF1,SRC,MAP2K2,INPP5D,INPPL1,CRKL,GAB1,PTPN11,MAP2K1,PXN,PTK2B,RASA1,PTK2,STAT3,PAK1,SOS1,GRB2,RAP1B,RAP1A,RAPGEF1,SHC1,RANBP9,MAP4K1,HGS,RANBP10,FOS,JUN,PDPK1,PLCG1,MAPK8,DOCK1,AKT1,MAP3K5,MAP2K4,PTPRJ,PTEN,GLMN,CRK,CBL,RPS6KB1,SH3KBP1,CTNNB1,BAD,NCK1,CCL5, +PWCOMMONS Visual signal transduction: Rods GNAT1,PDE6A,PDE6G,PDE6B,CNGB1,CNGA1,GUCY2D,GUCY2F,RGS9,GNB5,SAG,GNGT1,GNB1,SLC24A1,LRAT,GRK1,RDH12, +PWCOMMONS EphrinB-EPHB pathway DNM1,NCK2,ITGB3,ITGA2B,PIK3CA,PIK3R1,RGS3,MAP2K4,EPHB4,EFNB2,RAC1,TIAM1,MAP3K7,MAPK8,PTPN13,CXCR4,EPHB3,EPHB2,KALRN,PXN,EPHB1,SRC,RASA1,GRB2,PTK2,NCK1,RRAS,WASL,ITSN1,GRB7,MAP2K1,SYNJ1,TF,RHOA,MAP4K4,HRAS,ROCK1,GRIA1,EFNA5,PAK1, +PWCOMMONS TNF receptor signaling pathway RIPK1,TNFRSF1A,TRADD,TNF,BIRC2,BIRC3,CAV1,MAP3K1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,UBE2D3,RFFL,FADD,MAP3K5,SMPD1,TNFRSF1B,NUMA1,SLK,GAS2,LIMK1,VIM,PRF1,SREBF1,CFL2,CASP9,APAF1,TOP1,PTK2,PARP1,CASP3,CYCS,CASP6,APP,CASP7,GZMB,GSN,CASP10,DFFB,ARHGDIB,BCL2,BID,CASP2,KRT18,CRADD,LRDD,MADD,CASP1,DIABLO,CASP8,ACTA1,SATB1,BAX,SPTAN1,DFFA,TFAP2A,MAP2K3,MAPKAPK3,KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,MAP2K6,DUSP1,MAP2K4,GSK3B,FKBP8,CALM1,RCAN2,YWHAQ,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,PTPRK,PIM1,FKBP1A,MAP3K3,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,DUSP16,DUSP8,DUSP10,MAP2K7,ADAM17,STAT1,SQSTM1,CTSD,MAP4K4,EGF,PAWR,KSR1,AKT1,PRKCD,IGF1,MYC,BAG4,AIFM1,MAP2K1,MAP2K2,RB1,PRKRA,SMPD3,EIF2A,PDGFA,NSMAF,SPHK2,ASAH1,MAPK1,MAP3K7,TXN,GNB2L1,SMPD2,TRAF1, +PWCOMMONS p75(NTR)-mediated signaling PSENEN,NCSTN,PSEN1,APH1A,SORT1,NGFR,NGF,ZNF274,TRAF6,CASP3,RAC1,RAPGEF1,CRKL,NTF3,GRB2,MCF2L,MAGED1,CCND1,DYNLT1,RGS19,GIPC1,RHOA,NTRK2,BDNF,RICS,SOS1,RIT2,RASGRF1,NTRK1,RASA1,SHC1,ELMO1,MATK,GAB1,GAB2,PTPN11,FAIM,DNM1,NTF4,MAP2K1,PIK3CA,PIK3R1,SH2B1,EHD4,STAT3,DOCK1,NEDD4L,SQSTM1,DNAJA3,ABL1,RIT1,TIAM1,PLCG1,EGR1,TRPC3,TRPV1,CAMK4,GSK3B,AKT1,BAD,FOXO3,CREB1,PRKCD,SRC,PDPK1,STAT5A,CAMK2A,AGAP2,EPB41L1,NTRK3,MAPK7,MAP2K5,MAPK14,FOS,SRF,BRAF,RPS6KA5,CDK5R1,CDK5,MAP3K2,RPS6KA1,MEF2C,RUSC1,MAPKAPK2,RAF1,ELK1,BCL2L11,PRDM4,TP53,NGFRAP1,YWHAE,SMPD2,PLG,DIABLO,MMP3,RIPK2,IRAK1,E2F1,NDNL2,NDN,CASP9,APAF1,CASP6,CYCS,APP,MMP7,ADAM17,BEX1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,BCL10,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,BCL3,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,MYD88,MAGEH1,FURIN,ARHGDIA,LINGO1,RTN4R, +PWCOMMONS Atypical NF-kappaB pathway NFKB1,NFKBIA,RELA,IKBKB,FBXW11,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC, +PWCOMMONS Regulation of p38-alpha and p38-beta KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,MAPK14,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,MAP2K6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAP3K3,TRAF6,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,MAP2K3,DUSP16,DUSP8,DUSP10, +PWCOMMONS IL4-mediated signaling events JAK1,IL2RG,IL4R,IL4,FES,JAK3,STAT6,PTPN6,SOCS5,SELP,TFF3,IL10,CEBPB,FRAP1,SP1,BCL6,IL5,IRS1,INPP5D,SHC1,IGHG3,ETS1,OPRM1,AICDA,IRF4,CD40LG,JAK2,IL13RA1,THY1,CCL26,SOCS3,SOCS1,AKT1,GRB2,COL1A2,HMGA1,CCL17,PIK3CA,PIK3R1,SPI1,PIGR,CBL,PARP14,LTA,GTF3A,DOK2,EGR2,IGHG1,CCL11,RETNLB,IL13RA2,COL1A1,RPS6KB1,ARG1,MAPK14,FCER2,IGHE,ALOX15,ITGB3, +PWCOMMONS S1P5 pathway GNA12,RHOA, +PWCOMMONS mTOR signaling pathway LST8,RAPTOR,RHEB,INSR,INS,PPP2R5D,FKBP1A,IRS1,EIF4B,EIF4E,EIF4G1,PIK3CA,PIK3R1,AKT1,TSC2,RPS6KB1,PDPK1,EIF3A,RPS6,MAP3K5,TSC1,EEF2,EIF4EBP1,PTEN,MKNK1,PRKAB1, +PWCOMMONS Caspase cascade in apoptosis SLK,GAS2,LIMK1,VIM,PRF1,SREBF1,CFL2,MAP3K1,CASP9,APAF1,TOP1,PTK2,PARP1,CASP3,CYCS,CASP6,APP,CASP7,GZMB,GSN,CASP10,DFFB,ARHGDIB,BCL2,BID,CASP2,KRT18,CRADD,TRAF2,RIPK1,LRDD,TNFRSF1A,TRADD,TNF,MADD,BIRC3,CASP1,DIABLO,CASP8,ACTA1,SATB1,BAX,SPTAN1,DFFA,TFAP2A, +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling CRKL,NTF3,GRB2,MCF2L,NGF,MAGED1,CCND1,DYNLT1,RGS19,GIPC1,RHOA,NTRK2,BDNF,RICS,NGFR,SOS1,RIT2,RASGRF1,NTRK1,RASA1,SHC1,ELMO1,MATK,GAB1,GAB2,PTPN11,FAIM,DNM1,NTF4,MAP2K1,PIK3CA,PIK3R1,RAC1,SH2B1,EHD4,STAT3,DOCK1,NEDD4L,SQSTM1,DNAJA3,ABL1,RIT1,TIAM1,PLCG1,EGR1,TRPC3,TRPV1,CAMK4,GSK3B,AKT1,BAD,FOXO3,CREB1,PRKCD,SRC,PDPK1,STAT5A,CAMK2A,AGAP2,EPB41L1,NTRK3,MAPK7,MAP2K5,MAPK14,FOS,SRF,BRAF,RPS6KA5,CDK5R1,CDK5,MAP3K2,RPS6KA1,MEF2C,RUSC1,MAPKAPK2,RAF1,ELK1, +PWCOMMONS Regulation of cytoplasmic and nuclear SMAD2/3 signaling PPM1A,SMAD2,NUP214,SMAD3,MAP3K1,KPNB1,NUP153,SMAD4,PIAS4,UBE2I,TGFBRAP1,CALM1,SIN3A,SAP18,HDAC2,RBBP7,NCOR1,HDAC1,SAP30,SKI,SIN3B,RBBP4,CTBP1,TGIF1,FOS,JUN,NR3C1,HNF4A,SKIL,GATA3,SMAD7,CDKN1A,CEBPB,CITED1,RUNX2,IL10,TCF3,MYOD1,SNIP1,PCAF,CBFB,RBL1,TFDP1,DLX1,ZBTB17,SP1,MED15,AR,IL5,MAX,CDKN2B,TFE3,IRF7,IGHA1,TGIF2,MEF2C,FOXG1,GSC,FOXH1,ESR1,CREB1,AKT1,NCOA1,DCP1A,VDR,EP300,COL1A2,PIAS3,MYC,SERPINE1,ATF2,ATF3,LAMC1,IFNB1,HSPA8,GCN5L2,NKX2-5,ITGB5,TGFBR2,PML,TGFBR1,ZFYVE9,PPP2CB,STRAP,CAMK2A,SHC1,SOS1,GRB2,MAP3K7,DAB2,EIF2A,MAP3K7IP2,MAP3K5,CAMK2B,MAP3K6,MAP3K10,TRAF2,MAP3K4,MAP2K3,MAP2K6,TRAF6,TXN,MAPKAPK3,KRT8,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,RAF1,YWHAZ,SRF,MAPK14,TH,ETV1,ATF1,MKNK1,MITF,NOS2,GDI1,RAB5A,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,MAP3K8,E2F1,EGR3,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,IL8,FOSL1,JUNB,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAP3K3,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,DUSP16,DUSP8,DUSP10,MAPK13,MLTK,STMN1,MAPK12,SNTA1,PKN1,CCND1,EEF2K,ATM,RHOA,DACT2,AXIN1,RNF111,NEDD4L,PPP2CA,TGFBR3,DYNLRB1,XIAP,CAV1,PPP1R15A,PPP1CA,WWP1,CTNNB1,PARD6A,OCLN,ARRB2,PPP2R2A,SMURF2,YAP1,SPTBN1,YWHAE,DAXX,ZFYVE16,CTGF,RPS6KB1,PDPK1,SMURF1,NCOA2, +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CASP8,MAP3K5,FADD,FASLG,FAS,CD247,MAP3K14,CASP3,BIRC3,DFFA,DFFB,CASP7,CASP9,APAF1,CYCS,MAP2K7,CHUK,CRADD,TRAF2,RIPK1,TRAF1,TNFRSF1A,TRADD,TNF,CASP2,BAG4,CASP6,MAPK8,BID,NFKB1,NFKBIA,RELA,BCL2,CFLAR, +PWCOMMONS Signaling by Aurora kinases PEBP1,RHOA,RACGAP1,KIF23,CBX5,AURKB,INCENP,CDCA8,BIRC5,CENPA,SGOL1,AURKC,SMC4,SMC2,NCAPG,NCAPD2,NCAPH,PPP2R5D,PPP1CC,SEPT1,MYLK,KIF20A,RASA1,STMN1,H3F3A,EVI5,NSUN2,NPM1,NCL,CUL3,KLHL9,KLHL13,VIM,PSMA3,BUB1,KIF2C,NDC80,AURKA,TACC1,TACC3,NDEL1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,GIT1,PAK1,ARHGEF7,AKT1,JUB,MDM2,DLGAP5,TPX2,GSK3B,GADD45A,BRCA1,CKAP5,TDRD7,PRKACA,CDC25B,OAZ1,CPEB1,AURKAIP1,TP53, +PWCOMMONS Integrins in angiogenesis ITGB3,ITGAV,VEGFA,KDR,SPP1,PIK3C2A,PTK2,VCL,SDC1,F11R,FGF2,COL4A3,CDKN1B,AKT1,RAC1,GPR124,PIK3CA,PIK3R1,ILK,RHOA,ROCK1,HSP90AA1,TLN1,VTN,CD47,BCAR1,CSF1R,CBL,EDIL3,IGF1,IRS1,IGF1R,ANGPTL3,PXN,VAV3,PI4KA,PI4KB,CSF1,TGFBR2,SRC,FN1,PTPN11,RPS6KB1,MFGE8,CASP8,PLAU,CHUK,MAP3K1,CD44,ROCK2,SYK,MMP2,MAP3K14,GSN,MAPK8,NFKBIA,NFKB1,RELA,PIP5K1A,FOS,JUN,MMP9, +PWCOMMONS IL12 signaling mediated by STAT4 IL18RAP,STAT4,IFNG,IRF1,TBX21,CREBBP,JUN,TGFB1,IL18,IL2RA,PIAS2,IL2,CD28,IL13,STAT3,FOS,ETV5,CD3E,HLA-DRA,CD3D,HLA-DRB1,CD3G,CD4,CD247,PRF1, +PWCOMMONS ADP-ribosylation factor 1 pathway AP2M1,AP2A1,ARFGAP1,GGA3,ARF1,GOSR2,PLD2,ARFIP2,RAC1,USO1,GBF1,CLTB,COPA,CLTA,ASAP1,CYTH2, +PWCOMMONS Signaling mediated by p38-alpha and p38-beta KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,MAPK14,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6, +PWCOMMONS TGF-beta receptor signaling PML,TGFBR1,ZFYVE9,PPP2CB,STRAP,SMAD7,CAMK2A,SHC1,SOS1,GRB2,SMAD4,MAP3K7,DAB2,EIF2A,MAP3K7IP2,CALM1,MAP3K5,CAMK2B,MAP3K6,MAP3K10,TRAF2,MAP3K4,MAP2K3,MAP2K6,TRAF6,TXN,MAPKAPK3,KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,MAPK14,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAP3K3,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,DUSP16,DUSP8,DUSP10,MAPK13,MLTK,STMN1,MAPK12,SNTA1,PKN1,CCND1,EEF2K,ATM,RHOA,SKIL,DACT2,AXIN1,RNF111,SMAD2,NEDD4L,PPP2CA,TGFBRAP1,TGFBR3,DYNLRB1,XIAP,CAV1,PPP1R15A,PPP1CA,WWP1,CTNNB1,PARD6A,OCLN,ARRB2,PPP2R2A,SMURF2,YAP1,SMAD3,SPTBN1,YWHAE,DAXX,ZFYVE16,CTGF,RPS6KB1,PDPK1,SMURF1,PPM1A,NUP153,PIAS4,UBE2I,SIN3A,SAP18,HDAC2,RBBP7,NCOR1,HDAC1,SAP30,SKI,SIN3B,RBBP4,CTBP1,TGIF1,NR3C1,HNF4A,CDKN1A,CITED1,RUNX2,IL10,MYOD1,SNIP1,PCAF,CBFB,RBL1,TFDP1,DLX1,ZBTB17,SP1,MED15,AR,MAX,CDKN2B,TFE3,IRF7,IGHA1,TGIF2,FOXG1,GSC,FOXH1,AKT1,NCOA1,DCP1A,VDR,EP300,COL1A2,PIAS3,MYC,SERPINE1,ATF3,LAMC1,IFNB1,HSPA8,GCN5L2,NKX2-5,ITGB5,NCOA2, +PWCOMMONS Syndecan-2-mediated signaling events SDC2,RASA1,BAX,LAMA3,CASK,KNG1,HRAS,TGFB1,CAV2,FN1,IL8,SDCBP,ITGB1,ITGA5,NF1,PRKCD,ITGA2,MMP2,CDH1,BGLAP,CDH2,KLB,FGF23,CTTN,CAMK2A,PIK3CA,PIK3R1,SPP1,AKT1,MMP9,IL17RD,FRS2,PLAU,CBL,SOS1,SHC1,GRB2,CTNND1,NCAM1,SSH1,FGF1,PTK2B,PTPN11,GAB1,PAK4,PDPK1,FGFR1,PLCG1,STAT1,RUNX2,PLAUR,FGFR4,FGF19,FGFR2,FOS,JUN,STAT5B,RPS6KA1,MET,HGF,LAMA1,EPB41,TNFRSF13B,PRKACA,GNB2L1,TRAPPC4,MAPK8,CSF2,EZR,CASP3,EPHB2,RHOA, +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway GNA12,RHOA,NFKB1,RELA,SMPD1,CTSD,MAP4K4,EGF,PAWR,PRKCZ,KSR1,AKT1,CRADD,TRAF2,RIPK1,TNFRSF1A,TRADD,TNF,MADD,BIRC3,BID,BCL2,PRKCD,MAPK3,IGF1,MYC,BAG4,MAP3K1,BAD,CASP8,MAPK8,AIFM1,MAP2K1,MAP2K2,NFKBIA,RAF1,RB1,BAX,CYCS,PRKRA,SMPD3,EIF2A,FADD,PDGFA,NSMAF,SPHK2,ASAH1,MAP2K4,MAPK1,S1PR4,SGPP1,S1PR2,ELK1,PAK1,CDH5,FOS,JUN,RAC1,GNA13,IRS1,MAPK14,SGPL1,S1PR3,S1PR1,SPHK1,PLCB2,ITGB3,ITGAV,PLCG1,PTGS2,PDGFRB,GRB10,HRAS,ABL1,BCAR1,HIF1A,PTPN11,PTPN1,PTEN,VAV2,PIK3CA,PIK3R1,CBL,SNX15,DNM2,GAB1,GRB7,ACP1,FER,PDGFB,LRP1,PTPN2,SOS1,SHC1,GRB2,CSK,DOK1,SHB,SH2B2,PTPRJ,RASA1,VEGFA,KDR,AKT3,CXCR4,FLT1,SRC,JAK2, +PWCOMMONS FOXA transcription factor networks FOS,JUN,CYP2C18,FOXA1,AR,SP1,PISD,SCGB1A1,GCG,SOD1,ATP5J,INS,VTN,CEBPB,XBP1,KLK3,SHH,NDUFV3,FOXA2,APOB,NCOA3,AP1B1,NR2F2,COL18A1,BRCA1,SERPINA1,C4BPB,SFTPD,TFF1,POU2F1,NKX3-1,CDKN1B,NRIP1,DSCAM,ALDOB,NKX2-1,HNF4A,GCK,FOXA3,HMGCS1,TTR,PCK1,F2,G6PC,NF1,HNF1A,PKLR,AFP,ABCC8,SLC2A2,ALAS1,HADH,FOXF1,CREB1,ACADVL,PDX1,TAT,ACADM,APOA1,KCNJ11,TFRC,NR3C1,ALB,AKT1,IGFBP1,UCP2,BDH1, +PWCOMMONS TCR signaling in nave CD8+ T cells CHUK,IKBKG,BCL10,CARD11,TRAF6,PDPK1,MALT1,TRPV6,STIM1,VAV1,LCP2,GRAP2,CD28,CSK,PAG1,RASGRP2,PRKCB,PTPRC,PRKCQ,LCK,AKT1,PRKCE,RAP1A,RASGRP1,FYN,CD8A,CD3E,CD3D,HLA-A,CD3G,B2M,CD247,CD8B,SOS1,GRB2,PTPN6,RASSF5,MAP3K8,PRKCA,PLCG1,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,ERC1,FBXW11,TNFRSF1A,TNF,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,BIRC2,UBE2D3,ZAP70,PRF1,CBL,LAT,ORAI1,MAPK9,FOS,JUN,ELK1,MAPK8,FASLG,IL2,IL2RB,IL2RG,IL2RA,EOMES,RAF1,IFNG,CALM1,EGR4,STAT4,TNFRSF4,GZMB,NFATC2,FOSL1,JUNB,TNFRSF18,NFATC1,IFNAR1,IFNAR2,BRAF,TNFRSF9,EGR1,PTPN7,MAP3K14,NFKB2,RELB, +PWCOMMONS S1P3 pathway AKT3,RHOA,ITGB3,ITGAV,RAC1,S1PR3,S1PR2,S1PR1,CXCR4,VEGFA,FLT1,PDGFRB,GNA13,GNA12,SRC,JAK2, +PWCOMMONS Class IB PI3K non-lipid kinase events MAPK1,MAP2K1, +PWCOMMONS Downstream signaling in nave CD8+ T cells FOS,JUN,ELK1,MAPK8,PRKCQ,CD8A,CD3E,CD3D,HLA-A,CD3G,B2M,CD247,CD8B,PRF1,FASLG,IL2,IL2RB,IL2RG,IL2RA,PRKCA,EOMES,RAF1,IFNG,CALM1,EGR4,STAT4,TNFRSF4,GZMB,TNF,PRKCB,PRKCE,NFATC2,FOSL1,JUNB,TNFRSF18,NFATC1,IFNAR1,IFNAR2,BRAF,TNFRSF9,EGR1,PTPN7, +PWCOMMONS Endothelins BCAR1,PTK2B,CRK,SRC,RAF1,EDNRA,EDN1,JUN,MAPK8,HRAS,EDNRB,GNA12,COL1A2,FOS,CYSLTR2,GSK3B,BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,MAPK14,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,PTGS2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,EDN2,EGFR,SOS1,EGF,GRB2,EDN3,JAK2,PLA2G4A,TRPC6,FRAP1,MMP1,SLC9A3,COL3A1,AKT1,LST8,RAPTOR,RHEB,INSR,INS,PPP2R5D,IRS1,EIF4B,EIF4E,EIF4G1,PIK3CA,PIK3R1,TSC2,RPS6KB1,PDPK1,EIF3A,RPS6,MAP3K5,TSC1,EEF2,EIF4EBP1,PTEN,MKNK1,PRKAB1,CYSLTR1, +PWCOMMONS Wnt signaling GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,MAP3K7,NFATC2,CSNK1A1,CAMK2A,MAP3K7IP1,LRP6,FZD1,CTNNB1,CTBP1,AES,CREBBP,TLE1,KREMEN2,DKK1,WNT1,FBXW11,HDAC1,AXIN1,APC,MACF1,WIF1,PPP2R5D,RANBP3,DKK2,DVL1,SMAD4,MYC,AXIN2,CCND1,RAN,FRAT1,NKD1,CSNK2A1, +PWCOMMONS Fc-epsilon receptor I signaling in mast cells MS4A2,FCER1A,FCER1G,PLCG1,LAT2,LCP2,GRB2,PIK3CA,PIK3R1,IGHE,PLA2G1B,S1PR1,SYK,WIPF1,LYN,FOS,JUN,KLRG1,PTPN11,MAPK1,PLA2G4A,AKT1,MAPK3,MAP3K1,BTK,SOS1,SHC1,IKBKB,PRKCB,MAP2K4,ITK,NFKB1,RELA,HRAS,SPHK1,PPAP2A,VAV1,HCLS1,CBL,PTK2,DOK1,INPP5D,RASA1,NFATC2,MAP2K7,DUSP1,CBLB,MAPK8,PXN,CHUK,IKBKG,PAK2,GAB2,PLD2,LAT,MAP2K1,MAP2K2,RAF1,PTPN13,FYN,FER, +PWCOMMONS FOXA1 transcription factor network FOS,JUN,CYP2C18,FOXA1,AR,SP1,PISD,SCGB1A1,GCG,SOD1,ATP5J,INS,VTN,CEBPB,XBP1,KLK3,SHH,NDUFV3,FOXA2,APOB,NCOA3,AP1B1,NR2F2,COL18A1,BRCA1,SERPINA1,C4BPB,SFTPD,TFF1,POU2F1,NKX3-1,CDKN1B,NRIP1,DSCAM, +PWCOMMONS TRAIL signaling pathway RIPK1,FADD,TRADD,TNFSF10,TNFRSF10A,TNFRSF10B,MAPK8,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,MAP2K4,DAP3,TNFRSF10C,NUMA1,SLK,GAS2,LIMK1,VIM,PRF1,SREBF1,CFL2,MAP3K1,CASP9,APAF1,TOP1,PTK2,PARP1,CASP3,CYCS,CASP6,APP,CASP7,GZMB,GSN,CASP10,DFFB,ARHGDIB,BCL2,BID,CASP2,KRT18,CRADD,LRDD,MADD,BIRC3,CASP1,DIABLO,CASP8,ACTA1,SATB1,BAX,SPTAN1,DFFA,TFAP2A,ARAP3,PTEN,RAP1A,SGK1,CD4,AP2M1,AP2A1,ARFGAP1,GGA3,ARF1,GOSR2,PLD2,ARFIP2,RAC1,USO1,GBF1,CLTB,COPA,CLTA,ASAP1,CYTH2,ARF6,GSK3B,FKBP8,CALM1,RCAN2,YWHAQ,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,JUN,CTLA4,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,PTGS2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,PTPRK,PIM1,FKBP1A,CD19,AKT1,NFKBIB,CD79B,LYN,CD79A,PDPK1,FCGR2B,PTPRC,POU2F2,BCL2A1,CSK,PAG1,DAPP1,MAP4K1,CARD11,MAP3K7,BLNK,CD72,BTK,PLCG2,DOK1,INPP5D,RASA1,ETS1,ELK1,SOS1,SHC1,GRB2,VAV2,CAMK2G,PPP3CA,PPP3CB,PPP3CC,IBTK,MAP2K1,PTPN6,HRAS,RAF1,CD22,SH3BP5,RHOA,FOXO3,SLC2A4,MAP3K5,CDKN1A,AKT2,HSP90AA1,TP53,KPNA1,CDKN1B,MDM2,TSC2,TBC1D4,AKT1S1,TSC1,FRAP1,RHEB,LST8,RAPTOR,YWHAZ,INSR,INS,PPP2R5D,IRS1,EIF4B,EIF4E,EIF4G1,RPS6KB1,EIF3A,RPS6,EEF2,EIF4EBP1,MKNK1,PRKAB1,AKT3,CDKN2A,PRKDC,RICTOR,MAPKAP1,ARF5,PDE3B,MAPK1,ADAP1,CYTH3,TNFRSF10D,SMPD1,CTSD,MAP4K4,EGF,PAWR,KSR1,PRKCD,IGF1,MYC,BAG4,AIFM1,MAP2K2,RB1,PRKRA,SMPD3,EIF2A,PDGFA,NSMAF,SPHK2,ASAH1,CFLAR, +PWCOMMONS p38 signaling mediated by MAPKAP kinases HSPB1,LSP1,CDC25B,MAPKAPK3,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,MAPK14,TH,ETV1, +PWCOMMONS Regulation of Telomerase HUS1,PTGES3,DKC1,TERT,HSP90AA1,RAD9A,RAD1,ABL1,AKT1,IFNG,IRF1,TNKS,TERF1,ESR1,CCND1,IL2,XRCC6,XRCC5,TERF2,MAX,MXD1,SMG5,BLM,ATM,CDKN1B,NR2F2,TERF2IP,NBN,RAD50,MRE11A,HNRNPC,SAP18,SIN3A,HDAC2,RBBP7,HDAC1,SAP30,RBBP4,SIN3B,SMAD3,MYC,E2F1,SMG6,WRN,SP3,PINX1,TINF2,UBE3A,FOS,JUN,PIF1,PARP2,ACD,POT1,FRAP1,RPS6KB1,NFKB1,YWHAE,SP1,IFNAR2,EGFR,EGF,NCL, +PWCOMMONS Regulation of nuclear SMAD2/3 signaling SMAD4,SIN3A,SAP18,HDAC2,RBBP7,NCOR1,HDAC1,SAP30,SKI,SIN3B,RBBP4,CTBP1,TGIF1,FOS,JUN,NR3C1,HNF4A,SMAD2,SKIL,GATA3,SMAD7,CDKN1A,CEBPB,CITED1,RUNX2,IL10,TCF3,MYOD1,SNIP1,PCAF,CBFB,RBL1,TFDP1,DLX1,ZBTB17,SP1,MED15,AR,IL5,MAX,CDKN2B,TFE3,IRF7,IGHA1,TGIF2,MEF2C,FOXG1,GSC,FOXH1,ESR1,CREB1,PIAS4,AKT1,NCOA1,DCP1A,VDR,EP300,COL1A2,PIAS3,MYC,SERPINE1,ATF2,ATF3,LAMC1,IFNB1,HSPA8,GCN5L2,NKX2-5,ITGB5,TGFBR2,PML,TGFBR1,ZFYVE9,PPP2CB,STRAP,CAMK2A,SHC1,SOS1,GRB2,MAP3K7,DAB2,EIF2A,MAP3K7IP2,CALM1,MAP3K5,CAMK2B,MAP3K6,MAP3K10,TRAF2,MAP3K4,MAP2K3,MAP2K6,TRAF6,TXN,MAPKAPK3,KRT8,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,RAF1,YWHAZ,SRF,MAPK14,TH,ETV1,ATF1,MKNK1,MITF,NOS2,GDI1,RAB5A,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,IL8,FOSL1,JUNB,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAP3K3,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,DUSP16,DUSP8,DUSP10,MAPK13,MLTK,STMN1,MAPK12,SNTA1,PKN1,CCND1,EEF2K,ATM,RHOA,DACT2,AXIN1,RNF111,NEDD4L,PPP2CA,TGFBRAP1,TGFBR3,DYNLRB1,XIAP,CAV1,PPP1R15A,PPP1CA,WWP1,CTNNB1,PARD6A,OCLN,ARRB2,PPP2R2A,SMURF2,YAP1,SPTBN1,YWHAE,DAXX,ZFYVE16,CTGF,RPS6KB1,PDPK1,SMURF1,PPM1A,NUP153,UBE2I,NCOA2, +PWCOMMONS Signaling events mediated by HDAC Class I RELA,PRKACA,NCOR1,SAP18,SIN3A,HDAC2,RBBP7,HDAC1,SAP30,RBBP4,SIN3B,GATAD2A,GATAD2B,MBD2,CHD3,CHD4,MTA2,YY1,HDAC3,NFKBIA,SMG5,HDAC8,NCOR2,STAT3,SMAD7,YWHAB,HDAC5,HDAC4,YWHAE,HDAC10,RANGAP1,UBE2I,RANBP2,SUMO1,HDAC7,XPO1,RAN,SRF,HDAC11,HDAC6,RFXANK,ESR1,NR3C1,HSP90AA1,CAMK4,TUBB2A,HDAC9,ANKRA2,MEF2C,GATA1,ADRBK1,GATA2,GNG2,GNB1,BCL6,BCOR,TNFRSF1A,TNF,SMURF1,FBXW11,MAX,MXD1,FKBP3,PCAF,SIRT2,FOXO1,FHL2,SIRT1,HIST1H1E,MEF2D,HIST1H4A,BAX,XRCC6,PPARGC1A,TP53,FOXO3,SIRT7,MYOD1,CDKN1A,EP300,FOXO4,HOXA10,ACSS2,SIRT3,MBD3L2,MBD3,WDR77,PRMT5,TFCP2,ZFPM1,NR2C1, +PWCOMMONS IL2-mediated signaling events JAK1,IL2,LCK,IL2RB,IL2RG,JAK3,IL2RA,PIK3CA,GAB2,PIK3R1,PTPN11,SOS1,SHC1,GRB2,RASA1,DOK2,PTK2B,BCL2,SOCS3,SOCS2,FRAP1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,ARRB2,REL,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,E2F1,AKT1,BCL2L1,CALM1,TERT,RPS6KB1,HSP90AA1,RAC1,PRKCZ,UGCG,FOXO3,MYC,MYB,SMPD1,SGMS1,EIF3A,RPS6,RHOA,FYN,PRKCB,RAF1,FOS,MAPKAPK2,CDK2,PPP2R5D,STAT3,CISH,PRKCE,FOXP3,CCNA2,CCND2,PRF1,CDK6,SP1,ELF1,FASLG,LTA,IL4,CCND3,SOCS1,IKZF3,JUN,IFNG,STAT1, +PWCOMMONS FOXM1 transcription factor network FOXM1,AURKB,SP1,XRCC1,MAP2K1,CCNB1,CDC25B,ONECUT1,MYC,CKS1B,MMP2,CDC2,CCNE1,CDK2,CDKN2A,LAMA4,CENPF,CHEK2,SKP2,HSPA1A,RB1,CENPB,BRCA2,PLK1,CDK4,CCND1,ETV5,CCNB2,TGFA,CENPA,NEK2,ESR1,FOS,HIST1H2BA,GSK3A,BIRC5, +PWCOMMONS Insulin-mediated glucose transport PPP1CC,STXBP4,STX4,VAMP2,ASIP,INSR,INS,SLC2A4,AKT1,TBC1D4,GSK3B,LNPEP,TRIP10,RHOQ,AKT2,GYS1, +PWCOMMONS EPO signaling pathway EPO,LYN,EPOR,JAK2,VAV2,INPP5D,PIK3R1,GAB1,PTPN11,SHC1,SOS1,GRB2,IRS2,STAT1,SH2B3,SOCS3,BTK,TEC,BCL2,BCL2L1,PLCG1,MAPK8,PTPN6,PLCG2,CRKL,RAPGEF1,CBL,TRPC6,MAPK14,HRAS,NFKB1, +PWCOMMONS S1P1 pathway SPHK1,PLCB2,RHOA,ITGB3,ITGAV,RAC1,PLCG1,PTGS2,PDGFRB,GRB10,HRAS,ABL1,AKT1,MYC,BCAR1,HIF1A,PTPN11,PTPN1,PTEN,VAV2,PIK3CA,PIK3R1,CBL,SNX15,DNM2,GAB1,GRB7,ACP1,FER,PDGFB,LRP1,PTPN2,SOS1,SHC1,GRB2,CSK,DOK1,SHB,SH2B2,PTPRJ,PRKCD,RASA1,VEGFA,KDR, +PWCOMMONS BCR signaling pathway CD19,PIK3CA,PIK3R1,IKBKB,AKT1,NFKBIB,SYK,CD79B,LYN,CD79A,PDPK1,CHUK,IKBKG,NFKB1,RELA,FCGR2B,PTPRC,POU2F2,BCL2A1,NFATC1,NFKBIA,CSK,PAG1,DAPP1,MAP4K1,BCL10,CARD11,MAP3K7,MALT1,CALM1,MAP3K1,BLNK,CD72,BTK,PLCG2,DOK1,INPP5D,RASA1,FOS,JUN,ETS1,ELK1,MAPK14,SOS1,SHC1,GRB2,VAV2,CAMK2G,PTEN,PPP3CA,PPP3CB,PPP3CC,IBTK,MAP2K1,TRAF6,CSNK2A1,MAPK3,PTPN6,HRAS,RAF1,RAC1,CD22,SH3BP5, +PWCOMMONS LPA4-mediated signaling events PRKCE,LPAR4,PRKACA,CREB1, +PWCOMMONS Signaling events mediated by HDAC Class III TUBB2A,FOXO1,FHL2,SIRT1,HIST1H1E,HDAC4,MEF2D,HIST1H4A,BAX,XRCC6,PPARGC1A,TP53,FOXO3,SIRT7,MYOD1,PCAF,CDKN1A,EP300,FOXO4,HOXA10,ACSS2,SIRT3, +PWCOMMONS S1P4 pathway RHOA,GNA13,GNA12,S1PR5,PLCG1, +PWCOMMONS Calcium signaling in the CD4+ TCR pathway IL2,FOS,CREM,JUN,IL2RA,CHP,CALM1,PTGS2,FKBP1A,CABIN1,IL3,CD40LG,CSF2,BATF3,IL4,RCAN2,FOSL1,JUNB,FASLG,POU2F1,IFNG,PRKACA,AKAP5, +PWCOMMONS IL23-mediated signaling events IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,IL12B,IL12RB1,JAK2,IL23A,IL23R,TYK2,STAT5A,SOCS3,IFNG,IL6,STAT3,STAT4,CCL2,ALOX12B,IL24,CD4,IL2,NOS2,IL18R1,IL18,IL18RAP,STAT1,IL17F,ITGA3,MPO,IL1B,CD3E,CXCL9,IL17A,IL19, +PWCOMMONS BARD1 signaling events FANCD2,TOPBP1,BARD1,BRCA1,FANCF,FANCG,FANCL,FANCA,FANCE,FANCC,PCNA,RAD51,RBBP8,NBN,RAD50,MRE11A,EWSR1,UBE2D3,ATM,ATR,CSTF1,UBE2L3,TP53,XRCC6,XRCC5,PRKDC,CCNE1,CDK2, +PWCOMMONS JNK signaling in the CD4+ TCR pathway RCAN1,IL2,FOS,CREM,JUN,IL2RA,CHP,CALM1,PTGS2,FKBP1A,CABIN1,IL3,CD40LG,CSF2,BATF3,IL4,RCAN2,FOSL1,JUNB,FASLG,POU2F1,IFNG,PRKACA,AKAP5,MAP3K1,MAP2K4,DBNL,LCP2,MAP4K1,GRAP2,PRKCB,MAP3K7,MAP3K8, +PWCOMMONS Syndecan-3-mediated signaling events IL8,PTN,AGRP,NCAN,MC4R,POMC,CASK,FYN,CTTN,SRC,EGFR,APH1B,PSENEN,NCSTN,PSEN1,APH1A, +PWCOMMONS Signaling events regulated by Ret tyrosine kinase GFRA1,GDNF,GAB1,GRB2,SHC1,PIK3CA,PIK3R1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,SOS1,CREB1,RAP1A,PTPN11,FRS2,BCAR1,PXN,CRK,DOK1,RASA1,NCK1,DOK6,JUN,MAPK8,GRB10,GRB7,PTK2,SHANK3,HRAS,IRS1,RHOA,DOK5,IRS2,DOK4,RAC1,PDLIM7, +PWCOMMONS Signaling events mediated by PRL PTP4A2,RABGGTB,ITGB1,PTP4A1,RHOA,PTP4A3,CCNA2,CCNE1,CDK2,RAC1,CDKN1A,BCAR1,ITGA1,EGR1,SRC,ROCK1,RHOC,ATF5,AGT, +PWCOMMONS Circadian rhythm pathway TIMELESS,NR1D1,NONO,PER1,CLOCK,ARNTL,ATR,CHEK1,NPAS2,WDR5,BHLHE40,DEC1,CRY2, +PWCOMMONS Paxillin-dependent events mediated by a4b1 ITGB1,PXN,ITGA4,ARF6,ITGAL,ITGB2,VCAM1,PIK3CA,PIK3R1,PRKACA,RAC1,CRKL,CBL,GIT1,ITGB7,BCAR1,CRK,DOCK1, +PWCOMMONS HIF-1-alpha transcription factor network HIF1A,ARNT,SP1,AKT1,SMAD3,SMAD4,PKM2,PGM1,HK1,NCOA2,TERT,TF,FECH,PFKFB3,HK2,NT5E,ID2,MCL1,ALDOA,PGK1,EGLN1,LDHA,SERPINE1,ENG,CITED2,BNIP3,ADM,BHLHE40,HDAC7,COPS5,CREB1,CA9,CXCR4,SLC2A1,EGLN3,ITGB2,NOS2,NCOA1,EPO,LEP,ABCB1,CP,HNF4A,HMOX1,GATA2,IGFBP1,GCK,ETS1,ABCG2,CXCL12,NDRG1,FURIN,EDN1,ENO1,BHLHE41,NPM1,FOS,JUN,TFRC,ADFP,VEGFA,PFKL, +PWCOMMONS Cellular roles of Anthrax toxin VCAM1,MAP2K3,MAP2K2,MAP2K4,MAP2K6,MAP2K1,NLRP1,MAP2K7,IL1B,DEFA1,IL18,CASP1, +PWCOMMONS S1P2 pathway ELK1,PAK1,CDH5,FOS,JUN,RAC1,RHOA,GNA13,GNA12,IRS1,MAPK14,MAPK8, +PWCOMMONS TCR signaling in nave CD4+ T cells FYN,CD3E,HLA-DRA,CD3D,HLA-DRB1,CD3G,CD4,CD247,SHC1,SOS1,GRB2,FYB,LCP2,GRAP2,ZAP70,LCK,CBL,CD28,DBNL,SH3BP2,TRAF6,BCL10,CARD11,MALT1,GAB2,ITK,VAV1,IKBKB,CHUK,IKBKG,ORAI1,CSK,PAG1,TRPV6,PRKCB,STIM1,RASGRP1,PRKCQ,FLNA,RHOA,WAS,CDC42,STK39,RAP1A,RASSF5,RASGRP2,PTPN6,PTPN11,MAPK8,MAP3K1,MAP2K4,MAP4K1,JUN,MAP3K7,MAP3K8,INPP5D,MAP2K1,ELK1,FOS,BRAF,RAF1,PRKCA,PTPN7,AKT1,MAP3K14,PTEN,NCK1,PLCG1,PTPRC,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,ERC1,FBXW11,TNFRSF1A,TNF,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,BIRC2,UBE2D3,RCAN1,IL2,CREM,IL2RA,CHP,CALM1,PTGS2,FKBP1A,CABIN1,IL3,CD40LG,CSF2,BATF3,IL4,RCAN2,FOSL1,JUNB,FASLG,POU2F1,IFNG,PRKACA,AKAP5,SLA2,PRKCE,NFKB2,RELB, +PWCOMMONS Glypican 1 network GPC1,FGFR1,FGF2,TGFBR2,TGFBR1,SMAD2,APP,TDGF1,PRNP,PLA2G2A,NRG1,ARAP3,PTEN,RAP1A,SGK1,CD4,AP2M1,AP2A1,ARFGAP1,GGA3,ARF1,GOSR2,PLD2,ARFIP2,RAC1,USO1,GBF1,CLTB,COPA,CLTA,ASAP1,CYTH2,ARF6,GSK3B,BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,MAPK14,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,JUN,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,PTGS2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,CD19,PIK3CA,PIK3R1,IKBKB,AKT1,NFKBIB,SYK,CD79B,LYN,CD79A,PDPK1,CHUK,IKBKG,NFKB1,RELA,FCGR2B,PTPRC,POU2F2,BCL2A1,NFKBIA,CSK,PAG1,DAPP1,MAP4K1,BCL10,CARD11,MAP3K7,MALT1,BLNK,CD72,BTK,PLCG2,DOK1,INPP5D,RASA1,ETS1,ELK1,SOS1,SHC1,GRB2,VAV2,CAMK2G,PPP3CA,PPP3CB,PPP3CC,IBTK,MAP2K1,TRAF6,PTPN6,HRAS,RAF1,CD22,SH3BP5,RHOA,FOXO3,SLC2A4,MAP3K5,TNFAIP3,ATM,CYLD,NOD2,RIPK2,PRKCA,ERC1,FBXW11,TNFRSF1A,LCK,ARRB2,REL,BCL3,SRC,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,CDKN1A,AKT2,HSP90AA1,TP53,CASP9,KPNA1,CDKN1B,MDM2,TSC2,TBC1D4,AKT1S1,TSC1,FRAP1,RHEB,LST8,RAPTOR,YWHAZ,INSR,INS,PPP2R5D,IRS1,EIF4B,EIF4E,EIF4G1,RPS6KB1,EIF3A,RPS6,EEF2,EIF4EBP1,MKNK1,PRKAB1,AKT3,CDKN2A,PRKDC,RICTOR,MAPKAP1,ARF5,PDE3B,MAPK1,ADAP1,CYTH3,VEGFA,FLT1,SERPINC1,PML,ZFYVE9,PPP2CB,STRAP,SMAD7,CAMK2A,SMAD4,DAB2,EIF2A,MAP3K7IP2,CAMK2B,MAP3K6,MAP3K10,TRAF2,MAP3K4,MAP2K3,MAP2K6,TXN,MAPKAPK3,KRT8,CEBPB,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TCF3,SRF,CREB1,TH,ETV1,ATF1,MEF2C,MITF,NOS2,GDI1,RAB5A,ATF2,MEF2A,PLA2G4A,ESR1,HBP1,DDIT3,KRT19,ELK4,ATF6,DUSP1,MAP2K4,RIPK1,MAP3K3,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,DUSP16,DUSP8,DUSP10,MAPK13,MLTK,STMN1,MAPK12,SNTA1,PKN1,CCND1,EEF2K,SKIL,DACT2,AXIN1,RNF111,NEDD4L,PPP2CA,TGFBRAP1,TGFBR3,DYNLRB1,XIAP,CAV1,PPP1R15A,PPP1CA,WWP1,CTNNB1,PARD6A,OCLN,PPP2R2A,SMURF2,YAP1,SMAD3,SPTBN1,YWHAE,DAXX,ZFYVE16,CTGF,SMURF1,PPM1A,NUP153,PIAS4,UBE2I,SIN3A,SAP18,HDAC2,RBBP7,NCOR1,HDAC1,SAP30,SKI,SIN3B,RBBP4,CTBP1,TGIF1,NR3C1,HNF4A,CITED1,RUNX2,IL10,MYOD1,SNIP1,PCAF,CBFB,RBL1,TFDP1,DLX1,ZBTB17,SP1,MED15,AR,MAX,CDKN2B,TFE3,IRF7,IGHA1,TGIF2,FOXG1,GSC,FOXH1,NCOA1,DCP1A,VDR,EP300,COL1A2,PIAS3,MYC,SERPINE1,ATF3,LAMC1,IFNB1,HSPA8,GCN5L2,NKX2-5,ITGB5,NCOA2,LAMA1, +PWCOMMONS Glypican 3 network GPC3,NLK,GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,MAP3K7,NFATC2,CSNK1A1,CAMK2A,MAP3K7IP1,LRP6,FZD1,CTNNB1,CTBP1,AES,CREBBP,TLE1,KREMEN2,DKK1,WNT1,FBXW11,HDAC1,AXIN1,APC,MACF1,WIF1,PPP2R5D,RANBP3,DKK2,DVL1,SMAD4,MYC,AXIN2,CCND1,RAN,FRAT1,NKD1,CSNK2A1,PTCH1,BMP4,FURIN,FGF7, +PWCOMMONS IL6-mediated signaling events STAT3,AKT1,SOS1,GRB2,MAP2K4,VAV1,MITF,PIAS3,IL6R,IL6,IL6ST,JAK1,MCL1,CEBPB,HCK,SOCS3,FOS,JUN,STAT1,FGG,PIK3CA,PIK3R1,PTPN11,JAK2,HSP90B1,PRKCD,RAC1,JUNB,TNFSF11,TYK2,CRP,A2M,IRF1,MAP2K6,PIAS1,MYC,CEBPD,LBP,TIMP1, +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) KITLG,KIT,MAPK8,STAT5A,STAP1,SPRED1,HRAS,JAK2,MAP2K2,STAT1,FER,EPO,EPOR,PDPK1,SH2B3,SNAI2,GAB1,MAP2K1,DOK1,TEC,LYN,CRKL,CBL,GRB2,PTEN,BAD,AKT1,SPRED2,PIK3CA,PIK3R1,STAT3,FOXO3,SOS1,SHC1,MITF,RPS6KB1,GRB10,PTPRO,SH2B2,MAP4K1,GRAP2,MAPK3,BCL2,PTPN6,CREBBP,GSK3B,RAF1,SOCS1,VAV1,PTPN11, +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development CDC42,KATNA1,NDEL1,DYNC1H1,PAFAH1B1,MAP1B,CLIP1,DCX,DYNLT1,CDK5R2,CDK5,LRP8,RELN,PAFAH1B2,PAFAH1B3,DAB1,VLDLR,CDK5R1,ABL1,CSNK2A1,IQGAP1,YWHAE,PLA2G7,PPP2R5D,LRPAP1,NUDC,RHOA, +PWCOMMONS EphrinB reverse signaling DNM1,NCK2,ITGB3,ITGA2B,PIK3CA,PIK3R1,RGS3,MAP2K4,EPHB4,EFNB2,RAC1,TIAM1,MAP3K7,MAPK8,PTPN13,CXCR4, +PWCOMMONS FoxO family signaling FOXO3,CTNNB1,FASLG,FOXO1,GADD45A,BCL6,RAN,PLK1,IKBKB,CDKN1B,FOXO4,G6PC,ZFAND5,SOD2,MST1,FBXO32,CCNB1,SKP2,AKT1,CDK2,SGK1,CHUK,BCL2L11,XPO1,CAT,PCAF,USP7,RBL2, +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma PLCG1,NGF,TRPC3,TRPV1,CAMK4,GSK3B,AKT1,BAD,FOXO3,CREB1,CCND1,PRKCD,SRC,PIK3CA,PIK3R1,GAB1,SOS1,GRB2,SHC1,PDPK1,STAT5A,CAMK2A,AGAP2,MAPK7,MAP2K5,MAPK14,FOS,RIT1,SRF,BRAF,RPS6KA5,CDK5R1,CDK5,MAP3K2,MAP2K1,RPS6KA1,MEF2C,RUSC1,MAPKAPK2,RIT2,NTF3,RAF1,EHD4,ELK1,EPB41L1, +PWCOMMONS FAS signaling pathway (CD95) MAP3K1,BID,MAPK8,NFKB1,CASP10,FADD,FASLG,FAF1,FAS,RIPK1,CFLAR,DFFA,DFFB,MAP2K4,CASP3,CASP7,ARHGDIB,HGF,MET,CASP6,CASP8,PARP1,RFC1,RB1,GSN,BCL2,PTPN13,CHUK,LMNA,FAIM3,SPTAN1,PAK2,PRKDC,IL6, +PWCOMMONS IGF1 pathway IGF1R,NCK2,IRS1,BAD,YWHAZ,YWHAE,RAF1,PRKD1,PDPK1,HRAS,GNB2L1,SOS1,SHC1,GRB2,RPS6KB1,PRKCD,AKT1,PIK3CA,PIK3R1,GRB10,PTPN1,PTK2,BCAR1,PXN,CRK,PTPN11,PRKCZ,IRS2,CRKL, +PWCOMMONS LPA receptor mediated events ARHGEF1,PLCB3,RAC1,EGFR,GAB1,PIK3R1,PIK3CB,PTK2B,GSK3B,MMP2,SLC9A3R2,LPAR2,GNA13,GNA12,TIAM1,LPAR1,NFKBIA,NFKB1,RELA,HBEGF,TRIP6,IL6,BCAR1,PXN,CRK,PTK2,CASP3,IL8,PRKD1,RHOA,PRKCE,HRAS,GNG2,GNB1,SRC,AKT1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,BCL3,MAPK14,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,PRKCD,PLCG1,FOS,JUN,LPAR3,PLD2,MMP9,RPS6KA5,LPAR4,PRKACA,CREB1,LYN,ADRA1B, +PWCOMMONS FGF signaling pathway BGLAP,SDC2,CDH2,KLB,FGF23,SRC,CTTN,CAMK2A,PIK3CA,PIK3R1,SPP1,AKT1,MMP9,IL17RD,FRS2,PLAU,CBL,SOS1,SHC1,GRB2,CTNND1,NCAM1,SSH1,FGF1,PTK2B,PTPN11,GAB1,PAK4,PDPK1,FGFR1,PLCG1,STAT1,RUNX2,PLAUR,FGFR4,FGF19,FGFR2,FOS,JUN,STAT5B,RPS6KA1,MET,HGF, +PWCOMMONS a4b1 and a4b7 Integrin signaling ITGA4,ITGB7,TLN1,PXN,ARF6,ITGAL,ITGB2,VCAM1,PIK3CA,PIK3R1,PRKACA,RAC1,CRKL,CBL,GIT1,BCAR1,CRK,DOCK1,JAK2,CD44,PTK2,MADCAM1,RHOA,SRC,EPO,EPOR, +PWCOMMONS Proteogylcan syndecan-mediated signaling events ADAM12,THBS1,FN1,GIPC1,PRKCA,TNFRSF13B,CXCR4,CXCL12,NLK,GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,MAP3K7,NFATC2,CSNK1A1,CAMK2A,MAP3K7IP1,NUDT16L1,RAC1,SDCBP,CCL5,FGFR1,FGF2,TFPI,LAMA1,PLG,F2,TNC,ACTN1,LAMA3,PTK2,RHOA,MDK,FZD7,ITGB1,ITGA5,PRKCD,DNM2,MMP9,SDC3,SDC2,SDC1,SRC,RASA1,BAX,CASK,KNG1,HRAS,TGFB1,CAV2,IL8,NF1,ITGA2,MMP2,CDH1,BGLAP,CDH2,KLB,FGF23,CTTN,PIK3CA,PIK3R1,SPP1,AKT1,IL17RD,FRS2,PLAU,CBL,SOS1,SHC1,GRB2,CTNND1,NCAM1,SSH1,FGF1,PTK2B,PTPN11,GAB1,PAK4,PDPK1,STAT1,RUNX2,PLAUR,FGFR4,FGF19,FGFR2,FOS,JUN,STAT5B,RPS6KA1,MET,HGF,EPB41,PRKACA,GNB2L1,TRAPPC4,MAPK8,CSF2,EZR,CASP3,EPHB2,BSG,LAMA5,HPSE,PPIB,MAPK1,BAG1,ELK1,MAPK3,RAF1,MAP2K2,INPP5D,INPPL1,CRKL,MAP2K1,PXN,STAT3,PAK1,RAP1B,RAP1A,RAPGEF1,RANBP9,MAP4K1,HGS,RANBP10,DOCK1,MAP3K5,MAP2K4,PTPRJ,PTEN,GLMN,CRK,RPS6KB1,SH3KBP1,CTNNB1,BAD,NCK1,PTN,AGRP,NCAN,MC4R,POMC,FYN,EGFR,APH1B,PSENEN,NCSTN,PSEN1,APH1A, +PWCOMMONS Glypican pathway GPC2,SLIT2,GPC1,FGFR1,FGF2,TGFBR2,TGFBR1,SMAD2,APP,TDGF1,PRNP,PLA2G2A,NRG1,ARAP3,PTEN,RAP1A,SGK1,CD4,AP2M1,AP2A1,ARFGAP1,GGA3,ARF1,GOSR2,PLD2,ARFIP2,RAC1,USO1,GBF1,CLTB,COPA,CLTA,ASAP1,CYTH2,ARF6,GSK3B,BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,MAPK14,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,JUN,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,PTGS2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,CD19,PIK3CA,PIK3R1,IKBKB,AKT1,NFKBIB,SYK,CD79B,LYN,CD79A,PDPK1,CHUK,IKBKG,NFKB1,RELA,FCGR2B,PTPRC,POU2F2,BCL2A1,NFKBIA,CSK,PAG1,DAPP1,MAP4K1,BCL10,CARD11,MAP3K7,MALT1,BLNK,CD72,BTK,PLCG2,DOK1,INPP5D,RASA1,ETS1,ELK1,SOS1,SHC1,GRB2,VAV2,CAMK2G,PPP3CA,PPP3CB,PPP3CC,IBTK,MAP2K1,TRAF6,PTPN6,HRAS,RAF1,CD22,SH3BP5,RHOA,FOXO3,SLC2A4,MAP3K5,TNFAIP3,ATM,CYLD,NOD2,RIPK2,PRKCA,ERC1,FBXW11,TNFRSF1A,LCK,ARRB2,REL,BCL3,SRC,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,CDKN1A,AKT2,HSP90AA1,TP53,CASP9,KPNA1,CDKN1B,MDM2,TSC2,TBC1D4,AKT1S1,TSC1,FRAP1,RHEB,LST8,RAPTOR,YWHAZ,INSR,INS,PPP2R5D,IRS1,EIF4B,EIF4E,EIF4G1,RPS6KB1,EIF3A,RPS6,EEF2,EIF4EBP1,MKNK1,PRKAB1,AKT3,CDKN2A,PRKDC,RICTOR,MAPKAP1,ARF5,PDE3B,MAPK1,ADAP1,CYTH3,VEGFA,FLT1,SERPINC1,PML,ZFYVE9,PPP2CB,STRAP,SMAD7,CAMK2A,SMAD4,DAB2,EIF2A,MAP3K7IP2,CAMK2B,MAP3K6,MAP3K10,TRAF2,MAP3K4,MAP2K3,MAP2K6,TXN,MAPKAPK3,KRT8,CEBPB,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TCF3,SRF,CREB1,TH,ETV1,ATF1,MEF2C,MITF,NOS2,GDI1,RAB5A,ATF2,MEF2A,PLA2G4A,ESR1,HBP1,DDIT3,KRT19,ELK4,ATF6,DUSP1,MAP2K4,RIPK1,MAP3K3,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,DUSP16,DUSP8,DUSP10,MAPK13,MLTK,STMN1,MAPK12,SNTA1,PKN1,CCND1,EEF2K,SKIL,DACT2,AXIN1,RNF111,NEDD4L,PPP2CA,TGFBRAP1,TGFBR3,DYNLRB1,XIAP,CAV1,PPP1R15A,PPP1CA,WWP1,CTNNB1,PARD6A,OCLN,PPP2R2A,SMURF2,YAP1,SMAD3,SPTBN1,YWHAE,DAXX,ZFYVE16,CTGF,SMURF1,PPM1A,NUP153,PIAS4,UBE2I,SIN3A,SAP18,HDAC2,RBBP7,NCOR1,HDAC1,SAP30,SKI,SIN3B,RBBP4,CTBP1,TGIF1,NR3C1,HNF4A,CITED1,RUNX2,IL10,MYOD1,SNIP1,PCAF,CBFB,RBL1,TFDP1,DLX1,ZBTB17,SP1,MED15,AR,MAX,CDKN2B,TFE3,IRF7,IGHA1,TGIF2,FOXG1,GSC,FOXH1,NCOA1,DCP1A,VDR,EP300,COL1A2,PIAS3,MYC,SERPINE1,ATF3,LAMC1,IFNB1,HSPA8,GCN5L2,NKX2-5,ITGB5,NCOA2,LAMA1,SHH,GPC3,NLK,GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,LRP6,FZD1,AES,CREBBP,TLE1,KREMEN2,DKK1,WNT1,APC,MACF1,WIF1,RANBP3,DKK2,DVL1,AXIN2,FRAT1,NKD1,PTCH1,BMP4,FURIN,FGF7, +PWCOMMONS IL2 signaling events mediated by STAT5 CCNA2,MYC,CCND2,PRF1,BCL2L1,CDK6,SP1,ELF1,PIK3CA,JAK1,GAB2,LCK,IL2RG,PIK3R1,JAK3,PTPN11,IL2RA,IL2,IL2RB,SOS1,SHC1,GRB2,FASLG,BCL2,LTA,IL4,CCND3, +PWCOMMONS Plasma membrane estrogen receptor signaling AKT1,MSN,MMP2,BCAR1,ESR1,SRC,PIK3CA,PIK3R1,IGF1,IGF1R,NCK2,IRS1,BAD,YWHAZ,YWHAE,RAF1,PRKD1,PDPK1,HRAS,GNB2L1,SOS1,SHC1,GRB2,RPS6KB1,PRKCD,GRB10,PTPN1,PTK2,PXN,CRK,PTPN11,PRKCZ,IRS2,CRKL,GNG2,GNB1,MAPKAPK3,KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,SRF,CREB1,MAPK14,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,MAP2K6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,AKAP5,NR4A1,RCAN1,CHP,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAP3K3,TRAF6,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,MAP2K3,DUSP16,DUSP8,DUSP10,MMP9,ESR2,HBEGF,NOS3,STRN,RHOA,ROCK2, +PWCOMMONS Canonical Wnt signaling pathway CTBP1,AES,CREBBP,TLE1,LRP6,KREMEN2,DKK1,FZD1,WNT1,NLK,GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,MAP3K7,NFATC2,CSNK1A1,CAMK2A,MAP3K7IP1,FBXW11,HDAC1,AXIN1,APC,MACF1,WIF1,PPP2R5D,RANBP3,DKK2,DVL1,SMAD4,MYC,AXIN2,CCND1,RAN,FRAT1,NKD1,CSNK2A1, +PWCOMMONS Reelin signaling pathway RELN,DAB1,CRKL,RAPGEF1,ITGA3,ITGB1,LRPAP1,VLDLR,FYN,PIK3CA,PIK3R1,CBL,PAFAH1B1,AKT1,MAP1B,MAP3K11,MAPK8,ARHGEF2,MAP2K7,GSK3B,RAP1A,NCK2,GRIN2B,CDK5,CDK5R1,MAPT, +PWCOMMONS Alpha6Beta4Integrin YES1,YWHAB,PTK2,ERBB2,BAD,DST,AKT1,SMAD3,RHOA,MST1R,ITGA6,SHC1,GRB2,EIF4EBP1,SMAD2,CD151,FYN,FRAP1,PRKCA,PIK3CA,PIK3R2,PIK3CG,PIK3CB,SRC,EIF6,VIM,COL17A1,PAK1,MBP,TP73,ABL1,YWHAZ,PRKCD,MET,PLEC1,SFN,DSP,YWHAE,YWHAQ,EGFR,AR,MMP7,YWHAH,RPSA,CASP3,EIF4E, +PWCOMMONS AndrogenReceptor CCNE1,AR,RAN,CCND1,CDC2,GTF2H1,CAV1,HDAC1,PNRC1,SPDEF,NR5A1,SRY,STUB1,RCHY1,CCNH,RELA,STAT3,PIAS3,NSD1,SP1,PSMC3IP,PRPF6,COX5B,RAC3,NR0B2,RUNX2,RANBP9,SMAD3,SENP1,MYST2,UBE2I,TMF1,NCOA2,IL6ST,CTNNB1,FHL2,ATF2,APPL1,PRMT1,PCAF,POU2F2,SVIL,RNF14,SIN3A,TGIF1,CDK9,ESR1,PIAS1,JUN,ETV5,NR2C2,AES,MNAT1,GTF2F1,PA2G4,UBE3A,SMAD4,RNF4,GTF2F2,FLNA,UXT,BRCA1,NRIP1,CDC37,PTEN,RB1,NCOA4,NCOA3,PIAS4,NCOR2,CREBBP,PAK6,NCOA1,EP300,CALR,PATZ1, +PWCOMMONS EGFR1 PTPN11,SMAD2,EGFR,PLSCR1,MYC,CEBPA,PTPRR,MAPK3,JUN,SNCA,EPN1,RASA1,MAPK1,GRB2,ELK1,SRC,CBLB,MCF2,SMAD3,SH3GL3,DNM1,MAP2K2,CAV2,CBL,SHOC2,RAF1,PRKCZ,PITPNA,ATF1,MAP2K1,PRKCA,SOCS1,SHC1,EPS8,NCK2,PKN2,NCK1,PLD2,KLF11,APPL2,RAB5A,STAT5A,CAV1,MAP3K14,CRK,SOS1,JAK2,GJA1,RBBP7,EGF,ABI1,BCAR1,STAT3,PTK2B,SOCS3,PTPN6,KRT8,CASP9,PRKD1,HIST3H3,RPS6KA1,MAPK14,TGIF1,MAP3K3,STAT1,PIK3R2,MAPK7,PEBP1,RALGDS,HRAS,HDAC1,PLD1,MAP3K4,RIPK1,ASAP1,FOXO1,EEF1A1,FOS,JUND,STAT5B,ARAF,MAPK8,JAK1,PRKCB,PIK3C2B,VAV3,CTNND1,NRAS,PXN,VAV1,MAP3K2,HTT,CREB1,GRB7,CRKL,PIK3CA,PIK3CG,PIK3CB,STAT2,TNK2,CDC42,CEBPB,ELF3,PTPN12,GIT1,EPS15L1,EPS15,RPS6KA3,PRKAR1A,ERRFI1,CBLC,PRKCI,SH3KBP1,SPRY2,PLEC1,MTA2,RGS16,RALBP1,TNIP1,YWHAB,CSK,WASL,SH3BGRL,ELK4,HAT1,ARF4,KRAS,HIP1,KRT7,PTK6,RPS6KA2,GRB14,SP1,RALB,SNRPD2,KRT18,KRT17,PRKCG, +PWCOMMONS Hedgehog DHH,IHH,PTCH1,CCNB1,SUFU,GLI3,SMO,GLI1,CDC2,DYRK1A,SAP18,HHIP,GAS1,STK36,SIN3A, +PWCOMMONS ID RB1,ID3,CDK2,MYOD1,ID4,TCF3,ELK1,IFI16,ELK4,MSC,CCNA2,ELK3,SMAD3,ATF3, +PWCOMMONS KitReceptor KIT,CRKL,CBL,PTPRU,SOCS5,HCK,PRKCA,DOK1,KITLG,SOS1,SHC1,GRB2,GRAP,KHDRBS1,PIK3R2,SPRED2,SRC,FYN,GRB7,FGR,PIK3R1,SPRED1,SH3KBP1,PTPN6,STAT1,STAT5B,CISH,CRK,JAK2,PRKCB,STAT5A,LYN,EPOR,SOCS6,RASA1,MITF,RAF1,HRAS,PIK3CG,INPP5D,CLTC,TNFRSF10A,MAPK1,YES1,EP300,PTPN11,CSF2RB,PLCE1,FES,RPS6KA1, +PWCOMMONS NOTCH MAGEA1,MAML1,CUL1,FBXW7,MAML2,RBPJ,APP,DLL1,JAK2,PSEN1,HDAC1,FHL1,NOTCH2,STAT3,RELA,DTX1,EP300,APH1B,NCSTN,PSENEN,PSEN2,APH1A,TCF3,SKP1,SAP30,FURIN,MAML3,GATA1,HEY1,NCOR2,LEF1,TLE1,JAG1,NOTCH3,HES6,NOV,SPEN,NFKB1,RBX1,SKP2,NFKBIA,NCOR1,HDAC2,PCAF,MAPK3,MFNG,POFUT1,JAG2,DLL4,SMAD3,NUMB,RING1,MAPK1,SMAD4,PIK3R2,YY1, +PWCOMMONS TGFBR CTNNB1,FOXO3,SMAD3,SMAD2,NFYB,NFYC,UBE2D2,UBE2D3,MAPK14,DAB2,CD44,JUN,ATF3,LEF1,ZEB2,TGFBR2,EIF3I,SKIL,CDC16,RBL1,CDK2,FOS,XPO1,SMURF1,PRKCD,TGFBR3,ARRB2,UBE2L3,UBE2E1,STRAP,PPP2R2A,TGFBR1,CDK6,CDK4,CCND1,CITED1,CREBBP,JUND,ANAPC5,ANAPC10,CDC23,ANAPC1,ANAPC2,CDC27,ANAPC4,SMAD7,EP300,ETS1,CDC25A,SMAD6,SP1,EID2,E2F4,SNX6,PIK3R2,SNIP1,NFYA,ESR1,BTRC,MAP2K6,VDR,MYC,RBL2,TP53,MAPK8,NUP153,NCOA1,SNX1,SKI,MAP3K7IP1,MAP3K7,PRKAR2A,ZFYVE9,TFDP2,CAV1,RB1,HSPA8,RBX1,CUL1,SKP1,TGFBRAP1,NUP214,STAMBPL1,SNX4,TGFB1,TGFB3,FZR1,HOXA9,ATF2,SDC2,PRKAR1B,ENG,PCAF,FNTA,ZEB1,HDAC1,TGIF1,COPS5,RUNX2,TP73,KPNB1,FOXH1,JUNB,PRKCB,SNX2,FKBP1A,CTCF,TFDP1,SNW1,FOXO1,SMURF2,CCNB2,FOXO4,ROCK1,CDC2,MEF2A,PRKCG,FOSB,DAXX,AR,SUMO1,YAP1,CDKN1A,UBE2D1, +PWCOMMONS TNF alpha/NF-kB TNFRSF1B,TRAF2,BIRC3,KPNA2,NFKBIB,NFKBIA,RPS6KB2,TRAF4,TNFAIP3,CASP8,MAP3K7IP1,MAP3K7IP2,SKP1,BTRC,TBK1,TNFRSF11A,RIPK1,CYLD,IKBKG,NFKB1,POLR2H,RASAL2,TRIB3,RELB,KPNA3,NFKBIE,NKIRAS1,HIST3H3,NFKB2,RPL6,MAP3K14,RIPK2,CAV1,PEBP1,AZI2,TNFRSF1A,TNF,HSP90AA1,MAP3K3,TNIP2,NFKBIZ,PML,CASP8AP2,REL,MAP3K8,HDAC2,HDAC1,CSNK2A2,CSNK2A1,CSNK2B,IKBKE,CHUK,HSP90AB1,FANCD2,PFDN2,SRC,STAT1,NR2C2,POLR1A,RPL30,USP2,GAB1,BAG4,ZFAND5,FKBP5,CASP10,FADD,TRADD,CFLAR,AKAP8,COMMD1,UBE2D3,RNF25,YWHAH,AKT2,RIPK3,CRADD,TRAF6,PSMC2,KPNA6,BIRC2,CDC37,PSMD13,YWHAZ,NSMAF,GNB2L1,UBE2I,PRKACA,KIAA1967,SUMO1,SMARCE1,TRAF3,SMARCA4,PSMD1,MAP3K7IP3,MCM5,PSMC1,SMARCC1,POLR1C,G3BP2,CASP2,RPL4,RPS13,PTPN11,CD3EAP,NKIRAS2,POLR1E,HDAC6,PSMD6,CASP3,PEG3,KTN1,CUL1,PSMD7,NLRP4,PSMD12,GTF2I,FLNA,PSMC3,COPS3,RPL8,DAP,MAP3K2,FBL,UNC5CL,POLR2L,ACTL6A,YWHAG,PAPOLA,TIFA,CASP7,HSPB1,TRAF5,WDR68,POLR1D,ALPL,CDC34,TANK,POLR1B,TRAIP,DDX3X,PKN1,PPP2CA,PDCD2,RPS11,MCC,CREBBP,KCNQ1,CAPN3,MTIF2,FBXW11,BCL7A,LRPPRC,PRKCZ,MARK2,YWHAB,PPP1R13L,UBE2D2,PPP6C,IKBKAP,PSMB5,SMARCB1,TXLNA,DPF2,MCM7,YWHAQ,FAF1,PSMD3,YWHAE, +PWCOMMONS Wnt AXIN1,DVL3,CUL1,SKP1,BTRC,APC,SFRP2,RUVBL1,TBP,LEF1,HIPK2,DVL2,CSNK1D,PIN1,MAPK8IP1,MAPK8,PIAS4,CSNK1E,SMAD3,LRP6,ARRB2,FZD4,CSNK2A2,CSNK2A1,CDC2,MAP3K7,FZD5,RUNX2,CSNK2B,WNT1,FZD1,PRKCB,MAGI3,WNT3,TFAP2A,DAB2,PRKCA,DLG1,DLG2,LRP5,WNT3A,PAX2,SENP2,SOX1,CAMK2D,CAMK2B,MARK2,DAAM1,PPP2R5B,MAP3K4,EP300,DKK1,CDH1,CDX1,RHOA,CTBP1,WNT2,JUP,SUMO1,SFRP1,LRP1,WNT4,PRKCG,FZD7,BCL9,CDC25C,FHL2,BRD7,WNT7A,TAX1BP3,NR5A1, +PWCOMMONS TRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_PROCESSING.html TRNT1,ADAT1,SARS,METTL1,FARS2,AARS,THG1L,SSB,POP4,NSUN2 +PWCOMMONS REGULATION OF BIOLOGICAL QUALITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BIOLOGICAL_QUALITY.html ALS2,DLC1,SLC9A7,PTGS2,PTGS1,MPV17,SGMS1,AGTR1,APP,AGTR2,FLI1,SERPINE1,CDH23,L3MBTL4,F8,F9,MYH7,MYH6,F7,MYH9,THY1,NPC1,NPC2,RPS19,F5,HNF4A,F2,TFPI,DCBLD2,GGCX,PABPC4,HFE,ARF6,PPT1,BCL2L1,NPHP3,CDC42EP2,CDC42EP1,PABPC1,CDC42EP4,CDC42EP5,TAOK2,PAIP1,SPHK1,PCDH15,RPS6,RERG,AVPR1B,AVPR1A,SLC9A1,LIMA1,HNF1A,GLRA1,USH1G,SPI1,BNIP3,ZNF675,LATS1,DFNB31,NMUR2,SLC22A4,SERTAD3,TRPV4,CETP,MYC,SLC22A2,USH2A,SERTAD2,CLN3,AIFM3,LYN,TP53,NDUFA13,WAS,GPR98,NCK2,INHBA,GNAQ,NCK1,USH1C,GNB3,TMSB4Y,CLN5,CLN6,ALOX12,TFR2,PML,PR47,CCL23,PCSK9,RASA1,IL6,OPRL1,IL7,CCL19,CCL15,TMPRSS6,SELS,TMPRSS3,PLG,CCL11,CCL13,CCL14,LARGE,MT2A,MC4R,NARFL,CP,BARD1,IL2,BMP10,GNA15,ATOX1,ATP6AP2,GRIK2,GNA12,OSGIN1,CXCL12,TGFB1,TGFB2,APOA4,APOA2,CDKN2A,APOA1,SLC2A4,CDKN2C,CDKN2D,GALR2,APOA5,RGN,BCL10,KCND2,BAIAP3,SLC34A1,DDIT3,SLC34A3,RENBP,THBD,EP300,HIF1A,SLC40A1,XRN2,CCL1,FGD2,FGD1,C3AR1,DRD1,CCL3,CCL2,CYSLTR1,ADORA2A,ABCA2,ABCA1,CCL5,CCL7,P2RY4,P2RY2,DYRK3,ANGPTL3,FGD5,FGD6,FGD3,FGD4,SNAPIN,ATP7A,CDKN1A,CDKN1B,CXCL13,CDKN2AIP,CACNA1C,XCL1,CACNA1A,ATP7B,CORIN,PEX6,MBP,ALAS2,SLC1A3,NDUFS3,NDUFS1,AKR1C1,KNG1,CDK6,RB1,TARBP2,CHGA,LCK,CNTN4,UBB,ALDH9A1,VIP,EGLN2,TAC1,PF4,EGLN1,CD9,TSPYL2,A1CF,HRH3,PRSS2,REN,GCHFR,GUCA1B,COL4A4,PLP1,KLK8,CEBPG,SLC12A4,NF1,MAL,C4BPB,LEP,RDH12,PPP1R9B,GCK,BAX,SYT1,UTS2,AURKA,CD52,BAK1,APOE,LCAT,CHRNA7,ERAP2,CHRNA1,EIF2B2,EIF2B4,EIF2B5,FTL,F12,CLRN1,GTPBP4,C5AR1,F10,PPARGC1A,CCR9,CCR8,CCR7,CCR6,CD36,CCR5,COLQ,RHCG,CCR4,CD40LG,ATP2C1,CCR3,TBRG1,CCR2,NPTN,STC1,BIN3,IQCB1,KCNMB3,KCNMB4,CLCN3,KEL,BDKRB1,BDKRB2,CALR,RIMS1,KCNMB2,F13B,ACE,STX12,CDA,FBXO7,PLAT,SMAD4,SMAD3,ABCG1,NOTCH2,CEL,CD55,NPY,ETS1,CD59,GHSR,GRK1,CCKAR,MCHR1,PPARD,ACVRL1,BCAR1,PTEN,EDNRA,GPX1,FXN,SAA1,XCR1,CCKBR,PRG3,APTX,AMIGO1,GRM4,PROK2,NPPB,NPPA,CLDN16,RAB3A,AVPR2,CCR1,HPRT1,GCGR,GCH1,BCL2,AGT,BCL6,CD24,HCLS1,NLGN1,ATP1A3,ATP1A4,NPR1,ATP1A1,BRS3,NPR2,ATP1A2,SOD1,CAPRIN2,COG3,YWHAG,YWHAH,NUPR1,COG7,CAPG,APBB2,APBB1,SEPT5,F2RL2,F2RL3,CASR,SNCAIP,F13A1,SLC6A4,F2RL1,FOXO3,MMRN1,GDNF,GP9,SLC4A1,ACIN1,FGF20,NEBL,PLCE1,GYLTL1B,CARTPT,GLP1R,SRI,CAV1,DERL2,GCLC,DERL1,ITGB3,ATP6V1B1,LMAN1,GCLM,FTH1,SFTPD,SLC30A5,ENTPD1,NFE2,MAFB,ITGA2,GCM2,SLC4A11,RHOT1,RHOT2,IFI6,COPA,CYP11B2,HPS4,CXCR3,AKT1,ACVR1B,TPP1,GSN,CXCR4,CCDC88C,LDB1,NOL8,PROC,ACVR2A,GHRL,MDM4,PROS1,GLRX2,CALCA,CALCB,FAM107A,RASGRP4,SYN3,TNN,GP1BA,ENO1,PTPRC,MTL5,ISOC2,RHAG,GPI,VWF,HPX,SLC5A7,F2R +PWCOMMONS DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_METABOLIC_PROCESS.html XRCC5,XRCC4,RAD51C,XRCC3,XRCC2,XRCC6,ISG20,PRIM1,PRIM2,TLK1,TLK2,POLL,POLK,GTPBP4,POLI,POLH,RAN,POLG,LIG1,POLE,LIG3,POLB,RAD9A,LIG4,PPARGC1A,ORC1L,RAD1,PNKP,RFC3,REC8,RFC4,RFC1,CD40LG,TBRG1,SMARCAL1,RAD23B,ENPP7,RAD23A,MRE11A,HUS1,CHEK1,PPT1,XAB2,ACD,SUPV3L1,POLQ,DNMT3B,NTHL1,RECQL4,DNMT3A,RECQL5,S100A11,TREX2,CIDEA,TPD52L1,ATR,RAD54L,ATM,RAD54B,PARP3,PARP1,UVRAG,NAP1L1,MLH1,BNIP3,DMAP1,TERF2IP,GLI2,PMS2L1,CDT1,GLI1,NT5M,FANCG,NT5E,CCNO,TOP2A,FANCA,FANCC,ATF7IP,CDC6,AIFM1,TP53,GTF2H4,APTX,RAD52,RAD50,GTF2H1,RBBP8,RAD51,EREG,GADD45G,RUVBL2,GADD45A,NHEJ1,REV3L,WRNIP1,UNG,POLA1,SPO11,IL7R,KIN,POT1,SUMO1,SET,GATAD2A,FEN1,IL4,UPF1,NASP,GMNN,TNP1,IGF1,SPHAR,SOD1,TP73,NAE1,ATRX,MNAT1,CSNK1D,CSNK1E,OGG1,REPIN1,MMS19,DBF4,TNFSF13,TGFB1,SETX,IGHMBP2,MUTYH,RAD21,CDKN2A,CDKN2D,PMS2,MYST2,PMS1,CIB1,RBMS1,MCM3AP,DFFA,DFFB,PICK1,CECR2,RNASEH2A,RPAIN,RAD17,XRN2,HMGB1,ACHE,HMGB2,BLM,TIPIN,UBE2V1,UBE2V2,SYCP1,POLE2,RAD51L1,SMARCB1,POLE3,RAD51L3,EGF,ASF1A,HELLS,SMG6,PIF1,BRCA2,TSN,BRCA1,DNASE2,POLD4,VCP,POLD1,POLD2,TDG,DNMT1,ABL1,KCTD13,SMC1A,ADRA1D,DUT,PTGES3,NBN,FOS,MCM7,DKC1,ORC4L,SETMAR,POLG2,TERT,UBE2A,CCDC88A,REV1,NOL8,DDB1,CYCS,PRKCG,MCM2,MCM3,UBE2B,XRCC6BP1,MCM5,CDK2,PURA,UBE2N,RECQL,XPC,BTG2,CDK2AP1,DDB2,ORC5L,DMC1,PTMS,KPNA2,KPNA1,SMARCAD1,NUP98,MGMT,RAG1,SMUG1,RPA4,RPA3,RPA1,ERCC8,TFAM,RPA2,ERCC5,TYMP,ORC2L,TSPYL2,ERCC6,KRT7,ERCC3,ERCC4,APEX1,TINF2,ERCC1,TERF2,ERCC2,EXO1,MSH6,FOXL2,MSH3,NF2,MSH2,MSH5,CEBPG,MSH4,MPG,ATXN3,ORC3L,BAX,TEP1,ALKBH1,IGFBP4 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html UAP1,CHIA,GNPDA1,GNE,CHST2,CHST4,CHST5,NAGK,EXTL2,SLC35A3,CHIT1,ST3GAL2,CHST7,LARGE,CHST6,ST3GAL6,B4GALNT2,NANP +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html BTRC,USE1,RNF217,RNASEH1,ISG20,CDKN2A,CPA2,FBXO22,ANAPC2,ANAPC5,DFFA,DFFB,ANAPC4,UBR3,CECR2,RNASEH2A,UHRF2,UBR5,MGAM,FBXL4,AMFR,XRN2,FZR1,DERL2,DERL1,SYVN1,PABPC4,ANAPC10,PPT1,NEDD8,UBE2V2,HSPA1B,CHIT1,ARIH1,UBE2D3,UBE2D2,INS,RNF11,UBE2D1,NTHL1,FBXO7,NPLOC4,SMG6,SMG5,SMG7,SMG1,CDC23,CIDEA,PCNP,CDC20,TPD52L1,UBE2L3,PSMC5,VCP,POP1,HGS,SMURF2,SMURF1,UBE2E1,KIAA0368,TSG101,UBE2G1,UBE2G2,BNIP3,AUH,ZFP36,ABCE1,UBE2A,AIFM1,UFD1L,CYCS,UBE2I,PRKCG,UBE2H,UBE2C,UBE2B,UBE2N,UBE2K,GAA,ERN2,MDM2,SIAH1,UBB,SIAH2,MDM4,UBE3A,EGLN2,STUB1,EDEM1,ERCC5,SQSTM1,RNASET2,PRSS2,ERCC3,ERCC4,USP33,ERCC1,ERCC2,RNF144B,UPF2,FOXL2,RNASE2,RNASE3,UBE4A,UBE4B,RNASE6,PARK2,SOD1,SELS,PSMD14,GSPT1,PPP1R8,BAX,FAF1,PYGB +PWCOMMONS RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_METABOLIC_PROCESS.html SYNCRIP,MED24,RORB,MED23,REST,MED21,MED20,ISG20,EPC1,TAF5L,DHX38,FOXF1,MED26,MED27,FOXF2,PQBP1,VPS4B,ZNF396,PATZ1,IKBKAP,PCBD2,RREB1,PTBP1,MECP2,MED12,MED14,MED13,SARS2,PTRF,MED16,MED17,SHOX,MYBBP1A,CPSF3L,CRTC1,PABPC4,DUSP11,VPS72,FOXH1,PABPC1,SFRS11,SPOP,DHX8,PAIP1,ESRRG,USF1,NOLC1,POP1,POP4,PARP1,TAF1C,ELF1,HTATIP2,TAF1A,ELF2,ELF3,ELF4,ELF5,EZH2,CWC15,SPI1,TP63,ZNF346,DAXX,ZNF345,YBX1,AUH,YBX2,ZNF350,ZNF148,ZNF146,BRD7,SPIB,BRD8,TAF1L,ATF7IP,MTERF,BRF1,TP53,ZNF143,TTF2,MYCN,ARHGEF11,INHBA,EREG,ZNF136,C19ORF2,ZMYND11,NUFIP1,ZNF367,ZNF177,SF3B4,SF3B3,SF3B2,ZNF174,USP39,DHX15,DHX16,MARS2,FOXD3,MYF6,IL4,UPF2,UPF1,LMX1B,TRIM29,TRIM28,MYF5,TRIM27,TRIM24,PHF12,SF3A2,SF3A1,TRIM22,TP73,SF3A3,ATRX,ZNF157,SFPQ,FOXE1,FOXE3,TXNL4A,NCBP2,NCBP1,PRPF4B,LMO4,SNRPD3,SNRPD1,SNRPD2,NR2E3,TCEAL1,TGFB1,MDFIC,SCRT1,BCL10,ZNF593,POU2AF1,RNASEH2A,CSDA,BICD1,HIF1A,TCFL5,TFAP2B,SMARCA5,MNX1,TFAP2A,EDF1,NFE2L1,NFE2L2,TFAP2C,NFE2L3,SMARCA1,SMARCA2,LITAF,UBE2V1,ABCA2,NR2C2,CXXC1,MEIS2,SMARCB1,TEAD4,SNF8,HELLS,TFDP1,BRIP1,HDAC5,ATF6,RBMY1A1,HDAC4,ATF5,ATF4,NRF1,HDAC2,DYRK1B,SMARCC1,SMARCC2,ATF7,ABL1,HDAC8,E2F1,E2F2,E2F3,RSF1,E2F6,PAX5,PAX3,PAWR,PAX2,PAX1,TMF1,MAX,WARS,MAZ,DKC1,PAX8,LRRFIP1,PTGER3,SLA2,PRPF3,PRPF6,ERN2,ZFPM2,JMJD1C,HIC1,TFAM,PRPF8,ECD,CEBPZ,GTF3C6,NFATC4,NFATC2,GTF3C2,NFATC3,NSUN2,GTF3C4,NFATC1,MAF,CEBPA,CEBPB,CEBPD,CEBPG,NFRKB,GRSF1,SLBP,MED30,ID4,FST,HIRA,DDX17,PPARGC1A,PPARGC1B,PRDM4,MTF1,ABT1,MNT,TGFB1I1,PRDM1,DEAF1,FARS2,AFAP1L2,CALR,PLAGL1,PPAN,MAML3,DUX1,BCOR,TCF25,KLF5,MDFI,KLF7,IKZF3,MLL,KLF9,MAML1,MAML2,RYBP,UBP1,HNRNPA0,POLRMT,TCEB3B,RNF4,SUPT16H,TCF19,RBPJ,ZFHX3,NCOR1,TCF12,KLF4,TCF15,ZBTB32,PPARA,PPARD,PPARG,ZEB1,HSBP1,GLI2,KCNIP3,GLI1,ZBTB38,ZFP36,CCNK,CCNH,MBD1,RBBP8,SCAP,RIPPLY1,ETV7,ZBTB16,KIN,NR1D2,THG1L,PEX14,MLLT1,ETV1,BCL6,HSF2BP,MLLT6,HCLS1,SNAI2,SOD2,PREB,UBTF,MYOD1,FOXO1,APOBEC3G,FOXO3,FOXO4,APOBEC3F,SETX,SMNDC1,GATA1,GATA2,ATOH1,GATA6,GATA3,GATA4,RBMS2,MYST2,GABPB2,RBMS1,FOXN1,ZNF189,RRP9,FOXN3,AHR,SLU7,KARS,NKX3-2,NOVA1,SREBF1,SNW1,FOXP3,BRCA1,SREBF2,PPIG,DNMT1,POU6F2,FOXK2,FUBP1,FOS,DGCR8,ANG,DBR1,POU4F2,POU4F1,MKL2,ALX1,NANOG,SP100,UBN1,MSC,NRIP1,CD3EAP,BPTF,ZMIZ2,MDM2,MDM4,CUX1,ZFP161,GLIS3,TNF,GLIS1,TRA2A,HCFC1,HCFC2,ERCC6,POU2F3,POU2F2,NFAT5,GEMIN8,SFRS2IP,GFI1,ERCC3,GEMIN6,GEMIN7,GEMIN4,ERCC2,GEMIN5,SIRT4,SIRT5,SIRT1,IRF9,GSPT1,IRF7,DR1,THRAP3,IRF8,IRF1,IRF2,IRF3,SLC2A4RG,LSM6,XRCC6,INTS1,HOXD13,RP9,INTS2,ZNF638,INTS3,ZNF254,CITED1,CITED2,INTS9,INTS8,INTS5,INTS4,INTS7,INTS6,LSM5,LSM4,LSM3,LSM1,YARS,ZNF45,RXRA,ZHX1,ZHX2,ZHX3,HNF4G,NME2,HNF4A,ZNF238,RPS14,SMARCAL1,TGIF1,SIP1,ZNHIT3,TRAPPC2,ZNF76,MYEF2,HSPA1B,HEXIM2,HEXIM1,PIR,ZNF74,TCF4,VEZF1,TCF3,ARHGEF10L,UTF1,TCF7,KLF12,KLF13,KLF10,MAP2K3,KLF11,TFCP2,TRPS1,MZF1,HLF,HNF1B,HNF1A,CRNKL1,RRN3,HSF2,CREG1,HSF4,MYC,BATF3,ZNF281,SRPK2,ZNF282,EXOSC7,GMEB2,PTF1A,GTF2H4,EXOSC2,NDUFA13,EXOSC3,FOSB,SRPK1,MXD4,GTF2H1,JMY,CIAO1,PFDN5,RUVBL1,NSD1,CLOCK,ZNF274,CREM,ZNF35,RNASET2,LIMD1,SUPT4H1,TRIP11,TRIP13,ZNF263,TNP1,ELAVL2,ELAVL4,RPS6KA5,MNAT1,RPS6KA4,PPBPL2,RBAK,TCEB2,TCEB3,TCEB1,PHF5A,NR5A2,NR5A1,MMS19,RNMT,RBM3,RBM5,RBM6,TBP,RBM9,CBFB,GTF2E1,GTF2E2,DDX23,SMARCD2,SMARCD3,SMARCD1,DDX20,SNRPA1,HDAC10,ARID1A,HNRNPR,JUNB,DDIT3,DDX39,PA2G4,RBPMS,SMARCE1,RBMY2BP,XRN2,BAT1,HMGB1,EID1,HMGB2,CNBP,CCRN4L,SNRPB2,TROVE2,TCERG1,RPL6,METTL1,JUND,TAF9,HNRNPC,TAF2,TRIP4,SMG6,EPAS1,TAF5,SMG5,TAF8,SMG7,SMG1,NEUROG1,TRNT1,GTF2F1,GTF2F2,PRKAR1A,DDX54,FOSL2,ARID4A,ZNF202,DEK,CTCF,FEV,NFIL3,FOSL1,NFX1,SARS,ARID5B,ARID5A,CDK9,RB1,ESR2,CDK7,HMGA2,HMGA1,TARBP1,TARBP2,NCOA6,CPSF6,CARM1,CPSF3,CPSF1,NFYC,NFYB,NFYA,NR3C1,IVNS1ABP,TSC22D1,ADAT1,TSC22D3,ORC2L,CHD2,CHD1,CHD4,CHD3,RNASE2,RNASE3,VHL,RNASE6,CREB5,FBL,DBP,ZRANB2,CDX2,RNASEH1,PTTG1,NONO,PRIM1,SFRS6,SFRS7,SFRS4,SFRS5,SIN3A,SFRS8,SFRS9,TRAK1,PRIM2,U2AF1,RARB,SUPT5H,TWIST2,PITX2,TWIST1,YY1,NKX2-8,AARS,SFRS1,TAF6L,SFRS2,UHRF1,RARS,ELL,IGF2BP3,AGGF1,DRAP1,HTATSF1,CDC40,NKX2-5,BMP2,SUB1,CREBBP,SMAD4,SMAD3,SMAD2,PMF1,NOTCH2,NOTCH4,JAZF1,BMP6,ADAR,CCNT2,COPS2,GTF3A,COPS5,TBX22,TBX21,CCNT1,NFKB1,NFKB2,RNGTT,BLZF1,PARN,GFI1B,ASH2L,NR2F2,ABCE1,SNAPC5,PRPF31,TBX10,POLR1E,ZNF354A,SNAPC2,SNAPC4,SNAPC3,SF1,POLR1C,GTF2B,MED6,CTNNBIP1,HNRPDL,MED7,CHMP1A,MED4,GTF2I,ASH1L,SRCAP,TBX19,MED1,POLR2G,POLR2F,POLR2E,NMI,POLR2L,POLR2K,POLR2J,POLR2I,EHF,POLR2D,POLR2C,POLR2B,SUFU,MRPL12,SQSTM1,GATAD2A,POLR3G,BCAS2,POLR3H,TBX3,POLR3K,TBX2,TBX5,AFF4,ILF3,STAT1,POLR3C,PRPF18,STAT3,STAT2,ILF2,PPP1R8,NEUROD2,PHF21A,PBX1,RBM14,PBX3,PBX4,THRA,CRABP2,HOXC6,TARDBP,HOXC5,SRRM1,TFB2M,MYO6,DARS,SNRPN,EFTUD2,ARNTL,NR0B2,ELL3,NR0B1,TRERF1,ELL2,ADRM1,TIAL1,SNRPB,SNRPC,SNRPF,SNRPG,TFAP4,SOX5,ELK1,BTF3,SKIL,RUNX1,RNF14,RUNX3,MAFF,CSTF3,NFE2,CSTF2,SAP18,SSB,RNPS1,INTS12,GSC2,INTS10,PSMC5,GCM1,MAFA,CSTF1,SOX21,NR6A1,BUD31,MEN1,POU5F1,SOX18,KHDRBS1,ELP4,ELP3,ELP2,NOL3,LDB1,SOX12,NRL,KHSRP,SUPT3H,ING4,ING2,NFIX,POU1F1,TCF7L2,TNFRSF1A,NPAS2,HAND1,HAND2,NUDT21,APEX1,ENO1,ERF,DTX1,SOX30,CBY1,DIS3,SP1,SP2,SP3,SP4,NFIC,CRK +PWCOMMONS GLUCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCAN_METABOLIC_PROCESS.html PYGM,GCK,GSK3B,MGAM,EPM2A,GAA,GYS2,GYG2,DYRK2,PYGB +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html ERCC8,DZIP3,HUWE1,DDB2,UBE2V1,UBE2V2,UBE3C,AMFR,TRAF6,UBE2D1,STUB1 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html SYT1,TP63,AASS,HPRT1,IGF1R,NOD2,NOD1,DGKD,APOE,UPK1A,GPX3,GOPC,TRPV5,PEX14,CDA,TGM3,INSR,AKR1C1,BCL10,IRAK1,SCUBE3,ALDH5A1,CCDC88C,SCUBE1,MUC20,TP53,MALT1,ACTN2,NLRP3,SEPT11,RAD51,STOM,VWF,BAX,ATPIF1,AMFR,EIF2AK3,SEPT7,MAP3K11,SEPT9 +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html EID2,SNX6,SMAD4,CIDEA,SMAD3,SMAD2,TGFB1,CITED2,CDKN1C,PEG10,CDKN2B,HIPK2,IL17F,ENG +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html MMS19,RAD51C,XRCC4,XRCC3,XRCC2,XRCC6,SETX,IGHMBP2,MUTYH,RAD21,CDKN2D,PMS2,PMS1,CIB1,POLL,POLI,POLH,POLG,LIG1,POLE,LIG3,RAD9A,LIG4,RAD1,PNKP,RFC3,RPAIN,RAD17,RAD23B,HMGB1,HMGB2,BLM,RAD23A,MRE11A,HUS1,UBE2V1,UBE2V2,XAB2,POLE2,RAD51L1,POLQ,ASF1A,NTHL1,RECQL4,RECQL5,TREX2,BRCA2,ATR,RAD54L,ATM,BRCA1,VCP,POLD1,TDG,RAD54B,PARP3,SMC1A,ABL1,PARP1,NBN,UVRAG,MLH1,PMS2L1,FANCG,CCNO,FANCA,FANCC,UBE2A,REV1,DDB1,GTF2H4,TP53,APTX,PRKCG,RAD52,UBE2B,RAD50,XRCC6BP1,RAD51,GTF2H1,RBBP8,UBE2N,RECQL,XPC,BTG2,GADD45G,DDB2,RUVBL2,NHEJ1,GADD45A,WRNIP1,UNG,POLA1,SMUG1,RPA1,ERCC8,ERCC5,SUMO1,ERCC6,ERCC3,APEX1,ERCC4,ERCC1,FEN1,ERCC2,EXO1,MSH6,UPF1,MSH3,MSH2,CEBPG,MSH5,TNP1,SOD1,TP73,ATRX,MPG,MNAT1,ATXN3,CSNK1D,CSNK1E,ALKBH1,OGG1 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html TLR1,EIF5A,TNFRSF8,TLR3,TLR4,TLR6,TLR7,TLR8,TLR9,AZU1,APOA2,BCL3,DAZL,LTB,EBI3,SPN,SAMD4A,CD28,EIF2B5,IL4,BCL10,IL6,DAZ1,IL29,PRG3,IL27,CEBPG,IL9,CD276,BOLL,EREG,GLMN,IL12B,IRF4 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IL28RA,DUOX2,BNIP3,APOBEC3G,TLR7,CXCL12,APOBEC3F,TLR8,ISG20,CXCR4,IFNK,IFNGR2,FOSL1,IFNGR1,ABCE1,SPACA3,IL29,IFI44,HBXIP,IFNAR1,LILRB1,TARBP2,IFNAR2,CCDC130,C19ORF2,TNF,FGR,POLA1,RSAD2,IFNW1,CCL8,IVNS1ABP,CCL5,CCL4,BANF1,CCL22,IFNA7,BCL2,PRKRA,IFNA4,BCL3,PTPRC,CREBZF,CCL19,TRIM22,CCL11,IRF7,BNIP3L,IFNA17 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MEF2C,KCNH1,POU6F1,MEF2B,MYOD1,AEBP1,MEF2A,MYBPC3,UTRN,TTN,TGFB1,CXCL10,GATA6,MKX,MKL2,CHRNA1,IFRD1,BOC,EGR3,ACTA1,MYH3,TAZ,NRD1,MYH7,MBNL1,MYH6,KRT19,GYLTL1B,SMTN,TAGLN,SGCG,ITGB1BP2,SIX1,VAMP5,GAA,SGCD,SGCE,UBB,ADAM12,SGCA,SGCB,MYL6,SRI,ACHE,CTF1,MRAS,FHL3,ITGA11,MYEF2,CACNB2,MTM1,MUSK,SPEG,MYL6B,TEAD4,COL6A3,EMD,COL4A4,MYF6,BMP4,FKTN,FOXL2,EVC,TBX3,NF1,MYF5,MSTN,IGF1,CENPF,MYOZ1,CBY1,TNNI3,COL5A3,SOD1,CSRP3,CAPN3,SIRT2,LAMA2,HDAC5,MEF2D,HDAC4,NOTCH1,LARGE,MAPK12,SVIL,ITGA7,MYH11,CACNA1H,HBEGF,HDAC9,TCF12,IGFBP3 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html PPARG,FOXO3,SART1,TGFB2,CALCA,ACVR1B,ADIG,ZAP70,VWC2,ACIN1,RUNX1,BOC,BMP4,IL7,TBX5,SOCS5,IL20,ACVR2A,INHBA,NME2,BTG1,ETS1,SCIN,BMPR1B,IGFBP3 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html NBN,RINT1,PML,KNTC1,TTK,BRSK1,TGFB1,ATM,TRIAP1,MAD2L1,CDKN2B,PCBP4,ZWINT,BUB1,BUB1B,GML,MAD2L2,CHFR,CCNA2,RAD17,ZW10 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html SHROOM1,SHROOM2,ARHGEF2,LIMA1,ACTA1,FSCN2,NF2,BCAR1,FSCN1,EVL,EPB49,SORBS3,EZR,RND1,SORBS1,TSC1,PLA2G1B,KPTN,SPTA1,DBN1,RHOF,ARHGEF10L,DLG1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html PDIA2,RP2,PDIA6,PDIA5,CCT3,AIP,BAG5,BAG4,PIGK,APOA2,BAG2,SEP15,DNAJC7,MKKS,ARL2,CLN3,APCS,HSP90AA1,ERP29,TBCE,CCT6A,CLPX,LRPAP1,ST13,TBCA,TBCD,PFDN4,TBCC,RUVBL2,FKBP9,FKBP6,FKBP5,FKBP4,NFYC,LMAN1,PIN4,STUB1,GLRX2,TTC1,CCT6B,TOR1A,DNAJA1,HSPE1,ERO1L,QSOX1,DNAJA3,HSPBP1,CCT7,ATF6,PPIH,CCT4,PPIA,HSPA4L,DNAJB2,AHSA1,DNAJB6 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD2,ALS2,FGD1,RALBP1,ARHGAP27,ARF6,TSC1,RAC1,ABRA,FGD5,FGD6,FGD3,FGD4 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html NRP2,CDK5R1,NRP1,NRXN3,OTX2,DPYSL5,NRXN1,GLI2,SLIT1,SLIT2,SHH,SEMA4F,KAL1,OPHN1,CNTN4,SIAH1,SEMA3B,UNC5C,UBB,SPON2,FEZ2,FEZ1 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html HSD17B11,HACL1,PPARA,PPARD,ECH1,HSD17B14,ECHS1,PPT1,HADHB,APOA4,APOA5,HSD17B6,BDH2,ANGPTL3,CPT1B,STS,ACADM,CYP46A1,ACADS,ALDH5A1,CIDEA,PNPLA3,CPT1A,HAO1,ACADVL,CEL,YWHAH,GLA,PRDX6,HAO2,UGT2B4,NEU3,PLA2G4C,PLA2G4B,AKR1D1,SMPD4,SMPD3 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PGS1,IMPA1,SGMS2,GPAA1,SGMS1,PIGK,APOA1,LPCAT1,PIGF,DGKE,PIGG,PIGH,LCAT,PIGB,PEMT,PIGC,ETNK1,PCYT1B,PCYT2,AGPAT2,AGPAT1,PIGA,PIGZ,PIGY,PIK3C2A,FADS1,PIGV,PI4KA,PIGU,PIGT,PIGS,PI4KB,CHPT1,PIGO,CD81,PI4K2A,DPM1,DPM2,DPM3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FST,ZNF254,EPC1,SIN3A,WWP1,ZNF396,SUPT5H,TWIST2,TWIST1,GTPBP4,ZHX1,MECP2,ZHX2,ZHX3,RAD9A,ZNF238,PIAS4,TGIF1,PRDM1,SUDS3,ENPP7,VPS72,NR1H2,HEXIM2,DRAP1,HEXIM1,CDA,BCOR,NKX2-5,TCF25,NKRF,DMBX1,MDFI,BMP2,KLF12,PHB,KLF10,KLF11,SMAD4,RYBP,S100A11,SMAD3,SMAD2,ATR,UBP1,NR1I2,JAZF1,RBPJ,KLF4,ZBTB32,PPARD,SPI1,TP63,ZEB1,TERF2IP,HSBP1,GLI2,DAXX,ZNF345,CDT1,ZNF350,GFI1B,ZNF148,ZNF281,ATF7IP,CDC6,NDUFA13,TLE1,FOSB,MXD4,CHMP1A,EREG,GRM8,ZNF136,RIPPLY1,NSD1,ZMYND11,PML,ZBTB16,ZNF177,ZNF174,SUMO1,SET,LANCL2,GATAD2A,PER1,BCL3,PEX14,BCL6,SUPT4H1,FOXD3,TBX3,TBX2,GMNN,ZNF24,TRIM27,TNP1,ILF3,PHF12,SNAI2,STAT3,ZNF157,YAF2,PHF21A,RBM9,TCEAL1,TGFB1,MYST1,MYST4,MYST3,ZNF593,ZNF189,NR0B2,CSDA,NR0B1,FOXN3,PA2G4,SMARCE1,TIMELESS,RAD17,EID1,HMGB1,EID2,GCLC,SNX6,TIPIN,ELK3,VDR,MEIS2,RUNX2,HELLS,ZNF423,CREBZF,SNW1,FOXP3,UIMC1,BRCA1,HDAC5,SMARCC2,DNMT1,RFX3,HDAC8,PDZD3,E2F1,RSF1,ARID4A,E2F6,DEDD,NR6A1,ZNF202,CTCF,PAWR,PDCD4,MEN1,PCGF6,ATP8B1,POU4F2,NRG1,NFX1,KHDRBS1,LDB1,ARID5B,SLA2,ARID5A,RB1,NRIP1,BPTF,MDM2,ERN2,MDM4,CUX1,COMMD7,ZFP161,GLIS3,ING4,BCLAF1,TNF,GLIS2,GLIS1,CALCA,ORC2L,TSPYL2,POU2F1,ERCC4,ERCC1,TERF2,ENO1,NF2,VHL,SIRT4,CENPF,SIRT5,CBY1,SIRT1,SIRT2,ATXN1,ID2,ID1,DR1,IRF7,IRF8,GRLF1,IRF2,ID4,ID3 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html SEPT5,SEPT4,PRC1,DIAPH2,AURKC,NUSAP1,BRCA2,ANLN,BIRC5,RACGAP1,MYH9,DCTN3,INCENP,RAB35,CNTROB,SEPT6,SEPT7,RASA1,MYH10 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SRPK2,CRNKL1,SNRPD1,SF1,SNRPD2,SF3A2,SFRS1,SF3A1,SF3A3,SFRS6,SFRS5,SFRS8,SFRS9,USP39,SLU7,SFRS2IP,SIP1,TXNL4A +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html IMPA1,GPAA1,PIGK,APOA1,PIGF,PIGG,PIGH,LCAT,PEMT,PIGB,PIGC,PCYT1B,AGPAT2,AGPAT1,PIGA,PIGZ,PIGY,PIK3C2A,PIGV,PIGU,PI4KA,PIGT,PIGS,PI4KB,PIGO,CD81,PI4K2A,DPM1,DPM2,DPM3 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html FHIT,ADCY7,CTPS,FIGNL1,PGD,OXER1,NT5M,NDUFS1,NT5C,ALDH6A1,NUDT4,NUDT3,NUDT5,OLA1,DGUOK,GMPS,PTHLH,NME4,PNKP,NME5,PGLS,UMPS,UCN2,ADM,GRM8,ADK,PRPS1,ME1,ADSS,ADORA2A,DCK,ABCA1,HPRT1,PPAT,TYMS,TYMP,PTH,REXO2,CDA,C16ORF7,ENTPD4,DCTD,ERH,AK5,ACLY,AMPD3,CTNS,FPGS,GUK1,PDZD3,PAICS +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html HTATIP2,TNF,PDIA3,NFKBIE,TNFSF14,CDH1,MXI1,GLI3,TGFB1,AKT1,CEP57,ZFYVE9,BCL3,BCL6,NCKIPSD,RANBP2,TPR,TNPO1,KPNB1,MDFI,FYB,MCM3AP,NF1,PPP1R10,SMAD3,NLRP3,HNRNPA1,NFKBIL1,FLNA,NFKBIL2,PPIH,CBLB,RPAIN,TRPS1,NUP205,F2,PTTG1IP,NLRP12,KPNA6,KPNA5,FAF1,KPNA4,TRIP6,KPNA3,KPNA2,RERE,KPNA1,F2R +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html ITLN1,TGFB1,IL31RA,CLCF1,ANG,TDGF1,EGF,EGFR,BMP4,BCL10,IL3,IL5,IL29,LYN,HCLS1,IL20,CCND1,CARD14,EREG,CCND3,CD80,AKTIP,CCND2,CD81,IL12A,GLMN,PPP2R4,TNK2 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html FST,ZNF254,EPC1,SIN3A,WWP1,ZNF396,SUPT5H,TWIST2,TWIST1,GTPBP4,ZHX1,MECP2,ZHX2,ZHX3,RAD9A,EIF2AK1,PIAS4,ZNF238,BACE2,TGIF1,PRDM1,EIF2AK3,SUDS3,ENPP7,VPS72,NR1H2,HEXIM2,DRAP1,HEXIM1,CDA,BCOR,TCF25,NKX2-5,DMBX1,NKRF,MDFI,BMP2,KLF12,PAIP2,KLF10,PHB,KLF11,S100A11,RYBP,SMAD4,SMAD3,SMAD2,ATR,UBP1,NR1I2,JAZF1,GHSR,RBPJ,KLF4,ZBTB32,PPARD,LIMA1,SPI1,TP63,TERF2IP,ZEB1,GLI2,HSBP1,ZNF345,DAXX,CDT1,ZNF350,GFI1B,ZNF148,ZNF281,ATF7IP,CDC6,ARHGEF2,PRG3,NDUFA13,TLE1,FOSB,MXD4,SIGIRR,INHBB,EIF4A3,INHBA,CHMP1A,EREG,GRM8,ZNF136,RIPPLY1,TMSB4Y,NSD1,ZMYND11,PML,ZBTB16,ZNF177,ZNF174,SUMO1,SET,LANCL2,GATAD2A,PER1,PEX14,BCL3,BCL6,SUPT4H1,FOXD3,IL6,TBX3,TBX2,GMNN,ZNF24,TRIM27,TNP1,ILF3,PHF12,SOD1,SNAI2,STAT3,ZNF157,GLA,YAF2,CAPG,NLRP12,PHF21A,PPP2R4,APBB1,RBM9,TCEAL1,IL10,TGFB1,APOA2,CDKN2A,CDKN2B,CDKN2C,CDKN2D,MYST1,DNAJC1,MYST4,MYST3,ZNF593,SOCS1,ZNF189,NR0B2,CSDA,NR0B1,TRAT1,FOXN3,PA2G4,SMARCE1,TIMELESS,RAD17,HMGB1,EID1,EID2,GCLC,SNX6,KATNB1,TIPIN,ELK3,TIMP1,VDR,MEIS2,SFTPD,CLASP1,RUNX2,HELLS,ZNF423,CREBZF,SNW1,FOXP3,FURIN,UIMC1,BRCA1,HDAC5,CDKN1A,CDKN1B,TSC1,SMARCC2,DNMT1,RFX3,PDZD3,HDAC8,E2F1,RSF1,ARID4A,E2F6,DEDD,NR6A1,ZNF202,CTCF,PAWR,PDCD4,MEN1,GSN,PCGF6,ATP8B1,POU4F2,NRG1,NFX1,KHDRBS1,LDB1,ARID5B,SLA2,ARID5A,PRKCG,MID1IP1,INHA,RB1,NRIP1,BPTF,ERN2,MDM2,GHRL,MAPRE1,MDM4,COMMD7,CUX1,ZFP161,ING4,GLIS3,BCLAF1,TNF,GLIS2,GLIS1,PAIP2B,CALCA,ORC2L,TSPYL2,POU2F1,ERCC4,ERCC1,TERF2,APC,ENO1,NF2,VHL,SIRT4,SIRT5,CENPF,CBY1,SIRT1,SIRT2,ATXN1,ID2,GCK,ID1,IRF7,DR1,IRF8,GRLF1,IRF2,ID4,ID3,IGFBP3 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html ALS2,RAB3GAP2,GNA15,RAB3GAP1,TNFSF15,PMAIP1,EDNRA,GPX1,NLRC4,APOA2,CDKN2A,CASP9,CASP8AP2,NMUR1,ANG,CDKN2D,NMUR2,APOA5,RGN,PLCB2,DHCR24,EGFR,C5AR1,AIFM3,CCKBR,RALBP1,CYCS,TP53,ARHGAP27,NLRP3,HBXIP,NLRP2,BCL2L10,THY1,TNNT2,GNAQ,IFNB1,SAPS3,LCK,F2,ERN1,ATPIF1,FGD2,FGD1,APOC2,SFN,MOAP1,MTCH1,DIABLO,FGD5,ANGPTL3,FGD6,FGD3,FGD4,ANGPTL4,HIP1,COL4A3,CARD8,FOXL2,NF1,SMAD3,BIRC5,STAT1,TSC1,VCP,BBC3,IFT57,BAX,AVPR1B,AVPR1A,PPP2R4,APAF1,DNAJB6,IFI6,F2R +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html TTN,UHMK1,CAMKK2,AKT1,IGF1R,PAK2,MAP3K3,MAP3K9,LMTK2,PCSK9,PAK1,INSR,TAF1,MYO3A,KIAA1804,MEX3B,TAOK3,MOBKL1A,SMG1,STK4,CDKL5,EIF2AK1,MAPK15,DYRK1A,NLRP12,MAP3K10,TNK1,EIF2AK3,MAP3K13,MAP3K12,MAP3K11 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html TRAF2,MBL2,CADM1,BCAR1,CX3CL1,TLR8,TGFB2,MAP3K7,CFHR1,TNFRSF1A,KRT1,IFNK,C2,TRAF6,SCG2,PTPRC,CRTAM,IL8,IL29,SLA2,CEBPG,MALT1,PRKCG,NFAM1,SLIT2,TRAT1,THY1,CD1D,UBE2N,CDH13,LAT2,NPY,EREG,FYN,EEF1E1,IKBKG,IL12A,GHRL,CD79A,IL12B,GHSR +PWCOMMONS REGULATION OF CELLULAR PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PH.html CLN3,CLCN3,BCL2,ATP1A3,ATP1A4,ATP1A1,PPT1,ATP1A2,CLN5,CLN6 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html LST1,HS3ST5,SPINK5,AHSG,PR47,TGFB2,CALCA,SERPINE1,SFTPD,GP1BA,CHRNA7,CD24,SRGN,KNG1,PTPRC,SLA2,CIDEA,INHA,SOCS5,FOXP3,SOD1,TMPRSS6,THY1,PROC,INHBA,TARBP2,LAX1,F2,CARTPT,GHRL,GLMN,GHSR +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html KCNMB4,ACHE,SNCAIP,CADM1,FAM3D,DPH3,PYDC1,IL11,LIF,APOA2,NOD2,APOA1,INS,ANG,PYCARD,SCG5,SNAP25,DNAJC1,SRGN,SERGEF,CRTAM,CARD8,STX1A,MYO6,CIDEA,ARFIP1,INHA,NLRP3,FOXP3,NLRP2,INHBB,OSM,INHBA,GCK,GHRH,SCIN,NLRP12,CARTPT,GLMN,GHRL +PWCOMMONS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SYSTEM_DEVELOPMENT.html MEF2C,MEF2B,HRAS,GDA,MEF2A,BTD,PPP2R5D,RORB,MYLIP,SART1,BTK,CUL7,SH3GL3,BRAF,PDPN,MYH3,LIG1,UGCG,LIG3,MYH7,MYH6,MYH9,PROX1,MARK4,THY1,DOC2A,TAGLN,SERPINF1,FOXG1,ZNF384,SHOX,PMP22,EIF2AK3,SH3GL2,SH3GL1,OSTF1,AMTN,SERF1B,CACNB2,T,ATN1,KAL1,IL17F,ZAP70,SPP2,CYP46A1,NTF3,MOBP,SERPINI1,SMURF1,MAB21L2,FGF5,NEURL,HTATIP2,FGF7,ELF3,TCOF1,SPI1,SCRG1,NMUR2,FGF2,GHR,LYN,EGFL7,WAS,INHBA,EREG,FOXC2,LRMP,FOXC1,IL12B,CSF1,NNAT,TRIM15,COL7A1,SNRK,PKD2,PAPSS1,PAPSS2,C1GALT1,WNT8B,IL4,MYF6,IL3,LMX1B,IL8,IL7,MYF5,NTNG1,NTNG2,IGF1,IGF2,PHYH,MEF2D,ACCN1,CDH13,STAB1,EPGN,BNC1,FOXE1,AMOT,C4ORF6,IL2,GRIK1,LMO4,IL18,TGFB3,PDX1,LRRC4C,NR2E1,IL10,TGFB1,TGFB2,CXCL10,TDGF1,BCL10,STMN3,IL27,BAIAP2,ENC1,MGP,NRD1,IL20,EP300,VAMP5,TFAP2B,TFAP2A,EDA,SMARCA1,SNTG2,FGD1,CCL2,ADORA2A,ST8SIA2,MDK,NR2C2,TEAD4,PCDHA10,PCDHA11,EGF,CCM2,FKTN,MEA1,JRKL,P2RX5,HDAC5,HDAC4,S100B,ST8SIA4,DYRK1A,MYO16,FABP1,SCN8A,HDAC9,FABP7,FABP5,PAX6,PAX5,PAX4,PAX3,PAX2,PAX1,MBP,SPRY2,PCDH1,RNF103,TIE1,CNTN6,IFI16,HOXC11,GAA,CNTN4,NRGN,UBB,CASQ2,RAG1,BRSK2,APLP1,CD9,COL9A1,COL9A2,AVIL,CD4,CALML5,DCLK1,SECTM1,EBP,KLK7,KLK8,KL,CEBPG,KLK5,MAL,FRZB,COL5A3,COL5A2,BAX,GDF11,GDF10,NELL1,UTRN,FST,LHCGR,TPD52,MOG,ATP2B2,DSPP,APOE,ATXN10,COL12A1,ERAP1,CEP290,RAB26,COL10A1,MATN3,CD3D,VANGL2,KRT13,KRT10,SCEL,FARP2,HES1,KRT19,RND1,KRT17,ATP2C1,KRT16,KRT15,VEGFA,KRT14,NPTN,LRCH4,EXT1,EXT2,PNMA1,IQCB1,CDK5R1,RBP2,HOXB13,EPHB4,EPHB1,AHSG,EPHB2,SEMA5A,TCF21,CRMP1,LHX1,LHX3,LHX6,SMA4,MAML3,OLFM1,BLNK,COL18A1,IKZF3,MLL,IKZF1,HPCAL4,KRT31,CELSR1,KRT34,KRT32,NCKAP1,DLX2,ATP2A2,DLX6,ETS1,ETS2,DLX5,GHSR,TCF12,KLF4,TCF15,PCDHA6,NRP2,PCDHA7,PPARD,PCDHA8,NRP1,ACVRL1,ARSE,PCDHA2,PCDHA3,PCDHA4,MYBPC3,PCDHA5,PCDHA1,KCNIP2,GLI2,CANX,PTEN,SPINK5,GLI1,AES,GNPAT,SEMA3B,MKX,PCDHB9,PCDHB5,UFD1L,PCDHB6,PCDHB3,PCDHB4,ARTN,PCDHB2,NFAM1,AMIGO1,PROK2,SEMA4F,NPPB,CXCL1,ETV7,PARD3,RAB3D,ZBTB16,AZU1,LY6H,APBA2,VWC2,APBA1,JARID2,HCLS1,NLGN1,NPR1,GJB5,NPR3,SOD1,SNAI2,GJB1,CD1D,YWHAG,YWHAH,SVIL,C7ORF16,PHGDH,NHLH2,PTCH1,PTCH2,ATP6V0A4,NHLH1,TMEM176B,VLDLR,MYOD1,NRTN,CASR,MMP9,FOXO3,FOXO4,TTN,GDNF,GHRHR,PRKACG,WNT1,PROP1,ROBO1,GATA6,GATA4,ROBO4,PDGFC,ROBO2,LGI1,KRT85,IFRD1,MYST1,KRT83,MYST3,PICK1,FOXN1,CBLN1,LSAMP,DSP,OPHN1,NRSN1,EMP1,FGFR1,FGFR3,GREM1,PCDHAC2,PCDHAC1,ITGAX,HTT,BMX,ITGA2,FOXP2,ITGA7,GLMN,CYFIP1,CD79A,CHRD,POU6F1,AEBP1,POU6F2,DGCR2,ANG,DGCR6,POU4F2,MKKS,POU4F1,SRD5A2,MKL2,SHC3,BOC,KIRREL3,ALX1,DMRT1,DMRT2,ALK,FSHR,EVPL,EYA2,BPTF,KRTAP5-9,SCIN,ITGB1BP2,GHRL,UTP3,KRT6A,KRT6B,UBE3A,MTM1,NPTX1,COMP,POU2F3,TGM3,TGM5,ERCC3,CRIM1,ERCC2,SCG2,ZBTB7B,GLRB,FOXL2,PARK2,SIRT2,ATXN3,MAP1S,BMPR1B,IGFBP3,IGFBP4,ALS2,HCCS,HOXD13,L1CAM,CITED2,FLI1,CTGF,SYK,PHOX2B,PITPNM1,NME2,RPS19,MSX1,TRAPPC4,ATPIF1,TRAPPC2,ADAMTS4,ODAM,EMCN,NAGLU,ERBB2,MYEF2,PPT1,HESX1,NPHP3,MUSK,DMBX1,DVL2,DVL3,KLF10,SPHK1,MSTN,TNNI3,DVL1,PCDH18,SHOX2,TRPS1,TLL1,KCNH1,RTN4,HNF1B,ZNF675,DGCR14,RTN1,DFNB31,MAPT,USH2A,STS,ACTA1,STX2,CMKLR1,PTF1A,TLE3,TLE1,TLE2,GPR98,FLNA,NAB2,KIAA1217,RAPGEFL1,NHEJ1,CLN8,CLN5,FHL3,PML,PCDHB15,PCDHB14,PCDHB13,PCDHB12,PCDHB11,ITM2B,PCDHB10,PCDHB16,PCDHB17,COL6A3,CSDE1,PCSK9,HSD17B3,SIM1,RASA1,SIM2,CAPN3,PLG,RPS6KA6,RPS6KA3,LARGE,HBEGF,MPPED2,CTNS,NR5A1,GFRA3,BMP10,CHERP,HMGCR,JAG2,TNFSF13,TNFSF12,ZIC1,ZIC2,NRCAM,GPR45,APOA5,UNC5C,SPON2,BPNT1,MATK,RET,TAZ,SIX3,DLL3,VAX2,SIX6,GPR56,SIX1,COL1A2,COL1A1,ACHE,DRD2,MRAS,CNTFR,EXTL1,ECE2,DYRK3,ANGPTL3,ANGPTL4,ADAM23,NEUROG1,NEUROG3,ANKH,NDUFV2,MYH11,CACNA1H,ADAM22,PRDX1,CDC42,ALAS2,NDUFS4,TRIM3,HEY1,PCP4,HEY2,DLG4,RHOB,LIMK1,OTX2,CDK6,MBNL1,NCL,CDK5,CHRM3,CHRM2,NCOA4,CHRM1,NCOA6,LCK,ACVR1,ABLIM1,IRX4,CTF1,NDP,RNH1,PF4,DCN,ALDH3A2,MSX2,DCT,COL17A1,DNER,PAFAH1B3,PAFAH1B1,DCX,COL4A4,COL4A3,COL4A2,PLP1,NF2,ALPK3,COL13A1,HCK,NF1,FBN1,DPYSL5,DPYSL4,RCAN1,DPYSL3,DPYSL2,ANXA2,HEYL,SMPD1,JAK2,APAF1,FEZ2,FEZ1,NOG,CDX1,S100A7,SNCA,AQP4,POSTN,ADORA1,SHH,BDNF,PLOD1,CHRNA4,CHRNA7,PITX3,CHRNA1,EIF2B2,EIF2B3,TWIST2,EIF2B4,TWIST1,EIF2B5,PITX2,EFNB3,NKX2-6,MDGA1,MDGA2,TBR1,PRELP,CD40LG,LAMC2,EFNA5,LAMC1,HOXA13,ELN,ITGA11,TAGLN3,LAMB3,AGGF1,BAI1,AGRN,LAMB1,IL1RAPL2,EMD,NKX2-2,BMP4,BMP2,BMP1,TRPC5,SMAD2,EN1,MYOZ1,CSRP3,NKX6-1,LAMA2,NOTCH2,NOTCH1,LAMA3,NOTCH4,TMOD2,ENG,LHB,GYPC,SPG7,TM7SF4,CDSN,TNFRSF11B,ALOX12B,COL11A1,DNAJC19,DHCR24,FLOT2,RBM45,SLIT1,SLIT2,SLIT3,VCX3A,SGCG,SGCD,SGCE,SIAH1,ADAM12,SGCA,SGCB,SHROOM2,SHROOM4,STATH,COL2A1,SUFU,MLF1,SPEG,UGT8,LECT2,FZD9,TBX6,TBX3,PTPRZ1,TBX5,TBX4,AFF2,TBX1,EIF2B1,STAT3,COL19A1,MAPK12,CLEC3B,DRP2,CLEC3A,NEUROD2,PBX1,CIT,PBX3,PBX4,FGF19,FGF14,WFS1,FGF17,CRABP2,FGF16,ARNT2,FGF11,FGF10,FGF13,FGF12,CSPG5,ANKRD7,IL31RA,GSTM3,ACIN1,ODZ1,DSCAM,SOCS5,MEPE,NR0B1,TIMM8A,NUMBL,PTHLH,PLCE1,GYLTL1B,CARTPT,PRPS1,KALRN,SRI,MYL6,LST1,SOX3,ONECUT2,NINJ2,MAP4K2,DSCAML1,MAP4K1,NINJ1,ATP6V1B1,SOX8,B3GNT5,SFTPD,RUNX1,RUNX2,SRGN,SFTPB,MEST,PARD6B,EVC,MAFB,CPNE6,DMP1,TINAG,GCM2,LSR,CRX,GSS,ACVR1B,TPP1,SOX15,KCNQ2,PRL,EGR3,EGR2,ALDH5A1,NRXN3,SOX14,LDB1,SOX11,INHA,NRXN1,ACVR2A,SMTN,BTG1,BTG4,NAIP,GSTP1,RTN4RL1,SPOCK1,POU1F1,CALCA,KRT9,NPAS1,UTP11L,NPAS2,KRT5,HAND1,RASGRP4,MYL6B,HAND2,PTH,KRT1,MSI1,KRT2,PTN,POU3F3,RTN4RL2,PTS,PTPRC,DTX1,PLAC1,CENPF,CBY1,SPARC,RACGAP1,GMFB,PSPN,SPRR1A,CASP14,SPRR1B,KCNN3 +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html SNCAIP,PRG3,HPRT1,BBOX1,TGFB2,OAZ2,OAZ1,COLQ,DIO2,SULT1B1,ASMTL,ETNK1,DHPS,SLC5A7,DIO1,SMS +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html RPL17,SLC44A2,VAPA,TBK1,TSPAN6,TLR6,IL31RA,CITED2,TMEM9B,MYD88,CDKN2B,MIER1,ABRA,GPR89A,BCL10,BST2,IL29,GOLT1B,RELA,FADD,CD40,TRAT1,IL20,TRIM38,ATP2C1,MIB2,RIPK2,NEK6,PPP5C,LITAF,UBE2V1,AFAP1L2,CXXC5,ADRB3,RAC1,TRAF7,TRAF6,EGF,TRAF5,CFLAR,CARD9,TAOK2,LGALS1,TAOK3,NDFIP1,NDFIP2,MALT1,TPD52L1,ECM1,LGALS9,TRADD,CDKN1C,TRAF3IP2,APOL3,NOTCH2,IKBKE,TNFSF10,PLK2,NUP62,CDKN2AIP,SLC20A1,FASLG,GJA1,TP63,CANT1,ACVR1B,NOD2,NOD1,CLCF1,HMOX1,CASP8,TICAM1,TICAM2,RHOA,TGFA,TMEM101,RHOC,CASP1,LTBR,LYN,NFAM1,ECT2,FLNA,UBE2N,ACVR2A,GRM4,ZDHHC17,ADRB2,ACVR2B,TNFRSF10B,EREG,ZDHHC13,RIPK1,HIPK2,IL12A,EEF1D,PPM1A,TRIM13,TFG,FKBP1A,TNFRSF1A,TMED4,MAP3K3,REL,RASGRP4,SLC35B2,PLEKHG5,CC2D1A,CD27,SECTM1,PTPRC,HCLS1,EDA2R,BIRC2,CDH13,EPGN,EEF1E1,HTR2B,F2R +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html RAB3GAP2,TSPO,XPO6,CADM1,LTBP2,AP1G1,LMAN2L,TNFSF14,EIF5A,MIPEP,MXI1,AGXT,KLHL2,TGFB1,AIP,SSR1,APOA2,NLRC4,APOA1,HOMER3,TRAK1,CEP290,TLK1,RPL11,DNAJC1,KIF13B,EGFR,MCM3AP,CRTAM,CD3G,MYO6,STAP1,VPS45,LRP1B,ERP29,OPTN,NUPL2,MYH9,RPAIN,BACE2,F2,PEX26,RTP3,RTP2,DERL2,ACHE,PPY,ARFGAP3,RTP4,DERL1,NFKBIE,RTP1,CTSA,PPT1,ABCA1,PYDC1,CALR,CDC37,UHMK1,CD74,INS,NPM1,DUSP16,ANGPTL3,TRAM1,SEC23IP,SRGN,MDFI,CARD8,CIDEA,SMAD3,SNAPIN,ICMT,ARFIP1,REEP1,FOXP3,ABCG1,NFKBIL1,TRNT1,NFKBIL2,PPIH,CBLB,VCP,TRPS1,PTTG1IP,GLMN,LGTN,TRIP6,XPO7,RERE,PDIA3,TIMM17A,HPS4,TIMM17B,PEX6,AP3S2,PEX3,PDIA4,DPH3,CANX,GLI3,PEX7,AKT1,NOD2,PEX1,ANG,ZFYVE9,ZFYVE16,RANBP2,NCKIPSD,TPR,COX18,KDELR1,KPNB1,TOMM34,AP3B1,KDELR2,RPGR,NLRP3,TIMM23,TIMM44,NLRP2,FLNA,MFN2,ZDHHC17,ATG4D,ATG4C,ATG4B,NUP205,ATG4A,ARCN1,C3ORF31,TOMM20,KPNA6,TOMM22,KPNA5,KPNA4,KPNA3,ARL4D,KPNA2,KPNA1,TNF,AP1M2,CDH1,SEC63,NUP214,NAGPA,CEP57,PEX19,AP3M1,TAP2,PEX16,PYCARD,PEX14,BCL3,AP3D1,BCL6,SCG5,PEX13,CD24,APPBP2,PEX12,PEX10,TNPO1,APBA1,SCG2,FYB,SERGEF,NF1,NLGN1,PPP1R10,SELS,GABARAP,YWHAH,COG7,GSK3B,NLRP12,TRPC4AP,FAF1,GGA1,SSR2,F2R,COG2,BARD1 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F2RL2,GGCX,AVPR2,F2RL3,ADORA2A,F13A1,GNA12,PABPC4,HPS4,PF4,ITGB3,MMRN1,LMAN1,PR47,GP9,F13B,FLI1,SERPINE1,GP1BA,ENTPD1,PLAT,KNG1,F12,L3MBTL4,NFE2,F10,F8,ITGA2,F9,C4BPB,F7,TMPRSS6,WAS,PLG,PROC,VWF,GPI,THBD,CD36,F5,GNAQ,HNF4A,CD40LG,CD59,F2,TFPI,PROS1,F2R +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE INHIBITING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_INHIBITING_PATHWAY.html MCHR1,GRM4,CHRM5,RGS1,OPRL1,DRD2,NPY2R,OPRK1,NPY1R,CORT +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html MTSS1,MPZL1,NRTN,LTBP2,EDN2,GDF5,FOXO4,TGFB1,CITED2,MAP3K7,GP6,FNTA,CDKN2B,TDGF1,GAB1,GDF9,FRS3,RAPGEF1,INSR,FRS2,EGFR,PTPRJ,EFNB3,PTPRF,CD3E,PTPRG,BAIAP2,SOCS1,PICK1,PTPRT,PTPRU,IRS1,GRB10,ROR1,TGFBRAP1,EID2,FGFR4,FGFR3,SNX6,ERBB3,GRB2,ERBB2,BMPR2,AFAP1L2,BDKRB2,SRC,PXN,FOXH1,MUSK,PEG10,IL17F,TEK,AGRN,EGF,CNKSR1,GUCY2F,FIBP,SMAD7,TGFBR1,KLF10,SMAD5,SMAD4,TRIO,SMAD3,CIDEA,SMAD2,SMAD1,GUCY2C,GUCY2D,KDR,NTRK3,EPS15,CDKN1C,CBLC,EPS8,NTRK1,NTRK2,TGFBR3,SMURF1,GRB7,ENG,FGF5,ACVRL1,BCAR1,AP3S1,AKT1,ACVR1B,PDPK1,ZFYVE9,TGFA,SHC1,SHC3,OTX2,LEFTY1,CD3EAP,ACVR2A,NCK2,INHBA,DOK1,ACVR2B,ADRB2,EREG,HIPK2,FOXC2,LCP2,ACVR1,FMOD,REPS2,ABI1,STUB1,IGF1R,UTP11L,RGMB,SORBS1,CEP57,PTK2B,LEFTY2,VWC2,PTN,PIK3R3,PIK3R1,GUCA1B,PTPRD,FLT3,FLT4,CBL,IGF2,RPS6KA5,CDH13,SOST,PRLR,ERBB2IP,EPGN,MAPK8IP2,GDF10,GDF15,HPGD,GFRA2,BMPR1A +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html ALDOA,ALDOB,PFKFB1,PGD,UGDH,HK1,TKTL1,ACN9,AKR1A1,INS,ECD,PDK1,PDK2,IRS2,PFKL,PDK3,PDK4,BRS3,PFKM,PPARGC1A,GAPDHS,PGLS,ATF4,G6PD,GCK,SLC25A10,UGP2 +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html CRTAM,CADM1,IL28RA,APOBEC3G,CX3CL1,APOBEC3F,NCR1,TLR8,AHSG,IL20,CD1D,TNFRSF1A,TARBP2,EREG,IL12A,GHRL,CHRNA7,IL12B,IFNK,GHSR +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html ARSB,CLN3,NAGPA,MYO7A,HPS4,GAA,HPS1,PPT1,ABCA1,CLN5,CLN6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MMS19,XRCC6,FOXO1,RORB,FOXO3,MED21,TGFB1,CITED2,EPC1,MDFIC,SMARCD3,FOXF1,GATA4,FOXF2,SMARCD1,SUPT5H,BCL10,MYO6,PCBD2,RXRA,MED12,MED14,ARID1A,MED13,ARNTL,ELL3,TRERF1,PPARGC1B,HIF1A,HNF4A,MED17,TFAP2B,SMARCA1,CRTC1,ELK1,AFAP1L2,PLAGL1,FOXH1,MAML3,RUNX1,TCF4,TCF3,ARHGEF10L,UTF1,EPAS1,MAML1,TAF8,MAP2K3,MAML2,ESRRG,SMAD3,SMAD2,ATF6,ATF4,SMARCC1,DYRK1B,NOTCH4,SMARCC2,BMP6,ELF1,HNF1B,HNF1A,RSF1,ELF4,SPI1,TP63,CTCF,GLI2,ZBTB38,GLI1,PAX8,MKL2,ATF7IP,CCNH,TP53,CDK7,HMGA1,SCAP,PRPF6,NRIP1,GTF2H1,ARHGEF11,MED6,INHBA,BPTF,ZMIZ2,NCOA6,NSD1,CLOCK,MED1,GLIS3,GLIS1,NUFIP1,EHF,TNFRSF1A,NPAS2,MRPL12,SQSTM1,SUPT4H1,ERCC3,ERCC2,FOXD3,IL4,TBX5,TRIM28,CREB5,ILF3,TP73,MNAT1,ILF2,SP1,THRAP3,FOXE1,PHF5A,RBM14 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html TBX3,SMAD2,TRIM15,SPINK5,SLIT2,TGFB2,IL20,GLI1,EYA2,TGM3,KRT2,ERCC3,KLF4,ERCC2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html CCKAR,F2RL3,DRD1,PARD3,GNA15,DRD2,EDN2,TACR1,CALCA,EDNRA,AZU1,EDNRB,AGTR1,HRH1,P2RY6,P2RY4,NMUR1,ANG,LTB4R,NMUR2,P2RY2,P2RY1,MC3R,PPAP2A,PLCB2,EGFR,C5AR1,CCKBR,PICK1,HOMER1,GRM5,P2RY11,GNAQ,CHRM2,CHRM1,AVPR1B,AVPR1A,NMBR,HTR2B,GAP43,PRKD3 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html DMAP1,FOS,PRMT1,PRMT2,PRMT7,PRMT8,PRMT5,GATAD2A,PCMT1,DNMT3B,NSUN2,HELLS,ATF7IP,DNMT3A,LCMT1,EHMT1,PICK1,ICMT,TST,ATRX,WHSC1L1,DNMT1,MAT2B,CARM1,NSD1,MPST +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html CDC6,GTPBP4,ENPP7,NF2,GMNN,S100A11,TIPIN,RAD9A,ATR,TERF2IP,CDT1,TSPYL2,SET,ERCC4,RAD17,TERF2,ERCC1 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html CLN3,GBGT1,PSAP,UGCG,ST8SIA1,ST8SIA3,ST6GALNAC6,ST6GALNAC4,B3GNT5,GLA,LARGE,ST8SIA5,ST3GAL6,NEU3,CLN6,B4GALNT1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CHIA,VAPB,S100A7,CRHBP,PGLYRP1,TLR3,PSG10,APOBEC3G,TLR6,TLR7,APOBEC3F,CXCL12,TGFB1,TLR8,IL10,PSG11,ISG20,CFP,NLRC4,PGLYRP4,WWP2,PGLYRP2,WWP1,RLN2,PGLYRP3,ITCH,IFNK,SPN,BCL10,IL29,BYSL,UBR3,IFI44,HBXIP,CLEC4M,CRHR1,PTHLH,LILRB1,WFDC12,CCDC130,LALBA,PRLHR,DERL1,FGR,TFCP2L1,ITLN1,RRAGA,CCL8,FCGRT,DEFB127,CCL5,BANF1,CCL4,CHIT1,ADCYAP1,SLC11A1,IFNA7,ALB,TRO,IFNA4,PRKRA,HLA-DRB4,HLA-DPB1,MAFF,OVGP1,CREBZF,HTT,SMAD3,TEAD3,COL16A1,S100A12,CD209,SFRP4,GHSR,MTNR1A,INSL4,PPARD,PZP,CSH2,CLDN4,DUOX2,IL28RA,BNIP3,SCGB1A1,LNPEP,NOD2,NOD1,CXCR4,FOSL1,TNIP1,IFNGR2,IFNGR1,ABCE1,SPACA3,CAMP,PSG3,PSG1,IFNAR1,TARBP2,IFNAR2,PSG9,PSG8,ADM,PSG7,PSG6,PSG5,CLIC5,PSG4,CD81,IL12A,C19ORF2,GHRL,FSHB,EPYC,PRF1,HS3ST6,TNF,HS3ST5,C9,POLA1,IFNW1,SPRR2G,RSAD2,OXTR,SPRR2F,SPRR2E,IVNS1ABP,TAC3,AZU1,CCL22,SPRR2C,SPRR2D,BCL2,SPRR2A,AGT,SPRR2B,DEFB118,BCL3,CD4,CD24,PTPRC,FLT1,DEFB103A,CCL19,STAB2,SOD1,PTGFR,TRIM22,SMC3,CD1D,RPL29,CCL11,PRLR,STAB1,IRF7,BNIP3L,ACE2,CRH,HPGD,LIPE,DMBT1,IFNA17 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html FXYD1,FXYD3,GLRA1,SLC34A1,CLIC1,SLC26A2,SLC34A3,SLC34A2,SLC17A7,SLC26A4,SLC4A11,BEST1,CLIC3,NMUR1,CLIC5,SLC17A1,SLC13A4,CLCN4 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FGF18,PDGFA,PGF,IL18,EDN1,BTC,TTK,FGF10,TNFSF13,TNFSF12,IL15,VIPR1,IL31RA,IL11,TGFB2,CXCL10,SSR1,CUL3,CD47,HTR1A,DDX11,TDGF1,CHRNA7,GLP2R,EBI3,MATK,EGFR,CAPNS1,CD3E,TBRG4,IL21,MARK4,PTHLH,VEGFB,SIRPG,NME2,NME1,FGFR1OP,VEGFA,LAMC1,MST1R,MCTS1,DERL2,ERBB2,TIPIN,TIMP1,IL12RB2,LIF,REG1A,IL12RB1,AGGF1,CDC123,ADRA2A,LAMB1,DNAJA2,TGFBR1,TGFBR2,SPHK1,CD276,SLAMF1,LAMA1,CDKN1A,ADRA1D,BMI1,FGF7,NRP1,NAP1L1,GLI1,FLT3LG,TNFRSF11A,NDUFS4,ANG,TGFA,FOSL1,MYC,RHOG,SERTAD1,FGF4,CDC7,LYN,CCKBR,EGR4,CDK6,CDK4,CDK2,HOXC10,SPDYA,CIAO1,NCK2,CD86,EREG,TNFSF13B,NCK1,CHRM1,CD81,DHPS,IL12B,TSHR,ICOSLG,ALOX12,VIP,CSF3,TBC1D8,CXCL5,PRTN3,CSF1,CTF1,IGF1R,PTK2B,TSPAN31,PTN,POU3F2,CD24,FIGF,SCG2,CD28,IL4,STAMBP,TCIRG1,IL3,PTPRC,IL6,TNFSF4,FLT1,PDF,TBX3,FLT3,IL7,TBX2,HCLS1,FLT4,IL9,IGF1,CLEC11A,CDC25B,CAPN1,CDH13,CCL14,EPGN,BNC1,IL2,LRP5 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html RSF1,TNF,STK36,UBE2V1,EGLN1,PRDX3,PYDC1,TGFB1,SUMO1,NOD2,CDKN2A,NLRC3,NPM1,PYCARD,BCL3,PEX14,ABRA,CAMK2A,APEX1,MDFI,BCL10,CREBZF,RELA,CEBPG,EDA2R,NFAM1,NLRP3,FOXP3,FLNA,SIGIRR,JMY,UBE2N,PRKCQ,CARD11,EP300,ID2,ID1,NME1,NARFL,EDF1,ID3,IKBKB,ERC1,EDA,TSSK4,COMMD7,MAP3K13 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html RSF1,RBBP4,NASP,SIRT4,BNIP3,SIRT5,TNP1,ARID1A,TAF6L,SIRT1,HMGA1,SUV39H2,HDAC5,BPTF,SYCP3,SMARCC1,NPM2,SMARCC2,SMARCD1,PBRM1,ACTL6A,SUPT4H1,HELLS +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html COL4A4,PCDHB9,ACHE,PCDHB5,PCDHB6,PCDHB3,PCDHB4,NLGN1,PCDHB14,PCDHB2,PCDHB13,PCDHB11,PCDHB10,NRCAM,PCDHB16,GHRL,POU4F1,UBB +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html FGFR3,CCL2,NMI,STAT5A,STAT5B,IL31RA,STAT4,CLCF1,STAMBP,SOCS2,LYN,NF2,IL29,SOCS3,HCLS1,SOCS1,SOCS6,PIGU,STAT1,STAT3,STAT2,IL20,IFNAR1,IFNAR2,CCR2,F2,IL12A,HGS,PIAS1,IL22RA2,F2R +PWCOMMONS NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NERVOUS_SYSTEM_DEVELOPMENT.html MEF2C,ALS2,GDA,NOG,BTD,PPP2R5D,NELL1,SNCA,AQP4,L1CAM,MYLIP,MOG,ADORA1,SHH,ATP2B2,BDNF,ATXN10,APOE,CEP290,CHRNA4,EIF2B2,EIF2B3,EIF2B4,EIF2B5,SH3GL3,PHOX2B,EFNB3,MDGA1,VANGL2,MDGA2,TBR1,MARK4,FARP2,THY1,HES1,PITPNM1,RND1,DOC2A,SERPINF1,VEGFA,FOXG1,NPTN,ZNF384,TRAPPC4,EFNA5,LRCH4,PMP22,SH3GL2,PNMA1,SH3GL1,CDK5R1,NAGLU,SERF1B,PPT1,TAGLN3,EPHB1,EPHB2,SEMA5A,HESX1,ATN1,LHX1,CRMP1,KAL1,BAI1,SMA4,LHX6,AGRN,MAML3,IL1RAPL2,LAMB1,OLFM1,NKX2-2,DMBX1,DVL3,MOBP,NTF3,CYP46A1,TRPC5,HPCAL4,CELSR1,SERPINI1,NCKAP1,PCDH18,SHOX2,DLX2,DLX6,DLX5,TMOD2,MAB21L2,PCDHA6,NRP2,RTN4,PCDHA7,FGF5,PPARD,SPG7,PCDHA8,NEURL,NRP1,PCDHA2,PCDHA3,PCDHA4,PCDHA5,PCDHA1,GLI2,KCNIP2,PTEN,RTN1,DGCR14,SCRG1,NMUR2,MAPT,SEMA3B,FGF2,PCDHB9,PCDHB5,PCDHB6,PCDHB3,RBM45,PCDHB4,PCDHB2,ARTN,SLIT1,SLIT2,FLNA,SLIT3,AMIGO1,VCX3A,SEMA4F,NAB2,SIAH1,CLN8,RAPGEFL1,CLN5,CXCL1,PARD3,SHROOM2,SHROOM4,NNAT,PCDHB15,PCDHB14,PCDHB13,ZBTB16,PCDHB12,PCDHB11,ITM2B,PCDHB10,AZU1,PCDHB16,LY6H,PCDHB17,VWC2,APBA2,PCSK9,UGT8,APBA1,SIM1,WNT8B,SIM2,FZD9,IL3,LMX1B,PTPRZ1,JARID2,NLGN1,NTNG1,NTNG2,AFF2,SOD1,EIF2B1,PHYH,GJB1,STAT3,RPS6KA6,ACCN1,YWHAG,RPS6KA3,YWHAH,DRP2,C7ORF16,NEUROD2,PHGDH,NHLH2,MPPED2,PBX1,PBX3,CIT,CTNS,NHLH1,C4ORF6,PBX4,VLDLR,GFRA3,FGF19,NRTN,CHERP,GRIK1,WFS1,FGF14,FGF17,LMO4,ARNT2,FGF11,FGF13,CSPG5,FGF12,LRRC4C,ZIC1,GDNF,NR2E1,TGFB2,ZIC2,NRCAM,WNT1,GSTM3,PROP1,ROBO1,GPR45,PDGFC,ROBO2,UNC5C,ODZ1,LGI1,SPON2,BPNT1,DSCAM,BCL10,STMN3,BAIAP2,PICK1,ENC1,SIX3,TIMM8A,NUMBL,CBLN1,EP300,LSAMP,GPR56,TFAP2B,OPHN1,NRSN1,SMARCA1,KALRN,PRPS1,SNTG2,ACHE,LST1,ADORA2A,DRD2,SOX3,NINJ2,NINJ1,DSCAML1,CNTFR,ST8SIA2,GREM1,SOX8,PCDHAC2,NR2C2,PCDHAC1,ECE2,B3GNT5,PCDHA10,PCDHA11,PARD6B,FKTN,ADAM23,CPNE6,JRKL,NEUROG1,NEUROG3,FOXP2,P2RX5,HDAC4,S100B,ST8SIA4,NDUFV2,DYRK1A,MYO16,CYFIP1,ADAM22,SCN8A,FABP7,POU6F1,POU6F2,PAX6,PAX2,MBP,GSS,PCDH1,NDUFS4,TRIM3,HEY1,RNF103,TPP1,PCP4,HEY2,DLG4,POU4F2,POU4F1,KCNQ2,SHC3,ALX1,EGR2,ALDH5A1,NRXN3,SOX14,LIMK1,CNTN6,LDB1,SOX11,OTX2,CDK6,NRXN1,MBNL1,ALK,CDK5,BPTF,CHRM3,CHRM2,BTG4,CHRM1,NCOA6,GHRL,NAIP,CNTN4,UBB,NRGN,GSTP1,UTP3,RTN4RL1,UBE3A,NDP,CTF1,BRSK2,SPOCK1,ALDH3A2,APLP1,NPAS1,CD9,UTP11L,NPTX1,NPAS2,DNER,MSI1,PAFAH1B3,AVIL,PTN,KRT2,POU3F3,RTN4RL2,PAFAH1B1,PTS,DCX,CRIM1,DCLK1,COL4A4,GLRB,PLP1,KLK8,NF2,DTX1,NF1,DPYSL5,DPYSL4,DPYSL3,MAL,RCAN1,PARK2,DPYSL2,RACGAP1,GMFB,PSPN,ATXN3,MAP1S,KCNN3,HEYL,GDF11,SMPD1,APAF1,FEZ2,FEZ1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html GYPC,TUSC3,LDLR,B3GALT5,ALG1,ALG2,B3GALT4,TSPAN7,ALG5,ALG6,TSPAN8,ALG8,APOA4,POMGNT1,POMT1,B3GALNT1,TRAK1,RPN1,PSENEN,OGT,MAN2B1,TNIP1,CLN3,MAN1A2,FUT10,ALK,CD37,MAGT1,ADAMTS9,PSEN1,BACE2,BACE1,PSEN2,MGEA5,DOLPP1,TM4SF4,TM4SF5,SERP1,GCNT4,GALNT2,GALNT1,ACHE,GCNT3,FUT9,APH1A,GALNT7,FUT8,FUT7,GALNT6,FUT6,KEL,FUT5,ST8SIA3,ST8SIA2,NECAB3,NGLY1,STT3B,IL17A,STT3A,B3GNT5,MPDU1,FUT4,FUT1,A4GNT,FUT2,GCNT1,GAL3ST1,SDF2,MGAT4B,AGA,MGAT4A,LIPA,B3GALT2,MAN1C1,ABCG1,COG3,NCSTN,COG7,LARGE,ST8SIA4,DPM1,DPM2,DPM3,LRP2,LIPC,ALG12,POFUT1,COG2 +PWCOMMONS CELL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DEVELOPMENT.html ALS2,RORB,CIAPIN1,CTNNB1,BTK,CUL3,MAGED1,CUL2,AGTR2,CUL5,MAP3K5,FAS,DDAH2,CUL1,CRTAM,YARS,OPA1,CRYAA,BRAF,CRYAB,ESPL1,BCL2L11,BCL2L10,THY1,NME5,MAPK1,NME2,SSTR3,NME3,SERPINF1,SPAG6,NME1,IFNB1,F2,TRAPPC4,MAPK8,UNC13B,MYO18A,TNFRSF6B,MYEF2,NFKBIA,CACNB2,PPT1,BCL2L2,HSPA1B,BCL2L1,IFNA2,PEA15,IL17A,KAL1,DIABLO,PHB,SPHK1,DUSP22,GAS2,HGF,VDAC1,FXR1,BFAR,EI24,PARP4,KCNH1,RTN4,HTATIP2,NUAK2,PDIA2,TP63,BNIP3,ZNF346,DAXX,RTN1,DFNB31,BNIPL,MAPT,MAGEH1,CLN3,AIFM3,ACTA1,AIFM2,AIFM1,TP53,NDUFA13,JMY,SERPINB9,INHBA,EREG,BNIP1,BNIP2,RIPK1,SERPINB2,IL12A,LRMP,IL12B,CLN5,ALOX12,PML,GPR65,RTKN,PDE1B,PTK2B,PPP2CA,PCSK9,DAZL,RASA1,PHLDA2,IL4,IL3,IL6,LMX1B,IL7,TRIM28,NTNG1,NTNG2,TNP1,KIAA1967,TP73,PLG,NAE1,CDH13,GSK3B,BNIP3L,BARD1,IL2,ZAK,GRIK2,TNFSF15,TGFB3,TNFSF14,TNFSF12,LRRC4C,TNFSF18,TGFB1,CRADD,TGFB2,NRCAM,CSNK2A2,NLRC4,CDKN2A,CDKN2C,CDKN2D,DDX25,TIA1,TDGF1,ZNF443,IL1B,DAP,UNC5C,SPON2,API5,IL1A,CIB1,BCL10,NUDT2,DFFA,DFFB,RELA,BAIAP2,CECR2,NRD1,FADD,IL24,IL21,HBXIP,EP300,SYCP3,TNFAIP8,HSPB1,SMARCA1,HMGB1,ACHE,CCL2,ADORA2A,ADAMTSL4,PRUNE2,DOCK1,AKT1S1,DYRK2,TRAF7,DDX41,ARHGDIA,TRAF3,ANGPTL4,TRADD,CDKN1A,TNFSF10,HDAC3,CDKN1B,HDAC1,VCP,S100B,IKBKG,MYH11,ADRA1A,CACNA1H,HSPD1,ABL1,DNAJB6,CACNA1A,E2F1,IER3,FOSL2,DEDD,MOV10L1,PRDX2,PAWR,PAX3,PAX2,CASP6,CASP3,CASP4,CASP9,RPS3A,CLCF1,IAPP,PAX7,CASP7,CASP8,RHOB,NDUFS3,CASP2,NDUFS1,PPP2R1A,PTGER3,OTX2,CYCS,CDK6,IFI16,MBNL1,CDK5,LCK,ERN1,ERN2,CNTN4,UBB,ACVR1,DPF2,DCC,BCLAF1,RAG1,BRSK2,ASNS,TRAIP,DPF1,IGF1R,HSPA2,LEFTY2,DAD1,CD2,HSPA9,COL4A4,COL4A3,KLK8,NF2,CEBPG,NF1,DPYSL5,ANXA1,DBC1,RAF1,MAL,BAD,ANXA5,TNFSF9,ANXA4,TNFSF8,HSP90B1,CUL4A,BAX,FAF1,APAF1,FEZ2,FEZ1,S100A4,CGB,CADM1,SNCA,DNAJB13,ADORA1,SHH,BAK1,ATP2B2,APOE,CEP290,EIF2B2,CHRNA1,EIF2B3,EIF2B4,EIF2B5,TXNL1,SGPL1,CD3G,MDGA1,MDGA2,PIM1,OPTN,FARP2,CD38,KRT19,KRT18,RND1,CD40LG,ALOX15B,TXNDC5,VEGFA,NPTN,DEAF1,SIVA1,LALBA,CDK5R1,STK17B,CD70,STK17A,CHEK2,CALR,CD74,PLAGL1,BAI1,AGRN,C16ORF5,LAMB1,HIP1,BLNK,BMP4,BMP2,TP53BP2,BECN1,LGALS1,SRA1,CIDEB,SMAD3,CIDEA,TPD52L1,MYOZ1,TAX1BP1,CIDEC,NCKAP1,SFRP5,NOTCH2,NOTCH1,RNF7,NUP62,SFRP1,BMP7,NRP2,PPARD,NRP1,LY86,BCAR1,FASTK,NFKB1,KCNIP2,GLI2,PTEN,BAG4,TRIAP1,GPX1,BAG1,SEMA3B,TOP2A,DEDD2,DHCR24,GZMA,LGALS12,ARTN,GZMB,SLIT1,SLIT2,AMIGO1,AMIGO2,GRM4,PROK2,PSEN1,TNFRSF10D,SEMA4F,PSEN2,MAP3K10,AVEN,SIAH1,SEMA4D,GADD45B,ADAM12,GADD45A,BID,PARD3,YWHAZ,RAB3D,ATG12,GULP1,SFN,MIF,AZU1,BCL2,BCL3,VWC2,AATF,SPATA4,BCL6,CD27,CD28,TBX3,TBX5,NLGN1,BIRC6,BIRC5,BIRC3,STAT1,SOD1,EIF2B1,YWHAG,YWHAH,MAPK12,EEF1E1,IFT57,BIK,CIT,CD14,NRTN,TSPO,MAEA,CBX4,TLR2,FOXO1,EIF5A,FOXO3,PMAIP1,TTN,GDNF,MRPS30,SMNDC1,GSTM3,CASP8AP2,ROBO1,TPT1,ROBO2,ACIN1,MX1,IFRD1,SOCS2,SOCS3,MADD,BCL2A1,PICK1,HRK,STK4,STK3,AHR,TIAL1,RIPK3,OPHN1,ERC1,GCLC,LST1,MCL1,MAP4K2,RRAGA,FIS1,CSE1L,ALB,MTCH1,NPM1,GLO1,GML,BMF,SRGN,RUNX3,AXIN1,PARD6B,CFLAR,PTPN6,CARD8,HTT,MALT1,WRN,BRCA1,BBC3,CYFIP2,RHOT1,CYFIP1,RHOT2,PDCD5,PDCD6,SST,IFI6,PDCD7,DAP3,POU6F2,FASLG,PDCD1,ACVR1C,PDCD2,AKT1,ACVR1B,BOK,CXCR4,PCBP4,POU4F1,BOC,PRL,LTA,PRKCA,NOL3,NRXN3,LDB1,NRXN1,INHA,DAPK2,NLRP3,PRKCE,NLRP2,DAPK3,NCR1,NLRP1,PROC,DAPK1,EIF4G2,TNFRSF9,NRL,BTG1,BTG4,HIPK3,SCIN,CFL1,GHRL,FAIM3,NAIP,MDM4,CTSB,PPP1R15A,GSTP1,ING4,PRKCZ,H1FNT,TNF,RTN4RL1,TNFRSF25,TNFRSF8,ERCC5,MOAP1,UTP11L,CEP57,SH3GLB1,PTH,TNFRSF18,PYCARD,KRT2,RTN4RL2,ERCC3,SCG2,PIK3R2,ERCC2,PTPRC,FOXL2,IL2RB,IL2RA,DNM1L,DTX1,UBE4B,SAP30BP,RACGAP1,CASP10,SON,MAP1S,BRE,MPO,PPP1R13B,TIAF1,IGFBP3,TSSK6,F2R +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html GRB2,BAIAP2,BCAR1,SOCS1,AP3S1,IGF2,FOXO4,IRS1,AKT1,IGF1R,PDPK1,GRB10,SORBS1,GAB1,FOXC2,PIK3R3,INSR,PIK3R1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html LIMA1,KATNB1,IL10,PAIP2B,TIMP1,APOA2,SET,GSN,SFTPD,BCL3,CLASP1,DNAJC1,APC,ARHGEF2,IL6,GTPBP4,NF2,PRG3,PAIP2,SOCS1,NDUFA13,PRKCG,INHA,MID1IP1,FOXP3,FURIN,TRAT1,SIGIRR,INHBB,INHBA,EIF4A3,EIF2AK1,TSC1,BACE2,CAPG,NLRP12,GHRL,PPP2R4,TMSB4Y,MAPRE1,GHSR,EIF2AK3,IGFBP3,APBB1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SNCA,CBX4,FOXO1,CIAPIN1,GDNF,TNFSF18,CDKN2D,TDGF1,TPT1,FAS,DDAH2,IL1A,API5,BCL10,OPA1,BRAF,SOCS2,CRYAA,DFFA,SOCS3,CRYAB,RELA,BCL2A1,PIM1,HRK,HBXIP,BCL2L10,NME5,NME2,KRT18,CD40LG,TXNDC5,TNFAIP8,VEGFA,HSPB1,MAPK8,ERC1,MYO18A,TNFRSF6B,HMGB1,CCL2,GCLC,MCL1,PPT1,BCL2L2,BCL2L1,HSPA1B,CD74,PEA15,AKT1S1,ALB,NPM1,GLO1,ARHGDIA,ANGPTL4,CFLAR,BECN1,SPHK1,CIDEA,TAX1BP1,NOTCH2,BFAR,HDAC3,RNF7,NUP62,HDAC1,SFRP1,IFI6,RTN4,IER3,HTATIP2,NUAK2,BNIP3,PRDX2,NFKB1,TRIAP1,GPX1,BAG4,CASP3,BAG1,CLCF1,PAX7,DHCR24,CLN3,NOL3,PROC,SERPINB9,PROK2,BNIP1,PSEN1,TNFRSF10D,BNIP2,HIPK3,CFL1,SERPINB2,GHRL,FAIM3,AVEN,NAIP,SEMA4D,GSTP1,ALOX12,ACVR1,PRKCZ,YWHAZ,TNF,RTKN,ASNS,MIF,IGF1R,ERCC5,SH3GLB1,BCL2,DAD1,TNFRSF18,BCL3,AATF,CD27,RASA1,PIK3R2,HSPA9,CD28,SCG2,IL4,IL3,IL2RB,IL6,TBX3,IL7,ANXA1,BIRC6,BIRC5,ANXA5,BIRC3,SOD1,ANXA4,CDH13,SON,HSP90B1,GSK3B,BAX,BNIP3L,BRE,MPO,TIAF1,BARD1,IL2 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html CCL3,CTBP1,CCL2,CTBP2,IL8,VAPB,OPRK1,EIF5A,DEK,APOBEC3G,HBXIP,UBP1,CCL4,APOBEC3F,TARBP2,PPIA,SMARCB1,HTATSF1,CXCR6,TNIP1,TOP2A +PWCOMMONS ESTABLISHMENT OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_LOCALIZATION.html USE1,ITSN1,RAE1,VPS4B,VPS4A,CRTAM,SCN2B,KIF5B,PDPN,KIF5A,VPS45,SCN2A,MYH7,MYH6,MYH9,GLTP,NPC1,NPC2,ZWINT,BACE2,RYR3,F2,RYR1,MYBBP1A,UNC13B,GC,ORAI1,KIF4A,SCN1B,NFKBIE,MTX2,RER1,CACNB3,ARF6,BCL2L1,CACNB4,ARFGEF2,ARFGEF1,SLC29A1,PEA15,SLC29A2,INS,CKLF,DUSP16,RAC1,KIF3B,NXF5,ATP11B,HBA2,VDAC2,VDAC3,VDAC1,NFKBIL2,GH1,LASP1,RERE,KCNAB3,HTATIP2,SLC20A1,LDLR,KCNAB1,SLC20A2,AP2S1,BNIP3,NMUR1,NMUR2,ANP32A,SLC22A4,SLC22A3,SLC22A6,SLC22A5,KDELR1,SLC22A2,SLC22A1,KDELR2,AR,AVP,SLC22A7,PGAP1,SLC22A8,SLC3A2,TP53,PI4KB,CLIC1,SLC3A1,LRPAP1,ELMO1,INHBB,INHBA,CLIC3,CLIC5,LRMP,NUP107,ARL4D,SNAP29,AMPH,SORBS1,DDX19B,PKD2,SNAP23,EXOC5,SNAP25,SLC8A1,UPF2,UPF1,STAB2,CDH13,STAB1,GSK3B,RAB22A,LRP8,LRP2,YKT6,LRP3,NCBP2,ATOX1,TGFB1,IL11,NLRC4,PACSIN3,DNAJC1,MCM3AP,STAP1,SLC33A1,BAIAP3,STIM2,STIM1,VAMP3,ABCA8,RAB7A,CCL3,ARFGAP3,ADORA2B,ADORA2A,CCL8,ABCA2,ABCA1,CCL5,ABCA4,ABCA3,SLCO2A1,SCN9A,CUBN,ABCB8,MYO1E,ICMT,ABCB1,ABCB7,ABCB6,ABCB4,ATP7A,P2RX1,PTTG1IP,SLC13A4,ATP7B,SLC1A4,SLC1A5,SLC1A2,SLC1A3,SLC1A6,SLC1A7,SCN7A,SLC43A1,SLC1A1,SLC7A10,TIMM23,KIF1C,KIF1A,KIF1B,IFT88,EPN1,PKDREJ,CLCNKA,CLCNKB,HRH3,SLC35B2,FCN2,FCN1,SLC35B4,CCS,SCNN1G,APPBP2,SCNN1B,SCNN1A,SCN5A,SCNN1D,NOX1,CBL,SCRN1,GCK,BAX,SCN4B,FAF1,SCN4A,RAB3GAP2,CADM1,TPD52,VPS33B,SLC35A1,SLC35A2,RAB1A,SLC35A3,PICALM,GBF1,APOE,WNK4,APOF,LCAT,CEP290,RAB26,CD3G,ABCB11,WNK1,VTI1B,OPTN,AP4M1,VTI1A,KRT18,PPBP,ATP2C1,PEX26,RAB14,RAB13,CHKA,RABEPK,XK,MYO9B,CALR,RIMS1,CD74,AHSG,SLC11A2,STX12,STX18,STX16,TMED10,SLC31A2,SLC31A1,HIP1,MDFI,CIDEA,HNRNPA1,RABEP1,ATP2A3,ATP2A1,GOSR2,GOSR1,GHSR,CLTCL1,CLCN4,CLCN5,GJA8,ARSB,PPARA,KCNJ15,PPARD,ATP6V0E1,KCNJ10,GJA4,HVCN1,KCNIP2,KCNJ12,GLI3,CANX,KCNJ11,SLC26A2,FXN,GOLGA5,COX18,COX17,GOLGA4,STX1A,SPACA3,RPGR,KCNA10,SLC26A4,SLC26A3,GRM4,ZDHHC17,PTGDS,RAB5A,NPPB,STEAP2,AVPR2,RAB3A,BET1,AZU1,PEX19,BCL2,FCGR1A,PEX16,BCL3,PEX14,PEX13,BCL6,PEX12,CD24,PEX10,APBA1,FYB,RAB2A,NLGN1,NPR1,BIRC5,GABARAP,GJB1,GJB2,SLC16A3,COG3,SLC16A2,SLC16A5,SLC16A4,YWHAH,SLC16A7,COG7,SLC16A6,RAB35,SLC16A8,ATP6V0A4,CD14,KIF20A,COG2,SEPT5,SLC22A16,TSPO,SNCAIP,SLC22A18,SLC22A13,SLC22A12,SLC22A14,EIF5A,GDNF,AIP,SCTR,GATA2,SLC16A1,SLC25A22,NUP133,ERP29,PICK1,TCN2,TCN1,RPAIN,AKAP7,AKAP3,FXYD1,CAV1,FXYD3,SNX2,SNX1,SNX4,SNX3,LMAN1,FOLR3,FOLR2,FOLR1,ALB,NPM1,ARL6IP5,CARD8,SPTBN4,FOXP3,LIN7A,CORO1C,SLC25A12,SLC25A11,SLC25A14,PPIH,SLC4A11,SLC25A13,SLC25A10,SPTBN2,GLMN,SLC25A15,RSC1A1,SLC25A17,COPA,SLC5A1,SORL1,ANG,ACTR1A,YRDC,RANBP2,TPR,ZW10,RALBP1,PRKCI,ARHGAP27,NLRP3,NLRP2,OSM,MFN2,GHRH,ARCN1,SCIN,TOM1,GHRL,COPE,CPLX2,TNF,CPLX1,NUP160,SLC37A4,AKAP9,NPTX1,CEP57,TAP2,NFAT5,PYCARD,SCG5,NEFL,SLC39A2,SCG2,SLC39A1,GLRB,MON2,ATXN1,SH3BP4,MAP1S,HPX,SLC18A2,MAPK8IP3,SLC18A3,TRPC4AP,MAPK8IP1,SLC18A1,CSN2,LTBP2,MXI1,SSR1,KCNK7,KCNK6,KCNK5,RPL11,TLK1,GUCA2B,CDCA5,CLCA2,OPA1,CLCA1,CLCA4,CRYAA,CRYAB,COLEC12,ERGIC1,ERGIC2,ERGIC3,UXT,RPS19,ZNF238,RTP3,RTP2,RTP4,RTP1,HFE,PPT1,KCNJ2,KCNJ3,ATP6V0B,KCNJ1,ATP6V0C,ADRB3,SLC28A2,SLC28A1,SEC23IP,NPHP1,KCNK1,TINAGL1,KCNK3,KCNK4,KCNJ5,KCNJ4,KCNJ6,TRPS1,CD209,SYTL4,SYTL2,SYTL1,KCNH1,KCNK17,MSR1,GLRA1,FAM3D,PDIA3,FAM3B,SYNJ1,GLRA2,AP3S2,PDIA4,COPB2,AP1S1,SLC23A1,NOD2,SLC23A2,COPB1,TRPV5,CETP,SCN10A,KCNG2,STX6,STX5,CLN3,GRHPR,FLNA,NUP205,SCN11A,KCNH2,KCNH3,KCNH4,EEA1,NAGPA,NUP214,KCNE1,KCNE2,PPP1R10,SELS,NPHS2,PLN,NPHS1,NLRP12,KCNF1,CTNS,DNM1,SSR2,BARD1,KCNC1,KCNC4,SLC44A1,KCNC3,SLC44A2,XPO6,AP1G1,ATP6AP1,SLC7A8,SLC7A9,TNFSF14,MIPEP,SLC7A4,SLC7A5,SLC7A6,SLC7A7,SLC2A8,APOA4,APOA2,SLC2A5,APOA1,SLC2A4,SLC2A3,DDX25,SLC2A2,SLC2A1,FLVCR1,EGFR,KCND3,NUDT4,HNRNPA2B1,SLC34A1,SLC34A3,SLC34A2,DDX39,COPG2,SLC40A1,LRPPRC,BAT1,ACHE,STX8,STX7,KCNA2,KCNA1,KCNA4,KCNA3,KCNA6,KCNA5,PYDC1,DOCK1,APOC3,DOPEY2,DOPEY1,ANGPTL3,HCN4,MRC1,HCN2,CACNA2D1,PRAF2,SMG6,KCNB2,SMG5,SMG7,SMG1,SNAPIN,TRNT1,TSC1,VCP,SLC7A2,TSC2,XPO7,TRIP6,CACNA1D,MYH10,SEC24B,PEX6,PEX3,DPH3,PEX7,AKR1C4,PEX1,ZFYVE16,NPC1L1,RHOB,AKR1C1,SEC23A,KNG1,TRPM3,SGK1,NUSAP1,ATP6V1H,M6PR,TRPM2,ATP6V1F,ADRB2,ATG4D,ATG4C,ATG4B,ATG4A,IGF2R,SEC23B,VIP,STON2,NUP98,STON1,AP1M2,CDH1,SEC63,SLCO1A2,AP3M1,SEC22A,SEC22B,PAFAH1B1,SEC22C,HBB,GUCA1B,TCIRG1,PLP2,PSAP,NF1,CADPS,SLCO1B3,SLCO1B1,GGA1,SLC14A1,SLC14A2,SYT1,AQP9,PDLIM7,AQP8,AQP5,AQP4,AQP7,AQP6,AQP1,ADORA1,AQP3,AQP2,GOT2,HOOK2,BAK1,HOMER3,TRAK1,CHRNA7,KIF13B,CLNS1A,TRPA1,CLEC4M,NNT,RHCG,TBRG1,KCNMB3,KCNMB4,UHMK1,KCNMB1,CDC37,KCNMB2,LIF,SERINC1,C16ORF7,TRAM1,TRPC1,TRPC4,TRPC3,TRPC6,TRPC5,SMAD3,CDC23,ARFIP1,ABCG1,ABCG2,CEL,CBLB,NPY,CHRNB4,BET1L,CHRNB1,CLEC7A,LGTN,SLC46A1,ABCF2,SLC16A10,TIMM17A,TIMM17B,ASGR1,EDNRA,ZFYVE9,SLC25A3,AP3B2,SLC25A1,AP3B1,TOMM34,DYNC1I1,SLC25A4,SLC25A5,RPH3AL,LDLRAP1,ATP6V1C1,ANKRD27,CHMP1A,TOMM20,TOMM22,SLC27A4,CLDN16,SHROOM2,GULP1,SLC19A1,BEST1,SQSTM1,ABCD2,ABCD3,AP3D1,ABCD4,CHP,SERGEF,TBX3,ATP1A4,KCNV1,ABCC9,ATP6V1E1,ABCC3,HBQ1,ABCC1,ABCC2,ABCC8,ABCC5,ABCC6,NRBP1,SLC6A2,SLC6A3,LMAN2L,SLC6A4,CSPG5,AGXT,KLHL2,STARD3,SLC4A2,SLC4A1,SCAMP1,SCAMP3,MYO6,SCAMP2,LRP1B,NUPL2,PKD2L1,TRAT1,TNNT2,LYST,CARTPT,KALRN,SRI,MYL6,DERL2,SLC38A3,PPY,DERL1,NAPG,ITLN1,COPZ1,CTSA,NAPA,ENSA,ATP6V1B1,KCNS3,KCNS1,SFTPD,SLC30A5,SCARB1,SRGN,CKAP5,CPNE6,MALT1,UCP1,REEP1,NFKBIL1,UCP3,UCP2,RHOT1,CPNE1,RHOT2,CPNE3,ASNA1,TACR2,HPS4,TTPA,AKT1,KCNQ4,KCNQ3,SLN,CCT8L2,NECAP2,NCKIPSD,KCNQ2,KCNQ1,KPNB1,RAMP3,KHDRBS1,TM9SF2,RAMP2,HSP90AA1,INHA,TIMM44,C3ORF31,KPNA6,KPNA5,KPNA4,KPNA3,KPNA2,KPNA1,SCARF1,MYL6B,SYN3,TNPO1,CENPF,CENPE,RHAG,SLC17A7,KCNN4,SLC17A5,SLC6A7,SLC17A3,KCNN1,SLC17A4,SLC17A1,KCNN3,SLC17A2,F2R +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html ALS2,ZAK,EDN2,TNFSF15,PKMYT1,MBIP,TLR6,MAP3K7,MAP3K6,MAP3K5,CDKN2A,MAP3K4,CDKN2B,DIRAS3,MDFIC,CDKN2C,CDKN2D,MAP3K9,TDGF1,SPRED2,CHRNA7,SPRED1,GNG3,EGFR,DBNL,ANAPC2,GTPBP4,C5AR1,RBL2,PIK3CB,MADD,KIAA1804,PICK1,RBL1,THY1,MAP4K5,PLCE1,CARTPT,TRAF2,CDK5R1,CDK5R2,ADORA2B,ERBB2,PTPLAD1,MAP4K1,CHEK1,CCNG1,PYDC1,CDC37,HEXIM2,HEXIM1,DUSP16,ADRA2A,ADRA2C,TRAF7,EGF,TRAF6,MDFI,TAOK2,MAP2K3,DUSP22,TPD52L1,MALT1,CDKN1C,CBLC,RGS3,RGS4,CCNT2,C13ORF15,CCNT1,PTEN,LATS1,DAXX,PDCD4,LATS2,CAMKK2,CCNE2,PAK2,CXCR4,ANG,TGFA,CDK5RAP3,SHC1,PAK1,CDK5RAP1,FGF2,SERTAD1,CDC6,IRAK1,CCNK,CCDC88A,HERC5,PKN1,RB1,CDK7,GTF2H1,CARD10,GRM4,TARBP2,PROK2,NCK2,ADRB2,CCND1,EREG,CCND3,LAX1,CCND2,HIPK3,CHRM1,CD81,GADD45G,ERN1,MAP3K10,GHRL,GADD45B,MAP3K13,GADD45A,PRKD3,GAP43,MAP3K11,CKS1B,PARD3,C5,FPR1,TRIB3,BCCIP,SFN,TRIB2,TRIB1,AZU1,TSPYL2,MAP3K2,CD4,CD24,PPAP2A,APC,GPS1,PTPRC,NF1,CRIPAK,SOD1,CDC25C,CDKN3,CDC25A,GPS2,MNAT1,DUSP2,PRLR,EPGN,CKS2,DUSP9,DUSP8,DUSP6 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CADM1,ELF4,IL18,PREX1,JAG2,TNFSF13,TLR4,TPD52,SPINK5,TGFB1,SART1,CD47,NLRC3,EBI3,L3MBTL4,CRTAM,SPACA3,SIT1,CD3D,PRG3,CD3E,IL27,SLA2,NFAM1,SOCS5,INHA,IL21,THY1,NCK2,INHBA,LAT2,SIRPG,WBP2NL,CD40LG,LAX1,NCK1,LCK,F2,IL12A,IL12B,NHEJ1,ICOSLG,LST1,PF4,CX3CL1,PR47,AZU1,INS,SFTPD,CD2,ZAP70,KRT2,CD4,GP1BA,CD24,HELLS,CD7,CD28,IL4,PTPRC,IL8,IL7,CEBPG,CD276,FOXP3,CD1D,HDAC5,HDAC4,VWF,LAT,GLMN,CD79A,CLEC7A,HDAC9,IL2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html RTN4,NRP2,ALS2,NRTN,NRP1,LRRC4C,PAX2,GLI2,GDNF,SHH,ROBO1,APOE,MAPT,SEMA3B,ROBO2,POU4F1,UNC5C,SPON2,NRXN3,BAIAP2,OTX2,NRXN1,SLIT1,CDK5,SLIT2,THY1,AMIGO1,SEMA4F,OPHN1,GHRL,TRAPPC4,CNTN4,SIAH1,UBB,CDK5R1,PARD3,LST1,RTN4RL1,KAL1,BAI1,RTN4RL2,LAMB1,PARD6B,KLK8,NTNG1,DPYSL5,NTNG2,YWHAH,S100B,MAP1S,CYFIP1,FEZ2,FEZ1 +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html STX1A,TBX3,FAM3D,FAM3B,INHA,IL11,INHBB,LIF,OSM,INHBA,GCK,GHRH,GHRL,CARTPT,SCG5,GHSR,SNAP25 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html ALS2,ZAK,EDN2,TNFSF15,PKMYT1,MBIP,TLR6,MAP3K7,MAP3K6,MAP3K5,CDKN2A,MAP3K4,DIRAS3,CDKN2B,MDFIC,CDKN2C,MAP3K9,CDKN2D,TDGF1,SPRED2,CHRNA7,SPRED1,GNG3,EGFR,DBNL,ANAPC2,GTPBP4,C5AR1,PIK3CB,MADD,KIAA1804,PICK1,THY1,PLCE1,MAP4K5,CARTPT,TRAF2,CDK5R1,CDK5R2,ADORA2B,ERBB2,PTPLAD1,MAP4K1,CHEK1,CCNG1,PYDC1,CDC37,HEXIM2,HEXIM1,DUSP16,ADRA2A,ADRA2C,TRAF7,TRAF6,EGF,MDFI,TAOK2,MAP2K3,DUSP22,MALT1,TPD52L1,CDKN1C,CBLC,RGS3,RGS4,CCNT2,C13ORF15,CCNT1,PDCD4,LATS1,PTEN,DAXX,LATS2,CAMKK2,CCNE2,PAK2,CXCR4,ANG,TGFA,SHC1,CDK5RAP3,PAK1,CDK5RAP1,FGF2,SERTAD1,IRAK1,CDC6,CCNK,CCDC88A,HERC5,PKN1,CDK7,RB1,GTF2H1,CARD10,NCK2,GRM4,PROK2,TARBP2,ADRB2,CCND1,CCND3,EREG,LAX1,CCND2,CHRM1,HIPK3,GADD45G,CD81,MAP3K10,ERN1,GHRL,GADD45B,MAP3K13,GADD45A,PRKD3,GAP43,MAP3K11,CKS1B,PARD3,C5,FPR1,TRIB3,BCCIP,SFN,TRIB2,TRIB1,AZU1,TSPYL2,MAP3K2,CD4,CD24,PPAP2A,APC,GPS1,PTPRC,NF1,CRIPAK,CDKN3,CDC25C,SOD1,CDC25A,GPS2,MNAT1,DUSP2,PRLR,EPGN,CKS2,DUSP9,DUSP8,DUSP6 +PWCOMMONS N TERMINAL PROTEIN AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/N_TERMINAL_PROTEIN_AMINO_ACID_MODIFICATION.html METAP1,METAP2,EP300,PDF,MAP1D,CREBBP +PWCOMMONS BIOPOLYMER METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_METABOLIC_PROCESS.html USE1,SYNCRIP,RORB,BTK,MAP3K6,DHX38,MAP3K9,FOXF1,MAP3K8,FOXF2,VPS4B,ZNF396,OGT,IKBKAP,MCRS1,PCBD2,BRAF,PTBP1,MARK4,SARS2,MARK1,MARK2,PPP1CA,EIF2AK1,PTRF,SHOX,MYBBP1A,EIF2AK3,EIF2AK4,DUSP10,DUSP12,DUSP11,XAB2,VPS72,FOXH1,ARIH1,DUSP13,NTHL1,SPOP,DHX8,PAIP1,TAOK3,ESRRG,DUSP22,ATR,UBE2L3,USF1,ATM,CDC42BPG,POP1,CDC42BPA,PARP3,POP4,PARP4,PARP1,PARP2,CDC42BPB,HTATIP2,NUAK2,TSG101,UBE2G1,UBE2G2,CWC15,EZH2,SPI1,ZNF346,ZNF345,YBX1,AUH,YBX2,ZNF350,BRD7,SPIB,BRD8,ATF7IP,MTERF,BRF1,AIFM1,MMP15,ARHGEF11,EREG,TXK,USP25,DOLPP1,NNAT,MKNK2,MKNK1,ZNF367,IL7R,SF3B4,POT1,SF3B3,SF3B2,MTMR3,USP39,DHX15,DHX16,MARS2,USP33,MTMR7,FEN1,FOXD3,TRIM29,TRIM28,TRIM27,IGF1,TRIM24,PHF12,TRIM23,SF3A2,TRIM22,SF3A1,SF3A3,DUSP5,ATRX,DUSP4,DUSP3,DUSP2,CSNK1D,CSNK1E,GSK3B,WHSC1L1,FOXE1,DUSP9,LRP2,DUSP8,FOXE3,DUSP6,TXNL4A,NCBP2,NCBP1,PRPF4B,SNRPD3,SNRPD1,SNRPD2,NR2E3,TGFB1,FNTB,FNTA,CDKN2A,MDFIC,ATG7,CDKN2D,FBXO22,BCL10,IL29,MYO3A,PTPRN2,RNASEH2A,CSDA,BICD1,IL20,EP300,HIF1A,SMARCA5,RNF139,EDF1,NFE2L1,NFE2L2,SMARCA1,NFE2L3,SMARCA2,FBXO11,CCL2,UBE2V1,UBE2V2,ST8SIA3,ST8SIA2,SYCP1,NR2C2,CXXC1,RABGGTA,FBXW7,SMARCB1,PTK6,FBXW2,SDF2,TFDP1,ICMT,ATG3,NMT2,ATF6,RBMY1A1,HDAC5,HDAC4,ATF5,NMT1,NRF1,ATF4,HDAC2,DYRK1B,ST8SIA4,SMARCC1,SMARCC2,ATF7,DYRK1A,HDAC8,ADRA1D,HDAC6,E2F1,E2F2,E2F3,RSF1,E2F6,PINK1,PAX5,PAWR,PAX3,PAX2,PAX1,TMF1,WARS,PRMT1,PRMT2,PKN3,PRMT7,PRMT8,PRMT5,PAX8,SLA2,DDB1,PKN2,PKN1,ERN1,GAA,DDB2,ERN2,ZFPM2,UBB,JMJD1C,DMC1,PTMS,TM4SF4,TM4SF5,HS3ST5,BRSK2,BRSK1,TFAM,CEBPZ,DCLK1,CEBPA,CEBPB,CEBPD,NFRKB,CEBPG,CBL,GRSF1,SLBP,GCK,BAX,ALKBH1,FAF1,FST,DDX17,WWP2,WWP1,WNK4,ANAPC2,BCR,ANAPC5,ANAPC4,WNK1,UBR3,RAD9A,WNK3,WNK2,CD37,CAMK4,UBR5,CAMK1,FBXL4,AMFR,TGFB1I1,NEK4,NEK6,FBXL2,DEAF1,TPST1,TPST2,KEL,HUS1,STK17B,STK17A,PLAGL1,PPAN,VRK1,ACD,VRK2,DUX1,MAML3,FBXO7,MDFI,PLAT,IKZF3,MAML1,MAML2,FBXO2,CIDEA,OXSR1,UBP1,POLRMT,SUPT16H,RBPJ,ZFHX3,HSBP1,PTEN,PMS2L1,SENP7,PDPK1,CCNO,ZFP36,CTBP1,CCNK,CCNH,APTX,RAD52,RAD50,RAD51,MAP3K10,MAP3K13,MAP3K12,MAP3K11,SERP1,PPP6C,KIN,STT3B,STT3A,NR1D2,THG1L,HSF2BP,AGA,FYB,CSNK1A1,HCLS1,SPHAR,SNAI2,COG3,TP53RK,UBTF,COG7,PTCH1,COG2,MYOD1,FOXO1,SAE1,APOBEC3G,FOXO3,TTN,FOXO4,APOBEC3F,ATOH1,RAD21,RBMS2,RBMS1,CSNK1G2,FOXN1,RRP9,AHR,FOXN3,RPAIN,SLU7,CSNK1G3,CSTA,ERC1,RAD17,PPP5C,BLM,NEDD8,KARS,UBE2D3,UBE2D2,NKX3-2,UBE2D1,PGGT1B,GAL3ST1,SREBF1,EEF1A1,P4HB,BMX,BRCA2,TSN,FOXP3,BRCA1,SREBF2,PPIG,UBE2E2,IL22RA2,UBE2E1,POU6F2,FOXK2,FUBP1,FOS,DGCR8,ANG,TERT,ALX1,SP100,ALK,UBN1,XRCC6BP1,NRIP1,TYK2,CD3EAP,EVPL,XPC,CD80,ZMIZ2,CD81,MDM2,MDM4,ZFP161,GLIS3,FRK,PPP4R2,TNF,GLIS1,HAT1,TRIB2,RPA4,TRIB1,RPA3,RPA1,ERCC8,RPA2,ERCC5,TYMP,ERCC6,MAP3K3,MAP3K2,POU2F3,POU2F2,NFAT5,CAMK2B,GFI1,ERCC3,ERCC4,CAMK2A,ERCC1,ERCC2,FOXL2,PARK2,ATXN3,THRAP3,TEP1,BMPR1B,BMPR1A,LSM6,LSM5,LSM4,LSM3,LSM1,MAP2K6,PTPRJ,YARS,PTPRM,PTPRH,ZHX1,ZHX2,PTPRR,ZHX3,PTPRT,PTPRU,PTPRO,SMARCAL1,SIP1,TRAPPC2,MYEF2,PPT1,HSPA1B,HEXIM2,HEXIM1,PIR,TNKS,VEZF1,UTF1,NPLOC4,KLF12,KLF13,MAP2K3,TGFBR1,KLF10,PHB,KLF11,MGC42105,TRPS1,UBA3,MZF1,HGS,TNK1,TNK2,HLF,CRNKL1,POMGNT1,RRN3,HSF2,HSF4,CDC6,SRPK2,EXOSC7,GMEB2,EXOSC2,EXOSC3,FOSB,SRPK1,MAST1,CCND1,MAST2,CCND3,CCND2,NSD1,NHEJ1,CLOCK,WRNIP1,CREM,POLA1,NAGPA,LIMD1,TNP1,SELS,RPS6KA5,CCL11,RPS6KA4,LARGE,PPBPL2,TCEB2,TCEB3,TCEB1,REPIN1,MMS19,TBP,IGHMBP2,B3GALNT1,RPN1,RPN2,MATK,EGFR,TWF1,ARID1A,DDIT3,JUNB,PA2G4,RBMY2BP,UBA52,HMGB1,PAM,HMGB2,CNBP,ACHE,CCRN4L,TROVE2,ECE2,POLE2,RPL6,POLE3,METTL1,JUND,TAF9,TRAF7,TRAF6,B4GALT7,LIPT1,TEC,TAF2,TAF1,SMG6,EPAS1,TAF5,SMG5,TAF8,SMG7,NEUROG1,SMG1,POLD4,PLK4,PLK3,TSC1,POLD1,POLD2,TDG,ARID4A,ALG1,ALG2,PRDX4,ALG5,DEK,ALG6,ALG8,CLCF1,POLG2,NFX1,MAN1A2,LIMK1,ARID5B,ARID5A,CDK9,ESR2,PADI4,CDK7,HMGA2,HMGA1,CDK2,PURA,PPM1G,PPM1D,CHRM3,CHRM1,LCK,NCOA6,PPM1M,NUP98,APH1A,ADAMTS13,APH1B,NFYC,NFYB,PPM1B,NR3C1,NFYA,IVNS1ABP,A4GNT,RNF144B,PDF,HCK,GYG2,MAN1C1,TSSK1A,DBP,TSFM,ZRANB2,CDX2,B3GALT5,B3GALT4,PTTG1,NONO,PRIM1,COL4A3BP,PRIM2,TRAK1,SUPT5H,TWIST2,TWIST1,PIM1,PIM2,TAF6L,SRP72,MRE11A,PXK,IGF2BP3,AGGF1,HTATSF1,GYS2,GAD1,BMP4,BMP2,SMAD4,SMAD3,SMAD2,PMF1,ADPRH,ADAR,BMP6,CCNT2,COPS2,GTF3A,GYPC,COPS5,TBX22,FASTK,TBX21,CCNT1,UVRAG,NFKB1,NFKB2,DMAP1,CDT1,CAMKK2,PARN,ASH2L,NT5M,NR2F2,NT5E,PRPF31,SNAPC5,ADAM10,SNAPC2,TBX10,POLR1E,SNAPC4,SNAPC3,SF1,POLR1C,GTF2B,MED6,HNRPDL,CTNNBIP1,MED7,MED4,GTF2I,ASH1L,GADD45G,SRCAP,GADD45A,TBX19,MED1,USP7,POLR2G,POLR2F,POLR2E,POLR2L,POLR2K,POLR2J,POLR2I,NFS1,POLR2D,POLR2C,POLR2B,SUMO1,SET,SQSTM1,CHM,PCMT1,BCAS2,POLR3G,POLR3H,POLR3K,PTPRZ1,MEX3B,GMNN,ILF3,POLR3C,PRPF18,PSMD14,ILF2,MAPK12,PYGM,MAPK15,NEUROD2,PHF21A,PYGB,LOR,TUSC3,CRABP2,DMPK,HOXC6,TARDBP,HOXC5,TFB2M,LOX,MYO6,DARS,SNRPN,SOCS1,FUT10,ARNTL,TRERF1,TIAL1,RIPK3,SNRPB,RIPK4,SNRPC,SNRPF,KALRN,SNRPG,DERL2,PPME1,DERL1,TFAP4,ITLN1,TIPIN,ANAPC10,ANAPC11,RAD51L1,PTPLA,RNF11,RAD51L3,RUNX1,RNF14,RUNX3,PTPN7,MAFF,PTPN6,PTPN9,CSTF3,CSTF2,NFE2,PTPN3,PTPN2,PIF1,PTPN5,PTPN4,SAP18,SSB,AKTIP,MAFA,CSTF1,MYLK,SOX21,NR6A1,AKT1,MEN1,PIGK,PAK2,PIGF,PIGG,PIGH,PIGB,PIGC,SOX18,PAK1,CSK,AKT3,AKT2,PIGA,KHDRBS1,PIGZ,NOL3,PIGY,NOL8,SOX12,PIGV,PIGU,PIGT,MINK1,PIGS,DAPK2,DAPK3,PIGO,DAPK1,HIPK3,KHSRP,KPNA2,KPNA1,SUPT3H,NFIX,GLRX2,TNFRSF1A,KRT7,NUDT21,ENO1,PTPRB,PTPRC,PTPRD,PTPRE,LTK,LIPA,B3GALT2,SOX30,GMFB,DIS3,SP1,GMFG,SP2,SP3,SP4,NFIC,LIPC,CRK,LIPE,PPP2R5C,MED24,MED23,MYLIP,REST,MED21,MED20,ISG20,EPC1,TAF5L,ISG15,MED26,ILK,MED27,PQBP1,PATZ1,RREB1,LIG1,MED12,LIG3,MECP2,MED14,LIG4,MED13,RAD1,MAPK6,MED16,MAPK4,BACE2,MED17,F2,MAPK3,MGAM,MAPK8,CPSF3L,RAD23B,PPP2R3B,PPP2R3A,CRTC1,RAD23A,PABPC4,IL17A,INS,PABPC1,SFRS11,RECQL4,RECQL5,EPM2A,NOLC1,SMURF2,SMURF1,TAF1C,ELF1,ELF2,TAF1A,LDLR,ELF3,ELF4,ELF5,TP63,BNIP3,CUZD1,PMVK,DAXX,ZNF148,ZNF146,EEF2K,TAF1L,LYN,TP53,ZNF143,TTF2,MYCN,INHBA,CARD14,PPEF2,PPEF1,ZNF136,C19ORF2,IL12A,ZMYND11,ABI3,NUFIP1,ABI2,ABI1,SPO11,ZNF177,ZNF174,SNRK,MPDU1,MYF6,IL4,IL3,UPF2,IL5,UPF1,LMX1B,MYF5,TP73,QPCT,ZNF157,SFPQ,ARAF,OGG1,DBF4,LMO4,TCEAL1,CSNK2A1,TDGF1,PMS2,SCRT1,PMS1,CIB1,MCM3AP,ZNF593,POU2AF1,DFFA,DFFB,TCFL5,MNX1,TFAP2B,TFAP2A,TESK2,TFAP2C,PHKA2,LITAF,ABCA2,MAPKAPK2,MEIS2,TEAD4,SNF8,EGF,ASF1A,HELLS,EHMT1,MOBKL1A,BRIP1,FURIN,DNASE2,IKBKE,ABL1,ABL2,PTGES3,MAX,MAZ,DKC1,LRRFIP1,MAN2B1,PPP2R1A,PTGER3,CYCS,PRPF3,NEK11,PRPF6,RAGE,PPP2R2A,RAG1,EGLN2,STUB1,HIC1,PRSS2,PRPF8,PRSS3,ECD,GTF3C6,NFATC4,NFATC2,GTF3C2,NSUN2,NFATC3,GTF3C4,NFATC1,MAF,EXO1,RAF1,NCSTN,ICK,MED30,ID4,CHIA,DZIP3,AURKC,HIRA,AURKA,PRKG2,PRKG1,SLC35A1,PRKX,PRKY,PSENEN,GTPBP4,RAN,PPARGC1A,PPARGC1B,PNKP,REC8,MTF1,PRDM4,ABT1,MNT,PRDM1,FARS2,AFAP1L2,CALR,EPHB2,SUPV3L1,BCOR,TCF25,KLF5,KLF7,MLL,KLF9,RYBP,TPD52L1,HNRNPA0,EPHA5,TCEB3B,RNF4,EPHA8,TCF19,NCOR1,ALG12,TCF12,TCF15,KLF4,GRK1,PPARA,ZBTB32,PPARD,ACVRL1,PPARG,ZEB1,TERF2IP,GLI2,ART1,KCNIP3,GLI1,ZBTB38,ART3,FANCG,FANCA,FANCC,UFD1L,MBD1,RBBP8,SCAP,RIPPLY1,CTDP1,REV3L,ETV7,FUT9,ATG12,FUT8,FUT7,FUT6,FUT5,ZBTB16,EDEM1,ETV1,PEX14,FUT4,MLLT1,BCL6,FUT1,PRKAA1,PRKAA2,FUT2,MLLT6,SOD1,SOD2,PREB,C7ORF16,PPP2R4,SMNDC1,SETX,GATA1,GATA2,GATA6,GATA3,GATA4,PRKACB,MYST2,MYST1,MYST4,GABPB2,MYST3,PICK1,ZNF189,DSP,SSH1,SSH2,ITGB2,IRAK3,LMTK2,STK38L,NOVA1,SNW1,ULK1,DNMT1,PHEX,DUT,METAP1,METAP2,PRKAG1,DBR1,POU4F2,POU4F1,MKL2,CHUK,VCPIP1,IRAK2,NANOG,UBE2A,PRKCI,PRKCH,UBE2I,PRKCG,CHST4,UBE2H,CHST5,UBE2C,PRKCE,PRKCD,MSC,UBE2B,CHST1,PRKD1,UBE2N,BPTF,CHST7,UBE2K,CUX1,PRKD3,SMARCAD1,PRKCZ,UBE3A,TRA2A,HCFC1,PRKDC,HCFC2,UBE3C,TGM3,SCG5,GEMIN8,SFRS2IP,TGM5,GEMIN6,YES1,GEMIN7,GEMIN4,GEMIN5,UBE4A,MAP1D,UBE4B,SIRT4,SIRT5,SIRT6,SIRT1,SIRT2,SIRT3,IRF9,MPG,GSPT1,IRF7,DR1,IRF8,IRF1,IRF2,IRF3,POFUT1,IGFBP3,IGFBP4,XRCC5,XRCC4,XRCC3,SLC2A4RG,XRCC2,XRCC6,RP9,INTS1,HOXD13,INTS2,INTS3,ZNF638,ZNF254,CITED1,CITED2,INTS9,INTS8,INTS5,INTS4,INTS7,INTS6,TLK1,TLK2,ZNF45,ROCK1,ROCK2,RXRA,KIAA1804,HNF4G,ORC1L,NME2,ZNF238,HNF4A,RPS14,UBL4A,TGIF1,ZNHIT3,GGCX,ERBB3,ZNF76,ERBB2,ZNF74,TCF4,DNMT3B,TCF3,ARHGEF10L,MGAT4B,DNMT3A,MGAT4A,TCF7,PCNP,TFCP2,HNF1B,SEPHS1,HNF1A,NAP1L1,LATS1,LATS2,MSRA,CREG1,MYC,ZNF281,BATF3,ZNF282,PTF1A,GTF2H4,NDUFA13,JMY,MXD4,GTF2H1,CIAO1,PFDN5,CAND1,RUVBL2,RUVBL1,TUFM,ZNF274,GPAA1,ZNF35,PTK2B,PPP2CA,RNASET2,PPP2CB,PCSK9,SUPT4H1,TRIP11,PCSK5,TRIP13,ZNF263,ELAVL2,ELAVL4,NAE1,MNAT1,RBAK,DPM1,NLRP12,DPM2,DPM3,PHF5A,NR5A2,NR5A1,RNMT,ZAK,STK38,RBM3,STK36,BTRC,RBM5,TSPAN7,RBM6,TSPAN8,TNFSF13,MIPEP,RBM9,CBFB,GTF2E1,GTF2E2,DDX23,SMARCD2,SMARCD3,ST3GAL6,SMARCD1,CPA2,DDX20,INSR,SNRPA1,RET,HDAC10,CECR2,HDAC11,HNRNPR,DDX39,RBPMS,SMARCE1,XRN2,BAT1,STK16,EID1,FGR,STK11,STK10,SNRPB2,TCERG1,DYRK3,DYRK2,HNRNPC,STK19,AIPL1,TRIP4,GLYCTK,TRNT1,VCP,GTF2F1,GTF2F2,PRKAR1A,MERTK,DDX54,NBN,FOSL2,UCHL1,ZNF202,CTCF,DPH3,FES,FEV,NDUFS4,ORC4L,LOXL2,NFIL3,FOSL1,LOXL1,SGK1,SGK3,SARS,RB1,TARBP1,RECQL,TARBP2,CDK2AP1,CPSF6,ORC5L,CPSF3,CARM1,CPSF1,ACVR1,GALNT2,GALNT1,GALNT7,GALNT6,SMUG1,ADAT1,TSC22D1,IGF1R,TSC22D3,ORC2L,TSPYL2,CHD2,CHD1,TERF2,CHD4,CHD3,RNASE2,NF2,RNASE3,VHL,RNASE6,ANXA1,CREB5,FBL,ORC3L,JAK2,JAK3,RAD51C,RNF217,PTPN22,RNASEH1,PTPN21,SFRS6,SFRS7,SFRS4,SIN3A,SFRS5,PLOD2,PLOD3,SFRS8,SFRS9,U2AF1,RARB,PITX2,POLL,POLK,POLI,POLH,POLG,YY1,AARS,POLE,NKX2-8,POLB,SFRS1,SFRS2,UHRF1,RFC3,RFC4,UHRF2,RFC1,HUWE1,CD40LG,RARS,TBRG1,GCNT4,GCNT3,ENPP7,ELL,CHEK1,UHMK1,DRAP1,CDC40,POLQ,NKX2-5,GCNT1,LCMT1,PTPN18,SUB1,CREBBP,TREX2,PTPN14,S100A11,CDC23,PTPN13,CDC20,RAD54L,PTPN12,NOTCH2,CBLC,NOTCH4,JAZF1,RAD54B,KIAA0368,MLH1,RNGTT,BLZF1,GFI1B,TOP2A,ABCE1,ZNF354A,CHMP1A,PSEN1,PSEN2,SIAH1,SIAH2,NMI,UNG,EHF,SUFU,MRPL12,GATAD2A,SEPSECS,QSOX1,TBX3,TBX2,TBX5,NASP,AFF4,STAT1,STAT3,STAT2,PPP1R8,PBX1,PBX3,RBM14,PBX4,THRA,UBQLN3,IL31RA,MUTYH,SRRM1,EFTUD2,NR0B2,ELL3,NR0B1,CDKL3,STK4,STK3,CDKL5,TPTE,ELL2,MAP4K3,ADRM1,MAP4K4,MAP4K5,CDKL1,FZR1,SYVN1,MAP4K2,SOX5,ELK1,MAP4K1,CHIT1,B3GNT8,B3GNT5,BTF3,ERO1L,SKIL,IVL,UST,INTS12,RNPS1,GSC2,INTS10,PSMC5,GCM1,KCTD13,SMC1A,TIMM50,BUD31,ACVR1B,MCM7,POU5F1,POMT1,SETMAR,ELP4,ELP3,ELP2,REV1,CCDC88A,CCDC88C,LDB1,MCM2,MCM3,MCM5,MAGT1,SBF1,BTG2,NRL,ING5,ING4,ING2,MGMT,POU1F1,TCF7L2,NPAS2,HAND1,HAND2,TINF2,APEX1,ERF,MSH6,ERG,MSH3,MSH2,DTX1,MSH5,MSH4,CBY1,GSG2,SPRR1A,SPRR1B,TSSK2,TSSK4,TSSK3,TSSK6,F2R +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html GYPC,TUSC3,FUT8,ALG2,KEL,TSPAN7,ST8SIA3,ALG6,ST8SIA2,ALG8,STT3B,STT3A,MPDU1,RPN1,GAL3ST1,MGAT4B,MGAT4A,LIPA,MAN1A2,ALK,MAN1C1,CD37,MAGT1,ST8SIA4,LIPC,DOLPP1,ALG12,TM4SF4,TM4SF5 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC38A3,SLC16A10,SLC7A8,SLC7A9,SLC7A5,SLC1A4,SLC1A5,SLC1A2,SLC1A3,SERINC1,SLC1A6,SLC25A22,ARL6IP5,SLC43A1,SLC1A1,CLN3,PRAF2,PDPN,SLC3A2,SLC7A10,SLC3A1,SLC25A12,SLC25A13,SLC6A7,CTNS,SLC25A15 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html INSL4,PPARD,CSH2,PZP,CRHBP,PSG10,SCGB1A1,PSG11,LNPEP,RLN2,BYSL,PSG3,PSG1,PTHLH,PSG9,PSG8,ADM,PSG7,PSG6,PSG5,CLIC5,PSG4,GHRL,FSHB,EPYC,PRLHR,TFCP2L1,OXTR,SPRR2G,SPRR2F,FCGRT,SPRR2E,TAC3,ADCYAP1,SPRR2C,SPRR2D,TRO,SPRR2A,AGT,SPRR2B,OVGP1,FLT1,TEAD3,SOD1,COL16A1,RPL29,PRLR,SFRP4,CRH,GHSR,HPGD,LIPE +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html LEPR,EPM2A,GYG2,LEP,ADRB3,PYGM,GCK,GSK3B,GFPT1,GFPT2,GAA,GYS2,DYRK2,TREH,PYGB +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html RSF1,NAP1L1,SIRT4,SIRT5,TNP1,NAP1L3,NAP1L2,NAP1L4,SIRT1,HDAC5,SET,SMARCA5,CHAF1A,ASF1A,CHAF1B,HELLS +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html MDFI,FAM3D,CRYAA,NFKBIE,CRYAB,NF1,STIM2,ARF6,NLRP3,MXI1,NFKBIL1,TRAT1,PEA15,NFKBIL2,PACSIN3,RAC1,YRDC,FAF1,RSC1A1,BARD1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ELF1,ELF4,FOXO1,FOXO3,GLI2,MED21,ZBTB38,GLI1,EPC1,MKL2,SUPT5H,MYO6,CCNH,RXRA,TP53,MED12,MED14,CDK7,ARNTL,MED13,ELL3,PPARGC1B,GTF2H1,PRPF6,NRIP1,MED6,INHBA,HIF1A,HNF4A,ZMIZ2,MED17,NCOA6,TFAP2B,CLOCK,MED1,GLIS3,CRTC1,GLIS1,NUFIP1,ELK1,PLAGL1,FOXH1,TNFRSF1A,NPAS2,SQSTM1,SUPT4H1,MAML3,ERCC3,RUNX1,ERCC2,FOXD3,IL4,UTF1,EPAS1,MAML1,MAML2,SMAD3,SMAD2,ATF6,MNAT1,ATF4,SP1,THRAP3,RBM14,BMP6 +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html RDH12,ALDH8A1,RDH11,RARRES2,DHRS3,NPC2,MVK,IDI1,PDSS1,PDSS2,RETSAT +PWCOMMONS SPERMATID DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DEVELOPMENT.html CSNK2A2,NME5,H1FNT,HSPA2,CEP57,SYCP3,SPAG6,DDX25,TNP1,TSSK6 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html CDK5R1,GRIK1,GRIK2,GRIK3,GRIK4,GRIN2A,GRIA3,GRIA4,HOMER1,HOMER2,GRM5,GRM4,GRIN2B,HOMER3,GRIN2C,GRM6,GRID2 +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html TRNT1,MFN2,TSPO,TIMM17A,TIMM17B,C3ORF31,TOMM22,MIPEP,TIMM23,TIMM44,TOMM34 +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html KCNMB4,BCL10,GCLC,LMO4,KEL,VANGL2,CELSR1,GLI2,SOD1,TINAG,GCLM,SHH,KCNMB2,CALCA,NOTCH4 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html CARD8,CRTAM,CADM1,CIDEA,NLRP3,PYDC1,FOXP3,NLRP2,APOA2,NOD2,APOA1,INS,PYCARD,NLRP12,GLMN,SRGN +PWCOMMONS MACROMOLECULAR COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_ASSEMBLY.html SYT1,OXA1L,EIF2C1,MED24,MED23,CD2AP,SFRS6,PICALM,SFRS5,APOE,KIFAP3,EIF1AX,SFRS8,MED26,MED27,SFRS9,SH3BGR,FAS,EIF2B2,EIF2B3,EIF2B4,SYK,EIF2B5,IKBKAP,GJD3,CD3E,MATN1,MED12,EIF2S3,MED14,CD40,MED13,SFRS1,PPARGC1A,BOLL,PTRF,MED16,RPS14,MED17,ATPIF1,AMFR,LAMC1,SIP1,SURF1,EIF2AK3,EIF2AK4,DAG1,HFE,MTIF2,RIMS1,MTIF3,PXN,CD74,CDC42EP2,UPK1A,CDA,AGRN,MLL,PAIP2,TGFBR1,PAIP1,CREBBP,SMAD4,SMAD3,EPRS,SEPT11,CHAF1A,CHAF1B,COX11,CRNKL1,WASF3,COX10,NAP1L1,GJA1,TP63,NAP1L3,EIF2A,NAP1L2,GJA4,NAP1L4,GJA5,NOD2,NOD1,NUBP1,ZFYVE9,IL1RAP,GPX3,TRPV5,COX18,FANCA,COX15,FANCC,ATF7IP,SNAPC5,PRPF31,SRPK2,BRF1,APCS,VIL1,TP53,SF1,EIF1B,WAS,THEG,RAD51,MED7,MED4,GTF2I,EIF4A2,NUP205,MAP3K11,MED1,FMOD,PARD3,REPS2,APC2,NFS1,PML,AASS,HPRT1,CLDN14,SF3B3,GJC1,LPXN,SET,CCT6B,DGKD,PTK2B,USP39,PEX14,DAZL,PEX13,WIPF1,APBA1,DAZ1,SF3A2,EIF2B1,SF3A1,MIS12,SF3A3,MNAT1,TJP1,TCEB2,PBX1,PTCH2,PBX3,PBX4,TXNL4A,OCLN,CAPZA2,TSPAN4,EIF5,CAPZA1,SNRPD1,EIF5A,SNRPD2,SLC7A9,TBP,SLC7A6,TAPBP,VCL,SLC7A7,APOA4,GTF2E1,GTF2E2,EIF1,DDX20,INSR,BCL10,SCUBE3,DARS,SCUBE1,TAZ,PICK1,ACTN2,ADRM1,SMARCA5,HSPB1,SLU7,VAMP3,SEPT7,SEPT9,TRAF1,STK16,TRAF2,HMGB1,EID2,ANLN,LLGL1,SRC,EIF3C,EIF3D,EIF3A,EIF3B,EIF3G,EIF3H,EIF3E,EIF3F,NPM1,EIF3I,EIF3J,ASF1A,TAF2,PARD6B,TAF5,MALT1,LIN7A,EIF4B,PPIH,GTF2F1,EIF4H,GTF2F2,MYH11,E2F2,TLN1,E2F3,RSF1,TLN2,DICER1,SKAP2,NDUFS7,CDC42,NDUFS5,RANBP9,NDUFS4,MAZ,RPS3A,GOPC,NDUFS8,DLG4,AKR1C1,ZW10,IRAK1,PPP2R1A,ALDH5A1,CCDC88C,CDK9,CDK7,SLC9A3R1,NLRP3,HMGA1,SLC9A3R2,STOM,EIF4G2,ADRB2,EIF4G3,TPPP,NCOA6,MDM2,MDM4,WASL,KPNA3,TCAP,HCFC1,PAIP2B,IGF1R,CD9,TGM3,SFRS2IP,GTF3C4,APC,SCO1,GEMIN5,IL2RB,MUC20,BCS1L,TUBGCP2,ATXN2,VWF,MED30,TMEM48,PRLR,BAX,THRAP3,MAPK8IP2,FAF1 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html ORAI1,CCL8,HFE,CACNB3,CACNB4,SLC11A2,SLN,NMUR1,NMUR2,TRPV5,SLC30A5,CHRNA7,SLC39A1,TRPC1,CACNA2D1,TRPC4,SLC8A1,TRPC3,TRPC5,STIM2,STIM1,TRPM2,NPY,ATP2C1,ATP2A3,RYR3,PLN,ATP2A1,RYR1,CACNA1D,SLC40A1,CSN2 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html RP1,UNC119,TRPC3,TACR1,TAC1,OPN1SW,NR2E3,ABCA4,SAG,PITPNM1,PDE6B,TIMELESS,GRM6,NPFFR2,PDC,CACNA1F,OPN4,RHO,GRK1 +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html KLK8,IL8,CX3CL1,SLIT2,AHSG,IL20,LEP,CDH13,TNFRSF1A,NPY,CARTPT,GHRL,CHRNA7,GHSR,SCG2 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html MOCOS,TSPO,ALAD,ALDH1L1,COX10,PGD,ACOT2,ACOT1,PPOX,ACOT4,PDHB,ACOT9,GPX1,MTHFD2,ALAS1,ALAS2,CPOX,ACOT12,COX15,FECH,ACO2,COQ7,UGT1A1,COQ3,ISCU,PGLS,COQ2,NNT,NFE2L1,ME1,COASY,GCLC,NFS1,UROS,PPT1,GCLM,PDSS1,PDSS2,GLRX2,C16ORF7,GSTA1,MOCS2,FTCD,ACLY,SOD1,OXSM,SDHA,BLVRA,SDHB,GLYAT,MLYCD,SDHC,SDHD,CTNS +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html STX1A,FAM3D,INHA,IL11,OSM,LIF,INHBB,INHBA,GCK,GHRH,CARTPT,GHRL,SCG5,SNAP25 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC38A3,AQP9,SLC22A12,SLC16A10,SLC7A8,SLC7A9,SLC7A5,SLC1A4,SLC1A5,SLC1A2,SLC16A1,SLC1A3,AKR1C4,SLC1A6,SERINC1,SLC25A22,SLC1A7,SLC25A1,SLC22A6,SLC43A1,SLC1A1,ARL6IP5,AKR1C1,CLN3,PRAF2,PDPN,SLC3A2,SLC7A10,SLC3A1,SLC16A3,SLC25A12,SLC16A2,SLC16A5,SLC16A4,SLC25A13,SLC16A7,SLC6A7,SLC16A6,SLC25A10,SLC16A8,CTNS,SLC25A15 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html ITLN1,IL31RA,ANG,CLCF1,TDGF1,EGF,EGFR,BMP4,BCL10,IL3,IL5,IL29,LYN,HCLS1,IL20,CARD14,CCND1,EREG,CD80,CCND3,AKTIP,CCND2,CD81,IL12A,GLMN,TNK2 +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html KHDRBS1,ANAPC5,ANAPC4,BIRC5,ANAPC10,TPD52L1,LATS1,CDK2,CDKN1A,CDKN2A,DDX11,CDKN2B,USH1C +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html IL4,PTPRC,CRTAM,CADM1,ELF4,CD3E,IL18,IL27,CD276,IL21,NCK2,NCK1,SFTPD,GLMN,CD24,IL12B,ICOSLG,EBI3,CD28 +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html CGB,USP9X,SPO11,BMP15,FSHR,BCL2L10,PARN,EREG,DYNLL1,NPM2,LEFTY2,GDF9,BMPR1B,DMC1,FSHB,TOB2,AXIN1 +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html ALDH5A1,TP53,TP63,AASS,ACTN2,HPRT1,IGF1R,APOE,GPX3,TRPV5,TGM3,CDA,ATPIF1,INSR +PWCOMMONS REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html LYN,NF2,IL29,CLCF1,HCLS1,SOCS1,IL12A,IL31RA,IL22RA2,IL20 +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html ACADVL,PPARA,CPT1B,PPARD,ECH1,ACADM,ACADS,ECHS1,BDH2,CPT1A,HADHB +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CADM1,BCAR1,IL18,TNFSF13,SART1,TGFB1,TLR8,TGFB2,MAP3K7,CFHR1,CD47,IFNK,EBI3,CRTAM,SPACA3,IL29,CD3E,SLA2,NFAM1,SOCS5,IL21,TRAT1,THY1,UBE2N,NCK2,SIRPG,LAT2,EREG,NCK1,LCK,IL12A,IL12B,ICOSLG,MBL2,TRAF2,MIA3,KRT1,ZAP70,CD24,C2,TRAF6,CD28,IL4,PTPRC,IL7,CD276,MALT1,CD1D,FYN,IKBKG,CD79A +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html RTN4,FGD2,FGD1,KLK8,TAOK2,LRRC4C,MYH9,SLIT2,THY1,AMIGO1,CDC42,CDC42EP2,YWHAH,CDC42EP1,ROBO1,APOE,MAPT,ROBO2,FGD5,CDC42EP4,FGD6,FGD3,CDC42EP5,FGD4 +PWCOMMONS FOCAL ADHESION FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/FOCAL_ADHESION_FORMATION.html ACVRL1,TSC1,TAOK2,SORBS1,ACTN1,TESK2,ACTN2,ACTN3,PTEN,THY1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SEPT5,SYT1,SNCAIP,NRBP1,LMAN2L,USE1,COPB2,GBF1,NMUR1,COPB1,NMUR2,AP3B2,RAB26,ZW10,SCAMP1,SCAMP3,SCAMP2,BAIAP3,RPH3AL,VTI1B,OPTN,ERGIC1,ERGIC2,ERGIC3,KIF1C,GRM4,COPG2,KRT18,SCIN,RAB14,CARTPT,VAMP3,STEAP2,COPE,PKDREJ,AKAP3,SNAP29,RAB3A,KCNMB4,CPLX2,CCL3,CPLX1,STX7,NAPG,COPZ1,BET1,RER1,RABEPK,CCL8,NAPA,ARFGEF2,LMAN1,CCL5,RIMS1,ARFGEF1,HRH3,STX18,SYN3,CKLF,STX16,SEC22A,TMED10,SEC22B,DOPEY2,SEC22C,EXOC5,SNAP23,DOPEY1,RAB2A,SCRN1,NLGN1,SNAPIN,MON2,LIN7A,COG3,CADPS,COG7,SYTL4,GOSR2,GOSR1,YKT6,COG2 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX6,PEX3,AGXT,PEX7,FIS1,PEX1,PEX19,PEX16,PEX26,VPS4B,PEX14,ABCD3,PEX13,PEX12,PEX10 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html MSH5,MRE11A,MSH4,LIG3,CHEK1,SPO11,RAD52,SYCP1,RAD50,SC65,ATM,RAD51,RAD1,REC8,RAD21,RAD51L1,STAG3,RAD54B,RAD51L3,DMC1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SGMS2,GBGT1,SGMS1,LASS5,APOA1,LCAT,ST3GAL6,PLA1A,NSMAF,APOM,SGPL1,SPTLC1,UGCG,TAZ,CHPT1,PITPNM3,PI4K2A,NEU3,PLA2G2E,PLA2G2D,ENPP7,ST8SIA1,APOC2,ST8SIA3,PPT1,PLAA,SERINC2,SERINC5,LPCAT1,B3GNT5,SERINC1,PEMT,PCYT1B,B4GALT4,LPL,SPHK1,SMG1,ST8SIA5,LASS1,PLA2G4C,PLA2G4B,IMPA1,PIP5K1A,PTEN,ASAH1,ASAH2,PIGK,ST6GALNAC6,ST6GALNAC4,PIGF,PIGG,GPX4,PIGH,PIGB,PIGC,CETP,PCYT2,PLCB2,AGPAT2,AGPAT1,PIGA,CLN3,PIGZ,PIGY,PIK3C2A,PIGV,PI4KA,PIGU,PIGT,LGALS13,PIGS,PI4KB,PIGO,PRDX6,CD81,PLA2G6,PLA2G3,CLN8,PLA2G5,CLN6,PGS1,GPAA1,DGKE,ETNK1,PLCD1,CERK,PIK3R1,B4GALNT1,PSAP,FADS1,LARGE,GLA,DPM1,DPM2,DPM3,SMPD4,SMPD3,SMPD2 +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html PPARA,NPC2,APOA5,EDF1,CIDEA,ANGPTL3,SOD1,PPARGC1A,STUB1,BRCA1,NR5A1,BMP6 +PWCOMMONS REGULATION OF MOLECULAR FUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MOLECULAR_FUNCTION.html ALS2,RAB3GAP2,XRCC4,ADORA3,ADCY7,RAB3GAP1,EDN2,MAP3K7,MAP3K6,BAK1,MAP3K5,MAP3K4,DIRAS3,MAP3K9,ABRA,PSENEN,CHRNA7,GNG3,ANAPC2,DBNL,GTPBP4,C5AR1,PIK3CB,KIAA1804,THY1,BCL2L10,CRHR1,NME1,IFNB1,SAPS3,CCR2,F2,ATPIF1,ACR,CDK5R1,CDK5R2,GNAI3,GNAI2,PTPLAD1,ERBB2,CHEK1,CDC37,ADCYAP1,SERINC2,ADRB3,SERINC5,HEXIM2,HEXIM1,SERINC1,DUSP16,FBXO5,DIABLO,HIP1,MDFI,TAOK2,MAP2K3,DUSP22,SMAD3,SMAD2,TPD52L1,CBLC,RGS3,RGS4,AVPR1B,AVPR1A,CCNT2,CCNT1,DAXX,PTEN,LATS1,LATS2,CAMKK2,EDNRA,CCNE2,EDNRB,GPX1,NOD2,NMUR1,NMUR2,TGFA,CAP1,FGF2,SERTAD1,DHCR24,CDC6,CCNK,AIFM3,CCKBR,HERC5,TP53,NFAM1,ECSIT,LDLRAP1,FLNA,SIGIRR,GTF2H1,JMY,CARD10,CARD11,NCK2,GRM4,PROK2,CCND1,GRM3,GRM2,CCND3,EREG,GNAQ,PSEN1,LAX1,GRM8,CCND2,GRM7,GADD45G,GIPR,PSEN2,MAP3K10,CAND1,GNAS,GADD45B,MAP3K13,GADD45A,ZER1,MAP3K11,AVPR2,PARD3,C5,FPR1,BCCIP,SFN,AZU1,SUMO1,BCL2,BCL3,PEX14,CD24,CAP2,BIRC5,CRIPAK,CDKN3,SOD1,STAT1,MNAT1,DUSP2,P2RY11,GLA,EPGN,IFT57,NARFL,PPP2R4,DUSP9,DUSP8,DUSP6,GNA15,ZAK,STK36,TNFSF15,PKMYT1,PMAIP1,MBIP,TLR6,GHRHR,TGFB1,NLRC4,APOA2,NLRC3,CDKN2A,GALR1,CDKN2B,CASP8AP2,MDFIC,CDKN2C,GALR3,CDKN2D,TDGF1,APOA5,SPRED2,RGN,SPRED1,EGFR,BCL10,RBL2,MADD,RELA,PICK1,RBL1,HBXIP,TNNT2,MAP4K5,PLCE1,EP300,CARTPT,EDF1,EDA,ERC1,GLP1R,FGD2,FGD1,TRAF2,ADORA2B,DRD5,MAP4K1,APOC2,UBE2V1,PYDC1,CCNG1,NPM1,MTCH1,ADRA2A,ADRA2C,TRAF7,EGF,TRAF6,FGD5,ANGPTL3,FGD6,FGD3,ANGPTL4,FGD4,CARD8,CREBZF,PIF1,MALT1,FOXP3,ATP7A,CDKN1C,NOSIP,TSC1,VCP,AKTIP,BBC3,LTB4R2,IKBKB,ABL1,ABL2,DNAJB6,IFI6,RSF1,C13ORF15,GABBR1,GABBR2,PRDX3,DPH3,PDCD4,PAK2,CASP9,ANG,PRMT8,CXCR4,CDK5RAP3,SHC1,PAK1,CDK5RAP1,PLCB2,IRAK1,CCDC88A,RALBP1,CYCS,PKN1,ARHGAP27,CDK7,RB1,NLRP3,NLRP2,UBE2N,PRKCQ,TARBP2,ADRB2,ADRB1,HIPK3,CHRM1,LCK,CD81,ERN1,GHRL,COMMD7,GAP43,PRKD3,CALCR,CKS1B,TNF,APH1A,TRIB3,EGLN1,TRIB2,TRIB1,CALCA,MOAP1,TSPYL2,MAP3K2,PYCARD,CD4,PPAP2A,APEX1,CAMK2A,APC,GPS1,COL4A3,PTPRC,FOXL2,CEBPG,NF1,EDA2R,CDC25C,CDC25A,GPS2,NCSTN,ID2,PRLR,ID1,BAX,CKS2,ID3,APAF1,TSSK4,F2R +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html CDC6,NBN,GTPBP4,ENPP7,CCDC88A,NF2,GMNN,WRNIP1,TIPIN,S100A11,RAD9A,ATR,GLI2,CDK2,CDT1,GLI1,TSPYL2,EREG,RAD17 +PWCOMMONS SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SIGNAL_TRANSDUCTION.html IL9R,OSMR,BTK,MAP3K7,MAP3K6,MAP3K5,MAP3K4,DIRAS3,MAP3K9,OGT,QRFP,ROS1,BSG,GEM,MARK4,MARK1,BRAP,MARK2,THY1,ROR1,ROR2,EIF2AK3,OSTF1,NFKBIB,DUSP10,FOXH1,DUSP16,GUCY2F,TAOK2,TAOK3,DUSP22,ATR,GUCY2C,ATM,GAS6,GUCY2D,GH1,CDC42BPG,RGS1,RGS2,RGS3,RGS4,RGS5,CDC42BPA,RGS9,CDC42BPB,SIRPB1,IL4R,TICAM1,TICAM2,ANP32A,GKAP1,BRD8,AVP,AIFM3,GIP,AIFM1,IL6R,ELMO1,ARHGEF11,EREG,RIPK1,TXN,FOXC2,FMOD,APC2,ECEL1,MKNK2,MKNK1,TRIM13,IL7R,SORBS1,CSNK2B,AXL,IGF1,CRIPAK,IGF2,DUSP4,DUSP2,CSNK1D,CSNK1E,GSK3B,LRP6,LRP8,DUSP9,DUSP8,HPGD,DUSP6,GNA13,MTSS1,GNA14,MPZL1,GNA15,GRIK1,GRIK2,GRIK3,GNA11,GRIK4,GNA12,TGFB3,NR2E3,IL15,TGFB1,MARCO,NLRC4,NLRC3,CDKN2A,FNTA,CDKN2B,GALR1,MDFIC,GALR3,GALR2,IL15RA,IL1B,FRS3,FRS2,GPR89A,NET1,BCL10,IL29,BAIAP2,FADD,IL20,GABRR2,GABRR1,ARRB1,MIB2,CCL1,ARHGDIG,CCL3,CCL2,IFITM1,ADORA2B,BMPR2,PTK7,CCL8,UBE2V1,CXXC5,CCL5,CCL4,CCL7,IL12RB2,PTK2,IL12RB1,ADRA2A,ADRA2C,ADRA2B,ARHGDIA,ARHGDIB,UCN,CCM2,FIBP,TRAF3IP2,EPS15,ATF6,CDKN1C,ADRA1B,TBXA2R,ADRA1A,ADRA1D,IMPA2,IMPA1,HINT1,LRDD,GPR109B,GABBR1,PINK1,GABBR2,PRMT1,PRMT2,PKN3,TIE1,APLN,NRG2,SLA2,PKN2,PKN1,SH2D3C,SH2D3A,TNFSF13B,ERN1,MAPRE2,NRGN,CCK,BRSK1,TMED4,RGMB,TMED1,CD2,CALML5,SECTM1,CBL,BAD,FRZB,GCG,BAX,FAF1,EDN3,IL6ST,EDN2,GPR123,STAT5A,STAT5B,EDN1,LHCGR,CD47,APOE,WNK4,GRID2,TXNL1,PLD2,PLD1,C5AR1,CD3G,CD3E,WNK1,WNK3,RAD9A,CD40,WNK2,TANK,CCR9,VEGFB,VEGFC,CCR8,CCR6,CCR5,CAMK4,UBR5,CCR3,CD33,CCR2,VEGFA,CAMK1,PIAS1,AMFR,NEK6,ACR,CDK5R1,PTPLAD1,HUS1,STK17B,MYO9B,CD70,STK17A,GPR143,CD74,PLAA,MAML3,NR1H4,TYROBP,MDFI,CNKSR1,ABR,TP53BP2,IL1RL1,IL1RL2,MAML1,MAML2,NDFIP1,CIDEB,CIDEA,NDFIP2,OXSR1,KDR,NR1I3,NR1I2,CD59,PLAU,NRP1,IL27RA,GJA1,PTEN,FLT3LG,PDPK1,GPR173,GPR176,CD160,NFAM1,CD164,SIGIRR,AMBP,ADM,MAP3K10,MAP3K13,MAP3K12,MAP3K11,CXCL1,BID,AVPR2,PARD3,CXCL5,OPN1LW,OXT,CCR1,CXCL9,TFG,KIT,CXCL6,IL10RB,FCGR1A,AGT,VWC2,CD24,CD27,CD28,FYB,HCLS1,LRRN2,OPN1MW,GRIA3,GRIA4,PTGFR,CD19,GRIA2,FCGR2B,GRIA1,FYN,EEF1E1,PTCH1,BIK,CD14,NRTN,GABRB3,GABRB2,PDGFA,GABRB1,FOXO4,SCTR,PTGIR,GNL1,CSNK1G2,CNGA3,FOXN3,IGSF6,TRIM38,IGSF1,OPHN1,CSNK1G3,ERC1,RAD17,PPP5C,FGFR1,FGFR4,FGFR3,BLK,ARFRP1,CYTL1,NEDD9,TRH,DEFB1,CSF1R,CFLAR,CARD8,GABRA2,CARD9,GABRA1,GABRA4,GABRA3,GABRA6,OMP,GABRA5,BRCA1,PPIC,CORT,PIP4K2B,IL22RA2,DDR2,CXCR5,CXCR4,ANG,PCBP4,CXCR6,SHC1,SHC3,GABRG2,RALBP1,ARHGAP27,ARHGAP29,FSHR,OR10J1,CD3EAP,CD83,ITGB1BP1,CFL1,CD81,ITGB1BP2,FSHB,TNF,TNFRSF8,CEP57,MAP3K3,MAP3K2,CAMK2B,PPAP2A,STAMBP,IL2RB,FOXL2,IL2RA,PARK7,THRAP3,PECAM1,BRE,BMPR1A,ALS2,RPL17,LTBP2,PGF,PGR,GIT2,GNG3,GNG4,DDAH2,DDAH1,MAP2K7,CCNA2,MAP2K6,GNG7,MAP2K5,PTPRJ,TYRO3,TNIK,PTPRF,PTPRG,PTPRT,PTPRU,BCL2L10,IFNB1,ADAMTS1,MST1R,IRAK1BP1,GNAI3,GNAI2,RUNDC3A,PPT1,IFNA2,MUSK,CDC42EP3,GIT1,MAP2K1,KLF10,MAP2K3,TGFBR1,PHB,MAP2K4,SPHK1,NPY5R,APOL3,PENK,AVPR1B,AVPR1A,HGS,TGFBR3,CHRND,TNK2,CHRNE,CHRNG,GNAZ,GPR85,GLRA1,TRPV1,GLRA2,AP3S1,NOD2,NOD1,TRPV4,GUCY1A3,SRPK2,ARHGEF7,FLNB,FLNA,SRPK1,GNAL,NCK2,MAST1,GNAQ,GNB2,GNB1,XPR1,GIPR,GNAS,GUCY1B3,GNB3,RAPGEFL1,CLOCK,FFAR3,CREM,NPY2R,FFAR2,FFAR1,PML,GPR65,GNG11,GNG12,GPR68,CCL24,CCL25,CCL22,CCL23,CCL20,DAPP1,MAS1,CCBP2,LIMD1,CAPN5,GPR75,CCL19,NPY1R,RICTOR,CCL15,SELS,CCL18,CCL17,CCL11,RPS6KA5,RPS6KA6,CCL13,RPS6KA3,RPS6KA4,RPS6KA1,RPS6KA2,GNG10,SLC44A2,IQGAP2,RPS6KB2,RRAD,RPS6KB1,RCVRN,CNOT7,ZIC1,IQGAP1,APOA1,MIER1,GPR45,GPR44,GPR42,RRAS,EGFR,GOLT1B,RPS6KC1,ARID1A,NTSR1,GPR55,GPR50,GPR52,HMGB1,TRAF2,DRD1,DRD3,DRD2,MRAS,DRD5,DRD4,CDC42SE1,CX3CL1,PYDC1,GPR22,DOCK1,GPR21,GPR27,TEK,GPR25,APOC3,TRAF7,GPR20,TRAF6,TRAF5,TRAF4,TRAF3,TEC,VAV3,EPAS1,TNFRSF13B,TRADD,GPR32,LAT,GPR35,GPR34,PLK2,GPR37,TSC1,CDC42SE2,GPR39,CDKN2AIP,MTNR1B,RHBDL1,XCL1,XCL2,GPR31,MTNR1A,LEPR,DUOX2,DUOX1,PRDX4,DEK,PIP5K1A,CCRL2,CLCF1,RHOA,RHOB,RHOC,RHOD,RHOG,RHOH,CCRL1,SIT1,GPR19,LIMK1,OTX2,ESR1,NUP85,ESR2,IPO8,HUNK,CHRM5,CHRM4,CHRM3,IPO7,CHRM2,CHRM1,LCK,GPR15,INPP4B,INPP4A,GPR17,TSHR,GPR12,TTRAP,APH1A,PPM1A,NR3C2,KITLG,PF4,TSHB,NR3C1,TRAIP,CALCOCO1,TAC3,SH2B2,INPP5D,GUCA1B,GUCA1C,FLT3,FLT4,DRG2,SMC3,PDC,TBL1X,CGA,S100A6,CGB,VAPA,ADCY7,VAPB,SHH,SHB,LILRA1,LILRA2,LILRA3,GAB1,CLEC4A,CHRNA4,RAPGEF4,CHRNA7,CHRNA6,CHRNA1,RAPGEF1,CHRNA3,CHRNA2,EFNB3,STRN4,HTR4,RIC8B,LILRB2,LILRB5,LILRB3,HTR7,LILRB4,HTR6,CX3CR1,PDGFRA,PDGFRB,SRP72,CLEC5A,TRHR,AKAP12,ADRBK2,ADRBK1,AKAP10,AKAP11,PXN,AGRN,AGRP,SMAD7,LGALS1,SMAD5,SMAD4,SMAD3,TRIO,SMAD2,SMAD1,TAX1BP3,ECM1,LGALS9,NUP62,CHRNB4,RHEB,CHRNB3,CHRNB2,CLEC7A,CHRNB1,IL5RA,PYY,LHB,PRKRIR,CCKAR,BCAR1,FASTK,COPS3,CAMKK2,ASGR2,TNFRSF11B,TNFRSF11A,NR2F6,NR2F2,XCR1,NR2F1,ADAM11,ADAM10,LTBR,CCKBR,RXFP3,CDS1,TNFRSF10A,CLEC1A,CTNNBIP1,MED4,TNFRSF10C,TNFRSF10B,LAX1,TNFRSF10D,GTF2I,GADD45G,GADD45B,CLEC1B,MED1,LANCL1,SFN,SQSTM1,NPFFR2,CLEC2D,CHP,CC2D1A,IL18R1,TRHDE,MAPK11,MAPK10,ITPR3,ITPR2,ERBB2IP,MAPK12,MAPK13,IFT57,MAPK14,CALM3,OPN3,BCAR3,FGF18,CRABP1,FGF14,FGF17,CRABP2,FGF16,FGF11,FGF13,ITPKB,ANKRD1,FGF12,ITPKA,DMPK,GP6,ITPK1,PAG1,MYO6,SOCS2,SOCS3,MADD,SOCS1,SOCS6,TNFRSF17,TNFRSF14,SOCS5,FGF21,FGF20,TRAT1,PKD2L1,PTHLH,LAT2,RIPK3,RIPK2,CARTPT,KALRN,KIR2DL4,SRI,DERL2,DERL1,SRF,DERL3,SRC,GMIP,CNR1,CNR2,GML,AXIN2,RNF14,PTPN6,PTPN1,SST,FASLG,AKT1,TAAR8,ARHGAP4,TAAR9,TAAR6,ARHGAP5,PAK2,PAK4,ARHGAP1,TAAR1,CNTNAP1,PAK1,RAMP1,IFNGR2,TAAR5,LTB,PRL,AKT3,IFNGR1,LTA,KHDRBS1,PIGU,MINK1,NCR2,DAPK2,DAPK3,ECT2,NCR1,DAPK1,GRP,CRKL,HIPK2,CALCR,TNFRSF25,CTNND2,CALCA,TNFRSF1A,CALCB,UTP11L,MOAP1,PTH,TNFRSF18,PTN,GP1BA,PTPRC,PTPRD,LTK,GMFB,OR3A2,CRH,CRK,TIAF1,HRAS,KLRC2,CRHBP,MED24,AGTR1,MC1R,GRIN2B,GRIN2C,LTB4R,CCR10,KLRD1,KLRB1,PIK3CG,SH3GL3,RREB1,PIK3CB,LIFR,GRIN2A,MED12,MED14,MED13,RAD1,SSTR4,MAPK1,SSTR5,SSTR2,SSTR3,MAPK6,SSTR1,MED16,MED17,F2,MC2R,MAPK9,MADCAM1,MAPK8,MAPK7,KLRC1,SH3GL2,SH3GL1,PPYR1,ARF6,BCL2L1,ARFGEF2,ALCAM,IL17C,RAC2,INS,RAC1,IL17F,KLRF1,NTF3,COL16A1,VDAC1,SMURF1,OPRM1,FGF6,FGF5,SLC20A1,FGF9,TP63,BNIP3,DAXX,ASAH2,NMUR1,NMUR2,CEACAM6,MC5R,TMEM101,IL13RA1,FGF2,FGF3,FGF4,RAP2B,RAP2A,AR,LYN,NPBWR1,NPBWR2,TP53,CLIC2,PI4KB,CLIC1,CARD10,INHBA,SERPINB9,DOK1,DOK2,KLRG1,CLIC3,IL12A,EEF1D,C3,OPRK1,C5,FPR1,ABI1,MC3R,WNT8B,PDK1,IL6,IL8,OPRL1,APPL1,APPL2,TP73,ACCN2,CDH13,ACCN3,EPGN,MC4R,HBS1L,CXCL11,CXCL12,CXCL10,CSNK2A2,CSNK2A1,TDGF1,RALB,RALA,STAP1,BST2,DFFA,DFFB,RELA,STMN1,EDA,FGD2,FGD1,STYXL1,C3AR1,LITAF,MAPKAPK5,MAPKAPK3,ABCA1,MAPKAPK2,P2RY6,PEG10,P2RY4,P2RY2,P2RY1,FGD5,EGF,RAB6C,FGD6,FGD3,GABRQ,FGD4,GABRD,GABRE,EFS,NR4A1,P2RX5,P2RX4,IKBKE,P2RX7,CXCL14,P2RX1,P2RX3,IKBKG,ABL1,ABL2,PTGES3,SKAP2,SKAP1,WISP2,CASP3,WISP1,CASP9,WISP3,IAPP,CASP7,CASP8,CASP1,CASP2,PTGER1,PTGER2,PTGER3,IL18RAP,PTGER4,CYCS,IFI16,NEK11,LEFTY1,MCC,RAGE,FKBP8,STUB1,HRH1,HRH3,HRH2,SLC35B2,LEFTY2,GPSM2,KLRA1,NFATC1,AMHR2,TNFSF4,MAL,TNFSF9,TNFSF8,NCSTN,PEX11A,ICK,MED30,GDF10,GDF15,OPRD1,GDF5,TMEM11,PRKG2,PRKG1,MYD88,KIFAP3,IFNG,PLA2G1B,ABRA,PSENEN,GDF9,IFNK,NSMAF,GTPBP2,DBNL,GTPBP1,RAN,OPTN,PPARGC1B,FARP2,RND2,LETM1,PRDM4,ATP2C1,TACSTD2,TGFBRAP1,EXT1,EXT2,LALBA,CALY,AFAP1L2,BDKRB2,EPHB3,EPHB1,HIP1,BLNK,MLN,TPD52L1,EPHA1,AGER,EPHA2,EPHA3,NTRK3,EPHA4,NTRK1,NTRK2,GRK6,RIT1,GRK4,GRK5,UTS2R,RIT2,GHSR,GRK1,ZBTB33,ACVRL1,OR52A1,PPARG,GLI2,KCNIP2,KCNIP1,GLI3,ARL2BP,KCNIP3,GLI1,TRIAP1,GPX1,TGFA,CAP1,DEDD2,GZMA,LY96,ARTN,GZMB,GRM1,SCAP,GRM5,GRM4,PROK2,GRM3,ZDHHC17,GRM2,GRM8,ZDHHC13,GRM7,GRM6,RIN1,CHL1,CAPS,CARHSP1,YWHAZ,RAP1GAP,PPFIA1,FKBP1A,MIF,AZU1,SMAD5OS,LPXN,LY6E,ARR3,BCL3,PRKAA1,PRKAA2,MLLT4,GDI1,GDI2,CAP2,NPR2,BIRC3,SOD1,YWHAE,BIRC2,YWHAH,C7ORF16,VLDLR,F2RL3,CASR,F2RL1,PMAIP1,MBIP,VIPR1,VIPR2,GDNF,GHRHR,TMEM9B,MS4A2,GLP2R,PRKACB,MX1,CASKIN1,PICK1,PRKAB2,PRKAB1,AKAP7,AKAP8,GLP1R,AKAP4,GRAP,SNX6,GRB2,RRAGA,RRAGB,RRAGC,IRAK3,CORO2A,NPM1,MTCH1,ATRIP,STK38L,GNRH1,GNRH2,CORO1C,ULK1,LTB4R2,RAP1A,CD79A,GRB7,IFI6,PRKAG3,INSL4,PRKAG1,GNRHR,BCAM,RANBP1,ZYX,CHUK,NPFF,PILRA,IRAK2,IRAK1,G3BP1,ADIPOR2,ADIPOR1,OXGR1,MFN2,UBE2N,GHRH,GHRL,COMMD7,PRKD3,GPRC5C,GPR6,AKAP9,GPRC5A,GPR1,GPR4,GPR3,ROPN1B,PYCARD,PIK3R3,PIK3R1,SCG2,GPS1,GLRB,GPS2,IRF9,SH3BP5,PRLR,MAPK8IP2,MAPK8IP3,IGFBP1,MAPK8IP1,MPL,IGFBP4,SH3BP2,DLC1,RANGAP1,CITED2,HTR1B,HTR1A,PPP1R1B,TLK1,TLK2,FAS,HTR1D,HTR1F,HTR1E,ADAM9,MAGI1,ROCK1,GPER,KIAA1804,GRB10,SIRPG,GRAP2,CD226,GRB14,ERBB4,ERBB3,ERBB2,ADCYAP1,HCRTR2,HCRTR1,ADRB3,RPS27,DIABLO,ARHGEF10L,ASIP,PDIA3,PDIA2,PDE11A,ZNF675,LATS1,LATS2,ANGPT1,ANGPT2,HTR5A,STX2,TLE3,NDUFA13,TLE1,TLE2,RASD1,REPS2,RTKN,DGKA,PTK2B,SOS1,PLEKHG5,TRIP10,DGKK,NAE1,P2RY11,SOST,RASSF1,NLRP12,ZNF259,HBEGF,NMBR,HTR2B,GFRA2,HTR2A,GFRA3,ZAK,STK38,ATP6AP2,BTRC,TNFSF15,TSPAN6,TNFSF14,TNFSF13,TNFSF12,RBM9,TNFSF18,PRKAR2B,PRKAR2A,PDE4A,RGN,PITPNC1,RGR,INSR,EDARADD,IRS4,RET,IRS2,STK25,NUDT4,STK24,CECR2,MTA1,IRS1,TNFAIP6,SGSM3,DLL4,TNFAIP3,EID2,OPN1SW,VDR,OTUD7B,GRPR,DYRK2,CACNA1I,PDE7B,TNFSF10,VCP,PRKAR1A,DDX54,TRIP6,MERTK,RHO,NBN,FER,NDUFS4,RASL10A,HMOX1,DLG4,RBPJL,SGK2,ADRB2,ADRB1,IGF2R,SIGLEC8,PDE9A,TREM1,GAP43,PTAFR,ACVR1,LCP2,VIP,CABP2,NDP,IGF1R,REL,REN,PAFAH1B1,COL4A3,NF2,CREB1,NF1,ANXA1,DPYSL5,RCAN1,DPYSL3,DPYSL2,ANXA5,ANXA4,ANXA3,PWP2,PPP1R9B,PNOC,SMPD1,JAK2,APAF1,FEZ2,ITGB3BP,ADORA3,OR1E2,PTPN22,ADORA1,BAK1,HOMER3,STAM,RARB,STC2,RINT1,OR1D2,OR1D5,OR1D4,SAG,CRHR1,CRHR2,STC1,PRLHR,ENPP2,CHEK1,CHEK2,POMC,LGALS3BP,BAI1,C16ORF5,ARFIP2,S100A11,HOMER1,HOMER2,PTPN11,SFRP5,CBLC,NOTCH2,NOTCH1,EPS8,SFRP1,NPY,SFRP4,ENG,MCHR1,TAS2R1,SPG7,TAS2R4,TAS2R5,TAS2R3,WASF2,CANT1,EDNRA,EDNRB,BAG1,ZFYVE9,TOP2A,SH2D2A,PSEN1,PSEN2,SIAH2,NMI,NMB,GCGR,SUFU,PDAP1,STAT6,PLCL1,STAT4,ACTL6A,NMU,DTNA,SERGEF,NLK,STAT1,STAT3,STAT2,TBK1,TLR1,TLR2,TLR3,TLR4,TLR6,IL31RA,CASP8AP2,SPRED2,SPRED1,ACIN1,STK4,CDKL2,STK3,TPTE,MAP4K3,MAP4K4,MAP4K5,PLCE1,LYST,WNT5A,MCL1,KLRK1,MAP4K2,MAP4K1,ELK3,TRRAP,RASAL2,PLCH1,SKIL,CREBL2,TBL3,RYK,MALT1,BBC3,CD274,SMC1A,TACR3,TACR2,TACR1,RRH,LGR5,ACVR1B,CALCRL,NCKIPSD,PLCB2,RSU1,MPP1,MPP2,MPP3,IGFALS,INHA,IFNAR1,IFNAR2,ACVR2A,ACVR2B,KRIT1,INPP1,CD244,ING2,PPP1R12B,TCF7L2,RGS11,RGS12,RASGRP4,RASGRP1,PSTPIP1,ERG,DNM1L,DTX1,RGS19,EDA2R,CBY1,RGS16,GSG2,RGS14,MGST3,RGS20,MLNR,MGST2,F2R +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html IL10,PAIP2B,SFTPD,BCL3,IL6,PRG3,PAIP2,NDUFA13,INHA,SOD1,FOXP3,FURIN,BRCA1,SIGIRR,INHBB,EIF4A3,INHBA,EIF2AK1,GLA,TSC1,GCK,GRM8,NLRP12,GHRL,GHSR,EIF2AK3,APBB1,PDZD3 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html KCNH1,ACTA1,PICK1,MYOZ1,TTN,KCNIP2,IL21,SPINK5,FARP2,TGFB2,NRCAM,KRT19,RND1,EREG,MYH11,CACNA1H,AGRN,ADAM12 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GDA,MED24,SYNCRIP,MED23,RORB,REST,MED21,MED20,ISG20,EPC1,TAF5L,DHX38,DIRAS3,MED26,FOXF1,MED27,FOXF2,PQBP1,VPS4B,ZNF396,PATZ1,IKBKAP,PCBD2,RREB1,LIG1,PTBP1,MECP2,LIG3,MED12,MED14,LIG4,MED13,SARS2,RAD1,PTRF,MED16,MED17,SHOX,MYBBP1A,CPSF3L,RAD23B,ADSS,RAD23A,NFKBIB,CRTC1,PABPC4,DUSP11,XAB2,VPS72,SLC29A1,FOXH1,SLC29A2,PABPC1,NTHL1,SFRS11,SPOP,DHX8,RECQL4,RECQL5,PAIP1,ESRRG,ATR,PRPSAP1,USF1,ATM,PRPSAP2,NOLC1,POP1,PARP3,POP4,PARP1,TAF1C,ELF1,ELF2,HTATIP2,TAF1A,ELF3,ELF4,ELF5,CWC15,EZH2,SPI1,BNIP3,TP63,ZNF346,DAXX,ZNF345,YBX1,AUH,YBX2,ZNF350,ZNF148,ZNF146,BRD7,SPIB,BRD8,TAF1L,ATF7IP,MTERF,BRF1,AIFM1,TP53,ZNF143,DGUOK,TTF2,MYCN,ARHGEF11,CARD11,INHBA,EREG,ZNF136,C19ORF2,ZMYND11,UGDH,ZNF367,NUFIP1,DPYS,SPO11,ZNF177,IL7R,SF3B4,SF3B3,POT1,ZNF174,SF3B2,USP39,DHX15,MARS2,DHX16,FEN1,FOXD3,IL4,MYF6,UPF2,UPF1,LMX1B,TRIM29,MYF5,TRIM28,TRIM27,IGF1,IGF2,PHF12,TRIM24,SF3A2,TRIM22,SF3A1,TP73,SF3A3,ATRX,ZNF157,CSNK1D,CSNK1E,SFPQ,FOXE1,OGG1,FOXE3,TXNL4A,NCBP2,NCBP1,PRPF4B,SNRPD3,DBF4,LMO4,SNRPD1,SNRPD2,NR2E3,TCEAL1,TGFB1,CDKN2A,NLRC3,MDFIC,CDKN2D,PMS2,SCRT1,PMS1,CIB1,BCL10,MCM3AP,ZNF593,POU2AF1,IL29,DFFA,RELA,DFFB,CSDA,RNASEH2A,BICD1,HIF1A,EP300,TCFL5,TIMELESS,TFAP2B,MNX1,SMARCA5,TFAP2A,EDF1,NFE2L1,TFAP2C,NFE2L2,SMARCA1,NFE2L3,EDA,SMARCA2,ME1,LITAF,ADORA2A,UBE2V1,UBE2V2,ABCA2,ABCA1,SYCP1,NR2C2,CXXC1,MEIS2,SMARCB1,TEAD4,SNF8,EGF,ASF1A,HELLS,TFDP1,CREBZF,BRIP1,DNASE2,RBMY1A1,HDAC5,ATF6,HDAC4,ATF5,ATF4,NRF1,HDAC2,SMARCC1,DYRK1B,SMARCC2,ATF7,IKBKB,ABL1,HDAC8,PDZD3,ADRA1D,E2F1,PTGES3,E2F2,E2F3,RSF1,E2F6,PAX5,PAWR,PAX3,PAX2,PAX1,PTMA,TMF1,MAX,WARS,MAZ,DKC1,PAX8,LRRFIP1,NRG1,PTGER3,DDB1,SLA2,CYCS,PRPF3,PMM2,PRPF6,DDB2,ERN2,ZFPM2,JMJD1C,UBB,PTMS,DMC1,UGP2,UPP1,RAG1,EGLN1,HIC1,TFAM,RGMB,ATIC,PRPF8,ECD,CEBPZ,GTF3C6,NFATC4,NFATC2,GTF3C2,NFATC3,NSUN2,GTF3C4,NFATC1,CEBPA,MAF,EXO1,CEBPB,GMDS,CEBPD,CEBPG,NFRKB,GRSF1,SLBP,MED30,ID2,ID1,BAX,ID4,ALKBH1,ID3,FST,HIRA,SLC35A3,DDX17,WWP1,ABRA,IFNK,GTPBP4,RAN,RAD9A,PPARGC1A,PPARGC1B,PNKP,REC8,PIAS4,PRDM4,MTF1,ABT1,MNT,TGFBRAP1,PRDM1,TGFB1I1,SUDS3,DEAF1,FARS2,HUS1,OAS3,AFAP1L2,OAS1,OAS2,CALR,PPAT,TK2,TK1,PLAGL1,NR1H2,PPAN,ACD,CRMP1,SUPV3L1,DUX1,MAML3,BCOR,TCF25,NKRF,KLF5,MDFI,IKZF3,KLF7,MLL,KLF9,MAML1,MAML2,RYBP,CIDEA,TPD52L1,UBP1,HNRNPA0,POLRMT,NR1I2,TCEB3B,RNF4,SUPT16H,TCF19,RBPJ,ZFHX3,TCF12,NCOR1,KLF4,TCF15,ZBTB32,PPARA,PPARD,ACVRL1,PPARG,TERF2IP,ZEB1,HSBP1,GLI2,PMS2L1,KCNIP3,ZBTB38,GLI1,OXER1,FANCG,CCNO,FANCA,FANCC,ZFP36,CCNK,CCNH,APTX,NFAM1,RAD52,MBD1,RAD50,SCAP,RAD51,RBBP8,SIGIRR,ADM,GRM8,ADK,RIPPLY1,MTAP,MAP3K13,REV3L,ETV7,ZBTB16,KIN,NR1D2,THG1L,PEX14,BCL3,MLLT1,ETV1,BCL6,HSF2BP,TSTA3,MLLT6,HCLS1,SPHAR,SOD1,SNAI2,SOD2,PREB,YWHAH,UBTF,APBB2,APBB1,MYOD1,FOXO1,APOBEC3G,FOXO3,FOXO4,APOBEC3F,SMNDC1,SETX,GATA1,GATA2,ATOH1,RAD21,GATA6,GATA3,GATA4,RBMS2,MYST2,MYST1,GABPB2,MYST4,MYST3,RBMS1,ALDH6A1,PICK1,FOXN1,ZNF189,RRP9,AHR,FOXN3,RPAIN,IGSF1,SLU7,ERC1,RAD17,PPP5C,BLM,SNX6,KARS,NPM1,NKX3-2,NOVA1,SREBF1,BRCA2,AK5,SNW1,TSN,FOXP3,BRCA1,SREBF2,PPIE,PPIG,DNMT1,RFX3,SCMH1,DUT,POU6F2,FOXK2,PDCD4,FUBP1,FOS,FUBP3,DGCR8,ANG,POU4F2,DBR1,POU4F1,MKL2,TERT,ALX1,UBE2A,NANOG,SP100,PRKCG,NLRP3,UBE2B,MSC,UBN1,XRCC6BP1,NRIP1,CD3EAP,UBE2N,PRKCQ,XPC,BPTF,ZMIZ2,MDM2,MDM4,CUX1,COMMD7,ZFP161,SMARCAD1,GLIS3,TNF,GLIS2,TRA2A,GLIS1,HCFC1,HCFC2,RPA4,RPA3,RPA1,TYMS,ERCC8,RPA2,TYMP,ERCC5,ERCC6,POU2F3,POU2F2,POU2F1,NFAT5,PYCARD,GEMIN8,SFRS2IP,GFI1,GEMIN6,ERCC3,ERCC4,CAMK2A,GEMIN7,GEMIN4,ERCC1,GEMIN5,ERCC2,FOXL2,SIRT4,SIRT5,SIRT1,SIRT2,ATXN1,IRF9,MPG,ATXN3,GSPT1,DR1,IRF7,THRAP3,IRF8,IRF1,IRF2,TEP1,IRF3,IRF4,IGFBP4,XRCC5,XRCC4,FHIT,SLC2A4RG,XRCC3,XRCC2,LSM6,XRCC6,PGD,INTS1,RP9,HOXD13,INTS2,INTS3,ZNF638,ZNF254,CITED1,CITED2,INTS9,INTS8,INTS5,INTS4,INTS7,INTS6,LSM5,LSM4,TLK1,LSM3,TLK2,LSM1,ZNF45,YARS,RXRA,ZHX1,ZHX2,ZHX3,HNF4G,ORC1L,NME4,NME5,NME2,HNF4A,ZNF238,RPS14,SMARCAL1,TGIF1,SIP1,TRAPPC2,ZNHIT3,ZNF76,MYEF2,PPT1,HSPA1B,HEXIM2,HEXIM1,PIR,ZNF74,VEZF1,TCF4,SLC28A2,SLC28A1,DNMT3B,TCF3,ARHGEF10L,DMBX1,DNMT3A,UTF1,TCF7,KLF12,KLF13,PHB,KLF10,MAP2K3,TGFBR1,KLF11,MSTN,TFCP2,TRPS1,MZF1,HLF,HNF1B,HNF1A,CRNKL1,NAP1L1,SLC23A1,NOD2,RRN3,SLC23A2,HSF2,CREG1,HSF4,MYC,BATF3,ZNF281,SRPK2,CDC6,ZNF282,EXOSC7,GMEB2,PTF1A,GTF2H4,EXOSC2,NDUFA13,EXOSC3,TLE1,FOSB,SRPK1,FLNA,GTF2H1,JMY,MXD4,CIAO1,PFDN5,RUVBL2,RUVBL1,NSD1,NHEJ1,CLOCK,ZNF274,CREM,WRNIP1,PML,POLA1,ZNF35,RNASET2,REXO2,PER1,LIMD1,SUPT4H1,TRIP11,TRIP13,ZNF263,ZNF24,TNP1,ELAVL2,ACLY,ELAVL4,NAE1,RPS6KA5,MNAT1,RPS6KA4,PPBPL2,RBAK,TCEB2,NARFL,TCEB3,TCEB1,PHF5A,CTNS,NR5A2,NR5A1,REPIN1,MMS19,RNMT,STK36,RBM3,RBM5,RBM6,TBP,TNFSF13,RBM9,CBFB,IGHMBP2,GTF2E1,GTF2E2,SMARCD2,DDX23,SMARCD3,SMARCD1,DDX20,BPNT1,SNRPA1,NUDT2,NUDT4,NUDT3,NUDT5,HDAC10,CECR2,ARID1A,HNRNPR,DDIT3,JUNB,DDX39,PA2G4,RBPMS,SMARCE1,RBMY2BP,XRN2,BAT1,HMGB1,EID1,EID2,CNBP,ACHE,HMGB2,CCRN4L,SNRPB2,PYDC1,EXTL2,VDR,TROVE2,TCERG1,POLE2,POLE3,RPL6,METTL1,JUND,TAF9,HNRNPC,ZNF423,TAF2,TRIP4,SMG6,EPAS1,TAF5,SMG5,TAF8,SMG7,SMG1,NEUROG1,UIMC1,TRNT1,POLD4,VCP,POLD1,GTF2F1,PRKAR1A,POLD2,GTF2F2,TDG,HIVEP3,DDX54,NBN,FOSL2,ARID4A,FIGNL1,DEDD,DICER1,DEK,CTCF,ZNF202,PRDX3,FEV,ORC4L,POLG2,NFIL3,FOSL1,NDUFS1,NFX1,ARID5B,SARS,ARID5A,CDK9,ESR2,RB1,CDK7,HMGA2,HMGA1,CDK2,PURA,TARBP1,TARBP2,RECQL,NCOA6,CDK2AP1,ORC5L,CPSF6,CARM1,CPSF3,CPSF1,ACVR1,BCLAF1,NUP98,DCK,NFYC,NFYB,NFYA,NR3C1,IVNS1ABP,SMUG1,CALCOCO1,TSC22D1,ADAT1,TSC22D3,ORC2L,TSPYL2,CHD2,B4GALNT2,CHD1,TERF2,CHD4,CHD3,RNASE2,NF2,RNASE3,VHL,RNASE6,DPYSL3,DRG1,CREB5,DPYSL2,FBL,PWP1,ORC3L,DBP,ZRANB2,RAD51C,CDX2,ADCY7,RNASEH1,PTTG1,NONO,PRIM1,SFRS6,SFRS7,SFRS4,SIN3A,SFRS5,SFRS8,TRAK1,PRIM2,SFRS9,U2AF1,RARB,SUPT5H,TWIST2,TWIST1,PITX2,POLL,POLK,POLI,POLH,POLG,YY1,AARS,POLE,NKX2-8,OLA1,POLB,TAF6L,SFRS1,SFRS2,UHRF1,PGLS,RFC3,RFC4,RFC1,CD40LG,RARS,TBRG1,ENPP7,ELL,MRE11A,CHEK1,IGF2BP3,AGGF1,DRAP1,HTATSF1,CDC40,CDA,C16ORF7,POLQ,NKX2-5,UAP1,BMP2,SUB1,CREBBP,SMAD4,S100A11,TREX2,SMAD3,SMAD2,PMF1,RAD54L,NOTCH2,NUP62,NOTCH4,JAZF1,RAD54B,BMP7,ENG,ADAR,BMP6,CCNT2,GTF3A,COPS2,COPS5,TBX22,TBX21,CCNT1,UVRAG,MLH1,NFKB1,DMAP1,NFKB2,CAMKK2,CDT1,RNGTT,BLZF1,PARN,GFI1B,ASH2L,NT5M,NR2F2,TOP2A,NT5E,NT5C,ABCE1,SNAPC5,PRPF31,SNAPC2,POLR1E,TBX10,ZNF354A,SNAPC4,SNAPC3,SF1,POLR1C,GTF2B,GMPS,MED6,CTNNBIP1,HNRPDL,MED7,CHMP1A,MED4,GTF2I,GADD45G,ASH1L,SRCAP,GADD45A,TBX19,MED1,POLR2H,POLR2G,POLR2F,NMI,POLR2E,POLR2L,POLR2K,POLR2J,UNG,POLR2I,EHF,POLR2D,HPRT1,POLR2C,SUFU,POLR2B,MLF1,SUMO1,MRPL12,SET,SQSTM1,LANCL2,GATAD2A,BCAS2,POLR3G,POLR3H,TBX3,POLR3K,TBX2,NASP,GMNN,TBX5,AFF4,ILF3,STAT1,POLR3C,PRPF18,STAT3,STAT2,ILF2,PPP1R8,YAF2,NEUROD2,PHF21A,PBX1,PBX3,RBM14,PAICS,PBX4,THRA,CTPS,CRABP2,ARNT2,HOXC6,MUTYH,TARDBP,HOXC5,TFB2M,SRRM1,MYO6,DARS,SNRPN,EFTUD2,ARNTL,NR0B2,ELL3,NR0B1,TRERF1,ELL2,PTHLH,ADRM1,UCN2,TIAL1,SNRPB,SNRPC,SNRPF,PRPS2,SNRPG,PRPS1,GCLC,TFAP4,TIPIN,SOX5,ELK1,ELK3,RAD51L1,BTF3,ENTPD4,RAD51L3,SKIL,RUNX1,RUNX2,RNF14,RUNX3,CREBL2,MAFF,CSTF3,NFE2,CSTF2,PIF1,SAP18,SSB,RNPS1,INTS12,GSC2,INTS10,PSMC5,GCM1,MAFA,SMC1A,FPGS,KCTD13,CSTF1,GUK1,SOX21,NR6A1,BUD31,MEN1,ACVR1B,MCM7,POU5F1,PCGF6,SETMAR,ATP8B1,SOX18,ELP4,KHDRBS1,EGR1,ELP3,ELP2,REV1,NOL3,CCDC88A,NOL8,LDB1,SOX12,CILP,MCM2,MCM3,MCM5,ACVR2B,UMPS,BTG2,NRL,KHSRP,KPNA2,KPNA1,SUPT3H,ING4,ING2,MGMT,NFIX,POU1F1,TCF7L2,CALCA,TNFRSF1A,NPAS2,HAND1,HAND2,KRT7,NUDT21,PTH,APEX1,TINF2,ENO1,DCTD,MSH6,ERF,ERH,MSH3,DTX1,MSH2,MSH5,SOX30,MSH4,EDA2R,CENPF,CBY1,TPMT,AMPD3,DIS3,SP1,SP2,SP3,SP4,GRLF1,NFIC,TSSK4,CRK +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html ITLN1,ITGB2,IL31RA,NDUFS4,CLCF1,TDGF1,EGFR,BMP4,IL3,CCDC88A,IL5,NF2,LYN,IL29,CCDC88C,HCLS1,SOCS1,IL20,CARD14,CCND1,CD80,AKTIP,CCND3,CCND2,CD81,IL12A,NLRP12,TNK2,IGFBP3,IL22RA2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html XRCC4,RAD51C,XRCC3,XRCC2,XRCC6,EIF2B2,CCNA2,EIF2B3,MAP2K6,EIF2B4,EIF2B5,POLL,POLI,POLH,POLG,LIG1,RINT1,POLE,LIG3,RAD9A,LIG4,RAD1,PNKP,RFC3,KRT19,UBR5,RAD23B,RAD23A,MRE11A,HUS1,CHEK1,CHEK2,XAB2,GYS2,C16ORF5,POLQ,NTHL1,RECQL4,RECQL5,CIDEB,TREX2,CIDEA,ATR,RAD54L,ATM,RERG,PARP3,RAD54B,CLEC7A,PARP1,GHSR,UVRAG,MLH1,PMS2L1,LATS1,LATS2,TRIAP1,FANCG,FANCA,CCNO,FANCC,LYN,AIFM1,GTF2H4,TP53,APTX,RAD52,RAD50,RBBP8,GTF2H1,RAD51,GADD45G,FOXC2,RUVBL2,STEAP2,NHEJ1,GADD45A,UNG,WRNIP1,POLA1,PML,SFN,SUMO1,PCSK9,BCL3,BCL6,CD24,FEN1,UPF1,HCLS1,TNP1,CRIPAK,SOD1,EIF2B1,SELS,TP73,NAE1,ATRX,MNAT1,CDH13,MAPK12,CSNK1D,CSNK1E,EEF1E1,RBM14,OGG1,MMS19,ZAK,SETX,IGHMBP2,APOA2,MUTYH,GSTM3,RAD21,GATA3,CDKN2D,PMS2,PMS1,CIB1,MYO6,DDIT3,FOXN3,RPAIN,RAD17,ME1,HMGB1,HMGB2,GCLC,BLM,UBE2V1,UBE2V2,ABCA2,SESN1,POLE2,RAD51L1,DYRK2,GML,ASF1A,ATRIP,BRCA2,BRCA1,TSC1,VCP,POLD1,TDG,MAFA,ABL1,SMC1A,PDCD7,NBN,MCM7,ANG,PCBP4,UBE2A,BRCC3,REV1,DDB1,ADIPOR2,ADIPOR1,PRKCG,TOPORS,IFI16,UBE2B,NEK11,XRCC6BP1,UBE2N,SPDYA,RECQL,XPC,BTG2,NCOA6,DDB2,GHRL,PPP1R15A,CALCR,BRSK1,SMUG1,RPA1,ERCC8,ERCC5,ERCC6,ERCC3,ERCC4,APEX1,ERCC1,ERCC2,APC,EXO1,MSH6,MSH3,MSH2,MSH5,CEBPG,MPG,ATXN3,GCK,BRE,ALKBH1 +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html NGLY1,NCSTN,AGA,CLN3,ADAMTS9,APH1A,PSEN1,PSEN2,MGEA5,PSENEN,MAN2B1,ABCG1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SLC22A16,GNPDA1,HMGCR,VAPB,CRHBP,LHCGR,IDE,PSG10,EIF5A,APOBEC3G,APOBEC3F,ANKRD7,TGFB1,SHH,PSG11,PRKACG,MDFIC,WWP2,ADAM2,WWP1,RLN2,IZUMO1,ITCH,EIF2B2,EIF2B4,EIF2B5,SEMG1,BYSL,CRISP1,SPAG1,HBXIP,NR0B1,SPA17,CDKL2,CLEC4M,PTHLH,CRHR1,WBP2NL,BPY2,MST1R,AKAP3,AKAP4,ACR,CCL3,DERL1,PRLHR,CCL2,TFCP2L1,RRAGA,FCGRT,CCL4,ADCYAP1,SMARCB1,TRO,NPM2,HTATSF1,SPAM1,MAFF,OVGP1,MEA1,SMAD3,TEAD3,COL16A1,UBP1,CYP17A1,CLGN,PPIA,CD209,SFRP4,ADAM20,ADAM21,GHSR,LHB,MTNR1A,PPARD,INSL4,PZP,CSH2,RSF1,SMCP,DEK,SCGB1A1,LNPEP,AGPAT6,CXCR6,SOX15,MKKS,SRD5A2,APLN,TNIP1,TOP2A,DNAJC19,CTBP1,CTBP2,ZP2,DMRT1,PSG3,DMRT2,PSG1,FSHR,OR10J1,AMH,TARBP2,PSG9,PSG8,PSG7,OR2H2,EREG,ADM,PSG6,NCOA4,CLIC5,PSG5,CD81,PSG4,GHRL,FSHB,EPYC,PKDREJ,HS3ST6,HS3ST5,TSPY1,OPRK1,TAC1,SPRR2G,XKRY,OXTR,SPRR2F,SPRR2E,TAC3,CD9,DNALI1,SPRR2C,SPRR2D,SPRR2A,AGT,SPRR2B,CSDE1,RQCD1,HSD17B3,AMHR2,FOXL2,DAZ2,FLT1,IL8,TBX3,TNP1,PTGFR,SOD1,CENPI,RPL29,PRLR,CRH,ACE2,BMPR1B,WNT7A,HPGD,LIPE,NR5A1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SEPT5,SYT1,NRBP1,SNCAIP,LTBP2,CADM1,LMAN2L,USE1,NLRC4,APOA2,APOA1,GBF1,RAB26,DNAJC1,SCAMP1,CRTAM,SCAMP3,SCAMP2,BAIAP3,VTI1B,OPTN,ERGIC1,ERGIC2,ERGIC3,COPG2,KRT18,BACE2,RAB14,CARTPT,VAMP3,AKAP3,KCNMB4,ARFGAP3,ACHE,PPY,CCL3,STX7,NAPG,COPZ1,CCL8,RER1,RABEPK,NAPA,ABCA1,CCL5,ARFGEF2,LMAN1,PYDC1,RIMS1,ARFGEF1,STX18,INS,CKLF,STX16,TMED10,DOPEY2,DOPEY1,SRGN,CARD8,CIDEA,SNAPIN,ARFIP1,FOXP3,LIN7A,SYTL4,GLMN,GOSR2,GOSR1,PDIA4,DPH3,CANX,COPB2,NOD2,NMUR1,ANG,COPB1,NMUR2,AP3B2,ZW10,RPH3AL,NLRP3,NLRP2,KIF1C,GRM4,SCIN,STEAP2,ARL4D,COPE,PKDREJ,SNAP29,RAB3A,CPLX2,CPLX1,BET1,HRH3,SYN3,SEC22A,PYCARD,SEC22B,SEC22C,SNAP23,EXOC5,SCG2,RAB2A,SERGEF,NLGN1,SCRN1,MON2,COG3,CADPS,COG7,NLRP12,YKT6,COG2 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html BMI1,MFNG,SHROOM3,TRIM14,ZIC1,GLI2,SHH,ZIC3,CITED2,T,TDGF1,LEFTY2,PITX2,AXIN1,DVL2,MDFI,KIF3B,LMX1B,TBX3,FTO,SMAD5,SMAD2,SMAD1,MID1,ACVR2B,HOXB1,NOTCH4,RIPPLY1,PTCH1,PBX3 +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html EDNRA,EGFR,GNA15,C5AR1,GNAQ,CCKBR,ANG,NMUR1,AVPR1B,AVPR1A,PLCB2 +GO CELL SURFACE RECEPTOR LINKED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SURFACE_RECEPTOR_LINKED_SIGNAL_TRANSDUCTION_GO_0007166.html HRAS,LTBP2,OSMR,CITED2,MAP3K7,AGTR1,HTR1B,HTR1A,MC1R,GRIN2B,LTB4R,GRIN2C,CCR10,GIT2,GNG4,QRFP,HTR1D,KLRD1,HTR1F,HTR1E,GNG7,KLRB1,PTPRJ,PIK3CG,BSG,PTPRF,MAGI1,PTPRG,GPER,PIK3CB,GRIN2A,LIFR,PTPRT,GEM,PTPRU,MARK4,THY1,SSTR4,SSTR5,SSTR2,GRB10,SSTR3,SSTR1,IFNB1,MC2R,ROR1,ADAMTS1,KLRC1,GNAI3,GNAI2,ERBB3,ERBB2,PPYR1,ADCYAP1,IL17C,FOXH1,HCRTR2,HCRTR1,ADRB3,IFNA2,MUSK,INS,IL17F,KLRF1,GIT1,GUCY2F,TGFBR1,KLF10,SPHK1,COL16A1,GUCY2C,NPY5R,GUCY2D,RGS1,RGS2,RGS3,RGS4,RGS5,AVPR1B,AVPR1A,TGFBR3,RGS9,SMURF1,GNAZ,OPRM1,FGF5,GLRA1,TRPV1,GLRA2,TP63,AP3S1,ZNF675,SIRPB1,NMUR1,NMUR2,TRPV4,MC5R,IL13RA1,HTR5A,BRD8,NPBWR1,NPBWR2,IL6R,ARHGEF11,DOK1,INHBA,NCK2,DOK2,KLRG1,GNB2,GNAQ,EREG,XPR1,GNB1,GIPR,FOXC2,GNAS,GNB3,RAPGEFL1,RASD1,FMOD,REPS2,ECEL1,FFAR3,C3,OPRK1,FFAR2,NPY2R,C5,FFAR1,GPR65,MKNK2,FPR1,ABI1,GPR68,IL7R,CCL25,CCL23,SORBS1,PTK2B,MAS1,CCBP2,MC3R,IL6,IL8,OPRL1,GPR75,IGF2,NPY1R,CCL17,RPS6KA5,CDH13,P2RY11,SOST,EPGN,NLRP12,MC4R,LRP6,NMBR,HTR2B,HPGD,GFRA2,HTR2A,MTSS1,GNA15,MPZL1,GRIK1,GRIK2,GRIK3,GNA12,GRIK4,ZIC1,CXCL12,TGFB1,CXCL10,MARCO,APOA1,FNTA,GALR1,CDKN2B,MDFIC,GPR45,GALR3,GPR44,TDGF1,GALR2,GPR42,FRS3,FRS2,INSR,RGR,EGFR,RELA,BAIAP2,NTSR1,IRS1,GABRR1,GPR55,GPR50,GPR52,C3AR1,EID2,DRD1,CCL3,CCL2,ADORA2B,IFITM1,DRD3,DRD2,DRD5,DRD4,BMPR2,CX3CL1,ABCA1,PYDC1,IL12RB2,PEG10,GPR22,PTK2,P2RY6,DOCK1,GPR21,IL12RB1,P2RY4,P2RY2,APOC3,GPR25,TEK,P2RY1,ADRA2A,GRPR,ADRA2C,ADRA2B,TRAF6,GPR20,EGF,GABRE,CCM2,UCN,FIBP,TNFRSF13B,EPS15,CDKN1C,GPR32,LAT,GPR35,GPR34,GPR37,GPR39,IKBKG,ADRA1B,TBXA2R,MTNR1B,ADRA1A,MERTK,ADRA1D,GPR31,RHO,MTNR1A,GPR109B,LEPR,DUOX2,DUOX1,GABBR1,GABBR2,CCRL2,PRMT1,CCRL1,PTGER1,PTGER2,IL18RAP,PTGER3,GPR19,PTGER4,SLA2,OTX2,NUP85,LEFTY1,CHRM5,ADRB2,ADRB1,CHRM4,CHRM3,CHRM2,CHRM1,GPR15,GPR17,TSHR,GAP43,PTAFR,GPR12,ACVR1,TTRAP,LCP2,VIP,APH1A,TSHB,PF4,STUB1,TAC3,IGF1R,HRH1,RGMB,HRH3,HRH2,LEFTY2,CD2,GPSM2,KLRA1,GUCA1B,FLT3,FLT4,NF1,CBL,ANXA1,FRZB,GCG,NCSTN,PDC,GDF10,GDF15,OPRD1,ADORA3,ADCY7,IL6ST,GPR123,EDN2,GDF5,LHCGR,CD47,LILRA1,APOE,HOMER3,GAB1,IFNG,CLEC4A,GRID2,RAPGEF4,PSENEN,GDF9,IFNK,RAPGEF1,C5AR1,CD3G,STC2,EFNB3,CD3E,HTR4,RIC8B,OR1D2,OR1D5,SAG,OR1D4,CRHR1,CCR9,CCR8,CRHR2,LILRB2,LILRB5,CCR5,TACSTD2,LILRB3,CCR3,HTR7,CX3CR1,HTR6,CCR2,PDGFRA,TGFBRAP1,STC1,ACR,CDK5R1,PRLHR,CALY,ENPP2,TRHR,AKAP12,AFAP1L2,BDKRB2,PXN,AGRN,MAML3,C16ORF5,AGRP,MDFI,MLN,CNKSR1,SMAD7,MAML1,SMAD5,MAML2,SMAD4,SMAD3,CIDEA,TRIO,SMAD2,SMAD1,TAX1BP3,HOMER1,AGER,HOMER2,KDR,NTRK3,CBLC,NOTCH1,EPS8,NUP62,NPY,CD59,NTRK1,NTRK2,GRK6,GRK4,PYY,GRK5,GHSR,ENG,GRK1,TAS2R1,MCHR1,CCKAR,ACVRL1,IL27RA,BCAR1,WASF2,GLI2,GLI1,EDNRA,ASGR2,EDNRB,PDPK1,BAG1,ZFYVE9,TGFA,CAP1,XCR1,ADAM11,GPR176,ADAM10,CCKBR,LY96,RXFP3,CD160,NFAM1,GRM1,SIGIRR,CLEC1A,GRM5,GRM4,GRM3,GRM2,TNFRSF10B,PSEN1,GRM8,GRM7,PSEN2,GRM6,CLEC1B,CXCL1,AVPR2,PARD3,CCR1,LANCL1,CXCL9,GCGR,MIF,AZU1,LY6E,AGT,NPFFR2,CLEC2D,VWC2,CD24,CD28,CAP2,NLK,OPN1MW,NPR2,GRIA3,GRIA4,BIRC3,PTGFR,BIRC2,CD19,ERBB2IP,FYN,MAPK14,CALM3,PTCH1,OPN3,CD14,F2RL3,NRTN,CASR,PDGFA,GABRB2,F2RL1,MBIP,VIPR1,FOXO4,GHRHR,SCTR,IL31RA,PTGIR,GP6,MS4A2,PRKACB,GLP2R,MADD,PICK1,SOCS1,TNFRSF14,SOCS5,TRAT1,PTHLH,IGSF6,PLCE1,LAT2,GLP1R,FGFR4,FGFR3,SNX6,GRB2,RRAGA,SRC,IRAK3,CNR1,CNR2,DEFB1,PTPN6,GABRA2,TBL3,GABRA1,GABRA4,GABRA3,MALT1,CD274,LTB4R2,CD79A,CORT,SST,GRB7,PIP4K2B,TACR3,TACR2,RRH,TACR1,GNRHR,LGR5,TAAR8,AKT1,ACVR1B,TAAR9,TAAR6,CXCR5,ANG,CXCR4,CXCR6,TAAR1,SHC1,CALCRL,SHC3,PLCB2,RAMP1,PRL,IFNGR2,NPFF,KHDRBS1,GABRG2,OXGR1,INHA,FSHR,OR10J1,IFNAR1,CD3EAP,UBE2N,GRP,ACVR2A,IFNAR2,ACVR2B,GHRH,HIPK2,GHRL,COMMD7,PRKD3,CALCR,GPRC5C,TNFRSF25,GPR6,GPR1,GPR4,GPR3,CALCA,TNFRSF1A,RGS11,UTP11L,RGS12,CEP57,PTH,PYCARD,PTN,GP1BA,PIK3R3,PPAP2A,PIK3R1,PTPRC,IL2RB,PTPRD,GLRB,IL2RA,DTX1,RGS19,CBY1,RGS16,RGS14,IRF9,RGS20,PRLR,MLNR,MAPK8IP2,MPL,BMPR1A +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html JAG2,TPD52,SPINK5,SART1,ZAP70,CD4,IL4,PTPRC,CD3D,IL7,CEBPG,IL27,NFAM1,INHA,SOCS5,CD1D,HDAC5,INHBA,HDAC4,LCK,IL12B,CD79A,HDAC9,NHEJ1,IL2 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html FOXL2,DFFA,GZMA,AIFM1,DFFB,CYCS,CECR2,CIDEA,BNIP3,TPD52L1,PPT1,GZMB,PMAIP1,SOD1,MOAP1,CASP3,CDKN2A,BAX +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html NCBP2,AQP9,NUP160,EIF5A,SLC29A1,SLC23A1,SLC29A2,SLC23A2,SLC35B2,RAE1,DDX25,DDX19B,SLC28A2,SLC28A1,KHDRBS1,NUP133,UPF2,UPF1,NUDT4,SMG6,SMG5,CKAP5,HNRNPA2B1,SMG7,NXF5,SMG1,VDAC3,DDX39,TSC1,NUP107,BAT1 +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html PTHLH,UCN2,ADCY7,NUDT4,ADM,ADORA2A,GRM8,OXER1,PTH,ABCA1,PDZD3 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html RTP3,UNC119,RP1,RTP4,TRPC3,TAS1R3,OPN1SW,NR2E3,ABCA4,TAS1R2,SAG,PDE6B,PITPNM1,TAS2R16,TAS2R14,PDC,TAS2R43,CACNA1F,RHO,GRK1,OPN4 +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html CCKAR,GNAI2,ENPP1,STC2,PPARG,ENSA,GCGR,TULP4,SSTR2,CHMP1A,CDKN2B,SSTR1,CDKN2D,GIPR,STC1,OGT,SST +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html MDFI,DBNL,ZAK,PTPLAD1,KIAA1804,MAP4K1,PKN1,DAXX,MAP3K6,MAP4K5,MAP3K5,MDFIC,MAP3K2,MAP3K9,MAP3K10,MAP3K11 +PWCOMMONS REGULATION OF SYNAPSE STRUCTURE AND ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SYNAPSE_STRUCTURE_AND_ACTIVITY.html COL4A4,KLK8,YWHAG,YWHAH,APOE,GRIK2,NPTN,GHRL,CNTN4,UBB +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html TPST1,TPST2,HS3ST5,GCLC,NDST1,NFS1,GCLM,GLRX2,GPX1,MSRA,CHST12,CHST11,CHST14,CHST13,HS6ST1,GSTA1,UST,CHST2,CHST3,CHST4,CHST5,SOD1,CDO1,GLCE,CHST1,ADI1,CHST7,CHST6,CHST9,CHST8,MAT2B,EXT1,CTNS,SMS,HS3ST3B1 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html BIRC5,SFN,HBXIP,TNNT2,GPX1,APOA2,CDKN2D,ATPIF1,PPP2R4,ANGPTL3,DNAJB6,IFI6,ANGPTL4,DHCR24 +PWCOMMONS BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOSYNTHETIC_PROCESS.html RPL18,RPL19,RPL14,SGMS2,GBGT1,RPL13,RPL15,PTGS1,SGMS1,RPL11,OGT,DDAH2,YARS,GATM,UGCG,EIF2S3,SARS2,EIF2AK1,RPS19,RPS17,BACE2,RPS12,HSD11B2,RPS10,RPS11,EIF2AK3,EIF2AK4,ADSS,PABPC4,MTIF2,PDSS1,MTIF3,PDSS2,IL17A,RPS27,LPCAT1,IL17F,PEMT,MGAT4B,MGAT4A,PAIP2,PAIP1,RPS9,RPS5,CYP7B1,LDLR,EIF2A,ACN9,YBX2,ST6GALNAC6,TYR,POMGNT1,NOD1,XYLT1,EEF2K,MRPL3,PIK3C2A,PI4KA,NDUFA13,EIF1B,PI4KB,INHBB,INHBA,EIF4A3,MAST2,EREG,RPL41,MTRF1,EIF4A2,RPL3L,IL12B,DOLPP1,DEGS1,TUFM,HSD3B1,NACA,ALDH18A1,HSD3B7,RPL35,UGDH,GPAA1,RPL37,RPL38,RPL39,NECAB3,PET112L,RPL30,DGKE,RPL31,DHCR7,RPL34,MPDU1,MARS2,DAZL,IL4,IL6,DAZ1,UPF1,FADS1,IL9,RPL26,FADS2,RPL24,ETF1,RPL28,RPL29,LARGE,GLA,RPL22,RPL21,DPM1,NLRP12,DPM2,MAT2B,GAMT,DPM3,LRP2,HPGD,NR5A1,IL18,HBS1L,EIF5,RPS6KB2,TSPAN7,TSPAN8,IL10,TGFB2,FNTB,APOA2,APOA1,FNTA,B3GALNT1,ATG7,DDX25,RPN1,EIF1,SAMD4A,EBI3,EGFR,BCL10,IL29,IL27,CDO1,PNPLA3,HSPB1,NFE2L1,ME1,CNBP,ADORA2A,ST8SIA1,ST8SIA3,PAH,ABCA1,ST8SIA2,OAZ1,RPL7,RPL6,RPL9,RPL8,RPL3,RPL5,RPL4,PCYT1B,DYRK2,RPL7A,B4GALT7,SDF2,B4GALT1,AIPL1,FDPS,RPL23A,FURIN,B3GAT2,ATF4,TSC1,ST8SIA4,ST8SIA5,PDZD3,PTGES3,IMPA1,NDST1,ALG1,ALG2,ALG5,DPH1,ALG6,DPH3,ALG8,RPS2,PEX7,RPS3,WARS,ALAS1,ALAS2,RPS3A,NPC1L1,PCYT2,OCA2,MAN1A2,DHRS9,PMM2,AKR1D1,ALDH9A1,TM4SF4,TM4SF5,GALNT2,PGS1,GALNT1,HS3ST5,GALNT7,GALNT6,GALNT5,PAIP2B,DCT,A4GNT,GCHFR,GMDS,CEBPG,ASMT,GYG2,MAN1C1,OXSM,GCK,TSFM,ALAD,EIF2C1,MRPL41,B3GALT6,ADCY7,B3GALT5,B3GALT4,BBOX1,PLOD1,AGPS,LCAT,EIF1AX,ASMTL,HRSP12,TRAK1,SULT1A2,EIF2B2,EIF2B3,EIF2B4,EIF2B5,MRPL52,MRPL51,AARS,PPARGC1A,BOLL,GLCE,CD37,HAS1,RARS,EXT1,EXT2,HS3ST3B1,LALBA,GCNT4,COASY,GCNT3,GCNT2,TFCP2L1,KEL,FARS2,PFKFB1,IGF2BP2,GPR143,PPAT,CD74,DMD,MRPL55,GYS2,C16ORF7,GCNT1,UAP1,MOCS2,MCAT,FDXR,RPL18A,GHSR,IDI1,ALG12,BMP6,ABCF1,GYPC,COPS5,COX10,AGPAT6,CYP39A1,OXER1,CHST12,CHST11,CHST13,AGPAT2,DHCR24,AGPAT1,COX15,PRG3,GMPS,SIGIRR,ADM,PTGDS,GRM8,ADK,FARSB,RPS4Y1,SERP1,BCAT1,FUT9,FUT8,FUT7,FUT6,FUT5,UROS,RPL27A,HPRT1,MIF,GCH1,STT3B,AZU1,MRPL10,CYP27B1,STT3A,SEPSECS,CHM,AP3D1,FUT4,BCL3,FUT1,TSTA3,FUT2,CD28,NSDHL,RRBP1,SOD1,EIF2B1,COG3,MRPL23,COG7,APBB1,PAICS,COG2,TSPO,TUSC3,CTPS,TLR1,TLR3,EIF5A,TLR4,TLR6,LASS5,TLR7,TLR8,TLR9,CPOX,SPR,NQO1,SPN,NANP,FECH,DARS,FUT10,NR0B1,CHPT1,PYCR1,PLCE1,UCN2,PI4K2A,MVK,GCLC,GCLM,KARS,EIF3C,B3GNT8,EIF3D,EIF3A,EIF3B,EIF3G,B3GNT5,EIF3H,EIF3E,EIF3F,SFTPD,EIF3I,EIF3J,PGGT1B,GAL3ST1,CYP19A1,EEF1A1,MRPS24,CD276,AK5,FOXP3,BRCA1,EIF4B,SLC25A10,EIF4H,LASS1,GLMN,GUK1,HSP90AB1,METAP1,CYP11B2,PPOX,AKT1,PIGK,PIGF,PIGG,ANG,PIGH,POMT1,PIGB,PIGC,TNIP1,LTB,PIGA,PIGZ,HSP90AA1,PIGY,CYP11A1,PIGV,PIGU,CHST3,PIGT,PIGS,MRPS7,INHA,ALK,COQ7,PIGO,EIF4G2,COQ3,UMPS,COQ2,EIF4G3,MAGT1,DGAT2,CHST7,CHST6,CHST9,CHST8,CD81,GHRL,DHPS,TNFRSF8,TYMS,KRT7,ETNK1,HS6ST1,PTS,PTPRC,LIPA,B3GALT2,DEFB103A,LTA4H,IRF4,SLC5A7,LIPC,POFUT1,SCP2 +PWCOMMONS TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_DNA_DEPENDENT.html SLC2A4RG,XRCC6,MED24,HOXD13,MED23,RORB,REST,MED21,ZNF254,MED20,CITED1,CITED2,EPC1,TAF5L,FOXF1,MED26,MED27,FOXF2,PQBP1,VPS4B,ZNF396,PATZ1,IKBKAP,ZNF45,PCBD2,RREB1,RXRA,ZHX1,ZHX2,MECP2,MED12,ZHX3,MED14,MED13,HNF4G,NME2,PTRF,ZNF238,HNF4A,MED16,MED17,SMARCAL1,SHOX,TGIF1,MYBBP1A,TRAPPC2,ZNHIT3,CRTC1,ZNF76,MYEF2,VPS72,FOXH1,HEXIM2,HEXIM1,PIR,ZNF74,VEZF1,TCF4,TCF3,ARHGEF10L,TCF7,UTF1,KLF12,KLF13,MAP2K3,KLF10,KLF11,ESRRG,TFCP2,USF1,TRPS1,MZF1,PARP1,TAF1C,HLF,HNF1B,ELF1,HTATIP2,HNF1A,ELF2,TAF1A,ELF3,ELF4,ELF5,EZH2,SPI1,TP63,DAXX,ZNF345,YBX1,YBX2,ZNF350,RRN3,ZNF148,HSF2,ZNF146,CREG1,BRD7,SPIB,HSF4,MYC,TAF1L,BRD8,BATF3,ATF7IP,ZNF281,MTERF,ZNF282,BRF1,GMEB2,PTF1A,TP53,GTF2H4,NDUFA13,ZNF143,FOSB,TTF2,ARHGEF11,MXD4,JMY,GTF2H1,MYCN,CIAO1,INHBA,EREG,PFDN5,ZNF136,C19ORF2,RUVBL1,NSD1,CLOCK,ZMYND11,ZNF274,CREM,ZNF367,NUFIP1,ZNF35,ZNF177,ZNF174,LIMD1,SUPT4H1,TRIP11,TRIP13,FOXD3,MYF6,ZNF263,IL4,LMX1B,TRIM29,MYF5,TRIM28,TRIM27,TNP1,ELAVL2,PHF12,TRIM24,TRIM22,TP73,ATRX,RPS6KA5,MNAT1,ZNF157,RPS6KA4,PPBPL2,RBAK,FOXE1,TCEB2,TCEB3,PHF5A,TCEB1,NR5A2,FOXE3,NR5A1,MMS19,LMO4,TBP,NR2E3,TCEAL1,CBFB,TGFB1,GTF2E1,GTF2E2,SMARCD2,SMARCD3,MDFIC,SMARCD1,SCRT1,BCL10,ZNF593,POU2AF1,HDAC10,ARID1A,CSDA,JUNB,DDIT3,PA2G4,HIF1A,TCFL5,SMARCE1,SMARCA5,MNX1,TFAP2B,EDF1,TFAP2A,NFE2L1,TFAP2C,NFE2L2,SMARCA1,NFE2L3,SMARCA2,HMGB1,EID1,HMGB2,CNBP,CCRN4L,LITAF,UBE2V1,ABCA2,NR2C2,CXXC1,TROVE2,TCERG1,MEIS2,SMARCB1,RPL6,JUND,TEAD4,SNF8,TAF9,HELLS,TFDP1,TAF2,TRIP4,EPAS1,TAF5,TAF8,NEUROG1,BRIP1,ATF6,HDAC5,HDAC4,ATF5,ATF4,NRF1,HDAC2,GTF2F1,DYRK1B,SMARCC1,ATF7,GTF2F2,SMARCC2,PRKAR1A,ABL1,HDAC8,E2F1,E2F2,E2F3,FOSL2,RSF1,ARID4A,E2F6,PAX5,ZNF202,CTCF,DEK,PAX3,PAWR,PAX2,PAX1,FEV,TMF1,MAX,MAZ,PAX8,LRRFIP1,NFIL3,FOSL1,NFX1,PTGER3,SLA2,ARID5B,ARID5A,CDK9,CDK7,ESR2,RB1,HMGA2,HMGA1,PRPF6,TARBP1,TARBP2,NCOA6,ZFPM2,JMJD1C,CARM1,NFYC,NFYB,NFYA,NR3C1,IVNS1ABP,HIC1,TSC22D1,TFAM,TSC22D3,ORC2L,ECD,GTF3C6,CHD2,CEBPZ,CHD1,NFATC4,GTF3C2,NFATC2,NFATC3,CHD4,GTF3C4,CHD3,NFATC1,MAF,CEBPA,CEBPB,CEBPD,VHL,CEBPG,NFRKB,CREB5,MED30,DBP,ID4,CDX2,FST,HIRA,PTTG1,SIN3A,TRAK1,RARB,SUPT5H,TWIST2,PITX2,TWIST1,YY1,NKX2-8,TAF6L,PPARGC1A,PPARGC1B,UHRF1,PRDM4,MTF1,ABT1,MNT,TGFB1I1,PRDM1,DEAF1,ELL,AFAP1L2,CALR,PLAGL1,DRAP1,HTATSF1,MAML3,DUX1,BCOR,NKX2-5,TCF25,MDFI,KLF5,IKZF3,BMP2,KLF7,MLL,KLF9,SUB1,MAML1,CREBBP,MAML2,SMAD4,RYBP,SMAD3,SMAD2,PMF1,UBP1,NOTCH2,POLRMT,RNF4,TCEB3B,NOTCH4,SUPT16H,JAZF1,TCF19,RBPJ,TCF12,ZFHX3,NCOR1,TCF15,KLF4,BMP6,CCNT2,GTF3A,PPARA,ZBTB32,COPS2,PPARD,COPS5,TBX22,TBX21,PPARG,CCNT1,NFKB1,NFKB2,ZEB1,GLI2,HSBP1,KCNIP3,GLI1,ZBTB38,BLZF1,GFI1B,ASH2L,NR2F2,SNAPC5,CCNK,ZNF354A,POLR1E,TBX10,SNAPC2,CCNH,SNAPC4,SNAPC3,POLR1C,GTF2B,MBD1,SCAP,RBBP8,MED6,CTNNBIP1,MED7,CHMP1A,MED4,GTF2I,ASH1L,RIPPLY1,SRCAP,TBX19,MED1,POLR2G,POLR2F,ETV7,POLR2E,NMI,POLR2L,POLR2K,POLR2J,POLR2I,EHF,ZBTB16,POLR2D,POLR2C,POLR2B,SUFU,MRPL12,SQSTM1,NR1D2,GATAD2A,PEX14,ETV1,MLLT1,HSF2BP,BCL6,MLLT6,POLR3G,POLR3H,TBX3,POLR3K,TBX2,HCLS1,TBX5,AFF4,ILF3,SNAI2,STAT1,POLR3C,STAT3,SOD2,STAT2,PREB,UBTF,ILF2,NEUROD2,PHF21A,PBX1,RBM14,PBX3,PBX4,MYOD1,THRA,CRABP2,FOXO1,FOXO3,FOXO4,HOXC6,GATA1,GATA2,ATOH1,GATA6,GATA3,TARDBP,HOXC5,GATA4,TFB2M,MYST2,GABPB2,MYO6,FOXN1,ZNF189,NR0B2,ARNTL,ELL3,NR0B1,TRERF1,FOXN3,AHR,ELL2,ADRM1,TIAL1,TFAP4,SOX5,ELK1,NKX3-2,BTF3,SKIL,RUNX1,RUNX3,RNF14,SREBF1,MAFF,NFE2,SAP18,SNW1,GSC2,FOXP3,BRCA1,SREBF2,PSMC5,GCM1,DNMT1,MAFA,SOX21,POU6F2,NR6A1,FOXK2,BUD31,MEN1,FUBP1,FOS,ANG,POU5F1,POU4F2,SOX18,POU4F1,MKL2,ALX1,ELP4,ELP3,NANOG,ELP2,SP100,LDB1,SOX12,MSC,UBN1,NRIP1,CD3EAP,BPTF,NRL,ZMIZ2,MDM2,MDM4,CUX1,ZFP161,SUPT3H,GLIS3,ING4,TNF,ING2,GLIS1,HCFC1,NFIX,HCFC2,POU1F1,TCF7L2,TNFRSF1A,NPAS2,ERCC6,HAND1,HAND2,POU2F3,POU2F2,NFAT5,GFI1,ERCC3,APEX1,ERCC2,ENO1,ERF,DTX1,SOX30,SIRT4,SIRT5,CBY1,SIRT1,IRF9,SP1,SP2,IRF7,SP3,DR1,THRAP3,IRF8,SP4,IRF1,IRF2,IRF3,NFIC,CRK +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MYL6,KCNH1,MYOD1,MYEF2,CACNB2,TTN,TGFB1,MYL6B,MKL2,CHRNA1,IFRD1,BOC,BMP4,MYF6,COL4A4,FOXL2,TBX3,ACTA1,MYF5,TAZ,CENPF,NRD1,MYOZ1,CBY1,MBNL1,CSRP3,SIRT2,HDAC5,HDAC4,KRT19,NOTCH1,MAPK12,SVIL,MYH11,CACNA1H,UBB,HDAC9,ADAM12,IGFBP3 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html XRCC2,KNTC1,TTK,PKMYT1,AURKA,CDC16,TTN,TGFB1,RAD21,DDX11,CDKN2B,TARDBP,STAG3,CCNA1,CCNA2,CDCA5,ANAPC5,RAN,RINT1,ANAPC4,LIG3,ESPL1,PIM2,DCTN3,BOLL,DCTN2,RAD1,REC8,MAD2L1,ZWINT,CLIP1,AKAP8,MAD2L2,NEK6,RAD17,PPP5C,PAM,NEK2,MRE11A,ANLN,ANAPC10,CHEK1,ANAPC11,RCC1,SYCP1,PIN1,DUSP13,RAD51L1,NPM2,PBRM1,RAD51L3,EGF,GML,SSSCA1,CDC23,NDC80,SUGT1,RAD54L,CDC27,ATM,NOLC1,PLK1,RAD54B,SMC1A,KIF22,NBN,KIF25,KIF2C,TRIAP1,PCBP4,PRMT5,TGFA,ZW10,TAF1L,KIF11,KIF15,TPX2,NUSAP1,RAD52,UBE2C,RAD50,RAD51,CHMP1A,EREG,TOP3A,BUB1B,CHFR,DMC1,KPNA2,PML,CETN1,SPO11,BRSK1,NUMA1,NCAPH,HSPA2,BUB1,CD28,PDS5B,MSH5,MSH4,CENPE,BIRC5,CDC25C,SMC3,SC65,SMC4,CDC25B,MPHOSPH9,EPGN,CIT,MPHOSPH6 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html RTN4,BMP10,ACVRL1,BCAR1,ABI3,PTEN,SHH,VCL,MIA3,TDGF1,ANGPTL3,LAMB1,EGFR,PARD6B,GTPBP4,NF2,TBX5,SPHK1,NF1,NEXN,PLG,THY1,CDH13,ALOX15B,CLIC4,AMOT,TRIP6 +PWCOMMONS PROTEIN MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MATURATION.html NCSTN,APH1A,PSEN1,ATP6AP2,REN,PSEN2,PSENEN,STUB1,SRGN,AIP +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html MOCOS,ME1,COASY,GCLC,ALDH1L1,PGD,ACOT2,ACOT1,GCLM,PDSS1,PDHB,ACOT4,PDSS2,GLRX2,ACOT9,GPX1,MTHFD2,ACOT12,C16ORF7,GSTA1,MOCS2,ACO2,FTCD,ACLY,COQ7,SOD1,OXSM,SDHA,COQ3,SDHB,COQ2,GLYAT,PGLS,NNT,MLYCD,SDHC,SDHD,CTNS +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html PARD6A,PARD6B,TLN1,GJD3,TLN2,PRKCI,GJA1,GJA4,GJA5,VCL,GJC1,CD9,TJP1,ITGA6,LAMC1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html ALS2,ZAK,EDN2,TNFSF15,PKMYT1,MBIP,TLR6,MAP3K7,MAP3K6,MAP3K5,CDKN2A,MAP3K4,DIRAS3,CDKN2B,CDKN2C,MDFIC,CDKN2D,MAP3K9,TDGF1,SPRED2,CHRNA7,GNG3,SPRED1,EGFR,ANAPC2,DBNL,GTPBP4,C5AR1,RBL2,MADD,PIK3CB,KIAA1804,RBL1,PICK1,THY1,MAP4K5,PLCE1,CARTPT,TRAF2,CDK5R1,CDK5R2,ADORA2B,PTPLAD1,ERBB2,MAP4K1,CHEK1,PYDC1,CCNG1,CDC37,SERINC2,SERINC5,HEXIM2,HEXIM1,SERINC1,DUSP16,ADRA2A,ADRA2C,TRAF7,TRAF6,EGF,MDFI,TAOK2,MAP2K3,PIF1,DUSP22,TPD52L1,MALT1,CDKN1C,CBLC,RGS3,RGS4,CCNT2,C13ORF15,CCNT1,PTEN,PDCD4,LATS1,DAXX,LATS2,CAMKK2,CCNE2,PAK2,ANG,CXCR4,TGFA,SHC1,CDK5RAP3,PAK1,CDK5RAP1,FGF2,SERTAD1,CDC6,IRAK1,CCNK,CCDC88A,HERC5,PKN1,RB1,CDK7,GTF2H1,CARD10,GRM4,TARBP2,PROK2,NCK2,CCND1,ADRB2,EREG,CCND3,CCND2,LAX1,CHRM1,HIPK3,CD81,GADD45G,MAP3K10,ERN1,GHRL,GADD45B,GADD45A,MAP3K13,PRKD3,GAP43,MAP3K11,CKS1B,PARD3,C5,FPR1,TRIB3,BCCIP,SFN,TRIB2,TRIB1,AZU1,TSPYL2,MAP3K2,CD4,CD24,PPAP2A,APC,GPS1,PTPRC,NF1,CRIPAK,CDKN3,SOD1,CDC25C,CDC25A,GPS2,MNAT1,DUSP2,PRLR,EPGN,CKS2,DUSP9,DUSP8,DUSP6 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html KCNH1,BMP4,TBX3,ACTA1,MYEF2,MYOZ1,MBNL1,TTN,KRT19,NOTCH1,MAPK12,MYH11,CACNA1H,ADAM12,BOC,IGFBP3,IFRD1 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html RTP3,TAS2R16,TAS2R14,RTP4,TAS2R4,TAS2R5,TAS2R3,TAS2R43,TAS1R3,TAS1R1,TAS1R2 +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html ALDOA,GAPDHS,PGLS,PFKL,ECD,PGD,ALDOB,PFKFB1,HK1,TKTL1,PFKM +PWCOMMONS INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_TRANSPORT.html RAB3GAP2,LTBP2,USE1,MXI1,SSR1,BAK1,GBF1,RAE1,HOMER3,APOE,TRAK1,VPS4B,TLK1,RPL11,KIF13B,OPA1,KIF5B,CRYAA,KIF5A,CRYAB,VPS45,MYH7,MYH6,OPTN,MYH9,ERGIC1,ERGIC2,VTI1A,ERGIC3,CLEC4M,UXT,NPC1,KRT18,NPC2,ATP2C1,PEX26,F2,TBRG1,RAB14,MYBBP1A,RTP3,KIF4A,RTP4,NFKBIE,MTX2,RER1,MYO9B,BCL2L1,CALR,UHMK1,CDC37,CD74,STX18,STX16,DUSP16,TMED10,SEC23IP,TRAM1,MDFI,KIF3B,NXF5,SMAD3,ARFIP1,TINAGL1,HNRNPA1,ABCG1,NFKBIL2,CBLB,TRPS1,CD209,BET1L,GOSR2,LGTN,GOSR1,RERE,ARSB,HTATIP2,PDIA3,TIMM17A,TIMM17B,AP3S2,BNIP3,GLI3,COPB2,COPB1,ZFYVE9,ANP32A,AP3B2,SLC25A1,GOLGA5,KDELR1,AP3B1,TOMM34,DYNC1I1,STX5,KDELR2,RPGR,TP53,FLNA,ANKRD27,NUP205,TOMM22,NUP107,STEAP2,BET1,EEA1,NUP214,NAGPA,PEX19,SQSTM1,BCL2,DDX19B,PEX16,BCL3,PEX14,AP3D1,BCL6,PEX13,SNAP23,PEX12,EXOC5,PEX10,APBA1,RAB2A,FYB,UPF2,UPF1,NLGN1,PPP1R10,SELS,GABARAP,COG3,YWHAH,COG7,RAB35,GSK3B,NLRP12,YKT6,SSR2,COG2,BARD1,NCBP2,TSPO,NRBP1,XPO6,AP1G1,LMAN2L,EIF5A,TNFSF14,MIPEP,CSPG5,AGXT,TGFB1,KLHL2,STARD3,DDX25,SCAMP1,MCM3AP,NUP133,SCAMP3,SCAMP2,MYO6,STAP1,NUDT4,ERP29,NUPL2,TNNT2,DDX39,COPG2,RPAIN,LYST,LRPPRC,BAT1,MYL6,DERL2,DERL1,STX7,NAPG,COPZ1,ABCA2,CTSA,NAPA,ABCA1,LMAN1,NPM1,DOPEY2,DOPEY1,SMG6,SMG5,MYO1E,SMG7,SMG1,ICMT,MALT1,SNAPIN,NFKBIL1,TRNT1,PPIH,TSC1,VCP,RHOT1,PTTG1IP,RHOT2,TRIP6,XPO7,SLC25A15,MYH10,HPS4,PEX6,PEX3,PEX7,AKT1,PEX1,ZFYVE16,RHOB,NCKIPSD,RANBP2,TPR,KPNB1,ZW10,KHDRBS1,HSP90AA1,NLRP3,TIMM23,TIMM44,M6PR,KIF1C,MFN2,KIF1A,ADRB2,ATG4D,KIF1B,ATG4C,ATG4B,ATG4A,ARCN1,C3ORF31,KPNA6,TOM1,KPNA5,KPNA4,KPNA3,KPNA2,KPNA1,COPE,NUP98,TNF,AP1M2,NUP160,CDH1,SEC63,CEP57,AP3M1,MYL6B,TAP2,SEC22A,SEC22B,SCG5,CCS,SEC22C,APPBP2,NEFL,TNPO1,NF1,MON2,ATXN1,MAP1S,TRPC4AP,FAF1,GGA1,F2R +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html RAB3GAP2,TSPO,XPO6,LTBP2,AP1G1,TNFSF14,EIF5A,MIPEP,MXI1,AGXT,KLHL2,TGFB1,SSR1,HOMER3,TRAK1,TLK1,RPL11,KIF13B,MCM3AP,MYO6,STAP1,VPS45,ERP29,OPTN,NUPL2,RPAIN,F2,PEX26,RTP3,DERL2,RTP4,DERL1,NFKBIE,CTSA,CALR,CD74,UHMK1,CDC37,NPM1,DUSP16,TRAM1,SEC23IP,MDFI,SMAD3,SNAPIN,ICMT,ARFIP1,NFKBIL1,TRNT1,NFKBIL2,PPIH,CBLB,VCP,TRPS1,PTTG1IP,LGTN,XPO7,TRIP6,RERE,PDIA3,TIMM17A,HPS4,TIMM17B,AP3S2,PEX6,PEX3,GLI3,PEX7,AKT1,PEX1,ZFYVE16,ZFYVE9,NCKIPSD,RANBP2,TPR,KPNB1,KDELR1,TOMM34,AP3B1,KDELR2,RPGR,TIMM23,NLRP3,TIMM44,FLNA,MFN2,ATG4D,ATG4C,ATG4B,NUP205,ATG4A,C3ORF31,ARCN1,KPNA6,TOMM22,KPNA5,KPNA4,KPNA3,KPNA2,KPNA1,TNF,AP1M2,CDH1,SEC63,NAGPA,NUP214,PEX19,CEP57,AP3M1,TAP2,PEX16,BCL3,PEX14,AP3D1,SCG5,BCL6,PEX13,PEX12,APPBP2,PEX10,TNPO1,APBA1,FYB,NF1,NLGN1,PPP1R10,GABARAP,SELS,YWHAH,COG7,GSK3B,NLRP12,TRPC4AP,FAF1,GGA1,SSR2,F2R,COG2,BARD1 +PWCOMMONS PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/PROGRAMMED_CELL_DEATH.html CIAPIN1,BTK,MAGED1,CUL3,CUL2,AGTR2,CUL5,MAP3K5,FAS,DDAH2,CUL1,CRTAM,YARS,OPA1,CRYAA,BRAF,CRYAB,ESPL1,BCL2L11,BCL2L10,NME5,MAPK1,NME2,SSTR3,NME3,IFNB1,NME1,F2,MAPK8,MYO18A,UNC13B,TNFRSF6B,NFKBIA,BCL2L2,PPT1,BCL2L1,HSPA1B,PEA15,IFNA2,IL17A,DIABLO,PHB,SPHK1,DUSP22,GAS2,FXR1,VDAC1,BFAR,EI24,RTN4,HTATIP2,NUAK2,PDIA2,TP63,BNIP3,ZNF346,DAXX,BNIPL,MAGEH1,CLN3,AIFM3,AIFM2,AIFM1,TP53,NDUFA13,JMY,INHBA,SERPINB9,BNIP1,BNIP2,RIPK1,SERPINB2,IL12A,IL12B,ALOX12,GPR65,PML,RTKN,PDE1B,PTK2B,PPP2CA,PCSK9,RASA1,PHLDA2,IL4,IL3,IL6,IL7,KIAA1967,TP73,PLG,NAE1,CDH13,GSK3B,BNIP3L,BARD1,IL2,ZAK,GRIK2,TNFSF15,TNFSF14,TNFSF12,TNFSF18,CRADD,TGFB1,TGFB2,NLRC4,CDKN2A,CDKN2C,CDKN2D,TIA1,TDGF1,IL1B,ZNF443,DAP,API5,IL1A,CIB1,BCL10,NUDT2,DFFA,RELA,DFFB,CECR2,FADD,IL24,HBXIP,EP300,TNFAIP8,HSPB1,HMGB1,CCL2,ADORA2A,ADAMTSL4,PRUNE2,DOCK1,AKT1S1,TRAF7,DYRK2,DDX41,ARHGDIA,ANGPTL4,TRAF3,TRADD,CDKN1A,HDAC3,TNFSF10,CDKN1B,HDAC1,VCP,IKBKG,ADRA1A,HSPD1,ABL1,DNAJB6,E2F1,IER3,DEDD,PRDX2,PAX3,PAWR,CASP6,CASP3,CASP4,CASP9,RPS3A,IAPP,CLCF1,PAX7,CASP7,CASP8,RHOB,NDUFS3,CASP2,NDUFS1,PPP2R1A,CYCS,IFI16,CDK5,LCK,ERN1,ERN2,ACVR1,DCC,DPF2,BCLAF1,ASNS,TRAIP,DPF1,IGF1R,DAD1,CD2,HSPA9,COL4A3,CEBPG,NF1,ANXA1,RAF1,BAD,TNFSF9,ANXA5,ANXA4,TNFSF8,HSP90B1,CUL4A,BAX,APAF1,CGB,CADM1,SNCA,DNAJB13,ADORA1,BAK1,APOE,TXNL1,SGPL1,CD3G,PIM1,CD38,KRT18,CD40LG,ALOX15B,TXNDC5,VEGFA,SIVA1,LALBA,CDK5R1,STK17B,CD70,STK17A,CHEK2,CALR,CD74,PLAGL1,C16ORF5,HIP1,TP53BP2,BECN1,LGALS1,SRA1,CIDEB,CIDEA,SMAD3,TPD52L1,TAX1BP1,CIDEC,NCKAP1,SFRP5,NOTCH2,RNF7,SFRP1,NUP62,PPARD,FASTK,BCAR1,LY86,NFKB1,PTEN,GPX1,TRIAP1,BAG4,BAG1,TOP2A,DEDD2,DHCR24,GZMA,LGALS12,GZMB,AMIGO2,PROK2,GRM4,PSEN1,TNFRSF10D,PSEN2,MAP3K10,AVEN,SIAH1,SEMA4D,GADD45B,GADD45A,BID,YWHAZ,ATG12,GULP1,SFN,MIF,BCL2,BCL3,SPATA4,AATF,BCL6,CD27,CD28,TBX3,TBX5,BIRC6,BIRC5,BIRC3,STAT1,SOD1,IFT57,EEF1E1,BIK,CD14,TSPO,MAEA,TLR2,CBX4,FOXO1,EIF5A,PMAIP1,FOXO3,GDNF,MRPS30,SMNDC1,CASP8AP2,TPT1,ACIN1,MX1,SOCS2,SOCS3,MADD,BCL2A1,HRK,STK4,AHR,STK3,TIAL1,RIPK3,ERC1,GCLC,MCL1,FIS1,CSE1L,ALB,NPM1,MTCH1,GLO1,GML,BMF,SRGN,RUNX3,PTPN6,CFLAR,CARD8,HTT,MALT1,WRN,BRCA1,BBC3,RHOT1,CYFIP2,RHOT2,PDCD5,PDCD6,SST,IFI6,PDCD7,DAP3,FASLG,PDCD1,PDCD2,ACVR1C,AKT1,ACVR1B,BOK,PCBP4,CXCR4,LTA,PRKCA,NOL3,INHA,DAPK2,NLRP3,PRKCE,NCR1,NLRP2,DAPK3,NLRP1,PROC,DAPK1,TNFRSF9,BTG1,HIPK3,CFL1,SCIN,FAIM3,GHRL,NAIP,MDM4,CTSB,PPP1R15A,GSTP1,ING4,PRKCZ,TNF,TNFRSF25,TNFRSF8,UTP11L,ERCC5,MOAP1,SH3GLB1,PTH,TNFRSF18,PYCARD,ERCC3,SCG2,ERCC2,PIK3R2,PTPRC,IL2RB,FOXL2,DNM1L,IL2RA,UBE4B,SAP30BP,CASP10,SON,MAP1S,BRE,MPO,PPP1R13B,TIAF1,IGFBP3,F2R +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html BBS4,CROCC,CKAP5,CETN3,BRCA2,CETN1,CP110,UXT,SASS6,NDE1,CEP250,SAC3D1,CNTROB,NPM1,TUBE1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html TM7SF4,MMP9,SPI1,JAG2,ZNF675,FOXO3,TPD52,SPINK5,IL10,SART1,IL31RA,TGFB2,ACVR1B,CDC42,ALAS2,ACIN1,MYST1,PRL,MYST3,KIRREL3,LYN,CD3D,IL27,LDB1,TAZ,CDK6,IFI16,INHA,NFAM1,SOCS5,MYH9,INHBA,ACVR2A,RPS19,LCK,SCIN,NCOA6,LRMP,CARTPT,IL12B,NHEJ1,RAB3D,CSF1,RAG1,MAP4K2,MAP4K1,PF4,ZBTB16,MLF1,CALCA,SNRK,RASGRP4,ZAP70,CD4,DYRK3,RUNX1,BLNK,IL4,PTPRC,MLL,MAFB,IL7,CEBPG,HCLS1,MAL,CD1D,HDAC5,NOTCH2,HDAC4,ETS1,NOTCH4,CD79A,HDAC9,IL2 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIF23,SEPT5,LIMA1,PRC1,TTK,LATS1,CXCL12,HOOK3,KIF2C,PEX1,GSN,KIFAP3,MAPT,TUBG1,KIF13B,DYNC1I1,STX5,ARHGEF2,CCDC88A,KIF11,OPA1,KIF5B,RAN,KIF5A,NUSAP1,MID1IP1,MARK4,NEBL,NCK2,UXT,KIF1A,KIF1B,TPPP,NCK1,CNTROB,LRMP,TMSB4Y,MAPRE1,STMN1,KPNA2,LRPPRC,MAP3K11,SNAP29,KIF4A,AP1M2,KATNB1,ARF6,RCC1,CDC42EP2,TUBGCP6,SORBS3,TUBGCP5,TMED10,CLASP1,PAFAH1B1,SNAP23,CLASP2,NEFL,RASA1,APBA1,ARHGEF10L,APC,CDC42EP5,KIF3B,NF2,RNF19A,CKAP5,NLGN1,MID1,TUBGCP2,CENPJ,SMC3,TSC1,MAP1S,CAPG,RHOT1,RHOT2,MAP7,SMC1A,YKT6 +PWCOMMONS REGULATION OF AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_AXONOGENESIS.html RTN4,AMIGO1,KLK8,ROBO1,APOE,MAPT,ROBO2,LRRC4C,SLIT2,THY1 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html CCKAR,ENPP1,GNAI2,NUAK2,PPARG,ASNS,ENSA,GCGR,CDKN2B,RASGRP4,ALB,CDKN2D,PCSK9,OGT,SREBF1,STC2,FADS1,TP53,LEP,PPP1R9B,CDKN1A,SSTR2,CHMP1A,TULP4,RPS19,NPY,SSTR1,GIPR,CARTPT,GHRL,STC1,GHSR,SST +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html FOXL2,AIFM1,DFFA,DFFB,CYCS,CIDEA,NDUFA13,BNIP3,CECR2,TPD52L1,PPT1,SOD1,MOAP1,CASP3,CDKN2A,BAX,ACIN1,TOP2A,DEDD2 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html DPF2,BID,TNFRSF25,DEDD,FASTK,DAXX,ADORA1,CRADD,BTK,MAP3K5,CASP8AP2,PTH,DIABLO,DAP,DEDD2,PRKCA,CFLAR,NDUFA13,FADD,DAPK1,CD38,SSTR3,BAX,RIPK3,PDCD6,SST,DAP3 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html GCLC,HS3ST5,NDST1,CHST3,CDO1,GCLM,GLCE,CHST7,CHST6,CHST12,CHST11,CHST13,MAT2B,HS6ST1,EXT1,HS3ST3B1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html CGB,HMGCR,JAG2,DNAJB13,PTTG1,BMP15,CSNK2A2,PRKACG,DDX25,OR7C1,GDF9,CCNA1,PICK1,LIG3,SPA17,BCL2L10,SPAG9,NME5,REC8,SYCP3,TCFL5,SPAG6,SPAG4,TESK1,TESK2,BPY2,WFDC2,XRN2,PNMA1,DEAF1,CHEK1,BCL2L2,SYCP1,DAZAP1,RPL10L,OAZ3,DUSP13,NPM2,HOXA10,AXIN1,ADAM28,ABCB9,ADAM29,MEA1,GGN,RBMY1A1,CDY2B,TSGA10,VCX,INSL3,PRKAG1,DEDD,NR6A1,MOV10L1,YBX2,PARN,DYNLL1,SERPINA5,RPL39L,KHDRBS3,FOXJ1,HIST1H1A,MORC1,FSHR,THEG,VCX3A,PROK2,HIST1H1T,VCX3B,MAST2,EREG,ADAM18,IFT81,RUVBL1,DMC1,FSHB,DNAH9,H1FNT,TSPY1,USP9Y,USP9X,GPR64,SPO11,CCT6B,CDYL,SPANXA1,HSPA2,CEP57,SPAG11B,LEFTY2,HSF2BP,SPATA4,DAZL,PPAP2A,PPAP2B,BRD2,SOX30,TRIM27,TNP1,MTL5,RACGAP1,SOD1,BAX,MYCBPAP,PRM1,NLRP14,PTCH2,PRM2,BMPR1B,CDY1,TSSK3,TSSK6,TOB2 +PWCOMMONS RESPONSE TO TOXIN http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TOXIN.html GLYAT,CES1,BCL2,BAX,AS3MT,DPYS,BPHL,NQO1,PDZD3,MPST +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html TNF,UBE2V1,PRDX3,DPH3,NOD2,NLRC3,NPM1,PYCARD,ABRA,CAMK2A,BCL10,CEBPG,RELA,EDA2R,NFAM1,JMY,UBE2N,PRKCQ,CARD11,EP300,AKTIP,NME1,EDF1,TSSK4,IKBKB,ERC1,EDA,MAP3K13 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html BNIP3,PPT1,PMAIP1,MTIF3,IRAK3,CASP3,MOAP1,CDKN2A,MAZ,SET,HRSP12,NRG1,FOXL2,UPF1,MTERF,DFFA,GZMA,AIFM1,DFFB,CYCS,TNP1,CIDEA,CECR2,GZMB,TPD52L1,SOD1,ETF1,HMGA1,TTF2,SMARCE1,BAX,MTRF1,SUPT16H +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html TM7SF4,MMP9,SPI1,JAG2,ZNF675,TNFSF13,FOXO3,TPD52,SPINK5,SART1,TGFB1,IL10,IL31RA,TGFB2,CDC42,ACVR1B,ALAS2,ACIN1,MYST1,PRL,MYST3,KIRREL3,LYN,CD3D,IL27,LIG1,LDB1,TAZ,LIG3,CDK6,INHA,NFAM1,SOCS5,IFI16,MYH9,ACVR2A,INHBA,RPS19,CD40LG,LCK,SCIN,NCOA6,CARTPT,LRMP,IL12B,NHEJ1,RAB3D,CSF1,MAP4K2,RAG1,MAP4K1,PF4,ZBTB16,MLF1,CALCA,SNRK,RASGRP4,ZAP70,CD4,DYRK3,RUNX1,BLNK,IL4,PTPRC,MLL,MAFB,IL7,HCLS1,CEBPG,MAL,TBX1,CD1D,HDAC5,NOTCH2,HDAC4,ETS1,NOTCH4,CD79A,HDAC9,IL2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ALS2,XRCC4,GNA15,ADORA3,ZAK,ADCY7,EDN2,TNFSF15,PMAIP1,TLR6,GHRHR,MAP3K7,MAP3K6,NLRC4,MAP3K5,CDKN2A,MAP3K4,CASP8AP2,MDFIC,MAP3K9,APOA5,TDGF1,RGN,CHRNA7,PSENEN,GNG3,EGFR,DBNL,C5AR1,PIK3CB,MADD,KIAA1804,PICK1,THY1,BCL2L10,TNNT2,CRHR1,PLCE1,MAP4K5,IFNB1,F2,CARTPT,GLP1R,ACR,TRAF2,ADORA2B,DRD5,ERBB2,PTPLAD1,APOC2,MAP4K1,ADCYAP1,ADRB3,SERINC2,SERINC5,SERINC1,MTCH1,ADRA2A,DIABLO,ADRA2C,TRAF7,EGF,TRAF6,HIP1,MDFI,CARD8,TAOK2,MAP2K3,SMAD3,MALT1,TPD52L1,ATP7A,VCP,BBC3,AVPR1B,AVPR1A,ABL1,ABL2,DAXX,EDNRA,CASP9,ANG,CXCR4,NMUR1,NMUR2,TGFA,SHC1,CAP1,PAK1,PLCB2,FGF2,IRAK1,CCDC88A,AIFM3,CCKBR,RALBP1,CYCS,TP53,PKN1,ARHGAP27,NLRP3,NLRP2,CARD10,UBE2N,PROK2,GRM4,ADRB2,CCND1,ADRB1,EREG,PSEN1,GNAQ,CCND3,CCND2,CHRM1,CD81,GADD45G,GIPR,LCK,PSEN2,ERN1,MAP3K10,GHRL,GNAS,GADD45B,MAP3K13,GAP43,PRKD3,MAP3K11,CALCR,AVPR2,PARD3,APH1A,C5,FPR1,AZU1,CALCA,MOAP1,MAP3K2,CD4,CD24,PPAP2A,COL4A3,FOXL2,CAP2,NF1,SOD1,STAT1,NCSTN,P2RY11,PRLR,EPGN,BAX,IFT57,PPP2R4,APAF1,F2R +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF2C1,EIF5,EIF5A,MTIF2,MTIF3,PAIP2B,EIF3C,EIF3D,EIF3A,EIF3B,EIF3G,EIF3H,RPS3A,EIF3E,EIF1AX,EIF3F,EIF1,DAZL,EIF3I,EIF3J,EIF2B2,EIF2B3,EIF2B4,EIF2B5,DAZ1,PAIP2,PAIP1,EIF2S3,EIF1B,EIF2B1,BOLL,EIF4B,EIF4G2,EIF4G3,EIF4A2,EIF4H,HSPB1,EIF2AK3,EIF2AK4 +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html UNC119,RP1,TRPC3,OPN1SW,NR2E3,ABCA4,SAG,PITPNM1,PDE6B,PDC,GRK1,OPN4,RHO +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html BMI1,MDFI,DVL2,TBX3,LMX1B,TRIM14,SMAD2,GLI2,T,ACVR2B,TDGF1,RIPPLY1,PTCH1,PBX3 +PWCOMMONS ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html CROCC,MPV17,VPS4B,STAG3,TLK1,TLK2,CDCA5,OPA1,KIF5B,ROCK1,KIF5A,KIF5C,MYH7,ESPL1,MYH6,MYH9,MARK4,PCLO,MARK1,THY1,UXT,RPS14,ZWINT,SDAD1,KIF4A,MTX2,ARF6,PPT1,BCL2L1,RCC1,CDC42EP2,RAC3,RAC1,DULLARD,SEC23IP,ARHGEF10L,CDC42EP5,KIF3B,NPLOC4,KIF3A,TAOK2,PHB,NDC80,SYNE1,CDC42BPG,NOLC1,LASP1,CDC42BPA,MAP7,POP4,CDC42BPB,LIMA1,NUAK2,AP2S1,EZH2,NAP1L1,BNIP3,NAP1L3,EIF2A,NAP1L2,LATS1,NAP1L4,KISS1,NUBP1,MAP1LC3A,DYNLL1,MAPT,ALS2CL,CLN3,STX5,ARHGEF2,MTERF,AIFM2,ACTA1,EXOSC7,AIFM1,TP53,EXOSC2,NDUFA13,ARHGEF17,EXOSC3,FLNB,FLNA,ELMO1,NCK2,MAST1,BNIP1,NCK1,LRMP,TMSB4Y,NSD1,CLN5,CLN6,SNAP29,PML,ABI2,POT1,SORBS3,NAGPA,NUMA1,EZR,SORBS1,SUPT4H1,SNAP23,WIPF1,RASA1,RNF19A,TNP1,CRIPAK,RICTOR,MID1,RPS6KA5,RAB22A,WHSC1L1,AMOT,YKT6,MTSS1,PRC1,MIPEP,CXCL12,CDKN2A,PACSIN2,ANK3,SMARCD1,HIRIP3,TUBG1,ATG9B,ATG9A,DFFA,DFFB,MTA2,TAZ,HDAC10,CECR2,ARID1A,HDAC11,ARPC1A,WBP2NL,SYCP3,SMARCE1,SMARCA5,TESK2,STMN1,LRPPRC,FGD2,FGD1,PAM,BBS4,HMGB1,CCL3,MRAS,ANLN,ARPC4,ARPC5,ABCA1,SYCP1,DOCK2,ADRA2A,TUBE1,DOPEY2,DOPEY1,FGD5,FGD6,ASF1A,HELLS,FGD3,FGD4,ARHGDIB,EHMT1,FSCN2,SMG6,MYO1E,FSCN1,EPB49,SUV39H2,EPS15,TRNT1,HDAC5,HDAC4,HDAC3,HDAC2,TSC1,HDAC1,SMARCC1,SMARCC2,MYH11,SPTA1,VCX,ABL1,HDAC8,DNAJB6,HDAC6,MYH10,KIF23,RHOJ,PTGES3,KIF25,NBN,RSF1,PREX1,PEX6,PEX3,PEX7,NDUFS7,CDC42,KIF2C,NDUFS5,NDE1,CASP3,NDUFS4,DES,PEX1,DKC1,PRMT7,PRMT8,NDUFS8,RHOA,RHOF,DLG1,KIF11,LIMK1,CYCS,NUSAP1,MID1IP1,TIMM23,HMGA2,NEXN,HMGA1,KIF1A,SASS6,ATG4D,KIF1B,ATG4C,ATG4B,ATG4A,GAA,MAPRE1,WASL,CARM1,AP1M2,NDP,TFAM,PAFAH1B1,TERF2,NF2,NF1,SC65,SMC3,FBL,SMC4,BAX,PRKG1,HOOK3,BAK1,DDX11,APOE,KIFAP3,PLA2G1B,DYNC2H1,KIF13B,PLD2,RAN,OPTN,TAF6L,PPARGC1A,RND3,REC8,KRT19,RND1,RFC1,HUWE1,ATP2C1,CNTROB,PEX26,DBN1,CLCN3,MRE11A,MYO9B,KRT20,ACD,SAC3D1,DMD,TMED10,PBRM1,HIP1,MSTO1,CREBBP,ARFIP2,CIDEA,CDC23,MYOZ1,TPD52L1,POLRMT,SUPT16H,PYY,CHAF1A,GHSR,CHAF1B,ARSB,WASF3,TIMM17A,BCAR1,MYO7A,WASF1,WASF2,TIMM17B,TERF2IP,GPX1,PDPK1,CEP250,SLC25A1,GOLGA5,COX18,TOP2A,DEDD2,TOMM34,DYNC1I1,RBBP4,SLC25A4,VIL1,RAD50,CHMP1A,TOMM22,MAP3K12,MAP3K11,BID,CXCL1,SHROOM1,SHROOM2,PLEK2,CETN3,CETN1,SFN,NCAPH,MRPL12,SET,PEX19,BCL2,PEX16,PEX14,ABCD3,PEX13,ACTL6A,PEX12,PEX10,APBA1,PDS5B,NASP,NLGN1,CP110,SOD1,MIS12,CAPG,KPTN,RBM14,GOLGB1,COG2,SEPT5,TSPO,TTK,PMAIP1,TTN,AGXT,STARD3,TFB2M,ACIN1,MYST1,MYST4,MYST3,SATB1,MYO6,RRP9,NEBL,TNNT2,DST,MYL6,SSH1,SSH2,KATNB1,LLGL1,FIS1,NPM2,NPM1,CLASP1,CLASP2,SRGN,CKAP5,PIF1,SPTBN4,BRCA2,EVL,BBC3,RHOT1,RHOT2,SMC1A,SLC25A15,IFI6,ARHGAP10,HPS4,HPS1,TIMM50,DSTN,ARHGAP4,ANG,GSN,PAK1,KLHL20,TERT,ZW10,CCDC88A,HSP90AA1,TIMM44,MFN2,UBE2N,BPTF,TPPP,SCIN,CFL1,C3ORF31,GHRL,KPNA2,H1FNT,DTNBP1,KRT9,TYMP,MOAP1,TUBGCP6,TUBGCP5,MYL6B,SAFB,CNN2,KRT3,ERCC4,TINF2,NEFL,ERCC1,GEMIN4,APC,FOXL2,TNXB,DNM1L,MSH3,MSH2,SIRT4,SIRT5,CENPE,RACGAP1,SIRT1,CENPJ,TUBGCP2,SIRT2,CENPH,DIS3,TMEM48,MAP1S,ATXN7,TEP1,CRK,TSSK6 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html NBN,ZAK,AIF1,RPRM,FOXO4,LATS1,TGFB1,LATS2,CUL3,CUL2,CUL5,CDKN2A,CDKN2B,PCBP4,CDKN2C,CDKN2D,RHOB,CDK5RAP1,MYC,MAP2K6,CUL1,DLG1,KHDRBS1,TP53,TBRG4,INHA,JMY,MFN2,PPM1G,INHBA,DHRS2,EIF4G2,PA2G4,CHMP1A,ALOX15B,BTG4,TBRG1,BTG3,ERN1,FOXC1,GADD45A,PPP1R15A,ING4,PPP2R3B,STK11,IFNW1,ZBTB17,SESN1,UHMK1,MLF1,PLAGL1,HEXIM2,HEXIM1,CDC123,RUNX3,APC,BMP4,BMP2,IL8,TP53BP2,GMNN,SMAD3,GAS1,CDKN3,GAS7,CDKN1C,PPP1R9B,NOTCH2,CDKN1B,CUL4A,MAPK12,RASSF1,MYO16,PPP1R13B,BMP7,APBB2,HPGD,APBB1 +PWCOMMONS HETEROPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HETEROPHILIC_CELL_ADHESION.html AMIGO1,AMIGO2,REG3A,AMIGO3,CADM3,PVRL1,CADM1,CD209,LGALS7,CD164 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html CDC6,NBN,ZAK,HUS1,RINT1,PML,TIPIN,RAD9A,CHEK1,CHEK2,ATR,BRSK1,FOXN3,NEK11,NAE1,CDT1,RAD1,TRIAP1,PCBP4,GML,ATRIP,CCNA2,RAD17 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html ACOX2,CYP3A5,TSPO,PPARD,CYP11B2,SULT2B1,SHH,ACOX3,STARD3,AKR1C2,AKR1C4,CYP39A1,APOF,NPC1L1,WWOX,AKR1C1,DHCR24,STS,SULT2A1,CYP11A1,DHRS9,NR0B2,NR0B1,UGT1A1,DHRS2,NPC1,UGT2B17,ADM,AKR1B10,UGT2B11,HSD11B2,UGT2B15,CLN8,AKR1D1,CLN6,HSD17B11,HDLBP,CNBP,HSD3B1,HSD3B7,HSD17B14,TFCP2L1,STUB1,DHCR7,HSD17B6,SCARB1,NR1H4,CYP19A1,NSDHL,IL4,SOAT1,SOAT2,MBTPS2,CYP46A1,FDXR,FDPS,SOD1,ABCG1,APOL2,CEL,CYP7B1,GBA2,YWHAH,NR1I2,BAAT,UGT2B4,SCP2,NR5A1,BMP6 +PWCOMMONS ESTABLISHMENT OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_CELLULAR_LOCALIZATION.html RAB3GAP2,SYT1,LTBP2,CADM1,USE1,MXI1,SSR1,BAK1,GBF1,APOE,HOMER3,RAE1,TRAK1,VPS4B,TLK1,RPL11,RAB26,CDCA5,KIF13B,CRTAM,OPA1,CRYAA,KIF5B,CRYAB,KIF5A,VPS45,VTI1B,MYH7,MYH6,OPTN,MYH9,ERGIC1,VTI1A,ERGIC2,ERGIC3,CLEC4M,UXT,NPC1,KRT18,NPC2,ATP2C1,ZWINT,BACE2,F2,PEX26,TBRG1,RAB14,MYBBP1A,RTP3,KCNMB4,KIF4A,RTP4,NFKBIE,MTX2,RER1,RABEPK,MYO9B,BCL2L1,CALR,ARFGEF2,ARFGEF1,RIMS1,CD74,CDC37,UHMK1,INS,STX18,DUSP16,CKLF,STX16,TMED10,SEC23IP,TRAM1,MDFI,KIF3B,NXF5,SMAD3,CDC23,CIDEA,ARFIP1,TINAGL1,HNRNPA1,ABCG1,NFKBIL2,CBLB,TRPS1,CD209,SYTL4,BET1L,GOSR2,LGTN,GOSR1,RERE,ARSB,HTATIP2,PDIA3,TIMM17A,TIMM17B,AP3S2,BNIP3,PDIA4,CANX,GLI3,COPB2,NOD2,NMUR1,NMUR2,ZFYVE9,COPB1,AP3B2,ANP32A,SLC25A1,GOLGA5,KDELR1,AP3B1,TOMM34,DYNC1I1,STX5,KDELR2,RPGR,TP53,RPH3AL,FLNA,ANKRD27,GRM4,NUP205,LRMP,TOMM22,NUP107,STEAP2,ARL4D,SNAP29,RAB3A,SHROOM2,BET1,EEA1,NAGPA,NUP214,PEX19,SQSTM1,BCL2,DDX19B,PEX16,BCL3,AP3D1,PEX14,PEX13,BCL6,PEX12,EXOC5,SNAP23,PEX10,APBA1,FYB,RAB2A,SERGEF,UPF2,UPF1,NLGN1,PPP1R10,BIRC5,SELS,GABARAP,COG3,YWHAH,COG7,GSK3B,RAB35,NLRP12,YKT6,SSR2,BARD1,COG2,NCBP2,SEPT5,TSPO,SNCAIP,NRBP1,XPO6,AP1G1,LMAN2L,EIF5A,TNFSF14,MIPEP,CSPG5,AGXT,KLHL2,TGFB1,STARD3,APOA2,NLRC4,APOA1,DDX25,DNAJC1,SCAMP1,MCM3AP,NUP133,SCAMP3,SCAMP2,MYO6,STAP1,NUDT4,BAIAP3,ERP29,NUPL2,TNNT2,DDX39,COPG2,RPAIN,LYST,CARTPT,VAMP3,LRPPRC,AKAP3,BAT1,MYL6,CCL3,ACHE,PPY,DERL2,ARFGAP3,DERL1,STX7,NAPG,COPZ1,CCL8,NAPA,CTSA,ABCA2,ABCA1,LMAN1,PYDC1,CCL5,NPM1,DOPEY2,DOPEY1,SRGN,CARD8,SMG6,SMG5,MYO1E,SMG7,SMG1,SNAPIN,MALT1,ICMT,FOXP3,NFKBIL1,LIN7A,TRNT1,PPIH,VCP,TSC1,PTTG1IP,RHOT1,RHOT2,GLMN,TRIP6,XPO7,SLC25A15,MYH10,HPS4,PEX6,PEX3,DPH3,PEX7,AKT1,PEX1,ANG,ZFYVE16,RHOB,NCKIPSD,RANBP2,TPR,KPNB1,ZW10,KHDRBS1,HSP90AA1,NUSAP1,NLRP3,TIMM23,TIMM44,M6PR,NLRP2,KIF1C,MFN2,KIF1A,ADRB2,ATG4D,KIF1B,ATG4C,ATG4B,ATG4A,SCIN,ARCN1,C3ORF31,KPNA6,TOM1,KPNA5,KPNA4,KPNA3,KPNA2,PKDREJ,KPNA1,COPE,CPLX2,NUP98,AP1M2,TNF,CPLX1,NUP160,CDH1,SEC63,CEP57,HRH3,MYL6B,AP3M1,TAP2,SYN3,PYCARD,SEC22A,SEC22B,SEC22C,SCG5,CCS,PAFAH1B1,APPBP2,NEFL,TNPO1,SCG2,NF1,SCRN1,CENPF,CENPE,MON2,CADPS,ATXN1,MAP1S,TRPC4AP,FAF1,GGA1,F2R +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html UQCRC2,OXA1L,ME3,UQCRC1,ACO2,PDHB,SDHA,SDHB,SLC25A14,NNT,UQCRH,SDHC,SDHD,SURF1,UQCRB +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html CASR,HOXD13,POSTN,GHRHR,TGFB1,DSPP,COL12A1,TWIST2,COL10A1,TWIST1,MATN3,DLL3,MGP,MEPE,PRELP,COL1A2,SHOX,EXT1,EXT2,ADAMTS4,TRAPPC2,FGFR1,ACHE,OSTF1,FGFR3,HOXA13,DSCAML1,ATP6V1B1,EXTL1,AHSG,TEAD4,IL17F,SMA4,RUNX2,SPP2,SRGN,BMP4,BMP1,EVC,KLF10,DMP1,EN1,ANKH,SHOX2,DLX6,ETS2,DLX5,TRPS1,CHRD,TLL1,AEBP1,ARSE,TCOF1,ZNF675,GLI2,PAX1,PRDX1,GLI1,TNFRSF11B,COL11A1,ALX1,GHR,UFD1L,CMKLR1,CDK6,INHA,INHBA,KIAA1217,ACVR1,STATH,COL2A1,SUFU,MSX2,COL9A2,COMP,PTH,LECT2,PAPSS1,PAPSS2,EBP,TBX3,COL13A1,KL,NF1,FBN1,TBX4,IGF1,TBX1,IGF2,NPR3,SPARC,FRZB,ANXA2,RPS6KA3,COL19A1,CLEC3B,CLEC3A,GDF11,GDF10,ATP6V0A4,BMPR1B,IGFBP4 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MMS19,NCBP1,XRCC6,ARNT2,FOXO1,RORB,TNFSF13,FOXO3,MED21,TGFB1,CITED2,EPC1,MDFIC,SMARCD3,FOXF1,GATA4,FOXF2,SMARCD1,SUPT5H,MYST1,MYST4,MYST3,BCL10,MYO6,PCBD2,IL29,RXRA,MED12,MED14,ARID1A,MED13,ARNTL,ELL3,PPARGC1A,TRERF1,PPARGC1B,HIF1A,HNF4A,MED17,TFAP2B,SMARCA1,CRTC1,ELK1,AFAP1L2,ABCA1,FOXH1,PLAGL1,MAML3,TCF4,RUNX1,TCF3,ARHGEF10L,ZNF423,UTF1,EPAS1,MAML1,TAF8,MAP2K3,MAML2,CREBBP,ESRRG,MSTN,SMAD3,SMAD2,FOXP3,ATF6,ATF4,NUP62,SMARCC1,DYRK1B,SMARCC2,NOTCH4,HIVEP3,BMP7,BMP6,HNF1B,ELF1,HNF1A,RSF1,ACVRL1,ELF4,SPI1,TP63,CTCF,GLI2,ZBTB38,GLI1,CAMKK2,PAX8,MKL2,EGR1,ATF7IP,CCNH,TP53,PRKCG,CDK7,HMGA1,ARHGEF11,RAD51,PRPF6,SCAP,NRIP1,GTF2H1,UBE2N,MED6,INHBA,BPTF,EREG,ZMIZ2,NCOA6,UBB,NSD1,CLOCK,MED1,ACVR1,GLIS3,GLIS2,GLIS1,NUFIP1,EHF,TNFRSF1A,RGMB,NPAS2,MRPL12,ERCC6,SQSTM1,BCL3,SUPT4H1,NFATC2,ERCC3,ERCC2,FOXD3,IL4,CEBPG,TBX5,TRIM28,CREB5,ILF3,TP73,MNAT1,YWHAH,ILF2,SP1,YAF2,THRAP3,FOXE1,IRF4,PHF5A,RBM14 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html DLC1,BMP10,BCAR1,OSGIN1,TGFB1,TGFB2,BNIPL,ACVR1B,CDKN2A,CDKN2C,CDKN2D,SERTAD3,NDUFS3,SERTAD2,NOL8,TP53,NDUFA13,RB1,INHBA,PLCE1,GHRH,ALOX15B,UBB,ALOX12,ING5,DCBLD2,ING4,DERL2,PML,PPT1,TSPYL2,FAM107A,PRSS2,CDA,BCL6,ENO1,COL4A4,KLK8,SPHK1,SMAD4,SMAD3,SOD1,CAPRIN2,RERG,PPP1R9B,CDKN1A,CDKN1B,BBC3,CDKN2AIP,PTCH1,GHSR,APBB2,APBB1,IL2 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NCBP2,HTATIP2,XPO6,PDIA3,TNFSF14,EIF5A,MXI1,GLI3,TGFB1,AKT1,RAE1,DDX25,ZFYVE9,ANP32A,RANBP2,NCKIPSD,TPR,KPNB1,KHDRBS1,MCM3AP,NUP133,NUDT4,NLRP3,NUPL2,FLNA,DDX39,RPAIN,NUP205,F2,TBRG1,KPNA6,KPNA5,NUP107,KPNA4,KPNA3,KPNA2,MYBBP1A,KPNA1,BAT1,NUP98,TNF,NUP160,NFKBIE,CDH1,CALR,UHMK1,NUP214,CEP57,DDX19B,NPM1,DUSP16,BCL3,BCL6,TNPO1,MDFI,FYB,UPF2,UPF1,SMG6,SMG5,NXF5,NF1,SMG7,PPP1R10,SMG1,SMAD3,MALT1,HNRNPA1,NFKBIL1,ATXN1,NFKBIL2,PPIH,CBLB,TSC1,TRPS1,GSK3B,PTTG1IP,NLRP12,FAF1,XPO7,TRIP6,RERE,BARD1,F2R +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html PTPRC,LST1,SLA2,INHA,SOCS5,FOXP3,SPINK5,THY1,TGFB2,INHBA,TARBP2,LAX1,SFTPD,GLMN +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html NCK2,CDC42EP2,MAPT,TPPP,NCK1,ARF6,TMSB4Y,MAPRE1,LATS1,RASA1,CDC42EP5 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html CHKA,PPARA,CAV1,TSPO,PPARD,LDLR,ABCA2,ABCA1,SLCO2A1,APOA4,GOT2,APOA2,STX12,APOA1,APOE,LCAT,APOF,APOC3,ABCD3,NPC1L1,CETP,ANGPTL3,PSAP,ATP11B,ABCG1,GLTP,NPC2,SLC27A4 +PWCOMMONS ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_MORPHOGENESIS.html MRPL40,HCCS,ALS2,HRAS,CDX1,HIRA,RORB,TPD52,CD2AP,SHH,FLI1,CUL7,APOE,ERAP1,CEP290,CHRNA7,PITX3,PITX1,PITX2,SYK,TWIST1,CD3G,BRAF,PDPN,LIG1,EFNB2,VANGL2,EOMES,MYH7,MYH6,MYH9,PROX1,THY1,MARK2,MSX1,KRT18,SERPINF1,VEGFA,TRAPPC4,ATPIF1,DEAF1,KCNMB4,ODAM,EMCN,CDK5R1,AMTN,HOXA11,KEL,ELN,ARF6,IGF2BP2,IGF2BP3,EPHB4,KCNMB2,CDC42EP2,CDC42EP1,AGGF1,LHX1,RAC3,UPK1A,KAL1,UPK1B,LHX3,IL17F,RAC1,BAI1,LAMB1,CDC42EP4,CDC42EP5,COL18A1,TAOK2,PCNT,SPHK1,FTO,ARFIP2,SMAD2,EN1,CELSR1,UPK3A,TNNI3,MCAM,KRT35,NKX6-1,DVL1,SFRP5,NOTCH3,NOTCH2,SFRP1,NOTCH4,MAP7,MAB21L1,CLTCL1,ENG,KLF4,CDC42BPB,RTN4,NRP2,GYPC,LIMA1,FGF8,NRP1,HTATIP2,ACVRL1,ELF3,EZH1,MYBPC3,GLI2,CANX,SPINK5,GLI1,DFNB31,AES,DYNLL1,MAPT,GNPAT,SEMA3B,CAP1,FGF1,FGF2,FGF3,CYR61,ARHGEF2,STX2,TBX10,EGFL7,TLE3,ZNF141,TLE1,TLE2,SLIT1,SLIT2,AMIGO1,PROK2,EREG,ROD1,SEMA4F,NPPB,FOXC2,SIAH1,FOXC1,TBX19,SHROOM1,PARD3,SHROOM2,ETV7,SHROOM3,SCML2,TH,SCML1,PML,TRIM13,EHF,TRIM15,LY6H,PKD2,MAS1,PCSK9,PKD1,ERVWE1,PHLDA3,RASA1,C1GALT1,THBS4,CES4,NAT8,TBX6,CAP2,IL8,LZTR1,TBX3,IL7,TBX5,TBX4,NTNG1,NPR1,NTNG2,TBX1,FZD2,FZD5,SOD1,PLG,DKK3,CDH13,YWHAH,EPGN,STAB1,AMOT,PTCH1,PES1,NR5A2,WNT7A,TMEM176B,FGF18,NRTN,CASR,MPZL2,IL18,LMO4,FGF16,TGFB3,FGF10,PDX1,LRRC4C,TNFSF12,ZIC1,FOXO4,GDNF,TGFB1,VCL,TGFB2,WNT1,ANK1,ROBO1,GATA3,TDGF1,APOA5,ROBO4,ROBO2,UNC5C,SPON2,SPN,BCL10,LBX1,BAIAP2,FOXN1,MLXIPL,SIX2,ACTN2,SIX6,STK4,BICD1,IL20,CST6,TIMELESS,MNX1,OPHN1,NFE2L1,SLC40A1,WNT5A,FGD2,FGD1,LST1,GCLC,CCL2,SSH1,ONECUT2,DSCAML1,NEDD8,GCLM,CCL4,ITGAX,CRB1,HOXA4,CLASP2,RPL10A,EGF,RUNX1,ANGPTL3,FGD5,FGD6,SFTPB,UPK2,FGD3,ANGPTL4,FGD4,PARD6B,CCM2,FSCN2,HTT,ITGA2,WHSC1,GSC2,TINAG,LYVE1,GCM1,S100B,SALL1,HOXB5,GLMN,CYFIP1,FABP1,SCMH1,IER3,CORIN,PAX6,PAX5,PAX4,PAX3,PAX2,LSR,CRX,GPC4,CDC42,SPRY2,DGCR2,GPC3,HEY1,ANG,POU5F1,PAX7,DGCR6,HEY2,PAX8,RHOB,POU4F1,CHUK,DLG1,SOX10,CCDC88A,SOX13,NRXN3,OTX2,PRKCI,NRXN1,MBNL1,DNAI2,CDK5,NCL,EYA3,EYA4,EYA1,EYA2,BTG1,NRL,HOXC13,GAA,GHRL,WNT11,CNTN4,UBB,ABLIM1,CPM,RTN4RL1,RNH1,BRSK2,TSHB,PF4,DCN,POU1F1,APLP1,CALCA,COL9A1,CD9,COMP,TGM3,KRT2,KRT3,RTN4RL2,KRT4,FBN2,DKKL1,ERCC3,MYOC,ERCC2,SCG2,NOX4,COL4A3,COL4A2,KLK8,COL13A1,CEBPG,PLAC1,NF1,DPYSL5,COL5A3,RCAN3,WNT2B,MAP1S,BAX,BMPR1B,FEZ2,F2R,FEZ1,DMBT1 +PWCOMMONS CELLULAR RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STRESS.html SREBF1,NUAK2,ALB,FADS1,GSK3B,TP53,PCSK9,CARTPT,ASNS,EIF2AK3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MMS19,NCBP1,XRCC6,FOXO1,RORB,FOXO3,MED21,TGFB1,CITED2,EPC1,MDFIC,SMARCD3,FOXF1,SMARCD1,GATA4,FOXF2,SUPT5H,BCL10,MYO6,PCBD2,RXRA,MED12,ARID1A,MED14,ARNTL,MED13,ELL3,TRERF1,PPARGC1B,HIF1A,HNF4A,MED17,TFAP2B,SMARCA1,CRTC1,ELK1,AFAP1L2,FOXH1,PLAGL1,MAML3,RUNX1,TCF4,TCF3,ARHGEF10L,UTF1,EPAS1,TAF8,MAML1,MAP2K3,MAML2,ESRRG,SMAD3,SMAD2,ATF6,ATF4,SMARCC1,DYRK1B,SMARCC2,NOTCH4,BMP6,ELF1,HNF1B,HNF1A,RSF1,ELF4,SPI1,TP63,CTCF,GLI2,ZBTB38,GLI1,PAX8,MKL2,ATF7IP,CCNH,TP53,CDK7,HMGA1,ARHGEF11,NRIP1,PRPF6,GTF2H1,SCAP,MED6,INHBA,BPTF,ZMIZ2,NCOA6,NSD1,CLOCK,MED1,GLIS3,GLIS1,NUFIP1,EHF,TNFRSF1A,NPAS2,ERCC6,MRPL12,SQSTM1,SUPT4H1,ERCC3,ERCC2,FOXD3,IL4,TBX5,TRIM28,CREB5,ILF3,TP73,MNAT1,ILF2,SP1,THRAP3,FOXE1,PHF5A,RBM14 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html KIAA0368,TSG101,UBE2G1,BTRC,UBE2G2,RNF217,CPA2,FBXO22,ANAPC2,UBE2A,ANAPC5,UFD1L,ANAPC4,UBR3,UBE2I,UBE2H,UBE2C,UBE2B,UHRF2,UBE2K,UBR5,FBXL4,AMFR,SIAH2,UBB,DERL2,FZR1,DERL1,SYVN1,UBE3A,ANAPC10,NEDD8,EDEM1,STUB1,ARIH1,UBE2D3,UBE2D2,SQSTM1,RNF11,UBE2D1,USP33,FBXO7,RNF144B,NPLOC4,UBE4A,UBE4B,CDC23,PCNP,CDC20,PARK2,UBE2L3,SELS,PSMD14,PSMC5,VCP,SMURF2,SMURF1,UBE2E1 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html SRI,MYL5,MYL2,TNNC2,TNNC1,KCNB2,PPP1R12B,SPHK1,MYBPC3,SOD1,TPM1,MYL9,PROK2,PLCE1,TNNT1,ATP2A1,MYBPH,CNN1,NMU +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html RP1,COPS3,OPN1SW,NR2E3,BRSK1,ABCA4,ERCC8,PDE6B,GPX1,ERCC5,ERCC6,MC1R,CDKN2D,BCL3,SERPINB13,ERCC3,ERCC4,IVL,FEN1,ERCC2,UNC119,REV1,TRPC3,FECH,RELA,NF1,UBE4B,GTF2H2,SAG,PITPNM1,RPAIN,POLD1,GRM6,DDB2,PDC,IL12A,MAPK8,SCARA3,IL12B,CACNA1F,DYNLRB1,CLOCK,GRK1,RHO,OPN4 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html BCL10,PRG3,CEBPG,IL27,IL9,TLR1,CD276,TLR3,TNFRSF8,TLR4,TLR6,TLR7,TLR8,TLR9,AZU1,APOA2,EREG,GLMN,IRF4,IL12B,LTB,SPN,EBI3,CD28 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF2C1,EIF5,EIF5A,MTIF2,MTIF3,PAIP2B,EIF3C,EIF3D,EIF3A,EIF3G,EIF3H,EIF3E,EIF3F,DAZL,EIF1,EIF3I,EIF3J,EIF2B2,EIF2B5,DAZ1,PAIP2,EIF1B,BOLL,EIF4B,EIF4G2,EIF4G3,EIF4H,EIF4A2,HSPB1,EIF2AK3,EIF2AK4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html FST,ZNF254,TCEAL1,EPC1,SIN3A,ZNF396,SUPT5H,TWIST2,TWIST1,ZNF593,ZHX1,ZHX2,MECP2,ZNF189,ZHX3,NR0B2,NR0B1,CSDA,FOXN3,PA2G4,ZNF238,SMARCE1,TGIF1,PRDM1,EID1,HMGB1,VPS72,MEIS2,HEXIM2,HEXIM1,DRAP1,BCOR,TCF25,NKX2-5,HELLS,MDFI,BMP2,KLF12,KLF10,KLF11,RYBP,SMAD4,SMAD3,SMAD2,FOXP3,HDAC5,SMARCC2,JAZF1,DNMT1,RBPJ,HDAC8,KLF4,E2F1,ZBTB32,PPARD,RSF1,ARID4A,E2F6,NR6A1,SPI1,TP63,ZNF202,CTCF,ZEB1,PAWR,GLI2,HSBP1,DAXX,ZNF345,MEN1,GFI1B,ZNF148,POU4F2,NFX1,ATF7IP,ZNF281,SLA2,ARID5B,LDB1,ARID5A,NDUFA13,FOSB,RB1,MXD4,NRIP1,CHMP1A,BPTF,ZNF136,MDM2,RIPPLY1,MDM4,CUX1,NSD1,ZFP161,GLIS3,ZMYND11,ING4,GLIS1,ZBTB16,ZNF177,ZNF174,ORC2L,GATAD2A,PEX14,BCL6,SUPT4H1,ENO1,FOXD3,TBX3,TBX2,VHL,SIRT4,TRIM27,TNP1,SIRT5,ILF3,PHF12,CBY1,SNAI2,SIRT1,STAT3,ZNF157,IRF7,DR1,IRF8,PHF21A,IRF2 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TSPO,XPO6,LTBP2,EIF5A,TNFSF14,MIPEP,MXI1,AGXT,TGFB1,SSR1,HOMER3,TRAK1,RPL11,KIF13B,MCM3AP,OPTN,NUPL2,RPAIN,F2,PEX26,RTP3,RTP4,NFKBIE,CALR,UHMK1,CDC37,DUSP16,TRAM1,MDFI,SMAD3,ICMT,NFKBIL1,TRNT1,NFKBIL2,PPIH,CBLB,TRPS1,PTTG1IP,TRIP6,XPO7,RERE,PDIA3,TIMM17A,TIMM17B,HPS4,PEX6,PEX3,GLI3,PEX7,AKT1,PEX1,ZFYVE9,ZFYVE16,NCKIPSD,RANBP2,TPR,KPNB1,TOMM34,TIMM23,NLRP3,TIMM44,FLNA,MFN2,ATG4D,ATG4C,ATG4B,ATG4A,NUP205,C3ORF31,KPNA6,KPNA5,TOMM22,KPNA4,KPNA3,KPNA2,KPNA1,TNF,AP1M2,CDH1,SEC63,NUP214,NAGPA,CEP57,PEX19,AP3M1,PEX16,BCL3,PEX14,PEX13,BCL6,PEX12,TNPO1,PEX10,FYB,NF1,NLGN1,PPP1R10,GABARAP,GSK3B,NLRP12,FAF1,SSR2,F2R,BARD1 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html CLN3,SLC9A7,CLCN3,ATP1A3,ATP1A4,PPT1,ATP1A1,ATP1A2,ATP6V1B1,TMPRSS3,BCL2,CLN5,SLC9A1,CLN6 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html HS3ST6,CCL3,RSF1,HS3ST5,CCL2,VAPB,OPRK1,EIF5A,DEK,APOBEC3G,CCL4,APOBEC3F,SMARCB1,WWP2,MDFIC,HTATSF1,WWP1,CXCR6,ITCH,TNIP1,TOP2A,CTBP1,CTBP2,IL8,HBXIP,UBP1,CLEC4M,TARBP2,PPIA,CD209,CD81,ACE2 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html ITLN1,ITGB2,STUB1,TGFB1,IL31RA,SET,NDUFS4,CLCF1,ATG7,TDGF1,UBE2D1,BMP4,EGFR,IL3,BCL10,GTPBP4,CCDC88A,IL5,NF2,LYN,IL29,CCDC88C,HCLS1,SOCS1,PRKCG,PPARGC1A,BRCA1,IL20,UBE2N,CARD14,CCND1,CD80,AKTIP,TSC1,CCND3,CCND2,CD81,IL12A,RNF139,NLRP12,PPP2R4,TNK2,IGFBP3,IL22RA2 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html HS3ST6,CCL3,HS3ST5,DERL1,CCL2,RSF1,VAPB,OPRK1,EIF5A,RRAGA,APOBEC3G,DEK,CCL4,APOBEC3F,TGFB1,MDFIC,SMARCB1,WWP2,HTATSF1,WWP1,CXCR6,ITCH,TNIP1,TOP2A,CTBP1,CTBP2,IL8,SMAD3,HBXIP,UBP1,CLEC4M,TARBP2,PPIA,CD209,CD81,ACE2 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html NBN,NEK2,PML,KNTC1,TTK,PKMYT1,ANLN,BRSK1,CDC16,RCC1,TGFB1,PIN1,TRIAP1,CDKN2B,PCBP4,PRMT5,NPM2,BUB1,TGFA,EGF,GML,CCNA2,CD28,ZW10,RINT1,NUSAP1,CDC23,BIRC5,CDC25C,UBE2C,ATM,MAD2L1,EREG,EPGN,ZWINT,BUB1B,CHFR,MAD2L2,NEK6,RAD17 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ALDH1L1,PTGS1,SLC7A8,SLC7A9,GGT1,SLC7A4,SLC7A5,AGXT,BBOX1,SLC7A6,FAH,GLDC,SLC7A7,GOT2,ASPA,GOT1,PLOD1,SCLY,MAT1A,DDAH2,DDAH1,NANP,ALDH6A1,YARS,GATM,DARS,AARS,QDPR,CDO1,PPARGC1A,PECI,SARS2,PNPLA8,PYCR1,NPC1,ALOX15B,RARS,CROT,ME1,HACL1,ME3,ACADSB,GCLC,GNE,GLUD2,FARS2,GLUD1,PFKFB1,PAH,ASL,GCLM,CD74,KARS,HADHB,ARG1,GAD2,IDH1,GCSH,ASRGL1,ALDH4A1,GAD1,NR1H4,FH,MCAT,SLC6A14,HGD,IDH3B,BRCA1,CYP7B1,ATF4,BAAT,SLC7A2,MLYCD,FAAH,SLC25A10,FPGS,SLC25A15,ACOX2,PTGES3,PPARA,PPARD,BCKDK,CYP2J2,AMT,ACOT2,ACOT1,ACN9,ACOT4,SC4MOL,ACOX3,GSS,ACOT9,AKR1C3,MCCC2,AKR1C2,MTHFD2,WARS,TYR,MSRA,CYP39A1,PTGES,HDC,ACOT12,GNPAT,GSTZ1,AKR1C1,AGPAT2,AGPAT1,HPD,ACADM,PEPD,PRG3,ACO2,ACO1,ACADS,ALDH5A1,ADIPOR2,ADIPOR1,SLC3A1,DDO,ACADVL,HAO1,PTGDS,SDS,AS3MT,HAO2,SLC27A6,SMS,AKR1D1,SLC27A2,SLC27A5,DEGS1,ALOX12,BCAT1,ALDH18A1,ECH1,HSD3B7,UGDH,NFS1,ECHS1,MIF,DCT,GLS2,TNFRSF1A,MTHFR,ABCD2,MARS2,BDH2,PTS,BCKDHA,CPT1B,FADS1,BCKDHB,FTCD,FADS2,IGF1,ACLY,CPT1A,OXSM,ADI1,CYP4A11,GBA2,CYP4F8,GLYAT,GCK,SLC6A6,LTA4H,CYP4F3,GAMT,MAT2B,CYP4F2,HPGD +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html RTN4,NRP2,PARD3,CDK5R1,NRP1,RTN4RL1,LRRC4C,GLI2,PAX2,SHH,APOE,ROBO1,MAPT,KAL1,BAI1,POU4F1,ROBO2,RTN4RL2,SEMA3B,UNC5C,SPON2,PARD6B,KLK8,NRXN3,BAIAP2,OTX2,NTNG1,DPYSL5,NTNG2,NRXN1,SLIT1,SLIT2,THY1,AMIGO1,S100B,SEMA4F,CYFIP1,OPHN1,SIAH1,CNTN4,UBB,FEZ2,FEZ1 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html CADM3,MPZL2,CADM1,ITGB1,CDH5,CD84,AMIGO1,AMIGO2,PVRL1,ROBO1,TRO,PVRL3,PVRL2,NPTN,PKD1,ROBO2 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html CARD9,TAOK2,ATP6AP2,TAOK3,NF1,EDA2R,ZNF675,TPD52L1,AMBP,ADRB3,GRM4,ADRB2,REN,HIPK2,MAPK8IP2,MAPK8IP3,MAPK8IP1,TRAF7,CD24,CD27 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html TTN,UHMK1,CAMKK2,AKT1,IGF1R,PAK2,MAP3K3,MAP3K9,LMTK2,PAK1,INSR,TAF1,MYO3A,MEX3B,KIAA1804,TAOK3,MOBKL1A,SMG1,STK4,CDKL5,EIF2AK1,DYRK1A,MAPK15,MAP3K10,NLRP12,TNK1,EIF2AK3,MAP3K13,MAP3K12,MAP3K11 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html CD9,PARD6B,TJP1,TLN1,GJD3,TLN2,GJA1,GJA4,GJA5,VCL,GJC1 +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html MDFI,NFKBIL2,TAF3,PDIA3,NFKBIE,ALB,PDIA2,SUPT7L,TOPORS,FAF1,MXI1,NFKBIL1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF23,PRC1,KATNB1,TTK,RCC1,HOOK3,KIF2C,TUBGCP6,TUBGCP5,MAPT,PAFAH1B1,CLASP1,TUBG1,CLASP2,APC,ARHGEF2,KIF11,RAN,RNF19A,CKAP5,NUSAP1,MID1IP1,MID1,TUBGCP2,MARK4,CENPJ,SMC3,UXT,MAP1S,TPPP,MAP7,MAPRE1,STMN1,SMC1A +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html H1FNT,PML,BNIP3,PPT1,MOAP1,CASP3,NUMA1,CDKN2A,DULLARD,ACIN1,TOP2A,DEDD2,FOXL2,AIFM1,DFFA,DFFB,CYCS,CIDEA,CECR2,NDUFA13,TNP1,TPD52L1,SOD1,TMEM48,WBP2NL,SYCP3,BAX,ATXN7,TSSK6 +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html ADSS,FIGNL1,OLA1,ACLY,AK5,C16ORF7,CTNS,HPRT1,GUK1,AMPD3,NDUFS1,PPAT +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PDIA3,PEX6,TNFSF14,PEX3,MXI1,GLI3,TGFB1,PEX7,AIP,AKT1,PEX1,ZFYVE9,RANBP2,NCKIPSD,TPR,KPNB1,MCM3AP,NLRP3,FLNA,RPAIN,NUP205,F2,PEX26,C3ORF31,TOMM20,KPNA6,KPNA5,TOMM22,KPNA4,KPNA3,KPNA2,KPNA1,TNF,NFKBIE,CDH1,CEP57,PEX16,BCL3,PEX14,PEX13,BCL6,PEX12,TNPO1,PEX10,FYB,MDFI,NF1,PPP1R10,SMAD3,NFKBIL1,NFKBIL2,PPIH,CBLB,TRPS1,PTTG1IP,NLRP12,FAF1,TRIP6,RERE,F2R +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html SCAMP1,SCAMP3,SCAMP2,STX7,OPTN,MON2,KRT18,RAB14,AP3B2,DOPEY2,EXOC5,SNAP23,DOPEY1,STEAP2 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html GCLC,ALDH18A1,GLUD2,GLUD1,ASL,GCLM,ARG1,PYCR1,GAD2,ALDH4A1,ASRGL1,DDAH2,GAD1,DDAH1 +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html INHBA,IL27,CEBPG,CD276,TLR3,INHA,IL12B,TLR7,TLR8,EBI3,TLR9 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SLC22A16,CGB,GNPDA1,HMGCR,JAG2,DNAJB13,PTTG1,BMP15,PRKACG,CSNK2A2,ADAM2,DDX25,OR7C1,GDF9,IZUMO1,CCNA1,PICK1,CRISP1,SPAG1,LIG3,SPA17,BCL2L10,NME5,SPAG9,REC8,WBP2NL,TCFL5,SPAG6,SYCP3,SPAG4,TESK1,TESK2,BPY2,MST1R,AKAP3,XRN2,WFDC2,AKAP4,PNMA1,ACR,DEAF1,CHEK1,BCL2L2,SYCP1,DAZAP1,RPL10L,OAZ3,DUSP13,NPM2,HOXA10,SPAM1,AXIN1,ADAM28,ABCB9,ADAM29,MEA1,GGN,RBMY1A1,CLGN,CDY2B,TSGA10,ADAM20,ADAM21,VCX,INSL3,SMCP,DEDD,PRKAG1,NR6A1,MOV10L1,YBX2,PARN,DYNLL1,SERPINA5,RPL39L,KHDRBS3,ZP2,FOXJ1,HIST1H1A,MORC1,FSHR,OR10J1,THEG,VCX3A,PROK2,HIST1H1T,VCX3B,MAST2,EREG,ADAM18,IFT81,RUVBL1,DMC1,FSHB,PKDREJ,H1FNT,DNAH9,TSPY1,USP9Y,USP9X,GPR64,XKRY,SPO11,CD9,DNALI1,CCT6B,CDYL,SPANXA1,HSPA2,CEP57,SPAG11B,LEFTY2,HSF2BP,DAZL,SPATA4,CD4,PPAP2A,PPAP2B,BRD2,DAZ2,SOX30,TRIM27,MTL5,TNP1,SOD1,RACGAP1,BAX,MYCBPAP,NLRP14,PRM1,PTCH2,PRM2,CDY1,BMPR1B,TSSK3,TOB2,TSSK6 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html E2F1,DBF4,FOXO4,LATS1,LATS2,CUL3,CUL2,ACVR1B,CUL5,CDKN2A,GFI1B,DDX11,CDKN2B,CDKN2C,CDKN2D,CDK10,CDCA5,CUL1,CDC7,KHDRBS1,CDC6,ANAPC5,ANAPC4,POLE,SKP2,TBRG4,CDK6,RB1,CDK4,FOXN3,CDK2,SPDYA,INHBA,CHMP1A,TIMELESS,CDK2AP1,USH1C,KPNA2,MAP3K11,ACVR1,BCAT1,PPP6C,TIPIN,POLA1,ANAPC10,RCC1,PRUNE2,KRT7,KATNA1,GFI1,TAF1,PTPRC,CDC23,CENPF,TPD52L1,BIRC5,CDC25C,CDKN3,CDKN1C,CDKN1A,CDKN1B,CUL4A,GSPT1,POLD1,MYO16,ABL1,APBB2,APBB1 +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html COL4A3,COL4A2,PML,NPR1,PF4,TNNI3,FOXO4,SPINK5,PLG,SERPINF1,STAB1,IL17F,NPPB +PWCOMMONS MONOCARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_TRANSPORT.html SLC16A3,SLC16A2,SLC16A1,SLC16A5,SLC16A4,AKR1C4,SLC16A7,SLC16A6,SLC16A8,AKR1C1 +PWCOMMONS EPITHELIAL CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_CELL_DIFFERENTIATION.html ELF3,UPK1A,UPK1B,KRT3,EHF,UPK3A,KRT4,SPINK5,UPK2,DMBT1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html CASR,BTD,S100A7,CRABP2,FST,TGFB2,BTK,DSPP,PLOD1,CTGF,APOA5,KRT85,TWIST2,KRT83,MATK,UGCG,FOXN1,MGP,KRT13,VAX2,KRT10,PROX1,SCEL,IL20,PTHLH,NME2,KRT17,KRT16,ATP2C1,KRT15,KRT14,DSP,TFAP2A,LAMC2,LAMC1,COL1A1,EDA,EMP1,OSTF1,ACHE,RBP2,HOXB13,ATP6V1B1,AHSG,T,TCF21,LAMB3,IL17F,RUNX2,SRGN,MEST,BMP4,IKZF3,BMP1,IKZF1,DMP1,BMX,KRT31,SMAD2,KRT34,ANKH,KRT32,LAMA3,ATP2A2,SMURF1,GHSR,FABP5,TCF15,KLF4,PPARD,FGF7,ZNF675,GLI2,CDSN,SPINK5,GLI1,ALOX12B,TIE1,COL11A1,ALX1,DHCR24,STS,STX2,FLOT2,PTF1A,CDK6,WAS,SLIT2,EVPL,EYA2,HOXC11,KRTAP5-9,GHRL,ACVR1,KRT6A,KRT6B,RTN4RL1,STATH,TRIM15,ALDH3A2,DCT,KRT9,COL17A1,COL7A1,KRT5,POU2F3,KRT1,TGM3,KRT2,RTN4RL2,CALML5,TGM5,ERCC3,ERCC2,ZBTB7B,SECTM1,TBX6,KLK7,KLK8,TBX3,KL,COL13A1,HCK,NF1,KLK5,GJB5,SPARC,SNAI2,COL5A2,CASP14,SPRR1A,SPRR1B,BNC1,GDF11,JAK2,PTCH2,ATP6V0A4 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC5A1,ITLN1,SLC37A4,SLC35A1,SLC35A2,SLC35A3,EDNRA,SLC2A8,GH1,PEA15,SLC2A5,SLC2A4,SORBS1,PPBP,INS,SLC2A3,SLC2A2,SLC35B4,SLC2A1 +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html CALCR,GSTM3,KRT19,GATA3,GHRL,BRCA2,CRIPAK,ABCA2,CD24,PDCD7,BRCA1 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html KCNH1,BMP4,ACTA1,TBX3,MYEF2,MYOZ1,CBY1,MBNL1,TTN,FOXO4,NOTCH1,SYNE1,KRT19,MAPK12,EREG,MYH11,CACNA1H,GLMN,ADAM12,IGFBP3,BOC,IFRD1 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html IL18,TLR1,TNFSF15,TNFRSF8,TLR3,TLR4,TLR6,TLR7,TLR8,TLR9,AZU1,APOA2,NOD1,IL17F,SFTPD,BCL3,LTB,EBI3,SPN,CD28,IL4,BCL10,IL6,PRG3,CEBPG,IL27,IL9,CD276,INHA,FOXP3,SIGIRR,INHBB,INHBA,MAST2,EREG,NLRP12,GHRL,GLMN,IL12B,IRF4,GHSR +PWCOMMONS SUPEROXIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SUPEROXIDE_METABOLIC_PROCESS.html APOA4,NOX4,NOX5,PRG3,PREX1,CCS,SOD1,MT3,SOD2 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GIT1,RIC8B,RGS16,RGS14,ADRB3,PLCE1,RGS20,ADRB2,RGS11,RGS12,RGS2,RGS3,RGS4,RGS5,GIT2,GRK6,GRK4,GRK5,RGS9,GNG4,RAMP1,GRK1,GNG7 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html METAP1,EIF2C1,TLR1,EIF5,EIF5A,TLR3,EIF2A,TLR4,TLR6,TLR7,IL10,TLR8,YBX2,TLR9,APOA2,DDX25,HRSP12,EIF1,EIF2B2,LTB,SPN,EBI3,SAMD4A,EIF2B5,BCL10,PRG3,IL29,IL27,NDUFA13,EIF1B,INHA,BOLL,SIGIRR,INHBB,INHBA,EIF4A3,EIF4G2,EIF4G3,EIF2AK1,MAST2,EREG,MTRF1,EIF4A2,BACE2,HSPB1,GHRL,IL12B,EIF2AK3,EIF2AK4,TNFRSF8,IGF2BP2,MTIF2,NECAB3,MTIF3,PAIP2B,EIF3C,AZU1,EIF3D,EIF3A,EIF3G,EIF3H,KRT7,EIF3E,IL17F,EIF3F,SFTPD,SEPSECS,BCL3,EIF3I,DAZL,EIF3J,CD28,IL4,IL6,DAZ1,UPF1,PAIP2,CEBPG,IL9,CD276,FOXP3,ETF1,FURIN,EIF4B,TSC1,EIF4H,NLRP12,GLMN,IRF4,GHSR,APBB1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html BCKDK,AMT,SLC7A8,SLC7A9,GGT1,SLC7A4,SLC7A5,SLC7A6,GLDC,SLC7A7,FAH,GOT2,GSS,WARS,MCCC2,TYR,ASPA,MSRA,GOT1,PLOD1,SCLY,MAT1A,HDC,GSTZ1,DDAH2,DDAH1,HPD,ALDH6A1,YARS,PEPD,DARS,AARS,QDPR,SLC3A1,CDO1,DDO,SARS2,PYCR1,SDS,RARS,SMS,BCAT1,GCLC,ALDH18A1,GLUD2,FARS2,GLUD1,NFS1,PAH,ASL,GCLM,KARS,DCT,GLS2,ARG1,MTHFR,GAD2,MARS2,GCSH,ASRGL1,ALDH4A1,PTS,GAD1,BCKDHA,BCKDHB,SLC6A14,HGD,ADI1,ATF4,BAAT,SLC7A2,SLC6A6,MAT2B,FPGS,SLC25A15 +PWCOMMONS PHOTORECEPTOR CELL MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/PHOTORECEPTOR_CELL_MAINTENANCE.html RDH12,IQCB1,NPHP3,CLRN1,USH1G,USH1C,PCDH15,GPR98,USH2A,CDH23 +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html CYP3A4,UGT1A6,UGT1A9,NR1I2,AS3MT,UGT2B11,UGT2B4,NQO1,UGT2B15,UGT2B28,AHR,S100A12 +PWCOMMONS INTERLEUKIN 8 BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_BIOSYNTHETIC_PROCESS.html BCL10,APOA2,NOD1,PRG3,IL17F,BCL3,TLR4,TLR7,TLR8 +PWCOMMONS DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE.html KLRC4,KLRC2,ADORA3,KLRC3,CADM1,S100A8,AIF1,S100A7,S100A9,ADORA1,CFP,CD48,LILRA1,LILRA2,LTB4R,LILRA3,CHRNA7,IFNK,F11R,CRTAM,C5AR1,NCF2,NCF1,VPS45,DCDC2,COLEC12,CD40,CCR9,WFDC12,LILRB2,CCR7,CCR6,CCR5,LILRB5,CD40LG,CCR4,LILRB3,CCR3,CX3CR1,CCR2,MST1R,PLA2G2E,CLEC5A,PLA2G2D,LALBA,TPST1,AFAP1L2,AHSG,IL17C,IFNA2,LGALS3BP,RAC1,VEZF1,TYROBP,BLNK,CAMLG,BECN1,IL1RL2,CD5L,CD300C,KIR2DS3,AGER,S100A12,APOL3,PARP4,GHSR,ABCF1,ELF3,IL28RA,BNIP3,NFKB1,CFHR1,NOD2,NOD1,ZNF148,IL1RAP,CCL3L3,XCR1,SPACA3,APCS,LY96,CAMP,LYZ,CD160,PSG3,WAS,SIGIRR,CLEC1A,INHBB,INHBA,ALOX15,KLRG1,PSG8,OR2H2,EREG,PLA2G7,IL12A,GAGE8,IL12B,CLEC1B,CXCL1,PRF1,NMI,CCR1,C5,CXCL2,CXCL9,CXCL6,GPR68,MLF2,CCL26,CCL24,AZU1,CCL22,CCL23,CCL20,MEFV,CCL21,IL10RB,BCL2,ALOX5AP,DEFB118,C2,PTX3,IL4,LY75,IL5,IL8,IL9,CYP4F11,STAB2,CD1D,LSP1,CCL11,ORM1,CCL13,P2RY11,CD19,STAB1,BNIP3L,AOX1,SELE,ORM2,MICB,MICA,PGLYRP1,TLR3,IL13,APOBEC3G,ANKRD1,TLR6,CXCL11,TLR7,APOBEC3F,TLR8,TGFB1,CXCL10,IL17RB,APOA4,NLRC4,PAGE1,PGLYRP4,GATA3,PGLYRP2,PGLYRP3,CSF3R,MX1,MX2,SPN,IL1A,BCL10,IL29,RELA,GNLY,SOCS6,FOXN1,HLA-B,CDO1,HLA-G,TRAT1,SP140,IL20,GAGE1,TNFAIP6,TIAL1,LYST,MNDA,RIPK2,NFE2L1,KIR2DL4,KIR3DL2,C3AR1,CCL3,ADORA2B,CYSLTR1,ADORA2A,IL32,UMOD,DEFB127,CX3CL1,PYDC1,PTPRCAP,CCL5,CCL4,ITGB1,SFTPD,TFF3,DEFB1,ITK,HDAC5,HDAC4,TPSAB1,HDAC9,TACR1,CRP,PRDX5,HP,CD97,FOS,CXCR4,AOAH,HCP5,MGLL,LBP,TNIP1,FOSL1,NFX1,KNG1,IRAK2,IL18RAP,CHST2,NCR2,NLRP3,NCR1,CD84,TARBP2,CD83,CD81,GHRL,FAIM3,PTAFR,AOC3,MBL2,RSAD2,TNFRSF1A,HRH1,KRT1,NFATC4,NFATC3,SCG2,TCIRG1,NOX4,PTPRC,CEBPB,CEBPG,DEFB103A,NFRKB,RNASE6,ANXA1,CBARA1,KCNN4,CYBB,MPO,DMBT1 +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html PTGES3,PRG3,FADS1,PTGS1,MCAT,FADS2,CD74,BRCA1,MIF,OXSM,PTGDS,LTA4H,HPGD,DEGS1 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html EGFR,NUDT4,IL8,SLA2,SPHK1,TRAT1,BTK,CAMKK2,LAT,CDH13,LAT2,PLCE1,NMUR1,NMUR2,RGN +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RPL17,SLC44A2,VAPA,TBK1,TNFSF15,TSPAN6,TNFSF14,TLR6,MAP3K7,MYD88,TMEM9B,NLRC3,MIER1,GPR89A,EDARADD,BCL10,BST2,GOLT1B,RELA,FADD,CD40,TRIM38,ATP2C1,MIB2,RIPK2,TNFAIP3,ERC1,IRAK1BP1,NEK6,PPP5C,TRAF2,LITAF,PTPLAD1,UBE2V1,CXXC5,OTUD7B,TRAF6,TRAF5,CFLAR,CARD8,CARD9,LGALS1,NDFIP1,NDFIP2,MALT1,ECM1,LGALS9,TRADD,TRAF3IP2,IKBKE,APOL3,TNFSF10,NUP62,PLK2,IKBKG,TRIP6,SLC20A1,PRDX4,FASLG,GJA1,ZNF675,CANT1,NOD2,NOD1,HMOX1,CASP8,TICAM1,TICAM2,RHOA,TMEM101,RHOC,CASP1,CHUK,RHOH,IRAK2,IRAK1,LTBR,ECT2,FLNA,CARD10,UBE2N,ZDHHC17,TNFRSF10B,RIPK1,ZDHHC13,EEF1D,PPM1A,TFG,TRIM13,FKBP1A,TNFRSF1A,TMED4,REL,MAP3K3,SLC35B2,SQSTM1,PLEKHG5,BCL3,CC2D1A,SECTM1,STAT1,BIRC2,NLRP12,FAF1,HTR2B,TIAF1,F2R +PWCOMMONS NUCLEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOSOME_ASSEMBLY.html SET,RSF1,NAP1L1,SMARCA5,NAP1L3,NAP1L2,CHAF1A,ASF1A,CHAF1B,NAP1L4 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MTSS1,TTN,PRKG1,CXCL12,PACSIN2,PLA2G1B,MYO6,ROCK1,MYH7,MYH6,MYH9,NEBL,ARPC1A,TNNT2,RND3,KRT19,RND1,ATP2C1,TESK2,DBN1,DST,FGD2,MYL6,FGD1,SSH1,MRAS,SSH2,MYO9B,ARPC4,ARF6,ARPC5,LLGL1,CDC42EP2,DOCK2,RAC3,RAC1,ADRA2A,FGD5,FGD6,ARHGEF10L,FGD3,ARHGDIB,FGD4,CDC42EP5,FSCN2,TAOK2,MYO1E,FSCN1,ARFIP2,MYOZ1,EVL,EPB49,CDC42BPG,TSC1,MYH11,CDC42BPA,SPTA1,GHSR,ABL1,MYH10,CDC42BPB,RHOJ,LIMA1,WASF3,NUAK2,PREX1,WASF1,BCAR1,WASF2,LATS1,DSTN,CDC42,PDPK1,DYNLL1,ANG,GSN,RHOA,RHOF,DLG1,ARHGEF2,CCDC88A,ACTA1,LIMK1,VIL1,ARHGEF17,FLNB,FLNA,ELMO1,NCK2,NCK1,SCIN,CFL1,GHRL,TMSB4Y,WASL,CXCL1,SHROOM1,SHROOM2,PLEK2,SORBS3,EZR,SORBS1,MYL6B,WIPF1,RASA1,TNXB,NF2,NF1,RICTOR,RACGAP1,CAPG,AMOT,KPTN,CRK +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html KCNMB4,BCL10,GCLC,PDPN,NKX2-6,LMO4,KEL,VANGL2,CELSR1,SOD1,GLI2,GCLM,TINAG,SHH,KCNMB2,CALCA,NOTCH4,SFTPD +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html XRCC2,PRC1,DBF4,KNTC1,TTK,PKMYT1,AURKA,CDC16,TTN,FOXO4,TGFB1,CUL3,CUL2,CUL5,CDKN2A,RAD21,CDKN2B,DDX11,CDKN2C,TARDBP,CDKN2D,STAG3,TUBG1,CCNA1,CCNA2,CDCA5,CUL1,ANAPC5,RAN,RINT1,ANAPC4,POLE,LIG3,SKP2,TBRG4,ESPL1,PIM2,DCTN3,FOXN3,BOLL,DCTN2,RAD1,REC8,MAD2L1,TIMELESS,ZWINT,CNTROB,CLIP1,STMN1,AKAP8,MAD2L2,RAD17,NEK6,PPP5C,PAM,NEK2,MRE11A,TIPIN,ANLN,ANAPC10,CHEK1,ANAPC11,RCC1,SYCP1,PIN1,PRUNE2,DUSP13,RAD51L1,SAC3D1,KATNA1,NPM2,NPM1,TUBE1,PBRM1,FBXO5,RAD51L3,EGF,GML,SSSCA1,TAF1,CKAP5,BRCA2,CDC23,NDC80,TPD52L1,SUGT1,RAD54L,CDC27,ATM,CDKN1C,CDKN1A,CDKN1B,NOLC1,PLK1,POLD1,MYO16,RAD54B,ABL1,SMC1A,MYH10,KIF23,E2F1,KIF22,NBN,KIF25,LATS1,LATS2,ACVR1B,KIF2C,TRIAP1,NDE1,GFI1B,CEP250,PCBP4,PRMT5,TGFA,CDK10,ZW10,TAF1L,KHDRBS1,CDC7,CDC6,KIF11,KIF15,TPX2,NUSAP1,CDK6,RB1,UBE2C,CDK4,RAD52,CDK2,RAD50,RAD51,SPDYA,INHBA,SASS6,CHMP1A,EREG,CDK2AP1,TOP3A,BUB1B,USH1C,MDM4,CHFR,DMC1,KPNA2,ACVR1,MAP3K11,BCAT1,PPP6C,POLA1,PML,CETN3,CETN1,BRSK1,SPO11,NUMA1,NCAPH,HSPA2,KRT7,BUB1,PAFAH1B1,GFI1,CD28,PTPRC,PDS5B,MSH5,MSH4,CENPF,CENPE,BIRC5,CP110,CDC25C,RACGAP1,CDKN3,SC65,SMC3,CDC25B,SMC4,MPHOSPH9,GSPT1,CUL4A,EPGN,CIT,APBB2,MPHOSPH6,APBB1 +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html CPT1B,PPARA,HACL1,PPARD,ACADM,ECH1,ACADS,ADIPOR2,ECHS1,ADIPOR1,PPARGC1A,CPT1A,HADHB,HAO1,ACADVL,HAO2,BDH2,ALOX12 +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html IL4,TRAF2,PTPRC,DEFB103A,MALT1,TNFSF13,FOXP3,TGFB1,MAP3K7,APOA2,APOA1,CD40LG,TRAF6 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html ENPP7,SGMS2,ST8SIA1,ST8SIA3,PPT1,SGMS1,LASS5,ASAH1,ASAH2,ST6GALNAC6,SERINC1,CERK,NSMAF,B4GALNT1,CLN3,SGPL1,SPTLC1,PSAP,UGCG,SPHK1,LARGE,GLA,LASS1,ST8SIA5,NEU3,SMPD4,SMPD3,CLN6,SMPD2 +PWCOMMONS NEGATIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LIMA1,ARHGEF2,GSN,CAPG,KATNB1,CLASP1,MID1IP1,TMSB4Y,MAPRE1,APC +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html COG3,COPB2,COPG2,NAPG,COPB1,STX16,COPZ1,NAPA,GOSR1,OPTN,COPE,COG2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html HRAS,CASR,ADCY8,CRHBP,OBP2B,ZIC1,CXCL11,CXCL12,IL10,CXCL10,TGFB2,AGTR2,HTR1A,APOE,GALR3,GALR2,RALA,SPN,SYK,PLD1,C5AR1,PIK3CB,PMCH,UBR3,PLAUR,CCR9,CCR8,MAPK1,CCR7,CCR6,CCR5,CCR4,CCR3,CCR2,CX3CR1,CARTPT,ABAT,DEFA1,DYNLRB1,CCL1,CCL3,CCL2,DRD3,PPYR1,CCL8,ITGB2,CX3CL1,CCL5,CCL7,HCRTR2,HCRTR1,DOCK2,KAL1,CNR1,CKLF,CNR2,SFTPD,AGRP,IL1RAPL1,DEFB1,NOVA1,MAP2K1,HTT,MAOA,S100B,CXCL14,NPY,CXCL13,NPW,LTB4R2,PYY,GHSR,XCL1,PLAU,MTNR1A,OPRM1,TAS2R1,MCHR1,CCKAR,TAS2R5,TRPV1,TACR1,CXCR3,CCRL2,CXCR4,SAA1,NMUR2,DLG4,XCR1,FGF2,FOSL1,CCRL1,CCKBR,RALBP1,CMKLR1,FOSB,SLIT2,PROK2,PTGDS,GHRL,PTAFR,CXCL1,CXCL5,NPY2R,OPRK1,C5,CXCL2,FPR1,CXCL9,PF4,CXCL6,HPRT1,CCL28,CCL27,CCL26,CCL24,CCL25,CCL22,CCL23,CCL20,CCL21,CCBP2,LECT2,ACSL4,SCG2,IL4,KLK8,RNASE2,IL8,NF1,CCL19,BRS3,SOD1,CCL16,CCL15,CCL18,CCL17,CCL11,GCG,LEP,CDH13,CCL13,FYN,MAPK14,C7ORF16,CRH,MC4R,HTR2C,VLDLR +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF2C1,AURKAIP1,ATP6AP2,LTBP4,EIF5,TLR1,TLR3,EIF5A,TLR4,TLR6,TLR7,CXCL12,SHH,TGFB1,IL10,TLR8,IL31RA,TLR9,APOA2,ATG7,DDX25,TDGF1,HRSP12,EIF1,EIF2B2,DNAJC1,EBI3,SPN,SAMD4A,EIF2B5,EGFR,BCL10,GTPBP4,IL29,IL27,SOCS1,PPARGC1A,TRAT1,BOLL,IL20,EIF2AK1,BACE2,RNF139,HSPB1,EIF2AK3,EIF2AK4,ITLN1,KATNB1,IGF2BP2,ITGB2,ARF6,MTIF2,MTIF3,TIMP1,EIF3C,IRAK3,EIF3D,CDC42EP2,EIF3A,EIF3G,INS,EIF3H,EIF3E,IL17F,EIF3F,SFTPD,CLASP1,EIF3I,EIF3J,ANGPTL3,UBE2D1,CDC42EP5,BMP4,PAIP2,CD276,FOXP3,FURIN,BRCA1,EIF4B,AKTIP,TSC1,EIF4H,GLMN,HGS,TNK2,GHSR,IL22RA2,LIMA1,METAP1,EIF2A,LATS1,YBX2,CDC42,NDUFS4,TPP1,GSN,CLCF1,MAPT,LTB,ARHGEF2,CCDC88A,LYN,PRG3,CCDC88C,NDUFA13,PRKCG,EIF1B,MID1IP1,INHA,SIGIRR,UBE2N,INHBB,EIF4A3,INHBA,EIF4G2,NCK2,CARD14,EIF4G3,CCND1,MAST2,CCND3,EREG,CD80,CCND2,MTRF1,EIF4A2,TPPP,NCK1,CD81,IL12A,GHRL,MDM2,TMSB4Y,MDM4,MAPRE1,IL12B,CLN6,HCFC1,TNFRSF8,EGLN2,STUB1,NECAB3,PAIP2B,AZU1,SET,KRT7,REN,SEPSECS,BCL3,DAZL,RASA1,CD28,APC,IL4,IL3,IL6,DAZ1,IL5,UPF1,NF2,CEBPG,HCLS1,IL9,ETF1,CAPG,NLRP12,PPP2R4,IRF4,FAF1,APBB1,IGFBP3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ALS2,RPL17,VAPA,CITED2,MYD88,GIT2,ABRA,GNG4,GNG7,CD40,RIC8B,BRAP,THY1,ATP2C1,NEK6,AFAP1L2,ARF6,ADRB3,IL17F,RAC1,GIT1,MDFI,TAOK2,LGALS1,TAOK3,NDFIP1,SMAD4,CIDEA,NDFIP2,SMAD3,SMAD2,TPD52L1,TAX1BP3,ECM1,LGALS9,APOL3,NOTCH2,CBLC,CDC42BPG,NUP62,RGS2,RGS3,RGS4,RGS5,CDC42BPA,GRK6,HGS,GRK4,RGS9,SMURF1,GRK5,ENG,CDC42BPB,GRK1,SLC20A1,TP63,GJA1,ZNF675,PTEN,GLI1,CANT1,NOD2,NOD1,TICAM1,TICAM2,TGFA,TMEM101,LTBR,LYN,NFAM1,FLNA,SIGIRR,AMBP,NCK2,INHBA,GRM4,ZDHHC17,TNFRSF10B,EREG,ZDHHC13,RIPK1,IL12A,EEF1D,TFG,TRIM13,FKBP1A,SQSTM1,PLEKHG5,VWC2,CC2D1A,CD24,CD27,HCLS1,NLK,IGF1,RICTOR,BIRC2,CDH13,SOST,EPGN,EEF1E1,NLRP12,HTR2B,SLC44A2,ATP6AP2,TBK1,TSPAN6,ZIC1,TLR6,TGFB1,IL31RA,DMPK,TMEM9B,CDKN2B,MIER1,MDFIC,TDGF1,RGN,GPR89A,BCL10,BST2,IL29,GOLT1B,RELA,SOCS1,FADD,TRAT1,IL20,TRIM38,PLCE1,MIB2,RIPK2,TNFAIP3,PPP5C,FGD2,FGD1,EID2,LITAF,SNX6,UBE2V1,CXXC5,PEG10,OTUD7B,TRAF7,TRAF6,FGD5,EGF,FGD6,TRAF5,FGD3,FGD4,CFLAR,CARD8,CARD9,MALT1,TRADD,TRAF3IP2,CDKN1C,IKBKE,TNFSF10,PLK2,TSC1,CDKN2AIP,IL22RA2,FASLG,ACVR1B,CLCF1,HMOX1,CASP8,RHOA,RHOC,SHC1,CASP1,RAMP1,RHOH,RALBP1,SLA2,OTX2,PIGU,ARHGAP27,ECT2,UBE2N,MFN2,ACVR2A,ACVR2B,ADRB2,HIPK2,ACVR1,PPM1A,TNFRSF1A,TMED4,RGS11,RGS12,REL,MAP3K3,SLC35B2,RASGRP4,REN,SECTM1,PTPRC,NF2,DTX1,NF1,EDA2R,CBY1,RGS16,FRZB,RGS14,RGS20,MAPK8IP2,MAPK8IP3,MAPK8IP1,F2R +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html PAM,KIF25,PDS5B,CDC23,NUSAP1,ESPL1,CENPE,NDC80,SMC4,CHMP1A,NCAPH,DDX11,ZWINT,SMC1A,CDCA5,ZW10 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html MBL2,TRAF2,CADM1,BCAR1,TLR8,TGFB2,MAP3K7,CFHR1,KRT1,IFNK,C2,TRAF6,PTPRC,CRTAM,IL29,SLA2,MALT1,NFAM1,TRAT1,CD1D,THY1,UBE2N,LAT2,EREG,FYN,IKBKG,IL12A,CD79A,IL12B +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html LIMA1,KATNB1,IL10,TIMP1,PAIP2B,CDC42,APOA2,SET,GSN,INS,SFTPD,BCL3,CLASP1,DNAJC1,APC,GTPBP4,ARHGEF2,IL6,NF2,PRG3,PAIP2,SOCS1,NDUFA13,PRKCG,MID1IP1,INHA,FOXP3,FURIN,TRAT1,SIGIRR,INHBB,EIF4A3,INHBA,EIF2AK1,TSC1,BACE2,CAPG,NLRP12,GHRL,PPP2R4,MAPRE1,TMSB4Y,MDM4,GHSR,EIF2AK3,APBB1,IGFBP3 +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html GC,SLC22A16,CUBN,PDPN,TCN2,SLC19A1,TCN1,FOLR3,FOLR2,FOLR1,SLC22A4,SLC22A5,SLC46A1 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html EGFR,IL3,IL5,NF2,LYN,IL29,HCLS1,SOCS1,ITGB2,IL20,IL31RA,CD80,CLCF1,TDGF1,CD81,IL12A,TNK2,IL22RA2 +PWCOMMONS REGULATION OF GENE SPECIFIC TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_SPECIFIC_TRANSCRIPTION.html ATF6,BMP2,BPTF,TRIM28,SPI1,PEX14,RORB,SMARCA1,ARHGEF10L,SCAP +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html NCBP2,ORAI1,SPACA3,ITLN1,CBL,TNFSF14,SMAD3,STIM1,PPT1,CDH1,LDLRAP1,FLNA,AHSG,AZU1,GATA2,GCK,GHRH,GSK3B,SFTPD,NLRP12,GHRL,CARTPT,TRIP6 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html E2F2,E2F3,RSF1,MED24,TBP,MED23,GTF2E1,GTF2E2,MAZ,MED26,MED27,GTF3C4,TAF2,SNAPC5,BRF1,TAF5,MED12,CDK9,MED14,MED13,CDK7,PPARGC1A,MED7,MED4,MED30,PTRF,GTF2I,MED16,MED17,GTF2F1,GTF2F2,THRAP3,NCOA6,SMARCA5,MED1 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html P4HB,CCBL1,SNCAIP,PRG3,GATM,ALDH5A1,HPRT1,CDO1,BBOX1,TGFB2,OAZ2,OAZ1,COLQ,DIO2,SULT1B1,ASMTL,ETNK1,DHPS,MAT2B,GAMT,SLC5A7,DIO1,SMS +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html SPACA3,ADORA2A,GULP1,COLEC12,ADORA1,ELMO1,AHSG,AZU1,CORO1C,GATA2,DOCK1,FCN2,FCGR1A,FCN1,SFTPD,CLEC7A,CD14 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROCESS.html DLC1,AIF1,MXI1,CIAPIN1,ZNF254,CUL3,MAGED1,CUL2,EPC1,CUL5,ZNF396,FAS,DDAH2,CUL1,MAP2K6,CGRRF1,OPA1,BRAF,CRYAA,CRYAB,ZHX1,MECP2,ZHX2,ZHX3,BRAP,THY1,BCL2L10,SSTR4,NME5,SSTR5,SIRPG,SSTR2,NME2,ADAMTS8,EIF2AK1,SSTR3,ZNF238,NME1,SSTR1,BACE2,TGIF1,ADAMTS1,ATPIF1,MAPK8,EIF2AK2,EIF2AK3,MYO18A,DCBLD2,TNFRSF6B,PPP2R3B,NFKBIE,BCL2L2,PPT1,ARF6,HSPA1B,BCL2L1,VPS72,PEA15,NPHP3,ADRB3,HEXIM2,HEXIM1,RAC1,CDC123,DMBX1,KLF12,PAIP2,PHB,KLF10,KLF11,SPHK1,TAOK3,GAS1,ATR,GAS8,GAS7,RERG,BFAR,NFKBIL2,HGS,SMURF1,OPRM1,RTN4,LIMA1,HTATIP2,NUAK2,FAM3D,GLRA1,SPI1,BNIP3,TP63,ZNF675,DAXX,ZNF345,LATS1,LATS2,BNIPL,ZNF350,ZNF148,SERTAD3,MYC,USH2A,SERTAD2,ATF7IP,ZNF281,CLN3,CDC6,ARHGEF2,TP53,NDUFA13,TLE1,FOSB,GPR98,JMY,MXD4,INHBB,INHBA,NCK2,EIF4A3,SERPINB9,EREG,BNIP1,BNIP2,CLIC4,ZNF136,SERPINB2,FOXC1,TMSB4Y,NSD1,ALOX12,ZMYND11,PML,RTKN,ABI1,ZNF177,PR47,ZNF174,CCL23,PER1,SUPT4H1,RASA1,FOXD3,IL4,IL3,IL6,IL8,IL7,ZNF24,TRIM27,TNP1,PHF12,PLG,CDH13,ZNF157,SOST,GLA,GSK3B,RASSF1,BNIP3L,NLRP12,HPGD,BARD1,IL2,BMP10,CNOT8,ZAK,TNFSF15,OSGIN1,RBM9,TCEAL1,TNFSF18,IL10,TGFB1,TGFB2,VCL,IL11,APOA2,CDKN2A,PACSIN3,CDKN2B,CDKN2C,CDKN2D,TGFBI,TDGF1,IL1B,API5,DNAJC1,IL1A,BCL10,ZNF593,IL29,DFFA,RELA,STIM2,ACTN1,HBXIP,CSDA,PA2G4,SMARCE1,TIMELESS,TNFAIP8,HSPB1,TNFAIP3,ARHGDIG,EID1,HMGB1,EID2,CCL2,IFITM1,STK11,SESN1,TIMP1,VDR,PEG10,MIA3,AKT1S1,MEIS2,PRKRA,OTUD7B,B4GALT7,ARHGDIA,HELLS,ANGPTL4,ZNF423,ARHGDIB,CREBZF,FURIN,UIMC1,HDAC5,CDKN1C,CDKN1A,HDAC3,CDKN1B,TSC1,HDAC1,CDKN2AIP,SMARCC2,FABP3,MYO16,ADRA1A,FABP7,HDAC8,PDZD3,FABP6,E2F1,IER3,NBN,RSF1,ARID4A,E2F6,DEDD,RPRM,BAP1,ZNF202,PRDX2,CTCF,PAWR,CDC42,WARS,CASP3,CLCF1,PAX7,RHOB,DLG5,NDUFS3,NRG1,CDK5RAP1,RHOH,NFX1,DLG1,KNG1,ARID5B,SLA2,ARID5A,CDK6,MID1IP1,RB1,DHRS2,PPM1G,ADRB2,PPM1D,ERN1,ERN2,CNTN4,MAPRE1,TM4SF4,ACVR1,BCLAF1,NDN,PF4,ASNS,DEC1,PAIP2B,IGF1R,ORC2L,TSPYL2,DAD1,B4GALNT2,GPNMB,TERF2,HSPA9,NOX4,COL4A3,KLK8,NF2,VHL,NF1,ANXA1,ANXA5,FRZB,ANXA4,PPP1R9B,HSP90B1,GCK,CUL4A,ID2,ID1,BAX,ID4,FAF1,ID3,RARRES3,RARRES1,FST,SNCA,SHH,SIN3A,WWP1,SUPT5H,TWIST2,TWIST1,GTPBP4,PIM1,TBRG4,RAD9A,RND1,KRT18,PIAS4,ALOX15B,CD40LG,TXNDC5,CD33,TBRG1,VEGFA,MNT,PRDM1,TGFB1I1,SUDS3,IQCB1,ENPP7,CHEK1,CD74,UHMK1,LIF,PLAGL1,NR1H2,DRAP1,BAI1,CDA,BCOR,NKX2-5,TCF25,BMP4,COL18A1,NKRF,MDFI,BMP2,BECN1,TP53BP2,RYBP,S100A11,SMAD4,SMAD3,CIDEA,SMAD2,TAX1BP3,UBP1,TAX1BP1,CBLC,NOTCH2,NOTCH1,NR1I2,RNF7,SFRP1,NUP62,ETS1,NOTCH4,JAZF1,GHSR,RBPJ,BMP7,UTP20,PRKRIR,KLF4,ZBTB32,DLEC1,PPARD,ACVRL1,NFKB1,ZEB1,TERF2IP,GLI2,HSBP1,PTEN,CDT1,BAG4,TRIAP1,GPX1,CGREF1,GFI1B,BAG1,CCL3L3,DHCR24,CTBP1,CTBP2,ADAM10,RBBP4,PRG3,CD164,SIGIRR,AMBP,PROK2,AMIGO2,CHMP1A,PSEN1,GRM8,LAX1,TNFRSF10D,AVEN,RIPPLY1,SEMA4D,GADD45A,CXCL1,YWHAZ,ZBTB16,ZBTB17,MLF1,MIF,SUMO1,SET,SPEG,BCL2,LANCL2,GATAD2A,PEX14,BCL3,VWC2,AATF,BCL6,QSOX1,CD27,CD28,PDS5B,TBX3,TBX2,TBX5,NLK,GMNN,BIRC6,ILF3,BIRC5,CDKN3,SOD1,SNAI2,BIRC3,STAT3,CAPRIN2,YWHAH,MAPK12,YAF2,EEF1E1,CAPG,PHF21A,PPP2R4,APBB2,APBB1,TOB2,TOB1,CBX4,FOXO1,FOXO4,GDNF,TPT1,ODZ1,MYST1,SPN,MYST4,MYST3,SOCS2,SOCS3,SOCS1,BCL2A1,HRK,ZNF189,SOCS5,NR0B2,NR0B1,TRAT1,FOXN3,PTHLH,CARTPT,EMP3,ERC1,RAD17,GCLC,LST1,SNX6,MCL1,PKHD1,KATNB1,TIPIN,UMOD,ELK3,FTH1,ALB,NPM1,SFTPD,GLO1,CLASP1,GML,RUNX2,RUNX3,CFLAR,CARD8,TP53I11,GNRH1,MAFB,BRCA2,SNW1,FOXP3,BRCA1,NFKBIL1,DNMT1,GLMN,RFX3,LDOC1,SST,RSC1A1,IFI6,IGFBP7,IGFBP6,NR6A1,PDCD4,MEN1,ACVR1B,ANG,GSN,PCBP4,PCGF6,ATP8B1,POU4F2,YRDC,CDK10,KHDRBS1,NOL3,LDB1,PRKCG,INHA,NLRP3,NRIP1,PROC,MFN2,OSM,TNFRSF9,EIF4G2,BPTF,BTG2,BTG1,BTG4,HIPK3,SCIN,CFL1,BTG3,FAIM3,GHRL,MDM2,NAIP,MDM4,COMMD7,CUX1,PPP1R15A,ZFP161,GSTP1,ING5,PRKCZ,ING4,FRK,GLIS3,TNF,GLIS2,GLIS1,IFNW1,TNFRSF8,POU1F1,CALCA,ERCC5,SH3GLB1,POU2F1,TNFRSF18,KRT4,ING1,ERCC4,FGFBP1,ERCC1,PIK3R2,SCG2,APC,ENO1,PTPRC,IL2RB,DTX1,SIRT4,SIRT5,CENPF,CBY1,SIRT1,SIRT2,ATXN1,SON,IRF7,DR1,IRF8,GRLF1,BRE,ATP8A2,IRF2,MPO,PPP1R13B,IGFBP3,TIAF1 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html HS3ST5,NDST1,CHST3,GLCE,CHST7,CHST9,CHST12,CHST8,CHST11,CHST13,HS6ST1,EXT1,HS3ST3B1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html SMARCAD1,ENPP7,NBN,WRNIP1,MRE11A,TIPIN,UBE2V1,TNFSF13,UBE2V2,TERF2IP,GLI2,IL7R,TGFB1,CDT1,GLI1,SET,TSPYL2,TLK1,TLK2,ERCC4,TERF2,ERCC1,IL4,CDC6,GTPBP4,CCDC88A,POLH,NF2,PIF1,GMNN,CEBPG,S100A11,PRKCG,RAD9A,ATR,PPARGC1A,CDK2,RAD50,RAD51,UBE2N,EREG,KPNA2,KPNA1,RAD17 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html HRAS,CXCR3,CXCL11,CXCL12,IL10,TGFB2,CXCL10,CCRL2,CXCR4,SAA1,RALA,XCR1,FGF2,FOSL1,SPN,CCRL1,SYK,PLD1,C5AR1,RALBP1,CMKLR1,PIK3CB,SLIT2,PLAUR,CCR9,PROK2,CCR8,MAPK1,CCR7,CCR6,CCR5,CCR4,CCR3,CX3CR1,CCR2,DEFA1,PTAFR,CXCL1,CCL1,CCL3,CCL2,CXCL5,NPY2R,C5,CXCL2,CXCL9,FPR1,CCL8,PF4,ITGB2,CXCL6,CX3CL1,CCL5,CCL28,CCL27,CCL7,CCL26,CCL24,CCL25,CCL22,DOCK2,CCL23,CCL20,CCL21,KAL1,CKLF,SFTPD,CCBP2,LECT2,DEFB1,NOVA1,SCG2,IL4,RNASE2,IL8,MAP2K1,CCL19,SOD1,CCL16,CCL15,CCL18,CCL17,CCL11,CDH13,CCL13,CXCL14,CXCL13,MAPK14,LTB4R2,XCL1,PLAU +PWCOMMONS RNA ELONGATION http://www.broadinstitute.org/gsea/msigdb/cards/RNA_ELONGATION.html ADRM1,ERCC6,ELL,GTF2F2,TCEB2,CDK9,SUPT4H1,ELL3,SUPT5H,ELL2 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html ARHGDIG,EMCN,ACVRL1,IL18,CX3CL1,PTEN,PR47,AZU1,CD47,MIA3,CDKN2A,SAA1,PRSS2,TGFBI,TGM2,B4GALNT2,RASA1,SPN,ARHGDIA,ARHGDIB,KNG1,GTPBP4,ADAM10,NF2,IL8,NF1,CDK6,DLL1,CDH13,SIRPG,RND1,TSC1,IL12A,IL12B,ALOX12 +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html PTPRC,CD3D,IL7,IL27,JAG2,SOCS5,SPINK5,SART1,CD1D,LCK,ZAP70,CD4,IL12B,NHEJ1,IL2 +PWCOMMONS REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEVELOPMENTAL_PROCESS.html CIAPIN1,SART1,BTK,CUL3,MAGED1,CUL2,CUL5,MAP3K5,FAS,DDAH2,CUL1,CRTAM,OPA1,BRAF,CRYAA,CRYAB,MYH9,BCL2L11,BCL2L10,THY1,MAPK1,NME5,NME2,NME3,SSTR3,SERPINF1,NME1,IFNB1,F2,MAPK8,MYO18A,UNC13B,TNFRSF6B,PPT1,BCL2L2,BCL2L1,HSPA1B,IFNA2,PEA15,NPHP3,CDC42EP2,CDC42EP1,IL17F,ZAP70,DIABLO,CDC42EP4,CDC42EP5,TAOK2,PHB,SPHK1,TNNI3,BFAR,EI24,RTN4,HTATIP2,NUAK2,SPI1,TP63,BNIP3,ZNF675,DAXX,MAPT,USH2A,CLN3,AIFM3,AIFM2,AIFM1,TP53,NDUFA13,GPR98,JMY,SERPINB9,INHBA,BNIP1,EREG,BNIP2,SERPINB2,IL12A,IL12B,ALOX12,PML,RTKN,PPP2CA,PCSK9,RASA1,IL4,IL3,IL6,IL7,TP73,PLG,NAE1,CDH13,STAB1,GSK3B,BNIP3L,AMOT,BARD1,IL2,ZAK,TNFSF15,TNFSF14,LRRC4C,TNFSF12,TNFSF18,CRADD,TGFB1,TGFB2,NLRC4,CDKN2A,CDKN2C,ADIG,CDKN2D,TIA1,TDGF1,ZNF443,DAP,API5,IL1A,BCL10,NUDT2,DFFA,RELA,IL27,FADD,HBXIP,IL20,TCFL5,TNFAIP8,HSPB1,FGD2,HMGB1,FGD1,CCL2,ADAMTSL4,PRUNE2,AKT1S1,DYRK2,TRAF7,ANGPTL3,FGD5,FGD6,FGD3,ARHGDIA,TRAF3,ANGPTL4,FGD4,TAF8,ANKH,TRADD,HDAC5,HDAC4,HDAC3,CDKN1A,TNFSF10,CDKN1B,VCP,HDAC1,IKBKG,HSPD1,HDAC9,ABL1,DNAJB6,IER3,DEDD,PRDX2,CASP6,CDC42,CASP3,CASP4,CASP9,CLCF1,RPS3A,PAX7,RHOB,NDUFS3,PPP2R1A,CYCS,CDK6,IFI16,CDK5,LCK,ERN1,ERN2,CNTN4,UBB,ACVR1,DPF2,DCC,BCLAF1,RNH1,ASNS,PF4,TRAIP,DPF1,IGF1R,CD2,DAD1,HSPA9,COL4A4,COL4A3,COL4A2,KLK8,KL,CEBPG,NF1,ANXA1,ANXA5,ANXA4,TNFSF8,HSP90B1,CUL4A,BAX,APAF1,CADM1,FST,SNCA,ADORA1,SHH,BAK1,APOE,CHRNA7,TWIST2,CD3G,PIM1,CD38,KRT18,CD40LG,ALOX15B,TXNDC5,VEGFA,NPTN,IQCB1,LALBA,SIVA1,CDK5R1,STK17B,CD70,STK17A,CHEK2,CALR,CD74,AHSG,PLAGL1,AGGF1,C16ORF5,HIP1,BMP4,TP53BP2,BECN1,LGALS1,CIDEB,CIDEA,SMAD3,TPD52L1,TAX1BP1,CIDEC,NOTCH2,NOTCH1,RNF7,SFRP1,NUP62,ETS1,NOTCH4,BCAR1,FASTK,PPARG,NFKB1,PTEN,SPINK5,TRIAP1,GPX1,BAG4,BAG1,TOP2A,DEDD2,DHCR24,LGALS12,SLIT2,AMIGO1,PROK2,GRM4,AMIGO2,PSEN1,TNFRSF10D,MAP3K10,NPPB,AVEN,SEMA4D,BID,YWHAZ,ZBTB16,SFN,MIF,BCL2,BCL3,VWC2,AATF,BCL6,CD27,CD28,TBX3,TBX5,NLGN1,NPR1,BIRC6,BIRC5,STAT1,BIRC3,SOD1,YWHAG,YWHAH,IFT57,EEF1E1,BIK,TLR2,CBX4,EIF5A,FOXO1,PMAIP1,FOXO3,FOXO4,GDNF,SMNDC1,CASP8AP2,ROBO1,TPT1,ROBO2,ACIN1,MX1,SOCS2,SOCS3,MADD,BCL2A1,HRK,SOCS5,STK4,STK3,TIAL1,RIPK3,CARTPT,ERC1,GCLC,MCL1,RRAGA,MAP4K1,ALB,MTCH1,NPM1,GLO1,RUNX1,SRGN,RUNX3,CFLAR,CARD8,MAFB,HTT,MALT1,WRN,BRCA1,BBC3,PDCD5,SST,PDCD6,PDCD7,IFI6,DAP3,HPS4,FASLG,ACVR1C,ACVR1B,BOK,PCBP4,MKL2,BOC,LTA,PRKCA,NANOG,NOL3,LDB1,INHA,DAPK2,NLRP3,PRKCE,DAPK3,NLRP2,NCR1,DAPK1,PROC,TNFRSF9,ACVR2A,BTG1,HIPK3,CFL1,SCIN,FAIM3,GHRL,NAIP,CTSB,GSTP1,PRKCZ,TNF,TNFRSF25,TNFRSF8,CALCA,ERCC5,UTP11L,MOAP1,SH3GLB1,PTH,PYCARD,TNFRSF18,ERCC3,PIK3R2,SCG2,ERCC2,PTPRC,FOXL2,IL2RB,DTX1,CENPF,SAP30BP,SIRT2,CASP10,SON,BRE,MPO,PPP1R13B,BMPR1B,IGFBP3,TIAF1,F2R +PWCOMMONS RESPONSE TO HEAT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HEAT.html AKT1,GCLC,CRNN,EIF2B2,SOD1,DNAJB4,EIF2B3,EIF2B1,EIF2B4,EIF2B5 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html ADORA2B,ZAK,PTPLAD1,C5,FPR1,MAP4K1,DAXX,MAP3K6,MAP3K5,MDFIC,MAP3K2,CXCR4,MAP3K9,TDGF1,ADRA2A,TGFA,SHC1,CHRNA7,ADRA2C,GNG3,EGF,FGF2,MDFI,DBNL,C5AR1,MADD,PIK3CB,KIAA1804,PKN1,SOD1,GRM4,PROK2,MAP4K5,PLCE1,ADRB2,EPGN,CD81,MAP3K10,GHRL,MAP3K11 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html HCCS,CYP24A1,OXA1L,GNPDA1,WFS1,PGD,AQP7,PDX1,OGDH,PDHB,PLOD1,SLC25A27,SPR,APOM,INSR,WWOX,TXNL1,FECH,NCF4,CDO1,PPARGC1A,POR,NNT,ATPIF1,SURF1,CROT,ACAA1,PHKA2,ME3,CYP1B1,ENPP1,GLUD2,PHKA1,POMC,ADRB3,INS,GYS2,C16ORF7,DYRK2,EPM2A,FDXR,CRAT,SLC25A12,NRF1,SLC25A14,GBE1,SLC25A13,AVPR1A,QPRT,ASIP,UQCRC2,MCHR1,PPARD,UQCRC1,CYB5R2,ENOX2,PHKB,LEPR,DUOX2,PPARG,DUOX1,PPOX,PDIA5,AKR1C3,NDUFS4,FXN,GPX4,SLC25A3,TREH,LOXL1,COX17,AKR1C1,NDUFS1,AVP,ACO2,SLC25A4,ALDH5A1,PHKG2,CYCS,RUNX1T1,GRHPR,DDO,MTRR,ACADVL,DHRS2,DHRS4,UQCRH,GIPR,GAA,AKR1D1,ALDH9A1,UQCRB,AOC3,XYLB,ECH1,ADH7,GCGR,ALDH3A1,SCO2,NOX4,CEBPA,DLST,NOX5,BCS1L,CYP4F11,GYG2,ISL1,ADIPOQ,BLVRA,LEP,SDHA,NDOR1,SDHB,PPP1R2,PYGM,GCK,SDHC,GFPT1,GSK3B,SDHD,GFPT2,RETSAT,PYGB +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN22,TIMM50,PTPN21,PTEN,TGFB1,NT5C,PTPRJ,PPP2R1A,PTPRM,PTPRN2,PTPRH,PTPRR,PTPRT,PTPRO,TPTE,PPM1G,PNKP,PPM1D,PPP1CA,SBF1,PPEF2,PPEF1,PPM1M,CTDP1,PPP2R2A,PPP5C,PPP6C,PPP2R3B,PPP2R3A,SSH1,SSH2,DUSP10,PPM1B,MTMR3,THTPA,DUSP13,PPP2CA,PTPLA,PPP2CB,PPAP2A,MTMR7,PTPN7,PTPRB,PTPRC,PTPN6,PTPRD,PTPN9,PTPRE,SMG6,PTPN18,PTPN3,PTPRZ1,SMG5,PTPN2,PTPN5,EPM2A,SMG7,PTPN4,PTPN14,DUSP22,PTPN13,PTPN12,DUSP5,DUSP4,DUSP3,DUSP2,PPP2R4,DUSP9,DUSP8,DUSP6 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html IMPA1,SGMS2,GBGT1,SGMS1,LASS5,PIGK,ST6GALNAC6,APOA1,PIGF,PIGG,LCAT,PIGH,PIGB,PIGC,PCYT2,AGPAT2,AGPAT1,PIGA,PIGZ,PIGY,PIK3C2A,PIGV,UGCG,PIGU,PI4KA,PIGT,PIGS,PI4KB,CHPT1,PIGO,PI4K2A,CD81,PGS1,GPAA1,ST8SIA1,ST8SIA3,DGKE,LPCAT1,B3GNT5,PEMT,ETNK1,PCYT1B,FADS1,LARGE,ST8SIA5,LASS1,DPM1,DPM2,DPM3 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html HMGB1,E2F2,E2F3,RSF1,NAP1L1,MED24,MED23,TBP,NAP1L3,NAP1L2,NAP1L4,GTF2E1,GTF2E2,SET,MAZ,MED26,MED27,ASF1A,GTF3C4,TAF2,ATF7IP,SNAPC5,BRF1,TAF5,MED12,CDK9,MED14,MED13,CDK7,PPARGC1A,MED7,MED4,MED30,PTRF,MED16,GTF2I,GTF2F1,MED17,THRAP3,GTF2F2,NCOA6,SMARCA5,PBX1,CHAF1A,PBX3,CHAF1B,PBX4,MED1 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html ORAI1,CCL8,CACNB3,CACNB4,SLN,NMUR1,NMUR2,TRPV5,CHRNA7,TRPC1,SLC8A1,TRPC4,CACNA2D1,TRPC3,TRPC5,STIM2,STIM1,TRPM2,NPY,ATP2C1,ATP2A3,PLN,RYR3,ATP2A1,RYR1,CACNA1D,CSN2 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html IL18,SPINK5,SART1,CD47,ZAP70,SFTPD,CD24,EBI3,CD28,IL4,PTPRC,SIT1,CD3E,IL7,IL27,CD276,SOCS5,IL21,THY1,NCK2,LAT,SIRPG,LAX1,NCK1,LCK,GLMN,IL12B,ICOSLG +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html ALS2,NRP2,RTN4,NRP1,RORB,LRRC4C,PAX2,GLI2,SHH,ROBO1,APOE,MAPT,CEP290,SEMA3B,ROBO2,POU4F1,UNC5C,SPON2,NRXN3,BAIAP2,OTX2,NRXN1,SLIT1,SLIT2,THY1,AMIGO1,NRL,SEMA4F,OPHN1,SIAH1,CNTN4,UBB,PARD3,CDK5R1,RTN4RL1,KAL1,BAI1,RTN4RL2,PARD6B,KLK8,DPYSL5,NTNG1,NTNG2,YWHAH,S100B,MAP1S,CYFIP1,FEZ2,FEZ1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F2RL2,COPA,F2RL3,F13A1,HPS4,GNA12,MMRN1,GP9,FLI1,SERPINE1,SLC22A4,SLC22A2,KNG1,F12,L3MBTL4,F10,F8,SLC34A1,F9,F7,WAS,PROC,THBD,CD36,GNAQ,HNF4A,F5,CD40LG,F2,TFPI,NPPB,PROS1,VIP,GGCX,AVPR2,ADORA2A,PABPC4,PF4,ITGB3,LMAN1,PR47,F13B,GP1BA,ENTPD1,PLAT,GUCA1B,NFE2,NPR1,ITGA2,C4BPB,TMPRSS6,PLG,CEL,GPI,VWF,CD59,F2R +PWCOMMONS COENZYME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_BIOSYNTHETIC_PROCESS.html ME1,COASY,COQ3,COQ2,MOCS2,GCLC,COQ7,GCLM,PDSS1,PDSS2 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html ING5,DCBLD2,DLC1,BMP10,ING4,PML,PPT1,OSGIN1,TGFB1,ACVR1B,CDKN2A,TSPYL2,CDKN2C,CDKN2D,SERTAD3,CDA,BCL6,NDUFS3,SERTAD2,ENO1,KLK8,SMAD4,TP53,SMAD3,NDUFA13,RB1,CAPRIN2,RERG,PPP1R9B,INHBA,CDKN1A,CDKN1B,ALOX15B,BBC3,CDKN2AIP,PTCH1,APBB2,APBB1 +PWCOMMONS EPITHELIAL TO MESENCHYMAL TRANSITION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_TO_MESENCHYMAL_TRANSITION.html S100A4,BMP2,TRIM28,TGFB3,HGF,BMP7,TGFB1,CTNNB1,TGFB2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html ALS2,RTN4,NRP2,NRTN,NRP1,POU6F2,LRRC4C,KCNIP2,PAX2,GLI2,GDNF,RTN1,SHH,TGFB2,NRCAM,ATP2B2,APOE,ROBO1,MAPT,ROBO2,POU4F1,SEMA3B,UNC5C,SPON2,NRXN3,LDB1,BAIAP2,MDGA1,OTX2,PICK1,MDGA2,ARTN,NRXN1,CDK5,SLIT1,SLIT2,THY1,FARP2,AMIGO1,RND1,SERPINF1,SEMA4F,BTG4,NPTN,OPHN1,TRAPPC4,GHRL,CNTN4,SIAH1,UBB,SMARCA1,PARD3,CDK5R1,LST1,RTN4RL1,BRSK2,PPT1,KAL1,BAI1,VWC2,PCSK9,KRT2,RTN4RL2,AGRN,LAMB1,PARD6B,KLK8,LMX1B,DTX1,NF1,NLGN1,DPYSL5,NTNG1,NTNG2,RACGAP1,YWHAG,YWHAH,S100B,MAP1S,CYFIP1,CIT,FEZ2,FEZ1 +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html UAP1,CHIA,LARGE,CHST7,CHST6,CHST2,CHST4,CHST5,NAGK,EXTL2,SLC35A3,CHIT1 +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html ME1,APOA2,GCK,GYS2,MAFA,CLEC7A,EIF2B2,EIF2B1,EIF2B3,SELS,EIF2B4,EIF2B5 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html XRCC2,MRE11A,CHEK1,SPO11,SYCP1,RAD21,HSPA2,DUSP13,RAD51L1,NPM2,STAG3,RAD51L3,TUBG1,CCNA1,TAF1L,ZW10,MSH5,MSH4,LIG3,PIM2,RAD52,RAD54L,BOLL,SMC3,SC65,ATM,RAD50,RAD51,RAD1,REC8,EREG,TOP3A,RAD54B,SMC1A,DMC1 +PWCOMMONS RNA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_BIOSYNTHETIC_PROCESS.html SLC2A4RG,XRCC6,MED24,HOXD13,MED23,RORB,REST,MED21,ZNF254,MED20,CITED1,CITED2,EPC1,TAF5L,MED26,FOXF1,FOXF2,MED27,PQBP1,VPS4B,ZNF396,PATZ1,IKBKAP,ZNF45,PCBD2,RREB1,RXRA,ZHX1,MED12,MECP2,ZHX2,ZHX3,MED14,HNF4G,MED13,NME2,ZNF238,PTRF,HNF4A,MED16,MED17,SMARCAL1,SHOX,TGIF1,MYBBP1A,ZNHIT3,TRAPPC2,CRTC1,ZNF76,MYEF2,VPS72,FOXH1,HEXIM2,HEXIM1,PIR,ZNF74,VEZF1,TCF4,TCF3,ARHGEF10L,UTF1,TCF7,KLF12,KLF13,MAP2K3,KLF10,KLF11,ESRRG,TFCP2,USF1,TRPS1,MZF1,PARP1,HLF,TAF1C,HNF1B,ELF1,TAF1A,HNF1A,HTATIP2,ELF2,ELF3,ELF4,ELF5,EZH2,SPI1,TP63,DAXX,ZNF345,YBX1,YBX2,ZNF350,RRN3,HSF2,ZNF148,ZNF146,CREG1,BRD7,SPIB,HSF4,MYC,TAF1L,BRD8,ATF7IP,ZNF281,BATF3,MTERF,ZNF282,BRF1,GMEB2,PTF1A,TP53,GTF2H4,NDUFA13,FOSB,ZNF143,TTF2,JMY,ARHGEF11,GTF2H1,MYCN,MXD4,CIAO1,INHBA,EREG,PFDN5,ZNF136,C19ORF2,RUVBL1,NSD1,CLOCK,ZMYND11,ZNF274,CREM,ZNF367,NUFIP1,ZNF35,ZNF177,ZNF174,LIMD1,SUPT4H1,TRIP11,FOXD3,TRIP13,MYF6,IL4,ZNF263,LMX1B,TRIM29,MYF5,TRIM28,TRIM27,TNP1,ELAVL2,PHF12,TRIM24,TRIM22,TP73,ATRX,RPS6KA5,ZNF157,MNAT1,RPS6KA4,PPBPL2,RBAK,FOXE1,TCEB2,TCEB3,TCEB1,PHF5A,NR5A2,FOXE3,NR5A1,MMS19,LMO4,TBP,NR2E3,TCEAL1,CBFB,TGFB1,GTF2E1,GTF2E2,SMARCD2,MDFIC,SMARCD3,SMARCD1,SCRT1,BCL10,POU2AF1,ZNF593,HDAC10,ARID1A,CSDA,DDIT3,JUNB,PA2G4,HIF1A,SMARCE1,TCFL5,TFAP2B,SMARCA5,MNX1,EDF1,TFAP2A,NFE2L1,TFAP2C,NFE2L2,SMARCA1,NFE2L3,SMARCA2,EID1,HMGB1,HMGB2,CNBP,CCRN4L,LITAF,UBE2V1,ABCA2,NR2C2,CXXC1,TROVE2,TCERG1,MEIS2,RPL6,SMARCB1,TEAD4,SNF8,JUND,TAF9,HELLS,TFDP1,TAF2,TRIP4,EPAS1,TAF5,TAF8,NEUROG1,BRIP1,HDAC5,ATF6,HDAC4,ATF5,NRF1,ATF4,HDAC2,DYRK1B,SMARCC1,GTF2F1,PRKAR1A,SMARCC2,ATF7,GTF2F2,ABL1,HDAC8,E2F1,E2F2,E2F3,RSF1,FOSL2,ARID4A,E2F6,PAX5,ZNF202,DEK,CTCF,PAX3,PAWR,PAX2,PAX1,FEV,TMF1,MAX,MAZ,PAX8,LRRFIP1,NFIL3,FOSL1,NFX1,PTGER3,SLA2,ARID5B,ARID5A,CDK9,ESR2,CDK7,RB1,HMGA2,HMGA1,PRPF6,TARBP1,TARBP2,NCOA6,ZFPM2,JMJD1C,CARM1,NFYC,NFYB,NR3C1,NFYA,IVNS1ABP,HIC1,TSC22D1,TFAM,ORC2L,TSC22D3,ECD,GTF3C6,CEBPZ,CHD2,CHD1,NFATC4,NFATC2,GTF3C2,NFATC3,CHD4,GTF3C4,CHD3,NFATC1,CEBPA,MAF,CEBPB,CEBPD,VHL,NFRKB,CEBPG,CREB5,MED30,DBP,ID4,CDX2,FST,HIRA,PTTG1,PRIM1,SIN3A,TRAK1,PRIM2,RARB,SUPT5H,TWIST2,TWIST1,PITX2,YY1,NKX2-8,TAF6L,PPARGC1A,PPARGC1B,UHRF1,MTF1,PRDM4,ABT1,MNT,TGFB1I1,PRDM1,DEAF1,ELL,AFAP1L2,CALR,PLAGL1,DRAP1,HTATSF1,MAML3,DUX1,BCOR,NKX2-5,TCF25,KLF5,MDFI,KLF7,BMP2,IKZF3,MLL,KLF9,SUB1,MAML1,CREBBP,MAML2,SMAD4,RYBP,SMAD3,SMAD2,PMF1,UBP1,POLRMT,NOTCH2,TCEB3B,RNF4,NOTCH4,JAZF1,SUPT16H,TCF19,RBPJ,TCF12,ZFHX3,NCOR1,TCF15,KLF4,BMP6,CCNT2,COPS2,ZBTB32,PPARA,GTF3A,PPARD,COPS5,TBX22,TBX21,PPARG,CCNT1,NFKB1,ZEB1,NFKB2,GLI2,HSBP1,ZBTB38,GLI1,KCNIP3,BLZF1,GFI1B,ASH2L,NR2F2,SNAPC5,CCNK,SNAPC2,TBX10,ZNF354A,POLR1E,CCNH,SNAPC4,SNAPC3,POLR1C,MBD1,GTF2B,SCAP,RBBP8,CTNNBIP1,MED6,MED7,MED4,CHMP1A,GTF2I,ASH1L,RIPPLY1,SRCAP,TBX19,MED1,POLR2G,ETV7,POLR2F,NMI,POLR2E,POLR2L,POLR2K,POLR2J,POLR2I,EHF,ZBTB16,POLR2D,POLR2C,SUFU,POLR2B,MRPL12,NR1D2,SQSTM1,GATAD2A,MLLT1,ETV1,PEX14,BCL6,HSF2BP,MLLT6,POLR3G,POLR3H,POLR3K,TBX3,TBX2,TBX5,HCLS1,AFF4,ILF3,SNAI2,STAT1,POLR3C,STAT3,SOD2,STAT2,PREB,ILF2,UBTF,NEUROD2,PHF21A,PBX1,RBM14,PBX3,PBX4,MYOD1,THRA,CRABP2,FOXO1,FOXO3,FOXO4,GATA1,HOXC6,GATA2,ATOH1,GATA6,TARDBP,GATA3,HOXC5,GATA4,TFB2M,MYST2,GABPB2,MYO6,FOXN1,ZNF189,ARNTL,NR0B2,NR0B1,ELL3,TRERF1,AHR,FOXN3,ELL2,ADRM1,TIAL1,TFAP4,SOX5,ELK1,NKX3-2,BTF3,SKIL,RUNX1,RNF14,RUNX3,SREBF1,MAFF,NFE2,SAP18,SNW1,GSC2,FOXP3,BRCA1,SREBF2,GCM1,PSMC5,DNMT1,MAFA,SOX21,POU6F2,NR6A1,FOXK2,BUD31,FUBP1,MEN1,FOS,ANG,POU5F1,POU4F2,POU4F1,SOX18,MKL2,ALX1,ELP4,ELP3,NANOG,ELP2,SP100,LDB1,SOX12,MSC,UBN1,NRIP1,CD3EAP,BPTF,NRL,ZMIZ2,MDM2,MDM4,CUX1,ZFP161,SUPT3H,GLIS3,ING4,TNF,ING2,GLIS1,HCFC1,HCFC2,NFIX,POU1F1,TCF7L2,TNFRSF1A,NPAS2,ERCC6,HAND1,HAND2,POU2F3,POU2F2,NFAT5,GFI1,ERCC3,APEX1,ENO1,ERCC2,ERF,DTX1,SOX30,SIRT4,SIRT5,CBY1,SIRT1,IRF9,SP1,SP2,IRF7,DR1,SP3,THRAP3,SP4,IRF8,IRF1,IRF2,IRF3,NFIC,CRK +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html RTP3,KCNMB3,SYT1,RP1,KCNMB4,CASR,RTP4,CADM1,TACR1,PGLYRP1,TAC1,TAS1R3,NR2E3,OPN1SW,ABCA4,KCNIP2,KCNIP1,TAS1R2,KCNMB2,PDE6B,NLRC4,NOD2,NOD1,PGLYRP4,PGLYRP2,PGLYRP3,NPFFR2,UGT2A1,TAS2R43,UNC119,CRTAM,TRPC3,STIM1,NLRP3,SAG,CD1D,TAS2R16,PITPNM1,TAS2R14,TIMELESS,GCK,GRM6,PDC,CACNA1F,OPN4,RHO,GRK1 +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html GAPDHS,SLC22A16,ROPN1B,SMCP,ATP1A3,TNP1,ATP1A4,ATP1A1,ATP1A2,GAS8,AKAP4 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CADM1,ATP6AP2,IL18,TLR1,TLR3,TLR4,TLR6,TLR7,TLR8,TGFB2,TLR9,MAP3K7,NLRC4,APOA2,NOD2,NOD1,APOA1,IFNG,CHRNA7,LTB,EBI3,SPN,BCL10,CRTAM,PRG3,IL27,INHA,NLRP3,NLRP2,SIGIRR,INHBB,CARD11,INHBA,MAST2,HIF1A,EREG,CD40LG,IL12A,GHRL,IL12B,TRAF2,TNFRSF8,AFAP1L2,ABCA1,PYDC1,CALCA,AZU1,INS,IL17F,PYCARD,SFTPD,BCL3,CD24,TRAF6,SRGN,CD28,IL4,CARD8,IL6,CEBPG,IL9,CD276,SMAD4,SMAD3,CIDEA,MALT1,SOD1,FOXP3,NLRP12,GLMN,IRF4,GHSR +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html FMOD,EID2,COX11,COX10,ANLN,PXN,SRC,NDUFS7,NDUFS5,NDUFS4,NUBP1,PTK2B,ZFYVE9,NDUFS8,PEX13,AGRN,COX18,SCO1,COX15,CD3E,TGFBR1,TAZ,PICK1,SMAD4,SMAD3,MIS12,ADRM1,ADRB2,TMEM48,PRLR,NUP205,MAPK8IP2,SURF1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PGD,RNASEH1,RNF217,GLDC,ISG20,FAH,GOT2,GOT1,DDAH2,DDAH1,ANAPC2,ANAPC5,ANAPC4,UBR3,OLA1,PGLS,UHRF2,NNT,COLQ,UBR5,MGAM,FBXL4,AMFR,MPST,HSD17B11,ALDOA,HACL1,HSD17B14,PFKFB1,PABPC4,ALDOB,PPT1,HSPA1B,ASL,HADHB,ARG1,ARIH1,GAD2,CDA,GCSH,ALDH4A1,NTHL1,GAD1,FBXO7,NPLOC4,CYP46A1,GUSB,HGD,CDC23,CIDEA,PCNP,TPD52L1,CDC20,UBE2L3,CEL,POP1,SMURF2,SMURF1,PLA2G4C,PLA2G4B,PPARA,BCKDK,PPARD,KIAA0368,TSG101,UBE2G1,UBE2G2,BNIP3,AUH,MCCC2,NT5M,GPX3,GSTZ1,NT5C,ZFP36,ABCE1,SPACA3,STS,ACO2,UFD1L,AIFM1,HYAL4,HAO1,HAO2,SIAH2,ECH1,HK1,EDEM1,SQSTM1,RNASET2,HSD17B6,USP33,BCKDHA,CPT1B,UPF2,BCKDHB,ACLY,SOD1,CPT1A,SELS,GAPDHS,BLVRA,SDHA,GBA3,GBA2,SDHB,PSMD14,YWHAH,GLA,PPP1R8,SDHC,SDHD,PYGB,GNPDA1,ALDH1L1,BTRC,PDHB,APOA4,ASPA,CDKN2A,APOA5,MIOX,CPA2,FBXO22,DFFA,NUDT3,DFFB,NUDT5,CECR2,RNASEH2A,PNPLA3,GNS,NEU3,XRN2,DERL2,FZR1,SYVN1,DERL1,GLUD1,NEDD8,UBE2V2,ANAPC10,CHIT1,UBE2D3,UBE2D2,ASRGL1,RNF11,ENTPD4,UBE2D1,SMG6,SMG5,SMG7,SMG1,TST,PSMC5,VCP,UBE2E1,AMT,TPP1,TREH,HPD,UBE2A,ACADM,PFKL,ALDH5A1,ACADS,CYCS,UBE2I,PFKM,UBE2H,UBE2C,DDO,UGT1A1,UBE2B,ACADVL,UBE2N,UBE2K,PRDX6,GAA,ERN2,DHPS,UBB,AKR1D1,ADAMTS13,UBE3A,ECHS1,TKTL1,STUB1,ERCC5,ECD,BDH2,ERCC3,ERCC4,ERCC1,ERCC2,RNF144B,FOXL2,RNASE2,RNASE3,UBE4A,RNASE6,UBE4B,PARK2,AMPD3,GSPT1,BAX,UGT2B4,SMPD4,SMPD3 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PRC1,DBF4,KNTC1,PKMYT1,TTK,AURKA,CDC16,TTN,FOXO4,TGFB1,CUL3,CUL2,CUL5,CDKN2A,DDX11,CDKN2B,CDKN2C,TARDBP,CDKN2D,CCNA2,CDCA5,CUL1,ANAPC5,RAN,RINT1,ANAPC4,POLE,SKP2,TBRG4,ESPL1,DCTN3,FOXN3,DCTN2,MAD2L1,ZWINT,CLIP1,STMN1,AKAP8,MAD2L2,NEK6,RAD17,PPP5C,PAM,NEK2,AFAP1L2,ANAPC10,ANLN,ANAPC11,RCC1,PIN1,KATNA1,NPM2,CDC123,PBRM1,FBXO5,EGF,GML,SSSCA1,TAF1,SPHK1,CDC23,SMAD3,TPD52L1,NDC80,SUGT1,CDC27,ATM,CDKN1C,CDKN1A,CDKN1B,NOLC1,PLK1,POLD1,MYO16,ABL1,SMC1A,E2F1,KIF23,KIF22,NBN,KIF25,LATS1,LATS2,TRIAP1,ACVR1B,KIF2C,GFI1B,CEP250,PCBP4,PRMT5,TGFA,CDK10,DLG1,ZW10,KHDRBS1,CDC7,CDC6,KIF11,KIF15,TPX2,NUSAP1,CDK6,CDK4,UBE2C,CDK2,SPDYA,INHBA,CHMP1A,EREG,BTG3,CDK2AP1,USH1C,BUB1B,FOXC1,CHFR,KPNA2,MAP3K11,ACVR1,BCAT1,PPP6C,PML,POLA1,CETN1,ASNS,BRSK1,NUMA1,NCAPH,BUB1,PAFAH1B1,GFI1,CD28,PDS5B,CENPF,CENPE,BIRC5,CDC25C,CDKN3,SMC3,SMC4,CDC25B,MPHOSPH9,CUL4A,GSPT1,EPGN,MPHOSPH6,APBB2,CIT,APBB1 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html IL31RA,NDUFS4,MCM7,CDKN2A,CDKN2B,ANG,CDKN2C,CLCF1,CDKN2D,TDGF1,EGFR,BCL10,CCDC88A,IL29,LYN,CCDC88C,SOCS1,INHA,IL20,INHBA,CCND1,CARD14,CCND3,EREG,PSEN1,CD80,CCND2,CD81,IL12A,RAD17,ITLN1,ITGB2,CD24,EGF,BMP4,IL4,IL3,IL5,NF2,HCLS1,CDKN1A,CDKN1B,AKTIP,NLRP12,GLMN,TNK2,IGFBP3,BARD1,IL22RA2 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html LDLR,GPAA1,PPT1,SCARF1,APOA4,FNTB,PIGK,APOA2,FNTA,APOA1,PIGF,PIGG,PIGH,ATG7,PIGB,CHM,PIGC,NPC1L1,CETP,ANGPTL3,PGGT1B,PIGA,AIPL1,PIGZ,PIGY,PIGV,PIGU,PIGT,PIGS,PIGO,DPM1,DPM2,DPM3 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html TBX6,SECTM1,IKZF3,TBX3,IKZF1,HCK,BMX,SMAD2,TRIM15,SNAI2,SLIT2,BTK,TCF21,T,EYA2,GDF11,JAK2,TIE1,KLF4,TCF15,MEST,MATK +PWCOMMONS LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_METABOLIC_PROCESS.html CYP3A4,ALDH8A1,CYP3A5,RARRES2,SGMS2,GBGT1,PTGS1,SGMS1,SHH,AGPS,APOD,APOF,LCAT,CH25H,PLA1A,NSMAF,APOM,WWOX,SGPL1,UGCG,PPARGC1A,NPC1,BTN3A1,PITPNM3,NPC2,HNF4A,ALOX15B,HSD11B2,PLA2G2E,PLA2G2D,HSD17B11,CHKA,HACL1,HSD17B10,ACADSB,ENPP7,HSD17B14,ACP6,RBP3,TFCP2L1,PPT1,ACAT2,OCRL,PDSS1,PDSS2,CD74,HADHB,PLAA,SERINC2,SERINC5,LPCAT1,SERINC1,PEMT,PLTP,NR1H4,CYP46A1,MCAT,SPHK1,FDXR,CIDEA,ABCG1,APOL2,CYP7B1,CEL,APOL1,NR1I2,MLYCD,PLA2G4C,IDI1,PLA2G4B,BMP6,PPARA,PPARD,CYP2J2,LDLR,PPARG,PMVK,PTEN,ASAH1,ASAH2,ST6GALNAC6,AGPAT6,ST6GALNAC4,CYP39A1,PTGES,GPX4,GNPAT,ALOX12B,CETP,NR2F2,THRSP,AGPAT2,AGPAT1,DHCR24,CLN3,STS,PRG3,PIK3C2A,PI4KA,LGALS13,PI4KB,CDS1,HAO1,PTGDS,ADM,HAO2,SLC27A6,PLA2G6,PLA2G3,CLN8,SLC27A2,SLC27A5,PLA2G5,ALOX12,DEGS1,SLC27A4,CLN6,ECH1,HSD3B1,HSD3B7,GPAA1,MIF,DGKE,DHCR7,ABCD2,HSD17B6,CERK,NSDHL,IL4,SOAT1,SOAT2,CPT1B,PNLIPRP2,FADS1,FADS2,DGKK,PDE3A,SOD1,PHYH,CPT1A,MTTP,GBA2,YWHAH,LRP1,LARGE,GLA,DPM1,DPM2,DPM3,LRP2,HPGD,NR5A1,LRP5,TSPO,APOBEC1,LASS5,APOA4,STARD3,APOA1,ST3GAL6,APOA5,SPTLC1,TAZ,NR0B2,NR0B1,PNPLA3,PECI,CHPT1,PNPLA8,PLCE1,AKR1B10,PI4K2A,EDF1,MVK,NEU3,CROT,HDLBP,CNBP,ST8SIA1,APOC1,APOC2,ST8SIA3,CEPT1,B3GNT5,APOC4,APOC3,SCARB1,PCYT1B,ANGPTL3,LIPT1,B4GALT4,CYP19A1,SREBF1,LPL,CPNE6,CPNE7,FDPS,SMG1,BRCA1,ABCB4,SREBF2,BAAT,UCP3,FAAH,LASS1,ST8SIA5,CPNE1,CPNE3,FABP5,ACOX2,PTGES3,ACOX1,IMPA1,CORIN,ALG1,CYP11B2,TTPA,ACOT2,SULT2B1,ACOT1,ZNF202,PIP5K1A,ACOT4,ACOX3,SC4MOL,PEX7,AKR1C3,ACOT9,APOB48R,PIGK,AKR1C2,ACOT7,AKR1C4,ACOT8,PIGF,ANG,PIGG,TPP1,AOAH,PIGH,PIGB,ACOT12,NPC1L1,PIGC,MGLL,ACAD8,PCYT2,PLCB2,AKR1C1,PIGA,PIGZ,ACADM,CYP11A1,SULT2A1,PIGY,ALDH5A1,ACADS,PIGV,PIGU,ADIPOR2,ADIPOR1,PIGT,DHRS9,ALDH3B2,BTNL3,PIGS,UGT1A1,ALDH3B1,PIGO,ACADVL,DHRS2,DHRS3,UGT2B17,DGAT1,DGAT2,PRDX6,CD81,UGT2B11,UGT2B10,UGT2B15,AKR1D1,SC5DL,PGS1,BTN2A1,ECHS1,STUB1,ALDH3A2,TNFRSF1A,ALDH1A3,ETNK1,BDH2,PLCD1,PPAP2A,PIK3R1,B4GALNT1,MBTPS2,PSAP,ANXA1,OXSM,RDH12,MGST3,RDH11,CYP4F8,CYP4A11,GLYAT,UGT2B4,CYP4F3,LTA4H,CYP4F2,RDH16,SMPD4,SCP2,SMPD3,UGT2B7,RETSAT,SMPD2 +PWCOMMONS CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_BIOSYNTHETIC_PROCESS.html RPL18,ALAD,RPL19,EIF2C1,MRPL41,RPL14,ADCY7,RPL13,PTGS1,RPL15,BBOX1,PLOD1,EIF1AX,ASMTL,HRSP12,SULT1A2,RPL11,EIF2B2,DDAH2,EIF2B3,EIF2B4,EIF2B5,MRPL52,YARS,MRPL51,GATM,AARS,EIF2S3,PPARGC1A,GLCE,SARS2,BOLL,RPS19,EIF2AK1,RPS17,RARS,BACE2,RPS12,HSD11B2,RPS10,RPS11,EXT1,EIF2AK3,HS3ST3B1,EIF2AK4,ADSS,COASY,FARS2,PABPC4,PFKFB1,IGF2BP2,MTIF2,GPR143,MTIF3,PDSS1,PDSS2,CD74,PPAT,RPS27,DMD,IL17F,MRPL55,C16ORF7,MOCS2,PAIP2,PAIP1,MCAT,RPS9,RPS5,CYP7B1,RPL18A,GHSR,BMP6,ABCF1,COPS5,COX10,EIF2A,ACN9,YBX2,AGPAT6,TYR,CYP39A1,OXER1,CHST12,CHST11,EEF2K,CHST13,AGPAT2,AGPAT1,COX15,MRPL3,PRG3,NDUFA13,EIF1B,GMPS,SIGIRR,INHBB,INHBA,EIF4A3,MAST2,RPL41,ADM,PTGDS,EREG,GRM8,MTRF1,EIF4A2,ADK,RPL3L,FARSB,RPS4Y1,IL12B,DEGS1,TUFM,BCAT1,ALDH18A1,NACA,HSD3B1,HSD3B7,RPL35,UGDH,RPL27A,UROS,RPL37,RPL38,HPRT1,RPL39,NECAB3,GCH1,MIF,PET112L,AZU1,MRPL10,RPL30,CYP27B1,RPL31,RPL34,SEPSECS,MARS2,BCL3,AP3D1,DAZL,TSTA3,CD28,IL4,IL6,DAZ1,UPF1,RRBP1,FADS1,IL9,RPL26,FADS2,RPL24,ETF1,SOD1,EIF2B1,RPL28,RPL29,MRPL23,GLA,RPL22,RPL21,NLRP12,GAMT,MAT2B,HPGD,APBB1,PAICS,NR5A1,TSPO,CTPS,TLR1,EIF5,HBS1L,TLR3,EIF5A,RPS6KB2,TLR4,TLR6,TLR7,TLR8,IL10,TLR9,TGFB2,APOA2,CPOX,DDX25,SPR,EIF1,NQO1,SPN,SAMD4A,EBI3,EGFR,BCL10,FECH,IL29,DARS,IL27,CDO1,PNPLA3,PYCR1,PLCE1,UCN2,HSPB1,NFE2L1,ME1,GCLC,ADORA2A,PAH,ABCA1,GCLM,KARS,EIF3C,EIF3D,EIF3A,OAZ1,EIF3B,RPL7,EIF3G,RPL6,EIF3H,RPL9,EIF3E,RPL8,EIF3F,SFTPD,RPL3,RPL5,EIF3I,DYRK2,RPL4,RPL7A,EIF3J,EEF1A1,MRPS24,CD276,RPL23A,AK5,FOXP3,FURIN,BRCA1,EIF4B,ATF4,TSC1,EIF4H,SLC25A10,GLMN,GUK1,PDZD3,PTGES3,HSP90AB1,METAP1,NDST1,CYP11B2,DPH1,PPOX,RPS2,RPS3,PEX7,AKT1,WARS,ALAS1,ALAS2,ANG,RPS3A,LTB,TNIP1,OCA2,HSP90AA1,CYP11A1,CHST3,DHRS9,MRPS7,INHA,COQ7,PMM2,COQ3,EIF4G2,UMPS,COQ2,EIF4G3,DGAT2,CHST7,CHST6,CHST9,CHST8,GHRL,DHPS,AKR1D1,ALDH9A1,HS3ST5,TNFRSF8,PAIP2B,DCT,TYMS,KRT7,ETNK1,HS6ST1,PTS,GCHFR,GMDS,CEBPG,DEFB103A,ASMT,OXSM,GCK,TSFM,LTA4H,SLC5A7,IRF4 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ALDH1L1,PTGS1,SLC7A8,SLC7A9,GGT1,SLC7A4,SLC7A5,AGXT,SLC7A6,BBOX1,FAH,SLC7A7,GLDC,GOT2,ASPA,GOT1,SCLY,PLOD1,MAT1A,DDAH2,DDAH1,NANP,ALDH6A1,YARS,GATM,DARS,AARS,QDPR,CDO1,PECI,PPARGC1A,SARS2,PNPLA8,PYCR1,NPC1,ALOX15B,RARS,CROT,MPST,ME1,HACL1,ME3,ACADSB,GCLC,GLUD2,GNE,GLUD1,FARS2,PFKFB1,PAH,ASL,GCLM,CD74,KARS,HADHB,ARG1,GAD2,ALDH4A1,ASRGL1,IDH1,GCSH,GAD1,NR1H4,FH,MCAT,SLC6A14,HGD,IDH3B,BRCA1,TST,CYP7B1,ATF4,BAAT,MLYCD,SLC7A2,SLC25A10,FAAH,FPGS,SLC25A15,PTGES3,ACOX2,PPARA,BCKDK,PPARD,CYP2J2,AMT,ACOT2,ACOT1,ACOT4,ACN9,ACOX3,SC4MOL,ACOT9,GSS,AKR1C3,MTHFD2,MCCC2,AKR1C2,WARS,TYR,MSRA,CYP39A1,PTGES,HDC,ACOT12,GNPAT,GSTZ1,AGPAT2,AKR1C1,AGPAT1,HPD,ACADM,PEPD,PRG3,ACO2,ACADS,ACO1,ALDH5A1,ADIPOR2,ADIPOR1,SLC3A1,DDO,HAO1,ACADVL,PTGDS,SDS,AS3MT,HAO2,SLC27A6,SMS,AKR1D1,SLC27A2,SLC27A5,ALOX12,DEGS1,BCAT1,ALDH18A1,ECH1,HSD3B7,NFS1,UGDH,ECHS1,MIF,GLS2,DCT,TNFRSF1A,MTHFR,ABCD2,MARS2,BDH2,PTS,BCKDHA,CPT1B,FADS1,BCKDHB,FTCD,IGF1,FADS2,ACLY,CPT1A,OXSM,ADI1,GBA2,CYP4F8,CYP4A11,GLYAT,GCK,SLC6A6,LTA4H,MAT2B,CYP4F3,GAMT,CYP4F2,HPGD +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CADM1,ATP6AP2,BCAR1,IL18,FST,TNFSF13,TLR8,TGFB1,SART1,TGFB2,MAP3K7,CFHR1,CD47,NOD2,IFNG,IFNK,EBI3,CRTAM,SPACA3,IL29,CD3E,SLA2,SOCS5,NFAM1,IL21,TRAT1,THY1,UBE2N,CARD11,PROK2,NCK2,LAT2,SIRPG,EREG,CD40LG,NCK1,LCK,IL12A,IL12B,ICOSLG,MBL2,TRAF2,AFAP1L2,CALCA,MIA3,ZAP70,KRT1,CD24,C2,TRAF6,CD28,IL4,BMP4,PTPRC,KL,IL7,SPHK1,CD276,MALT1,SOD1,CD1D,FYN,IKBKG,ATP2A1,MC4R,CD79A +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html BCL10,TNF,RELA,UBE2V1,EDA2R,PRDX3,UBE2N,PRKCQ,CARD11,NOD2,NLRC3,NPM1,PYCARD,ERC1,IKBKB,EDA,MAP3K13,CAMK2A +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F2RL2,GGCX,F2RL3,ADORA2A,F13A1,PABPC4,GNA12,PF4,ITGB3,LMAN1,MMRN1,GP9,PR47,F13B,SERPINE1,GP1BA,ENTPD1,KNG1,PLAT,F12,L3MBTL4,F10,F8,F9,ITGA2,C4BPB,F7,TMPRSS6,WAS,PLG,PROC,VWF,CD36,THBD,GNAQ,F5,HNF4A,CD40LG,CD59,F2,TFPI,PROS1,F2R +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF2C1,EIF5,EIF5A,LRRC4C,CXCL12,GATA2,PACSIN3,ROBO1,APOE,HRSP12,EIF1,ROBO2,TLK1,TLK2,EIF2B2,EIF2B5,MYH9,PPARGC1A,BOLL,NEBL,THY1,HSPB1,EIF2AK3,EIF2AK4,FGD2,HMGB1,FGD1,KATNB1,PPT1,ARF6,MTIF2,MTIF3,AHSG,EIF3C,IRAK3,EIF3D,CDC42EP2,EIF3A,CDC42EP1,EIF3G,EIF3H,EIF3E,RAC1,EIF3F,SFTPD,CLASP1,EIF3I,EIF3J,CLASP2,FGD5,CDC42EP4,FGD6,STK38L,ARHGEF10L,FGD3,FGD4,CDC42EP5,TAOK2,PAIP2,PIF1,EIF4B,TSC1,EIF4H,RTN4,LIMA1,AP2S1,TERF2IP,LATS1,CDC42,CEP250,GSN,ZFYVE16,MAPT,ATF7IP,ARHGEF2,SPACA3,CCDC88A,EIF1B,MID1IP1,NEXN,LDLRAP1,SLIT2,UBE2N,AMIGO1,NCK2,EIF4G2,EIF4G3,MTRF1,NCK1,TPPP,EIF4A2,GHRL,TMSB4Y,MAPRE1,UBB,STON2,STON1,HCFC1,PAIP2B,AZU1,SORBS3,SET,DAZL,ERCC4,ERCC1,TERF2,RASA1,APC,COL4A4,DAZ1,KLK8,UPF1,NF2,CBL,CRIPAK,ETF1,CDH13,YWHAH,CAPG,PBX1,FAF1,PBX3,PBX4 +PWCOMMONS PURINE RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_RIBONUCLEOTIDE_METABOLIC_PROCESS.html ADSS,FIGNL1,OLA1,AK5,ACLY,C16ORF7,CTNS,AMPD3,GUK1,NDUFS1 +PWCOMMONS COFACTOR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_CATABOLIC_PROCESS.html BLVRA,SDHA,SDHB,ALDH1L1,NNT,ACO2,SDHC,SDHD,UGT1A1,PDHB +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ALS2,ARHGAP4,ARHGAP5,APOA1,APOE,ARHGAP1,RHOA,RRAS,RHOB,ABRA,RHOD,FGF2,RHOG,DBNL,PLD1,ROCK1,RREB1,RALBP1,LIMK1,G3BP1,ARHGAP27,ARHGAP29,FARP2,ELMO1,MFN2,PLCE1,CRKL,SGSM3,GNB1,CFL1,LCK,GRAP2,FGD2,ARHGDIG,FGD1,GRAP,GRB2,MRAS,RTKN,MYO9B,ARF6,ABCA1,ROPN1B,RASGRP4,SOS1,RASGRP1,RAC1,APOC3,ADRA2A,FGD5,FGD6,ARHGDIA,FGD3,ARHGDIB,FGD4,CNKSR1,NF1,IGF1,TAX1BP3,PARK7,NOTCH2,CDH13,LAT,TSC1,RASSF1 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html TM7SF4,MMP9,CSF1,SPI1,ZNF675,PF4,ZBTB16,FOXO3,IL31RA,CALCA,ACVR1B,CDC42,ALAS2,SNRK,RASGRP4,DYRK3,ACIN1,RUNX1,MYST1,MYST3,IL4,LYN,MAFB,CEBPG,HCLS1,LDB1,CDK6,INHA,IFI16,MYH9,ACVR2A,INHBA,RPS19,ETS1,NCOA6,SCIN,CARTPT +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html XRCC2,DBF4,KNTC1,TTK,PKMYT1,AURKA,CDC16,TTN,FOXO4,TGFB1,CUL3,CUL2,CUL5,RAD21,CDKN2A,DDX11,CDKN2B,CDKN2C,CDKN2D,TARDBP,STAG3,CCNA1,CDCA5,CCNA2,CUL1,ANAPC5,RAN,ANAPC4,POLE,RINT1,SKP2,LIG3,TBRG4,ESPL1,PIM2,DCTN3,BOLL,FOXN3,DCTN2,RAD1,REC8,MAD2L1,TIMELESS,ZWINT,CLIP1,AKAP8,MAD2L2,RAD17,NEK6,PPP5C,PAM,NEK2,MRE11A,TIPIN,CHEK1,ANAPC10,ANLN,ANAPC11,RCC1,SYCP1,PIN1,PRUNE2,DUSP13,RAD51L1,NPM2,KATNA1,PBRM1,RAD51L3,EGF,GML,SSSCA1,TAF1,CDC23,NDC80,TPD52L1,SUGT1,CDC27,RAD54L,ATM,CDKN1C,CDKN1A,CDKN1B,NOLC1,PLK1,POLD1,MYO16,RAD54B,ABL1,SMC1A,E2F1,KIF22,NBN,KIF25,LATS1,LATS2,TRIAP1,ACVR1B,KIF2C,GFI1B,PCBP4,PRMT5,TGFA,CDK10,ZW10,TAF1L,KHDRBS1,CDC7,CDC6,KIF11,KIF15,TPX2,NUSAP1,CDK6,RB1,RAD52,UBE2C,CDK4,RAD50,CDK2,RAD51,SPDYA,INHBA,CHMP1A,EREG,CDK2AP1,TOP3A,BUB1B,USH1C,CHFR,DMC1,KPNA2,MAP3K11,ACVR1,BCAT1,PPP6C,PML,POLA1,CETN1,SPO11,BRSK1,NCAPH,NUMA1,HSPA2,KRT7,BUB1,GFI1,CD28,PTPRC,PDS5B,MSH5,MSH4,CENPF,CENPE,BIRC5,CDKN3,CDC25C,SC65,SMC3,CDC25B,SMC4,MPHOSPH9,GSPT1,CUL4A,EPGN,APBB2,MPHOSPH6,CIT,APBB1 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html TM7SF4,CSF1,MMP9,JAG2,ZNF675,TPD52,SPINK5,SART1,IL31RA,CALCA,CDC42,ZAP70,CD4,ACIN1,RUNX1,IL4,PTPRC,CD3D,IL7,CEBPG,IL27,INHA,IFI16,SOCS5,NFAM1,MYH9,CD1D,HDAC5,INHBA,HDAC4,LCK,CARTPT,IL12B,CD79A,HDAC9,NHEJ1,IL2 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html ADORA2B,ZAK,PTPLAD1,DUSP10,MAP4K2,ZNF675,MAP4K1,DAXX,MAP3K6,MAP3K5,MAP3K4,MDFIC,MAP3K2,MAP3K9,CD27,MDFI,GPS1,DBNL,CARD9,TNIK,TAOK2,KIAA1804,TAOK3,MAP2K4,MINK1,PKN1,EDA2R,TPD52L1,MAPK10,GPS2,AMBP,MAP4K3,SH2D3C,MAP4K5,SH2D3A,CRKL,HIPK2,MAPK8IP2,MAP3K10,MAPK8IP3,MAPK9,MAPK8,MAPK8IP1,DUSP9,MAP3K13,MAP3K12,MAP3K11 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RPL17,SLC44A2,SLC20A1,VAPA,TBK1,TSPAN6,GJA1,FASLG,TLR6,CANT1,NOD2,TMEM9B,NOD1,MYD88,MIER1,HMOX1,CASP8,TICAM1,TICAM2,RHOA,TMEM101,RHOC,CASP1,GPR89A,BCL10,LTBR,BST2,GOLT1B,RELA,FADD,CD40,ECT2,FLNA,UBE2N,TRIM38,ZDHHC17,TNFRSF10B,ATP2C1,MIB2,RIPK1,ZDHHC13,RIPK2,EEF1D,NEK6,PPP5C,LITAF,PPM1A,TFG,TRIM13,UBE2V1,FKBP1A,CXXC5,TNFRSF1A,TMED4,REL,MAP3K3,SLC35B2,PLEKHG5,CC2D1A,TRAF6,TRAF5,SECTM1,CFLAR,CARD9,LGALS1,NDFIP1,NDFIP2,MALT1,ECM1,BIRC2,LGALS9,TRADD,TRAF3IP2,APOL3,IKBKE,TNFSF10,PLK2,NUP62,HTR2B,F2R +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html UPF1,MTERF,TNP1,ETF1,HMGA1,TTF2,MAZ,SET,SMARCE1,MTRF1,HRSP12,SUPT16H,NRG1 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD2,ALS2,FGD1,RALBP1,NF1,ARHGAP27,ARF6,MFN2,NOTCH2,PLCE1,TSC1,RASGRP4,RAC1,ABRA,FGD5,FGD6,FGD3,FGD4 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html ENOX2,SPRR2G,SPRR2F,SPRR2E,SPRR2C,SPRR2D,SPRR2A,SPRR2B,PER2,PER1,AANAT,CRY1,EIF2B2,EIF2B4,EIF2B5,FOXL2,EGR3,ARNTL,SOD1,PTGDS,EREG,TIMELESS,HTR7,HEBP1,CARTPT,BMPR1B,CLOCK,MTNR1A,OPN4 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHIA,SNCAIP,GNPDA1,B3GALT6,SLC7A8,SLC7A9,GGT1,SLC7A4,SLC7A5,SLC35A3,SLC7A6,BBOX1,FAH,GLDC,SLC7A7,TGFB2,GOT2,ASPA,ST3GAL2,GOT1,SCLY,PLOD1,MAT1A,SULT1A1,ASMTL,ST3GAL6,SULT1A2,SPR,NQO1,DDAH2,DDAH1,NANP,EGFR,ALDH6A1,YARS,GATM,DARS,AARS,QDPR,CDO1,SARS2,GLCE,GNS,PYCR1,ISCU,COLQ,HAS1,SULT1B1,RARS,EXT1,EXT2,MPST,GCLC,GCNT2,ASS1,GLUD2,GNE,FARS2,GLUD1,PAH,ASL,NAGK,EXTL2,GCLM,KARS,CHIT1,OAZ2,ARG1,B3GNT8,GAD2,OAZ1,GCSH,ASRGL1,ALDH4A1,GAD1,B4GALT7,P4HB,UAP1,GUSB,SPHK1,SLC6A14,HGD,TST,ATF4,BAAT,DIO2,SLC7A2,DIO1,FPGS,SLC25A15,HSP90AB1,BCKDK,AMT,AKT1,GSS,MCCC2,WARS,TYR,MSRA,XYLT1,HDC,CHST12,CHST11,GSTZ1,CHST13,HPD,HSP90AA1,PEPD,PRG3,ALDH5A1,CHST2,CHST3,CHST4,CHST5,SLC3A1,HYAL4,DDO,CHST1,CHST7,SDS,CHST6,DHPS,SMS,AOC3,CLN6,BCAT1,ALDH18A1,GALNT5,NFS1,UGDH,HPRT1,GCH1,DCT,GLS2,MTHFR,B4GALNT2,ETNK1,MARS2,SULT1C2,PTS,GCHFR,BCKDHA,BCKDHB,ADI1,LARGE,GLA,SLC6A6,MAT2B,GAMT,SLC5A7 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CCL1,CCL3,HS3ST6,DERL1,RSF1,CCL2,HS3ST5,VAPB,OPRK1,RRAGA,EIF5A,CALCOCO2,DEK,HCFC2,APOBEC3G,APOBEC3F,CCL4,TGFB1,SMARCB1,WWP2,MDFIC,WWP1,HTATSF1,CXCR6,GFI1,ITCH,TOP2A,TNIP1,PARD6A,CTBP1,CTBP2,IL8,SMAD3,HBXIP,UBP1,CLEC4M,TARBP2,PPIA,CD209,CD81,ACE2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PTGES3,ACOX2,PPARA,PPARD,CYP2J2,ALDH1L1,PTGS1,ACOT2,ACOT1,AGXT,ACOT4,BBOX1,ACN9,ACOX3,SC4MOL,AKR1C3,ACOT9,MTHFD2,AKR1C2,CYP39A1,PTGES,ACOT12,GNPAT,AKR1C1,ACADM,PRG3,ALDH5A1,ACADS,ADIPOR2,ADIPOR1,PECI,PPARGC1A,ACADVL,HAO1,PNPLA8,NPC1,PTGDS,ALOX15B,HAO2,SLC27A6,AKR1D1,SLC27A2,SLC27A5,CROT,ALOX12,DEGS1,HACL1,ME3,ACADSB,ECH1,HSD3B7,PFKFB1,UGDH,ECHS1,CD74,MIF,HADHB,TNFRSF1A,ABCD2,BDH2,NR1H4,CPT1B,FADS1,MCAT,FTCD,FADS2,IGF1,BRCA1,CPT1A,OXSM,CYP4F8,CYP7B1,GBA2,CYP4A11,GLYAT,ATF4,BAAT,GCK,MLYCD,SLC25A10,FAAH,LTA4H,CYP4F3,CYP4F2,HPGD +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html LIMA1,ARF6,CXCL12,LATS1,NEBL,NCK2,CDC42EP2,GSN,NCK1,CAPG,TMSB4Y,RASA1,CDC42EP5 +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html DOCK2,IL8,SAA1,CKLF,SFTPD,PF4,ITGB2,CX3CL1,IL10,SYK,SCG2,TGFB2 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html KHDRBS1,NCBP2,MDFI,NUDT4,NFKBIE,NF1,SMAD3,TNFSF14,CDH1,NLRP3,MXI1,NFKBIL1,UHMK1,TGFB1,FLNA,NFKBIL2,GSK3B,NLRP12,BCL3,FAF1,TRIP6,BARD1 +PWCOMMONS MULTICELLULAR ORGANISMAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MULTICELLULAR_ORGANISMAL_DEVELOPMENT.html MEF2C,MEF2B,HRAS,GDA,MEF2A,BTD,PPP2R5D,RORB,MYLIP,SART1,BTK,CUL7,MC1R,SH3GL3,BRAF,RREB1,PDPN,MYH3,LIG1,UGCG,LIG3,MYH7,MYH6,MYH9,MARK4,PROX1,THY1,DOC2A,TAGLN,SERPINF1,F2,FOXG1,ZNF384,ROR2,SHOX,PMP22,EIF2AK3,SH3GL2,SH3GL1,OSTF1,AMTN,SERF1B,CACNB2,T,ARIH2,ATN1,KAL1,IL17F,ZAP70,SPP2,RECQL4,KIF3B,MOBP,NTF3,CYP46A1,NXF5,NXF2,DUSP22,ATR,SERPINI1,SMURF1,MAB21L2,FGF5,FGF8,NEURL,FGF7,HTATIP2,ELF3,TCOF1,SPI1,EVI5,SCRG1,NMUR2,FGF1,FGF2,GHR,LYN,EGFL7,TP53,IL6R,WAS,MMP11,INHBA,EREG,LRMP,FOXC2,VCAN,EGFL8,FOXC1,IL12B,CSF3,CSF1,NNAT,TRIM14,TRIM15,PCOLCE,SNRK,COL7A1,PKD2,PAPSS1,PAPSS2,C1GALT1,WNT8B,MYF6,IL4,IL3,IL8,LMX1B,IL7,MYF5,NTNG1,IGF1,NTNG2,IGF2,MID1,PHYH,CDH13,MEF2D,ACCN1,EPGN,STAB1,BNC1,FOXE1,AMOT,C4ORF6,IL2,LMO1,GRIK1,LMO2,LMO4,IL18,TGFB3,LRRC4C,PDX1,NR2E1,TGFB1,IL10,TGFB2,CXCL10,TDGF1,GALR2,BCL10,STMN3,BST2,BST1,BAIAP2,IL27,ENC1,MGP,NRD1,ZNF7,IL20,EP300,VAMP5,TFAP2B,EDF1,TFAP2A,EDA,SMARCA1,SNTG2,FGD1,CCL2,ADORA2A,ST8SIA2,MDK,NR2C2,TCP11,TEAD4,PCDHA10,PCDHA11,EGF,HELLS,UPK2,ARHGDIB,FKTN,CCM2,MEA1,JRKL,HDAC5,P2RX5,HDAC4,S100B,ST8SIA4,DYRK1A,ADRA1B,MYO16,FABP1,SCN8A,FABP7,HDAC9,ADRA1D,FABP5,PAX6,PAX5,PAX4,PAX3,PAX2,PAX1,MBP,SPRY2,PCDH1,RNF103,TIE1,CNTN6,IFI16,HOXC11,GAA,CNTN4,NRGN,UBB,CASQ2,BRSK2,RAG1,APLP1,CD9,COL9A1,COL9A2,LEFTY2,AVIL,CD4,CALML5,DCLK1,SECTM1,KLK7,EBP,KLK8,KL,CEBPG,KLK5,MAL,FRZB,COL5A3,COL5A2,ID2,BAX,GDF11,GDF10,ID3,EDN3,NELL1,LHCGR,UTRN,FST,TPD52,MOG,ATP2B2,DSPP,APOE,ATXN10,CEP290,COL12A1,ERAP1,RAB26,COL10A1,MATN3,CD3D,VANGL2,UBR3,KRT13,KRT10,SCEL,FARP2,HES1,KRT19,LETM1,RND1,KRT17,ATP2C1,KRT16,KRT15,KRT14,VEGFA,NPTN,MNT,LRCH4,EXT1,EXT2,PNMA1,IQCB1,LENEP,MFNG,CDK5R1,KEL,RBP2,HOXB13,EPHB4,EPHB1,AHSG,EPHB2,SEMA5A,TCF21,LHX1,CRMP1,LHX3,LHX6,SMA4,MAML3,OLFM1,BLNK,MDFI,COL18A1,IKZF3,MLL,IKZF1,HPCAL4,FTO,DDX1,RYBP,KRT31,CELSR1,KRT34,EPHA2,KRT32,NCKAP1,DLX2,MYCNOS,ATP2A2,DLX6,ETS1,ETS2,DLX5,GHSR,TCF12,TCF15,KLF4,KLF3,PCDHA6,NRP2,PCDHA7,PCDHA8,PPARD,ACVRL1,ARSE,NRP1,PCDHA2,PCDHA3,PCDHA4,PCDHA5,MYBPC3,PCDHA1,GLI2,KCNIP2,CANX,SPINK5,PTEN,GLI1,AES,GNPAT,SEMA3B,MKX,PCDHB9,PCDHB5,PCDHB6,UFD1L,PCDHB3,PCDHB4,ARTN,PCDHB2,NFAM1,RBBP7,CD164,AMIGO1,PROK2,SEMA4F,NPPB,RIPPLY1,CXCL1,PARD3,ETV7,RAB3D,ZBTB16,AZU1,LY6H,APBA2,VWC2,APBA1,JARID2,HCLS1,NLGN1,NPR1,GJB5,NPR3,SNAI2,SOD1,GJB1,CD1D,PRELID1,YWHAG,YWHAH,MEOX2,MEOX1,SVIL,C7ORF16,PHGDH,NHLH2,PTCH1,PTCH2,ATP6V0A4,TMEM176B,NHLH1,VLDLR,MYOD1,PLXNA3,CASR,NRTN,PLXNA1,MMP9,FOXO3,FOXO4,TTN,GDNF,GHRHR,GATA1,PRKACG,REG3A,WNT1,PROP1,ROBO1,GATA6,GATA4,ROBO4,ROBO2,PDGFC,KRT85,LGI1,IFRD1,MYST1,KRT83,MYST3,PICK1,FOXN1,CBLN1,LSAMP,OPHN1,DSP,NRSN1,EMP1,FGFR1,FGFR3,TCL1A,GREM1,PCDHAC2,PCDHAC1,ITGAX,NPM2,TRO,NKX3-1,CSF1R,GNRH1,HTT,BMX,ITGA2,FOXP2,ITGA7,CYFIP1,GLMN,CD79A,CHRD,POU6F1,AEBP1,INSL4,POU6F2,GNRHR,SCGB1A1,PDCD1,DGCR2,ANG,DGCR6,POU4F2,MKKS,POU4F1,SRD5A2,MKL2,SHC3,BOC,KIRREL3,ALX1,NANOG,CHST2,DMRT1,DMRT2,ALK,FSHR,OSM,EYA2,EVPL,BPTF,KRTAP5-9,SCIN,ITGB1BP2,GHRL,CUX1,UTP3,KRT6A,KRT6B,UBE3A,MTM1,NPTX1,POU2F3,COMP,TGM3,TGM5,ERCC3,CRIM1,SCG2,ERCC2,ZBTB7B,GLRB,FOXL2,PARK2,SIRT2,ATXN3,PRLR,MAP1S,BMPR1B,IGFBP3,IGFBP4,ALS2,HCCS,HOXD13,L1CAM,CITED2,FLI1,CTGF,SYK,PHOX2B,ZNF45,PTPRR,PITPNM1,ADAMTS9,NME2,RPS19,MSX1,TRAPPC4,TGIF1,ATPIF1,TRAPPC2,ADAMTS4,ODAM,NAGLU,EMCN,ERBB4,ERBB2,MYEF2,PPT1,HESX1,NPHP3,MUSK,ZNF74,NUDC,DMBX1,DVL2,DVL3,C16ORF80,KLF10,SPHK1,MSTN,TNNI3,DVL1,PCDH18,APOL2,SHOX2,TRPS1,TGFBR3,TLL1,KCNH1,RTN4,HLF,HNF1B,ZNF675,DGCR14,RTN1,DFNB31,HLX,MAPT,CREG1,USH2A,STS,STX2,ACTA1,CMKLR1,PTF1A,TLE3,TLE1,FOSB,TLE2,MXD1,FLNA,GPR98,ARVCF,NAB2,KIAA1217,NHEJ1,RAPGEFL1,CLN8,CLN5,GPR65,FHL3,PCDHB15,PML,PCDHB14,PCDHB13,PCDHB12,PCDHB11,ITM2B,PCDHB10,PCDHB16,PCDHB17,COL6A3,CSDE1,PCSK9,LIMD1,CCBP2,HSD17B3,RASA1,SIM1,SIM2,ZNF267,ELAVL1,RICTOR,CAPN3,PLG,CCL17,RPL29,RPS6KA6,RPS6KA3,LARGE,HBEGF,MPPED2,CTNS,NR5A2,ZNF256,GFRA3,NR5A1,BMP10,CHERP,HMGCR,STK36,JAG2,TNFSF13,TNFSF12,DLK1,ZIC1,ZIC3,ZIC2,NRCAM,GPR45,APOA5,UNC5C,SPON2,BPNT1,INSR,MATK,FLVCR1,RET,TAZ,SIX3,DLL3,VAX2,SIX6,HHEX,GPR56,SIX1,COL1A2,SPDEF,COL1A1,TNFAIP1,ACHE,HMGB3,DRD2,TNFRSF12A,MRAS,CNTFR,EXTL1,ECE2,DYRK3,DDX41,ANGPTL3,ANGPTL2,ANGPTL4,ADAM23,NEUROG1,WHSC2,NEUROG3,ANKH,NDUFV2,MYH11,CACNA1H,ADAM22,LEPR,FES,PRDX1,CDC42,ALAS2,NDUFS4,TRIM3,HEY1,PCP4,HEY2,DLG4,RHOB,LIMK1,OTX2,CDK6,MBNL1,HMGA2,RPS4X,NCL,CDK5,HUNK,CHRM3,CHRM2,NCOA4,CHRM1,LCK,NCOA6,ACVR1,ABLIM1,IRX4,NDP,CTF1,RNH1,PF4,DCN,ALDH3A2,MSX2,DCT,COL17A1,DNER,PAFAH1B3,PAFAH1B1,DCX,COL4A4,COL4A3,COL4A2,PLP1,NF2,ALPK3,COL13A1,HCK,FBN1,NF1,DPYSL5,DPYSL4,RCAN1,DPYSL3,DRG1,DPYSL2,ANXA2,CLPTM1,HEYL,SMPD1,JAK2,APAF1,FEZ2,FEZ1,NOG,CDX1,S100A7,SNCA,AQP4,POSTN,ADORA1,SHH,BDNF,PLOD1,CHRNA4,NGFRAP1,CHRNA7,EIF2B2,PITX3,CHRNA1,EIF2B3,TWIST2,EIF2B4,TWIST1,EIF2B5,PITX2,RARG,EFNB3,NKX2-6,MDGA1,MDGA2,PIM1,ACRV1,TBR1,PRELP,CD40LG,EFNA5,LAMC2,LAMC1,KCNMB4,GCNT2,HOXA13,ELN,ITGA11,TAGLN3,KCNMB2,LIF,LAMB3,AGGF1,BAI1,HOXA10,AGRN,LAMB1,IL1RAPL2,EMD,NKX2-2,BMP4,BMP2,BMP1,TRPC5,SMAD5,MYOZ1,EN1,SMAD2,EN2,SMAD1,CSRP3,NKX6-1,LAMA2,NOTCH2,NOTCH1,LAMA3,SFRP4,NOTCH4,TMOD2,ENG,LHB,GYPC,SPG7,TM7SF4,TBX22,TBX21,CDSN,TNFRSF11B,ALOX12B,COL11A1,DNAJC19,DHCR24,ADAM10,FLOT2,RBM45,CLC,SLIT1,SLIT2,SLIT3,CTNNBIP1,VCX3A,SGCG,SGCD,SGCE,SIAH1,ADAM12,SGCA,SGCB,SHROOM2,SHROOM3,SHROOM4,STATH,COL2A1,EHF,SUFU,MLF1,SPEG,UGT8,THBS1,LECT2,FZD9,NAT8,TBX6,TBX3,PTPRZ1,NASP,TBX5,TBX4,AFF3,AFF2,TBX1,EIF2B1,STAT3,FZD6,COL19A1,MAPK12,CLEC3B,CLEC3A,DRP2,NEUROD2,PBX1,CIT,PBX3,PBX4,FGF19,MAEA,CRABP1,WFS1,FGF14,FGF17,CRABP2,ARNT2,FGF16,FGF11,FGF10,FGF13,FGF12,CSPG5,ANKRD7,IL31RA,HOXC6,GSTM3,ACIN1,ODZ1,DSCAM,TNFRSF17,SOCS5,NR0B1,MEPE,TIMM8A,NUMBL,PTHLH,PLCE1,GYLTL1B,CARTPT,PAEP,KALRN,PRPS1,SRI,MYL6,GCLC,LST1,MCL1,TFAP4,SOX3,ONECUT2,NINJ2,MAP4K2,NINJ1,DSCAML1,MAP4K1,ATP6V1B1,GCLM,SOX8,HOXA1,B3GNT5,PTPLA,SFTPD,HOXA9,RUNX1,RUNX2,SRGN,SFTPB,MEST,AXIN1,PARD6B,NFE2,EVC,ZMYM4,ZMYM3,MAFB,ZMYM6,CPNE6,DMP1,TINAG,GCM2,HOXB1,HOXB2,BMI1,LSR,CRX,GSS,ACVR1B,TPP1,POMT1,SOX15,KCNQ2,PRL,RS1,EGR3,EGR2,SOX14,NRXN3,ALDH5A1,SOX11,LDB1,MINK1,INHA,NRXN1,ACVR2A,ACVR2B,SMTN,BTG1,BTG4,NAIP,GSTP1,RTN4RL1,SPRR2G,SPOCK1,SPRR2F,SPRR2E,POU1F1,CALCA,KRT9,NPAS1,NPAS2,UTP11L,SPRR2C,HAND1,KRT5,HAND2,MYL6B,RASGRP4,SPRR2D,SPRR2A,PTH,SPRR2B,KRT1,MSI1,KRT2,POU3F3,PTN,RTN4RL2,PTS,THPO,PTPRC,ERG,DNM1L,DTX1,PLAC1,CENPF,SPARC,CBY1,RACGAP1,WNT2B,GMFB,PSPN,CASP14,SPRR1A,SPRR1B,KCNN3,F2R +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html POU6F1,GLI2,ZIC1,SHH,ZIC2,NDUFS4,CEP290,ROBO2,UNC5C,ALX1,EGR2,MDGA1,OTX2,SIX3,ALK,SLIT1,TBR1,VCX3A,PITPNM1,BPTF,GPR56,FOXG1,NCOA6,CNTN4,SMARCA1,CLN5,UTP3,SHROOM2,CDK5R1,SHROOM4,UBE3A,NNAT,DSCAML1,PPT1,HESX1,ECE2,LHX6,NKX2-2,DMBX1,NF1,AFF2,FOXP2,PCDH18,DLX2,MAP1S,PHGDH,MYO16,PBX1,CTNS,PBX3,PBX4 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html ACVRL1,HTATIP2,IL18,TNFSF12,GLI2,FOXO4,SPINK5,CANX,SHH,TGFB2,ANG,ROBO4,CEP290,ERAP1,RHOB,CHRNA7,MYH9,NCL,SLIT2,THY1,PROK2,EYA2,SERPINF1,BTG1,VEGFA,NPPB,ATPIF1,EMCN,RNH1,PML,PF4,TRIM15,CD9,AGGF1,IL17F,RUNX1,EGF,ANGPTL3,C1GALT1,SCG2,ANGPTL4,COL4A3,COL4A2,IL8,NF1,SPHK1,NPR1,SMAD2,TNNI3,PLG,CDH13,STAB1,EPGN,NOTCH4,AMOT,KLF4 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html TRAF2,MBL2,CADM1,IL28RA,RSAD2,BNIP3,TNFSF13,APOBEC3G,APOBEC3F,TLR7,TLR8,TGFB1,CD74,MAP3K7,CFHR1,APOA2,APOA1,FCN2,BCL2,FCN1,KRT1,C2,TRAF6,IL4,PTPRC,CRTAM,IL29,CEBPG,DEFB103A,SLA2,MALT1,FOXP3,NCR1,TARBP2,CD40LG,BNIP3L,IL12A,IL12B +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html CCKAR,NUAK2,GNAI2,ENPP1,PPARG,ASNS,ENSA,GCGR,CDKN2B,ALB,CDKN2D,PCSK9,OGT,SREBF1,STC2,FADS1,TP53,LEP,SSTR2,CHMP1A,TULP4,NPY,SSTR1,GIPR,GHRL,CARTPT,STC1,GHSR,SST +PWCOMMONS CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_SIGNALING.html PGF,PGR,HTR1B,GRIN2B,HTR1D,HTR1F,HTR1E,PTPRJ,SCN2B,KIF5A,GRIN2A,BSN,MAPK1,SSTR2,SIRPG,GRB10,SSTR3,DOC2A,SSTR1,PMP22,GRAP2,SCN1B,ADCYAP1,HCRTR2,IL17C,IFNA2,HCRTR1,IL17A,SYPL1,IL17B,IFNA7,UNC119,NTF3,KLF10,KCNK3,RAPSN,AREG,CHRNE,ASIP,FGF6,FGF5,FAM3D,GLRA1,FGF9,FAM3B,LNPEP,NMUR1,NMUR2,CEACAM6,FGF3,FGF4,AVP,AR,NPBWR1,NPBWR2,PI4KA,INHBB,INHBA,EREG,TXN,OPRK1,PCDHB14,PCDHB13,PCDHB11,PCDHB10,CCL27,AMPH,CCL26,PCSK2,CCL24,PCSK1,CCL22,CCL23,CCL20,CCL21,PCDHB16,PCSK6,HTR3A,SNAP25,PCSK5,HTR3B,WNT8B,IL3,IL7,CCL16,CCL15,CCL18,CCL17,ACCN1,CCL13,STAB1,MYCBPAP,HTR2C,IL2,NR5A1,HTR2A,KCNC4,MPZL1,GRIK1,GRIK2,IL18,GRIK4,TGFB3,ENPEP,IL15,CXCL11,TNFSF18,TGFB2,CXCL10,IL11,GALR3,GALR2,IL1B,KCND2,BST2,BAIAP3,NUDT3,IL26,NTSR1,GABRR2,TNFAIP6,GABRR1,GPR56,GPR50,TFAP2C,CCL3,DRD1,DRD2,ADORA2A,DRD4,KCNA1,CCL8,CCL5,CCL4,CCL7,ECE2,CRB1,TEK,ADRA2C,ADRA2B,HCN2,SNAPIN,FURIN,TNFSF10,PDE7B,CXCL14,CXCL13,ADRA1B,MTNR1B,ADRA1A,CACNA1E,MERTK,XCL1,ADRA1D,CACNA1B,GABBR2,MBP,SPRY2,WISP2,SLC1A2,PCDH1,SLC1A3,WISP1,WISP3,IAPP,SLC1A6,DLG4,SLC1A1,IK,PCDH8,ESR2,KIF1B,SIGLEC6,CNTN4,UBB,TSHR,ALDH9A1,HCRT,NDP,CTF1,TSHB,CD9,HRH3,TSPAN32,TMED1,GCHFR,COL4A4,GUCA1B,KLK8,PLP1,NF1,MAL,TNFSF9,DBH,TNFSF8,GCK,GDF15,CGA,SYT1,EDN3,CGB,UTS2,EFNA1,SYT5,EFNA2,S100A9,EFNA3,GDF5,ADORA1,SHH,APOE,CHRNA5,CHRNA4,CHRNA6,CHRNA1,EIF2B2,EIF2B4,EIF2B5,EFNB3,STC2,EFNB1,STRN4,EFNB2,C1QA,LILRB2,COLQ,CCR5,CD33,HTR7,HTR6,NPTN,EFNA5,STC1,EFNA4,LALBA,KCNMB3,KCNMB4,CALY,MME,CD70,PXK,POMC,RIMS1,KCNMB1,KCNMB2,LIF,SEMA5A,GAD2,GAD1,HAP1,BMP3,MLN,BMP2,HOMER1,NPY,CHRNB4,CHRNB3,QPRT,PYY,CHRNB1,RIT2,GHSR,LHB,PPARD,NRP1,TOLLIP,GJA1,KCNIP1,GJA3,SH2D1A,TNFRSF11A,FXN,SEMA3B,PCDHB9,KCNMA1,STX1A,GPR176,PRG3,PCDHB5,PCDHB6,PCDHB3,PCDHB4,PCDHB2,GRM1,STX1B,AMIGO1,GRM5,GRM4,GRM3,GRM2,ADM,SEMA4F,GRM7,ASH1L,ADAM17,RAB3A,IL1F9,CXCL5,CCR1,CXCL9,NMB,CXCL6,HPRT1,GCH1,AGT,CD24,MLLT4,APBA1,DTNA,TRHDE,TBX3,TBX5,NLGN1,SNAI2,SOD1,GABARAP,GJB1,GJB2,YWHAG,YWHAH,GRIA2,GRIA1,TUSC2,SEPT5,FGF18,SNCAIP,SLC6A1,GABRB2,PDGFA,FGF14,SLC6A2,FGF17,SLC6A4,FGF16,FGF11,CNP,FGF13,FGF12,VIPR1,GDNF,VIPR2,PTGIR,NQO1,FGF21,FGF20,PTHLH,CBLN1,AKAP5,CARTPT,WNT5A,SRI,GRAP,GRB2,TRH,NOVA1,GNRH1,CPNE6,OMP,CORT,PHEX,SST,INSL3,INSL4,FASLG,CD97,KCNQ5,KCNQ3,SRD5A2,ZYX,KCNQ2,TAAR5,LTB,LTA,NPFF,CHST4,INHA,OSM,AMH,GHRH,GHRL,CPLX1,AKAP9,CALCA,NPTX1,SYN1,SYN3,PTH,SYN2,SCG5,FGFBP1,GLRB,MPZ,ATXN3,KCNN1,SLC6A5,KCNN3,CRH,SLC5A7,CHRNA10,MGST2 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html SGMS2,GBGT1,PTGS1,SGMS1,LASS5,APOA1,AGPS,LCAT,UGCG,NR0B1,PNPLA3,CHPT1,PLCE1,PI4K2A,HSD11B2,MVK,CNBP,TFCP2L1,ST8SIA1,ST8SIA3,PDSS1,CD74,PDSS2,B3GNT5,LPCAT1,PEMT,PCYT1B,CYP19A1,MCAT,FDXR,FDPS,BRCA1,CYP7B1,LASS1,ST8SIA5,IDI1,BMP6,PTGES3,IMPA1,ALG1,CYP11B2,PEX7,PIGK,ST6GALNAC6,AGPAT6,CYP39A1,PIGF,ANG,PIGG,PIGH,PIGB,NPC1L1,PIGC,PCYT2,AGPAT2,AGPAT1,DHCR24,PIGA,PIGZ,PIGY,CYP11A1,PRG3,PIK3C2A,PIGV,PI4KA,PIGU,PIGT,PIGS,PI4KB,PIGO,DGAT2,PTGDS,ADM,CD81,AKR1D1,DEGS1,PGS1,HSD3B1,HSD3B7,GPAA1,MIF,DGKE,DHCR7,ETNK1,NSDHL,FADS1,FADS2,SOD1,OXSM,LARGE,DPM1,DPM2,DPM3,LTA4H,SCP2,HPGD,NR5A1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html HCCS,CDX1,HRAS,IL18,FGF16,TGFB3,FGF10,RORB,PDX1,TNFSF12,FOXO4,ZIC1,TGFB1,SHH,TGFB2,FLI1,CUL7,ROBO4,CEP290,ERAP1,CHRNA7,PITX3,PITX2,SYK,BRAF,VANGL2,FOXN1,MYH7,MYH6,MYH9,PROX1,SIX6,THY1,MSX1,SERPINF1,VEGFA,ATPIF1,ODAM,FGD1,EMCN,CCL2,AMTN,ONECUT2,ELN,DSCAML1,EPHB4,AGGF1,ITGAX,LHX1,LHX3,IL17F,RUNX1,EGF,LAMB1,ANGPTL3,SFTPB,ANGPTL4,COL18A1,CCM2,HTT,SPHK1,ITGA2,TNNI3,TINAG,NKX6-1,NOTCH2,NOTCH4,GLMN,FABP1,ENG,GYPC,ACVRL1,HTATIP2,NRP1,MYBPC3,PAX6,PAX5,PAX4,PAX3,GLI2,LSR,CANX,SPINK5,CRX,SPRY2,DGCR2,AES,HEY1,ANG,DGCR6,HEY2,RHOB,GNPAT,FGF2,STX2,EGFL7,TLE3,TLE1,TLE2,NCL,PROK2,EREG,BTG1,GAA,NPPB,FOXC1,ABLIM1,ETV7,SHROOM2,PML,RNH1,PF4,DCN,POU1F1,APLP1,COL9A1,COMP,LY6H,PKD2,PCSK9,C1GALT1,RASA1,SCG2,COL4A3,COL4A2,IL8,TBX3,IL7,PLAC1,CEBPG,TBX4,NF1,NPR1,TBX1,COL5A3,SOD1,PLG,CDH13,STAB1,EPGN,BAX,AMOT,PTCH1,TMEM176B +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html KCNMB3,RTP3,KCNMB4,SYT1,CASR,RTP4,STIM1,TAS1R3,KCNIP2,KCNIP1,TAS1R2,KCNMB2,TAS2R16,NOD2,TAS2R14,GCK,TAS2R43,UGT2A1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html GNA15,TNFSF15,PMAIP1,EDNRA,NLRC4,CDKN2A,CASP8AP2,CASP9,ANG,NMUR1,NMUR2,APOA5,RGN,PLCB2,EGFR,C5AR1,AIFM3,CCKBR,RALBP1,CYCS,TP53,ARHGAP27,NLRP3,NLRP2,BCL2L10,THY1,TNNT2,GNAQ,IFNB1,F2,LCK,ERN1,APOC2,MOAP1,MTCH1,DIABLO,HIP1,COL4A3,FOXL2,CARD8,SMAD3,STAT1,VCP,BBC3,IFT57,BAX,AVPR1B,AVPR1A,PPP2R4,APAF1,F2R +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html CDC7,PTPRC,POLA1,TIPIN,RCC1,CHMP1A,DDX11,TIMELESS,POLD1,CDK2AP1,MYO16,ABL1,APBB2,APBB1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html ADORA2B,ZAK,ERBB2,PTPLAD1,C5,FPR1,MAP4K1,TLR6,DAXX,MAP3K6,MAP3K5,CXCR4,MDFIC,MAP3K2,MAP3K9,TDGF1,ADRA2A,TGFA,CHRNA7,ADRA2C,SHC1,CD24,PAK1,GNG3,EGF,FGF2,MDFI,EGFR,DBNL,C5AR1,PIK3CB,MADD,KIAA1804,PKN1,TPD52L1,SOD1,GRM4,PROK2,MAP4K5,PLCE1,ADRB2,EPGN,CD81,MAP3K10,GHRL,MAP3K11 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html BCKDHA,BCKDK,AMT,GLUD1,BCKDHB,HGD,ASL,DDO,FAH,GLDC,GOT2,ARG1,MCCC2,ASPA,GAD2,GOT1,GSTZ1,ASRGL1,ALDH4A1,GCSH,DDAH2,DDAH1,GAD1,HPD +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html NBN,ZAK,HUS1,KNTC1,TIPIN,PML,TTK,CHEK1,BRSK1,CHEK2,CCNG2,TGFB1,CDT1,CCNE2,TRIAP1,CDKN2A,CDKN2B,PCBP4,BUB1,FANCG,ERCC3,GML,ATRIP,CCNA2,ZW10,ERCC2,CDC6,DDB1,RINT1,RAD9A,BIRC5,RB1,ATR,NEK11,FOXN3,ATM,NAE1,RBBP8,RAD1,XPC,MAD2L1,ZWINT,BUB1B,SMC1A,MAD2L2,CHFR,RAD17 +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html MFN2,BAK1,OPA1,DNM1L,BCL2,TAZ,TP53,BNIP3,TIMM50,BCL2L1,COX18 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html TNFSF15,PMAIP1,NLRC4,MOAP1,CDKN2A,CASP9,CASP8AP2,MTCH1,DIABLO,HIP1,COL4A3,FOXL2,CARD8,AIFM3,CYCS,TP53,SMAD3,STAT1,NLRP3,NLRP2,BCL2L10,VCP,BBC3,IFNB1,IFT57,BAX,F2,LCK,APAF1,F2R +PWCOMMONS REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html FST,HIRA,MED23,MED21,MED20,ZNF254,CITED1,CITED2,EPC1,MED26,MED27,TRAK1,SUPT5H,TWIST1,IKBKAP,RXRA,YY1,MED12,MECP2,MED14,MED13,HNF4G,TAF6L,PPARGC1B,UHRF1,HNF4A,MTF1,ZNF238,MED17,SMARCAL1,TGIF1,PRDM1,CRTC1,ZNF76,VPS72,PLAGL1,FOXH1,HEXIM2,DRAP1,HEXIM1,HTATSF1,MAML3,VEZF1,TCF25,NKX2-5,MDFI,UTF1,KLF7,TCF7,IKZF3,KLF12,KLF9,SUB1,MAML1,KLF10,KLF11,MAML2,RYBP,SMAD3,SMAD2,TFCP2,UBP1,RNF4,JAZF1,TCF19,TCF12,TCF15,BMP6,ZBTB32,PPARD,ELF1,ELF2,HTATIP2,ELF4,PPARG,SPI1,ZEB1,HSBP1,GLI2,ZNF345,GLI1,KCNIP3,ZBTB38,BLZF1,GFI1B,ZNF148,CREG1,BRD7,SPIB,NR2F2,MYC,TAF1L,BRD8,ZNF281,ATF7IP,ZNF354A,TBX10,CCNH,TP53,ZNF143,FOSB,JMY,RBBP8,MXD4,GTF2H1,MYCN,CIAO1,MED6,MED7,INHBA,ZNF136,C19ORF2,RUVBL1,SRCAP,NSD1,CLOCK,TBX19,MED1,ZMYND11,NUFIP1,ZNF367,ZNF177,ZNF174,SQSTM1,BCL6,SUPT4H1,FOXD3,MYF6,IL4,TBX3,MYF5,TRIM28,TRIM27,SNAI2,STAT3,STAT2,SOD2,ZNF157,MNAT1,NEUROD2,PHF21A,TCEB3,PBX1,TCEB1,PBX3,RBM14,PBX4,NR5A1,MYOD1,FOXO1,FOXO3,TCEAL1,HOXC6,GATA1,SMARCD2,SMARCD3,HOXC5,SMARCD1,GABPB2,ZNF593,MYO6,FOXN1,ZNF189,NR0B2,ARNTL,ELL3,CSDA,JUNB,HIF1A,SMARCE1,TIAL1,TFAP2B,MNX1,SMARCA5,TFAP2A,TFAP2C,SMARCA2,HMGB1,EID1,HMGB2,LITAF,TFAP4,ELK1,ABCA2,MEIS2,SMARCB1,SNF8,JUND,TEAD4,RUNX1,RNF14,TFDP1,SREBF1,NFE2,EPAS1,SAP18,BRIP1,NEUROG1,SNW1,GSC2,BRCA1,SREBF2,ATF6,ATF5,ATF4,NRF1,SMARCC1,PRKAR1A,SMARCC2,DNMT1,ABL1,HDAC8,E2F1,FOSL2,SOX21,E2F6,NR6A1,FOXK2,ZNF202,CTCF,DEK,PAWR,BUD31,MEN1,FOS,POU4F2,POU4F1,SOX18,LRRFIP1,MKL2,FOSL1,NFX1,ELP4,ELP3,ELP2,SLA2,SOX12,CDK7,RB1,UBN1,NRIP1,PRPF6,TARBP1,TARBP2,BPTF,ZMIZ2,NCOA6,MDM2,ZFPM2,MDM4,CUX1,ZFP161,SUPT3H,GLIS3,GLIS1,NFYC,HCFC2,TCF7L2,TNFRSF1A,NPAS2,ORC2L,POU2F3,CHD2,CHD1,GFI1,ERCC3,NFATC3,CHD4,CHD3,ENO1,ERCC2,ERF,VHL,CEBPG,SOX30,SP1,SP2,DBP,IRF7,DR1,IRF8,SP4,THRAP3,IRF2,ID4,CRK +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html IL4,PTPRC,CD3E,IL18,CD276,IL21,NCK2,NCK1,CD24,IL12B,EBI3,ICOSLG,CD28 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html AURKAIP1,TLR1,TLR3,EIF5A,TLR4,TLR6,TLR7,TGFB1,TLR8,TLR9,IL31RA,APOA2,CLCF1,TPP1,ATG7,MAPT,TDGF1,LTB,EBI3,SPN,SAMD4A,EIF2B5,BCL10,PRG3,IL29,LYN,IL27,PPARGC1A,BOLL,IL20,UBE2N,NCK2,CARD14,CCND1,CCND3,EREG,CD80,CCND2,TPPP,NCK1,CD81,IL12A,IL12B,CLN6,ITLN1,KATNB1,TNFRSF8,ARF6,STUB1,AZU1,CDC42EP2,BCL3,DAZL,UBE2D1,CDC42EP5,CD28,IL4,BMP4,IL3,IL6,DAZ1,IL5,HCLS1,CEBPG,IL9,CD276,BRCA1,AKTIP,GLMN,PPP2R4,TNK2,IRF4 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GNPDA1,CHIA,B3GALT6,PGD,SLC35A2,SLC35A3,PDHB,ST3GAL2,MIOX,ST3GAL6,NANP,IDUA,IRS2,FBP1,FBP2,PPARGC1A,GLCE,GNS,PGLS,NNT,HAS1,MGAM,EXT1,EXT2,HS3ST3B1,ALDOA,ME1,LALBA,ME3,GCNT2,GNE,ALDOC,PFKFB1,ALDOB,NAGK,EXTL2,CHIT1,B3GNT8,GAD2,INS,IL17F,GYS2,IDH1,DYRK2,GAD1,B4GALT7,FH,UAP1,GUSB,EPM2A,GALT,IDH3B,ATF4,SLC25A10,FPGT,SGSH,NDST1,ALG1,PTEN,ACN9,ACOT4,HPSE,XYLT1,CHST12,CHST11,CHST14,CHST13,TREH,PFKL,ACO2,ACO1,CHST2,CHST3,CHST4,CHST5,PFKM,HYAL4,PMM2,CHST1,G6PD,CHST7,CHST6,CHST9,CHST8,GAA,UGP2,CLN6,HS3ST5,GALNT5,UGDH,HK1,TKTL1,GALK1,LECT1,AKR1A1,ECD,B4GALNT2,HS6ST1,TSTA3,PDK1,PDK2,GMDS,PDK3,PDK4,GYG2,BRS3,ACLY,GAPDHS,GBA3,SDHA,SDHB,GBA2,PYGM,LARGE,GCK,SDHC,GSK3B,GFPT1,SDHD,GFPT2,IPPK,PYGB +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html TNF,STK36,UBE2V1,EGLN1,PRDX3,PYDC1,NOD2,SUMO1,CDKN2A,NLRC3,NPM1,PYCARD,PEX14,ABRA,CAMK2A,BCL10,CREBZF,RELA,CEBPG,EDA2R,NFAM1,FOXP3,NLRP3,FLNA,JMY,SIGIRR,UBE2N,PRKCQ,CARD11,EP300,ID2,ID1,NARFL,ID3,EDA,COMMD7,ERC1,TSSK4,IKBKB,MAP3K13 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html MICB,CRTAM,CDK5R1,MICA,ZP2,OPCML,CADM1,PCDH12,COLEC12,SLIT2,CLEC4M,AMIGO1,CD209,PECAM1,CNTN4,VCAN,CLEC7A,SPAM1 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html SGSH,HS3ST5,NDST1,CHST3,GLCE,LECT1,CHST7,HPSE,CHST9,CHST12,IL17F,CHST11,CHST8,CHST14,CHST13,HS6ST1,EXT1,B4GALT7,HS3ST3B1 +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html CDC6,NBN,WRNIP1,POLA1,TIPIN,RAD9A,MCM3,RPA4,ORC1L,PURA,CDT1,ORC2L,ORC4L,ORC5L,RAD17 +PWCOMMONS PEPTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDE_METABOLIC_PROCESS.html PAM,TPP1,ADAMTS13,DMD,DEFB103A,PGCP,FURIN,PCSK5,TAPBP,DNPEP +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html IL4,MAFB,LDB1,SPI1,ZNF675,CDK6,PF4,FOXO3,ZBTB16,INHA,CALCA,ACVR1B,ACVR2A,INHBA,ETS1,SCIN,CARTPT,ACIN1,RUNX1 +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html TARBP2,PTPRC,IL29,BCL2,IL28RA,BNIP3L,BNIP3,RSAD2,APOBEC3G,TLR7,APOBEC3F,TLR8 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html CLN3,CLCN3,SLC9A7,ATP1A3,ATP1A4,PPT1,ATP1A1,ATP1A2,ATP6V1B1,BCL2,CLN5,CLN6,SLC9A1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html PPFIA2,ACVRL1,PPFIA1,ITGA11,ITGA10,PTEN,COL17A1,CDKN2A,SORBS1,FXC1,PKD2,PKD1,ANGPTL3,THBS3,RASA1,PARVG,NF2,TAOK2,COL13A1,NF1,ACTN1,ITGA2,ITGA3,ACTN2,CDK6,ACTN3,ECM2,THY1,VWF,CDH13,LYVE1,TSC1,ITGB1BP1,FBLN5,ITGA7,TESK2,SGCE,ADAM15 +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html IL4,TM7SF4,MMP9,CSF1,ZNF675,IFI16,INHA,MYH9,IL31RA,CALCA,INHBA,CDC42,CARTPT,ACIN1,RUNX1 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html PAM,KIF25,LATS1,NCAPH,DDX11,INCENP,CDCA5,TOP2A,ZW10,PDS5B,CDC23,CENPF,NUSAP1,CENPE,ESPL1,NDC80,PMF1,SRPK1,MIS12,BRCA1,SMC4,CHMP1A,REC8,PSEN1,RIOK3,ZWINT,PSEN2,ARL8A,ARL8B,SMC1A,NEK6 +PWCOMMONS REGULATION OF CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html UBE2N,SET,PIF1,TLK1,TERF2IP,TLK2,ERCC4,PPARGC1A,ERCC1,TERF2 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html FXYD1,FXYD3,TSPO,GLRA1,SLC26A2,BEST1,SLCO1A2,NMUR1,SLC22A6,SLC4A2,SLC4A1,SLC22A7,SLC22A8,SLC34A1,CLIC1,VDAC2,SLC34A3,VDAC1,SLC34A2,SLC17A7,SLC26A4,SLCO1B3,SLC26A3,SLC17A5,SLC4A11,CLIC3,SLC17A1,CLIC5,SLCO1B1,SLC13A4,CLCN4 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html WASF3,PREX1,WASF1,ARF6,LATS1,CENPJ,NCK2,CDC42EP2,SPRR2C,GSN,ANG,TPPP,MAPT,NCK1,RAC1,TMSB4Y,MAPRE1,RASA1,CDC42EP5 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CADM1,ELF4,PREX1,IL18,JAG2,TLR4,TNFSF13,TPD52,SPINK5,TGFB1,SART1,CD47,NLRC3,EBI3,CRTAM,SPACA3,SIT1,CD3D,PRG3,CD3E,SLA2,IL27,INHA,NFAM1,SOCS5,IL21,THY1,INHBA,NCK2,SIRPG,LAT2,LAX1,CD40LG,NCK1,LCK,IL12A,IL12B,NHEJ1,ICOSLG,LST1,CX3CL1,AZU1,INS,SFTPD,CD2,ZAP70,CD4,CD24,HELLS,CD7,CD28,IL4,PTPRC,IL8,IL7,CEBPG,CD276,FOXP3,CD1D,HDAC5,LAT,HDAC4,GLMN,CD79A,CLEC7A,HDAC9,IL2 +PWCOMMONS INTERLEUKIN 1 SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_1_SECRETION.html NLRC4,NOD2,CARD8,APOA1,PYCARD,NLRP12,ABCA1,NLRP3,PYDC1,NLRP2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PPARD,SNCAIP,PGD,ADH1B,PTEN,SLC35A2,ACN9,TGFB2,STARD3,APOF,MIOX,NPC1L1,DHCR24,IRS2,PFKL,FBP1,ALDH3B2,PFKM,NR0B2,FBP2,PMM2,PPARGC1A,ALDH3B1,CHST1,COQ3,COQ2,PGLS,G6PD,SULT1B1,AKR1D1,CLN8,UGP2,CLN6,ALDOA,CNBP,HDLBP,ALDOC,PFKFB1,ALDOB,ADH5,UGDH,ADH6,HK1,ADH7,TKTL1,HPRT1,GALK1,AKR1A1,INS,ADH4,DHCR7,ALDH1A3,ECD,ETNK1,SCARB1,TSTA3,NSDHL,IL4,SOAT1,PDK1,SOAT2,PDK2,MBTPS2,CYP46A1,GMDS,PDK3,SPHK1,PDK4,GALT,FDPS,BRS3,SOD1,ABCG1,GAPDHS,APOL2,CEL,ATF4,GCK,GFPT1,SLC25A10,GFPT2,ALDH2,IPPK,FPGT +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html MCHR1,CCKAR,CCKBR,PMCH,PPYR1,UBR3,BRS3,LEP,GCG,HCRTR2,HCRTR1,NPY,FYN,GALR3,NMUR2,NPW,GALR2,MC4R,GHRL,CARTPT,PYY,GHSR,HTR2C,AGRP +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html YARS,DARS,FARS2,SARS,AARS,SSB,KARS,SARS2,ADAT1,TRNT1,WARS,METTL1,RARS,POP1,THG1L,MARS2,POP4,NSUN2 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html HCCS,CYP24A1,OXA1L,UQCRC1,CYB5R2,ENOX2,PGD,DUOX2,DUOX1,PDIA5,PPOX,AKR1C3,FXN,PLOD1,GPX4,SPR,LOXL1,AKR1C1,WWOX,TXNL1,ALDH5A1,NCF4,GRHPR,CDO1,DDO,POR,MTRR,DHRS2,DHRS4,NNT,SURF1,AKR1D1,ALDH9A1,AOC3,ME3,CYP1B1,GLUD2,ADH7,ALDH3A1,SCO2,NOX4,NOX5,FDXR,CYP4F11,BLVRA,SLC25A12,SDHA,NDOR1,SLC25A13,SDHC,RETSAT +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html IL4,TRAF2,PTPRC,CRTAM,CADM1,IL27,SLA2,IL18,TNFSF13,MALT1,SOCS5,FOXP3,IL10,TGFB1,CD74,TLR8,MAP3K7,IL18BP,CD40LG,IL12A,IL12B,C2,TRAF6,EBI3 +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html MAP3K7,TRAF2,IL18,IL17F,SFTPD,GLMN,MALT1,IRF4,FOXP3,TRAF6,CD28 +PWCOMMONS POSITIVE REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEFENSE_RESPONSE.html TNFRSF1A,CRTAM,CADM1,EREG,IL12A,CX3CL1,IL12B,IFNK,TLR8,CD1D +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html IL4,HDAC5,INHBA,HDAC4,CEBPG,NFAM1,CD79A,INHA,HDAC9,TPD52,NHEJ1 +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html GCLC,NF1,EGLN2,SELS,DDIT3,THY1,GLRX2,CALCA,GPX1,BCL2,MC4R,CARTPT,IFI6 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNC1,KCNC4,KCNC3,ATOX1,KCNK7,KCNK6,KCNK5,CHRNA7,KCND3,SCN2B,SCN2A,STIM2,STIM1,SLC34A3,ATP2C1,RYR3,RYR1,SLC40A1,KCNMB3,ORAI1,KCNMB4,SCN1B,KCNA2,KCNA1,KCNA4,KCNA3,CCL8,HFE,CACNB3,KCNA6,KCNA5,CACNB4,KCNJ2,KCNJ3,KCNMB1,KCNJ1,KCNMB2,SLC11A2,KCNS3,KCNS1,SCN9A,SLC30A5,SLC31A2,SLC31A1,TRPC1,TRPC4,CACNA2D1,TRPC3,TRPC5,KCNB2,KCNK1,KCNK3,KCNK4,ATP7A,KCNJ5,KCNJ4,SLC4A11,KCNJ6,NPY,ATP2A3,ATP2A1,CACNA1D,ATP7B,KCNH1,KCNK17,KCNJ15,KCNAB3,KCNAB1,KCNJ10,KCNJ12,KCNIP2,KCNJ11,KCNQ4,KCNQ3,SLN,NMUR1,NMUR2,TRPV5,SCN7A,KCNQ2,COX17,KCNQ1,SCN10A,KCNG2,SGK1,TRPM2,KCNA10,SCN11A,KCNH2,KCNH3,KCNH4,KCNE1,KCNE2,CCS,CHP,SCNN1G,SCNN1A,SCN5A,SLC39A2,SCNN1D,SLC8A1,ATP1A4,KCNV1,KCNN4,ABCC9,SLC17A3,KCNN1,SLC17A4,PLN,KCNN3,SLC17A2,KCNF1,SCN4B,ABCC8,SCN4A,CSN2 +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html CALCA,CDH13,AGGF1,ANG,NF1,TNFSF15,GHRL,ATPIF1,TNFSF12,SCG2,DLG1 +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html GLRB,ECEL1,GLRA1,GLRA2,GRP,HCRTR2,HCRTR1,GALR1,NMUR1,GALR3,NMUR2,QRFP,AGRP,NPFF +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html LIMA1,WASF3,WASF1,PREX1,ARF6,EVL,LATS1,CXCL12,DSTN,NCK2,CDC42EP2,ANG,GSN,NCK1,CAPG,RAC1,GHRL,WIPF1,TMSB4Y,WASL,GHSR,RASA1,CDC42EP5 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html ADORA3,S100A8,AIF1,S100A9,IL13,CXCL11,ADORA1,TGFB1,CXCL10,LTB4R,CHRNA7,IL1A,F11R,VPS45,RELA,CD40,CDO1,IL20,TNFAIP6,CCR7,CCR5,CD40LG,CCR4,CCR3,CCR2,RIPK2,NFE2L1,PLA2G2E,PLA2G2D,TPST1,C3AR1,CCL3,ADORA2A,AFAP1L2,CX3CL1,CCL5,CCL4,AHSG,IL17C,IFNA2,RAC1,BLNK,AGER,S100A12,HDAC5,APOL3,HDAC4,PARP4,GHSR,HDAC9,ABCF1,ELF3,TACR1,CRP,PRDX5,NFKB1,CD97,CFHR1,FOS,NOD1,CXCR4,AOAH,CCL3L3,IL1RAP,MGLL,LBP,XCR1,NFX1,IRAK2,KNG1,APCS,IL18RAP,LYZ,CHST2,NLRP3,SIGIRR,ALOX15,KLRG1,PLA2G7,GHRL,PTAFR,AOC3,CXCL1,MBL2,NMI,CCR1,C5,CXCL2,CXCL9,CXCL6,GPR68,CCL26,CCL24,TNFRSF1A,CCL22,HRH1,CCL23,CCL20,MEFV,IL10RB,CCL21,ALOX5AP,KRT1,NFATC4,C2,PTX3,NFATC3,SCG2,NOX4,LY75,IL5,CEBPB,IL8,NFRKB,IL9,ANXA1,CYP4F11,CCL11,ORM1,CYBB,CCL13,AOX1,SELE,ORM2 +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html MDFI,NFKBIL2,CRYAA,CRYAB,NFKBIE,NF1,FAF1,NLRP3,MXI1,NFKBIL1,BARD1 +PWCOMMONS PROTEIN EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_EXPORT_FROM_NUCLEUS.html NUP214,XPO6,GSK3B,DUSP16,EIF5A,NUPL2,CALR,XPO7,UHMK1,BARD1 +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html COG3,GTPBP4,STX12,APOA1,A1CF,COG7,HPS4,TBRG1,PEX6,MDM4,PPARGC1A +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html PTPRC,MBL2,BCAR1,SLA2,MALT1,NFAM1,TRAT1,THY1,CFHR1,UBE2N,LAT2,FYN,IKBKG,KRT1,C2,CD79A,TRAF6 +PWCOMMONS RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STRESS.html XRCC4,XRCC3,XRCC2,AIF1,XRCC6,MAP3K4,LTB4R,CTGF,SERPINE1,CCNA2,MAP2K7,MAP2K6,L3MBTL4,TNIK,CGRRF1,LIG1,VPS45,F8,LIG3,F9,LIG4,F7,RAD1,EIF2AK1,HNF4A,F5,F2,TFPI,MAPK9,MAPK8,EIF2AK3,DCBLD2,GGCX,RAD23B,RAD23A,PABPC4,DUSP10,HSPA1B,XAB2,SERPINH1,HSPA1L,IL17C,IFNA2,RAC1,NTHL1,RECQL4,RECQL5,TAOK2,ATR,ATM,APOL3,PARP3,PARP4,PARP1,FGF7,NUAK2,ELF3,PDIA2,BNIP3,PDIA5,CFHR1,MSRA,NOD1,IL1RAP,TRPV4,ERRFI1,APCS,AIFM1,TP53,GTF2H4,LYZ,WAS,NDUFA12,GTF2H1,ALOX15,KLRG1,GNAQ,EREG,SPRR3,RUVBL2,NHEJ1,WRNIP1,C5,POLA1,PML,GPR68,CCL26,PR47,CCL24,CCL22,CCL23,CCL20,CCL21,PTK2B,ALOX5AP,PCSK9,C2,PTX3,FEN1,IL5,UPF1,IL8,FADS1,IL9,DGKK,TNP1,TMPRSS6,SELS,PLG,TP73,NAE1,ATRX,RPS6KA5,CCL11,MNAT1,ORM1,CCL13,DUSP1,CSNK1D,CSNK1E,GSK3B,AOX1,NARFL,HSPA4L,OGG1,SELE,ORM2,MMS19,MICB,MICA,ZAK,ATOX1,GNA12,IL13,CXCL11,TGFB1,TGFB2,CXCL10,IGHMBP2,APOA4,CDKN2D,APOA5,PMS2,ZNF443,CYGB,DNAJC4,IL1A,PMS1,CIB1,NUDT1,STK25,RELA,CDO1,CSDA,DDIT3,IL20,TNFAIP6,HIF1A,THBD,EP300,HSPB7,HSPB1,NFE2L1,HSPB3,SRXN1,HMGB1,C3AR1,ACHE,CCL3,HMGB2,ADORA2A,MAPKAPK3,UBE2V1,STIP1,UBE2V2,CX3CL1,CCL5,SESN1,CCL4,MDK,ANGPTL7,MIA3,POLE2,DNAJA1,HSPE1,DYRK2,ASF1A,HERPUD1,EPAS1,ATF6,HDAC5,HDAC4,ATF4,LYVE1,VCP,POLD1,TDG,DNAJB2,DNAJB1,HDAC9,DNAJB4,ABL1,DNAJB5,NBN,CLDN3,PINK1,PRDX5,PRDX2,ALAS2,NDUFS8,LBP,NDUFS2,NFX1,KNG1,SGK1,SGK2,IL18RAP,SGK3,DDB1,TOPORS,IFI16,NEK11,RECQL,PRDX6,ERN1,DDB2,TXNRD2,PTAFR,GAP43,EGLN2,ASNS,PF4,EGLN1,BRSK1,SMUG1,HRH1,HSPA2,TOR1A,TOR1B,HSPA6,NFATC4,NFATC3,EXO1,NOX4,KLK8,CEBPB,CEBPG,NFRKB,NF1,ANXA1,C4BPB,HSP90B1,CYBB,AKR1B1,ALKBH1,RAD51C,ADORA3,AQP9,S100A8,VAPB,S100A7,S100A9,PDLIM1,ADORA1,PLOD1,HTRA2,PLOD2,CHRNA4,CHRNA7,EIF2B2,EIF2B3,EIF2B4,EIF2B5,POLL,F12,F11R,F10,POLI,POLH,POLG,POLE,RINT1,RAD9A,CD40,PNKP,RFC3,CCR7,CD36,CCR5,CCR4,CD40LG,UBR5,CCR3,CX3CR1,CCR2,VEGFA,AMFR,PLA2G2E,PLA2G2D,TPST1,MRE11A,HUS1,HOXB13,AFAP1L2,CHEK1,CHEK2,AHSG,F13B,C16ORF5,POLQ,BLNK,PLAT,SMAD7,CREBBP,TREX2,SMAD4,CIDEB,CIDEA,SMAD3,OXSR1,AGER,RAD54L,S100A12,RNF7,CD59,RAD54B,CHRNB2,GHSR,AHSA1,PRKRIR,ABCF1,ACVRL1,UVRAG,MLH1,NFKB1,PMS2L1,TRIAP1,HSPH1,CGREF1,CCL3L3,GPX3,FANCG,SEPP1,XCR1,FANCA,CCNO,DHCR24,FANCC,APTX,RAD52,GMPR,RAD50,SCAP,RBBP8,RAD51,SIGIRR,ADM,GRM7,GADD45G,PLA2G7,GADD45B,GADD45A,SERP1,CXCL1,NMI,CCR1,UNG,CXCL2,CXCL9,SFN,CXCL6,SUMO1,MEFV,SQSTM1,IL10RB,BCL3,BCL6,CD24,LY75,CYP4F11,MAPK11,SOD1,EIF2B1,SOD2,MAPK12,MAPK13,EEF1E1,MAPK14,F2RL2,F2RL3,F13A1,ARNT2,MBIP,MMRN1,GP9,SETX,MUTYH,RAD21,MYO6,AHR,FOXN3,MAP4K3,MAP4K4,MAP4K5,RPAIN,CARTPT,RIPK2,RAD17,DERL2,GCLC,DERL1,BLM,MAP4K2,MAP4K1,ITGB3,LMAN1,DERL3,GCLM,RAD51L1,ALB,NPM1,ENTPD1,GML,ATRIP,SREBF1,TP53I11,BRCA2,ITGA2,BRCA1,CIRBP,SCARA3,SMC1A,TACR1,CRP,CD97,GSS,AKT1,FOS,MCM7,ANG,CXCR4,PCBP4,AOAH,MGLL,MT3,IRAK2,UBE2A,REV1,BRCC3,CHST2,MINK1,PRKCG,NLRP3,UBE2B,XRCC6BP1,PROC,UBE2N,SPDYA,XPC,BTG2,GHRL,PRNP,PROS1,PPP1R15A,AOC3,NDUFB4,MBL2,RTN4RL1,CRNN,GLRX2,RPA1,TNFRSF1A,ERCC8,SNN,ERCC5,ERCC6,KRT1,GP1BA,RTN4RL2,ERCC3,ERCC4,APEX1,ERCC1,APC,ERCC2,SCG2,MSH6,MSH3,MSH2,MSH5,NDUFA6,MPG,VWF,ATXN3,BRE,MPO,F2R +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF2C1,CRNKL1,EIF5,DICER1,SNRPD1,EIF5A,SNRPD2,EIF2A,SFRS6,SFRS5,DKC1,RPS3A,SFRS8,EIF1AX,SFRS9,EIF1,DDX20,EIF2B2,EIF2B3,EIF2B4,EIF2B5,SRPK2,PRPF31,EXOSC7,EXOSC2,SF1,EIF2S3,EXOSC3,EIF1B,RRP9,SFRS1,BOLL,EIF4G2,EIF4G3,RPS14,EIF4A2,SLU7,HSPB1,SIP1,EIF2AK3,EIF2AK4,SDAD1,MTIF2,MTIF3,PAIP2B,EIF3C,EIF3D,EIF3A,EIF3B,EIF3G,EIF3H,EIF3E,NPM1,EIF3F,USP39,EIF3I,DAZL,GEMIN8,EIF3J,SFRS2IP,GEMIN6,GEMIN7,GEMIN4,GEMIN5,DAZ1,PAIP2,PAIP1,SF3A2,SF3A1,EIF2B1,FBL,SF3A3,EIF4B,DIS3,ATXN2,NOLC1,EIF4H,POP4,TXNL4A +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CASR,GNA15,ATOX1,F2RL1,CD52,CXCL12,AGTR1,APP,GALR2,RGN,CHRNA7,FTL,C5AR1,THY1,CCR9,CCR8,PLCE1,CCR7,CCR6,CCR5,CCR4,ATP2C1,CCR3,CCR2,STC1,SLC40A1,GLP1R,CCL1,SRI,C3AR1,CLCN3,DRD1,CCL3,CCL2,CYSLTR1,HFE,PPT1,BDKRB1,BDKRB2,CALR,CCL5,CCL7,FTH1,P2RY4,SLC30A5,ATP7A,CD55,GCM2,SLC4A11,CXCL13,AVPR1B,AVPR1A,XCL1,CACNA1C,CACNA1A,ATP7B,MCHR1,CCKAR,CXCR3,EDNRA,FXN,SAA1,CXCR4,NMUR2,TRPV4,XCR1,MYC,KNG1,CLN3,CCKBR,PROK2,LCK,GHRL,CLN5,CLN6,CLDN16,TFR2,CCR1,TAC1,CALCA,CALCB,CCL23,BCL2,CD24,PTPRC,OPRL1,ATP1A3,CCL19,MTL5,ATP1A4,ATP1A1,ATP1A2,SOD1,CCL15,TMPRSS3,CCL11,CCL13,CCL14,HPX,MT2A,CP +PWCOMMONS REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SLC2A4RG,AURKAIP1,LTBP4,XRCC6,HOXD13,RORB,MED23,REST,MED21,ZNF254,MED20,CITED1,CITED2,EPC1,MED26,FOXF1,MED27,FOXF2,PQBP1,VPS4B,ZNF396,TLK1,PATZ1,TLK2,IKBKAP,ZNF45,PCBD2,RREB1,RXRA,ZHX1,ZHX2,MED12,MECP2,ZHX3,MED14,HNF4G,MED13,NME2,NPC2,EIF2AK1,ZNF238,HNF4A,BACE2,MED17,SMARCAL1,TGIF1,MYBBP1A,EIF2AK3,EIF2AK4,TRAPPC2,ZNHIT3,ZNF76,CRTC1,ARF6,MTIF2,MTIF3,VPS72,FOXH1,CDC42EP2,HEXIM2,HEXIM1,IL17F,ZNF74,PABPC1,TCF4,VEZF1,TCF3,ARHGEF10L,CDC42EP5,DMBX1,UTF1,TCF7,KLF12,PAIP2,KLF10,PHB,TGFBR1,MAP2K3,PAIP1,KLF11,ESRRG,MSTN,TFCP2,ATR,MZF1,TNK2,HNF1B,LIMA1,ELF1,HNF1A,ELF2,HTATIP2,ELF4,EZH2,SPI1,TP63,EIF2A,LATS1,DAXX,ZNF345,YBX2,NOD2,ZNF350,ZNF148,MAPT,CREG1,ZNF146,BRD7,SPIB,HSF4,MYC,BRD8,TAF1L,ZNF281,ATF7IP,CDC6,ARHGEF2,ZNF282,LYN,PTF1A,TP53,NDUFA13,TLE1,EIF1B,FOSB,ZNF143,FLNA,SRPK1,JMY,MXD4,GTF2H1,ARHGEF11,MYCN,CIAO1,INHBB,NCK2,CARD11,EIF4A3,INHBA,CCND1,CARD14,MAST2,CCND3,EREG,CCND2,PFDN5,NCK1,EIF4A2,ZNF136,MTRF1,C19ORF2,IL12A,RUVBL1,TMSB4Y,IL12B,NSD1,CLOCK,CLN6,ZMYND11,ZNF274,WRNIP1,CREM,PML,NUFIP1,ZNF367,ZNF35,IL7R,ZNF177,NECAB3,ZNF174,PER1,LIMD1,DAZL,SUPT4H1,RASA1,FOXD3,ZNF263,IL4,MYF6,IL3,IL6,DAZ1,IL5,UPF1,LMX1B,MYF5,TRIM28,IL9,ZNF24,TRIM27,TNP1,ELAVL2,PHF12,ETF1,TRIM22,TP73,RPS6KA5,ATRX,MNAT1,ZNF157,RPS6KA4,GLA,RBAK,NARFL,NLRP12,FOXE1,TCEB3,TCEB1,PHF5A,BARD1,NR5A1,MMS19,NCBP1,STK36,EIF5,TNFSF13,RBM9,CXCL12,TCEAL1,IL10,TGFB1,APOA2,NLRC3,CDKN2A,SMARCD2,CDKN2B,SMARCD3,CDKN2C,MDFIC,DDX25,CDKN2D,ATG7,SMARCD1,TDGF1,EIF1,SCRT1,DNAJC1,SAMD4A,EBI3,EGFR,BCL10,ZNF593,IL29,IL27,RELA,HDAC10,ARID1A,CSDA,DDIT3,JUNB,IL20,PA2G4,HIF1A,EP300,SMARCE1,TCFL5,TIMELESS,RNF139,SMARCA5,MNX1,TFAP2B,HSPB1,EDF1,TFAP2A,TFAP2C,EDA,SMARCA1,SMARCA2,HMGB1,EID1,EID2,HMGB2,CNBP,LITAF,UBE2V1,ABCA2,UBE2V2,ABCA1,PYDC1,NR2C2,TIMP1,CXXC1,VDR,MEIS2,RPL6,SMARCB1,JUND,SNF8,TEAD4,DYRK2,ANGPTL3,EGF,HELLS,ZNF423,TFDP1,SMG6,EPAS1,CREBZF,SMG5,TAF8,SMG7,NEUROG1,BRIP1,FURIN,UIMC1,ATF6,HDAC5,ATF5,HDAC4,CDKN1A,ATF4,NRF1,HDAC2,CDKN1B,TSC1,DYRK1B,SMARCC1,PRKAR1A,SMARCC2,ATF7,HIVEP3,IKBKB,ABL1,PDZD3,HDAC8,E2F1,NBN,FOSL2,RSF1,ARID4A,E2F6,DEDD,ZNF202,DEK,CTCF,PRDX3,PAWR,TMF1,NDUFS4,CLCF1,PAX8,LRRFIP1,NRG1,FOSL1,NFX1,ARID5B,SLA2,ARID5A,ESR2,MID1IP1,RB1,CDK7,HMGA2,HMGA1,CDK2,PRPF6,TARBP1,TARBP2,NCOA6,ERN2,ZFPM2,MAPRE1,UBB,JMJD1C,CARM1,ACVR1,BCLAF1,NFYC,NFYB,EGLN1,NFYA,STUB1,HIC1,PAIP2B,TFAM,ORC2L,TSC22D3,RGMB,TSPYL2,ECD,CHD2,CHD1,NFATC2,NFATC3,CHD4,TERF2,CHD3,NFATC1,NF2,VHL,CEBPG,CREB5,ID2,GCK,DBP,ID1,ID4,ID3,EIF2C1,FST,HIRA,SHH,SIN3A,WWP1,TRAK1,HRSP12,ABRA,RARB,IFNK,EIF2B2,SUPT5H,TWIST2,TWIST1,EIF2B5,PITX2,GTPBP4,POLH,YY1,RAD9A,TAF6L,PPARGC1A,BOLL,PPARGC1B,UHRF1,MTF1,PIAS4,TGFBRAP1,PRDM1,SUDS3,ENPP7,MRE11A,IGF2BP2,AFAP1L2,CALR,PLAGL1,NR1H2,DRAP1,HTATSF1,CDA,MAML3,BCOR,NKX2-5,TCF25,BMP4,MDFI,NKRF,BMP2,IKZF3,KLF7,KLF9,SUB1,MAML1,CREBBP,MAML2,S100A11,SMAD4,RYBP,SMAD3,SMAD2,UBP1,NOTCH2,NR1I2,NUP62,RNF4,NOTCH4,JAZF1,TCF19,BMP7,GHSR,RBPJ,ENG,ZFHX3,TCF12,TCF15,KLF4,BMP6,ZBTB32,PPARA,PPARD,ACVRL1,TBX22,TBX21,PPARG,NFKB2,TERF2IP,ZEB1,HSBP1,GLI2,CDT1,CAMKK2,KCNIP3,GLI1,ZBTB38,BLZF1,GFI1B,OXER1,NR2F2,ZNF354A,TBX10,PRG3,CCNH,NFAM1,RAD50,RBBP8,SIGIRR,RAD51,SCAP,CTNNBIP1,MED6,MED7,CHMP1A,PSEN1,GRM8,RIPPLY1,SRCAP,MAP3K13,TBX19,MED1,POLR2L,POLR2K,EHF,ZBTB16,HPRT1,SUFU,AZU1,SUMO1,MRPL12,SET,SQSTM1,NR1D2,LANCL2,SEPSECS,GATAD2A,PEX14,BCL3,BCL6,CD24,MLLT6,CD28,POLR3G,TBX3,TBX2,TBX5,GMNN,HCLS1,ILF3,POLR3C,SOD1,SNAI2,STAT3,STAT2,SOD2,GAPDHS,PREB,YWHAH,ILF2,UBTF,YAF2,CAPG,NEUROD2,PHF21A,PBX1,PPP2R4,PBX3,RBM14,APBB2,APBB1,PBX4,MYOD1,ARNT2,CRABP2,TLR1,TLR3,FOXO1,EIF5A,TLR4,FOXO3,TLR6,FOXO4,TLR7,TLR8,IL31RA,TLR9,HOXC6,GATA1,GATA6,HOXC5,GATA4,MYST2,MYST1,SPN,MYST4,GABPB2,MYST3,MYO6,SOCS1,FOXN1,ZNF189,ARNTL,NR0B2,ELL3,NR0B1,TRERF1,TRAT1,FOXN3,AHR,IGSF1,TIAL1,ERC1,RAD17,GCLC,TFAP4,SNX6,ITLN1,TIPIN,KATNB1,ELK1,ITGB2,ELK3,EIF3C,EIF3D,EIF3A,EIF3G,EIF3H,EIF3E,NPM1,EIF3F,SFTPD,CLASP1,EIF3I,EIF3J,RUNX1,UBE2D1,RUNX2,RNF14,SREBF1,NFE2,PIF1,CD276,SAP18,SNW1,GSC2,FOXP3,BRCA1,SREBF2,EIF4B,PPIE,GCM1,AKTIP,EIF4H,DNMT1,GLMN,RFX3,MAFA,IL22RA2,HSP90AB1,METAP1,SOX21,POU6F2,NR6A1,FOXK2,BUD31,PDCD4,MEN1,ACVR1B,FOS,MCM7,TPP1,GSN,POU5F1,ANG,PCGF6,ATP8B1,POU4F2,SOX18,POU4F1,MKL2,LTB,KHDRBS1,EGR1,ELP4,ELP3,ELP2,NANOG,HSP90AA1,CCDC88A,SP100,PFKL,CCDC88C,LDB1,SOX12,PRKCG,INHA,PFKM,NLRP3,UBN1,NRIP1,UBE2N,EIF4G2,PRKCQ,ACVR2B,EIF4G3,CD80,BPTF,ZMIZ2,TPPP,CD81,GHRL,MDM2,MDM4,CUX1,COMMD7,KPNA2,KPNA1,ZFP161,SMARCAD1,ING4,SUPT3H,GLIS3,ING2,TNF,GLIS2,GLIS1,TNFRSF8,HCFC1,HCFC2,TCF7L2,CALCA,TNFRSF1A,NPAS2,ERCC6,KRT7,POU2F3,POU2F1,PYCARD,GFI1,ERCC3,ERCC4,CAMK2A,ERCC1,ENO1,ERCC2,APC,ERF,DEFB103A,SOX30,SIRT4,EDA2R,CENPF,SIRT5,CBY1,SIRT1,SIRT2,ATXN1,SP1,SP2,SP3,IRF7,DR1,SP4,THRAP3,IRF8,GRLF1,IRF2,IRF4,TSSK4,CRK,IGFBP3 +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html MTERF,UPF1,TNP1,ETF1,HMGA1,TTF2,IRAK3,SET,MAZ,SMARCE1,MTRF1,HRSP12,SUPT16H,NRG1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html BID,TSPO,MTX2,TIMM17A,TIMM17B,BNIP3,MPV17,TIMM50,SFN,PMAIP1,MIPEP,BCL2L1,STARD3,NDUFS7,FIS1,TFAM,BAK1,GPX1,NDUFS5,TYMP,NDUFS4,MRPL12,CDKN2A,BCL2,NDUFS8,TFB2M,SLC25A1,COX18,TOMM34,MTERF,HSP90AA1,MSTO1,DNM1L,OPA1,SLC25A4,TAZ,TP53,TIMM23,TIMM44,MFN2,TRNT1,POLRMT,BBC3,BAX,C3ORF31,TOMM22,SLC25A15,IFI6 +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html EGR3,ARNTL,TIMELESS,PTGDS,HTR7,HEBP1,PER2,AANAT,CARTPT,PER1,CRY1,CLOCK,OPN4,MTNR1A +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html NCBP2,NCBP1,RNMT,PRPF4B,LSM6,RBM3,SNRPD3,SNRPD1,RBM5,RP9,RBM6,INTS1,SNRPD2,SYNCRIP,INTS2,ZNF638,INTS3,SMNDC1,SETX,SFRS6,INTS9,NONO,SFRS7,INTS8,DDX17,SFRS4,SFRS5,DHX38,DDX23,INTS5,INTS4,INTS7,SFRS8,SFRS9,INTS6,LSM5,U2AF1,RBMS2,SRRM1,LSM4,LSM3,DDX20,LSM1,RBMS1,SNRPA1,SNRPN,EFTUD2,PTBP1,AARS,RRP9,SFRS1,PPARGC1A,HNRNPR,BICD1,SFRS2,DDX39,RBPMS,RPS14,SNRPB,SLU7,RBMY2BP,SNRPC,SNRPF,SIP1,BAT1,SNRPG,CPSF3L,FARS2,PABPC4,SNRPB2,IGF2BP3,DUSP11,PPAN,AGGF1,METTL1,CDC40,HNRNPC,PABPC1,SFRS11,NOVA1,SPOP,DHX8,CSTF3,CSTF2,INTS12,SNW1,SSB,RNPS1,INTS10,HNRNPA0,TRNT1,RBMY1A1,PPIG,NOLC1,POP4,DDX54,CSTF1,CRNKL1,CWC15,ZNF346,RNGTT,DGCR8,DKC1,DBR1,KHDRBS1,PRPF31,SRPK2,NOL3,EXOSC7,SARS,SF1,EXOSC2,EXOSC3,PRPF3,SRPK1,HNRPDL,KHSRP,CPSF6,CPSF3,CPSF1,TRA2A,NUFIP1,IVNS1ABP,KIN,SF3B4,SF3B3,SF3B2,ADAT1,PRPF8,NUDT21,USP39,DHX15,THG1L,DHX16,GEMIN8,SFRS2IP,GEMIN6,GEMIN7,NSUN2,GEMIN4,GEMIN5,BCAS2,UPF1,GRSF1,ELAVL4,SF3A2,PRPF18,SF3A1,FBL,SLBP,SF3A3,DIS3,SFPQ,ZRANB2,PHF5A,TXNL4A +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html IL4,PTPRC,IL7,CEBPG,SLA2,TNFSF13,NFAM1,INHA,TPD52,TGFB1,HDAC5,HDAC4,INHBA,LAT2,CD40LG,LAX1,CD79A,HDAC9,NHEJ1 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html ACHE,PCDHB14,CACNB2,PCDHB13,PCDHB11,PCDHB10,SPINK5,NRCAM,PCDHB16,ACAN,POU4F1,AGRN,CHRNA1,B4GALT7,PCDHB9,COL4A4,KLK8,TNXB,PCDHB5,PCDHB6,PCDHB3,PCDHB4,NF1,NLGN1,NRD1,PCDHB2,COL5A2,MYH11,GHRL,LAMC1,UBB,MUC5AC +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html CALCA,BCL10,APOA2,NOD1,PRG3,IL17F,BCL3,TLR4,AFAP1L2,TLR7,TLR8 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html FOXL2,DFFA,AIFM1,DFFB,CYCS,CECR2,CIDEA,BNIP3,TPD52L1,UBE2V2,PPT1,SOD1,ISG20,UBE2N,ERCC5,CDKN2A,BAX,ERCC3,NTHL1,ERCC4,XRN2,ERCC1,ERCC2 +PWCOMMONS RESPONSE TO CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CHEMICAL_STIMULUS.html CYP3A4,SYT1,HRAS,CHIA,AQP9,S100A7,VAPB,PDLIM1,GOT2,CHRNA4,CHRNA7,OGT,EIF2B2,SUPT5H,EIF2B3,EIF2B4,SYK,EIF2B5,PLD1,C5AR1,STC2,PIK3CB,PLAUR,CCR9,PNKP,MAPK1,CCR8,SSTR2,KRT19,CCR7,CCR6,MTF1,CCR5,SSTR1,CCR4,CCR3,CX3CR1,CCR2,ABAT,STC1,AMFR,EIF2AK3,MPST,RTP3,KCNMB3,KCNMB4,RTP4,ENPP1,GNAI2,HSPA1B,SERPINH1,KCNMB2,HSPA1L,KAL1,CKLF,GYS2,MAP2K1,OXSR1,ABCG1,S100A12,ABCG2,RERG,TULP4,RNF7,NR1I2,CHRNB2,CLEC7A,GHSR,PLAU,TAS2R1,CCKAR,TAS2R5,TRPV1,PPARG,TAS1R3,KCNIP2,HVCN1,TAS1R2,KCNIP1,LATS1,LATS2,HSPH1,GPX1,NOD2,MSRA,SAA1,GPX3,SEMA3C,SEPP1,XCR1,FGF2,DHCR24,LYN,CMKLR1,APTX,SLIT2,NDUFA12,PROK2,CHMP1A,AS3MT,GIPR,FOXC2,SCN11A,STEAP2,CXCL1,CXCL5,CXCL2,C5,CXCL9,FPR1,DPYS,CXCL6,GCGR,CCL28,CCL27,CCL26,CCL24,CCL25,CCL22,CCL23,CCL20,CCL21,DGKD,BCL2,PCSK9,CCBP2,CD24,LECT2,IL4,NAT8,CES1,IL8,HCLS1,DGKK,CCL19,CRIPAK,CCL16,SOD1,CCL15,EIF2B1,SELS,MT1X,CCL18,SOD2,CCL17,RPS6KA5,CCL11,CDH13,CCL13,DUSP1,MAPK14,HSPA4L,CSAG2,ABCC1,RBM14,BCAR3,ABCC6,CASR,SLC22A18,CTPS,ATOX1,OBP2B,BPHL,PMAIP1,CXCL11,CXCL12,IL10,TGFB2,CXCL10,APOA4,TOP1,GSTM3,APOA2,CDKN2B,GATA3,CDKN2D,RALA,CYGB,DNAJC4,NQO1,SPN,BCL10,NUDT1,STK25,RELA,STIM1,AHR,TNNT2,HSPB7,HSPB1,DEFA1,HSPB3,SRXN1,MVP,ME1,CCL1,DERL2,CCL3,GCLC,CCL2,DERL1,CCL8,ITGB2,ABCA2,ENSA,CX3CL1,CCL5,GCLM,ABCA3,DERL3,CCL7,ANGPTL7,DOCK2,SFTPD,DNAJA1,SLC30A5,NDRG1,HSPE1,UGT2B28,RAB6C,DEFB1,HERPUD1,BRCA2,ABCB1,BRCA1,ABCB4,ATF6,SLC25A12,SLC25A13,TSC1,CXCL14,VCP,CXCL13,LTB4R2,DNAJB2,SCARA3,MAFA,DNAJB1,DNAJB4,XCL1,SST,PDCD6,PDZD3,PDCD7,DNAJB5,ATP7B,D2HGDH,DUOX2,DUOX1,PRDX5,PRDX2,CXCR3,GSS,CCRL2,NDUFS4,DGCR8,ANG,CXCR4,NDUFS8,FOSL1,NDUFS2,CCRL1,SGK2,RALBP1,ADIPOR2,ADIPOR1,TAS2R16,TAS2R14,PRDX6,NCOA6,LCK,UGT2B11,ERN1,GHRL,TXNRD2,UGT2B15,PRNP,PTAFR,CALCR,NDUFB4,PF4,GLRX2,UGT1A6,ERCC8,UGT1A9,ERCC6,HSPA2,TOR1A,TOR1B,HSPA6,TAS2R43,UGT2A1,NEDD4L,ERCC3,ERCC1,SCG2,ERCC2,RNASE2,NDUFA6,MTL5,GLYAT,GCK,BAX,UGT2B4,MPO,LIPE +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html TNF,PDIA3,NFKBIE,TNFSF14,CDH1,MXI1,GLI3,TGFB1,AKT1,CEP57,ZFYVE9,BCL3,BCL6,NCKIPSD,RANBP2,TPR,TNPO1,KPNB1,FYB,MDFI,MCM3AP,NF1,SMAD3,PPP1R10,NLRP3,FLNA,NFKBIL1,NFKBIL2,CBLB,PPIH,RPAIN,TRPS1,NUP205,F2,PTTG1IP,NLRP12,KPNA6,KPNA5,KPNA4,FAF1,KPNA3,TRIP6,KPNA2,KPNA1,RERE,F2R +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html SEPT5,KCNMB4,RAB3A,SYT1,SNCAIP,PRG3,BAIAP3,SLC6A4,NLGN1,SNAPIN,HPRT1,GDNF,RIMS1,GCH1,TGFB2,GRM4,SLC1A3,HRH3,COLQ,SYN3,CARTPT,SLC5A7,GCHFR,ALDH9A1 +PWCOMMONS REGULATION OF GENE EXPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION.html SLC2A4RG,XRCC6,HOXD13,RORB,MED23,REST,MED21,MED20,ZNF254,CITED1,CITED2,EPC1,DIRAS3,FOXF1,MED26,FOXF2,MED27,VPS4B,PQBP1,ZNF396,PATZ1,IKBKAP,ZNF45,PCBD2,RREB1,RXRA,ZHX1,MECP2,MED12,ZHX2,ZHX3,MED14,MED13,HNF4G,NME2,EIF2AK1,HNF4A,ZNF238,BACE2,MED17,SMARCAL1,TGIF1,MYBBP1A,EIF2AK3,EIF2AK4,ZNHIT3,TRAPPC2,CRTC1,ZNF76,BCL2L1,MTIF2,MTIF3,VPS72,FOXH1,HEXIM2,HEXIM1,IL17F,ZNF74,VEZF1,TCF4,TCF3,DNMT3B,ARHGEF10L,DMBX1,DNMT3A,UTF1,TCF7,KLF12,PAIP2,TGFBR1,MAP2K3,KLF10,PHB,KLF11,ESRRG,MSTN,TFCP2,MZF1,ELF1,HNF1B,HNF1A,ELF2,HTATIP2,ELF4,EZH2,SPI1,TP63,BNIP3,EIF2A,DAXX,ZNF345,YBX2,NOD2,ZNF350,ZNF148,CREG1,ZNF146,BRD7,SPIB,HSF4,MYC,TAF1L,BRD8,ATF7IP,ZNF281,ZNF282,PTF1A,TP53,NDUFA13,EIF1B,TLE1,ZNF143,FOSB,FLNA,MXD4,GTF2H1,MYCN,JMY,ARHGEF11,INHBB,CIAO1,CARD11,EIF4A3,INHBA,MAST2,EREG,PFDN5,EIF4A2,ZNF136,MTRF1,C19ORF2,RUVBL1,IL12B,NSD1,CLOCK,ZMYND11,ZNF274,CREM,PML,ZNF367,NUFIP1,ZNF35,ZNF177,NECAB3,ZNF174,PER1,DAZL,LIMD1,SUPT4H1,FOXD3,MYF6,IL4,ZNF263,IL3,DAZ1,IL6,UPF1,LMX1B,MYF5,IL9,TRIM28,ZNF24,TRIM27,TNP1,IGF2,ELAVL2,PHF12,ETF1,TRIM22,TP73,RPS6KA5,ATRX,ZNF157,CDH13,MNAT1,RPS6KA4,BNIP3L,RBAK,FOXE1,NLRP12,NARFL,TCEB3,TCEB1,PHF5A,NR5A1,MMS19,STK36,EIF5,RBM9,TCEAL1,TGFB1,IL10,APOA2,CDKN2A,NLRC3,SMARCD2,MDFIC,SMARCD3,DDX25,SMARCD1,EIF1,SCRT1,SAMD4A,EBI3,BCL10,ZNF593,IL29,RELA,IL27,HDAC10,ARID1A,CSDA,DDIT3,JUNB,PA2G4,EP300,HIF1A,TIMELESS,TCFL5,SMARCE1,MNX1,TFAP2B,SMARCA5,HSPB1,EDF1,TFAP2A,TFAP2C,SMARCA1,EDA,SMARCA2,EID1,HMGB1,HMGB2,EID2,CNBP,LITAF,UBE2V1,ABCA2,PYDC1,NR2C2,CXXC1,VDR,AKT1S1,MEIS2,RPL6,SMARCB1,JUND,TEAD4,SNF8,HELLS,ZNF423,TFDP1,EPAS1,CREBZF,TAF8,NEUROG1,BRIP1,FURIN,UIMC1,HDAC5,ATF6,ATF5,HDAC4,NRF1,ATF4,HDAC2,TSC1,SMARCC1,DYRK1B,ATF7,SMARCC2,PRKAR1A,HIVEP3,IKBKB,ABL1,HDAC8,E2F1,FOSL2,RSF1,ARID4A,E2F6,DEDD,DICER1,DEK,CTCF,ZNF202,PRDX3,PAWR,TMF1,PAX8,LRRFIP1,NRG1,FOSL1,NFX1,SLA2,ARID5B,ARID5A,CDK6,CDK7,RB1,ESR2,HMGA2,CDK4,HMGA1,PRPF6,TARBP1,TARBP2,NCOA6,ERN2,ZFPM2,UBB,JMJD1C,CARM1,ACVR1,BCLAF1,NFYC,NFYB,EGLN1,NFYA,HIC1,PAIP2B,TFAM,RGMB,ORC2L,TSC22D3,CHD2,CHD1,NFATC2,NFATC3,CHD4,CHD3,NFATC1,VHL,CEBPG,CREB5,ID2,DBP,ID1,BAX,H2AFY2,ID4,ID3,EIF2C1,FST,HIRA,SIN3A,WWP1,HRSP12,TRAK1,ABRA,H2AFY,IFNK,RARB,SUPT5H,EIF2B2,TWIST2,TWIST1,PITX2,EIF2B5,YY1,TAF6L,BOLL,PPARGC1B,UHRF1,MTF1,PIAS4,TGFBRAP1,PRDM1,SUDS3,IGF2BP2,AFAP1L2,CALR,PLAGL1,NR1H2,DRAP1,HTATSF1,MAML3,BCOR,NKX2-5,TCF25,MDFI,NKRF,BMP2,IKZF3,KLF7,KLF9,SUB1,MAML1,MAML2,CREBBP,SMAD4,RYBP,SMAD3,SMAD2,UBP1,NOTCH2,NR1I2,NUP62,RNF4,NOTCH4,JAZF1,TCF19,BMP7,GHSR,RBPJ,ZFHX3,ENG,TCF12,TCF15,KLF4,BMP6,ZBTB32,PPARD,ACVRL1,TBX22,TBX21,PPARG,DMAP1,NFKB2,ZEB1,HSBP1,GLI2,ZBTB38,CAMKK2,KCNIP3,GLI1,GPX1,BLZF1,GFI1B,NR2F2,ZNF354A,PRG3,TBX10,CCNH,NFAM1,SIGIRR,RBBP8,SCAP,CTNNBIP1,MED6,MED7,CHMP1A,RIPPLY1,MAP3K13,SRCAP,TBX19,MED1,POLR2L,POLR2K,EHF,ZBTB16,SUFU,AZU1,SUMO1,MRPL12,SQSTM1,NR1D2,LANCL2,SEPSECS,GATAD2A,PEX14,BCL3,BCL6,MLLT6,CD28,POLR3G,TBX3,TBX2,TBX5,HCLS1,ILF3,POLR3C,SNAI2,STAT3,SOD2,STAT2,PREB,YWHAH,UBTF,ILF2,YAF2,NEUROD2,PHF21A,PBX1,APBB2,RBM14,PBX3,APBB1,PBX4,MYOD1,ARNT2,TLR1,CRABP2,FOXO1,EIF5A,TLR3,TLR4,FOXO3,TLR6,FOXO4,TLR7,TLR8,TLR9,HOXC6,GATA1,GATA6,HOXC5,GATA4,MYST2,MYST1,GABPB2,SPN,MYST4,MYST3,MYO6,PICK1,FOXN1,HRK,ZNF189,NR0B2,ARNTL,NR0B1,ELL3,TRERF1,AHR,FOXN3,IGSF1,TIAL1,CARTPT,ERC1,RAG1AP1,GCLC,TFAP4,SNX6,ELK1,ELK3,EIF3C,EIF3D,EIF3A,EIF3G,EIF3H,EIF3E,EIF3F,NPM1,SFTPD,EIF3I,EIF3J,RUNX1,RUNX2,RNF14,SREBF1,NFE2,CD276,SAP18,SNW1,GSC2,FOXP3,BRCA1,SREBF2,EIF4B,PPIE,GCM1,EIF4H,GLMN,DNMT1,RFX3,MAFA,BMI1,METAP1,SOX21,POU6F2,FOXK2,NR6A1,PDCD4,BUD31,MEN1,FOS,ACVR1B,DGCR8,POU5F1,PCGF6,ATP8B1,POU4F2,SOX18,POU4F1,MKL2,LTB,ELP4,EGR1,KHDRBS1,ELP3,ELP2,NANOG,SP100,LDB1,SOX12,INHA,NLRP3,UBN1,NRIP1,UBE2N,EIF4G2,PRKCQ,ACVR2B,EIF4G3,BPTF,NRL,ZMIZ2,MDM2,GHRL,MDM4,COMMD7,CUX1,ZFP161,GLIS3,SUPT3H,ING4,ING2,TNF,GLIS2,GLIS1,HCFC1,TNFRSF8,HCFC2,TCF7L2,CALCA,TNFRSF1A,NPAS2,POU2F3,KRT7,POU2F1,PYCARD,GFI1,ERCC3,CAMK2A,ERCC2,ENO1,ERF,IL2RB,SOX30,SIRT4,EDA2R,CENPF,SIRT5,CBY1,SIRT1,SIRT2,ATXN1,SP1,SP2,DR1,IRF7,SP3,IRF8,SP4,THRAP3,GRLF1,IRF2,IRF4,TSSK4,CRK +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html PPARG,SPI1,ZNF675,FOXO3,FOXO4,SPINK5,SART1,SHH,TGFB2,ACVR1B,ADIG,ACIN1,BOC,USH2A,TWIST2,NANOG,IL27,LDB1,CDK6,INHA,SOCS5,GPR98,IL20,ACVR2A,INHBA,NME2,TCFL5,EREG,BTG1,SCIN,CARTPT,CNTN4,IQCB1,MAP4K1,PF4,ZBTB16,CALCA,NPHP3,ZAP70,VWC2,RUNX1,IL4,BMP4,TBX3,DTX1,IL7,MAFB,TAF8,TBX5,NF1,NLGN1,NOTCH2,YWHAG,NOTCH1,YWHAH,ETS1,NOTCH4,BMPR1B,IGFBP3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OCLM,RP1,WFS1,PITPNA,RP2,RPE65,RCVRN,CNGB1,NR2E3,CNGB3,KIFC3,CRYGA,ATP2B2,CRYGD,TIMM9,TGFBI,RGR,CDH23,COCH,OPA3,CLRN1,OPA1,C5AR1,MYO6,CRYAA,MYO3A,KRT12,SIX3,UBR3,VAX2,CNGA3,NTSR2,OR1D2,SIX6,OR1D5,TIMM8B,CNGA1,SAG,PITPNM1,TACSTD2,IQCB1,RTP3,RTP4,CYP1B1,DIAPH1,ADORA2A,RBP3,OPN1SW,ATP6V1B1,GPR143,OTOR,ABCA4,MYO9A,RABGGTB,RABGGTA,PDE6A,PDE6B,NPHP3,PDE6C,PDE6D,PRR4,MYO15A,IMPG1,IMPG2,RLBP1,GNAT1,TECTA,COL18A1,UNC119,AIPL1,GUCY2F,MYO1A,TRPC3,FSCN2,EFEMP1,OMP,PCDH15,PDE6H,CRYZ,PDE6G,GUCY2D,SFRP5,TULP2,TULP1,CACNA1F,WDR1,CRYM,RHO,GRK1,OPRM1,GJA8,CYB5R4,OR52A1,TAS2R4,TAS2R5,TRPV2,USH1G,RRH,MYO7A,POU6F2,TAS2R3,PAX6,TAS1R3,PAX3,PAX2,TAS1R1,TAS1R2,CRX,GJA3,CRYBB1,DFNB31,RDH8,TYR,KCNQ4,POU4F3,COL11A1,KCNQ1,CRYBB3,USH2A,DNAJC19,CRYBB2,SCN10A,RS1,RPGR,RAX,CCKBR,ZNF354A,CDS1,GPR98,SLIT2,RDH5,EML2,EYA3,SLC26A4,EYA4,PROK2,TAS2R16,ALDH7A1,DHRS3,EYA1,TAS2R14,SLC26A5,GRM8,NRL,OTOF,USH1C,GNAS,AOC2,CRYBA1,OAT,CRYBA4,ROM1,ABLIM1,SORD,OPN1LW,LUM,NDP,OPRK1,NDUFB9,TIMM10,CABP4,TIMM13,BEST1,ARR3,POU3F4,KCNE1,CHM,TAS2R43,GUCA1A,COL4A3,DFNA5,GUCA1C,OPRL1,OPN1MW,GJB6,RGS16,SOD1,VSX1,PRPH2,GJB2,RDH12,RDH10,ACCN3,PNOC,CHML,ATXN7,PDC,TBL1X,ATP6V0A4,OPN4 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html MDFI,RSF1,CEBPG,EGLN1,NLRP3,FOXP3,PYDC1,FLNA,SIGIRR,SUMO1,CDKN2A,ID2,ID1,NARFL,PEX14,ID3,COMMD7 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CADM1,FST,ADORA1,SART1,BTK,CUL3,CUL2,BAK1,CUL5,MAP3K5,APOE,CHRNA7,FAS,CUL1,CRTAM,BCL2L11,CD38,MAPK1,NME2,NME3,SSTR3,SERPINF1,IFNB1,ALOX15B,NPTN,UNC13B,LALBA,SIVA1,CDK5R1,STK17B,CD70,CHEK2,STK17A,PLAGL1,IFNA2,CDC42EP2,CDC42EP1,AGGF1,ZAP70,DIABLO,C16ORF5,CDC42EP4,CDC42EP5,BMP4,TP53BP2,SPHK1,CIDEB,SMAD3,CIDEA,TPD52L1,CIDEC,NOTCH2,EI24,RNF7,ETS1,HTATIP2,FASTK,PPARG,BNIP3,TP63,PTEN,DAXX,MAPT,TOP2A,DEDD2,AIFM3,AIFM2,AIFM1,TP53,LGALS12,NDUFA13,SLIT2,JMY,AMIGO1,INHBA,BNIP1,IL12A,MAP3K10,IL12B,BID,PML,SFN,PPP2CA,PCSK9,BCL3,VWC2,BCL6,CD27,IL7,TBX5,TP73,PLG,EEF1E1,BNIP3L,AMOT,BIK,BARD1,ZAK,TLR2,EIF5A,TNFSF14,FOXO3,TNFSF12,PMAIP1,CRADD,TGFB1,TGFB2,SMNDC1,NLRC4,CDKN2A,CASP8AP2,CDKN2C,ROBO1,ADIG,TIA1,ZNF443,ROBO2,ACIN1,DAP,MX1,NUDT2,HRK,FADD,SOCS5,STK4,STK3,IL20,TIAL1,RIPK3,ADAMTSL4,RRAGA,PRUNE2,MTCH1,DYRK2,ANGPTL3,RUNX1,RUNX3,ANGPTL4,TRAF3,CFLAR,HTT,BRCA1,TRADD,CDKN1A,TNFSF10,CDKN1B,BBC3,IKBKG,PDCD5,ABL1,SST,PDCD6,PDCD7,DAP3,DEDD,HPS4,FASLG,CASP6,CDC42,ACVR1B,CASP3,CASP4,BOK,RPS3A,PCBP4,RHOB,MKL2,NDUFS3,BOC,LTA,PRKCA,PPP2R1A,INHA,IFI16,PRKCE,DAPK2,CDK5,DAPK3,NCR1,DAPK1,ACVR2A,TNFRSF9,BTG1,SCIN,LCK,ERN1,GHRL,ERN2,DCC,DPF2,BCLAF1,TNFRSF25,TNFRSF8,TRAIP,DPF1,CALCA,UTP11L,PTH,CD2,PYCARD,ERCC3,ERCC2,COL4A3,PTPRC,KL,CEBPG,NF1,SAP30BP,TNFSF8,CASP10,CUL4A,BAX,PPP1R13B,BMPR1B,IGFBP3 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF2C1,CRNKL1,DICER1,EIF5,SNRPD1,EIF5A,SNRPD2,EIF2A,SFRS6,SFRS5,RPS3A,SFRS8,EIF1AX,SFRS9,EIF1,DDX20,EIF2B2,EIF2B3,EIF2B4,EIF2B5,SRPK2,PRPF31,SF1,EIF2S3,EIF1B,SFRS1,BOLL,EIF4G2,EIF4G3,EIF4A2,RPS14,HSPB1,SLU7,SIP1,EIF2AK3,EIF2AK4,MTIF2,MTIF3,PAIP2B,EIF3C,EIF3D,EIF3A,EIF3B,EIF3G,EIF3H,EIF3E,USP39,NPM1,EIF3F,DAZL,EIF3I,SFRS2IP,EIF3J,DAZ1,PAIP2,PAIP1,SF3A2,EIF2B1,SF3A1,SF3A3,EIF4B,ATXN2,EIF4H,TXNL4A +PWCOMMONS POST TRANSLATIONAL PROTEIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/POST_TRANSLATIONAL_PROTEIN_MODIFICATION.html PPP2R5C,MYLIP,BTK,MAP3K6,ISG15,MAP3K9,ILK,MAP3K8,TLK1,TLK2,MAP2K6,PTPRJ,IKBKAP,PTPRM,ROCK1,BRAF,ROCK2,KIAA1804,PTPRH,PTPRR,PTPRT,PTPRO,MARK4,MARK1,MARK2,PPP1CA,EIF2AK1,MAPK6,MAPK4,F2,MAPK3,MAPK8,EIF2AK3,EIF2AK4,PPP2R3B,PPP2R3A,ERBB3,ERBB2,DUSP10,DUSP13,TNKS,TGFBR1,PHB,EPM2A,TAOK3,MGC42105,DUSP22,PCNP,CDC42BPG,CDC42BPA,PARP3,TNK1,TNK2,SMURF1,PARP1,PARP2,CDC42BPB,NUAK2,TSG101,CUZD1,PMVK,LATS1,LATS2,SRPK2,LYN,SRPK1,CARD14,CCND1,MAST1,MAST2,PPEF2,CCND3,CCND2,PPEF1,IL12A,CAND1,TXK,NSD1,NNAT,MKNK2,GPAA1,ABI3,ABI2,MKNK1,ABI1,MTMR3,SNRK,PTK2B,PPP2CA,PPP2CB,PCSK9,USP33,MTMR7,PCSK5,IL3,IL5,TRIM23,NAE1,CCL11,DUSP5,RPS6KA5,DUSP4,DUSP3,DUSP2,RPS6KA4,CSNK1D,CSNK1E,GSK3B,WHSC1L1,NLRP12,DUSP9,DUSP8,DUSP6,PRPF4B,STK38,ZAK,STK36,MIPEP,TGFB1,CSNK2A1,ST3GAL6,TDGF1,INSR,MATK,EGFR,BCL10,TWF1,RET,IL29,MYO3A,PTPRN2,HDAC10,HDAC11,IL20,RNF139,TESK2,STK16,CCL2,FGR,STK11,STK10,UBE2V1,UBE2V2,MAPKAPK2,ECE2,FBXW7,PTK6,DYRK3,DYRK2,TRAF7,TRAF6,STK19,TEC,TAF1,EHMT1,MOBKL1A,SMG1,ICMT,ATG3,FURIN,GLYCTK,NMT2,IKBKE,NMT1,PLK4,PLK3,TSC1,DYRK1B,DYRK1A,MERTK,ABL1,ABL2,HDAC6,UCHL1,PRDX4,PINK1,FES,PRMT1,NDUFS4,PRMT2,PKN3,PRMT7,PRMT8,CLCF1,PRMT5,PPP2R1A,SGK1,SGK3,LIMK1,PKN2,PKN1,CDK9,NEK11,PPM1G,PPM1D,LCK,CDK2AP1,ERN1,DDB2,ERN2,RAGE,UBB,PPM1M,CARM1,PPP2R2A,ACVR1,HS3ST5,APH1A,ADAMTS13,APH1B,BRSK2,BRSK1,PPM1B,STUB1,IGF1R,PRSS3,DCLK1,RNF144B,NF2,VHL,HCK,CBL,ANXA1,RAF1,NCSTN,ICK,TSSK1A,JAK2,JAK3,DZIP3,AURKC,RNF217,PTPN22,PTPN21,AURKA,PRKG2,PRKG1,PRKX,PRKY,WNK4,WWP1,COL4A3BP,PSENEN,GTPBP4,BCR,PIM1,WNK1,WNK3,PIM2,WNK2,PPARGC1A,UHRF2,HUWE1,CAMK4,CAMK1,AMFR,SRP72,NEK4,NEK6,TPST1,TPST2,STK17B,PXK,STK17A,UHMK1,EPHB2,VRK1,VRK2,GAD1,BMP4,LCMT1,PTPN18,CREBBP,PTPN14,PTPN13,OXSR1,PTPN12,EPHA5,CBLC,EPHA8,GRK1,ACVRL1,FASTK,CCNT1,PTEN,ART1,SENP7,CAMKK2,ART3,PDPK1,CTBP1,ADAM10,PSEN1,PSEN2,MAP3K10,CTDP1,MAP3K13,MAP3K12,MAP3K11,USP7,PPP6C,NFS1,SUMO1,SET,PRKAA1,PCMT1,PRKAA2,QSOX1,CSNK1A1,FYB,PTPRZ1,MEX3B,HCLS1,STAT1,TP53RK,MAPK12,C7ORF16,MAPK15,PPP2R4,PTCH1,RBM14,LOR,MYOD1,UBQLN3,SAE1,TTN,IL31RA,DMPK,PRKACB,MYST1,MYST4,MYST3,CSNK1G2,PICK1,SOCS1,STK4,CDKL5,STK3,TPTE,MAP4K3,MAP4K4,MAP4K5,CDKL1,DSP,RIPK4,CSTA,ERC1,KALRN,PPP5C,PPME1,SSH1,ITLN1,SSH2,MAP4K2,MAP4K1,ITGB2,ANAPC11,IRAK3,PTPLA,LMTK2,RNF11,UBE2D1,IVL,STK38L,RNF14,PTPN7,PTPN6,PTPN9,PTPN3,PTPN2,UST,PTPN5,PTPN4,BMX,BRCA1,AKTIP,ULK1,MYLK,UBE2E2,UBE2E1,IL22RA2,METAP2,PRKAG1,TIMM50,AKT1,ACVR1B,PIGK,PAK2,PAK1,CSK,CHUK,AKT3,VCPIP1,IRAK2,CCDC88A,CCDC88C,PIGU,PRKCI,MINK1,PRKCH,PIGT,PIGS,CHST4,PRKCG,CHST5,PRKCE,UBE2C,DAPK2,DAPK3,PRKCD,DAPK1,UBE2N,PRKD1,TYK2,EVPL,SBF1,CD80,HIPK3,CD81,MDM2,PRKD3,PRKCZ,FRK,UBE3C,TRIB2,GLRX2,TRIB1,ERCC8,MAP3K3,MAP3K2,TGM3,CAMK2B,SCG5,CAMK2A,PTPRB,PTPRC,ERG,PTPRD,LTK,PTPRE,UBE4B,SIRT4,SIRT5,SIRT6,PARK2,SIRT1,GSG2,SIRT2,SIRT3,GMFB,SPRR1A,GMFG,SPRR1B,TSSK2,TSSK4,BMPR1B,TSSK3,IGFBP3,TSSK6,LIPE,BMPR1A,F2R +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html ARSB,CLN3,NAGPA,NDP,MYO7A,HPS4,GAA,HPS1,PPT1,ABCA1,CLN5,CLN6 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_SECRETION.html CRTAM,NOD2,CARD8,CADM1,INS,PYCARD,GLMN,PYDC1,NLRP3,NLRP2 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html SNAP29,SEPT5,STX5,SHROOM2,AP1M2,NLGN1,CDC23,NUSAP1,CENPF,BIRC5,CENPE,TMED10,LRMP,PAFAH1B1,SNAP23,YKT6,CDCA5 +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html ARSB,USE1,M6PR,ADRB2,NAGPA,NPC1,ATG4D,ATG4C,AP3M1,ZFYVE16,ATG4A,LYST,RHOB +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN8,CLDN16,CLDN7,CLDN17,CLDN18,CLDN9,CLDN19,CLDN4,CLDN3,CLDN6,CLDN5,CLDN22,CLDN10,CLDN11,CLDN20,CX3CL1,CLDN12,CLDN14,CLDN23,CLDN15,CLDN1,CLDN2 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html F2RL3,CCKAR,PARD3,GNA15,DRD1,DRD2,EDN2,TACR1,AZU1,CALCA,EDNRA,EDNRB,AGTR1,HRH1,P2RY6,P2RY4,LTB4R,ANG,NMUR1,NMUR2,P2RY2,PLCH1,P2RY1,MC3R,PPAP2A,PLCB2,EGFR,C5AR1,CCKBR,PICK1,HOMER1,GRM5,PLCE1,P2RY11,GNAQ,CHRM2,CHRM1,AVPR1B,AVPR1A,NMBR,HTR2B,GAP43,PTAFR,PRKD3 +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html RTP3,RTP4,ATG4D,ATG4C,ATG4B,ATG4A,ICMT,TRAM1,SSR2,SEC63,SSR1 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html NCBP2,NUP160,XPO6,EIF5A,CALR,UHMK1,NUP214,RAE1,DDX19B,DDX25,DUSP16,KHDRBS1,NUP133,UPF2,UPF1,SMG6,NUDT4,SMG5,NXF5,SMG7,SMG1,MALT1,NUPL2,ATXN1,DDX39,TSC1,GSK3B,NUP107,XPO7,BARD1,BAT1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html LIMA1,KATNB1,ARF6,TERF2IP,LATS1,CXCL12,SORBS3,CDC42EP2,SET,CEP250,GSN,MAPT,CLASP1,TLK1,TLK2,CLASP2,ERCC4,ARHGEF10L,RASA1,TERF2,ERCC1,CDC42EP5,APC,ARHGEF2,CCDC88A,NF2,PIF1,CRIPAK,MID1IP1,NEXN,PPARGC1A,NEBL,UBE2N,NCK2,TSC1,NCK1,CAPG,MAPRE1,TMSB4Y +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html BCL10,ELF3,LMO4,VANGL2,EHF,UPK3A,CELSR1,GLI2,SPINK5,TIMELESS,UPK1A,UPK1B,KRT3,KRT4,UPK2,DMBT1 +PWCOMMONS NEUTRAL AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEUTRAL_AMINO_ACID_TRANSPORT.html SLC1A4,SLC1A5,SLC38A3,SLC6A7,SERINC1,SLC7A8,SLC7A9,SLC7A10,SLC43A1,SLC7A5 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html BCKDK,GLUD1,AMT,ASL,GLDC,FAH,GOT2,MCCC2,ARG1,GAD2,ASPA,GOT1,GCSH,ASRGL1,ALDH4A1,GSTZ1,DDAH2,GAD1,DDAH1,HPD,BCKDHA,BCKDHB,HGD,DDO,COLQ,DHPS +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html CLN3,CLCN3,BCL2,ATP1A3,ATP1A4,ATP1A1,PPT1,ATP1A2,CLN5,TMPRSS3,CLN6 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html LALBA,S100A7,PGLYRP1,TLR3,DEFB127,TLR6,IL10,CHIT1,CFP,AZU1,SLC11A1,NLRC4,NOD2,NOD1,PGLYRP4,PGLYRP2,PGLYRP3,DEFB118,CD24,SPN,BCL10,SPACA3,CAMP,DEFB103A,STAB2,CD1D,WFDC12,STAB1,IL12A,DMBT1 +PWCOMMONS CELLULAR COMPONENT ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_ASSEMBLY.html SYT1,OXA1L,EIF2C1,MED24,MED23,CD2AP,SFRS6,SFRS5,PICALM,APOE,KIFAP3,SFRS8,EIF1AX,MED26,SFRS9,MED27,SH3BGR,STAG3,FAS,EIF2B2,EIF2B3,EIF2B4,EIF2B5,SYK,IKBKAP,GJD3,CD3E,MATN1,MED12,EIF2S3,MED14,MED13,CD40,SFRS1,PPARGC1A,BOLL,KRT19,PTRF,MED16,MED17,RPS14,ATPIF1,AMFR,LAMC1,SIP1,SURF1,EIF2AK3,EIF2AK4,DAG1,HFE,MTIF2,RIMS1,MTIF3,PXN,CD74,CDC42EP2,UPK1A,CDA,AGRN,HIP1,MLL,PAIP2,TGFBR1,PAIP1,CREBBP,SMAD4,EPRS,SMAD3,MYOZ1,SEPT11,CHAF1A,CHAF1B,COX11,WASF3,CRNKL1,COX10,AP2S1,NAP1L1,TP63,GJA1,EIF2A,NAP1L3,NAP1L2,GJA4,GJA5,NAP1L4,NOD2,NOD1,NUBP1,ZFYVE9,GPX3,IL1RAP,TRPV5,COX18,FANCA,COX15,FANCC,ATF7IP,SNAPC5,SRPK2,PRPF31,APCS,BRF1,ACTA1,VIL1,TP53,SF1,EIF1B,WAS,THEG,RAD51,MED7,MED4,GTF2I,NUP205,EIF4A2,MAP3K11,MED1,FMOD,REPS2,PARD3,APC2,NFS1,PML,AASS,HPRT1,SF3B3,CLDN14,GJC1,LPXN,SET,CCT6B,DGKD,PTK2B,USP39,PEX14,DAZL,PEX13,WIPF1,APBA1,DAZ1,TNP1,SF3A2,SF3A1,EIF2B1,MIS12,SF3A3,MNAT1,TJP1,TCEB2,PBX1,PTCH2,PBX3,PBX4,TXNL4A,OCLN,CAPZA2,TSPAN4,CAPZA1,EIF5,SNRPD1,EIF5A,SLC7A9,SNRPD2,TBP,TTN,SLC7A6,SLC7A7,TAPBP,VCL,APOA4,GTF2E1,GTF2E2,EIF1,DDX20,INSR,BCL10,DARS,SCUBE3,SCUBE1,PICK1,TAZ,ACTN2,ADRM1,SMARCA5,HSPB1,SLU7,VAMP3,SEPT7,SEPT9,STK16,TRAF1,HMGB1,TRAF2,EID2,ANLN,SYCP1,SRC,LLGL1,EIF3C,EIF3D,EIF3A,EIF3B,EIF3G,EIF3H,EIF3E,EIF3F,NPM1,EIF3I,EIF3J,ASF1A,HELLS,TAF2,PARD6B,TAF5,MALT1,LIN7A,HDAC5,EIF4B,PPIH,ITGA6,EIF4H,GTF2F1,GTF2F2,MYH11,E2F2,TLN1,E2F3,RSF1,TLN2,DICER1,SKAP2,NDUFS7,CDC42,NDUFS5,RANBP9,NDUFS4,MAZ,RPS3A,GOPC,NDUFS8,DLG4,AKR1C1,ZW10,IRAK1,PPP2R1A,CCDC88C,ALDH5A1,CDK9,CDK7,NLRP3,SLC9A3R1,HMGA1,SLC9A3R2,STOM,EIF4G2,ADRB2,EIF4G3,TPPP,NCOA6,MDM2,MDM4,WASL,KPNA3,TCAP,HCFC1,PAIP2B,IGF1R,CD9,TGM3,SFRS2IP,NEFL,GTF3C4,GEMIN5,SCO1,APC,IL2RB,TNXB,MUC20,SIRT4,SIRT5,BCS1L,TUBGCP2,SIRT1,SC65,ATXN2,VWF,TMEM48,MED30,PRLR,BAX,THRAP3,MAPK8IP2,FAF1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CADM1,AQP9,IL6ST,MAP3K7,LTB4R,SEMA7A,IFNK,IKBKAP,GTPBP1,CRTAM,C5AR1,NCF4,COLEC12,GEM,THY1,CRHR1,CCR9,LILRB2,CCR8,CCR6,CCR5,CCR4,CD40LG,CCR2,MADCAM1,IL1R2,CNIH,HLA-DRB3,FCGRT,CD74,IL17A,IL17B,ZAP70,BLNK,ST6GAL1,TCF7,RGS1,ETS1,TCF12,IL27RA,BCAR1,LY86,IL28RA,BNIP3,ZEB1,SPINK5,CFHR1,HAMP,IL4R,CEACAM8,SEMA3C,DPP8,FCGR3A,FCGR3B,DPP4,CMKLR1,GZMA,IL6R,NFAM1,CD164,WAS,IL18BP,EREG,LAX1,IL12A,IL12B,SEMA4D,OPRK1,CCR1,GPR65,IL7R,CCL27,CCL26,CCL24,CCL25,CCL22,CCL23,CCL20,IL10RB,CCL21,XBP1,FCGR1A,BCL2,DEFB118,CD22,CCBP2,C2,CD28,FYB,LY75,IL4,IL6,IL7,CTLA4,CCL19,TRIM22,CCL18,CD1D,PRELID1,FCGR2B,FYN,BNIP3L,ATP6V0A2,IL2,IL16,IL18,APOBEC3G,VTN,TNFSF13,IL15,VIPR1,TLR7,CXCL12,APOBEC3F,TLR8,TGFB1,IL10,TAPBP,TGFB2,APOA4,APOA2,APOA1,GPR44,MS4A1,MS4A2,ODZ1,EBI3,CIITA,BCL10,POU2AF1,BST2,IL29,BST1,IL27,TNFRSF14,YTHDF2,SOCS5,TRAT1,IGSF6,LAT2,CST7,MNX1,KIR2DL1,DEFA1,KIR2DL3,GBP2,TNFAIP1,TRAF2,CCL2,IFITM2,IFITM3,MAP4K2,IL32,DEFB127,CX3CL1,CCL5,PYDC1,CCL4,FTH1,PRKRA,CNR2,SFTPD,TRAF6,DEFB1,ARHGDIB,MALT1,FOXP3,AIM2,LAT,FCAR,CXCL13,IKBKG,CD274,RFX1,CD79B,CD79A,IFI6,PAX5,SKAP1,PDCD1,MBP,CD97,CD96,CXCR4,LTF,NFIL3,APLN,CHUK,CCRL1,IK,PTGER4,SLA2,CHST4,CTSS,NCR1,CTSW,UBE2N,TARBP2,CD83,CD86,C1QBP,CTSC,TREM1,TREM2,PTAFR,CTSG,LCP2,PSMB10,MBL2,RAG1,RSAD2,TNFRSF4,HRH2,FCN2,POU2F2,FCN1,KRT1,IL2RG,MR1,CD7,PTPRC,SECTM1,IL2RA,CEBPB,DEFB103A,CEBPG,GPI,SP2,IRF8,ANXA11,OPRD1,DMBT1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html TM7SF4,MMP9,SPI1,JAG2,ZNF675,FOXO3,TPD52,SPINK5,SART1,TGFB1,IL10,IL31RA,TGFB2,CDC42,ACVR1B,ALAS2,ACIN1,MYST1,PRL,MYST3,KIRREL3,LYN,CD3D,LDB1,IL27,TAZ,CDK6,IFI16,INHA,NFAM1,SOCS5,MYH9,INHBA,ACVR2A,RPS19,LCK,SCIN,NCOA6,LRMP,CARTPT,IL12B,NHEJ1,RAB3D,CSF1,RAG1,MAP4K2,MAP4K1,PF4,ZBTB16,MLF1,CALCA,SNRK,RASGRP4,ZAP70,DYRK3,CD4,RUNX1,BLNK,IL4,PTPRC,MLL,MAFB,IL7,CEBPG,HCLS1,MAL,TBX1,CD1D,HDAC5,NOTCH2,HDAC4,ETS1,NOTCH4,CD79A,HDAC9,IL2 +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html AMBP,CARD9,TAOK2,HIPK2,TAOK3,MAPK8IP2,EDA2R,ZNF675,MAPK8IP3,TPD52L1,MAPK8IP1,CD27 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html DZIP3,RNF217,UBE2V1,UBE2V2,SAE1,ANAPC11,MYLIP,UBE3C,STUB1,SENP7,ERCC8,FBXW7,SUMO1,WWP1,RNF11,TRAF7,UBE2D1,TRAF6,RNF144B,BCL10,GTPBP4,VHL,UBE4B,CBL,PCNP,PRKCG,PARK2,TRIM23,UBE2C,ATG3,BRCA1,NAE1,UBE2N,UHRF2,HUWE1,TSC1,DDB2,RNF139,MDM2,CAND1,SMURF1,AMFR,UBB +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html PPARA,PFKL,CIDEA,EGLN2,PRKCG,PFKM,STUB1,GAPDHS,INS,APOA5,ECD,MDM2,HGS,MDM4,FAF1,ANGPTL3 +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html TUFM,B3GNT8,EEF1A1,GCK,ALG1,TSFM,SEPSECS,EEF2K,GYS2,GYG2,DYRK2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html DLC1,BMP10,BCAR1,OSGIN1,SGMS1,GLI2,SPINK5,TGFB1,TGFB2,BNIPL,ACVR1B,CDKN2A,CDKN2C,CDKN2D,APOA5,SERTAD3,NDUFS3,GHR,SERTAD2,NOL8,TP53,NDUFA13,RB1,FGF20,INHBA,PLCE1,EREG,GHRH,ALOX15B,BIN3,UBB,XRN2,ALOX12,ING5,DCBLD2,ING4,DERL2,RTN4RL1,PML,PPT1,TSPYL2,FAM107A,RASGRP4,PRSS2,CDA,BCL6,TNN,RTN4RL2,ENO1,DMBX1,COL4A4,KLK8,SPHK1,SMAD4,SMAD3,SOD1,CAPRIN2,RERG,PPP1R9B,NOTCH2,CDKN1A,CDKN1B,NUPR1,BBC3,CDKN2AIP,PTCH1,GHSR,BMPR1B,APBB2,APBB1,IL2 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html CLDN16,AVPR2,SLC22A18,AQP9,ADORA2B,TACR2,AQP5,CLCNKA,AQP4,CLCNKB,AQP7,AQP6,AQP1,ATP6V1B1,AQP3,AQP2,KCNJ1,SCTR,KCNK5,NFAT5,SCNN1G,SCNN1B,GUCA2B,SCNN1A,NPHP1,KNG1,NPR1,GRHPR,SLC26A3,NPHS2,NPHS1,NPPB,ATP6V0A4,UNC13B,IFT88,CLCN5 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html EMCN,ACVRL1,HTATIP2,IL18,PML,RNH1,PF4,TNFSF12,FOXO4,SPINK5,CANX,SHH,TGFB2,AGGF1,ANG,IL17F,ROBO4,RHOB,ERAP1,CHRNA7,RUNX1,EGF,ANGPTL3,C1GALT1,SCG2,ANGPTL4,COL4A3,COL4A2,IL8,NF1,SPHK1,NPR1,TNNI3,MYH9,NCL,PLG,THY1,CDH13,PROK2,SERPINF1,BTG1,STAB1,EPGN,VEGFA,NOTCH4,NPPB,AMOT,ATPIF1 +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html INHBA,CDKN1A,CDKN2A,CDKN1B,NF2,CDKN2B,CDKN2C,CDKN2D,SOCS1,NLRP12,INHA,IGFBP3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html BCL10,TNF,CEBPG,RELA,EDA2R,UBE2V1,NFAM1,PRDX3,JMY,UBE2N,CARD11,PRKCQ,NOD2,NLRC3,EP300,NPM1,PYCARD,ABRA,IKBKB,EDA,TSSK4,ERC1,MAP3K13,CAMK2A +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html DZIP3,RNF217,UBE2V1,UBE2V2,SAE1,UBE3C,ANAPC11,MYLIP,STUB1,ERCC8,FBXW7,WWP1,RNF11,TRAF7,UBE2D1,TRAF6,RNF144B,BCL10,GTPBP4,VHL,CBL,UBE4B,PRKCG,PCNP,PARK2,TRIM23,UBE2C,ATG3,BRCA1,UBE2N,UHRF2,TSC1,HUWE1,RNF139,DDB2,MDM2,CAND1,AMFR,SMURF1,UBB +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC38A3,AQP9,SLC16A10,SLC7A8,SLC7A9,SLC7A5,SLC1A4,SLC1A5,SLC16A1,SLC1A2,AKR1C4,SLC1A3,SERINC1,SLC1A6,SLC25A22,SLC1A7,SLC22A6,SLC25A1,SLC43A1,ARL6IP5,SLC1A1,AKR1C1,CLN3,PRAF2,PDPN,SLC3A2,SLC7A10,SLC3A1,SLC25A12,SLC16A3,SLC16A2,SLC16A5,SLC16A4,SLC25A13,SLC16A7,SLC6A7,SLC16A6,SLC25A10,SLC16A8,CTNS,SLC25A15 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html RTN4,HMGB1,LIMA1,KATNB1,ARF6,TERF2IP,PAIP2B,CDC42,SET,PACSIN3,GSN,RAC1,CLASP1,ERCC4,ERCC1,TERF2,APC,KLK8,ARHGEF2,PAIP2,MID1IP1,THY1,YWHAH,CAPG,MAPRE1,TMSB4Y,EIF2AK3 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html HMGCR,LHCGR,ANKRD7,SHH,PRKACG,CSDE1,SOX15,MKKS,HSD17B3,SRD5A2,EIF2B2,EIF2B4,EIF2B5,FOXL2,TBX3,MEA1,DMRT1,DMRT2,NR0B1,SOD1,FSHR,EREG,NCOA4,BMPR1B,LHB,NR5A1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html KIAA0368,TSG101,BTRC,UBE2G1,UBE2G2,USE1,RNF217,CPA2,FBXO22,ANAPC2,UBE2A,ANAPC5,UFD1L,ANAPC4,UBR3,UBE2I,PRKCG,UBE2H,UBE2C,UBE2B,UHRF2,UBE2K,UBR5,MDM2,FBXL4,SIAH1,MDM4,AMFR,UBB,SIAH2,FZR1,DERL2,SYVN1,DERL1,UBE3A,EGLN2,NEDD8,ANAPC10,STUB1,EDEM1,ARIH1,UBE2D3,UBE2D2,SQSTM1,INS,PRSS2,RNF11,UBE2D1,USP33,FBXO7,RNF144B,NPLOC4,UBE4A,UBE4B,CDC23,PCNP,CDC20,PARK2,UBE2L3,SELS,PSMD14,PSMC5,VCP,HGS,SMURF2,SMURF1,FAF1,UBE2E1 +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html NOX4,LIMS1,CDKN2A,TBX3,TBX2,KL,NPM1,MORF4,TP53,LOXL2,SOD1,PDCD4 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html KNG1,ARHGDIG,GTPBP4,ADAM10,ACVRL1,NF2,PTEN,PR47,CDH13,MIA3,CDKN2A,RND1,TGFBI,B4GALNT2,ARHGDIA,SPN,RASA1,ARHGDIB +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html PPARD,SPRR2G,SPRR2F,SPRR2E,SOD1,SCGB1A1,RPL29,PRLR,SPRR2C,SPRR2D,TRO,SPRR2A,SFRP4,SPRR2B +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html AURKAIP1,ATP6AP2,BTRC,LTBP4,PGC,MMP9,IDE,MMP8,MMP7,RNF217,RCE1,MMP3,MMP2,MMP1,SHH,HTRA2,ERAP1,CPA3,PSENEN,CPA1,CFD,FBXO22,DNAJC1,ANAPC2,ANAPC5,ANAPC4,UBR3,NAPSA,MYH9,NAPSB,ADAMTS9,UHRF2,BACE2,UBR5,TMPRSS11E,BACE1,F2,ST14,FBXL4,AMFR,FBXL6,PGCP,WFDC2,ADAMTS5,ADAMTS4,FBXL2,DERL2,FZR1,SYVN1,DERL1,MME,NEDD8,ANAPC10,TIMP1,ARIH1,UBE2D3,ACE,UBE2D2,KLKB1,CTRC,FBXO6,RNF11,FBXW2,ZMPSTE24,FBXO3,UBE2D1,SRGN,CTRL,FBXO7,PLAT,NPLOC4,BMP1,FBXO2,CDC23,PCNP,CDC20,UBE2L3,FURIN,LCN1,PSMC5,PSMC4,VCP,UBA3,PAPPA2,SPCS1,SMURF2,SMURF1,PHEX,CPB2,PLAU,UBE2E1,DPP3,SPG7,KIAA0368,CORIN,TSG101,UBE2G1,UBE2G2,MMP24,CFHR1,CASP5,LNPEP,CASP6,MMP20,CASP3,CASP4,TPP1,CASP7,TPP2,CASP8,CASP1,CASP2,CTSZ,UBE2A,PEPD,ADAM10,ASTL,UFD1L,UBE2I,CTSS,UBE2H,MMP14,UBE2C,MMP13,UBE2B,MMP12,MMP11,UBE2N,MMP10,CTSK,BLMH,ATG4D,SENP1,ATG4C,PSEN1,UBE2K,ATG4B,ATG4A,CTSO,PSEN2,SIAH1,SIAH2,CTSB,UBB,USP25,CTSH,PMPCA,CTSG,CTSF,CLN6,MBL2,PREP,APH1A,UBE3A,ADAMTS13,SHFM1,STUB1,EDEM1,SUFU,CPZ,PCSK2,PCSK1,SQSTM1,REN,PRSS2,PRSS3,PITRM1,KRT1,C2,PCSK6,HGFAC,USP33,PCSK5,RNF144B,OLR1,UBE4A,VHL,UBE4B,PARK2,TMPRSS6,CAPN3,SELS,XPNPEP1,C9ORF3,NCSTN,PSMD14,MMP23B,MBTPS1 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html ALDH8A1,RARRES2,ALAD,TSPO,COX10,PPOX,GPR143,DCT,ALAS1,TYR,ALAS2,CPOX,AP3D1,OCA2,COX15,FECH,GMPS,BLVRA,RDH12,RDH11,DHRS3,AS3MT,NFE2L1,PAICS,RETSAT +PWCOMMONS PYRIMIDINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PYRIMIDINE_NUCLEOTIDE_METABOLIC_PROCESS.html DCTD,UMPS,TYMP,NT5M,CTPS,DCK,AK5,ENTPD4,NT5C +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html ALDH8A1,ME1,RXRA,PGD,RBP2,DHRS9,TKTL1,BBOX1,RDH12,RDH11,ALDH1A2,DHRS3,THTPA,PGLS,CYP27B1,RLBP1,RETSAT +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html VAPA,PDLIM7,ITSN1,ADORA1,NRCAM,HOOK2,GATA2,BAK1,PICALM,PACSIN3,ADAM2,ATG7,VPS4B,IZUMO1,EGFR,MYO6,OPA1,STAP1,PICK1,CRISP1,TAZ,LRP1B,VTI1B,COLEC12,VAMP3,RAB7A,RTP2,NAPG,ADORA2A,RTP1,SNX2,RABEPK,HFE,SNX1,ARF6,PPT1,SNX4,NAPA,SNX3,BCL2L1,AHSG,ADRB3,DOCK1,FOLR1,RAC1,SFTPD,DULLARD,AGRN,STX11,HIP1,MRC1,NPLOC4,RABIF,REEP1,CORO1C,RABEP1,TSC2,CACNA1H,GOSR2,CLEC7A,CLTCL1,KCNH1,MSR1,LDLR,AP2S1,SORL1,SYNJ1,BNIP3,TIMM50,KCNIP2,ASGR1,AP1S1,ZFYVE16,NECAP2,COX18,STX6,RAMP3,CLN3,RAMP2,SPACA3,CCDC88A,TP53,ARHGAP27,ATP6V1H,PI4KB,LDLRAP1,M6PR,ELMO1,MFN2,ADRB2,BNIP1,IGF2R,OTOF,RAB5A,LRMP,STEAP2,ADAM12,EPN1,SERP1,STON2,SNAP29,STON1,GULP1,EEA1,SCARF1,AMPH,AZU1,CD9,BCL2,FCN2,FCGR1A,PEX16,FCN1,CD2,CD24,SNAP23,A4GALT,DNM1L,CBL,MAL,STAB2,SOD1,SH3BP4,CDH13,PLSCR1,STAB1,RAB22A,LRP8,LRP2,LRP3,CD14,DNM1,GCA +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html SRI,MDFI,PTPRC,TAF3,PDIA3,S100A7,PDIA2,NFKBIE,TOPORS,MXI1,FTH1,NFKBIL1,THY1,NFKBIL2,ALB,LCK,GAA,SUPT7L,FAF1,TMSB4Y,SRGN,ATP7B +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html HTATIP2,RNH1,PML,PF4,TNFSF12,FOXO4,SPINK5,AGGF1,IL17F,RHOB,CHRNA7,RUNX1,ANGPTL3,ANGPTL4,COL4A3,COL4A2,NF1,SPHK1,NPR1,TNNI3,PLG,SERPINF1,BTG1,STAB1,NPPB,AMOT +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html PARD6A,PARD6B,TLN1,GJD3,TLN2,PRKCI,GJA1,GJA4,GJA5,GJC1,VCL,CD9,TJP1 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html UQCRC2,ME3,OXA1L,UQCRC1,LEPR,PDHB,ADRB3,NDUFS4,GYS2,TREH,DYRK2,NDUFS1,ACO2,CYCS,EPM2A,BCS1L,GYG2,CRAT,PPARGC1A,ACADVL,LEP,SDHA,SDHB,SLC25A14,NNT,GCK,PYGM,UQCRH,GSK3B,SDHC,GFPT1,GFPT2,SDHD,GAA,SURF1,PYGB,UQCRB +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SEPT5,SYT1,UTS2,KCNC4,SNCAIP,GRIK1,SLC6A1,GRIK2,SYT5,SLC6A2,GABRB2,GRIK4,SLC6A4,CNP,VIPR1,GDNF,TGFB2,HTR1B,GRIN2B,APOE,GALR3,GALR2,CHRNA5,CHRNA4,CHRNA6,HTR1D,NQO1,CHRNA1,HTR1F,HTR1E,KCND2,SCN2B,KIF5A,BAIAP3,STRN4,GRIN2A,BSN,NTSR1,GABRR2,MAPK1,CBLN1,DOC2A,GABRR1,COLQ,HTR7,HTR6,AKAP5,NPTN,CARTPT,PMP22,KCNMB4,DRD1,SCN1B,CALY,DRD2,KCNA1,DRD4,PXK,RIMS1,KCNMB1,HCRTR2,HCRTR1,GAD2,SYPL1,GAD1,NOVA1,HAP1,UNC119,CPNE6,OMP,SNAPIN,HOMER1,KCNK3,PDE7B,NPY,RAPSN,CHRNB4,MTNR1B,CHRNB3,CACNA1E,QPRT,CHRNB1,RIT2,CORT,SST,CHRNE,CACNA1B,GABBR2,KCNIP1,MBP,KCNQ5,SLC1A2,SLC1A3,KCNQ3,FXN,SLC1A6,DLG4,KCNQ2,SLC1A1,TAAR5,NPFF,KCNMA1,PCDHB9,GPR176,PRG3,PCDHB5,PCDHB6,NPBWR1,PCDHB3,NPBWR2,PCDHB4,PI4KA,PCDHB2,GRM1,STX1B,GRM5,GRM4,GRM3,KIF1B,GRM2,GRM7,GHRL,CNTN4,UBB,ALDH9A1,HCRT,RAB3A,CPLX1,OPRK1,PCDHB14,AKAP9,PCDHB13,HPRT1,PCDHB11,PCDHB10,GCH1,AMPH,NPTX1,HRH3,SYN1,SYN3,PCDHB16,SYN2,CD24,HTR3A,HTR3B,GCHFR,APBA1,DTNA,COL4A4,KLK8,GLRB,PLP1,MPZ,NLGN1,DBH,GABARAP,ACCN1,YWHAG,ATXN3,YWHAH,GRIA2,KCNN1,GRIA1,SLC6A5,KCNN3,CRH,MYCBPAP,SLC5A7,HTR2C,CHRNA10,HTR2A +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html WASF3,WASF1,PREX1,ARF6,LATS1,NCK2,CDC42EP2,ANG,GSN,NCK1,RAC1,TMSB4Y,RASA1,CDC42EP5 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MTSS1,TTN,PRKG1,CXCL12,PACSIN2,PLA2G1B,ROCK1,MYH9,NEBL,ARPC1A,RND3,KRT19,RND1,ATP2C1,TESK2,DST,DBN1,FGD2,FGD1,SSH1,MRAS,SSH2,ARF6,ARPC4,ARPC5,LLGL1,DOCK2,CDC42EP2,RAC3,RAC1,ADRA2A,FGD5,FGD6,ARHGEF10L,FGD3,ARHGDIB,CDC42EP5,FGD4,FSCN2,TAOK2,FSCN1,ARFIP2,MYOZ1,EVL,EPB49,CDC42BPG,TSC1,CDC42BPA,MYH11,SPTA1,GHSR,ABL1,CDC42BPB,RHOJ,LIMA1,NUAK2,WASF3,WASF1,PREX1,BCAR1,WASF2,LATS1,DSTN,CDC42,PDPK1,DYNLL1,GSN,ANG,RHOA,RHOF,DLG1,ARHGEF2,CCDC88A,ACTA1,LIMK1,ARHGEF17,FLNB,FLNA,ELMO1,NCK2,NCK1,SCIN,CFL1,GHRL,WASL,TMSB4Y,CXCL1,SHROOM1,SHROOM2,PLEK2,SORBS3,EZR,SORBS1,WIPF1,RASA1,TNXB,NF2,NF1,RICTOR,RACGAP1,CAPG,AMOT,KPTN,CRK +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html NDUFB4,GCLC,ATOX1,S100A7,PRDX5,PRDX2,PDLIM1,CCL5,GCLM,GLRX2,ANGPTL7,APOA4,GSS,ERCC8,MSRA,ERCC6,GPX3,NDUFS8,CYGB,SEPP1,ERCC3,NDUFS2,ERCC1,ERCC2,DHCR24,SGK2,NUDT1,STK25,NDUFA6,APTX,DGKK,OXSR1,SOD1,SELS,NDUFA12,SOD2,PNKP,RNF7,DUSP1,PRDX6,TXNRD2,MPO,SCARA3,PRNP,SRXN1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html AURKAIP1,XRCC6,RORB,MED21,CITED2,EPC1,FOXF1,FOXF2,SUPT5H,EIF2B5,PCBD2,RXRA,MED12,MED14,MED13,PPARGC1A,BOLL,PPARGC1B,HNF4A,MED17,CRTC1,ARF6,AFAP1L2,PLAGL1,FOXH1,CDC42EP2,MAML3,TCF4,TCF3,ARHGEF10L,CDC42EP5,BMP4,UTF1,MAML1,MAP2K3,CREBBP,MAML2,ESRRG,SMAD3,MSTN,SMAD2,NUP62,NOTCH4,TNK2,BMP7,BMP6,PPARA,HNF1B,ELF1,HNF1A,ACVRL1,ELF4,SPI1,TP63,GLI2,CAMKK2,ZBTB38,GLI1,MAPT,ATF7IP,LYN,PRG3,CCNH,TP53,ARHGEF11,SCAP,RAD51,GTF2H1,MED6,INHBA,NCK2,CCND1,CARD14,EREG,CCND3,CCND2,NCK1,IL12A,IL12B,NSD1,CLOCK,MED1,CLN6,NUFIP1,EHF,HPRT1,AZU1,MRPL12,SQSTM1,BCL3,DAZL,SUPT4H1,CD24,CD28,FOXD3,IL4,IL3,DAZ1,IL6,IL5,HCLS1,TBX5,IL9,TRIM28,ILF3,TP73,GAPDHS,MNAT1,YWHAH,ILF2,YAF2,FOXE1,PPP2R4,PHF5A,RBM14,MMS19,NCBP1,TLR1,ARNT2,EIF5A,FOXO1,TLR3,TNFSF13,TLR4,FOXO3,TLR6,TLR7,TGFB1,TLR8,TLR9,IL31RA,APOA2,MDFIC,SMARCD3,ATG7,TDGF1,APOA5,SMARCD1,GATA4,MYST1,MYST4,EBI3,SAMD4A,SPN,MYST3,EGFR,BCL10,MYO6,IL29,IL27,ARID1A,ARNTL,ELL3,TRERF1,IL20,HIF1A,TFAP2B,SMARCA1,ITLN1,KATNB1,ELK1,ABCA1,DYRK2,UBE2D1,RUNX1,EGF,ANGPTL3,ZNF423,EPAS1,TAF8,CD276,FOXP3,BRCA1,ATF6,ATF4,AKTIP,SMARCC1,DYRK1B,SMARCC2,HIVEP3,GLMN,HSP90AB1,RSF1,CTCF,ANG,CLCF1,TPP1,PAX8,MKL2,LTB,PIGA,EGR1,HSP90AA1,PIGY,PRKCG,CDK7,HMGA1,PRPF6,NRIP1,UBE2N,BPTF,CD80,ZMIZ2,TPPP,CD81,NCOA6,UBB,ACVR1,GLIS3,GLIS2,GLIS1,EGLN2,TNFRSF8,STUB1,TNFRSF1A,RGMB,NPAS2,ERCC6,NFATC2,ERCC3,ERCC2,DEFB103A,CEBPG,CREB5,SP1,GCK,THRAP3,IRF4,FAF1 +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html LOR,TXNIP,ANXA1,SCEL,IL20,NME2,EVPL,EREG,SPRR1A,SPRR1B,TGM1,TGM3,DSP,CSTA,IVL +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SNCAIP,SLC7A8,SLC7A9,BPHL,GGT1,SLC7A4,SLC7A5,OTUB2,BBOX1,SLC7A6,SLC7A7,GLDC,FAH,TGFB2,GOT2,ASPA,GOT1,PLOD1,SCLY,MAT1A,ASMTL,DDAH2,DDAH1,ALDH6A1,YARS,DARS,GATM,AARS,QDPR,CDO1,SARS2,PYCR1,COLQ,SULT1B1,RARS,CCBL1,GCLC,GLUD2,GLUD1,FARS2,PAH,ASL,GCLM,KARS,OAZ2,ARG1,GAD2,OAZ1,ALDH4A1,GCSH,ASRGL1,GAD1,P4HB,SLC6A14,HGD,ATF4,BAAT,DIO2,SLC7A2,DIO1,FPGS,SLC25A15,BCKDK,AMT,GSS,WARS,MCCC2,MSRA,TYR,HDC,GSTZ1,YOD1,HPD,PEPD,PRG3,ALDH5A1,SLC3A1,DDO,SDS,DHPS,SMS,BCAT1,ALDH18A1,NFS1,HPRT1,DCT,GLS2,MTHFR,ETNK1,MARS2,PTS,BCKDHA,BCKDHB,ADI1,SLC6A6,MAT2B,GAMT,SLC5A7 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB9,COL4A4,ACHE,KLK8,PCDHB5,PCDHB6,PCDHB3,PCDHB4,NLGN1,PCDHB2,CACNB2,NRD1,PCDHB14,PCDHB13,PCDHB11,PCDHB10,NRCAM,PCDHB16,GHRL,POU4F1,UBB,AGRN,CHRNA1 +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html ACOX2,GBA2,CYP7B1,NPC1,CYP39A1,BAAT,HSD3B7,AKR1D1,AKR1C1,NR1H4,ACOX3 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html TRAF2,ATP6AP2,AFAP1L2,TGFB2,MAP3K7,CALCA,NOD2,IFNG,CHRNA7,CD24,TRAF6,SMAD4,CIDEA,SMAD3,MALT1,SOD1,FOXP3,CARD11,HIF1A,EREG,CD40LG,IL12A,GHRL,IL12B,GHSR +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html GCLC,FGF16,CRNN,SOD1,GMPR,CSDA,EIF2B1,AKT1,ACOT11,CIRBP,ERO1L,EIF2B2,DNAJB4,EIF2B3,EIF2B4,EIF2B5 +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html NCK2,LIMA1,CDC42EP2,GSN,NCK1,CAPG,ARF6,TMSB4Y,CXCL12,LATS1,RASA1,CDC42EP5 +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html B4GALT1,ST6GAL1,ST6GAL2,FUT8,GLA,ST8SIA4,MPDU1,MAN1B1,ST8SIA3,ST8SIA2,COG2 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html KCNE1L,SRI,ACTC1,ADORA3,CYP2J2,MYH7,MYH6,KCNJ12,KCNIP2,TPM1,TGFB2,DMPK,TNNT2,DES,CHRM2,HSPB7,KCNE1,RYR2,CACNA1H,KCNE2,KCNH2,KCNQ1,SCN5A,KCNG2 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html EHMT1,PHB,CREBBP,HDAC10,HDAC11,PPARGC1A,SIRT2,UBE2N,RPS6KA5,SET,HUWE1,PRMT7,PRMT8,WHSC1L1,RBM14,CARM1,NSD1,MYST1,MAP3K12,MYST4,HELLS,HDAC6,MYST3 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html KCNMB3,SRI,KCNMB4,PPARD,PLP1,KLK8,KCND2,NF1,MAL,SOD1,KCNMB2,MBP,AMIGO1,CD9,EIF2B2,EIF2B4,EIF2B5 +PWCOMMONS CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_METABOLIC_PROCESS.html AURKAIP1,PPP2R5C,RCE1,MYLIP,BTK,MAP3K6,ISG15,MAP3K9,ILK,MAP3K8,OGT,IKBKAP,MCRS1,BRAF,MYH9,MARK4,SARS2,MARK1,MARK2,PPP1CA,EIF2AK1,MAPK6,MAPK4,BACE2,TMPRSS11E,MAPK3,F2,BACE1,MAPK8,EIF2AK3,EIF2AK4,PPP2R3B,PPP2R3A,PABPC4,DUSP10,DUSP12,ARF6,ARIH1,IL17A,DUSP13,KLKB1,RAC1,IL17F,PAIP2,PAIP1,TAOK3,EPM2A,DUSP22,UBE2L3,CDC42BPG,CDC42BPA,PARP3,SMURF2,SMURF1,PARP4,PARP1,PARP2,CDC42BPB,NUAK2,LDLR,TSG101,UBE2G1,UBE2G2,EIF2A,CUZD1,PMVK,MMP24,YBX2,LNPEP,MMP20,EEF2K,MTERF,APCS,MRPL3,LYN,EIF1B,MMP15,CCT6A,MMP14,MMP13,MMP12,TTF2,LRPAP1,MMP11,INHBB,MMP10,EIF4A3,INHBA,CARD14,EREG,PPEF2,PPEF1,EIF4A2,MTRF1,IL12A,MGEA5,TXK,IL12B,USP25,DOLPP1,FMOD,NNAT,MKNK2,ABI3,ABI2,MKNK1,ABI1,NECAB3,PET112L,MTMR3,CCT6B,SNRK,MPDU1,MARS2,DAZL,C2,USP33,MTMR7,IL4,IL3,DAZ1,IL6,UPF1,IL5,IL9,ETF1,TRIM23,QPCT,DUSP5,DUSP4,DUSP3,DUSP2,CSNK1D,CSNK1E,GSK3B,WHSC1L1,ARAF,DUSP9,LRP2,DUSP8,DUSP6,PRPF4B,IL18,IDE,HBS1L,CXCL12,TGFB1,IL10,FNTB,FNTA,CSNK2A1,ATG7,TDGF1,DNAJC7,FBXO22,SAMD4A,EBI3,DNAJC1,BCL10,IL29,MYO3A,PTPRN2,IL27,IL20,EP300,RNF139,TESK2,STMN1,FBXO11,PHKA2,CCL2,UBE2V1,UBE2V2,ST8SIA3,ST8SIA2,MAPKAPK2,RABGGTA,TTC1,FBXW7,PTK6,DNAJA1,FBXW2,DNAJA3,SDF2,EHMT1,MOBKL1A,ICMT,FURIN,ATG3,NMT2,ATF6,NMT1,IKBKE,DYRK1B,ST8SIA4,DYRK1A,DNAJB2,ABL1,ABL2,DNAJB6,HDAC6,PREX1,PINK1,CASP5,WARS,CASP6,PRMT1,CASP3,PRMT2,CASP4,MAZ,PKN3,PRMT7,PRMT8,PRMT5,CASP7,CASP8,MAN2B1,NRG1,CASP1,CASP2,ARL2,PPP2R1A,TBCE,PKN2,PKN1,NEK11,TBCA,TBCD,TBCC,ERN1,DDB2,ERN2,UBB,MAPRE1,RAGE,TM4SF4,PPP2R2A,TM4SF5,FKBP9,HS3ST5,FKBP6,FKBP5,FKBP4,BRSK2,BRSK1,STUB1,PAIP2B,PRSS2,PRSS3,DCLK1,OLR1,CEBPG,CBL,RAF1,XPNPEP1,NCSTN,ICK,MMP23B,DZIP3,AURKC,AURKA,PRKG2,CCT3,PRKG1,SLC35A1,PRKX,PRKY,WWP2,WWP1,WNK4,EIF1AX,ERAP1,PSENEN,ANAPC2,GTPBP4,BCR,ANAPC5,CD3E,ANAPC4,WNK1,UBR3,WNK3,WNK2,PPARGC1A,GLCE,CD37,CAMK4,UBR5,CAMK1,FBXL4,FBXL6,AMFR,EXT1,NEK4,NEK6,FBXL2,TPST1,TPST2,KEL,FARS2,STK17B,MME,STK17A,EPHB2,ACE,VRK1,STX12,VRK2,FBXO6,FBXO3,FBXO7,PLAT,FBXO2,OXSR1,EPHA5,CCT7,CCT4,RPL18A,EPHA8,SUPT16H,GHSR,ALG12,PLAU,GRK1,COX11,ACVRL1,COX10,PTEN,ART1,SENP7,ART3,PDPK1,CHST12,CHST11,CHST14,CHST13,COX18,COX15,CTBP1,PRG3,UFD1L,APTX,SIGIRR,BLMH,SENP1,FARSB,MAP3K10,RPS4Y1,CTDP1,MAP3K13,MAP3K12,SERP1,MAP3K11,PPP6C,PREP,FUT9,ATG12,FUT8,FUT7,FUT6,FUT5,EDEM1,STT3B,AZU1,STT3A,FUT4,BCL3,PEX13,PRKAA1,FUT1,FUT2,PRKAA2,CD28,FYB,AGA,CSNK1A1,HCLS1,MSRB2,MSRB3,TP53RK,COG3,COG7,CAPG,C7ORF16,PTCH1,PPP2R4,APBB1,COG2,MYOD1,MMP9,MMP8,MMP7,EIF5A,SAE1,MMP3,TTN,MMP2,MMP1,AIP,PRKACB,MYST1,MYST4,MYST3,CSNK1G2,PICK1,ERP29,NAPSA,NAPSB,CLPX,DSP,CSTA,CSNK1G3,ERC1,PPP5C,SSH1,SSH2,KATNB1,ITGB2,NEDD8,LMAN1,KARS,EIF3C,IRAK3,EIF3D,EIF3A,UBE2D3,UBE2D2,EIF3B,EIF3G,EIF3H,EIF3E,EIF3F,LMTK2,EIF3I,EIF3J,UBE2D1,STK38L,PGGT1B,GAL3ST1,P4HB,EEF1A1,MRPS24,BMX,FOXP3,BRCA1,EIF4B,PPIH,ULK1,PPIA,EIF4H,GLMN,SPCS1,PHEX,UBE2E2,IL22RA2,UBE2E1,SEPX1,METAP1,METAP2,PRKAG1,ANG,MKKS,TNIP1,CHUK,VCPIP1,IRAK2,UBE2A,PRKCI,CHST3,PRKCH,UBE2I,CHST4,PRKCG,CHST5,UBE2H,MRPS7,UBE2C,PRKCE,ALK,UBE2B,PRKCD,PRKD1,UBE2N,TYK2,EVPL,CD80,CHST7,UBE2K,CHST9,CD81,CHST8,MDM2,GHRL,DHPS,MDM4,PRKD3,PRKCZ,MBL2,FRK,PPP4R2,UBE3A,HAT1,PRKDC,TNFRSF8,UBE3C,TRIB2,TRIB1,ERCC8,MAP3K3,MAP3K2,TGM3,HS6ST1,CAMK2B,SCG5,TGM5,YES1,CAMK2A,APC,SCO1,UBE4A,MAP1D,UBE4B,SIRT4,SIRT5,SIRT6,PARK2,SIRT1,SIRT2,SIRT3,TMEM48,PRLR,MAPK8IP2,IRF4,BMPR1B,IGFBP3,POFUT1,BMPR1A,RPL18,RPL19,RPL14,RPL13,PGC,RP2,LTBP4,RPL15,TLK1,RPL11,TLK2,MAP2K6,PTPRJ,YARS,PTPRM,ROCK1,ROCK2,KIAA1804,PTPRH,PTPRR,EIF2S3,PTPRT,PTPRU,PTPRO,ST13,ADAMTS9,RPS19,RPS17,ST14,UBL4A,RPS12,RPS10,RPS11,SURF1,WFDC2,ADAMTS5,ADAMTS4,GGCX,ERBB3,ERBB2,PPT1,MTIF2,MTIF3,CDC42EP2,RPS27,TNKS,CDC42EP5,MGAT4B,MGAT4A,NPLOC4,PHB,TGFBR1,MGC42105,RPS9,PCNP,RPS5,UBA3,PAPPA2,TNK1,TNK2,SGSH,DPP3,LIMA1,SEPHS1,PDIA2,PDIA6,PDIA5,LATS1,LATS2,CFHR1,MSRA,POMGNT1,NOD1,NUBP1,MAPT,CETP,CLN3,SRPK2,ARHGEF2,PEPD,NDUFA13,SRPK1,NCK2,MAST1,CCND1,MAST2,RPL41,CCND3,CCND2,NCK1,NUP205,PFDN4,RPL3L,CAND1,RUVBL2,TMSB4Y,NSD1,CLN6,TUFM,NACA,GPAA1,RPL35,RPL37,RPL38,RPL39,PCSK2,PCSK1,RPL30,NAGPA,PTK2B,RPL31,PPP2CA,RPL34,PITRM1,PPP2CB,PCSK9,PCSK6,HGFAC,PCSK5,RASA1,RPL26,TNP1,RPL24,TMPRSS6,CAPN3,RPL28,SELS,NAE1,RPL29,RPS6KA5,CCL11,RPS6KA4,LARGE,RPL22,RPL21,HSPA4L,NLRP12,DPM1,DPM2,DPM3,STK38,ZAK,ATP6AP2,STK36,BTRC,EIF5,TNFSF15,RPS6KB2,TSPAN7,TSPAN8,MIPEP,APOA4,APOA2,APOA1,DDX25,B3GALNT1,ST3GAL6,RPN1,CPA2,CPA3,EIF1,RPN2,CPA1,INSR,MATK,EGFR,RET,TWF1,TAZ,HDAC10,HDAC11,SMARCE1,HSPB1,UBA52,STK16,PAM,EID2,ACHE,FGR,STK11,STK10,ANLN,TIMP1,ECE2,RPL7,RPL6,RPL9,RPL8,RPL3,RPL5,HSPE1,DYRK3,RPL4,TRAF7,DYRK2,RPL7A,STK19,ANGPTL3,TRAF6,B4GALT7,LIPT1,TEC,AIPL1,TAF1,SMG1,RPL23A,GLYCTK,HSPBP1,LCN1,PLK4,PLK3,TSC1,VCP,CDKN2AIP,MERTK,CPB2,CORIN,NDST1,ALG1,ALG2,UCHL1,PRDX4,PEX6,ALG5,DPH1,ALG6,DPH3,RPS2,ALG8,FES,RPS3,NDUFS7,NDUFS5,ALAS2,NDUFS4,RPS3A,CLCF1,NDUFS8,NPC1L1,LOXL2,LOXL1,SGK1,SGK3,MAN1A2,LIMK1,CDK9,PADI4,MID1IP1,HMGA1,PPM1G,PPM1D,ADRB2,ATG4D,CHRM3,ATG4C,ATG4B,CHRM1,ATG4A,LCK,CDK2AP1,PPM1M,CARM1,ACVR1,GALNT2,GALNT1,GALNT7,APH1A,ADAMTS13,GALNT6,APH1B,NFYC,PPM1B,NGLY1,IGF1R,A1CF,REN,TOR1A,A4GNT,RNF144B,PDF,NF2,VHL,HCK,ASMT,ANXA1,MAN1C1,C9ORF3,TSSK1A,TSFM,JAK2,JAK3,MBTPS1,MRPL41,EIF2C1,B3GALT5,B3GALT4,RNF217,PTPN22,PTPN21,SHH,HTRA2,PLOD2,PLOD3,COL4A3BP,HRSP12,TRAK1,EIF2B2,CFD,EIF2B3,EIF2B4,EIF2B5,MRPL52,MRPL51,AARS,PIM1,PIM2,BOLL,UHRF2,HUWE1,RARS,TBRG1,SRP72,HS3ST3B1,GCNT4,GCNT3,IGF2BP2,PXK,PIN4,PXN,UHMK1,MRPL55,ZMPSTE24,AGRN,GAD1,GCNT1,BMP4,LCMT1,BMP1,PTPN18,CREBBP,PTPN14,SMAD4,PTPN13,CDC23,SMAD3,CDC20,PTPN12,ABCG1,ADPRH,CBLC,AHSA1,ABCF1,GYPC,SPG7,COPS5,WASF3,KIAA0368,WASF1,FASTK,CCNT1,CAMKK2,BAG5,BAG4,ZFYVE9,BAG2,ADAM10,ASTL,PSEN1,PSEN2,SIAH1,SIAH2,PMPCA,USP7,SHFM1,RPL27A,NFS1,SUFU,MRPL10,SUMO1,LECT1,SET,SQSTM1,CHM,SEPSECS,PCMT1,QSOX1,RRBP1,PTPRZ1,MEX3B,STAT1,EIF2B1,MIS12,MRPL23,PSMD14,MAPK12,MAPK15,RBM14,LOR,TUSC3,TLR1,TLR3,TLR4,UBQLN3,TLR6,TLR7,TLR8,DMPK,TLR9,IL31RA,SEP15,LOX,SPN,DARS,SOCS1,FUT10,CDKL3,STK4,STK3,CDKL5,TRAT1,TPTE,MAP4K3,MAP4K4,ADRM1,MAP4K5,CDKL1,RIPK3,PGCP,RIPK4,KALRN,FZR1,DERL2,DERL1,PPME1,SYVN1,ITLN1,MAP4K2,MAP4K1,ANAPC10,ANAPC11,SRC,B3GNT5,CTRC,PTPLA,SFTPD,RNF11,CLASP1,ERO1L,IVL,SRGN,RNF14,CTRL,PTPN7,PTPN6,PTPN9,PTPN3,PTPN2,PTPN5,UST,PTPN4,CD276,PSMC5,AKTIP,PSMC4,MYLK,D2HGDH,HPS4,TIMM50,AKT1,PIGK,ACVR1B,PIGF,PAK2,PIGG,GSN,HPSE,TPP1,TPP2,PIGH,POMT1,PIGB,PIGC,PAK1,CSK,LTB,AKT3,PIGA,AKT2,CTSZ,HSP90AA1,CCDC88A,PIGZ,PIGY,CCDC88C,PIGV,PIGU,MINK1,PIGT,PIGS,INHA,CTSS,DAPK2,DAPK3,PIGO,DAPK1,EIF4G2,CTSK,EIF4G3,MAGT1,SBF1,CTSO,HIPK3,TPPP,CTSB,CTSH,CTSG,CTSF,ING5,ING4,SCARF1,CPZ,GLRX2,SPRR2C,KRT7,KRT1,PTPRB,PTPRC,PTPRD,ERG,LTK,PTPRE,LIPA,B3GALT2,ISOC2,CENPJ,GSG2,GMFB,GMFG,SPRR1A,L2HGDH,SPRR1B,TSSK2,TSSK4,LIPC,TSSK3,TSSK6,LIPE,F2R +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html CAV1,ABCA2,ABCA1,ABCG1,APOA4,APOA2,NPC1,NPC2,APOA1,APOE,LCAT,PCSK9,CETP,CD24,ANGPTL3,AKR1C1 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html DIS3,NOLC1,DKC1,EXOSC7,RPS14,EXOSC2,EXOSC3,POP4,RRP9,GEMIN4,FBL +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html CYP3A4,UGT1A6,UGT1A9,NR1I2,AS3MT,UGT2B11,UGT2B4,NQO1,UGT2B15,UGT2B28,S100A12 +PWCOMMONS ESTABLISHMENT OF VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_VESICLE_LOCALIZATION.html SEPT5,SNAP29,STX5,SHROOM2,AP1M2,NLGN1,TMED10,LRMP,SNAP23,YKT6 +PWCOMMONS HEME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_BIOSYNTHETIC_PROCESS.html ALAS1,TSPO,ALAD,ALAS2,FECH,COX10,CPOX,NFE2L1,PPOX,COX15 +PWCOMMONS UNFOLDED PROTEIN RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/UNFOLDED_PROTEIN_RESPONSE.html ATF6,DERL2,DERL1,VCP,VAPB,ERN1,AMFR,EIF2AK3,DERL3,SELS +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html SEPT5,SEPT4,PARD3,PRC1,DIAPH2,AURKC,NUSAP1,BRCA2,BIRC5,ANLN,MYH9,DCTN3,RACGAP1,TGFB2,INCENP,RAB35,CNTROB,SEPT6,SEPT7,RASA1,MYH10 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html XRCC4,RP1,AQP9,ZAK,TACR1,COPS3,FGF16,MBIP,NR2E3,HVCN1,AKT1,GPX1,MC1R,CDKN2D,ACOT11,TRPV4,EIF2B2,EIF2B3,EIF2B4,EIF2B5,BRCC3,FECH,REV1,RELA,TOPBP1,LIG4,GMPR,CSDA,XRRA1,GTF2H2,SAG,PITPNM1,PNKP,PPM1D,RPAIN,TIMELESS,GRM6,DDB2,IL12A,MAPK8,ATPIF1,IL12B,NHEJ1,DYNLRB1,CLOCK,GCLC,POLA1,PML,TAC1,BRSK1,OPN1SW,CRNN,ABCA4,GLRX2,PDE6B,ERCC8,SNN,ERCC5,ERCC6,NPFFR2,BCL3,SERPINB13,ERO1L,ERCC3,IVL,ERCC4,FEN1,ERCC2,UNC119,TRPC3,NF1,UBE4B,SOD1,EIF2B1,ATM,CCL11,ACCN2,POLD1,PDC,CIRBP,SCARA3,CACNA1F,DNAJB4,SMC1A,GRK1,RHO,OPN4 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html BCL10,IL6,LYN,MAFB,HCLS1,LDB1,CEBPG,SPI1,CDK6,FOXO3,SOD1,AKT1,INHBA,ACVR2A,ACVR1B,RPS19,ALAS2,ETS1,DYRK3,ACIN1 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html SEPT5,RAB3A,SYT1,KCNMB4,SNCAIP,BAIAP3,NLGN1,SNAPIN,RIMS1,GRM4,HRH3,SYN3,CARTPT,TMED10,STEAP2 +PWCOMMONS RNA 3END PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_3END_PROCESSING.html TRNT1,NCBP1,CSTF3,CSTF2,GRSF1,PABPC1,CPSF3,CSTF1,CPSF1,SLBP +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CHIA,S100A7,VAPB,PGLYRP1,TLR3,APOBEC3G,TLR6,CXCL12,TLR7,APOBEC3F,IL10,TLR8,ISG20,CFP,NLRC4,PGLYRP4,PGLYRP2,PGLYRP3,IFNK,DNAJC4,SPN,BCL10,CRTAM,IL29,IFI44,HBXIP,LILRB1,WFDC12,CCDC130,HSPB7,HSPB1,AMFR,HSPB3,EIF2AK3,LALBA,DERL2,DERL1,FGR,ITLN1,CCL8,HSPA1B,DEFB127,CCL5,BANF1,SERPINH1,CCL4,DERL3,CHIT1,HSPA1L,SLC11A1,IFNA7,IFNA4,PRKRA,DNAJA1,HSPE1,HERPUD1,CREBZF,S100A12,ATF6,VCP,DNAJB2,DNAJB1,DNAJB4,DNAJB5,IL28RA,DUOX2,BNIP3,HSPH1,NOD2,NOD1,CXCR4,FOSL1,IFNGR2,IFNGR1,ABCE1,SPACA3,CAMP,TP53,NLRP3,IFNAR1,IFNAR2,TARBP2,C19ORF2,IL12A,ERN1,IL12B,TNF,POLA1,IFNW1,RSAD2,IVNS1ABP,AZU1,CCL22,HSPA2,BCL2,TOR1A,TOR1B,HSPA6,DEFB118,BCL3,CD24,PTPRC,DEFB103A,CCL19,STAB2,TRIM22,CCL18,SELS,CD1D,CCL11,STAB1,IRF7,GSK3B,BNIP3L,HSPA4L,DMBT1,IFNA17 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html MCHR1,ADORA3,ADCY7,WASF2,GABBR1,GABBR2,GHRHR,EDNRA,EDNRB,GALR1,GALR3,GALR2,CAP1,PRKACB,GLP2R,PTGER4,CRHR1,PTHLH,GRM4,CRHR2,ADRB2,GRM3,CHRM5,ADRB1,GRM2,GRM8,CHRM2,GHRH,CCR3,GRM7,GIPR,CCR2,GNAS,GLP1R,ACR,CALCR,AVPR2,DRD1,GNAI3,GNAI2,ADORA2B,DRD2,OPRK1,DRD5,NPY2R,FPR1,GCGR,ADCYAP1,GPR3,CALCA,ADRB3,ADRA2A,CAP2,OPRL1,NF1,NPY1R,P2RY11,RGS1,LTB4R2,MC4R,ADRA1B,GRK5,CORT,ADRA1D +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html ARFGAP3,ACHE,PPY,LTBP2,CADM1,ABCA1,DPH3,PDIA4,PYDC1,CANX,APOA2,NOD2,NLRC4,APOA1,ANG,INS,PYCARD,SRGN,DNAJC1,SCG2,SERGEF,CRTAM,CARD8,CIDEA,ARFIP1,NLRP3,FOXP3,NLRP2,BACE2,NLRP12,GLMN,ARL4D +PWCOMMONS PROTEIN KINASE CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_KINASE_CASCADE.html RPL17,VAPA,STAT5A,STAT5B,MAP3K7,MAP3K6,MAP3K5,MAP3K4,MYD88,MAP3K9,WNK4,CHRNA7,GNG3,MAP2K7,ADAM9,DBNL,TNIK,C5AR1,PIK3CB,KIAA1804,WNK1,WNK3,WNK2,CD40,MARK1,MARK2,ATP2C1,F2,CCR2,MAPK9,MAPK8,PIAS1,NEK6,IRAK1BP1,PTPLAD1,STK17B,DUSP10,AKAP11,STK17A,ADRB3,DUSP16,MDFI,TAOK2,LGALS1,MAP2K4,TAOK3,NDFIP1,DUSP22,NDFIP2,TPD52L1,OXSR1,ECM1,LGALS9,APOL3,NUP62,RGS3,RGS4,HGS,SLC20A1,GJA1,ZNF675,PTEN,DAXX,LATS2,CANT1,CAMKK2,NOD2,NOD1,TICAM1,TICAM2,TGFA,TMEM101,FGF2,SRPK2,LTBR,LYN,SRPK1,FLNA,CARD10,AMBP,PROK2,GRM4,MAST1,ZDHHC17,TNFRSF10B,LAX1,RIPK1,ZDHHC13,GADD45G,IL12A,MAP3K10,GADD45B,EEF1D,MAP3K13,MAP3K12,MAP3K11,NMI,C5,FPR1,MKNK2,TRIM13,TFG,MKNK1,FKBP1A,STAT4,SQSTM1,PLEKHG5,BCL3,CD24,CC2D1A,CD27,FYB,HCLS1,NLK,MAPK11,MAPK10,RICTOR,SOD1,STAT1,BIRC2,STAT3,STAT2,RPS6KA5,DUSP4,RPS6KA4,DUSP2,MAPK13,EPGN,FYN,RPS6KA2,MAPK14,C7ORF16,NLRP12,DUSP9,HTR2B,DUSP8,DUSP6,NRTN,SLC44A2,ZAK,STK38,ATP6AP2,TBK1,TSPAN6,TNFSF15,TNFSF14,FGF13,MBIP,TLR6,IL31RA,NLRC3,TMEM9B,MDFIC,MIER1,TDGF1,SPRED2,SPRED1,GPR89A,EDARADD,BCL10,IL29,SOCS2,BST2,MADD,GOLT1B,SOCS3,RELA,SOCS1,SOCS6,FADD,STK4,STK3,IL20,MAP4K3,TRIM38,MAP4K4,MAP4K5,PLCE1,MIB2,CARTPT,RIPK2,TNFAIP3,ERC1,PPP5C,TRAF2,FGFR1,CCL2,FGFR3,ADORA2B,LITAF,BLK,MAP4K2,UBE2V1,MAP4K1,CXXC5,MAPKAPK2,SRC,OTUD7B,ADRA2A,ADRA2C,TRAF7,TRAF6,EGF,TRAF5,STK38L,TEC,CFLAR,CARD8,CCM2,CARD9,MALT1,TRADD,TRAF3IP2,IKBKE,TNFSF10,PLK2,IKBKG,ADRA1B,ADRA1A,TRIP6,IL22RA2,PRKAG3,PRDX4,FASLG,PINK1,CXCR4,CLCF1,HMOX1,CASP8,RHOA,SHC1,RHOC,PAK1,CASP1,CHUK,RHOH,IRAK2,IRAK1,SGK2,PIGU,PKN1,MINK1,DAPK2,ECT2,DAPK3,NEK11,DAPK1,IFNAR1,UBE2N,SH2D3C,IFNAR2,ADRB2,SH2D3A,CRKL,ITGB1BP1,CD81,HIPK2,GHRL,PPM1A,TNFRSF1A,TMED4,REL,MAP3K3,SLC35B2,MAP3K2,REN,SCG2,GPS1,STAMBP,SECTM1,NF2,NF1,EDA2R,GSG2,GPS2,ICK,MAPK8IP2,MAPK8IP3,FAF1,MAPK8IP1,TIAF1,F2R +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html AIPL1,PIGZ,PIGY,PIGV,GPAA1,PIGU,PIGT,PIGS,PIGO,FNTB,PIGK,FNTA,PIGF,PIGG,ATG7,PIGH,CHM,PIGB,DPM1,PIGC,DPM2,DPM3,PGGT1B,PIGA +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html IQCB1,ZNF675,PF4,ZBTB16,FOXO4,SHH,CALCA,NPHP3,TWIST2,USH2A,BMP4,IL4,TBX3,MAFB,DTX1,LDB1,NF1,CDK6,SOCS5,INHA,GPR98,NOTCH2,INHBA,NOTCH1,EREG,NOTCH4,CARTPT,CNTN4 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RAB3GAP2,LTBP2,CADM1,MXI1,SSR1,RAE1,HOMER3,TRAK1,CEP290,TLK1,RPL11,KIF13B,CRTAM,CD3G,VPS45,VANGL2,OPTN,MYH9,COLQ,BACE2,PEX26,F2,BIN3,RTP3,RTP2,RTP4,NFKBIE,RTP1,PPT1,AKAP10,CALR,CDC37,UHMK1,CD74,INS,DUSP16,SUPT7L,SEC23IP,TRAM1,MDFI,NXF5,CIDEA,SMAD3,ARFIP1,ABCG1,GGN,NFKBIL2,CBLB,TRPS1,LGTN,RERE,PDIA3,PDIA2,TIMM17A,TIMM17B,AP3S2,PDIA4,GLI3,CANX,NOD2,ZFYVE9,COX18,KDELR1,AP3B1,TOMM34,KDELR2,RPGR,TP53,FLNA,ZDHHC17,NUP205,TOMM20,TOMM22,TMSB4Y,NUP107,ARL4D,SHROOM2,SHROOM3,NAGPA,NUP214,PEX19,SQSTM1,DDX19B,PEX16,AP3D1,BCL3,PEX14,PEX13,BCL6,CD24,PEX12,PEX10,APBA1,FYB,SERGEF,UPF2,UPF1,NLGN1,PPP1R10,BIRC5,SELS,GABARAP,COG3,YWHAH,COG7,GSK3B,RAB35,NLRP12,SSR2,BARD1,COG2,NCBP2,TSPO,XPO6,AP1G1,LMAN2L,TNFSF14,EIF5A,MIPEP,AGXT,TGFB1,KLHL2,AIP,NLRC4,APOA2,APOA1,DDX25,DNAJC1,CUTA,EGFR,NUP133,MCM3AP,MYO6,STAP1,NUDT4,HNRNPA2B1,LRP1B,ERP29,NUPL2,DDX39,RPAIN,BAT1,SNX9,ACHE,ARFGAP3,DERL2,PPY,DERL1,CTSA,ABCA1,PYDC1,NPM1,ANGPTL3,SRGN,CARD8,TAF3,SMG6,SMG5,CKAP5,SMG7,SMG1,SNAPIN,ICMT,REEP1,FOXP3,NFKBIL1,TRNT1,PPIH,VCP,TSC1,PTTG1IP,GLMN,TRIP6,XPO7,HPS4,PEX6,PEX3,DPH3,PEX7,AKT1,PEX1,ANG,ZFYVE16,NCKIPSD,RANBP2,TPR,KPNB1,KHDRBS1,TOPORS,TIMM23,NLRP3,TIMM44,NLRP2,MFN2,ATG4D,ATG4C,ATG4B,ATG4A,CD81,ARCN1,C3ORF31,KPNA6,KPNA5,KPNA4,KPNA3,KPNA2,KPNA1,TNF,AP1M2,NUP160,CDH1,SEC63,CEP57,AP3M1,TAP2,PYCARD,SCG5,APPBP2,ERCC3,TNPO1,SCG2,NF1,MAL,CBY1,TMEM48,TRPC4AP,FAF1,GGA1,F2R +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html RTP3,CYB5R4,OR52A1,C5AR1,RTP4,TAS2R4,TAS2R5,OMP,TAS2R3,UBR3,TAS1R3,TAS1R1,TAS1R2,OR1D2,SLIT2,OR1D5,TAS2R16,TAS2R14,TAS2R43,GNAS +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html SREBF1,NUAK2,FADS1,TP53,ASNS,EIF2B1,PPP1R9B,CHMP1A,CDKN1A,CDKN2B,ALB,GSK3B,PCSK9,CARTPT,EIF2B2,EIF2AK3,EIF2B3,EIF2B4,EIF2B5 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html BBS4,KIF11,CROCC,CKAP5,CETN3,BRCA2,CETN1,CP110,UXT,SASS6,NDE1,CEP250,SAC3D1,CNTROB,NPM1,TUBE1 +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html E2F1,TAF1,CDC6,TBRG4,CDC23,CDK6,CDC25C,FOXO4,CDK2,CDKN1C,GFI1B,CDK10,MAP3K11 +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html ST6GALNAC6,CLN3,LARGE,GLA,PSAP,UGCG,ST8SIA5,ST8SIA1,ST8SIA3,NEU3,CLN6,B4GALNT1 +PWCOMMONS REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SLC2A4RG,XRCC6,HOXD13,MED23,RORB,REST,MED21,MED20,ZNF254,CITED1,CITED2,EPC1,MED26,FOXF1,MED27,FOXF2,VPS4B,PQBP1,ZNF396,PATZ1,IKBKAP,ZNF45,PCBD2,RREB1,RXRA,ZHX1,MECP2,MED12,ZHX2,ZHX3,MED14,HNF4G,MED13,NME2,HNF4A,ZNF238,MED17,SMARCAL1,TGIF1,MYBBP1A,TRAPPC2,ZNHIT3,CRTC1,ZNF76,VPS72,FOXH1,HEXIM2,HEXIM1,ZNF74,TCF4,VEZF1,TCF3,ARHGEF10L,UTF1,TCF7,KLF12,MAP2K3,KLF10,KLF11,ESRRG,TFCP2,MZF1,HNF1B,ELF1,ELF2,HTATIP2,HNF1A,ELF4,EZH2,SPI1,TP63,ZNF345,DAXX,ZNF350,ZNF148,CREG1,ZNF146,BRD7,SPIB,HSF4,MYC,TAF1L,BRD8,ATF7IP,ZNF281,ZNF282,PTF1A,TP53,NDUFA13,ZNF143,FOSB,GTF2H1,ARHGEF11,MYCN,MXD4,JMY,CIAO1,INHBA,PFDN5,ZNF136,C19ORF2,RUVBL1,NSD1,CLOCK,ZMYND11,ZNF274,CREM,ZNF367,NUFIP1,ZNF35,ZNF177,ZNF174,LIMD1,SUPT4H1,FOXD3,ZNF263,IL4,MYF6,LMX1B,TRIM28,MYF5,TRIM27,TNP1,ELAVL2,PHF12,TRIM22,TP73,ATRX,RPS6KA5,MNAT1,ZNF157,RPS6KA4,RBAK,FOXE1,TCEB3,PHF5A,TCEB1,NR5A1,MMS19,TCEAL1,TGFB1,SMARCD2,SMARCD3,MDFIC,SMARCD1,SCRT1,BCL10,ZNF593,HDAC10,ARID1A,CSDA,JUNB,DDIT3,PA2G4,HIF1A,SMARCE1,TCFL5,MNX1,SMARCA5,TFAP2B,EDF1,TFAP2A,TFAP2C,SMARCA1,SMARCA2,HMGB1,EID1,CNBP,HMGB2,LITAF,UBE2V1,ABCA2,NR2C2,CXXC1,MEIS2,SMARCB1,RPL6,TEAD4,SNF8,JUND,HELLS,TFDP1,EPAS1,TAF8,NEUROG1,BRIP1,ATF6,HDAC5,ATF5,HDAC4,ATF4,NRF1,HDAC2,SMARCC1,DYRK1B,ATF7,SMARCC2,PRKAR1A,ABL1,HDAC8,E2F1,FOSL2,RSF1,ARID4A,E2F6,DEK,ZNF202,CTCF,PAWR,TMF1,PAX8,LRRFIP1,FOSL1,NFX1,ARID5B,SLA2,ARID5A,ESR2,CDK7,RB1,HMGA2,HMGA1,PRPF6,TARBP1,TARBP2,NCOA6,ZFPM2,JMJD1C,CARM1,NFYC,NFYB,NFYA,HIC1,TFAM,ORC2L,TSC22D3,CHD2,CHD1,NFATC2,NFATC3,CHD4,CHD3,NFATC1,VHL,CEBPG,CREB5,DBP,ID4,FST,HIRA,SIN3A,TRAK1,RARB,SUPT5H,TWIST2,PITX2,TWIST1,YY1,TAF6L,PPARGC1B,UHRF1,MTF1,PRDM1,AFAP1L2,CALR,PLAGL1,DRAP1,HTATSF1,MAML3,BCOR,NKX2-5,TCF25,MDFI,BMP2,KLF7,IKZF3,KLF9,SUB1,MAML1,MAML2,CREBBP,SMAD4,RYBP,SMAD3,SMAD2,UBP1,NOTCH2,RNF4,NOTCH4,JAZF1,TCF19,RBPJ,TCF12,ZFHX3,KLF4,TCF15,BMP6,ZBTB32,PPARD,TBX22,TBX21,PPARG,ZEB1,NFKB2,HSBP1,GLI2,GLI1,ZBTB38,KCNIP3,BLZF1,GFI1B,NR2F2,TBX10,ZNF354A,CCNH,RBBP8,SCAP,MED6,CTNNBIP1,MED7,CHMP1A,RIPPLY1,SRCAP,TBX19,MED1,POLR2L,POLR2K,EHF,ZBTB16,SUFU,MRPL12,SQSTM1,NR1D2,GATAD2A,PEX14,BCL6,MLLT6,POLR3G,TBX3,TBX2,TBX5,HCLS1,ILF3,POLR3C,SNAI2,STAT3,SOD2,STAT2,PREB,ILF2,UBTF,NEUROD2,PHF21A,PBX1,RBM14,PBX3,PBX4,MYOD1,CRABP2,FOXO1,FOXO3,FOXO4,GATA1,HOXC6,GATA6,HOXC5,GATA4,MYST2,GABPB2,MYO6,FOXN1,ZNF189,ARNTL,NR0B2,NR0B1,ELL3,TRERF1,FOXN3,AHR,TIAL1,TFAP4,ELK1,RUNX1,RNF14,SREBF1,NFE2,SAP18,SNW1,GSC2,FOXP3,BRCA1,SREBF2,GCM1,DNMT1,MAFA,SOX21,POU6F2,FOXK2,NR6A1,BUD31,MEN1,FOS,POU5F1,POU4F2,POU4F1,SOX18,MKL2,ELP4,ELP3,NANOG,ELP2,SP100,LDB1,SOX12,UBN1,NRIP1,BPTF,ZMIZ2,MDM2,MDM4,CUX1,ZFP161,SUPT3H,ING4,GLIS3,ING2,TNF,GLIS1,HCFC2,TCF7L2,TNFRSF1A,NPAS2,POU2F3,GFI1,ERCC3,ERCC2,ENO1,ERF,SOX30,SIRT4,SIRT5,CBY1,SIRT1,SP1,SP2,SP3,DR1,IRF7,SP4,IRF8,THRAP3,IRF2,CRK +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html HS3ST6,C9,HS3ST5,DERL1,VAPB,SMAD3,RRAGA,TGFB1,CLEC4M,TARBP2,WWP2,ALB,CD209,WWP1,CD81,ACE2,ITCH +PWCOMMONS REGULATION OF RHO GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_GTPASE_ACTIVITY.html FGD2,ALS2,FGD1,TSC1,RALBP1,ARHGAP27,FGD5,FGD6,FGD3,FGD4 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html NCBP1,RNMT,CRNKL1,CWC15,SNRPD1,SNRPD2,SMNDC1,RNGTT,NONO,SFRS6,SFRS7,SFRS4,SFRS5,DHX38,SFRS8,SFRS9,LSM5,LSM3,DDX20,LSM1,KHDRBS1,SRPK2,PRPF31,EFTUD2,PTBP1,SF1,SFRS1,HNRNPR,PPARGC1A,SRPK1,SFRS2,DDX39,KHSRP,CPSF6,SLU7,CPSF3,SIP1,CPSF1,BAT1,TRA2A,KIN,SF3B3,USP39,NUDT21,DHX15,GEMIN8,PABPC1,SFRS2IP,GEMIN6,GEMIN7,SFRS11,SPOP,GEMIN5,CSTF3,CSTF2,GRSF1,SNW1,ELAVL4,PRPF18,SF3A2,SF3A1,HNRNPA0,SLBP,SF3A3,SFPQ,PHF5A,CSTF1,TXNL4A +PWCOMMONS MACROMOLECULE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_BIOSYNTHETIC_PROCESS.html RPL18,MRPL41,RPL19,EIF2C1,B3GALT6,RPL14,B3GALT5,RPL13,B3GALT4,RPL15,EIF1AX,TRAK1,HRSP12,RPL11,OGT,EIF2B2,EIF2B3,EIF2B4,EIF2B5,MRPL52,MRPL51,YARS,AARS,EIF2S3,PPARGC1A,BOLL,SARS2,GLCE,CD37,EIF2AK1,RPS19,RPS17,HAS1,RARS,BACE2,RPS12,RPS10,RPS11,EXT1,EXT2,EIF2AK3,EIF2AK4,HS3ST3B1,LALBA,GCNT4,GCNT3,GCNT2,KEL,FARS2,PABPC4,PFKFB1,IGF2BP2,MTIF2,MTIF3,IL17A,RPS27,IL17F,GYS2,MRPL55,GCNT1,MGAT4B,MGAT4A,UAP1,PAIP2,PAIP1,RPS9,RPS5,RPL18A,GHSR,ALG12,ABCF1,GYPC,LDLR,COPS5,EIF2A,ACN9,YBX2,POMGNT1,NOD1,XYLT1,CHST12,CHST11,EEF2K,CHST13,MRPL3,PRG3,NDUFA13,EIF1B,SIGIRR,INHBB,EIF4A3,INHBA,MAST2,EREG,RPL41,MTRF1,EIF4A2,FARSB,RPL3L,RPS4Y1,IL12B,DOLPP1,SERP1,TUFM,NACA,FUT9,FUT8,FUT7,FUT6,FUT5,GPAA1,UGDH,RPL27A,RPL35,RPL37,RPL38,RPL39,NECAB3,STT3B,AZU1,PET112L,MRPL10,RPL30,STT3A,RPL31,RPL34,MPDU1,SEPSECS,CHM,BCL3,MARS2,FUT4,FUT1,DAZL,TSTA3,FUT2,CD28,IL4,IL6,DAZ1,UPF1,RRBP1,IL9,RPL26,RPL24,ETF1,EIF2B1,RPL28,RPL29,COG3,MRPL23,COG7,LARGE,RPL22,RPL21,DPM1,NLRP12,DPM2,DPM3,LRP2,APBB1,COG2,TUSC3,IL18,HBS1L,TLR1,EIF5,TLR3,EIF5A,TSPAN7,RPS6KB2,TSPAN8,TLR4,TLR6,TLR7,TLR8,IL10,TLR9,FNTB,APOA2,FNTA,APOA1,B3GALNT1,ATG7,DDX25,RPN1,EIF1,SAMD4A,SPN,NANP,EBI3,BCL10,IL29,DARS,IL27,FUT10,HSPB1,ST8SIA3,ST8SIA2,KARS,EIF3C,EIF3D,B3GNT8,EIF3A,EIF3B,B3GNT5,RPL7,EIF3G,EIF3H,RPL6,RPL9,EIF3E,RPL8,EIF3F,SFTPD,RPL3,RPL5,EIF3I,DYRK2,RPL7A,EIF3J,RPL4,B4GALT7,PGGT1B,GAL3ST1,SDF2,B4GALT1,AIPL1,EEF1A1,MRPS24,CD276,RPL23A,FOXP3,FURIN,EIF4B,B3GAT2,ATF4,TSC1,SLC25A10,ST8SIA4,EIF4H,GLMN,METAP1,NDST1,ALG1,ALG2,DPH1,ALG5,ALG6,ALG8,RPS2,RPS3,WARS,PIGK,ALAS2,PIGF,RPS3A,PIGG,PIGH,POMT1,PIGB,PIGC,TNIP1,LTB,PIGA,PIGZ,PIGY,MAN1A2,PIGV,PIGU,CHST3,PIGT,PIGS,INHA,MRPS7,ALK,PMM2,PIGO,EIF4G2,EIF4G3,MAGT1,CHST7,CHST6,CHST9,CHST8,GHRL,DHPS,TM4SF4,TM4SF5,GALNT2,GALNT1,HS3ST5,GALNT7,GALNT6,GALNT5,TNFRSF8,PAIP2B,KRT7,HS6ST1,A4GNT,PTPRC,LIPA,GMDS,B3GALT2,ASMT,CEBPG,GYG2,MAN1C1,GCK,TSFM,IRF4,LIPC,POFUT1 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html ACR,CALCR,AVPR2,DRD1,ADORA3,ADORA2B,ADCY7,DRD5,GHRHR,ADCYAP1,GPR3,EDNRA,CALCA,ADRB3,CAP1,CAP2,CRHR1,PTHLH,ADRB2,P2RY11,ADRB1,GHRH,GIPR,GNAS,GLP1R +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CHIA,S100A7,IL28RA,DUOX2,PGLYRP1,BNIP3,TLR3,APOBEC3G,TLR6,APOBEC3F,CXCL12,TLR7,TLR8,IL10,ISG20,CFP,NOD2,NLRC4,NOD1,PGLYRP4,CXCR4,PGLYRP2,PGLYRP3,IFNK,IFNGR2,FOSL1,IFNGR1,SPN,BCL10,ABCE1,SPACA3,IL29,CAMP,IFI44,HBXIP,IFNAR1,LILRB1,TARBP2,WFDC12,IFNAR2,CCDC130,C19ORF2,IL12A,LALBA,TNF,FGR,ITLN1,POLA1,CCL8,IFNW1,RSAD2,DEFB127,IVNS1ABP,CCL5,BANF1,CCL4,CHIT1,AZU1,SLC11A1,CCL22,IFNA7,BCL2,PRKRA,IFNA4,DEFB118,BCL3,CD24,PTPRC,CREBZF,DEFB103A,CCL19,STAB2,TRIM22,S100A12,CD1D,CCL11,STAB1,IRF7,BNIP3L,DMBT1,IFNA17 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html KHDRBS1,NCBP2,NUP133,UPF2,UPF1,SMG6,NUDT4,NUP160,SMG5,NXF5,SMG7,SMG1,EIF5A,DDX39,TSC1,RAE1,DDX25,DDX19B,NUP107,BAT1 +PWCOMMONS LYSOSOMAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOMAL_TRANSPORT.html ARSB,NPC1,NAGPA,ADRB2,AP3M1,LYST,ZFYVE16,USE1,RHOB,M6PR +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html GNPDA1,BTRC,PGD,USE1,RNASEH1,RNF217,ISG20,CDKN2A,MIOX,CPA2,FBXO22,ANAPC2,ANAPC5,DFFA,DFFB,ANAPC4,CECR2,UBR3,RNASEH2A,GNS,PGLS,UHRF2,UBR5,MGAM,FBXL4,AMFR,XRN2,ALDOA,DERL2,FZR1,SYVN1,DERL1,ALDOB,PFKFB1,PABPC4,PPT1,UBE2V2,NEDD8,ANAPC10,HSPA1B,CHIT1,ARIH1,UBE2D3,UBE2D2,INS,RNF11,UBE2D1,NTHL1,FBXO7,NPLOC4,SMG6,SMG5,GUSB,SMG7,SMG1,CIDEA,CDC23,TPD52L1,PCNP,CDC20,UBE2L3,PSMC5,VCP,POP1,HGS,SMURF2,SMURF1,UBE2E1,KIAA0368,TSG101,UBE2G1,UBE2G2,BNIP3,AUH,TREH,ZFP36,ABCE1,SPACA3,UBE2A,PFKL,UFD1L,AIFM1,CYCS,UBE2I,PRKCG,UBE2H,PFKM,UBE2C,HYAL4,UBE2B,UBE2N,UBE2K,GAA,ERN2,MDM2,SIAH1,MDM4,SIAH2,UBB,UBE3A,EGLN2,HK1,TKTL1,STUB1,EDEM1,ERCC5,SQSTM1,RNASET2,PRSS2,ECD,ERCC3,ERCC4,USP33,ERCC1,ERCC2,RNF144B,FOXL2,UPF2,RNASE2,RNASE3,UBE4A,UBE4B,RNASE6,PARK2,SOD1,SELS,GBA3,GAPDHS,GBA2,PSMD14,GSPT1,PPP1R8,BAX,FAF1,PYGB +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html BCAT1,ALDH18A1,PRG3,PAH,CDO1,BBOX1,TGFB2,PYCR1,OAZ1,PLOD1,ASMTL,ETNK1,SULT1A2,MAT2B,SLC5A7 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html IL4,PTPRC,CD3E,IL7,IL18,CD276,SOCS5,IL21,SART1,THY1,CD47,NCK2,SIRPG,NCK1,LCK,ZAP70,CD24,IL12B,ICOSLG,EBI3,CD28 +PWCOMMONS NEUROLOGICAL SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROLOGICAL_SYSTEM_PROCESS.html SYT1,RP1,UTS2,SYT5,RP2,PITPNA,KIFC3,ATP2B2,HTR1B,GRIN2B,APOE,CHRNA5,CHRNA4,CHRNA7,CHRNA6,CHRNA1,EIF2B2,HTR1D,HTR1F,EIF2B4,HTR1E,CDH23,EIF2B5,OPA3,CLRN1,OPA1,C5AR1,CRYAA,SCN2B,KIF5A,STRN4,KRT12,GRIN2A,BSN,UBR3,OR1D2,OR1D5,SAG,PITPNM1,MAPK1,DOC2A,COLQ,TACSTD2,HTR7,HTR6,NPTN,PMP22,KCNMB3,IQCB1,RTP3,KCNMB4,SCN1B,CALY,CYP1B1,RTP4,RBP3,PXK,GPR143,OTOR,MYO9A,RIMS1,KCNMB1,KCNMB2,HCRTR2,NPHP3,HCRTR1,GAD2,SYPL1,MYO15A,IMPG1,IMPG2,GAD1,RLBP1,HAP1,COL18A1,GNAT1,TECTA,GUCY2F,UNC119,TRPC3,PCDH15,CRYZ,HOMER1,KCNK3,GUCY2D,SFRP5,TULP2,TULP1,NPY,RAPSN,CHRNB4,CHRNB3,QPRT,CHRNB1,RIT2,CHRNE,CRYM,GRK1,OPRM1,GJA8,PPARD,OR52A1,GLRA1,TAS2R4,TAS2R5,TRPV2,USH1G,MYO7A,TAS2R3,TAS1R3,TAS1R1,KCNIP1,TAS1R2,GJA3,DFNB31,CRYBB1,RDH8,TYR,FXN,NMUR1,NMUR2,COL11A1,CRYBB3,DNAJC19,USH2A,SCN10A,CRYBB2,PCDHB9,KCNMA1,RPGR,GPR176,PRG3,PCDHB5,ZNF354A,CCKBR,PCDHB6,PCDHB3,NPBWR1,PCDHB4,NPBWR2,PI4KA,PCDHB2,CDS1,GRM1,STX1B,SLIT2,GPR98,RDH5,AMIGO1,GRM5,SLC26A4,PROK2,GRM4,GRM3,SLC26A5,GRM2,GRM8,GRM7,OTOF,USH1C,GNAS,CRYBA1,CRYBA4,RAB3A,SORD,OPN1LW,SHROOM4,OPRK1,PCDHB14,PCDHB13,HPRT1,PCDHB11,PCDHB10,GCH1,AMPH,BEST1,PCDHB16,ARR3,CHM,KCNE1,CD24,HTR3A,HTR3B,APBA1,DTNA,DFNA5,OPRL1,OPN1MW,NLGN1,GJB6,SOD1,GABARAP,GJB2,ACCN1,YWHAG,YWHAH,ACCN3,GRIA2,CHML,GRIA1,MYCBPAP,CTNS,ATP6V0A4,HTR2C,HTR2A,OPN4,SEPT5,OCLM,KCNC4,SNCAIP,GRIK1,SLC6A1,WFS1,GRIK2,SLC6A2,GABRB2,SLC6A4,GRIK4,RCVRN,RPE65,CNP,NR2E3,CNGB1,VIPR1,CNGB3,GDNF,TGFB2,CRYGA,CRYGD,GALR3,TGFBI,TIMM9,GALR2,NQO1,RGR,COCH,MYO6,KCND2,MYO3A,BAIAP3,SIX3,VAX2,CNGA3,NTSR1,SIX6,NTSR2,TIMM8B,CNGA1,GABRR2,CBLN1,GABRR1,AKAP5,CARTPT,SRI,DRD1,ADORA2A,DRD2,DIAPH1,KCNA1,DRD4,OPN1SW,ABCA4,ATP6V1B1,RABGGTB,RABGGTA,PDE6A,PDE6B,PDE6C,PRR4,PDE6D,NOVA1,AIPL1,MYO1A,FSCN2,CPNE6,EFEMP1,OMP,SNAPIN,PDE6H,PDE6G,PDE7B,MTNR1B,CACNA1E,CACNA1F,WDR1,CORT,SST,CACNA1B,RHO,CYB5R4,RRH,POU6F2,PAX6,PAX3,GABBR2,PAX2,CRX,MBP,KCNQ5,KCNQ4,SLC1A2,SLC1A3,KCNQ3,SLC1A6,POU4F3,DLG4,KCNQ2,SLC1A1,KCNQ1,TAAR5,NPFF,RS1,RAX,EML2,EYA3,TAS2R16,EYA4,EYA1,DHRS3,ALDH7A1,TAS2R14,KIF1B,NRL,GHRL,CNTN4,UBB,AOC2,OAT,ALDH9A1,ROM1,ABLIM1,HCRT,CPLX1,LUM,NDP,NDUFB9,TIMM10,CABP4,AKAP9,TIMM13,CALCA,CD9,NPTX1,SYN1,HRH3,SYN3,SYN2,POU3F4,TAS2R43,GCHFR,COL4A4,COL4A3,GUCA1A,GLRB,PLP1,KLK8,GUCA1C,MPZ,NF1,MAL,DBH,RGS16,PRPH2,VSX1,RDH12,RDH10,ATXN3,PNOC,KCNN1,ATXN7,KCNN3,SLC6A5,PDC,CRH,SLC5A7,TBL1X,CHRNA10 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html FGD2,FGD1,CDC42EP2,CDC42EP1,TAOK2,CDC42EP4,FGD5,MYH9,FGD6,FGD3,FGD4,CDC42EP5 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html EGFR,REPS2,GRB2,BCAR1,CBL,AFAP1L2,RPS6KA5,EPS15,NCK2,CDH13,CBLC,EREG,EPS8,ERBB2IP,EPGN,GAB1,TDGF1,TGFA,SHC1,SHC3,EGF,GRB7 +PWCOMMONS AMINO ACID DERIVATIVE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_BIOSYNTHETIC_PROCESS.html OAZ1,GATM,PRG3,ASMTL,ETNK1,GAMT,SLC5A7,CDO1,BBOX1,TGFB2 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html MED12,MED24,IGF1,MED14,ARID1A,MED13,ESR2,RBM9,DAXX,CALCOCO1,PPARGC1B,MED4,YWHAH,MED30,MED16,UBR5,MED17,THRAP3,DDX54,MED1 +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html SREBF1,PPP1R9B,CDKN1A,CHMP1A,NUAK2,CDKN2B,ALB,FADS1,TP53,CARTPT,PCSK9,ASNS +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html NOD2,CARD8,ACHE,CRTAM,CADM1,ANG,INS,PYCARD,GLMN,NLRP3,PYDC1,NLRP2 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html CDC6,SPHK1,SMAD3,AFAP1L2,ASNS,BIRC5,RCC1,CDC25C,CDK2,TGFB1,CHMP1A,CDKN2A,CDC123,BTG3,MYO16,FBXO5,CDK10,FOXC1,APBB2,APBB1,DLG1 +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html ADSS,CTPS,FIGNL1,NUDT5,OLA1,ACLY,AK5,AMPD3,UMPS,ADK,C16ORF7,ENTPD4,CTNS,GUK1,NDUFS1 +PWCOMMONS BIOPOLYMER MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_MODIFICATION.html PPP2R5C,MYLIP,BTK,MAP3K6,ISG15,MAP3K9,MAP3K8,ILK,TLK1,OGT,TLK2,MAP2K6,PTPRJ,IKBKAP,MCRS1,PTPRM,BRAF,ROCK1,ROCK2,KIAA1804,PTPRH,PTPRR,PTPRT,PTPRU,MARK4,PTPRO,MARK1,MARK2,PPP1CA,EIF2AK1,MAPK6,MAPK4,BACE2,MAPK3,F2,UBL4A,MAPK8,EIF2AK3,EIF2AK4,GGCX,PPP2R3B,PPP2R3A,ERBB3,ERBB2,DUSP10,DUSP12,IL17A,DUSP13,TNKS,DNMT3B,MGAT4B,DNMT3A,MGAT4A,TGFBR1,PHB,EPM2A,MGC42105,TAOK3,DUSP22,PCNP,CDC42BPG,UBA3,CDC42BPA,TNK1,PARP3,SMURF1,PARP4,TNK2,PARP1,PARP2,CDC42BPB,SEPHS1,LDLR,NUAK2,TSG101,CUZD1,PMVK,LATS1,LATS2,POMGNT1,MSRA,ATF7IP,SRPK2,LYN,MMP15,SRPK1,CCND1,MAST1,CARD14,MAST2,CCND3,PPEF2,CCND2,PPEF1,IL12A,CAND1,TXK,DOLPP1,USP25,NSD1,NNAT,ABI3,MKNK2,GPAA1,ABI2,MKNK1,ABI1,MTMR3,NAGPA,SNRK,PTK2B,PPP2CA,PPP2CB,MPDU1,PCSK9,PCSK5,USP33,MTMR7,IL3,IL5,TRIM23,NAE1,DUSP5,ATRX,CCL11,RPS6KA5,QPCT,DUSP4,DUSP3,DUSP2,RPS6KA4,CSNK1D,LARGE,CSNK1E,GSK3B,ARAF,WHSC1L1,NLRP12,DPM1,DPM2,DPM3,LRP2,DUSP9,DUSP8,DUSP6,PRPF4B,STK38,ZAK,STK36,TSPAN7,TSPAN8,MIPEP,TGFB1,FNTB,CSNK2A1,FNTA,ATG7,B3GALNT1,TDGF1,ST3GAL6,RPN1,RPN2,FBXO22,INSR,MATK,EGFR,BCL10,RET,TWF1,MYO3A,IL29,PTPRN2,HDAC10,HDAC11,IL20,EP300,RNF139,TESK2,UBA52,FBXO11,STK16,PHKA2,PAM,CCL2,FGR,STK11,STK10,UBE2V1,UBE2V2,ST8SIA3,MAPKAPK2,ST8SIA2,RABGGTA,ECE2,FBXW7,METTL1,PTK6,FBXW2,DYRK3,TRAF7,DYRK2,TRAF6,STK19,LIPT1,B4GALT7,HELLS,SDF2,TEC,TAF1,AIPL1,EHMT1,MOBKL1A,SMG1,ICMT,ATG3,FURIN,GLYCTK,NMT2,IKBKE,NMT1,PLK4,PLK3,TSC1,ST8SIA4,DYRK1B,DYRK1A,ABL1,MERTK,ABL2,HDAC6,ALG1,ALG2,UCHL1,PRDX4,PINK1,ALG5,ALG6,DPH3,FES,ALG8,PRMT1,NDUFS4,PRMT2,PRMT7,PKN3,PRMT8,CLCF1,PRMT5,LOXL2,MAN2B1,LOXL1,PPP2R1A,SGK1,MAN1A2,SGK3,LIMK1,PKN2,CDK9,PKN1,PADI4,NEK11,PPM1G,PPM1D,CHRM3,CHRM1,LCK,ERN1,DDB2,CDK2AP1,ERN2,UBB,RAGE,PPM1M,CARM1,TM4SF4,PPP2R2A,TM4SF5,ACVR1,GALNT2,GALNT1,HS3ST5,GALNT7,APH1A,ADAMTS13,GALNT6,APH1B,BRSK2,PPM1B,BRSK1,STUB1,IGF1R,PRSS3,A4GNT,NSUN2,DCLK1,RNF144B,NF2,PDF,VHL,HCK,CBL,ANXA1,RAF1,MAN1C1,NCSTN,ICK,TSSK1A,JAK2,JAK3,DZIP3,B3GALT5,B3GALT4,AURKC,PTPN22,RNF217,PTPN21,AURKA,PRKG2,PRKG1,SLC35A1,PRKX,PRKY,PLOD2,WWP2,WWP1,WNK4,COL4A3BP,PLOD3,TRAK1,PSENEN,GTPBP4,BCR,PIM1,WNK1,WNK3,WNK2,PIM2,PPARGC1A,CD37,UHRF2,CAMK4,HUWE1,CAMK1,SRP72,AMFR,NEK4,NEK6,FBXL2,TPST1,GCNT4,TPST2,GCNT3,KEL,STK17B,PXK,STK17A,UHMK1,EPHB2,VRK1,VRK2,GAD1,GCNT1,BMP4,PLAT,LCMT1,PTPN18,FBXO2,CREBBP,PTPN14,PTPN13,OXSR1,PTPN12,ADPRH,EPHA5,CBLC,EPHA8,ALG12,ADAR,GRK1,GYPC,ACVRL1,FASTK,CCNT1,DMAP1,PTEN,SENP7,ART1,CAMKK2,ART3,PDPK1,PARN,CTBP1,ADAM10,PSEN1,PSEN2,MAP3K10,CTDP1,MAP3K13,MAP3K12,MAP3K11,SERP1,USP7,PPP6C,FUT9,ATG12,FUT8,FUT7,FUT6,FUT5,NFS1,STT3B,SUMO1,STT3A,SET,GATAD2A,THG1L,CHM,FUT4,PRKAA1,FUT1,PCMT1,FUT2,PRKAA2,QSOX1,CSNK1A1,AGA,FYB,PTPRZ1,MEX3B,HCLS1,STAT1,COG3,TP53RK,COG7,MAPK12,MAPK15,C7ORF16,PPP2R4,PTCH1,RBM14,COG2,LOR,MYOD1,TUSC3,APOBEC3G,SAE1,UBQLN3,TTN,APOBEC3F,DMPK,IL31RA,LOX,PRKACB,MYST1,MYST4,MYST3,CSNK1G2,SOCS1,FUT10,PICK1,CDKL3,STK4,STK3,CDKL5,TPTE,MAP4K3,MAP4K4,MAP4K5,CDKL1,RIPK3,DSP,CSTA,CSNK1G3,RIPK4,ERC1,PPP5C,KALRN,PPME1,SSH1,ITLN1,SSH2,MAP4K2,MAP4K1,NEDD8,ITGB2,ANAPC11,IRAK3,B3GNT5,PTPLA,LMTK2,RNF11,ERO1L,UBE2D1,STK38L,IVL,RNF14,GAL3ST1,PGGT1B,PTPN7,P4HB,PTPN6,PTPN9,PTPN3,PTPN2,UST,PTPN5,PTPN4,BMX,SSB,BRCA1,AKTIP,ULK1,DNMT1,PHEX,MYLK,UBE2E2,IL22RA2,UBE2E1,METAP1,METAP2,PRKAG1,TIMM50,AKT1,PIGK,ACVR1B,FOS,PIGF,PAK2,PIGG,POMT1,PIGH,PIGB,PIGC,PAK1,CSK,AKT3,CHUK,PIGA,VCPIP1,AKT2,IRAK2,PIGZ,CCDC88A,PIGY,CCDC88C,PIGV,PIGU,PRKCI,MINK1,PRKCH,PIGT,PRKCG,PIGS,CHST4,CHST5,UBE2C,ALK,DAPK2,PRKCE,PRKCD,DAPK3,PIGO,DAPK1,UBE2N,PRKD1,TYK2,MAGT1,EVPL,SBF1,CD80,HIPK3,CD81,MDM2,PRKD3,ING5,FRK,PRKCZ,ING4,PPP4R2,HAT1,PRKDC,UBE3C,TRIB2,GLRX2,TRIB1,ERCC8,MAP3K3,MAP3K2,TGM3,SCG5,CAMK2B,TGM5,YES1,CAMK2A,PTPRB,PTPRC,PTPRD,ERG,PTPRE,LTK,LIPA,B3GALT2,MAP1D,UBE4B,SIRT4,SIRT5,SIRT6,PARK2,SIRT1,SIRT2,GSG2,SIRT3,GMFB,GMFG,SPRR1A,SPRR1B,TSSK2,BMPR1B,LIPC,TSSK4,POFUT1,TSSK3,IGFBP3,TSSK6,LIPE,F2R,BMPR1A +PWCOMMONS TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSPORT.html USE1,ITSN1,RAE1,VPS4B,VPS4A,KIF5B,SCN2B,KIF5A,PDPN,VPS45,SCN2A,MYH7,MYH6,MYH9,GLTP,NPC1,NPC2,RYR3,F2,RYR1,MYBBP1A,GC,ORAI1,KIF4A,SCN1B,NFKBIE,MTX2,RER1,ARF6,CACNB3,CACNB4,BCL2L1,ARFGEF2,ARFGEF1,SLC29A1,PEA15,SLC29A2,INS,DUSP16,CKLF,RAC1,KIF3B,NXF5,ATP11B,HBA2,VDAC2,VDAC3,VDAC1,NFKBIL2,GH1,LASP1,RERE,HTATIP2,KCNAB3,SLC20A1,LDLR,SLC20A2,KCNAB1,AP2S1,BNIP3,NMUR1,NMUR2,ANP32A,SLC22A4,SLC22A3,SLC22A6,SLC22A5,KDELR1,SLC22A2,SLC22A1,KDELR2,AR,AVP,PGAP1,SLC22A7,SLC22A8,TP53,SLC3A2,CLIC1,SLC3A1,PI4KB,LRPAP1,ELMO1,CLIC3,CLIC5,LRMP,NUP107,SNAP29,AMPH,SORBS1,DDX19B,PKD2,SNAP23,EXOC5,SNAP25,SLC8A1,UPF2,UPF1,STAB2,CDH13,STAB1,GSK3B,RAB22A,LRP8,LRP2,YKT6,LRP3,NCBP2,ATOX1,TGFB1,PACSIN3,MCM3AP,STAP1,SLC33A1,BAIAP3,STIM2,STIM1,VAMP3,ABCA8,RAB7A,CCL3,ADORA2A,CCL8,ABCA2,ABCA1,CCL5,ABCA4,ABCA3,SLCO2A1,SCN9A,ABCB8,CUBN,MYO1E,ICMT,ABCB1,ABCB7,ABCB6,ABCB4,ATP7A,P2RX1,PTTG1IP,SLC13A4,ATP7B,SLC1A4,SLC1A5,SLC1A2,SLC1A3,SLC1A6,SLC1A7,SCN7A,SLC43A1,SLC1A1,SLC7A10,TIMM23,KIF1C,KIF1A,KIF1B,EPN1,PKDREJ,HRH3,SLC35B2,FCN2,SLC35B4,FCN1,CCS,SCNN1G,APPBP2,SCN5A,SCNN1A,SCNN1D,CBL,NOX1,SCRN1,GCK,BAX,SCN4B,FAF1,SCN4A,RAB3GAP2,SLC35A1,VPS33B,SLC35A2,SLC35A3,RAB1A,PICALM,GBF1,APOE,WNK4,LCAT,APOF,CEP290,RAB26,CD3G,ABCB11,WNK1,VTI1B,AP4M1,OPTN,VTI1A,KRT18,PPBP,ATP2C1,PEX26,RAB14,RAB13,CHKA,RABEPK,XK,MYO9B,CALR,RIMS1,CD74,AHSG,SLC11A2,STX12,STX18,STX16,TMED10,SLC31A2,SLC31A1,HIP1,MDFI,HNRNPA1,RABEP1,ATP2A3,ATP2A1,GOSR2,GOSR1,GHSR,CLTCL1,CLCN4,GJA8,ARSB,KCNJ15,PPARA,PPARD,ATP6V0E1,KCNJ10,HVCN1,KCNJ12,GJA4,KCNIP2,KCNJ11,GLI3,SLC26A2,FXN,GOLGA5,COX17,GOLGA4,STX1A,SPACA3,RPGR,KCNA10,SLC26A4,SLC26A3,GRM4,ZDHHC17,PTGDS,RAB5A,STEAP2,RAB3A,BET1,AZU1,PEX19,BCL2,FCGR1A,PEX16,PEX14,BCL3,PEX13,BCL6,PEX12,CD24,PEX10,APBA1,FYB,RAB2A,NLGN1,GABARAP,GJB1,GJB2,COG3,SLC16A3,SLC16A2,SLC16A5,SLC16A4,YWHAH,COG7,SLC16A7,SLC16A6,RAB35,SLC16A8,CD14,KIF20A,COG2,SEPT5,SLC22A16,TSPO,SNCAIP,SLC22A13,SLC22A12,SLC22A14,EIF5A,GDNF,AIP,GATA2,SLC16A1,SLC25A22,NUP133,ERP29,PICK1,TCN2,TCN1,RPAIN,AKAP7,AKAP3,FXYD1,CAV1,FXYD3,SNX2,SNX1,SNX4,SNX3,LMAN1,FOLR3,FOLR2,FOLR1,ALB,NPM1,ARL6IP5,SPTBN4,LIN7A,CORO1C,SLC25A12,SLC25A11,PPIH,SLC25A14,SLC25A13,SLC4A11,SLC25A10,SPTBN2,SLC25A15,RSC1A1,SLC25A17,SLC5A1,SORL1,ACTR1A,YRDC,RANBP2,TPR,ZW10,RALBP1,PRKCI,ARHGAP27,NLRP3,MFN2,GHRH,ARCN1,SCIN,GHRL,TOM1,COPE,CPLX2,TNF,CPLX1,NUP160,SLC37A4,AKAP9,NPTX1,CEP57,TAP2,SCG5,NEFL,SLC39A2,SLC39A1,GLRB,MON2,ATXN1,SH3BP4,HPX,MAP1S,SLC18A2,MAPK8IP3,TRPC4AP,SLC18A3,SLC18A1,MAPK8IP1,CSN2,LTBP2,MXI1,SSR1,KCNK7,KCNK6,KCNK5,TLK1,RPL11,CLCA2,OPA1,CLCA1,CLCA4,CRYAA,CRYAB,COLEC12,ERGIC1,ERGIC2,ERGIC3,UXT,RPS19,ZNF238,RTP3,RTP4,HFE,PPT1,KCNJ2,KCNJ3,ATP6V0B,KCNJ1,ATP6V0C,ADRB3,SLC28A2,SEC23IP,SLC28A1,KCNK1,TINAGL1,KCNK3,KCNK4,KCNJ5,KCNJ4,KCNJ6,TRPS1,CD209,SYTL4,SYTL2,SYTL1,KCNK17,KCNH1,MSR1,PDIA3,FAM3D,GLRA1,FAM3B,GLRA2,SYNJ1,AP3S2,COPB2,SLC23A1,AP1S1,SLC23A2,COPB1,TRPV5,CETP,KCNG2,SCN10A,STX6,CLN3,STX5,FLNA,NUP205,SCN11A,KCNH2,KCNH3,KCNH4,EEA1,NAGPA,NUP214,KCNE1,KCNE2,PPP1R10,SELS,PLN,NLRP12,KCNF1,CTNS,SSR2,DNM1,BARD1,KCNC1,SLC44A1,KCNC4,SLC44A2,KCNC3,XPO6,AP1G1,ATP6AP1,SLC7A8,TNFSF14,SLC7A9,MIPEP,SLC7A4,SLC7A5,SLC7A6,SLC7A7,SLC2A8,APOA4,APOA2,SLC2A5,APOA1,SLC2A4,SLC2A3,SLC2A2,DDX25,SLC2A1,FLVCR1,KCND3,NUDT4,HNRNPA2B1,SLC34A1,SLC34A3,SLC34A2,DDX39,COPG2,SLC40A1,LRPPRC,BAT1,STX8,STX7,KCNA2,KCNA1,KCNA4,KCNA3,KCNA6,KCNA5,DOCK1,APOC3,DOPEY2,DOPEY1,HCN4,ANGPTL3,MRC1,HCN2,PRAF2,CACNA2D1,SMG6,SMG5,KCNB2,SMG7,SMG1,SNAPIN,TRNT1,TSC1,VCP,SLC7A2,TSC2,XPO7,TRIP6,CACNA1D,MYH10,SEC24B,PEX6,PEX3,PEX7,AKR1C4,PEX1,ZFYVE16,NPC1L1,RHOB,AKR1C1,SEC23A,TRPM3,SGK1,ATP6V1H,M6PR,TRPM2,ATP6V1F,ADRB2,ATG4D,ATG4C,ATG4B,ATG4A,IGF2R,SEC23B,STON2,NUP98,STON1,AP1M2,CDH1,SEC63,SLCO1A2,AP3M1,SEC22A,SEC22B,SEC22C,HBB,TCIRG1,PLP2,PSAP,NF1,CADPS,SLCO1B3,SLCO1B1,SLC14A1,GGA1,SLC14A2,SYT1,PDLIM7,AQP9,AQP8,AQP5,AQP4,AQP7,AQP6,AQP1,ADORA1,AQP2,GOT2,HOOK2,BAK1,HOMER3,TRAK1,CHRNA7,KIF13B,CLNS1A,TRPA1,CLEC4M,NNT,RHCG,TBRG1,KCNMB3,KCNMB4,CDC37,UHMK1,KCNMB1,KCNMB2,SERINC1,C16ORF7,TRAM1,TRPC1,TRPC4,TRPC3,TRPC6,TRPC5,SMAD3,ARFIP1,ABCG1,ABCG2,CBLB,NPY,CHRNB4,BET1L,LGTN,CHRNB1,CLEC7A,SLC46A1,ABCF2,SLC16A10,TIMM17A,TIMM17B,ASGR1,EDNRA,ZFYVE9,AP3B2,SLC25A3,SLC25A1,TOMM34,AP3B1,DYNC1I1,SLC25A4,SLC25A5,RPH3AL,LDLRAP1,ATP6V1C1,ANKRD27,CHMP1A,TOMM20,TOMM22,SLC27A4,GULP1,SLC19A1,BEST1,SQSTM1,ABCD2,ABCD3,AP3D1,ABCD4,CHP,ATP1A4,KCNV1,ABCC9,ATP6V1E1,ABCC3,HBQ1,ABCC1,ABCC2,ABCC8,ABCC5,ABCC6,NRBP1,SLC6A2,LMAN2L,SLC6A3,SLC6A4,CSPG5,AGXT,KLHL2,STARD3,SLC4A2,SLC4A1,SCAMP1,SCAMP3,SCAMP2,MYO6,LRP1B,NUPL2,TRAT1,PKD2L1,TNNT2,LYST,CARTPT,KALRN,MYL6,SRI,SLC38A3,DERL2,DERL1,NAPG,ITLN1,COPZ1,CTSA,NAPA,ENSA,KCNS3,KCNS1,SFTPD,SLC30A5,SCARB1,CKAP5,CPNE6,MALT1,UCP1,NFKBIL1,UCP3,UCP2,RHOT1,CPNE1,RHOT2,CPNE3,ASNA1,HPS4,TTPA,AKT1,KCNQ4,KCNQ3,SLN,CCT8L2,NECAP2,NCKIPSD,KCNQ2,KPNB1,KCNQ1,KHDRBS1,RAMP3,RAMP2,TM9SF2,HSP90AA1,TIMM44,C3ORF31,KPNA6,KPNA5,KPNA4,KPNA3,KPNA2,KPNA1,SCARF1,MYL6B,SYN3,TNPO1,RHAG,SLC17A7,KCNN4,SLC17A5,KCNN1,SLC6A7,SLC17A3,SLC17A4,SLC17A1,KCNN3,SLC17A2,F2R +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html HSD17B11,PPARA,HACL1,PPARD,ECH1,HSD17B14,ECHS1,PPT1,HADHB,APOA5,HSD17B6,BDH2,CPT1B,STS,ACADM,CYP46A1,ALDH5A1,ACADS,PNPLA3,CPT1A,HAO1,ACADVL,CEL,YWHAH,GLA,PRDX6,HAO2,UGT2B4,NEU3,PLA2G4C,SMPD4,AKR1D1,PLA2G4B,SMPD3 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html PPARD,FGF7,BTD,S100A7,FST,CRABP2,CDSN,SPINK5,TGFB2,GLI1,PLOD1,CTGF,ALOX12B,KRT85,KRT83,DHCR24,STS,FLOT2,UGCG,FOXN1,KRT13,KRT10,WAS,SCEL,IL20,PTHLH,NME2,EVPL,KRT17,KRTAP5-9,ATP2C1,KRT16,KRT15,KRT14,DSP,LAMC2,COL1A1,EMP1,RBP2,HOXB13,ALDH3A2,KRT9,DCT,LAMB3,COL17A1,COL7A1,KRT5,POU2F3,KRT1,TGM3,KRT2,TGM5,CALML5,ERCC3,ERCC2,KLK7,KLK5,KRT31,GJB5,KRT34,COL5A2,KRT32,LAMA3,ATP2A2,SPRR1A,CASP14,SPRR1B,BNC1,PTCH2,FABP5 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html CADM1,BCAR1,IL28RA,APOBEC3G,SPINK5,APOBEC3F,TLR8,TGFB2,CFHR1,MAP3K7,CHRNA7,IFNK,CRTAM,IL29,POLH,SLA2,PRKCG,NFAM1,NCR1,SLIT2,TRAT1,IL20,THY1,UBE2N,TARBP2,LAT2,EREG,PTGDS,IL12A,CARTPT,GHRL,IL12B,TRAF2,MBL2,UBE2V1,UBE2V2,CX3CL1,AHSG,TNFRSF1A,KRT1,C2,TRAF6,SCG2,IL4,PTPRC,KLK8,IL8,CEBPG,MALT1,FOXP3,CD1D,LEP,CDH13,NPY,FYN,EEF1E1,IKBKG,CD79A,GHSR +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html ZAK,MBIP,TLR6,DAXX,PDCD4,MAP3K6,MAP3K5,MDFIC,CXCR4,MAP3K9,TDGF1,SPRED2,TGFA,SHC1,CHRNA7,SPRED1,GNG3,PAK1,FGF2,EGFR,DBNL,C5AR1,MADD,PIK3CB,KIAA1804,PKN1,PROK2,GRM4,ADRB2,MAP4K5,PLCE1,LAX1,HIPK3,CD81,MAP3K10,GHRL,MAP3K11,ADORA2B,PTPLAD1,ERBB2,C5,FPR1,MAP4K1,TRIB3,TRIB2,TRIB1,MAP3K2,DUSP16,ADRA2A,ADRA2C,CD24,EGF,GPS1,MDFI,NF1,DUSP22,TPD52L1,SOD1,GPS2,DUSP2,EPGN,RGS3,RGS4,DUSP9,DUSP8,DUSP6 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html FST,RBM9,TCEAL1,ZNF254,TGFB1,EPC1,SIN3A,WWP1,ZNF396,SUPT5H,MYST1,MYST4,TWIST2,TWIST1,MYST3,ZNF593,ZHX1,MECP2,ZHX2,ZNF189,ZHX3,NR0B2,NR0B1,CSDA,FOXN3,PA2G4,PIAS4,SMARCE1,ZNF238,TIMELESS,TGIF1,PRDM1,SUDS3,HMGB1,EID1,EID2,GCLC,SNX6,ELK3,VPS72,NR1H2,VDR,MEIS2,HEXIM2,DRAP1,HEXIM1,BCOR,TCF25,RUNX2,NKX2-5,HELLS,ZNF423,NKRF,MDFI,DMBX1,BMP2,CREBZF,KLF12,KLF10,PHB,KLF11,SMAD4,RYBP,SMAD3,SMAD2,SNW1,FOXP3,UBP1,UIMC1,BRCA1,HDAC5,NR1I2,SMARCC2,JAZF1,DNMT1,RFX3,RBPJ,HDAC8,KLF4,E2F1,ZBTB32,PPARD,RSF1,ARID4A,E2F6,DEDD,NR6A1,SPI1,TP63,ZNF202,CTCF,PAWR,ZEB1,GLI2,HSBP1,PDCD4,DAXX,ZNF345,MEN1,ZNF350,GFI1B,ZNF148,PCGF6,ATP8B1,POU4F2,NRG1,NFX1,KHDRBS1,ATF7IP,ZNF281,SLA2,ARID5B,LDB1,ARID5A,NDUFA13,TLE1,FOSB,RB1,MXD4,NRIP1,CHMP1A,BPTF,EREG,ZNF136,MDM2,RIPPLY1,ERN2,MDM4,COMMD7,CUX1,NSD1,ZFP161,ZMYND11,GLIS3,ING4,BCLAF1,TNF,GLIS2,GLIS1,PML,ZBTB16,ZNF177,ZNF174,CALCA,SUMO1,ORC2L,LANCL2,GATAD2A,POU2F1,PER1,BCL3,PEX14,BCL6,SUPT4H1,FOXD3,ENO1,TBX3,TBX2,VHL,SIRT4,TRIM27,ZNF24,SIRT5,TNP1,CENPF,ILF3,CBY1,PHF12,SNAI2,SIRT1,STAT3,SIRT2,ATXN1,ZNF157,ID2,YAF2,ID1,IRF7,DR1,IRF8,GRLF1,PHF21A,IRF2,ID4,ID3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SLC9A7,MPV17,CD52,BAK1,AGTR1,APP,APOE,LCAT,CHRNA7,CHRNA1,CDH23,FTL,CLRN1,C5AR1,PPARGC1A,THY1,CCR9,CCR8,CCR7,NPC1,NPC2,CCR6,RPS19,RHCG,CCR5,ATP2C1,CCR4,CCR3,CCR2,STC1,IQCB1,KCNMB3,KCNMB4,CLCN3,HFE,PPT1,BDKRB1,BCL2L1,BDKRB2,CALR,KCNMB2,NPHP3,PCDH15,RPS6,ABCG1,CD55,ETS1,AVPR1B,AVPR1A,SLC9A1,GRK1,MCHR1,CCKAR,HNF1A,GLRA1,USH1G,SPI1,BNIP3,ZNF675,EDNRA,DFNB31,GPX1,FXN,SAA1,NMUR2,TRPV4,CETP,XCR1,MYC,USH2A,CLN3,AIFM3,LYN,CCKBR,GPR98,PROK2,INHBA,USH1C,NPPB,CLN5,CLN6,CLDN16,CCR1,TFR2,CCL23,BCL2,PCSK9,CD24,IL6,IL7,OPRL1,HCLS1,ATP1A3,CCL19,NPR1,ATP1A4,ATP1A1,ATP1A2,SOD1,CCL15,SELS,TMPRSS3,CCL11,CCL13,CCL14,LARGE,MT2A,NARFL,MC4R,CP,BARD1,GNA15,CASR,ATOX1,F2RL1,FOXO3,CXCL12,APOA4,APOA2,APOA1,SLC2A4,GALR2,APOA5,RGN,SLC4A1,ACIN1,BCL10,DDIT3,SLC34A3,PLCE1,EP300,HIF1A,GYLTL1B,CARTPT,SLC40A1,GLP1R,SRI,CCL1,C3AR1,DRD1,CCL3,CAV1,CCL2,DERL1,GCLC,CYSLTR1,ABCA2,ABCA1,ATP6V1B1,CCL5,FTH1,CCL7,P2RY4,P2RY2,SFTPD,SLC30A5,DYRK3,ANGPTL3,MAFB,ATP7A,GCM2,SLC4A11,CXCL13,RHOT1,RHOT2,CACNA1C,XCL1,CACNA1A,IFI6,ATP7B,CXCR3,AKT1,ACVR1B,ALAS2,TPP1,CXCR4,NDUFS1,AKR1C1,KNG1,LDB1,CDK6,ACVR2A,TARBP2,LCK,GHRL,TAC1,EGLN2,EGLN1,GLRX2,CALCA,CALCB,PTPRC,CEBPG,SLC12A4,NF1,MTL5,RHAG,RDH12,GCK,HPX,BAX +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SLC8A1,SGK1,SCN1B,SCN2B,SCN2A,ATP1A4,SLC34A3,SLC4A11,SLC17A3,SLC17A4,SLC17A2,SCN9A,SCN4B,SCN11A,SCNN1G,SCN7A,SCNN1A,SCN5A,SCN4A,SCNN1D,SCN10A +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html UBE2N,IL4,EREG,CEBPG,PRKCG,TNFSF13,GLI2,PPARGC1A,TGFB1,RAD51,GLI1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html ACVRL1,HTATIP2,IL18,TNFSF12,FOXO4,SPINK5,CANX,SHH,TGFB2,CUL7,ANG,ROBO4,RHOB,ERAP1,CHRNA7,EGFL7,PDPN,MYH9,NCL,THY1,PROK2,SERPINF1,BTG1,VEGFA,FOXC2,NPPB,ATPIF1,EMCN,RNH1,PML,PF4,AGGF1,IL17F,EGF,ANGPTL3,RUNX1,RASA1,C1GALT1,ANGPTL4,SCG2,COL4A3,COL4A2,CCM2,IL8,SPHK1,NF1,NPR1,TNNI3,PLG,CDH13,STAB1,EPGN,NOTCH4,AMOT,GLMN +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CASR,GNA15,ATOX1,F2RL1,CD52,CXCL12,BAK1,AGTR1,APP,GALR2,RGN,CHRNA7,SLC4A1,CHRNA1,FTL,CDH23,CLRN1,C5AR1,DDIT3,SLC34A3,THY1,CCR9,CCR8,CCR7,PLCE1,GYLTL1B,CCR6,RHCG,CCR5,CCR4,ATP2C1,CCR3,CCR2,CARTPT,STC1,SLC40A1,GLP1R,KCNMB3,IQCB1,SRI,CCL1,KCNMB4,C3AR1,DRD1,CLCN3,CCL3,CCL2,GCLC,CYSLTR1,HFE,PPT1,BDKRB1,BCL2L1,BDKRB2,CALR,CCL5,CCL7,FTH1,KCNMB2,NPHP3,P2RY4,P2RY2,SLC30A5,PCDH15,ATP7A,CD55,GCM2,SLC4A11,CXCL13,AVPR1B,AVPR1A,RHOT1,RHOT2,XCL1,CACNA1C,CACNA1A,IFI6,ATP7B,GRK1,MCHR1,CCKAR,GLRA1,USH1G,BNIP3,CXCR3,EDNRA,GPX1,FXN,CXCR4,SAA1,NMUR2,TRPV4,XCR1,MYC,NDUFS1,USH2A,KNG1,CLN3,AIFM3,CCKBR,GPR98,PROK2,LCK,USH1C,GHRL,CLN5,CLN6,CLDN16,CCR1,TFR2,TAC1,EGLN2,GLRX2,CALCA,CALCB,CCL23,BCL2,CD24,PTPRC,OPRL1,SLC12A4,ATP1A3,ATP1A4,MTL5,CCL19,ATP1A1,ATP1A2,SOD1,RHAG,CCL15,TMPRSS3,SELS,RDH12,CCL11,CCL13,CCL14,LARGE,HPX,BAX,MT2A,CP +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html ALDOA,SRI,MYL2,MYBPC3,PGAM2,TTN,MYBPH,ATP2A1,GAA,SMPX,MYOM1,KBTBD10,CASQ2,DTNA +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html GYPC,TUSC3,LDLR,ALG1,B3GALT5,ALG2,B3GALT4,ALG5,TSPAN7,ALG6,TSPAN8,ALG8,POMGNT1,POMT1,B3GALNT1,TRAK1,RPN1,OGT,TNIP1,MAN1A2,FUT10,ALK,MAGT1,CD37,BACE2,DOLPP1,TM4SF4,SERP1,TM4SF5,GCNT4,GALNT2,GCNT3,GALNT1,FUT9,FUT8,GALNT7,FUT7,GALNT6,KEL,FUT6,FUT5,ST8SIA3,ST8SIA2,NECAB3,STT3B,IL17A,STT3A,B3GNT5,MPDU1,FUT4,FUT1,A4GNT,FUT2,GCNT1,GAL3ST1,SDF2,MGAT4B,MGAT4A,LIPA,B3GALT2,MAN1C1,COG3,LARGE,COG7,ST8SIA4,DPM1,DPM2,DPM3,LIPC,LRP2,ALG12,POFUT1,COG2 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html PTGES3,CYP2J2,PRG3,FADS1,PTGS1,CD74,MIF,AKR1C3,CYP4F8,TNFRSF1A,AKR1C2,PTGDS,PTGES,LTA4H,CYP4F3,CYP4F2,HPGD +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGZ,IMPA1,PIGY,PIK3C2A,PIGV,PI4KA,GPAA1,PIGU,PIGT,PIGS,PI4KB,PIGO,PIGK,PIGF,PIGG,PIGH,PI4K2A,CD81,PIGB,DPM1,PIGC,DPM2,DPM3,PIGA +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SEPT5,SLC22A16,SYT1,SNCAIP,SLC22A18,NRBP1,CADM1,LTBP2,AQP9,LMAN2L,USE1,AQP5,AQP4,AQP7,AQP6,AQP1,TPD52,AQP3,IL11,SCTR,AQP2,NLRC4,APOA2,APOA1,GBF1,KCNK5,RAB26,GUCA2B,DNAJC1,SCAMP1,SCAMP3,CRTAM,SCAMP2,MYO6,BAIAP3,SLC34A1,VTI1B,OPTN,ERGIC1,ERGIC2,ERGIC3,COPG2,KRT18,BACE2,RAB14,CARTPT,VAMP3,UNC13B,AKAP3,KCNMB4,ACHE,CCL3,ARFGAP3,PPY,STX7,NAPG,ADORA2B,COPZ1,RER1,CCL8,RABEPK,NAPA,ABCA1,PYDC1,ATP6V1B1,CCL5,ARFGEF2,LMAN1,RIMS1,ARFGEF1,KCNJ1,LIF,STX18,INS,STX16,CKLF,TMED10,DOPEY2,DOPEY1,SRGN,NPHP1,CARD8,CIDEA,SNAPIN,ARFIP1,FOXP3,LIN7A,CEL,SYTL4,GLMN,GOSR2,GOSR1,GHSR,CLCN5,COPA,FAM3D,TACR2,FAM3B,PDIA4,DPH3,CANX,COPB2,NOD2,ANG,NMUR1,NMUR2,COPB1,SLC22A4,AP3B2,SLC22A2,ZW10,KNG1,STX1A,RPH3AL,INHA,GRHPR,NLRP3,NLRP2,KIF1C,OSM,INHBB,GRM4,INHBA,SLC26A3,GHRH,SCIN,NPPB,GHRL,STEAP2,ARL4D,IFT88,PKDREJ,COPE,VIP,CLDN16,SNAP29,RAB3A,AVPR2,CPLX2,CPLX1,BET1,CLCNKA,CLCNKB,HRH3,SYN3,NFAT5,SEC22A,PYCARD,SEC22B,SCG5,SEC22C,EXOC5,SNAP23,SCNN1G,SCNN1B,SCNN1A,SNAP25,SCG2,GUCA1B,RAB2A,SERGEF,TBX3,SCRN1,NLGN1,NPR1,MON2,COG3,CADPS,COG7,GCK,NPHS2,NPHS1,NLRP12,ATP6V0A4,YKT6,COG2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html DBF4,IGHMBP2,PRIM1,MUTYH,CDKN2D,PRIM2,PMS2,MYST2,PMS1,RBMS1,MCM3AP,GTPBP4,POLE,RAD9A,POLB,RNASEH2A,ORC1L,RFC3,RPAIN,RFC4,RFC1,TBRG1,RAD17,HMGB2,ENPP7,ACHE,MRE11A,TIPIN,POLE2,POLE3,EGF,S100A11,ATR,POLD4,POLD1,POLD2,KCTD13,ABL1,DUT,NBN,NAP1L1,MLH1,TERF2IP,GLI2,PMS2L1,GLI1,CDT1,MCM7,ORC4L,DKC1,NT5M,POLG2,CDC6,CCDC88A,REV1,NOL8,PRKCG,MCM2,MCM3,MCM5,RAD50,CDK2,PURA,RAD51,EREG,CDK2AP1,ORC5L,PTMS,REV3L,NUP98,WRNIP1,POLA1,KIN,POT1,RPA4,RPA3,RPA1,TFAM,RPA2,TYMP,ORC2L,SET,TSPYL2,KRT7,TINF2,TERF2,EXO1,MSH6,UPF1,MSH3,NF2,MSH2,MSH5,GMNN,NASP,IGF1,SPHAR,TP73,NAE1,ORC3L,REPIN1 +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html BID,GPX1,BAK1,CDKN2A,DNM1L,BBC3,BAX,BCL2L1,SFN,PMAIP1,IFI6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html KATNB1,EIF5A,PPT1,ARF6,AHSG,AZU1,CDC42,GATA2,CDC42EP2,SORBS3,CDC42EP1,ROBO1,MAPT,SFTPD,DAZL,ROBO2,CDC42EP4,ARHGEF10L,EIF2B5,CDC42EP5,SPACA3,DAZ1,NF2,CBL,PPARGC1A,LDLRAP1,SLIT2,BOLL,AMIGO1,UBE2N,NCK2,NCK1,TPPP,GHRL,FAF1 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html SEPT5,KCNMB4,SYT1,RAB3A,SNCAIP,FAM3D,FAM3B,RIMS1,IL11,LIF,HRH3,SYN3,SCG5,SNAP25,STX1A,TBX3,BAIAP3,NLGN1,SNAPIN,INHA,INHBB,OSM,GRM4,INHBA,GCK,GHRH,GHRL,CARTPT,GHSR +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN8,CLDN7,CADM3,MPZL2,CLDN9,ACVRL1,CADM1,CLDN4,CLDN3,CLDN6,LMO4,CLDN5,PTEN,CDSN,APOA4,CD47,REG3A,CDKN2A,CD93,ROBO1,ROBO2,COL11A1,SYK,DLG1,ALX1,EGFR,BCL10,GTPBP4,VANGL2,MGP,CD164,CERCAM,CTNNA3,THY1,AMIGO1,CD84,AMIGO2,NCAM2,AMIGO3,SIRPG,CD34,ATP2C1,NPTN,CLDN1,CLDN2,CNTN4,CLDN16,CLDN17,CDK5R1,EMCN,CLDN18,CLDN19,TNF,PKHD1,NINJ2,ITGB2,CLDN10,CX3CL1,CLDN11,CRNN,CLDN12,ITGB1,CLDN14,CDH5,CLDN15,CALCA,ANXA9,PVRL1,PVRL3,TRO,PVRL2,B4GALNT2,PKD1,RASA1,BMP1,NF2,COL13A1,LGALS7,NLGN1,CLDN22,CLDN20,CELSR1,CLDN23,CDH13,CD209,CYFIP2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html RARRES3,CNOT8,RARRES1,AIF1,TNFSF15,MXI1,FOXO4,TGFB2,MAGED1,CUL2,CUL5,CDKN2A,CDKN2B,CDKN2C,CDKN2D,IL1B,ODZ1,CUL1,IL1A,GTPBP4,CGRRF1,IL29,SSTR4,PTHLH,SSTR5,SIRPG,NME2,SSTR2,ADAMTS8,SSTR3,ALOX15B,SSTR1,NME1,CD33,TBRG1,MNT,ATPIF1,ADAMTS1,TGFB1I1,EIF2AK2,EMP3,ENPP7,LST1,IFITM1,CHEK1,UMOD,SESN1,FTH1,NPM1,PRKRA,BAI1,SFTPD,GML,B4GALT7,RUNX3,COL18A1,TP53I11,GNRH1,KLF10,KLF11,S100A11,BRCA2,FOXP3,GAS8,RERG,CDKN1C,NOTCH2,TSC1,NUP62,ETS1,FABP3,MYO16,HGS,GLMN,ADRA1A,UTP20,LDOC1,FABP7,SST,PRKRIR,KLF4,FABP6,OPRM1,DLEC1,ACVRL1,IGFBP7,IGFBP6,BAP1,PAWR,PTEN,WARS,BNIPL,CGREF1,ANG,CCL3L3,CDK10,DLG5,CDC6,CTBP1,RBBP4,CTBP2,CDK6,CD164,MXD4,MFN2,OSM,TNFRSF9,NCK2,PPM1D,EREG,BTG2,BTG1,BTG4,BTG3,SCIN,GHRL,MDM2,MDM4,TM4SF4,ING5,CXCL1,FRK,ING4,NDN,TNFRSF8,ABI1,DEC1,POU1F1,CCL23,SPEG,KRT4,GPNMB,ING1,FGFBP1,QSOX1,SCG2,APC,NOX4,COL4A3,IL6,PDS5B,IL8,NF2,VHL,TBX5,NF1,CDKN3,PLG,CDH13,CUL4A,EEF1E1,ATP8A2,TOB2,TOB1 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL4,PTPRC,IL7,CD3E,IL18,CD276,TNFSF13,SOCS5,IL21,TGFB1,SART1,THY1,NCK2,CD47,SIRPG,NCK1,LCK,ZAP70,IL12A,CD24,IL12B,ICOSLG,EBI3,CD28 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html NBN,ZAK,HUS1,PML,CHEK1,CHEK2,BRSK1,SFN,TRIAP1,PCBP4,BCL3,DYRK2,C16ORF5,GML,CCNA2,ATRIP,MYO6,AIFM1,RINT1,CIDEB,TP53,CIDEA,RAD9A,IFI16,ATR,BRCA1,NEK11,TP73,FOXN3,NAE1,RAD1,EEF1E1,ABL1,SMC1A,RAD17 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html BCL10,TBX3,TBX5,LMO4,VANGL2,FTO,DSCAML1,TBX1,MBNL1,CELSR1,SOD1,GLI2,ZIC1,TINAG,SHH,CEP290,PTCH1 +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html FYB,CBLB,TRPS1,KPNA6,KPNA5,NCKIPSD,KPNA4,KPNA3,KPNB1,KPNA2,KPNA1,RERE +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html CCKAR,COPA,PPY,SLC15A1,LDLR,PGC,PPYR1,VIPR1,SCTR,APOA4,AKR1C2,CYP39A1,ACSL1,GALR1,PRSS2,PRSS3,GALR2,TFF2,NPC1L1,TFF3,AMY2B,HTR3A,NMU,AKR1C1,CTRL,MUC2,CCKBR,CAPN9,PPARGC1A,CEL,SSTR2,BAAT,SSTR1,MLNR,AKR1B10,MEP1A,CTSE,MEP1B,FABP2,PYY,AKR1D1,SST,AMY1B +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html SLC22A16,FOLR3,FOLR2,FOLR1,HPX,PDPN,SLC22A4,PPT1,SLC22A5,SLC19A1,SLC46A1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html E2F1,ZBTB32,PPARD,E2F6,FST,NR6A1,SPI1,ZNF202,CTCF,ZEB1,PAWR,HSBP1,GLI2,ZNF254,TCEAL1,ZNF345,MEN1,EPC1,GFI1B,ZNF148,POU4F2,SUPT5H,TWIST1,NFX1,ZNF281,ZNF593,SLA2,MECP2,ZNF189,RB1,NR0B2,FOSB,CSDA,MXD4,NRIP1,ZNF238,BPTF,ZNF136,MDM2,TGIF1,MDM4,PRDM1,CUX1,NSD1,ZFP161,HMGB1,ZMYND11,EID1,GLIS3,GLIS1,ZNF177,VPS72,ZNF174,ORC2L,MEIS2,HEXIM2,DRAP1,HEXIM1,BCL6,SUPT4H1,TCF25,NKX2-5,FOXD3,ENO1,MDFI,KLF12,VHL,KLF10,KLF11,TRIM27,RYBP,SMAD3,SNAI2,STAT3,ZNF157,DR1,IRF7,IRF8,JAZF1,DNMT1,PHF21A,IRF2,HDAC8 +PWCOMMONS REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATALYTIC_ACTIVITY.html ALS2,XRCC4,RAB3GAP2,ADORA3,ADCY7,EDN2,RAB3GAP1,MAP3K7,MAP3K6,MAP3K5,MAP3K4,DIRAS3,MAP3K9,CHRNA7,PSENEN,GNG3,DBNL,ANAPC2,GTPBP4,C5AR1,PIK3CB,KIAA1804,BCL2L10,THY1,CRHR1,IFNB1,SAPS3,CCR2,F2,ATPIF1,ACR,CDK5R1,CDK5R2,GNAI3,GNAI2,PTPLAD1,ERBB2,CHEK1,CDC37,ADCYAP1,SERINC2,ADRB3,SERINC5,HEXIM2,HEXIM1,SERINC1,DUSP16,FBXO5,DIABLO,HIP1,MDFI,TAOK2,MAP2K3,DUSP22,SMAD3,TPD52L1,CBLC,RGS3,RGS4,AVPR1B,AVPR1A,CCNT2,CCNT1,DAXX,LATS1,PTEN,LATS2,CAMKK2,CCNE2,EDNRA,GPX1,EDNRB,NMUR1,NMUR2,TGFA,CAP1,FGF2,SERTAD1,DHCR24,CDC6,CCNK,AIFM3,CCKBR,HERC5,TP53,ECSIT,GTF2H1,CARD10,NCK2,GRM4,PROK2,GRM3,CCND1,GRM2,CCND3,EREG,PSEN1,GNAQ,CCND2,LAX1,GRM8,GRM7,PSEN2,GADD45G,GIPR,MAP3K10,CAND1,GNAS,GADD45B,GADD45A,MAP3K13,ZER1,MAP3K11,AVPR2,PARD3,C5,FPR1,BCCIP,SFN,AZU1,CD24,CAP2,BIRC5,CRIPAK,CDKN3,SOD1,STAT1,MNAT1,DUSP2,P2RY11,GLA,EPGN,IFT57,PPP2R4,DUSP9,DUSP8,DUSP6,GNA15,ZAK,TNFSF15,PKMYT1,MBIP,PMAIP1,TLR6,GHRHR,APOA2,NLRC4,CDKN2A,CASP8AP2,GALR1,CDKN2B,MDFIC,CDKN2C,GALR3,CDKN2D,APOA5,TDGF1,SPRED2,RGN,SPRED1,EGFR,RBL2,MADD,RBL1,PICK1,HBXIP,TNNT2,MAP4K5,PLCE1,CARTPT,GLP1R,FGD2,TRAF2,FGD1,ADORA2B,DRD5,MAP4K1,APOC2,CCNG1,PYDC1,MTCH1,ADRA2A,ADRA2C,TRAF7,TRAF6,FGD5,EGF,ANGPTL3,FGD6,FGD3,FGD4,ANGPTL4,CARD8,PIF1,MALT1,CDKN1C,ATP7A,NOSIP,TSC1,VCP,BBC3,LTB4R2,ABL1,ABL2,IFI6,DNAJB6,C13ORF15,GABBR1,GABBR2,PDCD4,PAK2,CASP9,ANG,CXCR4,SHC1,CDK5RAP3,PAK1,CDK5RAP1,PLCB2,IRAK1,CCDC88A,RALBP1,CYCS,PKN1,ARHGAP27,RB1,CDK7,NLRP3,NLRP2,UBE2N,TARBP2,ADRB2,ADRB1,HIPK3,CHRM1,LCK,CD81,ERN1,GHRL,GAP43,PRKD3,CALCR,CKS1B,APH1A,TRIB3,TRIB2,TRIB1,CALCA,MOAP1,TSPYL2,MAP3K2,CD4,PPAP2A,APC,GPS1,PTPRC,COL4A3,FOXL2,NF1,CDC25C,CDC25A,GPS2,NCSTN,PRLR,BAX,CKS2,APAF1,F2R +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html ME1,ADSS,ADCY7,CTPS,ADORA2A,AK5,ABCA1,HPRT1,PPAT,TYMS,UMPS,UCN2,ADM,OXER1,GRM8,ADK,C16ORF7,GUK1,PDZD3 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html AZU1,NF2,NF1,CDK6,SOD1,EIF2B2,EIF2B3,EIF2B1,SLIT2,EIF2B4,EIF2B5 +PWCOMMONS NUCLEOTIDE SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_SUGAR_METABOLIC_PROCESS.html UAP1,GMDS,UGDH,B4GALNT2,TSTA3,EXTL2,PMM2,UGP2,SLC35A3 +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html GPAA1,FNTB,PIGK,APOA2,APOA1,FNTA,PIGF,PIGG,ATG7,PIGH,PIGB,CHM,PIGC,PGGT1B,PIGA,AIPL1,PIGZ,PIGY,PIGV,PIGU,PIGT,PIGS,PIGO,DPM1,DPM2,DPM3 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html AIFM1,PML,CIDEB,TP53,CIDEA,IFI16,SFN,CHEK2,BRCA1,TP73,PCBP4,BCL3,DYRK2,ABL1,C16ORF5 +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html SEPT5,SNAP29,STX5,SHROOM2,MYO1A,AP1M2,NLGN1,TMED10,LRMP,SNAP23,YKT6 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html TRAF2,CADM1,IL18,TNFSF13,TGFB1,CD74,IL10,TLR8,MAP3K7,C2,TRAF6,EBI3,IL4,PTPRC,BCL10,CRTAM,SLA2,IL27,MALT1,SOCS5,FOXP3,IL18BP,CD40LG,IL12A,IL12B +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html SNCA,CBX4,FOXO1,GDNF,CIAPIN1,TNFSF18,CDKN2D,TPT1,FAS,DDAH2,IL1A,API5,OPA1,BRAF,CRYAA,SOCS2,CRYAB,SOCS3,RELA,BCL2A1,HRK,HBXIP,BCL2L10,NME5,CD40LG,TXNDC5,TNFAIP8,HSPB1,ERC1,MYO18A,TNFRSF6B,HMGB1,GCLC,CCL2,MCL1,BCL2L2,BCL2L1,HSPA1B,PEA15,AKT1S1,NPM1,GLO1,ARHGDIA,CFLAR,BECN1,SPHK1,TAX1BP1,NOTCH2,BFAR,HDAC3,RNF7,HDAC1,SFRP1,IFI6,RTN4,IER3,HTATIP2,BNIP3,NFKB1,PRDX2,TRIAP1,GPX1,BAG4,BAG1,PAX7,DHCR24,NOL3,PROK2,SERPINB9,BNIP1,PSEN1,BNIP2,TNFRSF10D,HIPK3,CFL1,SERPINB2,AVEN,FAIM3,NAIP,SEMA4D,GSTP1,ALOX12,PRKCZ,YWHAZ,TNF,RTKN,IGF1R,SH3GLB1,BCL2,TNFRSF18,DAD1,AATF,CD27,RASA1,CD28,HSPA9,PIK3R2,IL3,IL2RB,TBX3,ANXA1,BIRC6,BIRC5,ANXA5,BIRC3,ANXA4,CDH13,HSP90B1,SON,BAX,BNIP3L,BRE,MPO,TIAF1,IL2 +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html MDFI,NFKBIL2,TAF3,PDIA3,NFKBIE,PDIA2,SUPT7L,FAF1,TOPORS,MXI1,NFKBIL1 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html SLA2,MED12,IGF1,MED24,MED14,ARID1A,MED13,ESR2,RBM9,DAXX,CALCOCO1,PPARGC1B,MED4,MED30,YWHAH,MED16,MED17,UBR5,THRAP3,DDX54,MED1 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html GPS1,NF1,DUSP22,MBIP,PDCD4,GPS2,DUSP2,LAX1,RGS3,HIPK3,RGS4,DUSP16,SPRED2,SPRED1,DUSP9,DUSP8,DUSP6 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html NBN,ZAK,HUS1,RINT1,PML,RAD9A,CHEK1,CHEK2,ATR,BRSK1,NEK11,FOXN3,NAE1,RAD1,TRIAP1,PCBP4,GML,ATRIP,CCNA2,RAD17 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CCNT2,CKS1B,CDK5R1,CDK5R2,C13ORF15,CCNT1,PKMYT1,CHEK1,BCCIP,CCNG1,PTEN,LATS1,CDC37,LATS2,CCNE2,CDKN2A,CDKN2B,DIRAS3,HEXIM2,HEXIM1,CDKN2C,CDKN2D,CDK5RAP3,CDK5RAP1,SERTAD1,APC,ANAPC2,CDC6,GTPBP4,CCNK,HERC5,CDK7,CDKN3,CDC25C,CDC25A,GTF2H1,CDKN1C,MNAT1,CCND1,CCND3,CCND2,CKS2,GADD45A +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html STX7,NRBP1,NAPG,LMAN2L,COPZ1,BET1,USE1,RER1,NAPA,LMAN1,COPB2,GBF1,STX18,COPB1,STX16,SEC22A,AP3B2,SEC22B,TMED10,SEC22C,DOPEY2,SNAP23,EXOC5,DOPEY1,GOLGA5,ZW10,RAB2A,SCAMP1,SCAMP3,SCAMP2,OPTN,ERGIC1,MON2,ERGIC2,ERGIC3,KIF1C,COG3,COPG2,KRT18,COG7,RAB14,GOSR2,GOSR1,STEAP2,YKT6,COPE,COG2 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html ABI3,ABI2,ITGB2,ABI1,IL31RA,CLCF1,TDGF1,EGFR,IL3,IL5,NF2,LYN,IL29,HCLS1,SOCS1,STAT1,IL20,CD80,DYRK1A,F2,CD81,IL12A,TNK2,ABL1,ABL2,F2R,IL22RA2 +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html SERGEF,FAM3D,CIDEA,DPH3,FOXP3,IL11,OSM,LIF,INHBB,APOA2,APOA1,NLRP12,SRGN +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html METAP2,APH1A,ADAMTS13,APH1B,PPP2R5C,CUZD1,MIPEP,TTN,UHMK1,CAMKK2,AKT1,IGF1R,ECE2,MAP3K3,PAK2,MAP3K9,PRSS3,LMTK2,PCSK9,SCG5,PSENEN,PAK1,PCSK5,INSR,TAF1,MYO3A,MEX3B,KIAA1804,TAOK3,MOBKL1A,SMG1,FURIN,STK4,CDKL5,NCSTN,EIF2AK1,PSEN1,DYRK1A,MAPK15,PSEN2,NLRP12,MAP3K10,PTCH1,TNK1,EIF2AK3,MAP3K13,MAP3K12,MAP3K11 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html NOX4,ME3,NOX5,PRG3,DRD5,PREX1,BNIP3,NDUFA13,SOD1,SOD2,APOA4,NDUFS4,AOX1,GPX3,SFTPD,CCS,NDUFS3,NDUFS1,MT3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SYT1,OXA1L,OCLN,TSPAN4,CAPZA2,CAPZA1,SLC7A9,CD2AP,SLC7A6,SLC7A7,TAPBP,VCL,PICALM,APOE,KIFAP3,SH3BGR,FAS,INSR,SYK,BCL10,IKBKAP,GJD3,DARS,SCUBE3,CD3E,SCUBE1,PICK1,MATN1,TAZ,ACTN2,CD40,PPARGC1A,ADRM1,VAMP3,ATPIF1,AMFR,LAMC1,SURF1,EIF2AK3,SEPT7,SEPT9,TRAF1,STK16,TRAF2,EID2,DAG1,HFE,ANLN,RIMS1,SRC,LLGL1,CD74,PXN,CDC42EP2,UPK1A,CDA,AGRN,PARD6B,MLL,TGFBR1,CREBBP,SMAD4,EPRS,SMAD3,MALT1,SEPT11,LIN7A,PPIH,MYH11,CHAF1A,CHAF1B,TLN1,COX11,WASF3,TLN2,COX10,GJA1,TP63,SKAP2,GJA4,GJA5,NDUFS7,CDC42,NDUFS5,RANBP9,NOD2,NOD1,NDUFS4,NUBP1,ZFYVE9,GPX3,GOPC,NDUFS8,IL1RAP,TRPV5,DLG4,COX18,FANCA,AKR1C1,COX15,FANCC,ZW10,IRAK1,PPP2R1A,APCS,CCDC88C,ALDH5A1,VIL1,TP53,NLRP3,SLC9A3R1,WAS,HMGA1,SLC9A3R2,THEG,RAD51,STOM,ADRB2,TPPP,NUP205,MDM2,MDM4,WASL,KPNA3,MAP3K11,FMOD,REPS2,PARD3,TCAP,APC2,PML,NFS1,HCFC1,AASS,HPRT1,SF3B3,CLDN14,GJC1,IGF1R,CD9,LPXN,CCT6B,PTK2B,DGKD,PEX14,TGM3,PEX13,WIPF1,APBA1,GEMIN5,SCO1,APC,IL2RB,MUC20,BCS1L,TUBGCP2,MIS12,MNAT1,VWF,TJP1,TMEM48,PRLR,BAX,TCEB2,MAPK8IP2,FAF1,PTCH2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ALDH8A1,CYP3A5,RARRES2,SGMS2,GBGT1,PTGS1,SGMS1,SHH,AGPS,LCAT,APOF,PLA1A,NSMAF,APOM,WWOX,SGPL1,UGCG,PPARGC1A,NPC1,PITPNM3,NPC2,ALOX15B,HSD11B2,PLA2G2E,PLA2G2D,HSD17B11,HACL1,ENPP7,ACADSB,HSD17B14,TFCP2L1,PPT1,PDSS1,CD74,PDSS2,HADHB,PLAA,SERINC2,SERINC5,LPCAT1,SERINC1,PEMT,NR1H4,CYP46A1,SPHK1,MCAT,FDXR,ABCG1,APOL2,CEL,CYP7B1,NR1I2,MLYCD,PLA2G4C,IDI1,PLA2G4B,BMP6,PPARA,PPARD,CYP2J2,PTEN,ASAH1,ASAH2,ST6GALNAC6,AGPAT6,ST6GALNAC4,CYP39A1,PTGES,GPX4,GNPAT,CETP,AGPAT2,DHCR24,AGPAT1,CLN3,STS,PRG3,PIK3C2A,PI4KA,LGALS13,PI4KB,HAO1,PTGDS,ADM,HAO2,SLC27A6,PLA2G6,PLA2G3,SLC27A2,CLN8,PLA2G5,SLC27A5,DEGS1,ALOX12,CLN6,ECH1,HSD3B1,HSD3B7,GPAA1,MIF,DGKE,DHCR7,ABCD2,HSD17B6,CERK,NSDHL,SOAT1,IL4,CPT1B,SOAT2,PNLIPRP2,FADS1,FADS2,DGKK,SOD1,CPT1A,GBA2,YWHAH,GLA,LARGE,DPM1,DPM2,DPM3,HPGD,NR5A1,TSPO,LASS5,STARD3,APOA1,APOA5,ST3GAL6,SPTLC1,TAZ,NR0B2,NR0B1,PNPLA3,PECI,CHPT1,PNPLA8,PLCE1,AKR1B10,PI4K2A,MVK,NEU3,CROT,CNBP,HDLBP,ST8SIA1,APOC2,ST8SIA3,B3GNT5,APOC3,SCARB1,PCYT1B,B4GALT4,CYP19A1,LPL,FDPS,SMG1,BRCA1,BAAT,FAAH,LASS1,ST8SIA5,ACOX2,PTGES3,IMPA1,ALG1,CYP11B2,ACOT2,SULT2B1,ACOT1,PIP5K1A,ACOT4,SC4MOL,PEX7,ACOX3,ACOT9,AKR1C3,PIGK,AKR1C2,AKR1C4,PIGF,ANG,PIGG,PIGH,PIGB,ACOT12,PIGC,NPC1L1,PCYT2,PLCB2,AKR1C1,PIGA,PIGZ,ACADM,CYP11A1,SULT2A1,PIGY,ALDH5A1,ACADS,PIGV,PIGU,ADIPOR2,PIGT,ADIPOR1,DHRS9,PIGS,UGT1A1,PIGO,ACADVL,DHRS2,DHRS3,UGT2B17,DGAT1,DGAT2,PRDX6,CD81,UGT2B11,UGT2B15,AKR1D1,PGS1,ECHS1,STUB1,TNFRSF1A,ETNK1,PLCD1,BDH2,PPAP2A,PIK3R1,B4GALNT1,MBTPS2,PSAP,OXSM,RDH12,RDH11,CYP4A11,CYP4F8,GLYAT,UGT2B4,LTA4H,CYP4F3,CYP4F2,SCP2,SMPD4,SMPD3,RETSAT,SMPD2 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html FGD2,FGD1,TAOK2,MYH9,CDC42,CDC42EP2,CDC42EP1,FGD5,CDC42EP4,FGD6,FGD3,FGD4,CDC42EP5 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html LALBA,SPACA3,S100A7,CAMP,DEFB103A,PGLYRP1,TLR3,STAB2,DEFB127,TLR6,AZU1,CFP,WFDC12,NLRC4,NOD2,NOD1,PGLYRP4,STAB1,PGLYRP2,PGLYRP3,IL12A,DEFB118,SPN,DMBT1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SEPT5,SYT1,NRBP1,PDLIM7,LMAN2L,USE1,VPS33B,ITSN1,ADORA1,RAB1A,GATA2,HOOK2,PICALM,PACSIN3,GBF1,VPS4B,VPS4A,RAB26,SCAMP1,SCAMP3,SCAMP2,MYO6,LRP1B,VTI1B,COLEC12,AP4M1,OPTN,ERGIC1,ERGIC2,VTI1A,ERGIC3,COPG2,KRT18,LYST,RAB14,VAMP3,RAB13,AKAP3,KALRN,RAB7A,CCL3,STX7,NAPG,ADORA2A,COPZ1,SNX2,SNX1,CCL8,RER1,HFE,RABEPK,NAPA,SNX4,PPT1,ARF6,SNX3,ABCA1,CCL5,LMAN1,ARFGEF2,ARFGEF1,RIMS1,AHSG,ADRB3,DOCK1,FOLR1,STX18,RAC1,STX16,SFTPD,TMED10,DOPEY2,DOPEY1,HIP1,MRC1,CPNE6,SPTBN4,TINAGL1,LIN7A,CORO1C,RABEP1,TSC2,CPNE1,SPTBN2,SYTL4,BET1L,CPNE3,SYTL2,GOSR2,GOSR1,CLEC7A,CLTCL1,SYTL1,SEC24B,MSR1,LDLR,AP2S1,SORL1,SYNJ1,ASGR1,COPB2,AP1S1,FXN,ZFYVE16,ACTR1A,COPB1,NECAP2,AP3B2,RHOB,GOLGA5,GOLGA4,ZW10,SEC23A,RAMP3,STX6,RAMP2,STX5,CLN3,SPACA3,PRKCI,RPH3AL,ARHGAP27,ATP6V1H,PI4KB,M6PR,LDLRAP1,LRPAP1,ELMO1,KIF1C,ANKRD27,ADRB2,CHMP1A,IGF2R,SCIN,RAB5A,TOM1,LRMP,STEAP2,EPN1,PKDREJ,COPE,SEC23B,STON2,SNAP29,CPLX2,AP1M2,STON1,CPLX1,GULP1,BET1,EEA1,SCARF1,AMPH,AZU1,SQSTM1,FCN2,FCGR1A,FCN1,SEC22A,SEC22B,SEC22C,SNAP23,CD24,EXOC5,RAB2A,CBL,SCRN1,NLGN1,STAB2,MON2,CADPS,COG3,SH3BP4,CDH13,COG7,STAB1,RAB35,RAB22A,MAPK8IP3,LRP8,MAPK8IP1,LRP2,YKT6,LRP3,DNM1,CD14,COG2,KIF20A +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html XRCC4,NBN,MRE11A,XRCC6,POLA1,UBE2V2,LIG4,RAD52,SOD1,BRCA1,RAD50,XRCC6BP1,SETX,RAD51,UBE2N,RAD21,VCP,RAD54B,ERCC4,NHEJ1,FEN1,CIB1 +PWCOMMONS PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_METABOLIC_PROCESS.html OXA1L,AURKAIP1,PPP2R5C,USE1,RCE1,MYLIP,BTK,MAP3K6,ISG15,MAP3K9,ILK,MAP3K8,OGT,IKBKAP,MCRS1,BRAF,MYH9,MARK4,SARS2,MARK1,MARK2,PPP1CA,EIF2AK1,MAPK6,TMPRSS11E,BACE2,MAPK4,MAPK3,F2,BACE1,MAPK8,EIF2AK3,EIF2AK4,PPP2R3B,PPP2R3A,PABPC4,DUSP10,DUSP12,ARF6,ARIH1,IL17A,DUSP13,INS,UPK1A,KLKB1,RAC1,IL17F,PAIP2,PAIP1,TAOK3,EPM2A,DUSP22,UBE2L3,SEPT11,CDC42BPG,CDC42BPA,SMURF2,PARP3,SMURF1,PARP4,PARP1,PARP2,CDC42BPB,LDLR,NUAK2,TSG101,UBE2G1,UBE2G2,TP63,EIF2A,CUZD1,PMVK,YBX2,MMP24,LNPEP,MMP20,IL1RAP,EEF2K,MRPL3,MTERF,APCS,LYN,TP53,EIF1B,CCT6A,MMP15,MMP14,WAS,MMP13,TTF2,MMP12,MMP11,LRPAP1,INHBB,MMP10,EIF4A3,INHBA,CARD14,PPEF2,EREG,PPEF1,EIF4A2,MTRF1,IL12A,MGEA5,TXK,IL12B,USP25,DOLPP1,FMOD,APC2,NNAT,ABI3,MKNK2,ABI2,MKNK1,ABI1,NECAB3,SF3B3,PET112L,MTMR3,CCT6B,SNRK,MPDU1,MARS2,DAZL,C2,USP33,MTMR7,IL4,IL3,DAZ1,IL6,UPF1,IL5,IL9,ETF1,TRIM23,QPCT,DUSP5,DUSP4,DUSP3,DUSP2,CSNK1D,CSNK1E,GSK3B,WHSC1L1,ARAF,DUSP9,LRP2,DUSP8,DUSP6,PRPF4B,IL18,IDE,HBS1L,CXCL12,TGFB1,IL10,FNTB,FNTA,CSNK2A1,ATG7,TDGF1,DNAJC7,FBXO22,SAMD4A,DNAJC1,EBI3,BCL10,MYO3A,IL29,IL27,PTPRN2,IL20,EP300,RNF139,TESK2,VAMP3,STMN1,FBXO11,PHKA2,CCL2,UBE2V1,ST8SIA3,UBE2V2,ST8SIA2,MAPKAPK2,RABGGTA,TTC1,FBXW7,PTK6,DNAJA1,FBXW2,DNAJA3,SDF2,EHMT1,MOBKL1A,ICMT,FURIN,ATG3,ATF6,NMT2,NMT1,IKBKE,ST8SIA4,DYRK1B,DYRK1A,DNAJB2,ABL1,ABL2,DNAJB6,HDAC6,PREX1,PINK1,SKAP2,CASP5,WARS,CASP6,PRMT1,CASP3,MAZ,CASP4,PRMT2,PRMT7,PKN3,PRMT8,CASP7,PRMT5,CASP8,MAN2B1,NRG1,CASP1,CASP2,ARL2,PPP2R1A,TBCE,PKN2,PKN1,NEK11,TBCA,TBCD,TBCC,ERN1,DDB2,ERN2,WASL,RAGE,UBB,MAPRE1,TM4SF4,TM4SF5,PPP2R2A,FKBP9,HS3ST5,FKBP6,FKBP5,FKBP4,BRSK2,EGLN2,BRSK1,STUB1,PAIP2B,CD9,PRSS2,PRSS3,DCLK1,OLR1,CEBPG,CBL,RAF1,BCS1L,XPNPEP1,NCSTN,ICK,MMP23B,BAX,FAF1,DZIP3,AURKC,AURKA,PRKG2,CCT3,PRKG1,SLC35A1,PRKX,PRKY,PICALM,APOE,WWP2,EIF1AX,KIFAP3,WWP1,WNK4,ERAP1,PSENEN,ANAPC2,GTPBP4,GJD3,BCR,ANAPC5,CD3E,ANAPC4,MATN1,WNK1,UBR3,WNK3,WNK2,CD40,PPARGC1A,GLCE,CD37,CAMK4,UBR5,FBXL4,CAMK1,FBXL6,AMFR,NEK4,EXT1,NEK6,FBXL2,TPST1,TPST2,KEL,FARS2,STK17B,MME,STK17A,RIMS1,CD74,EPHB2,ACE,VRK1,VRK2,STX12,FBXO6,FBXO3,FBXO7,PLAT,MLL,FBXO2,OXSR1,EPHA5,CCT7,CCT4,RPL18A,EPHA8,SUPT16H,CHAF1A,GHSR,ALG12,CHAF1B,PLAU,GRK1,COX11,ACVRL1,COX10,GJA1,GJA4,PTEN,GJA5,SENP7,ART1,ART3,PDPK1,CHST12,GPX3,CHST11,CHST14,CHST13,COX18,FANCA,FANCC,COX15,CTBP1,PRG3,UFD1L,VIL1,APTX,SIGIRR,RAD51,BLMH,SENP1,FARSB,MAP3K10,RPS4Y1,CTDP1,MAP3K13,MAP3K12,SERP1,MAP3K11,PREP,PPP6C,PARD3,FUT9,ATG12,FUT8,FUT7,FUT6,FUT5,EDEM1,GJC1,AZU1,STT3B,LPXN,STT3A,BCL3,FUT4,PEX14,PRKAA1,FUT1,PEX13,FUT2,PRKAA2,APBA1,CD28,AGA,CSNK1A1,FYB,HCLS1,MSRB2,MSRB3,COG3,TP53RK,COG7,C7ORF16,CAPG,PPP2R4,PTCH1,PTCH2,APBB1,COG2,MYOD1,OCLN,MMP9,MMP8,MMP7,EIF5A,SAE1,TTN,MMP3,MMP2,MMP1,TAPBP,AIP,PRKACB,MYST1,MYST4,MYST3,CSNK1G2,PICK1,ERP29,NAPSA,NAPSB,CLPX,DSP,CSNK1G3,CSTA,ERC1,SEPT7,PPP5C,SEPT9,SSH1,SSH2,KATNB1,NEDD8,ITGB2,LMAN1,KARS,EIF3C,IRAK3,EIF3D,UBE2D3,EIF3A,UBE2D2,EIF3B,EIF3G,EIF3H,EIF3E,EIF3F,LMTK2,EIF3I,EIF3J,UBE2D1,STK38L,GAL3ST1,PGGT1B,P4HB,EEF1A1,MRPS24,BMX,FOXP3,BRCA1,LIN7A,EIF4B,PPIH,ULK1,PPIA,EIF4H,GLMN,SPCS1,PHEX,UBE2E2,IL22RA2,UBE2E1,SEPX1,METAP1,METAP2,PRKAG1,RANBP9,ANG,MKKS,TNIP1,CHUK,VCPIP1,ZW10,IRAK2,IRAK1,UBE2A,PRKCI,CHST3,PRKCH,UBE2I,PRKCG,CHST4,CHST5,UBE2H,MRPS7,PRKCE,UBE2C,ALK,NLRP3,UBE2B,PRKCD,TYK2,UBE2N,PRKD1,EVPL,CHST7,CD80,UBE2K,CHST9,CD81,CHST8,GHRL,MDM2,DHPS,MDM4,PRKD3,PRKCZ,FRK,MBL2,PPP4R2,UBE3A,TNFRSF8,PRKDC,HCFC1,HAT1,UBE3C,TRIB2,TRIB1,ERCC8,MAP3K3,MAP3K2,TGM3,CAMK2B,SCG5,HS6ST1,TGM5,YES1,CAMK2A,SCO1,APC,GEMIN5,IL2RB,UBE4A,MAP1D,UBE4B,SIRT4,SIRT5,SIRT6,PARK2,TUBGCP2,SIRT1,SIRT2,SIRT3,VWF,TMEM48,PRLR,MAPK8IP2,IRF4,BMPR1B,POFUT1,IGFBP3,BMPR1A,RPL18,RPL19,RPL14,RPL13,LTBP4,RP2,PGC,RPL15,SH3BGR,RPL11,TLK1,FAS,TLK2,MAP2K6,SYK,PTPRJ,YARS,PTPRM,ROCK1,ROCK2,PTPRH,KIAA1804,PTPRR,EIF2S3,PTPRT,PTPRU,PTPRO,ST13,ADAMTS9,RPS19,RPS17,ST14,UBL4A,RPS12,RPS10,ATPIF1,RPS11,SURF1,WFDC2,ADAMTS5,ADAMTS4,GGCX,ERBB3,ERBB2,HFE,PPT1,MTIF2,MTIF3,RPS27,CDC42EP2,TNKS,CDC42EP5,MGAT4B,MGAT4A,NPLOC4,TGFBR1,PHB,MGC42105,RPS9,PCNP,RPS5,UBA3,HGS,TNK1,PAPPA2,TNK2,DPP3,SGSH,LIMA1,SEPHS1,PDIA2,PDIA6,PDIA5,LATS1,LATS2,CFHR1,NOD2,MSRA,POMGNT1,NOD1,NUBP1,MAPT,TRPV5,CETP,SRPK2,CLN3,ARHGEF2,PEPD,NDUFA13,SRPK1,NCK2,CCND1,MAST1,MAST2,CCND3,RPL41,CCND2,NCK1,NUP205,PFDN4,RPL3L,CAND1,RUVBL2,TMSB4Y,NSD1,CLN6,TUFM,REPS2,NACA,GPAA1,RPL35,PML,RPL37,RPL38,RPL39,PCSK2,PCSK1,RPL30,NAGPA,DGKD,PTK2B,RPL31,PPP2CA,RPL34,PITRM1,PPP2CB,PCSK9,WIPF1,PCSK6,HGFAC,PCSK5,RASA1,RPL26,TNP1,RPL24,TMPRSS6,CAPN3,RPL28,SELS,RPL29,NAE1,RPS6KA5,CCL11,MNAT1,RPS6KA4,LARGE,RPL22,RPL21,TCEB2,DPM1,HSPA4L,NLRP12,DPM2,DPM3,STK38,ZAK,ATP6AP2,CAPZA2,STK36,BTRC,TSPAN4,EIF5,CAPZA1,TNFSF15,TSPAN7,RPS6KB2,SLC7A9,TSPAN8,MIPEP,SLC7A6,SLC7A7,VCL,APOA4,APOA2,APOA1,B3GALNT1,DDX25,ST3GAL6,CPA2,RPN1,CPA3,EIF1,CPA1,RPN2,INSR,MATK,EGFR,TWF1,RET,TAZ,HDAC10,ACTN2,HDAC11,SMARCE1,HSPB1,UBA52,TRAF1,STK16,PAM,TRAF2,EID2,ACHE,FGR,STK11,STK10,ANLN,TIMP1,ECE2,RPL7,RPL6,RPL9,RPL8,RPL3,RPL5,DYRK3,HSPE1,RPL4,TRAF7,RPL7A,DYRK2,ANGPTL3,STK19,TRAF6,B4GALT7,LIPT1,TEC,AIPL1,TAF1,SMG1,RPL23A,HSPBP1,GLYCTK,LCN1,PLK4,PLK3,VCP,TSC1,CDKN2AIP,MYH11,MERTK,CPB2,NDST1,CORIN,ALG1,ALG2,UCHL1,PRDX4,PEX6,ALG5,DPH1,ALG6,DPH3,FES,RPS2,ALG8,RPS3,NDUFS7,CDC42,NDUFS5,NDUFS4,ALAS2,CLCF1,RPS3A,NDUFS8,DLG4,NPC1L1,LOXL2,LOXL1,AKR1C1,SGK1,MAN1A2,SGK3,LIMK1,CDK9,PADI4,MID1IP1,SLC9A3R1,HMGA1,SLC9A3R2,PPM1G,ADRB2,PPM1D,ATG4D,CHRM3,ATG4C,ATG4B,CHRM1,ATG4A,LCK,CDK2AP1,PPM1M,CARM1,ACVR1,GALNT2,GALNT1,TCAP,GALNT7,APH1A,ADAMTS13,GALNT6,APH1B,NFYC,PPM1B,NGLY1,IGF1R,A1CF,REN,TOR1A,A4GNT,RNF144B,PDF,NF2,VHL,ASMT,HCK,ANXA1,MAN1C1,C9ORF3,TSSK1A,TSFM,JAK2,JAK3,MBTPS1,SYT1,MRPL41,EIF2C1,B3GALT5,B3GALT4,PTPN22,RNF217,PTPN21,CD2AP,SHH,HTRA2,PLOD2,PLOD3,COL4A3BP,TRAK1,HRSP12,EIF2B2,CFD,EIF2B3,EIF2B4,EIF2B5,MRPL52,MRPL51,AARS,PIM1,PIM2,BOLL,UHRF2,HUWE1,RARS,TBRG1,SRP72,LAMC1,HS3ST3B1,GCNT4,GCNT3,DAG1,IGF2BP2,PXK,PIN4,PXN,UHMK1,MRPL55,CDA,ZMPSTE24,AGRN,GCNT1,GAD1,BMP4,LCMT1,BMP1,PTPN18,CREBBP,SMAD4,PTPN14,SMAD3,PTPN13,CDC23,EPRS,CDC20,PTPN12,ABCG1,ADPRH,CBLC,AHSA1,ABCF1,GYPC,SPG7,COPS5,KIAA0368,WASF3,FASTK,WASF1,CCNT1,CAMKK2,BAG5,BAG4,ZFYVE9,BAG2,ADAM10,ASTL,THEG,PSEN1,PSEN2,SIAH1,SIAH2,PMPCA,USP7,SHFM1,NFS1,RPL27A,AASS,HPRT1,CLDN14,SUFU,MRPL10,SUMO1,SET,LECT1,SQSTM1,SEPSECS,CHM,PCMT1,QSOX1,PTPRZ1,RRBP1,MEX3B,STAT1,EIF2B1,MIS12,MRPL23,PSMD14,TJP1,MAPK12,MAPK15,RBM14,LOR,TUSC3,TLR1,TLR3,UBQLN3,TLR4,TLR6,TLR7,TLR8,DMPK,IL31RA,TLR9,SEP15,LOX,SPN,SCUBE3,DARS,SCUBE1,FUT10,SOCS1,CDKL3,STK4,STK3,CDKL5,TRAT1,TPTE,MAP4K3,ADRM1,MAP4K4,MAP4K5,CDKL1,RIPK3,RIPK4,PGCP,KALRN,DERL2,FZR1,PPME1,DERL1,SYVN1,ITLN1,MAP4K2,MAP4K1,ANAPC10,ANAPC11,SRC,LLGL1,B3GNT5,CTRC,PTPLA,SFTPD,RNF11,CLASP1,ERO1L,IVL,RNF14,SRGN,CTRL,PTPN7,PARD6B,PTPN6,PTPN9,PTPN3,PTPN2,PTPN5,UST,PTPN4,CD276,MALT1,PSMC5,AKTIP,PSMC4,MYLK,TLN1,D2HGDH,TLN2,HPS4,TIMM50,AKT1,ACVR1B,PIGK,PAK2,PIGF,TPP1,GSN,PIGG,HPSE,POMT1,PIGH,TPP2,GOPC,PIGB,PIGC,PAK1,CSK,LTB,AKT3,PIGA,AKT2,CTSZ,CCDC88A,PIGZ,HSP90AA1,PIGY,CCDC88C,ALDH5A1,PIGV,PIGU,PIGT,MINK1,PIGS,INHA,CTSS,DAPK2,DAPK3,PIGO,DAPK1,STOM,EIF4G2,MAGT1,EIF4G3,CTSK,SBF1,CTSO,HIPK3,TPPP,CTSB,KPNA3,CTSH,CTSG,CTSF,ING5,ING4,SCARF1,GLRX2,CPZ,SPRR2C,KRT7,KRT1,PTPRB,PTPRC,PTPRD,ERG,PTPRE,LIPA,LTK,TNXB,B3GALT2,MUC20,ISOC2,CENPJ,GSG2,GMFB,L2HGDH,SPRR1A,GMFG,SPRR1B,TSSK2,LIPC,TSSK4,TSSK3,LIPE,TSSK6,F2R +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html INHBB,INHBA,IL6,NLRP12,SFTPD,GHRL,BCL3,INHA,GHSR,FOXP3,SIGIRR +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html IMPA1,GPAA1,PIP5K1A,PTEN,SERINC2,PIGK,SERINC5,APOA1,PIGF,PIGG,SERINC1,LCAT,PIGH,PEMT,PIGB,PLA1A,PIGC,CETP,PCYT1B,AGPAT2,PIK3R1,PIGA,AGPAT1,PIGZ,PIGY,PIK3C2A,TAZ,PIGV,PI4KA,PIGU,PIGT,SMG1,PIGS,PI4KB,PIGO,PITPNM3,PI4K2A,CD81,DPM1,DPM2,DPM3,PLA2G4C,PLA2G4B +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html GNPDA1,BTRC,PGD,RNF217,RNASEH1,ISG20,MIOX,CPA2,FBXO22,ANAPC2,ANAPC5,ANAPC4,UBR3,RNASEH2A,GNS,PGLS,UHRF2,UBR5,MGAM,FBXL4,AMFR,XRN2,ALDOA,FZR1,DERL2,SYVN1,DERL1,PABPC4,PFKFB1,ALDOB,NEDD8,ANAPC10,HSPA1B,CHIT1,ARIH1,UBE2D3,UBE2D2,RNF11,UBE2D1,FBXO7,NPLOC4,SMG6,SMG5,GUSB,SMG7,SMG1,CDC23,PCNP,CDC20,UBE2L3,PSMC5,VCP,POP1,SMURF2,SMURF1,UBE2E1,KIAA0368,TSG101,UBE2G1,UBE2G2,AUH,TREH,ZFP36,ABCE1,UBE2A,PFKL,UFD1L,UBE2I,PFKM,UBE2H,HYAL4,UBE2C,UBE2B,UBE2K,GAA,ERN2,UBB,SIAH2,UBE3A,HK1,TKTL1,EDEM1,STUB1,SQSTM1,RNASET2,ECD,USP33,RNF144B,UPF2,RNASE2,RNASE3,UBE4A,UBE4B,RNASE6,PARK2,SELS,GBA3,GAPDHS,GBA2,PSMD14,GSPT1,PPP1R8,PYGB +PWCOMMONS MRNA SPLICE SITE SELECTION http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_SPLICE_SITE_SELECTION.html SFRS6,SFRS5,SFRS8,SFRS9,SF1,SLU7,SF3A2,SFRS1,SF3A1,SF3A3 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html SEPT5,SNAP29,SYT1,CPLX2,CCL3,CPLX1,CCL8,RABEPK,CCL5,ARFGEF2,ARFGEF1,RIMS1,RAB26,NLGN1,SCRN1,RPH3AL,VTI1B,LIN7A,CADPS,SCIN,SYTL4,VAMP3,YKT6,PKDREJ,AKAP3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html F2RL3,GNA15,ADORA3,ADCY7,EDN2,LHCGR,VIPR1,GHRHR,BTK,AGTR1,PTGIR,HTR1B,GALR1,MC1R,LTB4R,GALR3,GALR2,RGN,PRKACB,GLP2R,HTR1D,HTR1F,HTR1E,EGFR,C5AR1,NUDT4,PICK1,HTR4,TRAT1,PTHLH,CRHR1,SSTR4,CRHR2,SSTR5,PLCE1,LAT2,SSTR2,SSTR3,SSTR1,CCR3,HTR7,HTR6,MC2R,CCR2,GLP1R,ACR,DRD1,GNAI3,CCL2,ADORA2B,GNAI2,DRD2,DRD5,ADCYAP1,ADRB3,P2RY6,P2RY4,CNR1,P2RY2,PLCH1,CNR2,P2RY1,ADRA2A,TBL3,SPHK1,HOMER1,LAT,RGS1,NPY,AVPR1B,LTB4R2,MTNR1B,ADRA1B,AVPR1A,GRK5,CORT,ADRA1D,MTNR1A,OPRM1,MCHR1,CCKAR,TACR1,WASF2,GABBR1,GABBR2,CAMKK2,EDNRA,EDNRB,NDUFS4,ANG,NMUR1,NMUR2,MC5R,CAP1,CALCRL,XCR1,PLCB2,CCKBR,PTGER4,SLA2,GRM5,GRM4,ADRB2,CHRM5,GRM3,ADRB1,GRM2,GNAQ,GHRH,CHRM2,GRM8,GRM7,CHRM1,GIPR,GNAS,TSHR,PRKD3,GAP43,PTAFR,CALCR,AVPR2,PARD3,CCR1,NPY2R,OPRK1,FPR1,GCGR,GPR3,AZU1,CALCA,HRH1,HRH3,HRH2,MC3R,PPAP2A,CAP2,IL8,OPRL1,NF1,NPY1R,CDH13,P2RY11,MC4R,NMBR,HTR2B,OPRD1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ADORA3,ADCY7,LHCGR,VIPR1,GHRHR,HTR1B,PTGIR,MC1R,GALR1,GALR3,GALR2,PRKACB,GLP2R,HTR1D,HTR1F,HTR1E,HTR4,CRHR1,PTHLH,SSTR4,CRHR2,SSTR5,SSTR2,SSTR3,SSTR1,CCR3,HTR7,MC2R,HTR6,CCR2,GLP1R,ACR,DRD1,CCL2,GNAI3,ADORA2B,GNAI2,DRD2,DRD5,ADCYAP1,ADRB3,CNR1,CNR2,ADRA2A,TBL3,RGS1,NPY,LTB4R2,ADRA1B,MTNR1B,GRK5,CORT,ADRA1D,MTNR1A,OPRM1,MCHR1,WASF2,GABBR1,GABBR2,EDNRA,EDNRB,MC5R,CALCRL,CAP1,XCR1,PTGER4,GRM4,CHRM5,GRM3,ADRB2,GRM2,ADRB1,GRM8,GHRH,CHRM2,GRM7,GIPR,GNAS,TSHR,CALCR,AVPR2,NPY2R,OPRK1,CCR1,FPR1,GCGR,GPR3,CALCA,HRH3,HRH2,MC3R,CAP2,OPRL1,NF1,NPY1R,P2RY11,MC4R,OPRD1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html RAG1AP1,DICER1,DMAP1,FOS,EPC1,GPX1,DIRAS3,DGCR8,SMARCD1,GATAD2A,H2AFY,DNMT3B,HELLS,ATF7IP,DNMT3A,CREBZF,PICK1,TRIM27,SIRT4,SIRT5,TNP1,ARID1A,IGF2,HMGA1,SIRT1,HDAC5,ATRX,H2AFY2,DNMT1,GLMN +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html NCBP2,NFKBIE,TNFSF14,ABCA2,CDH1,MXI1,TGFB1,UHMK1,BCL3,KHDRBS1,MDFI,CRYAA,NUDT4,CRYAB,NF1,SMAD3,NLRP3,NFKBIL1,FLNA,NFKBIL2,GSK3B,NLRP12,FAF1,TRIP6,BARD1 +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html KNG1,PROK2,PLCE1,SMTN,KCNB2,NMUR1,SPHK1,MYH11,ADRA1A,CNN1,SOD1,NMU +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html KCNH1,MYL6,MYOD1,CACNB2,MYEF2,TTN,MYL6B,CHRNA1,IFRD1,BOC,MYF6,BMP4,COL4A4,FOXL2,TBX3,ACTA1,TAZ,MYF5,NRD1,MYOZ1,MBNL1,CSRP3,KRT19,NOTCH1,MAPK12,SVIL,MYH11,CACNA1H,UBB,ADAM12,IGFBP3 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html STX5,EEA1,ABCA1,TINAGL1,M6PR,VTI1A,MON2,ANKRD27,ADRB2,SQSTM1,ZFYVE16,RAB35,LYST,STX16,RAB14,VPS4B,BET1L,RHOB,TOM1,DOPEY2,GOSR1,DOPEY1,YKT6 +PWCOMMONS PROTEIN AMINO ACID ADP RIBOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_ADP_RIBOSYLATION.html ART3,SIRT4,SIRT5,PARP3,SIRT6,PARP1,PARP2,SIRT1,ART1,SIRT3 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html CASR,ACHE,OSTF1,STATH,ZNF675,GLI2,ATP6V1B1,AHSG,GLI1,CALCA,DSPP,TPP1,RUNX2,TWIST2,SRGN,BMP4,KL,IL7,COL13A1,DMP1,NF1,MGP,CDK6,SPARC,ANKH,MC4R,CARTPT,ATP6V0A4,ACVR1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html ALS2,LIMA1,ARF6,CXCL12,LATS1,NEBL,NCK2,CDC42EP2,GSN,NCK1,CAPG,TMSB4Y,RASA1,CDC42EP5 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html METAP1,TUSC3,METAP2,DPH3,IL31RA,AKT1,PRMT7,PRMT8,CLCF1,PRMT5,TDGF1,RPN1,EGFR,IL29,LYN,SOCS1,STK4,IL20,MAGT1,EP300,CD80,HIPK3,F2,CD81,IL12A,MAP3K12,TPST1,TPST2,ABI3,MAP4K1,ABI2,ITGB2,ABI1,UHMK1,STT3B,STT3A,TNKS,IVL,IL3,P4HB,IL5,NF2,PDF,MAP1D,HCLS1,CREBBP,SMG1,STAT1,GSK3B,DYRK1A,DPM1,DPM2,DPM3,TNK2,ABL1,ABL2,F2R,IL22RA2 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html BMI1,FGF8,LMO4,ARNT2,GLI2,ZIC1,LSR,SHH,TGFB2,TDGF1,CEP290,BCL10,NANOG,ADAM10,NKX2-6,VANGL2,PTPRR,UBR3,MBNL1,CDK5,SCEL,SLIT2,EYA2,NCOA6,RIPPLY1,EGFL8,KIAA1217,TNFAIP1,CDK5R1,DSCAML1,TRIM15,T,NPM2,RASA1,MDFI,NAT8,MLL,TBX3,NASP,TBX5,SMAD5,FTO,SMAD2,TBX1,SMAD1,CELSR1,RICTOR,SOD1,RACGAP1,TINAG,NOTCH4,PTCH1,PBX1,NR5A2,PBX3,KLF4,PBX4 +PWCOMMONS POSITIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NCK2,CDC42EP2,SORBS3,NF2,MAPT,NCK1,KATNB1,ARF6,ARHGEF10L,CDC42EP5 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html GALNT2,GYPC,GCNT4,GCNT3,GALNT1,LDLR,GALNT7,GALNT6,POMGNT1,POMT1,TRAK1,DPM1,DPM2,DPM3,A4GNT,OGT,GCNT1,POFUT1 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD2,ALS2,FGD1,RALBP1,NF1,ARHGAP27,ARF6,DMPK,MFN2,NOTCH2,PLCE1,CDC42BPG,TSC1,RASGRP4,RAC1,CDC42BPA,ABRA,FGD5,FGD6,FGD3,FGD4,CDC42BPB +GO CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROLIFERATION_GO_0008283.html IL9R,PGF,OSMR,AIF1,BTC,CLK1,MXI1,ISG20,SSR1,MAGED1,CUL3,CUL2,CUL5,CDCA7,HTR1A,CUL1,SYK,CRTAM,CGRRF1,SKP2,MARK4,SSTR4,SSTR5,NME2,SIRPG,SSTR2,ADAMTS8,SSTR3,SERPINF1,SSTR1,NME1,ATPIF1,ADAMTS1,MST1R,EIF2AK2,MCTS1,ERBB4,ERBB2,RPS27,SLC29A2,CKLF,CDC123,PEMT,MTCP1,NUDC,MKI67,TGFBR1,KLF10,KLF11,TGFBR2,SPHK1,DUSP22,GAS8,GAS6,RERG,PCNA,HGS,AREG,OPRM1,FGF6,FGF5,FGF7,ELF4,ELF5,NAP1L1,BNIPL,EVI5,CREG1,MYC,SERTAD1,FGF4,CDC7,CDC6,ARHGEF2,ARHGEF1,LYN,TPX2,TP53,IL6R,MXD1,MXD4,LRPAP1,CIAO1,NCK2,EREG,NAB2,NCK1,TXN,IL12B,EIF5A2,ALOX12,CSF3,ZMYND11,TBC1D8,CSF1,POLA1,ABI1,PSPHL,CCL23,PTK2B,BUB1,MAS1,BUB3,IL4,IL3,IL6,IL8,IL7,IL9,TRIM27,IGF1,APPL1,APPL2,PLG,CLEC11A,CAPN1,MNAT1,CDH13,LRP1,CCL14,EPGN,BNC1,ZNF259,LRP5,IL2,BMP10,CNOT8,LMO1,IL18,TNFSF15,JAG2,TNFSF13,TNFSF12,ENPEP,IL15,RBM9,TGFB2,CXCL10,IL11,DAB2,CDKN2A,CDKN2B,CDKN2C,CDKN2D,TGFBI,TDGF1,IL1B,IL15RA,IL1A,EBI3,MATK,EGFR,IL29,BST2,IL27,NRD1,IL21,PA2G4,TIMELESS,TCFL5,EID2,ACHE,IFITM1,SIPA1,BMPR2,UBE2V2,SESN1,TIMP1,IL12RB2,IL12RB1,PRKRA,ADRA2A,B4GALT7,HELLS,TFDP1,DNAJA2,FSCN1,EPS15,CDKN1C,CDKN1A,LAMP3,S100B,TSC1,PLK1,MYO16,FABP3,ADRA1B,ADRA1A,FABP7,ADRA1D,FABP6,E2F1,CDC14A,BAP1,PAWR,FES,PRDX1,GPC4,WARS,KIF2C,NDUFS4,DKC1,PRMT5,DLG5,E4F1,FOSL1,RHOG,DLG1,KIF15,CDK9,CDK6,CDK7,RPS4X,CDK4,CDK5,CDK2,CDK3,HOXC10,PPM1D,CHRM5,CHRM4,CHRM3,TNFSF13B,CHRM1,MAPRE2,MAPRE1,TSHR,TM4SF4,VIP,NDN,CTF1,NDP,KITLG,DEC1,TRAIP,IGF1R,TSPAN31,GPNMB,FIGF,NOX4,TCIRG1,COL4A3,KLK8,TNFSF4,FLT1,NF2,PDF,VHL,FLT3,FLT4,NF1,RAF1,CDC25C,TNFSF9,CDC25A,TNFSF8,CDC25B,GCG,CUL4A,RARRES3,RARRES1,CADM1,EDN1,CDC16,CD47,DDX11,GAB1,INSIG1,CHRNA7,RAPGEF3,GTPBP4,CAPNS1,CD3E,PIM1,TBRG4,VTI1B,PIM2,DCTN2,VEGFB,UHRF1,UHRF2,PRDM4,ALOX15B,CD40LG,TACSTD2,KRT16,UBR5,CD33,VEGFA,TBRG1,MNT,PDGFRA,LAMC1,TGFB1I1,BIN1,ENPP7,CDK5R1,ELN,CHEK1,CD70,EPHB4,CD74,LIF,TAL1,AGGF1,BAI1,LAMB1,COL18A1,CRIP1,SRA1,S100A11,SLAMF1,CDC27,NOTCH2,LAMA1,NPY,NUP62,EPS8,ETS1,TCF19,IL5RA,PYY,UTP20,PDZK1,PRKRIR,KLF4,DLEC1,PPARD,NRP1,ACVRL1,LY86,BCAR1,ZEB1,GLI2,PTEN,FLT3LG,GLI1,GPX1,CGREF1,BLZF1,TNFRSF11A,GFI1B,CCL3L3,TGFA,CYR61,CTBP1,CTBP2,RBBP4,CCKBR,PRG4,CD160,ARTN,CD164,RBBP7,CTNNBIP1,PROK2,C6ORF108,MAP3K11,CXCL1,MIA,BCAT1,USP8,CXCL5,PRTN3,EHF,SFN,PDAP1,MIF,ZFP36L2,SPEG,CD24,QSOX1,CD28,PDS5B,TBX3,TBX2,TBX5,NASP,HCLS1,FZD3,CDKN3,EEF1E1,PTCH1,TOB2,TOB1,TUSC2,STIL,FGF18,TSPO,PDGFA,DTYMK,TTK,EIF5A,FGF10,FOXO4,VIPR1,IL31RA,REG3A,MS4A2,GLP2R,LGI1,ODZ1,IFRD2,GNL3,TNFRSF17,PTHLH,FGFR1OP,EMP3,EMP2,EMP1,DERL2,LST1,HDGF,TIPIN,UMOD,FTH1,REG1B,REG1A,CSE1L,NPM1,SFTPD,GML,RUNX3,CSF1R,TP53I11,GNRH1,CD276,BRCA2,FOXP3,BRCA1,CD274,GLMN,CD79A,LDOC1,SST,BMI1,INSL4,IGFBP7,IGFBP6,NR6A1,CBFA2T3,CBFA2T2,ANG,CDK10,PRL,MT3,KHDRBS1,NANOG,CCDC88A,EGR4,INHA,SPDYA,PRKD1,OSM,MFN2,TNFRSF9,CD86,BTG2,BTG1,BTG4,BTG3,CD81,SCIN,BUB1B,GHRL,MDM2,DHPS,MDM4,ICOSLG,ING5,CKS1B,FRK,ING4,TSPY1,TNFRSF8,SPOCK1,POU1F1,TRIB1,CALCA,RASGRP4,KRT2,PTN,POU3F2,KRT4,FGFBP1,ING1,APC,SCG2,THPO,STAMBP,ERF,PTPRC,ERG,IL2RA,RACGAP1,CKS2,ATP8A2,IRF2,MPL,CHRNA10,IGFBP4 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html UTS2,ACVRL1,PTGS2,CORIN,ATP6AP2,CYP11B2,PTGS1,BRS3,NPR2,SOD1,GCGR,CALCA,AGTR2,ACE,RENBP,CHGA,AGT,REN,CARTPT,ERAP2,GNB3,NPPA +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html PARD6B,PARD3,CD3G,CAP2,BRSK2,PRKCI,CCL4,MARK2,SFRP5,CDC42,WNT1,ANK1,CRB1,MAP7,CLASP2,CAP1,SPN,DLG1,CDC42BPB +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html POLL,MMS19,RAD23B,DDB1,RAD23A,TP53,BRCA2,LIG4,XAB2,ERCC8,ATXN3,ERCC5,XPC,ERCC6,DDB2,ERCC3,ERCC4,NTHL1,ERCC1,ERCC2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FST,ZNF254,TCEAL1,EPC1,SIN3A,ZNF396,SUPT5H,TWIST2,TWIST1,ZNF593,ZHX1,MECP2,ZHX2,ZNF189,ZHX3,NR0B2,CSDA,NR0B1,FOXN3,PA2G4,ZNF238,SMARCE1,TGIF1,PRDM1,HMGB1,EID1,VPS72,MEIS2,HEXIM2,HEXIM1,DRAP1,BCOR,TCF25,NKX2-5,HELLS,MDFI,BMP2,KLF12,KLF10,KLF11,SMAD4,RYBP,SMAD3,SMAD2,FOXP3,HDAC5,SMARCC2,JAZF1,DNMT1,RBPJ,HDAC8,KLF4,E2F1,ZBTB32,PPARD,RSF1,ARID4A,E2F6,NR6A1,SPI1,TP63,ZNF202,CTCF,ZEB1,PAWR,GLI2,HSBP1,DAXX,ZNF345,MEN1,GFI1B,ZNF148,POU4F2,NFX1,ZNF281,ATF7IP,LDB1,ARID5B,SLA2,ARID5A,NDUFA13,RB1,FOSB,MXD4,NRIP1,CHMP1A,BPTF,ZNF136,RIPPLY1,MDM2,MDM4,CUX1,NSD1,ZFP161,GLIS3,ZMYND11,ING4,GLIS1,ZBTB16,ZNF177,ZNF174,ORC2L,GATAD2A,PEX14,BCL6,SUPT4H1,ENO1,FOXD3,TBX3,TBX2,VHL,SIRT4,TRIM27,SIRT5,TNP1,ILF3,PHF12,CBY1,SNAI2,SIRT1,STAT3,ZNF157,DR1,IRF7,IRF8,PHF21A,IRF2 +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html CDC6,ENPP7,GTPBP4,TSPYL2,NF2,GMNN,TIPIN,S100A11,RAD9A,ATR,RAD17,CDT1 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html STON2,SPACA3,STON1,AP2S1,CBL,ARF6,PPT1,LDLRAP1,AHSG,AZU1,CDH13,GATA2,PACSIN3,ZFYVE16,RAC1,SFTPD +PWCOMMONS IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_PROCESS.html AQP9,CADM1,IL6ST,TPD52,SART1,MAP3K7,CD47,LTB4R,SEMA7A,ERAP2,IFNK,SYK,IKBKAP,GTPBP1,CRTAM,C5AR1,CD3D,CD3E,NCF4,LIG1,LIG3,COLEC12,GEM,MYH9,THY1,CRHR1,CCR9,CCR8,LILRB2,SIRPG,CCR6,RPS19,CCR5,CCR4,CD34,CD40LG,CCR2,MADCAM1,IL1R2,CNIH,HLA-DRB3,FCGRT,CD74,IL17A,IL17B,INS,CKLF,ZAP70,BLNK,TCF7,ST6GAL1,MLL,NOTCH2,RGS1,ETS1,NOTCH4,CLEC7A,TCF12,TM7SF4,IL27RA,ELF4,LY86,BCAR1,IL28RA,SPI1,ZNF675,BNIP3,ZEB1,SPINK5,CFHR1,SAA1,HAMP,IL4R,CEACAM8,SEMA3C,DPP8,FCGR3A,FCGR3B,DPP4,SPACA3,PRG3,LYN,CMKLR1,GZMA,IL6R,NFAM1,CD164,WAS,NCK2,INHBA,IL18BP,EREG,LAX1,NCK1,IL12A,LRMP,SEMA4D,IL12B,NHEJ1,RAB3D,OPRK1,CCR1,CSF1,GPR65,ZBTB16,IL7R,CCL27,MLF1,CCL26,AZU1,CCL24,CCL25,CCL22,CCL23,SNRK,CCL20,CCL21,IL10RB,XBP1,BCL2,FCGR1A,DEFB118,CD22,CCBP2,CD24,C2,CD28,LY75,IL4,FYB,IL6,IL8,IL7,HCLS1,CTLA4,CCL19,TBX1,SOD1,TRIM22,CCL18,CD1D,PRELID1,FCGR2B,FYN,BNIP3L,ATP6V0A2,IL2,IL16,IL18,MMP9,JAG2,VTN,TLR4,TNFSF13,APOBEC3G,FOXO3,IL15,VIPR1,APOBEC3F,TLR7,CXCL12,TLR8,IL10,TGFB1,TGFB2,TAPBP,IL31RA,APOA4,APOA2,APOA1,NLRC3,GPR44,MS4A1,MS4A2,ACIN1,ODZ1,MYST1,EBI3,MYST3,CIITA,BCL10,POU2AF1,BST2,IL29,BST1,IL27,TAZ,YTHDF2,TNFRSF14,SOCS5,IL21,TRAT1,IGSF6,LAT2,CST7,MNX1,CARTPT,DEFA1,KIR2DL1,KIR2DL3,GBP2,TNFAIP1,TRAF2,LST1,CCL2,IFITM2,IFITM3,MAP4K2,MAP4K1,ITGB2,IL32,DEFB127,CX3CL1,PYDC1,CCL5,CCL4,FTH1,DOCK2,MIA3,CNR2,PRKRA,SFTPD,DYRK3,RUNX1,TRAF6,DEFB1,HELLS,ARHGDIB,MAFB,CD276,MALT1,FOXP3,AIM2,HDAC5,HDAC4,LAT,FCAR,CXCL13,IKBKG,CD274,RFX1,GLMN,CD79B,CD79A,HDAC9,IFI6,PREX1,PAX5,SKAP1,PDCD1,MBP,CD97,AKT1,ACVR1B,CDC42,CD96,ALAS2,CXCR4,LTF,NFIL3,APLN,PRL,CHUK,CCRL1,KIRREL3,IK,SIT1,PTGER4,LDB1,SLA2,CDK6,CHST4,CTSS,INHA,IFI16,NCR1,CTSW,UBE2N,CD83,ACVR2A,TARBP2,CD86,C1QBP,NCOA6,SCIN,LCK,CTSE,CTSC,TREM1,TREM2,ICOSLG,CTSG,PTAFR,LCP2,PSMB10,MBL2,RAG1,RSAD2,PF4,TNFRSF4,CALCA,RASGRP4,HRH2,FCN2,FCN1,POU2F2,KRT1,CD2,IL2RG,CD4,MR1,CD7,SCG2,PTPRC,SECTM1,CEBPB,IL2RA,DEFB103A,CEBPG,MAL,GPI,SP2,ANXA11,IRF8,DMBT1,OPRD1 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html FMOD,EID2,ACVRL1,SNX6,LTBP2,GDF5,STUB1,TGFB1,CITED2,MAP3K7,FOXH1,PEG10,FNTA,CDKN2B,ZFYVE9,LEFTY2,IL17F,GDF9,SMAD7,TGFBR1,KLF10,SMAD4,CIDEA,SMAD3,SMAD2,LEFTY1,CDKN1C,HIPK2,TGFBR3,GDF10,TGFBRAP1,GDF15,HPGD,ENG,BMPR1A,ACVR1 +PWCOMMONS ANATOMICAL STRUCTURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_DEVELOPMENT.html MEF2C,MEF2B,HRAS,MEF2A,GDA,BTD,PPP2R5D,RORB,MYLIP,SART1,BTK,CUL7,SH3GL3,BRAF,PDPN,MYH3,LIG1,UGCG,EOMES,LIG3,MYH7,MYH6,MYH9,PROX1,MARK4,THY1,MARK2,DOC2A,SERPINF1,TAGLN,FOXG1,ZNF384,SHOX,PMP22,EIF2AK3,SH3GL2,SH3GL1,OSTF1,AMTN,SERF1B,CACNB2,ARF6,T,ATN1,RAC3,KAL1,UPK1A,IL17F,RAC1,UPK1B,ZAP70,SPP2,NTF3,CYP46A1,TAOK2,MOBP,UPK3A,SERPINI1,SMURF1,MAB21L1,MAB21L2,CDC42BPB,FGF5,FGF8,NEURL,HTATIP2,FGF7,ELF3,EZH1,TCOF1,SPI1,SCRG1,NMUR2,FGF1,FGF2,FGF3,GHR,EGFL7,LYN,ZNF141,WAS,INHBA,EREG,FOXC2,LRMP,FOXC1,IL12B,CSF1,SCML2,NNAT,SCML1,TRIM13,TRIM15,SNRK,COL7A1,PKD2,PKD1,PAPSS1,PHLDA3,PAPSS2,C1GALT1,WNT8B,IL4,MYF6,IL3,IL8,LMX1B,LZTR1,IL7,MYF5,NTNG1,NTNG2,IGF1,IGF2,PHYH,CDH13,MEF2D,ACCN1,EPGN,STAB1,BNC1,FOXE1,AMOT,WNT7A,C4ORF6,IL2,MPZL2,GRIK1,IL18,LMO4,TGFB3,PDX1,LRRC4C,NR2E1,TGFB1,IL10,TGFB2,CXCL10,TDGF1,BCL10,STMN3,IL27,BAIAP2,ENC1,MGP,NRD1,BICD1,IL20,EP300,TIMELESS,MNX1,TFAP2B,VAMP5,TFAP2A,NFE2L1,SMARCA1,EDA,SNTG2,FGD2,FGD1,CCL2,ADORA2A,ST8SIA2,MDK,CCL4,NR2C2,TEAD4,PCDHA10,PCDHA11,RPL10A,EGF,FGD5,FGD6,UPK2,FGD3,FGD4,FKTN,CCM2,FSCN2,MEA1,JRKL,P2RX5,HDAC5,HDAC4,LYVE1,S100B,ST8SIA4,DYRK1A,MYO16,FABP1,SCN8A,HDAC9,FABP7,FABP5,IER3,PAX6,PAX5,PAX4,PAX3,PAX2,PAX1,MBP,SPRY2,PCDH1,RNF103,PAX7,PAX8,TIE1,CNTN6,IFI16,HOXC11,HOXC13,GAA,CNTN4,NRGN,UBB,CASQ2,BRSK2,RAG1,APLP1,CD9,COL9A1,COL9A2,AVIL,CD4,CALML5,DKKL1,DCLK1,NOX4,KLK7,SECTM1,EBP,KLK8,KL,CEBPG,KLK5,MAL,FRZB,COL5A3,COL5A2,BAX,GDF11,GDF10,NELL1,UTRN,LHCGR,FST,HIRA,TPD52,MOG,ATP2B2,DSPP,APOE,ATXN10,ERAP1,CEP290,COL12A1,RAB26,COL10A1,MATN3,CD3G,CD3D,VANGL2,KRT13,KRT10,SCEL,FARP2,HES1,KRT19,RND1,KRT18,KRT17,KRT16,ATP2C1,KRT15,VEGFA,KRT14,NPTN,LRCH4,EXT1,EXT2,PNMA1,IQCB1,DEAF1,CDK5R1,KEL,RBP2,HOXB13,EPHB4,EPHB1,AHSG,EPHB2,SEMA5A,TCF21,LHX1,CRMP1,LHX3,LHX6,SMA4,MAML3,OLFM1,BLNK,COL18A1,IKZF3,MLL,IKZF1,HPCAL4,FTO,KRT31,CELSR1,KRT34,KRT35,KRT32,NCKAP1,DLX2,ATP2A2,ETS1,DLX6,ETS2,DLX5,GHSR,CLTCL1,TCF12,KLF4,TCF15,PCDHA6,NRP2,PCDHA7,PCDHA8,PPARD,NRP1,ARSE,ACVRL1,PCDHA2,PCDHA3,PCDHA4,PCDHA5,MYBPC3,PCDHA1,KCNIP2,GLI2,CANX,SPINK5,PTEN,GLI1,AES,GNPAT,SEMA3B,MKX,CAP1,PCDHB9,PCDHB5,PCDHB6,UFD1L,PCDHB3,PCDHB4,ARTN,PCDHB2,NFAM1,AMIGO1,PROK2,SEMA4F,NPPB,CXCL1,ETV7,PARD3,RAB3D,TH,ZBTB16,AZU1,LY6H,VWC2,APBA2,APBA1,CAP2,JARID2,HCLS1,NLGN1,NPR1,GJB5,NPR3,SOD1,SNAI2,GJB1,CD1D,YWHAG,YWHAH,SVIL,C7ORF16,PHGDH,NHLH2,PTCH1,PTCH2,ATP6V0A4,NHLH1,TMEM176B,VLDLR,MYOD1,NRTN,CASR,MMP9,FOXO3,FOXO4,TTN,GDNF,GHRHR,PRKACG,WNT1,PROP1,GATA6,ROBO1,GATA3,GATA4,ROBO4,PDGFC,ROBO2,KRT85,LGI1,MYST1,IFRD1,KRT83,MYST3,LBX1,PICK1,FOXN1,MLXIPL,CBLN1,CST6,LSAMP,OPHN1,DSP,NRSN1,EMP1,FGFR1,FGFR3,SSH1,NEDD8,GREM1,PCDHAC2,PCDHAC1,ITGAX,HTT,BMX,ITGA2,FOXP2,SALL1,ITGA7,GLMN,CYFIP1,CD79A,SCMH1,CHRD,POU6F1,AEBP1,POU6F2,DGCR2,ANG,DGCR6,MKKS,POU4F2,POU4F1,SRD5A2,MKL2,SHC3,BOC,CHUK,KIRREL3,ALX1,PRKCI,DMRT1,DMRT2,DNAI2,ALK,FSHR,EYA3,EYA4,EYA1,EYA2,EVPL,KRTAP5-9,BPTF,SCIN,ITGB1BP2,GHRL,UTP3,KRT6A,KRT6B,UBE3A,MTM1,NPTX1,COMP,POU2F3,TGM3,TGM5,ERCC3,CRIM1,SCG2,ERCC2,ZBTB7B,GLRB,FOXL2,PARK2,SIRT2,ATXN3,MAP1S,BMPR1B,IGFBP3,IGFBP4,HCCS,ALS2,HOXD13,L1CAM,CITED2,FLI1,CTGF,SYK,PHOX2B,PITPNM1,NME2,MSX1,RPS19,TRAPPC4,ATPIF1,TRAPPC2,ADAMTS4,ODAM,NAGLU,EMCN,ERBB2,MYEF2,PPT1,HESX1,NPHP3,MUSK,CDC42EP2,CDC42EP1,CDC42EP4,CDC42EP5,DMBX1,DVL2,DVL3,KLF10,PCNT,SPHK1,MSTN,TNNI3,PCDH18,DVL1,SHOX2,TRPS1,MAP7,TLL1,RTN4,KCNH1,LIMA1,HNF1B,ZNF675,RTN1,DGCR14,DFNB31,DYNLL1,MAPT,USH2A,STS,ARHGEF2,STX2,ACTA1,CMKLR1,PTF1A,TLE3,TLE1,TLE2,GPR98,FLNA,NAB2,KIAA1217,RAPGEFL1,CLN8,NHEJ1,CLN5,PCDHB15,FHL3,PML,PCDHB14,PCDHB13,PCDHB12,ITM2B,PCDHB11,PCDHB10,PCDHB16,COL6A3,PCDHB17,CSDE1,MAS1,PCSK9,ERVWE1,HSD17B3,RASA1,SIM1,SIM2,CES4,CAPN3,PLG,RPS6KA6,RPS6KA3,LARGE,HBEGF,MPPED2,CTNS,PES1,NR5A2,GFRA3,NR5A1,BMP10,CHERP,HMGCR,JAG2,TNFSF13,TNFSF12,ZIC1,ZIC2,VCL,NRCAM,ANK1,GPR45,APOA5,UNC5C,SPON2,BPNT1,MATK,RET,TAZ,SIX3,DLL3,SIX2,VAX2,ACTN2,SIX6,GPR56,SIX1,COL1A2,COL1A1,SLC40A1,ACHE,DRD2,MRAS,CNTFR,EXTL1,ECE2,CRB1,DYRK3,ANGPTL3,ANGPTL4,ADAM23,NEUROG1,WHSC1,NEUROG3,ANKH,NDUFV2,MYH11,CACNA1H,ADAM22,CORIN,DUOX2,DUOX1,PRDX1,GPC4,CDC42,TRIM3,ALAS2,GPC3,NDUFS4,HEY1,PCP4,HEY2,DLG4,RHOB,DLG1,LIMK1,OTX2,CDK6,MBNL1,NCL,CDK5,CHRM3,NCOA4,CHRM2,CHRM1,LCK,NCOA6,ACVR1,IRX4,ABLIM1,NDP,CTF1,RNH1,TSHB,PF4,DCN,ALDH3A2,DCT,MSX2,COL17A1,DNER,PAFAH1B3,PAFAH1B1,FBN2,DCX,COL4A4,COL4A3,PLP1,COL4A2,NF2,ALPK3,COL13A1,HCK,NF1,FBN1,DPYSL5,DPYSL4,DPYSL3,RCAN1,DPYSL2,RCAN3,ANXA2,HEYL,SMPD1,JAK2,APAF1,FEZ2,FEZ1,DMBT1,MRPL40,NOG,CDX1,S100A7,SNCA,AQP4,POSTN,CD2AP,ADORA1,SHH,BDNF,PLOD1,CHRNA4,CHRNA7,CHRNA1,PITX3,EIF2B2,EIF2B3,TWIST2,PITX1,EIF2B4,EIF2B5,TWIST1,PITX2,EFNB3,NKX2-6,MDGA1,MDGA2,EFNB2,TBR1,PRELP,CD40LG,EFNA5,LAMC2,LAMC1,KCNMB4,HOXA13,HOXA11,ELN,ITGA11,IGF2BP2,IGF2BP3,TAGLN3,KCNMB2,LAMB3,AGGF1,BAI1,AGRN,IL1RAPL2,LAMB1,EMD,NKX2-2,BMP4,BMP2,BMP1,TRPC5,ARFIP2,EN1,MYOZ1,SMAD2,MCAM,CSRP3,NKX6-1,LAMA2,NOTCH3,SFRP5,NOTCH2,NOTCH1,LAMA3,SFRP1,NOTCH4,TMOD2,LHB,ENG,GYPC,SPG7,TM7SF4,CDSN,TNFRSF11B,ALOX12B,COL11A1,DNAJC19,CYR61,DHCR24,TBX10,FLOT2,RBM45,SLIT1,SLIT2,SLIT3,VCX3A,SGCG,ROD1,SGCD,SGCE,SIAH1,ADAM12,TBX19,SGCA,SGCB,SHROOM1,SHROOM2,SHROOM3,SHROOM4,STATH,COL2A1,EHF,SUFU,MLF1,SPEG,UGT8,LECT2,THBS4,FZD9,NAT8,TBX6,TBX3,PTPRZ1,TBX5,NASP,TBX4,TBX1,AFF2,FZD2,FZD5,EIF2B1,STAT3,DKK3,COL19A1,MAPK12,CLEC3B,DRP2,CLEC3A,NEUROD2,PBX1,CIT,PBX3,PBX4,FGF19,FGF18,WFS1,FGF14,FGF17,CRABP2,ARNT2,FGF16,FGF11,FGF10,FGF13,FGF12,CSPG5,ANKRD7,IL31RA,GSTM3,ACIN1,ODZ1,SPN,DSCAM,SOCS5,NR0B1,MEPE,STK4,NUMBL,TIMM8A,PTHLH,PLCE1,GYLTL1B,CARTPT,PRPS1,KALRN,WNT5A,SRI,MYL6,GCLC,LST1,SOX3,ONECUT2,MAP4K2,NINJ2,NINJ1,DSCAML1,MAP4K1,ATP6V1B1,SOX8,GCLM,B3GNT5,HOXA4,SFTPD,CLASP2,RUNX1,RUNX2,SRGN,SFTPB,MEST,PARD6B,EVC,MAFB,CPNE6,DMP1,GSC2,TINAG,GCM2,GCM1,HOXB5,LSR,CRX,GSS,ACVR1B,TPP1,POU5F1,SOX15,KCNQ2,PRL,SOX10,EGR3,EGR2,CCDC88A,SOX13,SOX14,NRXN3,ALDH5A1,LDB1,SOX11,INHA,NRXN1,ACVR2A,SMTN,BTG1,NRL,BTG4,NAIP,WNT11,GSTP1,CPM,RTN4RL1,SPOCK1,POU1F1,KRT9,CALCA,NPAS1,UTP11L,NPAS2,KRT5,HAND1,HAND2,RASGRP4,MYL6B,PTH,KRT1,MSI1,KRT2,POU3F3,PTN,RTN4RL2,KRT3,KRT4,PTS,MYOC,PTPRC,DTX1,PLAC1,CENPF,SPARC,CBY1,RACGAP1,WNT2B,GMFB,PSPN,CASP14,SPRR1A,SPRR1B,KCNN3,F2R +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html IL4,PTPRC,CD3E,IL18,IL27,CD276,IL21,NCK2,NCK1,SFTPD,GLMN,IL12B,CD24,ICOSLG,EBI3,CD28 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html CRNKL1,CWC15,TRA2A,SNRPD1,SNRPD2,SFRS6,SFRS5,DHX38,SFRS8,USP39,SFRS9,DBR1,GEMIN8,SFRS2IP,DDX20,GEMIN6,GEMIN7,GEMIN5,PRPF31,SRPK2,SF1,SNW1,SF3A2,SFRS1,SF3A1,SF3A3,DDX39,SLU7,PHF5A,SIP1,TXNL4A,BAT1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html SMARCAD1,XRCC5,RAD51C,HMGB1,XRCC3,BLM,MRE11A,RAG1,UBE2V2,CHEK1,TNFSF13,SPO11,IL7R,SYCP1,TGFB1,RPA1,IGHMBP2,RAD21,RAD51L1,SETMAR,RAD51L3,ERCC4,ERCC1,IL4,EXO1,LIG1,MSH5,MSH4,LIG3,TSN,RAD52,RAD54L,ATM,BRCA1,RAD50,RAD51,UBE2N,ATRX,REC8,RPAIN,CD40LG,TEP1,RAD54B,RUVBL2,DMC1,KPNA2,KPNA1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html PPFIA2,ACVRL1,PPFIA1,ITGA11,ITGA10,PTEN,COL17A1,CDKN2A,SORBS1,FXC1,PKD2,PKD1,ANGPTL3,THBS3,RASA1,PARVG,NF2,TAOK2,COL13A1,NF1,ACTN1,ITGA2,ACTN2,CDK6,ITGA3,ACTN3,ECM2,THY1,CDH13,LYVE1,TSC1,ITGB1BP1,FBLN5,ITGA7,TESK2,SGCE,ADAM15 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html TPST1,TPST2,ABI3,ABI2,ITGB2,ABI1,IL31RA,CLCF1,TDGF1,EGFR,IL3,IL5,IL29,LYN,NF2,HCLS1,SOCS1,STAT1,IL20,CD80,CD81,DYRK1A,F2,IL12A,TNK2,ABL1,ABL2,IL22RA2,F2R +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CADM1,ELF4,IL18,JAG2,SPINK5,SART1,CD47,NLRC3,INS,SFTPD,ZAP70,CD2,CD4,CD24,EBI3,CD28,CD7,IL4,PTPRC,CRTAM,SIT1,CD3D,CD3E,IL7,IL27,SLA2,CD276,SOCS5,IL21,FOXP3,CD1D,THY1,NCK2,LAT,SIRPG,LAX1,NCK1,LCK,GLMN,CLEC7A,IL12B,NHEJ1,ICOSLG,IL2 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html E2F1,TAF1,CDC6,CDC23,TBRG4,CDK6,RB1,FOXO4,CDC25C,CDK2,CDKN1C,PRUNE2,GFI1B,CDK10,MAP3K11 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html IL18,TLR1,TNFRSF8,TLR3,TLR4,TLR6,TLR7,TLR8,TLR9,AZU1,APOA2,NOD1,IL17F,SFTPD,BCL3,LTB,EBI3,SPN,CD28,IL4,BCL10,IL6,PRG3,IL27,CEBPG,IL9,CD276,INHA,FOXP3,SIGIRR,INHBB,INHBA,MAST2,EREG,NLRP12,GHRL,GLMN,IRF4,IL12B,GHSR +PWCOMMONS POSITIVE REGULATION OF EPITHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION.html EGFR,LAMA1,NME2,EPGN,NME1,ERBB2,FGF10,TGFA,LAMC1,LAMB1 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html RAB2A,NRBP1,LMAN2L,BET1,USE1,LMAN1,ERGIC1,ERGIC2,ERGIC3,COG3,STX18,SEC22A,SEC22B,SEC22C,GOSR2,YKT6,ZW10 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html EHMT1,PHB,CREBBP,HDAC10,HDAC11,PPARGC1A,SIRT2,RPS6KA5,UBE2N,SET,HUWE1,PRMT7,PRMT8,WHSC1L1,RBM14,CARM1,MYST1,NSD1,MAP3K12,MYST4,HDAC6,MYST3 +PWCOMMONS TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION.html SLC2A4RG,XRCC6,HOXD13,MED24,RORB,MED23,REST,MED21,ZNF254,MED20,CITED1,CITED2,EPC1,TAF5L,FOXF1,MED26,MED27,FOXF2,PQBP1,VPS4B,ZNF396,PATZ1,IKBKAP,ZNF45,PCBD2,RREB1,RXRA,ZHX1,ZHX2,MECP2,MED12,ZHX3,MED14,HNF4G,MED13,NME2,HNF4A,PTRF,ZNF238,MED16,MED17,SMARCAL1,TGIF1,SHOX,MYBBP1A,ZNHIT3,TRAPPC2,ZNF76,CRTC1,NFKBIB,MYEF2,XAB2,VPS72,FOXH1,HEXIM2,HEXIM1,PIR,ZNF74,TCF4,VEZF1,TCF3,ARHGEF10L,DMBX1,TCF7,UTF1,KLF12,KLF13,TGFBR1,MAP2K3,PHB,KLF10,KLF11,ESRRG,MSTN,TFCP2,USF1,TRPS1,MZF1,PARP1,TAF1C,HLF,ELF1,HNF1B,TAF1A,ELF2,HNF1A,HTATIP2,ELF3,ELF4,ELF5,EZH2,SPI1,TP63,ZNF345,DAXX,YBX1,YBX2,NOD2,ZNF350,RRN3,HSF2,ZNF148,ZNF146,CREG1,BRD7,SPIB,HSF4,MYC,TAF1L,BRD8,ZNF281,ATF7IP,BATF3,ZNF282,BRF1,MTERF,GMEB2,PTF1A,TP53,GTF2H4,NDUFA13,TLE1,ZNF143,FOSB,FLNA,TTF2,MYCN,MXD4,GTF2H1,ARHGEF11,JMY,CIAO1,INHBA,CARD11,EREG,ZNF136,PFDN5,C19ORF2,RUVBL1,NSD1,CLOCK,ZMYND11,ZNF274,CREM,PML,NUFIP1,ZNF367,ZNF35,ZNF177,ZNF174,PER1,LIMD1,SUPT4H1,TRIP11,TRIP13,FOXD3,MYF6,IL4,ZNF263,LMX1B,TRIM29,TRIM28,MYF5,ZNF24,TRIM27,TNP1,ELAVL2,PHF12,TRIM24,TRIM22,TP73,RPS6KA5,ATRX,ZNF157,MNAT1,RPS6KA4,PPBPL2,RBAK,NARFL,FOXE1,TCEB2,TCEB3,TCEB1,PHF5A,NR5A2,FOXE3,NR5A1,MMS19,STK36,LMO4,TBP,NR2E3,RBM9,TCEAL1,CBFB,TGFB1,GTF2E1,GTF2E2,CDKN2A,NLRC3,SMARCD2,MDFIC,SMARCD3,SMARCD1,SCRT1,BCL10,ZNF593,POU2AF1,IL29,RELA,HDAC10,ARID1A,CSDA,JUNB,DDIT3,PA2G4,HIF1A,EP300,SMARCE1,TIMELESS,TCFL5,TFAP2B,MNX1,SMARCA5,TFAP2A,EDF1,NFE2L1,TFAP2C,NFE2L2,NFE2L3,SMARCA1,EDA,SMARCA2,HMGB1,EID1,EID2,CNBP,HMGB2,CCRN4L,LITAF,UBE2V1,ABCA2,PYDC1,NR2C2,CXXC1,VDR,TROVE2,TCERG1,MEIS2,SMARCB1,RPL6,SNF8,TEAD4,JUND,TAF9,HELLS,ZNF423,TFDP1,TAF2,TRIP4,EPAS1,CREBZF,TAF5,TAF8,NEUROG1,BRIP1,UIMC1,ATF6,HDAC5,HDAC4,ATF5,ATF4,NRF1,HDAC2,GTF2F1,DYRK1B,SMARCC1,PRKAR1A,ATF7,SMARCC2,GTF2F2,HIVEP3,ABL1,IKBKB,HDAC8,E2F1,E2F2,E2F3,RSF1,FOSL2,ARID4A,E2F6,DEDD,PAX5,DEK,ZNF202,CTCF,PAX3,PAWR,PRDX3,PAX2,PTMA,PAX1,TMF1,FEV,MAX,MAZ,PAX8,LRRFIP1,NRG1,NFIL3,FOSL1,NFX1,PTGER3,SLA2,ARID5B,ARID5A,CDK9,RB1,ESR2,CDK7,HMGA2,HMGA1,PRPF6,TARBP1,TARBP2,NCOA6,ERN2,ZFPM2,UBB,JMJD1C,CARM1,ACVR1,BCLAF1,NFYC,NFYB,EGLN1,NFYA,NR3C1,IVNS1ABP,CALCOCO1,HIC1,TSC22D1,TFAM,RGMB,ORC2L,TSC22D3,ECD,CHD2,GTF3C6,CEBPZ,CHD1,NFATC4,NFATC2,GTF3C2,NFATC3,GTF3C4,CHD4,CHD3,NFATC1,CEBPA,MAF,CEBPB,CEBPD,VHL,NFRKB,CEBPG,CREB5,DRG1,PWP1,MED30,ID2,DBP,ID1,ID4,ID3,CDX2,FST,HIRA,PTTG1,SIN3A,WWP1,TRAK1,ABRA,IFNK,RARB,SUPT5H,TWIST2,TWIST1,PITX2,YY1,NKX2-8,TAF6L,PPARGC1A,PPARGC1B,UHRF1,PRDM4,MTF1,PIAS4,ABT1,MNT,TGFBRAP1,TGFB1I1,PRDM1,SUDS3,DEAF1,ELL,AFAP1L2,CALR,NR1H2,PLAGL1,DRAP1,HTATSF1,DUX1,MAML3,BCOR,NKX2-5,TCF25,KLF5,NKRF,MDFI,KLF7,BMP2,IKZF3,MLL,KLF9,SUB1,MAML1,CREBBP,MAML2,RYBP,SMAD4,SMAD3,SMAD2,PMF1,UBP1,POLRMT,NOTCH2,NR1I2,TCEB3B,RNF4,NUP62,NOTCH4,SUPT16H,JAZF1,TCF19,RBPJ,BMP7,NCOR1,ZFHX3,ENG,TCF12,TCF15,KLF4,BMP6,CCNT2,GTF3A,ZBTB32,PPARA,COPS2,PPARD,ACVRL1,COPS5,TBX22,TBX21,CCNT1,PPARG,NFKB1,NFKB2,ZEB1,GLI2,HSBP1,ZBTB38,KCNIP3,GLI1,CAMKK2,BLZF1,GFI1B,ASH2L,NR2F2,SNAPC5,CCNK,ZNF354A,POLR1E,TBX10,SNAPC2,CCNH,SNAPC4,SNAPC3,POLR1C,NFAM1,MBD1,GTF2B,RBBP8,SIGIRR,SCAP,CTNNBIP1,MED6,MED7,CHMP1A,MED4,GTF2I,ASH1L,RIPPLY1,MAP3K13,SRCAP,TBX19,MED1,POLR2H,POLR2G,POLR2F,ETV7,POLR2E,NMI,POLR2L,POLR2K,POLR2J,POLR2I,EHF,ZBTB16,POLR2D,POLR2C,SUFU,POLR2B,MLF1,SUMO1,MRPL12,NR1D2,SQSTM1,LANCL2,GATAD2A,PEX14,ETV1,BCL3,MLLT1,BCL6,HSF2BP,MLLT6,POLR3G,POLR3H,TBX3,POLR3K,TBX2,TBX5,HCLS1,AFF4,ILF3,SNAI2,STAT1,POLR3C,STAT3,SOD2,STAT2,PREB,YWHAH,ILF2,UBTF,YAF2,NEUROD2,PHF21A,PBX1,APBB2,RBM14,PBX3,APBB1,PBX4,MYOD1,THRA,CRABP2,ARNT2,FOXO1,APOBEC3G,FOXO3,FOXO4,APOBEC3F,HOXC6,GATA1,GATA2,ATOH1,GATA6,GATA3,TARDBP,HOXC5,GATA4,TFB2M,MYST2,MYST1,GABPB2,MYST4,MYST3,MYO6,FOXN1,ZNF189,NR0B2,ARNTL,ELL3,NR0B1,TRERF1,AHR,FOXN3,ELL2,ADRM1,IGSF1,TIAL1,ERC1,PPP5C,GCLC,SNX6,TFAP4,SOX5,ELK1,ELK3,NPM1,NKX3-2,BTF3,SKIL,RUNX1,RUNX2,RUNX3,RNF14,CREBL2,SREBF1,MAFF,NFE2,SAP18,SNW1,RNPS1,GSC2,FOXP3,BRCA1,SREBF2,PPIE,GCM1,PSMC5,DNMT1,RFX3,MAFA,SOX21,POU6F2,FOXK2,NR6A1,PDCD4,BUD31,MEN1,FUBP1,ACVR1B,FOS,FUBP3,POU5F1,ANG,PCGF6,ATP8B1,POU4F2,POU4F1,SOX18,MKL2,ALX1,ELP4,KHDRBS1,EGR1,ELP3,ELP2,NANOG,SP100,LDB1,SOX12,NLRP3,MSC,UBN1,NRIP1,CD3EAP,UBE2N,PRKCQ,ACVR2B,BPTF,NRL,ZMIZ2,MDM2,MDM4,CUX1,COMMD7,ZFP161,ING4,GLIS3,SUPT3H,ING2,TNF,GLIS2,GLIS1,HCFC1,NFIX,HCFC2,POU1F1,TCF7L2,CALCA,TNFRSF1A,NPAS2,ERCC6,HAND1,HAND2,POU2F3,POU2F2,POU2F1,NFAT5,PYCARD,GFI1,ERCC3,CAMK2A,APEX1,ERCC2,ENO1,ERF,DTX1,SOX30,SIRT4,CENPF,EDA2R,SIRT5,CBY1,SIRT1,SIRT2,IRF9,ATXN1,SP1,SP2,DR1,SP3,IRF7,IRF8,THRAP3,SP4,IRF1,GRLF1,IRF2,IRF3,IRF4,TSSK4,NFIC,CRK +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html AURKAIP1,XRCC6,RORB,MED21,CITED2,EPC1,FOXF1,FOXF2,SUPT5H,EIF2B5,PCBD2,RXRA,MED12,MED14,MED13,PPARGC1A,PPARGC1B,BOLL,HNF4A,MED17,CRTC1,AFAP1L2,ARF6,PLAGL1,FOXH1,CDC42EP2,MAML3,TCF4,TCF3,ARHGEF10L,CDC42EP5,BMP4,UTF1,MAML1,MAP2K3,MAML2,CREBBP,ESRRG,MSTN,SMAD3,SMAD2,NUP62,NOTCH4,TNK2,BMP7,BMP6,PPARA,HNF1B,ELF1,HNF1A,ACVRL1,ELF4,SPI1,TP63,GLI2,ZBTB38,CAMKK2,GLI1,MAPT,ATF7IP,LYN,PRG3,CCNH,TP53,ARHGEF11,RAD51,GTF2H1,SCAP,MED6,INHBA,NCK2,CCND1,CARD14,CCND3,EREG,CCND2,NCK1,IL12A,IL12B,NSD1,CLOCK,CLN6,MED1,NUFIP1,EHF,HPRT1,AZU1,MRPL12,SQSTM1,BCL3,DAZL,SUPT4H1,CD28,FOXD3,IL4,IL3,DAZ1,IL6,IL5,TBX5,HCLS1,IL9,TRIM28,ILF3,TP73,GAPDHS,MNAT1,YWHAH,ILF2,YAF2,FOXE1,PPP2R4,PHF5A,RBM14,MMS19,NCBP1,TLR1,ARNT2,FOXO1,EIF5A,TLR3,TNFSF13,TLR4,FOXO3,TLR6,TLR7,TGFB1,TLR8,TLR9,IL31RA,APOA2,MDFIC,SMARCD3,ATG7,TDGF1,SMARCD1,GATA4,MYST1,SAMD4A,SPN,EBI3,MYST4,MYST3,EGFR,BCL10,MYO6,IL29,IL27,ARID1A,ARNTL,ELL3,TRERF1,IL20,HIF1A,TFAP2B,SMARCA1,ITLN1,KATNB1,ELK1,ABCA1,DYRK2,EGF,RUNX1,UBE2D1,ZNF423,EPAS1,TAF8,CD276,FOXP3,BRCA1,ATF6,ATF4,AKTIP,SMARCC1,DYRK1B,SMARCC2,HIVEP3,GLMN,HSP90AB1,RSF1,CTCF,CLCF1,ANG,TPP1,PAX8,MKL2,LTB,EGR1,HSP90AA1,PRKCG,CDK7,HMGA1,NRIP1,PRPF6,UBE2N,CD80,BPTF,ZMIZ2,TPPP,CD81,NCOA6,UBB,ACVR1,GLIS3,GLIS2,GLIS1,TNFRSF8,STUB1,TNFRSF1A,NPAS2,RGMB,ERCC6,ERCC3,NFATC2,ERCC2,CEBPG,DEFB103A,CREB5,GCK,SP1,THRAP3,IRF4 +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html KLK8,ADCY8,CRHBP,NF1,S100B,APOE,FYN,GALR3,GALR2,CRH,DLG4,ACSL4,IL1RAPL1,VLDLR +PWCOMMONS S PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE_OF_MITOTIC_CELL_CYCLE.html CHMP1A,DDX11,POLD1,MYO16,POLA1,CDK2AP1,ABL1,RCC1,APBB2,APBB1 +PWCOMMONS POSITIVE REGULATION OF BIOLOGICAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BIOLOGICAL_PROCESS.html RPL17,AURKAIP1,PGF,XRCC6,BTC,RORB,MED21,SART1,SSR1,BTK,CITED2,MAP3K7,CUL3,CUL2,EPC1,CUL5,MAP3K5,HTR1A,FOXF1,FOXF2,FAS,CUL1,CRTAM,PCBD2,PDPN,RXRA,MED12,MED14,MED13,MARK4,BCL2L11,THY1,MAPK1,NME2,SIRPG,NME3,RPS19,SSTR3,HNF4A,SERPINF1,IFNB1,NME1,MED17,MST1R,UNC13B,MCTS1,ORAI1,ERBB2,CRTC1,ARF6,PPT1,FOXH1,ADRB3,IFNA2,CDC42EP2,CDC42EP1,INS,RAC1,CDC123,ZAP70,DIABLO,TCF4,CDC42EP4,TCF3,ARHGEF10L,CDC42EP5,UTF1,TAOK2,MAP2K3,TGFBR1,SPHK1,TGFBR2,TAOK3,ESRRG,MSTN,APOL3,EI24,TNK2,HNF1B,ELF1,HNF1A,HTATIP2,FGF7,SLC20A1,ELF4,SPI1,NAP1L1,TP63,BNIP3,DAXX,CFHR1,NOD2,NOD1,MAPT,TICAM1,TICAM2,TMEM101,MYC,SERTAD1,FGF4,ATF7IP,CDC7,AIFM3,LYN,AIFM2,AIFM1,TP53,NDUFA13,FLNA,JMY,GTF2H1,ARHGEF11,CIAO1,INHBB,INHBA,CARD11,NCK2,CARD14,CCND1,EREG,BNIP1,CCND3,CCND2,RIPK1,NCK1,IL12A,IL12B,EEF1D,NSD1,CLOCK,CLN6,ALOX12,CSF3,TBC1D8,CSF1,PML,NUFIP1,TRIM13,SORBS3,PTK2B,PPP2CA,PLEKHG5,PCSK9,DAZL,SUPT4H1,C2,FOXD3,IL4,IL3,IL6,DAZ1,IL5,IL8,IL7,TRIM28,IL9,IGF1,TP73,PLG,CLEC11A,CAPN1,MNAT1,CDH13,CCL14,EPGN,GSK3B,BNIP3L,BNC1,NLRP12,MC4R,FOXE1,AMOT,PHF5A,HTR2B,BARD1,LRP5,IL2,NCBP2,MMS19,NCBP1,SLC44A2,ZAK,GRIK2,ATP6AP2,IL18,TSPAN6,TNFSF14,TNFSF13,TNFSF12,IL15,TGFB1,CRADD,CXCL10,IL11,TGFB2,APOA2,NLRC4,CDKN2A,CDKN2B,MIER1,ADIG,SMARCD3,MDFIC,CDKN2C,TIA1,ATG7,TDGF1,SMARCD1,APOA5,ZNF443,DAP,EBI3,SAMD4A,GPR89A,MATK,EGFR,BCL10,NUDT2,IL29,ACTN4,BST2,GOLT1B,IL27,RELA,STIM1,FADD,ARID1A,IL21,IL20,HIF1A,MIB2,TFAP2B,SMARCA1,TRAF2,ACHE,LITAF,ADAMTSL4,UBE2V1,ABCA1,CXXC5,CX3CL1,PYDC1,TIMP1,IL12RB2,PRUNE2,MIA3,IL12RB1,ADRA2A,TRAF7,DYRK2,TRAF6,EGF,ANGPTL3,TRAF5,ZNF423,TRAF3,DNAJA2,ANGPTL4,EPAS1,TAF8,TRADD,CDKN1C,ATF6,TRAF3IP2,IKBKE,ATF4,CDKN1A,TNFSF10,CDKN1B,TSC1,PLK2,CDKN2AIP,SMARCC1,DYRK1B,IKBKG,SMARCC2,HIVEP3,ABL1,TRIP6,ADRA1D,RSF1,DEDD,CTCF,CDC42,CASP6,CASP3,CASP4,NDUFS4,CLCF1,RPS3A,HMOX1,CASP8,PAX8,RHOA,RHOB,RHOC,NDUFS3,CASP1,FOSL1,RHOG,PPP2R1A,SLA2,NUSAP1,CDK6,CDK7,IFI16,CDK4,CDK5,HMGA1,CDK2,PRPF6,HOXC10,TARBP2,ADRB2,TNFSF13B,CHRM1,LCK,NCOA6,ERN1,ERN2,UBB,TSHR,ACVR1,DPF2,DCC,VIP,BCLAF1,CTF1,PPM1A,EGLN2,ASNS,CDH1,TRAIP,STUB1,DPF1,IGF1R,TMED4,RGMB,REL,SLC35B2,PRSS2,TSPAN31,CD2,NFATC2,FIGF,COL4A4,TCIRG1,SECTM1,COL4A3,TNFSF4,FLT1,PDF,NF2,KL,FLT3,CEBPG,FLT4,NF1,CBL,CREB5,CDC25B,TNFSF8,GCK,CUL4A,BAX,FAF1,CADM1,VAPA,VAPB,FST,EDN1,ADORA1,BAK1,CD47,MYD88,DDX11,APOE,IFNG,ABRA,CHRNA7,IFNK,SUPT5H,EIF2B5,CAPNS1,CD3E,TBRG4,CD40,PPARGC1A,PPARGC1B,BOLL,VEGFB,CD38,ATP2C1,ALOX15B,CD40LG,VEGFA,NPTN,LAMC1,NEK6,LALBA,SIVA1,CDK5R1,STK17B,CD70,AFAP1L2,STK17A,CHEK2,AHSG,PLAGL1,LIF,AGGF1,MAML3,LAMB1,C16ORF5,BMP4,TP53BP2,MAML1,LGALS1,MAML2,CREBBP,NDFIP1,CIDEB,CIDEA,NDFIP2,SMAD3,TPD52L1,SMAD2,SLAMF1,ECM1,LGALS9,CIDEC,NOTCH2,LAMA1,RNF7,NUP62,NPY,ETS1,NOTCH4,ATP2A1,BMP7,GHSR,BMP6,PPARA,NRP1,ACVRL1,FASTK,BCAR1,PPARG,GJA1,GLI2,PTEN,CAMKK2,FLT3LG,CANT1,ZBTB38,GLI1,TNFRSF11A,SAA1,TGFA,TOP2A,DEDD2,SPACA3,LTBR,CCKBR,PRG3,CCNH,LGALS12,NFAM1,LDLRAP1,SLIT2,RAD51,SCAP,AMIGO1,MED6,PROK2,GRM4,ZDHHC17,TNFRSF10B,ZDHHC13,MAP3K10,MED1,BID,CXCL5,PRTN3,TFG,EHF,FKBP1A,SFN,HPRT1,AZU1,MRPL12,SQSTM1,BCL3,VWC2,BCL6,CD24,CC2D1A,CD27,CD28,TBX3,TBX2,TBX5,HCLS1,BIRC5,ILF3,SOD1,BIRC2,CD1D,GAPDHS,YWHAH,ILF2,YAF2,FYN,EEF1E1,PPP2R4,BIK,RBM14,FGF18,TBK1,PDGFA,ARNT2,TLR1,TLR2,TLR3,TTK,FOXO1,EIF5A,FGF10,TLR4,PMAIP1,FOXO3,VIPR1,TLR6,TLR7,TLR8,SMNDC1,IL31RA,TLR9,GATA2,TMEM9B,CASP8AP2,ROBO1,GATA4,ROBO2,ACIN1,GLP2R,MX1,MYST1,SPN,MYST4,MYST3,MYO6,HRK,ARNTL,SOCS5,ELL3,TRERF1,STK4,STK3,TRAT1,PTHLH,TRIM38,LAT2,TIAL1,FGFR1OP,RIPK3,RIPK2,CARTPT,PPP5C,DERL2,RAG1AP1,ITLN1,TIPIN,KATNB1,ELK1,RRAGA,REG1A,NPM2,MTCH1,SFTPD,UBE2D1,RUNX1,RUNX3,CFLAR,CARD8,CARD9,HTT,CD276,MALT1,FOXP3,BRCA1,AKTIP,BBC3,GLMN,CD79A,PDCD5,PDCD6,SST,PDCD7,DAP3,BMI1,HSP90AB1,HPS4,FASLG,ACVR1B,ANG,PCBP4,BOK,TPP1,MKL2,BOC,LTB,LTA,PIGA,EGR1,PRKCA,HSP90AA1,PIGY,EGR4,NOL8,PRKCG,INHA,NLRP3,PRKCE,DAPK2,UBE2C,NLRP2,ECT2,NCR1,DAPK3,DAPK1,NRIP1,SPDYA,UBE2N,TNFRSF9,ACVR2A,CD86,ACVR2B,BPTF,CD80,GHRH,ZMIZ2,BTG1,TPPP,HIPK2,SCIN,CD81,GHRL,DHPS,ICOSLG,GLIS3,MBL2,TNFRSF25,GLIS2,GLIS1,HCFC1,TNFRSF8,CALCA,TNFRSF1A,NPAS2,UTP11L,ERCC6,MAP3K3,RASGRP4,PTH,TGM2,PYCARD,KRT1,PTN,POU3F2,ERCC3,ERCC2,SCG2,STAMBP,PTPRC,DEFB103A,EDA2R,SAP30BP,CASP10,SP1,THRAP3,PPP1R13B,IRF4,BMPR1B,IGFBP3,F2R +PWCOMMONS RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTERNAL_STIMULUS.html RP1,HRAS,ADORA3,S100A8,AIF1,S100A9,ADORA1,CTGF,LTB4R,SERPINE1,CHRNA7,OGT,SYK,F11R,F12,PLD1,L3MBTL4,F10,C5AR1,STC2,PIK3CB,VPS45,F8,F9,F7,CD40,PLAUR,SAG,CCR9,MAPK1,PITPNM1,CCR8,SSTR2,CCR7,CCR6,CD36,RPS19,EIF2AK1,CCR5,F5,HNF4A,SSTR1,CD40LG,CCR4,CCR3,CX3CR1,CCR2,F2,TFPI,STC1,PLA2G2E,PLA2G2D,DCBLD2,TPST1,GGCX,ENPP1,GNAI2,PABPC4,HOXB13,AFAP1L2,AHSG,IL17C,F13B,IFNA2,KAL1,CKLF,RAC1,BLNK,PLAT,UNC119,TRPC3,MAP2K1,AGER,S100A12,APOL3,TULP4,NPY,CD59,PARP4,GHSR,PLAU,GRK1,ABCF1,CCKAR,ACVRL1,FGF7,NUAK2,ELF3,GLRA1,PPARG,NFKB1,CFHR1,NOD2,NOD1,SAA1,CCL3L3,IL1RAP,TRPV4,XCR1,FGF2,APCS,CMKLR1,LYZ,TP53,WAS,SLIT2,SIGIRR,INHBB,INHBA,PROK2,ALOX15,CHMP1A,KLRG1,EREG,ADM,GNAQ,GRM6,GIPR,SPRR3,PLA2G7,CXCL1,SHROOM2,SHROOM3,NMI,CXCL5,CCR1,CXCL2,C5,CXCL9,FPR1,GPR68,CXCL6,CCL28,GCGR,CCL27,CCL26,PR47,CCL24,CCL25,CCL22,CCL23,CCL20,MEFV,IL10RB,CCL21,ALOX5AP,PCSK9,PER1,CCBP2,C2,PTX3,LECT2,IL4,LY75,IL5,IL8,FADS1,IL9,CCL19,CYP4F11,SOD1,CCL16,TMPRSS6,CCL15,PLG,CCL18,CCL17,CD1D,CCL11,RPS6KA5,ORM1,CDH13,CCL13,MAPK14,AOX1,SELE,ORM2,OPN4,F2RL2,F2RL3,F13A1,GNA12,PGLYRP1,IL13,NR2E3,CXCL11,MMRN1,CXCL12,TGFB1,IL10,TGFB2,CXCL10,GP9,NLRC4,CDKN2B,PGLYRP4,PGLYRP2,CDKN2D,APOA5,PGLYRP3,RALA,IL1A,SPN,RELA,CDO1,IL20,TNFAIP6,THBD,CARTPT,RIPK2,DEFA1,NFE2L1,CCL1,C3AR1,ACHE,CCL3,CCL2,ADORA2A,CCL8,ITGB2,OPN1SW,CX3CL1,ITGB3,ENSA,LMAN1,CCL5,ABCA4,CCL4,MDK,CCL7,PDE6B,MIA3,DOCK2,ALB,SFTPD,ENTPD1,DEFB1,SREBF1,ITGA2,HDAC5,HDAC4,LYVE1,CDKN1A,CXCL14,CXCL13,LTB4R2,CACNA1F,HDAC9,XCL1,SST,RHO,TACR1,CRP,PRDX5,CXCR3,CCRL2,CD97,FOS,CXCR4,AOAH,MGLL,LBP,FOSL1,CCRL1,NFX1,KNG1,IRAK2,IL18RAP,RALBP1,CHST2,INHA,NLRP3,PROC,GHRL,PROS1,PTAFR,GAP43,AOC3,MBL2,RTN4RL1,PF4,ASNS,TNFRSF1A,HRH1,RASGRP4,KRT1,RTN4RL2,GP1BA,NFATC4,NFATC3,SCG2,NOX4,GLRB,KLK8,RNASE2,CEBPB,NFRKB,NF1,ANXA1,C4BPB,LEP,PPP1R9B,VWF,CYBB,PDC,F2R +PWCOMMONS MITOTIC SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SPINDLE_ORGANIZATION_AND_BIOGENESIS.html KIF23,KIF11,PRC1,RAN,TTK,STMN1,RCC1,SMC1A,SMC3 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SNCAIP,CHIA,GNPDA1,B3GALT6,SLC7A8,SLC7A9,GGT1,SLC7A4,SLC7A5,BBOX1,SLC35A3,SLC7A6,GLDC,SLC7A7,TGFB2,FAH,GOT2,ASPA,GOT1,ST3GAL2,PLOD1,SCLY,MAT1A,ASMTL,SULT1A1,ST3GAL6,SULT1A2,DDAH2,DDAH1,NANP,ALDH6A1,YARS,DARS,GATM,AARS,QDPR,CDO1,SARS2,GLCE,GNS,PYCR1,COLQ,HAS1,SULT1B1,RARS,EXT1,EXT2,GCLC,GCNT2,GNE,GLUD2,FARS2,GLUD1,PAH,ASL,NAGK,GCLM,EXTL2,KARS,CHIT1,OAZ2,B3GNT8,ARG1,GAD2,OAZ1,ASRGL1,ALDH4A1,GCSH,GAD1,B4GALT7,P4HB,UAP1,GUSB,SPHK1,SLC6A14,HGD,ATF4,BAAT,DIO2,SLC7A2,DIO1,FPGS,SLC25A15,BCKDK,AMT,GSS,WARS,MCCC2,MSRA,TYR,XYLT1,HDC,CHST12,CHST11,GSTZ1,CHST13,HPD,PEPD,PRG3,ALDH5A1,CHST2,CHST3,CHST4,SLC3A1,CHST5,HYAL4,DDO,CHST1,CHST7,CHST6,SDS,DHPS,SMS,CLN6,AOC3,BCAT1,ALDH18A1,GALNT5,NFS1,UGDH,HPRT1,GLS2,DCT,MTHFR,B4GALNT2,MARS2,ETNK1,SULT1C2,PTS,BCKDHA,BCKDHB,ADI1,LARGE,SLC6A6,GAMT,MAT2B,SLC5A7 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html GPS1,DUSP22,MBIP,GPS2,DUSP2,RGS3,LAX1,RGS4,DUSP16,SPRED2,SPRED1,DUSP9,DUSP8,DUSP6 +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html SGPL1,CLN3,UGCG,LASS1,CERK,NEU3,LASS5,NSMAF,ASAH1,ASAH2,CLN6 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F2RL2,F2RL3,ACVRL1,F13A1,GNA12,MMRN1,TGFB2,GP9,SERPINE1,APOA5,KNG1,F12,L3MBTL4,F10,F8,F9,F7,WAS,PROC,THBD,CD36,GNAQ,F5,HNF4A,EREG,CD40LG,F2,TFPI,SPRR3,PROS1,GGCX,DCBLD2,RTN4RL1,ADORA2A,PABPC4,PF4,ITGB3,LMAN1,PR47,F13B,MIA3,GP1BA,RTN4RL2,ENTPD1,PLAT,KLK8,NF1,ITGA2,C4BPB,TMPRSS6,PLG,VWF,CD59,F2R +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html RTN4,KLK8,NF1,LRRC4C,SLIT2,THY1,AMIGO1,YWHAH,SERPINF1,ROBO1,APOE,MAPT,NPTN,ROBO2 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html E2F2,E2F3,MED24,MED23,TBP,GTF2E1,GTF2E2,MAZ,MED26,MED27,TAF2,TAF5,MED12,CDK9,MED14,MED13,CDK7,PPARGC1A,MED7,MED4,MED30,MED16,GTF2I,GTF2F1,MED17,NCOA6,THRAP3,GTF2F2,MED1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GNPDA1,CHIA,B3GALT6,PGD,CNOT7,SLC35A1,SLC35A2,SLC35A3,PDHB,SLC2A8,ST3GAL2,SLC2A5,SLC2A4,ST3GAL5,SLC2A2,MIOX,ST3GAL6,AKR7A2,INSR,NANP,IDUA,IRS2,FBP1,FBP2,PPARGC1A,DHDH,GLCE,MGAT1,GNS,PGLS,NNT,HAS1,MGAM,HAS3,EXT1,NEU3,EXT2,HS3ST3B1,LALBA,ME1,PHKA2,ALDOA,GCNT4,ME3,TALDO1,GCNT2,GNE,ALDOC,ALDOB,PFKFB1,ST8SIA1,ST8SIA3,ST8SIA2,NAGK,EXTL2,CHIT1,ADRB3,B3GNT8,GAD2,INS,IL17F,IDH1,GYS2,DYRK2,TFF1,SPAM1,B4GALT7,GAD1,FH,B4GALT1,ST6GAL1,UAP1,ST6GAL2,GUSB,EPM2A,GALT,IDH3B,B3GAT2,B3GAT1,ATF4,SLC25A10,ST8SIA4,ST8SIA5,ALDH2,FPGT,SGSH,SLC5A2,NDST1,ALG1,MAN1B1,PTEN,ACOT4,ACN9,ST6GALNAC6,XYLT1,HPSE,POMT1,CHST12,CHST11,CHST14,CHST13,TREH,SPACA3,PFKL,ACO2,ACO1,CHST2,CHST3,CHST4,CHST5,PFKM,PIGQ,HYAL4,PMM2,CHST1,G6PD,CHST7,CHST6,CHST9,CHST8,GAA,AMY1B,UGP2,CLN6,XYLB,FUT9,HS3ST5,GALNT7,FUT8,GALNT5,FUT5,UGDH,HK1,TKTL1,GALK1,NAGPA,LECT1,AKR1A1,ECD,MPDU1,B4GALNT2,FUT3,FUT4,FUT1,HS6ST1,A4GNT,FUT2,TSTA3,B4GALNT1,PDK1,PDK2,GMDS,PDK3,PDK4,GYG2,ACLY,BRS3,SDHA,GBA3,GAPDHS,GBA2,SDHB,LARGE,GLA,GCK,PYGM,SDHC,GSK3B,GFPT1,SDHD,GFPT2,AKR1B1,IPPK,PYGB,COG2 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html GGCX,F2RL2,F2RL3,HS3ST5,ADORA2A,F13A1,PABPC4,GNA12,PF4,ITGB3,LMAN1,MMRN1,PR47,GP9,F13B,SERPINE1,GP1BA,ENTPD1,KNG1,PLAT,F12,L3MBTL4,F10,F8,F9,ITGA2,C4BPB,F7,WAS,TMPRSS6,PLG,PROC,VWF,THBD,CD36,HNF4A,F5,GNAQ,CD40LG,CD59,F2,TFPI,PROS1,F2R +PWCOMMONS BODY FLUID SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/BODY_FLUID_SECRETION.html VIP,KNG1,GUCA1B,CEL,COPA,SLC34A1,SLC22A4,NPPB,NPR1,SLC22A2 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html UPF1,MTERF,TNP1,ETF1,MTIF3,HMGA1,TTF2,IRAK3,SET,MAZ,SMARCE1,MTRF1,HRSP12,SUPT16H,NRG1 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html BRSK1,GPX1,ERCC8,ERCC5,ERCC6,MC1R,CDKN2D,BCL3,SERPINB13,ERCC3,IVL,ERCC4,FEN1,ERCC2,REV1,RELA,UBE4B,GTF2H2,RPAIN,POLD1,DDB2,IL12A,MAPK8,SCARA3,IL12B +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html COX11,CYSLTR1,ELN,CFTR,BPGM,COX5B,EDNRA,UCP3,PPBPL2,HNMT,TMPRSS11D,CSF2RB,SFTPB,COX15 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html MDFI,GTPBP4,RSF1,CEBPG,EGLN1,FOXP3,NLRP3,PYDC1,FLNA,SIGIRR,SUMO1,CDKN2A,ID2,ID1,NARFL,PEX14,ID3,COMMD7 +PWCOMMONS NEGATIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_METABOLIC_PROCESS.html FST,ZNF254,EPC1,SIN3A,WWP1,ZNF396,SUPT5H,TWIST2,TWIST1,GTPBP4,ZHX1,ZHX2,MECP2,ZHX3,RAD9A,EIF2AK1,ZNF238,PIAS4,BACE2,TGIF1,PRDM1,EIF2AK3,SUDS3,ENPP7,VPS72,NR1H2,HEXIM2,INS,DRAP1,HEXIM1,CDA,BCOR,TCF25,NKX2-5,MDFI,NKRF,DMBX1,BMP2,KLF12,PAIP2,PHB,KLF10,KLF11,RYBP,SMAD4,S100A11,CIDEA,SMAD3,SMAD2,ATR,UBP1,NR1I2,JAZF1,GHSR,RBPJ,KLF4,ZBTB32,PPARD,LIMA1,SPI1,TP63,TERF2IP,ZEB1,GLI2,HSBP1,DAXX,ZNF345,CDT1,ZNF350,GFI1B,ZNF148,ATF7IP,ZNF281,CDC6,ARHGEF2,PRG3,NDUFA13,TLE1,FOSB,SIGIRR,MXD4,INHBB,INHBA,EIF4A3,CHMP1A,EREG,GRM8,ZNF136,RIPPLY1,TMSB4Y,NSD1,ZMYND11,PML,ZBTB16,ZNF177,ZNF174,SUMO1,SET,LANCL2,GATAD2A,PER1,BCL3,PEX14,BCL6,SUPT4H1,FOXD3,IL6,TBX3,TBX2,GMNN,ZNF24,TRIM27,TNP1,ILF3,PHF12,SOD1,SNAI2,STAT3,ZNF157,GLA,YAF2,CAPG,NLRP12,PHF21A,PPP2R4,APBB1,RBM9,TCEAL1,IL10,TGFB1,APOA2,CDKN2A,CDKN2B,CDKN2C,CDKN2D,MYST1,MYST4,DNAJC1,MYST3,ZNF593,SOCS1,ZNF189,NR0B2,CSDA,NR0B1,FOXN3,TRAT1,PA2G4,SMARCE1,TIMELESS,RAD17,HMGB1,EID1,EID2,GCLC,SNX6,TIPIN,KATNB1,ELK3,TIMP1,VDR,MEIS2,SFTPD,CLASP1,RUNX2,HELLS,ZNF423,CREBZF,SNW1,FOXP3,FURIN,UIMC1,BRCA1,HDAC5,CDKN1A,CDKN1B,TSC1,SMARCC2,DNMT1,RFX3,PDZD3,HDAC8,E2F1,RSF1,ARID4A,E2F6,DEDD,NR6A1,ZNF202,CTCF,PAWR,PDCD4,MEN1,CDC42,GSN,PCGF6,ATP8B1,POU4F2,NRG1,NFX1,KHDRBS1,SLA2,ARID5B,LDB1,ARID5A,PRKCG,INHA,RB1,MID1IP1,NRIP1,BPTF,MDM2,GHRL,ERN2,MAPRE1,MDM4,COMMD7,CUX1,ZFP161,ING4,GLIS3,BCLAF1,TNF,GLIS2,GLIS1,PAIP2B,CALCA,ORC2L,TSPYL2,POU2F1,ERCC4,TERF2,ERCC1,ENO1,APC,NF2,VHL,SIRT4,SIRT5,CENPF,CBY1,SIRT1,SIRT2,ATXN1,ID2,GCK,ID1,IRF7,DR1,IRF8,GRLF1,IRF2,ID4,ID3,IGFBP3 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html IMPA1,SGMS2,SGMS1,PIP5K1A,PTEN,PIGK,APOA1,PIGF,PIGG,LCAT,GPX4,PIGH,PIGB,PLA1A,PIGC,CETP,PCYT2,PLCB2,AGPAT2,PIGA,AGPAT1,CLN3,PIGZ,PIGY,PIK3C2A,TAZ,PIGV,PI4KA,PIGU,LGALS13,PIGT,PIGS,PI4KB,CHPT1,PIGO,PITPNM3,PRDX6,CD81,PI4K2A,PLA2G6,PLA2G2E,PLA2G3,PLA2G2D,CLN8,PLA2G5,PGS1,ENPP7,GPAA1,APOC2,PLAA,SERINC2,SERINC5,DGKE,LPCAT1,SERINC1,PEMT,ETNK1,PLCD1,PCYT1B,PIK3R1,LPL,FADS1,SMG1,DPM1,DPM2,DPM3,PLA2G4C,SMPD4,PLA2G4B,SMPD3,SMPD2 +PWCOMMONS RESPONSE TO IONIZING RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_IONIZING_RADIATION.html XRCC4,BRCC3,PML,TOPBP1,LIG4,BRSK1,XRRA1,NHEJ1,ATM +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html MDFI,DBNL,ZAK,KIAA1804,PTPLAD1,MAP4K1,PKN1,TLR6,DAXX,MAP3K6,MAP4K5,MAP3K5,MDFIC,MAP3K2,MAP3K9,MAP3K10,PAK1,MAP3K11 +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html NF2,IL29,LYN,CLCF1,HCLS1,SOCS1,PIGU,IL12A,HGS,IL20,IL31RA,IL22RA2 +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html SLC11A2,ATP7A,ATOX1,HFE,SLC30A5,CCS,SLC31A2,COX17,SLC31A1,SLC40A1,SLC39A2,ATP7B +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html RTN4,ALS2,NRP2,NRTN,NRP1,POU6F2,LRRC4C,GLI2,PAX2,KCNIP2,RTN1,GDNF,SHH,TGFB2,NRCAM,ATP2B2,APOE,ROBO1,MAPT,POU4F1,ROBO2,SEMA3B,UNC5C,EIF2B2,SPON2,EIF2B3,EIF2B4,EIF2B5,NRXN3,BAIAP2,LDB1,MDGA1,OTX2,PICK1,MDGA2,ARTN,CDK6,NRXN1,SLIT1,CDK5,SLIT2,THY1,FARP2,AMIGO1,RND1,SERPINF1,SEMA4F,BTG4,NPTN,GHRL,OPHN1,TRAPPC4,SIAH1,CNTN4,UBB,SMARCA1,CLN5,PARD3,CDK5R1,LST1,RTN4RL1,BRSK2,PPT1,AZU1,KAL1,BAI1,PCSK9,VWC2,KRT2,RTN4RL2,AGRN,LAMB1,PARD6B,KLK8,NF2,LMX1B,DTX1,NF1,NLGN1,NTNG1,DPYSL5,NTNG2,RACGAP1,SOD1,EIF2B1,YWHAG,YWHAH,S100B,MAP1S,CYFIP1,CIT,FEZ2,FEZ1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html XRCC4,RP1,ZAK,COPS3,NR2E3,GPX1,MC1R,CDKN2D,BRCC3,REV1,FECH,RELA,TOPBP1,LIG4,XRRA1,GTF2H2,SAG,PNKP,PITPNM1,PPM1D,RPAIN,GRM6,DDB2,IL12A,MAPK8,IL12B,DYNLRB1,NHEJ1,CLOCK,PML,OPN1SW,BRSK1,ABCA4,PDE6B,ERCC8,ERCC5,ERCC6,BCL3,SERPINB13,ERCC3,ERCC4,IVL,FEN1,ERCC2,UNC119,TRPC3,NF1,UBE4B,ATM,CCL11,POLD1,PDC,CACNA1F,SCARA3,SMC1A,RHO,GRK1,OPN4 +PWCOMMONS REGULATION OF CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CELL_ADHESION.html CD47,GTPBP4,SIRPG,ACVRL1,CDKN2A,NF2,B4GALNT2,CX3CL1,PTEN,RASA1 +PWCOMMONS POSITIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_MIGRATION.html EGFR,CDH13,MIA3,BCAR1,SPHK1,TDGF1,AMOT,ANGPTL3,LAMB1,TRIP6 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html TBX3,ELF3,ERBB2,NF1,TBX1,NR0B1,GLI2,MDK,SHH,GCM2,NOTCH4,TDGF1,FOXE1 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LIMA1,KATNB1,ARF6,LATS1,CXCL12,SORBS3,CDC42EP2,CEP250,GSN,MAPT,CLASP1,CLASP2,RASA1,ARHGEF10L,CDC42EP5,APC,ARHGEF2,CCDC88A,NF2,CRIPAK,MID1IP1,NEXN,NEBL,NCK2,TSC1,NCK1,CAPG,MAPRE1,TMSB4Y +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CASR,SLC9A7,GNA15,ATOX1,F2RL1,CD52,CXCL12,APOA4,BAK1,AGTR1,APP,APOA2,APOA1,SLC2A4,APOE,LCAT,GALR2,APOA5,RGN,CHRNA7,SLC4A1,CHRNA1,FTL,C5AR1,SLC34A3,THY1,CCR9,CCR8,CCR7,PLCE1,NPC1,CCR6,HIF1A,NPC2,RHCG,CCR5,ATP2C1,CCR4,CCR3,CCR2,CARTPT,STC1,SLC40A1,GLP1R,KCNMB3,CCL1,SRI,KCNMB4,C3AR1,CAV1,CCL3,DRD1,CLCN3,CCL2,DERL1,CYSLTR1,HFE,PPT1,ABCA2,BDKRB1,BCL2L1,BDKRB2,ABCA1,ATP6V1B1,CALR,CCL5,FTH1,CCL7,KCNMB2,P2RY4,P2RY2,SLC30A5,ANGPTL3,RPS6,ABCG1,ATP7A,CD55,GCM2,SLC4A11,CXCL13,AVPR1B,AVPR1A,XCL1,CACNA1C,CACNA1A,IFI6,GRK1,SLC9A1,ATP7B,CCKAR,MCHR1,HNF1A,GLRA1,BNIP3,CXCR3,EDNRA,FXN,CXCR4,SAA1,NMUR2,TRPV4,CETP,XCR1,MYC,AKR1C1,NDUFS1,KNG1,CLN3,AIFM3,CCKBR,PROK2,TARBP2,LCK,GHRL,NPPB,CLN5,CLN6,CLDN16,CCR1,TFR2,TAC1,EGLN1,CALCA,CALCB,CCL23,BCL2,PCSK9,CD24,PTPRC,OPRL1,ATP1A3,NPR1,ATP1A4,CCL19,MTL5,ATP1A1,ATP1A2,SOD1,CCL15,RHAG,TMPRSS3,CCL11,CCL13,CCL14,GCK,HPX,BAX,MT2A,NARFL,CP +PWCOMMONS REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_METABOLIC_PROCESS.html AURKAIP1,MED23,RORB,REST,MED21,MED20,EPC1,MED26,FOXF1,FOXF2,MED27,PQBP1,VPS4B,ZNF396,PATZ1,IKBKAP,PCBD2,RREB1,MECP2,MED12,MED14,MED13,EIF2AK1,NPC2,MED17,BACE2,EIF2AK3,MYBBP1A,EIF2AK4,CRTC1,ARF6,VPS72,FOXH1,INS,IL17F,PABPC1,PAIP2,PAIP1,ESRRG,ATR,ELF1,HTATIP2,ELF2,ELF4,EZH2,SPI1,TP63,EIF2A,ZNF345,DAXX,YBX2,ZNF350,ZNF148,ZNF146,BRD7,SPIB,BRD8,TAF1L,ATF7IP,LYN,TP53,EIF1B,ZNF143,MYCN,ARHGEF11,INHBB,INHBA,EIF4A3,CARD11,CARD14,EREG,EIF4A2,ZNF136,MTRF1,IL12A,C19ORF2,IL12B,ZMYND11,NUFIP1,ZNF367,IL7R,ZNF177,NECAB3,ZNF174,DAZL,FOXD3,MYF6,IL4,IL3,DAZ1,IL6,UPF1,IL5,LMX1B,TRIM28,IL9,MYF5,TRIM27,PHF12,ETF1,TRIM22,TP73,ATRX,ZNF157,GLA,FOXE1,NCBP1,CXCL12,TCEAL1,TGFB1,IL10,NLRC3,CDKN2A,CDKN2B,CDKN2C,MDFIC,CDKN2D,ATG7,TDGF1,SCRT1,SAMD4A,EBI3,DNAJC1,BCL10,ZNF593,IL29,IL27,RELA,CSDA,IL20,HIF1A,EP300,TIMELESS,TCFL5,SMARCA5,MNX1,TFAP2B,RNF139,EDF1,TFAP2A,TFAP2C,EDA,SMARCA1,SMARCA2,LITAF,UBE2V1,ABCA2,UBE2V2,ABCA1,NR2C2,CXXC1,MEIS2,SMARCB1,SNF8,TEAD4,EGF,HELLS,TFDP1,CREBZF,BRIP1,FURIN,ATF6,HDAC5,HDAC4,ATF5,NRF1,CDKN1A,ATF4,HDAC2,CDKN1B,DYRK1B,SMARCC1,SMARCC2,ATF7,ABL1,IKBKB,PDZD3,HDAC8,E2F1,RSF1,E2F6,PAWR,TMF1,PAX8,LRRFIP1,NRG1,SLA2,PRPF6,ERN2,ZFPM2,MAPRE1,UBB,JMJD1C,EGLN2,EGLN1,STUB1,PAIP2B,HIC1,TFAM,RGMB,ECD,NFATC2,NFATC3,NFATC1,CEBPG,GCK,ID2,ID1,ID4,ID3,FAF1,FST,HIRA,WWP1,ABRA,IFNK,GTPBP4,RAD9A,PPARGC1A,PPARGC1B,PIAS4,MTF1,TGFBRAP1,PRDM1,SUDS3,AFAP1L2,CALR,NR1H2,PLAGL1,MAML3,BCOR,TCF25,MDFI,NKRF,KLF7,IKZF3,KLF9,MAML1,MAML2,RYBP,CIDEA,UBP1,NR1I2,RNF4,TCF19,GHSR,RBPJ,ZFHX3,TCF12,TCF15,KLF4,ZBTB32,PPARA,PPARD,ACVRL1,PPARG,TERF2IP,ZEB1,GLI2,HSBP1,KCNIP3,GLI1,ZBTB38,OXER1,PRG3,CCNH,NFAM1,RAD50,SCAP,SIGIRR,RAD51,RBBP8,GRM8,RIPPLY1,MAP3K13,ZBTB16,AZU1,NR1D2,PEX14,BCL3,BCL6,CD24,MLLT6,CD28,HCLS1,SNAI2,SOD1,SOD2,PREB,YWHAH,UBTF,CAPG,PPP2R4,APBB2,APBB1,MYOD1,EIF5A,FOXO1,FOXO3,FOXO4,GATA1,GATA6,GATA4,MYST2,MYST1,GABPB2,MYST4,MYST3,FOXN1,ZNF189,FOXN3,AHR,IGSF1,ERC1,RAD17,SNX6,KATNB1,ITGB2,EIF3C,IRAK3,EIF3D,EIF3A,EIF3G,EIF3H,EIF3E,NPM1,EIF3F,EIF3I,EIF3J,UBE2D1,SREBF1,SNW1,FOXP3,BRCA1,SREBF2,EIF4B,PPIE,EIF4H,DNMT1,GLMN,RFX3,IL22RA2,METAP1,POU6F2,FOXK2,PDCD4,FOS,ANG,POU4F2,POU4F1,MKL2,NANOG,SP100,PFKL,PRKCG,PFKM,NLRP3,UBN1,NRIP1,UBE2N,PRKCQ,CD80,BPTF,ZMIZ2,CD81,GHRL,MDM2,MDM4,COMMD7,CUX1,ZFP161,SMARCAD1,GLIS3,TNF,GLIS2,GLIS1,HCFC1,TNFRSF8,HCFC2,ERCC6,POU2F3,POU2F1,PYCARD,GFI1,ERCC3,ERCC4,CAMK2A,ERCC1,ERCC2,APC,DEFB103A,SIRT4,SIRT5,SIRT1,SIRT2,ATXN1,DR1,IRF7,THRAP3,IRF8,IRF2,IRF4,IGFBP3,SLC2A4RG,LTBP4,XRCC6,HOXD13,ZNF254,CITED1,CITED2,TLK1,TLK2,ZNF45,RXRA,ZHX1,ZHX2,ZHX3,HNF4G,NME2,ZNF238,HNF4A,SMARCAL1,TGIF1,ZNHIT3,TRAPPC2,ZNF76,MTIF2,MTIF3,CDC42EP2,HEXIM2,HEXIM1,ZNF74,TCF4,VEZF1,TCF3,ARHGEF10L,CDC42EP5,DMBX1,UTF1,TCF7,KLF12,TGFBR1,MAP2K3,PHB,KLF10,KLF11,MSTN,TFCP2,MZF1,HGS,TNK2,HNF1B,LIMA1,HNF1A,LATS1,NOD2,MAPT,CREG1,HSF4,MYC,ZNF281,CDC6,ARHGEF2,ZNF282,PTF1A,NDUFA13,TLE1,FOSB,SRPK1,FLNA,JMY,MXD4,GTF2H1,CIAO1,NCK2,CCND1,MAST2,CCND3,CCND2,NCK1,PFDN5,TMSB4Y,RUVBL1,NSD1,CLOCK,CLN6,ZNF274,WRNIP1,CREM,PML,ZNF35,PER1,LIMD1,SUPT4H1,RASA1,ZNF263,ZNF24,TNP1,ELAVL2,RPS6KA5,MNAT1,RPS6KA4,RBAK,NARFL,NLRP12,TCEB3,TCEB1,PHF5A,BARD1,NR5A1,MMS19,ATP6AP2,STK36,EIF5,TNFSF13,RBM9,APOA2,SMARCD2,SMARCD3,DDX25,SMARCD1,APOA5,EIF1,EGFR,HDAC10,ARID1A,DDIT3,JUNB,PA2G4,SMARCE1,HSPB1,HMGB1,EID1,EID2,CNBP,HMGB2,PYDC1,TIMP1,VDR,RPL6,JUND,DYRK2,ANGPTL3,ZNF423,EPAS1,SMG6,SMG5,TAF8,SMG7,NEUROG1,UIMC1,TSC1,PRKAR1A,HIVEP3,NBN,FOSL2,ARID4A,DEDD,ZNF202,DEK,CTCF,PRDX3,CDC42,NDUFS4,CLCF1,FOSL1,NFX1,ARID5B,ARID5A,MID1IP1,CDK7,RB1,ESR2,HMGA2,HMGA1,CDK2,TARBP1,TARBP2,NCOA6,CARM1,ACVR1,BCLAF1,NFYC,NFYB,NFYA,TSC22D3,ORC2L,TSPYL2,REN,CHD2,CHD1,CHD4,TERF2,CHD3,NF2,VHL,CREB5,DBP,EIF2C1,SHH,SIN3A,HRSP12,TRAK1,RARB,EIF2B2,SUPT5H,TWIST2,EIF2B5,PITX2,TWIST1,POLH,YY1,TAF6L,BOLL,UHRF1,ENPP7,MRE11A,IGF2BP2,DRAP1,HTATSF1,CDA,NKX2-5,BMP4,BMP2,SUB1,CREBBP,SMAD4,S100A11,SMAD3,SMAD2,NOTCH2,NUP62,NOTCH4,JAZF1,BMP7,ENG,BMP6,TBX22,TBX21,NFKB2,CDT1,CAMKK2,BLZF1,GFI1B,NR2F2,TBX10,ZNF354A,CTNNBIP1,MED6,MED7,CHMP1A,PSEN1,SRCAP,TBX19,MED1,POLR2L,POLR2K,EHF,HPRT1,SUFU,SUMO1,SET,MRPL12,SQSTM1,LANCL2,GATAD2A,SEPSECS,POLR3G,TBX3,TBX2,TBX5,GMNN,ILF3,POLR3C,STAT3,STAT2,GAPDHS,ILF2,YAF2,NEUROD2,PHF21A,PBX1,RBM14,PBX3,PBX4,ARNT2,TLR1,CRABP2,TLR3,TLR4,TLR6,TLR7,TLR8,TLR9,IL31RA,HOXC6,HOXC5,SPN,MYO6,SOCS1,NR0B2,ARNTL,ELL3,NR0B1,TRERF1,TRAT1,TIAL1,GCLC,TFAP4,ITLN1,TIPIN,ELK1,ELK3,SFTPD,CLASP1,RUNX1,RUNX2,RNF14,NFE2,PIF1,CD276,SAP18,GSC2,GCM1,AKTIP,MAFA,HSP90AB1,SOX21,NR6A1,BUD31,MEN1,ACVR1B,MCM7,POU5F1,TPP1,GSN,PCGF6,ATP8B1,SOX18,LTB,PIGA,ELP4,KHDRBS1,EGR1,ELP3,ELP2,CCDC88A,HSP90AA1,PIGY,CCDC88C,LDB1,SOX12,INHA,EIF4G2,ACVR2B,EIF4G3,TPPP,KPNA2,KPNA1,ING4,SUPT3H,ING2,TCF7L2,CALCA,TNFRSF1A,NPAS2,KRT7,ENO1,ERF,SOX30,CENPF,EDA2R,CBY1,SP1,SP2,SP3,SP4,GRLF1,TSSK4,CRK +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html FOXL2,SPRR2G,SPRR2F,SPRR2E,SOD1,EREG,SPRR2C,SPRR2D,SPRR2A,SPRR2B,EIF2B2,BMPR1B,EIF2B4,EIF2B5 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html MSH5,MRE11A,MSH4,LIG3,CHEK1,SPO11,RAD52,SYCP1,RAD50,ATM,RAD51,REC8,RAD21,RAD51L1,RAD54B,RAD51L3,DMC1 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html BCL10,SYT1,SCUBE3,CCDC88C,ALDH5A1,SCUBE1,MUC20,TP63,ACTN2,HPRT1,RAD51,STOM,VWF,DGKD,BAX,GOPC,GPX3,CDA,PEX14,ATPIF1,EIF2AK3,AKR1C1 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html PTPRC,IL2RB,RELA,DUOX2,SOCS1,DUOX1,ZNF675,NUP85,PF4,SOCS5,CX3CL1,PYDC1,SIGIRR,IL31RA,TNFRSF1A,IRAK3,EREG,CCR2,PYCARD,CD24,IFNK,COMMD7,C16ORF5 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html IRX4,SRI,POU6F1,BMP10,ERBB2,MYBPC3,FGF12,GLI2,SHH,CITED2,TGFB2,ECE2,HAND1,HAND2,TDGF1,GATA4,MKKS,DVL3,BMP2,ALPK3,NKX2-6,TBX5,VANGL2,TAZ,NF1,FBN1,TBX1,MYH7,CBY1,MYH6,DVL1,SHOX2,PLCE1,NCOA6,MYH11,CASQ2 +PWCOMMONS CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LOCALIZATION.html RAB3GAP2,SYT1,LTBP2,CADM1,USE1,MXI1,SSR1,HOOK3,BAK1,GBF1,HOMER3,RAE1,APOE,TRAK1,VPS4B,TLK1,RPL11,RAB26,CDCA5,KIF13B,CRTAM,OPA1,KIF5B,CRYAA,KIF5A,CRYAB,VPS45,VTI1B,MYH7,MYH6,OPTN,MYH9,ERGIC1,VTI1A,ERGIC2,CLEC4M,ERGIC3,UXT,NPC1,NPC2,KRT18,ATP2C1,ZWINT,BACE2,PEX26,F2,TBRG1,RAB14,MYBBP1A,RTP3,KCNMB4,RTP2,KIF4A,RTP4,NFKBIE,RTP1,MTX2,RABEPK,RER1,MYO9B,BCL2L1,ARFGEF2,CALR,RIMS1,ARFGEF1,UHMK1,CD74,CDC37,STX18,INS,DUSP16,STX16,CKLF,TMED10,SUPT7L,SEC23IP,TRAM1,MDFI,KIF3B,MSTO1,NXF5,CIDEA,CDC23,SMAD3,ARFIP1,TINAGL1,HNRNPA1,ABCG1,NFKBIL2,CBLB,CD209,TRPS1,SYTL4,BET1L,GOSR2,GOSR1,LGTN,RERE,ARSB,HTATIP2,PDIA3,PDIA2,TIMM17A,TIMM17B,AP3S2,BNIP3,PDIA4,CANX,GLI3,COPB2,NOD2,NMUR1,ZFYVE9,NMUR2,COPB1,ANP32A,AP3B2,SLC25A1,GOLGA5,COX18,KDELR1,TOMM34,AP3B1,DYNC1I1,KDELR2,STX5,RPGR,RPH3AL,TP53,FLNA,ANKRD27,GRM4,NUP205,LRMP,TOMM22,NUP107,STEAP2,ARL4D,SNAP29,RAB3A,SHROOM2,BET1,EEA1,NAGPA,NUP214,PEX19,SQSTM1,BCL2,DDX19B,PEX16,AP3D1,BCL3,PEX14,BCL6,PEX13,SNAP23,EXOC5,PEX12,PEX10,APBA1,FYB,RAB2A,SERGEF,UPF2,UPF1,NLGN1,PPP1R10,BIRC5,SELS,GABARAP,COG3,CDH13,YWHAH,COG7,GSK3B,RAB35,NLRP12,YKT6,SSR2,COG2,BARD1,SEPT5,NCBP2,TSPO,NRBP1,SNCAIP,XPO6,AP1G1,LMAN2L,EIF5A,TNFSF14,CSPG5,MIPEP,AGXT,TGFB1,KLHL2,STARD3,APOA2,NLRC4,APOA1,DDX25,DNAJC1,EGFR,SCAMP1,NUP133,MCM3AP,SCAMP3,SCAMP2,MYO6,STAP1,NUDT4,BAIAP3,ERP29,NUPL2,TNNT2,DDX39,COPG2,RPAIN,LYST,CARTPT,VAMP3,LRPPRC,AKAP3,BAT1,MYL6,PPY,ACHE,ARFGAP3,DERL2,CCL3,STX7,DERL1,NAPG,COPZ1,CCL8,CTSA,ABCA2,NAPA,ABCA1,LMAN1,CCL5,PYDC1,ALB,NPM1,DOPEY2,DOPEY1,SRGN,MYO1A,CARD8,TAF3,SMG6,NIN,SMG5,MYO1E,SMG7,SMG1,ICMT,SNAPIN,MALT1,REEP1,FOXP3,NFKBIL1,LIN7A,TRNT1,PPIH,TSC1,VCP,PTTG1IP,RHOT1,GLMN,RHOT2,XPO7,TRIP6,SLC25A15,MYH10,HPS4,PEX6,PEX3,DPH3,PEX7,AKT1,PEX1,ANG,ZFYVE16,RHOB,RANBP2,NCKIPSD,TPR,KPNB1,ZW10,KHDRBS1,HSP90AA1,NUSAP1,TOPORS,NLRP3,TIMM23,TIMM44,M6PR,NLRP2,MFN2,KIF1C,ADRB2,KIF1A,KIF1B,ATG4D,ATG4C,ATG4B,ATG4A,SCIN,ARCN1,C3ORF31,KPNA6,TOM1,KPNA5,KPNA4,KPNA3,KPNA2,COPE,KPNA1,PKDREJ,NUP98,CPLX2,AP1M2,CPLX1,TNF,NUP160,CDH1,SEC63,CEP57,HRH3,AP3M1,MYL6B,TAP2,SYN3,PYCARD,CD2,SEC22A,SEC22B,PAFAH1B1,SEC22C,CCS,SCG5,APPBP2,TNPO1,NEFL,SCG2,NF1,SCRN1,CENPF,CENPE,MAL,MON2,ATXN1,CADPS,TMEM48,MAP1S,TRPC4AP,FAF1,GGA1,F2R +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html DMBX1,COL4A4,KLK8,EREG,RTN4RL1,APOA5,RTN4RL2,UBB,GLI2,BMPR1B,SPINK5 +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html CDK6,CX3CL1,AZU1,CDH13,CD47,SIRPG,TSC1,SAA1,PRSS2,TGM2,IL12A,IL12B,ALOX12 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html ALS2,ZAK,EDN2,TNFSF15,TLR6,DAXX,MAP3K7,MAP3K6,MAP3K5,MAP3K4,ANG,CXCR4,MDFIC,MAP3K9,TDGF1,TGFA,SHC1,CHRNA7,GNG3,PAK1,FGF2,EGFR,IRAK1,DBNL,CCDC88A,C5AR1,PIK3CB,MADD,KIAA1804,PICK1,PKN1,CARD10,PROK2,GRM4,PLCE1,CCND1,MAP4K5,ADRB2,CCND3,EREG,CCND2,CHRM1,CD81,GADD45G,ERN1,MAP3K10,CARTPT,GHRL,GADD45B,MAP3K13,PRKD3,GAP43,MAP3K11,TRAF2,PARD3,ADORA2B,PTPLAD1,ERBB2,C5,FPR1,MAP4K1,AZU1,SERINC2,SERINC5,MAP3K2,SERINC1,ADRA2A,CD4,ADRA2C,TRAF7,CD24,TRAF6,PPAP2A,EGF,MDFI,TAOK2,MAP2K3,MALT1,TPD52L1,SOD1,PRLR,EPGN +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html SGPL1,CLN3,LASS1,SPHK1,UGCG,CERK,NSMAF,LASS5,NEU3,ASAH1,CLN6,ASAH2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html NRTN,ZAK,ATP6AP2,FGF13,MBIP,MAP3K6,MAP3K5,MAP3K4,MDFIC,MAP3K9,TDGF1,SPRED2,CHRNA7,SPRED1,GNG3,MAP2K7,DBNL,C5AR1,TNIK,PIK3CB,MADD,KIAA1804,MAP4K3,PLCE1,MAP4K5,MAPK9,CARTPT,MAPK8,FGFR1,FGFR3,ADORA2B,PTPLAD1,DUSP10,MAP4K2,MAP4K1,MAPKAPK2,ADRB3,DUSP16,ADRA2A,ADRA2C,TRAF7,EGF,MDFI,CCM2,CARD9,TAOK2,MAP2K4,TAOK3,DUSP22,TPD52L1,RGS3,RGS4,ZNF675,DAXX,CAMKK2,CXCR4,TGFA,SHC1,PAK1,FGF2,MINK1,PKN1,AMBP,GRM4,SH2D3C,PROK2,ADRB2,SH2D3A,CRKL,LAX1,HIPK2,GADD45G,CD81,MAP3K10,GHRL,GADD45B,MAP3K13,MAP3K12,MAP3K11,C5,FPR1,MAP3K3,MAP3K2,REN,CD24,CD27,SCG2,GPS1,NF1,EDA2R,MAPK10,SOD1,GPS2,DUSP4,DUSP2,EPGN,MAPK8IP2,MAPK8IP3,MAPK8IP1,DUSP9,DUSP8,DUSP6 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html NBN,ZAK,AIF1,RPRM,FOXO4,TGFB1,CUL3,CUL2,CUL5,CDKN2A,CDKN2B,PCBP4,CDKN2C,CDKN2D,MYC,MAP2K6,CUL1,KHDRBS1,TP53,TBRG4,INHA,JMY,MFN2,INHBA,EIF4G2,PPM1G,PA2G4,BTG4,TBRG1,ERN1,GADD45A,PPP1R15A,ING4,PPP2R3B,STK11,IFNW1,SESN1,UHMK1,MLF1,PLAGL1,CDC123,APC,IL8,SMAD3,GAS1,CDKN3,GAS7,CDKN1C,NOTCH2,PPP1R9B,CDKN1B,MAPK12,CUL4A,RASSF1,APBB2,APBB1 +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html MED4,MED30,MED16,MED17,THRAP3,MED12,MED24,MED14,ARID1A,MED13,DAXX,MED1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html KIF22,KIF25,NBN,KNTC1,PKMYT1,TTK,AURKA,CDC16,TTN,TGFB1,KIF2C,TRIAP1,CDKN2B,DDX11,PCBP4,PRMT5,TARDBP,TGFA,CDCA5,CCNA2,ZW10,KIF11,ANAPC5,RAN,KIF15,RINT1,ANAPC4,TPX2,NUSAP1,ESPL1,UBE2C,DCTN3,DCTN2,CHMP1A,MAD2L1,EREG,ZWINT,BUB1B,CLIP1,AKAP8,MAD2L2,CHFR,NEK6,RAD17,PPP5C,PAM,NEK2,PML,ANAPC10,ANLN,CETN1,BRSK1,ANAPC11,RCC1,PIN1,NCAPH,NUMA1,NPM2,BUB1,PBRM1,GML,EGF,CD28,SSSCA1,PDS5B,CDC23,BIRC5,NDC80,CENPE,CDC25C,SUGT1,CDC27,ATM,SMC3,SMC4,CDC25B,NOLC1,EPGN,PLK1,CIT,SMC1A +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html TSPO,ALAD,FECH,COX10,PPOX,GPR143,GMPS,DCT,TYR,ALAS1,ALAS2,CPOX,AP3D1,NFE2L1,PAICS,OCA2,COX15 +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html ALAD,TSPO,FECH,COX10,PPOX,GPR143,GMPS,BLVRA,DCT,ALAS1,TYR,ALAS2,CPOX,AP3D1,NFE2L1,PAICS,OCA2,COX15 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html MDFI,DBNL,ZAK,KIAA1804,PTPLAD1,PKN1,MAP4K1,TLR6,DAXX,PDCD4,MAP3K6,MAP3K5,MAP4K5,MDFIC,MAP3K2,MAP3K9,HIPK3,MAP3K10,PAK1,MAP3K11 +GO CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_GO_0007049.html XRCC2,AIF1,AURKA,CDC16,CITED2,CUL3,CUL2,CUL5,DIRAS3,DDX11,STAG3,CCNA1,CDCA5,CCNA2,MAP2K6,CUL1,ANAPC2,GTPBP4,ANAPC5,RAN,STRN3,ANAPC4,RINT1,POLE,LIG3,SKP2,TBRG4,RAD9A,ESPL1,PIM2,DCTN3,BOLL,DCTN2,RAD1,REC8,MAD2L1,UHRF2,ALOX15B,ZWINT,TBRG1,CNTROB,MAD2L2,NEK6,PPP2R3B,CDK5R1,CDK5R2,NEK2,MRE11A,HUS1,AFAP1L2,CHEK1,CHEK2,RCC1,CDC37,UHMK1,PIN1,PLAGL1,HEXIM2,DUSP13,SAC3D1,HEXIM1,CDC123,FBXO5,PBRM1,SSSCA1,BMP4,BMP2,TP53BP2,SPHK1,SMAD3,CDC23,CDC20,TPD52L1,NDC80,GAS1,ATR,RAD54L,CDC27,GAS7,ATM,NOTCH2,NOLC1,RAD54B,BMP7,CCNT2,CCNT1,PTEN,LATS1,LATS2,CDT1,CCNE2,TRIAP1,GFI1B,CEP250,TGFA,FANCG,USP16,MYC,SERTAD1,TAF1L,CDC7,CDC6,CCNK,EGFL6,HERC5,TP53,TPX2,RAD52,RAD50,RBBP8,GTF2H1,RAD51,JMY,INHBA,CCND1,PFDN1,CHMP1A,CCND3,EREG,CCND2,TOP3A,USH1C,FOXC1,GADD45A,MAP3K11,BCAT1,PPP6C,RABGAP1,PML,CETN3,POLA1,CETN1,BCCIP,SPO11,ZBTB17,MLF1,NCAPH,NUMA1,BUB1,CD28,UPF1,PDS5B,IL8,TBX3,NASP,GMNN,BIRC5,CP110,CDKN3,NAE1,MNAT1,MPHOSPH9,MAPK12,EPGN,RASSF1,APBB2,CIT,MPHOSPH6,APBB1,HPGD,ZAK,PRC1,DBF4,DTYMK,KNTC1,TTK,PKMYT1,FOXO4,TTN,TGFB1,TGFB2,RAD21,CDKN2A,CDKN2B,CDKN2C,CDKN2D,TARDBP,TUBG1,MADD,AHR,FOXN3,PA2G4,TIMELESS,CLIP1,AKAP8,STMN1,RAD17,PPP5C,PAM,STK11,TIPIN,ANLN,ANAPC10,ANAPC11,CCNG1,SESN1,CCNG2,SYCP1,PRUNE2,RAD51L1,NPM2,KATNA1,NPM1,TUBE1,RAD51L3,GML,EGF,ATRIP,RUNX3,TAF1,CKAP5,BRCA2,SUGT1,CDKN1C,CDKN1A,CDKN1B,PLK1,POLD1,MYO16,SMC1A,ABL1,MYH10,KIF23,E2F1,KIF22,NBN,KIF25,C13ORF15,RPRM,KIF2C,ACVR1B,NDE1,PCBP4,PRMT5,RHOB,CDK10,CDK5RAP3,CDK5RAP1,ZW10,DLG1,KHDRBS1,KIF11,DDB1,KIF15,NUSAP1,CDK6,RB1,CDK7,MCM2,INHA,CDK4,UBE2C,NEK11,CDK2,MFN2,SPDYA,PPM1G,DHRS2,EIF4G2,SASS6,XPC,BTG4,BTG3,CDK2AP1,ERN1,BUB1B,UBB,MDM4,DMC1,CHFR,KPNA2,PPP1R15A,ACVR1,ING4,CKS1B,IFNW1,HCFC1,ASNS,BRSK1,HSPA2,KRT7,PAFAH1B1,GFI1,ERCC3,ERCC2,APC,GPS1,PTPRC,MSH5,MSH4,CENPF,CENPE,RACGAP1,CDC25C,SC65,SMC3,CDC25A,CDC25B,GPS2,SMC4,SH3BP4,PPP1R9B,GSPT1,CUL4A,CKS2,PPP1R13B +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html DERL2,DERL1,VAPB,TP53,CRIPAK,DERL3,SELS,SCAP,ATF6,VCP,GSK3B,ERN1,PAK1,AMFR,EIF2AK3,ARHGEF10L +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CASR,GNA15,SLC9A7,ATOX1,F2RL1,CD52,CXCL12,AGTR1,BAK1,APP,GALR2,RGN,CHRNA7,SLC4A1,CHRNA1,FTL,C5AR1,SLC34A3,THY1,CCR9,CCR8,PLCE1,CCR7,CCR6,RHCG,CCR5,ATP2C1,CCR4,CCR3,CCR2,STC1,SLC40A1,GLP1R,CCL1,SRI,KCNMB3,C3AR1,KCNMB4,CLCN3,CCL3,DRD1,CCL2,CYSLTR1,HFE,BDKRB1,PPT1,BCL2L1,BDKRB2,CCL5,CALR,ATP6V1B1,CCL7,FTH1,KCNMB2,P2RY4,P2RY2,SLC30A5,ATP7A,GCM2,CD55,SLC4A11,CXCL13,AVPR1B,AVPR1A,XCL1,CACNA1C,CACNA1A,IFI6,SLC9A1,GRK1,ATP7B,MCHR1,CCKAR,GLRA1,BNIP3,CXCR3,EDNRA,FXN,SAA1,CXCR4,NMUR2,TRPV4,XCR1,MYC,NDUFS1,KNG1,CLN3,AIFM3,CCKBR,PROK2,LCK,GHRL,NPPB,CLN5,CLN6,CLDN16,CCR1,TFR2,TAC1,CALCA,CALCB,CCL23,BCL2,CD24,PTPRC,OPRL1,ATP1A3,ATP1A4,MTL5,NPR1,CCL19,ATP1A1,ATP1A2,SOD1,CCL15,RHAG,TMPRSS3,CCL11,CCL13,CCL14,HPX,BAX,MT2A,CP +PWCOMMONS DNA MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_MODIFICATION.html ATRX,ATF7IP,DNMT3A,FOS,PICK1,GATAD2A,DNMT1,DMAP1,DNMT3B,HELLS +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html SEPT5,NCBP2,SYT1,TSPO,SNCAIP,FAM3D,AP2S1,TNFSF14,MXI1,GDNF,TGFB1,APOA4,GATA2,SLN,PACSIN3,ZFYVE16,YRDC,RAB26,KHDRBS1,STX1A,SPACA3,NUDT4,CRYAA,CRYAB,STIM2,STIM1,NLRP3,LDLRAP1,TRAT1,FLNA,GHRH,CARTPT,GHRL,STON2,KCNMB4,ORAI1,STON1,NFKBIE,ITLN1,ABCA2,PPT1,CDH1,ARF6,CACNB4,UHMK1,AHSG,AZU1,PEA15,RAC1,SFTPD,BCL3,SNAP25,MDFI,CBL,NF1,SMAD3,NFKBIL1,NFKBIL2,CDH13,GCK,PLN,GSK3B,NLRP12,FAF1,TRIP6,RSC1A1,BARD1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html MSR1,PDLIM7,SORL1,RABEPK,HFE,ARF6,PPT1,SCARF1,ASGR1,ADRB3,AP1S1,PICALM,FOLR1,RAC1,SFTPD,RAMP3,MRC1,RAMP2,CLN3,CBL,LRP1B,ARHGAP27,STAB2,PI4KB,LDLRAP1,M6PR,ADRB2,STAB1,IGF2R,LRP2,LRP3,CLTCL1,DNM1 +PWCOMMONS POSITIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_ANGIOGENESIS.html AGGF1,BTG1,SPHK1,RHOB,AMOT,CHRNA7,TNFSF12,RUNX1,ANGPTL3,ANGPTL4 +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html NCSTN,NOTCH1,ADAM10,PSEN1,APH1A,DTX1,MAML1,PSEN2,MAML2,TP63,PSENEN,MAML3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNC1,SLC22A16,KCNC4,KCNC3,ATOX1,ATP6AP1,KCNK7,KCNK6,KCNK5,CHRNA7,KCND3,SCN2B,SCN2A,STIM2,STIM1,PKD2L1,SLC34A3,NNT,RHCG,ATP2C1,RYR3,RYR1,SLC40A1,KCNMB3,ORAI1,KCNMB4,SCN1B,KCNA2,KCNA1,KCNA4,HFE,KCNA3,CCL8,CACNB3,KCNA6,KCNA5,CACNB4,KCNJ2,KCNJ3,ATP6V0B,KCNMB1,KCNMB2,KCNJ1,SLC11A2,KCNS3,ATP6V0C,KCNS1,SCN9A,SLC30A5,C16ORF7,SLC31A2,HCN4,SLC31A1,TRPC1,HCN2,CACNA2D1,TRPC4,TRPC3,TRPC6,KCNB2,TRPC5,UCP1,KCNK1,KCNK3,KCNK4,KCNJ5,ATP7A,KCNJ4,SLC4A11,KCNJ6,NPY,UCP3,ATP2A3,UCP2,ATP2A1,CHRNB1,CACNA1D,ATP7B,KCNH1,KCNK17,KCNJ15,ATP6V0E1,KCNAB3,KCNAB1,KCNJ10,KCNJ12,HVCN1,KCNIP2,KCNJ11,KCNQ4,SLN,KCNQ3,NMUR1,NMUR2,SLC22A4,TRPV5,SLC22A3,SCN7A,KCNQ2,KCNQ1,COX17,SLC22A2,KCNG2,SLC22A1,SCN10A,TRPM3,SGK1,TRPM2,ATP6V1F,KCNA10,ATP6V1C1,SCN11A,KCNH2,KCNH3,KCNH4,KCNE1,PKD2,KCNE2,CCS,SCNN1G,CHP,SCN5A,SCNN1A,SLC39A2,SCNN1D,SLC39A1,TCIRG1,SLC8A1,NOX1,ATP1A4,RHAG,KCNV1,KCNN4,ABCC9,KCNN1,SLC17A3,SLC17A4,ATP6V1E1,PLN,KCNN3,SLC17A2,SCN4B,KCNF1,ABCC8,SCN4A,CSN2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html ALS2,NRP2,RTN4,NRTN,NRP1,POU6F2,LRRC4C,KCNIP2,GLI2,PAX2,GDNF,RTN1,SHH,TGFB2,NRCAM,ATP2B2,APOE,ROBO1,MAPT,ROBO2,SEMA3B,POU4F1,UNC5C,SPON2,NRXN3,MDGA1,LDB1,BAIAP2,PICK1,MDGA2,OTX2,NRXN1,CDK5,SLIT1,SLIT2,THY1,FARP2,AMIGO1,RND1,SEMA4F,BTG4,GHRL,OPHN1,TRAPPC4,CNTN4,SIAH1,UBB,SMARCA1,PARD3,CDK5R1,LST1,RTN4RL1,BRSK2,PPT1,KAL1,BAI1,VWC2,PCSK9,RTN4RL2,AGRN,LAMB1,PARD6B,KLK8,LMX1B,DTX1,NLGN1,DPYSL5,NTNG1,NTNG2,YWHAG,YWHAH,S100B,MAP1S,CYFIP1,FEZ2,FEZ1 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html LST1,IL18,TNFSF13,SPINK5,TGFB1,SART1,CD47,ZAP70,SFTPD,CD24,EBI3,CD28,IL4,PTPRC,SIT1,CD3E,IL7,IL27,SLA2,CD276,INHA,SOCS5,IL21,THY1,INHBA,NCK2,LAT,SIRPG,LAX1,NCK1,LCK,IL12A,GLMN,IL12B,ICOSLG +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html CALCA,CDH13,S100P,NF1,PRSS3,AMOT,TNFSF12,MYH9,PLG,SCG2,S100A2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html ALS2,RTN4,NRP2,NRTN,NRP1,LRRC4C,KCNIP2,PAX2,GLI2,GDNF,SHH,TGFB2,NRCAM,ROBO1,APOE,MAPT,POU4F1,SEMA3B,ROBO2,UNC5C,SPON2,NRXN3,BAIAP2,PICK1,OTX2,NRXN1,SLIT1,CDK5,SLIT2,THY1,FARP2,AMIGO1,RND1,SEMA4F,TRAPPC4,GHRL,OPHN1,SIAH1,CNTN4,UBB,CDK5R1,PARD3,LST1,RTN4RL1,PPT1,KAL1,BAI1,RTN4RL2,AGRN,LAMB1,PARD6B,KLK8,DPYSL5,NTNG1,NTNG2,YWHAH,S100B,MAP1S,CYFIP1,FEZ2,FEZ1 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html SHROOM1,SORBS3,SHROOM2,LIMA1,EZR,SORBS1,TSC1,NF2,FSCN2,FSCN1,EPB49,ARHGEF10L +PWCOMMONS REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SLC2A4RG,XRCC6,HOXD13,RORB,MED23,REST,MED21,MED20,ZNF254,CITED1,CITED2,EPC1,MED26,FOXF1,FOXF2,MED27,VPS4B,PQBP1,ZNF396,PATZ1,TLK1,TLK2,IKBKAP,ZNF45,PCBD2,RREB1,RXRA,ZHX1,MECP2,MED12,ZHX2,ZHX3,MED14,MED13,HNF4G,NME2,HNF4A,ZNF238,MED17,SMARCAL1,TGIF1,MYBBP1A,ZNHIT3,TRAPPC2,ZNF76,CRTC1,VPS72,FOXH1,HEXIM2,HEXIM1,ZNF74,PABPC1,VEZF1,TCF4,TCF3,ARHGEF10L,DMBX1,TCF7,UTF1,KLF12,PHB,TGFBR1,PAIP1,KLF10,MAP2K3,KLF11,ESRRG,MSTN,TFCP2,ATR,MZF1,ELF1,HNF1B,HNF1A,HTATIP2,ELF2,ELF4,EZH2,SPI1,TP63,ZNF345,DAXX,ZNF350,NOD2,ZNF148,ZNF146,CREG1,BRD7,SPIB,HSF4,MYC,BRD8,TAF1L,ZNF281,ATF7IP,CDC6,ZNF282,PTF1A,TP53,NDUFA13,TLE1,FOSB,ZNF143,SRPK1,FLNA,GTF2H1,ARHGEF11,MYCN,JMY,MXD4,CIAO1,CARD11,INHBA,EREG,PFDN5,ZNF136,C19ORF2,RUVBL1,NSD1,CLOCK,ZMYND11,ZNF274,CREM,WRNIP1,PML,ZNF367,NUFIP1,ZNF35,ZNF177,IL7R,ZNF174,PER1,LIMD1,SUPT4H1,FOXD3,ZNF263,IL4,MYF6,LMX1B,MYF5,TRIM28,TRIM27,ZNF24,TNP1,ELAVL2,PHF12,TRIM22,TP73,RPS6KA5,ATRX,MNAT1,ZNF157,RPS6KA4,RBAK,FOXE1,NARFL,TCEB3,PHF5A,TCEB1,NR5A1,MMS19,NCBP1,STK36,TNFSF13,RBM9,TCEAL1,TGFB1,NLRC3,CDKN2A,SMARCD2,MDFIC,SMARCD3,SMARCD1,SCRT1,BCL10,ZNF593,IL29,RELA,HDAC10,ARID1A,CSDA,DDIT3,JUNB,PA2G4,HIF1A,EP300,TIMELESS,SMARCE1,TCFL5,TFAP2B,MNX1,SMARCA5,EDF1,TFAP2A,TFAP2C,EDA,SMARCA1,SMARCA2,HMGB1,EID1,EID2,CNBP,HMGB2,LITAF,UBE2V1,ABCA2,UBE2V2,ABCA1,PYDC1,NR2C2,CXXC1,VDR,MEIS2,SMARCB1,RPL6,TEAD4,JUND,SNF8,HELLS,TFDP1,ZNF423,EPAS1,CREBZF,TAF8,BRIP1,NEUROG1,UIMC1,ATF6,HDAC5,HDAC4,ATF5,NRF1,ATF4,HDAC2,DYRK1B,SMARCC1,SMARCC2,PRKAR1A,ATF7,HIVEP3,IKBKB,ABL1,HDAC8,PDZD3,E2F1,NBN,RSF1,FOSL2,ARID4A,E2F6,DEDD,CTCF,ZNF202,DEK,PRDX3,PAWR,TMF1,PAX8,LRRFIP1,NRG1,FOSL1,NFX1,SLA2,ARID5B,ARID5A,ESR2,CDK7,RB1,HMGA2,HMGA1,CDK2,PRPF6,TARBP1,TARBP2,NCOA6,ERN2,ZFPM2,UBB,JMJD1C,CARM1,ACVR1,BCLAF1,NFYC,EGLN1,NFYB,NFYA,HIC1,TFAM,RGMB,TSC22D3,ORC2L,TSPYL2,CHD2,CHD1,NFATC2,NFATC3,CHD4,TERF2,CHD3,NFATC1,NF2,VHL,CEBPG,CREB5,ID2,DBP,ID1,ID4,ID3,FST,HIRA,SIN3A,WWP1,TRAK1,ABRA,IFNK,RARB,SUPT5H,TWIST2,PITX2,TWIST1,GTPBP4,POLH,YY1,RAD9A,TAF6L,PPARGC1A,PPARGC1B,UHRF1,MTF1,PIAS4,TGFBRAP1,PRDM1,SUDS3,ENPP7,MRE11A,AFAP1L2,CALR,NR1H2,PLAGL1,DRAP1,HTATSF1,CDA,MAML3,BCOR,NKX2-5,TCF25,NKRF,MDFI,KLF7,BMP2,IKZF3,KLF9,SUB1,MAML1,CREBBP,MAML2,RYBP,S100A11,SMAD4,SMAD3,SMAD2,UBP1,NOTCH2,NR1I2,NUP62,RNF4,NOTCH4,JAZF1,TCF19,BMP7,RBPJ,TCF12,ENG,ZFHX3,KLF4,TCF15,BMP6,ZBTB32,PPARD,ACVRL1,TBX22,TBX21,PPARG,NFKB2,TERF2IP,ZEB1,HSBP1,GLI2,CAMKK2,ZBTB38,KCNIP3,CDT1,GLI1,BLZF1,GFI1B,OXER1,NR2F2,ZNF354A,TBX10,CCNH,NFAM1,RAD50,SCAP,RBBP8,RAD51,SIGIRR,CTNNBIP1,MED6,MED7,CHMP1A,GRM8,RIPPLY1,MAP3K13,SRCAP,TBX19,MED1,POLR2L,POLR2K,EHF,ZBTB16,SUFU,SUMO1,SET,MRPL12,SQSTM1,NR1D2,LANCL2,GATAD2A,BCL3,PEX14,BCL6,MLLT6,POLR3G,TBX3,TBX2,GMNN,HCLS1,TBX5,ILF3,POLR3C,SNAI2,STAT3,SOD2,STAT2,PREB,YWHAH,UBTF,ILF2,YAF2,NEUROD2,PHF21A,PBX1,PBX3,APBB2,RBM14,APBB1,PBX4,MYOD1,ARNT2,CRABP2,FOXO1,FOXO3,FOXO4,HOXC6,GATA1,GATA6,HOXC5,GATA4,MYST2,MYST1,MYST4,GABPB2,MYST3,MYO6,FOXN1,ZNF189,ARNTL,NR0B2,NR0B1,ELL3,TRERF1,FOXN3,AHR,IGSF1,TIAL1,ERC1,RAD17,GCLC,TFAP4,SNX6,TIPIN,ELK1,ELK3,NPM1,RUNX1,RUNX2,RNF14,SREBF1,NFE2,PIF1,SAP18,SNW1,GSC2,FOXP3,BRCA1,SREBF2,PPIE,GCM1,DNMT1,RFX3,MAFA,SOX21,POU6F2,NR6A1,FOXK2,PDCD4,BUD31,MEN1,FOS,ACVR1B,POU5F1,PCGF6,ATP8B1,POU4F2,POU4F1,SOX18,MKL2,KHDRBS1,EGR1,ELP4,ELP3,NANOG,ELP2,SP100,CCDC88A,LDB1,SOX12,PRKCG,NLRP3,UBN1,NRIP1,UBE2N,PRKCQ,ACVR2B,BPTF,ZMIZ2,MDM2,MDM4,COMMD7,CUX1,KPNA2,ZFP161,KPNA1,SMARCAD1,GLIS3,ING4,SUPT3H,ING2,TNF,GLIS2,GLIS1,HCFC1,HCFC2,TCF7L2,CALCA,TNFRSF1A,NPAS2,ERCC6,POU2F3,PYCARD,POU2F1,GFI1,ERCC3,ERCC4,CAMK2A,ERCC1,ENO1,ERCC2,ERF,SOX30,SIRT4,SIRT5,EDA2R,CENPF,CBY1,SIRT1,SIRT2,ATXN1,SP1,SP2,SP3,IRF7,DR1,SP4,THRAP3,IRF8,GRLF1,IRF2,IRF4,TSSK4,CRK +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html MOCOS,SNCAIP,ALDH1L1,HPRT1,FAH,TGFB2,DCT,MTHFD2,TYR,ASMTL,CDA,GSTZ1,SPR,PTS,HPD,ALDH6A1,MOCS2,ALDH5A1,QDPR,FTCD,HGD,GMPS,SULT1B1,MAT2B,PAICS,PRPS1 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html IL6,PRG3,PAIP2,NDUFA13,INHA,FOXP3,FURIN,IL10,PAIP2B,SIGIRR,INHBB,INHBA,EIF4A3,EIF2AK1,TSC1,NLRP12,SFTPD,BCL3,GHRL,GHSR,EIF2AK3,APBB1 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html ACCN1,GSTM3,EGR2,NF1,BAI1,UGT8,NEUROG3,SOD1,PMP22,SERPINI1,ALDH3A2,GFRA3 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html FGD2,ALS2,FGD1,RAB3GAP2,RALBP1,RAB3GAP1,NF1,ARHGAP27,THY1,TSC1,FGD5,FGD6,FGD3,FGD4 +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html PAM,KIF25,PDS5B,CDC23,NUSAP1,CENPE,NDC80,ESPL1,LATS1,SMC4,NCAPH,CHMP1A,DDX11,ZWINT,SMC1A,CDCA5,ZW10 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html PTGES3,PPARA,PPARD,CYP2J2,PTGS1,ACOT2,ACOT1,ACOT4,ACOX3,SC4MOL,ACOT9,AKR1C3,AKR1C2,PTGES,ACOT12,GNPAT,ACADM,PRG3,ALDH5A1,ACADS,ADIPOR2,ADIPOR1,PPARGC1A,PECI,HAO1,ACADVL,PNPLA8,PTGDS,ALOX15B,HAO2,SLC27A6,SLC27A2,CROT,SLC27A5,DEGS1,ALOX12,HACL1,ACADSB,ECH1,ECHS1,CD74,MIF,HADHB,TNFRSF1A,ABCD2,BDH2,CPT1B,FADS1,MCAT,FADS2,CPT1A,BRCA1,OXSM,CYP4A11,CYP4F8,GLYAT,MLYCD,FAAH,LTA4H,CYP4F3,CYP4F2,HPGD +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html SEPT5,RAB3A,SYT1,KCNMB4,SNCAIP,BAIAP3,NLGN1,SNAPIN,RIMS1,GRM4,HRH3,SYN3,CARTPT +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html ME1,ME3,GAD2,ACO2,ACO1,IDH3B,IDH1,ACLY,GAD1,ACOT4,FH +PWCOMMONS NEGATIVE REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html CALCA,IL4,INHBA,MAFB,LDB1,ZNF675,CARTPT,PF4,INHA,ZBTB16 +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html SASS6,NDE1,CEP250,SAC3D1,NPM1,CNTROB,CETN3,TUBE1,BRCA2,CETN1,CP110 +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html CHIA,ALG1,EPM2A,GYG2,CHIT1,CHST1,B3GNT8,GCK,CHST7,PYGM,GSK3B,MGAM,GAA,GYS2,DYRK2,PYGB +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html SEPT5,SNAP29,STX5,SHROOM2,MYO1A,MSTO1,AP1M2,NIN,NLGN1,NUSAP1,CENPF,CDC23,BIRC5,CENPE,HOOK3,MFN2,PEX1,ALB,LRMP,TMED10,PAFAH1B1,SNAP23,YKT6,CDCA5 +PWCOMMONS ACTIN FILAMENT BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_MOVEMENT.html MYL6,TNNT2,MYO6,MYL6B,MYO1E,MYH7,MYO9B,MYH6,MYH9,MYH10 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html CEBPG,EGLN1,PYDC1,NLRP3,FOXP3,FLNA,SIGIRR,SUMO1,CDKN2A,ID2,ID1,NARFL,PEX14,ID3,COMMD7 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html ALAD,TSPO,ALDH1L1,COX10,UROS,PPOX,HPRT1,MTHFD2,ALAS1,ALAS2,ASMTL,CPOX,CDA,COX15,P4HB,ALDH6A1,FECH,PRG3,FTCD,GMPS,UGT1A1,BLVRA,MAT2B,NFE2L1,PAICS,PRPS1 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html SDAD1,EXOSC7,EXOSC2,EXOSC3,EIF2A,RRP9,FBL,DIS3,NOLC1,DKC1,RPS14,NPM1,POP4,GEMIN4 +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html CFHR1,ORM1,MBL2,APCS,CEBPB,KRT1,LBP,C2,ORM2,AHSG,SIGIRR +PWCOMMONS TRIACYLGLYCEROL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRIACYLGLYCEROL_METABOLIC_PROCESS.html LPL,AGPAT6,PNLIPRP2,DGAT1,DGAT2,APOA5,APOC3,APOC2,CETP,PNPLA3 +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html IMPA1,GPAA1,PTEN,PIGK,PIGF,PIGG,PIGH,PIGB,PIGC,PIK3R1,PIGA,PIGZ,PIGY,PIK3C2A,PIGV,PIGU,PI4KA,SMG1,PIGT,PIGS,PI4KB,PIGO,PITPNM3,PI4K2A,CD81,DPM1,DPM2,DPM3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html AURKAIP1,TLR1,EIF5A,TLR3,TLR4,TLR6,TLR7,TLR8,TGFB1,IL31RA,TLR9,APOA2,CLCF1,TPP1,MAPT,ATG7,TDGF1,LTB,SPN,EBI3,SAMD4A,EIF2B5,BCL10,IL29,PRG3,LYN,IL27,PPARGC1A,BOLL,IL20,UBE2N,NCK2,CCND1,CARD14,CD80,EREG,CCND3,CCND2,NCK1,TPPP,CD81,IL12A,IL12B,CLN6,ITLN1,KATNB1,EGLN2,TNFRSF8,ARF6,STUB1,AZU1,CDC42EP2,BCL3,DAZL,UBE2D1,CDC42EP5,CD28,IL4,BMP4,IL3,DAZ1,IL6,IL5,CEBPG,HCLS1,IL9,CD276,BRCA1,AKTIP,GLMN,PPP2R4,TNK2,FAF1,IRF4 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PRKG1,HOOK3,APOE,KIFAP3,PLA2G1B,KIF13B,PLD2,OPA1,ROCK1,KIF5B,KIF5A,RAN,MYH7,MYH6,MYH9,MARK4,PCLO,MARK1,THY1,RND3,UXT,KRT19,RND1,ATP2C1,CNTROB,DBN1,KIF4A,MYO9B,ARF6,KRT20,RCC1,CDC42EP2,RAC3,DMD,RAC1,TMED10,ARHGEF10L,CDC42EP5,KIF3B,TAOK2,ARFIP2,MYOZ1,CDC42BPG,LASP1,CDC42BPA,MAP7,PYY,GHSR,CDC42BPB,LIMA1,WASF3,NUAK2,WASF1,BCAR1,WASF2,LATS1,KISS1,PDPK1,DYNLL1,NUBP1,CEP250,MAPT,DYNC1I1,STX5,ARHGEF2,ACTA1,VIL1,ARHGEF17,FLNB,FLNA,ELMO1,NCK2,MAST1,NCK1,LRMP,TMSB4Y,MAP3K11,CXCL1,SNAP29,SHROOM1,SHROOM2,PLEK2,ABI2,SORBS3,EZR,SORBS1,SNAP23,WIPF1,RASA1,APBA1,RNF19A,NLGN1,CRIPAK,RICTOR,SOD1,MID1,CAPG,AMOT,KPTN,YKT6,SEPT5,MTSS1,PRC1,TTK,TTN,CXCL12,ANK3,PACSIN2,TUBG1,MYO6,NEBL,ARPC1A,TNNT2,TESK2,STMN1,DST,LRPPRC,FGD2,MYL6,FGD1,CCL3,SSH1,MRAS,SSH2,KATNB1,ARPC4,ANLN,ARPC5,LLGL1,DOCK2,ADRA2A,CLASP1,CLASP2,FGD5,FGD6,FGD3,FGD4,ARHGDIB,FSCN2,CKAP5,MYO1E,SPTBN4,FSCN1,EVL,EPB49,TSC1,MYH11,RHOT1,RHOT2,SPTA1,ABL1,SMC1A,DNAJB6,ARHGAP10,MYH10,KIF23,RHOJ,PREX1,DSTN,ARHGAP4,KIF2C,CDC42,DES,PEX1,ANG,GSN,RHOA,PAK1,RHOF,KLHL20,DLG1,CCDC88A,KIF11,LIMK1,NUSAP1,MID1IP1,NEXN,KIF1A,KIF1B,TPPP,CFL1,SCIN,GHRL,WASL,MAPRE1,KPNA2,AP1M2,KRT9,TUBGCP6,TUBGCP5,MYL6B,KRT3,PAFAH1B1,CNN2,NEFL,APC,TNXB,NF2,NF1,RACGAP1,TUBGCP2,CENPJ,SMC3,MAP1S,CRK +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html FGD2,FGD1,APOA1,APOE,RALBP1,APOC3,ARHGAP27,ABCA1,FGD5,FGD6,FGD3,FGD4 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html ME1,CALCR,GCLC,ABCA2,LATS1,LATS2,GSTM3,ANG,GATA3,PCSK9,CD24,EIF2B2,EIF2B3,EIF2B4,EIF2B5,LYN,HCLS1,ADIPOR2,ADIPOR1,BRCA2,CRIPAK,EIF2B1,BRCA1,RERG,KRT19,TSC1,NCOA6,FOXC2,GHRL,RBM14,STEAP2,GHSR,PDCD7 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html NCBP1,RNMT,CRNKL1,CWC15,SNRPD1,SNRPD2,AUH,SMNDC1,RNGTT,SFRS6,NONO,SFRS7,SFRS4,SFRS5,DHX38,SFRS8,SFRS9,LSM5,LSM3,DDX20,LSM1,KHDRBS1,ZFP36,PRPF31,SRPK2,EFTUD2,PTBP1,SF1,SFRS1,PPARGC1A,HNRNPR,SRPK1,SFRS2,DDX39,KHSRP,CPSF6,SLU7,SIP1,CPSF3,CPSF1,BAT1,TRA2A,HSPA1B,KIN,SF3B3,NUDT21,USP39,DHX15,GEMIN8,PABPC1,SFRS2IP,GEMIN6,GEMIN7,SFRS11,SPOP,GEMIN5,UPF2,CSTF3,CSTF2,SMG6,SMG5,PAIP1,SMG7,GRSF1,SMG1,SSB,SNW1,SF3A2,ELAVL4,PRPF18,SF3A1,HNRNPA0,SF3A3,SLBP,GSPT1,SFPQ,PHF5A,CSTF1,TXNL4A +PWCOMMONS PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_PROCESS.html PPP2R5C,MYLIP,BTK,MAP3K6,ISG15,MAP3K9,MAP3K8,ILK,TLK1,OGT,TLK2,MAP2K6,PTPRJ,IKBKAP,MCRS1,PTPRM,ROCK1,BRAF,ROCK2,PTPRH,KIAA1804,PTPRR,PTPRT,PTPRU,PTPRO,MARK4,MARK1,MARK2,PPP1CA,EIF2AK1,MAPK6,MAPK4,BACE2,MAPK3,F2,UBL4A,MAPK8,EIF2AK3,EIF2AK4,GGCX,PPP2R3B,PPP2R3A,ERBB3,ERBB2,DUSP10,DUSP12,IL17A,DUSP13,TNKS,MGAT4B,MGAT4A,PHB,TGFBR1,MGC42105,TAOK3,EPM2A,DUSP22,PCNP,CDC42BPG,UBA3,CDC42BPA,TNK1,PARP3,SMURF1,TNK2,PARP4,PARP1,PARP2,CDC42BPB,SEPHS1,LDLR,NUAK2,TSG101,CUZD1,PMVK,LATS1,LATS2,POMGNT1,MSRA,SRPK2,LYN,MMP15,SRPK1,CARD14,MAST1,CCND1,MAST2,CCND3,PPEF2,PPEF1,CCND2,IL12A,CAND1,TXK,USP25,DOLPP1,NSD1,NNAT,GPAA1,MKNK2,ABI3,MKNK1,ABI2,ABI1,MTMR3,NAGPA,SNRK,PTK2B,PPP2CA,MPDU1,PPP2CB,PCSK9,MTMR7,USP33,PCSK5,IL3,IL5,TRIM23,NAE1,DUSP5,QPCT,CCL11,RPS6KA5,DUSP4,DUSP3,RPS6KA4,DUSP2,CSNK1D,LARGE,CSNK1E,GSK3B,WHSC1L1,ARAF,DPM1,NLRP12,DPM2,DPM3,DUSP9,LRP2,DUSP8,DUSP6,PRPF4B,ZAK,STK38,STK36,TSPAN7,TSPAN8,MIPEP,TGFB1,FNTB,FNTA,CSNK2A1,ATG7,B3GALNT1,ST3GAL6,TDGF1,RPN1,RPN2,INSR,FBXO22,MATK,EGFR,BCL10,TWF1,RET,IL29,MYO3A,PTPRN2,HDAC10,HDAC11,IL20,EP300,RNF139,TESK2,UBA52,FBXO11,STK16,PHKA2,PAM,CCL2,FGR,STK11,STK10,UBE2V1,UBE2V2,ST8SIA3,MAPKAPK2,ST8SIA2,RABGGTA,FBXW7,ECE2,PTK6,FBXW2,DYRK3,DYRK2,TRAF7,TRAF6,STK19,B4GALT7,LIPT1,SDF2,TEC,TAF1,AIPL1,EHMT1,MOBKL1A,SMG1,ICMT,ATG3,FURIN,GLYCTK,NMT2,NMT1,IKBKE,PLK4,PLK3,TSC1,ST8SIA4,DYRK1B,DYRK1A,ABL1,MERTK,ABL2,HDAC6,ALG1,ALG2,UCHL1,PRDX4,ALG5,PINK1,ALG6,DPH3,FES,ALG8,PRMT1,NDUFS4,PRMT2,PKN3,PRMT7,PRMT8,CLCF1,PRMT5,LOXL2,MAN2B1,LOXL1,PPP2R1A,SGK1,MAN1A2,SGK3,LIMK1,PKN2,PKN1,CDK9,PADI4,NEK11,PPM1G,PPM1D,CHRM3,CHRM1,LCK,DDB2,CDK2AP1,ERN1,ERN2,RAGE,UBB,PPM1M,CARM1,TM4SF4,PPP2R2A,TM4SF5,ACVR1,GALNT2,GALNT1,HS3ST5,GALNT7,APH1A,GALNT6,ADAMTS13,APH1B,BRSK2,BRSK1,PPM1B,STUB1,IGF1R,PRSS3,A4GNT,DCLK1,RNF144B,NF2,PDF,VHL,HCK,CBL,ANXA1,RAF1,MAN1C1,NCSTN,ICK,TSSK1A,JAK2,JAK3,DZIP3,B3GALT5,B3GALT4,AURKC,PTPN22,RNF217,AURKA,PTPN21,PRKG2,SLC35A1,PRKG1,PRKX,PRKY,PLOD2,WWP2,PLOD3,COL4A3BP,WWP1,WNK4,TRAK1,PSENEN,GTPBP4,BCR,PIM1,WNK1,WNK3,WNK2,PIM2,PPARGC1A,CD37,UHRF2,CAMK4,HUWE1,CAMK1,AMFR,SRP72,NEK4,NEK6,FBXL2,TPST1,GCNT4,TPST2,GCNT3,KEL,STK17B,PXK,STK17A,UHMK1,EPHB2,VRK1,VRK2,GAD1,GCNT1,PLAT,BMP4,LCMT1,PTPN18,FBXO2,CREBBP,PTPN14,PTPN13,OXSR1,PTPN12,ADPRH,EPHA5,CBLC,EPHA8,ALG12,GRK1,GYPC,ACVRL1,FASTK,CCNT1,PTEN,SENP7,ART1,CAMKK2,ART3,PDPK1,CTBP1,ADAM10,PSEN1,PSEN2,MAP3K10,CTDP1,MAP3K13,MAP3K12,SERP1,MAP3K11,USP7,PPP6C,FUT9,FUT8,ATG12,FUT7,FUT6,FUT5,NFS1,STT3B,SUMO1,STT3A,SET,CHM,FUT4,PRKAA1,PCMT1,FUT1,PRKAA2,FUT2,QSOX1,AGA,CSNK1A1,FYB,PTPRZ1,HCLS1,MEX3B,STAT1,COG3,TP53RK,MAPK12,COG7,MAPK15,C7ORF16,PPP2R4,PTCH1,RBM14,COG2,LOR,MYOD1,TUSC3,SAE1,UBQLN3,TTN,DMPK,IL31RA,LOX,PRKACB,MYST1,MYST4,MYST3,CSNK1G2,SOCS1,FUT10,PICK1,CDKL3,STK4,CDKL5,STK3,TPTE,MAP4K3,MAP4K4,MAP4K5,CDKL1,RIPK3,DSP,CSTA,CSNK1G3,RIPK4,ERC1,KALRN,PPP5C,PPME1,SSH1,ITLN1,SSH2,MAP4K2,MAP4K1,ITGB2,NEDD8,ANAPC11,IRAK3,B3GNT5,PTPLA,LMTK2,RNF11,ERO1L,UBE2D1,STK38L,IVL,GAL3ST1,RNF14,PGGT1B,PTPN7,P4HB,PTPN6,PTPN9,PTPN3,PTPN2,UST,PTPN5,PTPN4,BMX,BRCA1,AKTIP,ULK1,PHEX,MYLK,UBE2E2,UBE2E1,IL22RA2,METAP1,METAP2,PRKAG1,TIMM50,AKT1,PIGK,ACVR1B,PIGF,PAK2,PIGG,PIGH,POMT1,PIGB,PIGC,PAK1,CSK,CHUK,AKT3,PIGA,AKT2,VCPIP1,IRAK2,PIGZ,CCDC88A,PIGY,CCDC88C,PIGV,PIGU,PRKCI,PRKCH,PIGT,MINK1,CHST4,PIGS,PRKCG,CHST5,DAPK2,PRKCE,UBE2C,ALK,PRKCD,DAPK3,PIGO,DAPK1,TYK2,UBE2N,PRKD1,MAGT1,EVPL,SBF1,CD80,HIPK3,CD81,MDM2,PRKD3,ING5,FRK,PRKCZ,ING4,PPP4R2,HAT1,PRKDC,UBE3C,TRIB2,TRIB1,GLRX2,ERCC8,MAP3K3,MAP3K2,TGM3,SCG5,CAMK2B,TGM5,YES1,CAMK2A,PTPRB,PTPRC,PTPRD,ERG,LTK,PTPRE,LIPA,B3GALT2,MAP1D,UBE4B,SIRT4,SIRT5,SIRT6,PARK2,SIRT1,SIRT2,GSG2,SIRT3,GMFB,GMFG,SPRR1A,SPRR1B,TSSK2,BMPR1B,LIPC,TSSK4,TSSK3,IGFBP3,POFUT1,TSSK6,LIPE,BMPR1A,F2R +PWCOMMONS PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_PHOSPHORYLATION.html AURKC,AURKA,PRKG2,PRKG1,PRKX,BTK,PRKY,MAP3K6,WNK4,COL4A3BP,MAP3K9,ILK,MAP3K8,TLK1,TLK2,MAP2K6,IKBKAP,BCR,ROCK1,BRAF,ROCK2,KIAA1804,PIM1,WNK1,WNK3,WNK2,PIM2,MARK4,MARK1,MARK2,EIF2AK1,MAPK6,CAMK4,MAPK4,MAPK3,F2,CAMK1,MAPK8,SRP72,NEK4,EIF2AK3,EIF2AK4,NEK6,ERBB3,ERBB2,STK17B,STK17A,PXK,UHMK1,EPHB2,VRK1,VRK2,TNKS,BMP4,TGFBR1,TAOK3,MGC42105,OXSR1,EPHA5,CBLC,CDC42BPG,EPHA8,CDC42BPA,TNK1,TNK2,GRK1,CDC42BPB,ACVRL1,NUAK2,FASTK,CCNT1,PMVK,LATS1,LATS2,CAMKK2,PDPK1,SRPK2,CTBP1,ADAM10,LYN,SRPK1,MAST1,CCND1,CARD14,MAST2,CCND3,CCND2,MAP3K10,IL12A,TXK,MAP3K13,MAP3K12,MAP3K11,MKNK2,ABI3,MKNK1,ABI2,ABI1,SNRK,PTK2B,PRKAA1,PRKAA2,CSNK1A1,FYB,IL3,IL5,HCLS1,MEX3B,STAT1,CCL11,RPS6KA5,TP53RK,RPS6KA4,MAPK12,CSNK1D,CSNK1E,GSK3B,C7ORF16,MAPK15,NLRP12,MYOD1,PRPF4B,STK38,ZAK,STK36,TTN,TGFB1,IL31RA,DMPK,CSNK2A1,TDGF1,PRKACB,INSR,MATK,EGFR,TWF1,RET,IL29,MYO3A,CSNK1G2,PICK1,SOCS1,STK4,CDKL5,STK3,IL20,MAP4K3,MAP4K4,MAP4K5,CDKL1,TESK2,RIPK4,ERC1,KALRN,STK16,CCL2,FGR,STK11,STK10,ITLN1,MAP4K2,MAP4K1,ITGB2,MAPKAPK2,IRAK3,PTK6,LMTK2,DYRK3,DYRK2,STK19,STK38L,TEC,TAF1,MOBKL1A,BMX,SMG1,GLYCTK,IKBKE,PLK4,PLK3,AKTIP,ULK1,DYRK1B,DYRK1A,MERTK,ABL1,ABL2,MYLK,IL22RA2,PRKAG1,PRDX4,PINK1,FES,AKT1,ACVR1B,NDUFS4,PAK2,PKN3,CLCF1,PAK1,CSK,AKT3,CHUK,IRAK2,SGK1,CCDC88A,SGK3,CCDC88C,LIMK1,PKN2,PRKCI,PKN1,PRKCH,CDK9,MINK1,PRKCG,PRKCE,DAPK2,PRKCD,DAPK3,NEK11,DAPK1,PRKD1,TYK2,CD80,HIPK3,LCK,CD81,CDK2AP1,ERN1,ERN2,RAGE,PRKD3,ACVR1,FRK,PRKCZ,BRSK2,BRSK1,TRIB2,TRIB1,IGF1R,MAP3K3,MAP3K2,CAMK2B,CAMK2A,DCLK1,ERG,LTK,NF2,HCK,RAF1,GSG2,GMFB,ICK,TSSK1A,GMFG,JAK2,TSSK2,JAK3,BMPR1B,TSSK4,IGFBP3,TSSK3,LIPE,TSSK6,BMPR1A,F2R +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TRIB3,SFN,MBIP,PYDC1,LATS1,PDCD4,LATS2,CDKN2A,HEXIM2,PAK2,HEXIM1,DUSP16,SPRED2,SPRED1,CDK5RAP1,APC,GPS1,PTPRC,PIF1,NF1,DUSP22,CRIPAK,RB1,THY1,GPS2,TARBP2,CBLC,DUSP2,RGS3,LAX1,RGS4,HIPK3,DUSP9,DUSP8,DUSP6 +PWCOMMONS AMYLOID PRECURSOR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMYLOID_PRECURSOR_PROTEIN_METABOLIC_PROCESS.html NCSTN,CLN3,ACHE,APH1A,PSEN1,BACE2,PSEN2,PSENEN,NECAB3,ABCG1 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html KCNH1,SNAP29,VAPA,NAPG,EEA1,NAPA,CD9,ADAM2,ATG7,VPS4B,IZUMO1,SNAP23,STX11,STX6,NPLOC4,RABIF,STAP1,CRISP1,VTI1B,BNIP1,RABEP1,OTOF,CACNA1H,LRMP,GOSR2,VAMP3,ADAM12,GCA +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html BCAT1,HSP90AB1,ALDH18A1,PAH,BBOX1,GCH1,TGFB2,AKT1,OAZ1,PLOD1,ASMTL,SULT1A2,ETNK1,SPR,DDAH2,NQO1,GCHFR,EGFR,HSP90AA1,PRG3,CDO1,PYCR1,GLA,MAT2B,SLC5A7 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html PDIA2,TNFSF15,BNIP3,PMAIP1,BAK1,GPX1,NLRC4,CASP3,CDKN2A,CASP8AP2,CASP9,CASP7,CASP8,ACIN1,CASP2,TOP2A,DEDD2,AIFM3,DFFA,GZMA,AIFM1,DFFB,CYCS,TP53,NDUFA13,CECR2,GZMB,BCL2L10,IFNB1,LCK,PSEN2,F2,BID,MCL1,PPT1,BCL2L1,SFN,MOAP1,MTCH1,DIABLO,C16ORF5,HIP1,COL4A3,FOXL2,DNM1L,SMAD3,CIDEA,TPD52L1,BAD,SOD1,STAT1,VDAC1,VCP,BBC3,BAX,IFT57,BIK,APAF1,IFI6,F2R +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html MBL2,BCL10,CRTAM,CADM1,CEBPG,APOBEC3G,COLEC12,DEFB127,PYDC1,APOBEC3F,NCR1,TLR8,CD1D,APOA4,EREG,DEFB118,IL12A,SFTPD,KRT1,IL12B,IFNK,DEFB1,DMBT1 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html TBX3,SPHK1,NUSAP1,HCFC1,BIRC5,ASNS,CITED2,TGFB2,CCND1,EREG,CCND3,EPGN,CCND2,TGFA,EGF,CD28 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html EID2,SNX6,ZNF675,PTEN,ADRB3,PEG10,OTUD7B,VWC2,RHOH,MDFI,PTPRC,CARD8,NF2,SLA2,NLK,TAOK3,SOCS1,NF1,CIDEA,CBY1,FRZB,TAX1BP3,BRAP,THY1,SIGIRR,MFN2,AMBP,CBLC,ADRB2,SOST,TSC1,NLRP12,HGS,SMURF1,TNFAIP3,ACVR1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html DDX11,SMARCD1,STAG3,HIRIP3,TLK1,ACIN1,TLK2,CDCA5,MYST1,MYST4,MYST3,SATB1,DFFB,MTA2,HDAC10,ESPL1,ARID1A,HDAC11,TAF6L,PPARGC1A,REC8,RFC1,HUWE1,SMARCE1,SYCP3,ZWINT,SMARCA5,PAM,HMGB1,MRE11A,SYCP1,ACD,NPM2,PBRM1,ASF1A,HELLS,EHMT1,SMG6,PIF1,PHB,CREBBP,CDC23,NDC80,SUV39H2,HDAC5,HDAC4,HDAC3,HDAC2,HDAC1,SMARCC1,SMARCC2,SUPT16H,CHAF1A,VCX,SMC1A,HDAC8,CHAF1B,HDAC6,PTGES3,NBN,KIF25,RSF1,EZH2,NAP1L1,BNIP3,NAP1L3,TERF2IP,NAP1L2,LATS1,NAP1L4,PRMT7,DKC1,PRMT8,TOP2A,TERT,ZW10,RBBP4,AIFM2,NUSAP1,HMGA2,HMGA1,RAD50,UBE2N,CHMP1A,BPTF,CARM1,NSD1,MAP3K12,H1FNT,POT1,NCAPH,SET,SAFB,ACTL6A,SUPT4H1,TINF2,ERCC4,ERCC1,TERF2,PDS5B,MSH3,MSH2,NASP,SIRT4,SIRT5,TNP1,CENPE,SIRT1,SC65,SIRT2,MIS12,SMC4,CENPH,RPS6KA5,WHSC1L1,TEP1,RBM14,TSSK6 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html FGD2,FGD1,CD2AP,VCL,CDC42,CDC42EP2,CDC42EP1,RAC3,RAC1,CDC42EP4,FGD5,FGD6,FGD3,CDC42EP5,THBS4,FGD4,CCDC88A,PCNT,VANGL2,ARFIP2,ACTN2,DNAI2,CDH13,CYFIP1,OPHN1 +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html GRM4,CDK5R1,AKT1S1,BAX,NF1,PCSK9,PPT1,SOD1,CDK5,GDNF,RASA1,TGFB2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html NCBP2,NCBP1,PRPF4B,CRNKL1,LSM6,SNRPD3,CWC15,SNRPD1,RP9,SNRPD2,SYNCRIP,ZNF638,SMNDC1,SFRS6,NONO,SFRS7,SFRS4,SFRS5,DHX38,DDX23,SFRS8,SFRS9,U2AF1,DBR1,LSM4,SRRM1,DDX20,LSM1,PRPF31,SNRPA1,SRPK2,NOL3,SNRPN,EFTUD2,PTBP1,SF1,PRPF3,SFRS1,PPARGC1A,SRPK1,SFRS2,DDX39,SNRPB,KHSRP,SLU7,SNRPC,SIP1,SNRPF,BAT1,SNRPG,TRA2A,SNRPB2,IVNS1ABP,SF3B4,SF3B3,SF3B2,PPAN,PRPF8,CDC40,USP39,DHX16,GEMIN8,HNRNPC,SFRS2IP,GEMIN6,GEMIN7,NOVA1,SFRS11,GEMIN5,DHX8,BCAS2,SNW1,RNPS1,SF3A2,PRPF18,SF3A1,SF3A3,PPIG,SFPQ,ZRANB2,PHF5A,TXNL4A +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html ME1,COASY,ALAD,TSPO,MOCS2,GCLC,FECH,COX10,UROS,PPOX,COQ7,GCLM,PDSS1,PDSS2,COQ3,COQ2,ALAS1,ALAS2,CPOX,NFE2L1,COX15 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CADM1,ELF4,IL18,JAG2,TNFSF13,TPD52,SPINK5,TGFB1,SART1,CD47,NLRC3,EBI3,CRTAM,SIT1,CD3D,CD3E,IL27,SLA2,INHA,SOCS5,NFAM1,IL21,THY1,INHBA,NCK2,SIRPG,LAT2,LAX1,CD40LG,NCK1,LCK,IL12A,IL12B,NHEJ1,ICOSLG,LST1,INS,CD2,ZAP70,SFTPD,CD4,CD24,HELLS,CD7,CD28,IL4,PTPRC,IL7,CEBPG,CD276,FOXP3,CD1D,HDAC5,LAT,HDAC4,GLMN,CLEC7A,CD79A,HDAC9,IL2 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html ITLN1,STUB1,TGFB1,IL31RA,CLCF1,ATG7,TDGF1,UBE2D1,BMP4,IL3,BCL10,IL5,LYN,IL29,HCLS1,PPARGC1A,BRCA1,IL20,UBE2N,CARD14,CCND1,CD80,CCND3,AKTIP,CCND2,CD81,IL12A,PPP2R4,TNK2 +PWCOMMONS REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RNA_METABOLIC_PROCESS.html SLC2A4RG,XRCC6,HOXD13,RORB,MED23,REST,MED21,ZNF254,MED20,CITED1,CITED2,EPC1,FOXF1,MED26,FOXF2,MED27,VPS4B,PQBP1,ZNF396,PATZ1,IKBKAP,ZNF45,PCBD2,RREB1,RXRA,ZHX1,MED12,ZHX2,MECP2,ZHX3,MED14,HNF4G,MED13,NME2,HNF4A,ZNF238,MED17,SMARCAL1,TGIF1,MYBBP1A,TRAPPC2,ZNHIT3,ZNF76,CRTC1,VPS72,FOXH1,HEXIM2,HEXIM1,ZNF74,PABPC1,TCF4,VEZF1,TCF3,ARHGEF10L,UTF1,TCF7,KLF12,PAIP1,KLF10,MAP2K3,KLF11,ESRRG,TFCP2,MZF1,ELF1,HNF1B,HNF1A,HTATIP2,ELF2,ELF4,EZH2,SPI1,TP63,ZNF345,DAXX,ZNF350,ZNF148,CREG1,ZNF146,BRD7,SPIB,HSF4,MYC,TAF1L,BRD8,ATF7IP,ZNF281,ZNF282,PTF1A,TP53,NDUFA13,FOSB,ZNF143,SRPK1,MYCN,ARHGEF11,MXD4,JMY,GTF2H1,CIAO1,INHBA,ZNF136,PFDN5,C19ORF2,RUVBL1,NSD1,CLOCK,ZMYND11,ZNF274,CREM,NUFIP1,ZNF367,ZNF35,ZNF177,ZNF174,LIMD1,SUPT4H1,FOXD3,ZNF263,IL4,MYF6,LMX1B,MYF5,TRIM28,TRIM27,TNP1,ELAVL2,PHF12,TRIM22,TP73,ATRX,RPS6KA5,MNAT1,ZNF157,RPS6KA4,RBAK,FOXE1,TCEB3,PHF5A,TCEB1,NR5A1,MMS19,NCBP1,TCEAL1,TGFB1,SMARCD2,MDFIC,SMARCD3,SMARCD1,SCRT1,BCL10,ZNF593,HDAC10,ARID1A,CSDA,JUNB,DDIT3,PA2G4,HIF1A,TCFL5,SMARCE1,MNX1,SMARCA5,TFAP2B,EDF1,TFAP2A,TFAP2C,SMARCA1,SMARCA2,HMGB1,EID1,HMGB2,CNBP,LITAF,UBE2V1,ABCA2,NR2C2,CXXC1,MEIS2,SMARCB1,RPL6,JUND,TEAD4,SNF8,HELLS,TFDP1,EPAS1,TAF8,NEUROG1,BRIP1,HDAC5,ATF6,HDAC4,ATF5,NRF1,ATF4,HDAC2,DYRK1B,SMARCC1,ATF7,PRKAR1A,SMARCC2,ABL1,HDAC8,E2F1,RSF1,FOSL2,ARID4A,E2F6,CTCF,DEK,ZNF202,PAWR,TMF1,PAX8,LRRFIP1,FOSL1,NFX1,SLA2,ARID5B,ARID5A,ESR2,CDK7,RB1,HMGA2,HMGA1,PRPF6,TARBP1,TARBP2,NCOA6,ZFPM2,JMJD1C,CARM1,NFYC,NFYB,NFYA,HIC1,TFAM,ORC2L,TSC22D3,CHD2,CHD1,NFATC2,NFATC3,CHD4,NFATC1,CHD3,VHL,CEBPG,CREB5,DBP,ID4,FST,HIRA,SIN3A,TRAK1,RARB,SUPT5H,TWIST2,TWIST1,PITX2,YY1,TAF6L,PPARGC1B,UHRF1,MTF1,PRDM1,AFAP1L2,CALR,PLAGL1,DRAP1,HTATSF1,MAML3,BCOR,TCF25,NKX2-5,MDFI,IKZF3,BMP2,KLF7,KLF9,SUB1,MAML1,CREBBP,MAML2,SMAD4,RYBP,SMAD3,SMAD2,UBP1,NOTCH2,RNF4,NOTCH4,JAZF1,TCF19,RBPJ,ZFHX3,TCF12,KLF4,TCF15,BMP6,ZBTB32,PPARD,TBX22,TBX21,PPARG,NFKB2,ZEB1,GLI2,HSBP1,KCNIP3,ZBTB38,GLI1,BLZF1,GFI1B,NR2F2,ZNF354A,TBX10,CCNH,SCAP,RBBP8,MED6,CTNNBIP1,MED7,CHMP1A,RIPPLY1,SRCAP,TBX19,MED1,POLR2L,POLR2K,EHF,ZBTB16,SUFU,MRPL12,NR1D2,SQSTM1,GATAD2A,PEX14,BCL6,MLLT6,POLR3G,TBX3,TBX2,TBX5,HCLS1,ILF3,POLR3C,SNAI2,STAT3,SOD2,STAT2,PREB,UBTF,ILF2,NEUROD2,PHF21A,PBX1,PBX3,RBM14,PBX4,MYOD1,CRABP2,FOXO1,FOXO3,FOXO4,HOXC6,GATA1,GATA6,GATA4,HOXC5,MYST2,GABPB2,MYO6,FOXN1,ZNF189,ARNTL,NR0B2,NR0B1,ELL3,TRERF1,AHR,FOXN3,TIAL1,TFAP4,ELK1,RUNX1,RNF14,SREBF1,NFE2,SAP18,SNW1,GSC2,FOXP3,BRCA1,SREBF2,GCM1,DNMT1,MAFA,SOX21,POU6F2,NR6A1,FOXK2,BUD31,MEN1,FOS,POU5F1,POU4F2,POU4F1,SOX18,MKL2,ELP4,ELP3,ELP2,NANOG,SP100,LDB1,SOX12,UBN1,NRIP1,BPTF,ZMIZ2,MDM2,MDM4,CUX1,ZFP161,ING4,GLIS3,SUPT3H,TNF,ING2,GLIS1,HCFC2,TCF7L2,TNFRSF1A,NPAS2,ERCC6,POU2F3,GFI1,ERCC3,ERCC2,ENO1,ERF,SOX30,SIRT4,SIRT5,CBY1,SIRT1,SP1,SP2,IRF7,DR1,SP3,THRAP3,SP4,IRF8,IRF2,CRK +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html GNA15,CASR,SLC9A7,ATOX1,F2RL1,CD52,CXCL12,AGTR1,APP,GALR2,RGN,CHRNA7,FTL,C5AR1,THY1,CCR9,CCR8,PLCE1,CCR7,CCR6,CCR5,ATP2C1,CCR4,CCR3,CCR2,STC1,SLC40A1,GLP1R,CCL1,SRI,C3AR1,CLCN3,DRD1,CCL3,CCL2,CYSLTR1,HFE,PPT1,BDKRB1,BDKRB2,ATP6V1B1,CALR,CCL5,CCL7,FTH1,P2RY4,SLC30A5,ATP7A,CD55,GCM2,SLC4A11,CXCL13,AVPR1B,AVPR1A,CACNA1C,XCL1,CACNA1A,ATP7B,SLC9A1,CCKAR,MCHR1,CXCR3,EDNRA,FXN,SAA1,CXCR4,NMUR2,TRPV4,XCR1,MYC,KNG1,CLN3,CCKBR,PROK2,LCK,GHRL,CLN5,CLN6,CLDN16,CCR1,TFR2,TAC1,CALCA,CALCB,CCL23,BCL2,CD24,PTPRC,OPRL1,ATP1A3,CCL19,ATP1A4,MTL5,ATP1A1,ATP1A2,SOD1,CCL15,TMPRSS3,CCL11,CCL13,CCL14,HPX,MT2A,CP +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html RSF1,BNIP3,PRMT7,PRMT8,SMARCD1,MYST1,MYST4,MYST3,RBBP4,HDAC10,ARID1A,HDAC11,TAF6L,HMGA1,PPARGC1A,UBE2N,SYCP3,HUWE1,BPTF,CARM1,NSD1,MAP3K12,SET,NPM2,PBRM1,ACTL6A,SUPT4H1,HELLS,EHMT1,NASP,PHB,CREBBP,SIRT4,SIRT5,TNP1,SIRT1,SIRT2,SUV39H2,HDAC5,RPS6KA5,HDAC4,HDAC3,HDAC2,HDAC1,SMARCC1,WHSC1L1,SMARCC2,RBM14,HDAC8,HDAC6 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F2RL2,F2RL3,ADORA3,S100A8,AIF1,F13A1,S100A9,GNA12,IL13,CXCL11,MMRN1,ADORA1,TGFB1,GP9,TGFB2,CXCL10,CTGF,LTB4R,SERPINE1,APOA5,CHRNA7,IL1A,F12,F11R,L3MBTL4,F10,VPS45,RELA,F8,F9,CD40,F7,CDO1,IL20,TNFAIP6,CCR7,CD36,THBD,F5,HNF4A,CCR5,CD40LG,CCR4,CCR3,CX3CR1,CCR2,F2,TFPI,RIPK2,NFE2L1,PLA2G2E,PLA2G2D,DCBLD2,TPST1,GGCX,C3AR1,ACHE,CCL3,ADORA2A,PABPC4,HOXB13,AFAP1L2,CX3CL1,ITGB3,LMAN1,CCL5,MDK,CCL4,AHSG,IL17C,F13B,IFNA2,MIA3,RAC1,ENTPD1,BLNK,PLAT,ITGA2,AGER,S100A12,HDAC5,HDAC4,APOL3,LYVE1,CD59,PARP4,GHSR,HDAC9,ABCF1,FGF7,ACVRL1,ELF3,TACR1,CRP,PRDX5,NFKB1,CFHR1,CD97,FOS,NOD1,CXCR4,AOAH,CCL3L3,IL1RAP,MGLL,LBP,XCR1,NFX1,IRAK2,KNG1,APCS,IL18RAP,LYZ,CHST2,NLRP3,WAS,PROC,SIGIRR,ALOX15,KLRG1,ADM,EREG,GNAQ,PLA2G7,SPRR3,GHRL,PROS1,PTAFR,GAP43,AOC3,CXCL1,MBL2,NMI,RTN4RL1,CCR1,C5,CXCL2,CXCL9,PF4,GPR68,CXCL6,CCL26,PR47,CCL24,TNFRSF1A,CCL22,HRH1,CCL23,MEFV,CCL20,CCL21,IL10RB,ALOX5AP,KRT1,RTN4RL2,NFATC4,GP1BA,C2,PTX3,NFATC3,SCG2,LY75,NOX4,KLK8,CEBPB,IL5,IL8,NFRKB,IL9,NF1,ANXA1,CYP4F11,C4BPB,SOD1,TMPRSS6,PLG,CCL11,VWF,ORM1,CYBB,CCL13,AOX1,SELE,ORM2,F2R +PWCOMMONS DETECTION OF BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_BIOTIC_STIMULUS.html NOD2,NLRC4,CRTAM,NOD1,PGLYRP4,PGLYRP2,PGLYRP3,PGLYRP1,NLRP3,CD1D +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html POLR3G,GTF3A,SNAPC5,BRF1,POLR3H,POLR2L,POLR3K,SNAPC2,POLR2K,SNAPC4,ZNF76,SNAPC3,ZNF143,POLR3C,IVNS1ABP,ZNF345,BRCA1,TROVE2,GTF3C4 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GABBR1,GABBR2,MBIP,PDCD4,LATS1,LATS2,EDNRB,GPX1,APOA2,CDKN2A,PAK2,GALR1,CDKN2D,GALR3,SPRED2,SPRED1,CDK5RAP1,DHCR24,TP53,RB1,HBXIP,THY1,TNNT2,GRM4,TARBP2,GRM3,GRM2,GRM8,LAX1,HIPK3,GRM7,CCR2,CAND1,ATPIF1,GNAI3,GNAI2,DRD5,TRIB3,SFN,PYDC1,HEXIM2,HEXIM1,DUSP16,ADRA2A,FBXO5,ANGPTL3,APC,ANGPTL4,GPS1,PTPRC,PIF1,NF1,DUSP22,CRIPAK,BIRC5,GPS2,CBLC,NOSIP,DUSP2,GLA,RGS3,RGS4,LTB4R2,PPP2R4,DUSP9,DUSP8,IFI6,DNAJB6,DUSP6 +PWCOMMONS CELLULAR MACROMOLECULE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_METABOLIC_PROCESS.html AURKAIP1,PPP2R5C,RCE1,MYLIP,BTK,MAP3K6,ISG15,MAP3K9,MAP3K8,ILK,OGT,IKBKAP,MCRS1,BRAF,MYH9,MARK4,SARS2,MARK1,MARK2,PPP1CA,EIF2AK1,MAPK6,BACE2,TMPRSS11E,MAPK4,BACE1,F2,MAPK3,MGAM,MAPK8,EIF2AK3,EIF2AK4,PPP2R3B,PPP2R3A,PABPC4,DUSP10,DUSP12,ARF6,ARIH1,IL17A,DUSP13,KLKB1,RAC1,IL17F,PAIP2,PAIP1,TAOK3,EPM2A,DUSP22,UBE2L3,CDC42BPG,CDC42BPA,PARP3,SMURF2,SMURF1,PARP4,PARP1,PARP2,CDC42BPB,LDLR,NUAK2,TSG101,UBE2G1,UBE2G2,CUZD1,EIF2A,PMVK,MMP24,YBX2,LNPEP,MMP20,EEF2K,MTERF,MRPL3,APCS,LYN,EIF1B,MMP15,CCT6A,MMP14,MMP13,MMP12,TTF2,MMP11,LRPAP1,INHBB,INHBA,MMP10,EIF4A3,CARD14,PPEF2,EREG,PPEF1,MTRF1,EIF4A2,MGEA5,IL12A,TXK,IL12B,DOLPP1,USP25,FMOD,NNAT,MKNK2,ABI3,MKNK1,ABI2,ABI1,NECAB3,PET112L,MTMR3,CCT6B,SNRK,MPDU1,MARS2,DAZL,C2,USP33,MTMR7,IL4,IL3,IL6,DAZ1,IL5,UPF1,IL9,TRIM23,ETF1,QPCT,DUSP5,DUSP4,DUSP3,DUSP2,CSNK1D,CSNK1E,GSK3B,WHSC1L1,ARAF,LRP2,DUSP9,DUSP8,DUSP6,PRPF4B,IL18,IDE,HBS1L,CXCL12,IL10,TGFB1,FNTB,CSNK2A1,FNTA,ATG7,TDGF1,DNAJC7,FBXO22,SAMD4A,EBI3,DNAJC1,BCL10,IL29,MYO3A,PTPRN2,IL27,IL20,EP300,RNF139,TESK2,STMN1,FBXO11,PHKA2,CCL2,UBE2V1,ST8SIA3,UBE2V2,ST8SIA2,MAPKAPK2,RABGGTA,TTC1,FBXW7,PTK6,DNAJA1,FBXW2,DNAJA3,SDF2,EHMT1,MOBKL1A,ICMT,FURIN,ATG3,NMT2,ATF6,NMT1,IKBKE,DYRK1B,ST8SIA4,DYRK1A,DNAJB2,ABL1,ABL2,DNAJB6,HDAC6,PREX1,PINK1,CASP5,WARS,CASP6,PRMT1,CASP3,MAZ,CASP4,PRMT2,PRMT7,PKN3,PRMT8,PRMT5,CASP7,CASP8,MAN2B1,CASP1,NRG1,CASP2,ARL2,PPP2R1A,PKN2,TBCE,PKN1,NEK11,TBCA,TBCD,TBCC,DDB2,ERN1,GAA,ERN2,UBB,WASL,RAGE,MAPRE1,TM4SF4,TM4SF5,PPP2R2A,FKBP9,HS3ST5,FKBP6,FKBP5,FKBP4,BRSK2,BRSK1,STUB1,PAIP2B,PRSS2,PRSS3,DCLK1,OLR1,CEBPG,CBL,RAF1,XPNPEP1,NCSTN,ICK,GCK,MMP23B,CHIA,DZIP3,AURKC,AURKA,CCT3,PRKG2,SLC35A1,PRKG1,PRKX,PRKY,WWP2,EIF1AX,WWP1,WNK4,ERAP1,PSENEN,ANAPC2,GTPBP4,BCR,ANAPC5,CD3E,ANAPC4,WNK1,UBR3,WNK3,WNK2,PPARGC1A,GLCE,CD37,CAMK4,UBR5,CAMK1,FBXL4,AMFR,FBXL6,NEK4,EXT1,NEK6,FBXL2,TPST1,TPST2,KEL,FARS2,STK17B,MME,STK17A,EPHB2,ACE,VRK1,VRK2,STX12,FBXO6,FBXO3,FBXO7,PLAT,FBXO2,OXSR1,EPHA5,CCT7,CCT4,RPL18A,EPHA8,SUPT16H,GHSR,ALG12,PLAU,GRK1,COX11,ACVRL1,COX10,PTEN,ART1,SENP7,ART3,PDPK1,CHST12,CHST11,CHST14,CHST13,COX18,COX15,CTBP1,PRG3,UFD1L,APTX,SIGIRR,BLMH,SENP1,MAP3K10,FARSB,RPS4Y1,CTDP1,MAP3K13,MAP3K12,MAP3K11,SERP1,PREP,PPP6C,FUT9,FUT8,ATG12,FUT7,FUT6,FUT5,EDEM1,AZU1,STT3B,STT3A,FUT4,BCL3,PRKAA1,FUT1,PEX13,FUT2,PRKAA2,CD28,FYB,CSNK1A1,AGA,HCLS1,MSRB2,MSRB3,COG3,TP53RK,COG7,C7ORF16,CAPG,PTCH1,PPP2R4,APBB1,COG2,MYOD1,MMP9,MMP8,MMP7,EIF5A,SAE1,MMP3,TTN,MMP2,MMP1,AIP,PRKACB,MYST1,MYST4,MYST3,CSNK1G2,ERP29,PICK1,NAPSA,NAPSB,CLPX,DSP,CSNK1G3,CSTA,ERC1,PPP5C,SSH1,SSH2,KATNB1,NEDD8,ITGB2,LMAN1,KARS,EIF3C,IRAK3,EIF3D,UBE2D3,EIF3A,UBE2D2,EIF3B,EIF3G,EIF3H,EIF3E,EIF3F,LMTK2,EIF3I,EIF3J,UBE2D1,STK38L,GAL3ST1,PGGT1B,EEF1A1,P4HB,MRPS24,BMX,FOXP3,BRCA1,EIF4B,PPIH,ULK1,PPIA,EIF4H,GLMN,SPCS1,PHEX,UBE2E2,UBE2E1,IL22RA2,SEPX1,METAP1,METAP2,PRKAG1,DSTN,ANG,MKKS,TNIP1,CHUK,VCPIP1,IRAK2,UBE2A,PRKCI,PRKCH,CHST3,CHST4,PRKCG,UBE2I,MRPS7,CHST5,UBE2H,PRKCE,UBE2C,ALK,UBE2B,PRKCD,PRKD1,TYK2,UBE2N,EVPL,CD80,CHST7,UBE2K,CHST9,CD81,CHST8,GHRL,MDM2,DHPS,MDM4,PRKD3,MBL2,PRKCZ,FRK,PPP4R2,UBE3A,TNFRSF8,HAT1,PRKDC,UBE3C,TRIB2,TRIB1,ERCC8,MAP3K3,MAP3K2,TGM3,SCG5,CAMK2B,HS6ST1,TGM5,YES1,CAMK2A,SCO1,APC,UBE4A,MAP1D,UBE4B,SIRT4,SIRT5,SIRT6,PARK2,SIRT1,SIRT2,SIRT3,TMEM48,PRLR,MAPK8IP2,IRF4,BMPR1B,IGFBP3,POFUT1,BMPR1A,RPL18,RPL19,RPL14,RPL13,PGC,LTBP4,RP2,RPL15,RPL11,TLK1,TLK2,MAP2K6,PTPRJ,YARS,PTPRM,ROCK1,ROCK2,PTPRH,KIAA1804,PTPRR,EIF2S3,PTPRT,PTPRU,PTPRO,ST13,ADAMTS9,RPS19,RPS17,ST14,RPS12,UBL4A,RPS10,RPS11,SURF1,WFDC2,ADAMTS5,ADAMTS4,GGCX,ERBB3,ERBB2,PPT1,MTIF2,MTIF3,CDC42EP2,RPS27,TNKS,CDC42EP5,MGAT4B,MGAT4A,NPLOC4,TGFBR1,PHB,MGC42105,RPS9,PCNP,RPS5,UBA3,TNK1,PAPPA2,TNK2,SGSH,DPP3,LIMA1,SEPHS1,PDIA2,PDIA6,PDIA5,LATS1,LATS2,CFHR1,POMGNT1,MSRA,NOD1,NUBP1,MAPT,CETP,CLN3,SRPK2,ARHGEF2,PEPD,NDUFA13,SRPK1,NCK2,MAST1,CCND1,MAST2,CCND3,RPL41,CCND2,NCK1,NUP205,PFDN4,RPL3L,CAND1,RUVBL2,TMSB4Y,NSD1,CLN6,TUFM,NACA,RPL35,GPAA1,RPL37,RPL38,RPL39,PCSK2,PCSK1,RPL30,NAGPA,PTK2B,RPL31,RPL34,PPP2CA,PPP2CB,PITRM1,PCSK9,WIPF1,PCSK6,PCSK5,HGFAC,RASA1,RPL26,TNP1,RPL24,TMPRSS6,CAPN3,RPL28,SELS,RPL29,NAE1,CCL11,RPS6KA5,RPS6KA4,LARGE,RPL22,RPL21,HSPA4L,NLRP12,DPM1,DPM2,DPM3,STK38,ZAK,ATP6AP2,BTRC,STK36,EIF5,TNFSF15,RPS6KB2,TSPAN7,TSPAN8,MIPEP,APOA4,APOA2,APOA1,B3GALNT1,DDX25,ST3GAL6,RPN1,CPA2,CPA3,EIF1,RPN2,CPA1,INSR,MATK,EGFR,TWF1,RET,TAZ,HDAC10,HDAC11,SMARCE1,HSPB1,UBA52,STK16,PAM,ACHE,EID2,FGR,STK11,STK10,ANLN,TIMP1,ECE2,RPL7,RPL6,RPL9,RPL8,RPL3,HSPE1,RPL5,DYRK3,RPL7A,DYRK2,TRAF7,RPL4,ANGPTL3,STK19,TRAF6,LIPT1,B4GALT7,TEC,TAF1,AIPL1,SMG1,RPL23A,HSPBP1,GLYCTK,LCN1,PLK4,PLK3,TSC1,VCP,CDKN2AIP,MERTK,CPB2,NDST1,CORIN,ALG1,ALG2,UCHL1,PRDX4,PEX6,ALG5,DPH1,ALG6,DPH3,RPS2,ALG8,FES,RPS3,NDUFS7,NDUFS5,NDUFS4,ALAS2,CLCF1,RPS3A,NDUFS8,NPC1L1,LOXL2,LOXL1,SGK1,SGK3,MAN1A2,LIMK1,CDK9,MID1IP1,PADI4,HMGA1,PPM1G,ADRB2,PPM1D,ATG4D,CHRM3,ATG4C,ATG4B,ATG4A,CHRM1,LCK,CDK2AP1,PPM1M,CARM1,ACVR1,GALNT2,GALNT1,APH1A,GALNT7,GALNT6,ADAMTS13,APH1B,NFYC,PPM1B,NGLY1,IGF1R,A1CF,REN,TOR1A,A4GNT,RNF144B,PDF,NF2,VHL,ASMT,HCK,ANXA1,GYG2,MAN1C1,C9ORF3,TSSK1A,TSFM,JAK2,JAK3,MBTPS1,MRPL41,EIF2C1,B3GALT5,B3GALT4,PTPN22,RNF217,PTPN21,SHH,HTRA2,PLOD2,PLOD3,COL4A3BP,HRSP12,TRAK1,CFD,EIF2B2,EIF2B3,EIF2B4,EIF2B5,MRPL52,MRPL51,AARS,PIM1,PIM2,BOLL,UHRF2,HUWE1,RARS,TBRG1,SRP72,HS3ST3B1,GCNT4,GCNT3,IGF2BP2,PXK,PIN4,UHMK1,PXN,GYS2,MRPL55,ZMPSTE24,AGRN,GAD1,GCNT1,BMP4,LCMT1,BMP1,PTPN18,CREBBP,SMAD4,PTPN14,SMAD3,CDC23,PTPN13,CDC20,PTPN12,ABCG1,ADPRH,CBLC,AHSA1,ABCF1,GYPC,SPG7,COPS5,WASF3,KIAA0368,FASTK,WASF1,CCNT1,CAMKK2,BAG5,BAG4,ZFYVE9,BAG2,ADAM10,ASTL,PSEN1,PSEN2,SIAH1,SIAH2,PMPCA,USP7,SHFM1,NFS1,RPL27A,SUFU,MRPL10,SUMO1,LECT1,SET,SQSTM1,SEPSECS,CHM,PCMT1,QSOX1,PTPRZ1,RRBP1,MEX3B,STAT1,EIF2B1,MIS12,MRPL23,PSMD14,PYGM,MAPK12,MAPK15,RBM14,PYGB,LOR,TUSC3,TLR1,TLR3,TLR4,UBQLN3,TLR6,TLR7,TLR8,TLR9,IL31RA,DMPK,SEP15,LOX,SPN,DARS,FUT10,SOCS1,CDKL3,STK4,CDKL5,STK3,TRAT1,TPTE,MAP4K3,ADRM1,MAP4K4,MAP4K5,CDKL1,RIPK3,PGCP,RIPK4,KALRN,DERL2,FZR1,PPME1,DERL1,SYVN1,ITLN1,MAP4K2,MAP4K1,ANAPC10,ANAPC11,SRC,CHIT1,B3GNT8,B3GNT5,CTRC,PTPLA,SFTPD,RNF11,CLASP1,ERO1L,IVL,SRGN,RNF14,CTRL,PTPN7,PTPN6,PTPN9,PTPN3,PTPN2,UST,PTPN5,PTPN4,CD276,EVL,PSMC5,PSMC4,AKTIP,MYLK,D2HGDH,HPS4,TIMM50,AKT1,ACVR1B,PIGK,PAK2,PIGF,GSN,TPP1,HPSE,PIGG,POMT1,PIGH,TPP2,PIGB,PIGC,PAK1,CSK,LTB,AKT3,PIGA,AKT2,CTSZ,PIGZ,HSP90AA1,CCDC88A,PIGY,CCDC88C,PIGV,PIGU,MINK1,PIGT,PIGS,CTSS,INHA,DAPK2,DAPK3,PIGO,DAPK1,EIF4G2,EIF4G3,CTSK,MAGT1,SBF1,HIPK3,CTSO,TPPP,CTSB,CTSH,CTSG,CTSF,ING5,ING4,SCARF1,CPZ,GLRX2,SPRR2C,KRT7,KRT1,PTPRB,PTPRC,PTPRD,ERG,LTK,LIPA,PTPRE,B3GALT2,ISOC2,CENPJ,GSG2,GMFB,L2HGDH,SPRR1A,GMFG,SPRR1B,TSSK2,LIPC,TSSK4,TSSK3,TSSK6,LIPE,F2R +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html OSTF1,ACHE,CASR,ELF3,STATH,ZNF675,ATP6V1B1,GLI2,GLI1,AHSG,CALCA,DSPP,TPP1,RUNX2,SRGN,TWIST2,BMP4,COL13A1,KL,IL7,NF1,DMP1,MGP,CDK6,SPARC,ANKH,MC4R,CARTPT,ATP6V0A4,ACVR1 +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html LEP,PTPRC,TARBP2,KLK8,GHRL,CARTPT,CHRNA7,GHSR,FOXP3,SPINK5,TGFB2 +PWCOMMONS SPHINGOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_BIOSYNTHETIC_PROCESS.html ST6GALNAC6,SGMS2,LARGE,UGCG,ST8SIA5,LASS1,ST8SIA1,ST8SIA3,SGMS1,LASS5 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html RSF1,EZH2,NAP1L1,BNIP3,NAP1L3,NAP1L2,NAP1L4,PRMT7,PRMT8,SMARCD1,HIRIP3,TLK1,TLK2,MYST1,MYST4,MYST3,SATB1,RBBP4,MTA2,HDAC10,ARID1A,HDAC11,HMGA2,TAF6L,PPARGC1A,HMGA1,UBE2N,SYCP3,BPTF,SMARCE1,HUWE1,SMARCA5,CARM1,NSD1,MAP3K12,HMGB1,H1FNT,SET,SAFB,NPM2,PBRM1,ACTL6A,SUPT4H1,ASF1A,HELLS,EHMT1,NASP,PHB,CREBBP,SIRT4,SIRT5,TNP1,SIRT1,SIRT2,SUV39H2,RPS6KA5,HDAC5,HDAC4,HDAC3,HDAC2,HDAC1,SMARCC1,WHSC1L1,SMARCC2,SUPT16H,CHAF1A,RBM14,VCX,CHAF1B,HDAC8,TSSK6,HDAC6 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SNCA,CIAPIN1,SHH,FAS,DDAH2,TWIST2,OPA1,CRYAA,BRAF,CRYAB,PIM1,BCL2L10,THY1,NME5,NME2,KRT18,SERPINF1,CD40LG,TXNDC5,VEGFA,MAPK8,MYO18A,TNFRSF6B,IQCB1,BCL2L2,PPT1,BCL2L1,HSPA1B,CD74,AHSG,NPHP3,PEA15,IL17F,BMP4,BECN1,SPHK1,CIDEA,TNNI3,TAX1BP1,NOTCH2,BFAR,NOTCH1,RNF7,SFRP1,NUP62,NOTCH4,RTN4,HTATIP2,NUAK2,BNIP3,ZNF675,NFKB1,SPINK5,BAG4,GPX1,TRIAP1,BAG1,USH2A,DHCR24,CLN3,GPR98,AMIGO2,INHBA,SERPINB9,PROK2,PSEN1,EREG,BNIP1,BNIP2,TNFRSF10D,SERPINB2,NPPB,AVEN,SEMA4D,ALOX12,YWHAZ,PML,RTKN,ZBTB16,MIF,BCL2,BCL3,AATF,CD27,RASA1,CD28,IL4,IL3,IL6,TBX3,IL7,NPR1,BIRC6,BIRC5,SOD1,BIRC3,PLG,CDH13,YWHAH,STAB1,GSK3B,BNIP3L,IL2,BARD1,CBX4,FOXO1,FOXO4,TNFSF18,GDNF,CDKN2D,TDGF1,TPT1,API5,IL1A,BCL10,SOCS2,SOCS3,DFFA,RELA,BCL2A1,HRK,SOCS5,HBXIP,TNFAIP8,CARTPT,HSPB1,ERC1,HMGB1,GCLC,CCL2,MCL1,AKT1S1,ALB,NPM1,GLO1,SRGN,ARHGDIA,ANGPTL4,CFLAR,MAFB,HDAC5,HDAC4,HDAC3,HDAC1,HDAC9,IFI6,IER3,PRDX2,CASP3,CLCF1,PAX7,NOL3,LDB1,CDK6,INHA,PROC,HIPK3,CFL1,FAIM3,GHRL,NAIP,CNTN4,GSTP1,ACVR1,PRKCZ,TNF,ASNS,PF4,CALCA,IGF1R,ERCC5,SH3GLB1,TNFRSF18,DAD1,PIK3R2,SCG2,HSPA9,COL4A3,IL2RB,KLK8,COL4A2,DTX1,NF1,ANXA1,ANXA5,ANXA4,SIRT2,SON,HSP90B1,BAX,BRE,MPO,TIAF1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROCESS.html RPL17,AURKAIP1,PGF,BTC,XRCC6,RORB,MED21,SART1,SSR1,BTK,CITED2,CUL3,EPC1,CUL2,MAP3K5,CUL5,HTR1A,FOXF1,FOXF2,FAS,CUL1,CRTAM,PCBD2,PDPN,RXRA,MED12,MED14,MED13,MARK4,BCL2L11,THY1,MAPK1,NME2,SIRPG,SSTR3,NME3,RPS19,SERPINF1,HNF4A,NME1,IFNB1,MED17,MST1R,MCTS1,UNC13B,ORAI1,CRTC1,ERBB2,ARF6,PPT1,FOXH1,IFNA2,ADRB3,CDC42EP2,CDC42EP1,RAC1,CDC123,ZAP70,DIABLO,TCF4,CDC42EP4,TCF3,ARHGEF10L,CDC42EP5,UTF1,TAOK2,TGFBR1,MAP2K3,TAOK3,TGFBR2,SPHK1,ESRRG,MSTN,APOL3,EI24,TNK2,ELF1,HNF1B,FGF7,HNF1A,HTATIP2,SLC20A1,ELF4,NAP1L1,SPI1,TP63,BNIP3,DAXX,NOD2,NOD1,MAPT,TICAM1,TICAM2,TMEM101,MYC,SERTAD1,FGF4,ATF7IP,CDC7,AIFM3,AIFM2,LYN,AIFM1,TP53,NDUFA13,FLNA,JMY,ARHGEF11,GTF2H1,CIAO1,INHBB,NCK2,INHBA,CCND1,CARD14,BNIP1,CCND3,EREG,CCND2,NCK1,RIPK1,IL12A,IL12B,EEF1D,NSD1,CLOCK,ALOX12,CLN6,CSF3,TBC1D8,CSF1,PML,NUFIP1,TRIM13,SORBS3,PTK2B,PPP2CA,PLEKHG5,PCSK9,DAZL,SUPT4H1,FOXD3,IL4,IL3,IL6,DAZ1,IL5,IL7,TRIM28,IL9,IGF1,CLEC11A,PLG,TP73,CAPN1,CDH13,MNAT1,CCL14,EPGN,GSK3B,BNC1,BNIP3L,NLRP12,FOXE1,AMOT,PHF5A,HTR2B,LRP5,IL2,BARD1,MMS19,NCBP2,NCBP1,SLC44A2,ZAK,GRIK2,IL18,TSPAN6,TNFSF14,TNFSF13,IL15,TNFSF12,CRADD,TGFB1,IL11,TGFB2,CXCL10,NLRC4,APOA2,CDKN2A,CDKN2B,MIER1,CDKN2C,MDFIC,SMARCD3,ADIG,ATG7,TIA1,TDGF1,SMARCD1,ZNF443,DAP,GPR89A,EBI3,SAMD4A,MATK,EGFR,BCL10,NUDT2,IL29,BST2,ACTN4,GOLT1B,IL27,RELA,STIM1,FADD,ARID1A,IL21,IL20,HIF1A,MIB2,TFAP2B,SMARCA1,LITAF,ADAMTSL4,UBE2V1,CXXC5,CX3CL1,ABCA1,TIMP1,IL12RB2,PRUNE2,MIA3,IL12RB1,ADRA2A,TRAF7,DYRK2,TRAF6,EGF,ANGPTL3,TRAF5,TRAF3,DNAJA2,ZNF423,EPAS1,TAF8,TRADD,ATF6,TRAF3IP2,CDKN1C,IKBKE,ATF4,TNFSF10,CDKN1A,CDKN1B,PLK2,TSC1,DYRK1B,SMARCC1,CDKN2AIP,SMARCC2,IKBKG,HIVEP3,ABL1,TRIP6,ADRA1D,RSF1,DEDD,CTCF,CASP6,CDC42,CASP3,NDUFS4,CASP4,CLCF1,RPS3A,HMOX1,PAX8,CASP8,RHOA,RHOC,CASP1,NDUFS3,FOSL1,RHOG,PPP2R1A,NUSAP1,CDK6,CDK7,IFI16,CDK4,CDK5,HMGA1,CDK2,PRPF6,HOXC10,ADRB2,TNFSF13B,CHRM1,NCOA6,LCK,ERN1,ERN2,UBB,TSHR,ACVR1,DCC,DPF2,VIP,BCLAF1,CTF1,PPM1A,CDH1,ASNS,TRAIP,STUB1,DPF1,IGF1R,TMED4,RGMB,REL,SLC35B2,TSPAN31,PRSS2,CD2,NFATC2,FIGF,TCIRG1,COL4A4,COL4A3,SECTM1,TNFSF4,FLT1,PDF,NF2,FLT3,FLT4,CEBPG,NF1,CBL,CREB5,CDC25B,TNFSF8,CUL4A,GCK,BAX,FAF1,VAPA,CADM1,EDN1,ADORA1,CD47,BAK1,MYD88,DDX11,APOE,ABRA,CHRNA7,SUPT5H,EIF2B5,CAPNS1,CD3E,TBRG4,CD40,PPARGC1A,PPARGC1B,BOLL,VEGFB,CD38,ATP2C1,ALOX15B,VEGFA,NPTN,LAMC1,NEK6,LALBA,SIVA1,CDK5R1,STK17B,CD70,AFAP1L2,CHEK2,STK17A,AHSG,PLAGL1,LIF,AGGF1,MAML3,LAMB1,C16ORF5,BMP4,TP53BP2,LGALS1,MAML1,CREBBP,MAML2,NDFIP1,CIDEB,SMAD3,CIDEA,NDFIP2,TPD52L1,SMAD2,ECM1,SLAMF1,LGALS9,CIDEC,NOTCH2,LAMA1,RNF7,NUP62,ETS1,NOTCH4,BMP7,BMP6,PPARA,NRP1,ACVRL1,FASTK,BCAR1,PPARG,GJA1,GLI2,PTEN,ZBTB38,GLI1,CAMKK2,CANT1,FLT3LG,TNFRSF11A,SAA1,TGFA,TOP2A,DEDD2,SPACA3,LTBR,PRG3,CCKBR,CCNH,LGALS12,NFAM1,LDLRAP1,SLIT2,RAD51,SCAP,AMIGO1,MED6,GRM4,ZDHHC17,TNFRSF10B,ZDHHC13,MAP3K10,MED1,BID,CXCL5,PRTN3,TFG,EHF,FKBP1A,SFN,HPRT1,AZU1,MRPL12,SQSTM1,BCL3,VWC2,BCL6,CC2D1A,CD24,CD27,CD28,TBX3,TBX2,TBX5,HCLS1,ILF3,BIRC5,BIRC2,GAPDHS,YWHAH,ILF2,YAF2,EEF1E1,BIK,PPP2R4,RBM14,FGF18,PDGFA,TBK1,TLR1,ARNT2,TLR2,EIF5A,TTK,TLR3,FOXO1,FGF10,TLR4,PMAIP1,FOXO3,VIPR1,TLR6,TLR7,TLR8,SMNDC1,IL31RA,TLR9,GATA2,TMEM9B,CASP8AP2,ROBO1,GATA4,ROBO2,ACIN1,GLP2R,MX1,MYST1,SPN,MYST4,MYST3,MYO6,HRK,SOCS5,ARNTL,ELL3,STK4,TRERF1,STK3,TRAT1,PTHLH,TRIM38,TIAL1,FGFR1OP,RIPK3,CARTPT,RIPK2,PPP5C,DERL2,ITLN1,KATNB1,TIPIN,ELK1,RRAGA,REG1A,NPM2,MTCH1,SFTPD,RUNX1,UBE2D1,RUNX3,CFLAR,CARD9,HTT,CD276,MALT1,FOXP3,BRCA1,AKTIP,BBC3,GLMN,PDCD5,SST,PDCD6,PDCD7,DAP3,HSP90AB1,BMI1,FASLG,ACVR1B,BOK,TPP1,ANG,PCBP4,MKL2,LTB,BOC,LTA,PRKCA,EGR1,HSP90AA1,EGR4,NOL8,PRKCG,INHA,UBE2C,PRKCE,DAPK2,ECT2,DAPK3,NCR1,NRIP1,DAPK1,UBE2N,SPDYA,ACVR2A,TNFRSF9,ACVR2B,CD86,BPTF,CD80,BTG1,ZMIZ2,GHRH,TPPP,CD81,SCIN,HIPK2,GHRL,DHPS,ICOSLG,GLIS3,TNFRSF25,GLIS2,GLIS1,HCFC1,TNFRSF8,CALCA,TNFRSF1A,UTP11L,NPAS2,ERCC6,MAP3K3,RASGRP4,PTH,TGM2,PYCARD,PTN,POU3F2,ERCC3,ERCC2,SCG2,STAMBP,PTPRC,DEFB103A,EDA2R,SAP30BP,CASP10,SP1,THRAP3,PPP1R13B,IRF4,BMPR1B,IGFBP3,F2R +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html NBN,MLH1,GLI2,PMS2L1,CDT1,GLI1,PRIM1,MUTYH,ORC4L,PRIM2,PMS2,POLG2,PMS1,CDC6,GTPBP4,CCDC88A,POLB,RAD9A,PRKCG,MCM3,CDK2,ORC1L,PURA,RAD51,RFC3,RFC4,RPAIN,RFC1,EREG,CDK2AP1,ORC5L,RAD17,REV3L,ENPP7,HMGB2,WRNIP1,POLA1,TIPIN,RPA4,RPA1,TFAM,RPA2,ORC2L,TSPYL2,EXO1,MSH6,NF2,MSH3,MSH2,MSH5,GMNN,S100A11,ATR,TP73,ABL1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNK17,KCNH1,KCNC1,KCNJ15,ATP6V0E1,KCNC4,KCNAB3,KCNC3,KCNAB1,ATP6AP1,KCNJ10,KCNIP2,HVCN1,KCNJ12,KCNJ11,KCNQ4,KCNQ3,KCNK7,KCNK6,KCNK5,SCN7A,KCNQ2,KCNQ1,SCN10A,KCNG2,KCND3,SGK1,SCN2B,SCN2A,SLC34A3,ATP6V1F,KCNA10,ATP6V1C1,NNT,SCN11A,KCNH2,KCNH3,KCNH4,KCNMB3,KCNMB4,SCN1B,KCNA2,KCNA1,KCNA4,KCNA3,KCNA6,KCNA5,KCNJ2,KCNJ3,KCNMB1,ATP6V0B,KCNMB2,KCNJ1,ATP6V0C,KCNS3,KCNS1,SCN9A,KCNE1,KCNE2,C16ORF7,SCNN1G,CHP,SCN5A,SCNN1A,SCNN1D,TCIRG1,SLC8A1,KCNB2,NOX1,ATP1A4,UCP1,KCNK1,KCNK3,KCNV1,KCNK4,KCNJ5,KCNN4,KCNJ4,ABCC9,SLC4A11,KCNJ6,KCNN1,SLC17A3,UCP3,SLC17A4,UCP2,KCNN3,ATP6V1E1,SLC17A2,SCN4B,KCNF1,ABCC8,SCN4A +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED24,HOXD13,MED23,MED21,ZNF254,MED20,CITED1,CITED2,EPC1,TAF5L,MED26,MED27,IKBKAP,RREB1,RXRA,MECP2,MED12,MED14,HNF4G,MED13,HNF4A,ZNF238,MED16,MED17,SMARCAL1,SHOX,TGIF1,CRTC1,ZNF76,MYEF2,VPS72,FOXH1,HEXIM2,HEXIM1,PIR,VEZF1,UTF1,TCF7,KLF12,KLF13,KLF10,KLF11,TFCP2,USF1,TRPS1,PARP1,HLF,TAF1C,ELF1,TAF1A,ELF2,HTATIP2,ELF3,ELF4,ELF5,SPI1,ZNF345,YBX1,YBX2,ZNF148,HSF2,CREG1,BRD7,SPIB,MYC,BRD8,TAF1L,ZNF281,BATF3,ATF7IP,GMEB2,GTF2H4,TP53,FOSB,ZNF143,JMY,MYCN,MXD4,GTF2H1,CIAO1,INHBA,ZNF136,C19ORF2,RUVBL1,NSD1,CLOCK,ZMYND11,NUFIP1,ZNF367,ZNF177,ZNF174,SUPT4H1,TRIP11,FOXD3,TRIP13,MYF6,IL4,TRIM29,MYF5,TRIM28,TRIM27,TRIM24,ZNF157,MNAT1,PPBPL2,TCEB2,TCEB3,TCEB1,NR5A2,FOXE3,NR5A1,LMO4,TBP,NR2E3,TCEAL1,CBFB,GTF2E1,GTF2E2,SMARCD2,SMARCD3,SMARCD1,POU2AF1,ZNF593,CSDA,JUNB,DDIT3,HIF1A,TCFL5,SMARCE1,TFAP2B,SMARCA5,MNX1,TFAP2A,NFE2L1,NFE2L2,TFAP2C,NFE2L3,SMARCA2,EID1,HMGB1,HMGB2,CCRN4L,LITAF,ABCA2,TCERG1,MEIS2,SMARCB1,TEAD4,JUND,SNF8,TAF9,TFDP1,TAF2,TRIP4,EPAS1,TAF5,NEUROG1,BRIP1,ATF6,ATF5,NRF1,ATF4,SMARCC1,GTF2F1,GTF2F2,PRKAR1A,SMARCC2,ABL1,HDAC8,E2F1,E2F2,E2F3,FOSL2,ARID4A,E2F6,PAX5,DEK,ZNF202,CTCF,PAWR,PAX3,PAX2,PAX1,FEV,TMF1,MAX,MAZ,LRRFIP1,NFIL3,FOSL1,NFX1,SLA2,CDK9,RB1,CDK7,PRPF6,TARBP1,TARBP2,NCOA6,ZFPM2,NFYC,NR3C1,NFYA,TSC22D1,ORC2L,ECD,CEBPZ,CHD2,CHD1,NFATC4,NFATC3,CHD4,CHD3,NFATC1,MAF,CEBPA,CEBPB,CEBPD,VHL,CEBPG,NFRKB,CREB5,MED30,DBP,ID4,CDX2,FST,HIRA,PTTG1,TRAK1,SUPT5H,TWIST1,YY1,NKX2-8,TAF6L,PPARGC1A,PPARGC1B,UHRF1,PRDM4,MTF1,ABT1,MNT,TGFB1I1,PRDM1,DEAF1,ELL,PLAGL1,DRAP1,HTATSF1,DUX1,MAML3,TCF25,NKX2-5,KLF5,MDFI,KLF7,IKZF3,MLL,KLF9,SUB1,MAML1,MAML2,RYBP,SMAD3,SMAD2,PMF1,UBP1,RNF4,TCEB3B,SUPT16H,JAZF1,TCF19,NCOR1,ZFHX3,TCF12,TCF15,BMP6,CCNT2,ZBTB32,COPS2,PPARA,PPARD,COPS5,PPARG,CCNT1,NFKB1,ZEB1,HSBP1,GLI2,KCNIP3,ZBTB38,GLI1,BLZF1,GFI1B,ASH2L,NR2F2,SNAPC5,CCNK,SNAPC2,ZNF354A,TBX10,CCNH,SNAPC4,SNAPC3,GTF2B,MBD1,RBBP8,MED6,MED7,MED4,GTF2I,ASH1L,SRCAP,TBX19,MED1,POLR2G,POLR2F,ETV7,POLR2E,NMI,POLR2L,POLR2K,POLR2J,POLR2I,POLR2D,POLR2C,POLR2B,SQSTM1,MLLT1,ETV1,HSF2BP,BCL6,TBX3,AFF4,STAT1,SNAI2,STAT3,STAT2,SOD2,NEUROD2,PHF21A,PBX1,PBX3,RBM14,PBX4,MYOD1,THRA,FOXO1,FOXO3,FOXO4,GATA1,HOXC6,GATA2,ATOH1,TARDBP,GATA3,HOXC5,GABPB2,MYO6,FOXN1,ZNF189,ARNTL,NR0B2,ELL3,AHR,ELL2,ADRM1,TIAL1,TFAP4,SOX5,ELK1,NKX3-2,BTF3,SKIL,RUNX1,RNF14,RUNX3,SREBF1,MAFF,NFE2,SAP18,SNW1,GSC2,BRCA1,SREBF2,PSMC5,DNMT1,SOX21,POU6F2,FOXK2,NR6A1,BUD31,MEN1,FUBP1,FOS,POU4F2,SOX18,POU4F1,MKL2,ALX1,ELP4,ELP3,ELP2,SOX12,MSC,UBN1,NRIP1,BPTF,NRL,ZMIZ2,MDM2,MDM4,CUX1,ZFP161,GLIS3,SUPT3H,GLIS1,HCFC1,NFIX,HCFC2,POU1F1,TCF7L2,TNFRSF1A,NPAS2,HAND1,HAND2,POU2F3,POU2F2,NFAT5,GFI1,ERCC3,APEX1,ERCC2,ENO1,ERF,DTX1,SOX30,IRF9,SP1,SP2,DR1,IRF7,THRAP3,IRF8,SP4,IRF1,IRF2,IRF3,NFIC,CRK +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html FMOD,EID2,ACVRL1,SNX6,LTBP2,GDF5,BMPR2,STUB1,TGFB1,CITED2,FOXH1,MAP3K7,ACVR1B,PEG10,RGMB,FNTA,CDKN2B,ZFYVE9,IL17F,LEFTY2,VWC2,GDF9,SMAD7,TGFBR1,KLF10,SMAD5,SMAD4,SMAD3,CIDEA,SMAD2,SMAD1,LEFTY1,CDKN1C,ACVR2A,INHBA,ACVR2B,SOST,HIPK2,TGFBR3,GDF10,TGFBRAP1,SMURF1,GDF15,HPGD,ENG,BMPR1A,ACVR1 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html PSMB10,MBL2,CCL2,LY86,PAX5,PDCD1,CFHR1,BCL2,POU2F2,KRT1,LTF,MS4A2,C2,EBI3,BLNK,CD28,ST6GAL1,POU2AF1,IL6,BST2,IL7,BST1,DEFB103A,YTHDF2,CD83,GPI,CCR6,MNX1,TREM1,TREM2,DMBT1 +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html PRKACG,NCOA4,LHCGR,MEA1,CSDE1,DMRT1,DMRT2,SOX15,SRD5A2,ANKRD7,LHB,NR5A1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html NBN,MYO6,TP53,PML,IFI16,BRCA1,TRIAP1,PCBP4,EEF1E1,BCL3,DYRK2,C16ORF5,GML +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html ME1,FHIT,ADSS,ADCY7,CTPS,FIGNL1,ADORA2A,PGD,DCK,ABCA1,HPRT1,PPAT,TYMS,TYMP,NT5M,OXER1,PTH,REXO2,CDA,C16ORF7,ENTPD4,NDUFS1,NT5C,DCTD,NUDT4,NUDT5,OLA1,AK5,ACLY,AMPD3,PTHLH,PNKP,PGLS,UMPS,UCN2,ADM,GRM8,ADK,CTNS,PDZD3,GUK1 +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html ALDOA,GNPDA1,PFKL,GUSB,PFKFB1,PGD,ALDOB,HK1,TKTL1,PFKM,HYAL4,CHIT1,GNS,GBA3,GAPDHS,GBA2,PGLS,MGAM,ECD,MIOX,GAA,TREH,PYGB +PWCOMMONS G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ADORA3,ADCY7,GPR123,EDN2,LHCGR,AGTR1,HTR1B,HTR1A,MC1R,LTB4R,HOMER3,APOE,CCR10,GIT2,RAPGEF4,GNG4,HTR1D,QRFP,HTR1F,GNG7,HTR1E,PIK3CG,C5AR1,CD3E,GPER,PIK3CB,HTR4,RIC8B,OR1D2,OR1D5,OR1D4,SSTR4,CCR9,CRHR1,CRHR2,CCR8,SSTR5,SSTR2,SSTR3,CCR5,SSTR1,CCR3,HTR7,MC2R,CX3CR1,CCR2,HTR6,ACR,CDK5R1,PRLHR,GNAI3,CALY,GNAI2,ENPP2,PPYR1,TRHR,AKAP12,BDKRB2,ADCYAP1,HCRTR2,HCRTR1,ADRB3,AGRN,AGRP,GIT1,MLN,SPHK1,HOMER1,HOMER2,NPY5R,RGS1,NPY,RGS2,RGS3,RGS4,RGS5,AVPR1B,AVPR1A,GRK6,GRK4,GRK5,PYY,RGS9,GHSR,GRK1,GNAZ,OPRM1,TAS2R1,MCHR1,CCKAR,GLRA1,BCAR1,GLRA2,WASF2,EDNRA,EDNRB,NMUR1,NMUR2,MC5R,CAP1,XCR1,HTR5A,GPR176,CCKBR,RXFP3,NPBWR1,NPBWR2,GRM1,ARHGEF11,GRM5,GRM4,GRM3,GRM2,GNAQ,GNB2,GRM8,GNB1,XPR1,GRM7,GIPR,GRM6,GNAS,GNB3,RASD1,RAPGEFL1,CXCL1,AVPR2,PARD3,ECEL1,FFAR3,C3,OPRK1,CCR1,FFAR2,NPY2R,C5,FFAR1,LANCL1,GPR65,FPR1,CXCL9,GPR68,GCGR,AZU1,CCL25,CCL23,MAS1,NPFFR2,CCBP2,MC3R,CAP2,IL8,OPRL1,GPR75,OPN1MW,NPY1R,PTGFR,CCL17,P2RY11,MC4R,CALM3,HTR2B,NMBR,OPN3,HTR2A,F2RL3,GNA15,CASR,GABRB2,F2RL1,GNA12,VIPR1,CXCL12,GHRHR,SCTR,PTGIR,APOA1,GALR1,GPR45,GPR44,GALR3,GALR2,GPR42,MS4A2,PRKACB,GLP2R,FRS2,RGR,EGFR,PICK1,NTSR1,PTHLH,PLCE1,GABRR1,GPR55,GPR50,GPR52,GLP1R,C3AR1,DRD1,CCL3,CCL2,ADORA2B,DRD3,DRD2,DRD5,DRD4,ABCA1,GPR22,P2RY6,GPR21,P2RY4,CNR1,P2RY2,APOC3,CNR2,P2RY1,GPR25,ADRA2A,GRPR,ADRA2C,ADRA2B,GPR20,DEFB1,PTPN6,GABRE,GABRA2,UCN,TBL3,GABRA1,GABRA4,GABRA3,GPR32,GPR35,GPR34,GPR37,GPR39,LTB4R2,TBXA2R,ADRA1B,MTNR1B,ADRA1A,CORT,SST,GPR31,ADRA1D,RHO,MTNR1A,TACR3,TACR2,TACR1,GPR109B,RRH,GABBR1,GNRHR,GABBR2,LGR5,TAAR8,AKT1,CCRL2,TAAR9,TAAR6,CXCR5,ANG,CXCR4,CXCR6,TAAR1,CALCRL,RAMP1,PLCB2,NPFF,CCRL1,GABRG2,PTGER1,PTGER2,PTGER3,PTGER4,GPR19,OXGR1,FSHR,OR10J1,GRP,ADRB2,CHRM5,CHRM4,ADRB1,CHRM3,GHRH,CHRM2,CHRM1,GPR15,GHRL,GPR17,TSHR,GAP43,GPR12,PRKD3,PTAFR,VIP,CALCR,GPRC5C,GPR6,TSHB,GPR1,GPR4,GPR3,TAC3,CALCA,HRH1,RGS11,RGS12,HRH3,HRH2,PTH,GPSM2,PPAP2A,GLRB,NF1,RGS19,RGS16,RGS14,GCG,RGS20,MLNR,PDC,OPRD1 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC38A3,SLC44A1,SLC44A2,AQP9,SLC16A10,SLC6A2,SLC6A3,SLC6A4,SLC7A8,SLC7A9,GDNF,SLC7A5,SLC1A4,SLC1A5,SLC1A2,SLC1A3,SERINC1,SLC1A6,SLC25A22,SLC22A3,ARL6IP5,SLC1A1,SLC43A1,CLN3,PRAF2,PDPN,PICK1,SLC3A2,SLC7A10,SLC3A1,SLC25A12,SLC25A13,SLC6A7,SLC18A2,SLC18A3,SLC18A1,CTNS,SLC25A15 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html E2F1,DBF4,FOXO4,LATS1,LATS2,CUL3,ACVR1B,CUL2,CUL5,GFI1B,CDKN2A,DDX11,CDKN2B,CDKN2C,CDKN2D,CDK10,CDCA5,CUL1,CDC7,KHDRBS1,CDC6,ANAPC5,ANAPC4,POLE,SKP2,TBRG4,CDK6,CDK4,CDK2,FOXN3,SPDYA,INHBA,CHMP1A,CDK2AP1,USH1C,KPNA2,MAP3K11,ACVR1,BCAT1,PPP6C,POLA1,ANAPC10,RCC1,KATNA1,GFI1,TAF1,CDC23,CENPF,BIRC5,TPD52L1,CDKN3,CDC25C,CDKN1C,CDKN1A,CDKN1B,CUL4A,GSPT1,POLD1,MYO16,ABL1,APBB2,APBB1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html RAB3GAP2,TSPO,XPO6,LTBP2,AP1G1,LMAN2L,EIF5A,TNFSF14,MIPEP,MXI1,AGXT,TGFB1,KLHL2,SSR1,AIP,HOMER3,TRAK1,CEP290,RPL11,TLK1,KIF13B,MCM3AP,MYO6,CD3G,STAP1,VPS45,LRP1B,ERP29,OPTN,MYH9,NUPL2,RPAIN,PEX26,F2,RTP3,DERL2,DERL1,RTP4,NFKBIE,PPT1,CTSA,CALR,UHMK1,CD74,CDC37,NPM1,DUSP16,ANGPTL3,TRAM1,SEC23IP,MDFI,SMAD3,SNAPIN,ICMT,ARFIP1,ABCG1,NFKBIL1,TRNT1,NFKBIL2,CBLB,PPIH,VCP,TRPS1,PTTG1IP,LGTN,XPO7,TRIP6,RERE,PDIA3,TIMM17A,HPS4,TIMM17B,AP3S2,PEX6,PEX3,GLI3,PEX7,AKT1,PEX1,ZFYVE9,ZFYVE16,NCKIPSD,RANBP2,TPR,KPNB1,KDELR1,TOMM34,AP3B1,KDELR2,RPGR,NLRP3,TIMM23,TIMM44,FLNA,MFN2,ZDHHC17,ATG4D,ATG4C,ATG4B,NUP205,ATG4A,ARCN1,C3ORF31,TOMM20,KPNA6,KPNA5,TOMM22,KPNA4,KPNA3,KPNA2,KPNA1,AP1M2,TNF,CDH1,SEC63,NUP214,NAGPA,PEX19,CEP57,AP3M1,TAP2,PEX16,BCL3,PEX14,AP3D1,SCG5,PEX13,BCL6,PEX12,CD24,APPBP2,TNPO1,PEX10,APBA1,FYB,NF1,NLGN1,PPP1R10,SELS,GABARAP,YWHAH,COG7,GSK3B,NLRP12,TRPC4AP,FAF1,GGA1,SSR2,F2R,BARD1,COG2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL18,EIF2C1,MRPL41,RPL19,RPL14,RPL13,RPL15,TLR1,EIF5,HBS1L,RPS6KB2,TLR3,EIF5A,TLR4,TLR6,TLR7,IL10,TLR8,TLR9,APOA2,EIF1AX,DDX25,HRSP12,EIF1,RPL11,EIF2B2,EIF2B3,EBI3,SPN,EIF2B4,SAMD4A,EIF2B5,MRPL52,BCL10,YARS,MRPL51,IL29,DARS,IL27,AARS,EIF2S3,BOLL,SARS2,RPS19,EIF2AK1,RPS17,RARS,BACE2,RPS12,HSPB1,RPS10,RPS11,EIF2AK3,EIF2AK4,FARS2,PABPC4,IGF2BP2,MTIF2,MTIF3,KARS,EIF3C,EIF3D,EIF3A,RPS27,EIF3B,RPL7,EIF3G,RPL6,EIF3H,RPL9,EIF3E,EIF3F,RPL8,IL17F,SFTPD,RPL3,MRPL55,EIF3I,RPL5,RPL4,RPL7A,EIF3J,EEF1A1,PAIP2,PAIP1,MRPS24,CD276,RPS9,RPL23A,FOXP3,FURIN,RPS5,EIF4B,TSC1,RPL18A,EIF4H,GLMN,GHSR,ABCF1,METAP1,COPS5,DPH1,EIF2A,RPS2,RPS3,YBX2,WARS,RPS3A,EEF2K,TNIP1,LTB,MRPL3,PRG3,NDUFA13,EIF1B,INHA,MRPS7,SIGIRR,INHBB,INHBA,EIF4G2,EIF4A3,EIF4G3,MAST2,RPL41,EREG,EIF4A2,MTRF1,FARSB,RPL3L,RPS4Y1,GHRL,DHPS,IL12B,TUFM,NACA,RPL27A,RPL35,TNFRSF8,RPL37,RPL38,RPL39,NECAB3,PAIP2B,AZU1,PET112L,MRPL10,RPL30,RPL31,RPL34,KRT7,SEPSECS,BCL3,MARS2,DAZL,CD28,IL4,IL6,DAZ1,UPF1,RRBP1,CEBPG,ASMT,IL9,RPL26,RPL24,ETF1,EIF2B1,RPL28,RPL29,MRPL23,RPL22,RPL21,TSFM,NLRP12,IRF4,APBB1 +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html ADRB3,GRM4,ADRB2,CARD9,TAOK2,HIPK2,TAOK3,EDA2R,TPD52L1,TRAF7,CD27 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html MYL6,KIF4A,MYO9B,MYL6B,NEFL,APBA1,KIF13B,DYNC1I1,KIF3B,OPA1,MYO6,KIF5B,KIF5A,MYO1E,MYH7,MYH6,MYH9,TNNT2,UXT,KIF1A,KIF1B,MAP1S,RHOT1,RHOT2,LRPPRC,MYH10 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html TNF,UBE2V1,PRDX3,NOD2,NLRC3,NPM1,PYCARD,ABRA,CAMK2A,BCL10,CEBPG,RELA,EDA2R,NFAM1,JMY,UBE2N,PRKCQ,CARD11,EP300,NME1,EDF1,ERC1,IKBKB,EDA,TSSK4,MAP3K13 +PWCOMMONS PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHORYLATION.html AURKC,AURKA,PRKG2,PRKG1,PRKX,BTK,PRKY,MAP3K6,MAP3K9,COL4A3BP,WNK4,MAP3K8,ILK,TLK1,TLK2,MAP2K6,IKBKAP,BCR,ROCK1,BRAF,ROCK2,KIAA1804,WNK1,PIM1,WNK3,PIM2,WNK2,MARK4,MARK1,MARK2,PNKP,EIF2AK1,MAPK6,CAMK4,MAPK4,MAPK3,F2,CAMK1,MAPK8,SRP72,NEK4,EIF2AK3,EIF2AK4,NEK6,ERBB3,ERBB2,STK17B,PXK,STK17A,UHMK1,EPHB2,VRK1,VRK2,TNKS,C16ORF7,BMP4,TGFBR1,TAOK3,MGC42105,OXSR1,EPHA5,CBLC,CDC42BPG,EPHA8,CDC42BPA,TNK1,TNK2,GRK1,CDC42BPB,BCKDK,ACVRL1,NUAK2,TOLLIP,FASTK,CCNT1,PMVK,LATS1,LATS2,CAMKK2,PDPK1,SRPK2,CTBP1,ADAM10,LYN,SRPK1,INHBA,CCND1,MAST1,CARD14,MAST2,PSEN1,CCND3,EREG,CCND2,IL12A,MAP3K10,TXK,MAP3K13,MAP3K12,MAP3K11,ABI3,MKNK2,ABI2,MKNK1,ABI1,SNRK,PTK2B,PRKAA1,PRKAA2,CD24,FYB,CSNK1A1,IL4,IL3,IL5,MEX3B,HCLS1,STAT1,CCL11,RPS6KA5,TP53RK,RPS6KA4,MAPK12,CSNK1D,CSNK1E,GSK3B,C7ORF16,MAPK15,NLRP12,PGK1,BARD1,PGK2,MYOD1,PRPF4B,ZAK,STK38,STK36,TTN,TGFB1,DMPK,IL31RA,CDKN2A,CSNK2A1,CDKN2B,CDKN2C,CDKN2D,TDGF1,PRKACB,INSR,MATK,EGFR,BCL10,RET,TWF1,MYO3A,IL29,CSNK1G2,SOCS1,PICK1,STK4,CDKL5,STK3,IL20,MAP4K3,MAP4K4,MAP4K5,CDKL1,TESK2,RIPK4,ERC1,RAD17,KALRN,STK16,CCL2,FGR,STK11,STK10,ITLN1,MAP4K2,MAP4K1,ITGB2,MAPKAPK2,IRAK3,PTK6,LMTK2,DYRK3,DYRK2,STK19,EGF,STK38L,TEC,TAF1,BMX,MOBKL1A,SMG1,GLYCTK,IKBKE,CDKN1A,PLK4,PLK3,CDKN1B,AKTIP,ULK1,DYRK1B,DYRK1A,GLMN,ABL1,MERTK,ABL2,MYLK,IL22RA2,UQCRC2,UQCRC1,PRKAG1,PRDX4,PINK1,FES,AKT1,ACVR1B,MCM7,NDUFS4,PAK2,PKN3,CLCF1,ANG,PAK1,CSK,AKT3,CHUK,IRAK2,SGK1,CCDC88A,SGK3,CCDC88C,LIMK1,PKN2,PRKCI,PKN1,CDK9,PRKCH,MINK1,PRKCG,INHA,DAPK2,PRKCE,PRKCD,DAPK3,NEK11,DAPK1,PRKD1,TYK2,CD80,UQCRH,HIPK3,LCK,CD81,CDK2AP1,ERN1,ERN2,RAGE,PRKD3,UQCRB,ACVR1,PRKCZ,FRK,BRSK2,BRSK1,TRIB2,TRIB1,IGF1R,MAP3K3,MAP3K2,CAMK2B,CAMK2A,PIK3R1,DCLK1,ERG,LTK,NF2,HCK,RAF1,GSG2,GMFB,ICK,TSSK1A,GMFG,TSSK2,JAK2,JAK3,BMPR1B,IPPK,TSSK4,TSSK3,IGFBP3,LIPE,TSSK6,F2R,BMPR1A +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PGD,USE1,RNF217,RNASEH1,ISG20,FAH,GLDC,GOT2,GOT1,DDAH2,DDAH1,ANAPC2,ANAPC5,ANAPC4,OLA1,UBR3,PGLS,UHRF2,NNT,COLQ,UBR5,MGAM,FBXL4,AMFR,MPST,HSD17B11,ALDOA,HACL1,HSD17B14,PFKFB1,ALDOB,PABPC4,PPT1,HSPA1B,ASL,HADHB,ARIH1,ARG1,GAD2,INS,ALDH4A1,CDA,GCSH,GAD1,NTHL1,FBXO7,NPLOC4,CYP46A1,GUSB,HGD,CIDEA,CDC23,CDC20,TPD52L1,PCNP,UBE2L3,CEL,POP1,HGS,SMURF2,SMURF1,PLA2G4C,PLA2G4B,PPARA,PPARD,BCKDK,KIAA0368,TSG101,UBE2G1,UBE2G2,BNIP3,AUH,MCCC2,NT5M,GPX3,GSTZ1,NT5C,ZFP36,ABCE1,SPACA3,STS,ACO2,UFD1L,AIFM1,HYAL4,HAO1,HAO2,SIAH1,SIAH2,ECH1,HK1,EDEM1,SQSTM1,RNASET2,HSD17B6,USP33,BCKDHA,CPT1B,UPF2,CES2,BCKDHB,ACLY,SOD1,CPT1A,SELS,GBA3,GAPDHS,BLVRA,SDHA,GBA2,SDHB,PSMD14,YWHAH,GLA,PPP1R8,SDHC,SDHD,PYGB,ALDH1L1,GNPDA1,BTRC,PDHB,APOA4,ASPA,CDKN2A,MIOX,APOA5,CPA2,FBXO22,NUDT3,DFFA,DFFB,NUDT5,CECR2,RNASEH2A,PNPLA3,GNS,NEU3,XRN2,DERL2,FZR1,SYVN1,DERL1,GLUD1,UBE2V2,NEDD8,ANAPC10,CHIT1,UBE2D3,UBE2D2,ASRGL1,RNF11,ENTPD4,UBE2D1,ANGPTL3,SMG6,SMG5,SMG7,SMG1,TST,PSMC5,VCP,UBE2E1,AMT,TPP1,TREH,HPD,UBE2A,ACADM,PFKL,ALDH5A1,ACADS,CYCS,PRKCG,UBE2I,UBE2H,PFKM,UBE2C,UGT1A1,UBE2B,DDO,UBE2N,ACADVL,UBE2K,PRDX6,GAA,ERN2,MDM2,DHPS,UBB,MDM4,AKR1D1,UBE3A,ADAMTS13,ECHS1,EGLN2,TKTL1,STUB1,ERCC5,PRSS2,ECD,BDH2,ERCC3,ERCC4,ERCC1,ERCC2,RNF144B,FOXL2,RNASE2,RNASE3,UBE4A,RNASE6,UBE4B,PARK2,AMPD3,GSPT1,BAX,UGT2B4,FAF1,SMPD4,SMPD3 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html AKT1,TNF,CEP57,ZFYVE9,F2,BCL3,BCL6,GLI3,KPNB1,TNPO1,F2R +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html ALDH8A1,HSD17B11,HSD3B1,CYP11B2,STUB1,SHH,ECE2,AKR1C4,ASMTL,HSD17B6,SCG5,CYP11A1,DHRS9,UGT1A1,RDH12,DHRS2,RDH11,DHRS3,YWHAH,DIO2,ADM,SULT1B1,CHST9,CHST8,UGT2B11,HSD11B2,UGT2B4,DIO1,AKR1D1,ALDH9A1,RETSAT,BMP6 +PWCOMMONS NEGATIVE REGULATION OF BIOLOGICAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOLOGICAL_PROCESS.html DLC1,AIF1,MXI1,ZNF254,CIAPIN1,MAGED1,CUL3,EPC1,CUL2,CUL5,SERPINE1,ZNF396,FAS,DDAH2,MAP2K6,CUL1,OPA1,CGRRF1,CRYAA,BRAF,CRYAB,ZHX1,MECP2,ZHX2,ZHX3,BRAP,THY1,BCL2L10,SSTR4,NME5,SSTR5,SSTR2,SIRPG,NME2,ADAMTS8,EIF2AK1,SSTR3,ZNF238,SERPINF1,NME1,SSTR1,BACE2,F2,TGIF1,ATPIF1,MAPK8,ADAMTS1,EIF2AK2,MYO18A,EIF2AK3,DCBLD2,TNFRSF6B,PPP2R3B,NFKBIE,BCL2L2,PPT1,ARF6,HSPA1B,BCL2L1,VPS72,NPHP3,ADRB3,PEA15,HEXIM2,HEXIM1,INS,IL17F,RAC1,CDC123,DMBX1,KLF12,PAIP2,PHB,KLF10,KLF11,TAOK3,SPHK1,ATR,GAS1,GAS8,TNNI3,GAS7,RERG,BFAR,NFKBIL2,HGS,SMURF1,RTN4,OPRM1,LIMA1,HTATIP2,GLRA1,NUAK2,FAM3D,SPI1,TP63,ZNF675,BNIP3,DAXX,LATS1,ZNF345,LATS2,BNIPL,ZNF350,ZNF148,SERTAD3,MYC,USH2A,SERTAD2,ATF7IP,ZNF281,CLN3,CDC6,ARHGEF2,TP53,NDUFA13,TLE1,FOSB,GPR98,MXD4,JMY,INHBB,SERPINB9,NCK2,EIF4A3,INHBA,BNIP1,EREG,BNIP2,CLIC4,ZNF136,SERPINB2,FOXC1,TMSB4Y,NSD1,ALOX12,ZMYND11,PML,RTKN,ABI1,ZNF177,PR47,ZNF174,CCL23,PER1,SUPT4H1,RASA1,FOXD3,IL4,IL3,IL6,IL8,IL7,TRIM27,ZNF24,TNP1,PHF12,TMPRSS6,PLG,ZNF157,CDH13,SOST,GLA,STAB1,RASSF1,GSK3B,BNIP3L,NLRP12,HPGD,BARD1,IL2,BMP10,CNOT8,ZAK,TNFSF15,OSGIN1,RBM9,TCEAL1,TNFSF18,TGFB1,IL10,IL11,VCL,TGFB2,APOA2,CDKN2A,APOA1,CDKN2B,PACSIN3,CDKN2C,CDKN2D,TGFBI,TDGF1,IL1B,IL1A,DNAJC1,API5,BCL10,ZNF593,IL29,DFFA,RELA,STIM2,ACTN1,HBXIP,CSDA,PA2G4,TIMELESS,SMARCE1,TNFAIP8,HSPB1,TNFAIP3,EID1,HMGB1,ARHGDIG,EID2,CCL2,IFITM1,STK11,SESN1,TIMP1,VDR,PEG10,MIA3,MEIS2,AKT1S1,PRKRA,OTUD7B,B4GALT7,ARHGDIA,HELLS,ARHGDIB,ANGPTL4,ZNF423,CREBZF,FURIN,UIMC1,HDAC5,CDKN1C,HDAC4,CDKN1A,HDAC3,CDKN1B,HDAC1,TSC1,CDKN2AIP,SMARCC2,FABP3,MYO16,ADRA1A,FABP7,HDAC9,HDAC8,PDZD3,FABP6,E2F1,IER3,NBN,RSF1,ARID4A,E2F6,DEDD,RPRM,BAP1,PRDX2,CTCF,ZNF202,PAWR,DPH3,CDC42,WARS,CASP3,CLCF1,PAX7,RHOB,DLG5,CDK5RAP1,NDUFS3,NRG1,RHOH,NFX1,DLG1,KNG1,SLA2,ARID5B,ARID5A,CDK6,RB1,MID1IP1,DHRS2,TARBP2,PPM1G,ADRB2,PPM1D,ERN1,ERN2,CNTN4,MAPRE1,TM4SF4,ACVR1,BCLAF1,HS3ST5,NDN,ASNS,PF4,DEC1,PAIP2B,IGF1R,ORC2L,TSPYL2,DAD1,B4GALNT2,GPNMB,TERF2,HSPA9,NOX4,COL4A3,COL4A2,KLK8,NF2,VHL,NF1,ANXA1,FRZB,ANXA5,ANXA4,LEP,PPP1R9B,HSP90B1,CUL4A,ID2,GCK,ID1,BAX,ID4,ID3,FAF1,RARRES3,RARRES1,SNCA,FST,SHH,SIN3A,WWP1,CHRNA7,SUPT5H,TWIST2,TWIST1,GTPBP4,PIM1,TBRG4,RAD9A,RND1,KRT18,PIAS4,ALOX15B,CD40LG,CD33,TXNDC5,VEGFA,TBRG1,MNT,PRDM1,TGFB1I1,SUDS3,IQCB1,ENPP7,CHEK1,UHMK1,CD74,AHSG,LIF,PLAGL1,NR1H2,DRAP1,BAI1,CDA,BCOR,TCF25,NKX2-5,BMP4,NKRF,COL18A1,MDFI,BMP2,BECN1,TP53BP2,S100A11,RYBP,SMAD4,CIDEA,SMAD3,SMAD2,TAX1BP3,UBP1,TAX1BP1,CBLC,NOTCH2,NOTCH1,NR1I2,RNF7,SFRP1,NUP62,ETS1,NOTCH4,JAZF1,GHSR,UTP20,RBPJ,BMP7,PRKRIR,KLF4,ZBTB32,DLEC1,PPARD,ACVRL1,NFKB1,TERF2IP,ZEB1,GLI2,HSBP1,PTEN,SPINK5,CDT1,TRIAP1,GPX1,BAG4,CGREF1,GFI1B,BAG1,CCL3L3,DHCR24,CTBP1,ADAM10,RBBP4,CTBP2,PRG3,CD164,SIGIRR,AMBP,AMIGO2,PROK2,CHMP1A,PSEN1,LAX1,GRM8,TNFRSF10D,RIPPLY1,AVEN,NPPB,SEMA4D,GADD45A,CXCL1,YWHAZ,ZBTB16,ZBTB17,MLF1,MIF,SUMO1,SET,SPEG,LANCL2,BCL2,GATAD2A,BCL3,VWC2,PEX14,BCL6,AATF,CD24,QSOX1,CD27,CD28,SERGEF,PDS5B,TBX3,TBX2,GMNN,NLK,TBX5,NPR1,BIRC6,BIRC5,ILF3,CDKN3,SOD1,SNAI2,BIRC3,STAT3,CAPRIN2,YWHAH,MAPK12,YAF2,EEF1E1,CAPG,PHF21A,PTCH1,PPP2R4,APBB2,APBB1,TOB2,TOB1,CBX4,FOXO1,APOBEC3G,FOXO4,GDNF,APOBEC3F,TPT1,ODZ1,MYST1,MYST4,SPN,MYST3,SOCS2,SOCS3,SOCS1,BCL2A1,HRK,ZNF189,NR0B2,SOCS5,NR0B1,FOXN3,TRAT1,PTHLH,CARTPT,EMP3,ERC1,RAD17,GCLC,LST1,MCL1,SNX6,PKHD1,TIPIN,KATNB1,UMOD,ELK3,FTH1,ALB,NPM1,SFTPD,CLASP1,GLO1,GML,RUNX2,SRGN,RUNX3,CFLAR,CARD8,TP53I11,GNRH1,MAFB,BRCA2,SNW1,FOXP3,NFKBIL1,BRCA1,BBC3,GLMN,DNMT1,RFX3,LDOC1,SST,IFI6,RSC1A1,IGFBP7,IGFBP6,NR6A1,PDCD4,MEN1,ACVR1B,ANG,PCBP4,GSN,PCGF6,ATP8B1,POU4F2,YRDC,CDK10,TNIP1,KHDRBS1,NOL3,LDB1,PRKCG,INHA,NLRP3,PROC,NRIP1,OSM,MFN2,EIF4G2,TNFRSF9,BTG2,BPTF,BTG1,BTG4,HIPK3,BTG3,CFL1,SCIN,FAIM3,GHRL,MDM2,NAIP,MDM4,CUX1,COMMD7,PPP1R15A,GSTP1,ZFP161,ING5,GLIS3,PRKCZ,FRK,ING4,TNF,GLIS2,GLIS1,IFNW1,TNFRSF8,POU1F1,CALCA,ERCC5,SH3GLB1,TNFRSF18,POU2F1,GP1BA,KRT4,ERCC4,ING1,FGFBP1,ERCC1,ENO1,SCG2,APC,PIK3R2,PTPRC,IL2RB,DTX1,SIRT4,CENPF,SIRT5,CBY1,SIRT1,SIRT2,ATXN1,SON,DR1,IRF7,IRF8,BRE,ATP8A2,GRLF1,IRF2,MPO,PPP1R13B,TIAF1,IGFBP3 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html SERGEF,CRTAM,CARD8,ACHE,CADM1,CIDEA,ARFIP1,DPH3,PYDC1,NLRP3,FOXP3,NLRP2,NOD2,APOA2,APOA1,INS,ANG,PYCARD,NLRP12,GLMN,SRGN,DNAJC1 +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html CRTAM,ACHE,CARD8,CADM1,INHA,NLRP3,PYDC1,NLRP2,INHBB,INHBA,NOD2,GCK,GHRH,ANG,INS,SCIN,PYCARD,GHRL,GLMN,CARTPT +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html INHBA,CEBPG,IL27,IL18,CD276,TLR3,INHA,IL12B,TLR7,EBI3,TLR8,TLR9 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RAB3GAP2,LTBP2,CADM1,MXI1,SSR1,HOMER3,TRAK1,CEP290,TLK1,RPL11,KIF13B,CRTAM,CD3G,VPS45,VANGL2,OPTN,MYH9,COLQ,BACE2,F2,PEX26,BIN3,RTP3,RTP2,RTP4,NFKBIE,RTP1,AKAP10,PPT1,CALR,UHMK1,CD74,CDC37,INS,DUSP16,SUPT7L,SEC23IP,TRAM1,MDFI,SMAD3,CIDEA,ARFIP1,ABCG1,GGN,NFKBIL2,CBLB,TRPS1,LGTN,RERE,PDIA3,PDIA2,TIMM17A,TIMM17B,AP3S2,PDIA4,GLI3,CANX,NOD2,ZFYVE9,COX18,KDELR1,TOMM34,AP3B1,KDELR2,RPGR,TP53,FLNA,ZDHHC17,NUP205,TOMM20,TOMM22,TMSB4Y,ARL4D,SHROOM2,SHROOM3,NUP214,NAGPA,PEX19,SQSTM1,PEX16,BCL3,AP3D1,PEX14,BCL6,PEX13,PEX12,CD24,PEX10,APBA1,FYB,SERGEF,NLGN1,PPP1R10,BIRC5,GABARAP,SELS,COG3,YWHAH,COG7,GSK3B,RAB35,NLRP12,SSR2,COG2,BARD1,TSPO,XPO6,AP1G1,LMAN2L,EIF5A,TNFSF14,MIPEP,AGXT,KLHL2,TGFB1,AIP,NLRC4,APOA2,APOA1,DNAJC1,EGFR,CUTA,MCM3AP,MYO6,STAP1,LRP1B,ERP29,NUPL2,RPAIN,SNX9,DERL2,ACHE,ARFGAP3,PPY,DERL1,CTSA,ABCA1,PYDC1,NPM1,ANGPTL3,SRGN,CARD8,TAF3,ICMT,SNAPIN,REEP1,FOXP3,NFKBIL1,TRNT1,PPIH,VCP,PTTG1IP,GLMN,TRIP6,XPO7,HPS4,PEX6,DPH3,PEX3,PEX7,AKT1,PEX1,ANG,ZFYVE16,RANBP2,NCKIPSD,TPR,KPNB1,TOPORS,NLRP3,TIMM23,TIMM44,NLRP2,MFN2,ATG4D,ATG4C,ATG4B,ATG4A,C3ORF31,CD81,ARCN1,KPNA6,KPNA5,KPNA4,KPNA3,KPNA2,KPNA1,TNF,AP1M2,CDH1,SEC63,CEP57,AP3M1,TAP2,PYCARD,SCG5,APPBP2,ERCC3,TNPO1,SCG2,NF1,MAL,CBY1,TMEM48,TRPC4AP,FAF1,GGA1,F2R +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html ALDOA,SPACA3,GNPDA1,PFKL,GUSB,PGD,ALDOB,PFKFB1,HK1,TKTL1,PFKM,HYAL4,CHIT1,GBA3,GAPDHS,GNS,GBA2,PGLS,MIOX,ECD,MGAM,GAA,TREH,PYGB +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html ACR,AVPR2,ADORA3,CAP2,ADCY7,ADORA2B,GHRHR,ADCYAP1,EDNRA,CALCA,CRHR1,ADRB3,ADRB2,ADRB1,P2RY11,GIPR,GNAS,CAP1,GLP1R +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html HMGB1,MSH6,HMGB2,MSH3,MSH2,POLG,UNG,TP53,SMUG1,MPG,ERCC6,TDG,OGG1,APEX1,CCNO,NTHL1 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html BID,CDK5R1,GRIK2,NF1,BNIP3,PPT1,SOD1,CDK5,GDNF,NLRP1,TGFB2,GRM4,AKT1S1,BCL2,BAX,PCSK9,RASA1 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html PAM,H1FNT,RSF1,NAP1L1,HAT1,NAP1L3,NAP1L2,NAP1L4,NCAPH,SET,ACIN1,CDCA5,ASF1A,TOP2A,HELLS,MYST3,AIFM2,DFFB,SIRT4,TNP1,SIRT5,NUSAP1,SIRT1,SMC4,HDAC5,CHMP1A,SYCP3,ASH1L,SMARCA5,PRM1,PRM2,CHAF1A,CHAF1B,TSSK6 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html LALBA,HS3ST5,GCNT2,NDST1,B3GALT6,FUT8,ALG1,GALNT5,PFKFB1,UGDH,ST8SIA2,ACN9,B3GNT8,XYLT1,CHST12,MPDU1,CHST11,GYS2,CHST13,HS6ST1,DYRK2,TSTA3,B4GALT7,NANP,B4GALT1,UAP1,GMDS,CHST3,GYG2,PMM2,PPARGC1A,GLCE,B3GAT2,ATF4,GCK,CHST7,CHST6,HAS1,SLC25A10,CHST9,CHST8,EXT1,EXT2,HS3ST3B1,COG2 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNH1,KCNK17,KCNC1,KCNJ15,KCNC4,KCNC3,KCNAB3,KCNAB1,KCNJ10,KCNJ12,KCNIP2,KCNJ11,KCNQ4,KCNQ3,KCNK7,KCNK6,KCNK5,KCNQ2,KCNQ1,KCNG2,KCND3,KCNA10,KCNH2,KCNH3,KCNH4,KCNMB3,KCNMB4,KCNA2,KCNA1,KCNA4,KCNA3,KCNA6,KCNA5,KCNJ2,KCNJ3,KCNMB1,KCNJ1,KCNMB2,KCNS3,KCNS1,KCNE1,KCNE2,CHP,KCNB2,ATP1A4,KCNK1,KCNV1,KCNK3,KCNK4,KCNJ5,KCNN4,KCNJ4,ABCC9,KCNJ6,KCNN1,KCNN3,KCNF1,ABCC8 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html CRTAM,CARD8,CADM1,CIDEA,ABCA1,PYDC1,FOXP3,NLRP3,NLRP2,APOA2,NLRC4,NOD2,APOA1,INS,NLRP12,PYCARD,GLMN,SRGN +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNE1L,ADORA3,TNNC2,GRIK1,CADM1,TNNC1,GRIK2,ATP6AP2,IL18,FST,TNFSF13,APOBEC3G,APOBEC3F,TGFB1,TLR8,SART1,DMPK,TGFB2,MAP3K7,CD47,IFNG,SERPINE1,CHRNA7,IFNK,EBI3,CRTAM,IL29,CD3E,IL27,MYH7,MYH6,SOCS5,IL21,TRAT1,THY1,TNNT2,SIRPG,PLCE1,LAT2,HIF1A,TNNT1,CD40LG,F2,HSPB7,RYR2,CARTPT,SRI,KCNMB4,TRAF2,MYL5,LST1,MYL2,AFAP1L2,PXK,MYL9,KCNMB2,AHSG,MIA3,SFTPD,ZAP70,TRAF6,SRGN,BMP4,KCNB2,SPHK1,SMAD4,CD276,SMAD3,CIDEA,MALT1,FOXP3,ANKH,LAT,ATP2A1,IKBKG,GLMN,CACNA1H,CD79A,GHSR,CYP2J2,GLRA1,BCAR1,IL28RA,MYBPC3,ZNF675,KCNIP2,KCNJ12,SPINK5,CFHR1,NOD2,DES,KCNQ1,KCNG2,KNG1,SPACA3,SIT1,SLA2,INHA,NFAM1,NCR1,PROC,UBE2N,NCK2,INHBA,TARBP2,PROK2,CARD11,PTGDS,EREG,LAX1,CHRM2,NCK1,LCK,IL12A,GHRL,IL12B,UBB,KCNH2,ICOSLG,ACVR1,MBL2,HS3ST5,PPP1R12B,TPM1,PR47,CALCA,MYBPH,KCNE1,KRT1,KCNE2,GP1BA,C2,CNN1,CD24,SCN5A,NMU,CD28,IL4,COL4A4,PTPRC,KLK8,ACTC1,KL,IL7,NF1,SOD1,TMPRSS6,CD1D,FYN,MC4R +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html BMP4,IL3,IL5,LYN,IL29,ITLN1,HCLS1,IL20,IL31RA,CCND1,CARD14,CCND3,CD80,AKTIP,CCND2,CLCF1,TDGF1,CD81,IL12A,TNK2 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html MDFI,NFKBIE,NF1,TNFSF14,SMAD3,CDH1,NLRP3,MXI1,FLNA,TGFB1,NFKBIL1,NFKBIL2,NLRP12,BCL3,FAF1,TRIP6 +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html IL27,CEBPG,IL18,CD276,TLR3,INHA,FOXP3,TLR7,TLR8,TLR9,INHBA,IL12A,IL12B,EBI3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF2C1,AURKAIP1,LTBP4,TLR1,EIF5,TLR3,EIF5A,TLR4,TLR6,CXCL12,TLR7,SHH,TLR8,TGFB1,IL10,TLR9,IL31RA,APOA2,ATG7,DDX25,TDGF1,HRSP12,EIF1,EIF2B2,SAMD4A,EBI3,SPN,DNAJC1,EIF2B5,EGFR,BCL10,GTPBP4,IL29,IL27,SOCS1,PPARGC1A,BOLL,TRAT1,IL20,EIF2AK1,BACE2,RNF139,HSPB1,EIF2AK3,EIF2AK4,ITLN1,KATNB1,ITGB2,ARF6,IGF2BP2,MTIF2,MTIF3,TIMP1,EIF3C,EIF3D,EIF3A,CDC42EP2,EIF3G,EIF3H,EIF3E,EIF3F,IL17F,SFTPD,EIF3I,CLASP1,EIF3J,ANGPTL3,UBE2D1,CDC42EP5,BMP4,PAIP2,CD276,FOXP3,FURIN,BRCA1,EIF4B,AKTIP,TSC1,EIF4H,GLMN,TNK2,GHSR,IL22RA2,LIMA1,METAP1,EIF2A,LATS1,YBX2,NDUFS4,CLCF1,GSN,TPP1,MAPT,LTB,ARHGEF2,CCDC88A,PRG3,LYN,CCDC88C,NDUFA13,EIF1B,PRKCG,INHA,MID1IP1,SIGIRR,INHBB,UBE2N,EIF4G2,INHBA,EIF4A3,NCK2,CCND1,EIF4G3,CARD14,MAST2,CCND3,EREG,CD80,CCND2,MTRF1,EIF4A2,NCK1,TPPP,CD81,IL12A,GHRL,TMSB4Y,IL12B,MAPRE1,CLN6,TNFRSF8,STUB1,NECAB3,PAIP2B,AZU1,SET,KRT7,SEPSECS,BCL3,DAZL,RASA1,CD28,APC,IL4,IL3,DAZ1,IL6,UPF1,IL5,NF2,HCLS1,CEBPG,IL9,ETF1,CAPG,NLRP12,PPP2R4,IRF4,APBB1,IGFBP3 +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html DYNC1I1,KIF4A,KIF3B,OPA1,KIF5B,KIF5A,UXT,KIF1A,KIF1B,MAP1S,RHOT1,RHOT2,NEFL,APBA1,LRPPRC,KIF13B +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html GTPBP4,CCDC88C,HPS4,PEX6,APTX,AURKA,ISOC2,PPARGC1A,PTEN,COG3,APOA2,STX12,APOA1,A1CF,COG7,CDKN2AIP,TBRG1,MDM4,FBXO7 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CADM1,BCAR1,IL18,IL28RA,APOBEC3G,TNFSF13,APOBEC3F,SPINK5,SART1,TLR8,TGFB1,TGFB2,CFHR1,MAP3K7,CD47,IFNK,EBI3,SPACA3,CRTAM,SIT1,IL29,CD3E,IL27,SLA2,SOCS5,NFAM1,INHA,IL21,NCR1,TRAT1,THY1,UBE2N,INHBA,TARBP2,NCK2,LAT2,SIRPG,EREG,LAX1,NCK1,LCK,IL12A,IL12B,ICOSLG,MBL2,TRAF2,LST1,MIA3,KRT1,SFTPD,ZAP70,C2,CD24,TRAF6,CD28,IL4,PTPRC,IL7,CD276,MALT1,FOXP3,CD1D,LAT,FYN,IKBKG,GLMN,CD79A +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR1,TLR3,TNFRSF8,TLR4,TLR6,TLR7,TLR8,TLR9,AZU1,APOA2,IL17F,SFTPD,BCL3,LTB,SPN,EBI3,CD28,BCL10,IL6,PRG3,CEBPG,IL27,IL9,CD276,INHA,FOXP3,SIGIRR,INHBB,INHBA,MAST2,EREG,NLRP12,GLMN,GHRL,IRF4,IL12B,GHSR +PWCOMMONS REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_APOPTOSIS.html CADM1,SNCA,ADORA1,CIAPIN1,BTK,CUL3,MAGED1,BAK1,CUL2,MAP3K5,CUL5,APOE,FAS,DDAH2,CUL1,CRTAM,CD3G,OPA1,BRAF,CRYAA,CRYAB,PIM1,BCL2L11,BCL2L10,MAPK1,NME5,CD38,NME2,KRT18,SSTR3,NME3,CD40LG,NME1,IFNB1,ALOX15B,TXNDC5,VEGFA,F2,MAPK8,MYO18A,UNC13B,LALBA,SIVA1,TNFRSF6B,CDK5R1,STK17B,CD70,PPT1,BCL2L2,CHEK2,STK17A,BCL2L1,HSPA1B,CALR,CD74,PLAGL1,PEA15,IFNA2,DIABLO,C16ORF5,HIP1,TP53BP2,BECN1,LGALS1,PHB,SPHK1,CIDEB,CIDEA,SMAD3,TPD52L1,TAX1BP1,CIDEC,BFAR,NOTCH2,EI24,RNF7,SFRP1,NUP62,RTN4,HTATIP2,NUAK2,BCAR1,FASTK,BNIP3,TP63,NFKB1,DAXX,PTEN,GPX1,BAG4,TRIAP1,BAG1,TOP2A,DEDD2,DHCR24,CLN3,AIFM3,AIFM2,AIFM1,TP53,LGALS12,NDUFA13,JMY,GRM4,INHBA,SERPINB9,PROK2,PSEN1,BNIP1,BNIP2,TNFRSF10D,MAP3K10,SERPINB2,IL12A,AVEN,SEMA4D,IL12B,ALOX12,BID,YWHAZ,PML,RTKN,SFN,MIF,BCL2,PPP2CA,PCSK9,BCL3,BCL6,AATF,CD27,RASA1,CD28,IL4,IL3,IL6,TBX3,IL7,TBX5,BIRC6,BIRC5,STAT1,BIRC3,SOD1,TP73,PLG,NAE1,CDH13,GSK3B,EEF1E1,IFT57,BNIP3L,BIK,BARD1,IL2,ZAK,TNFSF15,TLR2,CBX4,TNFSF14,FOXO1,EIF5A,PMAIP1,TNFSF12,TNFSF18,GDNF,CRADD,TGFB1,TGFB2,SMNDC1,NLRC4,CDKN2A,CASP8AP2,CDKN2C,TIA1,CDKN2D,TDGF1,TPT1,ZNF443,DAP,MX1,API5,IL1A,BCL10,NUDT2,SOCS2,DFFA,MADD,SOCS3,RELA,BCL2A1,HRK,FADD,HBXIP,STK4,STK3,TIAL1,TNFAIP8,RIPK3,HSPB1,ERC1,HMGB1,GCLC,CCL2,MCL1,ADAMTSL4,PRUNE2,AKT1S1,ALB,NPM1,MTCH1,GLO1,DYRK2,TRAF7,ARHGDIA,RUNX3,TRAF3,ANGPTL4,CFLAR,CARD8,HTT,MALT1,WRN,BRCA1,TRADD,HDAC3,CDKN1A,TNFSF10,CDKN1B,VCP,HDAC1,BBC3,IKBKG,HSPD1,ABL1,PDCD5,PDCD6,SST,PDCD7,IFI6,DNAJB6,DAP3,IER3,DEDD,FASLG,PRDX2,ACVR1C,CASP6,ACVR1B,CASP3,CASP4,CASP9,CLCF1,RPS3A,PCBP4,BOK,PAX7,NDUFS3,LTA,PRKCA,PPP2R1A,NOL3,CYCS,INHA,IFI16,DAPK2,PRKCE,NLRP3,CDK5,DAPK3,NLRP2,NCR1,DAPK1,PROC,TNFRSF9,BTG1,HIPK3,SCIN,LCK,CFL1,ERN1,ERN2,GHRL,FAIM3,NAIP,CTSB,GSTP1,ACVR1,DCC,DPF2,PRKCZ,BCLAF1,TNF,TNFRSF25,TNFRSF8,ASNS,TRAIP,DPF1,IGF1R,MOAP1,UTP11L,ERCC5,SH3GLB1,PTH,PYCARD,DAD1,CD2,TNFRSF18,ERCC3,PIK3R2,ERCC2,HSPA9,SCG2,COL4A3,PTPRC,FOXL2,IL2RB,CEBPG,NF1,ANXA1,SAP30BP,ANXA5,ANXA4,TNFSF8,CASP10,SON,HSP90B1,CUL4A,BAX,BRE,MPO,PPP1R13B,APAF1,TIAF1,IGFBP3,F2R +PWCOMMONS SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SPINDLE_ORGANIZATION_AND_BIOGENESIS.html KIF23,KIF11,PRC1,RAN,TTK,STMN1,TUBG1,RCC1,SMC1A,SMC3 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN22,TIMM50,PTPN21,PTEN,TGFB1,PTPRJ,PPP2R1A,PTPRM,PTPRN2,PTPRH,PTPRR,PTPRT,PTPRO,TPTE,PPM1G,PPP1CA,PPM1D,PPEF2,SBF1,PPEF1,PPM1M,CTDP1,PPP5C,PPP2R2A,PPP6C,PPP2R3B,PPP2R3A,SSH1,SSH2,DUSP10,PPM1B,MTMR3,DUSP13,PPP2CA,PPP2CB,PTPLA,MTMR7,PTPRB,PTPN7,PTPN6,PTPRC,PTPN9,PTPRD,PTPRE,PTPN18,PTPN3,PTPN2,PTPRZ1,PTPN5,PTPN4,EPM2A,PTPN14,PTPN13,DUSP22,PTPN12,DUSP5,DUSP4,DUSP3,DUSP2,PPP2R4,DUSP9,DUSP8,DUSP6 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SNCA,CBX4,FOXO1,CIAPIN1,GDNF,TNFSF18,CDKN2D,TDGF1,TPT1,FAS,DDAH2,API5,IL1A,BCL10,OPA1,BRAF,SOCS2,CRYAA,CRYAB,SOCS3,DFFA,RELA,BCL2A1,HRK,PIM1,HBXIP,BCL2L10,NME5,NME2,KRT18,CD40LG,TXNDC5,VEGFA,TNFAIP8,HSPB1,MAPK8,ERC1,MYO18A,TNFRSF6B,HMGB1,CCL2,GCLC,MCL1,PPT1,BCL2L2,HSPA1B,BCL2L1,CD74,PEA15,AKT1S1,ALB,NPM1,GLO1,ARHGDIA,ANGPTL4,CFLAR,BECN1,SPHK1,CIDEA,TAX1BP1,NOTCH2,BFAR,HDAC3,RNF7,HDAC1,SFRP1,NUP62,IFI6,RTN4,IER3,HTATIP2,NUAK2,BNIP3,NFKB1,PRDX2,GPX1,BAG4,TRIAP1,CASP3,BAG1,CLCF1,PAX7,DHCR24,CLN3,NOL3,PROC,AMIGO2,PROK2,SERPINB9,PSEN1,BNIP1,TNFRSF10D,BNIP2,HIPK3,CFL1,SERPINB2,GHRL,AVEN,FAIM3,NAIP,SEMA4D,GSTP1,ALOX12,ACVR1,PRKCZ,YWHAZ,TNF,RTKN,ASNS,MIF,IGF1R,ERCC5,SH3GLB1,BCL2,TNFRSF18,DAD1,BCL3,AATF,RASA1,CD27,SCG2,HSPA9,PIK3R2,CD28,IL4,IL3,IL2RB,IL6,TBX3,IL7,ANXA1,BIRC6,BIRC5,ANXA5,BIRC3,SOD1,ANXA4,CDH13,SON,HSP90B1,BAX,GSK3B,BNIP3L,BRE,MPO,TIAF1,BARD1,IL2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html FGF5,MTSS1,NRTN,MPZL1,EDN2,BCAR1,AP3S1,FOXO4,AKT1,PDPK1,GAB1,TDGF1,TGFA,SHC1,FRS3,SHC3,RAPGEF1,FRS2,INSR,EGFR,PTPRJ,EFNB3,PTPRG,CD3E,BAIAP2,OTX2,PICK1,SOCS1,PTPRT,IRS1,CD3EAP,DOK1,NCK2,ADRB2,GRB10,EREG,ROR1,FOXC2,LCP2,REPS2,FGFR4,FGFR3,GRB2,ERBB3,ERBB2,AFAP1L2,ABI1,BDKRB2,SRC,PXN,IGF1R,UTP11L,MUSK,CEP57,SORBS1,PTK2B,TEK,AGRN,PIK3R3,EGF,PIK3R1,CNKSR1,FIBP,FLT3,FLT4,CBL,IGF2,KDR,RPS6KA5,NTRK3,EPS15,CBLC,CDH13,ERBB2IP,EPS8,PRLR,EPGN,NTRK1,NTRK2,MAPK8IP2,GRB7,GFRA2 +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html FOXL2,DFFA,AIFM1,DFFB,CYCS,CECR2,CIDEA,BNIP3,PPT1,TPD52L1,SOD1,CDKN2A,BAX +PWCOMMONS REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROGRAMMED_CELL_DEATH.html CADM1,SNCA,ADORA1,CIAPIN1,BTK,MAGED1,CUL3,BAK1,CUL2,MAP3K5,CUL5,APOE,FAS,DDAH2,CUL1,CRTAM,OPA1,CD3G,CRYAA,BRAF,CRYAB,PIM1,BCL2L11,BCL2L10,NME5,CD38,MAPK1,NME2,KRT18,SSTR3,NME3,IFNB1,NME1,ALOX15B,CD40LG,TXNDC5,VEGFA,F2,MAPK8,MYO18A,UNC13B,SIVA1,LALBA,TNFRSF6B,CDK5R1,STK17B,PPT1,CD70,BCL2L2,HSPA1B,CHEK2,BCL2L1,STK17A,CALR,CD74,PLAGL1,IFNA2,PEA15,DIABLO,C16ORF5,HIP1,BECN1,TP53BP2,PHB,LGALS1,SPHK1,CIDEB,SMAD3,CIDEA,TPD52L1,TAX1BP1,CIDEC,BFAR,NOTCH2,EI24,RNF7,NUP62,SFRP1,RTN4,HTATIP2,NUAK2,FASTK,BCAR1,TP63,BNIP3,NFKB1,DAXX,PTEN,BAG4,GPX1,TRIAP1,BAG1,TOP2A,DEDD2,DHCR24,CLN3,AIFM3,AIFM2,AIFM1,LGALS12,TP53,NDUFA13,JMY,SERPINB9,PROK2,GRM4,INHBA,AMIGO2,BNIP1,PSEN1,TNFRSF10D,BNIP2,SERPINB2,MAP3K10,IL12A,AVEN,IL12B,SEMA4D,ALOX12,BID,YWHAZ,PML,RTKN,SFN,MIF,BCL2,PPP2CA,PCSK9,BCL3,BCL6,AATF,CD27,RASA1,CD28,IL4,IL3,IL6,TBX3,IL7,TBX5,BIRC6,BIRC5,SOD1,BIRC3,STAT1,PLG,TP73,NAE1,CDH13,GSK3B,IFT57,EEF1E1,BNIP3L,BIK,BARD1,IL2,ZAK,CBX4,TLR2,TNFSF15,TNFSF14,EIF5A,FOXO1,PMAIP1,TNFSF12,GDNF,TNFSF18,CRADD,TGFB1,SMNDC1,TGFB2,NLRC4,CDKN2A,CASP8AP2,CDKN2C,CDKN2D,TIA1,TDGF1,TPT1,ZNF443,DAP,MX1,IL1A,API5,BCL10,NUDT2,SOCS2,MADD,DFFA,SOCS3,RELA,BCL2A1,HRK,FADD,HBXIP,STK4,STK3,TIAL1,TNFAIP8,RIPK3,HSPB1,ERC1,HMGB1,CCL2,GCLC,MCL1,ADAMTSL4,PRUNE2,AKT1S1,ALB,MTCH1,NPM1,GLO1,TRAF7,DYRK2,ARHGDIA,RUNX3,ANGPTL4,TRAF3,CFLAR,CARD8,HTT,MALT1,WRN,BRCA1,TRADD,TNFSF10,HDAC3,CDKN1A,CDKN1B,VCP,HDAC1,BBC3,IKBKG,HSPD1,ABL1,PDCD5,PDCD6,SST,PDCD7,IFI6,DNAJB6,DAP3,IER3,DEDD,FASLG,PRDX2,ACVR1C,ACVR1B,CASP6,CASP3,CASP4,CASP9,RPS3A,BOK,PCBP4,CLCF1,PAX7,NDUFS3,LTA,PRKCA,PPP2R1A,NOL3,CYCS,IFI16,INHA,NLRP3,PRKCE,DAPK2,DAPK3,NCR1,NLRP2,CDK5,DAPK1,PROC,TNFRSF9,BTG1,HIPK3,SCIN,CFL1,LCK,ERN1,FAIM3,GHRL,ERN2,NAIP,CTSB,GSTP1,ACVR1,DCC,DPF2,PRKCZ,BCLAF1,TNF,TNFRSF25,TNFRSF8,ASNS,TRAIP,DPF1,IGF1R,ERCC5,UTP11L,MOAP1,SH3GLB1,PTH,DAD1,PYCARD,TNFRSF18,CD2,ERCC3,PIK3R2,ERCC2,HSPA9,SCG2,COL4A3,PTPRC,FOXL2,IL2RB,CEBPG,NF1,ANXA1,SAP30BP,ANXA5,ANXA4,TNFSF8,CASP10,HSP90B1,SON,CUL4A,BAX,BRE,MPO,PPP1R13B,APAF1,TIAF1,IGFBP3,F2R +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html BLVRA,ALAS1,ALAD,TSPO,FECH,ALAS2,COX10,CPOX,PPOX,NFE2L1,COX15 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html RTN4,NRP2,BMP10,NRTN,NRP1,ACVRL1,HMGCR,BCAR1,TNFSF12,ENPEP,GLI2,PTEN,CD2AP,GDNF,IL10,SHH,VCL,TGFB2,WNT1,ANG,SAA1,TDGF1,SEMA3B,UNC5C,SPON2,SYK,S100A2,EGFR,GTPBP4,CCDC88A,NRXN3,MDGA1,OTX2,NRD1,NRXN1,MYH9,NEXN,SLIT1,SLIT2,THY1,VEGFC,CD34,CLIC4,ALOX15B,SEMA4F,ITGB1BP1,IL12A,OPHN1,SIAH1,CNTN4,IL12B,UBB,LAMC1,CDK5R1,SHROOM2,ABI3,ABI2,PF4,ITGB2,CX3CL1,ITGB1,CALCA,AZU1,DOCK2,MIA3,KAL1,PRSS3,CKLF,SFTPD,KRT2,TNN,CD24,LAMB1,PPAP2A,ANGPTL3,PPAP2B,THBS4,SCG2,PARD6B,S100P,IL8,NF2,TBX5,SPHK1,NF1,DPYSL5,PLG,CDH13,PARP9,AMOT,TRIP6,FEZ2,FEZ1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ADORA3,ADCY7,LHCGR,VIPR1,GHRHR,HTR1B,PTGIR,MC1R,GALR1,GALR3,GALR2,GLP2R,PRKACB,HTR1D,HTR1F,HTR1E,NUDT4,HTR4,SSTR4,PTHLH,CRHR1,CRHR2,SSTR5,SSTR2,SSTR3,SSTR1,HTR7,CCR3,HTR6,CCR2,MC2R,GLP1R,ACR,DRD1,GNAI3,CCL2,ADORA2B,GNAI2,DRD2,DRD5,ADCYAP1,ADRB3,CNR1,CNR2,ADRA2A,TBL3,RGS1,NPY,LTB4R2,MTNR1B,ADRA1B,GRK5,CORT,ADRA1D,MTNR1A,OPRM1,MCHR1,WASF2,GABBR1,GABBR2,EDNRA,EDNRB,NDUFS4,MC5R,CAP1,CALCRL,XCR1,PTGER4,GRM4,CHRM5,ADRB2,GRM3,GRM2,ADRB1,CHRM2,GRM8,GHRH,GRM7,GIPR,GNAS,TSHR,CALCR,AVPR2,CCR1,NPY2R,OPRK1,FPR1,GCGR,GPR3,CALCA,HRH3,HRH2,MC3R,CAP2,OPRL1,NF1,NPY1R,P2RY11,MC4R,OPRD1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html CNBP,HSD3B1,CYP11A1,HSD3B7,TFCP2L1,CYP11B2,FDPS,FDXR,NR0B1,SOD1,CYP7B1,CYP39A1,ADM,DHCR7,NPC1L1,HSD11B2,AKR1D1,SCP2,NSDHL,DHCR24,NR5A1,BMP6,CYP19A1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC22A16,KCNC1,KCNC4,TSPO,KCNC3,ATOX1,ATP6AP1,KCNK7,WNK4,KCNK6,KCNK5,SLC4A2,CHRNA7,SLC4A1,KCND3,SCN2B,SCN2A,TRPA1,SLC34A1,STIM2,WNK1,STIM1,SLC34A3,PKD2L1,SLC34A2,NNT,RHCG,ATP2C1,RYR3,RYR1,AKAP7,SLC40A1,FXYD1,KCNMB3,ORAI1,KCNMB4,FXYD3,SCN1B,KCNA2,KCNA1,KCNA4,CCL8,KCNA3,HFE,KCNA6,CACNB3,CACNB4,KCNA5,KCNJ2,KCNJ3,ATP6V0B,KCNMB1,KCNJ1,KCNMB2,ATP6V0C,SLC11A2,KCNS3,KCNS1,SCN9A,SLC30A5,C16ORF7,HCN4,SLC31A2,SLC31A1,TRPC1,HCN2,TRPC4,CACNA2D1,TRPC3,TRPC6,TRPC5,KCNB2,UCP1,KCNK1,VDAC2,KCNK3,VDAC1,KCNK4,KCNJ5,ATP7A,KCNJ4,SLC4A11,KCNJ6,NPY,P2RX1,UCP3,UCP2,LASP1,ATP2A3,ATP2A1,CHRNB4,CHRNB1,SLC13A4,CACNA1D,CLCN4,ATP7B,KCNK17,KCNH1,KCNJ15,ATP6V0E1,KCNAB3,GLRA1,KCNAB1,GLRA2,KCNJ10,KCNIP2,KCNJ12,HVCN1,SLC26A2,KCNJ11,KCNQ4,KCNQ3,SLN,NMUR1,NMUR2,SLC22A4,TRPV5,SLC22A3,SLC22A6,SCN7A,KCNQ2,KCNQ1,COX17,SLC22A2,SCN10A,SLC22A1,KCNG2,TRPM3,SGK1,SLC22A7,SLC22A8,CLIC1,TRPM2,ATP6V1F,SLC26A4,ATP6V1C1,KCNA10,SLC26A3,CLIC3,CLIC5,SCN11A,KCNH2,KCNH3,KCNH4,SLCO1A2,BEST1,PKD2,KCNE1,KCNE2,CCS,SCNN1G,CHP,SCNN1A,SCN5A,SCNN1D,SLC39A2,SLC39A1,TCIRG1,PLP2,GLRB,SLC8A1,NOX1,ATP1A4,RHAG,KCNV1,SLC17A7,KCNN4,SLCO1B3,SLC17A5,ABCC9,SLC17A3,KCNN1,SLC17A4,ATP6V1E1,SLC17A1,KCNN3,PLN,SLC17A2,SLCO1B1,SCN4B,KCNF1,ABCC8,SCN4A,CSN2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MMS19,RAD51C,XRCC4,XRCC3,XRCC2,ZAK,XRCC6,SETX,IGHMBP2,MUTYH,RAD21,CDKN2D,PMS2,CCNA2,MAP2K6,PMS1,CIB1,POLL,MYO6,POLI,POLH,POLG,LIG1,RINT1,POLE,LIG3,RAD9A,LIG4,DDIT3,FOXN3,RAD1,PNKP,RFC3,RPAIN,UBR5,RAD17,HMGB1,RAD23B,HMGB2,BLM,RAD23A,MRE11A,HUS1,UBE2V1,CHEK1,UBE2V2,CHEK2,SESN1,XAB2,POLE2,RAD51L1,DYRK2,C16ORF5,POLQ,GML,NTHL1,ASF1A,ATRIP,RECQL4,RECQL5,TREX2,CIDEB,CIDEA,BRCA2,ATR,RAD54L,BRCA1,ATM,VCP,POLD1,TDG,PARP3,RAD54B,SMC1A,ABL1,PARP1,NBN,UVRAG,MLH1,PMS2L1,TRIAP1,MCM7,PCBP4,FANCG,FANCA,CCNO,FANCC,UBE2A,REV1,BRCC3,AIFM1,DDB1,GTF2H4,TP53,APTX,PRKCG,IFI16,TOPORS,RAD52,UBE2B,RAD50,XRCC6BP1,NEK11,RAD51,RBBP8,GTF2H1,UBE2N,SPDYA,RECQL,XPC,BTG2,GADD45G,DDB2,RUVBL2,GADD45A,PPP1R15A,NHEJ1,UNG,WRNIP1,POLA1,PML,BRSK1,SFN,SMUG1,RPA1,ERCC8,SUMO1,ERCC5,ERCC6,BCL3,BCL6,ERCC3,APEX1,ERCC4,ERCC1,FEN1,ERCC2,APC,EXO1,MSH6,UPF1,MSH3,MSH2,MSH5,CEBPG,TNP1,SOD1,TP73,NAE1,ATRX,MNAT1,MPG,ATXN3,CSNK1D,MAPK12,CSNK1E,EEF1E1,BRE,ALKBH1,OGG1 +PWCOMMONS ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_DEVELOPMENT.html HCCS,MEF2C,MEF2B,MEF2A,HRAS,BTD,HOXD13,RORB,SART1,CITED2,BTK,FLI1,CUL7,CTGF,SYK,BRAF,PDPN,MYH3,UGCG,MYH7,MYH6,MYH9,PROX1,THY1,PITPNM1,NME2,RPS19,MSX1,TAGLN,SERPINF1,FOXG1,SHOX,ATPIF1,EIF2AK3,ADAMTS4,TRAPPC2,ODAM,OSTF1,EMCN,AMTN,ERBB2,CACNB2,MYEF2,PPT1,HESX1,NPHP3,T,MUSK,IL17F,ZAP70,SPP2,DMBX1,DVL2,DVL3,KLF10,SPHK1,MSTN,TNNI3,PCDH18,DVL1,SHOX2,TRPS1,SMURF1,TLL1,KCNH1,HNF1B,FGF7,HTATIP2,ELF3,TCOF1,SPI1,ZNF675,DFNB31,FGF2,USH2A,GHR,STS,LYN,STX2,ACTA1,EGFL7,CMKLR1,PTF1A,TLE3,TLE1,TLE2,WAS,GPR98,INHBA,EREG,LRMP,FOXC2,KIAA1217,FOXC1,IL12B,NHEJ1,CLN5,CSF1,NNAT,PML,FHL3,TRIM15,SNRK,COL7A1,COL6A3,PKD2,CSDE1,PCSK9,HSD17B3,PAPSS1,PAPSS2,RASA1,C1GALT1,IL4,MYF6,IL8,IL7,MYF5,IGF1,IGF2,CAPN3,PLG,MEF2D,CDH13,RPS6KA3,LARGE,STAB1,EPGN,BNC1,FOXE1,AMOT,HBEGF,CTNS,IL2,NR5A1,BMP10,HMGCR,IL18,TGFB3,JAG2,PDX1,TNFSF12,ZIC1,TGFB1,IL10,CXCL10,ZIC2,TGFB2,TDGF1,APOA5,UNC5C,MATK,RET,IL27,TAZ,SIX3,DLL3,MGP,NRD1,VAX2,SIX6,IL20,GPR56,SIX1,VAMP5,COL1A2,TFAP2A,COL1A1,EDA,SMARCA1,FGD1,ACHE,CCL2,MRAS,EXTL1,MDK,ECE2,TEAD4,DYRK3,EGF,ANGPTL3,ANGPTL4,CCM2,FKTN,MEA1,ANKH,HDAC5,HDAC4,MYO16,MYH11,CACNA1H,FABP1,HDAC9,FABP5,PAX6,PAX5,PAX4,PAX3,PRDX1,PAX1,SPRY2,CDC42,NDUFS4,ALAS2,HEY1,HEY2,RHOB,TIE1,OTX2,CDK6,IFI16,MBNL1,NCL,HOXC11,NCOA4,NCOA6,LCK,GAA,CNTN4,UBB,CASQ2,ACVR1,ABLIM1,IRX4,CTF1,RNH1,RAG1,PF4,DCN,ALDH3A2,APLP1,DCT,MSX2,COL9A1,COL17A1,COL9A2,CD4,CALML5,COL4A4,KLK7,COL4A3,EBP,SECTM1,KLK8,COL4A2,ALPK3,KL,COL13A1,CEBPG,HCK,FBN1,KLK5,NF1,MAL,FRZB,COL5A3,COL5A2,ANXA2,BAX,GDF11,GDF10,JAK2,CDX1,S100A7,FST,UTRN,LHCGR,POSTN,TPD52,SHH,DSPP,PLOD1,COL12A1,ERAP1,CEP290,CHRNA7,CHRNA1,EIF2B2,PITX3,TWIST2,EIF2B4,TWIST1,COL10A1,EIF2B5,PITX2,MATN3,CD3D,NKX2-6,MDGA1,VANGL2,KRT13,KRT10,TBR1,SCEL,PRELP,KRT19,KRT17,KRT16,ATP2C1,KRT15,KRT14,VEGFA,LAMC2,LAMC1,EXT1,EXT2,IQCB1,CDK5R1,HOXA13,ELN,RBP2,ITGA11,HOXB13,EPHB4,AHSG,TCF21,LAMB3,AGGF1,LHX1,LHX3,LHX6,SMA4,LAMB1,EMD,NKX2-2,BLNK,BMP4,COL18A1,IKZF3,BMP2,MLL,BMP1,IKZF1,KRT31,MYOZ1,SMAD2,EN1,KRT34,CSRP3,NKX6-1,KRT32,LAMA2,NOTCH2,DLX2,NOTCH1,LAMA3,ATP2A2,ETS1,DLX6,DLX5,ETS2,NOTCH4,GHSR,LHB,TCF12,ENG,KLF4,TCF15,GYPC,PPARD,TM7SF4,ACVRL1,ARSE,NRP1,MYBPC3,GLI2,CDSN,CANX,SPINK5,GLI1,TNFRSF11B,AES,GNPAT,ALOX12B,MKX,COL11A1,DNAJC19,DHCR24,UFD1L,FLOT2,NFAM1,SLIT1,SLIT2,VCX3A,PROK2,SGCG,NPPB,SGCD,SGCE,ADAM12,SGCA,SGCB,SHROOM2,ETV7,SHROOM4,RAB3D,STATH,COL2A1,ZBTB16,SUFU,MLF1,SPEG,LY6H,LECT2,TBX6,TBX3,TBX5,HCLS1,TBX4,NPR1,GJB5,AFF2,TBX1,NPR3,SOD1,SNAI2,CD1D,COL19A1,MAPK12,CLEC3B,CLEC3A,SVIL,PHGDH,PTCH1,PBX1,PTCH2,PBX3,ATP6V0A4,TMEM176B,PBX4,MYOD1,CASR,MMP9,FGF16,CRABP2,FGF10,FGF12,FOXO3,FOXO4,TTN,ANKRD7,GHRHR,IL31RA,PRKACG,GATA6,GATA4,ROBO4,ROBO2,ACIN1,KRT85,MYST1,IFRD1,KRT83,MYST3,FOXN1,SOCS5,MEPE,NR0B1,PTHLH,PLCE1,GYLTL1B,DSP,CARTPT,EMP1,MYL6,SRI,FGFR1,FGFR3,ONECUT2,MAP4K2,DSCAML1,MAP4K1,ATP6V1B1,ITGAX,SFTPD,RUNX1,RUNX2,SFTPB,SRGN,MEST,EVC,HTT,MAFB,DMP1,BMX,ITGA2,TINAG,FOXP2,GCM2,ITGA7,GLMN,CD79A,CHRD,POU6F1,AEBP1,LSR,CRX,ACVR1B,DGCR2,ANG,DGCR6,MKKS,SOX15,MKL2,SRD5A2,BOC,PRL,KIRREL3,ALX1,EGR3,EGR2,LDB1,DMRT1,DMRT2,INHA,ALK,FSHR,ACVR2A,EVPL,SMTN,EYA2,BPTF,KRTAP5-9,BTG1,ITGB1BP2,SCIN,GHRL,UTP3,KRT6A,KRT6B,RTN4RL1,UBE3A,POU1F1,KRT9,CALCA,MTM1,HAND1,KRT5,RASGRP4,MYL6B,HAND2,COMP,POU2F3,PTH,KRT1,TGM3,KRT2,RTN4RL2,TGM5,ERCC3,ERCC2,SCG2,ZBTB7B,PTPRC,FOXL2,PLAC1,CENPF,CBY1,SPARC,SIRT2,MAP1S,CASP14,SPRR1A,SPRR1B,BMPR1B,IGFBP3,IGFBP4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SEPT5,SYT1,UTS2,KCNC4,SNCAIP,SLC6A1,GRIK1,GRIK2,SYT5,GABRB2,SLC6A2,GRIK4,SLC6A4,CNP,VIPR1,GDNF,TGFB2,HTR1B,GRIN2B,APOE,GALR3,GALR2,CHRNA5,CHRNA4,CHRNA6,CHRNA1,EIF2B2,HTR1D,NQO1,HTR1F,EIF2B4,EIF2B5,HTR1E,KCND2,SCN2B,KIF5A,BAIAP3,STRN4,GRIN2A,BSN,NTSR1,GABRR2,MAPK1,CBLN1,DOC2A,GABRR1,COLQ,HTR7,HTR6,AKAP5,NPTN,CARTPT,PMP22,SRI,KCNMB3,KCNMB4,DRD1,SCN1B,CALY,DRD2,DRD4,KCNA1,PXK,RIMS1,KCNMB1,KCNMB2,HCRTR2,HCRTR1,GAD2,SYPL1,GAD1,HAP1,NOVA1,UNC119,CPNE6,OMP,SNAPIN,HOMER1,KCNK3,PDE7B,NPY,RAPSN,MTNR1B,CHRNB4,CHRNB3,CACNA1E,QPRT,RIT2,CHRNB1,CORT,SST,CHRNE,CACNA1B,PPARD,GLRA1,GABBR2,KCNIP1,MBP,KCNQ5,SLC1A2,KCNQ3,SLC1A3,FXN,NMUR1,NMUR2,SLC1A6,DLG4,KCNQ2,SLC1A1,TAAR5,NPFF,PCDHB9,KCNMA1,GPR176,PRG3,PCDHB5,PCDHB6,PCDHB3,NPBWR1,PCDHB4,NPBWR2,PI4KA,PCDHB2,STX1B,GRM1,GRM5,AMIGO1,GRM4,GRM3,GRM2,KIF1B,GRM7,GHRL,CNTN4,UBB,ALDH9A1,RAB3A,HCRT,CPLX1,OPRK1,PCDHB14,AKAP9,PCDHB13,PCDHB11,HPRT1,PCDHB10,GCH1,AMPH,CD9,NPTX1,SYN1,HRH3,SYN3,PCDHB16,SYN2,CD24,HTR3A,HTR3B,GCHFR,APBA1,DTNA,COL4A4,KLK8,PLP1,GLRB,MPZ,NF1,NLGN1,MAL,SOD1,DBH,GABARAP,ACCN1,YWHAG,ATXN3,YWHAH,KCNN1,GRIA2,GRIA1,KCNN3,SLC6A5,CRH,MYCBPAP,SLC5A7,HTR2C,CHRNA10,HTR2A +PWCOMMONS GENE SILENCING http://www.broadinstitute.org/gsea/msigdb/cards/GENE_SILENCING.html HDAC5,CHMP1A,DGCR8,DICER1,SIRT4,TNP1,SIRT5,SCMH1,SIRT1,HELLS +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html LYN,NF2,IL29,HCLS1,SOCS1,STAT1,IL31RA,IL20,CLCF1,F2,IL12A,IL22RA2,F2R +PWCOMMONS INTRACELLULAR SIGNALING CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_SIGNALING_CASCADE.html ALS2,RPL17,MED24,BTK,MAP3K7,AGTR1,MAP3K6,MAP3K5,HTR1B,MAP3K4,DIRAS3,MC1R,LTB4R,MAP3K9,TLK1,GNG3,TLK2,HTR1D,DDAH2,MAP2K7,CCNA2,DDAH1,HTR1F,HTR1E,ADAM9,TNIK,ROCK1,PIK3CB,RREB1,KIAA1804,MED12,MED14,MED13,MARK1,MARK2,BCL2L10,SSTR4,RAD1,SSTR5,SSTR2,SIRPG,SSTR3,MED16,IFNB1,SSTR1,MED17,MC2R,F2,MAPK9,MAPK8,GRAP2,EIF2AK3,IRAK1BP1,GNAI3,GNAI2,DUSP10,RUNDC3A,PPT1,ARF6,BCL2L1,ARFGEF2,ADCYAP1,ADRB3,RAC1,DUSP16,DIABLO,ARHGEF10L,TAOK2,MAP2K4,SPHK1,TAOK3,DUSP22,ATR,VDAC1,APOL3,CDC42BPG,RGS1,RGS3,RGS4,AVPR1B,AVPR1A,CDC42BPA,HGS,TNK2,CDC42BPB,OPRM1,SLC20A1,PDIA2,ZNF675,BNIP3,DAXX,LATS1,LATS2,NOD2,NOD1,NMUR1,NMUR2,TICAM1,ANP32A,TICAM2,GUCY1A3,MC5R,TMEM101,FGF2,SRPK2,AIFM3,LYN,AIFM1,TP53,NDUFA13,FLNA,SRPK1,CARD10,ELMO1,MAST1,GNAQ,GNB1,RIPK1,GIPR,IL12A,GNAS,GUCY1B3,EEF1D,OPRK1,NPY2R,C5,PML,FPR1,MKNK2,RTKN,TRIM13,MKNK1,DGKA,SOS1,PLEKHG5,MC3R,PDK1,IL8,OPRL1,DGKK,IGF1,CRIPAK,RICTOR,NPY1R,TP73,SELS,NAE1,RPS6KA5,DUSP4,CDH13,DUSP2,P2RY11,RPS6KA4,RPS6KA2,EPGN,GSK3B,RASSF1,NLRP12,MC4R,DUSP9,HTR2B,NMBR,DUSP8,DUSP6,GNA15,SLC44A2,ZAK,STK38,ATP6AP2,TSPAN6,TNFSF15,TNFSF14,RRAD,RBM9,PRKAR2B,PRKAR2A,NLRC4,NLRC3,CDKN2A,APOA1,GALR1,MIER1,MDFIC,GALR3,GALR2,TDGF1,RRAS,RGN,GPR89A,EDARADD,EGFR,BCL10,BST2,NUDT4,IL29,GOLT1B,DFFA,RELA,DFFB,CECR2,FADD,ARID1A,IL20,SGSM3,MIB2,STMN1,TNFAIP3,FGD2,TRAF2,ARHGDIG,FGD1,STYXL1,DRD1,CCL2,LITAF,ADORA2B,DRD2,DRD5,MRAS,UBE2V1,CXXC5,MAPKAPK2,ABCA1,P2RY6,DOCK1,P2RY4,P2RY2,APOC3,P2RY1,ADRA2A,OTUD7B,ADRA2C,DYRK2,TRAF7,TRAF6,FGD5,EGF,TRAF5,FGD6,RAB6C,FGD3,ARHGDIA,FGD4,ARHGDIB,TEC,CCM2,VAV3,EFS,TRADD,TRAF3IP2,ATF6,LAT,IKBKE,TNFSF10,TSC1,PLK2,VCP,PRKAR1A,IKBKG,ADRA1B,MTNR1B,ADRA1A,DDX54,TRIP6,ABL1,ADRA1D,MTNR1A,NBN,GABBR1,PRDX4,PINK1,FER,GABBR2,CASP3,NDUFS4,CASP9,CLCF1,HMOX1,RASL10A,CASP7,CASP8,RHOA,RHOB,RHOC,RHOD,CASP1,CASP2,RHOG,RHOH,SGK2,PTGER4,LIMK1,SLA2,CYCS,PKN1,IFI16,ESR2,NEK11,SH2D3C,ADRB2,CHRM5,SH2D3A,ADRB1,CHRM2,CHRM1,LCK,ERN1,TREM1,TSHR,GAP43,PTAFR,FKBP8,PPM1A,BRSK1,CALCOCO1,HRH1,TMED4,REL,HRH3,HRH2,SLC35B2,REN,SH2B2,NFATC1,COL4A3,SECTM1,NF2,NF1,BAD,ICK,MED30,BAX,JAK2,FAF1,APAF1,OPRD1,ADORA3,VAPA,ADCY7,VAPB,STAT5A,EDN2,LHCGR,STAT5B,BAK1,MYD88,APOE,WNK4,ABRA,CHRNA7,GTPBP2,DBNL,PLD2,PLD1,C5AR1,RINT1,WNK1,HTR4,WNK3,RAD9A,CD40,WNK2,PPARGC1B,FARP2,CRHR1,CRHR2,ATP2C1,HTR7,CCR3,UBR5,CCR2,HTR6,PIAS1,AMFR,NEK6,ACR,PTPLAD1,HUS1,STK17B,MYO9B,CHEK1,STK17A,AKAP11,CHEK2,C16ORF5,TYROBP,BLNK,HIP1,MDFI,CNKSR1,ABR,LGALS1,CIDEB,ARFIP2,NDFIP1,NDFIP2,SMAD3,CIDEA,SMAD2,TPD52L1,OXSR1,TAX1BP3,HOMER1,ECM1,LGALS9,NOTCH2,NUP62,NPY,GRK5,CLEC7A,GHSR,CCKAR,MCHR1,ZBTB33,WASF2,GJA1,PTEN,CANT1,CAMKK2,EDNRA,GPX1,TRIAP1,EDNRB,PDPK1,TGFA,CAP1,XCR1,TOP2A,DEDD2,LTBR,CCKBR,GZMA,GZMB,NFAM1,SCAP,AMBP,GRM5,PROK2,GRM4,MED4,ZDHHC17,GRM3,GRM2,TNFRSF10B,GRM8,LAX1,GRM7,ZDHHC13,GADD45G,PSEN2,MAP3K10,SIAH2,GADD45B,MAP3K13,MAP3K12,MED1,MAP3K11,CXCL1,BID,CAPS,AVPR2,PARD3,CARHSP1,NMI,CCR1,TFG,FKBP1A,SFN,GCGR,AZU1,PLCL1,STAT4,SQSTM1,BCL3,CC2D1A,CD24,CHP,CD27,FYB,CAP2,NLK,HCLS1,MAPK11,MAPK10,STAT1,SOD1,BIRC2,YWHAE,STAT3,STAT2,YWHAH,FYN,MAPK13,IFT57,MAPK14,EEF1E1,C7ORF16,BIK,F2RL3,NRTN,TBK1,FGF13,PMAIP1,MBIP,TLR6,VIPR1,GHRHR,IL31RA,DMPK,PTGIR,TMEM9B,CASP8AP2,SPRED2,SPRED1,GLP2R,ACIN1,PRKACB,PAG1,MYO6,SOCS2,SOCS3,MADD,SOCS1,PICK1,SOCS6,STK4,FOXN3,STK3,TRAT1,MAP4K3,PTHLH,TRIM38,MAP4K4,PLCE1,MAP4K5,LAT2,CARTPT,RIPK2,AKAP7,ERC1,GLP1R,RAD17,KALRN,PPP5C,FGFR1,DERL2,DERL1,FGFR3,MCL1,GRAP,GRB2,BLK,MAP4K2,MAP4K1,DERL3,SRC,RRAGC,CORO2A,GMIP,CNR1,CNR2,MTCH1,PLCH1,GML,ATRIP,STK38L,CFLAR,TBL3,CARD8,CARD9,MALT1,BRCA1,BBC3,LTB4R2,CORT,SMC1A,IFI6,IL22RA2,PRKAG3,TACR1,FASLG,ARHGAP4,AKT1,ARHGAP5,PCBP4,CXCR4,ANG,ARHGAP1,SHC1,CALCRL,PAK1,PLCB2,CHUK,IRAK2,IRAK1,RALBP1,G3BP1,ADIPOR2,PIGU,ADIPOR1,ARHGAP27,MINK1,ARHGAP29,DAPK2,DAPK3,ECT2,IFNAR1,DAPK1,MFN2,UBE2N,IFNAR2,CRKL,GHRH,KRIT1,ITGB1BP1,CD81,CFL1,HIPK2,GHRL,PRKD3,CALCR,GPR3,CALCA,TNFRSF1A,MOAP1,MAP3K3,ROPN1B,MAP3K2,RASGRP4,RASGRP1,PPAP2A,SCG2,GPS1,STAMBP,FOXL2,DNM1L,RGS19,EDA2R,PARK7,GSG2,GPS2,SH3BP5,THRAP3,MAPK8IP2,MAPK8IP3,MAPK8IP1,TIAF1,F2R +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html PTPRC,TRAF2,CRTAM,CADM1,IL28RA,APOBEC3G,MALT1,FOXP3,APOBEC3F,NCR1,MAP3K7,TARBP2,IL12A,IL12B,TRAF6 +PWCOMMONS REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION.html SLC2A4RG,XRCC6,HOXD13,MED23,RORB,REST,MED21,ZNF254,MED20,CITED1,CITED2,EPC1,MED26,FOXF1,FOXF2,MED27,PQBP1,VPS4B,ZNF396,PATZ1,IKBKAP,ZNF45,PCBD2,RREB1,RXRA,ZHX1,ZHX2,MECP2,MED12,ZHX3,MED14,MED13,HNF4G,NME2,ZNF238,HNF4A,MED17,SMARCAL1,TGIF1,MYBBP1A,ZNHIT3,TRAPPC2,CRTC1,ZNF76,VPS72,FOXH1,HEXIM2,HEXIM1,ZNF74,TCF4,VEZF1,TCF3,ARHGEF10L,DMBX1,UTF1,TCF7,KLF12,TGFBR1,PHB,KLF10,MAP2K3,KLF11,ESRRG,MSTN,TFCP2,MZF1,HNF1B,ELF1,HNF1A,ELF2,HTATIP2,ELF4,EZH2,SPI1,TP63,ZNF345,DAXX,NOD2,ZNF350,ZNF148,ZNF146,CREG1,BRD7,SPIB,HSF4,MYC,BRD8,TAF1L,ZNF281,ATF7IP,ZNF282,PTF1A,TP53,NDUFA13,TLE1,FOSB,ZNF143,FLNA,JMY,ARHGEF11,MYCN,GTF2H1,MXD4,CIAO1,INHBA,CARD11,EREG,PFDN5,ZNF136,C19ORF2,RUVBL1,NSD1,CLOCK,ZMYND11,ZNF274,CREM,PML,NUFIP1,ZNF367,ZNF35,ZNF177,ZNF174,PER1,LIMD1,SUPT4H1,FOXD3,IL4,MYF6,ZNF263,LMX1B,TRIM28,MYF5,ZNF24,TRIM27,TNP1,ELAVL2,PHF12,TRIM22,TP73,ATRX,RPS6KA5,ZNF157,MNAT1,RPS6KA4,RBAK,FOXE1,NARFL,TCEB3,PHF5A,TCEB1,NR5A1,MMS19,STK36,RBM9,TCEAL1,TGFB1,CDKN2A,NLRC3,SMARCD2,SMARCD3,MDFIC,SMARCD1,SCRT1,BCL10,ZNF593,IL29,RELA,HDAC10,ARID1A,CSDA,JUNB,DDIT3,PA2G4,HIF1A,EP300,TIMELESS,TCFL5,SMARCE1,TFAP2B,MNX1,SMARCA5,EDF1,TFAP2A,TFAP2C,EDA,SMARCA1,SMARCA2,HMGB1,EID1,EID2,CNBP,HMGB2,LITAF,UBE2V1,ABCA2,PYDC1,NR2C2,CXXC1,VDR,MEIS2,SMARCB1,RPL6,TEAD4,SNF8,JUND,HELLS,ZNF423,TFDP1,EPAS1,CREBZF,TAF8,NEUROG1,BRIP1,UIMC1,ATF6,HDAC5,ATF5,HDAC4,ATF4,NRF1,HDAC2,DYRK1B,SMARCC1,ATF7,PRKAR1A,SMARCC2,HIVEP3,ABL1,IKBKB,HDAC8,E2F1,FOSL2,RSF1,ARID4A,E2F6,DEDD,CTCF,DEK,ZNF202,PRDX3,PAWR,TMF1,PAX8,LRRFIP1,NRG1,FOSL1,NFX1,ARID5B,SLA2,ARID5A,ESR2,RB1,CDK7,HMGA2,HMGA1,PRPF6,TARBP1,TARBP2,NCOA6,ERN2,ZFPM2,JMJD1C,UBB,CARM1,ACVR1,BCLAF1,NFYC,NFYB,EGLN1,NFYA,HIC1,TFAM,TSC22D3,RGMB,ORC2L,CHD2,CHD1,NFATC2,NFATC3,CHD4,NFATC1,CHD3,VHL,CEBPG,CREB5,ID2,DBP,ID1,ID4,ID3,FST,HIRA,SIN3A,WWP1,TRAK1,ABRA,RARB,IFNK,SUPT5H,TWIST2,PITX2,TWIST1,YY1,TAF6L,PPARGC1B,UHRF1,PIAS4,MTF1,TGFBRAP1,PRDM1,SUDS3,AFAP1L2,CALR,PLAGL1,NR1H2,DRAP1,HTATSF1,MAML3,BCOR,TCF25,NKX2-5,MDFI,NKRF,KLF7,BMP2,IKZF3,KLF9,SUB1,MAML1,CREBBP,MAML2,SMAD4,RYBP,SMAD3,SMAD2,UBP1,NOTCH2,NR1I2,NUP62,RNF4,NOTCH4,JAZF1,TCF19,BMP7,RBPJ,ZFHX3,ENG,TCF12,KLF4,TCF15,BMP6,ZBTB32,PPARD,ACVRL1,TBX22,TBX21,PPARG,NFKB2,ZEB1,HSBP1,GLI2,GLI1,KCNIP3,CAMKK2,ZBTB38,BLZF1,GFI1B,NR2F2,TBX10,ZNF354A,CCNH,NFAM1,SCAP,RBBP8,SIGIRR,CTNNBIP1,MED6,MED7,CHMP1A,RIPPLY1,SRCAP,MAP3K13,TBX19,MED1,POLR2L,POLR2K,EHF,ZBTB16,SUFU,SUMO1,MRPL12,NR1D2,SQSTM1,LANCL2,GATAD2A,BCL3,PEX14,BCL6,MLLT6,POLR3G,TBX3,TBX2,HCLS1,TBX5,ILF3,POLR3C,SNAI2,STAT3,STAT2,SOD2,PREB,YWHAH,UBTF,ILF2,YAF2,NEUROD2,PHF21A,PBX1,RBM14,APBB2,PBX3,APBB1,PBX4,MYOD1,CRABP2,ARNT2,FOXO1,FOXO3,FOXO4,GATA1,HOXC6,GATA6,HOXC5,GATA4,MYST2,MYST1,MYST4,GABPB2,MYST3,MYO6,FOXN1,ZNF189,ARNTL,NR0B2,NR0B1,ELL3,TRERF1,FOXN3,AHR,IGSF1,TIAL1,ERC1,GCLC,TFAP4,SNX6,ELK1,ELK3,NPM1,RUNX1,RUNX2,RNF14,SREBF1,NFE2,SAP18,SNW1,GSC2,FOXP3,BRCA1,SREBF2,PPIE,GCM1,DNMT1,RFX3,MAFA,SOX21,POU6F2,FOXK2,NR6A1,PDCD4,BUD31,MEN1,FOS,ACVR1B,POU5F1,PCGF6,ATP8B1,POU4F2,POU4F1,SOX18,MKL2,EGR1,ELP4,KHDRBS1,ELP3,NANOG,ELP2,SP100,LDB1,SOX12,NLRP3,UBN1,NRIP1,UBE2N,PRKCQ,ACVR2B,BPTF,ZMIZ2,MDM2,MDM4,CUX1,COMMD7,ZFP161,ING4,GLIS3,SUPT3H,ING2,TNF,GLIS2,GLIS1,HCFC1,HCFC2,TCF7L2,CALCA,TNFRSF1A,NPAS2,POU2F3,PYCARD,POU2F1,GFI1,ERCC3,CAMK2A,ERCC2,ENO1,ERF,SOX30,SIRT4,SIRT5,EDA2R,CENPF,CBY1,SIRT1,SIRT2,ATXN1,SP1,SP2,DR1,IRF7,SP3,THRAP3,SP4,IRF8,GRLF1,IRF2,IRF4,TSSK4,CRK +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html BMP10,GTPBP4,ACVRL1,NF2,TBX5,NF1,PTEN,PLG,SHH,THY1,VCL,MIA3,ALOX15B,CLIC4 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html TSPO,HSP90AA1,TIMM17A,MTX2,TIMM17B,TP53,BNIP3,MIPEP,BCL2L1,TIMM23,TIMM44,MFN2,TRNT1,STARD3,BAK1,BCL2,C3ORF31,SLC25A1,TOMM22,SLC25A15,TOMM34 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html ZAK,ZNF675,DAXX,MAP3K6,MAP3K5,MAP3K4,MDFIC,MAP3K9,MAP2K7,DBNL,TNIK,KIAA1804,MINK1,PKN1,AMBP,MAP4K3,SH2D3C,MAP4K5,SH2D3A,CRKL,HIPK2,MAP3K10,MAPK9,MAPK8,MAP3K13,MAP3K12,MAP3K11,ADORA2B,PTPLAD1,DUSP10,MAP4K2,MAP4K1,MAP3K2,CD27,MDFI,GPS1,CCM2,CARD9,TAOK2,TAOK3,MAP2K4,EDA2R,TPD52L1,MAPK10,GPS2,MAPK8IP2,MAPK8IP3,MAPK8IP1,DUSP9 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ZAK,AIF1,KNTC1,TTK,PKMYT1,CDC16,FOXO4,TGFB1,CITED2,TGFB2,CUL3,CUL2,CUL5,CDKN2A,DIRAS3,CDKN2B,CDKN2C,CDKN2D,CCNA2,MAP2K6,CUL1,ANAPC2,GTPBP4,MADD,RINT1,TBRG4,RAD9A,FOXN3,RAD1,PA2G4,MAD2L1,UHRF2,TIMELESS,ALOX15B,ZWINT,TBRG1,MAD2L2,RAD17,NEK6,PPP2R3B,CDK5R1,CDK5R2,STK11,NEK2,HUS1,TIPIN,ANLN,AFAP1L2,CHEK1,CHEK2,RCC1,CCNG1,SESN1,CCNG2,CDC37,UHMK1,PIN1,PLAGL1,HEXIM2,HEXIM1,NPM2,CDC123,FBXO5,EGF,GML,ATRIP,RUNX3,BMP4,BMP2,TP53BP2,SPHK1,CDC23,SMAD3,ATR,GAS1,GAS7,ATM,CDKN1C,NOTCH2,CDKN1B,MYO16,BMP7,SMC1A,CCNT2,NBN,C13ORF15,CCNT1,RPRM,LATS1,PTEN,LATS2,CDT1,CCNE2,TRIAP1,PCBP4,PRMT5,TGFA,RHOB,CDK10,CDK5RAP3,FANCG,CDK5RAP1,MYC,SERTAD1,ZW10,DLG1,CDC7,KHDRBS1,CDC6,CCNK,DDB1,HERC5,TP53,NUSAP1,RB1,INHA,CDK7,UBE2C,CDK2,NEK11,RBBP8,GTF2H1,JMY,MFN2,PPM1G,INHBA,DHRS2,EIF4G2,CHMP1A,CCND1,XPC,CCND3,EREG,CCND2,BTG4,BTG3,ERN1,BUB1B,FOXC1,CHFR,GADD45A,PPP1R15A,CKS1B,ING4,PML,HCFC1,IFNW1,BCCIP,ASNS,BRSK1,ZBTB17,MLF1,BUB1,ERCC3,ERCC2,APC,CD28,PTPRC,TBX3,IL8,GMNN,BIRC5,CDC25C,CDKN3,CDC25A,NAE1,PPP1R9B,MNAT1,MAPK12,CUL4A,EPGN,RASSF1,CKS2,PPP1R13B,APBB2,APBB1,HPGD +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html RSF1,NAP1L1,NAP1L3,NAP1L2,NAP1L4,SET,HIRIP3,TLK1,TLK2,ASF1A,HELLS,MTA2,SIRT4,TNP1,SIRT5,ARID1A,SIRT1,HMGA1,SUV39H2,HDAC5,SMARCE1,SUPT16H,SMARCA5,CHAF1A,CHAF1B,HDAC8 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html KCNH1,ACTA1,PICK1,MYOZ1,KCNIP2,IL21,TTN,FARP2,NRCAM,KRT19,RND1,EREG,MYH11,CACNA1H,AGRN,ADAM12 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ALS2,RRAD,DMPK,ARHGAP4,APOA1,ARHGAP5,DIRAS3,APOE,RASL10A,ARHGAP1,RHOA,RHOB,RRAS,ABRA,RHOD,FGF2,RHOG,GTPBP2,DBNL,PLD2,PLD1,ROCK1,RALBP1,LIMK1,RREB1,G3BP1,ARHGAP27,ARHGAP29,ELMO1,FARP2,MFN2,PLCE1,CRKL,GNB1,SGSM3,KRIT1,CFL1,LCK,SIAH2,GRAP2,FGD2,FGD1,ARHGDIG,GRAP,GRB2,MRAS,PTPLAD1,RTKN,RUNDC3A,ARF6,MYO9B,ABCA1,RRAGC,DOCK1,ROPN1B,RASGRP4,SOS1,RASGRP1,RAC1,APOC3,ADRA2A,CHP,FGD5,RAB6C,FGD6,FGD3,ARHGDIA,FGD4,ARHGDIB,PDK1,CNKSR1,ABR,VAV3,NF1,ARFIP2,RGS19,IGF1,TAX1BP3,PARK7,CDH13,LAT,NOTCH2,CDC42BPG,TSC1,RASSF1,CDC42BPA,TNK2,CDC42BPB +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html KLRC4,MICB,KLRC2,MICA,KLRC3,PAGE1,ZNF148,LBP,FOSL1,SPN,C5AR1,NCF2,LY96,NCF1,GNLY,CD160,DCDC2,NCR2,NCR1,TRAT1,HLA-G,CCR9,GAGE1,LILRB2,CCR6,KLRG1,CCR5,LYST,CCR3,CCR2,CX3CR1,MNDA,GAGE8,FAIM3,CLEC5A,KIR2DL4,KIR3DL2,PRF1,ADORA2B,ADORA2A,CXCL9,UMOD,CCL5,ITGB1,LGALS3BP,VEZF1,TYROBP,IL4,TCIRG1,ITK,BECN1,IL1RL2,CD300C,CD5L,KIR2DS3,LSP1,CD19 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html MBL2,TRAF2,CADM1,BCAR1,SPINK5,TLR8,TGFB2,CFHR1,MAP3K7,KRT1,IFNK,C2,TRAF6,IL4,PTPRC,CRTAM,IL29,SLA2,MALT1,NFAM1,FOXP3,NCR1,TRAT1,CD1D,THY1,UBE2N,LAT2,EREG,FYN,IKBKG,IL12A,CD79A,IL12B +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html DIS3,NOLC1,DKC1,EXOSC7,RPS14,EXOSC2,ERN2,EXOSC3,POP4,RRP9,GEMIN4,FBL +PWCOMMONS SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SYSTEM_PROCESS.html KCNE1L,RP1,PTGS2,RP2,PTGS1,PGAM2,KIFC3,AGTR2,HTR1B,GRIN2B,LTB4R,KCNK5,GUCA2B,HTR1D,HTR1F,HTR1E,CDH23,OPA3,OPA1,CRYAA,SCN2B,CRYAB,KIF5A,GRIN2A,BSN,SERPING1,MYH7,MYH6,SSPN,MAPK1,PITPNM1,DOC2A,RYR1,SMPX,FLII,RYR2,PMP22,UNC13B,RTP3,CYP1B1,SCN1B,RTP4,PPYR1,OTOR,KCNJ1,HCRTR2,HCRTR1,NPHP3,SYPL1,IMPG1,MYO15A,IMPG2,RLBP1,NPHP1,TECTA,UNC119,GUCY2F,SPHK1,PCDH15,KCNK3,GUCY2D,RAPSN,AVPR1A,CHRND,CHRNE,CHRNG,OPRM1,CYP2J2,LDLR,GLRA1,TRPV2,USH1G,DFNB31,RDH8,TYR,NMUR1,NMUR2,SLMAP,GUCY1A3,USH2A,SCN10A,KCNG2,ACTA1,NPBWR1,NPBWR2,PI4KA,GRHPR,CACNG1,GPR98,RDH5,OTOF,USH1C,GUCY1B3,GNAS,GNB3,STBD1,KCNH2,SORD,TBC1D8,OPRK1,PCDHB14,PCDHB13,PCDHB11,PCDHB10,AMPH,PCDHB16,CKMT2,KCNE1,KCNE2,MYOM1,HTR3A,HTR3B,SLC8A1,ACTC1,OPRL1,ACCN1,ACCN3,NPHS2,NPHS1,MYCBPAP,GAMT,HTR2B,CTNS,HTR2C,HTR2A,KCNC4,GRIK1,TNNC2,GRIK2,ATP6AP2,TNNC1,GRIK4,RCVRN,NR2E3,CXCL12,CXCL10,TGFB2,GALR3,TGFBI,TIMM9,GALR2,ASPH,RGR,COCH,PABPN1,KCND2,MYO3A,BAIAP3,TAZ,SIX3,VAX2,NTSR1,NTSR2,SIX6,GABRR2,RENBP,GABRR1,DLL4,HSPB7,KBTBD10,C3AR1,DRD1,ADORA2B,ADORA2A,DRD2,DRD4,KCNA1,APOC2,OPN1SW,ABCA4,RABGGTB,RABGGTA,PDE6A,PDE6B,PDE6C,PDE6D,HCN4,HCN2,MUC2,AIPL1,MYO1A,EPB41,FSCN2,KCNB2,EFEMP1,SNAPIN,PDE6H,CACNA1S,PDE6G,PDE7B,MTNR1B,MYH11,CACNA1H,ADRA1A,CACNA1E,CACNA1F,XCL2,CACNA1B,RHO,CYB5R3,CYB5R4,CORIN,PAX6,GABBR2,PAX3,PAX2,MBP,SLC1A2,SLC1A3,DES,SLC1A6,DLG4,SNTB1,NPC1L1,SCN7A,SLC1A1,AKR1C1,KNG1,RAX,TRDN,TAS2R16,DHRS3,CHGA,KIF1B,TAS2R14,CHRM2,GAA,CNTN4,UBB,OAT,IFT88,CASQ2,ALDH9A1,ROM1,ABLIM1,HCRT,NDP,TIMM10,CLCNKA,OXTR,CLCNKB,CABP4,TIMM13,CD9,HRH3,REN,TAS2R43,SCNN1G,SCNN1B,SCNN1A,SCN5A,GCHFR,COL4A4,COL4A3,GUCA1A,PLP1,KLK8,GNAO1,GUCA1C,OLR1,NF1,MAL,RCAN1,DBH,PRPH2,VSX1,RDH12,RDH10,PNOC,PDC,TBL1X,SCN4A,SNTA1,SYT1,UTS2,ADORA3,AQP9,SYT5,PITPNA,UTRN,AQP5,AQP4,AQP7,AQP6,AQP1,AQP3,AQP2,ATP2B2,APOE,CHRNA5,CHRNA4,CHRNA7,ERAP2,CHRNA6,EIF2B2,CHRNA1,EIF2B4,EIF2B5,CLNS1A,CLRN1,C5AR1,STRN4,KRT12,UBR3,OR1D2,OR1D5,SAG,COLQ,TACSTD2,HTR7,HTR6,NPTN,IQCB1,KCNMB3,ALDOA,CLCN1,KCNMB4,CALY,KEL,RBP3,ELN,DAG1,PXK,GPR143,MYO9A,RIMS1,KCNMB1,KCNMB2,ACE,GAD2,EMD,GAD1,HAP1,GNAT1,COL18A1,TRPC3,CRYZ,HOMER1,SFRP5,TULP2,TULP1,CEL,NPY,ATP2A1,CHRNB4,CHRNB3,QPRT,TMOD4,UTS2R,CHRNB1,RIT2,ENG,CRYM,CLCN5,GRK1,GJA8,PPARD,OR52A1,ACVRL1,TAS2R4,TAS2R5,MYO7A,MYBPC3,TAS2R3,GJA1,TAS1R3,TAS1R1,KCNIP2,KCNJ12,KCNIP1,TAS1R2,GJA5,GJA3,CRYBB1,GPX1,FXN,COL11A1,DNAJC19,CRYBB3,CRYBB2,KCNMA1,PCDHB9,RPGR,GPR176,PCDHB5,ZNF354A,PRG3,CCKBR,PCDHB6,PCDHB3,PCDHB4,PCDHB2,CDS1,STX1B,GRM1,SLIT2,GRM5,AMIGO1,SLC26A4,PROK2,GRM4,SLC26A3,GRM3,SLC26A5,GRM2,ADM,GRM8,GRM7,NPPB,CRYBA1,NPPA,CRYBA4,SGCA,CLDN16,AVPR2,RAB3A,OPN1LW,SHROOM4,COL3A1,HPRT1,GCGR,GCH1,GJC1,BEST1,AGT,ARR3,CHM,CD24,APBA1,NMU,DTNA,DFNA5,NOS1,OPN1MW,NLGN1,NPR1,NPR2,BRS3,GJB6,SOD1,GABARAP,GJB2,YWHAG,YWHAH,CHML,MEOX2,GRIA2,GRIA1,ATP6V0A4,OPN4,SEPT5,OCLM,SNCAIP,SLC22A18,SLC6A1,GABRB2,SLC6A2,WFS1,SLC6A4,RPE65,CNP,CNGB1,TTN,VIPR1,GDNF,CNGB3,SCTR,DMPK,CRYGA,DYSF,LPA,CRYGD,NQO1,MYO6,CNGA3,CNGA1,TIMM8B,TNNT2,CBLN1,PLCE1,TNNT1,AKAP5,CARTPT,FXYD1,SRI,MYL6,GCLC,MYL5,MYL2,DIAPH1,ATP6V1B1,GCLM,MYL9,PRR4,NOVA1,LPL,NFE2,CPNE6,OMP,HOXB2,WDR1,CORT,SST,COPA,TACR2,CYP11B2,POU6F2,RRH,CRX,KCNQ5,KCNQ4,KCNQ3,POU4F3,KCNQ2,TAAR5,KCNQ1,NPFF,RS1,EYA3,EML2,EYA4,EYA1,ALDH7A1,SMTN,NRL,GHRL,AOC2,CPLX1,PPP1R12B,NDUFB9,LUM,AKAP9,TPM1,MYOT,CALCA,NPTX1,MTHFR,SYN1,MYL6B,SYN3,MYBPH,SYN2,POU3F4,NFAT5,CNN1,HRC,GLRB,MPZ,RGS16,ATXN3,KCNN1,SLC6A8,ATXN7,SLC6A5,KCNN3,CRH,SLC5A7,CHRNA10 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html TRAF2,PARD3,ZAK,EDN2,TNFSF15,AZU1,MAP3K7,MAP3K4,ANG,TRAF7,PPAP2A,TRAF6,IRAK1,CCDC88A,TAOK2,PICK1,MALT1,CARD10,CHRM1,GADD45G,CARTPT,GADD45B,MAP3K13,PRKD3,GAP43 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html ALS2,FGD2,FGD1,TSC1,RALBP1,NF1,ARHGAP27,FGD5,FGD6,FGD3,FGD4 +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html SHROOM2,FOXL2,MAFB,NF1,JAG2,RORB,ZIC1,SOD1,TGFB2,THY1,DFNB31,BAX,GAA,CEP290 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MMS19,ARNT2,XRCC6,FOXO1,RORB,FOXO3,MED21,TGFB1,CITED2,EPC1,MDFIC,SMARCD3,FOXF1,SMARCD1,FOXF2,GATA4,SUPT5H,MYST1,MYST4,MYST3,BCL10,MYO6,PCBD2,IL29,RXRA,MED12,MED14,ARID1A,ARNTL,MED13,ELL3,TRERF1,PPARGC1B,HIF1A,HNF4A,MED17,TFAP2B,SMARCA1,CRTC1,ELK1,AFAP1L2,PLAGL1,FOXH1,MAML3,RUNX1,TCF4,TCF3,ARHGEF10L,ZNF423,UTF1,EPAS1,TAF8,MAML1,MAP2K3,CREBBP,MAML2,ESRRG,SMAD3,MSTN,SMAD2,FOXP3,ATF6,ATF4,NUP62,DYRK1B,SMARCC1,SMARCC2,NOTCH4,HIVEP3,BMP7,BMP6,ELF1,HNF1B,ACVRL1,HNF1A,RSF1,ELF4,SPI1,TP63,CTCF,GLI2,CAMKK2,ZBTB38,GLI1,PAX8,MKL2,ATF7IP,EGR1,CCNH,TP53,CDK7,HMGA1,PRPF6,NRIP1,SCAP,ARHGEF11,GTF2H1,MED6,INHBA,BPTF,ZMIZ2,NCOA6,UBB,NSD1,CLOCK,MED1,ACVR1,GLIS3,GLIS2,GLIS1,NUFIP1,EHF,TNFRSF1A,RGMB,NPAS2,MRPL12,SQSTM1,BCL3,SUPT4H1,NFATC2,ERCC3,ERCC2,FOXD3,IL4,TBX5,TRIM28,CREB5,ILF3,TP73,MNAT1,YWHAH,SP1,ILF2,YAF2,THRAP3,FOXE1,IRF4,PHF5A,RBM14 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html USP7,DZIP3,TSG101,UCHL1,UBE2V1,RNF217,UBE2V2,SAE1,UBQLN3,UBE3C,MYLIP,ANAPC11,STUB1,ERCC8,FBXW7,ISG15,WWP1,RNF11,TRAF7,TRAF6,UBE2D1,USP33,RNF14,VCPIP1,RNF144B,BCL10,GTPBP4,VHL,UBE4B,CBL,PRKCG,PCNP,PARK2,UBE2C,TRIM23,ATG3,BRCA1,UBE2N,UHRF2,TSC1,HUWE1,RNF139,DDB2,MDM2,CAND1,UBB,SMURF1,AMFR +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html UAP1,CHIA,GNPDA1,CHST2,CHST4,CHST5,NAGK,EXTL2,CHIT1,SLC35A3,LARGE,CHST7,CHST6 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html BTD,GRIK1,SNCA,ARNT2,ZIC1,MOG,SHH,ZIC2,WNT1,PROP1,CEP290,PDGFC,ROBO2,UNC5C,EIF2B2,EIF2B3,EIF2B4,EIF2B5,SH3GL3,MDGA1,MDGA2,SIX3,TBR1,PITPNM1,GPR56,FOXG1,SMARCA1,SH3GL2,SNTG2,PNMA1,SH3GL1,CDK5R1,ADORA2A,SOX3,DSCAML1,PPT1,TAGLN3,SOX8,HESX1,ECE2,ATN1,B3GNT5,LHX6,IL1RAPL2,NKX2-2,DMBX1,ADAM23,HPCAL4,JRKL,CELSR1,NEUROG3,SERPINI1,NCKAP1,PCDH18,FOXP2,DLX2,S100B,MYO16,ADAM22,POU6F1,POU6F2,PAX6,GLI2,PTEN,MBP,NDUFS4,RNF103,PCP4,NMUR2,SHC3,ALX1,EGR2,CNTN6,ALDH5A1,OTX2,ALK,SLIT1,SLIT3,VCX3A,BPTF,NCOA6,CNTN4,GSTP1,CLN5,UTP3,SHROOM2,SHROOM4,UBE3A,NNAT,ZBTB16,ALDH3A2,NPAS1,NPAS2,NPTX1,DNER,POU3F3,UGT8,DCX,PTS,DCLK1,JARID2,PTPRZ1,NF1,MAL,AFF2,RCAN1,PARK2,EIF2B1,RPS6KA6,ACCN1,PSPN,RPS6KA3,MAP1S,DRP2,C7ORF16,PHGDH,NHLH2,PBX1,CTNS,PBX3,NHLH1,PBX4 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html RSF1,STK36,DPH3,PRDX3,TGFB1,BAK1,NOD2,NLRC3,CDKN2A,PRMT8,ABRA,BCL10,GTPBP4,RELA,NFAM1,NLRP3,LDLRAP1,FLNA,JMY,SIGIRR,UBE2N,PRKCQ,CARD11,ADRB2,EP300,NME1,EDF1,COMMD7,EDA,ERC1,MAP3K13,TNF,UBE2V1,EGLN1,PYDC1,ADRB3,SUMO1,BCL2,NPM1,PYCARD,BCL3,PEX14,APEX1,CAMK2A,MDFI,CREBZF,CEBPG,EDA2R,SMAD2,FOXP3,ID2,AKTIP,ID1,BAX,NARFL,ID3,TSSK4,IKBKB +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html ZFP36,ABCE1,UPF2,RNASE2,SMG6,RNASE3,SMG5,PABPC4,SMG7,RNASE6,RNASEH1,SMG1,HSPA1B,RNASEH2A,AUH,ISG20,GSPT1,PPP1R8,RNASET2,POP1,ERN2,XRN2 +PWCOMMONS APOPTOSIS GO http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOSIS_GO.html CIAPIN1,BTK,CUL3,MAGED1,CUL2,MAP3K5,AGTR2,CUL5,FAS,DDAH2,CUL1,YARS,CRTAM,OPA1,BRAF,CRYAA,CRYAB,ESPL1,BCL2L11,BCL2L10,NME5,MAPK1,NME2,SSTR3,NME3,NME1,IFNB1,F2,MAPK8,UNC13B,MYO18A,TNFRSF6B,NFKBIA,PPT1,BCL2L2,BCL2L1,HSPA1B,IFNA2,PEA15,IL17A,DIABLO,PHB,SPHK1,DUSP22,GAS2,FXR1,VDAC1,BFAR,EI24,RTN4,HTATIP2,NUAK2,PDIA2,TP63,BNIP3,ZNF346,DAXX,BNIPL,MAGEH1,CLN3,AIFM3,AIFM2,AIFM1,TP53,NDUFA13,JMY,SERPINB9,INHBA,BNIP1,BNIP2,RIPK1,IL12A,SERPINB2,IL12B,ALOX12,GPR65,PML,RTKN,PDE1B,PTK2B,PPP2CA,PCSK9,RASA1,PHLDA2,IL4,IL3,IL6,IL7,KIAA1967,PLG,TP73,NAE1,CDH13,GSK3B,BNIP3L,IL2,BARD1,ZAK,GRIK2,TNFSF15,TNFSF14,TNFSF12,TNFSF18,CRADD,TGFB1,TGFB2,NLRC4,CDKN2A,CDKN2C,CDKN2D,TIA1,TDGF1,ZNF443,IL1B,DAP,IL1A,API5,CIB1,BCL10,NUDT2,DFFA,RELA,DFFB,CECR2,FADD,IL24,HBXIP,EP300,TNFAIP8,HSPB1,HMGB1,CCL2,ADORA2A,ADAMTSL4,PRUNE2,AKT1S1,DOCK1,DYRK2,TRAF7,DDX41,ARHGDIA,TRAF3,ANGPTL4,TRADD,CDKN1A,HDAC3,TNFSF10,CDKN1B,HDAC1,VCP,IKBKG,ADRA1A,HSPD1,ABL1,DNAJB6,E2F1,IER3,DEDD,PRDX2,PAX3,PAWR,CASP6,CASP3,CASP4,CASP9,CLCF1,IAPP,RPS3A,PAX7,CASP7,CASP8,RHOB,NDUFS3,CASP2,NDUFS1,PPP2R1A,CYCS,IFI16,CDK5,LCK,ERN1,ERN2,ACVR1,DCC,DPF2,BCLAF1,ASNS,TRAIP,DPF1,IGF1R,CD2,DAD1,HSPA9,COL4A3,CEBPG,NF1,ANXA1,RAF1,BAD,ANXA5,TNFSF9,ANXA4,TNFSF8,HSP90B1,CUL4A,BAX,APAF1,CGB,CADM1,SNCA,DNAJB13,ADORA1,BAK1,APOE,TXNL1,SGPL1,CD3G,PIM1,CD38,KRT18,ALOX15B,CD40LG,TXNDC5,VEGFA,LALBA,SIVA1,CDK5R1,STK17B,CD70,CHEK2,STK17A,CALR,CD74,PLAGL1,C16ORF5,HIP1,BECN1,TP53BP2,LGALS1,SRA1,CIDEB,CIDEA,SMAD3,TPD52L1,TAX1BP1,NCKAP1,CIDEC,SFRP5,NOTCH2,RNF7,SFRP1,NUP62,PPARD,BCAR1,LY86,FASTK,NFKB1,PTEN,BAG4,GPX1,TRIAP1,BAG1,TOP2A,DEDD2,DHCR24,GZMA,LGALS12,GZMB,PROK2,GRM4,PSEN1,TNFRSF10D,PSEN2,MAP3K10,AVEN,SIAH1,SEMA4D,GADD45B,GADD45A,BID,YWHAZ,ATG12,GULP1,SFN,MIF,BCL2,BCL3,BCL6,SPATA4,AATF,CD27,CD28,TBX3,TBX5,BIRC6,BIRC5,SOD1,STAT1,BIRC3,IFT57,EEF1E1,BIK,CD14,TSPO,MAEA,CBX4,TLR2,FOXO1,EIF5A,FOXO3,PMAIP1,GDNF,MRPS30,SMNDC1,CASP8AP2,TPT1,ACIN1,MX1,SOCS2,MADD,SOCS3,BCL2A1,HRK,STK4,AHR,STK3,TIAL1,RIPK3,ERC1,GCLC,MCL1,FIS1,CSE1L,ALB,MTCH1,NPM1,GLO1,GML,BMF,RUNX3,SRGN,CFLAR,PTPN6,CARD8,HTT,MALT1,WRN,BRCA1,BBC3,CYFIP2,RHOT1,RHOT2,PDCD5,PDCD6,SST,PDCD7,IFI6,DAP3,FASLG,PDCD1,PDCD2,ACVR1C,AKT1,ACVR1B,BOK,PCBP4,CXCR4,LTA,PRKCA,NOL3,INHA,DAPK2,PRKCE,NLRP3,NLRP2,NCR1,DAPK3,NLRP1,PROC,DAPK1,TNFRSF9,BTG1,HIPK3,CFL1,SCIN,FAIM3,GHRL,NAIP,CTSB,MDM4,PPP1R15A,GSTP1,PRKCZ,ING4,TNF,TNFRSF25,TNFRSF8,MOAP1,ERCC5,UTP11L,SH3GLB1,PTH,TNFRSF18,PYCARD,ERCC3,ERCC2,PIK3R2,SCG2,PTPRC,FOXL2,IL2RB,IL2RA,DNM1L,UBE4B,SAP30BP,CASP10,SON,MAP1S,BRE,MPO,PPP1R13B,TIAF1,IGFBP3,F2R +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html NF2,SOCS1,INHA,INHBA,CDKN1A,CDKN1B,CDKN2A,CDKN2B,CDKN2C,CDKN2D,NLRP12,PPP2R4,IGFBP3 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html IL10,PAIP2B,SFTPD,BCL3,IL6,PRG3,PAIP2,NDUFA13,INHA,SOD1,FOXP3,FURIN,BRCA1,SIGIRR,INHBB,INHBA,EIF4A3,EIF2AK1,TSC1,GLA,GCK,GRM8,BACE2,NLRP12,GHRL,GHSR,EIF2AK3,APBB1,PDZD3 +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html MDFI,TAF3,PDIA3,NFKBIE,PDIA2,TOPORS,MXI1,NFKBIL1,NFKBIL2,SUPT7L,FAF1,TMSB4Y,SRGN +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html CHIA,ALG1,EPM2A,GYG2,CHIT1,B3GNT8,PYGM,GCK,GSK3B,MGAM,GAA,GYS2,DYRK2,PYGB +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html RP1,UNC119,TRPC3,PGLYRP1,NR2E3,OPN1SW,ABCA4,CD1D,SAG,PITPNM1,PDE6B,NOD2,NLRC4,NOD1,PGLYRP4,PGLYRP2,GRM6,PGLYRP3,PDC,CACNA1F,OPN4,RHO,GRK1 +PWCOMMONS CELLULAR RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_NUTRIENT_LEVELS.html SREBF1,CHMP1A,NUAK2,CDKN2B,ALB,FADS1,TP53,CARTPT,PCSK9,ASNS +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NCBP2,HTATIP2,XPO6,PDIA3,EIF5A,TNFSF14,MXI1,GLI3,TGFB1,AKT1,RAE1,ZFYVE9,DDX25,ANP32A,NCKIPSD,RANBP2,TPR,KPNB1,KHDRBS1,MCM3AP,NUP133,NUDT4,NLRP3,NUPL2,FLNA,DDX39,RPAIN,NUP205,F2,KPNA6,KPNA5,KPNA4,NUP107,KPNA3,MYBBP1A,KPNA2,KPNA1,BAT1,NUP98,TNF,NUP160,NFKBIE,CDH1,CALR,UHMK1,NUP214,CEP57,DDX19B,NPM1,DUSP16,BCL3,BCL6,TNPO1,MDFI,FYB,UPF2,UPF1,SMG6,SMG5,NXF5,NF1,SMG7,PPP1R10,SMAD3,SMG1,MALT1,HNRNPA1,NFKBIL1,ATXN1,NFKBIL2,CBLB,PPIH,TSC1,TRPS1,GSK3B,NLRP12,PTTG1IP,FAF1,XPO7,TRIP6,RERE,BARD1,F2R +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html KIF22,KIF25,NBN,KNTC1,TTK,PKMYT1,AURKA,CDC16,TTN,TGFB1,KIF2C,TRIAP1,DDX11,CDKN2B,PCBP4,PRMT5,TARDBP,TGFA,CCNA2,CDCA5,ZW10,KIF11,ANAPC5,RAN,KIF15,ANAPC4,RINT1,TPX2,NUSAP1,ESPL1,UBE2C,DCTN3,DCTN2,CHMP1A,MAD2L1,EREG,ZWINT,CLIP1,BUB1B,AKAP8,CHFR,MAD2L2,RAD17,NEK6,PPP5C,PAM,NEK2,PML,ANAPC10,CETN1,ANLN,BRSK1,ANAPC11,RCC1,PIN1,NCAPH,NUMA1,NPM2,BUB1,PBRM1,EGF,GML,CD28,SSSCA1,PDS5B,CDC23,CENPE,NDC80,BIRC5,SUGT1,CDC25C,CDC27,ATM,SMC3,SMC4,CDC25B,MPHOSPH9,NOLC1,EPGN,PLK1,CIT,SMC1A,MPHOSPH6 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html TRAF2,ATP6AP2,MALT1,AFAP1L2,SOD1,CALCA,MAP3K7,CARD11,NOD2,EREG,CD40LG,IFNG,IL12A,IL12B,TRAF6 +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html CSNK2A2,NME5,H1FNT,MAST2,HSPA2,SYCP3,CEP57,SPAG6,DDX25,TNP1,TSSK6 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html ME1,AQP9,DUOX2,DUOX1,GLRX2,GOT2,APOA2,NDUFS4,DGKD,BCL2,CHRNA4,GYS2,CHRNA7,EIF2B2,SUPT5H,EIF2B3,EIF2B4,EIF2B5,RELA,BRCA2,SOD1,EIF2B1,SELS,ABCG1,CDH13,GCK,ABAT,CHRNB2,CLEC7A,MAFA +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ALS2,FGD2,FGD1,ARHGDIG,RTKN,ARF6,ABCA1,ARHGAP4,APOA1,ARHGAP5,APOE,ROPN1B,ARHGAP1,APOC3,RAC1,RHOA,ADRA2A,RHOB,ABRA,RHOD,FGD5,FGD6,RHOG,FGD3,ARHGDIA,ARHGDIB,FGD4,CNKSR1,ROCK1,RALBP1,LIMK1,ARHGAP27,ARHGAP29,TAX1BP3,CDH13,TSC1,CFL1 +PWCOMMONS CHROMOSOME CONDENSATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_CONDENSATION.html PAM,NCAPH,CHMP1A,AIFM2,DFFB,NUSAP1,ACIN1,CDCA5,TOP2A,SMC4 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html POU6F2,JAG2,MYEF2,SMAD2,TRIM15,GLI2,SHH,WNT1,NOTCH2,EYA2,NOTCH4,IFRD1,KLF4 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html PDIA2,CLDN3,ARNT2,PML,BNIP3,EGLN2,EGLN1,TGFB2,ALAS2,PLOD1,ANG,CXCR4,PLOD2,CHRNA4,CHRNA7,CD24,MT3,EPAS1,NF1,CREBBP,SMAD4,SMAD3,HSP90B1,EP300,HIF1A,VEGFA,NARFL,CHRNB2 +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html ARHGEF2,TPPP,MAPT,KATNB1,CLASP1,MID1IP1,CLASP2,MAPRE1,STMN1,CENPJ,APC +PWCOMMONS REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTION.html CGB,VAPB,CRHBP,LHCGR,DNAJB13,PTTG1,SHH,WWP2,ADAM2,WWP1,OR7C1,GDF9,IZUMO1,CCNA1,EIF2B2,EIF2B4,EIF2B5,BYSL,CRISP1,SPAG1,LIG3,CLEC4M,BCL2L10,CRHR1,SPAG9,NME5,REC8,SPAG6,SPAG4,MST1R,WFDC2,PNMA1,ACR,DEAF1,PRLHR,TFCP2L1,CHEK1,BCL2L2,FCGRT,ADCYAP1,DUSP13,HTATSF1,HOXA10,SMAD3,COL16A1,UBP1,GGN,CYP17A1,CLGN,CDY2B,CD209,SFRP4,TSGA10,GHSR,LHB,PPARD,CSH2,PZP,YBX2,LNPEP,AGPAT6,PARN,DYNLL1,SERPINA5,RPL39L,TOP2A,DNAJC19,CTBP1,CTBP2,ZP2,HIST1H1A,PSG3,PSG1,MORC1,THEG,VCX3A,PROK2,PSG9,HIST1H1T,VCX3B,PSG8,MAST2,PSG7,EREG,OR2H2,ADM,PSG6,CLIC5,PSG5,PSG4,ADAM18,RUVBL1,EPYC,OPRK1,GPR64,XKRY,SPO11,DNALI1,CCT6B,SPANXA1,SPAG11B,AGT,CSDE1,RQCD1,HSF2BP,HSD17B3,SPATA4,DAZL,BRD2,DAZ2,TBX3,IL8,TRIM27,TNP1,PTGFR,SOD1,RPL29,MYCBPAP,NLRP14,PTCH2,WNT7A,HPGD,TOB2,NR5A1,SLC22A16,GNPDA1,HMGCR,IDE,JAG2,PSG10,EIF5A,APOBEC3G,BMP15,APOBEC3F,ANKRD7,PSG11,TGFB1,PRKACG,CSNK2A2,MDFIC,DDX25,RLN2,ITCH,SEMG1,PICK1,NR0B1,HBXIP,CDKL2,SPA17,PTHLH,WBP2NL,SYCP3,TCFL5,TESK1,TESK2,BPY2,AKAP3,XRN2,AKAP4,CCL3,CCL2,DERL1,RRAGA,SYCP1,CCL4,DAZAP1,RPL10L,OAZ3,SMARCB1,NPM2,TRO,SPAM1,AXIN1,ADAM28,MAFF,ABCB9,OVGP1,ADAM29,MEA1,TEAD3,RBMY1A1,PPIA,ADAM20,ADAM21,VCX,MTNR1A,INSL3,INSL4,RSF1,SMCP,PRKAG1,DEDD,NR6A1,MOV10L1,DEK,SCGB1A1,CXCR6,SOX15,MKKS,SRD5A2,TNIP1,APLN,KHDRBS3,FOXJ1,DMRT1,DMRT2,FSHR,OR10J1,TARBP2,AMH,NCOA4,CD81,GHRL,IFT81,DMC1,FSHB,PKDREJ,HS3ST6,DNAH9,H1FNT,TSPY1,HS3ST5,USP9Y,USP9X,SPRR2G,TAC1,OXTR,SPRR2F,SPRR2E,TAC3,CD9,CDYL,CEP57,HSPA2,SPRR2C,SPRR2D,SPRR2A,SPRR2B,LEFTY2,CD4,PPAP2A,PPAP2B,AMHR2,FOXL2,FLT1,SOX30,MTL5,RACGAP1,CENPI,PRLR,MMP23B,BAX,ACE2,CRH,PRM1,PRM2,BMPR1B,CDY1,TSSK3,LIPE,TSSK6 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html MCHR1,ADORA3,ADCY7,WASF2,GABBR1,GABBR2,GHRHR,EDNRA,EDNRB,NDUFS4,GALR1,GALR3,GALR2,PRKACB,GLP2R,CAP1,PTGER4,PTHLH,CRHR1,CRHR2,GRM4,GRM3,CHRM5,ADRB2,GRM2,ADRB1,GRM8,CHRM2,GHRH,CCR3,GRM7,GIPR,CCR2,GNAS,GLP1R,CALCR,ACR,AVPR2,DRD1,GNAI3,GNAI2,ADORA2B,DRD2,NPY2R,DRD5,OPRK1,FPR1,GCGR,ADCYAP1,GPR3,CALCA,ADRB3,ADRA2A,CAP2,OPRL1,NF1,NPY1R,RGS1,P2RY11,LTB4R2,MC4R,ADRA1B,GRK5,CORT,ADRA1D +PWCOMMONS REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_PROLIFERATION.html RARRES3,RARRES1,AIF1,PGF,BTC,EDN1,MXI1,SSR1,MAGED1,CUL3,CD47,CUL2,CUL5,CDCA7,HTR1A,DDX11,CHRNA7,CUL1,GTPBP4,CGRRF1,CAPNS1,CD3E,TBRG4,MARK4,VEGFB,SSTR4,SSTR5,SSTR2,SIRPG,NME2,SSTR3,ADAMTS8,SSTR1,ALOX15B,NME1,CD33,TBRG1,VEGFA,MNT,ATPIF1,ADAMTS1,LAMC1,TGFB1I1,MST1R,EIF2AK2,MCTS1,ENPP7,ERBB2,CHEK1,LIF,AGGF1,CDC123,BAI1,LAMB1,COL18A1,TGFBR1,KLF10,SPHK1,TGFBR2,KLF11,S100A11,GAS8,SLAMF1,RERG,NOTCH2,LAMA1,NUP62,ETS1,HGS,UTP20,PRKRIR,KLF4,OPRM1,DLEC1,NRP1,FGF7,ACVRL1,NAP1L1,PTEN,FLT3LG,GLI1,GPX1,BNIPL,CGREF1,TNFRSF11A,CCL3L3,TGFA,MYC,SERTAD1,FGF4,CDC7,CDC6,CTBP1,ARHGEF2,CTBP2,RBBP4,LYN,CCKBR,CD164,MXD4,CIAO1,NCK2,EREG,NCK1,IL12B,ALOX12,CSF3,CXCL1,TBC1D8,CXCL5,PRTN3,CSF1,ABI1,CCL23,PTK2B,SPEG,CD24,QSOX1,CD28,IL4,IL3,IL6,PDS5B,TBX3,IL8,IL7,TBX2,HCLS1,TBX5,IL9,IGF1,CDKN3,PLG,CLEC11A,CAPN1,CDH13,CCL14,EPGN,EEF1E1,BNC1,TOB2,TOB1,LRP5,IL2,FGF18,CNOT8,PDGFA,IL18,JAG2,TNFSF15,TTK,FGF10,TNFSF13,IL15,TNFSF12,FOXO4,VIPR1,RBM9,CXCL10,IL11,TGFB2,IL31RA,CDKN2A,CDKN2B,CDKN2C,CDKN2D,TDGF1,IL1B,GLP2R,ODZ1,EBI3,IL1A,GNL3,MATK,EGFR,IL29,IL27,IL21,PTHLH,TCFL5,TIMELESS,FGFR1OP,EMP3,DERL2,EID2,LST1,IFITM1,BMPR2,TIPIN,UMOD,SESN1,FTH1,TIMP1,IL12RB2,REG1A,IL12RB1,PRKRA,NPM1,SFTPD,ADRA2A,GML,B4GALT7,RUNX3,DNAJA2,TP53I11,GNRH1,CD276,BRCA2,FOXP3,BRCA1,CDKN1C,CDKN1A,TSC1,MYO16,FABP3,GLMN,ADRA1A,LDOC1,FABP7,SST,ADRA1D,FABP6,BMI1,IGFBP7,IGFBP6,BAP1,PAWR,WARS,NDUFS4,ANG,CDK10,DLG5,FOSL1,RHOG,CCDC88A,EGR4,CDK6,INHA,CDK4,CDK2,HOXC10,OSM,SPDYA,MFN2,TNFRSF9,CD86,PPM1D,TNFSF13B,BTG2,BTG1,BTG4,CHRM1,SCIN,BTG3,CD81,MDM2,GHRL,DHPS,MDM4,TSHR,ICOSLG,TM4SF4,ING5,VIP,ING4,FRK,NDN,CTF1,TNFRSF8,POU1F1,DEC1,IGF1R,TSPAN31,PTN,POU3F2,KRT4,GPNMB,ING1,FGFBP1,FIGF,SCG2,APC,NOX4,STAMBP,TCIRG1,COL4A3,PTPRC,TNFSF4,FLT1,NF2,PDF,VHL,FLT3,FLT4,NF1,CDC25B,CUL4A,ATP8A2,CHRNA10 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html BCKDK,AMT,GLUD1,ASL,FAH,GLDC,GOT2,ARG1,MCCC2,GAD2,ASPA,GOT1,GCSH,ALDH4A1,ASRGL1,GSTZ1,DDAH2,DDAH1,GAD1,HPD,BCKDHA,BCKDHB,HGD,DDO,TST,COLQ,DHPS,MPST +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RPL17,SLC44A2,VAPA,SLC20A1,TBK1,TSPAN6,GJA1,FASLG,TLR6,CANT1,NOD2,NOD1,MYD88,TMEM9B,MIER1,HMOX1,TICAM1,CASP8,RHOA,TICAM2,TMEM101,RHOC,CASP1,GPR89A,RHOH,BCL10,LTBR,BST2,GOLT1B,RELA,FADD,CD40,ECT2,FLNA,UBE2N,TRIM38,ZDHHC17,TNFRSF10B,ATP2C1,ZDHHC13,MIB2,RIPK1,RIPK2,TNFAIP3,EEF1D,NEK6,PPP5C,LITAF,PPM1A,UBE2V1,TFG,TRIM13,FKBP1A,CXXC5,TNFRSF1A,TMED4,MAP3K3,REL,SLC35B2,SQSTM1,PLEKHG5,OTUD7B,CC2D1A,TRAF6,TRAF5,CFLAR,SECTM1,CARD8,CARD9,LGALS1,NDFIP1,NDFIP2,MALT1,BIRC2,ECM1,LGALS9,TRADD,TRAF3IP2,IKBKE,APOL3,TNFSF10,PLK2,NUP62,NLRP12,HTR2B,F2R +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html NAT8,SLC22A18,CTPS,ABCB1,ABCA2,SOD1,ABCA3,GCLM,ABCB4,ABCG2,TOP1,LCK,SEMA3C,CSAG2,ABCC1,SCN11A,RAB6C,LIPE,MVP,BCAR3,ABCC6 +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL3,IL5,IL29,LYN,HCLS1,IL31RA,IL20,CD80,CLCF1,TDGF1,CD81,IL12A,TNK2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html PPARD,FGF7,BTD,S100A7,CRABP2,FST,SPINK5,CDSN,GLI1,TGFB2,PLOD1,CTGF,ALOX12B,KRT85,KRT83,DHCR24,STS,STX2,FLOT2,UGCG,FOXN1,KRT13,VAX2,KRT10,PROX1,WAS,SCEL,IL20,PTHLH,NME2,EVPL,KRTAP5-9,KRT17,ATP2C1,KRT16,KRT15,KRT14,DSP,TFAP2A,LAMC2,COL1A1,EDA,EMP1,KRT6A,KRT6B,RBP2,HOXB13,ALDH3A2,KRT9,DCT,COL17A1,LAMB3,KRT5,COL7A1,POU2F3,KRT1,TGM3,KRT2,TGM5,CALML5,ERCC3,ERCC2,ZBTB7B,KLK7,KLK5,KRT31,GJB5,KRT34,COL5A2,KRT32,LAMA3,ATP2A2,CASP14,SPRR1A,SPRR1B,BNC1,PTCH2,SMURF1,FABP5 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html IL8,PF4,ITGB2,CX3CL1,IL10,TGFB2,DOCK2,MIA3,SAA1,CD34,CKLF,SFTPD,SYK,SCG2 +PWCOMMONS REGULATION OF ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOTHELIAL_CELL_PROLIFERATION.html CDH13,AGGF1,ANG,NF1,TNFSF15,GHRL,ATPIF1,TNFSF12,SCG2 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html KCNMB3,KCNMB4,AIFM3,GLRA1,BNIP3,BCL2L1,SOD1,KCNMB2,BAK1,BCL2,BAX,CHRNA1,IFI6,NDUFS1,GRK1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html DCBLD2,DLC1,BMP10,DERL2,BCAR1,PML,PPT1,OSGIN1,TGFB1,TGFB2,ACVR1B,CDKN2A,TSPYL2,FAM107A,CDKN2C,CDKN2D,PRSS2,SERTAD3,CDA,BCL6,NDUFS3,ENO1,SERTAD2,NOL8,SPHK1,SMAD4,TP53,SMAD3,NDUFA13,RB1,CAPRIN2,RERG,PPP1R9B,INHBA,CDKN1A,PLCE1,CDKN1B,CDKN2AIP,APBB2,APBB1,IL2,ALOX12 +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html TARBP2,CCL3,RSF1,HS3ST5,IL8,VAPB,MDFIC,PPIA,APOBEC3G,TNIP1,APOBEC3F,TOP2A +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html BCAT1,PPP6C,DBF4,RCC1,LATS2,CUL3,CUL2,ACVR1B,CUL5,CDKN2A,CDKN2C,CDKN2D,GFI1,CDCA5,CUL1,CDC7,POLE,SKP2,CDKN3,CDK4,SPDYA,INHBA,CDKN1A,CDKN1B,CUL4A,GSPT1,ACVR1 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html TNFSF15,PMAIP1,NLRC4,MOAP1,CDKN2A,CASP9,CASP8AP2,MTCH1,DIABLO,HIP1,COL4A3,AIFM3,CYCS,TP53,SMAD3,STAT1,BCL2L10,VCP,IFNB1,BBC3,BAX,IFT57,F2,LCK,APAF1,F2R +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html UQCRC2,OXA1L,ME3,UQCRC1,ACO2,CYCS,PPARGC1A,PDHB,SDHA,SDHB,SLC25A14,NDUFS4,NNT,UQCRH,SDHC,SDHD,SURF1,NDUFS1,UQCRB +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html AIFM1,TP53,LGALS12,CIDEB,PML,CIDEA,IFI16,SFN,CHEK2,BRCA1,TP73,CUL3,CUL2,CDKN1A,CUL5,RNF7,CUL4A,PCBP4,BAX,BCL3,DYRK2,ABL1,C16ORF5,CUL1 +WIKIPW Glutathione metabolism G6PD,GGT1,GGT5,OPLAH,GCLC,GCLM,GPX1,GPX2,GPX3,GPX4,ANPEP,GSR,GSS,GSTA1,GSTM1,GSTM2,GSTT1,GSTT2,IDH1,GSTT2B +WIKIPW Alanine and aspartate metabolism ABAT,AGXT,GAD1,GAD2,GOT1,GOT2,GPT,ASL,ASPA,ASS1,PC +WIKIPW Translation Factors EIF1,PAIP1,EIF5AL1,EEF1A1,EEF1A2,EEF1B2,EEF1D,EEF1G,EEF2,EIF1AX,EIF2S1,EIF2B1,EIF2S3,EIF4A1,EIF4A2,EIF4B,EIF4E,EIF4EBP1,EIF4EBP2,EIF4G1,EIF5,EIF5A,ETF1,KIAA0664,GSPT2,PABPC1,EIF2AK1,EEF2K,EIF3E,EIF6,LOC390282,ANKHD1-EIF4EBP3,ANKHD1,EIF2AK2,LOC645139,LOC730144,EIF4H,EIF4EBP3,EIF3A,EIF3B,EIF3C,EIF3D,EIF3F,EIF3G,EIF3H,EIF3I,EIF3J,EIF4G3,EIF2B4,EIF2B3,EIF2B2,EIF2B5,EIF2S2,EIF1AY,EIF2AK3,EIF5B +WIKIPW Electron Transport Chain ATP5H,ATP5L,UQCR,COX4I1,COX5B,COX6A1,COX6A2,COX6B1,COX6C,COX7A1,COX7A2,COX7B,COX7C,COX8A,COX11,COX15,UQCRQ,ATP5S,SLC25A4,SLC25A5,SLC25A6,UCRC,NDUFS7,UQCRHL,NDUFA1,NDUFA2,NDUFA3,NDUFA4,NDUFA5,NDUFA6,NDUFA7,NDUFA8,NDUFA9,NDUFA10,NDUFAB1,NDUFB1,NDUFB2,NDUFB3,NDUFB4,NDUFB5,NDUFB6,NDUFB7,NDUFB8,NDUFB9,NDUFB10,NDUFC1,NDUFC2,NDUFS1,NDUFS2,NDUFS3,NDUFV1,NDUFS4,NDUFS5,NDUFS6,NDUFS8,NDUFV2,NDUFV3,ATP5A1,ATP5B,ATP5C1,ATP5D,ATP5E,ATP5F1,ATP5G1,ATP5G2,ATP5G3,ATP5I,ATP5J,ATP5O,NDUFA12,SCO1,SDHA,SDHB,SDHC,SDHD,SURF1,LOC727947,UCP1,UCP2,UCP3,UQCRB,UQCRC1,UQCRC2,UQCRFS1,UQCRH,SLC25A14,COX7A2L,COX5A,ATPIF1,SLC25A27,ATP5J2 +WIKIPW GPCRs, Other GPR176,CHRM2,CHRM3,GPR62,CCR5,PROKR2,ADORA2A,OR1N1,ADORA3,OR10A5,ADRA1D,ADRB2,DRD3,DRD4,GPR183,S1PR1,EDNRA,CELSR3,CELSR2,F2R,GPR116,LPHN2,LPHN3,FSHR,DARC,OR2F1,OR2B6,OR2M4,OR8G1,OR7E24,GHRHR,GPR77,GPR162,GNRHR,CXCR3,GPR133,UTS2R,GPR17,GPR18,GRM1,GRM8,GRPR,ALG6,GPR132,EMR2,HTR1F,HTR2A,HTR7,OR10A2,IL8RA,IL8RB,OR2A5,OR2A7,NTSR1,GPR143,OR1F1,OR3A1,P2RY11,RXFP3,P2RY13,GPR84,GPR88,LTB4R2,VN1R1,PTGFR,HRH4,RXFP1,LGR6,GPR135,SLC26A6,SMO,SSTR2,CCR2,OR2A4,OR1E1,GPR61,OR1G1,OR3A3,GPR98,MCHR2,EMR3,CCKBR,TAAR5,TAAR2,GPR56,GPR55,CELSR1 +WIKIPW Osteoclast IFNAR1,IFNB1,ITGB3,TNFRSF11B,PDGFB,ACP5,TRPV5,SLC9A1,SPP1,GPR68,TNFSF11,TNFRSF11A,ATP6V1G1 +WIKIPW IL-5 Signaling Pathway ATF2,CRKL,MAPK14,CSF2RB,CTNNB1,DNM2,ELK1,AKT1,PTK2B,FOXO3,ALOX5,ALOX5AP,SHC2,GRB2,RAPGEF1,GSK3A,GSK3B,HCK,HCLS1,HRAS,ICAM1,ICAM3,IL2RB,IL5,IL5RA,ITGAM,ITGB2,JAK1,JAK2,JUN,KRAS,LYN,NFKB1,NFKBIA,PIM1,PIK3CG,PIK3R1,PIK3R2,PLA2G4A,PRKCB,PRKCD,MAPK1,MAPK3,MAPK9,MAP2K2,PTPN6,PTPN11,BAX,RAC1,RAF1,RAP1GAP,RPS6KA1,SDCBP,SHC1,SOX4,STAT1,STAT3,STAT5A,STAT5B,SYK,BTK,VAV1,YWHAZ,SOCS1,CBL,CCND3,UNC119 +WIKIPW Matrix Metalloproteinases MMP21,MMP1,MMP2,MMP3,MMP7,MMP8,MMP9,MMP10,MMP11,MMP12,MMP13,MMP14,MMP15,MMP16,MMP17,MMP19,MMP26,MMP27,MMP25,BSG,TCF20,TIMP1,TIMP2,TIMP3,TIMP4,TNF,MMP28,MMP23B,MMP20 +WIKIPW Pentose Phosphate Pathway G6PD,PGLS,PGD,RPE,TALDO1,TKT,LOC729020 +WIKIPW Phase I, non P450 ESD,CES7,LIPA,PON1,PON2,PON3,CES2 +WIKIPW Androgen Receptor Signaling Pathway HIPK3,CDK7,CDK9,STUB1,PIAS3,NCOA2,KAT5,PNRC1,CDC37,MYST2,COX5B,ATF2,CREBBP,CTNNB1,AES,NR0B1,EGFR,EP300,AKT1,ESR1,ESR2,ETV5,FHL2,RAD54L2,FLNA,PATZ1,NR5A1,SPDEF,RCHY1,SIN3A,GAPDH,APPL1,GHR,NR3C1,SLC25A4,GTF2F1,GTF2F2,GTF2H1,SENP1,PSMC3IP,HDAC1,HMGB1,HMGB2,PRMT1,HSPA1A,HSPA1B,IGF1,IL6,IL6ST,AR,JUN,SMAD3,SMAD4,MDM2,MMP1,PA2G4,PIAS4,PLAGL1,POU2F1,POU2F2,MAPK1,MAP2K1,PAK6,PTEN,BAG1,PXN,RAC3,RAF1,RAN,RB1,CCND1,RELA,RNF4,NSD1,LOC644006,SP1,SRC,BRCA1,SRY,STAT3,SVIL,TGFB1I1,TGIF1,TMF1,TP53,NR2C2,UBE2I,UBE3A,YWHAH,NCOA4,CALR,NCOA3,NRIP1,CASP1,CASP3,CASP7,UXT,CASP8,NR0B2,PIAS1,CAV1,RUNX2,RUNX1,NCOA1,KAT2B,CCNE1,CCNH,PIAS2,CTDP1,RNF14,NCOR2,CDC2,CDC25B +WIKIPW AMPK signaling CDKN1A,CAMKK2,CPT1C,PPARGC1B,CPT1A,CPT1B,ADRA1B,ADRA1A,EEF2,EIF4EBP1,ELAVL1,CRTC2,AKT1,AKT2,FASN,PLCB1,MTOR,EEF2K,GYS1,GYS2,ACACA,HMGCR,HNF4A,ACACB,INS,INSR,LEP,LEPR,LIPE,LOC729991-MEF2B,ADIPOR1,PRKAG2,CAB39,PFKFB3,PIK3C3,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,PRKAG3,STRADB,PRKAA1,PRKAA2,PRKAB1,PRKAB2,PRKACB,PRKACG,PRKAG1,SLC2A4RG,RPTOR,RPS6KB1,RPS6KB2,SLC2A4,SREBF1,STK11,TP53,INS-IGF2,TSC1,TSC2,ADIPOR2,CAMKK1,PIK3R3,CCNA2,CCNA1,CCNB1,STRADA,ADIPOQ +WIKIPW BMP signalling and regulation TOB2,SMAD1,SMAD4,SMAD6,SMURF1,BMP2,BMPR1A,BMPR1B,BMPR2,RUNX2,NOG +WIKIPW Fatty Acid Beta Oxidation CPT1A,CPT1B,CPT2,CRAT,DCI,DECR1,DLD,ECHS1,ACSL1,ACSL3,ACSL4,ACSL6,GCDH,GK,GK2,GPD2,HADHA,HADHB,HADH,ACADL,ACADM,ACADS,ACADVL,ACAT1,LIPC,LIPE,LPL,ACSL5,ACSS2,PNPLA2,TPI1,SLC25A20,LIPF +WIKIPW NOD pathway SUGT1,COPS6,NLRP3,CHUK,AAMP,NLRP4,NLRP7,NLRP1,CARD8,PYCARD,XIAP,HSP90AA1,NLRP10,IKBKB,IL1B,IL18,MEFV,NAIP,NFKBIA,DUOX2,NDUFA13,NLRP2,ERBB2IP,NLRC4,RAC1,RELA,PRDM1,NOD2,CARD9,CASP1,CASP5,CASP7,CASP8,CASP9,CARD6,IKBKG,RIPK2,NLRP12,AIM2,ACAP1 +WIKIPW Osteopontin IKBKB,MMP9,NFKB1,PLAU,MAPK1,MAPK3,MAP2K1,RELA,SPP1,MAP3K14 +WIKIPW Toll-like receptor signaling pathway - mir RNF41,TLR6,MAP3K7IP1,RBCK1,ZMYND11,TRAFD1,IRAK3,TIRAP,CHUK,CISH,MAP3K8,MAPK14,TICAM1,CYLD,AKT1,AKT2,SARM1,MAP3K7IP2,FOS,PIK3R5,LY96,PELI3,MAP3K7IP3,TBK1,IFNA1,IFNA2,IFNA4,IFNA5,IFNA6,IFNA7,IFNA8,IFNA10,IFNA13,IFNA14,IFNA16,IFNA17,IFNA21,IFNAR1,IFNAR2,IFNB1,TICAM2,IKBKB,IL1B,IL6,IL8,IL12A,IL12B,CXCL10,IRAK1,IRAK2,IRF3,IRF5,IRF7,JUN,LBP,CD180,SMAD6,MBL2,CXCL9,MYD88,NEU1,NFKB1,NFKB2,NFKBIA,TMED7,IRAK4,TLR7,TLR8,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,PLK1,TLR9,TREM1,FBXW5,TOLLIP,RNF216,RNF31,OTUD5,MAPK1,MAPK3,MAPK8,MAPK11,MAPK9,MAPK10,MAPK13,MAP2K1,MAP2K2,MAP2K3,MAP2K6,MAP2K7,PELI2,PELI1,PTPN6,RAC1,SIGIRR,RELA,MAPK12,CCL3,CCL4,CCL5,CXCL11,MAP2K4,SFTPD,SFTPA1,SPP1,STAT1,SYK,MAP3K7,BTK,TLR1,TLR2,TLR3,TLR4,TLR5,TNF,TNFAIP3,TRAF3,TRAF6,USP7,CUEDC2,CASP8,PIK3R3,IKBKG,SOCS1,CTNNAL1,RIPK1,FADD,SQSTM1,CD14,CD80,CD86,CD40,IKBKE +WIKIPW Selenium PRDX4,TXNRD2,PRDX3,SERPINA3,CRP,SELM,CTH,DIO1,DIO2,DIO3,ABCA1,ALB,F2,F7,SEPHS2,ALOX5,ALOX5AP,ALOX15B,GPX6,PRDX5,GGT1,C11orf31,GPX1,GPX2,GPX3,GPX4,GSR,HBA1,HBA2,HBB,APOA1,APOB,ICAM1,IFNG,SELV,IL1B,IL6,INS,INSR,LDLR,MPO,MTHFR,MTR,NFKB1,NFKB2,PRDX1,SERPINE1,SELT,SEPX1,PLAT,PLG,PNPO,RFK,SELS,SEPN1,PTGS1,PTGS2,SELK,RELA,SAA1,SAA2,SAA4,CCL2,SEPP1,SEPW1,SOD1,SOD2,SOD3,PRDX2,TNF,INS-IGF2,TXN,TXNRD1,XDH,FLAD1,SELO,CAT,SELI,KMO,CBS,KYNU,SEP15,SCARB1 +WIKIPW Eicosanoid Synthesis ALOX12,ALOX5,ALOX5AP,ALOX15,ALOX15B,GGT1,LTA4H,LTC4S,PNPLA8,PLA2G2A,PTGDS,PTGIS,PTGS1,PTGS2,TBXAS1,PTGES2,PLA2G6,PTGES +WIKIPW Nuclear Receptors NR0B1,NR2F6,ESR1,ESR2,ESRRA,ESRRB,NR5A2,NR5A1,NR3C1,NR4A1,HNF4A,AR,ROR1,NR4A2,PGR,PPARA,PPARD,PPARG,RARA,RARB,RARG,RORA,RORC,RXRA,RXRB,RXRG,NR2F1,NR2F2,THRA,THRB,NR2E1,NR2C2,NR1H2,VDR,NR1I2,NR1I3,NR1D2 +WIKIPW Folic Acid Network TXNRD2,ALOX5,GPX6,GPX1,GPX2,GPX3,GPX4,GSR,FMN1,MTHFR,MTR,SEPX1,PNPO,PTGDS,PTGIS,SELK,SEPW1,SOD1,TCN1,TXN,TXNRD1,XDH,CAT,KMO,CBS,FADS2,PTGES +WIKIPW Cell cycle LOC100133012,HDAC5,CDK2,CDK4,CDK6,CDKN1A,CDKN1B,CDKN2A,MAD2L2,DBF4,CHEK1,TBC1D8,CHEK2,GADD45A,E2F1,E2F2,E2F3,E2F4,E2F5,E2F6,EP300,MPEG1,ORC6L,ORC3L,ABL1,GSK3B,HDAC1,HDAC2,MAD2L1,SMAD3,SMAD4,MCM2,MCM3,MCM4,MCM5,MCM6,MCM7,MDM2,ATM,ORC1L,ORC2L,ORC4L,ORC5L,PCNA,HDAC7,PLK1,HDAC8,PRKDC,RB1,RBL1,SKP2,LOC651610,BUB1,BUB1B,TFDP1,TGFB1,TP53,LOC731751,WEE1,YWHAG,SMC1A,CDC7,CDC45L,MAD1L1,CCNB3,CDC14B,CDC14A,HDAC3,CCNA2,CCNA1,CCNB1,CCND2,CCND3,CCNE1,CCNH,PKMYT1,CCNB2,CCNE2,BUB3,PTTG1,ESPL1,HDAC4,CDC2,CDC6,CDC20,CDC25A,CDC25B,CDC25C,CDH1 +WIKIPW Proteasome Degradation HIST1H2AE,H2AFX,H2AFZ,HLA-A,HLA-B,HLA-C,HLA-E,HLA-F,HLA-G,IFNG,NEDD4,PSMA1,PSMA2,PSMA3,PSMA4,PSMA5,PSMA6,PSMA7,PSMB1,PSMB2,PSMB3,PSMB4,PSMB5,PSMB6,PSMB7,PSMB8,PSMB9,PSMB10,PSMC1,PSMC2,PSMC3,PSMC4,PSMC5,PSMC6,PSMD1,PSMD2,PSMD3,PSMD4,PSMD5,PSMD7,PSMD8,PSMD9,PSMD10,PSMD11,PSMD12,PSMD13,PSME1,PSME2,RPN1,RPN2,LOC652826,UBB,UBC,UBA1,UBA7,UBE2B,UBE2D1,UBE2D2,UBE2D3,UCHL1,UCHL3,HIST1H2AB,PSMD6 +WIKIPW Integrin-mediated cell adhesion PAK4,VAV3,SORBS1,CAPN9,CAPN11,CAPN10,CRK,CSK,DOCK1,AKT1,AKT2,ITGA11,CAPN7,FYN,GRB2,RAPGEF1,HRAS,ILK,ITGA6,ITGA1,ITGA2,ITGA2B,ITGA3,ITGA4,ITGA5,ITGA7,ITGA9,ITGAD,ITGAE,ITGAL,ITGAM,ITGAV,ITGAX,ITGB1,ITGB2,ARAF,ITGB3,ITGB4,ITGB5,ITGB6,ITGB7,ITGB8,PAK1,PAK2,PAK3,PDPK1,PIK3R2,SHC3,MAPK1,MAPK4,MAPK6,MAPK7,MAPK10,MAP2K1,MAP2K2,MAP2K3,MAP2K5,MAP2K6,PAK6,PTK2,PXN,RAC1,RAC2,RAC3,RAF1,RAP1A,RAP1B,RHO,ROCK1,MAPK12,SEPP1,SHC1,SOS1,SRC,BRAF,TLN1,TNS1,CAPN5,LOC727758,VASP,VAV2,VCL,ZYX,CAPN1,CAPN2,CAPN3,CAPNS1,CAPN6,ITGA10,ITGA8,MYLK2,CAV1,CAV2,CAV3,ARHGEF7,ROCK2,BCAR1,GIT2,CDC42 +WIKIPW Homologous recombination POLD3,RAD54B,MRE11A,NBN,ATM,POLD1,POLD2,POLD4,RAD51,RAD52,RPA1,LOC651610,BRCA2 +WIKIPW IL-1 Signaling Pathway IL1A,IL1B,IL1R1,IL1RAP,IL1RN,IRAK1,IRAK2,MYD88,IRAK4,TRAF6,IL1R2 +WIKIPW Cholesterol Biosynthesis CYP51A1,DHCR7,FDFT1,FDPS,HMGCR,HMGCS1,IDI1,LSS,MVD,MVK,NSDHL,SC4MOL,SC5DL,SQLE +WIKIPW IL-7 Signaling Pathway CDK2,CDK4,STAM2,CLTC,AKT1,PTK2B,FOXO1,FOXO3,FYN,GRB2,GSK3B,HRAS,IL2RG,IL7R,IRF1,IRS1,JAK1,JAK3,LYN,MCL1,MUC1,PIK3R1,MAPK1,MAPK3,MAP2K1,MAP2K2,BAD,BAX,RAF1,RB1,BLK,SHC1,SOS1,STAT1,STAT3,STAT5A,STAT5B,STAM,IRS2,CBL,CBLB,CCNA2,CCND2 +WIKIPW Fatty Acid Omega Oxidation ADH1B,ADH4,ADH6,ADH7,CYP1A1,CYP1A2,CYP2A6,CYP2D6,CYP2E1,CYP3A4,CYP4A11,ALDH1A1,ALDH2 +WIKIPW IL-9 Signaling Pathway AKT1,GRB2,IL2RG,IL9,IL9R,IRS1,JAK1,JAK3,PIK3R1,MAPK1,MAPK3,MAP2K1,MAP2K2,PTPN11,SHC1,STAT1,STAT3,STAT5A,STAT5B,TYK2,VCP,IRS2,SOCS3 +WIKIPW Irinotecan Pathway ABCC2,CYP3A4,CYP3A5,ABCC1,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,BCHE,CES2,ABCG2 +WIKIPW B Cell Receptor Signaling Pathway BCL2L11,ARPC5,ARPC4,ARPC3,ARPC1B,ACTR3,ACTR2,ARPC2,CDK2,CDK4,CDK6,CDK7,MAP4K1,CHUK,PIK3AP1,CMTM3,CR2,CREB1,ATF2,CRK,CRKL,MAPK14,CSK,CTNNB1,DOK1,DUSP4,DUSP6,ELK1,AKT1,PTK2B,FCGR2B,FOXO1,PIP5K1C,FYN,GAB1,RASGRP3,TTLL3,STAP1,PTPN18,DAPP1,GRB2,RAPGEF1,GSK3A,GSK3B,GTF2I,BLNK,PILRB,HCK,HCLS1,HNRNPK,IKBKB,ITK,ITPR1,ITPR2,JUN,RHOA,LCK,LCP2,LYN,NCK1,NEDD9,NFATC1,NFATC2,NFATC3,NFKBIA,ATP2B4,CHST15,HDAC7,PDK2,PDPK1,PIK3CG,PIK3R1,PIK3R2,PIP4K2A,PLCG1,PLCG2,CYCS,LIME1,BANK1,PPP3CA,PPP3CB,PPP3R1,PRKCB,PRKCD,PRKCE,PRKD1,PRKCQ,MAPK1,MAPK3,MAPK4,MAPK8,MAP2K1,MAP2K2,PTK2,PTPN6,PTPN11,PTPRC,BAX,RAF1,RAP2A,RASA1,RB1,PLEKHA1,PLEKHA2,BCL2,REL,RELA,BCL6,RPS6,RPS6KA1,RPS6KB1,BLK,SH3BP2,SHC1,LOC653888,SOS1,SOS2,BRAF,STAT1,STAT3,SYK,MAP3K7,BTK,TEC,VAV1,VAV2,WAS,LAT2,ZAP70,PIP4K2C,DOK3,PIP5K1A,PIP5K1B,PIP4K2B,CASP7,SLA2,CASP9,CARD11,IKBKG,CBL,CBLB,CCNA2,BCL10,CCND2,CCND3,CCNE1,FCGR2C,CD5,MAPKAPK2,CD19,CD22,BCAR1,CD72,CD79A,CD79B,CD81,GAB2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway HDAC6,LRPPRC,DCAF7,AKAP8,TRAIP,TNIP1,GNB2L1,PIAS3,MAP3K7IP1,MAP3K2,IQGAP2,PPP1R13L,CD3EAP,PAPOLA,YWHAQ,RIPK3,FAF1,CDC37,CHUK,MAP3K8,CREBBP,CSNK2A1,CSNK2A2,CSNK2B,NLRP4,COMMD1,CYLD,DAP,DDX3X,TXLNA,MARK2,AKT1,AKT2,FBL,FANCD2,UNC5CL,FKBP5,MAP3K7IP2,FLNA,FBXW11,ZIM2,KPNA6,ALPL,GAB1,MAP3K7IP3,POLR1A,TRPC4AP,GLG1,NKIRAS2,NKIRAS1,TBK1,GSK3B,GTF2I,HDAC1,HDAC2,BIRC2,BIRC3,HSPB1,HSP90AA1,HSP90AB1,IKBKB,KCNQ1,KPNA2,KPNA3,KTN1,MCC,MCM5,MCM7,MAP3K1,MAP3K3,MTIF2,NFKB1,NFKB2,NFKBIA,NFKBIB,NFKBIE,PEBP1,POLR1D,PDCD2,PEG3,PFDN2,PML,POLR2H,POLR2L,RNF216,PPP2CA,PRKACA,PKN1,PRKCZ,MAP2K5,PSMB5,PSMC1,PSMC2,PSMC3,PSMD1,PSMD3,PSMD7,PSMD12,PSMD13,PTK2,KIAA1967,PTPN11,LY6G5B,REL,RELA,RELB,DPF2,BCL3,RPL4,RPL6,RPL8,RPL30,RPS6KB1,RPS11,RPS13,RNF25,NFKBIZ,AZI2,POLR1E,SKP1,SMARCA4,SMARCB1,SMARCC1,SMARCC2,SMARCE1,SRC,STAT1,TNF,TNFAIP3,TNFRSF1A,TNFRSF1B,NR2C2,TRAF1,TRAF2,TRAF3,TRAF5,TRAF6,UBE2D2,UBE2D3,UBE2I,SUMO1,YWHAB,YWHAE,YWHAG,YWHAH,YWHAZ,ZFAND5,TNIP2,USP11,CAPN3,HIST3H3,CASP2,CASP3,CASP7,CASP8,POLR1B,CASP10,NSMAF,CUL1,IKBKG,IKBKAP,COPS3,CAV1,ACTL6A,TRADD,RIPK1,CRADD,RIPK2,FADD,TNFRSF11A,CFLAR,BTRC,MAP3K14,USP2,RPS6KA5,TIFA,TNFRSF8,RASAL2,BAG4,POLR1C,TRAF4,IKBKE,EIF4A3,PSMD6,G3BP2,CDC34,CASP8AP2 +WIKIPW Adipogenesis MEF2B,NR1H3,NAMPT,CDKN1A,ZMPSTE24,NCOA2,CEBPA,CEBPB,CEBPD,AGPAT2,CUGBP1,PPARGC1A,PLIN2,CNTFR,KLF6,CREB1,CTNNB1,CYP26A1,GADD45A,DDIT3,CFD,AGT,DVL1,E2F1,E2F4,EBF1,EGR2,AHR,EPAS1,FOXC2,FOXO1,LPIN1,FRZB,WWTR1,GATA2,GATA3,GATA4,BSCL2,GDF10,GH1,KLF15,NR3C1,GTF3A,HIF1A,HMGA1,ID3,IGF1,FAS,IL6,IL6ST,INS,IRS1,LEP,LIF,LIFR,LIPE,LMNA,LPL,SMAD3,MBNL1,MEF2A,LOC729991-MEF2B,MEF2C,MEF2D,MIF,ASIP,GADD45B,NDN,OSM,SERPINE1,PCK1,PCK2,PLIN1,PPARA,PPARD,PPARG,CISD1,PRLR,CYP26B1,RETN,PTGIS,TRIB3,RARA,RB1,RBL1,RBL2,RORA,RXRA,RXRG,SCD,SFRP4,BMP1,LPIN3,BMP2,BMP3,SLC2A4,BMP4,SP1,SPOCK1,SREBF1,STAT1,STAT2,STAT3,STAT5A,STAT5B,STAT6,KLF5,HNF1A,NR2F1,TGFB1,TNF,INS-IGF2,TWIST1,UCP1,WNT1,WNT10B,PNPLA3,WNT5B,NRIP1,FZD1,MIXL1,IRS4,KLF7,NCOA1,SOCS1,IRS2,DLK1,SOCS3,ADIPOQ,NCOR1,NCOR2,LPIN2 +WIKIPW Glucocorticoid & Mineralcorticoid Metabolism CYP11B2,CYP17A1,CYP21A2,HSD3B1,HSD3B2,HSD11B1,HSD11B2 +WIKIPW Peptide GPCRs ATP8A1,CXCR6,CCR1,CCR3,CCR4,CCR5,CCR6,CCR7,CCR8,CX3CR1,AGTR1,AGTR2,EDNRA,EDNRB,FPR1,FPR2,FPR3,NTSR2,FSHR,DARC,TAC4,GALR1,GHSR,GNRHR,CCR10,CXCR3,GRPR,IL8RA,IL8RB,LHCGR,MC1R,MC2R,MC3R,MC4R,MC5R,NMBR,NPY1R,NPY2R,NPY5R,NTSR1,OPRD1,OPRK1,OPRL1,OPRM1,OXTR,AVPR1A,AVPR1B,AVPR2,PPYR1,BDKRB1,BDKRB2,CXCR5,SSTR1,SSTR2,SSTR3,SSTR4,SSTR5,BRS3,TACR2,TACR1,TACR3,C3AR1,TRHR,TSHR,C5AR1,CCR2,CXCR4,GALR3,GALR2,CCKAR,CCKBR +WIKIPW One Carbon Metabolism MTHFD2,ALDH1L1,FTCD,MTFMT,DHFR,DNMT1,DNMT3A,DNMT3B,AHCY,AHCYL2,FOLH1,MTHFD1L,GART,MAT2B,AMT,MAT1A,MTHFD1,MTHFR,MTR,MTRR,ATIC,BHMT,SHMT1,SHMT2,TCN2,TYMS +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway CDKN1A,YWHAQ,CLCA1,COL17A1,DSP,EGFR,EIF4E,EIF4EBP1,ERBB2,AKT1,MTOR,ABL1,FYN,SFN,LAMA1,GRB2,ITGA6,IRS1,AR,ITGB4,EIF6,RHOA,LAMA2,LAMA3,LAMA5,LAMB1,LAMB2,LAMB3,LAMC1,LAMC2,RPSA,SMAD2,SMAD3,MET,MMP7,MST1R,PAK1,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,PLEC1,PRKCA,PRKCD,ERBB2IP,BAD,PTK2,RAC1,RTKN,SHC1,LOC652460,DST,SRC,TP73,VIM,YES1,YWHAB,YWHAE,YWHAH,YWHAZ,CASP3,PIK3R3,IRS2,NTN1,CLCA2,CD151 +WIKIPW Small Ligand GPCRs CNR2,S1PR1,LPAR1,S1PR3,MTNR1A,MTNR1B,PTAFR,PTGDR,PTGER1,PTGER2,PTGER3,PTGER4,PTGFR,PTGIR,TBXA2R,S1PR4,S1PR2 +WIKIPW Apoptosis CDKN2A,CHUK,DFFA,DFFB,AKT1,BBC3,TNFRSF21,GZMB,HELLS,APAF1,BIRC2,BIRC3,XIAP,BIRC5,IGF1,IGF1R,IGF2,FAS,IKBKB,FASLG,IRF1,IRF2,IRF3,IRF4,IRF5,IRF6,IRF7,JUN,LTA,MCL1,MDM2,MAP3K1,MYC,NFKB1,NFKBIA,NFKBIB,NFKBIE,PIK3R1,PMAIP1,CYCS,PRF1,MAPK10,DIABLO,BAD,BAK1,BAX,BCL2,RELA,BCL2L1,BCL2L2,BID,MAP2K4,BNIP3L,BOK,TNF,TNFRSF1A,TNFRSF1B,TP53,TP73,TRAF1,TRAF2,TRAF3,CASP1,CASP2,CASP3,CASP4,CASP6,CASP7,CASP8,CASP9,CASP10,IKBKG,TRADD,TNFRSF25,RIPK1,CRADD,HRK,TNFSF10,FADD,TNFRSF10B,CFLAR +WIKIPW Nifedipine MAPK1,MAP2K1 +WIKIPW Signal Transduction of S1P Receptor S1PR1,S1PR3,AKT1,AKT2,PLCB1,GNAI1,GNAI2,GNAI3,RACGAP1,ASAH1,PIK3C2B,PLCB2,PLCB3,S1PR5,MAPK1,MAPK3,MAPK4,MAPK6,MAPK7,SPHK2,MAPK12,SPHK1,S1PR2 +WIKIPW EBV LMP1 signaling HSP90AA1,IFNB1,IKBKB,IL8,IRAK1,MAP3K3,NFKB1,NFKB2,MAPK1,MAPK8,RELA,CCL5,CCL20,MAP3K7,TNF,TRAF1,TRAF6,IKBKG,TRADD,MAP3K14,PDLIM7 +WIKIPW Notch Signaling Pathway RBPJL,DTX2,CREBBP,CTBP1,CTBP2,DTX3L,PTCRA,JAG1,DTX1,DVL1,DVL2,DVL3,DTX3,DTX4,NCSTN,KAT2A,DLL1,HDAC1,HDAC2,HES1,RBPJ,JAG2,KCNJ5,HES5,LFNG,MFNG,NOTCH1,NOTCH2,NOTCH3,NOTCH4,APH1A,INPP5K,DLL4,MAML3,PSEN1,PSEN2,RFNG,ADAM17,TNF,APH1B,NUMB,KAT2B,NUMBL,NCOR2,MAML1 +WIKIPW Blood Clotting Cascade F5,F7,F8,F9,F10,F11,F12,F13B,FGA,FGB,FGG,KLK1,KLKB1,F8A2,F8A3,SERPINE1,SERPINB2,PLAT,PLAU,PLG,SERPINF2,VWF,F8A1 +WIKIPW Selenium metabolism/Selenoproteins TXNRD2,SELM,DIO1,DIO2,DIO3,FABP1,SEPHS2,FOS,GPX6,C11orf31,GPX1,GPX2,GPX3,GPX4,SELV,JUN,NFKB1,SEPSECS,SCLY,SELT,SEPX1,SARS2,TRNAU1AP,SELS,SEPN1,SELK,RELA,EEFSEC,RPL30,SEPP1,SEPW1,SP3,TXNRD1,SELO,SELI,SELENBP1 +WIKIPW IL-3 Signaling Pathway GNB2L1,YWHAQ,CHEK1,CISH,CREB1,ATF2,CRK,CRKL,MAPK14,CSF2RB,DNM1,AKT1,FCER2,FES,MRAS,FOXO1,FYN,GAB1,GATA1,GATA2,GRB2,RAPGEF1,GSK3A,GSK3B,PILRB,HCK,KCNIP3,HRAS,HSPB1,BIRC5,ID1,IL3,IL3RA,JAK1,JAK2,KRAS,LCK,LYN,MATK,MMP2,MMP9,ATF1,NFKB1,PAK1,PIK3CA,PIK3CD,PIK3R1,PIK3R2,PPP2CA,PRKACA,PRKCA,PRKCB,MAPK1,MAPK3,MAPK7,MAPK8,MAPK9,MAP2K1,BAD,PTK2,PTPN6,PTPN11,BAX,PXN,RAC1,RAC2,RAF1,RAP1A,RARA,BCL2,BCL2L1,RPS6KB2,RXRA,SELP,SHC1,SLC2A1,BMX,SOS1,SPI1,SRC,STAT1,STAT3,STAT5A,STAT5B,STAT6,SYK,TEC,TNFRSF1B,TYK2,VAV1,VCL,YWHAB,YWHAZ,CBL,SOCS2,SOCS3,MAPKAPK2,GAB2,CDC42 +WIKIPW NLR proteins EPHB2,IKBKB,ERBB2IP,MAPK1,MAPK8,RELA,MAP3K7,IKBKG,CD40 +WIKIPW Myometrial Relaxation and Contraction Pathways RAMP1,RAMP3,RGS19,CREB3,RGS14,GNB5,CORIN,ADCY1,ADCY2,ADCY3,YWHAQ,ADCY5,PKIG,ADCY6,ADCY7,GPR182,ADCY8,ADCY9,RXFP2,CNN1,CNN2,ADM,CREB1,ATF2,ATF6B,CRH,CRHR1,LPAR1,ADCY4,ETS2,ATF5,FOS,MAFF,GABPA,GABPB1,RGS17,GJA1,CRCP,GNAQ,GNAS,GNB1,GNB2,GNB3,GNG3,GNG4,GNG5,GNG7,GNG11,GNGT1,SFN,GRK4,GRK5,GRK6,GUCA2A,GUCA2B,GUCY1A3,IGFBP1,IGFBP2,IGFBP3,IGFBP4,IGFBP5,IGFBP6,IL1B,IL6,ITPR1,ITPR2,ITPR3,JUN,ARRB1,ARRB2,MYL2,MYL4,ATF1,ATF3,ATF4,NFKB1,NOS1,NOS3,ATP2A2,ATP2A3,OXT,OXTR,PDE4B,PDE4D,GNG13,PLCB3,PLCD1,PLCG1,PLCG2,GNG2,PRKACA,PRKACB,PKIA,PKIB,PRKAR1A,PRKAR1B,PRKAR2A,PRKAR2B,PRKCA,PRKCB,PRKCD,PRKCE,PRKCG,PRKCH,PRKD1,PRKCQ,PRKCZ,GNG12,CXCR7,ACTA1,ACTA2,GNB4,RXFP1,RGS1,RGS2,RGS3,RGS4,ACTB,RGS7,RGS10,RGS16,RLN1,RYR1,RYR2,RYR3,RGS18,SLC8A1,SP1,ACTC1,ACTG1,YWHAB,YWHAE,YWHAG,YWHAH,YWHAZ,CACNB3,CALCA,CALD1,CALM1,CALM2,CALM3,CAMK2A,CAMK2B,CAMK2D,CAMK2G,RGS5,DGKZ,MYLK2,RGS20,RGS11,RGS9,GNG8,GSTO1,RGS6 +WIKIPW Nuclear receptors in lipid metabolism and toxicity ABCC2,CYP1A2,CYP2B6,CYP2C9,CYP2E1,CYP3A4,CYP4A11,CYP4B1,CYP7A1,CYP8B1,CYP24A1,CYP26A1,CYP27B1,ABCA1,ABCD2,ABCB1,ABCB4,PPARA,PPARD,PPARG,ABCD3,RARA,RARB,RARG,ABCG5,VDR,ABCB11,ABCC3,NR1I2,ABCG1,NR1I3,NR1H4 +WIKIPW Keap1-Nrf2 NQO1,EPHB2,GCLC,GCLM,GSTA2,HMOX1,MAF,NFE2L2,PIK3CA,PRKCA,MAPK8,AIMP2,KEAP1 +WIKIPW Kit Receptor Signaling Pathway GRAP,CISH,CLTC,SOCS4,CRK,CRKL,CSF2RB,SPRED1,DOK1,SPRED2,EP300,EPOR,AKT1,FES,FGR,ABL1,FYN,STAP1,GRB2,GRB7,GRB10,SH3KBP1,HCK,HRAS,JAK2,KIT,LYN,MATK,KITLG,MITF,PLCE1,PIK3CG,PIK3R1,PIK3R2,PLCG1,PRKCA,PRKCB,MAPK1,MAP2K1,BAD,PTPN6,PTPN11,RAF1,RASA1,RPS6KA1,SHC1,LOC652799,LOC653882,SOS1,SRC,STAT1,STAT3,STAT5A,STAT5B,BTK,TEC,VAV1,VAV2,YES1,SOCS1,CBL,CBLB,MPDZ,TNFRSF10A,SOCS6,SOCS5 +WIKIPW Focal Adhesion TNK2,PAK4,LAMC3,TESK2,CHAD,COL1A1,COL1A2,COL2A1,COL3A1,COL4A1,COL4A2,COL4A4,COL4A6,COL5A1,COL5A2,COL6A2,COL11A1,COL11A2,COMP,CRK,DOCK1,EGF,EGFR,ELK1,ERBB2,AKT1,AKT2,FGR,FIGF,ITGA11,FLNA,FLT1,FN1,PIP5K1C,PIK3R5,FYN,LAMA1,GRB2,RAPGEF1,GSK3B,PARVB,HCK,HGF,PIK3R4,BIRC2,BIRC3,TNC,IBSP,IGF1,IGF1R,ILK,ITGA6,ITGA2,ITGA2B,ITGA3,ITGA4,ITGA5,ITGA7,ITGA9,ITGAD,ITGAE,ITGAL,ITGAM,ITGAV,ITGAX,ITGB1,ITGB2,ARAF,ITGB3,ITGB4,ITGB5,ITGB6,ITGB7,ITGB8,JUN,KDR,RHOA,RHOB,LAMA2,LAMA3,LAMA4,LAMA5,LAMB1,LAMB2,LAMB3,LAMC1,LAMC2,ARHGAP5,MET,MYL6,MYLK,PPP1R12A,COL5A3,PAK1,PAK2,PAK3,PDGFA,PDGFB,PDGFRA,PDGFRB,PDPK1,PGF,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,SHC3,PELO,STYK1,MAPK1,MAPK4,MAPK6,MAPK7,MAPK8,MAPK9,PDGFC,MAP2K1,MAP2K2,MAP2K3,MAP2K5,MAP2K6,RELN,PAK6,PAK7,BAD,PTEN,PTK2,PTK6,PXN,RAC1,RAC2,RAC3,RAF1,RAP1A,RAP1B,CCND1,BCL2,ACTB,ROCK1,MAPK12,TNN,BLK,SHC1,SOS1,SPP1,SRC,SRMS,BRAF,THBS1,THBS2,THBS3,THBS4,TLN1,ACTG1,TNR,TNXB,LOC727758,TXK,VASP,VAV1,VCL,VEGFB,VEGFC,VTN,VWF,ZYX,PDGFD,CAPN1,ITGA10,ITGA8,MYLK2,CAV1,CAV2,CAV3,ACTN1,TNK1,CCND2,CCND3,ROCK2,BCAR1,FARP2,CDC42 +WIKIPW Synthesis and Degradation of Ketone Bodies HMGCS2,ACAT1,OXCT1,BDH1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor CRK,CRKL,DOCK1,ELK1,PTK2B,FOS,GAB1,GRB2,RAPGEF1,HGF,HRAS,ITGA1,ITGB1,JUN,PAK1,PIK3CA,MAPK1,MAPK3,MAPK8,MAP2K1,MAP2K2,PTEN,PTK2,PTPN11,PXN,RAF1,RAP1A,RAP1B,RASA1,SOS1,SRC,STAT3 +WIKIPW FAS pathway and Stress induction of HSP regulation PARP1,DAXX,DFFA,DFFB,APAF1,HSPB1,FAS,IL1A,FASLG,JUN,ARHGDIB,LMNA,LMNB1,MAP3K1,PAK1,PAK2,CYCS,PRKDC,MAPK8,RB1,BCL2,MAP2K4,SPTAN1,MAP3K7,TNF,LOC731751,MAPKAPK3,CASP3,CASP6,CASP7,CASP8,CASP9,CASP10,LMNB2,RIPK2,FADD,CFLAR,MAPKAPK2 +WIKIPW Osteoblast COL1A1,IBSP,ITGAV,ITGB3,TNFRSF11B,PDGFB,PDGFRA,PDGFRB,PTH,PTH1R,FGF23,TNFSF11 +WIKIPW Triacylglyceride Synthesis AGPAT2,MOGAT1,GK,GK2,GPD1,MOGAT3,LIPC,LIPE,LPL,AGPAT5,AGPAT3,AGPAT4,PNPLA2,GPAM,MOGAT2,GNPAT,DGAT2,LIPF,AGPS,PPAP2A,PPAP2C,PPAP2B,DGAT1 +WIKIPW GPCRs, Class B Secretin-like CALCRL,ADCYAP1R1,CRHR1,CRHR2,EMR1,LPHN1,LPHN2,LPHN3,GCGR,GHRHR,GIPR,GLP1R,EMR2,PTH1R,PTH2R,SCTR,ELTD1,VIPR1,VIPR2,CALCR,GLP2R,CD97 +WIKIPW Ovarian Infertility Genes CDKN1B,CEBPB,DMC1,CYP19A1,DAZL,EGR1,ESR2,SYNE2,FSHR,NR5A1,GDF9,GJA4,INHA,LHCGR,SMAD3,MLH1,MSH5,ATM,PGR,PRLR,PTGER2,LOC651610,BMPR1B,SMPD1,VDR,ZP2,ZP3,NRIP1,CCND2,NCOR1 +WIKIPW G Protein Signaling Pathways AKAP8,AKAP3,GNA13,GNB5,ADCY1,ADCY2,ADCY3,ADCY5,ADCY6,AKAP13,AKAP11,AKAP10,AKAP2,ADCY7,ADCY8,PALM2,ADCY9,ADCY4,PRKD3,PDE7B,GNA11,GNA12,GNA15,GNAI1,GNAI2,GNAI3,GNAL,GNAO1,GNAQ,GNAS,GNAZ,GNB1,GNB2,GNB3,GNG3,GNG4,GNG5,GNG7,GNG10,GNG11,GNGT1,GNGT2,HRAS,ITPR1,KCNJ3,KRAS,RHOA,PALM2-AKAP2,NRAS,PDE1A,PDE1C,PDE4A,PDE4B,PDE4C,PDE4D,PDE7A,PDE8A,PDE1B,GNG13,PLCB3,DNAJC25,DNAJC25-GNG10,PPP3CA,PPP3CC,PRKACA,PRKACB,PRKACG,PRKAR1A,PRKAR1B,PRKAR2A,PRKAR2B,PRKCA,PRKCB,PRKCD,PRKCE,PRKCG,PRKCH,PRKCI,PRKD1,PRKCQ,PRKCZ,GNG12,RRAS,SLC9A1,CALM1,CALM2,CALM3,AKAP1,PDE8B,AKAP4,ARHGEF1,GNG8,AKAP7,AKAP6,AKAP5,AKAP12,GNA14 +WIKIPW Fatty Acid Biosynthesis DECR1,ECH1,ECHS1,ACSL1,ACSL3,ACSL4,FASN,ACSL6,HADH,ACACA,ACACB,ACLY,PC,MECR,ACSL5,ECHDC2,PECR,ECHDC1,ACSS2,SCD,ECHDC3 +WIKIPW Wnt Signaling Pathway NetPath CRYBB2,CSNK1A1,CSNK1D,CSNK1E,CSNK2A1,CSNK2A2,CSNK2B,CTBP1,CTBP2,CTNNB1,DAB2,DLG1,DLG2,DLG4,DVL1,DVL2,DVL3,MARK2,EP300,AKT1,FHL2,ANKRD6,DKK1,DAAM1,FRAT2,NR5A1,FZD2,MAGI3,HIPK2,BRD7,GSK3B,TAX1BP3,APC,JUN,JUP,RHOA,LRP1,LRP6,LRP5,ARRB1,SMAD3,SMAD4,ARRB2,MAP1B,MYB,ROR2,PAX2,LEF1,PIAS4,NLK,PIN1,WNT4,PPP2CA,PRKCA,PRKCB,PRKCG,MAPK1,MAPK3,MAPK8,MAPK9,CTNNBIP1,VANGL2,LY6G5B,RAC1,RAF1,SENP2,CCND1,BCL9,SALL1,SFRP1,SFRP2,SKP1,SOX1,SOX9,MAP3K7,TBP,TCF4,TCF3,TFAP2A,SUMO1,WNT1,WNT2,WNT3,WNT5A,WNT7A,FZD5,CXXC4,CAMK2A,CAMK2B,CAMK2D,CAMK2G,AXIN1,AXIN2,FZD1,FZD4,FZD6,FZD7,FZD8,FZD9,CUL1,NKD1,RUNX2,RUVBL1,BTRC,WNT3A,MAPK8IP1,CDC2,CDC25C,CDH1 +WIKIPW IL-6 Signaling Pathway CDK5,CDK9,CEBPB,CREBBP,MAPK14,DAXX,EIF4E,EIF4EBP1,EP300,ERBB2,ERBB3,AKT1,PTK2B,FES,FGR,FOXO1,FOXO3,FOS,FYN,GAB1,PPP2R3B,GRB2,GSK3B,HCK,HDAC1,HRAS,HSPB1,HSP90AA1,IL6,IL6R,IL6ST,INPPL1,AR,JAK1,JAK2,JUN,LYN,MAPT,MAP3K4,FOXO4,NFKB1,NLK,PIK3R1,PIK3R2,PLCG1,PPP2CA,PPP2CB,PPP2R1A,PPP2R1B,PPP2R2A,PPP2R2B,PPP2R2C,PPP2R3A,PPP2R4,PPP2R5A,PPP2R5B,PPP2R5C,PPP2R5D,PPP2R5E,PRKCD,MAPK1,MAPK3,MAPK8,MAP2K1,MAP2K2,MAP2K6,BAD,PTK2,PTPN11,PXN,RAC1,RAF1,RB1,RPS6KA2,RPS6KB1,MAP2K4,SGK1,SHC1,BMX,SOS1,STAT1,STAT3,MAP3K7,HNF1A,BTK,TEC,TYK2,VAV1,CASP3,EIF2A,CASP9,NCOA1,CDK5R1,SOCS3,MAPKAPK2,CD40,GAB2 +WIKIPW TGF-beta Receptor Signaling Pathway LOC100133982,TRAP1,CDK2,CDK4,CDK6,CDKN1A,ANAPC10,YAP1,MAP3K7IP1,CTCF,GIPC1,COPS5,STRAP,STK11IP,ATF2,CREBBP,MAPK14,CTNNB1,DAB2,DAXX,AP2B1,EID2,DVL1,E2F4,E2F5,ENG,EP300,ESR1,ETS1,FKBP1A,FOXG1,SNW1,FOXO1,FOXO3,FNTA,FOS,FOSB,ANAPC2,ANAPC4,HDAC1,HNF4A,HOXA9,HSPA8,AR,JUN,JUNB,JUND,KPNB1,SMAD2,SMAD3,SMAD4,ARRB2,SMAD6,SMAD7,MEF2A,MEF2C,FOXO4,CITED1,MYC,ATF3,NFYA,NFYB,NFYC,LEF1,FZR1,ANAPC5,ANAPC7,PIK3R1,PIK3R2,PPP2R2A,PRKAR1B,PRKAR2A,PRKCB,PRKCD,DCP1A,PRKCG,ERBB2IP,MAPK8,MAP2K3,MAP2K6,PARD3,SMURF1,STAMBPL1,SNX6,RB1,RBL1,RBL2,CCND1,ROCK1,SDC2,ANAPC1,SMURF2,SKI,SKIL,SKP1,SNX1,SNX2,SP1,SPARC,STK11,MAP3K7,ZEB1,TFDP1,TFDP2,TGFB1,TGFB2,TGFB3,TGFBR1,TGFBR2,TGFBR3,TGIF1,TP53,TP73,LOC727758,UBE2D1,UBE2D2,UBE2D3,SUMO1,VDR,XPO1,SNIP1,NUP214,CAMK2A,CAMK2B,CAMK2D,CAMK2G,AXIN1,AXIN2,CUL1,PIAS1,CAV1,RUNX2,NCOA1,EIF3I,CDC23,SNX4,KAT2B,CDC16,FOXH1,BTRC,CCNE1,PIAS2,CCNB2,HGS,ZFYVE9,ACVRL1,CD44,CDC2,ZEB2,CDC25A,CDC27,NUP153,RBX1 +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation CPT2,DCI,EHHADH,ACSL1,ACSL3,ACSL4,HADHA,HADH,ACADL,ACADM,ACADS,ACADVL,PECR,SCP2,SLC25A20 +WIKIPW MAPK signaling pathway RASGRP1,MAP3K7IP1,MAP4K1,DUSP10,RASGRP4,ACVR1C,MAP3K8,ATF2,CRK,CRKL,TMEM37,MAPK14,DAXX,GADD45A,DDIT3,DUSP1,DUSP4,DUSP5,DUSP6,DUSP7,EGF,EGFR,ELK1,AKT1,AKT2,FGF4,MRAS,MAP3K7IP2,FLNA,MAPK8IP3,FOS,GCK,GNA12,GRB2,NR4A1,HSPA1A,HSPA1B,HSPA5,HSPA8,HSPB1,HSPB2,FAS,IKBKB,IL1A,IL1B,IL1R1,FASLG,JUN,JUND,KRAS,STMN1,ARRB1,ARRB2,MAPT,MAX,MEF2C,MAP3K1,MAP3K4,MAP3K5,MAP3K11,MOS,MYC,ATF4,NF1,NFKB1,NGF,NRAS,NTF4,NTRK1,MINK1,PAK1,PAK2,ECSIT,PDGFB,PDGFRB,NLK,ZAK,PLA2G5,PPM1A,PPM1B,PPP3CA,PPP3CB,PPP3CC,PPP3R1,PPP3R2,PPP5C,PRKACA,PRKCB,PRKCD,PRKCG,PRKCH,PRKCZ,MAPK1,MAPK3,MAPK4,MAPK6,MAPK7,MAPK8,MAPK9,MAPK10,MAPK13,MAP2K1,MAP2K2,MAP2K5,MAP2K6,MAP2K7,TAOK1,PTPN7,PTPRR,RAC1,RAC2,RAF1,RAP1A,RAP1B,RASA1,RASA2,RASGRF2,RPS6KA3,BDNF,MAPK12,MAP2K4,SOS2,SRF,BRAF,STK3,MAP3K7,TGFB1,TGFB2,TGFB3,TGFBR1,TGFBR2,TNF,TP53,TRAF2,TRAF6,MAP3K12,IL1R2,CASP1,CASP2,CASP3,CASP6,PLA2G10,CASP7,CASP8,CASP9,PTPN5,MAP4K3,IKBKG,MAPKAPK5,MAPKSP1,MAP3K14,MAP3K6,ACVR1B,MAP3K13,MAPKAPK2,CD14,TAOK2,MAP4K4,CDC25B,CDC42 +WIKIPW Striated Muscle Contraction DES,DMD,MYBPC1,MYBPC2,MYBPC3,MYH3,MYH6,MYH8,MYL1,MYL2,MYL3,MYL4,NEB,ACTA1,ACTA2,ACTC1,ACTG1,TMOD1,TNNC2,TNNC1,TNNI1,TNNI2,TNNI3,TNNT1,TNNT2,TNNT3,TPM1,TPM2,TPM3,TPM4,TTN,VIM,ACTN4,TCAP,MYOM1,ACTN2 +WIKIPW Apoptosis Modulation by HSP70 HSPA1A,HSPA1B,FAS,MAP3K1,NFKB1,CYCS,MAPK10,BID,TNFRSF1A,CASP2,CASP3,CASP6,CASP7,CASP8,CASP9,RIPK1,FADD,AIFM1 +WIKIPW Mitochondrial Gene Expression PPARGC1B,CREB1,PPRC1,GABPA,GABPB1,HCFC1,NRF1,MYEF2,MTERFD1,TFB1M,POLRMT,PPP3CA,TFB2M,SP1,TFAM,MTERF,CAMK4 +WIKIPW IL-4 signaling Pathway HIST2H3C,ATF2,CREBBP,MAPK14,ADRBK2,ELK1,EP300,AKT1,ETS1,FES,PRKD3,FYN,GRB2,HMGA1,HIST2H3A,IL2RG,IL4,IL4R,IL13RA1,IRS1,JAK1,JAK2,JAK3,LCK,NFKB1,PAWR,PIK3CA,PIK3CD,PIK3R1,PIK3R2,PLCG1,PRKCD,PRKCI,PRKCZ,MAPK1,MAPK3,MAPK11,BAD,PTK2,PTPN6,PTPN11,RASA1,RELA,BCL2L1,RPS6KB1,SHC1,HIST2H3D,SOS1,SPI1,SRC,STAT1,STAT5A,STAT6,TYK2,CXCR4,STAM,SOCS1,IRS2,CBL,SOCS3,DOK2,SOCS5 +WIKIPW Wnt Signaling Pathway and Pluripotency FRAT1,FZD10,CREBBP,CSNK1E,CTBP1,CTBP2,CTNNB1,CTNND1,DVL1,DVL2,DVL3,EP300,ESRRB,FZD2,FBXW2,FOXD3,PPP2R3B,RACGAP1,GSK3B,APC,PPM1J,JUN,RHOA,LDLR,LRP6,LRP5,MMP7,MYC,NFYA,PAFAH1B1,LEF1,WNT16,NLK,PLAU,WNT4,POU5F1,PPARD,PPP2CA,PPP2CB,PPP2R1A,PPP2R1B,PPP2R2A,PPP2R2B,PPP2R2C,PPP2R3A,PPP2R4,PPP2R5C,PPP2R5E,PRKCA,PRKCB,PRKCD,PRKCE,PRKCH,PRKCI,PRKD1,PRKCQ,PRKCZ,MAPK9,MAPK10,CCND1,SOX2,MAP3K7,TCF7,TCF7L2,TP53,WNT1,WNT2,WNT3,WNT5A,WNT6,WNT7A,WNT7B,WNT10B,WNT11,WNT2B,WNT9B,FZD5,FZD3,NANOG,WNT10A,FOSL1,WNT5B,AXIN1,AXIN2,FZD1,FZD4,FZD6,FZD7,FZD8,FZD9,TCF7L1,NKD1,NKD2,CCND2,CCND3,WNT3A,CD44 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) ATF2,MAPK14,DAXX,DDIT3,ELK1,GRB2,HMGN1,HRAS,HSPB1,MAX,MEF2D,MAP3K1,MAP3K5,MAP3K9,MYC,PLA2G4A,MAP2K6,RAC1,RASGRF1,MAP2K4,SHC1,STAT1,MAP3K7,TGFB2,TGFBR1,TRAF2,MAPKAPK5,MKNK1,TRADD,RIPK1,RPS6KA5,MAPKAPK2,CDC42 +WIKIPW Nucleotide Metabolism ADSL,ADSS,DHFR,PRPS1L1,HPRT1,IMPDH1,NME1,NME2,OAZ1,RRM2B,POLA1,POLB,POLD1,POLG,PRPS1,PRPS2,RRM1,RRM2,SAT1,NME1-NME2,SRM +WIKIPW Eukaryotic Transcription Initiation POLR3H,ERCC2,ERCC3,POLR1A,GTF2A2,GTF2B,GTF2E1,GTF2E2,GTF2F2,GTF2H1,GTF2H2,GTF2H3,GTF2H4,ILK,MNAT1,POLR1D,POLR3K,POLR2A,POLR2B,POLR2C,POLR2E,POLR2F,POLR2G,POLR2H,POLR2I,POLR2J,POLR2K,POLR3B,POLR3E,GTF2H2B,POLR3D,TAF5,TAF6,TAF7,TAF9,TAF12,TAF13,TBP,GTF2H2C,POLR1B,CCNH +WIKIPW Oxidative Stress MAPK14,CYBA,CYP1A1,NQO1,FOS,TXN2,GCLC,GPX1,GPX3,GSR,GSTT2,HMOX1,JUNB,MAOA,MGST1,MT1X,NFIX,NFKB1,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,MAPK10,GSTT2B,SOD1,SOD2,SOD3,SP1,TXNRD1,XDH,CAT +WIKIPW Diurnally regulated genes with circadian orthologs TUBB3,CEBPB,NCKAP1,SF3A3,RBPMS,CBX3,CRY1,CRY2,EIF4G2,ETV6,MAP3K7IP2,ERC2,GFRA1,GSTM3,GSTP1,HLA-DMA,DNAJA1,HSPA8,IDI1,ARNTL,MC1R,MYF6,G0S2,AZIN1,ZFR,PER1,PIGF,PPP1R3C,PPP2CB,PSMA4,PURA,SUMO3,KLF9,BTG1,CLDN5,SUMO1,UCP3,UGP2,NCOA4,HIST1H2BN,PER2,STBD1,VAPA,QKI,CLOCK,HERPUD1,DAZAP2,NR1D2 +WIKIPW mRNA processing LOC100130109,LOC100130932,LOC100132425,SFRS14,RBM5,HNRNPR,SRRM1,SF3B4,SF3A1,CD2BP2,NXF1,PRPF8,CUGBP1,CUGBP2,SFRS13A,CPSF4,TXNL4A,PAPOLA,RNPS1,SF3A3,TMED10,CLP1,SF3B2,NUDT21,SFRS16,DDX20,U2AF2,LOC119358,CLK1,CLK2,CLK3,SFRS12,CSTF1,CSTF2,CSTF3,DDX1,DHX8,DHX9,DHX15,XRN2,DNAJC8,NCBP2,CSTF2T,DICER1,SF3B3,SF3B1,PRPF6,FUS,RBMX,CPSF1,HNRNPA1,HNRNPA2B1,HNRNPAB,HNRNPC,HNRNPD,HNRNPH1,HNRNPH2,HNRNPK,HNRNPL,HNRNPU,PRMT2,PRMT1,HNRNPM,NCBP1,NONO,YBX1,PCBP2,CDC40,CPSF3,CPSF2,POLR2A,PPM1G,PRPF40A,METTL3,PSKH1,BRUNOL4,PTBP1,CLK4,SF4,LSM2,PTBP2,RPL36A,SFPQ,SFRS1,SFRS2,SFRS3,SFRS4,SFRS5,SFRS6,SFRS7,SFRS8,TRA2B,LOC643446,LOC645691,LOC650638,LOC653155,LOC653884,LOC653889,SNRNP70,SNRPA,SNRPA1,SNRPB,SNRPB2,SNRPD1,SNRPD2,SNRPD3,SNRPE,SNRPF,SNRPG,SNRPN,SRP54,SRPK1,SRPK2,SUPT5H,U2AF1,PABPN1,SF3A2,SMC1A,SF3B5,SPOP,DHX16,PHF5A,RBM17,PRPF18,SFRS9,RNMT,RNGTT,PRPF4B,PRPF4,PRPF3,EFTUD2,SNRNP40,RBM39,DHX38 +WIKIPW MAPK Cascade MAPK14,ELK1,RASA3,HRAS,ARAF,JUN,KRAS,MAP2,MBP,MAP3K1,MAP3K3,NRAS,PLCB3,MAPK1,MAPK3,MAPK10,MAP2K1,MAP2K2,MAP2K3,MAP2K6,MAP2K7,RAF1,RRAS,MAPK12,MAP2K4,SIPA1,BRAF,MAP3K12 +WIKIPW Wnt Signaling Pathway FZD10,CSNK1E,CTNNB1,DVL1,DVL2,DVL3,FZD2,FBXW2,GSK3B,APC,JUN,RHOA,LDLR,MYC,PAFAH1B1,WNT16,PLAU,WNT4,PPP2R5C,PPP2R5E,PRKCA,PRKCB,PRKCD,PRKCE,PRKCG,PRKCH,PRKCI,PRKD1,PRKCQ,PRKCZ,MAPK9,MAPK10,RAC1,CCND1,SFRP4,WNT1,WNT2,WNT3,WNT5A,WNT6,WNT7A,WNT7B,WNT10B,WNT11,WNT2B,FZD5,FZD3,WNT10A,FOSL1,WNT5B,AXIN1,FZD1,FZD6,FZD7,FZD8,FZD9,CCND2,CCND3,WNT3A +WIKIPW cytochrome P450 CYP4F8,CYP2U1,CYP2R1,CYP4F22,CYB5A,CYP1A1,CYP1A2,CYP1B1,CYP2A6,CYP2A7,CYP3A7,CYP2A13,CYP2B6,CYP2C19,CYP2C8,CYP2C9,CYP2C18,CYP2D6,CYP2E1,CYP2F1,CYP2J2,CYP3A4,CYP3A5,CYP4A11,CYP4B1,CYP7A1,CYP8B1,CYP11A1,CYP11B1,CYP11B2,CYP17A1,CYP19A1,CYP21A2,CYP24A1,CYP26A1,CYP27A1,CYP27B1,CYP51A1,CYB5R3,CYP4Z1,CYP4X1,CYP4A22,CYP4V2,CYP2S1,CYP27C1,CYP26C1,CYP4F3,CYB5R4,CYP39A1,CYB5R2,CYB5R1,POR,CYP2W1,CYP26B1,CYP20A1,CYP4F11,CYP3A43,CYP4F12,CYB5B,CYP4F2,CYP7B1 +WIKIPW Statin Pathway PharmGKB CYP7A1,ABCA1,HMGCR,APOA1,APOA4,APOC1,APOC2,APOC3,APOE,LCAT,LDLR,LIPC,LPL,LRP1,PLTP,SOAT1,DGAT1,SCARB1 +WIKIPW EGFR1 Signaling Pathway SH2D3C,TNK2,SPRY2,TNIP1,VAV3,CEBPA,CEBPB,MAP3K2,RALBP1,LOC119358,CREB1,CRK,CRKL,MAPK14,CSK,CTNND1,AP2A1,DNM1,DUSP1,EEF1A1,EGF,EGFR,ELF3,ELK1,ELK4,EPS8,EPS15,AKT1,PTK2B,FOXO1,FOS,CBLC,GAB1,SIN3A,APPL1,GJA1,GRB2,GRB7,GRB10,GRB14,GIT1,EPN1,SH3KBP1,HTT,HDAC1,HIP1,HRAS,INPPL1,ARAF,JAK1,JAK2,JUN,JUND,ARF4,KRAS,KRT7,KRT8,KRT17,KRT18,SMAD2,SMAD3,MCF2,MAP3K1,MAP3K3,MAP3K4,MYC,ATF1,NCK1,NRAS,PEBP1,PAK1,ASAP1,NDUFA13,PIK3C2B,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,PITPNA,PLCG1,PLCG2,PLD1,PLD2,PLEC1,PLSCR1,ERRFI1,APPL2,PRKAR1A,PRKCA,PRKCB,PRKCG,PRKCI,PKN2,PRKD1,PRKCZ,MAPK1,MAPK3,MAPK7,MAPK8,MAP2K1,MAP2K2,MAP2K3,MAP2K5,MAP2K7,PTK6,PTPN6,PTPN11,PTPN12,PTPRR,PXN,EPS15L1,RAB5A,RAC1,RAF1,RALB,RALGDS,RASA1,RBBP7,RGS16,RPS6KA1,RPS6KA2,RPS6KA3,CEACAM1,SH3BGRL,SH3GL2,SH3GL3,SHC1,WNK1,LOC652460,SNCA,SNRPD2,SOS1,SOS2,SP1,SRC,STAT1,STAT2,STAT3,STAT5A,STAT5B,STXBP1,TGIF1,VAV1,VAV2,YWHAB,SHOC2,CAMK2A,HIST3H3,ITCH,CASP9,NCK2,KLF11,PTPN5,REPS1,PIK3R3,HAT1,CAV1,CAV2,RFXANK,SOCS1,CBL,CBLB,RIPK1,ZNF259,WASL,MAP3K14,SOCS3,DOK2,REPS2,MTA2,RPS6KA5,BCAR1,USP6NL,GAB2,CDC42 +WIKIPW Non-homologous end joining XRCC6,LOC389901,MRE11A,PRKDC,LOC731751,XRCC4,XRCC5,NHEJ1 +WIKIPW G1 to S cell cycle control CDK4,CDK6,CDK7,CDKN1A,CDKN1B,CDKN1C,CDKN2A,CDKN2B,CDKN2C,CDKN2D,CREB3,CREB1,ATF6B,CREB3L4,GADD45A,E2F1,E2F2,E2F3,E2F4,E2F5,E2F6,ORC6L,ORC3L,POLA2,MCM2,MCM3,MCM4,MCM5,MCM6,MCM7,MDM2,MNAT1,MYC,MYT1,ATM,ORC1L,ORC2L,ORC4L,ORC5L,PCNA,POLE,POLE2,PRIM1,PRIM2,RB1,RBL1,CCND1,RPA1,RPA2,RPA3,LOC651610,TFDP1,TFDP2,TP53,WEE1,CDC45L,CREB3L3,CCNA1,CCNB1,CCND2,CCND3,CCNE1,CCNG2,CCNH,CREB3L1,CCNE2,CDC25A +WIKIPW Inflammatory Response Pathway COL1A2,COL3A1,FN1,IFNG,IL2,IL2RA,IL2RB,IL2RG,IL4,IL4R,IL5,IL5RA,LAMA5,LAMB1,LAMB2,LAMC1,LAMC2,LCK,THBS1,THBS3,TNFRSF1A,TNFRSF1B,VTN,ZAP70,CD28,CD80,CD86,CD40,CD40LG +WIKIPW GPCRs, Class A Rhodopsin-like NMUR1,TUBB3,RRH,OR5I1,CYSLTR1,CCR9,NPFFR2,GPR83,GPR75,GPR45,GPR44,HRH3,CHRM1,CHRM2,CHRM3,CHRM5,MAS1L,OR2D2,CCR1,CCR3,CCR4,CCR5,CCR6,CCR7,CCR8,CCBP2,CMKLR1,LTB4R,OR1I1,CNR1,CNR2,ADORA1,ADORA2A,OR6B1,OR2F2,ADORA2B,ADORA3,OR10A5,OR2AG1,ADRA1D,ADRA1B,ADRA1A,ADRA2A,ADRA2B,ADRA2C,CX3CR1,ADRB1,ADRB2,ADRB3,OR1Q1,DRD1,DRD2,DRD3,DRD4,DRD5,AGTR1,AGTR2,APLNR,EDNRA,EDNRB,F2R,F2RL1,F2RL2,GPR161,FPR1,FPR2,FPR3,OPN3,NTSR2,FSHR,GALR1,OR1C1,OR1A2,OR2F1,OR2B6,OR7A17,OR10J1,OR8B8,OPN1MW,OR11A1,OR10H3,OR10H2,OR10H1,OR7C2,OR7A5,OR7C1,RGL4,OR2W1,OR2T1,OR2J2,OR2H1,GHSR,GPR81,GPR77,P2RY10,GPR1,CCR10,GPR3,GPR4,XCR1,GPR6,NPBWR1,OR8D2,NPBWR2,OR10A4,CXCR3,PRLHR,GPR12,GPR15,GPR17,GPR18,GPR19,GPR20,GPR21,GPR22,LPAR4,MCHR1,GPR25,GPR27,GPER,GPR31,GPR32,GPR34,GPR35,GPR37,MLNR,GPR39,FFAR1,FFAR3,FFAR2,GRPR,GPR171,HCRTR1,HCRTR2,HRH1,HRH2,HTR1A,HTR1B,HTR1D,HTR1E,HTR1F,HTR2A,HTR2B,HTR2C,HTR4,HTR5A,HTR6,HTR7,GPR109A,OR5F1,IL8RA,IL8RB,OR7A10,LHCGR,OR2A7,MAS1,MC1R,MC2R,MC3R,MC4R,MC5R,OR2B3,OR2J3,OR14J1,MTNR1A,MTNR1B,NMBR,NPY1R,NPY2R,NPY5R,NTSR1,OPRD1,OPRK1,OPRL1,OPRM1,OR1D2,OR1F1,OR2C1,OR3A1,OR3A2,OXTR,P2RY1,P2RY2,P2RY4,P2RY6,P2RY11,CCRL1,P2RY13,GPR87,GPR173,GPR85,AVPR1A,AVPR1B,AVPR2,PPYR1,OR2S2,SUCNR1,NMUR2,CXCR7,CYSLTR2,LPAR5,PTAFR,PTGDR,PTGER1,PTGER2,PTGER3,PTGER4,PTGFR,PTGIR,OPN1LW,RHO,OPN1SW,BDKRB1,BDKRB2,NPFFR1,CXCR5,P2RY12,SSTR1,SSTR2,SSTR3,SSTR4,SSTR5,BRS3,TBXA2R,C3AR1,TRHR,OPN1MW2,CCR2,CXCR4,OR2H2,OR2A4,GPR68,GPR63,OR5V1,OR2B2,OR12D3,OR1A1,OR1D4,OR1E1,OR1E2,OR1G1,OR3A3,GPR174,GPR65,GALR3,OR6A2,GALR2,GPR109B,CCKAR,CCKBR,F2RL3,CCRL2,GPR50,GPR37L1,GPR52,OPN4,P2RY14 +WIKIPW Tryptophan metabolism AFMID,ACMSD,AANAT,CYP1A1,CYP1A2,CYP1B1,CYP2A13,CYP2C18,CYP2E1,CYP2F1,CYP2J2,CYP3A4,CYP19A1,DDC,DHCR24,ECHS1,ALDH1A1,ALDH2,ALDH9A1,ALDH3A2,HAAO,ABP1,GCDH,HSD17B10,HADH,AOX1,PRMT1,IDO1,ACAT1,MAOB,MDM2,ASMT,OGDH,AADAT,UBR5,RNF25,CYP4F12,TDO2,TPH1,LOC730429,UBE3A,WARS,CAT,ALDH1A2,KYNU,CYP7B1 +WIKIPW DNA Replication POLD3,DBF4,ORC6L,ORC3L,POLA2,RPA4,MCM2,MCM3,MCM4,MCM5,MCM6,MCM7,ORC1L,ORC2L,ORC4L,ORC5L,GMNN,PCNA,POLA1,POLD1,POLD2,POLE,POLE2,MCM10,PRIM1,PRIM2,POLD4,RFC1,RFC2,RFC3,RFC4,RFC5,RPA1,RPA2,RPA3,UBA52,UBC,CDT1,CDC7,CDC45L,CDC6 +WIKIPW Hedgehog Signaling Pathway CREBBP,DYRK1A,SIN3A,GAS1,STK36,GLI1,GLI2,GLI3,IGF2,IHH,DHH,SUFU,RAB23,PTCH1,HHIP,SHH,SKI,SMO,PTCH2,CCNB1,CDC2 +WIKIPW Endochondral Ossification ADAMTS5,KIF3A,COL2A1,COL10A1,CST5,CTSL2,ACAN,AKT1,FGF2,FGFR1,FGFR3,FRZB,ALPL,GH1,GHR,GLI3,HMGCS1,IGF1,IGF1R,IGF2,IHH,MEF2C,MGP,MMP9,MMP13,DDR2,CHST11,ENPP1,CAB39,PLAT,PLAU,SLC38A2,SOX6,PRKACA,PTCH1,PTH,PTHLH,PTH1R,NKX3-2,BMP6,BMP7,BMPR1A,SOX5,SOX9,SPP1,STAT1,STAT5B,TGFB1,TGFB2,THRA,TIMP3,VEGFA,CALM1,CALM2,CALM3,IFT88,SCIN,RUNX2,RUNX3,SERPINH1,FGF18,ADAMTS4,ADAMTS1,HDAC4 +WIKIPW Cytoplasmic Ribosomal Proteins FAU,RPL13A,RPL36,RPS6KA6,HNRNPH2,RPSA,RPL10A,RPL3,RPL3L,RPL4,RPL5,RPL6,RPL7,RPL7A,RPL8,RPL9,RPL10,RPL11,RPL12,RPL13,RPL15,RPL17,RPL18,RPL18A,RPL19,RPL21,RPL22,RPL23A,RPL24,RPL26,RPL27,RPL30,RPL27A,RPL28,RPL29,RPL31,RPL32,RPL34,RPL35A,RPL37,RPL37A,RPL38,RPL39,RPL41,RPL36A,RPLP0,RPLP1,RPLP2,RPS2,RPS3,RPS3A,RPS4X,RPS4Y1,RPS5,RPS6,RPS6KA1,RPS6KA2,RPS6KA3,RPS6KB1,RPS6KB2,RPS7,RPS8,RPS9,RPS10,RPS11,RPS12,RPS13,RPS14,RPS15,RPS15A,RPS16,RPS17,RPS18,RPS19,RPS20,RPS21,RPS23,RPS24,RPS25,RPS26,RPS27,RPS27A,RPS29,LOC653881,UBA52,RPL14,RPL23,MRPL19 +WIKIPW Insulin Signaling SGK2,FLOT1,CAP1,SORBS1,MAP3K2,EHD1,KIF3A,MAP4K5,MAP4K1,SNX26,MAP3K8,CRK,MAPK14,EGR1,EIF4E,EIF4EBP1,ELK1,AKT1,AKT2,FOXO1,FOXO3,FLOT2,RHOQ,FOS,CBLC,SGK3,MTOR,STXBP4,GAB1,SHC2,RPS6KA6,GRB2,GRB10,GRB14,RAPGEF1,GSK3A,GSK3B,GYG1,GYS1,GYS2,EHD2,PIK3R4,HRAS,IGF1R,IKBKB,INPP4A,INPPL1,INSR,IRS1,JUN,ARF1,KIF5B,ARF6,LIPE,MAP3K1,MAP3K3,MAP3K4,MAP3K5,MAP3K9,MAP3K10,MAP3K11,MYO1C,MINK1,ENPP1,PDPK1,PFKL,PFKM,PIK3C2A,PIK3C2G,PIK3C3,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,SHC3,PPP1R3A,PRKAA1,PRKAA2,PRKCA,PRKCB,PRKCD,PRKCH,PRKCI,PRKCQ,PRKCZ,MAPK1,MAPK3,MAPK4,MAPK6,MAPK7,MAPK8,MAPK11,MAPK9,MAPK10,MAPK13,MAP2K1,MAP2K2,MAP2K3,MAP2K5,MAP2K6,MAP2K7,PTEN,RHOJ,PTPN1,TRIB3,PTPN11,PTPRF,RAB4A,MAP4K2,RAC1,RAC2,RAF1,REG1A,RHEB,RPS6KA1,RPS6KA2,RPS6KA3,RPS6KB1,RPS6KB2,RRAD,MAPK12,MAP2K4,SGK1,SHC1,SLC2A1,SLC2A4,SNAP25,SOS1,SOS2,SRF,STX4,STXBP1,STXBP2,STXBP3,VAMP2,MAP3K7,TSC1,TSC2,XBP1,MAP3K12,IRS4,MAP4K3,PIK3R3,SOCS1,IRS2,CBL,CBLB,SNAP23,RPS6KA4,MAP3K14,SOCS3,MAP3K6,MAP3K13,RPS6KA5,CYTH3,MAP4K4,TBC1D4 +WIKIPW IL-2 Signaling Pathway STAM2,GNB2L1,CHUK,CISH,CREB1,CRK,CRKL,MAPK14,EIF4E,AKT1,ETS1,ETS2,PTK2B,FOXO3,PLCB1,MTOR,FYN,GRB2,NR3C1,HSP90AA1,ICAM1,IFNA1,IL2,IL2RA,IL2RB,IL2RG,IRS1,JAK1,JAK2,JAK3,KRAS,LCK,LYN,NFKB1,YBX1,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,PRKCZ,MAPK1,MAPK3,MAPK8,MAPK9,MAP2K1,MAP2K2,PTPN6,PTPN11,RAF1,BCL2,RELA,RPS6KB1,SHB,SHC1,SOS1,STAT1,STAT3,STAT5A,STAT5B,SYK,TERT,VAV1,STAM,MKNK1,SOCS1,IRS2,EIF3B,CBL,SOCS3,NMI,MAPKAPK2,ITM2B,CD53,GAB2 +WIKIPW Steroid Biosynthesis F13B,HSD3B1,HSD3B2,HSD17B1,HSD17B3,HSD17B2,HSD17B4,HSD17B7 +WIKIPW Urea cycle and metabolism of amino groups CKM,CPS1,NAGS,GAMT,GATM,GLUD1,ARG1,ARG2,ASL,ASS1,OAT,ODC1,OTC,PYCR1,ALDH18A1,PYCRL,SMS,SRM,ACY1 +WIKIPW Glycogen Metabolism GBE1,PPP2R3B,GSK3A,GSK3B,GYG1,GYS1,GYS2,PGM1,PHKA1,PHKA2,PHKB,PHKG1,PHKG2,PPP2CA,PPP2CB,PPP2R1A,PPP2R1B,PPP2R2A,PPP2R2B,PPP2R2C,PPP2R3A,PPP2R4,PPP2R5A,PPP2R5B,PPP2R5C,PPP2R5D,PPP2R5E,PYGB,PYGL,PYGM,UGP2,CALM1,CALM2,CALM3,GYG2 +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GRM1,GRM2,GRM3,GRM4,GRM5,GRM6,GRM7,GRM8,GPRC5B,GPRC5D,GPRC5C,CASR,GPRC5A,GABBR2 +WIKIPW Regulation of Actin Cytoskeleton ARPC5,ABI2,WASF2,PAK4,BAIAP2,GNA13,CFL1,CFL2,NCKAP1,CHRM1,CHRM2,CHRM3,CHRM5,PIP5KL1,CRK,CSK,DOCK1,EGF,EGFR,F2,F2R,FGD1,FGF1,FGF2,FGF3,FGF4,FGF5,FGF6,FGF7,FGF8,FGF9,FGF10,FGF11,FGF12,FGF13,FGF14,FGFR1,FGFR3,FGFR2,FGFR4,RRAS2,MRAS,FN1,PIP5K1C,PIK3R5,FGF20,FGF21,CYFIP2,FGF22,GNA12,GIT1,GRLF1,GSN,PIK3R4,APC,ITGA1,KRAS,RHOA,LIMK1,MOS,MSN,MYH10,MYL1,MYL3,MYLK,PPP1R12A,NRAS,PAK1,PAK2,PAK3,ARHGEF4,PDGFA,PDGFB,PDGFRA,PDGFRB,PFN1,PIK3C2A,PIK3C2G,PIK3C3,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,PIP4K2A,SSH1,SSH3,ENAH,MAPK1,MAPK3,MAPK4,MAPK6,GNG12,MAP2K1,MAP2K2,PAK6,PAK7,PTK2,PXN,RAC1,RAC2,RAC3,RAF1,RDX,ACTB,ROCK1,BDKRB1,RRAS,BDKRB2,SLC9A1,SOS1,SOS2,BRAF,ACTG1,TMSB4X,LOC727758,VAV1,VCL,VIL1,EZR,WAS,PIP4K2C,RASSF7,FGF23,PIP5K1A,PIP5K1B,PIP4K2B,PIK3R3,SSH2,ACTN1,FGF18,FGF17,IQGAP1,ARHGEF7,WASF1,ARHGEF1,CD14,ARHGEF6,ROCK2,BCAR1,CDC42 +WIKIPW Hypertrophy Model ADAM10,DUSP14,HBEGF,EIF4E,EIF4EBP1,MSTN,ANKRD1,IFNG,IFRD1,CYR61,IL1A,IL1R1,IL18,JUND,MYOG,ATF3,ZEB1,VEGFA,NR4A3,WDR1 +WIKIPW amino acid conjugation of benzoic acid GLYATL2,ACSS2,GLYATL1 +WIKIPW G13 Signaling Pathway GNA13,CFL1,CFL2,IQGAP2,CIT,DIAPH1,RHOA,ARHGDIB,ARHGDIG,LIMK1,MAP3K4,MYBPH,MYL1,PAK3,PFN1,PIK3CA,PIK3CB,PIK3CD,PIK3R2,PIP4K2A,PPP1CB,PKN1,MAPK10,SH3RF1,RAC1,ROCK1,RPS6KB1,RTKN,LOC727758,WAS,CALM1,CALM2,CALM3,RHPN2,IQGAP1,WASL,ARHGEF1,ROCK2,CDC42 +WIKIPW Acetylcholine Synthesis CHAT,CHKA,ACHE,PCYT1A,PDHA1,PDHA2 +WIKIPW Id Signaling Pathway CTNNB1,EGF,ELK1,ELK3,ELK4,FLT1,HES1,ID1,ID2,ID3,ID4,IFI16,IGF1,IGF1R,IRS1,KDR,SMAD1,SMAD3,SMAD4,SMAD5,MYF5,MYF6,MYOD1,MYOG,ATF3,NFKB1,NGF,PAX2,PAX5,PSMD4,RB1,RBL1,RBL2,RELA,BMP2,BMP6,BMPR2,SREBF1,TCF3,TCF7L2,TCF12,TERT,TGIF1,VEGFA,PAX8,CCNA2,CCNE1,MSC,ACVRL1,CD40LG +WIKIPW Cytokines and Inflammatory Response (BioCarta) CSF2,CSF3,CXCL1,CXCL2,HLA-DRA,HLA-DRB1,IFNB1,IFNG,IL1A,IL1B,IL2,IL4,IL5,IL6,IL10,IL12B,IL13,IL15,PDGFA,TGFB1,TNF,CD4 +WIKIPW Mismatch repair LIG1,MLH1,MSH2,PCNA,POLD1,RFC1,RPA1,EXO1 +WIKIPW Glycolysis and Gluconeogenesis DLD,ENO1,ENO2,ENO3,FBP1,ALDOA,ALDOB,ALDOC,G6PC,GAPDH,GAPDHS,GCK,GOT1,GOT2,GPI,HK1,HK2,HK3,LDHA,LDHB,LDHC,MDH1,MDH2,PC,PCK1,PDHA1,PDHA2,PDHB,PFKL,PFKM,PFKP,PGAM1,PGAM2,PGK1,PGK2,PKLR,PKM2,LOC652797,TPI1,PDHX,FBP2,LDHAL6B +WIKIPW Calcium Regulation in the Cardiac Cell RGS19,RGS14,GNB5,ADCY1,ADCY2,GJB6,ADCY3,YWHAQ,ADCY5,PKIG,ADCY6,CHRM1,CHRM2,ADCY7,CHRM3,CHRM5,ADCY8,ADCY9,GJB4,ADRA1D,ADRA1B,ADRA1A,ADRB1,ADRB2,ADRB3,ADCY4,FKBP1A,RGS17,GJA1,GJA3,GJA4,GJA5,GJA8,GJB1,GJB2,GJB3,GJB5,GNA11,GNAI1,GNAI2,GNAI3,GNAO1,GNAQ,GNAS,GNAZ,GNB1,GNB2,GNB3,GNG3,GNG4,GNG5,GNG7,GNG11,GNGT1,SFN,GRK4,GRK5,GRK6,ANXA6,ITPR1,ITPR2,ITPR3,KCNB1,KCNJ3,KCNJ5,ARRB1,ARRB2,ATP1A4,ATP1B1,ATP1B2,ATP1B3,FXYD2,ATP2A2,ATP2A3,ATP2B1,ATP2B2,ATP2B3,GNG13,PLCB3,PLN,GNG2,PRKACA,PRKACB,PKIA,PKIB,PRKAR1A,PRKAR1B,PRKAR2A,PRKAR2B,PRKCA,PRKCB,PRKCD,PRKCE,PRKCG,PRKCH,PRKD1,PRKCQ,PRKCZ,GNG12,GJC2,GJD2,GNB4,RGS1,RGS2,RGS3,RGS4,RGS7,RGS10,RGS16,RYR1,RYR2,RYR3,RGS18,SLC8A1,SLC8A3,YWHAB,YWHAE,YWHAG,YWHAH,YWHAZ,CACNA1A,CACNA1B,CACNA1C,CACNA1D,CACNA1E,CACNA1S,CACNB1,CACNB3,CALM1,CALM2,CALM3,GJA9,CALR,CAMK4,CAMK2A,CAMK2B,CAMK2D,CAMK2G,CASQ1,CASQ2,RGS5,CAMK1,RGS20,RGS11,RGS9,GNG8,RGS6 +WIKIPW Complement Activation, Classical Pathway CD55,MASP1,LOC653879,C1QA,C1QB,C1QC,C1S,C2,C3,C4A,C4B,C5,C6,C7,C8A,C8B,C9 +WIKIPW Biogenic Amine Synthesis COMT,AANAT,DBH,DDC,GAD1,GAD2,HDC,MAOA,ACHE,ASMT,PAH,PNMT,TH,TPH1 +WIKIPW ACE Inhibitor Pathway AGT,AGTR1,AGTR2,KNG1,NOS3,REN,BDKRB2 +WIKIPW Complement and Coagulation Cascades KEGG MASP2,CPB2,CR1,CR2,A2M,F2,F2R,F3,F5,F7,F8,F9,F10,F12,F13B,FGB,SERPIND1,KLKB1,KNG1,CD46,SERPINC1,SERPINE1,SERPINA5,SERPINA1,PLAT,PLAU,PLAUR,PLG,SERPINF2,PROC,PROS1,MASP1,BDKRB1,LOC653879,TFPI,THBD,SERPING1,C1QA,C1QB,C1QC,C1S,C2,C3,C3AR1,C5AR1,C6,C7,C8G,C9,VWF +WIKIPW TGF Beta Signaling Pathway CREBBP,CTNNB1,EGF,ENG,EP300,FKBP1A,ZNF423,FOS,BAMBI,HRAS,IFNG,INHBA,ITGB6,JAK1,JUN,LIF,LTBP1,SMAD1,SMAD2,SMAD3,SMAD4,SMAD5,SMAD6,SMAD7,SMAD9,NFKB1,SERPINE1,LEF1,MAPK3,MAPK9,SKI,SKIL,BMP4,SPP1,STAT1,STAT3,TFE3,TGFB1,TGFBR1,TGFBR2,TGFBR3,TGIF1,THBS1,TNF,WNT1,RUNX2,RUNX3,FOXH1,NOG,ZFYVE9,ZEB2 +WIKIPW Heme Biosynthesis ALAD,ALAS1,ALAS2,FECH,HMBS,PPOX,UROD,UROS +WIKIPW Monoamine GPCRs CHRM2,CHRM3,CHRM5,ADRA1D,ADRA1B,ADRA1A,ADRA2A,ADRA2B,ADRA2C,ADRB1,ADRB2,ADRB3,DRD1,DRD2,DRD3,DRD4,DRD5,HRH1,HRH2,HTR1A,HTR1B,HTR1D,HTR1E,HTR1F,HTR2A,HTR2B,HTR2C,HTR4,HTR5A,HTR6,HTR7 +WIKIPW EPO Receptor Signaling CISH,EPO,EPOR,AKT1,GRB2,IRS1,JAK2,PDK1,PIK3CG,MAPK1,MAPK3,MAP2K1,MAP2K2,PTPRC,RAF1,RASA1,SHC1,SOS1,SRC,STAT1,STAT3,STAT5A,STAT5B,SOCS1,IRS2 +WIKIPW Delta-Notch Signaling Pathway ADAM10,CNTF,CNTFR,CNTN1,ZFPM1,JAG1,DTX1,EGF,EGFR,EP300,AKT1,FHL1,SNW1,SPEN,NCSTN,HEY1,HEY2,POFUT1,SIN3A,DLL1,GSK3B,HDAC1,HDAC2,HES1,APP,RBPJ,JAG2,JAK2,JUN,HES5,LCK,LFNG,SMAD1,SMAD3,SMAD4,MAGEA1,MEF2C,MFNG,ASCL1,NFKBIA,NOTCH1,NOTCH2,NOTCH3,NOTCH4,NOV,FURIN,APH1A,LEF1,PIK3R1,PIK3R2,DLL4,FBXW7,HES6,MAML3,WDR12,PSENEN,MAPK1,MAPK3,PSEN1,PSEN2,HIVEP3,RELA,RING1,SKP1,SKP2,STAT3,ADAM17,TCF3,TLE1,TP53,YY1,ZFP91,APH1B,ITCH,MAML2,CUL1,NUMB,SAP30,KAT2B,NUMBL,CIR1,NCOR1,NCOR2,MAML1,RBX1 +WIKIPW Senescence and Autophagy CDKN1B,CDKN2A,CEBPB,ATG7,COL1A1,MAPK14,E2F1,FN1,MTOR,CXCL1,GSK3B,GSN,HRAS,IFI16,IFNB1,IFNG,IGF1,IGF1R,IGFBP5,IGFBP7,IL3,IL6,IL6R,IL6ST,IL8,ING1,IRF1,IRF5,IRF7,LAMP2,MDM2,MLL,SERPINE1,SERPINB2,SH3GLB1,PLAT,MAPK1,MAP2K1,MAP2K3,PTEN,RAF1,RB1,RNASEL,BMI1,BMP2,SPARC,BRAF,TGFB1,THBS1,TP53,VTN,ULK1,MAP1LC3A,BECN1,CREG1,ATG5,CXCL14,CD44,CDC25B +WIKIPW Type II interferon signaling (IFNG) HIST4H4,CYBB,IFI6,GBP1,HLA-B,HLA-C,ICAM1,IRF8,IFIT2,IFNA2,IFNB1,IFNG,IFNGR1,IFNGR2,IL1B,CXCL10,IRF1,IRF2,IRF4,JAK1,JAK2,CIITA,CXCL9,NOS2,OAS1,HIST2H4B,PRKCD,EIF2AK2,PSMB9,PTPN11,REG1A,SPI1,STAT1,STAT2,TAP1,HIST1H4I,HIST1H4A,HIST1H4D,HIST1H4F,HIST1H4K,HIST1H4J,HIST1H4C,HIST1H4H,HIST1H4B,HIST1H4E,HIST1H4L,HIST2H4A,SOCS1,SOCS3,ISG15 +WIKIPW Oxidative phosphorylation ATP5H,ATP5L,NDUFA11,ATP5S,GZMB,NDUFS7,NDUFA2,NDUFA3,NDUFA4,NDUFA5,NDUFA6,NDUFA7,NDUFA8,NDUFA9,NDUFA10,NDUFAB1,NDUFB1,NDUFB2,NDUFB4,NDUFB5,NDUFB6,NDUFB7,NDUFB8,NDUFB9,NDUFB10,NDUFC1,NDUFC2,NDUFS1,NDUFS2,NDUFS3,NDUFV1,NDUFS4,NDUFS5,NDUFS6,NDUFS8,NDUFV2,NDUFV3,ATP5A1,ATP5B,ATP5D,ATP5E,ATP5F1,ATP5G1,ATP5G2,ATP5G3,ATP5I,ATP5J,ATP6AP1,ATP5O,NDUFA4L2,ATP5J2 +WIKIPW Hypothetical Network for Drug Addiction NISCH,ADCY8,CREB1,DRD1,DRD2,DRD4,ZHX2,GRIA1,GRIA2,GRIA3,GRIA4,GRIN1,GRIN2A,GRIN2B,GRIN2C,GRIN2D,GRM1,GRM5,GJB7,TERF2IP,PPA1,PRKACA,PRKCE,MAPK1,MAPK3,MAP2K1,MAP2K2,ACTA1,CAMK4,CAMK2B,KRIT1 +WIKIPW ErbB signaling pathway CDKN1A,CDKN1B,PAK4,NRG3,CRK,NRG4,HBEGF,EGF,EGFR,EIF4EBP1,ELK1,ERBB2,ERBB3,ERBB4,EREG,PIK3R5,CBLC,MTOR,ABL1,GAB1,SHC2,GRB2,GSK3B,NRG1,HRAS,ARAF,JUN,AREG,MYC,NCK1,PLCG1,PRKCA,MAPK1,MAPK8,MAP2K1,MAP2K7,BAD,PTK2,RPS6KB1,SOS1,SRC,STAT5A,BTC,TGFA,AREGB,CAMK2A,NRG2 +WIKIPW Arachidonate Epoxygenase / Epoxide Hydrolase CYP2C8,CYP2C9,CYP2J2,EPHX2,GSTP1,COX5A +WIKIPW Catalytic cycle of mammalian FMOs FMO2,FMO3,FMO4,FMO5 +WIKIPW T Cell Receptor Signaling Pathway SH2B3,SH2D3C,WASF2,RASGRP2,VAV3,CEBPB,KHDRBS1,GRAP,YWHAQ,MAP4K1,FCRL3,CISH,CREB1,CREBBP,CRK,CRKL,CTNNB1,NFAM1,DLG1,DNM2,DOCK2,DTX1,DUSP3,TUBB,AKT1,PTK2B,CABIN1,FOS,CD2AP,ABL1,FYB,FYN,PRKD2,PTPN22,LAT,SIT1,STK39,GRB2,RAPGEF1,DBNL,ITK,ITPR1,JAK3,JUN,LCK,LCP2,ARHGDIB,LYN,MAP3K1,MUC1,NCK1,NCL,NEDD9,NFATC2,PAK1,DEF6,TRAT1,EVL,HDAC7,ACP1,PIK3R1,PIK3R2,PLCG1,LAX1,LIME1,PPP3CB,ENAH,PAG1,PRKCQ,MAPK1,MAPK3,MAPK7,MAP2K1,MAP2K2,PTK2,PTPN3,PTPN6,PTPN11,PTPN12,PTPRC,PTPRH,PTPRJ,PXN,RAC2,RAP1A,RASA1,SH3BP2,SHB,SHC1,SLA,SOS1,SOS2,SRC,BRAF,STAT1,STAT5A,STAT5B,SYK,TUBA4A,TXK,VASP,VAV1,VAV2,WAS,WIPF1,ZAP70,SLA2,CARD11,SKAP1,CBL,CBLB,RIPK2,ARHGEF7,BCL10,SKAP2,SH2D2A,PSTPIP1,UNC119,CD2,CD3D,CD3E,CD3G,CD247,CD4,CD5,CD8A,GRAP2,HOMER3,ARHGEF6,GIT2,GAB2,CDC42 +WIKIPW Polyol pathway AKR1B1,KHK,SORD +WIKIPW Tamoxifen metabolism CYP1A2,CYP1B1,CYP2A6,CYP2C19,CYP2C8,CYP2C9,CYP2D6,CYP2E1,CYP3A4,CYP3A5,FMO1,FMO3,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,SULT1E1,SULT1A1,SULT2A1,UGT2B7 +WIKIPW sulfation SULT4A1,SULT1C4,SULT1B1,GSR,SULT6B1,SULT1C3,SULT1A4,SULT1E1,SULT1A2,SULT1A1,SULT1A3,SULT1C2,SULT2B1,SULT2A1,PAPSS2,PAPSS1 +WIKIPW Arylamine metabolism CYP1A2,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,SULT1A2,SULT1A1,NAT1 +WIKIPW Benzo(a)pyrene metabolism AKR1C4,CYP1A1,CYP1B1,CYP3A4,AKR1C1,AKR1C2,EPHX1,AKR1C3 +WIKIPW Estrogen metabolism CYP1A1,CYP1A2,CYP1B1,CYP3A4,NQO1,GSTA1,GSTM1,STS,ARSD,ARSE,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,SULT1E1,SULT1A1,UGT2B7 +WIKIPW Glucuronidation UGT2A1,HK1,PGM1,PGM3,PGM5,UGT2B28,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,PGM2,UGDH,UGP2,UGT2B4,UGT2B7,UGT2B10,UGT2B15,UGT2B17,UGT2A3 +WIKIPW Aflatoxin B1 metabolism CYP2A13,CYP3A4,EPHX1,AKR7A3,GSTM1,GSTT1,AKR7A2 +WIKIPW metapathway biotransformation CHST4,GLYAT,AKR1A1,UGT2B11,CYP46A1,UGT2A1,AKR1C4,INMT,CYP4F8,CHST14,CYP2U1,GSTO2,CYP2R1,NAT12,CYP4F22,COMT,CYP1A1,CYP1A2,CYP1B1,CYP2A6,CYP2A7,CYP3A7,CYP2A13,CYP2B6,CYP2C19,CYP2C8,CYP2C9,CYP2C18,CYP2D6,CYP2E1,CYP2F1,CYP2J2,CYP3A4,CYP3A5,CYP4B1,CYP7A1,CYP8B1,CYP11A1,CYP11B1,CYP11B2,CYP17A1,CYP19A1,CYP21A2,CYP24A1,CYP26A1,CYP27A1,CYP27B1,CYP51A1,AKR1C1,AKR1C2,CHST13,CYP4Z1,EPHX1,EPHX2,GLYATL2,GSTA5,HS3ST5,AKR7A3,AKR1B1,FMO1,FMO2,FMO3,FMO4,FMO5,CHST5,NAT6,SULT4A1,CYP4X1,NAT9,HS6ST3,SULT1C4,SULT1B1,CYP4V2,GPX1,GPX2,GPX3,GPX4,GPX5,GSR,GSS,GSTA1,GSTA2,GSTA3,GSTA4,GSTM1,GSTM2,GSTM3,GSTM4,GSTM5,GSTP1,GSTT1,GSTT2,GSTZ1,CYP2S1,HNMT,NDST1,CYP27C1,NAT8L,CYP26C1,GSTK1,SULT6B1,CYP4F3,CHST6,MGST1,MGST2,MGST3,AKR1B15,SULT1C3,SULT1A4,NNMT,CHST11,NAT5,CYP39A1,UGT2B28,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,CYP2W1,NAT10,CHST12,CHST7,CYP26B1,BAAT,AKR1B10,NAT14,CYP20A1,CYP4F11,GAL3ST2,CHST8,NDST4,HS3ST6,CYP3A43,GSTT2B,CYP4F12,AKR1D1,SULT1E1,SULT1A2,SULT1A1,SULT1A3,SULT1C2,SULT2B1,SULT2A1,TPMT,UGT2B4,UGT2B7,UGT2B17,KCNAB1,GAL3ST4,UGT2A3,GSTCD,NAT11,NAT13,CHST9,NDST2,KCNAB2,CYP4F2,CHST1,AKR7A2,AKR1C3,GAL3ST3,NAT1,HS6ST2,NAT8,KCNAB3,GLYATL1,NDST3,HS6ST1,CYP7B1,CHST2,GSTO1,CHST3,CHST10,GAL3ST1,HS2ST1,HS3ST4,HS3ST3B1,HS3ST3A1,HS3ST2,HS3ST1 +WIKIPW methylation COMT,MAT2B,HNMT,MAT1A,MAT2A,NNMT,PNMT,TPMT +WIKIPW SIDS Susceptibility Pathways CTCF,PPARGC1A,CHRNA4,CHRNB2,CHRNB4,ADCYAP1,ADCYAP1R1,TPH2,PPARGC1B,CREB1,DDC,ECE1,EN1,EP300,ESR2,FOXM1,GATA2,GATA3,GNB3,NR3C1,TLX3,HADHA,HES1,HSPD1,HTR1A,HTR2A,ACADM,IL6,IL6R,IL8,IL10,AR,KCNH2,KCNQ1,HES5,PHOX2A,LMX1B,MAOA,ASCL1,NFKB1,NFYA,NKX2-2,NKX3-1,YBX1,POU3F2,FEV,CC2D1A,AVP,CDCA7L,REST,RET,RORA,RYR2,SCN5A,SLC6A4,SLC9A3,SP1,TNF,TPH1,C4A,C4B,VIPR1,VIPR2,CAV3,PHOX2B +WIKIPW DNA damage response RAD50,CDK2,CDK4,CDK5,CDK6,CDKN1A,CDKN1B,GADD45G,TLK2,CHEK1,CHEK2,HUS1B,CREB1,DDB2,GADD45A,E2F1,FANCD2,ABL1,BBC3,SESN1,SFN,H2AFX,APAF1,FAS,MRE11A,MYC,GADD45B,NBN,ATM,RRM2B,PMAIP1,PML,CYCS,ATR,LRDD,PRKDC,BAX,RAD1,RAD9A,RAD17,RAD51,RAD52,RB1,CCND1,RFC1,RPA2,BID,TP53AIP1,LOC648152,LOC651610,LOC651921,BRCA1,TP53,LOC731751,SMC1A,CASP3,CASP8,ATRIP,CASP9,CCNB3,TNFRSF10B,CCNB1,CCND2,CCND3,CCNE1,CCNB2,CCNE2,CDC2,TLK1,CDC25A,CDC25C +WIKIPW DNA damage response (only ATM dependent) BCL2L11,FRAT1,CDKN1A,CDKN1B,CDKN2A,CTNNB1,DVL1,DVL2,DVL3,MLKL,ERBB2,AKT1,AKT2,FOXO3,ABL1,G6PC,BBC3,GRB2,GSK3B,HMGB1,APC,FASLG,INSR,IRS1,JUN,RHOA,LDLR,SMAD3,SMAD4,MDM2,MAP3K1,MAP3K4,MYC,ATM,NFKB1,NFKB2,PCK2,WNT16,PDK1,PLAU,PMAIP1,WNT4,PPP2R5C,PPP2R5E,MAPK1,MAPK8,MAPK9,MAPK10,BAD,PTEN,BAK1,BAX,RAC1,RAC2,RAC3,RBL2,CCND1,BCL2,BCL6,SCP2,BIK,SHC1,LOC651610,SOD2,SOS1,SOS2,MAP3K7,TGFB1,TP53,TP73,WNT1,WNT2,WNT3,WNT5A,WNT6,WNT7A,WNT7B,WNT10B,WNT11,WNT2B,WNT10A,FOSL1,WNT5B,AXIN1,CAT,CCND2,CCND3,WNT3A,CCNG2,CDC42 +WIKIPW estrogen signalling HDAC5,CDK7,CHUK,CREB1,CREBBP,MAPK14,ELK1,EP300,ERCC2,AKT1,ERCC3,ESR1,FOS,SHC2,SIN3A,GNAS,GNB1,GNGT1,GPER,GRB2,GTF2A2,GTF2B,GTF2E1,GTF2E2,GTF2F2,GTF2H1,GTF2H2,GTF2H3,GTF2H4,HDAC1,HDAC2,HRAS,IKBKB,ILK,JUN,MNAT1,NFKB1,HDAC7,PIK3CA,POLR2A,POLR2B,POLR2C,POLR2E,POLR2F,POLR2G,POLR2H,POLR2I,POLR2J,POLR2K,PRKACA,HDAC8,MAPK1,MAPK9,MAP2K1,CCND1,BCL2,GTF2H2B,SOS1,SP1,SRC,BRCA1,BRAF,TAF5,TAF6,TAF7,TAF9,TAF12,TAF13,TBP,GTF2H2C,IKBKG,HDAC3,CCNH,NCOR1,HDAC4 +WIKIPW Retinol metabolism (BiGCaT, NuGO) ADH1A,ADH4,CRABP1,CRABP2,RDH12,CYP2E1,RDH10,CYP26A1,ALDH1A1,ALDH1A3,NPC1L1,LPL,RDH8,BCMO1,RETSAT,CYP26B1,RARA,RARB,RARG,RBP1,RBP2,RBP4,RDH5,RLBP1,RXRA,RXRB,RXRG,ABCG5,ABCG8,SULT1A1,SULT2B1,ALDH1A2,LRAT,DHRS3,CD36,SCARB1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway CREB1,MAPK14,ELK1,ELK4,FOS,GNAI1,GNAI2,GNAI3,GNAO1,HTR1A,HTR1B,HTR1D,HTR1E,HTR1F,ITPR1,RHOA,MAP3K1,PDPK1,PIK3CA,MAPK1,MAPK3,MAP2K1,MAP2K2,MAP2K3,MAP2K6,RAP1A,RASGRF1,SRF,BRAF,MAPKAPK3,RPS6KA5,MAPKAPK2 +WIKIPW VandyConte::Blakely Network UNC13B,HRH3,FBXO32,TPH2,ADORA2A,MAPK14,DBH,AGT,AMPH,IL1B,IL1R1,ITGB3,ACHE,NOS1,TNFRSF11B,PPP2CB,PVRL2,RBL2,SLC5A7,SLC6A1,SLC6A2,SLC6A3,SLC6A4,STX1A,SYN1,TDO2,TGFB1I1,TH,TNF,TSC2,CDC25C +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling ELK1,ELK4,GATA4,GNAQ,HTR2A,HTR2B,HTR2C,ITPR1,MAPK1,MAPK3,MAP2K1,MAP2K2,RAF1,RASGRF1,SRF,MAPKAPK2 +WIKIPW Serotonin Receptor 2 -> STAT3 signaling HTR2A,JAK2,STAT3 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling EGR1,ELK1,ELK4,GNAS,NR3C1,HTR4,HTR6,HTR7,ATF1,MAPK1,MAPK3,MAP2K1,MAP2K2,RAP1A,SRF,BRAF,RPS6KA5,MAPKAPK2 +WIKIPW Toll-like receptor signaling pathway TLR6,MAP3K7IP1,TIRAP,CHUK,MAP3K8,MAPK14,TICAM1,AKT1,AKT2,MAP3K7IP2,FOS,PIK3R5,LY96,TBK1,IFNA1,IFNA2,IFNA4,IFNA5,IFNA6,IFNA7,IFNA8,IFNA10,IFNA13,IFNA14,IFNA16,IFNA17,IFNA21,IFNAR1,IFNAR2,IFNB1,TICAM2,IKBKB,IL1B,IL6,IL8,IL12A,IL12B,CXCL10,IRAK1,IRF3,IRF5,IRF7,JUN,LBP,CXCL9,MYD88,NFKB1,NFKB2,NFKBIA,TMED7,IRAK4,TLR7,TLR8,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,TLR9,TOLLIP,MAPK1,MAPK3,MAPK8,MAPK11,MAPK9,MAPK10,MAPK13,MAP2K1,MAP2K2,MAP2K3,MAP2K6,MAP2K7,RAC1,RELA,MAPK12,CCL3,CCL4,CCL5,CXCL11,MAP2K4,SPP1,STAT1,MAP3K7,TLR1,TLR2,TLR3,TLR4,TLR5,TNF,TRAF3,TRAF6,CASP8,PIK3R3,IKBKG,RIPK1,FADD,CD14,CD80,CD86,CD40,IKBKE +WIKIPW TCA Cycle DLAT,DLD,DLST,FH,LOC283398,IDH2,IDH3A,IDH3B,IDH3G,MDH1,MDH2,OGDH,ACO2,PC,PDHA1,PDHA2,PDHB,PDK1,PDK2,PDK3,PDK4,PDP1,PDP2,SDHA,SDHB,SDHC,SDHD,PDHX,SUCLG2,SUCLG1,SUCLA2 +WIKIPW Nucleotide GPCRs LTB4R,ADORA1,ADORA2A,ADORA2B,ADORA3,LPAR4,P2RY1,P2RY2,P2RY4,P2RY6 +WIKIPW Prostaglandin Synthesis and Regulation EDN1,EDNRA,EDNRB,ANXA8L2,ANXA1,ANXA2,ANXA3,ANXA4,ANXA5,ANXA6,HPGD,HSD11B1,HSD11B2,PLA2G4A,PRL,PTGDR,PTGDS,PTGER1,PTGER2,PTGER3,PTGER4,PTGFR,PTGIR,PTGIS,PTGS1,PTGS2,S100A6,S100A10,TBXAS1,SCGB1A1 +TUT Homeobox HOXB13,EN1,HOXC10,HOXC13,HOXD3,LBX1,PITX1,POU5F1,SIX2,SIX4,CDX1,CDX2,LHX1,MSX1,PAX3,PDHX,PITX2,PITX3,PROX1,SIX6,HHEX,HOXB1,HOXD8,LMX1B,PITX2,PROX1,VAX2,HOXC11,ALX1,DLX2,DMBX1,HESX1,OTX2,SIX3,ARX,DLX5,DLX6,LBX1,LHX1,OTP,PAX3,PHOX2B,PROP1,SHOX2,ALX4,DLX3,DLX5,DLX6,EN1,HOXD13,MSX1,MSX2,PITX1,SHOX,SHOX2,MKX,SIX1,ISL1,SHOX2,BARX1,CUX1,DLX1,DLX4,DRGX,EMX1,EN2,HOXA1,HOXA7,HOXA9,HOXB2,HOXB3,HOXB4,HOXB7,HOXB8,HOXB9,HOXC12,HOXC6,HOXC8,HOXC9,HOXD1,HOXD11,HOXD12,HOXD4,HOXD9,ISL2,LBX2,LMX1A,MEIS1,MEOX1,NKX3-1,OTX1,TLX1,VAX1,VSX1,ARX,HHEX,HLX,HOPX,LBX1,LHX1,LMX1B,MIXL1,OTP diff --git a/src/dataimport/networks/out_pathway_all_list.tsv b/src/dataimport/networks/out_pathway_all_list.tsv new file mode 100644 index 0000000..31f6e82 --- /dev/null +++ b/src/dataimport/networks/out_pathway_all_list.tsv @@ -0,0 +1,2268 @@ +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html LDHC,LDHB,LDHA,PGAM1,ADH1C,PGAM2,ADH1B,ADH1A,ACSS2,PDHB,ACSS1,PGAM4,PDHA2,PDHA1,LDHAL6B,PFKL,LDHAL6A,FBP1,PFKP,ALDH3B2,FBP2,PFKM,ALDH3B1,PGM2,G6PC,ALDH7A1,ALDH1B1,PKM2,PGM1,DLD,PKLR,ALDH9A1,ALDOA,ALDOC,ALDOB,ADH5,HK2,HK1,ADH6,ADH7,ALDH3A2,G6PC2,ALDH3A1,GALM,TPI1,AKR1A1,ADH4,HK3,ALDH1A3,ENO2,ENO3,GAPDH,ENO1,BPGM,DLAT,PCK2,PCK1,GPI,GCK,ALDH2,PGK1,PGK2 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html LOC642502,OGDHL,OGDH,PDHB,IDH3G,LOC283398,IDH2,IDH1,PDHA2,PDHA1,SUCLA2,FH,DLST,ACO2,SUCLG2,ACO1,SUCLG1,CS,IDH3B,ACLY,DLAT,PCK2,IDH3A,PCK1,SDHA,SDHB,SDHC,SDHD,DLD,MDH2,PC,MDH1 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html ALDOA,TALDO1,ALDOC,PGD,ALDOB,TKTL2,TKTL1,DERA,RPIA,PRPS1L1,PFKL,PFKP,FBP1,TKT,RBKS,PFKM,FBP2,LOC729020,PGM2,GPI,PGLS,RPE,G6PD,H6PD,PGM1,PRPS2,PRPS1 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGDH,UGT1A7,UGT1A6,UGT1A9,CRYL1,UGT1A8,UGT1A3,UGT1A5,UGT1A4,UGT2A1,UGT2A3,UGT2B28,GUSB,LOC729020,UGT1A1,DHDH,UGT1A10,RPE,UGT2B17,AKR1B1,UGT2B11,UGT2B4,UGT2B10,UGT2B15,DCXR,UGP2,UGT2B7,XYLB +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html ALDOA,SORD,PFKFB4,PFKFB3,ALDOC,PFKFB2,ALDOB,PFKFB1,HK2,HK1,GMPPB,MTMR2,TPI1,MTMR1,HK3,GMPPA,TSTA3,MTMR6,MTMR7,PFKL,GMDS,PFKP,FBP1,PFKM,FBP2,PMM2,PMM1,KHK,MPI,AKR1B10,AKR1B1,FUK,PHPT1,FPGT +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html LALBA,HK2,HK1,GLB1,G6PC2,GALK2,GALK1,HK3,GALE,B4GALT1,B4GALT2,PFKL,PFKP,GALT,PFKM,PGM2,G6PC,GCK,GLA,GANC,MGAM,PGM1,AKR1B1,GAA,LCT,UGP2 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGDH,ALDH3A2,UGT1A7,UGT1A6,UGT1A9,UGT1A8,UGT1A3,UGT1A5,MIOX,UGT1A4,UGT2A1,UGT2A3,UGT2B28,UGT1A1,UGT1A10,ALDH7A1,UGT2B17,ALDH1B1,ALDH2,UGT2B11,UGT2B4,UGT2B10,UGT2B15,ALDH9A1,UGT2B7 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACOX1,ACADSB,CPT2,EHHADH,ADH1C,ADH5,ADH6,ADH1B,ECHS1,ADH1A,ADH7,ACAT2,ACAT1,DCI,ALDH3A2,HADHA,ACOX3,HADHB,ACSL1,CYP4A22,ADH4,ACSL4,HADH,ACSL3,ACSL6,ACSL5,CPT1C,CPT1B,GCDH,ACAA2,ACADM,ACADS,ACADL,PECI,CPT1A,ACADVL,CYP4A11,ALDH7A1,ALDH1B1,ALDH2,ALDH9A1,ACAA1 +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html TM7SF2,SOAT1,SOAT2,EBP,LIPA,CYP51A1,LSS,SC4MOL,FDFT1,CEL,CYP27B1,SQLE,DHCR7,HSD17B7,SC5DL,NSDHL,DHCR24 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html ACOX2,CYP46A1,HSD3B7,AMACR,CYP7B1,CYP39A1,BAAT,AKR1C4,CYP27A1,CH25H,CYP7A1,HSD17B4,CYP8B1,SCP2,AKR1D1,SLC27A5 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP3A4,CYP3A5,CYP3A7,CYP11B1,CYP11B2,SULT2B1,AKR1C3,CYP3A43,AKR1C2,AKR1C4,CYP7A1,SRD5A3,SRD5A1,SULT1E1,SRD5A2,AKR1C1,STS,CYP11A1,CYP1A1,UGT1A1,UGT1A10,UGT2B17,HSD11B1,UGT2B11,HSD11B2,UGT2B10,UGT2B15,AKR1D1,HSD3B2,HSD3B1,CYP1B1,HSD17B2,HSD17B1,HSD17B12,COMT,UGT1A7,UGT1A6,UGT1A9,UGT1A8,UGT1A3,UGT1A5,UGT1A4,HSD17B6,UGT2A1,HSD17B3,UGT2A3,UGT2B28,HSD17B7,CYP19A1,HSD17B8,CYP21A2,CYP7B1,CYP17A1,UGT2B4,UGT2B7 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html LOC642502,ATP6AP1,NDUFAB1,COX5A,COX5B,LOC100133737,UQCR10,UQCR11,ATP8,ATP6,LOC727947,COX6C,LOC644310,ATP5C1,ATP6V1G3,COX7B,COX7C,ATP6V1B2,ATP12A,ATP6V1B1,ATP6V0B,ATP6V0C,COX6B1,COX6B2,ATP5J2,COX8C,NDUFA4L2,COX8A,LHPP,LOC390424,PPA2,PPA1,UQCRHL,NDUFV3,ATP6V0E2,COX3,COX2,NDUFV1,COX1,NDUFV2,COX6A2,COX6A1,ATP5D,UQCRC2,ATP5E,COX11,ATP6V0E1,UQCRC1,COX10,ATP5B,CYC1,UQCRFS1,UQCRQ,NDUFS7,NDUFS6,NDUFS5,NDUFS4,NDUFS8,ATP5L,ATP5O,NDUFS3,ATP5I,ATP6V0D1,NDUFS2,ATP6V0D2,ATP5H,COX17,NDUFS1,COX15,ATP5J,ND1,NDUFB10,ND4,ATP4A,ATP4B,ND5,ND2,ND3,NDUFC2,COX4I2,ATP6V1H,COX4I1,NDUFC1,NDUFA10,ATP6V1D,NDUFA11,ATP6V1F,ATP6V1C1,ATP6V1C2,ATP6V1A,UQCRH,UQCRB,NDUFB3,NDUFB4,NDUFB5,NDUFB6,NDUFB7,NDUFB8,NDUFB9,COX7B2,CYTB,ATP5G2,ATP6V1G2,ATP5G1,COX7A2L,ATP6V1G1,ATP5G3,NDUFB1,NDUFB2,ND6,TCIRG1,NDUFA4,NDUFA5,NDUFA2,NDUFA3,COX7A2,NDUFA8,COX7A1,NDUFA9,NDUFA6,NDUFA7,ATP5F1,NDUFA1,SDHA,SDHB,ND4L,LOC100130247,ATP6V1E1,SDHC,ATP6V1E2,SDHD,ATP6V0A1,ATP5A1,ATP6V0A4,ATP6V0A2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADCY3,ADCY4,FHIT,ADCY1,GDA,GMPR2,ADCY2,ADCY7,ADCY8,ADCY5,ADCY6,PDE3B,PNP,PRIM1,NT5C3,PDE4A,PDE4B,NT5C2,PRIM2,NUDT2,NUDT5,POLE,PDE4D,PDE4C,POLR2J2,NME7,POLR2J3,NME6,NME4,NME5,NME2,NME3,NME1,PDE5A,ADSL,PRPS2,PRPS1,XDH,ADSS,ENPP1,ENPP3,NT5C1A,NT5C1B,PNPT1,ZNRD1,RRM2B,PPAT,ADA,PDE6A,PDE6B,POLE4,PDE6C,PDE6D,POLE2,POLE3,ENTPD8,ENTPD5,ENTPD6,ENTPD3,PRPS1L1,ENTPD4,ENTPD1,ENTPD2,ALLC,GUCY2F,C17ORF48,ADSSL1,AK1,AK2,AK5,GUCY2C,AK7,PDE6H,PDE6G,GART,GUCY2D,POLD3,POLD4,PDE7B,PDE7A,POLD1,POLD2,GUK1,PDE11A,CANT1,NT5M,GUCY1A2,GUCY1A3,PDE8B,PDE8A,ADCY10,NT5E,IMPDH1,IMPDH2,NT5C,POLR1E,POLR1D,POLR1A,PDE10A,POLR1C,POLR1B,DGUOK,GMPR,GMPS,PRUNE,RRM2,ADK,PKM2,RRM1,PKLR,GUCY1B3,PDE9A,PRHOXNB,POLR2H,POLR2G,POLR2F,POLR2E,POLR2L,POLR2K,POLR2J,POLR2I,POLA1,DCK,POLA2,HPRT1,POLR2D,AK3L1,POLR2C,PFAS,POLR2B,POLR2A,PDE1B,ATIC,PDE1C,NUDT9,PDE1A,PAPSS1,PAPSS2,POLR3G,POLR3F,POLR3H,POLR3K,NPR1,NPR2,POLR3GL,PDE3A,POLR3A,POLR3C,AMPD2,POLR3B,AMPD3,APRT,POLR3D,AMPD1,ITPA,NME1-NME2,PDE2A,ADCY9,PAICS +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html CTPS,DTYMK,PNP,PRIM1,NT5C3,PRIM2,NT5C2,NUDT2,POLE,POLR2J2,POLR2J3,NME7,NME6,NME4,NME5,NME2,NME3,NME1,NT5C1A,PNPT1,NT5C1B,ZNRD1,CTPS2,RRM2B,CMPK1,TK2,CMPK2,TK1,POLE4,POLE2,UPRT,POLE3,ENTPD8,DHODH,ENTPD5,CDA,ENTPD6,ENTPD3,ENTPD4,ENTPD1,UPB1,AK3,POLD3,POLD4,POLD1,POLD2,DUT,CAD,CANT1,NT5M,NT5E,NT5C,POLR1E,POLR1D,POLR1A,POLR1C,POLR1B,UMPS,RRM2,RRM1,TXNRD2,TXNRD1,POLR2H,POLR2G,POLR2F,POLR2E,POLR2L,POLR2K,POLR2J,POLR2I,POLA1,DCK,UPP1,UPP2,DPYS,POLA2,POLR2D,POLR2C,POLR2B,POLR2A,TYMS,TYMP,UCK1,UCK2,DCTD,POLR3G,POLR3F,POLR3H,POLR3K,POLR3A,POLR3GL,POLR3C,POLR3B,POLR3D,ITPA,NME1-NME2,UCKL1,DPYD +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ADSS,ASS1,GLUD2,NIT2,GLUD1,IL4I1,ASNS,CAD,ASL,AGXT,PPAT,GLS2,GOT2,ASPA,GAD2,GOT1,ALDH4A1,GPT2,GAD1,ADSSL1,ALDH5A1,ACY3,CPS1,DDO,GLUL,GLS,GFPT1,GFPT2,ADSL,ABAT,GPT,AGXT2 +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html AMT,GCAT,PSPH,AGXT,PIPOX,GLDC,ALAS1,ALAS2,SRR,DMGDH,DAO,GNMT,SARDH,CHDH,SHMT1,SHMT2,GATM,MAOA,MAOB,GLYCTK,CTH,SDS,BHMT,DLD,PHGDH,AGXT2,GAMT,AOC2,PSAT1,CBS,AOC3 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html LDHC,LDHB,LDHA,AHCY,SRM,IL4I1,GOT2,GOT1,MAT1A,TRDMT1,DNMT3L,ENOPH1,AMD1,DNMT3B,DNMT3A,MAT2A,LDHAL6B,LDHAL6A,CDO1,TAT,ADI1,CTH,SDS,MTR,BHMT,DNMT1,MTAP,AHCYL1,MAT2B,AHCYL2,APIP,SMS,MPST,CBS +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html BCAT1,HSD17B10,ACADSB,BCAT2,EHHADH,HMGCS1,IL4I1,ECHS1,ACAT2,ACAT1,HIBADH,ALDH3A2,HADHA,AUH,HADHB,MCCC2,MUT,IVD,MCCC1,OXCT1,MCEE,OXCT2,ACAD8,HADH,HMGCL,BCKDHA,ACAA2,ALDH6A1,ACADM,ACADS,BCKDHB,DBT,ALDH7A1,HMGCS2,ALDH1B1,DLD,AOX1,ALDH2,ABAT,HIBCH,PCCB,PCCA,ALDH9A1,ACAA1 +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html IARS,BCAT1,BCAT2,VARS2,LARS,PDHA2,LARS2,PDHA1,IARS2,VARS,PDHB +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html EHHADH,SETD1B,SETD1A,OGDHL,AASS,ECHS1,ACAT2,OGDH,ACAT1,PIPOX,HADHA,BBOX1,ALDH3A2,AASDHPPT,PLOD1,PLOD2,PLOD3,SETMAR,HADH,AASDH,AADAT,SETDB1,GCDH,DLST,SETDB2,EHMT1,SUV39H1,WHSC1,EHMT2,SUV39H2,SUV420H2,DOT1L,ALDH7A1,ALDH1B1,WHSC1L1,TMLHE,ASH1L,ALDH2,SETD7,SETD8,SETD2,NSD1,ALDH9A1,SUV420H1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html SAT1,CKMT1B,SAT2,CKB,GOT2,GOT1,P4HA2,P4HA1,P4HA3,NOS3,DAO,NOS2,GATM,OTC,LAP3,PYCR1,PYCR2,ALDH7A1,GLUL,CKM,ALDH1B1,SMS,OAT,ADC,ALDH9A1,PRODH,PYCRL,ALDH18A1,SRM,ASS1,NAGS,GLUD2,GLUD1,AGMAT,ASL,ALDH3A2,GLS2,ARG1,CKMT2,ARG2,ALDH4A1,AMD1,ODC1,NOS1,ACY1,MAOA,MAOB,CPS1,ABP1,CKMT1A,GLS,ALDH2,PRODH2,GAMT +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html CNDP1,WBSCR22,ALDH3A2,ALDH3A1,ASPA,HNMT,HDC,ALDH1A3,HEMK1,LCMT1,DDC,ACY3,MAOA,LCMT2,METTL6,MAOB,HAL,FTCD,ALDH3B2,METTL2B,ALDH3B1,AMDHD1,ABP1,ALDH7A1,TRMT11,ALDH1B1,ALDH2,UROC1,ALDH9A1 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html TYRP1,PNMT,TH,ADH5,ADH1C,IL4I1,WBSCR22,ADH6,ADH1B,ADH1A,ADH7,COMT,FAH,MIF,ALDH3A1,DCT,GOT2,TYR,GOT1,ALDH1A3,ADH4,TPO,GSTZ1,HEMK1,HPD,LCMT1,DDC,NAT6,LCMT2,MAOA,METTL6,MAOB,HGD,ALDH3B2,DBH,METTL2B,TAT,ALDH3B1,TRMT11,AOX1,AOC2,AOC3 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html DDC,NAT6,MAOA,MAOB,IL4I1,ALDH3B2,PAH,TAT,ALDH3B1,MIF,ALDH3A1,GOT2,GOT1,PRDX6,ALDH1A3,AOC2,HPD,AOC3 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html KYNU,CYP1B1,EHHADH,OGDHL,IL4I1,ECHS1,WARS2,KMO,ACAT2,OGDH,ACAT1,ALDH3A2,HADHA,AFMID,WARS,TDO2,HAAO,AANAT,CAT,HADH,AADAT,GCDH,DDC,CYP1A1,MAOA,ASMT,MAOB,ACMSD,IDO2,IDO1,CYP1A2,INMT,ABP1,ALDH7A1,ALDH1B1,AOX1,ALDH2,TPH1,ALDH9A1,TPH2 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html ACADM,CNDP1,SRM,UPB1,EHHADH,DPYS,ECHS1,HADHA,ALDH3A2,ALDH7A1,GAD2,MLYCD,ALDH1B1,ALDH2,ABAT,DPYD,HIBCH,AOC2,SMS,GAD1,ALDH9A1,AOC3 +KEGG TAURINE AND HYPOTAURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TAURINE_AND_HYPOTAURINE_METABOLISM.html GGT5,ADO,GGT6,GAD2,BAAT,GGT7,CSAD,GGT1,CDO1,GAD1 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html SEPHS2,SEPHS1,AHCY,WBSCR22,GGT1,SCLY,MAT1A,MARS2,PAPSS1,PAPSS2,MARS,HEMK1,LCMT1,MAT2A,LCMT2,METTL6,METTL2B,GGT5,GGT6,CTH,GGT7,TRMT11,AHCYL1,MAT2B,AHCYL2,CBS +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html PGD,GGT1,ANPEP,GSTM5,GSTM1,GSS,GPX2,GSTM2,GSR,GPX1,GSTM3,GSTM4,GPX6,OPLAH,GPX5,GPX4,GPX3,GSTZ1,GPX7,GSTT1,GSTT2,LAP3,G6PD,RRM2,RRM1,SMS,GSTP1,GCLC,GGCT,SRM,RRM2B,GCLM,GSTK1,IDH2,IDH1,GSTO2,GSTO1,GSTA1,ODC1,GSTA2,GSTA3,GSTA4,GSTA5,MGST3,TXNDC12,GGT5,GGT6,GGT7,MGST1,MGST2 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UXS1,TREH,AMY2B,AMY2A,UGT1A1,PGM2L1,PGM2,UGT1A10,UGT2B17,G6PC,MGAM,PGM1,UGT2B11,GAA,UGT2B10,UGT2B15,AMY1C,AMY1B,AMY1A,UGP2,ENPP1,ENPP3,UGDH,HK2,HK1,G6PC2,UGT1A7,UGT1A6,UGT1A9,UGT1A8,UGT1A3,HK3,UGT1A5,UGT1A4,GYS1,GYS2,UGT2A1,UGT2A3,UGT2B28,AGL,GUSB,SI,GBA3,GPI,GBE1,PYGM,GCK,GANC,PYGL,UGT2B4,UGT2B7,PYGB +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html RFT1,MGAT5B,TUSC3,GANAB,FUT8,ALG1,ALG2,ALG3,MAN1B1,ALG5,ALG6,ALG8,ALG9,STT3B,STT3A,DAD1,RPN1,RPN2,DDOST,MGAT4B,B4GALT1,MGAT4A,B4GALT3,ST6GAL1,B4GALT2,MAN1A2,DPAGT1,MOGS,MAN1A1,MAN1C1,MGAT1,MAN2A2,MAN2A1,MGAT2,MGAT3,ALG10B,DPM1,DPM2,DPM3,ALG10,ALG11,MGAT5,DOLPP1,ALG12,ALG13,ALG14 +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html AGA,HEXA,HEXB,ENGASE,FUCA2,FUCA1,MANBA,GLB1,MAN2C1,MAN2B2,NEU1,NEU3,MAN2B1,NEU2,GBA,NEU4 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT3,GCNT4,GALNT2,GALNT1,GCNT3,GALNT7,GALNT6,GALNT5,GALNT4,ST3GAL1,ST3GAL2,GALNT10,GALNTL5,GALNTL4,GALNTL6,B3GNT6,GALNT11,GCNT1,GALNT12,GALNT13,C1GALT1,B4GALT5,GALNT14,C1GALT1C1,WBSCR17,GALNTL2,GALNTL1,ST6GALNAC1,GALNT8,GALNT9 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html CYB5R3,CYB5R1,GNPDA1,CHIA,GNPDA2,GNE,GNPNAT1,HEXA,HEXB,UGDH,HK2,HK1,NAGK,UXS1,CHIT1,GMPPB,GALK2,GALK1,NANS,HK3,GMPPA,GALE,TSTA3,NANP,UAP1,GMDS,CMAS,NPL,GALT,PMM2,PMM1,PGM2,GPI,PGM3,RENBP,AMDHD2,MPI,GCK,GFPT1,PGM1,GFPT2,FUK,FPGT,UGP2 +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html ARSB,SGSH,HGSNAT,HYAL1,NAGLU,HYAL2,HYAL3,HS3ST3A1,HEXA,GUSB,HEXB,HYAL4,GLB1,GNS,IDS,HPSE2,HPSE,GALNS,SPAM1,HS3ST3B1,IDUA +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html B3GALT6,UST,CHST3,CHPF2,DSE,CSGALNACT1,B3GAT2,B3GAT1,B3GAT3,CHST7,CHSY3,XYLT2,CHPF,XYLT1,CHST12,CSGALNACT2,CHST11,CHST14,CHST13,CHSY1,CHST15,B4GALT7 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html B4GALT1,B4GALT3,B4GALT2,FUT8,CHST2,CHST4,CHST1,ST3GAL1,ST3GAL3,ST3GAL2,CHST6,B3GNT7,B3GNT1,B3GNT2,B4GALT4 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html EXTL3,NDST3,HS3ST5,NDST4,NDST1,B3GALT6,NDST2,HS3ST2,HS3ST1,EXTL1,EXTL2,HS2ST1,XYLT2,XYLT1,HS6ST3,HS6ST2,HS6ST1,B4GALT7,HS3ST3A1,GLCE,B3GAT2,B3GAT1,B3GAT3,EXT1,EXT2,HS3ST3B1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html PNLIP,DAK,GPAT2,AGPAT6,AGPAT9,MGLL,AGPAT4,AGPAT3,AGPAT2,AGPAT1,PPAP2C,PNPLA3,ALDH7A1,DGAT1,DGAT2,ALDH1B1,LCLAT1,GPAM,ALDH9A1,GK2,ALDH3A2,DGKA,DGKB,DGKE,AKR1A1,DGKD,DGKG,PPAP2A,AGK,PPAP2B,LPL,PNLIPRP1,PNLIPRP2,DGKQ,DGKH,DGKI,GLYCTK,AWAT2,CEL,GLA,AKR1B1,LIPG,MBOAT1,ALDH2,MBOAT2,DGKZ,GK,LIPC,LIPF +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCZ1,IMPA2,CDIPT,IMPA1,SYNJ1,PIP5K1B,PIP5K1C,ITPKB,PIP5K1A,ITPKA,PTEN,PLCB3,PLCB4,MIOX,PIK3C3,SYNJ2,PIK3CA,PLCB1,ITPK1,PLCB2,IPMK,PIK3CG,ALDH6A1,MINPP1,PIK3C2G,INPPL1,PIK3C2A,PIK3CB,PIK3C2B,PIK3CD,PI4KA,PI4KB,PLCE1,INPP4B,INPP4A,INPP1,OCRL,ISYNA1,TPI1,INPP5K,INPP5J,PIKFYVE,PLCD3,PLCD4,INPP5E,PLCD1,INPP5B,INPP5A,PLCG1,PLCG2,PIP4K2A,IPPK,PIP4K2C,PIP4K2B +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html GPAA1,GPLD1,PIGK,PIGL,PIGM,PIGF,PIGG,PIGH,PIGB,PIGC,PIGA,PIGZ,PIGY,PIGX,PIGW,PGAP1,PIGV,PIGU,PIGT,PIGS,PIGQ,PIGP,PIGO,PIGN,DPM2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html CDIPT,GPAT2,CDS2,AGPAT6,LCAT,AGPAT9,PLA2G1B,GNPAT,PHOSPHO1,PTDSS1,PCYT2,AGPAT4,AGPAT3,AGPAT2,CHAT,AGPAT1,PTDSS2,PLD2,CRLS1,PLD1,LPGAT1,PPAP2C,TAZ,LYPLA2,PISD,LYPLA1,LPCAT2,CDS1,CHPT1,LPCAT3,LPCAT4,PLA2G2A,LCLAT1,PLA2G6,PLA2G2C,PLA2G2E,PLA2G3,PLA2G2D,GPAM,PLA2G5,PLA2G2F,CHKA,ACHE,PGS1,CHKB,GPD1L,DGKA,JMJD7-PLA2G4B,DGKB,DGKE,LPCAT1,DGKD,PLA2G12A,DGKG,PLA2G12B,PEMT,ETNK1,PCYT1A,ETNK2,PCYT1B,PPAP2A,PPAP2B,GPD2,GPD1,C17ORF48,PLA2G15,DGKQ,PLA2G10,DGKH,DGKI,PLA2G4A,MBOAT7,MBOAT1,DGKZ,MBOAT2,PLA2G4B,PLA2G4E +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html ENPP6,ENPP2,PAFAH2,JMJD7-PLA2G4B,AGPS,LPCAT1,PLA2G12A,PLA2G12B,PLA2G1B,PAFAH1B3,PAFAH1B1,PAFAH1B2,PPAP2A,PPAP2B,PLD2,PLD1,PLA2G10,PPAP2C,LPCAT2,CHPT1,LPCAT4,PLA2G4A,PLA2G2A,PLA2G7,PLA2G6,PLA2G2C,PLA2G3,PLA2G2E,PLA2G2D,PLA2G4B,PLA2G4E,PLA2G5,PLA2G2F +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP2J2,PTGES2,PTGS2,CYP2C19,CYP2C18,PTGS1,GGT1,LTC4S,AKR1C3,GPX2,GPX1,PTGIS,GPX6,PTGES,GPX5,GPX4,GPX3,PLA2G1B,ALOX12B,GPX7,CYP2E1,CBR3,ALOX15,PTGDS,ALOX15B,PLA2G2A,PLA2G6,PLA2G2C,PLA2G2E,PLA2G3,PLA2G2D,PLA2G5,PLA2G2F,ALOX12,CYP2U1,CYP2B6,JMJD7-PLA2G4B,CBR1,CYP4A22,PLA2G12A,PLA2G12B,HPGDS,TBXAS1,PLA2G10,CYP2C9,CYP2C8,EPHX2,GGT5,CYP4A11,GGT6,PLA2G4A,GGT7,LTA4H,CYP4F3,ALOX5,CYP4F2,PLA2G4B,PLA2G4E +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP3A4,CYP3A5,CYP3A7,CYP2J2,CYP2C19,CYP2C18,CYP3A43,JMJD7-PLA2G4B,PLA2G12A,PLA2G12B,PLA2G1B,PLA2G10,CYP2C9,CYP2C8,CYP1A2,CYP2E1,ALOX15,PLA2G4A,AKR1B10,PLA2G2A,PLA2G6,PLA2G2C,PLA2G2E,PLA2G3,PLA2G4B,PLA2G2D,PLA2G4E,PLA2G5,PLA2G2F +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html ACOX1,PLA2G10,FADS2,ACOX3,JMJD7-PLA2G4B,PLA2G4A,PLA2G12A,PLA2G12B,PLA2G1B,PLA2G2A,PLA2G6,PLA2G2C,PLA2G3,PLA2G2E,PLA2G2D,PLA2G4B,PLA2G4E,PLA2G5,PLA2G2F +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html ENPP7,SGMS2,SGPP1,SGPP2,SGMS1,ASAH1,ASAH2,GLB1,GALC,UGT8,CERK,B4GALT6,PPAP2A,PPAP2B,GAL3ST1,GBA,SGPL1,ACER3,SPTLC1,SPTLC2,SPHK2,PPAP2C,ACER2,ACER1,UGCG,SPHK1,ASAH2C,GLA,SMPD1,ARSA,KDSR,NEU1,NEU3,NEU2,SMPD4,SMPD3,DEGS2,NEU4,SMPD2,DEGS1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html FUT9,GCNT2,FUT7,B3GALT5,FUT6,FUT5,ST8SIA1,ST3GAL3,B3GNT5,B3GNT4,ST3GAL4,ST3GAL6,FUT3,B3GNT1,FUT4,FUT1,B3GNT3,FUT2,B3GNT2,B4GALT4,B4GALT1,B4GALT3,B4GALT2,B3GALT2,B3GALT1,ABO +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html A4GALT,FUT9,B3GALT5,GBGT1,HEXA,HEXB,ST8SIA1,ST3GAL1,ST3GAL2,GLA,B3GALNT1,NAGA,FUT1,FUT2 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html SLC33A1,HEXA,B3GALT4,HEXB,ST8SIA1,GLB1,ST6GALNAC5,ST3GAL1,ST6GALNAC6,ST6GALNAC3,ST6GALNAC4,ST3GAL2,ST3GAL5,ST8SIA5,B4GALNT1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html LDHC,ME1,LDHB,LDHA,ME3,ME2,LDHD,ACAT2,ACSS2,ACAT1,PDHB,ALDH3A2,ACSS1,ACOT12,ACYP2,ACYP1,GLO1,PDHA2,PDHA1,LDHAL6B,LDHAL6A,ACACA,ACACB,DLAT,GRHPR,PCK2,PCK1,HAGH,ALDH7A1,ALDH1B1,PKM2,AKR1B1,PKLR,DLD,ALDH2,HAGHL,MDH2,ALDH9A1,PC,MDH1 +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html MTHFD2L,ACO2,ACO1,CS,GRHPR,MTHFD1L,HYI,AFMID,GLYCTK,HAO1,MTHFD1,MTHFD2,PGP,HAO2,MDH2,MDH1 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html LDHC,LDHB,LDHA,EHHADH,ECHS1,ACAT2,ACSS2,ACSS3,ACAT1,HADHA,ALDH3A2,MUT,ACSS1,LOC283398,MCEE,SUCLA2,ALDH6A1,ACADM,LDHAL6B,LDHAL6A,SUCLG2,SUCLG1,ACACA,ACACB,ALDH7A1,ALDH1B1,MLYCD,ALDH2,ABAT,HIBCH,PCCB,ALDH9A1,PCCA +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html EHHADH,HMGCS1,ECHS1,ACAT2,ACAT1,PDHB,HADHA,ALDH3A2,GAD2,OXCT1,OXCT2,BDH2,PDHA2,PDHA1,HADH,BDH1,GAD1,HMGCL,ALDH5A1,ACADS,ACSM2A,ACSM3,ALDH7A1,ACSM1,HMGCS2,L2HGDH,ALDH1B1,AKR1B10,ALDH2,ABAT,AACS,ACSM5,ALDH9A1,ACSM4 +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html SHMT1,SHMT2,MTHFD2L,ALDH1L1,AMT,FTCD,MTHFD1L,GART,MTHFD1,MTHFD2,TYMS,MTHFS,MTHFR,DHFR,ATIC,MTR,MTFMT +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html ENPP1,ENPP3,ACP6,ACP5,ACP2,ACPT,ACP1,ACPP,MTMR2,TYR,MTMR1,RFK,FLAD1,MTMR6,MTMR7,PHPT1 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NMNAT3,NMNAT2,NAMPT,ENPP1,NUDT12,BST1,NT5C1A,ENPP3,NT5C1B,NADSYN1,NADK,PNP,C9ORF95,CD38,NNT,NT5M,NT5C3,NT5C2,AOX1,QPRT,NT5E,NNMT,NT5C,NMNAT1 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html BCAT1,COASY,BCAT2,ENPP1,ENPP3,UPB1,PPCS,DPYS,PPCDC,PANK4,PANK2,PANK3,PANK1,VNN1,DPYD,VNN2 +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html ALPL,ALPPL2,ALPI,DHFR,GGH,QDPR,SPR,PTS,FPGS,ALPP,GCH1 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP3A4,CYP3A5,CYP3A7,CYP2C19,CYP2C18,ADH1C,ADH1B,ADH1A,RPE65,CYP3A43,RDH8,CYP1A1,CYP26A1,DHRS9,CYP1A2,PNPLA4,UGT1A1,RDH5,UGT1A10,UGT2B17,DHRS3,DGAT1,LRAT,DHRS4,DGAT2,UGT2B11,CYP2A6,CYP2A7,UGT2B10,UGT2B15,BCMO1,CYP2B6,DHRS4L2,ADH5,ADH6,ADH7,UGT1A7,ALDH1A1,ALDH1A2,CYP2A13,UGT1A6,UGT1A9,UGT1A8,CYP4A22,UGT1A3,ADH4,UGT1A5,UGT1A4,CYP26B1,UGT2A1,UGT2A3,UGT2B28,CYP2C9,CYP2C8,AWAT2,RDH12,CYP4A11,RDH11,RDH10,CYP26C1,UGT2B4,RDH16,UGT2B7,RETSAT +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html HCCS,FTMT,ALAD,COX10,UROS,PPOX,FTH1,UGT1A7,UGT1A6,HMOX2,ALAS1,UGT1A9,UGT1A8,ALAS2,UGT1A3,UGT1A5,CPOX,HMOX1,UGT1A4,UGT2A1,UGT2A3,UGT2B28,COX15,FECH,HMBS,GUSB,EPRS,UGT1A1,MMAB,EARS2,BLVRA,UGT1A10,UGT2B17,BLVRB,UGT2B11,UGT2B4,CP,UGT2B10,UGT2B15,UROD,UGT2B7 +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html DHDDS,MVD,HMGCR,HMGCS1,FDPS,ACAT2,PMVK,PDSS1,ACAT1,PDSS2,HMGCS2,GGPS1,MVK,IDI2,IDI1 +KEGG LIMONENE AND PINENE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LIMONENE_AND_PINENE_DEGRADATION.html ALDH7A1,NAT6,ALDH1B1,EHHADH,ALDH2,ECHS1,YOD1,HADHA,ALDH3A2,ALDH9A1 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA14,CA13,GLUD2,AMT,GLUD1,CA5A,CA12,CA5B,HAL,ASNS,CPS1,GLS2,CTH,GLUL,CA9,CA8,GLS,CA7,CA6,CA4,CA3,CA2,CA1 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html SUOX,SULT2B1,SULT1A1,CHST12,CHST11,SULT1A3,CHST13,SULT1A2,SULT1E1,SULT1A4,PAPSS1,PAPSS2,BPNT1 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html TARS2,VARS2,PSTK,NARS,FARS2,QARS,WARS2,IARS2,VARS,KARS,IARS,WARS,PARS2,NARS2,HARS2,SEPSECS,LARS,MARS2,TARSL2,MARS,CARS,YARS,DARS,RARS2,SARS,AARS,GARS,EPRS,DARS2,LARS2,SARS2,EARS2,TARS,RARS,HARS,FARSB,CARS2,FARSA,YARS2,MTFMT,AARS2 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP3A4,CYP3A5,CYP3A7,CYP2C19,CYP2C18,CYP2S1,ADH1C,ADH1B,ADH1A,GSTM5,CYP3A43,AKR1C3,GSTM1,AKR1C2,GSTM2,GSTM3,AKR1C4,GSTM4,GSTZ1,AKR1C1,CYP1A1,ALDH3B2,GSTT1,GSTT2,CYP1A2,CYP2E1,UGT1A1,DHDH,ALDH3B1,UGT1A10,UGT2B17,UGT2B11,UGT2B10,UGT2B15,GSTP1,CYP1B1,CYP2F1,CYP2B6,ADH5,ADH6,ADH7,ALDH3A1,UGT1A7,UGT1A6,UGT1A9,UGT1A8,UGT1A3,ALDH1A3,GSTK1,ADH4,UGT1A5,UGT1A4,UGT2A1,GSTO2,GSTO1,UGT2A3,UGT2B28,GSTA1,GSTA2,GSTA3,GSTA4,GSTA5,CYP2C9,CYP2C8,EPHX1,MGST3,UGT2B4,UGT2B7,MGST1,MGST2 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP3A4,CYP3A5,CYP3A7,CYP2C19,CYP2C18,CYP2D6,ADH1C,ADH1B,ADH1A,GSTM5,CYP3A43,GSTM1,GSTM2,GSTM3,GSTM4,GSTZ1,ALDH3B2,GSTT1,GSTT2,CYP1A2,CYP2E1,UGT1A1,ALDH3B1,UGT1A10,UGT2B17,UGT2B11,CYP2A6,CYP2A7,UGT2B10,UGT2B15,GSTP1,CYP2B6,ADH5,ADH6,ADH7,ALDH3A1,FMO4,UGT1A7,FMO5,CYP2A13,UGT1A6,UGT1A9,UGT1A8,UGT1A3,FMO1,ALDH1A3,GSTK1,UGT1A5,FMO2,ADH4,FMO3,UGT1A4,UGT2A1,GSTO2,GSTO1,UGT2A3,UGT2B28,GSTA1,GSTA2,GSTA3,GSTA4,GSTA5,CYP2C9,MAOA,CYP2C8,MAOB,MGST3,AOX1,UGT2B4,UGT2B7,MGST1,MGST2 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CYP3A4,CYP3A5,CYP3A7,CYP3A43,IMPDH1,IMPDH2,UGT1A1,GMPS,UGT1A10,UGT2B17,UMPS,UGT2B11,CYP2A6,CYP2A7,UGT2B10,UGT2B15,XDH,UPP1,UPP2,DPYS,HPRT1,TK2,TK1,UGT1A7,CYP2A13,UGT1A6,TYMP,UGT1A9,UGT1A8,UGT1A3,UGT1A5,UGT1A4,CDA,UGT2A1,UCK1,UGT2A3,UCK2,UGT2B28,CES2,CES1,CES7,NAT1,UPB1,GUSB,NAT2,TPMT,ITPA,UCKL1,UGT2B4,DPYD,UGT2B7 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html ACOX1,SCD,FADS1,HSD17B12,ACOT2,ACOT1,FADS2,TECR,HADHA,ACOT4,ACOX3,PECR,ACOT7,BAAT,PTPLB,ELOVL5,PTPLA,ELOVL2,ELOVL6,YOD1,SCD5,ACAA1 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA8,ABCA7,ABCA9,ABCD1,ABCA2,ABCA1,ABCA4,ABCA3,ABCA6,ABCA5,TAP2,TAP1,ABCD2,ABCB10,ABCD3,ABCD4,ABCA13,ABCA12,ABCB9,ABCA10,ABCB8,ABCB11,ABCC11,ABCC10,ABCB1,CFTR,ABCC12,ABCB7,ABCB6,ABCG4,ABCB5,ABCG1,ABCB4,ABCG2,ABCG8,ABCC9,ABCG5,ABCC3,ABCC4,ABCC1,ABCC2,ABCC8,ABCC5,ABCC6 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL18,RPL17,RPL36A,RPL19,RPL14,RPL13,RPL15,RPLP2,RPS27L,RPL22L1,RPS2,RPS3,RPS3A,RPLP0,RPLP1,RPL26L1,RPL10,FAU,RPL11,RPL12,RPS27A,RPL36AL,RSL24D1P11,RPL35A,RPS4X,RPS18,RPS19,RPL41,RPS16,RPS17,RPS15,RPL3L,RPS12,RPS13,RPS4Y1,RPS10,RPS11,UBA52,RPL35,RPL27A,RPS15A,RPL36,RPL37,RPL38,RPL39,RPL10L,RPS25,RPS26,RPS27,MRPL13,RPL30,RPS28,RPL7,RPS29,RPL32,RPL6,RPL31,RPL9,RPL34,RPL8,RPL3,RPL5,RSL24D1,RPL7A,RPL10A,RPL4,RPS20,RPS21,RPS23,RPS24,RPSA,RPL26,RPS9,RPL27,RPL24,RPL23A,RPS6,RPS5,RPS8,RPL28,RPS7,RPL29,RPL23,RPL18A,RPL13A,RPL22,RPL21,RPL37A +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html CNOT8,LSM6,LSM7,CNOT3,CNOT2,EDC4,SKIV2L2,CNOT1,CNOT7,CNOT6,CNOT4,DCPS,PARN,EDC3,LSM5,LSM4,LSM3,LSM2,LSM1,ZCCHC7,EXOSC8,EXOSC9,EXOSC6,EXOSC7,EXOSC4,EXOSC5,TTC37,CNOT10,EXOSC2,PAPD7,EXOSC3,EXOSC1,XRN1,XRN2,C1D,SKIV2L,PNPT1,NAA38,EXOSC10,PATL1,CNOT6L,ENO2,RQCD1,ENO3,ENO1,HSPA9,C1DP2,C1DP3,DDX6,DIS3,PAPOLB,PAPOLA,WDR61,DCP1B,DCP2,DCP1A,HSPD1,PAPOLG,MPHOSPH6 +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2H,POLR2G,POLR2F,POLR2E,POLR2L,POLR2K,POLR2J,POLR2I,ZNRD1,POLR2D,POLR2C,POLR2B,POLR2A,POLR3G,POLR3F,POLR3H,POLR3K,POLR1E,POLR1D,POLR1A,POLR3GL,POLR1C,POLR3A,POLR1B,POLR3C,POLR2J2,POLR3B,POLR2J3,POLR3D +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html LOC391764,STON1,TAF9B,TBP,TAF7L,GTF2E1,TBPL2,GTF2E2,TAF5L,GTF2A1,GTF2A2,TAF9,TBPL1,TAF1L,TAF2,TAF1,TAF4,TAF6,TAF5,TAF4B,TAF7,GTF2H4,GTF2H3,GTF2A1L,TAF6L,GTF2B,GTF2H2,GTF2H1,TAF11,TAF10,TAF13,TAF12,GTF2I,GTF2F1,GTF2IRD1,GTF2F2 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html POLA1,RNASEH1,POLA2,RPA4,RPA3,RPA1,PRIM1,RPA2,POLE4,MCM7,POLE2,POLE3,PRIM2,FEN1,SSBP1,LIG1,POLE,MCM2,RNASEH2A,MCM3,RNASEH2B,MCM4,RNASEH2C,MCM5,MCM6,POLD3,RFC5,POLD4,DNA2,RFC3,RFC4,RFC1,RFC2,POLD1,POLD2,PCNA +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html NCBP2,NCBP1,CHERP,LSM6,U2AF2,SNRPD3,LSM7,SNRPD1,SNRPD2,SART1,SMNDC1,CTNNBL1,SFRS6,SFRS7,SFRS4,SFRS5,DDX23,DHX38,RBM8A,SFRS9,PQBP1,LSM5,U2AF1,LSM4,LSM3,LSM2,ACIN1,SNRPA1,SF3B14,EFTUD2,MAGOH,SFRS1,SFRS3,HNRNPU,SFRS2,AQR,SNRPB,SNRPA,SLU7,SNRPC,SNRPF,SNRPE,BAT1,SNRPG,CCDC12,NHP2L1,PPIL1,SNRPB2,HSPA1A,HSPA1B,NAA38,XAB2,HNRNPA3,HSPA1L,HNRNPM,DDX46,TCERG1,HNRNPK,CDC40,ISY1,HNRNPC,PRPF40B,PRPF40A,DDX42,DHX8,SNW1,DDX5,RBMX,HNRNPA1,PPIE,PPIH,SNRNP27,PUF60,HNRNPA1L2,CRNKL1,CWC15,ZMAT2,BUD31,SFRS2B,PLRG1,PCBP1,MAGOHB,PRPF31,PRPF3,CDC5L,PRPF4,PRPF6,EIF4A3,SNRNP200,LOC120364,THOC4,SNRNP40,THOC2,THOC3,PRPF38B,THOC1,PRPF38A,TRA2B,TRA2A,SR140,LOC653884,WBP11,SF3B5,SF3B4,SF3B3,SF3B2,PRPF19,SF3B1,HSPA2,PRPF8,USP39,DHX15,HSPA6,DHX16,SNRNP70,RBM25,HSPA8,BCAS2,RBM22,SFRS13A,SF3A2,PRPF18,SF3A1,SF3A3,SYF2,PHF5A,TXNL4A,RBM17 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB10,LOC345645,SHFM1,PSMA7,PSMA8,PSMB11,PSMB5,PSMB4,PSMF1,PSMB7,PSMB6,PSMB1,PSMB3,PSMB2,PSMD1,IFNG,PSMD2,PSMD3,PSMD4,PSMD6,PSMD7,LOC121906,PSMD8,LOC100132108,PSMB8,PSMB9,PSMA2,PSMA1,PSMD14,PSMC6,PSMC5,PSMD13,PSMA6,PSME1,PSMC4,PSMD12,PSME2,PSMC3,PSMA5,PSMD11,PSMC2,PSMA4,PSMC1,PSMA3,POMP,PSME3,LOC652826,PSME4 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SRP14,OXA1L,SRP54,SEC11C,SRP9L1,SEC11A,SRP68,SRPRB,SRP19,SEC62,SEC63,IMMP1L,IMMP2L,SEC61B,SRPR,SPCS3,SPCS1,SRP72,SPCS2,HSPA5,SEC61A1,SRP9,SEC61G,SEC61A2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACOX2,ACOX1,SLC27A1,PPARA,PPARD,CPT2,EHHADH,PPARG,AQP7,MMP1,ACOX3,APOA2,PDPK1,APOA1,CYP7A1,APOA5,ILK,SCD5,ACADM,RXRB,RXRA,RXRG,ACADL,CD36,CYP27A1,UBC,SLC27A6,SLC27A2,SLC27A5,SLC27A4,ACAA1,ME1,GK2,ACSL1,CYP4A22,SORBS1,PLIN1,APOC3,ACSL4,ACSL3,ACSL6,PLTP,ACSL5,NR1H3,ANGPTL4,CPT1C,CPT1B,LPL,OLR1,SCD,FADS2,UCP1,PCK2,ADIPOQ,DBI,CPT1A,PCK1,CYP4A11,HMGCS2,FABP3,FABP4,FABP1,GK,FABP2,FABP7,CYP8B1,SCP2,FABP5,FABP6 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html HMGB1,APEX2,UNG,XRCC1,SMUG1,MUTYH,HMGB1L1,POLE4,POLE2,POLE3,NTHL1,APEX1,FEN1,POLL,LIG1,NEIL3,NEIL2,POLE,LIG3,NEIL1,MBD4,POLB,LOC645490,POLD3,POLD4,MPG,POLD1,POLD2,TDG,PCNA,PARP3,PARP4,PARP1,OGG1,PARP2 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RAD23B,RAD23A,CETN2,RPA4,RBX1,RPA3,RPA1,ERCC8,RPA2,ERCC5,POLE4,ERCC6,POLE2,POLE3,ERCC3,ERCC4,ERCC1,ERCC2,CCNH,LIG1,DDB1,POLE,GTF2H4,GTF2H3,CDK7,GTF2H5,GTF2H2,GTF2H1,RFC5,POLD3,XPA,POLD4,MNAT1,RFC3,XPC,RFC4,CUL4A,RFC1,RFC2,POLD1,POLD2,DDB2,PCNA,CUL4B +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html EXO1,MSH6,SSBP1,MSH3,MSH2,LIG1,MLH1,MLH3,RPA4,RPA3,POLD3,RPA1,RFC5,RPA2,POLD4,RFC3,RFC4,RFC1,RFC2,POLD1,POLD2,PCNA,PMS2 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RAD51C,NBN,XRCC3,XRCC2,BLM,MRE11A,SHFM1,RPA4,RPA3,RPA1,RPA2,RAD51L1,MUS81,RAD51L3,SSBP1,EME1,BRCA2,RAD52,RAD54L,RAD50,RAD51,POLD3,POLD4,POLD1,POLD2,TOP3A,RAD54B,TOP3B +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html POLL,XRCC5,XRCC4,MRE11A,XRCC6,PRKDC,LIG4,RAD50,DCLRE1C,DNTT,POLM,LOC731751,NHEJ1,FEN1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html HRAS,NRG4,NRG3,STAT5A,BTC,STAT5B,RPS6KB2,RPS6KB1,AKT1,PAK6,PAK7,EIF4EBP1,PAK2,PAK3,PAK4,GAB1,PIK3CA,TGFA,SHC1,PAK1,SHC3,NRG1,SHC2,MAP2K7,NRG2,MYC,AKT3,AKT2,SHC4,PIK3CG,EGFR,PRKCA,BRAF,PIK3CB,PIK3CD,PRKCG,PRKCB,NCK2,MAPK1,CRKL,EREG,JUN,NCK1,MAPK3,MAPK9,MAPK8,ERBB4,ERBB3,GRB2,CAMK2G,ERBB2,ELK1,SRC,PTK2,KRAS,SOS1,SOS2,CAMK2D,CAMK2B,PIK3R5,PIK3R3,EGF,CAMK2A,PIK3R1,PIK3R2,MAP2K1,MAP2K2,CBL,MAP2K4,RAF1,MAPK10,BAD,CBLC,NRAS,CDKN1A,CBLB,CDKN1B,PLCG1,GSK3B,PLCG2,ARAF,HBEGF,MTOR,AREG,ABL1,CRK,ABL2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html SLC8A3,ADCY3,ADCY4,GNA14,GNA15,ADCY1,ADCY2,TNNC2,ADCY7,TNNC1,ADCY8,GNA11,LHCGR,ITPKB,ITPKA,PRKX,PRKACG,ATP2B1,ATP2B2,AGTR1,ATP2B3,ATP2B4,GRIN2C,GRIN2D,CHRNA7,PRKACA,PRKACB,EGFR,BST1,MYLK3,HTR4,GRIN2A,CHP2,MYLK2,NTSR1,CD38,PLCE1,SLC25A31,CAMK4,HTR7,RYR3,HTR6,RYR1,PDGFRA,RYR2,PDGFRB,PHKA2,DRD1,ADORA2B,ERBB4,CYSLTR1,CYSLTR2,ADORA2A,ERBB3,ERBB2,DRD5,PHKA1,TRHR,BDKRB1,BDKRB2,ADRB3,GRPR,TRPC1,SPHK2,CACNA1I,GRIN1,SPHK1,VDAC2,CACNA1S,VDAC3,VDAC1,P2RX5,P2RX4,P2RX7,P2RX6,P2RX1,ATP2A2,PLCG1,ATP2A3,PPID,P2RX3,AVPR1B,P2RX2,ATP2A1,LTB4R2,PLCG2,TBXA2R,CACNA1G,ADRA1B,AVPR1A,CACNA1H,ADRA1A,CACNA1E,CACNA1F,CACNA1C,CACNA1D,ADRA1D,CACNA1A,MYLK,CACNA1B,PLCZ1,CCKAR,TACR3,PHKB,TACR2,TACR1,EDNRA,EDNRB,PLCB3,PLCB4,NOS3,NOS2,PLCB1,PLCB2,HTR5A,PRKCA,PTGER1,PTGER3,CCKBR,SLC25A4,PHKG1,SLC25A5,PHKG2,SLC25A6,PRKCG,GRM1,PRKCB,GRM5,GNAL,CHRM5,ADRB2,ADRB1,CHRM3,GNAQ,CHRM2,CHRM1,GNAS,PTAFR,CAMK2G,PPP3R1,PPP3R2,OXTR,HRH1,PDE1B,HRH2,PDE1C,CALML3,PTK2B,PDE1A,PPP3CB,PLCD3,CAMK2D,PLCD4,PPP3CC,CALML6,PLCD1,CAMK2B,CHP,PPP3CA,CALML5,CAMK2A,SLC8A1,SLC8A2,NOS1,LOC729317,ITPR3,PTGFR,ITPR1,ITPR2,ADCY9,PLN,CALM3,HTR2B,HTR2C,CALM2,HTR2A,CALM1,F2R +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADCY3,ADCY4,HRAS,ADCY1,ADCY2,ADCY7,ADCY8,ADCY5,ADCY6,STAT5B,FOXO3,CXCL11,CXCL12,PRKX,CXCL10,GNG8,PRKACG,TIAM2,TIAM1,CCR10,PIK3CA,GNG2,PRKACA,GNG3,PRKACB,GNG4,GNG5,GNG7,PIK3CG,ROCK1,BRAF,NCF1,PIK3CB,ROCK2,RELA,PIK3CD,CCL4L1,CCL4L2,CCR9,MAPK1,CCR8,CCR7,CCR6,PPBP,CCR5,ARRB2,CCR4,ARRB1,CCR3,MAPK3,CX3CR1,CCR2,CCL1,CCL3,CCL2,GNAI3,FGR,GNAI2,GRB2,GNAI1,NFKBIB,ADRBK2,CCL8,NFKBIA,ADRBK1,CX3CL1,PF4V1,CCL5,CCL4,CCL7,PXN,DOCK2,PTK2,KRAS,RAC2,RAC1,ITK,VAV3,MAP2K1,VAV2,VAV1,GNGT1,GNGT2,CXCL14,CXCL13,CXCL16,IKBKG,GRK6,RAP1A,GRK7,GRK4,RAP1B,GRK5,IKBKB,XCL1,XCL2,GRK1,PREX1,BCAR1,CXCR1,CXCR2,NFKB1,CXCR3,AKT1,CDC42,PLCB3,PLCB4,CXCR5,CXCR4,CCL3L1,CXCR6,CCL3L3,RHOA,SHC1,PAK1,PLCB1,XCR1,SHC3,CSK,SHC2,PLCB2,CHUK,AKT3,SHC4,AKT2,LYN,PRKCD,WAS,ELMO1,PRKCB,CRKL,GNB2,GNB1,GNB5,GNB4,WASL,GNB3,CXCL1,PRKCZ,PARD3,CXCL5,CXCL3,CCR1,CXCL2,CXCL9,GNG13,PF4,GNG11,GNG12,CXCL6,CCL28,CCL27,CCL26,CCL24,CCL25,CCL22,CCL23,CCL20,PTK2B,CCL21,SOS1,RASGRP2,SOS2,PIK3R5,PIK3R3,PIK3R1,PIK3R2,IL8,HCK,RAF1,CCL19,STAT1,CCL16,CCL15,CCL18,STAT3,CCL17,STAT2,CCL11,NRAS,CCL13,PPBPL1,CCL14,ADCY9,GSK3A,GSK3B,GNG10,JAK2,JAK3,CRK +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCZ1,IMPA2,CDIPT,IMPA1,SYNJ1,PIP5K1B,PIP5K1C,ITPKB,PIP5K1A,PTEN,ITPKA,CDS2,PLCB3,PLCB4,PIK3C3,PIK3CA,SYNJ2,PLCB1,ITPK1,PLCB2,PIK3CG,PRKCA,PIK3C2G,PIK3CB,PIK3C2A,INPPL1,PIK3C2B,PIK3CD,PI4KA,PRKCG,PI4KB,CDS1,PRKCB,PLCE1,INPP4B,INPP4A,INPP1,OCRL,DGKA,DGKB,DGKE,INPP5K,CALML3,DGKD,INPP5J,DGKG,PIKFYVE,PLCD3,PLCD4,CALML6,INPP5E,PLCD1,PIK3R5,CALML5,INPP5D,PIK3R3,INPP5B,PIK3R1,INPP5A,PIK3R2,DGKQ,DGKH,DGKI,ITPR3,ITPR1,ITPR2,PLCG1,PLCG2,CALM3,DGKZ,IPPK,PIP4K2A,PIP4K2C,CALM2,PIP4K2B,CALM1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html DBF4,TGFB3,PKMYT1,TTK,PTTG2,PTTG1,CDC16,TGFB1,TGFB2,RAD21,CDKN2A,CDKN2B,CDKN2C,CDKN2D,CCNA1,CCNA2,STAG2,CUL1,STAG1,ANAPC1,LOC651610,ANAPC2,RBL2,ANAPC5,RBL1,ANAPC4,SKP2,ESPL1,SKP1,ORC1L,WEE1,WEE2,MAD2L1,EP300,ANAPC7,MAD2L2,LOC728622,FZR1,ANAPC13,CHEK1,ANAPC10,ANAPC11,CHEK2,RBX1,ORC6L,TFDP2,TFDP1,CREBBP,SMAD4,SMAD3,CDC23,CDC20,SMAD2,ATR,CDC26,CDC27,ATM,CDKN1C,CDKN1A,HDAC2,CDKN1B,HDAC1,PLK1,PCNA,ABL1,SMC1A,SMC1B,E2F1,E2F2,MAD1L1,E2F3,E2F4,E2F5,CDC14A,CDC14B,CCNE2,CCNE1,CDC45,MCM7,ORC4L,MYC,CDC7,CDC6,CDK1,CCNH,TP53,CDK6,CDK7,MCM2,RB1,CDK4,MCM3,MCM4,CDK2,MCM5,MCM6,CCND1,CCND3,CCND2,GADD45G,ORC5L,MDM2,BUB1B,GADD45B,GADD45A,YWHAZ,PRKDC,SFN,LOC650621,ZBTB17,ORC2L,BUB1,BUB3,YWHAB,CDC25C,YWHAE,SMC3,CDC25A,CDC25B,CCNB1,CCNB3,YWHAG,CCNB2,YWHAH,ORC3L,GSK3B,YWHAQ,LOC731751 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ADCY3,ADCY4,ADCY1,ADCY2,PPP2R5B,ADCY7,PPP2R5A,ADCY8,PPP2R5D,BTRC,ADCY5,PPP2R5C,ADCY6,PKMYT1,PTTG2,AURKA,PTTG1,CDC16,PRKX,PRKACG,PGR,MOS,STAG3,PRKACA,PRKACB,CUL1,ANAPC1,ANAPC2,ANAPC5,SGOL1,ANAPC4,CHP2,ESPL1,SKP1,PPP1CC,PPP1CB,MAPK1,REC8,PPP1CA,MAD2L1,MAPK3,PPP2R5E,ANAPC7,MAD2L2,LOC728622,ANAPC13,ANAPC10,ANAPC11,RBX1,INS,FBXO43,FBXO5,MAP2K1,CDC23,CDC20,CDC26,CDC27,PLK1,SMC1A,SMC1B,PLCZ1,CPEB1,CCNE2,CCNE1,SLK,PPP2R1B,CDK1,PPP2R1A,AR,CDK2,SPDYC,SPDYA,YWHAZ,CAMK2G,PPP3R1,PPP3R2,LOC650621,IGF1R,CALML3,PPP2CA,PPP2CB,PPP3CB,CAMK2D,BUB1,PPP3CC,CALML6,CAMK2B,CHP,PPP3CA,CALML5,CAMK2A,FBXW11,YWHAB,IGF1,ITPR3,CDC25C,YWHAE,ITPR1,SMC3,ITPR2,CCNB1,RPS6KA6,YWHAG,RPS6KA3,CCNB2,YWHAH,MAPK12,ADCY9,RPS6KA1,RPS6KA2,YWHAQ,CALM3,CALM2,CALM1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html STEAP3,LRDD,ZMAT3,RPRM,PMAIP1,PTEN,GTSE1,CCNE2,CCNE1,TP53I3,CASP3,CDKN2A,CASP9,SERPINE1,CASP8,FAS,TP53AIP1,LOC651610,CDK1,CYCS,TP53,CDK6,CDK4,CDK2,RFWD2,PPM1D,CCND1,TNFRSF10B,CCND3,CCND2,SERPINB5,RRM2,CD82,GADD45G,DDB2,MDM2,SIAH1,MDM4,GADD45B,GADD45A,BID,CHEK1,SFN,RRM2B,CHEK2,CCNG1,SESN2,CCNG2,SESN1,SESN3,SHISA5,BAI1,RCHY1,THBS1,IGF1,ATR,TP73,ATM,CCNB1,CCNB3,EI24,CDKN1A,CCNB2,BBC3,BAX,TSC2,APAF1,PERP,IGFBP3 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html BTRC,SAE1,CDC16,CUL3,CUL2,CUL5,CUL7,WWP2,KLHL9,WWP1,ITCH,CUL1,ANAPC1,ANAPC2,ANAPC5,SOCS3,ANAPC4,SOCS1,SKP2,UBE2J1,SKP1,UBE2J2,TRIM37,PIAS4,HUWE1,PIAS3,UBR5,TRIM32,PIAS2,PIAS1,ANAPC7,LOC728622,FZR1,SYVN1,ANAPC13,PPIL2,UBA7,UBA6,KEAP1,ANAPC10,UBE2QL1,CDC34,ANAPC11,RBX1,UBE2D4,FBXW7,UBE2D3,FBXW8,UBE2D2,LOC652346,RHOBTB2,FBXO4,RCHY1,TRAF6,UBE2D1,FBXO2,CDC23,UBE2L6,CDC20,UBOX5,CDC26,UBE2L3,CDC27,BRCA1,UBE2E3,CBLC,CBLB,RNF7,NEDD4,UBA1,UBA2,UBA3,AIRE,SMURF2,SMURF1,UBE2E2,UBE2E1,UBE2G1,UBE2G2,FANCL,MGRN1,UBE2A,DDB1,HERC4,UBE2F,HERC3,UBE2I,UBE2H,HERC2,UBE2NL,UBE2C,HERC1,UBE2B,RFWD2,UBE2N,UBE2O,UBE2K,UBE2M,KLHL13,DDB2,MDM2,UBE2W,SIAH1,UBE2S,UBE2U,UBE2Z,UBE3B,XIAP,UBE3A,PML,NHLRC1,UBE3C,LOC650621,STUB1,UBE2R2,PRPF19,ERCC8,MAP3K1,NEDD4L,FBXW11,TRIP12,UBE4A,VHL,CBL,UBE4B,BIRC6,LOC652671,PARK2,MID1,BIRC3,UBE2Q2,BIRC2,UBE2Q1,CUL4A,TCEB2,DET1,CUL4B,TCEB1 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html SNAP29,STX8,STX7,BET1,USE1,TSNARE1,STX12,STX19,STX18,STX17,STX16,SNAP47,SEC22B,SNAP23,STX11,SNAP25,STX10,STX6,STX5,STX4,STX1A,STX3,STX2,VTI1B,STX1B,VTI1A,BNIP1,VAMP8,VAMP7,VAMP5,VAMP4,BET1L,VAMP3,GOSR2,GOSR1,VAMP2,VAMP1,YKT6 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA21,ATG12,BECN1L1,IFNA2,IFNA1,ATG5,IFNA7,INS,IFNA6,IFNA5,ATG7,IFNG,IFNA4,PIK3C3,PRKAA1,PRKAA2,IFNA8,PIK3R4,GABARAPL2,GABARAPL1,BECN1,IFNA10,ATG3,GABARAP,ATG4D,ATG4C,ATG4B,ULK1,ULK2,ATG4A,ULK3,IFNA14,IFNA13,IFNA16,IFNA17 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html HGSNAT,GNPTG,AP4E1,AP1G1,LGMN,ATP6AP1,IDS,MCOLN1,IDUA,NAPSA,AP4M1,GNS,NPC1,NPC2,NEU1,CTSL2,NAGLU,ACP5,PPT2,ACP2,CTSA,PPT1,ABCA2,CTSL1,ATP6V0B,SLC11A2,ATP6V0C,SLC11A1,CD68,LAPTM5,NAGA,GALNS,GALC,SCARB2,ENTPD4,LAPTM4B,ABCB9,LAPTM4A,GUSB,CD63,DNASE2,LAMP1,LAMP2,LAMP3,CLTCL1,ARSB,SGSH,CLTA,CLTB,GM2A,AP1B1,ARSG,HEXA,HEXB,AP3S2,AP3S1,CLTC,ASAH1,GLB1,AP1S3,AP1S1,AP1S2,TPP1,AP3B2,ATP6V0D1,MAN2B1,ATP6V0D2,AP3B1,CLN3,HYAL1,CTSZ,ATP6V1H,CTSS,CD164,M6PR,CTSW,DNASE2B,CTSK,CTSO,IGF2R,GAA,CTSE,CTSD,SORT1,CTSC,CTSB,CTSH,CLN5,CTSG,CTSF,AP1M1,MFSD8,AP1M2,PSAPL1,NAGPA,GNPTAB,AP3M2,AP3M1,AP3D1,GBA,AGA,TCIRG1,PLA2G15,LIPA,PSAP,AP4S1,FUCA1,MANBA,SLC17A5,GLA,SUMF1,SMPD1,ARSA,ATP6V0A1,GGA1,AP4B1,ATP6V0A4,CTNS,GGA2,GGA3,ATP6V0A2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HRAS,CHMP4C,CHMP5,CHMP4B,CHMP4A,CHMP6,FAM125A,DAB2,WWP1,VPS4B,GIT2,VPS4A,DNAJC6,STAM,ITCH,EGFR,SH3GL3,PLD2,RET,PLD1,VPS45,PSD3,HLA-A,PSD4,HLA-C,HLA-B,PSD2,HLA-E,HLA-G,HLA-F,CCR5,ARRB2,ACAP3,ARRB1,ACAP1,ACAP2,PDGFRA,PDCD6IP,SH3GL2,SH3GL1,CHMP2A,FGFR2,ARFGAP1,ARFGAP2,FGFR4,ARFGAP3,FGFR3,ERBB4,ERBB3,STAM2,ASAP2,ASAP1,ADRBK2,HSPA1A,ADRBK1,ARF6,ASAP3,HSPA1B,SRC,CHMP2B,HSPA1L,ADRB3,LOC652799,SNF8,EGF,IQSEC3,TRAF6,IQSEC1,AP2M1,CSF1R,IQSEC2,GIT1,PARD6A,PARD6B,MET,LOC652614,KDR,EPS15,CBLC,CBLB,RABEP1,NEDD4,NTRK1,GRK6,GRK7,HGS,GRK4,SMURF2,GRK5,PARD6G,SMURF1,CLTCL1,GRK1,PIP4K2B,CLTA,CLTB,RAB5B,LDLR,RAB5C,TSG101,AP2S1,VPS37A,PIP5K1B,VPS37B,CXCR1,PIP5K1C,CXCR2,VPS37C,PIP5K1A,VPS37D,CLTC,ZFYVE20,CDC42,AP2B1,SMAP2,SMAP1,CXCR4,AGAP1,AGAP2,EPN3,RAB4A,PRKCI,LDLRAP1,RAB11FIP4,RAB11FIP5,RAB11FIP2,ADRB2,RAB11FIP3,ADRB1,CHMP1B,PSD,RAB5A,SH3KBP1,MDM2,RAB11FIP1,EPN1,EPN2,PRKCZ,PARD3,USP8,EEA1,KIT,IGF1R,HSPA2,SH3GLB2,SH3GLB1,PIKFYVE,HSPA6,RAB11B,RAB11A,IL2RG,NEDD4L,EHD1,EHD2,VPS36,EHD3,HSPA8,EHD4,STAMBP,FAM125B,DNM3,IL2RB,IL2RA,DNM1L,FLT1,VTA1,CBL,RUFY1,AP2A2,RAB31,TFRC,AP2A1,RAB22A,VPS24,VPS28,ARAP3,ARAP2,DNM1,ARAP1,DNM2,F2R,VPS25,RNF41 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ACOX2,ACOX1,EHHADH,PEX6,PRDX5,PEX5,MPV17,PEX3,PMVK,PRDX1,AGXT,PEX11G,PEX7,ACOX3,FAR1,PECR,FAR2,ACOT8,AGPS,PEX1,PEX2,MPV17L,PXMP4,PXMP2,GNPAT,DAO,NOS2,CAT,HMGCL,NUDT19,NUDT12,DECR2,PECI,DDO,HAO1,DHRS4,PEX26,HAO2,MVK,SLC27A2,CROT,ACAA1,XDH,HACL1,ECH1,ABCD1,PIPOX,ACSL1,PEX19,GSTK1,PEX16,ABCD2,IDH2,PEX14,IDH1,ABCD3,PEX13,ABCD4,PEX12,HSD17B4,ACSL4,ACSL3,PEX10,ACSL6,ACSL5,PAOX,AMACR,EPHX2,CRAT,SOD1,PHYH,SOD2,PEX11A,PEX11B,BAAT,MLYCD,SCP2,SLC25A17 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PGF,RPS6KB2,RPS6KB1,AKT1,PDPK1,EIF4EBP1,PIK3CA,MLST8,CAB39,AKT3,AKT2,PIK3CG,BRAF,PIK3CB,PIK3CD,RPTOR,DDIT4,VEGFB,MAPK1,VEGFC,HIF1A,MAPK3,VEGFA,CAB39L,STK11,INS,PIK3R5,PRKAA1,PRKAA2,PIK3R3,FIGF,PIK3R1,PIK3R2,STRADA,IGF1,RICTOR,RPS6,EIF4E1B,EIF4B,RPS6KA6,RPS6KA3,EIF4E,TSC1,RPS6KA1,RPS6KA2,ULK1,ULK2,TSC2,ULK3,RHEB,MTOR,EIF4E2 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html FASLG,NFKB1,PRKX,PRKACG,AKT1,CASP6,PRKAR2B,PRKAR2A,CASP3,MYD88,CASP9,CASP7,IL1RAP,CASP8,EXOG,PIK3CA,IL1B,CSF2RB,PRKACA,FAS,PRKACB,IL1A,CHUK,AKT3,AKT2,PIK3CG,LOC651610,IRAK2,IRAK1,AIFM1,DFFA,PIK3CB,DFFB,RELA,PIK3CD,CYCS,TP53,CHP2,FADD,TNFRSF10A,TNFRSF10C,TNFRSF10B,TNFRSF10D,RIPK1,MAP3K14,NGF,BID,TRAF2,IL1R1,TNF,XIAP,PPP3R1,PPP3R2,NFKBIA,BCL2L1,IRAK4,IRAK3,TNFRSF1A,BCL2,PPP3CB,PPP3CC,PIK3R5,CHP,PPP3CA,PIK3R3,PIK3R1,PIK3R2,CFLAR,IL3,ENDOD1,BAD,BIRC3,CAPN2,BIRC2,ATM,TRADD,CAPN1,CASP10,TNFSF10,NTRK1,PRKAR1B,BAX,ENDOG,PRKAR1A,IKBKG,APAF1,IKBKB,IL3RA +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html UQCRC2,ATP1B1,UQCRC1,SLC9A6,ATP1B3,ATP1B2,TNNC1,ATP1B4,CYC1,COX5A,UQCRFS1,UQCRQ,COX5B,UQCR10,UQCR11,CACNG8,CACNG7,CACNG6,CACNG5,COX4I2,CACNG4,COX4I1,MYH7,LOC727947,CACNG3,MYH6,CACNG2,CACNG1,COX6C,TNNT2,LOC644310,UQCRH,RYR2,UQCRB,FXYD2,MYL2,MYL3,COX7B2,COX7B,CACNB1,COX7C,CYTB,CACNB2,CACNB3,COX7A2L,CACNB4,TPM2,TPM1,TPM4,TPM3,COX6B1,COX6B2,ACTC1,CACNA2D1,SLC8A1,COX7A2,COX7A1,COX8C,COX8A,ATP1A3,ATP1A4,ATP1A1,ATP1A2,CACNA2D3,TNNI3,CACNA2D2,CACNA1S,UQCRHL,CACNA2D4,ATP2A2,COX3,COX2,LOC100130247,COX1,COX6A2,COX6A1,CACNA1F,CACNA1C,CACNA1D,SLC9A1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADCY3,GNA13,ADCY4,ADCY1,ADCY2,ADCY7,ADCY8,GNA11,ADCY5,GNA12,ADCY6,PRKG1,PRKX,PRKACG,AGTR1,ACTG2,PTGIR,PLA2G1B,PRKACA,PRKACB,ROCK1,BRAF,ROCK2,MYLK3,MYLK2,PPP1CC,PPP1CB,MAPK1,PPP1CA,MAPK3,PLA2G2A,PLA2G2C,PLA2G2E,PLA2G2D,PLA2G2F,KCNMB3,MYL6,KCNMB4,ADORA2B,ADORA2A,KCNMB1,KCNMB2,MYL9,MAP2K1,MAP2K2,CACNA1S,PLA2G4A,AVPR1B,ADRA1B,AVPR1A,MYH11,ADRA1A,CACNA1F,CACNA1C,PLA2G4B,CACNA1D,ADRA1D,PLA2G4E,MYLK,MRVI1,EDNRA,PLCB3,PLCB4,GUCY1A2,RHOA,GUCY1A3,CALCRL,PLCB1,PLCB2,RAMP1,PPP1R14A,PRKCA,KCNMA1,RAMP3,RAMP2,ARHGEF1,ACTA2,PRKCH,PRKCG,PRKCE,ARHGEF12,PRKCD,PRKCB,ARHGEF11,PRKCQ,GNAQ,PLA2G6,GNAS,GUCY1B3,PLA2G3,PLA2G5,PPP1R12B,CALD1,JMJD7-PLA2G4B,CYP4A22,CALML3,MYL6B,PLA2G12A,PLA2G12B,PPP1R12A,CALML6,CALML5,PLA2G10,NPR1,RAF1,NPR2,ITPR3,ITPR1,ITPR2,CYP4A11,ADCY9,ARAF,CALM3,CALM2,CALM1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP2R5B,PPP2R5A,PPP2R5D,BTRC,WNT3A,PPP2R5C,MMP7,PRKX,CTNNB1,WNT2,CSNK2A2,MAP3K7,PRKACG,WNT1,WNT4,WNT3,CSNK2A1,PRKACA,PRKACB,WNT6,CUL1,WNT10A,WNT10B,VANGL1,ROCK1,ROCK2,VANGL2,CHP2,SKP1,EP300,JUN,MAPK9,PPP2R5E,MAPK8,LOC728622,WNT5A,WNT5B,CXXC4,DAAM1,DAAM2,RBX1,RAC2,RAC3,RAC1,CACYBP,AXIN2,AXIN1,DVL2,DVL3,TCF7,CREBBP,SMAD4,SMAD3,SMAD2,PORCN,DVL1,SFRP5,SFRP1,PRICKLE1,SFRP2,SFRP4,PRICKLE2,WIF1,PPARD,PLCB3,PLCB4,FRAT1,RHOA,FRAT2,SOX17,PLCB1,FOSL1,MYC,PLCB2,PPP2R1B,PRKCA,PPP2R1A,TBL1XR1,CTBP1,CTBP2,TP53,LEF1,PRKCG,PRKCB,CTNNBIP1,SENP2,CCND1,PSEN1,CCND3,CCND2,WNT9B,WNT11,SIAH1,RUVBL1,WNT9A,CER1,NKD1,WNT16,NKD2,APC2,CAMK2G,PPP3R1,PPP3R2,TCF7L2,TCF7L1,CHD8,PPP2CA,PPP2CB,PPP3CB,NFAT5,CAMK2D,PPP3CC,NFATC4,CAMK2B,CHP,PPP3CA,NFATC2,NFATC3,FBXW11,CAMK2A,WNT8A,WNT8B,APC,NFATC1,CSNK1A1,FZD9,FZD8,NLK,FZD1,CSNK2B,CSNK1A1L,FZD3,FZD2,MAPK10,FZD5,FZD4,FZD7,DKK4,WNT2B,FZD6,DKK2,FZD10,WNT7B,DKK1,CSNK1E,GSK3B,LRP6,TBL1X,WNT7A,LRP5,TBL1Y +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html ETV7,LOC652554,GRB2,CPEB1,KRAS,SOS1,SOS2,PIWIL1,PIWIL2,PIWIL3,PIWIL4,ETV6,EGFR,MAP2K1,SPIRE1,SPIRE2,NOTCH3,FMN2,NOTCH2,MAPK1,NOTCH1,ETS1,ETS2,NOTCH4,MAPK3 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html MFNG,APH1A,JAG2,JAG1,CIR1,NUMB,PSENEN,MAML3,RBPJL,LFNG,PTCRA,DTX4,DVL2,KAT2A,DVL3,CTBP1,KAT2B,CTBP2,DTX1,DTX3L,DTX2,MAML1,MAML2,DTX3,CREBBP,DLL3,DLL1,SNW1,RFNG,DVL1,NUMBL,NCSTN,HES1,NOTCH3,NOTCH2,NOTCH1,HDAC2,EP300,HDAC1,PSEN1,HES5,DLL4,PSEN2,NOTCH4,ADAM17,RBPJ,NCOR2 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT3A,BTRC,STK36,GLI2,GLI3,SHH,PRKX,ZIC2,GLI1,WNT2,PRKACG,WNT1,WNT4,WNT3,RAB23,PRKACA,HHIP,PRKACB,WNT6,IHH,WNT10A,WNT10B,CSNK1G1,CSNK1G2,SMO,WNT9B,WNT11,CSNK1G3,WNT9A,WNT5A,DHH,WNT16,WNT5B,SUFU,FBXW11,WNT8A,WNT8B,CSNK1A1,BMP4,BMP2,CSNK1A1L,GAS1,WNT2B,WNT7B,CSNK1D,CSNK1E,GSK3B,PTCH1,PTCH2,BMP7,LRP2,WNT7A,BMP5,BMP8B,BMP6,BMP8A +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html NOG,E2F4,ACVRL1,LTBP1,E2F5,GDF7,GDF6,GDF5,FST,TGFB3,RPS6KB2,RPS6KB1,TGFB1,ACVR1C,TGFB2,CDKN2B,ZFYVE16,ZFYVE9,IFNG,RHOA,MYC,CUL1,PITX2,PPP2R1B,PPP2R1A,RBL2,ROCK1,ROCK2,NODAL,RBL1,SKP1,LEFTY1,INHBB,ACVR2A,AMH,INHBA,MAPK1,ACVR2B,EP300,INHBE,MAPK3,INHBC,ACVR1,LOC728622,TNF,BMPR2,DCN,RBX1,COMP,PPP2CA,LEFTY2,PPP2CB,THBS1,THBS2,THBS3,TFDP1,THBS4,BMP4,AMHR2,BMP2,SMAD9,SMAD7,SMAD6,TGFBR1,TGFBR2,CREBBP,SMAD5,SMAD4,SMAD3,SMAD2,SMAD1,SP1,ID2,ID1,ID4,SMURF2,SMURF1,ID3,BMP7,BMPR1B,CHRD,BMP5,BMP8B,BMP6,BMPR1A,BMP8A +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html HRAS,PLXNA3,PLXNA1,PLXNA2,EFNA1,EFNA2,EFNA3,L1CAM,LRRC4C,CXCL12,UNC5B,UNC5A,ROBO1,SEMA7A,ROBO2,UNC5D,ROBO3,UNC5C,ROCK1,EFNB3,ROCK2,PLXNB1,PLXNB2,EFNB1,PLXNB3,EFNB2,CHP2,MAPK1,RND1,MAPK3,EFNA5,EFNA4,PLXNC1,GNAI3,GNAI2,GNAI1,EPHB3,ITGB1,EPHB4,EPHB1,EPHB2,SEMA5A,SEMA5B,PTK2,EPHB6,KRAS,RAC2,RAC3,RAC1,MET,NTN4,EPHA1,NTN1,EPHA2,NTN3,EPHA3,EPHA5,EPHA4,SEMA6A,EPHA7,SEMA6B,EPHA6,SEMA6C,SEMA6D,RGS3,EPHA8,ABL1,NRP1,FES,PAK6,PAK7,CDC42,PAK2,SEMA3G,PAK3,CXCR4,PAK4,SEMA3F,SEMA3E,SEMA3D,RHOA,SEMA3C,SEMA3B,RHOD,PAK1,SEMA3A,LIMK2,LIMK1,ARHGEF12,CDK5,SLIT1,SLIT2,SLIT3,NCK2,SEMA4G,SEMA4F,CFL2,NCK1,CFL1,SRGAP3,SEMA4C,SEMA4B,SEMA4D,SEMA4A,SRGAP1,SRGAP2,ABLIM1,DCC,ABLIM2,ABLIM3,PPP3R1,PPP3R2,PPP3CB,NFAT5,PPP3CC,NFATC4,CHP,PPP3CA,NFATC2,NFATC3,RASA1,NFATC1,NGEF,NTNG1,DPYSL5,DPYSL2,NRAS,FYN,GSK3B +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html HRAS,PTGS2,AKT1,CDC42,CASP9,PLA2G1B,PIK3CA,NOS3,SHC2,AKT3,AKT2,PIK3CG,PRKCA,PIK3CB,PIK3CD,CHP2,PRKCG,PRKCB,SH2D2A,MAPK1,VEGFA,MAPK3,PLA2G2A,HSPB1,PLA2G6,PLA2G2C,PLA2G2E,PLA2G3,PLA2G2D,PLA2G5,PLA2G2F,PPP3R1,MAPKAPK3,PPP3R2,MAPKAPK2,SRC,PXN,PTK2,JMJD7-PLA2G4B,KRAS,RAC2,RAC3,PLA2G12A,PLA2G12B,RAC1,PPP3CB,NFAT5,PPP3CC,PIK3R5,NFATC4,CHP,PPP3CA,NFATC2,PIK3R3,NFATC3,PIK3R1,PIK3R2,NFATC1,SPHK2,PLA2G10,MAP2K1,MAP2K2,SPHK1,RAF1,MAPK11,BAD,KDR,NRAS,PLA2G4A,PLCG1,MAPK12,MAPK13,MAPK14,PLCG2,PLA2G4B,PLA2G4E +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html HRAS,PGF,CTNNB1,ACTG1,ILK,PIK3CA,RAPGEF1,PIK3CG,ROCK1,BRAF,ROCK2,PIK3CB,MYLK3,PIK3CD,MYLK2,VEGFB,VEGFC,MAPK1,PPP1CA,LAMC3,JUN,VEGFA,MAPK3,PDGFRA,MAPK9,PDGFRB,LAMC2,MAPK8,LAMC1,ITGA2B,IBSP,ERBB2,ITGA11,ITGA10,PXN,LAMB4,LAMB3,LAMB2,RAC2,RAC3,RAC1,LAMB1,SPP1,LOC646048,MAP2K1,HGF,KDR,LAMA2,LAMA1,LAMA4,LAMA3,LAMA5,LOC646821,BCAR1,PTEN,PDPK1,COL11A2,COL11A1,PARVG,FLNC,FLNB,FLNA,CCND1,CCND3,CCND2,PARVB,PARVA,COL3A1,COL2A1,COL6A6,BCL2,SOS1,COL6A3,SOS2,COL6A2,COL6A1,THBS1,THBS2,THBS3,THBS4,IGF1,MAPK10,BIRC3,CAPN2,BIRC2,FYN,GSK3B,PDGFB,PDGFA,VTN,MYL10,CHAD,VCL,PDGFC,PDGFD,EGFR,ACTN4,ACTN1,ACTN2,ACTN3,PPP1CC,PPP1CB,RASGRF1,COL1A2,RELN,COL1A1,CAV3,CAV2,MYL7,CAV1,MYL5,MYL2,GRB2,DIAPH1,ITGB4,ELK1,ITGB5,ITGB3,ITGB1,SRC,MYL9,PTK2,DOCK1,ITGB8,ITGB7,ITGAV,ITGB6,EGF,FN1,VAV3,MET,ITGA1,MYLPF,ITGA2,MYL12B,ITGA3,MYL12A,ITGA4,VAV2,VAV1,ITGA9,ITGA6,ITGA5,ITGA8,ITGA7,RAP1A,RAP1B,MYLK,TLN1,TLN2,PIP5K1C,AKT1,PAK6,PAK7,CDC42,ARHGAP5,PAK2,PAK3,PAK4,RHOA,SHC1,ZYX,PAK1,SHC3,SHC2,AKT3,AKT2,SHC4,PRKCA,PRKCG,VASP,PRKCB,CRKL,XIAP,TNC,IGF1R,COMP,TNR,PPP1R12A,TNN,PIK3R5,PIK3R3,FIGF,PIK3R1,PIK3R2,ACTB,COL4A4,COL4A2,FLT1,COL4A1,TNXB,FLT4,RAF1,BAD,COL5A3,COL5A2,COL5A1,COL4A6,VWF,GRLF1,CRK +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html VTN,SDC4,SDC2,SDC3,CHAD,GP9,CD47,GP5,GP6,CD44,SV2B,SV2A,COL11A2,COL11A1,SV2C,SDC1,CD36,LAMC3,COL1A2,RELN,LAMC2,LAMC1,COL1A1,ITGA2B,IBSP,TNC,COL3A1,DAG1,ITGA11,ITGB4,ITGA10,ITGB5,COL2A1,ITGB3,ITGB1,HMMR,LAMB4,LAMB3,LAMB2,COL6A6,ITGB8,GP1BB,TNR,COMP,ITGB7,ITGAV,COL6A3,ITGB6,COL6A2,COL6A1,GP1BA,TNN,AGRN,THBS1,LAMB1,THBS2,THBS3,THBS4,FN1,SPP1,COL4A4,COL4A2,TNXB,COL4A1,ITGA1,HSPG2,ITGA2,ITGA3,ITGA4,COL5A3,COL5A2,COL5A1,COL4A6,LAMA2,LAMA1,VWF,ITGA9,LAMA4,LAMA3,ITGA6,LAMA5,ITGA5,ITGA8,ITGA7 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html PVR,MPZL1,CADM3,OCLN,CADM1,L1CAM,NRCAM,NEGR1,SPN,F11R,PTPRM,PTPRF,HLA-A,HLA-C,CD40,HLA-B,HLA-E,HLA-DQA2,PDCD1LG2,HLA-G,HLA-DQA1,HLA-F,NCAM1,NCAM2,CD40LG,CD34,HLA-DPA1,MADCAM1,CD226,HLA-DRA,GLG1,ITGAL,HLA-DRB1,HLA-DRB3,ITGB2,ITGB1,ITGAM,ALCAM,PVRL1,ITGB8,PVRL3,ITGAV,ITGB7,ICOS,PVRL2,HLA-DRB4,HLA-DRB5,HLA-DPB1,HLA-DOA,HLA-DOB,CD276,ITGA4,LOC652614,ITGA9,ITGA6,ITGA8,NLGN4X,CD58,CD274,CLDN8,CLDN7,CLDN9,CLDN4,CD8A,CLDN3,CD8B,CLDN6,CLDN5,SDC4,HLA-DMB,HLA-DMA,PDCD1,SDC2,SDC3,CNTNAP2,CNTNAP1,ESAM,ICAM1,NRXN2,NRXN3,ICAM2,ICAM3,NRXN1,SIGLEC1,CD86,SDC1,CD80,CNTN2,CLDN1,CNTN1,CLDN2,VCAN,JAM2,JAM3,ICOSLG,HLA-DQB1,CLDN16,CLDN17,CLDN18,CLDN19,CDH1,CLDN10,CLDN11,CDH2,NEO1,CDH3,CDH4,CLDN14,CDH5,CLDN15,VCAM1,CD2,CD22,CD4,CD6,SELPLG,CD28,PTPRC,SELP,MAG,MPZ,SELL,CTLA4,NLGN1,NFASC,CLDN22,CD99,NLGN2,NLGN3,CLDN20,CLDN23,CDH15,PECAM1,SELE +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html LOC646821,WASF3,WASF1,WASF2,LMO7,FER,IQGAP1,VCL,CTNNB1,MAP3K7,ACTG1,CSNK2A2,CDC42,CSNK2A1,RHOA,INSR,PTPRJ,EGFR,PTPRM,PTPRF,ACTN4,BAIAP2,LEF1,ACTN1,ACTN2,ACTN3,CTNNA1,WAS,CTNNA3,CTNNA2,FARP2,MAPK1,EP300,MAPK3,WASL,FGFR1,PARD3,ERBB2,CTNND1,CDH1,ACP1,TCF7L2,TCF7L1,SRC,PVRL4,IGF1R,PVRL1,RAC2,SORBS1,RAC3,PVRL3,PVRL2,RAC1,SSX2IP,YES1,MLLT4,ACTB,PTPRB,LOC646048,PTPN6,TCF7,NLK,TGFBR1,MET,TGFBR2,CREBBP,SMAD4,CSNK2B,SMAD3,SMAD2,SNAI2,SNAI1,TJP1,FYN,PTPN1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html HRAS,MYH15,OCLN,VAPA,ZAK,CASK,MYL10,AMOTL1,CTNNB1,CSNK2A2,ACTG1,CSNK2A1,RRAS,F11R,MAGI3,INADL,MAGI2,MAGI1,MYH1,ACTN4,MPDZ,MYH3,MYH2,MYH4,ACTN1,MYH7,ACTN2,MYH6,ACTN3,CTNNA1,CSDA,MYH9,MYH8,CTNNA3,CTNNA2,IGSF5,CGN,RAB13,MYH7B,MYL7,MYL5,GNAI3,MYL2,GNAI2,GNAI1,MRAS,SRC,TJAP1,LLGL1,LLGL2,MYL9,KRAS,PPP2R2B,PPP2R2C,PPP2R2D,PARD6A,PARD6B,LOC646048,EPB41,CRB3,MYLPF,MYL12B,MYL12A,MYH11,MYH13,PARD6G,MYH14,MYH10,CLDN8,CLDN7,LOC646821,CLDN9,CLDN4,CLDN3,CLDN6,CLDN5,PTEN,AKT1,CDC42,CTTN,RHOA,AKT3,AKT2,PPP2R1B,PRKCA,PPP2R1A,SYMPK,MPP5,PRKCI,PRKCH,PRKCG,CDK4,PRKCE,PRKCD,PRKCB,EPB41L2,EPB41L3,PRKCQ,EPB41L1,RRAS2,ASH1L,CLDN1,CLDN2,JAM2,JAM3,PPP2R2A,CLDN16,CLDN17,PRKCZ,PARD3,RAB3B,CLDN18,CLDN19,CLDN10,CLDN11,CLDN14,CLDN15,PPP2CA,PPP2CB,EXOC4,EXOC3,YES1,MLLT4,ACTB,HCLS1,CSNK2B,CLDN22,CLDN20,CLDN23,NRAS,TJP1,TJP3,TJP2,SPTAN1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ADCY3,ADCY4,ADCY1,HRAS,ADCY2,PDGFB,TUBB2B,ADCY7,PDGFA,TUBB2A,ADCY8,GNA11,ADCY5,TUBB2C,ADCY6,GJA1,LPAR1,PRKG2,PRKG1,PRKX,PRKACG,PLCB3,PLCB4,GUCY1A2,TUBB6,GUCY1A3,PRKACA,PDGFC,PRKACB,TUBB8,PDGFD,TUBB1,PLCB1,TUBA1A,PLCB2,TUBA1B,TUBA1C,TUBB3,TUBB4,MAP2K5,EGFR,PRKCA,GJD2,CDK1,PRKCG,GRM1,PRKCB,GRM5,MAPK1,ADRB1,GNAQ,MAPK3,PDGFRA,TUBA4A,PDGFRB,GNAS,GUCY1B3,MAPK7,DRD1,GNAI3,GNAI2,GNAI1,GRB2,DRD2,SRC,TUBB4Q,TUBB,KRAS,MAP3K2,SOS1,SOS2,TUBA3C,TUBA3D,TUBA3E,EGF,MAP2K1,MAP2K2,RAF1,ITPR3,ITPR1,ITPR2,NRAS,TJP1,TUBA8,ADCY9,CSNK1D,TUBAL3,HTR2B,HTR2C,HTR2A +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html A2M,MASP1,MASP2,F13A1,C1QC,SERPINA5,CD46,SERPINE1,CFH,SERPINA1,CFI,CFD,KNG1,F11,F12,F10,C5AR1,C4A,C4B,F8,F9,SERPING1,F7,PROC,PLAUR,C8G,C1QA,C8A,C1QB,C8B,THBD,F5,SERPINF2,F3,F2,TFPI,PROS1,C3AR1,MBL2,C7,C9,C3,C6,C5,C1R,BDKRB1,C1S,BDKRB2,F13B,FGG,FGA,FGB,KLKB1,SERPINC1,C2,PLAT,CR1,CR2,CFB,C4BPB,C4BPA,PLG,VWF,CD55,CD59,SERPIND1,CPB2,PLAU,F2R +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HSP90AB1,KLRC4,IFNA21,KLRC2,KLRC3,PDIA3,CD8A,CD8B,LGMN,HLA-DMB,CANX,HLA-DMA,RFXAP,RFXANK,B2M,TAPBP,KLRD1,LTA,CIITA,HSP90AA1,HLA-A,HLA-C,HLA-B,CTSS,HLA-E,HLA-DQA2,HLA-DQA1,HLA-G,HLA-F,PSME1,PSME2,KIR3DL3,HLA-DPA1,KIR2DL1,PSME3,CTSB,KIR2DL3,KIR2DL2,KLRC1,KIR3DL1,HLA-DRA,KIR2DL4,KIR3DL2,HLA-DQB1,KIR2DL5A,HLA-DRB1,HLA-DRB3,NFYC,IFI30,NFYB,HSPA1A,NFYA,HSPA1B,CALR,CD74,CTSL1,HSPA1L,IFNA2,IFNA1,HSPA2,IFNA7,IFNA6,TAP2,IFNA5,TAP1,IFNA4,HSPA6,HLA-DRB4,HLA-DRB5,HSPA4,CD4,HLA-DPB1,HSPA5,IFNA8,HLA-DOA,HLA-DOB,HSPA8,KIR2DS5,RFX5,CREB1,IFNA10,KIR2DS1,KIR2DS4,KIR2DS3,LOC652614,IFNA14,IFNA13,IFNA16,IFNA17 +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html THOP1,MME,ANPEP,CTSA,ENPEP,LNPEP,AGTR1,ACE,AGTR2,REN,AGT,MAS1,ACE2,CPA3,CMA1,NLN,CTSG +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TBK1,TLR1,TIRAP,TLR2,TLR3,TLR4,TLR5,CXCL11,TLR6,TLR7,TLR8,CXCL10,TLR9,MAP3K7,MYD88,MAP3K8,IL1B,PIK3CA,MAP2K7,MAP2K6,PIK3CG,PIK3CB,RELA,PIK3CD,FADD,CD40,MAPK1,IFNB1,JUN,MAPK3,MAPK9,MAPK8,CCL3,NFKBIA,CCL5,CCL4,IRAK4,IFNA2,IFNA1,IFNA7,IFNA6,IFNA5,IFNA4,RAC1,IFNA8,TRAF6,TRAF3,SPP1,MAP2K1,MAP2K2,MAP2K3,MAP2K4,IKBKE,IKBKG,IKBKB,IFNA21,TOLLIP,NFKB1,AKT1,FOS,TICAM1,CASP8,TICAM2,LBP,CHUK,AKT3,AKT2,IRAK1,LY96,IFNAR1,IFNAR2,CD86,CTSK,CD80,RIPK1,IL12A,IL12B,TNF,CXCL9,PIK3R5,PIK3R3,PIK3R1,PIK3R2,IL6,IL8,IFNA10,MAPK11,MAPK10,STAT1,TAB1,TAB2,MAPK12,IRF5,MAPK13,IRF7,MAPK14,IFNA14,IRF3,IFNA13,IFNA16,CD14,IFNA17 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html HSP90AB1,IL18,NFKB1,CASP5,MAP3K7,NLRC4,NOD2,NOD1,CASP8,IL1B,CASP1,CHUK,HSP90AA1,RELA,NLRP3,NLRP1,MAPK1,CARD18,MAPK3,MAPK9,RIPK2,NAIP,MAPK8,TNFAIP3,CXCL1,TNF,CCL2,XIAP,NFKBIB,CXCL2,CCL8,NFKBIA,CCL5,PYDC1,CCL7,MEFV,PYCARD,PSTPIP1,TRAF6,IL6,CARD8,CARD9,IL8,MAPK11,MAPK10,TAB1,BIRC3,CARD6,SUGT1,BIRC2,TAB2,TAB3,CCL11,HSP90B1,CCL13,ERBB2IP,MAPK12,MAPK13,MAPK14,IKBKG,TRIP6,IKBKB +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA21,TBK1,DAK,NFKB1,CXCL10,MAP3K7,TMEM173,ATG5,ISG15,IFNE,CASP8,IFNK,CHUK,RELA,FADD,TANK,SIKE1,IFNB1,RIPK1,IL12A,MAPK9,MAPK8,IL12B,MAVS,TRAF2,OTUD5,IFIH1,TNF,ATG12,NFKBIB,NLRX1,IFNW1,NFKBIA,AZI2,PIN1,RNF125,CYLD,IFNA2,IFNA1,IFNA7,DDX3X,IFNA6,MAP3K1,IFNA5,DDX3Y,IFNA4,IFNA8,TRAF6,TBKBP1,DHX58,TRAF3,IL8,IFNA10,MAPK11,TRIM25,MAPK10,TRADD,DDX58,CASP10,IKBKE,MAPK12,MAPK13,IRF7,MAPK14,IKBKG,IFNA14,IRF3,IFNA13,IKBKB,IFNA16,IFNA17 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA21,TBK1,IL18,NFKB1,CXCL10,TMEM173,IL1B,CASP1,CHUK,POLR1D,RELA,CCL4L1,CCL4L2,POLR1C,IFNB1,RIPK1,RIPK3,MAVS,NFKBIB,NFKBIA,IL33,CCL5,CCL4,IFNA2,IFNA1,IFNA7,IFNA6,IFNA5,IFNA4,PYCARD,IFNA8,ZBP1,POLR3G,POLR3F,IL6,POLR3H,POLR3K,IFNA10,TREX1,POLR3A,POLR3GL,POLR3C,POLR3B,AIM2,POLR3D,DDX58,IKBKE,IRF7,IKBKG,IFNA14,IRF3,IFNA13,IFNA16,IKBKB,IFNA17,ADAR +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL9R,IL6ST,OSMR,STAT5A,STAT5B,IL19,IL13,IL15,IL10,IL11,IFNE,IFNG,SPRED2,PIK3CA,IL15RA,CSF3R,STAM,IFNK,SPRED1,PIK3CG,IL29,SOCS2,PIK3CB,SOCS3,PIK3CD,SOCS1,LIFR,PIM1,SOCS7,IL26,SOCS4,IL24,SOCS5,IL21,IL22,IL11RA,IL20,EP300,PIAS4,IFNB1,PIAS3,PIAS2,PIAS1,IL22RA1,GRB2,STAM2,CNTFR,BCL2L1,LIF,IL12RB2,IFNA2,IFNA1,IL23A,IL12RB1,IFNA7,IFNA6,IFNA5,IFNA4,IFNA8,PTPN6,IL23R,CREBBP,PTPN11,GH2,GH1,CBLC,CBLB,IL5RA,IL3RA,IL22RA2,CSH1,IFNA21,LEPR,IL21R,IL28RA,SPRY4,SPRY3,AKT1,SPRY2,SPRY1,CLCF1,IL4R,CSF2RB,TPO,IL13RA1,IFNGR2,PRL,MYC,IFNGR1,CSF2RA,AKT3,GHR,IL13RA2,AKT2,IL6R,IFNAR1,OSM,TYK2,IFNAR2,CCND1,IL20RB,CCND3,IL20RA,CCND2,IL12A,IL12B,CSF3,CSF2,CRLF2,CTF1,IFNW1,IL7R,STAT6,STAT4,IL10RB,IL10RA,SOS1,SOS2,IL2RG,PIK3R5,PIK3R3,PIK3R1,PIK3R2,EPO,IL4,IL3,IL6,IL2RB,IL5,IL2RA,IL7,CBL,IL9,IFNA10,STAT1,STAT3,CISH,STAT2,IRF9,LEP,TSLP,CNTF,PRLR,JAK1,EPOR,JAK2,IFNA14,JAK3,IFNA13,IL28B,MPL,IFNA16,IL28A,IL2,IFNA17 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL9R,CD8A,CD8B,GYPA,ANPEP,GP9,FLT3LG,IL11,GP5,DNTT,CD44,IL4R,MS4A1,CSF3R,IL1B,TPO,CSF2RA,IL1A,CD3G,CD3D,CD3E,IL6R,IL11RA,CD38,CD37,CD36,CD34,CD33,HLA-DRA,ITGA2B,CSF3,IL1R2,CSF2,IL1R1,TNF,HLA-DRB1,FCER2,CSF1,HLA-DRB3,MME,KITLG,KIT,ITGB3,IL7R,ITGAM,CD9,GP1BB,LOC652799,FCGR1A,CD2,HLA-DRB4,CD22,HLA-DRB5,GP1BA,CD4,CD5,CD7,THPO,EPO,CSF1R,IL4,IL3,IL6,CR1,IL5,IL2RA,CR2,IL7,FLT3,CD1C,ITGA1,CD1B,ITGA2,CD1A,ITGA3,ITGA4,CD1E,CD1D,CD55,CD19,ITGA6,TFRC,ITGA5,CD59,EPOR,IL5RA,CD14,IL3RA +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html MICB,KLRC2,HRAS,MICA,KLRC3,CD48,IFNG,PIK3CA,FAS,KLRD1,SYK,PIK3CG,BRAF,PIK3CB,PIK3CD,CHP2,HLA-A,HLA-C,HLA-B,HLA-E,HLA-G,HCST,MAPK1,IFNB1,MAPK3,KIR2DL1,KIR2DL3,KIR2DL2,KLRC1,KIR3DL1,KIR2DL4,KIR3DL2,ITGAL,GRB2,KLRK1,ITGB2,IFNA2,IFNA1,KRAS,RAC2,IFNA7,RAC3,IFNA6,IFNA5,IFNA4,RAC1,ZAP70,FCER1G,IFNA8,TYROBP,PTPN6,VAV3,MAP2K1,MAP2K2,KIR2DS5,KIR2DS1,KIR2DS4,KIR2DS3,VAV2,VAV1,PTPN11,LAT,TNFSF10,PLCG1,PLCG2,IFNA21,FASLG,SH2D1A,RAET1E,CASP3,RAET1G,RAET1L,SHC1,PAK1,SHC3,FCGR3A,SHC2,IFNGR2,SH2D1B,FCGR3B,IFNGR1,SHC4,PRKCA,ICAM1,ICAM2,GZMB,PRKCG,NCR2,NCR1,NCR3,IFNAR1,PRKCB,TNFRSF10A,IFNAR2,TNFRSF10C,TNFRSF10B,ULBP3,TNFRSF10D,ULBP1,ULBP2,LCK,LCP2,BID,PRF1,CSF2,CD244,TNF,KIR2DL5A,CD247,PPP3R1,PPP3R2,PTK2B,SOS1,SOS2,PPP3CB,NFAT5,PPP3CC,NFATC4,PIK3R5,CHP,PPP3CA,PIK3R3,NFATC2,NFATC3,PIK3R1,PIK3R2,NFATC1,IFNA10,RAF1,NRAS,FYN,ARAF,IFNA14,IFNA13,IFNA16,SH3BP2,IFNA17 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html HRAS,IL10,MAP3K7,MAP3K8,IFNG,PIK3CA,MAP2K7,PIK3CG,BCL10,CD3G,CD3D,CD3E,PIK3CB,RELA,PIK3CD,CHP2,MAPK1,CD40LG,JUN,MAPK3,MAPK9,GRAP2,NFKBIE,GRB2,NFKBIB,NFKBIA,KRAS,ICOS,ZAP70,TEC,PTPN6,ITK,VAV3,MAP2K1,MAP2K2,MALT1,VAV2,VAV1,CBLC,LAT,CBLB,PLCG1,IKBKG,IKBKB,CD8A,CD8B,NFKB1,PDCD1,AKT1,PAK6,FOS,PAK7,CDC42,PAK2,PAK3,PAK4,RHOA,PAK1,AKT3,CHUK,AKT2,DLG1,CDK4,NCK2,CARD11,PRKCQ,NCK1,LCK,MAP3K14,LCP2,CSF2,TNF,CD247,PPP3R1,PPP3R2,RASGRP1,SOS1,SOS2,NFAT5,PPP3CB,PPP3CC,NFATC4,CD4,PIK3R5,CHP,PPP3CA,NFATC2,PIK3R3,NFATC3,PIK3R1,PIK3R2,CD28,NFATC1,IL4,PDK1,PTPRC,IL5,CBL,CTLA4,RAF1,MAPK11,NRAS,MAPK12,FYN,MAPK13,MAPK14,GSK3B,IL2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html HRAS,NFKB1,BTK,AKT1,FOS,PIK3CA,PIK3AP1,CHUK,AKT3,SYK,AKT2,PIK3CG,BCL10,LYN,PIK3CB,RELA,PIK3CD,CHP2,PRKCB,CARD11,MAPK1,LILRB3,JUN,CD81,MAPK3,IFITM1,GRB2,NFKBIE,NFKBIB,PPP3R1,PPP3R2,NFKBIA,CD72,KRAS,RAC2,DAPP1,RASGRP3,RAC3,SOS1,SOS2,RAC1,PPP3CB,NFAT5,CD22,PPP3CC,PIK3R5,NFATC4,CHP,PPP3CA,INPP5D,NFATC2,PIK3R3,NFATC3,PIK3R1,PIK3R2,NFATC1,BLNK,PTPN6,VAV3,CR2,MAP2K1,MAP2K2,RAF1,MALT1,VAV2,VAV1,NRAS,CD19,FCGR2B,GSK3B,PLCG2,IKBKG,CD79B,CD79A,IKBKB +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html HRAS,IL13,BTK,AKT1,GAB2,PLA2G1B,PIK3CA,MS4A2,MAP2K7,MAP2K6,AKT3,SYK,AKT2,PIK3CG,PRKCA,LYN,PIK3CB,PIK3CD,PRKCE,PRKCD,PRKCB,MAPK1,MAPK3,PLA2G2A,PLA2G6,MAPK9,PLA2G2C,MAPK8,PLA2G2E,PLA2G3,PLA2G2D,PLA2G5,LCP2,PLA2G2F,CSF2,TNF,GRB2,JMJD7-PLA2G4B,KRAS,RAC2,RAC3,PLA2G12A,SOS1,SOS2,PLA2G12B,RAC1,FCER1G,PIK3R5,INPP5D,PIK3R3,PIK3R1,PIK3R2,IL4,PDK1,FCER1A,IL3,VAV3,IL5,PLA2G10,MAP2K1,MAP2K2,MAP2K3,MAP2K4,RAF1,MAPK11,MAPK10,VAV2,VAV1,LAT,NRAS,PLA2G4A,PLCG1,MAPK12,FYN,MAPK13,MAPK14,PLCG2,PLA2G4B,PLA2G4E +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html RPS6KB2,RPS6KB1,GAB2,PIK3CA,SYK,PIK3CG,PLD2,PLD1,PIK3CB,NCF1,PIK3CD,ARPC1A,ARPC1B,MAPK1,MAPK3,ASAP2,ASAP1,ARF6,ARPC4,ARPC5,ASAP3,DOCK2,ARPC3,RAC2,ARPC2,RAC1,VAV3,MAP2K1,SPHK2,SPHK1,VAV2,VAV1,LAT,MYO10,PLA2G4A,PLCG1,PLCG2,PLA2G4F,MARCKS,PLA2G4B,PLA2G4E,PIP4K2B,PLA2G4D,WASF3,MARCKSL1,WASF1,WASF2,PIP5K1B,PIP5K1C,PIP5K1A,AKT1,CDC42,GSN,PAK1,FCGR3A,AKT3,AKT2,PRKCA,LIMK2,LYN,LIMK1,PPAP2C,PRKCG,PRKCE,WAS,PRKCD,VASP,PRKCB,CRKL,ARPC5L,CFL2,CFL1,SCIN,PLA2G6,WASL,LOC653888,AMPH,FCGR1A,PIKFYVE,PIK3R5,INPP5D,PIK3R3,PPAP2A,PPAP2B,PIK3R1,PIK3R2,DNM3,PTPRC,DNM1L,HCK,RAF1,FCGR2B,FCGR2C,FCGR2A,CRK,DNM1,DNM2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html OCLN,MMP9,MYL10,CXCL12,MMP2,VCL,CTNNB1,ACTG1,PIK3CA,RAPGEF4,RAPGEF3,PIK3CG,F11R,ROCK1,NCF2,ACTN4,NCF1,PIK3CB,ROCK2,NCF4,PIK3CD,ACTN1,ACTN2,ACTN3,CTNNA1,CTNNA3,THY1,CTNNA2,MYL7,ITGAL,GNAI3,MYL5,GNAI2,MYL2,GNAI1,SIPA1,ITGB2,ITGB1,PXN,ITGAM,MYL9,PTK2,RAC2,RAC1,LOC646048,ITK,VAV3,MYLPF,MYL12B,ITGA4,MYL12A,VAV2,VAV1,PTPN11,PLCG1,PLCG2,RAP1A,RAP1B,CLDN8,LOC646821,CLDN7,CLDN9,CLDN4,CLDN3,BCAR1,CLDN6,CLDN5,CDC42,ARHGAP5,CXCR4,RHOA,ESAM,MSN,RHOH,PRKCA,ICAM1,PRKCG,VASP,PRKCB,CLDN1,CLDN2,TXK,JAM2,JAM3,CLDN16,CLDN17,CLDN18,CLDN19,CTNND1,CLDN10,CLDN11,CLDN14,CDH5,CLDN15,VCAM1,EZR,PTK2B,PIK3R5,PIK3R3,PIK3R1,MLLT4,PIK3R2,ACTB,NOX3,NOX1,CD99,CLDN22,MAPK11,CLDN20,CLDN23,CYBA,CYBB,RASSF5,MAPK12,MAPK13,MAPK14,PECAM1,GRLF1 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DQB1,HLA-DRB1,HLA-DRB3,TNFSF13,IL15,HLA-DMB,CXCL12,CCL28,HLA-DMA,IL10,CCL27,TGFB1,CCL25,CXCR4,ITGB7,ICOS,CCR10,HLA-DRB4,IL15RA,HLA-DRB5,HLA-DPB1,HLA-DOA,HLA-DOB,CD28,IL4,IL6,IL5,LTBR,TNFRSF13B,TNFRSF13C,TNFRSF17,CD40,PIGR,ITGA4,HLA-DQA2,HLA-DQA1,CCR9,CD86,TNFSF13B,CD80,CD40LG,MADCAM1,AICDA,HLA-DPA1,MAP3K14,ICOSLG,HLA-DRA,IL2 +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html ARNTL,NPAS2,CRY2,CSNK1D,NR1D1,CSNK1E,PER2,PER1,PER3,BHLHE40,CRY1,BHLHE41,CLOCK +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html ADCY1,HRAS,ADCY8,PRKX,PRKACG,PLCB3,PLCB4,GRIN2B,GRIN2C,GRIN2D,PPP1R1A,PRKACA,PRKACB,RAPGEF3,PLCB1,PLCB2,PRKCA,BRAF,GRIN2A,CHP2,PRKCG,PPP1CC,GRM1,PPP1CB,PRKCB,GRM5,MAPK1,PPP1CA,EP300,GNAQ,CAMK4,MAPK3,CAMK2G,PPP3R1,PPP3R2,KRAS,CALML3,PPP3CB,CAMK2D,PPP1R12A,PPP3CC,CALML6,CAMK2B,CHP,PPP3CA,CALML5,CAMK2A,MAP2K1,MAP2K2,GRIN1,CREBBP,RAF1,ITPR3,ITPR1,ITPR2,RPS6KA6,NRAS,ATF4,RPS6KA3,GRIA2,RPS6KA1,GRIA1,RPS6KA2,ARAF,CALM3,RAP1A,RAP1B,CACNA1C,CALM2,CALM1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html HRAS,FOXO3,MAGED1,BDNF,MAP3K5,GAB1,PIK3CA,NGFRAP1,FRS2,MAP2K7,RAPGEF1,MAP2K5,IRS4,PIK3CG,IRS2,BRAF,PIK3CB,RELA,PIK3CD,IRS1,MAPK1,CAMK4,PRDM4,JUN,MAPK3,RIPK2,MAPK9,MAPK8,MAPK7,NGF,NFKBIE,GRB2,NFKBIB,NFKBIA,MAPKAPK2,IRAK4,IRAK3,KRAS,RAC1,TRAF6,ARHGDIA,ARHGDIB,NTF4,NTF3,MAP2K1,MAP2K2,PTPN11,NTRK3,ATF4,PLCG1,NTRK1,NTRK2,PLCG2,RAP1A,RAP1B,IKBKB,ABL1,FASLG,NFKB1,AKT1,CDC42,RHOA,SHC1,CSK,SHC3,SHC2,AKT3,SHC4,AKT2,IRAK2,IRAK1,TP53,KIDINS220,PRKCD,CRKL,PSEN1,SORT1,NGFR,ZNF274,YWHAZ,CAMK2G,MAP3K3,CALML3,BCL2,MAP3K1,SOS1,SOS2,CAMK2D,SH2B3,CALML6,CAMK2B,PIK3R5,SH2B2,CALML5,SH2B1,PIK3R3,CAMK2A,PIK3R1,PIK3R2,PDK1,YWHAB,RAF1,MAPK11,BAD,MAPK10,YWHAE,TP73,RPS6KA5,RPS6KA6,NRAS,YWHAG,RPS6KA3,YWHAH,RPS6KA4,MAPK12,RPS6KA1,MAPK13,RPS6KA2,GSK3B,MAPK14,BAX,YWHAQ,CALM3,CRK,CALM2,CALM1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GNAZ,GNA13,HRAS,GNA11,GNA12,PRKG2,PRKG1,PLCB3,PLCB4,GUCY1A2,GRID2,PLA2G1B,GUCY1A3,PLCB1,PLCB2,PPP2R1B,PRKCA,PPP2R1A,LYN,BRAF,PRKCG,GRM1,PRKCB,GRM5,CRHR1,MAPK1,GNAQ,MAPK3,PLA2G2A,RYR1,PLA2G6,PLA2G2C,GNAS,GUCY1B3,PLA2G2E,PLA2G3,PLA2G2D,PLA2G5,PLA2G2F,GNAI3,GNAI2,GNAI1,IGF1R,JMJD7-PLA2G4B,KRAS,PLA2G12A,PPP2CA,PPP2CB,PLA2G12B,GNAO1,NOS1,PLA2G10,MAP2K1,MAP2K2,RAF1,IGF1,GRIA3,ITPR3,ITPR1,ITPR2,NRAS,PLA2G4A,GRIA2,GRIA1,C7ORF16,ARAF,CRH,PLA2G4B,PLA2G4E,CACNA1A +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R1,ADCY4,TAS2R4,TAS2R5,ADCY8,TAS2R3,ADCY6,TAS1R3,TAS1R1,TAS1R2,PRKX,PRKACG,TAS2R60,TAS2R9,TAS2R8,PRKACA,TAS2R7,GNG3,PRKACB,TAS2R20,PLCB2,TRPM5,TAS2R16,GRM4,TAS2R50,TAS2R13,TAS2R14,TAS2R19,GNB1,GNAS,GNB3,TAS2R10,GNG13,TAS2R46,PDE1A,TAS2R42,TAS2R43,SCNN1G,TAS2R45,SCNN1B,SCNN1A,TAS2R40,TAS2R41,KCNB1,ITPR3,GNAT3,ACCN1,TAS2R39,TAS2R38,TAS2R31,CACNA1A,CACNA1B +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html HRAS,ACTG1,MOS,PIK3CA,PIK3CG,ROCK1,BRAF,PIK3CB,ROCK2,MYLK3,PIK3CD,MYLK2,MYH9,MAPK1,PPP1CA,F2,MAPK3,PDGFRA,PDGFRB,ITGA2B,ITGA11,ITGA10,BDKRB1,BDKRB2,PXN,C3ORF10,PFN1,PFN2,PFN3,KRAS,PFN4,RAC2,INS,RAC3,RAC1,GIT1,LOC646048,MAP2K1,MAP2K2,NCKAP1L,NCKAP1,SLC9A1,FGF6,LOC646821,FGF5,FGF8,FGF7,FGF9,WASF1,BCAR1,WASF2,INSRR,FGF1,FGF2,FGF3,FGF4,ARHGEF4,ARHGEF1,ARHGEF7,ARHGEF6,ARHGEF12,WAS,TMSB4X,TMSB4Y,APC2,ABI2,GNG12,EZR,SOS1,SOS2,NRAS,ARAF,CD14,GNA13,FGF19,FGF18,ENAH,PDGFB,FGF14,PDGFA,FGF17,FGF16,GNA12,FGF11,IQGAP3,FGF10,IQGAP2,FGF13,MYL10,FGF12,IQGAP1,VCL,TIAM2,TIAM1,RRAS,PDGFC,PDGFD,EGFR,ACTN4,BAIAP2,FGF23,ACTN1,FGF22,ACTN2,FGF21,ACTN3,PPP1CC,FGF20,PPP1CB,ARPC1A,ARPC1B,FGFR2,FGFR1,FGD1,MYL7,ITGAL,FGFR4,FGFR3,MYL5,SSH1,MYL2,DIAPH1,DIAPH2,MRAS,ITGAE,SSH3,SSH2,DIAPH3,ITGB4,ITGB5,ARPC4,ITGB2,ARPC5,ITGB3,ITGB1,ITGAM,MYL9,PTK2,DOCK1,ARPC3,ITGAX,ITGB8,ARPC2,ITGB7,ITGAV,ITGB6,EGF,TMSL3,FGD3,FN1,VAV3,ITGA1,ITGA2,MYLPF,MYL12B,ITGA3,MYL12A,ITGA4,VAV2,VAV1,ITGA9,ITGA6,ITGA5,ITGA8,ITGA7,CYFIP2,CYFIP1,ITGAD,MYH14,PIP4K2A,MYLK,PIP4K2C,MYH10,PIP4K2B,PIP5K1B,PIP5K1C,PIP5K1A,PAK6,PAK7,CDC42,PAK2,GSN,PAK3,PAK4,RHOA,MSN,PAK1,CSK,LIMK2,LIMK1,CHRM5,CHRM4,CRKL,CHRM3,CHRM2,RRAS2,CFL2,ARPC5L,CHRM1,SCIN,CFL1,WASL,RDX,LOC653888,PIKFYVE,PPP1R12A,PIK3R5,PIK3R3,PIK3R1,PIK3R2,APC,ACTB,RAF1,GRLF1,CRK,F2R +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html HRAS,FOXO1,PDE3B,RPS6KB2,RPS6KB1,PRKX,PRKACG,PRKAR2B,EIF4EBP1,PRKAR2A,SLC2A4,PIK3CA,PRKACA,PRKACB,INSR,RAPGEF1,IRS4,PIK3CG,IRS2,BRAF,SOCS2,PTPRF,PIK3CB,SOCS3,PIK3CD,PRKAB2,SOCS1,PRKAB1,FBP1,SOCS4,FBP2,PPP1R3A,PPP1CC,IRS1,PPP1CB,PPARGC1A,RPTOR,MAPK1,PPP1CA,MAPK3,MAPK9,MAPK8,PHKA2,GRB2,PHKA1,ELK1,G6PC2,PPP1R3D,PPP1R3C,PPP1R3B,KRAS,INS,GYS1,GYS2,SREBF1,MAP2K1,MAP2K2,ACACA,ACACB,RPS6,EIF4E1B,CBLC,CBLB,EIF4E,TSC1,PRKAR1B,PRKAR1A,TSC2,RHEB,PTPN1,MTOR,IKBKB,EIF4E2,PRKAG3,PHKB,PRKAG1,PRKAG2,RHOQ,AKT1,PDPK1,SHC1,SHC3,SHC2,AKT3,SHC4,AKT2,PHKG1,FLOT2,PHKG2,FLOT1,PRKCI,G6PC,CRKL,PKLR,PRKCZ,EXOC7,MKNK2,HK2,HK1,MKNK1,INPP5K,SORBS1,CALML3,SOS1,HK3,SOS2,FASN,CALML6,PRKAA1,PIK3R5,SH2B2,PRKAA2,CALML5,INPP5D,PIK3R3,TRIP10,PIK3R1,PIK3R2,CBL,RAF1,PDE3A,BAD,MAPK10,PCK2,PCK1,NRAS,GCK,PYGM,PYGL,GSK3B,ARAF,CALM3,CRK,LIPE,CALM2,CALM1,PYGB +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ADCY3,CGA,ADCY4,ADCY1,HRAS,ADCY2,ADCY7,ADCY8,GNA11,ADCY5,ADCY6,MMP2,PRKX,PRKACG,MAP3K4,PLA2G1B,PRKACA,PRKACB,MAP2K7,MAP2K6,EGFR,PLD2,PLD1,MAPK1,JUN,MAPK3,PLA2G2A,MAPK9,PLA2G2C,MAPK8,MAPK7,PLA2G2E,PLA2G2D,PLA2G2F,GRB2,ELK1,SRC,KRAS,GNRH1,MAP2K1,GNRH2,MAP2K2,MAP2K3,MAP2K4,CACNA1S,ATF4,PLA2G4A,CACNA1F,CACNA1C,LHB,PLA2G4B,CACNA1D,PLA2G4E,GNRHR,CDC42,PLCB3,PLCB4,PLCB1,PLCB2,PRKCA,MMP14,PRKCD,PRKCB,GNAQ,PLA2G6,GNAS,PLA2G3,FSHB,PLA2G5,CAMK2G,JMJD7-PLA2G4B,MAP3K3,MAP3K2,PTK2B,CALML3,PLA2G12A,MAP3K1,SOS1,SOS2,PLA2G12B,CAMK2D,CALML6,CAMK2B,CALML5,CAMK2A,PLA2G10,RAF1,MAPK11,MAPK10,ITPR3,ITPR1,ITPR2,NRAS,MAPK12,ADCY9,MAPK13,MAPK14,CALM3,HBEGF,CALM2,CALM1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html HSP90AB1,ADCY3,ADCY4,ADCY1,ADCY2,ADCY7,ADCY8,ADCY5,ADCY6,PKMYT1,PDE3B,CDC16,CPEB1,PRKX,PRKACG,PGR,AKT1,MOS,PIK3CA,PRKACA,PRKACB,CCNA1,CCNA2,AKT3,AKT2,PIK3CG,ANAPC1,CDK1,ANAPC2,HSP90AA1,BRAF,ANAPC5,PIK3CB,PIK3CD,ANAPC4,CDK2,SPDYC,SPDYA,MAPK1,MAD2L1,MAPK3,MAPK9,MAPK8,ANAPC7,MAD2L2,FZR1,GNAI3,GNAI2,ANAPC13,GNAI1,ANAPC10,ANAPC11,LOC650621,IGF1R,KRAS,INS,BUB1,PIK3R5,PIK3R3,PIK3R1,PIK3R2,MAP2K1,RAF1,IGF1,CDC23,PDE3A,MAPK11,MAPK10,CDC25C,CDC26,CDC27,CDC25A,CDC25B,CCNB1,RPS6KA6,CCNB3,RPS6KA3,CCNB2,ADCY9,RPS6KA1,MAPK12,PLK1,MAPK13,RPS6KA2,MAPK14,ARAF +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html ADCY3,ADCY4,ADCY1,HRAS,ADCY2,ADCY7,ADCY8,ADCY5,WNT3A,EDN1,ADCY6,PRKX,CTNNB1,PRKACG,WNT2,WNT1,WNT4,WNT3,MC1R,CREB3L2,CREB3L1,PRKACA,CREB3L4,PRKACB,CREB3L3,WNT6,WNT10A,WNT10B,MAPK1,EP300,MAPK3,WNT5A,GNAI3,WNT5B,GNAI2,GNAI1,POMC,KRAS,LOC652799,DVL2,DVL3,TCF7,MAP2K1,MAP2K2,CREBBP,DVL1,ASIP,MITF,EDNRB,TYR,PLCB3,PLCB4,PLCB1,PLCB2,PRKCA,LEF1,PRKCG,PRKCB,GNAQ,WNT9B,GNAS,WNT11,WNT9A,WNT16,TYRP1,CAMK2G,KITLG,KIT,TCF7L2,TCF7L1,DCT,CALML3,CAMK2D,CALML6,CAMK2B,CALML5,CAMK2A,WNT8A,WNT8B,FZD9,FZD8,GNAO1,CREB3,CREB1,FZD1,RAF1,FZD3,FZD2,FZD5,FZD4,FZD7,FZD6,WNT2B,NRAS,WNT7B,FZD10,ADCY9,GSK3B,CALM3,WNT7A,CALM2,CALM1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PRKAG3,PPARA,PRKAG1,LEPR,PRKAG2,NFKB1,CAMKK1,CAMKK2,AKT1,SLC2A4,SLC2A1,CHUK,AKT3,AKT2,IRS4,IRS2,SOCS3,RXRB,RXRA,RELA,PRKAB2,RXRG,ADIPOR2,PRKAB1,ADIPOR1,IRS1,PPARGC1A,PRKCQ,G6PC,CD36,MAPK9,MAPK8,TRAF2,TNF,NFKBIE,STK11,NFKBIB,NFKBIA,POMC,G6PC2,TNFRSF1A,TNFRSF1B,ACSL1,PRKAA1,PRKAA2,ACSL4,ACSL3,AGRP,ACSL6,ACSL5,CPT1C,CPT1B,MAPK10,ACACB,PCK2,ADIPOQ,STAT3,CPT1A,TRADD,PTPN11,PCK1,LEP,NPY,IKBKG,JAK2,MTOR,IKBKB +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PRKCZ,TNF,HK2,HK1,PDX1,KCNJ11,SLC2A4,INS,SLC2A2,HK3,PIK3CA,PIK3R5,PIK3R3,INSR,PIK3R1,PIK3R2,IRS4,PIK3CG,IRS2,SOCS2,PIK3CB,SOCS3,PIK3CD,SOCS1,SOCS4,MAPK10,PRKCE,IRS1,ADIPOQ,PRKCD,MAPK1,GCK,PKM2,PKLR,MAPK3,CACNA1G,MAPK9,MAPK8,CACNA1E,MTOR,MAFA,IKBKB,CACNA1C,ABCC8,CACNA1D,CACNA1A,CACNA1B +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DQB1,PRF1,TNF,HLA-DRB1,HLA-DRB3,FASLG,HLA-DMB,HLA-DMA,GAD2,INS,IFNG,HLA-DRB4,HLA-DRB5,IL1B,FAS,HLA-DPB1,HLA-DOA,GAD1,HLA-DOB,IL1A,LTA,CD28,ICA1,PTPRN2,HLA-A,GZMB,HLA-C,HLA-B,PTPRN,HLA-E,HLA-DQA2,HLA-G,HLA-DQA1,LOC652614,HLA-F,CD86,CPE,CD80,IL12A,HLA-DPA1,HSPD1,IL12B,HLA-DRA,IL2 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html HNF1B,HNF1A,ONECUT1,FOXA2,FOXA3,PAX6,PAX4,PDX1,BHLHA15,INS,IAPP,SLC2A2,NKX2-2,HNF4G,NEUROG3,NKX6-1,HES1,HHEX,GCK,HNF4A,PKLR,MNX1,NEUROD1,MAFA,NR5A2 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html FXYD2,ATP1B1,FXYD4,ATP1B3,ATP1B2,ATP1B4,NR3C2,SFN,KCNJ1,PDPK1,KRAS,INS,PIK3CA,PIK3R5,SCNN1G,NEDD4L,SCNN1B,PIK3R3,INSR,SCNN1A,PIK3R1,PIK3R2,IRS4,PIK3CG,PRKCA,SGK1,IRS2,PIK3CB,PIK3CD,ATP1A3,IGF1,ATP1A4,ATP1A1,PRKCG,ATP1A2,IRS1,SLC9A3R2,PRKCB,MAPK1,MAPK3,HSD11B1,HSD11B2 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html ADCY3,DYNC1LI1,AVPR2,DYNC1LI2,RAB5B,RAB5C,DYNC2LI1,ADCY6,AQP4,AQP3,PRKX,AQP2,PRKACG,DYNLL1,DYNLL2,DYNC2H1,CREB3L2,RAB11B,RAB11A,CREB3L1,PRKACA,CREB3L4,PRKACB,CREB3L3,DYNC1H1,ARHGDIA,NSF,ARHGDIB,DYNC1I1,STX4,AVP,CREB3,CREB1,CREB5,DCTN5,DCTN6,DCTN4,DCTN1,DCTN2,ADCY9,RAB5A,GNAS,VAMP2,DYNC1I2 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html FXYD2,ATP1B1,SLC38A3,ATP1B3,ATP1B2,GLUD2,SLC9A3,GLUD1,ATP1B4,ATP1A3,ATP1A4,ATP1A1,ATP1A2,AQP1,PCK2,PCK1,GLS2,GLS,SLC25A10,CA4,CA2,SLC4A4,MDH1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html LOC642502,SNCA,IDE,NDUFAB1,COX5A,COX5B,APP,LOC100133737,UQCR10,UQCR11,GRIN2B,GRIN2C,APOE,GRIN2D,IL1B,PSENEN,FAS,ATP8,ATP6,CHP2,GRIN2A,LOC727947,FADD,COX6C,MAPK1,LOC644310,BACE2,RYR3,MAPK3,BACE1,ATP5C1,EIF2AK3,HSD17B10,CDK5R1,COX7B,COX7C,MME,COX6B1,COX6B2,LPL,COX8C,NDUFA4L2,COX8A,GRIN1,CACNA1S,LOC390424,UQCRHL,NDUFV3,ATF6,ATP2A2,COX3,ATP2A3,COX2,NDUFV1,COX1,NDUFV2,ATP2A1,COX6A2,COX6A1,CACNA1F,CACNA1C,CACNA1D,UQCRC2,ATP5D,ATP5E,UQCRC1,ATP5B,CYC1,UQCRFS1,UQCRQ,NDUFS7,NDUFS6,NDUFS5,CASP3,PLCB3,NDUFS4,PLCB4,CASP9,MAPT,CASP7,NDUFS8,CASP8,ATP5O,NDUFS3,PLCB1,NDUFS2,ATP5H,PLCB2,NDUFS1,ATP5J,NDUFB10,ADAM10,CYCS,NDUFC2,COX4I2,COX4I1,NDUFC1,NDUFA10,CDK5,PSEN1,GNAQ,UQCRH,PSEN2,ERN1,ADAM17,UQCRB,NDUFB3,BID,NDUFB4,NDUFB5,NDUFB6,TNF,NDUFB7,APH1A,NDUFB8,NDUFB9,COX7B2,PPP3R1,PPP3R2,CYTB,ATP5G2,COX7A2L,ATP5G1,ATP5G3,NDUFB1,NDUFB2,TNFRSF1A,CALML3,PPP3CB,PPP3CC,CALML6,CHP,PPP3CA,CALML5,GAPDH,NDUFA4,NDUFA5,NDUFA2,NOS1,NDUFA3,COX7A2,NDUFA8,COX7A1,NDUFA9,NDUFA6,NDUFA7,ATP5F1,BAD,CAPN2,ITPR3,NDUFA1,ITPR1,ITPR2,CAPN1,NAE1,SDHA,NCSTN,SDHB,LRP1,GSK3B,LOC100130247,SDHC,SDHD,CALM3,APAF1,ATP5A1,APBB1,CALM2,CALM1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SEPT5,LOC642502,SNCAIP,SLC6A3,SNCA,NDUFAB1,COX5A,COX5B,UQCR10,LOC100133737,UQCR11,HTRA2,ATP8,ATP6,UBE2J1,LOC727947,UBE2J2,COX6C,SLC25A31,LOC644310,ATP5C1,LRRK2,COX7B,UBA7,COX7C,COX6B1,COX6B2,COX8C,NDUFA4L2,COX8A,UBE2L6,UBE2L3,VDAC2,VDAC3,LOC390424,UQCRHL,VDAC1,NDUFV3,GPR37,COX3,UBA1,COX2,NDUFV1,COX1,PPID,NDUFV2,COX6A2,COX6A1,ATP5D,UQCRC2,ATP5E,UQCRC1,UBE2G1,ATP5B,CYC1,UBE2G2,UCHL1,PINK1,UQCRFS1,UQCRQ,NDUFS7,NDUFS6,NDUFS5,CASP3,NDUFS4,CASP9,NDUFS8,ATP5O,NDUFS3,NDUFS2,ATP5H,NDUFS1,ATP5J,ND1,NDUFB10,ND4,SLC25A4,SLC25A5,ND5,ND2,SLC25A6,ND3,CYCS,NDUFC2,COX4I2,COX4I1,NDUFC1,NDUFA10,UQCRH,UBB,UQCRB,NDUFB3,NDUFB4,NDUFB5,NDUFB6,NDUFB7,NDUFB8,NDUFB9,COX7B2,TH,CYTB,ATP5G2,ATP5G1,COX7A2L,ATP5G3,NDUFB1,NDUFB2,ND6,NDUFA4,NDUFA5,NDUFA2,NDUFA3,COX7A2,LOC729317,COX7A1,NDUFA8,NDUFA9,NDUFA6,NDUFA7,ATP5F1,PARK2,NDUFA1,PARK7,SDHA,SDHB,ND4L,LOC100130247,SDHC,SDHD,SLC18A2,ATP5A1,APAF1,SLC18A1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html ALS2,PRPH,DAXX,GPX1,MAP3K5,SLC1A2,CASP3,GRIN2B,CASP9,GRIN2C,GRIN2D,CAT,CASP1,MAP2K6,CYCS,GRIN2A,CHP2,TP53,RAB5A,BID,DERL1,TNF,PPP3R1,PPP3R2,BCL2L1,TNFRSF1A,TNFRSF1B,BCL2,RAC1,PPP3CB,PPP3CC,NEFH,CCS,CHP,PPP3CA,NEFL,NEFM,NOS1,MAP2K3,GRIN1,TOMM40,MAPK11,BAD,SOD1,PRPH2,GRIA2,MAPK12,MAPK13,GRIA1,BAX,MAPK14,TOMM40L,APAF1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html LOC642502,NDUFAB1,TBP,REST,COX5A,COX5B,TBPL2,LOC100133737,UQCR10,BDNF,UQCR11,SIN3A,GRIN2B,CREB3L2,CREB3L1,CREB3L4,CREB3L3,ATP8,TBPL1,ATP6,TAF4B,RCOR1,LOC727947,POLR2J2,DCTN4,PPARGC1A,POLR2J3,DCTN1,COX6C,DCTN2,EP300,SLC25A31,LOC644310,ATP5C1,COX7B,COX7C,COX6B1,COX6B2,HAP1,AP2M1,HIP1,TAF4,HTT,COX8C,NDUFA4L2,GRIN1,CREBBP,COX8A,UCP1,VDAC2,LOC390424,VDAC3,VDAC1,UQCRHL,NDUFV3,NRF1,HDAC2,HDAC1,COX3,COX2,BBC3,NDUFV1,PPID,COX1,NDUFV2,COX6A2,COX6A1,DNAL1,CLTCL1,DNAL4,UQCRC2,ATP5D,ATP5E,CLTA,CLTB,UQCRC1,AP2S1,ATP5B,CYC1,PPARG,CLTC,UQCRFS1,UQCRQ,NDUFS7,NDUFS6,GPX1,NDUFS5,CASP3,AP2B1,PLCB3,NDUFS4,PLCB4,CASP9,NDUFS8,CASP8,DLG4,ATP5O,NDUFS3,PLCB1,NDUFS2,ATP5H,PLCB2,NDUFS1,ATP5J,NDUFB10,SLC25A4,SLC25A5,SLC25A6,CYCS,TP53,NDUFC2,COX4I2,COX4I1,NDUFC1,NDUFA10,DNAI2,GRM5,GNAQ,UQCRH,UQCRB,NDUFB3,POLR2H,NDUFB4,POLR2G,NDUFB5,POLR2F,NDUFB6,POLR2E,NDUFB7,POLR2L,NDUFB8,POLR2K,NDUFB9,COX7B2,POLR2J,POLR2I,DNAH3,CYTB,DNAH1,ATP5G2,COX7A2L,ATP5G1,DNAH2,POLR2D,ATP5G3,POLR2C,NDUFB1,POLR2B,NDUFB2,POLR2A,TFAM,DNALI1,DNAI1,TGM2,NDUFA4,NDUFA5,NDUFA2,COX7A2,NDUFA3,NDUFA8,COX7A1,LOC729317,CREB3,NDUFA9,NDUFA6,CREB1,NDUFA7,ATP5F1,CREB5,SOD1,NDUFA1,ITPR1,SOD2,SDHA,SDHB,AP2A2,SP1,AP2A1,BAX,SDHC,IFT57,LOC100130247,SDHD,APAF1,ATP5A1 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html C7,C9,C6,C5,ELK1,STIP1,HSPA1A,CCL5,C1QC,PRKX,PRKACG,IL1B,PRKACA,PRKACB,HSPA5,IL1A,EGR1,IL6,MAP2K1,MAP2K2,SOD1,C8G,C8A,NCAM1,C1QA,MAPK1,C8B,NCAM2,C1QB,NOTCH1,FYN,BAX,MAPK3,LAMC1,PRNP +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ADCY3,LOC646821,ATP6V0E1,ATP6AP1,PDIA4,PRKX,ACTG1,PRKACG,PRKACA,PRKACB,ATP6V0D1,KCNQ1,KDELR1,ATP6V0D2,PRKCA,KDELR3,KDELR2,ATP6V1H,CFTR,PRKCG,ATP6V1D,ATP6V1F,PRKCB,ATP6V1C1,ATP6V1C2,ATP6V1A,SEC61B,GNAS,ATP6V1G3,SEC61G,ATP6V1G2,ATP6V1B2,ATP6V1G1,ATP6V1B1,ATP6V0B,ATP6V0C,ERO1L,SEC61A1,SEC61A2,ACTB,TCIRG1,LOC646048,MUC2,SLC12A2,TJP1,ATP6V0E2,ADCY9,ARF1,PLCG1,ATP6V1E1,PLCG2,ATP6V1E2,ATP6V0A1,ATP6V0A4,TJP2,ATP6V0A2 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V0E1,ATP6AP1,CXCR1,CXCR2,NFKB1,CDC42,CASP3,NOD1,PAK1,CSK,ATP6V0D1,ATP6V0D2,CHUK,EGFR,F11R,ADAM10,LYN,RELA,ATP6V1H,ATP6V1D,ATP6V1F,ATP6V1C1,ATP6V1A,IGSF5,ATP6V1C2,JUN,MAPK9,ADAM17,MAPK8,ATP6V1G3,JAM2,MAP3K14,JAM3,CXCL1,NFKBIA,ATP6V1G2,ATP6V1B2,ATP6V1G1,ATP6V1B1,CCL5,SRC,ATP6V0B,ATP6V0C,RAC1,GIT1,TCIRG1,IL8,PTPRZ1,MET,MAP2K4,MAPK11,MAPK10,PTPN11,TJP1,ATP6V0E2,PLCG1,MAPK12,MAPK13,ATP6V1E1,MAPK14,PLCG2,IKBKG,ATP6V1E2,HBEGF,ATP6V0A1,IKBKB,ATP6V0A4,ATP6V0A2 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html LOC646821,OCLN,TUBB2B,TUBB2A,TUBB2C,TLR4,TLR5,CTNNB1,ACTG1,CDC42,CTTN,RHOA,TUBB6,TUBB8,TUBA1A,TUBB1,TUBA1B,TUBB3,TUBA1C,TUBB4,PRKCA,ARHGEF2,ROCK1,LY96,ROCK2,WAS,NCL,ARPC1A,ARPC1B,NCK2,KRT18,ARPC5L,NCK1,CLDN1,TUBA4A,WASL,YWHAZ,CDH1,ARPC4,ARPC5,ITGB1,LOC653888,TUBB4Q,TUBB,EZR,ARPC3,ARPC2,TUBA3C,TUBA3D,TUBA3E,ACTB,LOC646048,HCLS1,TUBA8,FYN,YWHAQ,TUBAL3,ABL1,CD14 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html PTGS2,MARCKSL1,TLR2,TGFB3,TLR4,NFKB1,HLA-DMB,HLA-DMA,TGFB1,IL10,TGFB2,MAP3K7,FOS,MYD88,IFNG,IL1B,NOS2,FCGR3A,FCGR3B,IFNGR2,IFNGR1,IL1A,IRAK1,NCF2,NCF1,NCF4,RELA,HLA-DQA2,HLA-DQA1,PRKCB,MAPK1,JUN,MAPK3,IL12A,HLA-DPA1,IL12B,HLA-DRA,HLA-DQB1,TNF,HLA-DRB1,C3,NFKBIB,HLA-DRB3,ELK1,NFKBIA,ITGB2,ITGB1,ITGAM,IRAK4,FCGR1A,HLA-DRB4,HLA-DRB5,HLA-DPB1,HLA-DOA,TRAF6,HLA-DOB,IL4,PTPN6,CR1,MAPK11,ITGA4,TAB1,STAT1,TAB2,CYBA,MAPK12,MAPK13,FCGR2C,MAPK14,JAK1,JAK2,FCGR2A +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html TGFB3,MLH1,TGFB1,CTNNB1,TGFB2,AKT1,FOS,CASP3,CASP9,RHOA,PIK3CA,MYC,AKT3,AKT2,PIK3CG,BRAF,PIK3CB,PIK3CD,CYCS,TP53,LEF1,MAPK1,CCND1,JUN,MAPK3,MAPK9,MAPK8,DCC,APC2,TCF7L2,TCF7L1,KRAS,RAC2,RAC3,BCL2,RAC1,PIK3R5,AXIN2,PIK3R3,PIK3R1,PIK3R2,APC,AXIN1,MSH6,TCF7,MSH3,MAP2K1,MSH2,TGFBR1,TGFBR2,SMAD4,SMAD3,RAF1,BIRC5,SMAD2,BAD,MAPK10,APPL1,RALGDS,BAX,GSK3B,ARAF +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html HRAS,PDGFB,PGF,ARNT2,TGFB3,FLCN,TGFB1,TGFB2,AKT1,PAK6,CDC42,PAK7,CUL2,PAK2,PAK3,PAK4,GAB1,SLC2A1,PIK3CA,TGFA,PAK1,RAPGEF1,AKT3,AKT2,PIK3CG,BRAF,PIK3CB,PIK3CD,VEGFB,MAPK1,VEGFC,CRKL,HIF1A,EP300,JUN,MAPK3,VEGFA,GRB2,EGLN3,EGLN2,EGLN1,ARNT,RBX1,KRAS,SOS1,SOS2,RAC1,PIK3R5,PIK3R3,FIGF,PIK3R1,PIK3R2,FH,MAP2K1,EPAS1,VHL,MAP2K2,MET,CREBBP,RAF1,HGF,PTPN11,NRAS,ETS1,ARAF,TCEB2,RAP1A,RAP1B,TCEB1,CRK +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html E2F1,E2F2,E2F3,PGF,TGFB3,NFKB1,TGFB1,TGFB2,AKT1,CDC42,CDKN2A,CASP9,RALB,PIK3CA,RALA,TGFA,AKT3,CHUK,AKT2,PIK3CG,EGFR,PLD1,BRAF,PIK3CB,RALBP1,ARHGEF6,RELA,PIK3CD,TP53,CDK6,RB1,CDK4,RAD51,VEGFB,MAPK1,VEGFC,CCND1,MAPK3,VEGFA,MAPK9,MAPK8,ERBB2,BCL2L1,KRAS,RAC2,RAC3,RAC1,PIK3R5,PIK3R3,EGF,FIGF,PIK3R1,PIK3R2,MAP2K1,TGFBR1,TGFBR2,SMAD4,BRCA2,RAF1,SMAD3,SMAD2,BAD,MAPK10,STAT1,RALGDS,STAT3,IKBKG,ARAF,JAK1,IKBKB +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html HRAS,MLH1,FOXO3,PTEN,CTNNB1,AKT1,PDPK1,CASP9,ILK,PIK3CA,MYC,AKT3,AKT2,EGFR,PIK3CG,BRAF,PIK3CB,PIK3CD,TP53,LEF1,CTNNA1,CTNNA3,CTNNA2,MAPK1,CCND1,MAPK3,APC2,GRB2,ERBB2,ELK1,CDH1,TCF7L2,TCF7L1,KRAS,SOS1,SOS2,PIK3R5,AXIN2,EGF,PIK3R3,PIK3R1,PIK3R2,AXIN1,APC,TCF7,MAP2K1,MAP2K2,RAF1,BAD,NRAS,GSK3B,ARAF +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html E2F1,E2F2,E2F3,HRAS,PDGFB,PDGFA,PTEN,AKT1,CDKN2A,PIK3CA,TGFA,SHC1,SHC3,SHC2,AKT3,AKT2,SHC4,PIK3CG,PRKCA,EGFR,BRAF,PIK3CB,PIK3CD,TP53,CDK6,PRKCG,RB1,CDK4,PRKCB,MAPK1,CCND1,MAPK3,PDGFRA,MDM2,PDGFRB,GRB2,CAMK2G,IGF1R,KRAS,CALML3,SOS1,SOS2,CAMK2D,CALML6,PIK3R5,CAMK2B,CALML5,EGF,PIK3R3,CAMK2A,PIK3R1,PIK3R2,MAP2K1,MAP2K2,RAF1,IGF1,NRAS,CDKN1A,PLCG1,PLCG2,ARAF,CALM3,MTOR,CALM2,CALM1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html HSP90AB1,E2F1,E2F2,E2F3,HRAS,PDGFB,PDGFA,FOXO1,NFKB1,PTEN,CTNNB1,INSRR,CCNE2,AKT1,CCNE1,PDPK1,CASP9,CREB3L2,PIK3CA,TGFA,CREB3L1,PDGFC,CREB3L4,SRD5A2,CREB3L3,PDGFD,CHUK,AKT3,AKT2,PIK3CG,EGFR,AR,HSP90AA1,BRAF,PIK3CB,RELA,PIK3CD,TP53,LEF1,RB1,CDK2,MAPK1,CCND1,EP300,MAPK3,PDGFRA,PDGFRB,MDM2,GSTP1,FGFR2,FGFR1,GRB2,ERBB2,NFKBIA,TCF7L2,TCF7L1,IGF1R,KRAS,INS,BCL2,SOS1,SOS2,NKX3-1,PIK3R5,PIK3R3,EGF,PIK3R1,PIK3R2,TCF7,MAP2K1,CREB3,KLK3,MAP2K2,CREB1,CREBBP,RAF1,IGF1,CREB5,BAD,NRAS,ATF4,HSP90B1,CDKN1A,CDKN1B,GSK3B,ARAF,IKBKG,MTOR,IKBKB +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html HRAS,PPARG,TFG,CDH1,TCF7L2,TCF7L1,TPM3,CTNNB1,KRAS,PAX8,TPR,MYC,RET,TCF7,MAP2K1,BRAF,MAP2K2,RXRB,RXRA,RXRG,TP53,LEF1,MAPK1,CCDC6,NRAS,CCND1,NCOA4,NTRK1,MAPK3 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT3A,STK36,GLI2,GLI3,SHH,CTNNB1,GLI1,WNT2,WNT1,WNT4,WNT3,HHIP,WNT6,WNT10A,WNT10B,TP53,LEF1,SMO,WNT9B,WNT11,WNT9A,WNT5A,WNT16,WNT5B,APC2,TCF7L2,TCF7L1,SUFU,AXIN2,WNT8A,AXIN1,WNT8B,APC,DVL2,FZD9,BMP4,FZD8,DVL3,TCF7,BMP2,FZD1,FZD3,FZD2,FZD5,FZD4,FZD7,WNT2B,DVL1,FZD6,WNT7B,FZD10,GSK3B,PTCH1,PTCH2,WNT7A +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html E2F1,FGF6,FGF19,E2F2,FGF5,FGF18,E2F3,FGF8,HRAS,FGF7,PDGFB,PDGFA,FGF9,FGF14,FGF17,MITF,FGF16,FGF11,FGF10,FGF13,FGF12,PTEN,AKT1,CDKN2A,PIK3CA,PDGFC,PDGFD,FGF1,FGF2,FGF3,AKT3,AKT2,FGF4,PIK3CG,EGFR,BRAF,PIK3CB,PIK3CD,TP53,FGF23,CDK6,FGF22,RB1,FGF21,CDK4,FGF20,MAPK1,CCND1,MAPK3,PDGFRA,MDM2,PDGFRB,FGFR1,CDH1,IGF1R,KRAS,PIK3R5,PIK3R3,EGF,PIK3R1,PIK3R2,MAP2K1,MAP2K2,MET,RAF1,IGF1,BAD,HGF,NRAS,CDKN1A,ARAF +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html E2F1,E2F2,E2F3,HRAS,FGFR3,PGF,ERBB2,MMP9,CDH1,MMP2,MMP1,TYMP,KRAS,CDKN2A,THBS1,EGF,MYC,FIGF,EGFR,IL8,BRAF,MAP2K1,MAP2K2,TP53,RAF1,RB1,DAPK2,CDK4,DAPK3,DAPK1,VEGFB,RPS6KA5,MAPK1,NRAS,VEGFC,CDKN1A,CCND1,RASSF1,MAPK3,ARAF,VEGFA,MDM2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html E2F1,E2F2,E2F3,HRAS,STAT5A,STAT5B,TGFB3,NFKB1,TGFB1,TGFB2,AKT1,CDKN2A,GAB2,PIK3CA,SHC1,SHC3,SHC2,MYC,AKT3,CHUK,SHC4,AKT2,PIK3CG,CTBP1,BCR,CTBP2,BRAF,PIK3CB,RELA,PIK3CD,TP53,CDK6,RB1,CDK4,MECOM,MAPK1,CCND1,CRKL,MAPK3,MDM2,GRB2,NFKBIA,BCL2L1,KRAS,SOS1,SOS2,PIK3R5,PIK3R3,RUNX1,PIK3R1,PIK3R2,MAP2K1,MAP2K2,TGFBR1,TGFBR2,CBL,SMAD4,SMAD3,RAF1,BAD,PTPN11,CBLC,NRAS,CBLB,CDKN1A,HDAC2,CDKN1B,HDAC1,IKBKG,ARAF,ABL1,IKBKB,CRK +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PPARD,HRAS,STAT5A,STAT5B,SPI1,RPS6KB2,RPS6KB1,NFKB1,AKT1,EIF4EBP1,PIK3CA,RARA,CCNA1,MYC,CHUK,AKT3,AKT2,PIK3CG,BRAF,PIK3CB,RELA,PIK3CD,PIM1,RUNX1T1,LEF1,PIM2,JUP,MAPK1,CCND1,MAPK3,GRB2,PML,KIT,ZBTB16,TCF7L2,TCF7L1,KRAS,LOC652346,SOS1,LOC652799,SOS2,PIK3R5,PIK3R3,RUNX1,PIK3R1,PIK3R2,CEBPA,TCF7,MAP2K1,FLT3,MAP2K2,RAF1,LOC652671,BAD,STAT3,NRAS,IKBKG,ARAF,MTOR,IKBKB +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html E2F1,E2F2,FHIT,E2F3,PTGS2,NFKB1,PTEN,CCNE2,AKT1,CCNE1,MAX,CDKN2B,CASP9,PIK3CA,NOS2,RARB,MYC,CHUK,AKT3,AKT2,PIK3CG,PIK3CB,RXRB,RXRA,RELA,PIK3CD,CYCS,TP53,SKP2,RXRG,CDK6,RB1,CDK4,CDK2,CCND1,PIAS4,LAMC3,PIAS3,PIAS2,LAMC2,LAMC1,PIAS1,ITGA2B,TRAF1,CKS1B,TRAF2,XIAP,NFKBIA,BCL2L1,ITGB1,LAMB4,PTK2,LAMB3,LAMB2,BCL2,ITGAV,PIK3R5,PIK3R3,TRAF6,LAMB1,TRAF5,PIK3R1,TRAF4,PIK3R2,TRAF3,FN1,COL4A4,COL4A2,COL4A1,ITGA2,ITGA3,BIRC3,BIRC2,COL4A6,LAMA2,LAMA1,LAMA4,CDKN1B,LAMA3,ITGA6,LAMA5,IKBKG,APAF1,IKBKB +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html E2F1,FHIT,E2F2,HRAS,E2F3,FOXO3,AKT1,PDPK1,CDKN2A,CASP9,TGFA,PIK3CA,RARB,AKT3,AKT2,PIK3CG,PRKCA,EGFR,BRAF,RXRB,PIK3CB,RXRA,PIK3CD,RXRG,TP53,PRKCG,CDK6,RB1,CDK4,STK4,PRKCB,MAPK1,CCND1,MAPK3,GRB2,ERBB2,KRAS,SOS1,SOS2,PIK3R5,EGF,PIK3R3,PIK3R1,PIK3R2,MAP2K1,MAP2K2,RAF1,BAD,NRAS,RASSF5,PLCG1,RASSF1,PLCG2,ARAF +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DQB1,TNF,HLA-DRB1,HLA-DRB3,IL13,HLA-DMB,HLA-DMA,IL10,EPX,HLA-DRB4,MS4A2,FCER1G,HLA-DRB5,HLA-DPB1,HLA-DOA,HLA-DOB,IL4,FCER1A,IL3,IL5,RNASE3,IL9,PRG2,CD40,HLA-DQA2,HLA-DQA1,CCL11,CD40LG,HLA-DPA1,HLA-DRA +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA21,CGA,FASLG,HLA-DMB,HLA-DMA,IL10,TPO,FAS,HLA-A,HLA-C,GZMB,HLA-B,CD40,HLA-E,HLA-DQA2,HLA-G,HLA-DQA1,HLA-F,CD86,CD80,CD40LG,HLA-DPA1,TSHR,HLA-DRA,TG,HLA-DQB1,PRF1,HLA-DRB1,HLA-DRB3,TSHB,IFNA2,IFNA1,IFNA7,IFNA6,IFNA5,IFNA4,HLA-DRB4,HLA-DRB5,IFNA8,HLA-DPB1,HLA-DOA,HLA-DOB,CD28,IL4,IL5,IFNA10,CTLA4,LOC652614,IFNA14,IFNA13,IFNA16,IFNA17,IL2 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H2AA3,LOC340096,HIST2H2AA4,SNRPD3,SNRPD1,C1QC,IL10,HIST1H2BO,HIST1H2BM,HIST1H2BN,HIST1H2BK,H2AFV,GRIN2B,HIST1H2BL,HIST1H2BI,IFNG,HIST1H2BJ,H2AFZ,H2AFY,H2AFX,HIST3H3,C4A,ACTN4,C4B,GRIN2A,ACTN1,ACTN2,CD40,H2AFJ,ACTN3,H2BFWT,HLA-DQA2,HLA-DQA1,C1QA,C1QB,CD40LG,SNRPB,HLA-DPA1,HLA-DRA,HIST1H4L,HIST1H4K,LOC391769,HLA-DRB1,HLA-DRB3,H2AFB2,H2AFB1,TROVE2,LOC651868,HIST1H4A,HIST1H4B,HLA-DRB4,HIST1H4E,HLA-DRB5,HIST1H4F,HIST1H4C,HLA-DPB1,HIST1H4D,HIST1H4I,HLA-DOA,HLA-DOB,HIST1H4J,HIST1H4G,HIST1H4H,HIST2H3A,HIST1H3J,SSB,HIST2H3C,HIST2H3D,LOC644950,HIST1H3A,HIST1H3B,HIST1H3C,H3F3A,H3F3B,HIST1H3D,H3F3C,HIST1H3E,HIST1H3F,HIST1H3G,HIST1H3H,HIST1H3I,HIST4H4,HIST2H4A,HLA-DMB,HLA-DMA,HIST2H4B,HIST2H2AB,HIST2H2AC,HIST3H2A,HIST3H2BB,FCGR3A,FCGR3B,ELANE,H2BFM,H2AFB3,C8G,C8A,C8B,CD86,CD80,HIST2H2BE,HIST2H2BF,CTSG,HIST1H2AB,HLA-DQB1,HIST1H2AC,C7,HIST1H2AA,C9,TNF,C3,HIST1H2AG,C6,HIST1H2AD,C5,HIST1H2AE,C1R,C1S,FCGR1A,C2,CD28,HIST1H2BA,HIST1H2BB,HIST1H2BC,HIST1H2BD,HIST1H2BE,HIST1H2BF,HIST1H2BG,HIST1H2BH,TRIM21,FCGR2B,FCGR2C,H2AFY2,HIST1H2AI,HIST1H2AH,HIST1H2AK,HIST1H2AJ,FCGR2A,HIST1H2AM,HIST1H2AL +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DQB1,PRF1,TNF,HLA-DRB1,HLA-DRB3,FASLG,HLA-DMB,HLA-DMA,IL10,IFNG,HLA-DRB4,HLA-DRB5,FAS,HLA-DPB1,HLA-DOA,HLA-DOB,CD28,IL4,IL5,HLA-A,GZMB,HLA-C,HLA-B,CD40,HLA-E,HLA-DQA2,HLA-G,LOC652614,HLA-DQA1,HLA-F,CD86,CD80,CD40LG,IL12A,HLA-DPA1,IL12B,HLA-DRA,IL2 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DQB1,PRF1,KIR2DL5A,TNF,HLA-DRB1,HLA-DRB3,FASLG,HLA-DMB,HLA-DMA,IFNG,HLA-DRB4,HLA-DRB5,IL1B,FAS,HLA-DPB1,HLA-DOA,KLRD1,HLA-DOB,IL1A,CD28,IL6,HLA-A,GZMB,HLA-C,HLA-B,HLA-E,HLA-DQA2,HLA-G,HLA-DQA1,LOC652614,HLA-F,CD86,CD80,HLA-DPA1,KIR2DL1,KIR2DL3,KIR2DL2,KIR3DL1,KLRC1,HLA-DRA,KIR3DL2,IL2 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html CD8A,CD8B,UNG,RAG1,RAG2,IL7R,RFXANK,RFXAP,ADA,BTK,ICOS,TAP2,TAP1,ZAP70,IGLL1,IL2RG,CD4,BLNK,CIITA,PTPRC,CD3D,RFX5,CD3E,TNFRSF13B,TNFRSF13C,CD40,DCLRE1C,CD19,CD40LG,LCK,IKBKG,AIRE,AICDA,JAK3,CD79A +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html PRKAG3,LOC646821,TNNC1,PRKAG1,MYBPC3,PRKAG2,TGFB3,TTN,TGFB1,TGFB2,ACTG1,DES,CACNG8,CACNG7,PRKAB2,CACNG6,CACNG5,PRKAB1,CACNG4,MYH7,CACNG3,MYH6,CACNG2,CACNG1,TNNT2,SGCG,SGCD,RYR2,SGCA,SGCB,ITGA2B,TNF,MYL2,MYL3,DAG1,ITGA11,CACNB1,ITGB4,ITGA10,CACNB2,ITGB5,CACNB3,CACNB4,ITGB3,TPM2,TPM1,ITGB1,TPM4,TPM3,ACE,ITGB8,DMD,ITGB7,ITGAV,ITGB6,PRKAA1,PRKAA2,EMD,ACTB,LOC646048,IL6,CACNA2D1,SLC8A1,ACTC1,ITGA1,LMNA,ITGA2,IGF1,ITGA3,ITGA4,CACNA2D3,TNNI3,CACNA2D2,CACNA1S,CACNA2D4,LAMA2,ITGA9,ITGA6,ATP2A2,ITGA5,ITGA8,ITGA7,CACNA1F,CACNA1C,CACNA1D +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html LOC646821,GJA1,CTNNB1,ACTG1,DES,ACTN4,CACNG8,CACNG7,CACNG6,CACNG5,CACNG4,LEF1,ACTN1,ACTN2,CACNG3,ACTN3,CACNG2,CACNG1,CTNNA1,CTNNA3,CTNNA2,JUP,SGCG,DSP,SGCD,RYR2,SGCA,SGCB,ITGA2B,DAG1,ITGA11,CACNB1,ITGB4,ITGA10,CACNB2,ITGB5,CACNB3,CACNB4,ITGB3,CDH2,TCF7L2,ITGB1,TCF7L1,ITGB8,DMD,ITGB7,ITGAV,ITGB6,EMD,ACTB,LOC646048,CACNA2D1,SLC8A1,TCF7,ITGA1,LMNA,ITGA2,ITGA3,ITGA4,CACNA2D3,CACNA2D2,CACNA1S,CACNA2D4,LAMA2,ITGA9,ITGA6,ATP2A2,DSG2,ITGA5,PKP2,ITGA8,ITGA7,DSC2,CACNA1F,CACNA1C,CACNA1D +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ADCY3,LOC646821,ADCY4,ADCY1,ADCY2,ADCY7,ADCY8,TNNC1,ADCY5,MYBPC3,ADCY6,TGFB3,TTN,TGFB1,PRKX,TGFB2,PRKACG,ACTG1,DES,PRKACA,PRKACB,CACNG8,CACNG7,CACNG6,CACNG5,CACNG4,MYH7,CACNG3,MYH6,CACNG2,CACNG1,TNNT2,ADRB1,SGCG,SGCD,RYR2,GNAS,SGCA,SGCB,ITGA2B,TNF,MYL2,MYL3,DAG1,CACNB1,ITGA11,ITGB4,ITGA10,CACNB2,ITGB5,CACNB3,CACNB4,ITGB3,TPM2,ITGB1,TPM1,TPM4,TPM3,ITGB8,DMD,ITGB7,ITGAV,ITGB6,EMD,ACTB,LOC646048,ACTC1,CACNA2D1,SLC8A1,ITGA1,LMNA,ITGA2,IGF1,ITGA3,ITGA4,CACNA2D3,TNNI3,CACNA2D2,CACNA1S,CACNA2D4,LAMA2,ITGA9,ITGA6,ATP2A2,ADCY9,ITGA5,PLN,ITGA8,ITGA7,CACNA1F,CACNA1C,CACNA1D +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html LOC646821,MYH15,HLA-DMB,CXADR,HLA-DMA,ACTG1,CASP3,CASP9,CASP8,ICAM1,MYH1,MYH3,CYCS,MYH2,HLA-A,MYH4,MYH7,HLA-C,MYH6,CD40,HLA-B,MYH9,HLA-E,MYH8,HLA-DQA2,HLA-DQA1,HLA-G,HLA-F,EIF4G1,EIF4G2,CCND1,CD86,EIF4G3,CD80,SGCG,CD40LG,SGCD,HLA-DPA1,MYH7B,SGCA,HLA-DRA,SGCB,HLA-DQB1,BID,ITGAL,PRF1,CAV1,HLA-DRB1,HLA-DRB3,DAG1,ITGB2,RAC2,RAC3,DMD,RAC1,HLA-DRB4,HLA-DRB5,HLA-DPB1,HLA-DOA,HLA-DOB,CD28,ACTB,LOC646048,LOC652614,LAMA2,CD55,FYN,MYH11,MYH13,MYH14,ABL1,ABL2,MYH10 +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html TNF,RELA,CREBBP,NFKBIA,NFKB1,FADD,TRADD,TNFRSF1A,TNFRSF1B,HDAC3,EP300,RIPK1,IKBKG,IKBKB,TRAF6,CHUK +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html CAV1,PDE3B,PRKG2,BDKRB2,PRKG1,PRKACG,AKT1,PRKAR2B,PRKAR2A,NOS3,PRKACB,CHRNA1,KNG1,HSP90AA1,FLT1,ACTA1,FLT4,PDE3A,CYCSP35,TNNI1,KDR,PDE2A,PRKAR1B,SLC7A1,CHRM1,PRKAR1A,VEGFA,CALM3,RYR2,CALM2,CALM1 +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html PTPRC,ADCY1,CD3G,HLA-DRB1,CD3D,CD3E,CREBBP,CD247,TRA@,TRB@,PRKACG,PRKAR2B,GNGT1,PRKAR2A,GNB1,PRKAR1B,LCK,PRKAR1A,ZAP70,CD4,GNAS,PRKACB,CSK,HLA-DRA +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html CCNB1,PRKCA,CDK1,GRB2,PTPRA,CDC25C,CSK,CDC25A,SRC,PRKCB,CDC25B +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html PLAT,COL4A4,COL4A3,COL4A2,F10,COL4A1,F7,COL4A6,PLG,COL4A5,PROC,FGG,FGA,FGB,AHSP,F2,SERPINC1,TFPI,PROS1,F2R +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html CSF3,ITGAL,ICAM1,SELP,TNF,IL8,SELL,C5,ITGB2,ITGAM,PECAM1,IFNG,SELPLG,IL1A +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html VCAM1,ICAM1,ITGAL,IL8,CD34,SELL,PECAM1,ITGB2,ITGA4,ITGB1,IL1A +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html ARFGAP1,KDELR3,KDELR2,COPA,ARFGAP3,CLTB,CYTH1,GPLD1,ASAP2,CYTH4,COP,CYTH2,CYTH3,ARFGEF2,ARFGEF1,GBF1,ARF1,KDELR1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html NRG3,UTRN,DAG1,ITGB1,PXN,SRC,PAK6,CDC42,PAK7,MUSK,CTTN,PTK2,PAK2,PAK3,PAK4,DMD,RAC1,GIT2,PAK1,NRG1,CHRNA1,NRG2,EGFR,ACTA1,ITGA1,DVL1,LAMA2,MAPK1,LAMA4,LAMA3,SP1,RAPSN,CHRM1,JUN,MAPK3,MAPK8 +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html CCNB1,PRKACG,CDK1,PRKAR2B,PPP1CA,PRKAR2A,PPP2CA,PRKAG1,AKAP8,PRKACB,DDX5,NCAPD2 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html PIK3CG,HSP90AA1,RELA,NFKBIA,FASLG,FOXO1,NFKB1,BAD,FOXO3,FOXO4,AKT1,GH1,PDPK1,YWHAH,CASP9,PPP2CA,IKBKG,PIK3CA,IKBKB,PIK3R1,CHUK,GHR +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html MEF2C,BMP10,NOG,HNF1A,MYL2,TGFB3,BMPR2,TGFB1,TGFB2,CTNNB1,ATF2,MAP3K7,WNT1,GATA4,NKX2-5,AXIN1,APC,BMP4,BMP2,TGFBR1,SMAD6,SMAD5,TGFBR2,SMAD4,FZD1,SMAD1,DVL1,RFC1,GSK3B,NPPB,TGFBR3,BMP7,CHRD,BMP5,NPPA,BMPR1A,ACVR1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html MEF2C,MEF2A,HRAS,GRB2,ELK1,SRC,ATF2,AGTR1,PTK2,PTK2B,SOS1,AGT,MAP3K1,RAC1,SHC1,PAK1,EGFR,PRKCA,MAP2K1,MAP2K2,MAP2K4,RAF1,CYCSP35,PRKCB,MAPK1,MEF2D,LOC729991-MEF2B,GNAQ,JUN,MAPK3,CALM3,MAPK8,CALM2,CALM1 +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html COL4A4,COL4A3,COL4A2,COL4A1,COL4A6,COL4A5,AGTR1,ACE,AGTR2,REN,AGT,ACE2,CMA1 +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html IL4,HLA-DRB1,CD80,CD40LG,FASLG,CD4,FAS,CD40,IL10,IL2,HLA-DRA,CD28 +BIOCARTA DNAFRAGMENT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DNAFRAGMENT_PATHWAY.html HMGB1,CASP3,HMGB2,DFFA,ENDOG,CASP7,DFFB,GZMB,TOP2B,TOP2A +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html BID,PRKCA,TLN1,CYCS,TP53,BAD,BCL2L1,STAT1,PXN,ATM,PRKCB,AKT1,CASP6,CASP3,PTK2,CASP9,BCL2,CASP7,BAX,EIF2S1,APAF1,PARP1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html PRKCA,F2RL3,HRAS,TBXAS1,MAP2K1,GNAI1,PTGS1,ITGA1,RAF1,ITGB1,SRC,PRKCB,MAPK1,GNGT1,PTK2,PLA2G4A,GNB1,MAPK3,F2,PLCB1,SYK,F2R +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html NBN,MRE11A,RELA,TP53,NFKBIA,NFKB1,CHEK1,CHEK2,RAD50,TP73,ATM,BRCA1,RBBP8,RAD51,CDKN1A,JUN,MDM2,MAPK8,ABL1,GADD45A +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html PRKCA,PRKCB,PRKACG,PRKAR2B,GNGT1,PRKAR2A,ARRB1,GNB1,PRKAR1B,PRKAR1A,GNAS,GRK4,PRKACB +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html PIK3CG,DPF2,ZBTB7A,XIAP,ITGA1,BIRC5,ITGB1,AKT1,FOS,CASP3,CCT4,CASP7,JUND,PIK3CA,MTOR,PIK3R1 +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html ICAM1,PTPRC,ITGAL,CR1,CR2,FCGR2B,HLA-DRB1,CD80,ITGB2,CD40,HLA-DRA +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html HRAS,GRB2,ELK1,BTK,FOS,SOS1,MAP3K1,RAC1,PPP3CB,PPP3CC,SHC1,NFATC4,PPP3CA,NFATC2,NFATC3,NFATC1,SYK,BLNK,PRKCA,LYN,MAP2K1,RAF1,CYCSP35,VAV1,PRKCB,PLCG1,MAPK14,JUN,MAPK3,CALM3,MAPK8,CD79B,CD79A,CALM2,CALM1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html HRAS,GRB2,GNAI1,STAT5A,CAMK2G,GNA11,STAT5B,STAT6,AGTR2,STAT4,PTK2B,SOS1,AGT,MAPT,CAMK2D,SHC1,CAMK2B,CAMK2A,PRKCA,KNG1,MAP2K1,MAP2K2,RAF1,CYCSP35,STAT1,CDK5,STAT3,STAT2,PRKCB,MAPK1,GNGT1,PLCG1,FYN,GNB1,MAPK14,MAPK3,F2,CALM3,JAK2,MAPK8,CALM2,MYLK,CALM1 +BIOCARTA NEUROTRANSMITTERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NEUROTRANSMITTERS_PATHWAY.html PNMT,HDC,TH,DBH,TPH1,GAD1 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html FOSL2,RELA,NFKB1,IFNAR1,IRF9,IFNAR2,FOS,TNFSF11,TNFRSF11A,IFNB1,MAPK8,EIF2AK2,TRAF6,FOSL1 +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CAMK1G,CAMK2G,CREB1,CYCSP35,CAMKK1,CAMKK2,CAMK4,CAMK2D,CALM3,CAMK1,CAMK2B,CAMK2A,CALM2,CALM1 +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html PRKCA,HRAS,TNF,MAP2K1,RELA,NFKBIA,RAF1,CUZD1,NFKB1,PRKCB,MAPK1,FOS,JUN,MAPK3,PLCB1,MYC +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html MEF2C,GRIP1,TBP,POLR2A,GTF2E1,GTF2A1,PELP1,ERCC3,SRA1,CREBBP,HDAC10,ESR1,HDAC11,SPEN,NR0B1,PPARGC1A,HIST2H3C,BRCA1,NRIP1,HDAC5,HDAC4,HDAC3,CCND1,HDAC2,EP300,HDAC1,PHB2,GTF2F1,CARM1,HDAC9,HDAC8,HDAC7,NCOR2,MED1,HDAC6 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html PRF1,LMNB1,XIAP,LMNB2,DFFA,DFFB,CYCS,LMNA,GZMB,BIRC3,BIRC2,CASP10,CASP6,CASP3,CASP4,CASP9,CASP7,CASP8,APAF1,PARP1,CASP1,CASP2,ARHGDIB +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html EGFR,PRKCA,GRB2,CBL,MET,SRC,PRKCB,SH3GLB2,SH3GLB1,PDGFRA,SH3KBP1,EGF,CSF1R +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html PRKCA,HRAS,PIK3C2G,MYL2,MAP2K1,ROCK2,LIMK1,PPP1R12B,NOX1,RAF1,PRKCB,CCL11,MAPK1,GNGT1,PTK2,GNAQ,GNB1,CCR3,MAPK3,CFL1,RHOA,GNAS,PLCB1 +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html IKBKAP,RELA,NFKBIA,NFKB1,CD40,DUSP1,CD40LG,MAP3K1,IKBKG,IKBKB,TRAF6,TNFAIP3,MAP3K14,CHUK,TRAF3 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html CDC6,KITLG,MCM2,MCM3,MCM4,MCM5,CDK2,ORC1L,MCM6,CDT1,CCNE1,ORC2L,ORC3L,MCM7,CDKN1B,ORC4L,ORC6L,ORC5L +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html E2F1,TGFB3,TGFB1,TGFB2,CCNE1,CDKN2A,CDKN2B,CCNA1,TFDP1,CDK1,SMAD4,SKP2,TP53,SMAD3,CDK6,RB1,ATR,CDK4,CDK2,CDC25A,ATM,CCND1,CDKN1A,CDKN1B,DHFR,HDAC1,GSK3B,ABL1 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html CDK1,TP53,PRKDC,CHEK1,ATR,CHEK2,CDC34,CDC25C,MYT1,ATM,CDC25A,BRCA1,WEE1,CDC25B,CCNB1,CDKN1A,YWHAH,EP300,RPS6KA1,PLK1,CDKN2D,YWHAQ,MDM2,GADD45A +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html BCAR1,ACTN1,ACTN2,ACTN3,CTNNA1,SRC,CTNNA3,PXN,VCL,CTNNA2,CTNNB1,PTK2,PECAM1,CSK +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html KNG1,C7,ITGAL,ICAM1,SELP,IL6,TNF,IL8,C3,C6,C5,ITGB2,ITGA4,ITGB1,VCAM1,SELPLG,IL1A +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html TRAF2,MAP2K1,AIFM1,RELA,MAP2K4,CYCS,RAF1,NFKB1,FADD,BAD,TRADD,MAPK1,TNFRSF1A,RIPK1,BCL2,MAP3K1,BAX,MAPK3,CASP8,SMPD1,MAPK8,NSMAF +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html TNF,RELA,TP53,NFKBIA,NFKB1,HSPA1A,RB1,TAX1BP3,WT1,LIN7A,TNFRSF1A,TNFRSF1B,IFNG,USH1C,JAK2,IKBKB,IFNGR2,IFNGR1,DNAJA3 +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C7,C9,C4A,C3,C4B,C6,C5,C1R,C1S,C1QC,C1QA,C8A,C1QB,C2 +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C7,MBL2,C9,C4A,MASP1,CFB,MASP2,C4B,C3,C6,C5,C1R,C1S,C1QC,C8A,C1QA,C1QB,C2,CFD +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html NCOA1,EP300,KAT2B,NCOA2,NCOA3,HDAC1,RXRA,TSC2,CREBBP,CARM1,NCOR1,MED1 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html MEF2C,MYOD1,MEF2A,AKT1,IGF1R,INS,PPP3CB,PPP3CC,PIK3CA,PPP3CA,NFATC2,INSR,PIK3R1,MAP2K6,NFATC1,PIK3CG,CAMK1G,IGF1,CYCSP35,HDAC5,MEF2D,LOC729991-MEF2B,YWHAH,MAPK14,CABIN1,CALM3,CAMK1,MAPK7,CALM2,CALM1 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html PIK3CG,HSP90AA1,CORIN,RELA,ANXA1,CYCSP35,NFKB1,NR3C1,AKT1,GNGT1,ADRB2,GNB1,CALM3,PIK3CA,NOS3,GNAS,PIK3R1,CALM2,NPPA,CALM1 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html PIK3CG,TGFBR1,TGFBR2,SMAD5,TGFB3,SMAD4,TP53,RPS6KB1,SMAD1,PTEN,TGFB1,TGFB2,CDKN2A,CDKN1B,PPP2CA,TGFBR3,MDM2,PIK3CA,CD79B,CD79A,MTOR,MYC,PIK3R1 +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html ITGAL,ICAM1,PRF1,CD3G,CD3D,CD3E,CD247,HLA-A,FASLG,ITGB2,GZMB,TRA@,TRB@,B2M,FAS +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html PRKCA,HRAS,PIK3C2G,MAP2K1,GNAI1,RELA,BCAR1,RAF1,NFKB1,CXCL12,PXN,PRKCB,MAPK1,GNGT1,PTK2,PLCG1,GNAQ,PTK2B,CXCR4,GNB1,MAPK3,PIK3CA,CRK,PIK3R1 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html E2F1,CDK1,CCNH,RBL1,CDK6,CDK7,RB1,CDK4,CDC25A,CDK2,CCNB1,CCNE1,CCND1,CDKN1A,CDKN2A,CDKN1B,CCND3,CDKN2B,CCND2,CDKN2C,CDKN2D,CCNA1,TFDP1 +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html PRKACG,PRKAR2B,ADRB2,ADCY1,PRKAR2A,EZR,PRKAR1B,PRKAR1A,GNAS,CFTR,PRKACB,SLC9A3R1 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL4,IL3,IL6,IL5,TNF,IL8,IL16,IL18,IL9,IL13,IL15,IL10,IFNA1,IL17A,IFNB1,IFNG,IL12A,IL12B,LTA,IL1A,IL2 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html CSF3,CSF2,TNF,HLA-DRB1,PDGFA,CSF1,TGFB3,IL13,IL15,TGFB1,IL10,IL11,TGFB2,IFNA1,IFNG,CD4,LTA,IL1A,IL4,IL3,IL6,IL5,IL8,IL7,IFNB1,IL12A,IL12B,HLA-DRA,IL2 +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html PRF1,CYCS,GZMB,CASP10,CASP3,ARHGAP5,CASP9,JUN,CASP8,APAF1,CASP1,PARP1,ARHGDIB +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html IL4,CSF2,IL3,IL5,TLR2,IL13,TLR4,ANPEP,CD40,TLR7,IL10,TLR9,IFNA1,ITGAX,IFNB1,CD33,IFNG,IL12A,CD2,IL12B,CD5,CD7 +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html CSNK1A1,APP,CAPNS2,CDK5R1,CAPNS1,CSNK1D,GSK3B,PPP2CA,MAPT,CDK5,CAPN1 +BIOCARTA RNA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RNA_PATHWAY.html EIF2S1,RELA,EIF2S2,TP53,NFKBIA,NFKB1,EIF2AK2,DNAJC3,MAP3K14,CHUK +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html ALDOA,MTA3,ESR1,MTA1,CDH1,MBD3,SNAI2,SNAI1,HDAC1,HSPB2,TUBA3C,CTSD,HSPB1,TUBA4A,TUBA4B,TUBA1A,PDZK1,GAPDH,TUBA1C +BIOCARTA SKP2E2F PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SKP2E2F_PATHWAY.html E2F1,CCNE1,SKP2,SKP1,RB1,CDC34,CCNA1,CDK2,CUL1,TFDP1 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html PRKCA,CYCSP35,PRKCB,CDKN1A,PLCG1,GNAQ,SP1,SP3,PPP3CB,CALM3,PPP3CC,NFATC4,MARCKS,PPP3CA,NFATC2,NFATC3,CALM2,NFATC1,CALM1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html HRAS,GRB2,STAT5A,STAT5B,ELK1,SRF,STAT6,FOS,STAT4,CSNK2A1,SOS1,MAP3K1,PIK3CA,SHC1,EGF,PIK3R1,RASA1,PRKCA,EGFR,MAP2K1,MAP2K4,RAF1,STAT1,STAT3,PRKCB,STAT2,PLCG1,JUN,MAPK3,JAK1,MAPK8 +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html GPD2,SDHA,SDHB,UQCRC1,SLC25A4,COX1,SLC25A6,SDHC,SDHD,CYCS,ATP5A1,NDUFA1 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html SYNJ1,CYCSP35,AMPH,EPS15,NME2,PICALM,AP2A1,NME1,PPP3CB,CALM3,SYNJ2,PPP3CC,PPP3CA,BIN1,EPN1,CALM2,DNM1,AP2M1,CALM1 +BIOCARTA EPHA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPHA4_PATHWAY.html EPHA4,SELP,LYN,ACTA1,FYN,ITGA1,L1CAM,RAP1B,ITGB1,EPHB1 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html PTPN6,HRAS,MAP2K1,GRB2,STAT5A,STAT5B,RAF1,ELK1,FOS,CSNK2A1,PLCG1,SOS1,JUN,MAPK3,EPOR,MAPK8,SHC1,JAK2,EPO +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html PIK3CG,TLN1,HRAS,ROCK1,MAP2K1,MYL2,DIAPH1,ITGA1,RAF1,ITGB1,PXN,SRC,MAPK1,PFN1,PTK2,ARHGAP5,FYN,GSN,MAPK3,RHOA,PIK3CA,SHC1,PIK3R1,MYLK +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html HRAS,GRB2,MKNK2,MKNK1,ELK1,ITGB1,SRC,IGF1R,SOS1,PPP2CA,SHC1,MYC,EGFR,MAP2K1,MAP2K2,PTPRR,RAF1,STAT3,RPS6KA5,MAPK1,GNGT1,RPS6KA1,GNB1,MAPK3,PDGFRA,GNAS,NGFR,NGF +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html CSF3,CSF2,IL3,CCL3,IL6,FLT3,IL9,TGFB3,IGF1,KITLG,TGFB1,IL11,TGFB2,IL1A,EPO +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html CDKN1A,HIF1A,RELA,GRIN1,NFKBIA,EPOR,JAK2,NFKB1,ARNT,SOD2,EPO +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF6,EIF5,EIF2S3,EEF2,EIF4G1,EIF4G2,EIF3A,EIF4G3,EIF4E,EIF4A2,EIF2S1,EIF1AX,EIF2S2,EIF4A1,EEF2K,EIF1 +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html F10,F7,PROC,FGG,FGA,F5,FGB,F3,F2,TFPI,SERPINC1,PROS1,F2R +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html LMNB1,LMNB2,PRKDC,FASLG,DAXX,MAP3K7,CASP6,CASP3,PAK2,CASP7,MAP3K1,CASP8,PAK1,FAS,ARHGDIB,CFLAR,DFFA,DFFB,MAP2K4,LMNA,PTPN13,FADD,RB1,CASP10,JUN,RIPK2,MAPK8,FAF1,PARP1,SPTAN1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html HRAS,GRB2,ELK1,BTK,FOS,PAK2,SOS1,MAP3K1,PPP3CB,PIK3CA,PPP3CC,FCER1G,SHC1,NFATC4,PPP3CA,NFATC2,NFATC3,MAP2K7,PIK3R1,NFATC1,SYK,PIK3CG,FCER1A,LYN,MAP2K1,MAP2K4,RAF1,CYCSP35,VAV1,PRKCB,MAPK1,PLA2G4A,PLCG1,JUN,MAPK3,CALM3,MAPK8,CALM2,CALM1 +BIOCARTA FEEDER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FEEDER_PATHWAY.html KHK,TPI1,MPI,PYGM,PYGL,PGM1,HK1,TREH,LCT +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html PLAT,FGG,FGA,FGB,F13A1,SERPINE1,F2,SERPINB2,CPB2,PLG,PLAU,F2R +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html GNA15,HRAS,FPR1,NCF1C,NFKBIA,ELK1,NFKB1,MAP3K1,RAC1,PPP3CB,PPP3CC,NFATC4,PPP3CA,PAK1,NFATC2,PLCB1,NFATC3,MAP2K6,NFATC1,CAMK1G,PIK3C2G,NCF2,MAP2K1,MAP2K2,RELA,MAP2K3,RAF1,CYCSP35,MAPK1,GNGT1,GNB1,MAPK14,MAPK3,CAMK1,CALM3,CALM2,CALM1 +BIOCARTA FREE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FREE_PATHWAY.html GSS,XDH,GPX1,GSR,TNF,IL8,RELA,NOX1,NFKB1,SOD1 +BIOCARTA GABA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GABA_PATHWAY.html GABRA2,GPHN,GABRA1,GABRA4,GABRA3,GABRA6,GABRA5,DNM1,GABARAP,SRC +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html MAF,IL4,IL5,MAP2K3,IL13,JUNB,PRKACG,PRKAR2B,PRKAR2A,GATA3,MAPK14,PRKAR1B,PRKAR1A,PRKACB,NFATC2,NFATC1 +BIOCARTA GLYCOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLYCOLYSIS_PATHWAY.html GPI,TPI1,PFKL,ALDOB,PKLR,PGAM1,HK1,PGK1,GAPDH,ENO1 +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html PRF1,HMGB2,SET,GZMA,NME1,DFFA,DFFB,CREBBP,ANP32A,GZMB,APEX1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html HRAS,HNF1A,GRB2,STAT5A,STAT5B,SRF,SLC2A4,INS,SOS1,PIK3CA,SHC1,INSR,PIK3R1,GHR,PRKCA,PIK3CG,PTPN6,MAP2K1,SOCS1,RAF1,IRS1,PRKCB,MAPK1,GH1,RPS6KA1,PLCG1,MAPK3,JAK2 +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html ALAD,FECH,HMBS,UROS,HBA2,HBA1,GATA1,ALAS1,ALAS2,CPOX,AHSP,UROD,HBB +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html CD3G,CD3D,CCR5,CD3E,CD247,FASLG,CD4,FAS,TRA@,TRB@,CD28 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html FASLG,NFKB1,DAXX,CRADD,ACTG1,CASP6,BAG4,MAP3K5,CASP3,CASP9,PAK2,GSN,CASP7,CASP8,FAS,MAP2K7,CASP2,CHUK,DFFA,DFFB,RELA,CYCS,FADD,RB1,PRKCD,PSEN1,CDK11A,RIPK1,PSEN2,MDM2,CDK11B,MAPK8,MAP3K14,BID,TRAF1,TRAF2,TNF,XIAP,LMNB1,LMNB2,PRKDC,NFKBIA,TNFRSF1A,PTK2,NUMA1,TNFRSF1B,MAP3K1,BCL2,RASA1,ARHGDIB,CFLAR,LMNA,BIRC3,BIRC2,TRADD,APAF1,PARP1,SPTAN1 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html ACTA1,WASF1,ARPC4,ARPC5,ARPC1A,ACTR3,ACTR2,ARPC1B,CDC42,ARPC3,ARPC2,RAC1,WASL +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html ADCY1,HRAS,GNAI1,PAQR7,ARPC4,ARPC5,MYT1,SRC,PIN1,PAQR5,PGR,PRKACG,ACTR3,PRKAR2B,ACTR2,PRKAR2A,ARPC3,ARPC2,CAP1,PRKACB,CDK1,ACTA1,CDC25C,CCNB1,ARPC1A,MAPK1,ARPC1B,GNGT1,RPS6KA1,GNB1,PRKAR1B,MAPK3,PRKAR1A,GNAS +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html PIK3CG,MAP2K1,MAP2K2,MAP2K3,RELA,CREB1,NFKB1,RB1,AKT1,MAPK1,SP1,MAPK14,MAP3K1,MAPK3,PIK3CA,PIK3R1,MAP2K6 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html CSNK1A1,TAF1,HSP90AA1,NFKBIB,TP53,FHL2,ABCB1,HSPA1A,ATM,HIC1,RPA1,AKT1,CDKN1A,EP300,HIF1A,CSNK1D,BAX,DNAJB1P1,MDM2,MAPK8,NQO1,IGFBP3,GADD45A +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html P4HB,LDHA,HSP90AA1,COPS5,VHL,CREB1,EDN1,ARNT,EP300,HIF1A,JUN,VEGFA,NOS3,ASPH,EPO +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html PIK3CG,HRAS,MAP2K1,GRB2,RAF1,ELK1,IGF1,IRS1,SRF,PTPN11,FOS,IGF1R,CSNK2A1,SOS1,JUN,MAPK3,PIK3CA,MAPK8,SHC1,PIK3R1,RASA1 +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html CSF3,IL3,IL6,CD3G,IL8,CD3D,CD8A,CD3E,CD247,KITLG,TRA@,TRB@,IL17A,CD34,CD58,CD2,CD4 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html HRAS,IL2RB,IL2RA,MAP2K1,GRB2,STAT5A,STAT5B,RAF1,ELK1,FOS,CSNK2A1,SOS1,JUN,LCK,MAPK3,JAK1,MAPK8,SHC1,IL2RG,JAK3,IL2,SYK +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html PTPN6,IL3,HRAS,MAP2K1,GRB2,STAT5A,STAT5B,RAF1,FOS,SOS1,MAPK3,CSF2RB,SHC1,JAK2,IL3RA +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html AKT1,STAT6,IL4,GRB2,IL4R,JAK1,IL2RG,SHC1,RPS6KB1,JAK3,IRS1 +BIOCARTA IL5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL5_PATHWAY.html IL4,CCL11,IL6,IL5,HLA-DRB1,CCR3,IL1B,CD4,IL5RA,HLA-DRA +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html IL6,HRAS,CEBPB,MAP2K1,GRB2,IL6ST,RAF1,ELK1,IL6R,SRF,STAT3,PTPN11,TYK2,FOS,CSNK2A1,SOS1,JUN,MAPK3,JAK1,JAK2,SHC1,JAK3 +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html IL6,TNF,STAT5A,STAT5B,STAT1,IL10,STAT3,STAT2,BLVRA,STAT6,STAT4,IL10RB,IL10RA,HMOX1,BLVRB,JAK1,IL1A +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html IL18R1,CD3G,CD3D,CD3E,IL18,CD247,CXCR3,TRA@,TRB@,IL12RB2,TYK2,STAT4,IL12RB1,CCR5,JUN,MAPK14,IFNG,IL12A,JAK2,MAPK8,IL12B,ETV5,MAP2K6 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html E2F1,HRAS,NMI,GRB2,STAT5A,STAT5B,FASLG,RPS6KB1,BCL2L1,AKT1,FOS,SOS1,BCL2,PIK3CA,IL2RG,SHC1,FAS,MYC,PIK3R1,SYK,PIK3CG,CFLAR,PTPN6,IL2RB,IKZF3,IL2RA,SOCS3,SOCS1,CBL,RAF1,BAD,IRS1,MAPK1,CRKL,PPIA,MAPK3,JAK1,JAK3 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html IL22RA1,SOCS3,STAT5A,STAT5B,STAT1,IL22,STAT3,STAT2,STAT6,TYK2,STAT4,IL10RA,JAK1,JAK2,JAK3,IL22RA2 +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html PIK3CG,NMI,IL7,STAT5A,CREBBP,STAT5B,IL7R,EP300,FYN,PTK2B,BCL2,LCK,JAK1,PIK3CA,IL2RG,JAK3,PIK3R1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html TOLLIP,GNAI1,TIRAP,GJA1,NFKB1,TLR4,CTNNB1,AKT1,WNT1,PDPK1,MYD88,PPP2CA,PIK3CA,LBP,PIK3R1,APC,AXIN1,IRAK1,LY96,RELA,FZD1,LEF1,DVL1,CCND1,GSK3B,EIF2AK2,CD14 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html BID,TRAF2,XIAP,TNFRSF25,NFKBIA,NFKB1,TNFSF12,CASP6,CASP3,CASP9,CASP7,BCL2,CASP8,CHUK,CFLAR,DFFA,DFFB,RELA,CYCS,LMNA,GAS2,FADD,BIRC3,BIRC2,TRADD,TNFRSF10A,CASP10,TNFSF10,TNFRSF10B,RIPK1,APAF1,MAP3K14,SPTAN1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html E2F1,HRAS,NFKBIA,NFKB1,AKT1,CCNE1,RAC1,RHOA,PIK3CA,PAK1,CHUK,PIK3R1,TFDP1,RELA,RAF1,CDK6,RB1,CDK4,CDK2,MAPK1,CCND1,CDKN1A,CDKN1B,IKBKG,MAPK3,IKBKB +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html PIK3CG,HRAS,BCR,MAP2K1,GRB2,STAT5A,STAT5B,MAP2K4,RAF1,BAD,STAT1,AKT1,FOS,CRKL,SOS1,JUN,MAP3K1,MAPK3,PIK3CA,MAPK8,JAK2,MYC,PIK3R1 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html PIK3CG,HRAS,MAP2K1,GRB2,RAF1,ELK1,IRS1,SRF,PTPN11,FOS,CSNK2A1,SLC2A4,INS,SOS1,JUN,MAPK3,PIK3CA,MAPK8,SHC1,INSR,PIK3R1,RASA1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html TLN1,CAV1,HRAS,GRB2,PPP1R12B,BCAR1,ITGB1,PXN,SRC,VCL,PTK2,SOS1,RHOA,SHC1,ZYX,CSK,RAPGEF1,CAPNS2,BCR,CAPNS1,ACTA1,ROCK1,MAP2K1,MAP2K2,ITGA1,RAF1,ACTN1,ACTN2,ACTN3,CAPN1,MAPK1,CRKL,TNS1,FYN,JUN,MAPK3,RAP1A,MAPK8 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html F11,COL4A4,KNG1,F12,COL4A3,COL4A2,F10,COL4A1,F8,F9,SERPING1,COL4A6,COL4A5,PROC,FGG,F5,FGA,FGB,KLKB1,F2,SERPINC1,PROS1,F2R +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html TRAF2,HRAS,TNF,NFKBIA,FASLG,NFKB1,DAXX,FOS,TNFRSF1A,TNFRSF1B,MAP3K5,MAP3K1,PPP2CA,BCL2,HOXA7,FAS,EGF,MAP2K7,MAP2K6,CHUK,CEBPA,EGFR,PRKCA,MAP2K1,MAP2K3,RELA,MAP2K4,RAF1,PRKCH,PRKCG,PRKCE,PRKCD,PRKCB,MAPK1,PRKCQ,SP1,ETS1,MAPK13,ETS2,MAPK14,JUN,RIPK1,MAPK3,MAPK8,IKBKB,MAP3K14 +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html PTPRC,CD3G,CD3D,HLA-DRB1,CD3E,CD247,TRA@,TRB@,FYN,LCK,ZAP70,CD4,HLA-DRA +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html C8A,C7,MBL2,C9,MASP1,C4A,MASP2,C4B,C3,C6,C5,C2 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html HRAS,GRB2,BCAR1,SRC,PTK2B,SOS1,MAP3K1,RAC1,SHC1,PAK1,PRKCA,MAP2K1,MAP2K2,MAP2K3,MAP2K4,RAF1,CYCSP35,PRKCB,MAPK1,CRKL,GNAQ,PLCG1,MAPK14,JUN,MAPK3,CALM3,MAPK8,CALM2,CALM1 +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html EGFR,THRA,THRB,MAP2K1,RXRA,MAPK14,MAP3K1,RARA,ZBTB16,EGF,NCOR2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MEF2C,HRAS,MEF2A,TGFB3,RPS6KB2,NFKB1,RPS6KB1,DAXX,TGFB1,TGFB2,MAP3K7,FOS,MAX,MAP3K6,MAP3K5,MAP3K4,PAK2,MAP3K9,MAP3K8,SHC1,PAK1,RAPGEF2,MYC,MAP2K7,CHUK,MAP2K6,MAP2K5,BRAF,RELA,MAP4K3,MAPK1,MAP4K4,MAP4K5,MAPK6,MAPK4,RIPK1,JUN,MAPK3,MAP3K10,MAPK9,MAPK8,MAPK7,MAP3K14,MAP3K13,MAP3K12,MAP3K11,TRAF2,GRB2,MAPKAPK5,MKNK2,MAP4K2,MAPKAPK3,NFKBIA,MKNK1,ELK1,MAP4K1,MAPKAPK2,ATF2,MAP3K3,MAP3K2,MAP3K1,RAC1,CEBPA,MAP2K1,MAP2K2,TGFBR1,MAP2K3,CREB1,MAP2K4,RAF1,MAPK11,MAPK10,STAT1,TRADD,RPS6KA5,MEF2D,RPS6KA3,RPS6KA4,LOC729991-MEF2B,SP1,MAPK12,RPS6KA1,MAPK13,RPS6KA2,MAPK14,ARAF,IKBKB +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html HRAS,TLN1,MYL2,CXCR3,ITGB1,PXN,PRKACG,PRKAR2B,PTK2,PRKAR2A,EZR,PRKACB,EGF,EGFR,CAPNS2,CAPNS1,ACTA1,ITGA1,CAPN2,CAPN1,MAPK1,PRKAR1B,PRKAR1A,MAPK3,MYLK +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html ACOX1,PPARA,PTGS2,PDGFA,STAT5A,EHHADH,STAT5B,CITED2,PRKACG,PRKAR2B,PRKAR2A,APOA2,APOA1,PIK3CA,NOS2,PRKACB,MYC,NR2F1,PIK3CG,PRKCA,HSP90AA1,RXRA,RELA,NR0B2,RB1,PPARGC1A,PRKCB,NRIP1,MAPK1,NCOA1,CD36,EP300,JUN,MAPK3,MED1,ME1,TNF,FRA8B,NFKBIA,HSPA1A,MRPL11,INS,FAT1,HSD17B4,PIK3R1,NR1H3,CPT1B,LPL,CREBBP,SRA1,DUSP1,SP1,PRKAR1B,PRKAR1A,FABP1,NCOR1,NCOR2,DUT +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html E2F1,HRAS,E2F4,RBL2,CSF1,RBL1,HDAC5,FOS,SIN3B,HDAC2,SIN3A,ETS1,ETS2,JUN,DDX20,NCOR2,ETV3,CSF1R +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html ICAM1,ITGAL,SELP,CD44,SELL,PECAM1,ITGB2,ITGA4,SELE,ITGB1,ITGAM +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html PDK2,MKNK1,RPS6KB1,FKBP1A,RPS6,PTEN,EIF4B,EIF4G1,AKT1,EIF4G2,EIF4EBP1,PDPK1,EIF3A,EIF4G3,EIF4E,TSC1,EIF4A2,PPP2CA,EIF4A1,TSC2,PIK3CA,MTOR,PIK3R1 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html ADCY1,HRAS,MAP2K1,GRB2,RAF1,BAD,IRS1,PRKACG,AKT1,MAPK1,PRKAR2B,IGF1R,PRKAR2A,YWHAH,RPS6KA1,SOS1,PRKAR1B,MAPK3,PRKAR1A,PIK3CA,SHC1,PRKACB,PIK3R1 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html LDB1,CREBBP,FZD1,LEF1,TRRAP,DVL1,CTNNB1,WNT1,EP300,HDAC1,GSK3B,PITX2,APC,MED1,AXIN1 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html PIK3CG,HRAS,MAP2K1,GRB2,RAF1,ELK1,FOS,CSNK2A1,PLCG1,SOS1,JUN,MAPK3,PIK3CA,MAPK8,SHC1,NGFR,PIK3R1,NGF +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html VIP,NFKBIA,NFKB1,VIPR2,PRKACG,PRKAR2B,PRKAR2A,MAP3K1,PPP3CB,PPP3CC,PRKACB,PPP3CA,NFATC2,MYC,CHUK,NFATC1,EGR3,EGR2,RELA,CYCSP35,GNAQ,PLCG1,PRKAR1B,PRKAR1A,CALM3,CALM2,CALM1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html MEF2C,HRAS,EDN1,RPS6KB1,AKT1,PRKACG,PRKAR2B,PRKAR2A,GATA4,PIK3CA,PRKACB,FGF2,PIK3CG,CAMK1G,ACTA1,MYH2,CYCSP35,MAPK1,CAMK4,MAPK3,F2,CAMK1,MAPK8,NPPA,CTF1,FKBP1A,CALR,LIF,HAND1,HAND2,AGT,PPP3CB,PPP3CC,NFATC4,PPP3CA,NFATC2,NKX2-5,NFATC3,PIK3R1,NFATC1,CSNK1A1,MAP2K1,CREBBP,RAF1,IGF1,ELSPBP1,MAPK14,GSK3B,PRKAR1B,PRKAR1A,HBEGF,CALM3,CALM2,CALM1 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html TNF,IL8,TGFBR1,MAP2K3,RELA,TGFBR2,CREBBP,TLR2,SMAD4,NFKBIA,SMAD3,NFKB1,MAPK11,NR3C1,MAP3K7,EP300,MYD88,DUSP1,MAPK14,IL1B,MAP3K14,IKBKB,CHUK,MAP2K6 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html IRAK1,IL1R1,TNF,RELA,NFKBIA,NFKB1,TLR4,FADD,TAB1,TRADD,MAP3K7,TNFRSF1A,TNFRSF1B,MYD88,RIPK1,MAP3K1,IKBKG,MAP3K14,TNFAIP3,IKBKB,TRAF6,CHUK,IL1A +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PRKCA,NOS1,GRIN1,GRIN2A,CYCSP35,PRKCB,PRKACG,PRKAR2B,PRKAR2A,GRIN2B,GRIN2C,PRKAR1B,GRIN2D,PRKAR1A,PPP3CB,DLG4,CALM3,PPP3CC,PPP3CA,PRKACB,CALM2,CALM1 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html CD3G,CD3D,CD3E,CD247,CXCR3,IL12RB2,TYK2,STAT4,IL12RB1,CCR5,IFNG,IL12A,CD2,CD4,JAK2,IL12B,NOS2 +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html KAT2B,RXRA,TBP,GTF2B,POLR2A,GTF2E1,HDAC3,NCOA1,NCOA2,NCOA3,GTF2A1,GTF2F1,RARA,ERCC3,NCOR2 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html PPARA,PPARD,IDDM11,ABCB11,PPARG,ABCB1,CYP2E1,NR0B2,CYP1A2,ABCB4,NR1I3,ABCC3,RARA,NR1H4,NR1H3 +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html PRKCA,MAFG,FXYD2,MAFF,CREB1,KEAP1,MAFK,PRKCB,FOS,MAPK1,JUN,MAPK14,MAPK8 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html HMGN1,MEF2C,TRAF2,MEF2A,HRAS,GRB2,MAPKAPK5,TGFB3,ELK1,MKNK1,MAPKAPK2,DAXX,TGFB1,TGFB2,ATF2,MAP3K7,CDC42,MAX,MAP3K5,MAP3K9,MAP3K1,RAC1,SHC1,RAPGEF2,MYC,MAP2K6,CREB1,TGFBR1,MAP2K4,STAT1,DDIT3,TRADD,RPS6KA5,MEF2D,PLA2G4A,LOC729991-MEF2B,MAPK14,RIPK1,HSPB2,HSPB1 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html E2F1,TP53,RB1,CDK4,TIMP3,CDK2,ATM,CCNE1,CCND1,CDKN1A,BCL2,BAX,PCNA,MDM2,APAF1,GADD45A +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html HRAS,PDGFA,GRB2,STAT5A,STAT5B,ELK1,SRF,STAT6,FOS,STAT4,CSNK2A1,SOS1,MAP3K1,PIK3CA,SHC1,PIK3R1,RASA1,PIK3CG,PRKCA,MAP2K1,MAP2K4,RAF1,STAT1,STAT3,PRKCB,STAT2,PLCG1,JUN,MAPK3,PDGFRA,JAK1,MAPK8 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html PRKCA,CCL2,CYCSP35,CXCL12,CCL4,PRKCB,FOS,GNAQ,CCR5,PLCG1,PTK2B,CXCR4,JUN,MAPK14,CALM3,MAPK8,CALM2,CALM1 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html PRKCZ,ARHGEF2,LYN,PFKL,PFKP,EEA1,RPS6KB1,BAD,PFKM,JAG1,PRKCE,VAV2,BTK,AKT1,PDPK1,ARF1,PLCG1,AP2A1,GSK3A,GSK3B,RAC1,RAB5A,AP2M1 +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html RAP2B,PRKACG,PRKAR2B,PTGER1,ADRB2,ADCY1,PRKAR2A,PLCE1,PRKAR1B,PRKAR1A,GNAS,PRKACB +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html ADCY1,PDGFA,GNAI1,ITGB3,SRC,ASAH1,SPHKAP,AKT1,PTK2,S1PR1,ITGAV,RAC1,RHOA,PIK3CA,PLCB1,PIK3R1,PRKCA,PIK3CG,SPHK1,PRKCB,MAPK1,GNGT1,GNB1,MAPK3,PDGFRA,SMPD1,SMPD2 +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html EGR1,MAPK1,CDK5R1,HRAS,MAP2K1,MAP2K2,MAPK3,RAF1,NGFR,CDK5,NGF +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html GNA13,MYL7,MYL2,PPP1R12B,GNA12,ARHGAP5,PLCB1,ARHGEF4,PRKCA,ARHGEF3,ARHGEF2,ARHGEF1,ROCK1,ARHGEF7,ARHGEF18,ARHGEF6,ARHGEF19,ARHGEF5,ARHGEF16,ARHGEF17,PKN1,ARHGEF9,ARHGEF15,ARHGEF12,ARHGEF10,ARHGEF11,PRKCB,GNGT1,GNAQ,GNB1,MYLK +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html COL4A4,PLAT,F11,COL4A3,COL4A2,COL4A1,F9,PLG,COL4A6,COL4A5,APP,F2,SERPINE1,PLAU +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html HNF1A,BTRC,FZD1,DLL1,DVL1,CTNNB1,WNT1,NOTCH1,PSEN1,GSK3B,ADAM17,RBPJ,AXIN1,APC +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html UBE2A,UBE3A,PSMA7,PSMA2,PSMB5,PSMA1,PSMB4,PSMB7,PSMB6,PSMB1,PSMA6,PSMA5,UBA1,PSMA4,PSMB3,PSMA3,PSMB2,RPN1,RPN2 +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html CDK1,PCNT,PRKAG1,PKN1,AKAP9,NUP85,PRKCE,PRKACG,PRKAR2B,PRKAR2A,PPP1CA,PPP2CA,MAP2,RHOA,PRKACB +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html PDK2,GRB2,BCAR1,FASLG,FOXO3,PTEN,ITGB1,AKT1,MAPK1,PTK2,PDPK1,CDKN1B,SOS1,MAPK3,ILK,PIK3CA,SHC1,PIK3R1 +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB2A,RAB3A,RAB7A,RAB8A,RAB9A,ACTA1,RAB4A,RAB5A,RAB11A,RAB6A,RAB1A,RAB27A +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html PIK3CG,PLD1,CDK5R1,MYL2,NCF2,LIMK1,RALBP1,PPP1R12B,WASF1,ARFIP2,TRIO,RPS6KB1,CDK5,VAV1,MAP3K1,RAC1,CFL1,PDGFRA,CHN1,PIK3CA,PAK1,PIK3R1,MYLK +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html PIK3CG,PLD1,HRAS,MAP2K1,RALBP1,RELA,RAF1,ELK1,NFKB1,BAD,BCL2L1,FOXO4,RALGDS,AKT1,CDC42,CASP9,RAC1,MAPK3,RHOA,PIK3CA,RALA,PIK3R1,CHUK +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html KLRC4,PTPN6,KLRC2,KLRC3,MAP2K1,IL18,HLA-A,VAV1,ITGB1,B2M,LAT,PTK2B,RAC1,MAPK3,PIK3CA,PAK1,KLRD1,PIK3R1,KLRC1,SYK +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html CDK1,TP53,CHEK1,RB1,MYT1,CDK4,CDC25C,CDK2,WEE1,ATM,CDC25B,YWHAH,MAPK14 +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAG3,YWHAZ,PPP2R3B,PPP2R3A,PPP2R5B,PPP2R5A,PPP2R5D,PRKAG1,PPP2R5C,PRKAG2,PRKACG,PRKAR2B,PRKAR2A,PPP2CA,PPP2CB,FASN,PRKAA1,PRKACA,PRKAA2,PRKACB,PPP2R2B,PPP2R2C,PPP2R2D,PPP2R1B,PPP2R1A,PRKAB2,ACACA,PRKAB1,MLXIPL,YWHAB,YWHAA,YWHAE,YWHAD,YWHAG,YWHAH,GCK,PRKAR1B,MLX,PKLR,PRKAR1A,YWHAQ,PPP2R5E,PPP2R4,PPP2R2A +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html ADCY1,KITLG,KIT,BCL2L1,PRKACG,AKT1,IGF1R,PRKAR2B,PRKAR2A,BCL2,CSF2RB,PIK3CA,PRKACB,PIK3R1,PIK3CG,IL3,IGF1,BAD,MAPK1,YWHAH,RPS6KA1,BAX,PRKAR1B,PRKAR1A,MAPK3,IL3RA +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html DRD1,CDK5R1,DRD2,GRM1,CDK5,PRKACG,PRKAR2B,PRKAR2A,PPP1CA,CSNK1D,PPP1R1B,PRKAR1B,PPP2CA,PRKAR1A,PRKACB,PPP3CA,PLCB1 +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html PPP1CA,EIF2AK1,EIF2S1,GSK3B,EIF2S2,EIF5,EIF2S3,EIF2AK2,EIF2AK3,EIF2AK4,EIF2B5 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html PRKCA,PDK2,MKNK1,RPS6KB1,IRS1,PTEN,PRKCB,EIF4G1,AKT1,MAPK1,EIF4G2,EIF4EBP1,PDPK1,EIF4G3,EIF4E,EIF4A2,MAPK14,MAPK3,EIF4A1,PIK3CA,PABPC1,MTOR,PIK3R1,GHR +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html CSF3,IL4,CSF2,IL3,IL6,IL5,CD8A,IL8,IL7,CSF1,IL9,IL11,CD4,IL2,EPO +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html E2F1,CKS1B,SKP2,NEDD8,RB1,SKP1,CDK2,RBX1,CCNE1,CDKN1B,UBE2M,CUL1,TFDP1 +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html MEF2C,PPARA,MEF2A,ESRRA,CAMK1G,CAMK2G,CYCSP35,PPARGC1A,HDAC5,MEF2D,YWHAH,LOC729991-MEF2B,CAMK4,SLC2A4,PPP3CB,CAMK2D,CAMK1,CALM3,PPP3CC,CAMK2B,PPP3CA,CAMK2A,CALM2,CALM1 +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html HRAS,SP100,TNF,CREBBP,PML,TP53,FASLG,PAX3,RB1,SIRT1,DAXX,TNFRSF1A,SUMO1,TNFRSF1B,PRAM1,RARA,FAS +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html CREB1,CREM,OPRK1,KCNIP3,POLR2A,PRKACG,PRKAR2B,FOS,PRKAR2A,JUN,PRKAR1B,PRKAR1A,MAPK3,PRKACB +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html PRKAG3,LEP,PRKAG1,LEPR,PRKAG2,PRKAB2,ACACA,PRKAB1,PRKAA1,PRKAA2,CPT1A +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html TLN1,MYL2,DIAPH1,PPP1R12B,PIP5K1B,ARPC4,PIP5K1A,ARPC5,SRC,VCL,ARHGAP4,ACTR3,PFN1,ACTR2,ARHGAP6,ARHGAP5,ARPC3,ARPC2,GSN,ARHGAP1,RHOA,ARHGEF1,ROCK1,LIMK1,BAIAP2,ARHGEF5,ARHGEF11,ARPC1A,ARPC1B,CFL1,OPHN1,MYLK +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html PRKACG,GNA13,PRKAR2B,PRKAR2A,PRKAG1,GNA12,RHOA,LPAR3,AKAP13,LPAR2,LPAR1,PRKACB +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html NBN,MRE11A,HUS1,TP53,TREX1,BRCA2,RAD9A,CHEK1,ATR,CHEK2,RAD50,ATM,BRCA1,RAD51,RAD1,FANCD2,FANCE,FANCF,FANCG,RAD17,FANCC +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html EGFR,PRKCA,HRAS,RELA,EDN1,NFKB1,PRKCB,EDNRA,FOS,AGTR1,EDNRB,PLCG1,JUN,AGT,RHOA,ADAM12,EGF,MYC +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html PIK3CG,EGFR,IL6,HRAS,ERBB4,MAP2K1,GRB2,GRIP1,ERBB3,IL6ST,ESR1,RAF1,IL6R,STAT3,MAPK1,EP300,SOS1,MAPK3,PIK3CA,SHC1,CARM1,PIK3R1 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html PIK3CG,MEF2C,HRAS,MEF2A,GRB2,CREB1,AKT1,MAPK1,MEF2D,LOC729991-MEF2B,RPS6KA1,PLCG1,NTRK1,MAPK3,PIK3CA,SHC1,MAPK7,PIK3R1 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html HRAS,HNF1A,ROCK1,ACTA1,MAP2K1,DIAPH1,MAP2K2,LIMK1,MAP4K2,RAF1,MAL,SRF,MAPK1,CDC42,MAP3K1,RAC1,MAPK3,RHOA,MAPK8 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html PRKCA,CAPNS2,CAPNS1,CYCSP35,CAPN2,TRA@,TRB@,PRKCB,MEF2D,HDAC2,EP300,HDAC1,CABIN1,PPP3CB,CALM3,PPP3CC,PPP3CA,NFATC2,CALM2,NFATC1,CALM1 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html BID,XIAP,AIFM1,DFFA,DFFB,CYCS,BCL2L1,BIRC3,BIRC2,BAK1,CASP6,CASP3,CASP9,ENDOG,CASP7,BCL2,BAX,CASP8,DIABLO,BIK,APAF1 +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html PIK3CG,FASLG,FOXO3,BAD,SRC,AKT1,PTK2,MUSK,YWHAH,PTK2B,RAPSN,PIK3CA,CHRNB1,PIK3R1,TERT,CHRNG +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html SEPT5,SUMO1,SNCAIP,GPR37,UBE2G1,UBE2G2,SNCA,UBE2F,UBE2L6,PARK2,UBE2L3,UBE2E2 +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html ARPC4,ARPC5,ARPC1A,ACTR3,CDC42,ACTR2,ARPC1B,ARPC3,ARPC2,RAC1,PDGFRA,RHOA,PIK3CA,WASL,PAK1,PIK3R1 +BIOCARTA RANMS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANMS_PATHWAY.html NUMA1,RAN,KIF15,TPX2,AURKA,RANBP1,RANGAP1,RCC1,KPNA2,KPNB1 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html MAPK1,GNGT1,ADCY1,MAP2K1,MAP2K2,GNB1,ARRB1,MAPK3,RAF1,GNAS,PLCB1,DNM1 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html IL4,IL2RA,CD3G,CD3D,CD3E,TGFBR1,TGFBR2,CD247,TGFB3,SMAD4,SMAD3,TRA@,TGFB1,TRB@,TGFB2,IFNG,TGFBR3,TOB2,IL2,TOB1,CD28 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html HRAS,ADCY1,MAP2K1,MAP2K2,HCK,RAF1,SRC,MAPK1,GNGT1,ARRB1,GNB1,MAPK3,GNAS,PLCB1,DNM1 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CSF2,CCL3,CCR1,TGFB3,CXCR3,CCL4,TGFB1,TGFB2,IL12RB2,IL12RB1,CXCR4,IL4R,IFNG,CD4,IFNGR2,IFNGR1,CD28,IL4,IL18R1,IL5,CCR7,CCR5,CD40LG,CCR4,CCR3,IL12A,IL12B,IL2 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IL1R1,TNF,TOLLIP,TGFB3,NFKBIA,NFKB1,TGFB1,TGFB2,MAP3K7,IRAK3,IFNA1,MYD88,MAP3K1,IL1RAP,IL1B,TRAF6,MAP2K6,IL1A,CHUK,IRAK2,IRAK1,IL6,RELA,MAP2K3,IL1RN,TAB1,ECSIT,IFNB1,MAPK14,JUN,MAPK8,IKBKB,MAP3K14 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html HRAS,GRB2,ELK1,MAP4K1,ITGB1,PTEN,SRC,PXN,FOS,PTK2,DOCK1,PTK2B,SOS1,GAB1,PIK3CA,PAK1,RAPGEF1,PIK3R1,RASA1,PIK3CG,ACTA1,MAP2K1,MAP2K2,MET,ITGA1,RAF1,HGF,STAT3,PTPN11,MAPK1,CRKL,JUN,MAPK3,RAP1A,MAPK8,RAP1B,CRK +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html HRAS,ADCY1,GNAI1,ELK1,PRKACG,FOS,PRKAR2B,PRKAR2A,PPP3CB,PPP3CC,NFATC4,PRKACB,PPP3CA,NFATC2,NFATC3,NFATC1,PRKCA,MAP2K1,CREB1,RAF1,CYCSP35,PRKCB,GNGT1,RPS6KA3,PLCG1,GNAQ,GNB1,PRKAR1B,JUN,MAPK3,PRKAR1A,CALM3,GNAS,CALM2,CALM1 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html PDK2,INPPL1,EIF2S3,IGF1,RPS6KB1,RPS6,PTEN,AKT1,IGF1R,EIF4EBP1,PDPK1,EIF4E,GSK3B,EIF2S1,PPP2CA,EIF2S2,PIK3CA,MTOR,PIK3R1,EIF2B5 +BIOCARTA SODD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SODD_PATHWAY.html TNFRSF1A,TRAF2,BAG4,TNFRSF1B,TNF,RIPK1,CASP8,FADD,BIRC3,TRADD +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html GLI2,GLI3,SHH,SUFU,GLI1,PRKACG,PRKAR2B,SMO,PRKAR2A,DYRK1B,PRKAR1B,GSK3B,DYRK1A,PRKAR1A,PTCH1,PRKACB +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html CCNB1,CDK1,XPO1,MNAT1,CCNH,PTCH1,CDK7,CDC25C,CDC25A,SHH,CDC25B +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html PTPRB,EGFR,HRAS,MAP2K1,GRB2,CBL,RAF1,SRC,SPRY4,SPRY3,MAPK1,SPRY2,SPRY1,SOS1,MAPK3,SHC1,EGF,RASA1 +BIOCARTA BARRESTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_PATHWAY.html GNGT1,PPARA,ADCY1,AP2A1,GNB1,ARRB1,GNAS,PLCB1,DNM1,AP2M1 +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CDK1,CD3G,CD3D,CD3E,CAMK2G,CD247,CCNB1,PRKACG,PRKAR2B,PRKAR2A,CAMK4,MAPK13,PRKAR1B,PRKAR1A,CAMK2D,CD2,CAMK2B,PRKACB,CAMK2A +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html TNF,ACTA1,CYCS,MAPKAPK3,FASLG,MAPKAPK2,DAXX,CASP3,CASP9,BCL2,HSPB2,HSPB1,FAS,APAF1,IL1A +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html HRAS,GRB2,CD247,ELK1,NFKBIA,NFKB1,TRB@,FOS,MAP3K1,SOS1,RAC1,PPP3CB,ZAP70,PIK3CA,PPP3CC,NFATC4,SHC1,PPP3CA,NFATC2,NFATC3,PIK3R1,RASA1,NFATC1,PIK3CG,PTPN7,PRKCA,CD3G,CD3D,MAP2K1,CD3E,RELA,MAP2K4,RAF1,CYCSP35,TRA@,VAV1,PRKCB,LAT,PLCG1,FYN,JUN,LCK,MAPK3,CALM3,MAPK8,CALM2,CALM1 +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html PTPRC,ITGAL,ICAM1,CD3G,CD3D,CD8A,CD3E,CD247,ITGB2,TRA@,TRB@,THY1,CD2,CD28 +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html PTPRC,ITGAL,ICAM1,CD3G,CD3D,CD3E,CD247,ITGB2,TRA@,TRB@,THY1,CD2,CD4,CD28 +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html TRAF2,RELA,TNFRSF13B,TNFRSF13C,TNFRSF17,NFKB1,TNFSF13,TNFSF13B,MAPK14,MAPK8,MAP3K14,TRAF6,TRAF5,CHUK,TRAF3 +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html XRCC5,EGFR,PRKCA,HSP90AA1,XRCC6,TP53,RB1,POLR2A,AKT1,IGF1R,KRAS,PPP2CA,BCL2,TEP1,TNKS,MYC,TERT,TERF1 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html MAP2K1,SMAD7,TGFBR1,CREBBP,TGFBR2,TGFB3,SMAD4,SMAD3,SMAD2,CDH1,TAB1,TGFB1,TGFB2,MAP3K7,EP300,ZFYVE9,MAPK3,SKIL,APC +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IL4,IL18R1,IL2RA,HLA-DRB1,IL18,CD40,IL12RB2,CD86,IL12RB1,CD40LG,IL4R,IFNG,IL12A,IL12B,IFNGR2,IFNGR1,IL2,HLA-DRA,CD28 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html IL4,TRAF2,RELA,NFKBIA,NFKB1,ATF2,TNFRSF9,MAP3K5,MAP4K5,JUN,MAPK14,MAP3K1,IFNG,MAPK8,IKBKB,CHUK,IL2 +BIOCARTA KREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KREB_PATHWAY.html SDHA,ACO2,CS,IDH2,SUCLA2,OGDH,MDH1,FH +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html ITK,CD3G,HLA-DRB1,CD3D,CD3E,GRB2,CD247,CTLA4,TRA@,TRB@,PTPN11,CD86,CD80,ICOS,LCK,PIK3CA,PIK3R1,ICOSLG,IL2,HLA-DRA,CD28 +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html PIK3CG,HRAS,IGF1,FOXO3,SOD1,SOD3,SOD2,AKT1,IGF1R,GH1,PIK3CA,SHC1,CAT,PIK3R1,GHR +BIOCARTA SARS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SARS_PATHWAY.html LDHC,LDHB,LDHA,EIF4E,CKM,MAPK14,ANPEP,GPT,NCL,FBL +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html GNA13,F2RL3,ADCY1,GNAI1,PPP1R12B,GNA12,MAP3K7,PTK2B,RHOA,PIK3CA,PLCB1,PIK3R1,PIK3CG,ARHGEF4,PRKCA,ARHGEF3,ARHGEF2,ARHGEF1,ROCK1,ARHGEF7,ARHGEF6,ARHGEF18,ARHGEF19,ARHGEF5,ARHGEF16,ARHGEF17,ARHGEF9,ARHGEF15,ARHGEF12,ARHGEF10,ARHGEF11,PRKCB,GNGT1,GNAQ,GNB1,F2,F2R +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html TRAF2,TNF,MAP4K2,NFKBIA,NFKB1,CRADD,ATF1,TNFRSF1A,MAP3K1,CASP2,CHUK,LTA,MAP2K6,RELA,MAP2K3,MAP2K4,TANK,TRADD,MAPK14,JUN,RIPK1,IKBKG,MAPK8,MAP3K14,IKBKB +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html TRAF2,TNF,LMNB1,LMNB2,PRKDC,CRADD,MAP3K7,BAG4,TNFRSF1A,CASP3,PAK2,MAP3K1,CASP8,PAK1,CASP2,ARHGDIB,MADD,DFFA,DFFB,MAP2K4,LMNA,FADD,RB1,TRADD,JUN,RIPK1,MAPK8,PARP1,SPTAN1 +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html TRAF1,IKBKAP,TRAF2,RELA,NFKBIA,NFKB1,TANK,TNFRSF1B,DUSP1,MAP3K1,RIPK1,IKBKG,MAP3K14,TNFAIP3,IKBKB,LTA,CHUK,TRAF3 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html PPARA,TOLLIP,TLR2,TIRAP,PGLYRP1,NFKBIA,TLR3,ELK1,NFKB1,TLR4,TLR6,TLR7,TLR9,MAP3K7,FOS,MYD88,MAP3K1,TRAF6,MAP2K6,CHUK,IRAK1,TLR10,LY96,RELA,MAP2K3,MAP2K4,TAB1,ECSIT,TAB2,MAPK14,JUN,IKBKG,MAPK8,IKBKB,EIF2AK2,MAP3K14,CD14 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html PIK3CG,PRKCA,HRAS,MAP2K1,GRB2,STAT5A,STAT5B,RAF1,STAT1,STAT3,PRKCB,FOS,CSNK2A1,PLCG1,SOS1,JUN,MAPK3,PIK3CA,SHC1,JAK2,MPL,PIK3R1,RASA1,THPO +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html ADCY1,HRAS,GRB2,CAMK2G,PRKACG,AKT1,PRKAR2B,PRKAR2A,SOS1,RAC1,CAMK2D,PIK3CA,CAMK2B,PRKACB,CAMK2A,PIK3R1,PRKCA,CREB1,PRKCB,RPS6KA5,MAPK1,RPS6KA1,MAPK14,PRKAR1B,PRKAR1A,MAPK3,GNAS +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html CREB1,RXRA,CREBBP,PRKACG,PRKAR2B,PRKAR2A,EP300,NCOA3,PRKAR1B,PRKAR1A,RARA,PRKACB,CARM1 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html PIK3CG,EGFR,HRAS,GRB2,CYCS,BAD,ITGB1,CTNNB1,AKT1,MAPK1,GH1,PTK2,CASP9,SOS1,MAPK3,RHOA,PIK3CA,SHC1,APAF1,PIK3R1,GHR +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html AKT1,PRKCA,HRAS,PLCG1,GRB2,SOS1,NTRK1,PIK3CA,SHC1,PIK3R1,NGF,PRKCB +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html PIK3CG,E2F1,POLR1D,TBX2,TP53,POLR1A,POLR1C,RB1,POLR1B,CDKN2A,RAC1,MDM2,PIK3CA,ABL1,MYC,PIK3R1,TWIST1 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html TLN1,CAPNS2,CAPNS1,ACTA1,ITGA1,ACTN1,ACTN2,ACTN3,ITGB3,ITGB1,PXN,SRC,CAPN1,PTK2,EZR,RAC1,RHOA,SPTAN1 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html HRAS,PXN,ARNT,PTK2,EIF1AX,PIK3CA,EIF1,SHC1,NOS3,EIF2B2,EIF2B3,PIK3R1,EIF2B4,EIF2B5,PIK3CG,PRKCA,FLT1,VHL,FLT4,ELAVL1,EIF2S3,EIF2B1,PRKCB,KDR,HIF1A,PLCG1,EIF2S1,EIF2S2,VEGFA +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html COL4A4,P4HB,COL4A3,SLC23A1,COL4A2,COL4A1,SLC23A2,SLC2A3,SLC2A1,COL4A6,COL4A5 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html PPARD,BTRC,CTNNB1,MAP3K7,WNT1,CSNK2A1,PPP2CA,FRAT1,MYC,APC,AXIN1,CSNK1A1,CTBP1,NLK,CREBBP,FZD1,SMAD4,LEF1,TLE1,TAB1,DVL1,CCND1,CSNK1D,HDAC1,GSK3B,WIF1 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html WASF3,ACTA1,WASF1,WASF2,ABI2,ARPC4,ARPC5,PSMA7,NCKAP1,ARPC1A,ACTR3,ACTR2,ARPC1B,ARPC3,ARPC2,NCK1,NTRK1,PIR,RAC1,WASL +PWCOMMONS mRNA Editing NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,PABPC1,CSTF2,CSTF1,CSTF3,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,PCF11,CLP1,CPSF7,NUDT21,ETF1,GSPT2,EIF5B,EEF2,ADAR,ADARB1, +PWCOMMONS mRNA Editing: C to U Conversion NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,PABPC1,CSTF2,CSTF1,CSTF3,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,PCF11,CLP1,CPSF7,NUDT21,ETF1,GSPT2,EIF5B,EEF2, +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF4H,PABPC1,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL31,RPL35A,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL32,RPL3L,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL19,RPL23,RPL41,RPL7,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL36A,RPL38,RPL9,RPLP0,UBA52,RPL37A,RPL12, +PWCOMMONS Translation initiation complex formation EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,PABPC1,RPL13A,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL31,RPL35A,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL32,RPL3L,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL19,RPL23,RPL41,RPL7,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL36A,RPL38,RPL9,RPLP0,UBA52,RPL37A,RPL12, +PWCOMMONS Formation of the Editosome NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,PABPC1,CSTF2,CSTF1,CSTF3,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,PCF11,CLP1,CPSF7,NUDT21,ETF1,GSPT2,EIF5B,EEF2, +PWCOMMONS mRNA Editing: A to I Conversion ADARB1, +PWCOMMONS Formation of editosomes by ADAR proteins ADARB1, +PWCOMMONS C6 deamination of adenosine ADARB1, +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2, +PWCOMMONS mRNA Splicing NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,PABPC1,CSTF2,CSTF1,CSTF3,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,PCF11,CLP1,CPSF7,NUDT21,ETF1,GSPT2,EIF5B,EEF2,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,SNRNP70,SNRPA, +PWCOMMONS mRNA Splicing - Major Pathway EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,PABPC1,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,PRPF4,PHF5A,SNRPB2,SF3B5,SNRPA1,SF3B14,SF3B2,SF3B3,SF3B1,SF3B4,SF3A3,SF3A1,SF3A2,ETF1,GSPT2,SNRNP70,SNRPA,EIF5B,EEF2, +PWCOMMONS mRNA 3'-end processing EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,PAPOLA,PABPN1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,CSTF2,CSTF1,CSTF3,EEF2, +PWCOMMONS mRNA Splicing - Minor Pathway PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4, +PWCOMMONS Formation of the Early Elongation Complex TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,DLD,HADH,ALAD,CS,GCDH,ECHS1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,FH,INS,SYT5, +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase SDHC,SDHD,SDHB,SDHA,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UROD,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,SUCLG1,SUCLA2,CYCS,CPOX,UROS,DLST,OGDH,DLD,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,FH,INS,SYT5,SUCLG2,KCNJ11, +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis GART,NT5C2,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXN,XDH,PAICS,CPS1,UPP1,ASS1,CMPK1,ADSL,ATIC,OAT,NP,GYS2,CAT,UMPS,UGDH,RRM2,RRM1,AMPD1,PRPS1,PPAT,ARG1,KCNJ11,AMPD3,GBE1,TXNRD1,DPYD,DPYS,AK1,PYCR1,VAMP2,NT5C1A,CTPS,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,NME2,OTC,AMPD2,INS,SYT5,SLC35D1,PFAS,GSR,ASL,UPB1, +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ TXN,GLRX,GMPS,HPRT1,TXNRD1,XDH,GUK1,IMPDH2,NP,NME2,NME1,CAT,RRM2,RRM1,GDA,GSR,IMPDH1, +PWCOMMONS De novo synthesis of IMP NT5C2,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXN,XDH,PAICS,ADSL,ATIC,NP,CAT,RRM2,RRM1,AMPD1,PPAT,KCNJ11,AMPD3,TXNRD1,AK1,VAMP2,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,NME2,AMPD2,INS,SYT5,PFAS,GSR, +PWCOMMONS Extension of Telomeres POLD4,POLD3,POLD2,POLD1,LIG1,DNA2,RPA1,RPA3,RPA2,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,POLE2,POLE,FEN1,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP,TERT,DKC1,RUVBL2,NHP2,RUVBL1,WDR79, +PWCOMMONS Telomere Extension By Telomerase DKC1,RUVBL2,LIG1,DNA2,PCNA,POLD4,POLD3,POLD2,POLD1,RPA1,RPA3,RPA2,RFC2,RFC1,RFC3,RFC5,RFC4,PRIM2,POLA1,PRIM1,POLA2,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP,FEN1,NHP2,RUVBL1,WDR79,POLE2,POLE, +PWCOMMONS Telomere C-strand synthesis initiation PCNA,POLD4,POLD3,POLD2,POLD1,DNA2,RPA1,RPA3,RPA2,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP,POLE2,POLE,FEN1, +PWCOMMONS Removal of the Flap Intermediate from the C-strand PCNA,POLD4,POLD3,POLD2,POLD1,RPA1,RPA3,RPA2,FEN1, +PWCOMMONS Polymerase switching on the C-strand of the telomere DNA2,PCNA,POLD4,POLD3,POLD2,POLD1,RPA1,RPA3,RPA2,RFC2,RFC1,RFC3,RFC5,RFC4,PRIM2,POLA1,PRIM1,POLA2,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP,FEN1, +PWCOMMONS Processive synthesis on the C-strand of the telomere DNA2,PCNA,POLD4,POLD3,POLD2,POLD1,RPA1,RPA3,RPA2,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP,FEN1, +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis POLD4,POLD3,POLD2,POLD1,LIG1,DNA2,RPA1,RPA3,RPA2,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,POLE2,POLE,FEN1,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP, +PWCOMMONS Packaging Of Telomere Ends HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP, +PWCOMMONS Recycling of eIF2:GDP EIF2B1,EIF2B3,EIF2B4,EIF2B2,EIF2S3,EIF2S2,EIF2S1,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27, +PWCOMMONS Steroid metabolism ACOT8,ABCB11,CYP39A1,CYP8B1,BAAT,HSD3B7,AKR1C4,HSD17B4,AMACR,SLC27A5,AKR1D1,CYP27A1,SLC27A2,CYP7A1,ACOX2,CH25H,CYP7B1,SLCO1B1,SLCO1B3,ALB,FABP6,ABCC3,SLC10A1,SLCO1A2,SLC10A2,GGPS1,EBP,SQLE,CYP11B1,LBR,MVK,CYP11B2,FDFT1,STAR,CYP21A2,CYP51A1,NSDHL,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,PMVK,SC5DL,SC4MOL,MVD,LSS,CYP17A1,HMGCS1,HSD11B1, +PWCOMMONS Metabolism of bile acids and bile salts ACOT8,ABCB11,CYP39A1,CYP8B1,BAAT,HSD3B7,AKR1C4,HSD17B4,AMACR,SLC27A5,AKR1D1,CYP27A1,SLC27A2,CYP7A1,ACOX2,CH25H,CYP7B1,SLCO1B1,SLCO1B3,ALB,FABP6,ABCC3,SLC10A1,SLCO1A2,SLC10A2, +PWCOMMONS Recycling of bile acids and salts BAAT,ABCB11,SLCO1B3,ALB,FABP6,ABCC3,SLC10A1,SLCO1A2,SLC10A2,SLC27A5, +PWCOMMONS Synthesis of bile acids and bile salts ACOT8,ABCB11,CYP39A1,CYP8B1,BAAT,HSD3B7,AKR1C4,HSD17B4,AMACR,SLC27A5,AKR1D1,CYP27A1,SLC27A2,CYP7A1,ACOX2,CH25H,CYP7B1, +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol ABCB11,CYP8B1,CYP7A1,BAAT,HSD3B7,AKR1C4,HSD17B4,AMACR,SLC27A5,AKR1D1,CYP27A1,SLC27A2,ACOX2, +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol ABCB11,CYP8B1,BAAT,HSD3B7,AKR1C4,HSD17B4,AMACR,CYP7B1,SLC27A5,AKR1D1,CYP27A1,SLC27A2,ACOX2, +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol ACOT8,ABCB11,CYP39A1,CYP8B1,BAAT,HSD3B7,AKR1C4,HSD17B4,AMACR,SLC27A5,AKR1D1,CYP27A1,SLC27A2, +PWCOMMONS Steroid hormone biosynthesis HSD11B1,CYP17A1,HSD17B3,CYP21A2,CYP11B1,CYP11A1,CYP11B2,STAR, +PWCOMMONS Glucocorticoid biosynthesis CYP19A1,CYP17A1,HSD17B3,CYP21A2,CYP11B1, +PWCOMMONS Mineralocorticoid biosynthesis CYP17A1,HSD17B3,CYP21A2,CYP11B1,CYP11B2, +PWCOMMONS Pregnenolone biosynthesis CYP19A1,HSD17B3,CYP11B1,CYP11B2,STAR,CYP17A1,CYP21A2, +PWCOMMONS Androgen biosynthesis CYP17A1,HSD17B3,CYP21A2,CYP11B1, +PWCOMMONS Cholesterol biosynthesis EBP,SQLE,CYP11B1,LBR,MVK,CYP11B2,FDFT1,STAR,CYP21A2,CYP51A1,NSDHL,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,PMVK,SC5DL,SC4MOL,MVD,LSS,CYP17A1,HMGCS1, +PWCOMMONS Transformation of lanosterol to cholesterol SC4MOL,DHCR24,EBP,DHCR7,TM7SF2,CYP51A1,LBR,NSDHL, +PWCOMMONS Amplification of signal from the kinetochores ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,MAD2L1,CDC20,NEK2,CDC2,CCNB1,MAD1L1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,MAD2L1,CDC20,NEK2,CDC2,CCNB1,MAD1L1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,MAD2L1,CDC20,NEK2,CDC2,CCNB1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components CDC20,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,NEK2,CDC2,CCNB1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Inhibition of HSL AKT2, +PWCOMMONS PI3K Cascade FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1,PDPK1, +PWCOMMONS PKB-mediated events FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1, +PWCOMMONS mTOR signalling FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1, +PWCOMMONS mTORC1-mediated signalling RPS6KB1,RPS6,EIF4G1,EEF2K,FRAP1,LST8,RHEB,EIF4EBP1,EIF4E,AKT2,PDE3B,TSC1, +PWCOMMONS S6K1-mediated signalling RPS6KB1,RPS6,EIF4G1,EEF2K,FRAP1,LST8,RHEB, +PWCOMMONS S6K1 signalling RPS6,EEF2K,EIF4G1,RPS6KB1, +PWCOMMONS Release of eIF4E EIF4E,RHEB,FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4G1,EEF2K,AKT2,PDE3B,TSC1, +PWCOMMONS Inhibition of TSC complex formation by PKB PDE3B,TSC1, +PWCOMMONS PDE3B signalling AKT2, +PWCOMMONS Activation of PKB PDE3B,PDPK1,TSC1, +PWCOMMONS vRNP Assembly IPO5, +PWCOMMONS Transport of Notch receptor precursor to golgi NOTCH3,NOTCH2,NOTCH1,ADAM10,PSENEN,HES1,FURIN, +PWCOMMONS Maturation of Notch precursor via proteolytic cleavage NOTCH3,NOTCH2,NOTCH1,ADAM10,PSENEN,HES1,FURIN, +PWCOMMONS Mature Notch receptor trafficks to plasma membrane NOTCH4,NOTCH1,NOTCH2,ADAM10,PSENEN,HES1, +PWCOMMONS Notch receptor binds with a ligand NOTCH3,NOTCH1,NOTCH2,HES1,ADAM10,PSENEN, +PWCOMMONS Receptor-ligand binding initiates the second proteolytic cleavage of Notch receptor NOTCH3,NOTCH1,NOTCH2,HES1,ADAM10,PSENEN, +PWCOMMONS A third proteolytic cleavage releases NICD NOTCH3,NOTCH1,HES1,NOTCH2,PSENEN, +PWCOMMONS NICD trafficks to nucleus NOTCH4,NOTCH1,HES1,NOTCH2, +PWCOMMONS Gab1 signalosome PIK3R1,GAB1,EGFR,EGF,PTPN11,PAG1,CSK,PXN, +PWCOMMONS Thrombin signalling through PARs F2RL3,F2RL2,F2,GNAQ,ARHGEF1,GNA13,PRKCA,MARCKS, +PWCOMMONS Thrombin signalling G-protein cascades ARHGEF1,GNA13,PRKCA,MARCKS, +PWCOMMONS Proteinase-activated receptor G (q) cascade GNAQ,MARCKS, +PWCOMMONS G alpha (q) signalling events GNAQ,MARCKS, +PWCOMMONS Proteinase-activated receptor G (12/13) cascade ARHGEF1,GNA13, +PWCOMMONS G alpha (12/13) signalling events GNA13, +PWCOMMONS Thrombin-mediated activation of PARs F2RL3,F2RL2,F2, +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS ERK2 activation MAPK1,MAP2K2,ATF1,CREB1, +PWCOMMONS E2F transcriptional targets at G1/S PLK1,CDK2,TFDP1,E2F1,CDC6,CUL1,BTRC,SKP1,PRIM2,POLA1,PRIM1,POLA2,PCNA,ORC6L,ORC3L,ORC4L,ORC5L,ORC1L,ORC2L,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,DHFR,CDT1,FBXO5,CDC25A,CDC2,CKS1B,RPA1,RPA2,RPA3,RPA4,CDC45L,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC7,DBF4,POLE2,POLE,TYMS,CCNH,CDK7,MNAT1,CCNB1,WEE1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,RFC2,RFC1,RFC3,RFC5,RFC4,RRM2,POLD4,POLD3,POLD2,POLD1,TK2,CCNA1,CCNE1, +PWCOMMONS Phosphorylation of proteins involved in G1/S transition by active Cyclin E:Cdk2 complexes CDK2, +PWCOMMONS Phosphorylation of Emi1 ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,PLK1,FBXO5,CUL1,BTRC,SKP1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC2,CCNB1, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,TXNRD1,AK1,VAMP2,NME2,NME1,RRM2,RRM1,INS,SYT5,GSR,KCNJ11, +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected pyrimidine APEX1,TDG,SMUG1,NTHL1, +PWCOMMONS Glutamate Binding, Activation of AMPA Receptors and Synaptic Plasticity NSF,AKAP5,EPB41L1,DLG1,DLG4,MDM2, +PWCOMMONS Trafficking of AMPA receptors NSF,AKAP5,EPB41L1,DLG1,DLG4,MDM2, +PWCOMMONS Trafficking of GluR2-containing AMPA receptors NSF, +PWCOMMONS Ca-dependent events CAV1,NOS3,CALM1,HSP90AA1,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,AKT1, +PWCOMMONS CaM pathway NOS3,CALM1,HSP90AA1,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,AKT1, +PWCOMMONS Calmodulin induced events LIPE,PFKFB1,FABP4,CALM1,MLXIPL,CREB1,ADRBK1,CAMK4, +PWCOMMONS CaMK IV-mediated phosphorylation of CREB CALM1,CREB1, +PWCOMMONS PKA-mediated phosphorylation of CREB LIPE,PFKFB1,FABP4,CALM1,MLXIPL,CREB1, +PWCOMMONS PKA activation LIPE,PFKFB1,MLXIPL,CREB1,FABP4,CALM1, +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate XDH,HPRT1,GDA,NP,TXN,GLRX,GMPS,TXNRD1,GUK1,IMPDH2,NME2,NME1,RRM2,RRM1,GSR,IMPDH1,CAT,NT5E,NT5C,NT5M,NT5C1A,NT5C1B, +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II XDH,HPRT1,GDA,NP,TXN,GLRX,GMPS,TXNRD1,GUK1,IMPDH2,NME2,NME1,RRM2,RRM1,GSR,IMPDH1,CAT, +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,HADHB,HADHA,INS,SYT5,KCNJ11,ACADM,ACADL,ACADVL, +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,HADHB,HADHA,INS,SYT5,KCNJ11,ACADM, +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,ETFA,ETFB,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,ECHS1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,HADHB,HADHA,HADH,VAMP2,INS,SYT5,KCNJ11,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9, +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,ETFA,ETFB,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,ECHS1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,HADH,VAMP2,INS,SYT5,KCNJ11,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9, +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HADHB,HADHA,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,ACADL,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,INS,SYT5,KCNJ11,ACADM, +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,ACADL,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,HADHB,HADHA,INS,SYT5,KCNJ11,ACADM, +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,HADHB,HADHA,INS,SYT5,KCNJ11,ACADM, +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HADHB,HADHA,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,ACADL,ACADVL,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,INS,SYT5,KCNJ11,ACADM, +PWCOMMONS Apoptotic cleavage of cell adhesion proteins TJP2,DSG3,CDH1,CASP3,PKP1,DSP,DSG2,DSG1, +PWCOMMONS Nicotinate metabolism AFMID,ACMSD,NMNAT2,NAMPT,NAPRT1,KYNU,HAAO,TDO2,NMNAT3,INDO,QPRT,KMO,NADK,NMNAT1, +PWCOMMONS Nicotinamide salvaging NMNAT3,NADSYN1,NMNAT2,NADK,NMNAT1,NAPRT1, +PWCOMMONS Catecholamines biosynthesis SLC18A2,VAMP2,RAB3A,SYT1,RIMS1,CPLX1,DBH,MAOA,SLC22A2,DDC, +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange PCNA,POLD4,POLD3,POLD2,POLD1,RAD51,RPA1,RPA3,RPA2,RAD52,BRCA2, +PWCOMMONS Assembly of the RAD51-ssDNA nucleoprotein complex RAD52,RPA1,RPA3,RPA2, +PWCOMMONS Resolution of D-loop structures PCNA,POLD4,POLD3,POLD2,POLD1, +PWCOMMONS Resolution of D-loop structures through Holliday junction intermediates PCNA,POLD4,POLD3,POLD2,POLD1, +PWCOMMONS Synaptic stable pairing/D-loop structure formation between recombining DNA molecules PCNA,POLD4,POLD3,POLD2,POLD1, +PWCOMMONS Homologous DNA pairing and strand exchange PCNA,POLD4,POLD3,POLD2,POLD1,RAD51,RPA1,RPA3,RPA2,RAD52,BRCA2, +PWCOMMONS Peptide hormones LHB,FSHB,TSHB,CGB,PCSK1,POMC, +PWCOMMONS Glycoprotein hormones LHB,FSHB,TSHB,CGB, +PWCOMMONS Serotonin clearance from the synaptic cleft ALDH2, +PWCOMMONS Metabolism of serotonin ALDH2, +PWCOMMONS Protein folding CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4,TBCE,TBCB,TBCC,TBCD,ACTB,TBCA,VBP1,PFDN1,PFDN5,PFDN2,PFDN4,PFDN6, +PWCOMMONS Chaperonin-mediated protein folding CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4,TBCE,TBCB,TBCC,TBCD,ACTB,TBCA,VBP1,PFDN1,PFDN5,PFDN2,PFDN4,PFDN6, +PWCOMMONS Association of TriC/CCT with target proteins during biosynthesis CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4, +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding TBCB,TBCC,TBCD,CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4,ACTB,TBCA,VBP1,PFDN1,PFDN5,PFDN2,PFDN4,PFDN6, +PWCOMMONS Folding of actin by CCT/TriC CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4, +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC TBCB,TBCC,TBCD,CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4,ACTB,TBCA,VBP1,PFDN1,PFDN5,PFDN2,PFDN4,PFDN6, +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC TBCB,TBCD,TBCC,CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4,TBCA, +PWCOMMONS Post-chaperonin tubulin folding pathway TBCB,TBCD,TBCC,TBCA, +PWCOMMONS FGFR2c ligand binding and activation CBL, +PWCOMMONS Valine catabolism ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UROD,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,DLD,BCAT1,DBT,BCKDHA,BCKDHB,MCEE,ALAD,CS,HIBCH,PPOX,ACO2,IDH3G,IDH3A,IDH3B,ALDH6A1,SUCLG1,SUCLG2,BCAT2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,HIBADH,PCCB,PCCA,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,MUT,FH,INS,SYT5, +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase DBT,BCKDHA,BCKDHB,DLD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UROD,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,MCEE,ALAD,CS,HIBCH,PPOX,ACO2,IDH3G,IDH3A,IDH3B,ALDH6A1,SUCLG1,SUCLG2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,HIBADH,PCCB,PCCA,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,MUT,FH,INS,SYT5, +PWCOMMONS PLC beta mediated events CAV1,HSP90AA1,NOS3,VAMP2,INS,SYT5,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4, +PWCOMMONS 2-LTR circle formation XRCC5,BANF1,LIG4,XRCC4, +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,CDC20,WEE1,CDK2,CUL1,BTRC,SKP1,XPO1,FBXO5,CDC25C,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CHEK1, +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex CDT1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L, +PWCOMMONS Alcohol Dehydrogenase ADH1C,ADH1A,ACSS2,ADH7,ADH1B,ADH6,ALDH1A1,ALDH2, +PWCOMMONS Ethanol is oxidized by NAD+ to form acetaldehyde, NADH, and H+ ADH1C,ADH1A,ACSS2,ADH7,ADH1B,ADH6,ALDH1A1,ALDH2, +PWCOMMONS Cleavage of the damaged pyrimidine CCNO,APEX1,TDG,NTHL1, +PWCOMMONS Transcription-coupled NER (TC-NER) PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,ERCC5,TCEA1,ERCC8,XAB2,ERCC6,ERCC4,ERCC1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2, +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER PCNA,POLD4,POLD3,POLD2,POLD1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2, +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2, +PWCOMMONS Dual incision reaction in TC-NER PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,ERCC5,TCEA1,ERCC8,XAB2,ERCC6,ERCC4,ERCC1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2, +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex PCNA,POLD4,POLD3,POLD2,POLD1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,ERCC5,TCEA1,ERCC8,XAB2,ERCC6,ERCC4,ERCC1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RFC2,RFC1,RFC3,RFC5,RFC4,POLE2,POLE,RPA1,RPA3,RPA2, +PWCOMMONS Nuclear Events (kinase and transcription factor activation) MAPKAPK2,ATF1,CREB1,MAPK7, +PWCOMMONS ERK/MAPK targets MAPK7,ATF1,CREB1, +PWCOMMONS CREB phosphorylation MAPKAPK2,ATF1,CREB1, +PWCOMMONS Minus-strand DNA synthesis PPIA,BANF1,LIG4,XRCC4,XRCC6,XRCC5,FEN1, +PWCOMMONS Eicosanoid ligand-binding receptors FPR2,OXER1,MGLL,PFKFB1,MLXIPL,TBXA2R,PTGIR,CREB1,LIPE,GNAS,PTGER3,GPR44,FABP4,PTGDR,PTGFR,PTGER1, +PWCOMMONS Prostanoid ligand receptors PFKFB1,MLXIPL,TBXA2R,PTGIR,CREB1,LIPE,GNAS,PTGER3,GPR44,FABP4,PTGDR,PTGFR,PTGER1, +PWCOMMONS Terminal pathway of complement C6,C7,C5,C8A,C8B,C8G, +PWCOMMONS Serotonin Neurotransmitter Release Cycle CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,DDC,AANAT,SLC22A2, +PWCOMMONS Synthesis of Serotonin AANAT, +PWCOMMONS Leukotriene synthesis GGT5,DPEP2,ALOX5,LTC4S,LTA4H, +PWCOMMONS Neurotransmitter Clearance In The Synaptic Cleft ALDH2,SLC22A2,COMT,SLC6A3,BCHE, +PWCOMMONS Dopamine clearance from the synaptic cleft MAOA,SLC6A3, +PWCOMMONS Enzymatic degradation of dopamine by COMT MAOA, +PWCOMMONS Enzymatic degradation of Dopamine by monoamine oxidase MAOA, +PWCOMMONS Activation of Chaperones by IRE1alpha NFYA,HSPA5, +PWCOMMONS RAF phosphorylates MEK RAF1,YWHAB,MAP2K1,MAPK3,MAPK1, +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS NF-kB is activated and signals survival RELA,TRAF6,SQSTM1,NGFR,IKBKB,NFKBIA, +PWCOMMONS RNA Polymerase I Promoter Clearance UBTF,TAF1C,TAF1B,TAF1A,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,MAPK3,PCAF, +PWCOMMONS RNA Polymerase I Promoter Opening TAF1C,TAF1B,TAF1A,RRN3,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,MAPK3, +PWCOMMONS RNA Polymerase I Transcription Initiation TAF1B,TAF1A,UBTF,POLR1C,POLR1D,POLR1A,POLR2K,POLR2H,POLR1B,RRN3,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,PCAF, +PWCOMMONS RNA Polymerase I Promoter Escape UBTF,TAF1C,TAF1B,TAF1A,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS Formation of Acetoacetic Acid HMGCL,ACAT1,BDH1, +PWCOMMONS Regulation of gene expression in endocrine-committed (NEUROG3+) progenitor cells NEUROD1,NKX2-2,NEUROG3, +PWCOMMONS Glycolysis ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,PFKFB2,PFKFB4,PFKFB3,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS Fructose 6-phosphate and ATP react to form fructose 2,6-bisphosphate and ADP PFKFB2,PFKFB4,PFKFB3, +PWCOMMONS Transcriptional activation of lipogenesis genes by ChREBP:MLX PPAP2C,ACLY,ACACB,DGAT1,AGPAT1,PPAP2A,PPAP2B, +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,DPYS,AK1,MDH2,PKM2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,PCK1,MDH1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,DPYS,AK1,MDH2,PKM2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,SLC35D1,PFAS,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PGM1,PCK2,GBE1,SUCLA2,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,DPYS,AK1,MDH2,PKM2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS Mitochondrial tRNA aminoacylation IARS2,QARS,VARS2,WARS2,HARS2,YARS2,SARS2,GARS,PARS2,EARS2,RARS2,NARS2,FARS2,TARS2,DARS2,MARS2,KARS,CARS2,LARS2, +PWCOMMONS Translation RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF2S3,EIF2S2,EIF2S1,EIF5,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF5B,EEF2,EIF4EBP1,PABPC1, +PWCOMMONS Eukaryotic Translation Elongation RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EEF2, +PWCOMMONS Peptide chain elongation RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2, +PWCOMMONS Eukaryotic Translation Termination GSPT2,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12, +PWCOMMONS Eukaryotic Translation Initiation RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF2S3,EIF2S2,EIF2S1,EIF5,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF5B,EEF2,EIF4EBP1,PABPC1, +PWCOMMONS Cap-dependent Translation Initiation RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF2S3,EIF2S2,EIF2S1,EIF5,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF5B,EEF2,EIF4EBP1,PABPC1, +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF2S2,EIF2S1,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27, +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,EIF4EBP1,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,EIF5,EIF5B,EEF2, +PWCOMMONS Ribosomal scanning and start codon recognition RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF2S3,EIF2S2,EIF2S1,EIF5,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EIF5B,EEF2, +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,EIF2S3,EIF2S2,EIF2S1,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF5B,EIF5,EIF4E,EIF4H,EIF4B,EIF4G1,EIF4A2,EEF2, +PWCOMMONS Formation of a pool of free 40S subunits RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF2S3,EIF2S2,EIF2S1,EIF5,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EIF5B,EEF2,EIF4EBP1,PABPC1, +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter GTF3C2,GTF3C3,GTF3C4,GTF3C5,GTF3C1,POLR3B,POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,BRF1,BDP1,TBP, +PWCOMMONS Platelet activation triggers COL1A2,GP6,FCER1G,SYK,PLCG2,F2R,F2RL3,F2RL2,F2,GNAQ,ARHGEF1,GNA13,PRKCA,MARCKS, +PWCOMMONS Collagen-mediated activation cascade COL1A2,GP6,FCER1G,SYK,PLCG2, +PWCOMMONS Histamine receptors PFKFB1,MLXIPL,HRH1,CREB1,LIPE,GNAS,HRH2,FABP4, +PWCOMMONS AKT phosphorylates targets in the cytosol PDPK1,CASP9,AKT1S1,MDM2,BAD, +PWCOMMONS RNA Polymerase II Transcription Elongation TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2, +PWCOMMONS Formation of RNA Pol II elongation complex POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,CCNT2,CDK9,CCNT1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS Post-Elongation Processing of the Transcript EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,PAPOLA,PABPN1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,CSTF2,CSTF1,CSTF3,EEF2, +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,PAPOLA,PABPN1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,CSTF2,CSTF1,CSTF3,EEF2, +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF5,NXF1,THOC4,EIF5B,NCBP2,NCBP1,EEF2,CPSF2,CPSF1,CPSF3,SLBP,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,RBM8A,MAGOH, +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF5,NXF1,THOC4,EIF5B,NCBP2,NCBP1,EEF2,CPSF2,CPSF1,CPSF3,SLBP, +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF5,NXF1,THOC4,EIF5B,NCBP2,NCBP1,EEF2, +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,NXF1,THOC4,SLBP,EIF5,EIF5B,EEF2,NCBP2,NCBP1, +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,THOC4,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,EIF5,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,EIF5B,EEF2, +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,PABPC1,EEF1G,EEF1D,EEF1B2,NXF1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,NCBP2,NCBP1,EIF5,EIF5B,EEF2, +PWCOMMONS tRNA Aminoacylation SCYE1,EEF1E1,LARS,MARS,RARS,IARS,JTV1,EPRS,QARS,KARS,DARS,FARSA,FARSB,HARS,GARS,CARS,VARS,YARS,WARS,AARS,SARS,TARS,AARS2,IARS2,VARS2,WARS2,HARS2,YARS2,SARS2,PARS2,EARS2,RARS2,NARS2,FARS2,TARS2,DARS2,MARS2,CARS2,LARS2, +PWCOMMONS Cytosolic tRNA aminoacylation SCYE1,EEF1E1,LARS,MARS,RARS,IARS,JTV1,EPRS,QARS,KARS,DARS,FARSA,FARSB,HARS,GARS,CARS,VARS,YARS,WARS,AARS,SARS,TARS, +PWCOMMONS Generic Transcription Pathway CCNC,MED13,MED12,MED20,MED4,MED10,MED7,CDK8,MED24,MED6,MED31,MED17,MED1,MED14,MED25, +PWCOMMONS Apoptotic execution phase DFFB,CASP3,KPNB1,KPNA1,OCLN,TJP2,DSG3,CDH1,PKP1,DSP,DSG2,DSG1,FNTA,CASP8,GSN,SPTAN1,ADD1,MAPT,PLEC1,VIM,GAS2,DBNL,CASP6,ACIN1,MST4,PTK2,CASP7,BIRC2,STK24,PRKCQ,ROCK1,CLSPN,LMNB1,BCAP31,BMX,PRKCD,PAK2,ARHGAP10,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A, +PWCOMMONS Apoptosis induced DNA fragmentation DFFB,CASP3,KPNB1,KPNA1, +PWCOMMONS Activation of DNA fragmentation factor DFFB,CASP3,KPNB1,KPNA1, +PWCOMMONS Apoptotic cleavage of cellular proteins TJP2,DSG3,CDH1,PKP1,CASP3,DSP,DSG2,DSG1,FNTA,CASP8,GSN,SPTAN1,ADD1,MAPT,PLEC1,VIM,GAS2,DBNL,CASP6,ACIN1,MST4,PTK2,CASP7,BIRC2,STK24,PRKCQ,ROCK1,CLSPN,LMNB1,BCAP31,BMX,PRKCD, +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins SPTAN1,ADD1,CASP3,MAPT,PLEC1,VIM,GAS2,DBNL,CASP8,CASP6, +PWCOMMONS Breakdown of the nuclear lamina CASP6, +PWCOMMONS Stimulation of the cell death response by PAK-2p34 ARHGAP10,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,CASP3, +PWCOMMONS Cleavage of the damaged purine OGG1,MPG,MUTYH, +PWCOMMONS FasL/ CD95L signaling BID,MST4,CASP8,FADD,TNFRSF10B,TNFSF10,DSG3,GSN,DIABLO,XIAP,CASP3,FASLG,FAS,BAX,BAK1,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,CASP10,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX,BCL2,CDH1,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,BAD,PLEC1, +PWCOMMONS SMAC-mediated apoptotic response MST4,DSG3,DIABLO,XIAP,CASP3,SPTAN1,CASP9,CDH1,CASP7,GAS2,DSG1,FNTA,PTK2,ADD1,BIRC2,DBNL,DSG2,BMX,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,GSN,MAPT,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,CLSPN,LMNB1,BCAP31,PRKCD,PAK2,ARHGAP10,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A, +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes FNTA,CASP3,XIAP,DIABLO,MST4,DSG3,PTK2,SPTAN1,ADD1,BIRC2,CASP7,CDH1,GAS2,DBNL,DSG2,CASP9,DSG1,BMX, +PWCOMMONS SMAC binds to IAPs MST4,DSG3,DIABLO,XIAP,CASP3,SPTAN1,CASP9,CDH1,CASP7,GAS2,DSG1,FNTA,PTK2,ADD1,BIRC2,DBNL,DSG2,BMX, +PWCOMMONS Cytochrome c-mediated apoptotic response DSG3,GSN,SPTAN1,CDH1,CASP7,PAK2,ARHGAP10,CASP3,CLSPN,GAS2,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,VIM,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,DSG1,CYCS,APAF1,CASP9,FNTA,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,PTK2,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX, +PWCOMMONS Formation of apoptosome APAF1,CASP9, +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage DSG3,GSN,SPTAN1,CDH1,CASP7,PAK2,ARHGAP10,CASP3,CLSPN,GAS2,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,VIM,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,DSG1,CYCS,APAF1,CASP9,FNTA,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,PTK2,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX, +PWCOMMONS Release of apoptotic factors from the mitochondria DSG3,GSN,DIABLO,XIAP,CASP3,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,CLSPN,CDC25A,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,FNTA,PTK2, +PWCOMMONS Apoptotic factor-mediated response MST4,DSG3,DIABLO,XIAP,CASP3,SPTAN1,CASP9,CDH1,CASP7,GAS2,DSG1,FNTA,PTK2,ADD1,BIRC2,DBNL,DSG2,BMX,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,GSN,MAPT,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,CLSPN,LMNB1,BCAP31,PRKCD,PAK2,ARHGAP10,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,CYCS,APAF1, +PWCOMMONS Transport of connexins along the secretory pathway GJB2,GJB1, +PWCOMMONS Insulin Synthesis and Secretion INS,SRPRB,SRPR,EXOC4,EXOC6,EXOC5,EXOC8,EXOC2,NKX2-2,KIF5B,SLC30A7,PDX1,SRP19,SRP9,SRP54,SRP14,SRP72,ERO1L,VAMP2,SYT5,TRAM2,SEC61B,SSR3,TRAM1,SSR2,SSR4,SEC61G,RPN2,RPN1,DDOST,DAD1,STT3B,STT3A,MAFA,PCSK2,SPCS3,SEC11C,SEC11A,SPCS1,SPCS2,CPE, +PWCOMMONS G2/M Transition ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,PLK1,FBXO5,CDC20,CCNB2,CUL1,BTRC,SKP1,CDC25C,PKMYT1,WEE1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CCNA2,CCNA1,CDK2,CDC25B,XPO1,CCNH,CDK7,MNAT1,CEP250,CKAP5,ALMS1,ODF2,CEP152,SSNA1,CEP110,CLASP1,NEDD1,CEP135,DYNC1H1,AZI1,CEP57,TSGA14,PRKACA,CEP72,CEP76,MAPRE1,CEP164,TUBG1,PLK4,CSNK1E,AKAP9,PCM1,YWHAG,PRKAR2B,CEP290,YWHAE,NLP,OFD1,SDCCAG8,PCNT,FGFR1OP,DCTN3,CEP78,HSP90AA1,PPP2R1A,CEP110,CDK5RAP2,CEP70,CEP63,TUBB2C,CENPJ,CEP27,TUBB,ACTR1A,CEP192,NDE1,TUBA4A,CSNK1D,SFI1,DYNLL1,TUBB4,DCTN2,TUBA1A,NEK2,PAFAH1B1,CETN2,DYNC1I2,NUMA1,TUBGCP4,TUBGCP5,TUBGCP6,TUBG2,TUBGCP3,TUBGCP2, +PWCOMMONS Polo-like kinase mediated events ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,PLK1,FBXO5,CDC20,CCNB2,CUL1,BTRC,SKP1,CDC25C,PKMYT1,WEE1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CCNA2,CCNA1, +PWCOMMONS Phosphorylation of proteins involved in the G2/M transition by Cyclin A:Cdc2 complexes CCNA1,CCNA2, +PWCOMMONS Cyclin A/B1 associated events during G2/M transition WEE1,CDK2,CUL1,BTRC,SKP1,CCNB1,CDC20,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CCNA2,FZR1,CCNA1,PKMYT1,CCNB2,CDC25B,XPO1,FBXO5,CCNH,CDK7,MNAT1, +PWCOMMONS Centrosome maturation CKAP5,ALMS1,ODF2,CEP152,SSNA1,CEP110,CLASP1,NEDD1,CEP135,DYNC1H1,AZI1,CEP57,TSGA14,PRKACA,CEP72,CEP76,MAPRE1,CEP164,TUBG1,PLK4,CSNK1E,AKAP9,PCM1,YWHAG,PRKAR2B,CEP290,YWHAE,NLP,OFD1,SDCCAG8,PCNT,FGFR1OP,DCTN3,CEP78,HSP90AA1,PLK1,CDC2,PPP2R1A,CEP110,CDK5RAP2,CEP70,CEP63,TUBB2C,CENPJ,CEP27,TUBB,ACTR1A,CEP192,NDE1,TUBA4A,CSNK1D,SFI1,DYNLL1,TUBB4,DCTN2,TUBA1A,NEK2,PAFAH1B1,CETN2,DYNC1I2,FBXO5,NUMA1,TUBGCP4,TUBGCP5,TUBGCP6,TUBG2,TUBGCP3,TUBGCP2,FZR1,CCNB1, +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CKAP5,ALMS1,ODF2,CEP152,SSNA1,CEP110,CLASP1,NEDD1,CEP135,DYNC1H1,AZI1,CEP57,PRKACA,TSGA14,CEP72,CEP76,MAPRE1,CEP164,TUBG1,PLK4,AKAP9,CSNK1E,PCM1,YWHAG,PRKAR2B,YWHAE,NLP,CEP290,OFD1,SDCCAG8,PCNT,FGFR1OP,DCTN3,CEP250,CEP78,HSP90AA1,CDC2,PPP2R1A,CEP110,CDK5RAP2,CEP63,CEP70,TUBB2C,CENPJ,CEP27,TUBB,ACTR1A,CEP192,NDE1,TUBA4A,CSNK1D,SFI1,TUBB4,DYNLL1,DCTN2,NEK2,TUBA1A,PAFAH1B1,CETN2,DYNC1I2,NUMA1,TUBGCP4,TUBGCP5,TUBGCP6,TUBG2,TUBGCP3,TUBGCP2,FZR1,CCNB1, +PWCOMMONS Recruitment of NuMA to mitotic centrosomes TUBGCP4,TUBGCP5,TUBGCP6,NEDD1,TUBG1,TUBG2,TUBGCP3,TUBGCP2,FZR1,CDC2,CCNB1, +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CKAP5,ALMS1,ODF2,CEP152,SSNA1,CEP110,CLASP1,NEDD1,CEP135,DYNC1H1,AZI1,CEP57,TSGA14,PRKACA,CEP72,CEP76,MAPRE1,CEP164,TUBG1,PLK4,CSNK1E,AKAP9,PCM1,YWHAG,PRKAR2B,CEP290,YWHAE,NLP,OFD1,SDCCAG8,PCNT,FGFR1OP,DCTN3,CEP78,HSP90AA1,PLK1,CDC2,PPP2R1A,CEP110,CDK5RAP2,CEP70,CEP63,TUBB2C,CENPJ,CEP27,TUBB,ACTR1A,CEP192,NDE1,TUBA4A,CSNK1D,SFI1,DYNLL1,TUBB4,DCTN2,TUBA1A,NEK2,PAFAH1B1,CETN2,DYNC1I2,FBXO5, +PWCOMMONS Loss of Nlp from mitotic centrosomes CKAP5,ALMS1,ODF2,CEP152,SSNA1,CEP110,CLASP1,NEDD1,DYNC1H1,CEP135,AZI1,CEP57,TSGA14,PRKACA,CEP72,CEP76,MAPRE1,CEP164,TUBG1,PLK4,AKAP9,CSNK1E,PCM1,PRKAR2B,YWHAG,CEP290,YWHAE,OFD1,SDCCAG8,PCNT,FGFR1OP,DCTN3,CEP250,CEP78,HSP90AA1,PLK1,CDC2,PPP2R1A,CEP110,CDK5RAP2,CEP70,CEP63,TUBB2C,CENPJ,CEP27,TUBB,ACTR1A,CEP192,NDE1,TUBA4A,CSNK1D,SFI1,TUBB4,DYNLL1,DCTN2,NEK2,TUBA1A,PAFAH1B1,CETN2,DYNC1I2,FBXO5, +PWCOMMONS Cyclin B2 mediated events CCNB2,CCNB1, +PWCOMMONS M Phase ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,MAD2L1,CDC20,NEK2,CDC2,CCNB1,MAD1L1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,REC8,STAG2,SMC3,SMC1A,RAD21,STAG1,PLK1,FBXO5,CCDC99,CKAP5,CENPA,NUDC,ZWINT,CENPF,NDEL1,XPO1,KIF2A,SKA1,SGOL1,RANGAP1,ERCC6L,BUB1,KIF2C,SGOL2,TAOK1,RANBP2,CLASP1,AHCTF1,RCC2,KIF18A,NDE1,CLASP2,CLIP1,PPP1CC,MAPRE1,INCENP,PAFAH1B1,KIF2B,FAM33A,CENPE,B9D2,RPS27,CENPN,APITD1,CENPL,CENPC1,CENPT,CENPM,MLF1IP,CENPO,CENPP,CENPQ,CENPI,CENPH,CENPK,AURKB,CDCA8,BIRC5,NUP85,SEC13,NUP107,NUP133,NUP160,NUP37,NUP43,ZWILCH,ZW10,KNTC1,CASC5,MIS12,PMF1,DSN1,NSL1,NUF2,NDC80,SPC24,SPC25,KIF20A,KIF23,GORASP1, +PWCOMMONS Mitotic Telophase /Cytokinesis FBXO5,NUDC,KIF20A,KIF23, +PWCOMMONS Mitotic Prometaphase STAG2,SMC3,SMC1A,RAD21,STAG1,PLK1,FBXO5,CCDC99,CKAP5,CENPA,NUDC,ZWINT,CENPF,NDEL1,XPO1,KIF2A,SKA1,SGOL1,RANGAP1,ERCC6L,MAD1L1,BUB1,KIF2C,SGOL2,TAOK1,RANBP2,CLASP1,AHCTF1,RCC2,KIF18A,NDE1,CLASP2,CDC20,CLIP1,PPP1CC,MAPRE1,INCENP,PAFAH1B1,KIF2B,FAM33A,CENPE,B9D2,RPS27,BUB3,BUB1B,MAD2L1,CENPN,APITD1,CENPL,CENPC1,CENPT,CENPM,MLF1IP,CENPO,CENPP,CENPQ,CENPI,CENPH,CENPK,AURKB,CDCA8,BIRC5,NUP85,SEC13,NUP107,NUP133,NUP160,NUP37,NUP43,ZWILCH,ZW10,KNTC1,CASC5,MIS12,PMF1,DSN1,NSL1,NUF2,NDC80,SPC24,SPC25, +PWCOMMONS Mitotic Spindle Checkpoint ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,MAD2L1,CDC20,NEK2,CDC2,CCNB1,MAD1L1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Initiation of checkpoint signal from defective kinetochores ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,BUB3,BUB1B,MAD2L1,CDC20,NEK2,CDC2,CCNB1,MAD1L1,PTTG1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Mitotic Metaphase/Anaphase Transition FBXO5,REC8,STAG2,SMC3,SMC1A,RAD21,STAG1, +PWCOMMONS Mitotic Prophase PLK1, +PWCOMMONS Golgi Cisternae Pericentriolar Stack Reorganization PLK1, +PWCOMMONS M/G1 Transition CDC6,TFDP1,E2F1,POLE2,POLE,PRIM2,POLA1,PRIM1,POLA2,CDC45L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,GINS4,GINS1,GINS2,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,DNA2,RPA1,RPA3,RPA2,FEN1,CDK2,RFC2,RFC1,RFC3,RFC5,RFC4,CDT1,GMNN,MCM10,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,RPA4,CDC7,DBF4,CDC2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Assembly of the pre-replicative complex CDT1,GMNN,TFDP1,E2F1,POLE2,POLE,PRIM2,POLA1,PRIM1,POLA2,CDC6,MCM10,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,RFC2,RFC1,RFC3,RFC5,RFC4,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,RPA1,RPA2,RPA3,RPA4,CDC45L,CDK2,CDC7,DBF4,POLD4,POLD3,POLD2,POLD1,PCNA,CDC2, +PWCOMMONS Assembly of the ORC complex at the origin of replication ORC3L,ORC2L,ORC6L,ORC4L,ORC1L,CDC2, +PWCOMMONS CDC6 association with the ORC:origin complex ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,CDT1, +PWCOMMONS Activation of the pre-replicative complex POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,POLE2,POLE,RB1,CDT1,GMNN,TFDP1,E2F1,CDK2,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,CDC7,DBF4,RFC2,RFC1,RFC3,RFC5,RFC4,CDC45L,RPA1,RPA2,RPA3,RPA4, +PWCOMMONS DNA replication initiation POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,POLE2,POLE,RB1,TFDP1,E2F1, +PWCOMMONS Switching of origins to a post-replicative state CDT1,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2, +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2, +PWCOMMONS Orc1 removal from chromatin CDT1,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2, +PWCOMMONS DNA strand elongation MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,GINS4,GINS1,GINS2,POLD4,POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,LIG1,DNA2,RPA1,RPA3,RPA2,FEN1, +PWCOMMONS Unwinding of DNA MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,GINS4,GINS1,GINS2, +PWCOMMONS Leading Strand Synthesis POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,LIG1,DNA2,RPA1,RPA3,RPA2,FEN1, +PWCOMMONS Polymerase switching POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4, +PWCOMMONS Processive synthesis on the lagging strand PCNA,POLD4,POLD3,POLD2,POLD1,DNA2,PRIM2,POLA1,PRIM1,POLA2,RPA1,RPA3,RPA2,FEN1, +PWCOMMONS Removal of the Flap Intermediate POLD4,POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RPA1,RPA3,RPA2,FEN1, +PWCOMMONS Lagging Strand Synthesis POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,LIG1,DNA2,RPA1,RPA3,RPA2,FEN1, +PWCOMMONS G1 Phase CDK2,TFDP1,E2F1,CDC6,PRIM2,POLA1,PRIM1,POLA2,ORC6L,ORC3L,ORC4L,ORC5L,ORC1L,ORC2L,PCNA,BCL2,PMAIP1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,DHFR,BCL2L1,CDT1,CDC25A,CDC2,CKS1B,CUL1,SKP1,RPA1,RPA2,RPA3,RPA4,CDC45L,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC7,DBF4,POLE2,POLE,TYMS,CCNH,CDK7,MNAT1,CCND1,CDK4,WEE1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,RFC2,RFC1,RFC3,RFC5,RFC4,RRM2,BBC3,POLD4,POLD3,POLD2,POLD1,TK2,CCNA1,CCNE1, +PWCOMMONS Cyclin D associated events in G1 CDK2,TFDP1,E2F1,CDC6,PRIM2,POLA1,PRIM1,POLA2,ORC6L,ORC3L,ORC4L,ORC5L,ORC1L,ORC2L,PCNA,BCL2,PMAIP1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,DHFR,BCL2L1,CDT1,CDC25A,CDC2,CKS1B,CUL1,SKP1,RPA1,RPA2,RPA3,RPA4,CDC45L,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC7,DBF4,POLE2,POLE,TYMS,CCNH,CDK7,MNAT1,CCND1,CDK4,WEE1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,RFC2,RFC1,RFC3,RFC5,RFC4,RRM2,BBC3,POLD4,POLD3,POLD2,POLD1,TK2,CCNA1,CCNE1, +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 CDK4,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A, +PWCOMMONS G1/S Transition CDC6,TFDP1,E2F1,POLE2,POLE,PRIM2,POLA1,PRIM1,POLA2,CDC45L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,GINS4,GINS1,GINS2,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,DNA2,RPA1,RPA3,RPA2,FEN1,CDK2,RFC2,RFC1,RFC3,RFC5,RFC4,ORC1L,CDT1,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,GMNN,MCM10,CDC7,DBF4,RPA4,CKS1B,CUL1,SKP1,WEE1,CDC25A,CCNH,CDK7,MNAT1,PLK1,BTRC,DHFR,FBXO5,CDC2,TYMS,CCNB1,RRM2,TK2,CCNA1,CCNE1, +PWCOMMONS Cyclin E associated events during G1/S transition ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDK2,CKS1B,CUL1,SKP1,WEE1,CDC25A,RB1,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDK2,CKS1B,CUL1,SKP1,RB1,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS E2F mediated regulation of DNA replication TFDP1,E2F1,PRIM2,POLA1,PRIM1,POLA2,PLK1,CDK2,CDC6,CUL1,BTRC,SKP1,PCNA,ORC6L,ORC3L,ORC4L,ORC5L,ORC1L,ORC2L,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,DHFR,CDT1,FBXO5,CDC25A,CDC2,CKS1B,RPA1,RPA2,RPA3,RPA4,CDC45L,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC7,DBF4,POLE2,POLE,TYMS,CCNH,CDK7,MNAT1,CCNB1,WEE1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,RFC2,RFC1,RFC3,RFC5,RFC4,RRM2,POLD4,POLD3,POLD2,POLD1,TK2,CCNA1,CCNE1, +PWCOMMONS E2F-enabled inhibition of pre-replication complex formation ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,CDC25A, +PWCOMMONS Inhibition of replication initiation of damaged DNA by Rb/E2F1 TFDP1,E2F1,PRIM2,POLA1,PRIM1,POLA2, +PWCOMMONS S Phase ORC1L,CDT1,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDK2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC45L,GINS4,GINS1,GINS2,POLD4,POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,LIG1,DNA2,RPA1,RPA3,RPA2,FEN1,POLE2,POLE,RB1,TFDP1,E2F1,CKS1B,CUL1,SKP1,WEE1,CCNH,CDK7,MNAT1,CCND1,CDK4,CDC25A, +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDK2,CKS1B,CUL1,SKP1,WEE1,RB1,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Synthesis of DNA ORC1L,CDT1,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDK2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC45L,GINS4,GINS1,GINS2,POLD4,POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,LIG1,DNA2,RPA1,RPA3,RPA2,FEN1,POLE2,POLE,RB1,TFDP1,E2F1, +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D CDK4,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A, +PWCOMMONS G2/M Checkpoints ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,CDC20,WEE1,CDK2,CCNB2,CUL1,BTRC,SKP1,XPO1,FBXO5,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,CDC25C,CHEK1,ATM,TP53,CKS1B,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,CDKN1A,ATRIP,RPA1,RPA3,RPA2,CLSPN,CDC45L,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,CDC7,DBF4,RFC2,RFC3,RFC5,RFC4,HUS1,RAD1, +PWCOMMONS G2/M DNA replication checkpoint ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,CDC20,WEE1,CDK2,CCNB2,CUL1,BTRC,SKP1,XPO1,FBXO5,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Activation of ATR in response to replication stress RPA3,RPA2,CLSPN,CDC45L,CDK2,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,CDC7,DBF4,RFC2,RFC3,RFC5,RFC4,HUS1,RAD1,CHEK1,CDC25A,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25C,ATRIP, +PWCOMMONS G2/M DNA damage checkpoint CDC25C,CHEK1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC2,CCNB1,CDC20,WEE1,CDK2,CUL1,BTRC,SKP1,XPO1,FBXO5,ATM,TP53,CKS1B,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,CDKN1A,CCNH,CDK7,MNAT1,ATRIP, +PWCOMMONS p53-Dependent G1 DNA Damage Response ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDK2,CKS1B,CUL1,SKP1,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,TP53,ATM,CDKN1A,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Transcriptional activation of p53 responsive genes CDKN1A, +PWCOMMONS Transcriptional activation of cell cycle inhibitor p21 CDKN1A, +PWCOMMONS Stabilization of p53 PMAIP1,BCL2,BBC3,MDM2,TP53,ATM, +PWCOMMONS p53-Independent DNA Damage Response CDC25C,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS G1/S DNA Damage Checkpoints CDC25C,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2,CKS1B,CUL1,SKP1,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,TP53,ATM,CDKN1A,CCNH,CDK7,MNAT1, +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CDC25C,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2,CKS1B,CUL1,SKP1,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,TP53,ATM,CDKN1A,CCNH,CDK7,MNAT1, +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CDC25C,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2,CKS1B,CUL1,SKP1,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,TP53,ATM,CDKN1A,CCNH,CDK7,MNAT1, +PWCOMMONS Dual incision reaction in GG-NER PCNA,POLD4,POLD3,POLD2,POLD1,ERCC5,XPA,DDB2,DDB1,ERCC4,ERCC1,RAD23B,XPC,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RPA1,RPA3,RPA2,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4, +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A hexamer GBE1,GYS2,UGDH,SLC35D1,NME1, +PWCOMMONS snRNP Assembly WDR77,PRMT5,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GEMIN4,SIP1,GEMIN6,GEMIN5,DDX20,SMN1,GEMIN7,SNUPN,PHAX,NCBP2,NCBP1,TGS1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Reverse Transcription of HIV RNA PPIA,BANF1,LIG4,XRCC4,XRCC6,XRCC5,FEN1, +PWCOMMONS Plus-strand DNA synthesis PPIA,BANF1,LIG4,XRCC4,XRCC6,XRCC5,FEN1, +PWCOMMONS Integration of provirus LIG4,XRCC4,XRCC6,XRCC5,PPIA, +PWCOMMONS Downstream TCR signaling MAP3K7,TRAF6,MALT1,BCL10,CARD11,PDPK1,NFKBIA,NFKB1,RELA,FOXO1,THEM4,CHUK,IKBKB,IKBKG,PRKCQ,INPP5D,UBE2V1,UBE2N,CREB1,TRAT1,MDM2,RPS6KB2,RICTOR,FRAP1,LST8,NR4A1,RIPK2,ZAP70,LCK,CD4,CD3E,CD3D,CD3G,PTEN,BAD,TRIB3,CASP9,AKT1S1, +PWCOMMONS Glucagon-type ligand receptors IQGAP1,MGLL,PFKFB1,GLP1R,GNAS,MLXIPL,GCG,GCGR,ADCY8,CREB1,LIPE,SCTR,SCT,GLP2R,GHRHR,GHRH,GIPR,GIP,VAMP2,VIP,FABP4,INS,SYT5,ADCYAP1R1,KCNJ11, +PWCOMMONS Citric acid cycle (TCA cycle) SDHC,SDHD,SDHB,SDHA,UROD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,SUCLG1,SUCLA2,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,CPOX,UROS,DLST,OGDH,DLD,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,FH,INS,SYT5,SUCLG2,KCNJ11, +PWCOMMONS Glycogenin catalyzes the synthesis of an oligo(1,4)glucose moiety covalently attached to itself GYS1,GYG1,GBE1,GYS2, +PWCOMMONS Acetylcholine Neurotransmitter Release Cycle VAMP2,RAB3A,SYT1,RIMS1,CPLX1,SLC5A7,CHAT, +PWCOMMONS Cytochrome P450 - arranged by substrate type PTGIS,TBXAS1,CYP4F3,CYP4F2,CYP4F12,CYP4A11,CYP2J2,CYP4B1,LGMN,GC,CYP26B1,CUBN,LRP2,CYP26A1,CYP27B1,CYP24A1,CYP2R1,CYP26C1,CYP46A1,EBP,ACOT8,LBR,ABCB11,CYP39A1,CYP7A1,CYP21A2,CYP51A1,NSDHL,CYP11B2,HSD17B4,AMACR,CYP7B1,SC5DL,SC4MOL,CYP17A1,ACOX2,CYP11B1,CYP1B1,CYP8B1,BAAT,HSD3B7,AKR1C4,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,SLC27A5,AKR1D1,CYP27A1,SLC27A2,CYP2C19,CYP2E1,CYP3A4,CYP1A1,CYP2F1,CYP2C18,CYP3A7,CYP2C9,CYP1A2,CYP2A6,CYP2D6,CYP2C8,CYP3A5,CYP2A13,CYP2B6,CYP4F11,CYP2W1, +PWCOMMONS Eicosanoids PTGIS,TBXAS1,CYP4F3,CYP4F2, +PWCOMMONS Xenobiotics CYP2E1,CYP3A4,CYP1A1,CYP2F1,CYP2C18,CYP3A7,CYP2C9,CYP1A2,CYP2A6,CYP2D6,CYP2C8,CYP3A5,CYP2A13,CYP2B6, +PWCOMMONS Fatty acids CYP4A11,CYP2J2,CYP4B1, +PWCOMMONS Endogenous sterols EBP,ACOT8,LBR,ABCB11,CYP39A1,CYP7A1,CYP21A2,CYP51A1,NSDHL,CYP11B2,HSD17B4,AMACR,CYP7B1,SC5DL,SC4MOL,CYP17A1,ACOX2,CYP11B1,CYP1B1,CYP8B1,BAAT,HSD3B7,AKR1C4,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,SLC27A5,AKR1D1,CYP27A1,SLC27A2, +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 ABCB11,CYP8B1,BAAT,AKR1C4,HSD17B4,AMACR,SLC27A5,AKR1D1,CYP27A1,SLC27A2,ACOX2, +PWCOMMONS Unknown CYP2W1, +PWCOMMONS Vitamins GC,CYP26B1,CUBN,LRP2,CYP26A1,CYP27B1,CYP24A1,CYP2R1,CYP26C1, +PWCOMMONS vWF interaction with collagen COL1A1,COL1A2,GP5,GP9,GP1BA,GP1BB, +PWCOMMONS Processing of DNA double-strand break ends RPA3,RPA2,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,RAD51,RAD52,BRCA2, +PWCOMMONS Histidine catabolism HAL,FTCD,AMDHD1, +PWCOMMONS Collagen adhesion via alpha 2 beta 1 glycoprotein ITGB1,COL1A1,COL1A2, +PWCOMMONS Depyrimidination CCNO,APEX1,TDG,NTHL1, +PWCOMMONS Hormone ligand-binding receptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FSHR,FSHB,CGA,CGB,LHCGR,LHB,FABP4,TSHR,TSHB, +PWCOMMONS Proline synthesis PYCR1, +PWCOMMONS BH3-only proteins associate with and inactivate anti-apoptotic BCL-2 members PMAIP1,BID,BCL2,BAD,BBC3, +PWCOMMONS Propionyl-CoA catabolism SDHC,SDHD,SDHB,SDHA,UROD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,SUCLG1,SUCLA2,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,CPOX,UROS,DLST,OGDH,DLD,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PCCB,PCCA,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,MCEE,ALAD,CS,MUT,PPOX,ACO2,IDH3G,IDH3A,IDH3B,FH,INS,SYT5,SUCLG2,KCNJ11, +PWCOMMONS IRS activation RAF1,YWHAB,SOS1,MAP2K1,MAPK3,SHC1,MAPK1,INSR,INS, +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides DPYS,DTYMK,TYMP,NME2,NME1,DPYD,UPB1,GYG2,TXN,GLRX,GBE1,TXNRD1,CPS1,UPP1,UCK1,ASS1,PYCR1,CTPS,CMPK1,OAT,GYS2,OTC,UGDH,RRM2,RRM1,SLC35D1,GSR,ASL,ARG1, +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by thymidine phosphorylase DPYS,DTYMK,TYMP,NME2,NME1,DPYD,UPB1, +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 TXN,GLRX,GBE1,TXNRD1,DPYD,DPYS,CPS1,UPP1,UCK1,ASS1,PYCR1,CTPS,CMPK1,OAT,GYS2,NME2,NME1,OTC,UGDH,RRM2,RRM1,SLC35D1,GSR,ASL,ARG1,UPB1, +PWCOMMONS Galactose catabolism GART,NT5C2,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXN,PGLS,XDH,PAICS,CPS1,UPP1,TALDO1,GALE,ASS1,CMPK1,ADSL,ATIC,OAT,NP,GYS2,CAT,UMPS,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,ARG1,KCNJ11,AMPD3,TKT,PGM1,RPE,GBE1,TXNRD1,DPYD,GALK1,DPYS,AK1,PYCR1,VAMP2,NT5C1A,CTPS,PRPS1,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,NME2,RPIA,GALT,OTC,AMPD2,INS,SYT5,PGD,PFAS,SLC35D1,GSR,ASL,UPB1, +PWCOMMONS Striated Muscle Contraction TTN,TCAP,VIM,NEB,TMOD1,DMD, +PWCOMMONS PI3K/AKT signalling FRAP1,LST8,PDPK1,NGF,NR4A1,FOXO1,CHUK,THEM4,PTEN,CREB1,BAD,RHOA,TRIB3,PHLPP,CASP9,AKT1S1,MDM2,RPS6KB2, +PWCOMMONS AKT phosphorylates targets in the nucleus NR4A1,RPS6KB2,FOXO1, +PWCOMMONS Negative regulation of the PI3K/AKT network FRAP1,LST8,THEM4,TRIB3,PDPK1,NR4A1,FOXO1,PHLPP,CHUK,PTEN,CREB1,BAD,CASP9,AKT1S1,MDM2,RPS6KB2, +PWCOMMONS MRN complex relocalizes to nuclear foci MRE11A,NBN,H2AFX, +PWCOMMONS Assembly of the RAD50-MRE11-NBS1 complex at DNA double-strand breaks MRE11A,NBN,H2AFX, +PWCOMMONS Digestion of dietary lipid CEL,PNLIP,CLPS, +PWCOMMONS Amine-derived hormones AANAT,SLC5A5,DIO3,PNMT,SLC18A2,VAMP2,RAB3A,SYT1,RIMS1,CPLX1,DBH,MAOA,SLC22A2, +PWCOMMONS Serotonin and melatonin biosynthesis AANAT, +PWCOMMONS Thyroxine biosynthesis DIO3, +PWCOMMONS Exocytosis of Dense granule LAMP2, +PWCOMMONS Lectin pathway of complement activation C2,C3,C9,C6,C7,C5,C8A,C8B,C8G,MBL2,MASP1, +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,PLK1,CDK2,CUL1,BTRC,SKP1,FBXO5,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC20,CDC2,CCNB1,MAD2L1,BUB3,BUB1B,NEK2,PTTG1, +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CUL1,BTRC,SKP1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC2,CCNB1, +PWCOMMONS Transmembrane transport of small molecules SLC29A1,SLC29A2,SLC28A2,SLC28A1,SLC7A7,SLC3A2,SLC6A15,SLC38A1,SLC38A4,SLC7A10,SLC7A3,SLC38A2,SLC7A1,SLC38A5,SLC1A4,SLC36A2,SLC6A12,SLC6A20,SLC7A6,SLC6A6,SLC36A1,SLC6A19,SLC7A8,SLC7A11,SLC43A2,SLC16A10,SLC7A5,SLC38A3,SLC6A14,SLC43A1,SLC1A5,SLC7A9,SLC3A1,SLC6A18,PEX3,ABCA7,APOA1,SLC5A1,SLC2A2,SLC2A5,CFTR, +PWCOMMONS ABC-family proteins mediated transport APOA1, +PWCOMMONS Amino acid transport across the plasma membrane SLC3A2,SLC6A15,SLC38A1,SLC38A4,SLC7A10,SLC7A3,SLC38A2,SLC7A1,SLC38A5,SLC1A4,SLC36A2,SLC6A12,SLC6A20,SLC7A6,SLC6A6,SLC36A1,SLC6A19,SLC7A8,SLC7A11,SLC43A2,SLC16A10,SLC7A5,SLC38A3,SLC6A14,SLC43A1,SLC1A5,SLC7A9,SLC3A1,SLC6A18, +PWCOMMONS Hexose uptake SLC2A2,SLC2A5, +PWCOMMONS Transport of nucleosides and free purine and pyrimidine bases across the plasma membrane SLC29A1,SLC29A2,SLC28A2,SLC28A1, +PWCOMMONS Muscle contraction TTN,TCAP,VIM,NEB,TMOD1,DMD, +PWCOMMONS VEGF ligand-receptor interactions FLT4, +PWCOMMONS VEGF binds to VEGFR leading to receptor dimerization FLT4, +PWCOMMONS Activation of BMF and translocation to mitochondria BMF,DYNLL2, +PWCOMMONS LPS transferred from LBP carrier to CD14 LBP, +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid PPAP2C,GK,GPD1,AGPAT5,DGAT1,AGPAT2,AGPAT4,AGPAT3,PPAP2A,AGPAT1,PPAP2B, +PWCOMMONS Synthesis of phosphatidic acid from lysophosphatidic acid AGPAT5,DGAT1,AGPAT4,AGPAT2,AGPAT3,PPAP2A,AGPAT1,PPAP2B, +PWCOMMONS Conversion of Phosphatidic Acid to Diacylglycerol PPAP2A,DGAT1,PPAP2B, +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate PPAP2C,GK,GPD1,AGPAT5,DGAT1,AGPAT2,AGPAT4,AGPAT3,PPAP2A,AGPAT1,PPAP2B, +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate PPAP2C,AGPAT5,DGAT1,AGPAT4,PPAP2B,GK,GPD1,AGPAT2,AGPAT3,PPAP2A,AGPAT1, +PWCOMMONS Interactions of Rev with host cellular proteins RAN,XPO1,RANBP1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RANGAP1, +PWCOMMONS Nuclear import of Rev protein RAN,XPO1,RANBP1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RANGAP1, +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA RAN,XPO1,RANBP1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RANGAP1, +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNMT, +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade IRF3,TBK1,TICAM1,TLR3,MAP3K7IP1,MAP3K7IP2,TRAF6,MAP3K7,CHUK,IKBKB,IKBKG,RELA,RIPK1,JUN,MAPK1,MAPK8, +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates TBK1 TBK1,TICAM1,TLR3,RIPK1,CHUK,IKBKB,IKBKG, +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates RIP1 CHUK,IKBKB,IKBKG,RIPK1,TICAM1,TLR3, +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade MAP3K7IP2,MAP3K7,TRAF6,ATF2,TICAM1,TLR3,IKBKB,CHUK,IKBKG,MAPK1,RELA,MAPK8,JUN, +PWCOMMONS Gap junction trafficking and regulation GJB1,GJB2,AP2M1, +PWCOMMONS Gap junction trafficking GJB1,GJB2,AP2M1, +PWCOMMONS Gap junction assembly GJB1,GJB2, +PWCOMMONS Oligomerization of connexins into connexons GJB1,GJB2, +PWCOMMONS Transport of connexons to the plasma membrane GJB2, +PWCOMMONS Response to elevated platelet cytosolic Ca++ IGF1,CD36,VWF,SERPINE1,F5,APP,SERPINF2,SELP,SERPING1,A2M,FN1,ITGB1,ITGA5,ITGB3,ITGA2B,CD63,HGF,SERPINA1,LAMP2,F8,PF4,PPBP,PECAM1,CD9,SPARC,PLG,STX4,PICK1,STXBP3,ALB,CFD,SRGN,ALDOA,PROS1,TMSB4X,F13A1,CLU,TIMP1,GP5,GP9,GP1BA,GP1BB,FGB,FGG,FGA,EGF,MMRN1,KNG1,HRG, +PWCOMMONS Platelet degranulation PF4,IGF1,IGF1,SRGN,FN1,CD36,VWF,SERPINE1,PLG,F5,APP,SERPINF2,SELP,SERPING1,ALDOA,A2M,ITGB1,ITGA5,PROS1,ALB,CFD,ITGB3,ITGA2B,GP5,GP9,GP1BA,GP1BB,TMSB4X,F13A1,HGF,SERPINA1,FGB,FGG,FGA,EGF,CLU,F8,PPBP,TIMP1,PECAM1,MMRN1,CD9,KNG1,HRG,CD63,LAMP2, +PWCOMMONS Exocytosis of Alpha granule PF4,IGF1,IGF1,SRGN,FN1,CD36,VWF,SERPINE1,PLG,F5,APP,SERPINF2,SELP,SERPING1,ALDOA,A2M,ITGB1,ITGA5,PROS1,ALB,CFD,ITGB3,ITGA2B,GP5,GP9,GP1BA,GP1BB,TMSB4X,F13A1,HGF,SERPINA1,FGB,FGG,FGA,EGF,CLU,F8,PPBP,TIMP1,PECAM1,MMRN1,CD9,KNG1,HRG, +PWCOMMONS Disinhibition of SNARE formation PICK1,STXBP3, +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding VAMP8,AP1G1,AP1B1,HSPA8,DNAJC6,STX4,VAMP7,SNAP23,VAMP2,SH3GL2,ARF1,GBF1,VTI1B, +PWCOMMONS Late Phase of HIV Life Cycle GTF2A1,GTF2A2,GTF2E2,GTF2E1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNGTT,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,RNMT,KPNB1,RAN,XPO1,RANBP1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RANGAP1, +PWCOMMONS Transcription of the HIV genome GTF2A1,GTF2A2,GTF2E2,GTF2E1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNGTT,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,RNMT, +PWCOMMONS HIV-1 Transcription Pre-Initiation GTF2A1,GTF2A2,GTF2E2,GTF2E1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNGTT,RNMT, +PWCOMMONS HIV-1 Transcription Initiation GTF2A1,GTF2A2,GTF2E2,GTF2E1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNGTT,RNMT, +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,GTF2F1,GTF2F2,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,RNMT, +PWCOMMONS HIV-1 Transcription Elongation TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS Formation of the HIV-1 Early Elongation Complex TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,CDK9,CCNT1,TH1L,WHSC2,RDBP,COBRA1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,NCBP2,NCBP1, +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,CDK9,CCNT1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1, +PWCOMMONS Glutathione conjugation GCLC,GCLM, +PWCOMMONS Glutathione synthesis GCLC,GCLM, +PWCOMMONS Ceramide signalling NGFR,NGF, +PWCOMMONS Regulation of PAK-2p34 activity by PS-GAP/RHG10 ARHGAP10, +PWCOMMONS Regulation of Insulin Secretion ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,PCK1,MDH1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,ETFA,ETFB,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,PFKFB2,PFKFB4,PFKFB3,GOT1,SLC2A2,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A,ADCY8,AKAP5,IQGAP1,MGLL,GLP1R,GNAS,CREB1,LIPE,FABP4,CAV1,HSP90AA1,CALM1,NOS3,PRKCA,AKT1,CHRM3,MARCKS,PLA2G4A,ADRBK1,CAMK4, +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,PCK1,MDH1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,ETFA,ETFB,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,PFKFB2,PFKFB4,PFKFB3,GOT1,SLC2A2,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase PDHX,DLAT,DLD,PDHA1,PDHB,SDHC,SDHD,SDHB,SDHA,UROD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,SUCLG1,SUCLA2,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,CPOX,UROS,DLST,OGDH,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,FH,INS,SYT5,SUCLG2,KCNJ11, +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,VAMP2,INS,SYT5,KCNJ11, +PWCOMMONS Electron Transport Chain SDHC,SDHD,SDHB,SDHA,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UROD,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,SUCLG1,SUCLA2,CYCS,CPOX,UROS,DLST,OGDH,DLD,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,FH,INS,SYT5,SUCLG2,KCNJ11, +PWCOMMONS Inhibition of Insulin Secretion by Adrenaline/Noradrenaline INS,ADCY8, +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine HSP90AA1,CALM1,NOS3,PRKCA,AKT1,VAMP2,INS,SYT5,CHRM3,MARCKS,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4, +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 IQGAP1,MGLL,PFKFB1,GLP1R,GNAS,MLXIPL,ADCY8,CREB1,LIPE,VAMP2,FABP4,INS,SYT5,KCNJ11, +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins CCNB1,CDC20,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,FZR1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,PTTG1,BUB3,BUB1B,MAD2L1, +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,CDC20,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC20,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,PTTG1,CDC2,CCNB1, +PWCOMMONS ARMS-mediated activation NGF,MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1,FRS2,BRAF,RAP1A, +PWCOMMONS MAP kinase cascade RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1, +PWCOMMONS ERK activation MAPK3,MAP2K1,ATF1,CREB1,MAPK1,MAP2K2, +PWCOMMONS ERK1 activation MAPK3,MAP2K1,ATF1,CREB1, +PWCOMMONS MEK activation RAF1,YWHAB,MAP2K1,MAPK1,MAPK3, +PWCOMMONS Interactions of Tat with host cellular proteins CCNT1, +PWCOMMONS Phosphorylation of the APC/C FBXO5,ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,FZR1,CDC2,CCNB1, +PWCOMMONS Homologous Recombination Repair RPA3,RPA2,RAD50,MRE11A,H2AFX,BRCA1,TP53BP1,MDC1,NBN,ATM,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,RAD51,RAD52,BRCA2,PMAIP1,BCL2,BCL2L1,TP53,MDM2,BBC3, +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks RPA3,RPA2,RAD50,MRE11A,H2AFX,BRCA1,TP53BP1,MDC1,NBN,ATM,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,RAD51,RAD52,BRCA2,PMAIP1,BCL2,BCL2L1,TP53,MDM2,BBC3, +PWCOMMONS Recruitment of repair and signaling proteins to double-strand breaks MRE11A,H2AFX,BRCA1,TP53BP1,MDC1,NBN,ATM, +PWCOMMONS ATM mediated response to DNA double-strand break TP53BP1,MDC1,H2AFX,PMAIP1,BCL2,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,BCL2L1,ATM,TP53,RAD51,RAD52,BRCA2,NBN,RAD50,MRE11A,RPA1,RPA3,RPA2,MDM2,BBC3, +PWCOMMONS ATM mediated phosphorylation of repair proteins MRE11A,BRCA1,TP53BP1,MDC1,H2AFX,ATM,NBN,TP53, +PWCOMMONS Intrinsic Pathway F5,KNG1,PLG,FGB,FGG,FGA,PLAT,C1QBP,PROC,F12,F11,GP5,GP9,GP1BA,GP1BB,F8,F9,F13B,F13A1,SERPINC1,F2,VWF,KLKB1,SERPINE1,F2RL3,PROS1,SERPING1,THBD,SERPINF2,A2M,PRCP, +PWCOMMONS Common Pathway F5,PLG,FGB,FGG,FGA,PLAT,PROC,F8,F9,F13B,F13A1,SERPINC1,F2,F11,GP5,GP9,GP1BA,GP1BB,SERPINE1,F2RL3,PROS1,THBD,VWF,SERPINF2, +PWCOMMONS SHC-mediated signalling RAF1,YWHAB,MAP2K1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SHC1,SOS1, +PWCOMMONS RAF activation RAF1,YWHAB,MAP2K1,MAPK1,MAPK3, +PWCOMMONS Acetylation NAT2, +PWCOMMONS Signalling to RAS RAF1,YWHAB,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SHC1,SOS1,NGF,MAP2K1,RALGDS, +PWCOMMONS Signaling by FGFR CBL,FGF23,FGFR4, +PWCOMMONS FGFR ligand binding and activation CBL,FGF23,FGFR4, +PWCOMMONS FGFR2 ligand binding and activation CBL, +PWCOMMONS FGFR2b ligand binding and activation CBL, +PWCOMMONS FGFR3 ligand binding and activation CBL, +PWCOMMONS FGFR3c ligand binding and activation SDC2, +PWCOMMONS FGFR3b ligand binding and activation CBL, +PWCOMMONS FGFR4 ligand binding and activation FGFR4,SDC2, +PWCOMMONS FGFR1 ligand binding and activation CBL,FGF23, +PWCOMMONS FGFR1b ligand binding and activation CBL, +PWCOMMONS FGFR1c and Klotho ligand binding and activation SDC2,CBL, +PWCOMMONS FGFR1c ligand binding and activation SDC2, +PWCOMMONS Purine metabolism XDH,GUK1,GDA,NP,NME2,NME1,CAT,ADA,ADK,DGUOK,TXN,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXNRD1,AK1,VAMP2,ADSL,APRT,GMPS,IMPDH2,IMPDH1,ADSS,AMPD2,RRM2,RRM1,AMPD1,INS,SYT5,GSR,KCNJ11,AMPD3,GART,PAICS,ATIC,PPAT,PFAS,ADSSL1, +PWCOMMONS Purine biosynthesis TXN,GLRX,GMPS,HPRT1,TXNRD1,XDH,GUK1,NP,IMPDH2,IMPDH1,NME2,NME1,CAT,RRM2,RRM1,GDA,GSR,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,ADSSL1,AK1,VAMP2,ADSL,ADSS,AMPD2,AMPD1,INS,SYT5,KCNJ11,AMPD3, +PWCOMMONS dATP formation GLRX,RRM2,RRM1,TXNRD1,NME2,NME1, +PWCOMMONS ATP formation TXN,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,ADSSL1,TXNRD1,XDH,AK1,VAMP2,ADSL,NP,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,NME2,CAT,AMPD2,RRM2,RRM1,AMPD1,INS,SYT5,GSR,KCNJ11,AMPD3, +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate TXN,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXNRD1,XDH,AK1,ADSSL1,VAMP2,ADSL,NP,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,NME2,CAT,AMPD2,RRM2,RRM1,AMPD1,INS,SYT5,GSR,KCNJ11,AMPD3, +PWCOMMONS dGTP formation GLRX,RRM2,RRM1,TXNRD1,NME2,NME1, +PWCOMMONS Purine catabolism XDH,ADA,HPRT1,NT5C2,NP,TXN,GLRX,GMPS,TXNRD1,GUK1,IMPDH2,NME2,NME1,RRM2,RRM1,GSR,IMPDH1,CAT, +PWCOMMONS Xanthine formation XDH,HPRT1,NT5C2,GDA,NP,TXN,GLRX,GMPS,TXNRD1,GUK1,IMPDH2,NME2,NME1,RRM2,RRM1,GSR,IMPDH1,CAT, +PWCOMMONS Inosine formation XDH,HPRT1,NP,TXN,GLRX,GMPS,TXNRD1,GUK1,IMPDH2,NME2,NME1,RRM2,RRM1,GDA,GSR,IMPDH1,CAT,ADA, +PWCOMMONS Hypoxanthine formation XDH,CAT,ADA, +PWCOMMONS Guanine formation XDH,HPRT1,GDA,NP,CAT, +PWCOMMONS Purine salvage reactions XDH,GUK1,GDA,NP,NME2,NME1,CAT,ADA,ADK,DGUOK,TXN,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXNRD1,AK1,VAMP2,ADSL,APRT,GMPS,IMPDH2,IMPDH1,ADSS,AMPD2,RRM2,RRM1,AMPD1,INS,SYT5,GSR,KCNJ11,AMPD3, +PWCOMMONS Deoxyribonucleotide salvage XDH,GUK1,GDA,NP,NME2,NME1,CAT,ADA,ADK,DGUOK, +PWCOMMONS Ribonucleotide salvage TXN,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXNRD1,XDH,AK1,ADA,VAMP2,ADSL,APRT,NP,GMPS,GUK1,IMPDH2,NME1,IMPDH1,ADSS,NME2,CAT,AMPD2,RRM2,RRM1,AMPD1,INS,SYT5,GDA,GSR,KCNJ11,ADK,AMPD3, +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,PGLS,GYG1,UPP1,ADSL,ATIC,OAT,NP,GYS2,AGL,TXN,PYGM,ARG1,KCNJ11,AMPD3,RPE,GLRX,DPYD,GART,DPYS,AK1,PYGL,UMPS,VAMP2,NT5C1A,CTPS,PRPS1,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,CAT,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,TKT,PGM1,GBE1,TXNRD1,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus KPNB1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Reversal of Alkylation Damage By DNA Dioxygenases ALKBH3, +PWCOMMONS PERK regulated gene expression ATF4,EIF2AK3,HSPA5, +PWCOMMONS Creation of C4 and C2 activators C2,C3,C9,C6,C7,C5,C8A,C8B,C8G,C1QC,C1QA,C1QB,C1S,C1R,MBL2,MASP1, +PWCOMMONS Classical antibody-mediated complement activation C2,C3,C9,C6,C7,C5,C8A,C8B,C8G,C1QC,C1QA,C1QB,C1S,C1R, +PWCOMMONS Metabolism of folate and pterines AMD1,AHCY,MTHFD1,SLC46A1,MTHFR,SRM,MTR,SMS,NNMT,TPMT,SLC19A1,SHMT1,DHFR,SLC25A32, +PWCOMMONS Regulation of DNA replication ORC6L,ORC3L,ORC4L,ORC5L,ORC1L,ORC2L,CDT1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC6,CDC2,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDK2,MCM10, +PWCOMMONS Removal of licensing factors from origins CDT1,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDK2,GMNN,MCM10, +PWCOMMONS Association of licensing factors with the pre-replicative complex ORC6L,ORC3L,ORC4L,ORC5L,ORC1L,ORC2L,CDT1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC6,CDC2, +PWCOMMONS Influenza Life Cycle RAN,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,HSPA1A,CALR,CANX,KPNA1,KPNB1,HNRNPD,HNRNPH2,HNRNPUL1,CD2BP2,HNRNPH1,SFRS9,HNRNPA0,HNRNPL,HNRNPA2B1,HNRNPA1,SFRS2,PCBP2,RNPS1,SMC1A,RBM5,HNRNPU,CCAR1,U2AF1,RBMX,HNRNPA3,HNRNPM,SRRM1,U2AF2,THOC4,PCBP1,SF4,YBX1,HNRNPR,HNRNPC,PTBP1,SFRS3,SFRS5,SFRS7,SFRS6,DHX9,SFRS1,HNRNPF,SNRNP70,SNRPA,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1,HSP90AA1,IPO5,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,GRSF1, +PWCOMMONS Virus Assembly and Release CANX, +PWCOMMONS Assembly of Viral Components at the Budding Site CANX, +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPH2,HNRNPUL1,CD2BP2,HNRNPH1,SFRS9,HNRNPA0,HNRNPL,HNRNPA2B1,HNRNPA1,SFRS2,PCBP2,RNPS1,SMC1A,RBM5,HNRNPU,CCAR1,U2AF1,RBMX,HNRNPA3,HNRNPM,SRRM1,U2AF2,THOC4,PCBP1,SF4,YBX1,HNRNPR,HNRNPC,PTBP1,SFRS3,SFRS5,SFRS7,SFRS6,DHX9,SFRS1,HNRNPF,SNRNP70,SNRPA,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1,HSP90AA1,IPO5,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,GRSF1, +PWCOMMONS Viral Messenger RNA Synthesis HNRNPH2,HNRNPUL1,CD2BP2,HNRNPH1,SFRS9,HNRNPA0,HNRNPL,HNRNPA2B1,HNRNPA1,SFRS2,PCBP2,RNPS1,SMC1A,RBM5,HNRNPU,CCAR1,U2AF1,RBMX,HNRNPA3,HNRNPM,SRRM1,U2AF2,THOC4,PCBP1,SF4,YBX1,HNRNPR,HNRNPC,PTBP1,SFRS3,SFRS5,SFRS7,SFRS6,DHX9,SFRS1,HNRNPF,SNRNP70,SNRPA,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1, +PWCOMMONS Viral mRNA Translation RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,GRSF1, +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus RAN,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,HSPA1A, +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery RAN,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS NADPH regeneration CROT,HSD17B4,AMACR,ACOX3,HACL1,ACOX2,ACOT8,SLC27A2,IDH1,PHYH, +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,BRF1,BDP1,TBP,GTF3C2,GTF3C3,GTF3C4,GTF3C5,GTF3C1, +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NT5C2,PFKFB1,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,PCK1,MDH1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,ACLY,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,FASN,PRPS1,DLST,OGDH,ACACB,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,AGPAT1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PPAP2C,PCK2,SUCLA2,GBE1,TXNRD1,PPAP2B,TPI1,SLC25A10,G6PC,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,GSR,PPAP2A, +PWCOMMONS Influenza Virus Induced Apoptosis SLC25A6, +PWCOMMONS HIV Life Cycle PPIA,BANF1,CD4,XRCC6,XRCC5,FEN1,LIG4,XRCC4,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNGTT,CTDP1,TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,RNMT,KPNB1,RAN,XPO1,RANBP1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RANGAP1, +PWCOMMONS Early Phase of HIV Life Cycle PPIA,BANF1,CD4,XRCC6,XRCC5,FEN1,LIG4,XRCC4, +PWCOMMONS Binding and entry of HIV virion PPIA,BANF1,XRCC6,XRCC5,FEN1,LIG4,XRCC4,CD4, +PWCOMMONS Uncoating of the HIV Virion PPIA,BANF1,XRCC6,XRCC5,FEN1,LIG4,XRCC4, +PWCOMMONS 3' -UTR-mediated translational regulation EIF4H,PABPC1,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF1AX,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL31,RPL35A,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL32,RPL3L,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL19,RPL23,RPL41,RPL7,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL36A,RPL38,RPL9,RPLP0,UBA52,RPL37A,RPL12, +PWCOMMONS SOS-mediated signalling RAF1,YWHAB,MAP2K1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SOS1,SHC1, +PWCOMMONS Complement cascade C6,C7,C5,C8A,C8B,C8G,C4A,C2,C3,C1QC,C1QA,C1QB,C1S,C1R,MBL2,MASP1,CFD,CFB, +PWCOMMONS Activation of C3 and C5 C2,C3,C9,C6,C7,C5,C8A,C8B,C8G, +PWCOMMONS Initial triggering of complement C2,C3,C9,C6,C7,C5,C8A,C8B,C8G,C1QC,C1QA,C1QB,C1S,C1R,MBL2,MASP1,CFD,CFB, +PWCOMMONS Alternative complement activation C4A,C2,C9,C6,C7,C5,C8A,C8B,C8G,CFD,CFB, +PWCOMMONS Metabolism of lipids and lipoproteins CROT,SLC27A2,HSD17B4,AMACR,ACOX3,HACL1,ACOX2,ACOT8,PHYH,IDH1,SLC25A17,PPAP2C,GNPAT,AGPS,FAR2,DGAT1,FAR1,PPAP2A,AGPAT1,PPAP2B,ABCD1,ACAA1,PNLIPRP2,CEL,PNLIP,CLPS,ABCG5,ABCG8,APOA2,APOC3,APOE,APOC2,APOA4,APOA1,APOB,LCAT,LDLR,CUBN,AMN,CETP,APOA5,LDLRAP1,ABCA1,LIPC,ALB,LPL,A2M,P4HB,MTTP,SAR1B,ACADS,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,HADHB,HADHA,INS,SYT5,KCNJ11,ACADM,ACADL,ACADVL,UROD,DCI,CPOX,UROS,DLST,OGDH,DLD,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,SDHC,SDHD,SDHB,SDHA,FECH,DECR1,SUCLA2,MDH2,FH,SLC25A20,CPT1B,CPT2,FASN,ACACB,GPAM,GK,GPD1,AGPAT5,AGPAT2,AGPAT4,AGPAT3,CYP46A1,ABCB11,CYP39A1,CYP8B1,BAAT,HSD3B7,AKR1C4,SLC27A5,AKR1D1,CYP27A1,CYP7A1,CH25H,CYP7B1,SLCO1B1,SLCO1B3,FABP6,ABCC3,SLC10A1,SLCO1A2,SLC10A2,GGPS1,EBP,SQLE,CYP11B1,LBR,MVK,CYP11B2,FDFT1,STAR,CYP21A2,CYP51A1,NSDHL,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,PMVK,SC5DL,SC4MOL,MVD,LSS,CYP17A1,HMGCS1,HSD11B1,FABP4,LIPE,MGLL,PLIN,CAV1,ABHD5,HMGCS2,HMGCL,ACAT1,BDH1,OXCT1,GPD2, +PWCOMMONS Hormone-sensitive lipase (HSL)-mediated triacylglycerol hydrolysis LIPE,MGLL,PLIN,CAV1,ABHD5, +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,ETFA,ETFB,HADH,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,ECHS1,HADHB,HADHA,INS,SYT5,KCNJ11,ACADM,ACADL,ACADVL,UROD,DCI,CPOX,UROS,DLST,OGDH,DLD,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,SDHC,SDHD,SDHB,SDHA,FECH,DECR1,SUCLA2,MDH2,FH, +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids UROD,DCI,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,HADHB,HADHA,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,DLD,HADH,ETFA,ETFB,ALAD,CS,ECHS1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,DECR1,SUCLA2,CYCS,ACADL,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,FH,INS,SYT5,ACADM, +PWCOMMONS Lipoprotein metabolism APOC3,APOE,APOC2,APOA4,APOA1,APOB,LCAT,LDLR,CUBN,AMN,CETP,APOA5,LDLRAP1,ABCA1,LIPC,ALB,LPL,A2M,P4HB,MTTP,SAR1B, +PWCOMMONS LDL endocytosis LDLR,APOB,APOE,LIPC, +PWCOMMONS HDL-mediated lipid transport APOC3,APOE,APOC2,APOA4,APOA1,APOB,LCAT,LDLR,CUBN,AMN,CETP,APOA5,LDLRAP1,ABCA1,LIPC,ALB,LPL,A2M, +PWCOMMONS Chylomicron-mediated lipid transport APOA2,APOC2,APOA4,APOA1,APOE,APOB,LDLR,P4HB,MTTP,APOA5,LDLRAP1,LIPC,SAR1B,LPL, +PWCOMMONS Trafficking of dietary sterols ABCG8, +PWCOMMONS Triacylglyceride Biosynthesis ACACB,PPAP2C,PPAP2A,PPAP2B,GPAM,GK,GPD1,AGPAT5,AGPAT2,AGPAT4,AGPAT3,AGPAT1,DGAT1, +PWCOMMONS Fatty Acyl-CoA Biosynthesis PPAP2C,GK,GPD1,AGPAT5,DGAT1,AGPAT2,AGPAT4,AGPAT3,PPAP2A,AGPAT1,PPAP2B,FASN,ACACB, +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,ETFA,ETFB,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,ECHS1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,HADH,VAMP2,INS,SYT5,KCNJ11,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,SLC25A20,HADHB,HADHA,ACADL,ACADM,ACADVL,CPT1B,CPT2, +PWCOMMONS Peroxisomal lipid metabolism CROT,SLC27A2,HSD17B4,AMACR,ACOX3,HACL1,ACOX2,ACOT8,PHYH,IDH1,SLC25A17,PPAP2C,GNPAT,AGPS,FAR2,DGAT1,FAR1,PPAP2A,AGPAT1,PPAP2B,ABCD1,ACAA1, +PWCOMMONS Beta-oxidation of pristanoyl-CoA CRAT,ACOX2,CROT,ACOT8,AMACR,ACOX3, +PWCOMMONS Alpha-oxidation of phytanate CROT,SLC27A2,HSD17B4,AMACR,ACOX3,HACL1,ACOX2,ACOT8,PHYH,IDH1,SLC25A17, +PWCOMMONS Beta-oxidation of very long chain fatty acids CRAT,ABCD1,ACOT8,ACAA1, +PWCOMMONS Plasmalogen biosynthesis GNPAT,AGPS,FAR2,DGAT1,FAR1,PPAP2A,AGPAT1,PPAP2B, +PWCOMMONS Ketone body metabolism HMGCL,ACAT1,BDH1,OXCT1, +PWCOMMONS Utilization of Ketone Bodies OXCT1,BDH1, +PWCOMMONS Synthesis of Ketone Bodies HMGCL,ACAT1,BDH1, +PWCOMMONS Transport of gamma-carboxylated protein precursors from the endoplasmic reticulum to the Golgi apparatus F10,PROC,GAS6,F2,F9,PROS1,PROZ,FURIN,NOTCH2, +PWCOMMONS Phosphorylase kinase activates glycogen phosphorylase PYGL,PHKG1,CALM1,PHKB,PHKA1,PHKG2,PHKA2, +PWCOMMONS Cell surface interactions at the vascular wall GP6,FCER1G,COL1A1,COL1A2,CD47,PROC,OLR1,APOB,MERTK,CXADR,JAM3,JAM2,ITGB2,ITGAX,FN1,ITGB1,ITGA5,CD58,CD2,THBD,F2,F11R,ITGAL,F5,CD244,CD48,BSG,PPIA,MMP1,SPN,CAV1,PPIL2,ITGA4,PLCG1,PECAM1,PTPN6,INPP5D,ITGB3,ITGAV,PTPN11,TREM1,PROS1,CD177,SELPLG,ITGAM,ANGPT1,TEK,ANGPT4,GRB14,SOS1,GRB7,DOK2,SHC1,ANGPT2,PLCG2, +PWCOMMONS Tie2 Signaling TEK,ANGPT4,GRB14,SOS1,GRB7,PTPN11,DOK2,SHC1,ANGPT2, +PWCOMMONS PECAM1 interactions PECAM1,PTPN6,INPP5D,ITGB3,ITGAV,PTPN11, +PWCOMMONS Basigin interactions PPIA,MMP1,SPN,CAV1,PPIL2, +PWCOMMONS Digestion of dietary carbohydrate SI,LCT,MGAM,SLC2A2,TREH,SLC2A5, +PWCOMMONS De novo synthesis of UMP GLRX,TXN,DHODH,CPS1,UPP1,ASS1,CAD,CMPK1,OAT,GYS2,UMPS,UGDH,RRM2,RRM1,ARG1,GBE1,TXNRD1,DPYD,DPYS,PYCR1,NT5C1A,CTPS,NME2,NME1,OTC,SLC35D1,ASL,GSR,UPB1, +PWCOMMONS Vamp8 associated clathrin derived vesicle budding VAMP8,AP1G1,AP1B1,HSPA8,DNAJC6,STX4,VAMP7,SNAP23,VAMP2,SH3GL2,ARF1,GBF1,VTI1B, +PWCOMMONS Synthesis of GPI-anchored proteins PIGL,PLAUR,PIGG,PIGF,PIGH,DPM2,PIGC,PIGA,PIGP,PIGO,PIGB,PGAP1,PIGM,PIGX,PIGU,PIGT,GPAA1,PIGS,PIGK,PIGV,PIGN,DPM3,DPM1, +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGL,PLAUR,PIGG,PIGF,PIGH,DPM2,PIGC,PIGA,PIGP,PIGO,PIGB,PGAP1,PIGM,PIGX,PIGU,PIGT,GPAA1,PIGS,PIGK,PIGV,PIGN, +PWCOMMONS Synthesis of dolichol-phosphate mannose DPM2,DPM1,PIGB,PGAP1,PIGM,PIGX,PLAUR,PIGU,PIGT,GPAA1,PIGS,PIGK,PIGV,PIGG,PIGF,PIGN,PIGO, +PWCOMMONS Attachment of GPI anchor to uPAR PGAP1,PIGU,PIGT,GPAA1,PIGS,PIGK, +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase DBT,BCKDHA,BCKDHB,DLD,UROD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,MCEE,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,ACADSB,PCCB,PCCA,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,MUT,HSD17B10,FH,INS,SYT5, +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,PGLS,GYG1,UPP1,ADSL,ATIC,OAT,NP,GYS2,TXN,PYGM,ARG1,KCNJ11,AMPD3,RPE,GLRX,DPYD,GART,DPYS,AK1,PYGL,UMPS,VAMP2,NT5C1A,CTPS,PRPS1,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,INS,SYT5,SLC35D1,PFAS,ASL,UPB1,XDH,PAICS,CPS1,TALDO1,ASS1,AGL,CMPK1,CAT,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,TKT,PGM1,GBE1,TXNRD1,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Grb2 events in EGFR signaling RAF1,YWHAB,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SHC1,SOS1,MAP2K1,EGFR,EGF, +PWCOMMONS Base-Excision Repair, AP Site Formation XRCC1,POLB,FEN1,APEX1,POLD4,POLD3,POLD2,POLD1,OGG1,MPG,MUTYH,SMUG1,CCNO,TDG,NTHL1,LIG1,PCNA, +PWCOMMONS Displacement of DNA glycosylase by APE1 OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Removal of DNA patch containing abasic residue PCNA,POLD4,POLD3,POLD2,POLD1,POLB,LIG3,XRCC1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway LIG3,XRCC1,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway PCNA,POLD4,POLD3,POLD2,POLD1,POLB,LIG3,XRCC1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway PCNA,POLD4,POLD3,POLD2,POLD1,POLB,LIG3,XRCC1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Depurination OGG1,MPG,MUTYH, +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected purine MUTYH,APEX1,OGG1, +PWCOMMONS Vpu mediated degradation of CD4 CD4,SKP1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS APOBEC3G mediated resistance to HIV-1 infection BANF1, +PWCOMMONS APC/C-mediated degradation of cell cycle proteins ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC20,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC2,CCNB1,PTTG1,BUB3,BUB1B,MAD2L1,PLK1,FBXO5,CDK2,CUL1,BTRC,SKP1,NEK2, +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC20,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins CCNB1,CDC20,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,FZR1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,PTTG1,BUB3,BUB1B,MAD2L1,PLK1,FBXO5, +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,PSMA3,PSMC6,PSMD8,PSMD10,PSMB5,PSMD1,PSMD6,PSMB4,PSMD4,PSMB8,PSMA2,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMD13,PSMB2,PSMD14,PSMB1,PSMA6,PSMB10,PSMB9,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Gluconeogenesis NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,GOT2,PGLS,HADH,UPP1,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Peptide ligand-binding receptors GPER,KNG1,C5AR1,C5,PRLHR,DARC,KISS1,KISS1R,GAL,F2,TAC3,TACR3,TAC1,TACR2,TACR1,POMC,MC2R,XCR1,IL8RB,CXCL16,CXCR6,CX3CL1,CCL25,CCL5,IL8RA,CCR10,CCR7,CCL16,CCL20,CCR6,CCK,HCRTR2,HCRT,NPFF,HCRTR1,QRFPR,QRFP,AGT,NTS,PNOC,OPRL1,MGLL,AVP,AVPR2,PFKFB1,MLXIPL,CREB1,LIPE,GNAS,OXTR,OXT,FABP4, +PWCOMMONS Vasopressin-like receptors AVP,AVPR2,PFKFB1,MLXIPL,CREB1,LIPE,GNAS,OXTR,OXT,FABP4, +PWCOMMONS Orexin and neuropeptides FF and QRFP bind to their respective receptors HCRT,NPFF,HCRTR1,QRFPR,QRFP, +PWCOMMONS Tachykinin receptors bind tachykinins TACR3,TAC1,TACR2,TACR1, +PWCOMMONS Chemokine receptors bind chemokines IL8RB,CXCL16,CXCR6,CX3CL1,CCL25,CCL5,IL8RA,CCR10,CCR7,CCL16,CCL20,CCR6, +PWCOMMONS Tryptophan catabolism AFMID,ACMSD,NMNAT2,KYNU,HAAO,TDO2,NMNAT3,QPRT,KMO,NADK,NMNAT1, +PWCOMMONS trans-Golgi Network Vesicle Budding VAMP8,AP1G1,AP1B1,HSPA8,DNAJC6,STX4,VAMP7,SNAP23,VAMP2,SH3GL2,ARF1,GBF1,VTI1B, +PWCOMMONS Vamp7 associated clathrin derived vesicle budding VAMP8,AP1G1,AP1B1,HSPA8,DNAJC6,STX4,VAMP7,SNAP23,VAMP2,SH3GL2,ARF1,GBF1,VTI1B, +PWCOMMONS Receptor-ligand complexes bind G proteins PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4, +PWCOMMONS RNA Polymerase III Transcription Initiation BDP1,TBP,POU2F1,ZNF143,SNAPC1,SNAPC2,SNAPC3,SNAPC5,SNAPC4,POLR3B,POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,BRF1,GTF3C2,GTF3C3,GTF3C4,GTF3C5,GTF3C1,GTF3A, +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter BDP1,TBP,POU2F1,ZNF143,SNAPC1,SNAPC2,SNAPC3,SNAPC5,SNAPC4,POLR3B,POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E, +PWCOMMONS RNA Polymerase III Chain Elongation POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,NFIX,SSB,NFIB,NFIA,NFIC, +PWCOMMONS RNA Polymerase III Transcription Termination POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,NFIX,SSB,NFIB,NFIA,NFIC, +PWCOMMONS COPI Mediated Transport ARCN1,COPG,COPB1,COPZ1,COPE,COPB2,COPA,ARF1,GBF1, +PWCOMMONS IRS-related events FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1,PDPK1,MAP2K2,RAF1,YWHAB,MAP2K1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SOS1,SHC1,INSR,INS, +PWCOMMONS IRS-mediated signalling FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1,PDPK1,MAP2K2,RAF1,YWHAB,MAP2K1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SOS1,SHC1, +PWCOMMONS NFG and proNGF binds to p75NTR RELA,MAPK8,SMPD2,MAGED1,NGFR,BAD,TRAF6,MYD88,NFKBIA,SQSTM1,IKBKB,PSENEN,NGF,AATF,RIPK2, +PWCOMMONS Synthesis of deoxyribonucleoside 5'-diphosphates from ribonucleoside 5'-diphosphates TXNRD1,NME2,NME1,GLRX,RRM2,RRM1,RRM2B,GSR, +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin RRM2,RRM1,TXN,TXNRD1,NME2,NME1, +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) GLRX,RRM2,RRM1,TXNRD1,NME2,NME1, +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and glutaredoxin RRM1,GLRX,GSR, +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (glutaredoxin) RRM1,GLRX,GSR, +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin TXNRD1,NME2,NME1,GLRX,RRM2,RRM1,RRM2B, +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) RRM1,RRM2B, +PWCOMMONS Reversible phosphorylation of nucleoside diphosphates GBE1,GYS2,UGDH,SLC35D1,NME1,CTPS,NME2,NME3,NME4, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase C hexamer GBE1,GYS2,UGDH,NME3,SLC35D1, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A,B heterohexamer CTPS,GBE1,GYS2,NME2,NME1,UGDH,SLC35D1, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase B hexamer GBE1,GYS2,UGDH,NME2,SLC35D1, +PWCOMMONS Death Receptor Signalling TNFSF10,FADD,CASP10,CASP8,CFLAR,BCL2L1,BID,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,BAX,BAK1,TNFRSF1A,TNF,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,TRAF2,RIPK1,TRADD,BMX,BCL2,CDH1,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,BAD,PLEC1,FASLG,FAS, +PWCOMMONS TNF signaling BID,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,BAX,BAK1,TNFRSF1A,TNF,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,CASP8,FADD,TRAF2,RIPK1,TRADD,BMX,BCL2,CDH1,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,BAD,PLEC1, +PWCOMMONS TRAIL signaling TNFSF10,FADD,CASP10,CASP8,CFLAR, +PWCOMMONS eNOS activation and regulation CAV1,HSP90AA1,CALM1,LYPLA1,WASL,NOSTRIN,ZDHHC21,AKT1,NOSIP, +PWCOMMONS eNOS acylation cycle CAV1,HSP90AA1,CALM1,LYPLA1,WASL,NOSTRIN,ZDHHC21,AKT1, +PWCOMMONS NOSTRIN mediated eNOS trafficking WASL,NOS3,NOSTRIN,CALM1,HSP90AA1,AKT1, +PWCOMMONS eNOS activation NOS3,CAV1,HSP90AA1,LYPLA1,WASL,NOSTRIN,ZDHHC21,AKT1, +PWCOMMONS NOSIP mediated eNOS trafficking NOS3, +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells GLUL,RIMS1,CPLX1,SLC18A3,VAMP2,RAB3A,SYT1,SLC17A7,SLC38A1,UNC13B,DBT,BCKDHA,BCKDHB,DLD,BCAT1,MCCC2,MCCC1,AUH,IVD,BCAT2, +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism GLUL,RIMS1,CPLX1,SLC18A3,VAMP2,RAB3A,SYT1,SLC17A7,SLC38A1,UNC13B, +PWCOMMONS Glutamate Neurotransmitter Release Cycle DBT,BCKDHA,BCKDHB,DLD,RIMS1,CPLX1,SLC18A3,VAMP2,RAB3A,SYT1,SLC17A7,UNC13B,BCAT1,MCCC2,MCCC1,AUH,IVD,BCAT2, +PWCOMMONS Oxidative decarboxylation of alpha-ketoisocaproate to isovaleryl-CoA by branched-chain alpha-ketoacid dehydrogenase BCKDHA,BCKDHB,DLD,MCCC2,MCCC1,AUH,IVD, +PWCOMMONS Amine ligand-binding receptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4,HRH1,HRH2, +PWCOMMONS Serotonin receptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4, +PWCOMMONS Dopamine receptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4, +PWCOMMONS Adrenoceptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4, +PWCOMMONS G-protein mediated events GNAL,CALM1,CAV1,HSP90AA1,NOS3,VAMP2,INS,SYT5,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4, +PWCOMMONS Adenylate cyclase inhibitory pathway GNAL, +PWCOMMONS Further platelet releasate PLEK,PPIA,PSAP,CAP1,FLNA,CALU,SOD1,TF,TUBA4A,CFL1,TTN,PFN1,VCL,BRPF3,ACTBL3,WDR1,SCG3,HSPA5,CALM1,APOA1, +PWCOMMONS HIV-1 elongation arrest and recovery TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1, +PWCOMMONS NRAGE signals death through JNK MAGED1,NGFR,BAD,AATF, +PWCOMMONS Glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer GYS2,GYG2,GYS1,GBE1, +PWCOMMONS Activation of BAD and translocation to mitochondria YWHAB,AKT1,BCL2,BCL2L1,PPP3R1,PPP3CC,BID, +PWCOMMONS Nucleotide Excision Repair PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,ERCC5,TCEA1,ERCC8,XAB2,ERCC6,ERCC4,ERCC1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2,XPA,DDB2,DDB1,RAD23B,XPC, +PWCOMMONS Global Genomic NER (GG-NER) PCNA,POLD4,POLD3,POLD2,POLD1,ERCC5,XPA,DDB2,DDB1,ERCC4,ERCC1,RAD23B,XPC,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RPA1,RPA3,RPA2,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4, +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2, +PWCOMMONS Formation of incision complex in GG-NER PCNA,POLD4,POLD3,POLD2,POLD1,ERCC5,XPA,DDB2,DDB1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RPA1,RPA3,RPA2,RAD23B,XPC,ERCC4,ERCC1,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4, +PWCOMMONS DNA Damage Recognition in GG-NER PCNA,POLD4,POLD3,POLD2,POLD1,ERCC5,XPA,DDB2,DDB1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RPA1,RPA3,RPA2,RAD23B,XPC,ERCC4,ERCC1,POLE2,POLE,RFC2,RFC1,RFC3,RFC5,RFC4, +PWCOMMONS Cell death signalling via NRAGE, NRIF and NADE NGFRAP1,NGFR,SQSTM1,MAPK8,PSENEN,TRAF6,MAGED1,BAD,AATF, +PWCOMMONS NRIF signals cell death from the nucleus MAPK8,PSENEN,NGFR,TRAF6, +PWCOMMONS NADE modulates death signalling NGFRAP1,NGFR, +PWCOMMONS Activation and oligomerization of BAK protein DSG3,GSN,DIABLO,XIAP,CASP3,BAK1,BID,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,MAPT,BIRC2,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2, +PWCOMMONS Toll Receptor Cascades MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR6,TLR2,ATF2,IRF3,TBK1,TICAM1,TLR3,MAP3K7IP1,MAP3K7IP2,MAP3K7,CHUK,IKBKB,IKBKG,RELA,RIPK1,JUN,MAPK1,MAPK8,TLR10,LY96,TLR4,CD180,LY86,TICAM2,LBP,CD14,TLR5,ZFYVE20,EEA1,TLR9,PIK3C3,PIK3R4, +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ZFYVE20,ECSIT,SIGIRR,EEA1,TLR9,PIK3C3,PIK3R4, +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade LY96,TLR4,MYD88,IRAK4,CD180,LY86,ECSIT,IRF3,RIPK1,TICAM1,TICAM2,IRAK3,LBP,MAP3K1,TRAF6,SIGIRR,TBK1,CD14, +PWCOMMONS Activated TLR4 signalling TICAM1,TICAM2,LY96,TLR4,TBK1,IRF3,IRAK4,MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR, +PWCOMMONS TRAM Cascade TICAM1,TICAM2,LY96,TLR4,TBK1,IRF3, +PWCOMMONS Toll Like Receptor 10 (TLR10) Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR10, +PWCOMMONS Toll Like Receptor 5 (TLR5) Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR5, +PWCOMMONS Toll Like Receptor 7/8 (TLR7/8) Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR, +PWCOMMONS Toll Like Receptor 2 Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR6,TLR2, +PWCOMMONS Toll Like Receptor TLR1:TLR2 Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR2, +PWCOMMONS Toll Like Receptor TLR6:TLR2 Cascade MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR6,TLR2, +PWCOMMONS P450 Dehydrogenation of alkanes to form alkenes CYP3A4, +PWCOMMONS Activation of Pro-Caspase 8 BID,MST4,CASP8,FADD,TNFRSF10B,TNFSF10,DSG3,GSN,DIABLO,XIAP,CASP3,BAX,BAK1,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,TRAF2,RIPK1,TRADD,BMX,BCL2,CDH1,FASLG,FAS,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,BAD,PLEC1, +PWCOMMONS Lysine catabolism NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,AASS,PGLS,HADH,UPP1,GOT1,PGK1,ADSL,GCDH,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,AADAT,ASS1,CMPK1,ALAD,CS,CAT,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,TKT,FECH,SUCLA2,GBE1,TXNRD1,TPI1,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Signalling by NGF SH3GL2,AP2A2,AP2A1,NGF,DNM1,RPS6KA5,MAPKAPK2,ATF1,CREB1,MAPK7,ADCYAP1R1,ADORA2A,ADCYAP1,RAF1,YWHAB,SHC1,SOS1,MAP2K1,CALM1,HSP90AA1,CAV1,NOS3,FRS2,MAPK3,MAPK1,MAP2K2,RAP1A,BRAF,PLCG1,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,ADRBK1,CAMK4,VAMP2,KIDINS220,INS,SYT5,MAP2K5,RALGDS,RICTOR,FRAP1,LST8,PDPK1,NR4A1,FOXO1,CHUK,THEM4,PTEN,BAD,RHOA,TRIB3,PHLPP,CASP9,AKT1S1,MDM2,RPS6KB2,TRAF6,NGFR,NFKB1,RELA,ADAM17,PSENEN,SQSTM1,IKBKB,NFKBIA,PRKCI,MYD88,RIPK2,ARHGEF1,ARHGDIA,SMPD2,PRDM4,MAPK8,MAGED1,AATF,YWHAE,NGFRAP1, +PWCOMMONS TRKA signalling from the plasma membrane MAPK7,CREB1,MAP2K5,CAV1,HSP90AA1,CALM1,NOS3,PLCG1,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,ADRBK1,CAMK4,AKT1,FRS2,KIDINS220,VAMP2,INS,SYT5,PLA2G4A,MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,BRAF,RAP1A,SHC1,SOS1,RALGDS,RICTOR,FRAP1,LST8,PDPK1,NR4A1,FOXO1,CHUK,THEM4,PTEN,BAD,RHOA,TRIB3,PHLPP,CASP9,AKT1S1,MDM2,RPS6KB2, +PWCOMMONS Signalling to ERKs NGF,MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1,FRS2,BRAF,RAP1A,SHC1,SOS1,RALGDS, +PWCOMMONS Signalling to p38 via RIT and RIN RAF1,YWHAB,MAP2K1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,NGF,BRAF, +PWCOMMONS Prolonged ERK activation events NGF,MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1,FRS2,BRAF,RAP1A, +PWCOMMONS Frs2-mediated activation RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1,FRS2,NGF,RAP1A,KIDINS220,BRAF, +PWCOMMONS Signalling to ERK5 CREB1,MAP2K5, +PWCOMMONS PLC-gamma1 signalling HSP90AA1,CALM1,NOS3,PLCG1,NGF,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,AKT1,FRS2,KIDINS220,VAMP2,INS,SYT5,PLA2G4A, +PWCOMMONS p75 NTR receptor-mediated signalling NGFR,NFKB1,RELA,ADAM17,PSENEN,SQSTM1,IKBKB,NFKBIA,PRKCI,MYD88,RIPK2,ARHGEF1,RHOA,ARHGDIA,NGF,SMPD2,PRDM4,MAPK8,MAGED1,BAD,AATF,YWHAE,NGFRAP1, +PWCOMMONS p75NTR signals via NF-kB RELA,TRAF6,SQSTM1,NGFR,IKBKB,NFKBIA,PRKCI,MYD88,RIPK2, +PWCOMMONS p75NTR recruits signalling complexes RELA,PRKCI,TRAF6,SQSTM1,NGFR,MYD88,NFKBIA,RIPK2,IKBKB, +PWCOMMONS p75NTR regulates axonogenesis NGFR,RHOA,ARHGDIA,NGF, +PWCOMMONS Axonal growth stimulation NGF,ARHGDIA,NGFR,ARHGEF1, +PWCOMMONS Axonal growth inhibition (RHOA activation) NGFR,RHOA,ARHGDIA, +PWCOMMONS Regulated proteolysis of p75NTR NGFR,NFKB1,RELA,ADAM17,PSENEN, +PWCOMMONS p75NTR negatively regulates cell cycle via SC1 NGFR,NGF, +PWCOMMONS Retrograde neurotrophin signalling SH3GL2,AP2A2,AP2A1,NGF,DNM1, +PWCOMMONS NGF processing YWHAB,SHC1,SOS1,NGF,MAP2K1,CALM1,HSP90AA1,CAV1,NOS3,MAPK3,MAPK1,MAP2K2,PLCG1,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,VAMP2,FRS2,KIDINS220,INS,SYT5, +PWCOMMONS Activation of TRKA receptors ADORA2A,ADCYAP1,RAF1,YWHAB,SHC1,SOS1,NGF,MAP2K1,CALM1,HSP90AA1,CAV1,NOS3,FRS2,MAPK3,MAPK1,MAP2K2,RAP1A,BRAF,PLCG1,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,VAMP2,KIDINS220,INS,SYT5, +PWCOMMONS NGF-independant TRKA activation ADORA2A,ADCYAP1, +PWCOMMONS TRKA activation by NGF YWHAB,SHC1,SOS1,NGF,MAP2K1,CALM1,HSP90AA1,CAV1,NOS3,FRS2,MAPK3,MAPK1,MAP2K2,RAP1A,BRAF,PLCG1,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,VAMP2,KIDINS220,INS,SYT5, +PWCOMMONS Nef mediated downregulation of MHC class I complex cell surface expression AP1G1,AP1B1,B2M,HLA-A, +PWCOMMONS P450 Prostaglandin isomerizations TBXAS1, +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates TK1,NME2,NME1,DTYMK,UCK2,GUK1,DGUOK,GYG2,TXN,GLRX,GBE1,TXNRD1,UCK1,CTPS,CMPK1,GYS2,UGDH,RRM2,RRM1,SLC35D1,GSR,ADK,DCK,TYMS,DCTD, +PWCOMMONS Phosphorylation of cytosolic nucleosides by deoxycytidine kinase DCK,DTYMK,TYMS,NME2,NME1,DCTD, +PWCOMMONS Phosphorylation of cytosolic nucleosides by thymidine kinase 1, soluble NME2,NME1,DTYMK, +PWCOMMONS Phosphorylation of cytosolic nucleosides by adenosine kinase NME1,ADK, +PWCOMMONS Phosphorylation of mitochondrial nucleosides by deoxyguanosine kinase NME1,GUK1,DGUOK, +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 TXN,GLRX,GBE1,TXNRD1,UCK1,CTPS,CMPK1,GYS2,NME2,NME1,UGDH,RRM2,RRM1,SLC35D1,GSR, +PWCOMMONS Glucagon signaling in metabolic regulation PFKFB1,MLXIPL,GCG,GCGR,GNAS,CREB1,LIPE,FABP4, +PWCOMMONS G(s)-alpha mediated events in glucagon signalling PFKFB1,MLXIPL,GCG,GCGR,GNAS,CREB1,LIPE,FABP4, +PWCOMMONS PKA activation in glucagon signalling LIPE,PFKFB1,MLXIPL,CREB1,FABP4,GNAS, +PWCOMMONS Glucose metabolism NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,BSG,CMPK1,ALAD,CS,CAT,PPOX,SLC25A1,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR,GYG1,PYGM,PYGL,AGL,PGM1,PHKG1,CALM1,PHKB,PHKA1,PHKG2,PHKA2,GYS1,PFKFB1,PFKFB2,PFKFB4,PFKFB3,MLX,MLXIPL,HK1,GPT,PKM2,FASN,AGPAT1,PPAP2C,HK3,ACLY,ACACB,HK2,PPAP2B,DGAT1,PPAP2A,SLC2A4,SLC2A1,SLC2A2,SLC2A3,GCKR,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Pyruvate metabolism NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,BSG,CMPK1,ALAD,CS,CAT,PPOX,SLC25A1,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Glucose uptake PFKFB2,PFKFB4,PFKFB3,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,HK1,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,HK3,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,HK2,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A,SLC2A4,SLC2A1,SLC2A2,SLC2A3,GCKR,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,HK1,RPE,SLC2A4,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,SLC2A1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,PFKFB2,PFKFB4,PFKFB3,GOT1,SLC2A2,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,SLC2A3,PRPS1,ACACB,OTC,FH,HK2,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,HK1,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,GLRX,SLC25A21,AGPAT1,UROS,TALDO1,ASS1,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,FECH,TKT,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,HK3,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,PFKFB2,PFKFB4,PFKFB3,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,HK2,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Glycogen synthesis PGM1,GYG1,GBE1,GYS2,GYS1,UGDH,SLC35D1, +PWCOMMONS Phosphorylated glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer when activated by glucose-6-phosphate GYS1,GYS2,GYG2,GBE1, +PWCOMMONS Glycogen branching enzyme transfers terminal alpha(1,4)glucose blocks to form alpha(1,6) branches GYG2,GBE1, +PWCOMMONS UTP and glucose 1-phosphate react to form UDP-glucose and pyrophosphate GYG1,GBE1,GYS2,GYS1,UGDH,SLC35D1, +PWCOMMONS Glycogen breakdown (glycogenolysis) GART,NT5C2,GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,TXN,PGLS,XDH,PAICS,CPS1,TALDO1,UPP1,ASS1,CMPK1,ADSL,ATIC,OAT,NP,GYS2,CAT,GYG1,PYGM,PYGL,UMPS,UGDH,AGL,RRM2,RRM1,G6PD,AMPD1,PPAT,ARG1,KCNJ11,AMPD3,TKT,PGM1,RPE,GBE1,TXNRD1,DPYD,DPYS,AK1,PHKG1,CALM1,PHKB,PHKA1,PHKG2,PHKA2,PYCR1,VAMP2,NT5C1A,CTPS,PRPS1,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,NME2,RPIA,OTC,AMPD2,INS,SYT5,PGD,PFAS,SLC35D1,GSR,ASL,UPB1, +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,PGLS,GYG1,UPP1,ADSL,ATIC,OAT,NP,GYS2,AGL,TXN,PYGM,ARG1,KCNJ11,AMPD3,RPE,GLRX,DPYD,GART,DPYS,AK1,PYGL,UMPS,VAMP2,NT5C1A,CTPS,PRPS1,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,INS,SYT5,SLC35D1,PFAS,ASL,UPB1,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,CAT,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,TKT,PGM1,GBE1,TXNRD1,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,PGLS,GYG1,UPP1,ADSL,ATIC,OAT,NP,GYS2,TXN,PYGM,ARG1,KCNJ11,AMPD3,RPE,GLRX,DPYD,GART,DPYS,AK1,PYGL,UMPS,VAMP2,NT5C1A,CTPS,PRPS1,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,INS,SYT5,SLC35D1,PFAS,ASL,UPB1,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,CAT,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,TKT,PGM1,GBE1,TXNRD1,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Down-stream signal transduction RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1,RASA1,PDGFRB,PTPN11,PLCG1,SOS1,BCAR1,GRB7, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by deoxythymidylate kinase (thymidylate kinase) NME1,DTYMK, +PWCOMMONS Urea synthesis NAGS,CPS1,OAT,ASL,ASS1,ARG1,PYCR1, +PWCOMMONS Vif-mediated degradation of APOBEC3G TCEB1,CUL5,TCEB2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates GLRX,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,TXNRD1,AK1,VAMP2,NME2,NME1,RRM2,RRM1,INS,SYT5,GSR,KCNJ11,GUK1,DTYMK,AK5,GYG2,GBE1,CTPS,CMPK1,GYS2,UGDH,SLC35D1,AK2, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by guanylate kinase 1 GLRX,TXNRD1,NME2,NME1,RRM2,RRM1,GUK1,GSR, +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase TXN,GLRX,GBE1,TXNRD1,CTPS,CMPK1,GYS2,NME2,NME1,UGDH,RRM2,RRM1,SLC35D1,GSR, +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells ONECUT3,PDX1,NEUROG3,ONECUT1,INSM1,FGF10,HES1,NKX6-1,NKX2-2,PTF1A, +PWCOMMONS Regulation of gene expression in late stage (branching morphogenesis) pancreatic bud precursor cells NEUROD1,NEUROG3,HES1,INSM1,ONECUT3,NKX2-2,ONECUT1, +PWCOMMONS Nef Mediated CD4 Down-regulation AP2S1,AP2B1,AP2M1,CD4,ARF1,LCK, +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization DSG3,GSN,DIABLO,XIAP,CASP3,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,MAPT,BIRC2,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2, +PWCOMMONS Axon guidance MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,CREB1,FYN,NCAM1,PTK2,PTPRA,SPTB,SOS1,GFRA1,AGRN,CNTN2,NCAN,PRNP,GDNF,ATF1, +PWCOMMONS NCAM signaling for neurite out-growth MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,CREB1,FYN,NCAM1,PTK2,PTPRA,SPTB,SOS1,GFRA1,AGRN,CNTN2,NCAN,PRNP,GDNF,ATF1, +PWCOMMONS NCAM1 interactions GFRA1,AGRN,CNTN2,NCAN,PRNP,GDNF, +PWCOMMONS Isoleucine catabolism DBT,BCKDHA,BCKDHB,DLD,UROD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,BCAT1,MCEE,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,BCAT2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,ACADSB,PCCB,PCCA,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,MUT,HSD17B10,FH,INS,SYT5, +PWCOMMONS Post-translational protein modification F10,F9,PROS1,PROZ,GAS6,PROC,F2,GGCX,FURIN,NOTCH2,DHPS,DOHH,PIGW,PIGL,PLAUR,PIGG,PIGF,PIGH,DPM2,PIGC,PIGA,PIGP,PIGO,PIGB,PGAP1,PIGM,PIGX,PIGU,PIGT,GPAA1,PIGS,PIGK,PIGV,PIGN,DPM3,DPM1, +PWCOMMONS Hypusine synthesis from eIF5A-lysine DOHH, +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins F10,F9,PROS1,PROZ,GAS6,PROC,F2,GGCX,FURIN,NOTCH2, +PWCOMMONS Removal of aminoterminal propeptides from gamma-carboxylated proteins F7,PROS1,PROZ,GAS6,F2,FURIN,NOTCH2,F9,PROC, +PWCOMMONS Gamma-carboxylation of protein precursors F10,F9,PROS1,PROZ,GAS6,PROC,F2,GGCX,FURIN,NOTCH2, +PWCOMMONS Metabolism of non-coding RNA WDR77,PRMT5,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GEMIN4,SIP1,GEMIN6,GEMIN5,DDX20,SMN1,GEMIN7,SNUPN,PHAX,NCBP2,NCBP1,TGS1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS Platelet Adhesion to exposed collagen ITGB1,COL1A1,COL1A2,CD36,VWF,GP5,GP9,GP1BA,GP1BB, +PWCOMMONS Collagen adhesion via Gp IV COL1A1,COL1A2, +PWCOMMONS ChREBP activates metabolic gene expression NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,ACLY,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,FASN,PRPS1,DLST,OGDH,ACACB,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,AGPAT1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PPAP2C,PCK2,SUCLA2,GBE1,TXNRD1,PPAP2B,TPI1,SLC25A10,G6PC,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,GSR,PPAP2A, +PWCOMMONS Dopamine Neurotransmitter Release Cycle DDC,RIMS1,CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,SLC22A2, +PWCOMMONS Synthesis of Dopamine RIMS1,CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,SLC22A2,DDC, +PWCOMMONS RNA Polymerase II Transcription Termination EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2, +PWCOMMONS Electric Transmission Across Gap Junctions GJD2,PANX2,PANX1,GJC1, +PWCOMMONS RNA Polymerase III Transcription POLR3E,POLR3D,LZTS1,POLR2L,POLR2K,POLR2H,POLR3H,POLR2F,POLR3F,POLR3A,POLR2E,NFIX,SSB,NFIB,NFIA,NFIC,BRF2,BDP1,TBP,POU2F1,ZNF143,SNAPC1,SNAPC2,SNAPC3,SNAPC5,SNAPC4,BRF1,GTF3C2,GTF3C3,GTF3C4,GTF3C5,GTF3C1,GTF3A, +PWCOMMONS Host Interactions of HIV factors BANF1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,MAPT,BIRC2,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,CLSPN,DFFA,DFFB,KPNB1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,ATP6V1H,AP2S1,AP2B1,AP2M1,CD4,ARF1,LCK,CD28,PACS1,AP1G1,AP1B1,B2M,HLA-A,FYN,DOCK2,ELMO1,HCK,RAN,XPO1,RANBP1,RANGAP1,RBX1,TCEB1,CUL5,TCEB2,PPIA,CDK9,CCNT1,BTRC,SKP1, +PWCOMMONS Interactions of Vpr with host cellular proteins BANF1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,MAPT,BIRC2,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,CLSPN,DFFA,DFFB,KPNB1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2, +PWCOMMONS Vpr-mediated nuclear import of PICs BANF1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37, +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis AP2S1,AP2B1,AP2M1,CD4,ARF1,LCK,CD28,PACS1,AP1G1,AP1B1,B2M,HLA-A,FYN,PAK2,DOCK2,ELMO1,HCK, +PWCOMMONS Nef and signal transduction LCK,PAK2,DOCK2,ELMO1,HCK, +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters AP2S1,AP2B1,AP2M1,CD4,ARF1,LCK,CD28,PACS1,AP1G1,AP1B1,B2M,HLA-A, +PWCOMMONS Nef Mediated CD8 Down-regulation AP2S1,AP2B1,AP2M1, +PWCOMMONS Nef mediated downregulation of CD28 cell surface expression CD28, +PWCOMMONS NS1 Mediated Effects on Host Pathways PABPN1,CPSF4, +PWCOMMONS Inhibition of Host mRNA Processing and RNA Silencing CPSF4, +PWCOMMONS SHC activation RAF1,YWHAB,SHC1,SOS1,MAP2K1,MAPK3,INSR,INS,MAPK1, +PWCOMMONS Nonhomologous End-joining (NHEJ) PRKDC,XRCC6,XRCC5,XRCC4, +PWCOMMONS Processing of DNA ends prior to end rejoining XRCC4,PRKDC,XRCC6,XRCC5, +PWCOMMONS MicroRNA biogenesis POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,TARBP2,DICER1, +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) DLAT,PDHA1,PDHB,DLD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UROD,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,FH,INS,SYT5, +PWCOMMONS DNA Damage Reversal ALKBH3,MGMT, +PWCOMMONS Golgi to ER Retrograde Transport ARCN1,COPG,COPB1,COPZ1,COPE,COPB2,COPA,ARF1,GBF1, +PWCOMMONS ER to Golgi Transport PREB,SEC23A,SEC13,SEC31A, +PWCOMMONS COPII (Coat Protein 2) Mediated Vesicle Transport PREB,SEC23A,SEC13,SEC31A, +PWCOMMONS DNA Replication Pre-Initiation CDC6,TFDP1,E2F1,POLE2,POLE,PRIM2,POLA1,PRIM1,POLA2,CDC45L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,GINS4,GINS1,GINS2,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,DNA2,RPA1,RPA3,RPA2,FEN1,CDK2,RFC2,RFC1,RFC3,RFC5,RFC4,CDT1,GMNN,MCM10,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,RPA4,CDC7,DBF4,CDC2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS EGFR downregulation CBL,EGF,EPN1,EPS15L1,SH3KBP1,SH3GL2,EPS15,HGS,AP2A2,AP2A1,SPRY2, +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EFTUD2,PRPF6,DDX23,TXNL4A,PRPF8,SNRNP200,SNRNP40,NHP2L1,LSM2,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,SFRS7,SFRS2,SFRS6,SFRS1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1,SF3B14,SF3B2,SF3B5,SF3B3,SF3B1,SF3B4,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,NXF1,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS4,DHX38,U2AF1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EIF5,APOBEC1,EEF1G,EEF1D,EEF1B2,METTL3,PABPC1,HNRNPD,HNRNPA3,HNRNPH2,HNRNPM,DNAJC8,HNRNPUL1,CD2BP2,HNRNPH1,HNRNPA0,PCBP1,SF4,HNRNPL,HNRNPA2B1,YBX1,HNRNPA1,HNRNPR,HNRNPC,PTBP1,PCBP2,SMC1A,RBM5,HNRNPU,DHX9,CCAR1,HNRNPF,RBMX,PABPN1,PAPOLA,CSTF2,CSTF1,CSTF3,PCF11,CLP1,CPSF2,CPSF1,CPSF3,CPSF7,NUDT21,PRPF4,PHF5A,SNRPB2,SNRPA1,SF3A3,SF3A1,SF3A2,ETF1,GSPT2,SNRNP70,SNRPA,SLBP,EIF5B,EEF2, +PWCOMMONS Pyruvate metabolism and TCA cycle NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,BSG,CMPK1,ALAD,CS,CAT,PPOX,SLC25A1,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Metablism of nucleotides DPYD,OTC,DPYS,CPS1,ASL,ASS1,ARG1,UPB1,PYCR1,GYG2,GLRX,TYMS,TXN,UPP1,CMPK1,TYMP,GYS2,DCTD,UGDH,RRM2,RRM1,DTYMK,TK1,GBE1,TXNRD1,UCK1,NT5C1A,CTPS,NME2,NME1,CDA,DCK,SLC35D1,GSR,DHODH,CAD,UMPS,SLC28A3,SLC29A1,SLC29A2,SLC28A2,SLC28A1,NT5C2,XDH,GUK1,GDA,NP,CAT,ADA,ADK,DGUOK,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,AK1,VAMP2,ADSL,APRT,GMPS,IMPDH2,IMPDH1,ADSS,AMPD2,AMPD1,INS,SYT5,KCNJ11,AMPD3,GART,PAICS,ATIC,PPAT,PFAS,ADSSL1,AK5,AK2,TK2,UCK2,RRM2B,NME3,NME4,NT5E,NT5C,NT5M,NT5C1B, +PWCOMMONS Pyrimidine metabolism DPYD,OTC,DPYS,CPS1,ASL,ASS1,ARG1,UPB1,PYCR1,GYG2,GLRX,TYMS,TXN,UPP1,CMPK1,TYMP,GYS2,DCTD,UGDH,RRM2,RRM1,DTYMK,TK1,GBE1,TXNRD1,UCK1,NT5C1A,CTPS,NME2,NME1,CDA,DCK,SLC35D1,GSR,DHODH,CAD,UMPS, +PWCOMMONS Pyrimidine salvage reactions GLRX,TYMS,TXN,CPS1,UPP1,ASS1,CMPK1,OAT,TYMP,GYS2,DCTD,UGDH,RRM2,RRM1,DTYMK,ARG1,TK1,GBE1,TXNRD1,DPYD,DPYS,UCK1,PYCR1,NT5C1A,CTPS,NME2,NME1,CDA,OTC,DCK,SLC35D1,GSR,ASL,UPB1, +PWCOMMONS Pyrimidine biosynthesis (interconversion) TXN,GLRX,TYMS,GBE1,TXNRD1,CMPK1,CTPS,GYS2,NME2,NME1,DCTD,UGDH,RRM2,RRM1,DTYMK,SLC35D1,GSR, +PWCOMMONS Pyrimidine catabolism DPYD,OTC,DPYS,CPS1,ASL,ASS1,ARG1,UPB1,PYCR1, +PWCOMMONS Synaptic Transmission CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,DDC,AANAT,SLC22A2,GLS,GLUL,SLC18A3,SLC17A7,SLC38A1,UNC13B,SLC5A7,CHAT,PNMT,DBT,BCKDHA,BCKDHB,DLD,BCAT1,MCCC2,MCCC1,AUH,IVD,BCAT2,GJA10,GJD2,PANX2,PANX1,GJC1,PICK1,NSF,AKAP5,EPB41L1,DLG1,DLG4,MDM2,ALDH2,COMT,SLC6A3,BCHE, +PWCOMMONS Transmission across Electrical Synapses GJD2,PANX2,PANX1,GJC1, +PWCOMMONS Transmission across Chemical Synapses CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,DDC,AANAT,SLC22A2,GLS,GLUL,SLC18A3,SLC17A7,SLC38A1,UNC13B,SLC5A7,CHAT,PNMT,DBT,BCKDHA,BCKDHB,DLD,BCAT1,MCCC2,MCCC1,AUH,IVD,BCAT2,PICK1,NSF,AKAP5,EPB41L1,DLG1,DLG4,MDM2,ALDH2,COMT,SLC6A3,BCHE, +PWCOMMONS Neurotransmitter Release Cycle CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,DDC,AANAT,SLC22A2,GLS,GLUL,SLC18A3,SLC17A7,SLC38A1,UNC13B,SLC5A7,CHAT,PNMT,DBT,BCKDHA,BCKDHB,DLD,BCAT1,MCCC2,MCCC1,AUH,IVD,BCAT2, +PWCOMMONS Norepinephrine Neurotransmitter Release Cycle CPLX1,SLC18A2,VAMP2,RAB3A,SYT1,DBH,MAOA,SLC22A2, +PWCOMMONS Neuroransmitter Receptor Binding And Downstream Transmission In The Postsynaptic Cell NSF,AKAP5,EPB41L1,DLG1,DLG4,MDM2, +PWCOMMONS Depolarization of the Presynaptic Terminal Triggers the Opening of Calcium Channels CPLX1,VAMP2,SLC17A7,RAB3A,SYT1,SLC18A3, +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NT5C2,PFKFB1,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,GOT2,PGLS,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,ACLY,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,FASN,PRPS1,DLST,OGDH,ACACB,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,AGPAT1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PPAP2C,PCK2,SUCLA2,GBE1,TXNRD1,PPAP2B,TPI1,SLC25A10,G6PC,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,GSR,PPAP2A, +PWCOMMONS Insulin receptor recycling YWHAB,INSR,INS,RHEB,FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1,PDPK1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SHC1,SOS1,MAP2K1,MAP2K2, +PWCOMMONS Insulin receptor signalling cascade RAF1,YWHAB,SHC1,SOS1,MAP2K1,MAPK3,INSR,INS,MAPK1,RPS6KA5,ATF1,CREB1,RHEB,FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1,PDPK1, +PWCOMMONS SHC-related events RAF1,YWHAB,SHC1,SOS1,MAP2K1,MAPK3,INSR,INS,MAPK1,RPS6KA5,ATF1,CREB1, +PWCOMMONS Activation of BH3-only proteins BBC3,BCL2L1,TFDP1,E2F1,PMAIP1,BAD,YWHAB,AKT1,PPP3R1,PPP3CC,BID,MAPK8,BMF,DYNLL2,DYNLL1, +PWCOMMONS Activation of NOXA and translocation to mitochondria PMAIP1,BCL2,TFDP1,E2F1, +PWCOMMONS Activation of PUMA and translocation to mitochondria BBC3,BCL2L1,TFDP1,E2F1, +PWCOMMONS Activation of BIM and translocation to mitochondria BMF,DYNLL2,DYNLL1,BCL2, +PWCOMMONS Double-Strand Break Repair RPA3,RPA2,RAD50,MRE11A,H2AFX,BRCA1,TP53BP1,MDC1,NBN,ATM,LIG1,PCNA,POLD4,POLD3,POLD2,POLD1,RAD51,RAD52,BRCA2,PMAIP1,BCL2,BCL2L1,TP53,MDM2,BBC3,LIG4,PRKDC,XRCC6,XRCC5,XRCC4, +PWCOMMONS Ornithine and proline metabolism SMS,OAT,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ODC1,NQO1,AZIN1,ASL,ASS1,ARG1,SRM,PYCR1,PRODH,ALDH4A1, +PWCOMMONS Proline catabolism PRODH,ALDH4A1,OAT,ASL,ASS1,ARG1,PYCR1, +PWCOMMONS Ornithine metabolism SMS,OAT,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ODC1,NQO1,AZIN1,ASL,ASS1,ARG1,SRM,PYCR1, +PWCOMMONS Regulation of ornithine decarboxylase (ODC) ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ODC1,SRM,NQO1,AZIN1,SMS, +PWCOMMONS Activation of Chaperones by ATF6-alpha MBTPS1,HSPA5,MBTPS2,NFYA, +PWCOMMONS Vitamin C (ascorbate) metabolism CYB5A,GSR, +PWCOMMONS Conjugation of carboxylic acids GLYAT, +PWCOMMONS Conjugation of salicylate with glycine GLYAT, +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,PAK2, +PWCOMMONS Vitamin B2 (riboflavin) metabolism FLAD1,ENPP1,ACP5, +PWCOMMONS Glucuronidation GYG2,GBE1,SLC35D1,GYS2, +PWCOMMONS Formation of the active cofactor, UDP-glucuronate GYG2,GBE1,SLC35D1,GYS2, +PWCOMMONS P450 Hydroxylations CYP2E1,CYP2A6,CYP1A2, +PWCOMMONS Simple hydroxylation CYP2E1,CYP2A6, +PWCOMMONS Activation, translocation and oligomerization of BAX DSG3,GSN,DIABLO,XIAP,CASP3,BAX,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,MAPT,BIRC2,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,BID,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2, +PWCOMMONS Generation of second messenger molecules MAP3K7,TRAF6,MALT1,BCL10,CARD11,PDPK1,NFKBIA,NFKB1,RELA,LCP2,LAT,GRAP2,ZAP70,LCK,CD4,CD3E,CD3D,CD3G,FOXO1,THEM4,PLCG1,CHUK,IKBKB,IKBKG,PRKCQ,INPP5D,UBE2V1,UBE2N,CREB1,TRAT1,ITK,MDM2,RPS6KB2,RICTOR,FRAP1,LST8,NR4A1,RIPK2,PTEN,BAD,TRIB3,CASP9,AKT1S1, +PWCOMMONS Metabolism of water-soluble vitamins and cofactors AMD1,AHCY,MTHFD1,SLC46A1,MTHFR,SRM,MTR,SMS,NNMT,TPMT,SLC19A1,SHMT1,DHFR,SLC25A32,RFK,FLAD1,ENPP1,ACP5,CYB5R3,CYB5A,GSR,FASN,PPCDC,COASY,AASDHPPT,SLC5A6,PANK2,PPCS,SLC25A16,NADSYN1,AFMID,ACMSD,NMNAT2,NAMPT,NAPRT1,KYNU,HAAO,TDO2,NMNAT3,INDO,QPRT,KMO,NADK,NMNAT1,TPK1, +PWCOMMONS Vitamin B5 (pantothenate) metabolism PPCDC,COASY,AASDHPPT,SLC5A6,PANK2,PPCS,SLC25A16, +PWCOMMONS Coenzyme A biosynthesis PPCDC,SLC25A16,COASY,AASDHPPT,PANK2,PPCS, +PWCOMMONS Signaling by Wnt CSNK1A1,CUL1,BTRC,SKP1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Degradation of beta-catenin by the destruction complex CSNK1A1,CUL1,BTRC,SKP1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS Beta-catenin phosphorylation cascade CSNK1A1,CUL1,BTRC,SKP1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2, +PWCOMMONS DNA Repair PCNA,POLD4,POLD3,POLD2,POLD1,POLE2,POLE,ERCC5,TCEA1,ERCC8,XAB2,ERCC6,ERCC4,ERCC1,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,RFC2,RFC1,RFC3,RFC5,RFC4,RPA1,RPA3,RPA2,XPA,DDB2,DDB1,RAD23B,XPC,FANCI,ZBTB32,USP1,FANCD2,RAD50,MRE11A,H2AFX,BRCA1,TP53BP1,MDC1,NBN,ATM,RAD51,RAD52,BRCA2,PMAIP1,BCL2,BCL2L1,TP53,MDM2,BBC3,LIG4,PRKDC,XRCC6,XRCC5,XRCC4,UBE2T,FANCF,FAAP100,FANCG,FANCL,FANCA,FAAP24,FANCM,FANCE,FANCB,FANCC,POLH,MAD2L2,ALKBH2,ALKBH3,MGMT,POLB,LIG3,XRCC1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Regulation of the Fanconi anemia pathway ZBTB32,USP1,FANCD2, +PWCOMMONS DNA Damage Bypass MAD2L2, +PWCOMMONS Translesion synthesis by DNA polymerases bypassing lesion on DNA template MAD2L2, +PWCOMMONS Base Excision Repair PCNA,POLD4,POLD3,POLD2,POLD1,POLB,LIG3,XRCC1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Resolution of Abasic Sites (AP sites) PCNA,POLD4,POLD3,POLD2,POLD1,POLB,LIG3,XRCC1,APEX1,FEN1,OGG1,TDG,NTHL1,MPG,SMUG1,MUTYH,CCNO, +PWCOMMONS Fanconi Anemia pathway FANCD2,FANCI,ZBTB32,USP1,UBE2T,FANCF,FAAP100,FANCG,FANCL,FANCA,FAAP24,FANCM,FANCE,FANCB,FANCC, +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains MAP3K7,TRAF6,MALT1,BCL10,CARD11,PDPK1,NFKBIA,NFKB1,RELA,LCP2,LAT,GRAP2,ZAP70,LCK,CD4,CD3E,CD3D,CD3G,FOXO1,THEM4,PLCG1,CHUK,IKBKB,IKBKG,CSK,PAG1,PRKCQ,INPP5D,UBE2V1,UBE2N,CREB1,TRAT1,ITK,MDM2,RPS6KB2,RICTOR,FRAP1,LST8,NR4A1,RIPK2,PTEN,PTPRC,BAD,TRIB3,CASP9,AKT1S1, +PWCOMMONS p130Cas linkage to MAPK signaling for integrins TLN1,APBB1IP,ITGB3,ITGA2B,BCAR1, +PWCOMMONS Innate Immunity Signaling MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR6,TLR2,ATF2,IRF3,TBK1,TICAM1,TLR3,MAP3K7IP1,MAP3K7IP2,MAP3K7,CHUK,IKBKB,IKBKG,RELA,RIPK1,JUN,MAPK1,MAPK8,TLR10,LY96,TLR4,CD180,LY86,TICAM2,LBP,CD14,TLR5,ZFYVE20,EEA1,TLR9,PIK3C3,PIK3R4,C9,C6,C7,C5,C8A,C8B,C8G,C4A,C2,C3,C1QC,C1QA,C1QB,C1S,C1R,MBL2,MASP1,CFD,CFB, +PWCOMMONS Regulatory RNA pathways POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2F,POLR2J,POLR2I,POLR2E,TARBP2,DICER1, +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle PRKAA2,PRKAB2,ACSL1,ACADS,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,ETFA,ETFB,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CYCS,ECHS1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,HADH,VAMP2,INS,SYT5,KCNJ11,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,SLC25A20,HADHB,HADHA,ACADL,ACADM,ACADVL,CPT1B,CPT2,STK11,ACACB, +PWCOMMONS Amino Acid conjugation GLYAT, +PWCOMMONS Metabolism of polyamines TPMT,COMT,AMD1,NNMT,SMS,AHCY,PAOX,SAT1,ODC1,AGMAT,SRM, +PWCOMMONS Interconversion of polyamines SAT1, +PWCOMMONS Opioid Signalling GNAI1,GNAL,CALM1,CAV1,HSP90AA1,NOS3,VAMP2,INS,SYT5,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4,PPP1CA,PPP3R1,PRKACA,PDE4B,CDK5, +PWCOMMONS DARPP-32 events PFKFB1,MLXIPL,PPP1CA,PPP3R1,CALM1,PRKACA,CREB1,LIPE,PDE4B,FABP4,CDK5, +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A CCNB1,CDC20,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,FZR1,BUB3,BUB1B,MAD2L1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,PTTG1, +PWCOMMONS Vitamin D (calciferol) metabolism GC,CUBN,LRP2,CYP27B1,CYP2R1,CYP24A1, +PWCOMMONS Carnitine synthesis TMLHE,ALAD,UROD,ALDH9A1,CPOX,UROS,PPOX,SHMT1,BBOX1, +PWCOMMONS Regulation of Apoptosis ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,PAK2,ARHGAP10, +PWCOMMONS RNA Polymerase I Chain Elongation TAF1C,TAF1B,TAF1A,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1, +PWCOMMONS RNA Polymerase I Transcription Termination UBTF,TAF1C,TAF1B,TAF1A,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,PTRF, +PWCOMMONS Class B/2 (Secretin family receptors) PFKFB1,MLXIPL,AKAP5,IQGAP1,GLP1R,GNAS,GCG,GCGR,ADCY8,SCTR,SCT,GLP2R,GHRHR,GHRH,GIPR,GIP,VAMP2,VIP,INS,SYT5,ADCYAP1R1,KCNJ11,CREB1,CRH,LIPE,FABP4,IAPP,CALCRL,RAMP1,CALCR,CALCA, +PWCOMMONS Calcitonin-like ligand receptors PFKFB1,MLXIPL,IAPP,CREB1,LIPE,GNAS,CALCRL,RAMP1,FABP4,CALCR,CALCA, +PWCOMMONS Creatine metabolism GAMT, +PWCOMMONS Telomere Maintenance POLD4,POLD3,POLD2,POLD1,LIG1,DNA2,RPA1,RPA3,RPA2,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,POLE2,POLE,FEN1,POT1,HIST3H3,HIST1H4A,TERF2,ACD,TINF2,TERF1,TERF2IP,TERT,DKC1,RUVBL2,NHP2,RUVBL1,WDR79, +PWCOMMONS Leucine catabolism BCKDHA,BCKDHB,DLD,RIMS1,CPLX1,SLC18A3,VAMP2,RAB3A,SYT1,SLC17A7,UNC13B,BCAT1,MCCC2,MCCC1,AUH,IVD,BCAT2, +PWCOMMONS Intrinsic Pathway for Apoptosis MST4,DSG3,DIABLO,XIAP,CASP3,SPTAN1,CASP9,CDH1,CASP7,GAS2,DSG1,FNTA,PTK2,ADD1,BIRC2,DBNL,DSG2,BMX,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,GSN,MAPT,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,CLSPN,LMNB1,BCAP31,PRKCD,PAK2,ARHGAP10,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,CYCS,APAF1,BCL2L1,PMAIP1,BID,BCL2,BAD,BBC3,BAX,GZMB,BAK1,NMT1,TFDP1,E2F1,YWHAB,AKT1,PPP3R1,PPP3CC,MAPK8,BMF,DYNLL2,DYNLL1, +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria BID,MST4,DSG3,GZMB,GSN,DIABLO,XIAP,CASP3,BAX,BAK1,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX,BCL2,CDH1,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,BAD, +PWCOMMONS Fructose catabolism ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,GOT2,GYG2,UPP1,PC,ADSL,MDH1,PCK1,OAT,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GPT,DPYS,AK1,PKM2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,FASN,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,ATIC,PFKFB1,INS,SYT5,GART,SLC35D1,ASL,UPB1,SLC25A21,GLRX,AGPAT1,UROS,TALDO1,ASS1,KHK,CMPK1,ALAD,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,SDHC,SDHD,SDHB,SDHA,TKT,FECH,PDHX,DLAT,PDHA1,PDHB,PPAP2C,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,GSR,NT5C2,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,HADH,GOT1,PGK1,GCDH,NP,DPYD,ACLY,MDH2,UMPS,CYCS,CTPS,PRPS1,ACACB,OTC,FH,PFAS,GPI,UROD,CPOX,XDH,PAICS,CPS1,CS,CAT,PPOX,SLC25A1,ACO2,PGM1,PCK2,SUCLA2,PPAP2B,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,PPAP2A, +PWCOMMONS P2Y receptors P2RY8,P2RY12,P2RY4,P2RY11,P2RY6,P2RY10,P2RY14,LPAR4,P2RY13,P2RY1,P2RY5,GPR17, +PWCOMMONS Transcription from mitochondrial promoters TFAM,TFB2M,POLRMT, +PWCOMMONS Mitochondrial transcription initiation TFB2M,POLRMT,MTERF, +PWCOMMONS Mal Cascade LY96,TLR4, +PWCOMMONS Shc events in EGFR signaling RAF1,YWHAB,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,MAP2K1,SOS1,SHC1,EGFR,EGF, +PWCOMMONS Membrane Trafficking VAMP8,AP1G1,AP1B1,HSPA8,DNAJC6,STX4,VAMP7,SNAP23,VAMP2,SH3GL2,ARF1,GBF1,VTI1B,SAR1B,PREB,SEC23A,SEC13,SEC31A,ARFGAP1,ARCN1,COPG,COPB1,COPZ1,COPE,COPB2,COPA, +PWCOMMONS Pausing and recovery of elongation TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2, +PWCOMMONS Aldehyde Dehydrogenase ACSS2,ALDH2, +PWCOMMONS Acetaldehyde is oxidized by NAD+ to form acetate, NADH, and H+ ACSS2,ALDH2, +PWCOMMONS Metabolism of porphyrins ALAD,UROD,CPOX,UROS,PPOX, +PWCOMMONS Heme biosynthesis ALAD,UROD,CPOX,UROS,PPOX, +PWCOMMONS Signaling by TGF beta TGFBR2,TGFB1,SMAD4,FURIN,NOTCH2,SKI, +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A, +PWCOMMONS Methylation TPMT,COMT,AMD1,NNMT,SMS,AHCY,SRM, +PWCOMMONS Olfactory Signaling Pathway GNAL,GNB1, +PWCOMMONS Metabolism of proteins CCT2,CCT3,CCT6A,CCT5,CCT8,CCT1,CCT7,CCT4,TBCE,TBCB,TBCC,TBCD,ACTB,TBCA,VBP1,PFDN1,PFDN5,PFDN2,PFDN4,PFDN6,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,ETF1,GSPT2,EEF1G,EEF1D,EEF1B2,EIF2S3,EIF2S2,EIF2S1,EIF5,EIF1AX,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF5B,EEF2,EIF4EBP1,PABPC1,F7,F10,F9,PROS1,PROZ,GAS6,PROC,F2,GGCX,FURIN,NOTCH2,DHPS,DOHH,PIGW,PIGL,PLAUR,PIGG,PIGF,PIGH,DPM2,PIGC,PIGA,PIGP,PIGO,PIGB,PGAP1,PIGM,PIGX,PIGU,PIGT,GPAA1,PIGS,PIGK,PIGV,PIGN,DPM3,DPM1, +PWCOMMONS Biological oxidations NAT2,GSS,GCLC,GCLM,UGDH,GYG2,GBE1,SLC35D1,GYS2,MTR,TPMT,COMT,AMD1,NNMT,SMS,AHCY,SRM,ACSM2B,GLYAT,SULT2A1,SULT1E1,SULT1A3,SULT1A1,ALDH1A1,ACSS2,ALDH2,ADH4,ADH1C,ADH1A,ADH7,ADH1B,ADH6,PTGES3,PTGS2,PTGIS,TBXAS1,CYP4F8,CYP4F3,CYP4F2,CYP4F12,CYP4A11,CYP2J2,CYP4B1,LGMN,GC,CYP26B1,CUBN,LRP2,CYP26A1,CYP27B1,CYP24A1,CYP2R1,CYP26C1,CYP46A1,EBP,ACOT8,LBR,ABCB11,CYP39A1,CYP7A1,CYP21A2,CYP51A1,NSDHL,CYP11B2,HSD17B4,AMACR,CYP7B1,SC5DL,SC4MOL,CYP17A1,ACOX2,CYP11B1,CYP1B1,CYP8B1,BAAT,HSD3B7,AKR1C4,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,SLC27A5,AKR1D1,CYP27A1,SLC27A2,CYP2C19,CYP2E1,CYP3A4,CYP1A1,CYP2F1,CYP2C18,CYP3A7,CYP2C9,CYP1A2,CYP2A6,CYP2D6,CYP2C8,CYP3A5,CYP2A13,CYP2B6,CYP4F11,CYP2W1,MAOB,MAOA,PAOX,FMO2,FMO3,FMO1, +PWCOMMONS Phase 1 - Functionalization of compounds ACSS2,ALDH2,ADH4,ADH1C,ADH1A,ADH7,ADH1B,ADH6,PTGES3,PTGS2,PTGIS,TBXAS1,CYP4F8,CYP4F3,CYP4F2,CYP4F12,CYP4A11,CYP2J2,CYP4B1,LGMN,GC,CYP26B1,CUBN,LRP2,CYP26A1,CYP27B1,CYP24A1,CYP2R1,CYP26C1,CYP46A1,EBP,ACOT8,LBR,ABCB11,CYP39A1,CYP7A1,CYP21A2,CYP51A1,NSDHL,CYP11B2,HSD17B4,AMACR,CYP7B1,SC5DL,SC4MOL,CYP17A1,ACOX2,CYP11B1,CYP1B1,CYP8B1,BAAT,HSD3B7,AKR1C4,CYP11A1,DHCR24,CYP19A1,DHCR7,HSD17B3,TM7SF2,SLC27A5,AKR1D1,CYP27A1,SLC27A2,CYP2C19,CYP2E1,CYP3A4,CYP1A1,CYP2F1,CYP2C18,CYP3A7,CYP2C9,CYP1A2,CYP2A6,CYP2D6,CYP2C8,CYP3A5,CYP2A13,CYP2B6,CYP4F11,CYP2W1,MAOB,MAOA,PAOX,FMO2,FMO3,FMO1, +PWCOMMONS Amine Oxidase reactions MAOA,PAOX, +PWCOMMONS Monoamines are oxidized to aldehydes by MAOA and MAOB, producing NH3 and H2O2 MAOA, +PWCOMMONS FMO oxidizes nucleophiles FMO3,FMO1, +PWCOMMONS Ethanol catabolism ACSS2,ALDH2,ADH4,ADH1C,ADH1A,ADH7,ADH1B,ADH6, +PWCOMMONS COX reactions PTGS2,PTGIS,TBXAS1, +PWCOMMONS Phase II conjugation NAT2,GSS,GCLC,GCLM,UGDH,GYG2,GBE1,SLC35D1,GYS2,MTR,TPMT,COMT,AMD1,NNMT,SMS,AHCY,SRM,ACSM2B,GLYAT,SULT2A1,SULT1E1,SULT1A3,SULT1A1, +PWCOMMONS Cytosolic sulfonation of small molecules SULT1E1,SULT1A3,SULT1A1, +PWCOMMONS Class A/1 (Rhodopsin-like receptors) MGLL,PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FSHR,FSHB,CGA,CGB,LHCGR,LHB,FABP4,TSHR,TSHB,OPN4,APLNR,GPER,KNG1,C5AR1,C5,PRLHR,DARC,KISS1,KISS1R,GAL,F2,TAC3,TACR3,TAC1,TACR2,TACR1,POMC,MC2R,XCR1,IL8RB,CXCL16,CXCR6,CX3CL1,CCL25,CCL5,IL8RA,CCR10,CCR7,CCL16,CCL20,CCR6,CCK,HCRTR2,HCRT,NPFF,HCRTR1,QRFPR,QRFP,AGT,NTS,PNOC,OPRL1,AVP,AVPR2,OXTR,OXT,GPR17,FPR2,OXER1,TBXA2R,PTGIR,PTGER3,GPR44,PTGDR,PTGFR,PTGER1,P2RY2,P2RY8,P2RY12,P2RY4,P2RY11,P2RY6,P2RY10,P2RY14,LPAR4,P2RY13,P2RY1,P2RY5,HRH1,HRH2, +PWCOMMONS Nucleotide-like (purinergic) receptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4,P2RY2,P2RY8,P2RY12,P2RY4,P2RY11,P2RY6,P2RY10,P2RY14,LPAR4,P2RY13,P2RY1,P2RY5,GPR17, +PWCOMMONS Adenosine P1 receptors PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FABP4, +PWCOMMONS AMPK inhibits chREBP transcriptional activation activity PRKAB2,PRKAG2,MLXIPL,STK11, +PWCOMMONS Integrin cell surface interactions ITGB3,ITGAV,ITGB1,FN1,ITGA2,LAMB2,LAMA5,LAMC3,ITGA8,PTK2,TLN1,APBB1IP,ITGA2B,CSK,PTPN1,BCAR1,PTPRA,FYN,NCAM1,SPTB,SOS1,IBSP,VTN,ITGB5,ITGA1,LAMA1,LAMB1,LAMC1,ITGA5,ITGA7,FGB,FGG,FGA,ITGB2,ITGAD,ITGB8,ITGAL,THBS1,BSG,ITGA4,SPP1,PECAM1,ITGB6,ITGA9,COL1A1,COL1A2,LAMA2,VCAM1,ITGA3,CDH1,ITGAE,ITGAX,ITGA11,F11R,ITGA6,ITGB4,COL2A1,ITGA10,JAM2,FBN1,JAM3,ITGAM, +PWCOMMONS Integrin alphaIIbbeta3 signaling TLN1,APBB1IP,ITGB3,ITGA2B,CSK,PTPN1,BCAR1,PTPRA,FYN,NCAM1,SPTB,SOS1, +PWCOMMONS Grb2:SOS provides linkage to MAPK signaling for Intergrins PTK2,TLN1,APBB1IP,ITGB3,ITGA2B, +PWCOMMONS Influenza Infection RAN,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,HSPA1A,CALR,CANX,KPNA1,KPNB1,HNRNPD,HNRNPH2,HNRNPUL1,CD2BP2,HNRNPH1,SFRS9,HNRNPA0,HNRNPL,HNRNPA2B1,HNRNPA1,SFRS2,PCBP2,RNPS1,SMC1A,RBM5,HNRNPU,CCAR1,U2AF1,RBMX,HNRNPA3,HNRNPM,SRRM1,U2AF2,THOC4,PCBP1,SF4,YBX1,HNRNPR,HNRNPC,PTBP1,SFRS3,SFRS5,SFRS7,SFRS6,DHX9,SFRS1,HNRNPF,SNRNP70,SNRPA,SNRPG,SNRPD3,SNRPF,SNRPB,SNRPD2,SNRPE,SNRPD1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,NCBP2,NCBP1,HSP90AA1,IPO5,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,GRSF1,EIF2AK2,PABPN1,CPSF4,TGFB1,SLC25A6, +PWCOMMONS Host Interactions with Influenza Factors PABPN1,CPSF4,TGFB1,SLC25A6, +PWCOMMONS Prostanoid hormones PTGS2,PTGIS,ABCC1,GGT5,DPEP2,ALOX5,LTC4S,LTA4H,TBXAS1, +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,GOT1,PGK1,ADSL,GCDH,PCK1,ATIC,OAT,NP,GLS2,GYS2,ECHS1,TXN,ASNS,GLUD1,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GLUL,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,DLD,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,GLS,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,PPAT,TKT,FECH,SUCLA2,GBE1,TXNRD1,TPI1,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Translocation of ZAP-70 to Immunological synapse MAP3K7,TRAF6,MALT1,BCL10,CARD11,PDPK1,NFKBIA,NFKB1,RELA,ZAP70,LCK,CD4,CD3E,CD3D,CD3G,LCP2,LAT,GRAP2,FOXO1,THEM4,PLCG1,CHUK,IKBKB,IKBKG,PRKCQ,INPP5D,UBE2V1,UBE2N,CREB1,TRAT1,ITK,MDM2,RPS6KB2,RICTOR,FRAP1,LST8,NR4A1,RIPK2,PTEN,BAD,TRIB3,CASP9,AKT1S1, +PWCOMMONS Hemostasis IGF1,IGF1,CD36,VWF,SERPINE1,F5,APP,SERPINF2,SELP,SERPING1,A2M,FN1,ITGB1,ITGA5,ITGB3,ITGA2B,CD63,HGF,SERPINA1,LAMP2,F8,PF4,PPBP,PECAM1,CD9,SPARC,PLG,STX4,PICK1,STXBP3,ALB,CFD,SRGN,ALDOA,PROS1,TMSB4X,F13A1,CLU,TIMP1,GP5,GP9,GP1BA,GP1BB,FGB,FGG,FGA,EGF,MMRN1,KNG1,HRG,COL1A1,COL1A2,GP6,FCER1G,SYK,F2R,F2RL3,F2RL2,F2,GNAQ,ARHGEF1,GNA13,PRKCA,MARCKS,P2RX1,PTK2,TLN1,APBB1IP,CSK,PTPN1,BCAR1,PTPRA,FYN,NCAM1,SPTB,SOS1,ITGA2,F10,PLAT,PROC,F9,F13B,SERPINC1,F11,THBD,C1QBP,F12,KLKB1,PRCP,F7,F3,TFPI,PLEK,PPIA,PSAP,CAP1,FLNA,CALU,SOD1,TF,TUBA4A,CFL1,TTN,PFN1,VCL,BRPF3,ACTBL3,WDR1,SCG3,HSPA5,CALM1,APOA1,CD47,OLR1,APOB,MERTK,CXADR,JAM3,JAM2,ITGB2,ITGAX,CD58,CD2,F11R,ITGAL,CD244,CD48,BSG,MMP1,SPN,CAV1,PPIL2,ITGA4,PLCG1,PTPN6,INPP5D,ITGAV,PTPN11,TREM1,CD177,SELPLG,ITGAM,ANGPT1,TEK,ANGPT4,GRB14,GRB7,DOK2,SHC1,ANGPT2,PLAUR,PLAU,SERPINB2, +PWCOMMONS Dissolution of Fibrin Clot PLAT,PLAUR,PLAU,SERPINE1,HRG,SERPINF2,SERPINB2, +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F5,PLG,FGB,FGG,FGA,PLAT,PROC,F8,F9,F13B,F13A1,SERPINC1,F2,F11,GP5,GP9,GP1BA,GP1BB,SERPINE1,F2RL3,PROS1,THBD,VWF,SERPINF2,KNG1,C1QBP,F12,KLKB1,SERPING1,A2M,PRCP,F7,F3,TFPI, +PWCOMMONS Extrinsic Pathway F5,PLG,FGB,FGG,FGA,PLAT,PROC,F7,F3,F8,F9,F13B,F13A1,SERPINC1,F2,F11,GP5,GP9,GP1BA,GP1BB,TFPI,SERPINE1,F2RL3,PROS1,THBD,VWF,SERPINF2, +PWCOMMONS Formation of Platelet plug IGF1,CD36,VWF,SERPINE1,F5,APP,SERPINF2,SELP,SERPING1,A2M,FN1,ITGB1,ITGA5,ITGB3,ITGA2B,CD63,HGF,SERPINA1,LAMP2,F8,PF4,PPBP,PECAM1,CD9,SPARC,PLG,STX4,PICK1,STXBP3,ALB,CFD,SRGN,ALDOA,PROS1,TMSB4X,F13A1,CLU,TIMP1,GP5,GP9,GP1BA,GP1BB,FGB,FGG,FGA,EGF,MMRN1,KNG1,HRG,COL1A1,COL1A2,GP6,FCER1G,SYK,PLCG2,F2R,F2RL3,F2RL2,F2,GNAQ,ARHGEF1,GNA13,PRKCA,MARCKS,P2RX1,PTK2,TLN1,APBB1IP,CSK,PTPN1,BCAR1,PTPRA,FYN,NCAM1,SPTB,SOS1,ITGA2, +PWCOMMONS Platelet Activation IGF1,CD36,VWF,SERPINE1,F5,APP,SERPINF2,SELP,SERPING1,A2M,FN1,ITGB1,ITGA5,ITGB3,ITGA2B,CD63,HGF,SERPINA1,LAMP2,F8,PF4,PPBP,PECAM1,CD9,SPARC,PLG,STX4,PICK1,STXBP3,ALB,CFD,SRGN,ALDOA,PROS1,TMSB4X,F13A1,CLU,TIMP1,GP5,GP9,GP1BA,GP1BB,FGB,FGG,FGA,EGF,MMRN1,KNG1,HRG,COL1A1,COL1A2,GP6,FCER1G,SYK,PLCG2,F2R,F2RL3,F2RL2,F2,GNAQ,ARHGEF1,GNA13,PRKCA,MARCKS,P2RX1, +PWCOMMONS Platelet Aggregation (Plug Formation) TLN1,APBB1IP,ITGB3,ITGA2B,CSK,PTPN1,BCAR1,PTPRA,FYN,NCAM1,SPTB,SOS1,FGB,FGG,FGA, +PWCOMMONS Signaling by PDGF PDGFRB,SOS1,PDGFRA,BCAR1,PLCG1,MAP2K2,RAF1,YWHAB,MAP2K1,MAPK1,MAPK3,RPS6KA5,ATF1,CREB1,PTPN11,GRB7,FURIN,NOTCH2, +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,CDK9,CCNT1, +PWCOMMONS Branched-chain amino acid catabolism DBT,BCKDHA,BCKDHB,DLD,UROD,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,CPOX,UROS,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,DLST,OGDH,BCAT1,MCEE,ALAD,CS,PPOX,ACO2,IDH3G,IDH3A,IDH3B,SUCLG1,SUCLG2,BCAT2,KCNJ11,SDHC,SDHD,SDHB,SDHA,FECH,SUCLA2,CYCS,ACADSB,PCCB,PCCA,MDH2,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,MUT,HSD17B10,FH,INS,SYT5,RIMS1,CPLX1,SLC18A3,RAB3A,SYT1,SLC17A7,UNC13B,MCCC2,MCCC1,AUH,IVD,ACAD8,HIBCH,ALDH6A1,HIBADH, +PWCOMMONS Alanine metabolism NT5C2,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,PCK1,MDH1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,PPOX,SLC25A1,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PCK2,SUCLA2,GBE1,TXNRD1,TPI1,SLC25A10,G6PC,PYCR1,NME2,RPIA,AMPD2,PGD,GSR, +PWCOMMONS Caspase-8 is formed from procaspase-8 BID,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,BAX,BAK1,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX,CASP8,BCL2,CDH1,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FADD,TNFRSF10B,TNFSF10,TRAF2,RIPK1,TRADD,FASLG,FAS,FNTA,PTK2,BAD,PLEC1, +PWCOMMONS RNA Polymerase I Transcription UBTF,TAF1C,TAF1B,TAF1A,POLR1D,POLR1C,POLR1A,POLR2K,POLR2H,POLR1B,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,PTRF,RRN3,MAPK3,PCAF, +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell HLA-C,B2M,TYROBP,KIR2DS2,KIR2DL4,HLA-G,CD19,IFITM1,CD81,C3,CXADR,CRTAM,CD200R1,CD200,VCAM1,ITGB1,ITGA4,CD160,KIR3DL2,HLA-A,HLA-E,CD96,KLRK1,HCST,ITGAL,ITGB2,SELL,CD3E,CD3D,CD3G,CD8A,CDH1,KLRG1,CD226,KIR3DL1,HLA-B,KIR2DS1,HLA-C,KIR2DL1, +PWCOMMONS PKA-mediated phosphorylation of key metabolic factors MLXIPL,CREB1, +PWCOMMONS Signaling in Immune system MYD88,TIRAP,IRAK3,MAP3K1,TRAF6,ECSIT,SIGIRR,TLR6,TLR2,ATF2,IRF3,TBK1,TICAM1,TLR3,MAP3K7IP1,MAP3K7IP2,MAP3K7,CHUK,IKBKB,IKBKG,RELA,RIPK1,JUN,MAPK1,MAPK8,TLR10,LY96,TLR4,CD180,LY86,TICAM2,LBP,CD14,TLR5,ZFYVE20,EEA1,TLR9,PIK3C3,PIK3R4,C9,C6,C7,C5,C8A,C8B,C8G,C4A,C2,C3,C1QC,C1QA,C1QB,C1S,C1R,MBL2,MASP1,CFD,CFB,SYK,GP6,FCER1G,COL1A1,COL1A2,CD47,PROC,OLR1,APOB,MERTK,CXADR,JAM3,JAM2,ITGB2,ITGAX,FN1,ITGB1,ITGA5,CD58,CD2,THBD,F2,F11R,ITGAL,F5,CD244,CD48,BSG,PPIA,MMP1,SPN,CAV1,PPIL2,ITGA4,PLCG1,PECAM1,PTPN6,INPP5D,ITGB3,ITGAV,PTPN11,TREM1,PROS1,CD177,SELPLG,ITGAM,ANGPT1,TEK,ANGPT4,GRB14,SOS1,GRB7,DOK2,SHC1,ANGPT2,PLCG2,CD40LG,HLA-C,B2M,TYROBP,KIR2DS2,KIR2DL4,HLA-G,CD19,IFITM1,CD81,CRTAM,CD200R1,CD200,VCAM1,CD160,KIR3DL2,HLA-A,HLA-E,CD96,KLRK1,HCST,SELL,CD3E,CD3D,CD3G,CD8A,CDH1,KLRG1,CD226,KIR3DL1,HLA-B,KIR2DS1,HLA-C,KIR2DL1,MALT1,BCL10,CARD11,PDPK1,NFKBIA,NFKB1,FOXO1,THEM4,PRKCQ,UBE2V1,UBE2N,CREB1,TRAT1,MDM2,RPS6KB2,RICTOR,FRAP1,LST8,NR4A1,RIPK2,ZAP70,LCK,CD4,PTEN,BAD,TRIB3,CASP9,AKT1S1,LCP2,LAT,GRAP2,ITK,CSK,PAG1,PTPRC, +PWCOMMONS TCR signaling MAP3K7,TRAF6,MALT1,BCL10,CARD11,PDPK1,NFKBIA,NFKB1,RELA,FOXO1,THEM4,CHUK,IKBKB,IKBKG,PRKCQ,INPP5D,UBE2V1,UBE2N,CREB1,TRAT1,MDM2,RPS6KB2,RICTOR,FRAP1,LST8,NR4A1,RIPK2,ZAP70,LCK,CD4,CD3E,CD3D,CD3G,PTEN,BAD,TRIB3,CASP9,AKT1S1,LCP2,LAT,GRAP2,PLCG1,ITK,CSK,PAG1,PTPRC, +PWCOMMONS Steroid hormones GC,CUBN,LRP2,CYP27B1,CYP2R1,CYP24A1,CYP19A1,HSD11B1,CYP17A1,HSD17B3,CYP21A2,CYP11B1,CYP11A1,CYP11B2,STAR, +PWCOMMONS Extrinsic Pathway for Apoptosis BID,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,BAX,BAK1,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,NMT1,ADD1,BIRC2,MAPT,DBNL,DSG2,BMX,CASP8,BCL2,CDH1,SPTAN1,CASP7,CLSPN,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FADD,TNFRSF10B,TNFSF10,TRAF2,RIPK1,TRADD,FASLG,FAS,FNTA,PTK2,BAD,PLEC1,CASP10,CFLAR,TNFRSF1A,TNF, +PWCOMMONS Pausing and recovery of HIV-1 elongation TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1, +PWCOMMONS Integration of energy metabolism NT5C2,PFKFB1,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,PRKAG2,PRKAA2,PRKAB2,ACSL1,ACADS,ETFA,ETFB,SLC25A20,HADHB,HADHA,ACADL,ACADM,ACADVL,CPT1B,CPT2,STK11,ACACB,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,GOT2,PGLS,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,PCK1,MDH1,ATIC,OAT,NP,GYS2,ECHS1,TXN,CREB1,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,PKM2,PFKFB2,PFKFB4,PFKFB3,SLC2A2,PGM1,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,ACLY,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,FASN,PRPS1,DLST,OGDH,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,AGPAT1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,MGLL,GCG,GCGR,GNAS,LIPE,FABP4,SLC25A11,PPAT,TKT,FECH,PPAP2C,PCK2,SUCLA2,GBE1,TXNRD1,PPAP2B,TPI1,SLC25A10,G6PC,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,GSR,PPAP2A, +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NT5C2,PFKFB1,ATP5O,ATP5F1,ATP5J,ATP5G1,ATP5L,MT-ATP6,ATP5J2,MT-ATP8,ATP5H,ATP5I,ATP5C1,ATP5D,ATP5A1,ATP5B,ATP5E,MLX,MLXIPL,HPRT1,UQCRC1,UQCRB,UQCR10,UQCR,UQCRC2,UQCRH,UQCRQ,UQCRFS1,MT-CYB,CYC1,MT-CO2,COX8A,COX7C,MT-CO3,COX6C,COX5B,MT-CO1,COX7A2L,COX4I1,COX6A1,COX7B,COX6B1,COX5A,PGLS,GOT2,HADH,UPP1,PDHX,PDHA1,PDHB,DLAT,DLD,GOT1,PC,PGK1,ADSL,GCDH,MDH1,PCK1,ATIC,OAT,NP,GYS2,ECHS1,TXN,SUCLG1,SUCLG2,ARG1,KCNJ11,AMPD3,RPE,GLRX,SDHC,SDHD,SDHB,SDHA,DPYD,GART,GPT,ACLY,DPYS,AK1,MDH2,UMPS,CYCS,NDUFS3,NDUFS4,NDUFS6,NDUFA5,NDUFS5,NDUFS1,NDUFS2,NDUFV2,NDUFV3,NDUFV1,NDUFA4,NDUFA11,MT-ND3,NDUFA13,NDUFB5,NDUFC1,NDUFA6,NDUFC2,NDUFA3,NDUFB3,NDUFB1,NDUFAB1,MT-ND4,MT-ND5,NDUFA1,NDUFB9,NDUFB6,NDUFB4,NDUFA8,NDUFB7,NDUFA12,NDUFB2,MT-ND4L,MT-ND2,NDUFB10,NDUFA7,NDUFA2,NDUFB8,NDUFB11,MT-ND6,MT-ND1,NDUFS7,NDUFA10,NDUFS8,NDUFA9,VAMP2,NT5C1A,CTPS,FASN,PRPS1,DLST,OGDH,ACACB,GMPS,GUK1,IMPDH2,GDA,NME1,IMPDH1,ADSS,OTC,FH,INS,SYT5,PFAS,SLC35D1,ASL,UPB1,AGPAT1,SLC25A21,GPI,UROD,CPOX,UROS,XDH,PAICS,CPS1,TALDO1,ASS1,CMPK1,ALAD,CS,CAT,SLC25A1,PPOX,ACO2,IDH3G,IDH3A,IDH3B,UGDH,RRM2,RRM1,G6PD,AMPD1,SLC25A11,PPAT,TKT,FECH,PPAP2C,PCK2,SUCLA2,GBE1,TXNRD1,PPAP2B,TPI1,SLC25A10,G6PC,PYCR1,DGAT1,NME2,RPIA,AMPD2,PGD,GSR,PPAP2A, +PWCOMMONS Glyoxylate metabolism DAO,CAT,GRHPR,AGXT, +PWCOMMONS Phenylalanine and tyrosine catabolism GSTZ1,TAT,HGD,FAH,PAH,PCBD1,HPD, +PWCOMMONS Unfolded Protein Response MBTPS1,HSPA5,MBTPS2,NFYA,ERN1,EIF2S1,ATF4,EIF2AK3, +PWCOMMONS Signaling by Insulin receptor YWHAB,INSR,INS,RHEB,FRAP1,LST8,EIF4B,RPS6,RPS6KB1,EIF4EBP1,EIF4E,EIF4G1,EEF2K,AKT2,PDE3B,TSC1,PDPK1,RPS6KA5,MAPK3,ATF1,CREB1,MAPK1,SHC1,SOS1,MAP2K1,MAP2K2, +PWCOMMONS Regulation of IGF Activity by IGFBP IGFALS,IGFBP3,IGFBP5,CTSL1,IGFBP6,IGFBP2,IGFBP1,PAPPA,IGFBP4,F2RL3,F2,KLK3, +PWCOMMONS Signaling by GPCR MGLL,PFKFB1,MLXIPL,CREB1,LIPE,GNAS,FSHR,FSHB,CGA,CGB,LHCGR,LHB,FABP4,TSHR,TSHB,OPN4,APLNR,GPER,KNG1,C5AR1,C5,PRLHR,DARC,KISS1,KISS1R,GAL,F2,TAC3,TACR3,TAC1,TACR2,TACR1,POMC,MC2R,XCR1,IL8RB,CXCL16,CXCR6,CX3CL1,CCL25,CCL5,IL8RA,CCR10,CCR7,CCL16,CCL20,CCR6,CCK,HCRTR2,HCRT,NPFF,HCRTR1,QRFPR,QRFP,AGT,NTS,PNOC,OPRL1,AVP,AVPR2,OXTR,OXT,GPR17,FPR2,OXER1,TBXA2R,PTGIR,PTGER3,GPR44,PTGDR,PTGFR,PTGER1,P2RY2,P2RY8,P2RY12,P2RY4,P2RY11,P2RY6,P2RY10,P2RY14,LPAR4,P2RY13,P2RY1,P2RY5,HRH1,HRH2,CASR,GABBR1,GABBR2,GPRC6A,GNGT1,GNAL,GNB1,AKAP5,IQGAP1,GLP1R,GCG,GCGR,ADCY8,SCTR,SCT,GLP2R,GHRHR,GHRH,GIPR,GIP,VAMP2,VIP,INS,SYT5,ADCYAP1R1,KCNJ11,CRH,IAPP,CALCRL,RAMP1,CALCR,CALCA, +PWCOMMONS Class C/3 (Metabotropic glutamate/pheromone receptors) GABBR1,GABBR2,GPRC6A, +PWCOMMONS Signaling by Notch NOTCH3,NOTCH2,NOTCH1,ADAM10,PSENEN,HES1,FURIN, +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,CDK9,CCNT1,TH1L,WHSC2,RDBP,COBRA1, +PWCOMMONS Phase 1 functionalization PTGS2,PTGIS,TBXAS1,CYP3A4,CYP1A1,CYP2D6,CYP4A11,CYP2A6,CYP1A2,CYP2E1,MAOB,MAOA,PAOX,FMO3, +PWCOMMONS Cytochrome p450 CYP1A1,CYP2D6,CYP4A11,CYP2A6,CYP1A2,CYP2E1,PTGIS,TBXAS1, +PWCOMMONS P450 Epoxidations CYP3A4,CYP1A1, +PWCOMMONS Signaling by VEGF FLT4, +PWCOMMONS Signaling by EGFR YWHAB,GAB1,EGFR,EGF,MAP2K1,PTPN11,MAPK1,MAP2K2,SOS1,SHC1,RPS6KA5,MAPK3,ATF1,CREB1,PIK3CA,PIK3R1,CALM1,CAV1,HSP90AA1,NOS3,PLCG1,VAMP2,INS,SYT5,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,ADRBK1,CAMK4,CBL,EPN1,EPS15L1,SH3KBP1,SH3GL2,EPS15,HGS,AP2A2,AP2A1,SPRY2,PAG1,LRIG1,CSK,PXN, +PWCOMMONS EGFR interacts with phospholipase C-gamma CAV1,HSP90AA1,NOS3,PLCG1,EGFR,EGF,VAMP2,INS,SYT5,AKT1,PLA2G4A,MGLL,LIPE,PFKFB1,FABP4,MLXIPL,CREB1,ADRBK1,CAMK4, +PWCOMMONS Elongation arrest and recovery TCEA1,ELL,TCEB3,TCEB1,TCEB2,SSRP1,SUPT16H,CCNT2,CDK9,CCNT1,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2I,POLR2F,POLR2J,POLR2E,GTF2F1,GTF2F2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,EIF1AX,EIF4H,EIF4B,EIF4E,EIF4G1,EIF4A2,EIF2S3,EIF2S2,EIF2S1,EIF3K,EIF3H,EIF3E,EIF3F,EIF3J,EIF3G,EIF3C,EIF3A,EIF3I,EIF3D,EIF3B,RPS23,RPS16,RPS12,RPS29,RPSA,RPS21,RPS27A,RPS20,RPS15,RPS24,RPS9,RPS10,RPS28,RPS2,RPS19,RPS4X,RPS18,RPS8,RPS3,RPS4Y1,RPS25,RPS14,RPS17,RPS26,RPS11,RPS5,FAU,RPS15A,RPS13,RPS6,RPS3A,RPS7,RPS27,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,RPL27A,RPL15,RPL11,RPL29,RPL30,RPL8,RPL22,RPL28,RPL7A,RPL35A,RPL31,RPL26L1,RPL26,RPL18A,RPL14,RPLP2,RPL10,RPL34,RPL37,RPL3L,RPL32,RPL36,RPLP1,RPL23A,RPL24,RPL6,RPL18,RPL5,RPL23,RPL19,RPL41,RPL7,RPL13A,RPL27,RPL17,RPL3,RPL10A,RPL21,RPL4,RPL35,RPL13,RPL39,RPL38,RPL36A,RPL9,RPLP0,UBA52,RPL37A,RPL12,EEF1A1,PCF11,CLP1,CPSF7,NUDT21,EIF2B5,EIF2B1,EIF2B3,EIF2B4,EIF2B2,PABPN1,PAPOLA,NCBP2,NCBP1,CPSF2,CPSF1,CPSF3,CSTF2,CSTF1,CSTF3,ETF1,GSPT2,PABPC1,SFRS2,CDC40,SFRS3,SFRS11,U2AF2,SFRS9,SFRS5,SFRS7,SFRS4,SFRS6,DHX38,U2AF1,SFRS1,RNPS1,UPF3B,SRRM1,THOC4,RBM8A,MAGOH,EEF1G,EEF1D,EEF1B2,NXF1,EIF5,EIF5B,EEF2, +PWCOMMONS Signal attenuation SHC1,GRB10,INSR,INS,MAPK3, +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A BUB1B,MAD2L1,CDC20,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,NEK2, +PWCOMMONS Apoptosis MST4,DSG3,DIABLO,XIAP,CASP3,SPTAN1,CASP9,CDH1,CASP7,GAS2,DSG1,FNTA,PTK2,ADD1,BIRC2,DBNL,DSG2,BMX,GSN,PAK2,ARHGAP10,CLSPN,CDC25A,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,MAPT,BCL2L1,PMAIP1,BID,BCL2,BAD,BBC3,BAX,GZMB,BAK1,NMT1,PLEC1,CASP8,TFDP1,E2F1,YWHAB,AKT1,PPP3R1,PPP3CC,MAPK8,BMF,DYNLL2,DYNLL1,DFFA,DFFB,KPNB1,KPNA1,OCLN,TJP2,PKP1,DSP,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,FADD,TNFRSF10B,TNFSF10,TRAF2,RIPK1,TRADD,FASLG,FAS,CASP10,CFLAR,TNFRSF1A,TNF, +PWCOMMONS Hormone biosynthesis LHB,FSHB,TSHB,CGB,PCSK1,POMC,LGMN,GC,CUBN,LRP2,CYP27B1,CYP2R1,CYP24A1,CYP19A1,HSD11B1,CYP17A1,HSD17B3,CYP21A2,CYP11B1,CYP11A1,CYP11B2,STAR,PTGES3,PTGS2,PTGIS,ABCC1,GGT5,DPEP2,ALOX5,LTC4S,LTA4H,TBXAS1,DDC,AANAT,SLC5A5,DIO3,PNMT,SLC18A2,VAMP2,RAB3A,SYT1,RIMS1,CPLX1,DBH,MAOA,SLC22A2, +PWCOMMONS Formation of PAPS SULT1E1,SULT1A3,SULT1A1, +PWCOMMONS Cell Cycle Checkpoints ANAPC5,ANAPC11,CDC23,ANAPC1,UBE2D1,ANAPC2,CDC27,ANAPC4,ANAPC10,UBE2C,ANAPC7,CDC26,CDC16,UBE2E1,CDC2,CCNB1,CDC20,WEE1,CDK2,CCNB2,CUL1,BTRC,SKP1,XPO1,FBXO5,CCNH,CDK7,MNAT1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC25A,CDC25C,CHEK1,ATM,TP53,CKS1B,RB1,BCL2L1,PMAIP1,BCL2,BBC3,MDM2,CDKN1A,ATRIP,RPA1,RPA3,RPA2,CLSPN,CDC45L,MCM10,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDC6,ORC6L,ORC4L,ORC3L,ORC5L,ORC1L,ORC2L,CDC7,DBF4,RFC2,RFC3,RFC5,RFC4,HUS1,RAD1,BUB3,BUB1B,MAD2L1,NEK2,MAD1L1,PTTG1,PLK1,NUDC,KIF20A,KIF23,REC8,STAG2,SMC3,SMC1A,RAD21,STAG1, +PWCOMMONS DNA Replication ORC1L,CDT1,ORC6L,ORC4L,ORC3L,ORC5L,ORC2L,MCM7,MCM4,MCM5,MCM3,MCM6,MCM2,CDK2,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,CDC45L,GINS4,GINS1,GINS2,POLD4,POLD3,POLD2,POLD1,PCNA,PRIM2,POLA1,PRIM1,POLA2,RFC2,RFC1,RFC3,RFC5,RFC4,LIG1,DNA2,RPA1,RPA3,RPA2,FEN1,GMNN,CDC2,MCM10,RB1,TFDP1,E2F1,POLE2,POLE,RPA4,CDC7,DBF4, +PWCOMMONS HIV Infection BANF1,NUP153,NUP85,NUP35,AAAS,NUP50,NUP43,NUP205,NUP93,NUP88,NUPL2,NUP210,NUP155,RANBP2,RAE1,NUP188,NUP214,NUP54,NUP62,NUP107,NUP133,NUP160,NUP37,MST4,DSG3,GSN,DIABLO,XIAP,CASP3,PAK2,ARHGAP10,GAS2,VIM,CASP9,DSG1,CYCS,APAF1,FZR1,ANAPC5,ANAPC11,CDC23,ANAPC1,ANAPC2,UBE2D1,CDC27,ANAPC4,ANAPC10,ANAPC7,UBE2C,CDC26,CDC16,UBE2E1,PSMC6,PSMA3,PSMD8,PSMD10,PSMD1,PSMD6,PSMB5,PSMB4,PSMD4,PSMA2,PSMB8,PSMD5,PSMB6,PSME3,PSMB3,PSMB7,PSME1,PSMD11,PSMA5,PSMC5,PSMC1,PSMD7,PSMD3,PSMB2,PSMD13,PSMD14,PSMB1,PSMA6,PSMB9,PSMB10,PSMD9,PSMC4,PSMA1,PSMA4,PSMA7,PSMF1,PSME2,PSMD12,PSMC3,PSMC2,PSMD2,ADD1,MAPT,BIRC2,DBNL,DSG2,BMX,SPTAN1,CDH1,CASP7,CLSPN,DFFA,DFFB,KPNB1,OCLN,TJP2,PKP1,DSP,CASP8,PLEC1,CASP6,ACIN1,STK24,PRKCQ,ROCK1,LMNB1,BCAP31,PRKCD,CDC25A,FNTA,PTK2,ATP6V1H,AP2S1,AP2B1,AP2M1,CD4,ARF1,LCK,CD28,PACS1,AP1G1,AP1B1,B2M,HLA-A,FYN,DOCK2,ELMO1,HCK,RAN,XPO1,RANBP1,RANGAP1,RBX1,TCEB1,CUL5,TCEB2,PPIA,CDK9,CCNT1,BTRC,SKP1,LIG1,XRCC6,XRCC5,FEN1,LIG4,XRCC4,GTF2B,GTF2A1,GTF2A2,GTF2E2,GTF2E1,GTF2F1,GTF2F2,POLR2G,POLR2B,POLR2L,POLR2A,POLR2K,POLR2H,POLR2D,POLR2C,POLR2J,POLR2I,POLR2F,POLR2E,TAF9,TAF4,TAF13,TAF10,TAF1,TAF6,TAF12,TAF4B,TAF5,TAF11,TBP,ERCC2,GTF2H3,GTF2H4,GTF2H2,ERCC3,GTF2H1,CCNH,CDK7,MNAT1,RNGTT,CTDP1,TCEA1,ELL,TCEB3,SSRP1,SUPT16H,CCNT2,SUPT4H1,TH1L,WHSC2,RDBP,COBRA1,NCBP2,NCBP1,RNMT, +PWCOMMONS Metabolism of nitric oxide CAV1,HSP90AA1,CALM1,LYPLA1,WASL,NOSTRIN,ZDHHC21,AKT1,NOSIP, +PWCOMMONS Signaling by BMP ZFYVE16,BMP2,SKI, +PWCOMMONS Metabolism of vitamins and cofactors AMD1,AHCY,MTHFD1,SLC46A1,MTHFR,SRM,MTR,SMS,NNMT,TPMT,SLC19A1,SHMT1,DHFR,SLC25A32,RFK,FLAD1,ENPP1,ACP5,CYB5R3,CYB5A,GSR,FASN,PPCDC,COASY,AASDHPPT,SLC5A6,PANK2,PPCS,SLC25A16,NADSYN1,AFMID,ACMSD,NMNAT2,NAMPT,NAPRT1,KYNU,HAAO,TDO2,NMNAT3,INDO,QPRT,KMO,NADK,NMNAT1,TPK1, +PWCOMMONS Ceramide signaling pathway RELA,SMPD1,CTSD,MAP4K4,EGF,PAWR,PRKCZ,KSR1,AKT1,CRADD,TRAF2,RIPK1,TNFRSF1A,TRADD,TNF,MADD,BIRC3,BID,BCL2,PRKCD,MAPK3,IGF1,MYC,BAG4,MAP3K1,BAD,CASP8,MAPK8,AIFM1,MAP2K1,MAP2K2,NFKBIA,RAF1,RB1,BAX,CYCS,PRKRA,SMPD3,EIF2A,FADD,PDGFA,NSMAF,SPHK2,ASAH1,MAP2K4,MAPK1, +PWCOMMONS Visual signal transduction: Cones CNGA3,GNGT2,GNAT2,GNB3,GUCY2D,RDH12,SLC24A2,GRK7,PDE6C,PDE6H,ARR3,GRK1,GUCY2F,LRAT,RGS9,GNB5, +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor VDR,RPS6KB1,RXRA,FAM120B,TGFB1,BCL2,NCOR2,TNF,NCOA1,ABCA1,MED1,NR1H4, +PWCOMMONS Aurora B signaling PEBP1,RHOA,RACGAP1,KIF23,CBX5,AURKB,INCENP,CDCA8,BIRC5,CENPA,SGOL1,AURKC,H3F3A,SMC4,SMC2,NCAPG,NCAPD2,NCAPH,PPP2R5D,PPP1CC,SEPT1,MYLK,KIF20A,RASA1,STMN1,EVI5,NSUN2,NPM1,NCL,CUL3,KLHL9,KLHL13,VIM,PSMA3,BUB1,KIF2C,NDC80,AURKA,TACC1, +PWCOMMONS IL2 signaling events mediated by PI3K PIK3CA,JAK1,GAB2,LCK,IL2RG,PIK3R1,JAK3,PTPN11,IL2RA,IL2,IL2RB,SOS1,SHC1,GRB2,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,ARRB2,REL,SYK,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,E2F1,AKT1,BCL2L1,CALM1,TERT,RPS6KB1,HSP90AA1,RAC1,BCL2,PRKCZ,UGCG,FOXO3,MYC,MYB,SMPD1,SGMS1,EIF3A,RPS6, +PWCOMMONS Syndecan-4-mediated signaling events ADAM12,THBS1,FN1,GIPC1,PRKCA,TNFRSF13B,CXCR4,CXCL12,NLK,GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,MAP3K7,NFATC2,CSNK1A1,CAMK2A,MAP3K7IP1,NUDT16L1,RAC1,SDCBP,CCL5,FGFR1,FGF2,TFPI,LAMA1,PLG,F2,TNC,ACTN1,LAMA3,PTK2,RHOA,MDK,FZD7,ITGB1,ITGA5,PRKCD,DNM2,MMP9, +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway MAPK7,MAP2K5,MAPK14,FOS,RIT1,SRF,BRAF,RPS6KA5,CDK5R1,CDK5,MAP3K2,MAP2K1,RPS6KA1,MEF2C,RUSC1,MAPKAPK2,RIT2,CREB1,NTF3,RAF1,EHD4,TRPV1,ELK1,PRKCD, +PWCOMMONS Presenilin action in Notch and Wnt signaling CSNK1A1,MAPK1,AXIN1,CTNNB1,APC,MYC,CCND1,PPARD,FOS,JUN,CTBP1,CREBBP,HNF1A,TLE1,DVL1,FBXW11,ADAM10,DTX1,DLL1,HDAC1,NLK,NEDD4,PPP2R5D,MAP3K7,WNT1,WIF1,LRP6,FZD1,MAPK3,FRAT1,MAP3K7IP1,RBPJ,GSK3B,DKK2,KREMEN2,DKK1,APH1B,PSENEN,NCSTN,PSEN1,APH1A,CSNK2A1, +PWCOMMONS IL1-mediated signaling events RELA,IL1RN,IL1R1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKBIA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,MAP3K3,IRAK1,MAP3K7IP1,MAP3K7IP2,MAP3K7,IL1B,SQSTM1,IL1R2,MAPKAPK3,KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,MAP2K6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAPK11,MAP3K12,PRKG1,CCM2,RAC1,MAP2K3,DUSP16,DUSP8,DUSP10,TOLLIP,IRAK4,MYD88,IRAK3,IL1A,TICAM2,UBE2V1,UBE2N, +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression XPO1,HDAC1,RAN,MDM2,SUMO1,PIAS2,RANGAP1,UBE2I,HDAC4,PIAS1, +PWCOMMONS Canonical NF-kappaB pathway CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3, +PWCOMMONS Thromboxane A2 receptor signaling ROCK1,PRKACA,PLCB2,SYK,PRKG1,DNM1,PTGDR,PRKCZ,RAC1,GNG2,GNB1,ARR3,TBXA2R,SLC9A3R1,GNB5,NOS3,GNAI2,ARRB2,AKT1,ARHGEF1,RAB11A,EGFR,EGF,ICAM1,PTGIR,TGM2,SELE,VCAM1, +PWCOMMONS VEGFR1 specific signals PLCG1,PDPK1,FLT1,VEGFB,PGF,PIK3CA,PIK3R1,VEGFA,CD2AP,CBL,AKT1,CALM1,NRP1,HIF1A,NOS3,PRKACA,NCK1,RASA1,PTPN11,NRP2,HSP90AA1,SHC2,CAV1,GAB1, +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 JAK2,ITGB1,GIT1,PXN,ITGA4,ARF6,CD44,ITGB7,PTK2,MADCAM1,BCAR1,CRK,DOCK1,PIK3CA,PIK3R1,RHOA,SRC,EPO,EPOR,VCAM1,CRKL,CBL, +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,MAPK14,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,JUN,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,PTGS2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A, +PWCOMMONS Class I PI3K signaling events mediated by Akt MAP3K5,AKT1,CHUK,IKBKB,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,CDKN1A,AKT2,HSP90AA1,PDPK1,RAF1,TP53,CASP9,KPNA1,CDKN1B,MDM2,TSC2,TBC1D4,PRKACA,AKT1S1,TSC1,FRAP1,RHEB,LST8,RAPTOR,BAD,YWHAZ,INSR,INS,PPP2R5D,FKBP1A,IRS1,EIF4B,EIF4E,EIF4G1,RPS6KB1,EIF3A,RPS6,EEF2,EIF4EBP1,PTEN,MKNK1,PRKAB1,AKT3,CDKN2A,PRKDC,RICTOR,MAPKAP1, +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling PTK2,BMX,ANGPT1,TEK,ITGB1,ITGA5,RAC1,PTPN11,FES,PIK3CA,PIK3R1,FN1,PAK1,DOK2,NCK1,CRK,MAPK14,RELA,F2,FGF2,ELF2,ANGPT2,FOXO1,STAT5A,ELF1,AKT1,MAPK8,FYN,PLD2,GRB7,SHC1,TNIP2,ETS1,TNF,CDKN1A,ELK1,NOS3,RPS6KB1,GRB2,AGTR1,RASA1,GRB14, +PWCOMMONS Ras signaling in the CD4+ TCR pathway RCAN1,IL2,FOS,CREM,JUN,IL2RA,CHP,CALM1,PTGS2,FKBP1A,CABIN1,IL3,CD40LG,CSF2,BATF3,IL4,RCAN2,FOSL1,JUNB,FASLG,POU2F1,IFNG,PRKACA,AKAP5,MAP3K8,ELK1,BRAF,RAF1,PRKCA,PRKCB,PTPN7, +PWCOMMONS Aurora C signaling AURKB,AURKC,H3F3A, +PWCOMMONS Effects of Botulinum toxin STXBP1,STX1A,VAMP2,RAB3GAP2,RIMS1,UNC13B, +PWCOMMONS Hedgehog signaling events mediated by Gli proteins GLI1,GLI3,GLI2,IFT172,MAP2K1,SPOP,SMO,ARRB2,SUFU,LGALS3,MTSS1,PRKCD,KIF3A,SHH,PRKACA,PTCH1,AKT1,PIAS1,XPO1,STK36,FBXW11,SAP18,SIN3A,HDAC2,RBBP7,HDAC1,SAP30,RBBP4,SIN3B,RAB23,GNG2,GNB1,CREBBP,FOXA2, +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha TFF3,ARNT,SP1,AKT1,SMAD3,SMAD4,PKM2,PGM1,HK1,NCOA2,TERT,TF,FECH,PFKFB3,HK2,NT5E,ID2,MCL1,ALDOA,PGK1,EGLN1,LDHA,SERPINE1,ENG,CITED2,BNIP3,ADM,BHLHE40,HDAC7,COPS5,CREB1,CA9,CXCR4,SLC2A1,EGLN3,ITGB2,NOS2,NCOA1,EPO,LEP,ABCB1,CP,HNF4A,HMOX1,GATA2,IGFBP1,GCK,ETS1,ABCG2,CXCL12,NDRG1,FURIN,EDN1,ENO1,BHLHE41,NPM1,FOS,JUN,TFRC,ADFP,VEGFA,PFKL,ARD1A,TP53,HIF3A,HSP90AA1,TCEB1,GNB2L1,TCEB2,CUL2,RBX1,VHL,HIF1AN,CDKN2A,OS9, +PWCOMMONS FOXA2 and FOXA3 transcription factor networks ALDOB,NKX2-1,HNF4A,GCK,FOXA3,HMGCS1,FOXA1,TTR,PCK1,F2,G6PC,NF1,HNF1A,PKLR,AFP,ABCC8,SLC2A2,ALAS1,HADH,FOXF1,CREB1,ACADVL,PDX1,TAT,ACADM,APOA1,INS,KCNJ11,TFRC,NR3C1,ALB,AKT1,IGFBP1,UCP2,SP1,BDH1, +PWCOMMONS Signaling events mediated by PTP1B INSR,INS,CSN2,SRC,LEP,LEPR,JAK2,PRL,PRLR,PDGFRB,PTPN1,CSF1R,CSF1,EGFR,EGF,STAT5B,CAV1,RHOA,ITGB3,ITGA2B,STAT3,FCGR2A,CAPN1,STAT5A,LAT,NOX4,BCAR1,CRK,SOCS3,AKT1,TXN,IRS1,SHC1,PIK3CA,PIK3R1,CDH2,GRB2,FER,TRPV6,YBX1,TYK2,CSK, +PWCOMMONS BMP receptor signaling SMAD1,BMP7,SMURF1,BMPR2,XIAP,NUP214,SMAD9,SMURF2,SMAD5,MAPK1,MAP3K7IP2,CALM1,MAP3K5,CAMK2B,MAP3K6,MAP3K10,TRAF2,MAP3K4,MAP2K3,MAP3K7,MAP2K6,TRAF6,TXN,MAPKAPK3,KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,MAPK14,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAP3K3,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,DUSP16,DUSP8,DUSP10,MAPK13,MLTK,STMN1,MAPK12,SNTA1,PKN1,CCND1,EEF2K,ATM,BAMBI,AHSG,SMAD7,SKI,CHRDL1,SOSTDC1,BMP6,PPM1A,GREM1,CHRD,ZFYVE16,PPP1CA,PPP1R15A,FST,NOG,CER1, +PWCOMMONS EPHB forward signaling EPHB3,EPHB2,KALRN,RAC1,PXN,EPHB1,SRC,RASA1,PIK3CA,PIK3R1,GRB2,PTK2,NCK1,RRAS,WASL,ITSN1,GRB7,MAP2K1,SYNJ1,TF,RHOA,EPHB4,EFNB2,MAP4K4,HRAS,ROCK1,GRIA1,EFNA5,PAK1,DNM1, +PWCOMMONS PDGFR-beta signaling pathway S1PR1,GRB10,PLCG1,SPHK1,HRAS,ABL1,AKT1,MYC,BCAR1,HIF1A,RAC1,PTPN11,PTPN1,PTEN,VAV2,PIK3CA,PIK3R1,CBL,SNX15,DNM2,GAB1,GRB7,ACP1,FER,PDGFB,LRP1,PTPN2,SOS1,SHC1,GRB2,CSK,DOK1,SHB,SH2B2,PTPRJ,PRKCD,RASA1, +PWCOMMONS VEGFR3 signaling in lymphatic endothelium SOS1,GRB2,FLT4,ITGB1,COL1A1,COL1A2,ITGA1,FIGF,ITGA4,FN1,ITGA2,PIK3CA,PIK3R1,MAP2K4,CRK,AKT1,ITGA5,RPS6KA1, +PWCOMMONS IL27-mediated signaling events IL6ST,JAK2,EBI3,TYK2,IL27,IL27RA,STAT1,IL2,IL18,IL12B,IL12A,IL12RB1,IL12RB2,TNF,STAT2,GATA3,JAK1,IL6,IFNG,TBX21,STAT5A,IL1B,IL17A,STAT3,TGFB1, +PWCOMMONS IL12-mediated signaling events RELB,STAT4,IL12B,IL12A,IL12RB1,JAK2,IL12RB2,TYK2,GADD45G,STAT3,SOCS1,NFKB1,RELA,CD8A,CD3E,CD3D,HLA-A,CD3G,B2M,CD247,CD8B,MAPK14,HLX,EOMES,IL1B,HLA-DRA,HLA-DRB1,CD4,GZMA,STAT1,IL18R1,IL18,IL18RAP,STAT6,NOS2,IL2,IL2RB,IL2RG,IL2RA,IL1R1,RAB7A,SPHK2,FASLG,FOS,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKBIA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,SRC,XPO1,RAN,BIRC2,UBE2D3,ATF2,IL6ST,EBI3,IL27,IL27RA,STAT2,GATA3,JAK1,IL6,IFNG,TBX21,STAT5A,IL17A,TGFB1,CCR5,IL4,CCL4,GADD45B,IRF1,CREBBP,JUN,PIAS2,CD28,IL13,ETV5,PRF1,CCL3,GZMB,FRAP1,MAP3K14, +PWCOMMONS amb2 Integrin signaling AKT1,ITGAM,ITGB2,ICAM1,ROCK1,MYH2,PLAU,AGER,HMGB1,TLN1,MMP2,SELPLG,SELP,MMP9,HCK,RHOA,PLAUR,LRP1,PLAT,APOB,LPA,NFKB1,GP1BA,JAM3,JAM2,PLG,CYR61,MST1R,MST1,TNF,IL6,VTN,CTGF,THY1, +PWCOMMONS Insulin Pathway TRIP10,RHOQ,PTPN1,FOXO3,PIK3CA,PIK3R1,AKT2,INSR,INS,IRS1,GRB2,EXOC6,EXOC4,EXOC5,EXOC2,EXOC1,EXOC7,EXOC3,SOS1,SHC1,CAV1,AKT1,PDPK1,GRB14,SH2B2,SORBS1,RAPGEF1,CBL,GRB10,INPP5D,SGK1,DOK1,RASA1,NCK1,HRAS,PPP1R3A,PPP1CC,STXBP4,STX4,VAMP2,ASIP,SLC2A4,TBC1D4,GSK3B,LNPEP,GYS1,NCK2,EIF4EBP1,PTPN11,PTPRA, +PWCOMMONS Glypican 2 network GPC2, +PWCOMMONS Alpha-synuclein signaling SNCAIP,GRK5,SLC6A3,PLCB2,PARK2,PLD2,SYK,PRKCD,BAD,STUB1,UCHL1,MAOB,TOR1A,CSNK2A1,TH,UBE2L3,KLK6,PPP2R5D,PARK7,PTK2B,PLD1,FKBP1A, +PWCOMMONS Osteopontin-mediated events PIK3CA,PIK3R1,CHUK,MAP3K1,CD44,ROCK2,SYK,MMP2,BCAR1,PTK2B,ITGB3,SPP1,ITGAV,MAP3K14,GSN,MAPK8,RAC1,NFKBIA,NFKB1,RELA,PIP5K1A,VAV3,FOS,JUN,MMP9,ILK, +PWCOMMONS Retinoic acid receptors-mediated signaling CCNH,RXRA,PRKACA,MAPK8,MAPK14,PRKCA,NCOA2,PCAF,AKT1,NCOR2,NRIP1,NCOA1,CDK7,MNAT1,NCOA3,NR4A1,RPS6KB1,FAM120B,TGFB1,BCL2,TNF,ABCA1,MED1,NR1H4,HDAC1,HDAC3,CDC2,MAPK3,PRKCG,RBP1, +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 NOS3,CAV1,GAB1,MAPK11,VEGFA,FLT1,GRB10,HSPB1,AKT1,KDR,RHOA,ROCK1,ITGB3,ITGAV,CDC42,FRS2,VCL,PTK2,PDPK1,PRKCA,MAP3K13,SHB,SRC,PLCG1,MAP2K3,NEDD4,PIK3CA,PIK3R1,FYN,EPAS1,IQGAP1,RAC1,VEGFB,PGF,CD2AP,CBL,CALM1,NRP1,HIF1A,PRKACA,NCK1,RASA1,PTPN11,NRP2,SHC2,HRAS,FLT4,PTPN6,PTK2B,SH2D2A,PXN,SOS1,SHC1,GRB2,FES,CDH5,CTNNB1,VEGFC,VHL,ARNT,S1PR1,YES1,PAK1, +PWCOMMONS Alternative NF-kappaB pathway FBXW11,NFKB2,RELB,MAP3K14,NFKB1, +PWCOMMONS Signaling events mediated by the Hedgehog family SMO,PTCH1,ARRB2,GAS1,ADRBK1,GLI2,HHAT,DHH,HHIP,IHH,AKT1,PTCH2,STIL,TGFB2,BOC,PTHLH,LRP2,LRPAP1,CDON,PIK3CA,PIK3R1,GSK3B,GLI1,GLI3,IFT172,MAP2K1,SPOP,SUFU,LGALS3,MTSS1,PRKCD,KIF3A,PRKACA,PIAS1,XPO1,STK36,FBXW11,SAP18,SIN3A,HDAC2,RBBP7,HDAC1,SAP30,RBBP4,SIN3B,RAB23,GNG2,GNB1,CREBBP,FOXA2, +PWCOMMONS Aurora A signaling TACC3,NDEL1,AURKA,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,GIT1,PAK1,ARHGEF7,AKT1,JUB,MDM2,DLGAP5,TPX2,CENPA,RASA1,GSK3B,GADD45A,BRCA1,CKAP5,TDRD7,TACC1,PRKACA,CDC25B,OAZ1,CPEB1,BIRC5,PPP2R5D,AURKAIP1,TP53, +PWCOMMONS PDGFR-alpha signaling pathway PLCG1,SHB,PDGFRA,CRK,FOS,JUN,ELK1,SRF,ITGAV,PIK3CA,PIK3R1,CSNK2A1,CRKL,SOS1,SHC1,GRB2,CAV1,RAPGEF1,IFNG,IRF1,CAV3, +PWCOMMONS Signaling events mediated by HDAC Class II HDAC5,HDAC4,YWHAE,HDAC10,RANGAP1,UBE2I,RANBP2,SUMO1,HDAC7,HDAC3,XPO1,RAN,SRF,NCOR2,HDAC11,HDAC6,RFXANK,ESR1,NR3C1,HSP90AA1,CAMK4,TUBB2A,HDAC9,ANKRA2,MEF2C,GATA1,ADRBK1,GATA2,GNG2,GNB1,BCL6,BCOR, +PWCOMMONS a6b1 and a6b4 Integrin signaling ITGA6,ITGB4,PIK3CA,PIK3R1,PRKCA,ITGB1,SHC1,AKT1,CD9,PMP22,HRAS,RPS6KB1,ERBB3,COL17A1,ERBB2,MET,GRB2,EGFR,EGF,MST1R,MST1,IL1A, +PWCOMMONS Noncanonical Wnt signaling pathway GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,MAP3K7,NFATC2,CSNK1A1,CAMK2A,MAP3K7IP1, +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes EGR3,FOS,CREM,JUN,CTLA4,TNF,IL2RA,NFATC2,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,CALM1,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,PTGS2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK, +PWCOMMONS Class I PI3K signaling events PTEN,RAP1A,SGK1,CD4,AP2M1,AP2A1,ARFGAP1,GGA3,ARF1,GOSR2,PLD2,ARFIP2,RAC1,USO1,GBF1,CLTB,COPA,CLTA,ASAP1,CYTH2,ARF6,GSK3B,BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,MAPK14,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,JUN,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,PTGS2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,CD19,PIK3CA,PIK3R1,IKBKB,AKT1,NFKBIB,SYK,CD79B,LYN,CD79A,PDPK1,CHUK,IKBKG,NFKB1,RELA,FCGR2B,PTPRC,POU2F2,BCL2A1,NFKBIA,CSK,PAG1,DAPP1,MAP4K1,BCL10,CARD11,MAP3K7,MALT1,BLNK,CD72,BTK,PLCG2,DOK1,INPP5D,RASA1,ETS1,ELK1,SOS1,SHC1,GRB2,VAV2,CAMK2G,PPP3CA,PPP3CB,PPP3CC,IBTK,MAP2K1,TRAF6,PTPN6,HRAS,RAF1,CD22,SH3BP5,RHOA,FOXO3,SLC2A4,MAP3K5,TNFAIP3,ATM,CYLD,NOD2,RIPK2,PRKCA,ERC1,FBXW11,TNFRSF1A,LCK,ARRB2,REL,BCL3,SRC,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,CDKN1A,AKT2,HSP90AA1,TP53,CASP9,KPNA1,CDKN1B,MDM2,TSC2,TBC1D4,AKT1S1,TSC1,FRAP1,RHEB,LST8,RAPTOR,YWHAZ,INSR,INS,PPP2R5D,IRS1,EIF4B,EIF4E,EIF4G1,RPS6KB1,EIF3A,RPS6,EEF2,EIF4EBP1,MKNK1,PRKAB1,AKT3,CDKN2A,PRKDC,RICTOR,MAPKAP1,ARF5,PDE3B,MAPK1,ADAP1,CYTH3, +PWCOMMONS Signaling mediated by p38-gamma and p38-delta MLTK,STMN1,MAPK12,SNTA1,PKN1,MAP2K6,CCND1,EEF2K,MAP2K3, +PWCOMMONS p38 MAPK signaling pathway CALM1,MAP3K5,CAMK2B,MAP3K6,MAP3K10,TRAF2,MAP3K4,MAP2K3,MAP3K7,MAP2K6,TRAF6,TXN,MAPKAPK3,KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,MAPK14,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAP3K3,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,DUSP16,DUSP8,DUSP10,MAPK13,MLTK,STMN1,MAPK12,SNTA1,PKN1,CCND1,EEF2K,ATM, +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PIK3CA,PIK3R1,BAG1,MET,HGF,ELK1,HRAS,MAPK3,RAF1,SRC,MAP2K2,INPP5D,INPPL1,CRKL,GAB1,PTPN11,MAP2K1,PXN,PTK2B,RASA1,PTK2,STAT3,PAK1,SOS1,GRB2,RAP1B,RAP1A,RAPGEF1,SHC1,RANBP9,MAP4K1,HGS,RANBP10,FOS,JUN,PDPK1,PLCG1,MAPK8,DOCK1,AKT1,MAP3K5,MAP2K4,PTPRJ,PTEN,GLMN,CRK,CBL,RPS6KB1,SH3KBP1,CTNNB1,BAD,NCK1, +PWCOMMONS Syndecan-1-mediated signaling events SDC1,MET,HGF,BSG,LAMA5,SDCBP,HPSE,PRKACA,PPIB,MAPK1,PIK3CA,PIK3R1,BAG1,ELK1,HRAS,MAPK3,RAF1,SRC,MAP2K2,INPP5D,INPPL1,CRKL,GAB1,PTPN11,MAP2K1,PXN,PTK2B,RASA1,PTK2,STAT3,PAK1,SOS1,GRB2,RAP1B,RAP1A,RAPGEF1,SHC1,RANBP9,MAP4K1,HGS,RANBP10,FOS,JUN,PDPK1,PLCG1,MAPK8,DOCK1,AKT1,MAP3K5,MAP2K4,PTPRJ,PTEN,GLMN,CRK,CBL,RPS6KB1,SH3KBP1,CTNNB1,BAD,NCK1,CCL5, +PWCOMMONS Visual signal transduction: Rods GNAT1,PDE6A,PDE6G,PDE6B,CNGB1,CNGA1,GUCY2D,GUCY2F,RGS9,GNB5,SAG,GNGT1,GNB1,SLC24A1,LRAT,GRK1,RDH12, +PWCOMMONS EphrinB-EPHB pathway DNM1,NCK2,ITGB3,ITGA2B,PIK3CA,PIK3R1,RGS3,MAP2K4,EPHB4,EFNB2,RAC1,TIAM1,MAP3K7,MAPK8,PTPN13,CXCR4,EPHB3,EPHB2,KALRN,PXN,EPHB1,SRC,RASA1,GRB2,PTK2,NCK1,RRAS,WASL,ITSN1,GRB7,MAP2K1,SYNJ1,TF,RHOA,MAP4K4,HRAS,ROCK1,GRIA1,EFNA5,PAK1, +PWCOMMONS TNF receptor signaling pathway RIPK1,TNFRSF1A,TRADD,TNF,BIRC2,BIRC3,CAV1,MAP3K1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,UBE2D3,RFFL,FADD,MAP3K5,SMPD1,TNFRSF1B,NUMA1,SLK,GAS2,LIMK1,VIM,PRF1,SREBF1,CFL2,CASP9,APAF1,TOP1,PTK2,PARP1,CASP3,CYCS,CASP6,APP,CASP7,GZMB,GSN,CASP10,DFFB,ARHGDIB,BCL2,BID,CASP2,KRT18,CRADD,LRDD,MADD,CASP1,DIABLO,CASP8,ACTA1,SATB1,BAX,SPTAN1,DFFA,TFAP2A,MAP2K3,MAPKAPK3,KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,MAP2K6,DUSP1,MAP2K4,GSK3B,FKBP8,CALM1,RCAN2,YWHAQ,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,PTPRK,PIM1,FKBP1A,MAP3K3,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,DUSP16,DUSP8,DUSP10,MAP2K7,ADAM17,STAT1,SQSTM1,CTSD,MAP4K4,EGF,PAWR,KSR1,AKT1,PRKCD,IGF1,MYC,BAG4,AIFM1,MAP2K1,MAP2K2,RB1,PRKRA,SMPD3,EIF2A,PDGFA,NSMAF,SPHK2,ASAH1,MAPK1,MAP3K7,TXN,GNB2L1,SMPD2,TRAF1, +PWCOMMONS p75(NTR)-mediated signaling PSENEN,NCSTN,PSEN1,APH1A,SORT1,NGFR,NGF,ZNF274,TRAF6,CASP3,RAC1,RAPGEF1,CRKL,NTF3,GRB2,MCF2L,MAGED1,CCND1,DYNLT1,RGS19,GIPC1,RHOA,NTRK2,BDNF,RICS,SOS1,RIT2,RASGRF1,NTRK1,RASA1,SHC1,ELMO1,MATK,GAB1,GAB2,PTPN11,FAIM,DNM1,NTF4,MAP2K1,PIK3CA,PIK3R1,SH2B1,EHD4,STAT3,DOCK1,NEDD4L,SQSTM1,DNAJA3,ABL1,RIT1,TIAM1,PLCG1,EGR1,TRPC3,TRPV1,CAMK4,GSK3B,AKT1,BAD,FOXO3,CREB1,PRKCD,SRC,PDPK1,STAT5A,CAMK2A,AGAP2,EPB41L1,NTRK3,MAPK7,MAP2K5,MAPK14,FOS,SRF,BRAF,RPS6KA5,CDK5R1,CDK5,MAP3K2,RPS6KA1,MEF2C,RUSC1,MAPKAPK2,RAF1,ELK1,BCL2L11,PRDM4,TP53,NGFRAP1,YWHAE,SMPD2,PLG,DIABLO,MMP3,RIPK2,IRAK1,E2F1,NDNL2,NDN,CASP9,APAF1,CASP6,CYCS,APP,MMP7,ADAM17,BEX1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,BCL10,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,BCL3,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,MYD88,MAGEH1,FURIN,ARHGDIA,LINGO1,RTN4R, +PWCOMMONS Atypical NF-kappaB pathway NFKB1,NFKBIA,RELA,IKBKB,FBXW11,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC, +PWCOMMONS Regulation of p38-alpha and p38-beta KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,MAPK14,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,MAP2K6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAP3K3,TRAF6,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,MAP2K3,DUSP16,DUSP8,DUSP10, +PWCOMMONS IL4-mediated signaling events JAK1,IL2RG,IL4R,IL4,FES,JAK3,STAT6,PTPN6,SOCS5,SELP,TFF3,IL10,CEBPB,FRAP1,SP1,BCL6,IL5,IRS1,INPP5D,SHC1,IGHG3,ETS1,OPRM1,AICDA,IRF4,CD40LG,JAK2,IL13RA1,THY1,CCL26,SOCS3,SOCS1,AKT1,GRB2,COL1A2,HMGA1,CCL17,PIK3CA,PIK3R1,SPI1,PIGR,CBL,PARP14,LTA,GTF3A,DOK2,EGR2,IGHG1,CCL11,RETNLB,IL13RA2,COL1A1,RPS6KB1,ARG1,MAPK14,FCER2,IGHE,ALOX15,ITGB3, +PWCOMMONS S1P5 pathway GNA12,RHOA, +PWCOMMONS mTOR signaling pathway LST8,RAPTOR,RHEB,INSR,INS,PPP2R5D,FKBP1A,IRS1,EIF4B,EIF4E,EIF4G1,PIK3CA,PIK3R1,AKT1,TSC2,RPS6KB1,PDPK1,EIF3A,RPS6,MAP3K5,TSC1,EEF2,EIF4EBP1,PTEN,MKNK1,PRKAB1, +PWCOMMONS Caspase cascade in apoptosis SLK,GAS2,LIMK1,VIM,PRF1,SREBF1,CFL2,MAP3K1,CASP9,APAF1,TOP1,PTK2,PARP1,CASP3,CYCS,CASP6,APP,CASP7,GZMB,GSN,CASP10,DFFB,ARHGDIB,BCL2,BID,CASP2,KRT18,CRADD,TRAF2,RIPK1,LRDD,TNFRSF1A,TRADD,TNF,MADD,BIRC3,CASP1,DIABLO,CASP8,ACTA1,SATB1,BAX,SPTAN1,DFFA,TFAP2A, +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling CRKL,NTF3,GRB2,MCF2L,NGF,MAGED1,CCND1,DYNLT1,RGS19,GIPC1,RHOA,NTRK2,BDNF,RICS,NGFR,SOS1,RIT2,RASGRF1,NTRK1,RASA1,SHC1,ELMO1,MATK,GAB1,GAB2,PTPN11,FAIM,DNM1,NTF4,MAP2K1,PIK3CA,PIK3R1,RAC1,SH2B1,EHD4,STAT3,DOCK1,NEDD4L,SQSTM1,DNAJA3,ABL1,RIT1,TIAM1,PLCG1,EGR1,TRPC3,TRPV1,CAMK4,GSK3B,AKT1,BAD,FOXO3,CREB1,PRKCD,SRC,PDPK1,STAT5A,CAMK2A,AGAP2,EPB41L1,NTRK3,MAPK7,MAP2K5,MAPK14,FOS,SRF,BRAF,RPS6KA5,CDK5R1,CDK5,MAP3K2,RPS6KA1,MEF2C,RUSC1,MAPKAPK2,RAF1,ELK1, +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CASP8,MAP3K5,FADD,FASLG,FAS,CD247,MAP3K14,CASP3,BIRC3,DFFA,DFFB,CASP7,CASP9,APAF1,CYCS,MAP2K7,CHUK,CRADD,TRAF2,RIPK1,TRAF1,TNFRSF1A,TRADD,TNF,CASP2,BAG4,CASP6,MAPK8,BID,NFKB1,NFKBIA,RELA,BCL2,CFLAR, +PWCOMMONS Signaling by Aurora kinases PEBP1,RHOA,RACGAP1,KIF23,CBX5,AURKB,INCENP,CDCA8,BIRC5,CENPA,SGOL1,AURKC,SMC4,SMC2,NCAPG,NCAPD2,NCAPH,PPP2R5D,PPP1CC,SEPT1,MYLK,KIF20A,RASA1,STMN1,H3F3A,EVI5,NSUN2,NPM1,NCL,CUL3,KLHL9,KLHL13,VIM,PSMA3,BUB1,KIF2C,NDC80,AURKA,TACC1,TACC3,NDEL1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,GIT1,PAK1,ARHGEF7,AKT1,JUB,MDM2,DLGAP5,TPX2,GSK3B,GADD45A,BRCA1,CKAP5,TDRD7,PRKACA,CDC25B,OAZ1,CPEB1,AURKAIP1,TP53, +PWCOMMONS Integrins in angiogenesis ITGB3,ITGAV,VEGFA,KDR,SPP1,PIK3C2A,PTK2,VCL,SDC1,F11R,FGF2,COL4A3,CDKN1B,AKT1,RAC1,GPR124,PIK3CA,PIK3R1,ILK,RHOA,ROCK1,HSP90AA1,TLN1,VTN,CD47,BCAR1,CSF1R,CBL,EDIL3,IGF1,IRS1,IGF1R,ANGPTL3,PXN,VAV3,PI4KA,PI4KB,CSF1,TGFBR2,SRC,FN1,PTPN11,RPS6KB1,MFGE8,CASP8,PLAU,CHUK,MAP3K1,CD44,ROCK2,SYK,MMP2,MAP3K14,GSN,MAPK8,NFKBIA,NFKB1,RELA,PIP5K1A,FOS,JUN,MMP9, +PWCOMMONS IL12 signaling mediated by STAT4 IL18RAP,STAT4,IFNG,IRF1,TBX21,CREBBP,JUN,TGFB1,IL18,IL2RA,PIAS2,IL2,CD28,IL13,STAT3,FOS,ETV5,CD3E,HLA-DRA,CD3D,HLA-DRB1,CD3G,CD4,CD247,PRF1, +PWCOMMONS ADP-ribosylation factor 1 pathway AP2M1,AP2A1,ARFGAP1,GGA3,ARF1,GOSR2,PLD2,ARFIP2,RAC1,USO1,GBF1,CLTB,COPA,CLTA,ASAP1,CYTH2, +PWCOMMONS Signaling mediated by p38-alpha and p38-beta KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,MAPK14,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,ESR1,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6, +PWCOMMONS Syndecan-2-mediated signaling events SDC2,RASA1,BAX,LAMA3,CASK,KNG1,HRAS,TGFB1,CAV2,FN1,IL8,SDCBP,ITGB1,ITGA5,NF1,PRKCD,ITGA2,MMP2,CDH1,BGLAP,CDH2,KLB,FGF23,CTTN,CAMK2A,PIK3CA,PIK3R1,SPP1,AKT1,MMP9,IL17RD,FRS2,PLAU,CBL,SOS1,SHC1,GRB2,CTNND1,NCAM1,SSH1,FGF1,PTK2B,PTPN11,GAB1,PAK4,PDPK1,FGFR1,PLCG1,STAT1,RUNX2,PLAUR,FGFR4,FGF19,FGFR2,FOS,JUN,STAT5B,RPS6KA1,MET,HGF,LAMA1,EPB41,TNFRSF13B,PRKACA,GNB2L1,TRAPPC4,MAPK8,CSF2,EZR,CASP3,EPHB2,RHOA, +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway GNA12,RHOA,NFKB1,RELA,SMPD1,CTSD,MAP4K4,EGF,PAWR,PRKCZ,KSR1,AKT1,CRADD,TRAF2,RIPK1,TNFRSF1A,TRADD,TNF,MADD,BIRC3,BID,BCL2,PRKCD,MAPK3,IGF1,MYC,BAG4,MAP3K1,BAD,CASP8,MAPK8,AIFM1,MAP2K1,MAP2K2,NFKBIA,RAF1,RB1,BAX,CYCS,PRKRA,SMPD3,EIF2A,FADD,PDGFA,NSMAF,SPHK2,ASAH1,MAP2K4,MAPK1,S1PR4,SGPP1,S1PR2,ELK1,PAK1,CDH5,FOS,JUN,RAC1,GNA13,IRS1,MAPK14,SGPL1,S1PR3,S1PR1,SPHK1,PLCB2,ITGB3,ITGAV,PLCG1,PTGS2,PDGFRB,GRB10,HRAS,ABL1,BCAR1,HIF1A,PTPN11,PTPN1,PTEN,VAV2,PIK3CA,PIK3R1,CBL,SNX15,DNM2,GAB1,GRB7,ACP1,FER,PDGFB,LRP1,PTPN2,SOS1,SHC1,GRB2,CSK,DOK1,SHB,SH2B2,PTPRJ,RASA1,VEGFA,KDR,AKT3,CXCR4,FLT1,SRC,JAK2, +PWCOMMONS FOXA transcription factor networks FOS,JUN,CYP2C18,FOXA1,AR,SP1,PISD,SCGB1A1,GCG,SOD1,ATP5J,INS,VTN,CEBPB,XBP1,KLK3,SHH,NDUFV3,FOXA2,APOB,NCOA3,AP1B1,NR2F2,COL18A1,BRCA1,SERPINA1,C4BPB,SFTPD,TFF1,POU2F1,NKX3-1,CDKN1B,NRIP1,DSCAM,ALDOB,NKX2-1,HNF4A,GCK,FOXA3,HMGCS1,TTR,PCK1,F2,G6PC,NF1,HNF1A,PKLR,AFP,ABCC8,SLC2A2,ALAS1,HADH,FOXF1,CREB1,ACADVL,PDX1,TAT,ACADM,APOA1,KCNJ11,TFRC,NR3C1,ALB,AKT1,IGFBP1,UCP2,BDH1, +PWCOMMONS TCR signaling in nave CD8+ T cells CHUK,IKBKG,BCL10,CARD11,TRAF6,PDPK1,MALT1,TRPV6,STIM1,VAV1,LCP2,GRAP2,CD28,CSK,PAG1,RASGRP2,PRKCB,PTPRC,PRKCQ,LCK,AKT1,PRKCE,RAP1A,RASGRP1,FYN,CD8A,CD3E,CD3D,HLA-A,CD3G,B2M,CD247,CD8B,SOS1,GRB2,PTPN6,RASSF5,MAP3K8,PRKCA,PLCG1,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,ERC1,FBXW11,TNFRSF1A,TNF,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,BIRC2,UBE2D3,ZAP70,PRF1,CBL,LAT,ORAI1,MAPK9,FOS,JUN,ELK1,MAPK8,FASLG,IL2,IL2RB,IL2RG,IL2RA,EOMES,RAF1,IFNG,CALM1,EGR4,STAT4,TNFRSF4,GZMB,NFATC2,FOSL1,JUNB,TNFRSF18,NFATC1,IFNAR1,IFNAR2,BRAF,TNFRSF9,EGR1,PTPN7,MAP3K14,NFKB2,RELB, +PWCOMMONS S1P3 pathway AKT3,RHOA,ITGB3,ITGAV,RAC1,S1PR3,S1PR2,S1PR1,CXCR4,VEGFA,FLT1,PDGFRB,GNA13,GNA12,SRC,JAK2, +PWCOMMONS Class IB PI3K non-lipid kinase events MAPK1,MAP2K1, +PWCOMMONS Downstream signaling in nave CD8+ T cells FOS,JUN,ELK1,MAPK8,PRKCQ,CD8A,CD3E,CD3D,HLA-A,CD3G,B2M,CD247,CD8B,PRF1,FASLG,IL2,IL2RB,IL2RG,IL2RA,PRKCA,EOMES,RAF1,IFNG,CALM1,EGR4,STAT4,TNFRSF4,GZMB,TNF,PRKCB,PRKCE,NFATC2,FOSL1,JUNB,TNFRSF18,NFATC1,IFNAR1,IFNAR2,BRAF,TNFRSF9,EGR1,PTPN7, +PWCOMMONS Endothelins BCAR1,PTK2B,CRK,SRC,RAF1,EDNRA,EDN1,JUN,MAPK8,HRAS,EDNRB,GNA12,COL1A2,FOS,CYSLTR2,GSK3B,BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAP3K1,CAMK4,BAD,AKAP5,NR4A1,RCAN1,MAPK14,CHP,PRKCZ,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,PTPN1,SLC3A2,PTGS2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,EDN2,EGFR,SOS1,EGF,GRB2,EDN3,JAK2,PLA2G4A,TRPC6,FRAP1,MMP1,SLC9A3,COL3A1,AKT1,LST8,RAPTOR,RHEB,INSR,INS,PPP2R5D,IRS1,EIF4B,EIF4E,EIF4G1,PIK3CA,PIK3R1,TSC2,RPS6KB1,PDPK1,EIF3A,RPS6,MAP3K5,TSC1,EEF2,EIF4EBP1,PTEN,MKNK1,PRKAB1,CYSLTR1, +PWCOMMONS Wnt signaling GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,MAP3K7,NFATC2,CSNK1A1,CAMK2A,MAP3K7IP1,LRP6,FZD1,CTNNB1,CTBP1,AES,CREBBP,TLE1,KREMEN2,DKK1,WNT1,FBXW11,HDAC1,AXIN1,APC,MACF1,WIF1,PPP2R5D,RANBP3,DKK2,DVL1,SMAD4,MYC,AXIN2,CCND1,RAN,FRAT1,NKD1,CSNK2A1, +PWCOMMONS Fc-epsilon receptor I signaling in mast cells MS4A2,FCER1A,FCER1G,PLCG1,LAT2,LCP2,GRB2,PIK3CA,PIK3R1,IGHE,PLA2G1B,S1PR1,SYK,WIPF1,LYN,FOS,JUN,KLRG1,PTPN11,MAPK1,PLA2G4A,AKT1,MAPK3,MAP3K1,BTK,SOS1,SHC1,IKBKB,PRKCB,MAP2K4,ITK,NFKB1,RELA,HRAS,SPHK1,PPAP2A,VAV1,HCLS1,CBL,PTK2,DOK1,INPP5D,RASA1,NFATC2,MAP2K7,DUSP1,CBLB,MAPK8,PXN,CHUK,IKBKG,PAK2,GAB2,PLD2,LAT,MAP2K1,MAP2K2,RAF1,PTPN13,FYN,FER, +PWCOMMONS FOXA1 transcription factor network FOS,JUN,CYP2C18,FOXA1,AR,SP1,PISD,SCGB1A1,GCG,SOD1,ATP5J,INS,VTN,CEBPB,XBP1,KLK3,SHH,NDUFV3,FOXA2,APOB,NCOA3,AP1B1,NR2F2,COL18A1,BRCA1,SERPINA1,C4BPB,SFTPD,TFF1,POU2F1,NKX3-1,CDKN1B,NRIP1,DSCAM, +PWCOMMONS p38 signaling mediated by MAPKAP kinases HSPB1,LSP1,CDC25B,MAPKAPK3,TSC2,TCF3,RAF1,YWHAZ,SRF,CREB1,MAPK14,TH,ETV1, +PWCOMMONS Regulation of Telomerase HUS1,PTGES3,DKC1,TERT,HSP90AA1,RAD9A,RAD1,ABL1,AKT1,IFNG,IRF1,TNKS,TERF1,ESR1,CCND1,IL2,XRCC6,XRCC5,TERF2,MAX,MXD1,SMG5,BLM,ATM,CDKN1B,NR2F2,TERF2IP,NBN,RAD50,MRE11A,HNRNPC,SAP18,SIN3A,HDAC2,RBBP7,HDAC1,SAP30,RBBP4,SIN3B,SMAD3,MYC,E2F1,SMG6,WRN,SP3,PINX1,TINF2,UBE3A,FOS,JUN,PIF1,PARP2,ACD,POT1,FRAP1,RPS6KB1,NFKB1,YWHAE,SP1,IFNAR2,EGFR,EGF,NCL, +PWCOMMONS Signaling events mediated by HDAC Class I RELA,PRKACA,NCOR1,SAP18,SIN3A,HDAC2,RBBP7,HDAC1,SAP30,RBBP4,SIN3B,GATAD2A,GATAD2B,MBD2,CHD3,CHD4,MTA2,YY1,HDAC3,NFKBIA,SMG5,HDAC8,NCOR2,STAT3,SMAD7,YWHAB,HDAC5,HDAC4,YWHAE,HDAC10,RANGAP1,UBE2I,RANBP2,SUMO1,HDAC7,XPO1,RAN,SRF,HDAC11,HDAC6,RFXANK,ESR1,NR3C1,HSP90AA1,CAMK4,TUBB2A,HDAC9,ANKRA2,MEF2C,GATA1,ADRBK1,GATA2,GNG2,GNB1,BCL6,BCOR,TNFRSF1A,TNF,SMURF1,FBXW11,MAX,MXD1,FKBP3,PCAF,SIRT2,FOXO1,FHL2,SIRT1,HIST1H1E,MEF2D,HIST1H4A,BAX,XRCC6,PPARGC1A,TP53,FOXO3,SIRT7,MYOD1,CDKN1A,EP300,FOXO4,HOXA10,ACSS2,SIRT3,MBD3L2,MBD3,WDR77,PRMT5,TFCP2,ZFPM1,NR2C1, +PWCOMMONS IL2-mediated signaling events JAK1,IL2,LCK,IL2RB,IL2RG,JAK3,IL2RA,PIK3CA,GAB2,PIK3R1,PTPN11,SOS1,SHC1,GRB2,RASA1,DOK2,PTK2B,BCL2,SOCS3,SOCS2,FRAP1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,ARRB2,REL,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,E2F1,AKT1,BCL2L1,CALM1,TERT,RPS6KB1,HSP90AA1,RAC1,PRKCZ,UGCG,FOXO3,MYC,MYB,SMPD1,SGMS1,EIF3A,RPS6,RHOA,FYN,PRKCB,RAF1,FOS,MAPKAPK2,CDK2,PPP2R5D,STAT3,CISH,PRKCE,FOXP3,CCNA2,CCND2,PRF1,CDK6,SP1,ELF1,FASLG,LTA,IL4,CCND3,SOCS1,IKZF3,JUN,IFNG,STAT1, +PWCOMMONS FOXM1 transcription factor network FOXM1,AURKB,SP1,XRCC1,MAP2K1,CCNB1,CDC25B,ONECUT1,MYC,CKS1B,MMP2,CDC2,CCNE1,CDK2,CDKN2A,LAMA4,CENPF,CHEK2,SKP2,HSPA1A,RB1,CENPB,BRCA2,PLK1,CDK4,CCND1,ETV5,CCNB2,TGFA,CENPA,NEK2,ESR1,FOS,HIST1H2BA,GSK3A,BIRC5, +PWCOMMONS Insulin-mediated glucose transport PPP1CC,STXBP4,STX4,VAMP2,ASIP,INSR,INS,SLC2A4,AKT1,TBC1D4,GSK3B,LNPEP,TRIP10,RHOQ,AKT2,GYS1, +PWCOMMONS EPO signaling pathway EPO,LYN,EPOR,JAK2,VAV2,INPP5D,PIK3R1,GAB1,PTPN11,SHC1,SOS1,GRB2,IRS2,STAT1,SH2B3,SOCS3,BTK,TEC,BCL2,BCL2L1,PLCG1,MAPK8,PTPN6,PLCG2,CRKL,RAPGEF1,CBL,TRPC6,MAPK14,HRAS,NFKB1, +PWCOMMONS S1P1 pathway SPHK1,PLCB2,RHOA,ITGB3,ITGAV,RAC1,PLCG1,PTGS2,PDGFRB,GRB10,HRAS,ABL1,AKT1,MYC,BCAR1,HIF1A,PTPN11,PTPN1,PTEN,VAV2,PIK3CA,PIK3R1,CBL,SNX15,DNM2,GAB1,GRB7,ACP1,FER,PDGFB,LRP1,PTPN2,SOS1,SHC1,GRB2,CSK,DOK1,SHB,SH2B2,PTPRJ,PRKCD,RASA1,VEGFA,KDR, +PWCOMMONS BCR signaling pathway CD19,PIK3CA,PIK3R1,IKBKB,AKT1,NFKBIB,SYK,CD79B,LYN,CD79A,PDPK1,CHUK,IKBKG,NFKB1,RELA,FCGR2B,PTPRC,POU2F2,BCL2A1,NFATC1,NFKBIA,CSK,PAG1,DAPP1,MAP4K1,BCL10,CARD11,MAP3K7,MALT1,CALM1,MAP3K1,BLNK,CD72,BTK,PLCG2,DOK1,INPP5D,RASA1,FOS,JUN,ETS1,ELK1,MAPK14,SOS1,SHC1,GRB2,VAV2,CAMK2G,PTEN,PPP3CA,PPP3CB,PPP3CC,IBTK,MAP2K1,TRAF6,CSNK2A1,MAPK3,PTPN6,HRAS,RAF1,RAC1,CD22,SH3BP5, +PWCOMMONS LPA4-mediated signaling events PRKCE,LPAR4,PRKACA,CREB1, +PWCOMMONS Signaling events mediated by HDAC Class III TUBB2A,FOXO1,FHL2,SIRT1,HIST1H1E,HDAC4,MEF2D,HIST1H4A,BAX,XRCC6,PPARGC1A,TP53,FOXO3,SIRT7,MYOD1,PCAF,CDKN1A,EP300,FOXO4,HOXA10,ACSS2,SIRT3, +PWCOMMONS S1P4 pathway RHOA,GNA13,GNA12,S1PR5,PLCG1, +PWCOMMONS Calcium signaling in the CD4+ TCR pathway IL2,FOS,CREM,JUN,IL2RA,CHP,CALM1,PTGS2,FKBP1A,CABIN1,IL3,CD40LG,CSF2,BATF3,IL4,RCAN2,FOSL1,JUNB,FASLG,POU2F1,IFNG,PRKACA,AKAP5, +PWCOMMONS IL23-mediated signaling events IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,IL12B,IL12RB1,JAK2,IL23A,IL23R,TYK2,STAT5A,SOCS3,IFNG,IL6,STAT3,STAT4,CCL2,ALOX12B,IL24,CD4,IL2,NOS2,IL18R1,IL18,IL18RAP,STAT1,IL17F,ITGA3,MPO,IL1B,CD3E,CXCL9,IL17A,IL19, +PWCOMMONS BARD1 signaling events FANCD2,TOPBP1,BARD1,BRCA1,FANCF,FANCG,FANCL,FANCA,FANCE,FANCC,PCNA,RAD51,RBBP8,NBN,RAD50,MRE11A,EWSR1,UBE2D3,ATM,ATR,CSTF1,UBE2L3,TP53,XRCC6,XRCC5,PRKDC,CCNE1,CDK2, +PWCOMMONS JNK signaling in the CD4+ TCR pathway RCAN1,IL2,FOS,CREM,JUN,IL2RA,CHP,CALM1,PTGS2,FKBP1A,CABIN1,IL3,CD40LG,CSF2,BATF3,IL4,RCAN2,FOSL1,JUNB,FASLG,POU2F1,IFNG,PRKACA,AKAP5,MAP3K1,MAP2K4,DBNL,LCP2,MAP4K1,GRAP2,PRKCB,MAP3K7,MAP3K8, +PWCOMMONS Syndecan-3-mediated signaling events IL8,PTN,AGRP,NCAN,MC4R,POMC,CASK,FYN,CTTN,SRC,EGFR,APH1B,PSENEN,NCSTN,PSEN1,APH1A, +PWCOMMONS Signaling events regulated by Ret tyrosine kinase GFRA1,GDNF,GAB1,GRB2,SHC1,PIK3CA,PIK3R1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,BCL3,MAPK14,SRC,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,SOS1,CREB1,RAP1A,PTPN11,FRS2,BCAR1,PXN,CRK,DOK1,RASA1,NCK1,DOK6,JUN,MAPK8,GRB10,GRB7,PTK2,SHANK3,HRAS,IRS1,RHOA,DOK5,IRS2,DOK4,RAC1,PDLIM7, +PWCOMMONS Signaling events mediated by PRL PTP4A2,RABGGTB,ITGB1,PTP4A1,RHOA,PTP4A3,CCNA2,CCNE1,CDK2,RAC1,CDKN1A,BCAR1,ITGA1,EGR1,SRC,ROCK1,RHOC,ATF5,AGT, +PWCOMMONS Circadian rhythm pathway TIMELESS,NR1D1,NONO,PER1,CLOCK,ARNTL,ATR,CHEK1,NPAS2,WDR5,BHLHE40,DEC1,CRY2, +PWCOMMONS Paxillin-dependent events mediated by a4b1 ITGB1,PXN,ITGA4,ARF6,ITGAL,ITGB2,VCAM1,PIK3CA,PIK3R1,PRKACA,RAC1,CRKL,CBL,GIT1,ITGB7,BCAR1,CRK,DOCK1, +PWCOMMONS HIF-1-alpha transcription factor network HIF1A,ARNT,SP1,AKT1,SMAD3,SMAD4,PKM2,PGM1,HK1,NCOA2,TERT,TF,FECH,PFKFB3,HK2,NT5E,ID2,MCL1,ALDOA,PGK1,EGLN1,LDHA,SERPINE1,ENG,CITED2,BNIP3,ADM,BHLHE40,HDAC7,COPS5,CREB1,CA9,CXCR4,SLC2A1,EGLN3,ITGB2,NOS2,NCOA1,EPO,LEP,ABCB1,CP,HNF4A,HMOX1,GATA2,IGFBP1,GCK,ETS1,ABCG2,CXCL12,NDRG1,FURIN,EDN1,ENO1,BHLHE41,NPM1,FOS,JUN,TFRC,ADFP,VEGFA,PFKL, +PWCOMMONS Cellular roles of Anthrax toxin VCAM1,MAP2K3,MAP2K2,MAP2K4,MAP2K6,MAP2K1,NLRP1,MAP2K7,IL1B,DEFA1,IL18,CASP1, +PWCOMMONS S1P2 pathway ELK1,PAK1,CDH5,FOS,JUN,RAC1,RHOA,GNA13,GNA12,IRS1,MAPK14,MAPK8, +PWCOMMONS TCR signaling in nave CD4+ T cells FYN,CD3E,HLA-DRA,CD3D,HLA-DRB1,CD3G,CD4,CD247,SHC1,SOS1,GRB2,FYB,LCP2,GRAP2,ZAP70,LCK,CBL,CD28,DBNL,SH3BP2,TRAF6,BCL10,CARD11,MALT1,GAB2,ITK,VAV1,IKBKB,CHUK,IKBKG,ORAI1,CSK,PAG1,TRPV6,PRKCB,STIM1,RASGRP1,PRKCQ,FLNA,RHOA,WAS,CDC42,STK39,RAP1A,RASSF5,RASGRP2,PTPN6,PTPN11,MAPK8,MAP3K1,MAP2K4,MAP4K1,JUN,MAP3K7,MAP3K8,INPP5D,MAP2K1,ELK1,FOS,BRAF,RAF1,PRKCA,PTPN7,AKT1,MAP3K14,PTEN,NCK1,PLCG1,PTPRC,TNFAIP3,ATM,NFKB1,NFKBIA,RELA,CYLD,NOD2,RIPK2,ERC1,FBXW11,TNFRSF1A,TNF,ARRB2,REL,SYK,PIK3CA,PIK3R1,BCL3,MAPK14,SRC,XPO1,RAN,BIRC2,UBE2D3,RCAN1,IL2,CREM,IL2RA,CHP,CALM1,PTGS2,FKBP1A,CABIN1,IL3,CD40LG,CSF2,BATF3,IL4,RCAN2,FOSL1,JUNB,FASLG,POU2F1,IFNG,PRKACA,AKAP5,SLA2,PRKCE,NFKB2,RELB, +PWCOMMONS Glypican 3 network GPC3,NLK,GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,MAP3K7,NFATC2,CSNK1A1,CAMK2A,MAP3K7IP1,LRP6,FZD1,CTNNB1,CTBP1,AES,CREBBP,TLE1,KREMEN2,DKK1,WNT1,FBXW11,HDAC1,AXIN1,APC,MACF1,WIF1,PPP2R5D,RANBP3,DKK2,DVL1,SMAD4,MYC,AXIN2,CCND1,RAN,FRAT1,NKD1,CSNK2A1,PTCH1,BMP4,FURIN,FGF7, +PWCOMMONS IL6-mediated signaling events STAT3,AKT1,SOS1,GRB2,MAP2K4,VAV1,MITF,PIAS3,IL6R,IL6,IL6ST,JAK1,MCL1,CEBPB,HCK,SOCS3,FOS,JUN,STAT1,FGG,PIK3CA,PIK3R1,PTPN11,JAK2,HSP90B1,PRKCD,RAC1,JUNB,TNFSF11,TYK2,CRP,A2M,IRF1,MAP2K6,PIAS1,MYC,CEBPD,LBP,TIMP1, +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) KITLG,KIT,MAPK8,STAT5A,STAP1,SPRED1,HRAS,JAK2,MAP2K2,STAT1,FER,EPO,EPOR,PDPK1,SH2B3,SNAI2,GAB1,MAP2K1,DOK1,TEC,LYN,CRKL,CBL,GRB2,PTEN,BAD,AKT1,SPRED2,PIK3CA,PIK3R1,STAT3,FOXO3,SOS1,SHC1,MITF,RPS6KB1,GRB10,PTPRO,SH2B2,MAP4K1,GRAP2,MAPK3,BCL2,PTPN6,CREBBP,GSK3B,RAF1,SOCS1,VAV1,PTPN11, +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development CDC42,KATNA1,NDEL1,DYNC1H1,PAFAH1B1,MAP1B,CLIP1,DCX,DYNLT1,CDK5R2,CDK5,LRP8,RELN,PAFAH1B2,PAFAH1B3,DAB1,VLDLR,CDK5R1,ABL1,CSNK2A1,IQGAP1,YWHAE,PLA2G7,PPP2R5D,LRPAP1,NUDC,RHOA, +PWCOMMONS EphrinB reverse signaling DNM1,NCK2,ITGB3,ITGA2B,PIK3CA,PIK3R1,RGS3,MAP2K4,EPHB4,EFNB2,RAC1,TIAM1,MAP3K7,MAPK8,PTPN13,CXCR4, +PWCOMMONS FoxO family signaling FOXO3,CTNNB1,FASLG,FOXO1,GADD45A,BCL6,RAN,PLK1,IKBKB,CDKN1B,FOXO4,G6PC,ZFAND5,SOD2,MST1,FBXO32,CCNB1,SKP2,AKT1,CDK2,SGK1,CHUK,BCL2L11,XPO1,CAT,PCAF,USP7,RBL2, +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma PLCG1,NGF,TRPC3,TRPV1,CAMK4,GSK3B,AKT1,BAD,FOXO3,CREB1,CCND1,PRKCD,SRC,PIK3CA,PIK3R1,GAB1,SOS1,GRB2,SHC1,PDPK1,STAT5A,CAMK2A,AGAP2,MAPK7,MAP2K5,MAPK14,FOS,RIT1,SRF,BRAF,RPS6KA5,CDK5R1,CDK5,MAP3K2,MAP2K1,RPS6KA1,MEF2C,RUSC1,MAPKAPK2,RIT2,NTF3,RAF1,EHD4,ELK1,EPB41L1, +PWCOMMONS FAS signaling pathway (CD95) MAP3K1,BID,MAPK8,NFKB1,CASP10,FADD,FASLG,FAF1,FAS,RIPK1,CFLAR,DFFA,DFFB,MAP2K4,CASP3,CASP7,ARHGDIB,HGF,MET,CASP6,CASP8,PARP1,RFC1,RB1,GSN,BCL2,PTPN13,CHUK,LMNA,FAIM3,SPTAN1,PAK2,PRKDC,IL6, +PWCOMMONS IGF1 pathway IGF1R,NCK2,IRS1,BAD,YWHAZ,YWHAE,RAF1,PRKD1,PDPK1,HRAS,GNB2L1,SOS1,SHC1,GRB2,RPS6KB1,PRKCD,AKT1,PIK3CA,PIK3R1,GRB10,PTPN1,PTK2,BCAR1,PXN,CRK,PTPN11,PRKCZ,IRS2,CRKL, +PWCOMMONS LPA receptor mediated events ARHGEF1,PLCB3,RAC1,EGFR,GAB1,PIK3R1,PIK3CB,PTK2B,GSK3B,MMP2,SLC9A3R2,LPAR2,GNA13,GNA12,TIAM1,LPAR1,NFKBIA,NFKB1,RELA,HBEGF,TRIP6,IL6,BCAR1,PXN,CRK,PTK2,CASP3,IL8,PRKD1,RHOA,PRKCE,HRAS,GNG2,GNB1,SRC,AKT1,IKBKB,CHUK,IKBKG,TNFAIP3,ATM,CYLD,NOD2,RIPK2,BCL10,TRAF6,MALT1,PRKCA,ERC1,FBXW11,TNFRSF1A,TNF,LCK,ARRB2,REL,SYK,PIK3CA,BCL3,MAPK14,XPO1,RAN,NFKB2,RELB,MAP3K14,BIRC2,UBE2D3,PRKCD,PLCG1,FOS,JUN,LPAR3,PLD2,MMP9,RPS6KA5,LPAR4,PRKACA,CREB1,LYN,ADRA1B, +PWCOMMONS FGF signaling pathway BGLAP,SDC2,CDH2,KLB,FGF23,SRC,CTTN,CAMK2A,PIK3CA,PIK3R1,SPP1,AKT1,MMP9,IL17RD,FRS2,PLAU,CBL,SOS1,SHC1,GRB2,CTNND1,NCAM1,SSH1,FGF1,PTK2B,PTPN11,GAB1,PAK4,PDPK1,FGFR1,PLCG1,STAT1,RUNX2,PLAUR,FGFR4,FGF19,FGFR2,FOS,JUN,STAT5B,RPS6KA1,MET,HGF, +PWCOMMONS a4b1 and a4b7 Integrin signaling ITGA4,ITGB7,TLN1,PXN,ARF6,ITGAL,ITGB2,VCAM1,PIK3CA,PIK3R1,PRKACA,RAC1,CRKL,CBL,GIT1,BCAR1,CRK,DOCK1,JAK2,CD44,PTK2,MADCAM1,RHOA,SRC,EPO,EPOR, +PWCOMMONS Proteogylcan syndecan-mediated signaling events ADAM12,THBS1,FN1,GIPC1,PRKCA,TNFRSF13B,CXCR4,CXCL12,NLK,GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,MAP3K7,NFATC2,CSNK1A1,CAMK2A,MAP3K7IP1,NUDT16L1,RAC1,SDCBP,CCL5,FGFR1,FGF2,TFPI,LAMA1,PLG,F2,TNC,ACTN1,LAMA3,PTK2,RHOA,MDK,FZD7,ITGB1,ITGA5,PRKCD,DNM2,MMP9,SDC3,SDC2,SDC1,SRC,RASA1,BAX,CASK,KNG1,HRAS,TGFB1,CAV2,IL8,NF1,ITGA2,MMP2,CDH1,BGLAP,CDH2,KLB,FGF23,CTTN,PIK3CA,PIK3R1,SPP1,AKT1,IL17RD,FRS2,PLAU,CBL,SOS1,SHC1,GRB2,CTNND1,NCAM1,SSH1,FGF1,PTK2B,PTPN11,GAB1,PAK4,PDPK1,STAT1,RUNX2,PLAUR,FGFR4,FGF19,FGFR2,FOS,JUN,STAT5B,RPS6KA1,MET,HGF,EPB41,PRKACA,GNB2L1,TRAPPC4,MAPK8,CSF2,EZR,CASP3,EPHB2,BSG,LAMA5,HPSE,PPIB,MAPK1,BAG1,ELK1,MAPK3,RAF1,MAP2K2,INPP5D,INPPL1,CRKL,MAP2K1,PXN,STAT3,PAK1,RAP1B,RAP1A,RAPGEF1,RANBP9,MAP4K1,HGS,RANBP10,DOCK1,MAP3K5,MAP2K4,PTPRJ,PTEN,GLMN,CRK,RPS6KB1,SH3KBP1,CTNNB1,BAD,NCK1,PTN,AGRP,NCAN,MC4R,POMC,FYN,EGFR,APH1B,PSENEN,NCSTN,PSEN1,APH1A, +PWCOMMONS IL2 signaling events mediated by STAT5 CCNA2,MYC,CCND2,PRF1,BCL2L1,CDK6,SP1,ELF1,PIK3CA,JAK1,GAB2,LCK,IL2RG,PIK3R1,JAK3,PTPN11,IL2RA,IL2,IL2RB,SOS1,SHC1,GRB2,FASLG,BCL2,LTA,IL4,CCND3, +PWCOMMONS Plasma membrane estrogen receptor signaling AKT1,MSN,MMP2,BCAR1,ESR1,SRC,PIK3CA,PIK3R1,IGF1,IGF1R,NCK2,IRS1,BAD,YWHAZ,YWHAE,RAF1,PRKD1,PDPK1,HRAS,GNB2L1,SOS1,SHC1,GRB2,RPS6KB1,PRKCD,GRB10,PTPN1,PTK2,PXN,CRK,PTPN11,PRKCZ,IRS2,CRKL,GNG2,GNB1,MAPKAPK3,KRT8,CEBPB,PTGS2,SLC9A1,PPARGC1A,MAPKAPK2,USF1,MAPKAPK5,HSPB1,LSP1,CDC25B,TSC2,TCF3,SRF,CREB1,MAPK14,TH,ETV1,ATF1,MEF2C,MKNK1,MITF,NOS2,JUN,GDI1,RAB5A,ATF2,EIF4EBP1,MEF2A,PLA2G4A,EIF4E,HBP1,TP53,DDIT3,KRT19,ELK4,ATF6,MAP2K6,DUSP1,MAP2K4,GSK3B,BCL2,FKBP8,CALM1,RCAN2,YWHAQ,BAX,MAPK9,NFATC3,PRKACA,NFATC1,KPNB1,KPNA2,CABIN1,NFATC2,CSNK1A1,MEF2D,MAPK8,MAP3K1,CAMK4,AKAP5,NR4A1,RCAN1,CHP,CSNK2A1,MAPK3,XPO1,RAN,NUP214,MAP3K8,E2F1,EGR3,FOS,CREM,CTLA4,TNF,IL2RA,FOXP3,PPARG,EGR4,CD40LG,FASLG,GATA3,IL8,FOSL1,JUNB,IL5,IKZF1,GBP3,CSF2,IL2,PRKCQ,IRF4,MAF,POU2F1,CBLB,EGR1,SLC3A2,IFNG,ITCH,IL4,EGR2,RNF128,DGKA,IL3,BATF3,TBX21,BCE1,CDK4,CASP3,PTPRK,PIM1,FKBP1A,RIPK1,MAP3K3,TRAF6,MAPK11,MAP3K12,MAP3K7IP1,PRKG1,CCM2,RAC1,MAP2K3,DUSP16,DUSP8,DUSP10,MMP9,ESR2,HBEGF,NOS3,STRN,RHOA,ROCK2, +PWCOMMONS Canonical Wnt signaling pathway CTBP1,AES,CREBBP,TLE1,LRP6,KREMEN2,DKK1,FZD1,WNT1,NLK,GNG2,GNB1,CDC42,GNAS,PLCG1,YES1,MAP3K7,NFATC2,CSNK1A1,CAMK2A,MAP3K7IP1,FBXW11,HDAC1,AXIN1,APC,MACF1,WIF1,PPP2R5D,RANBP3,DKK2,DVL1,SMAD4,MYC,AXIN2,CCND1,RAN,FRAT1,NKD1,CSNK2A1, +PWCOMMONS Reelin signaling pathway RELN,DAB1,CRKL,RAPGEF1,ITGA3,ITGB1,LRPAP1,VLDLR,FYN,PIK3CA,PIK3R1,CBL,PAFAH1B1,AKT1,MAP1B,MAP3K11,MAPK8,ARHGEF2,MAP2K7,GSK3B,RAP1A,NCK2,GRIN2B,CDK5,CDK5R1,MAPT, +PWCOMMONS Alpha6Beta4Integrin YES1,YWHAB,PTK2,ERBB2,BAD,DST,AKT1,SMAD3,RHOA,MST1R,ITGA6,SHC1,GRB2,EIF4EBP1,SMAD2,CD151,FYN,FRAP1,PRKCA,PIK3CA,PIK3R2,PIK3CG,PIK3CB,SRC,EIF6,VIM,COL17A1,PAK1,MBP,TP73,ABL1,YWHAZ,PRKCD,MET,PLEC1,SFN,DSP,YWHAE,YWHAQ,EGFR,AR,MMP7,YWHAH,RPSA,CASP3,EIF4E, +PWCOMMONS AndrogenReceptor CCNE1,AR,RAN,CCND1,CDC2,GTF2H1,CAV1,HDAC1,PNRC1,SPDEF,NR5A1,SRY,STUB1,RCHY1,CCNH,RELA,STAT3,PIAS3,NSD1,SP1,PSMC3IP,PRPF6,COX5B,RAC3,NR0B2,RUNX2,RANBP9,SMAD3,SENP1,MYST2,UBE2I,TMF1,NCOA2,IL6ST,CTNNB1,FHL2,ATF2,APPL1,PRMT1,PCAF,POU2F2,SVIL,RNF14,SIN3A,TGIF1,CDK9,ESR1,PIAS1,JUN,ETV5,NR2C2,AES,MNAT1,GTF2F1,PA2G4,UBE3A,SMAD4,RNF4,GTF2F2,FLNA,UXT,BRCA1,NRIP1,CDC37,PTEN,RB1,NCOA4,NCOA3,PIAS4,NCOR2,CREBBP,PAK6,NCOA1,EP300,CALR,PATZ1, +PWCOMMONS EGFR1 PTPN11,SMAD2,EGFR,PLSCR1,MYC,CEBPA,PTPRR,MAPK3,JUN,SNCA,EPN1,RASA1,MAPK1,GRB2,ELK1,SRC,CBLB,MCF2,SMAD3,SH3GL3,DNM1,MAP2K2,CAV2,CBL,SHOC2,RAF1,PRKCZ,PITPNA,ATF1,MAP2K1,PRKCA,SOCS1,SHC1,EPS8,NCK2,PKN2,NCK1,PLD2,KLF11,APPL2,RAB5A,STAT5A,CAV1,MAP3K14,CRK,SOS1,JAK2,GJA1,RBBP7,EGF,ABI1,BCAR1,STAT3,PTK2B,SOCS3,PTPN6,KRT8,CASP9,PRKD1,HIST3H3,RPS6KA1,MAPK14,TGIF1,MAP3K3,STAT1,PIK3R2,MAPK7,PEBP1,RALGDS,HRAS,HDAC1,PLD1,MAP3K4,RIPK1,ASAP1,FOXO1,EEF1A1,FOS,JUND,STAT5B,ARAF,MAPK8,JAK1,PRKCB,PIK3C2B,VAV3,CTNND1,NRAS,PXN,VAV1,MAP3K2,HTT,CREB1,GRB7,CRKL,PIK3CA,PIK3CG,PIK3CB,STAT2,TNK2,CDC42,CEBPB,ELF3,PTPN12,GIT1,EPS15L1,EPS15,RPS6KA3,PRKAR1A,ERRFI1,CBLC,PRKCI,SH3KBP1,SPRY2,PLEC1,MTA2,RGS16,RALBP1,TNIP1,YWHAB,CSK,WASL,SH3BGRL,ELK4,HAT1,ARF4,KRAS,HIP1,KRT7,PTK6,RPS6KA2,GRB14,SP1,RALB,SNRPD2,KRT18,KRT17,PRKCG, +PWCOMMONS Hedgehog DHH,IHH,PTCH1,CCNB1,SUFU,GLI3,SMO,GLI1,CDC2,DYRK1A,SAP18,HHIP,GAS1,STK36,SIN3A, +PWCOMMONS ID RB1,ID3,CDK2,MYOD1,ID4,TCF3,ELK1,IFI16,ELK4,MSC,CCNA2,ELK3,SMAD3,ATF3, +PWCOMMONS KitReceptor KIT,CRKL,CBL,PTPRU,SOCS5,HCK,PRKCA,DOK1,KITLG,SOS1,SHC1,GRB2,GRAP,KHDRBS1,PIK3R2,SPRED2,SRC,FYN,GRB7,FGR,PIK3R1,SPRED1,SH3KBP1,PTPN6,STAT1,STAT5B,CISH,CRK,JAK2,PRKCB,STAT5A,LYN,EPOR,SOCS6,RASA1,MITF,RAF1,HRAS,PIK3CG,INPP5D,CLTC,TNFRSF10A,MAPK1,YES1,EP300,PTPN11,CSF2RB,PLCE1,FES,RPS6KA1, +PWCOMMONS NOTCH MAGEA1,MAML1,CUL1,FBXW7,MAML2,RBPJ,APP,DLL1,JAK2,PSEN1,HDAC1,FHL1,NOTCH2,STAT3,RELA,DTX1,EP300,APH1B,NCSTN,PSENEN,PSEN2,APH1A,TCF3,SKP1,SAP30,FURIN,MAML3,GATA1,HEY1,NCOR2,LEF1,TLE1,JAG1,NOTCH3,HES6,NOV,SPEN,NFKB1,RBX1,SKP2,NFKBIA,NCOR1,HDAC2,PCAF,MAPK3,MFNG,POFUT1,JAG2,DLL4,SMAD3,NUMB,RING1,MAPK1,SMAD4,PIK3R2,YY1, +PWCOMMONS TGFBR CTNNB1,FOXO3,SMAD3,SMAD2,NFYB,NFYC,UBE2D2,UBE2D3,MAPK14,DAB2,CD44,JUN,ATF3,LEF1,ZEB2,TGFBR2,EIF3I,SKIL,CDC16,RBL1,CDK2,FOS,XPO1,SMURF1,PRKCD,TGFBR3,ARRB2,UBE2L3,UBE2E1,STRAP,PPP2R2A,TGFBR1,CDK6,CDK4,CCND1,CITED1,CREBBP,JUND,ANAPC5,ANAPC10,CDC23,ANAPC1,ANAPC2,CDC27,ANAPC4,SMAD7,EP300,ETS1,CDC25A,SMAD6,SP1,EID2,E2F4,SNX6,PIK3R2,SNIP1,NFYA,ESR1,BTRC,MAP2K6,VDR,MYC,RBL2,TP53,MAPK8,NUP153,NCOA1,SNX1,SKI,MAP3K7IP1,MAP3K7,PRKAR2A,ZFYVE9,TFDP2,CAV1,RB1,HSPA8,RBX1,CUL1,SKP1,TGFBRAP1,NUP214,STAMBPL1,SNX4,TGFB1,TGFB3,FZR1,HOXA9,ATF2,SDC2,PRKAR1B,ENG,PCAF,FNTA,ZEB1,HDAC1,TGIF1,COPS5,RUNX2,TP73,KPNB1,FOXH1,JUNB,PRKCB,SNX2,FKBP1A,CTCF,TFDP1,SNW1,FOXO1,SMURF2,CCNB2,FOXO4,ROCK1,CDC2,MEF2A,PRKCG,FOSB,DAXX,AR,SUMO1,YAP1,CDKN1A,UBE2D1, +PWCOMMONS TNF alpha/NF-kB TNFRSF1B,TRAF2,BIRC3,KPNA2,NFKBIB,NFKBIA,RPS6KB2,TRAF4,TNFAIP3,CASP8,MAP3K7IP1,MAP3K7IP2,SKP1,BTRC,TBK1,TNFRSF11A,RIPK1,CYLD,IKBKG,NFKB1,POLR2H,RASAL2,TRIB3,RELB,KPNA3,NFKBIE,NKIRAS1,HIST3H3,NFKB2,RPL6,MAP3K14,RIPK2,CAV1,PEBP1,AZI2,TNFRSF1A,TNF,HSP90AA1,MAP3K3,TNIP2,NFKBIZ,PML,CASP8AP2,REL,MAP3K8,HDAC2,HDAC1,CSNK2A2,CSNK2A1,CSNK2B,IKBKE,CHUK,HSP90AB1,FANCD2,PFDN2,SRC,STAT1,NR2C2,POLR1A,RPL30,USP2,GAB1,BAG4,ZFAND5,FKBP5,CASP10,FADD,TRADD,CFLAR,AKAP8,COMMD1,UBE2D3,RNF25,YWHAH,AKT2,RIPK3,CRADD,TRAF6,PSMC2,KPNA6,BIRC2,CDC37,PSMD13,YWHAZ,NSMAF,GNB2L1,UBE2I,PRKACA,KIAA1967,SUMO1,SMARCE1,TRAF3,SMARCA4,PSMD1,MAP3K7IP3,MCM5,PSMC1,SMARCC1,POLR1C,G3BP2,CASP2,RPL4,RPS13,PTPN11,CD3EAP,NKIRAS2,POLR1E,HDAC6,PSMD6,CASP3,PEG3,KTN1,CUL1,PSMD7,NLRP4,PSMD12,GTF2I,FLNA,PSMC3,COPS3,RPL8,DAP,MAP3K2,FBL,UNC5CL,POLR2L,ACTL6A,YWHAG,PAPOLA,TIFA,CASP7,HSPB1,TRAF5,WDR68,POLR1D,ALPL,CDC34,TANK,POLR1B,TRAIP,DDX3X,PKN1,PPP2CA,PDCD2,RPS11,MCC,CREBBP,KCNQ1,CAPN3,MTIF2,FBXW11,BCL7A,LRPPRC,PRKCZ,MARK2,YWHAB,PPP1R13L,UBE2D2,PPP6C,IKBKAP,PSMB5,SMARCB1,TXLNA,DPF2,MCM7,YWHAQ,FAF1,PSMD3,YWHAE, +PWCOMMONS Wnt AXIN1,DVL3,CUL1,SKP1,BTRC,APC,SFRP2,RUVBL1,TBP,LEF1,HIPK2,DVL2,CSNK1D,PIN1,MAPK8IP1,MAPK8,PIAS4,CSNK1E,SMAD3,LRP6,ARRB2,FZD4,CSNK2A2,CSNK2A1,CDC2,MAP3K7,FZD5,RUNX2,CSNK2B,WNT1,FZD1,PRKCB,MAGI3,WNT3,TFAP2A,DAB2,PRKCA,DLG1,DLG2,LRP5,WNT3A,PAX2,SENP2,SOX1,CAMK2D,CAMK2B,MARK2,DAAM1,PPP2R5B,MAP3K4,EP300,DKK1,CDH1,CDX1,RHOA,CTBP1,WNT2,JUP,SUMO1,SFRP1,LRP1,WNT4,PRKCG,FZD7,BCL9,CDC25C,FHL2,BRD7,WNT7A,TAX1BP3,NR5A1, +PWCOMMONS TRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_PROCESSING.html TRNT1,ADAT1,SARS,METTL1,FARS2,AARS,THG1L,SSB,POP4,NSUN2 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html UAP1,CHIA,GNPDA1,GNE,CHST2,CHST4,CHST5,NAGK,EXTL2,SLC35A3,CHIT1,ST3GAL2,CHST7,LARGE,CHST6,ST3GAL6,B4GALNT2,NANP +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html BTRC,USE1,RNF217,RNASEH1,ISG20,CDKN2A,CPA2,FBXO22,ANAPC2,ANAPC5,DFFA,DFFB,ANAPC4,UBR3,CECR2,RNASEH2A,UHRF2,UBR5,MGAM,FBXL4,AMFR,XRN2,FZR1,DERL2,DERL1,SYVN1,PABPC4,ANAPC10,PPT1,NEDD8,UBE2V2,HSPA1B,CHIT1,ARIH1,UBE2D3,UBE2D2,INS,RNF11,UBE2D1,NTHL1,FBXO7,NPLOC4,SMG6,SMG5,SMG7,SMG1,CDC23,CIDEA,PCNP,CDC20,TPD52L1,UBE2L3,PSMC5,VCP,POP1,HGS,SMURF2,SMURF1,UBE2E1,KIAA0368,TSG101,UBE2G1,UBE2G2,BNIP3,AUH,ZFP36,ABCE1,UBE2A,AIFM1,UFD1L,CYCS,UBE2I,PRKCG,UBE2H,UBE2C,UBE2B,UBE2N,UBE2K,GAA,ERN2,MDM2,SIAH1,UBB,SIAH2,MDM4,UBE3A,EGLN2,STUB1,EDEM1,ERCC5,SQSTM1,RNASET2,PRSS2,ERCC3,ERCC4,USP33,ERCC1,ERCC2,RNF144B,UPF2,FOXL2,RNASE2,RNASE3,UBE4A,UBE4B,RNASE6,PARK2,SOD1,SELS,PSMD14,GSPT1,PPP1R8,BAX,FAF1,PYGB +PWCOMMONS GLUCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCAN_METABOLIC_PROCESS.html PYGM,GCK,GSK3B,MGAM,EPM2A,GAA,GYS2,GYG2,DYRK2,PYGB +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html ERCC8,DZIP3,HUWE1,DDB2,UBE2V1,UBE2V2,UBE3C,AMFR,TRAF6,UBE2D1,STUB1 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html SYT1,TP63,AASS,HPRT1,IGF1R,NOD2,NOD1,DGKD,APOE,UPK1A,GPX3,GOPC,TRPV5,PEX14,CDA,TGM3,INSR,AKR1C1,BCL10,IRAK1,SCUBE3,ALDH5A1,CCDC88C,SCUBE1,MUC20,TP53,MALT1,ACTN2,NLRP3,SEPT11,RAD51,STOM,VWF,BAX,ATPIF1,AMFR,EIF2AK3,SEPT7,MAP3K11,SEPT9 +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html EID2,SNX6,SMAD4,CIDEA,SMAD3,SMAD2,TGFB1,CITED2,CDKN1C,PEG10,CDKN2B,HIPK2,IL17F,ENG +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html MMS19,RAD51C,XRCC4,XRCC3,XRCC2,XRCC6,SETX,IGHMBP2,MUTYH,RAD21,CDKN2D,PMS2,PMS1,CIB1,POLL,POLI,POLH,POLG,LIG1,POLE,LIG3,RAD9A,LIG4,RAD1,PNKP,RFC3,RPAIN,RAD17,RAD23B,HMGB1,HMGB2,BLM,RAD23A,MRE11A,HUS1,UBE2V1,UBE2V2,XAB2,POLE2,RAD51L1,POLQ,ASF1A,NTHL1,RECQL4,RECQL5,TREX2,BRCA2,ATR,RAD54L,ATM,BRCA1,VCP,POLD1,TDG,RAD54B,PARP3,SMC1A,ABL1,PARP1,NBN,UVRAG,MLH1,PMS2L1,FANCG,CCNO,FANCA,FANCC,UBE2A,REV1,DDB1,GTF2H4,TP53,APTX,PRKCG,RAD52,UBE2B,RAD50,XRCC6BP1,RAD51,GTF2H1,RBBP8,UBE2N,RECQL,XPC,BTG2,GADD45G,DDB2,RUVBL2,NHEJ1,GADD45A,WRNIP1,UNG,POLA1,SMUG1,RPA1,ERCC8,ERCC5,SUMO1,ERCC6,ERCC3,APEX1,ERCC4,ERCC1,FEN1,ERCC2,EXO1,MSH6,UPF1,MSH3,MSH2,CEBPG,MSH5,TNP1,SOD1,TP73,ATRX,MPG,MNAT1,ATXN3,CSNK1D,CSNK1E,ALKBH1,OGG1 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html TLR1,EIF5A,TNFRSF8,TLR3,TLR4,TLR6,TLR7,TLR8,TLR9,AZU1,APOA2,BCL3,DAZL,LTB,EBI3,SPN,SAMD4A,CD28,EIF2B5,IL4,BCL10,IL6,DAZ1,IL29,PRG3,IL27,CEBPG,IL9,CD276,BOLL,EREG,GLMN,IL12B,IRF4 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IL28RA,DUOX2,BNIP3,APOBEC3G,TLR7,CXCL12,APOBEC3F,TLR8,ISG20,CXCR4,IFNK,IFNGR2,FOSL1,IFNGR1,ABCE1,SPACA3,IL29,IFI44,HBXIP,IFNAR1,LILRB1,TARBP2,IFNAR2,CCDC130,C19ORF2,TNF,FGR,POLA1,RSAD2,IFNW1,CCL8,IVNS1ABP,CCL5,CCL4,BANF1,CCL22,IFNA7,BCL2,PRKRA,IFNA4,BCL3,PTPRC,CREBZF,CCL19,TRIM22,CCL11,IRF7,BNIP3L,IFNA17 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MEF2C,KCNH1,POU6F1,MEF2B,MYOD1,AEBP1,MEF2A,MYBPC3,UTRN,TTN,TGFB1,CXCL10,GATA6,MKX,MKL2,CHRNA1,IFRD1,BOC,EGR3,ACTA1,MYH3,TAZ,NRD1,MYH7,MBNL1,MYH6,KRT19,GYLTL1B,SMTN,TAGLN,SGCG,ITGB1BP2,SIX1,VAMP5,GAA,SGCD,SGCE,UBB,ADAM12,SGCA,SGCB,MYL6,SRI,ACHE,CTF1,MRAS,FHL3,ITGA11,MYEF2,CACNB2,MTM1,MUSK,SPEG,MYL6B,TEAD4,COL6A3,EMD,COL4A4,MYF6,BMP4,FKTN,FOXL2,EVC,TBX3,NF1,MYF5,MSTN,IGF1,CENPF,MYOZ1,CBY1,TNNI3,COL5A3,SOD1,CSRP3,CAPN3,SIRT2,LAMA2,HDAC5,MEF2D,HDAC4,NOTCH1,LARGE,MAPK12,SVIL,ITGA7,MYH11,CACNA1H,HBEGF,HDAC9,TCF12,IGFBP3 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html PPARG,FOXO3,SART1,TGFB2,CALCA,ACVR1B,ADIG,ZAP70,VWC2,ACIN1,RUNX1,BOC,BMP4,IL7,TBX5,SOCS5,IL20,ACVR2A,INHBA,NME2,BTG1,ETS1,SCIN,BMPR1B,IGFBP3 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html NBN,RINT1,PML,KNTC1,TTK,BRSK1,TGFB1,ATM,TRIAP1,MAD2L1,CDKN2B,PCBP4,ZWINT,BUB1,BUB1B,GML,MAD2L2,CHFR,CCNA2,RAD17,ZW10 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html SHROOM1,SHROOM2,ARHGEF2,LIMA1,ACTA1,FSCN2,NF2,BCAR1,FSCN1,EVL,EPB49,SORBS3,EZR,RND1,SORBS1,TSC1,PLA2G1B,KPTN,SPTA1,DBN1,RHOF,ARHGEF10L,DLG1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html PDIA2,RP2,PDIA6,PDIA5,CCT3,AIP,BAG5,BAG4,PIGK,APOA2,BAG2,SEP15,DNAJC7,MKKS,ARL2,CLN3,APCS,HSP90AA1,ERP29,TBCE,CCT6A,CLPX,LRPAP1,ST13,TBCA,TBCD,PFDN4,TBCC,RUVBL2,FKBP9,FKBP6,FKBP5,FKBP4,NFYC,LMAN1,PIN4,STUB1,GLRX2,TTC1,CCT6B,TOR1A,DNAJA1,HSPE1,ERO1L,QSOX1,DNAJA3,HSPBP1,CCT7,ATF6,PPIH,CCT4,PPIA,HSPA4L,DNAJB2,AHSA1,DNAJB6 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD2,ALS2,FGD1,RALBP1,ARHGAP27,ARF6,TSC1,RAC1,ABRA,FGD5,FGD6,FGD3,FGD4 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html NRP2,CDK5R1,NRP1,NRXN3,OTX2,DPYSL5,NRXN1,GLI2,SLIT1,SLIT2,SHH,SEMA4F,KAL1,OPHN1,CNTN4,SIAH1,SEMA3B,UNC5C,UBB,SPON2,FEZ2,FEZ1 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html HSD17B11,HACL1,PPARA,PPARD,ECH1,HSD17B14,ECHS1,PPT1,HADHB,APOA4,APOA5,HSD17B6,BDH2,ANGPTL3,CPT1B,STS,ACADM,CYP46A1,ACADS,ALDH5A1,CIDEA,PNPLA3,CPT1A,HAO1,ACADVL,CEL,YWHAH,GLA,PRDX6,HAO2,UGT2B4,NEU3,PLA2G4C,PLA2G4B,AKR1D1,SMPD4,SMPD3 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PGS1,IMPA1,SGMS2,GPAA1,SGMS1,PIGK,APOA1,LPCAT1,PIGF,DGKE,PIGG,PIGH,LCAT,PIGB,PEMT,PIGC,ETNK1,PCYT1B,PCYT2,AGPAT2,AGPAT1,PIGA,PIGZ,PIGY,PIK3C2A,FADS1,PIGV,PI4KA,PIGU,PIGT,PIGS,PI4KB,CHPT1,PIGO,CD81,PI4K2A,DPM1,DPM2,DPM3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FST,ZNF254,EPC1,SIN3A,WWP1,ZNF396,SUPT5H,TWIST2,TWIST1,GTPBP4,ZHX1,MECP2,ZHX2,ZHX3,RAD9A,ZNF238,PIAS4,TGIF1,PRDM1,SUDS3,ENPP7,VPS72,NR1H2,HEXIM2,DRAP1,HEXIM1,CDA,BCOR,NKX2-5,TCF25,NKRF,DMBX1,MDFI,BMP2,KLF12,PHB,KLF10,KLF11,SMAD4,RYBP,S100A11,SMAD3,SMAD2,ATR,UBP1,NR1I2,JAZF1,RBPJ,KLF4,ZBTB32,PPARD,SPI1,TP63,ZEB1,TERF2IP,HSBP1,GLI2,DAXX,ZNF345,CDT1,ZNF350,GFI1B,ZNF148,ZNF281,ATF7IP,CDC6,NDUFA13,TLE1,FOSB,MXD4,CHMP1A,EREG,GRM8,ZNF136,RIPPLY1,NSD1,ZMYND11,PML,ZBTB16,ZNF177,ZNF174,SUMO1,SET,LANCL2,GATAD2A,PER1,BCL3,PEX14,BCL6,SUPT4H1,FOXD3,TBX3,TBX2,GMNN,ZNF24,TRIM27,TNP1,ILF3,PHF12,SNAI2,STAT3,ZNF157,YAF2,PHF21A,RBM9,TCEAL1,TGFB1,MYST1,MYST4,MYST3,ZNF593,ZNF189,NR0B2,CSDA,NR0B1,FOXN3,PA2G4,SMARCE1,TIMELESS,RAD17,EID1,HMGB1,EID2,GCLC,SNX6,TIPIN,ELK3,VDR,MEIS2,RUNX2,HELLS,ZNF423,CREBZF,SNW1,FOXP3,UIMC1,BRCA1,HDAC5,SMARCC2,DNMT1,RFX3,HDAC8,PDZD3,E2F1,RSF1,ARID4A,E2F6,DEDD,NR6A1,ZNF202,CTCF,PAWR,PDCD4,MEN1,PCGF6,ATP8B1,POU4F2,NRG1,NFX1,KHDRBS1,LDB1,ARID5B,SLA2,ARID5A,RB1,NRIP1,BPTF,MDM2,ERN2,MDM4,CUX1,COMMD7,ZFP161,GLIS3,ING4,BCLAF1,TNF,GLIS2,GLIS1,CALCA,ORC2L,TSPYL2,POU2F1,ERCC4,ERCC1,TERF2,ENO1,NF2,VHL,SIRT4,CENPF,SIRT5,CBY1,SIRT1,SIRT2,ATXN1,ID2,ID1,DR1,IRF7,IRF8,GRLF1,IRF2,ID4,ID3 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html SEPT5,SEPT4,PRC1,DIAPH2,AURKC,NUSAP1,BRCA2,ANLN,BIRC5,RACGAP1,MYH9,DCTN3,INCENP,RAB35,CNTROB,SEPT6,SEPT7,RASA1,MYH10 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SRPK2,CRNKL1,SNRPD1,SF1,SNRPD2,SF3A2,SFRS1,SF3A1,SF3A3,SFRS6,SFRS5,SFRS8,SFRS9,USP39,SLU7,SFRS2IP,SIP1,TXNL4A +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html IMPA1,GPAA1,PIGK,APOA1,PIGF,PIGG,PIGH,LCAT,PEMT,PIGB,PIGC,PCYT1B,AGPAT2,AGPAT1,PIGA,PIGZ,PIGY,PIK3C2A,PIGV,PIGU,PI4KA,PIGT,PIGS,PI4KB,PIGO,CD81,PI4K2A,DPM1,DPM2,DPM3 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html FHIT,ADCY7,CTPS,FIGNL1,PGD,OXER1,NT5M,NDUFS1,NT5C,ALDH6A1,NUDT4,NUDT3,NUDT5,OLA1,DGUOK,GMPS,PTHLH,NME4,PNKP,NME5,PGLS,UMPS,UCN2,ADM,GRM8,ADK,PRPS1,ME1,ADSS,ADORA2A,DCK,ABCA1,HPRT1,PPAT,TYMS,TYMP,PTH,REXO2,CDA,C16ORF7,ENTPD4,DCTD,ERH,AK5,ACLY,AMPD3,CTNS,FPGS,GUK1,PDZD3,PAICS +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html HTATIP2,TNF,PDIA3,NFKBIE,TNFSF14,CDH1,MXI1,GLI3,TGFB1,AKT1,CEP57,ZFYVE9,BCL3,BCL6,NCKIPSD,RANBP2,TPR,TNPO1,KPNB1,MDFI,FYB,MCM3AP,NF1,PPP1R10,SMAD3,NLRP3,HNRNPA1,NFKBIL1,FLNA,NFKBIL2,PPIH,CBLB,RPAIN,TRPS1,NUP205,F2,PTTG1IP,NLRP12,KPNA6,KPNA5,FAF1,KPNA4,TRIP6,KPNA3,KPNA2,RERE,KPNA1,F2R +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html ITLN1,TGFB1,IL31RA,CLCF1,ANG,TDGF1,EGF,EGFR,BMP4,BCL10,IL3,IL5,IL29,LYN,HCLS1,IL20,CCND1,CARD14,EREG,CCND3,CD80,AKTIP,CCND2,CD81,IL12A,GLMN,PPP2R4,TNK2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html ALS2,RAB3GAP2,GNA15,RAB3GAP1,TNFSF15,PMAIP1,EDNRA,GPX1,NLRC4,APOA2,CDKN2A,CASP9,CASP8AP2,NMUR1,ANG,CDKN2D,NMUR2,APOA5,RGN,PLCB2,DHCR24,EGFR,C5AR1,AIFM3,CCKBR,RALBP1,CYCS,TP53,ARHGAP27,NLRP3,HBXIP,NLRP2,BCL2L10,THY1,TNNT2,GNAQ,IFNB1,SAPS3,LCK,F2,ERN1,ATPIF1,FGD2,FGD1,APOC2,SFN,MOAP1,MTCH1,DIABLO,FGD5,ANGPTL3,FGD6,FGD3,FGD4,ANGPTL4,HIP1,COL4A3,CARD8,FOXL2,NF1,SMAD3,BIRC5,STAT1,TSC1,VCP,BBC3,IFT57,BAX,AVPR1B,AVPR1A,PPP2R4,APAF1,DNAJB6,IFI6,F2R +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html TTN,UHMK1,CAMKK2,AKT1,IGF1R,PAK2,MAP3K3,MAP3K9,LMTK2,PCSK9,PAK1,INSR,TAF1,MYO3A,KIAA1804,MEX3B,TAOK3,MOBKL1A,SMG1,STK4,CDKL5,EIF2AK1,MAPK15,DYRK1A,NLRP12,MAP3K10,TNK1,EIF2AK3,MAP3K13,MAP3K12,MAP3K11 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html TRAF2,MBL2,CADM1,BCAR1,CX3CL1,TLR8,TGFB2,MAP3K7,CFHR1,TNFRSF1A,KRT1,IFNK,C2,TRAF6,SCG2,PTPRC,CRTAM,IL8,IL29,SLA2,CEBPG,MALT1,PRKCG,NFAM1,SLIT2,TRAT1,THY1,CD1D,UBE2N,CDH13,LAT2,NPY,EREG,FYN,EEF1E1,IKBKG,IL12A,GHRL,CD79A,IL12B,GHSR +PWCOMMONS REGULATION OF CELLULAR PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PH.html CLN3,CLCN3,BCL2,ATP1A3,ATP1A4,ATP1A1,PPT1,ATP1A2,CLN5,CLN6 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html LST1,HS3ST5,SPINK5,AHSG,PR47,TGFB2,CALCA,SERPINE1,SFTPD,GP1BA,CHRNA7,CD24,SRGN,KNG1,PTPRC,SLA2,CIDEA,INHA,SOCS5,FOXP3,SOD1,TMPRSS6,THY1,PROC,INHBA,TARBP2,LAX1,F2,CARTPT,GHRL,GLMN,GHSR +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html KCNMB4,ACHE,SNCAIP,CADM1,FAM3D,DPH3,PYDC1,IL11,LIF,APOA2,NOD2,APOA1,INS,ANG,PYCARD,SCG5,SNAP25,DNAJC1,SRGN,SERGEF,CRTAM,CARD8,STX1A,MYO6,CIDEA,ARFIP1,INHA,NLRP3,FOXP3,NLRP2,INHBB,OSM,INHBA,GCK,GHRH,SCIN,NLRP12,CARTPT,GLMN,GHRL +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html SNCAIP,PRG3,HPRT1,BBOX1,TGFB2,OAZ2,OAZ1,COLQ,DIO2,SULT1B1,ASMTL,ETNK1,DHPS,SLC5A7,DIO1,SMS +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html RPL17,SLC44A2,VAPA,TBK1,TSPAN6,TLR6,IL31RA,CITED2,TMEM9B,MYD88,CDKN2B,MIER1,ABRA,GPR89A,BCL10,BST2,IL29,GOLT1B,RELA,FADD,CD40,TRAT1,IL20,TRIM38,ATP2C1,MIB2,RIPK2,NEK6,PPP5C,LITAF,UBE2V1,AFAP1L2,CXXC5,ADRB3,RAC1,TRAF7,TRAF6,EGF,TRAF5,CFLAR,CARD9,TAOK2,LGALS1,TAOK3,NDFIP1,NDFIP2,MALT1,TPD52L1,ECM1,LGALS9,TRADD,CDKN1C,TRAF3IP2,APOL3,NOTCH2,IKBKE,TNFSF10,PLK2,NUP62,CDKN2AIP,SLC20A1,FASLG,GJA1,TP63,CANT1,ACVR1B,NOD2,NOD1,CLCF1,HMOX1,CASP8,TICAM1,TICAM2,RHOA,TGFA,TMEM101,RHOC,CASP1,LTBR,LYN,NFAM1,ECT2,FLNA,UBE2N,ACVR2A,GRM4,ZDHHC17,ADRB2,ACVR2B,TNFRSF10B,EREG,ZDHHC13,RIPK1,HIPK2,IL12A,EEF1D,PPM1A,TRIM13,TFG,FKBP1A,TNFRSF1A,TMED4,MAP3K3,REL,RASGRP4,SLC35B2,PLEKHG5,CC2D1A,CD27,SECTM1,PTPRC,HCLS1,EDA2R,BIRC2,CDH13,EPGN,EEF1E1,HTR2B,F2R +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html RAB3GAP2,TSPO,XPO6,CADM1,LTBP2,AP1G1,LMAN2L,TNFSF14,EIF5A,MIPEP,MXI1,AGXT,KLHL2,TGFB1,AIP,SSR1,APOA2,NLRC4,APOA1,HOMER3,TRAK1,CEP290,TLK1,RPL11,DNAJC1,KIF13B,EGFR,MCM3AP,CRTAM,CD3G,MYO6,STAP1,VPS45,LRP1B,ERP29,OPTN,NUPL2,MYH9,RPAIN,BACE2,F2,PEX26,RTP3,RTP2,DERL2,ACHE,PPY,ARFGAP3,RTP4,DERL1,NFKBIE,RTP1,CTSA,PPT1,ABCA1,PYDC1,CALR,CDC37,UHMK1,CD74,INS,NPM1,DUSP16,ANGPTL3,TRAM1,SEC23IP,SRGN,MDFI,CARD8,CIDEA,SMAD3,SNAPIN,ICMT,ARFIP1,REEP1,FOXP3,ABCG1,NFKBIL1,TRNT1,NFKBIL2,PPIH,CBLB,VCP,TRPS1,PTTG1IP,GLMN,LGTN,TRIP6,XPO7,RERE,PDIA3,TIMM17A,HPS4,TIMM17B,PEX6,AP3S2,PEX3,PDIA4,DPH3,CANX,GLI3,PEX7,AKT1,NOD2,PEX1,ANG,ZFYVE9,ZFYVE16,RANBP2,NCKIPSD,TPR,COX18,KDELR1,KPNB1,TOMM34,AP3B1,KDELR2,RPGR,NLRP3,TIMM23,TIMM44,NLRP2,FLNA,MFN2,ZDHHC17,ATG4D,ATG4C,ATG4B,NUP205,ATG4A,ARCN1,C3ORF31,TOMM20,KPNA6,TOMM22,KPNA5,KPNA4,KPNA3,ARL4D,KPNA2,KPNA1,TNF,AP1M2,CDH1,SEC63,NUP214,NAGPA,CEP57,PEX19,AP3M1,TAP2,PEX16,PYCARD,PEX14,BCL3,AP3D1,BCL6,SCG5,PEX13,CD24,APPBP2,PEX12,PEX10,TNPO1,APBA1,SCG2,FYB,SERGEF,NF1,NLGN1,PPP1R10,SELS,GABARAP,YWHAH,COG7,GSK3B,NLRP12,TRPC4AP,FAF1,GGA1,SSR2,F2R,COG2,BARD1 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F2RL2,GGCX,AVPR2,F2RL3,ADORA2A,F13A1,GNA12,PABPC4,HPS4,PF4,ITGB3,MMRN1,LMAN1,PR47,GP9,F13B,FLI1,SERPINE1,GP1BA,ENTPD1,PLAT,KNG1,F12,L3MBTL4,NFE2,F10,F8,ITGA2,F9,C4BPB,F7,TMPRSS6,WAS,PLG,PROC,VWF,GPI,THBD,CD36,F5,GNAQ,HNF4A,CD40LG,CD59,F2,TFPI,PROS1,F2R +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE INHIBITING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_INHIBITING_PATHWAY.html MCHR1,GRM4,CHRM5,RGS1,OPRL1,DRD2,NPY2R,OPRK1,NPY1R,CORT +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html MTSS1,MPZL1,NRTN,LTBP2,EDN2,GDF5,FOXO4,TGFB1,CITED2,MAP3K7,GP6,FNTA,CDKN2B,TDGF1,GAB1,GDF9,FRS3,RAPGEF1,INSR,FRS2,EGFR,PTPRJ,EFNB3,PTPRF,CD3E,PTPRG,BAIAP2,SOCS1,PICK1,PTPRT,PTPRU,IRS1,GRB10,ROR1,TGFBRAP1,EID2,FGFR4,FGFR3,SNX6,ERBB3,GRB2,ERBB2,BMPR2,AFAP1L2,BDKRB2,SRC,PXN,FOXH1,MUSK,PEG10,IL17F,TEK,AGRN,EGF,CNKSR1,GUCY2F,FIBP,SMAD7,TGFBR1,KLF10,SMAD5,SMAD4,TRIO,SMAD3,CIDEA,SMAD2,SMAD1,GUCY2C,GUCY2D,KDR,NTRK3,EPS15,CDKN1C,CBLC,EPS8,NTRK1,NTRK2,TGFBR3,SMURF1,GRB7,ENG,FGF5,ACVRL1,BCAR1,AP3S1,AKT1,ACVR1B,PDPK1,ZFYVE9,TGFA,SHC1,SHC3,OTX2,LEFTY1,CD3EAP,ACVR2A,NCK2,INHBA,DOK1,ACVR2B,ADRB2,EREG,HIPK2,FOXC2,LCP2,ACVR1,FMOD,REPS2,ABI1,STUB1,IGF1R,UTP11L,RGMB,SORBS1,CEP57,PTK2B,LEFTY2,VWC2,PTN,PIK3R3,PIK3R1,GUCA1B,PTPRD,FLT3,FLT4,CBL,IGF2,RPS6KA5,CDH13,SOST,PRLR,ERBB2IP,EPGN,MAPK8IP2,GDF10,GDF15,HPGD,GFRA2,BMPR1A +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html ALDOA,ALDOB,PFKFB1,PGD,UGDH,HK1,TKTL1,ACN9,AKR1A1,INS,ECD,PDK1,PDK2,IRS2,PFKL,PDK3,PDK4,BRS3,PFKM,PPARGC1A,GAPDHS,PGLS,ATF4,G6PD,GCK,SLC25A10,UGP2 +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html CRTAM,CADM1,IL28RA,APOBEC3G,CX3CL1,APOBEC3F,NCR1,TLR8,AHSG,IL20,CD1D,TNFRSF1A,TARBP2,EREG,IL12A,GHRL,CHRNA7,IL12B,IFNK,GHSR +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html ARSB,CLN3,NAGPA,MYO7A,HPS4,GAA,HPS1,PPT1,ABCA1,CLN5,CLN6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MMS19,XRCC6,FOXO1,RORB,FOXO3,MED21,TGFB1,CITED2,EPC1,MDFIC,SMARCD3,FOXF1,GATA4,FOXF2,SMARCD1,SUPT5H,BCL10,MYO6,PCBD2,RXRA,MED12,MED14,ARID1A,MED13,ARNTL,ELL3,TRERF1,PPARGC1B,HIF1A,HNF4A,MED17,TFAP2B,SMARCA1,CRTC1,ELK1,AFAP1L2,PLAGL1,FOXH1,MAML3,RUNX1,TCF4,TCF3,ARHGEF10L,UTF1,EPAS1,MAML1,TAF8,MAP2K3,MAML2,ESRRG,SMAD3,SMAD2,ATF6,ATF4,SMARCC1,DYRK1B,NOTCH4,SMARCC2,BMP6,ELF1,HNF1B,HNF1A,RSF1,ELF4,SPI1,TP63,CTCF,GLI2,ZBTB38,GLI1,PAX8,MKL2,ATF7IP,CCNH,TP53,CDK7,HMGA1,SCAP,PRPF6,NRIP1,GTF2H1,ARHGEF11,MED6,INHBA,BPTF,ZMIZ2,NCOA6,NSD1,CLOCK,MED1,GLIS3,GLIS1,NUFIP1,EHF,TNFRSF1A,NPAS2,MRPL12,SQSTM1,SUPT4H1,ERCC3,ERCC2,FOXD3,IL4,TBX5,TRIM28,CREB5,ILF3,TP73,MNAT1,ILF2,SP1,THRAP3,FOXE1,PHF5A,RBM14 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html TBX3,SMAD2,TRIM15,SPINK5,SLIT2,TGFB2,IL20,GLI1,EYA2,TGM3,KRT2,ERCC3,KLF4,ERCC2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html CCKAR,F2RL3,DRD1,PARD3,GNA15,DRD2,EDN2,TACR1,CALCA,EDNRA,AZU1,EDNRB,AGTR1,HRH1,P2RY6,P2RY4,NMUR1,ANG,LTB4R,NMUR2,P2RY2,P2RY1,MC3R,PPAP2A,PLCB2,EGFR,C5AR1,CCKBR,PICK1,HOMER1,GRM5,P2RY11,GNAQ,CHRM2,CHRM1,AVPR1B,AVPR1A,NMBR,HTR2B,GAP43,PRKD3 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html DMAP1,FOS,PRMT1,PRMT2,PRMT7,PRMT8,PRMT5,GATAD2A,PCMT1,DNMT3B,NSUN2,HELLS,ATF7IP,DNMT3A,LCMT1,EHMT1,PICK1,ICMT,TST,ATRX,WHSC1L1,DNMT1,MAT2B,CARM1,NSD1,MPST +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html CDC6,GTPBP4,ENPP7,NF2,GMNN,S100A11,TIPIN,RAD9A,ATR,TERF2IP,CDT1,TSPYL2,SET,ERCC4,RAD17,TERF2,ERCC1 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html CLN3,GBGT1,PSAP,UGCG,ST8SIA1,ST8SIA3,ST6GALNAC6,ST6GALNAC4,B3GNT5,GLA,LARGE,ST8SIA5,ST3GAL6,NEU3,CLN6,B4GALNT1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CHIA,VAPB,S100A7,CRHBP,PGLYRP1,TLR3,PSG10,APOBEC3G,TLR6,TLR7,APOBEC3F,CXCL12,TGFB1,TLR8,IL10,PSG11,ISG20,CFP,NLRC4,PGLYRP4,WWP2,PGLYRP2,WWP1,RLN2,PGLYRP3,ITCH,IFNK,SPN,BCL10,IL29,BYSL,UBR3,IFI44,HBXIP,CLEC4M,CRHR1,PTHLH,LILRB1,WFDC12,CCDC130,LALBA,PRLHR,DERL1,FGR,TFCP2L1,ITLN1,RRAGA,CCL8,FCGRT,DEFB127,CCL5,BANF1,CCL4,CHIT1,ADCYAP1,SLC11A1,IFNA7,ALB,TRO,IFNA4,PRKRA,HLA-DRB4,HLA-DPB1,MAFF,OVGP1,CREBZF,HTT,SMAD3,TEAD3,COL16A1,S100A12,CD209,SFRP4,GHSR,MTNR1A,INSL4,PPARD,PZP,CSH2,CLDN4,DUOX2,IL28RA,BNIP3,SCGB1A1,LNPEP,NOD2,NOD1,CXCR4,FOSL1,TNIP1,IFNGR2,IFNGR1,ABCE1,SPACA3,CAMP,PSG3,PSG1,IFNAR1,TARBP2,IFNAR2,PSG9,PSG8,ADM,PSG7,PSG6,PSG5,CLIC5,PSG4,CD81,IL12A,C19ORF2,GHRL,FSHB,EPYC,PRF1,HS3ST6,TNF,HS3ST5,C9,POLA1,IFNW1,SPRR2G,RSAD2,OXTR,SPRR2F,SPRR2E,IVNS1ABP,TAC3,AZU1,CCL22,SPRR2C,SPRR2D,BCL2,SPRR2A,AGT,SPRR2B,DEFB118,BCL3,CD4,CD24,PTPRC,FLT1,DEFB103A,CCL19,STAB2,SOD1,PTGFR,TRIM22,SMC3,CD1D,RPL29,CCL11,PRLR,STAB1,IRF7,BNIP3L,ACE2,CRH,HPGD,LIPE,DMBT1,IFNA17 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html FXYD1,FXYD3,GLRA1,SLC34A1,CLIC1,SLC26A2,SLC34A3,SLC34A2,SLC17A7,SLC26A4,SLC4A11,BEST1,CLIC3,NMUR1,CLIC5,SLC17A1,SLC13A4,CLCN4 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FGF18,PDGFA,PGF,IL18,EDN1,BTC,TTK,FGF10,TNFSF13,TNFSF12,IL15,VIPR1,IL31RA,IL11,TGFB2,CXCL10,SSR1,CUL3,CD47,HTR1A,DDX11,TDGF1,CHRNA7,GLP2R,EBI3,MATK,EGFR,CAPNS1,CD3E,TBRG4,IL21,MARK4,PTHLH,VEGFB,SIRPG,NME2,NME1,FGFR1OP,VEGFA,LAMC1,MST1R,MCTS1,DERL2,ERBB2,TIPIN,TIMP1,IL12RB2,LIF,REG1A,IL12RB1,AGGF1,CDC123,ADRA2A,LAMB1,DNAJA2,TGFBR1,TGFBR2,SPHK1,CD276,SLAMF1,LAMA1,CDKN1A,ADRA1D,BMI1,FGF7,NRP1,NAP1L1,GLI1,FLT3LG,TNFRSF11A,NDUFS4,ANG,TGFA,FOSL1,MYC,RHOG,SERTAD1,FGF4,CDC7,LYN,CCKBR,EGR4,CDK6,CDK4,CDK2,HOXC10,SPDYA,CIAO1,NCK2,CD86,EREG,TNFSF13B,NCK1,CHRM1,CD81,DHPS,IL12B,TSHR,ICOSLG,ALOX12,VIP,CSF3,TBC1D8,CXCL5,PRTN3,CSF1,CTF1,IGF1R,PTK2B,TSPAN31,PTN,POU3F2,CD24,FIGF,SCG2,CD28,IL4,STAMBP,TCIRG1,IL3,PTPRC,IL6,TNFSF4,FLT1,PDF,TBX3,FLT3,IL7,TBX2,HCLS1,FLT4,IL9,IGF1,CLEC11A,CDC25B,CAPN1,CDH13,CCL14,EPGN,BNC1,IL2,LRP5 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html RSF1,TNF,STK36,UBE2V1,EGLN1,PRDX3,PYDC1,TGFB1,SUMO1,NOD2,CDKN2A,NLRC3,NPM1,PYCARD,BCL3,PEX14,ABRA,CAMK2A,APEX1,MDFI,BCL10,CREBZF,RELA,CEBPG,EDA2R,NFAM1,NLRP3,FOXP3,FLNA,SIGIRR,JMY,UBE2N,PRKCQ,CARD11,EP300,ID2,ID1,NME1,NARFL,EDF1,ID3,IKBKB,ERC1,EDA,TSSK4,COMMD7,MAP3K13 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html RSF1,RBBP4,NASP,SIRT4,BNIP3,SIRT5,TNP1,ARID1A,TAF6L,SIRT1,HMGA1,SUV39H2,HDAC5,BPTF,SYCP3,SMARCC1,NPM2,SMARCC2,SMARCD1,PBRM1,ACTL6A,SUPT4H1,HELLS +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html COL4A4,PCDHB9,ACHE,PCDHB5,PCDHB6,PCDHB3,PCDHB4,NLGN1,PCDHB14,PCDHB2,PCDHB13,PCDHB11,PCDHB10,NRCAM,PCDHB16,GHRL,POU4F1,UBB +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html FGFR3,CCL2,NMI,STAT5A,STAT5B,IL31RA,STAT4,CLCF1,STAMBP,SOCS2,LYN,NF2,IL29,SOCS3,HCLS1,SOCS1,SOCS6,PIGU,STAT1,STAT3,STAT2,IL20,IFNAR1,IFNAR2,CCR2,F2,IL12A,HGS,PIAS1,IL22RA2,F2R +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html GYPC,TUSC3,LDLR,B3GALT5,ALG1,ALG2,B3GALT4,TSPAN7,ALG5,ALG6,TSPAN8,ALG8,APOA4,POMGNT1,POMT1,B3GALNT1,TRAK1,RPN1,PSENEN,OGT,MAN2B1,TNIP1,CLN3,MAN1A2,FUT10,ALK,CD37,MAGT1,ADAMTS9,PSEN1,BACE2,BACE1,PSEN2,MGEA5,DOLPP1,TM4SF4,TM4SF5,SERP1,GCNT4,GALNT2,GALNT1,ACHE,GCNT3,FUT9,APH1A,GALNT7,FUT8,FUT7,GALNT6,FUT6,KEL,FUT5,ST8SIA3,ST8SIA2,NECAB3,NGLY1,STT3B,IL17A,STT3A,B3GNT5,MPDU1,FUT4,FUT1,A4GNT,FUT2,GCNT1,GAL3ST1,SDF2,MGAT4B,AGA,MGAT4A,LIPA,B3GALT2,MAN1C1,ABCG1,COG3,NCSTN,COG7,LARGE,ST8SIA4,DPM1,DPM2,DPM3,LRP2,LIPC,ALG12,POFUT1,COG2 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html GRB2,BAIAP2,BCAR1,SOCS1,AP3S1,IGF2,FOXO4,IRS1,AKT1,IGF1R,PDPK1,GRB10,SORBS1,GAB1,FOXC2,PIK3R3,INSR,PIK3R1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html LIMA1,KATNB1,IL10,PAIP2B,TIMP1,APOA2,SET,GSN,SFTPD,BCL3,CLASP1,DNAJC1,APC,ARHGEF2,IL6,GTPBP4,NF2,PRG3,PAIP2,SOCS1,NDUFA13,PRKCG,INHA,MID1IP1,FOXP3,FURIN,TRAT1,SIGIRR,INHBB,INHBA,EIF4A3,EIF2AK1,TSC1,BACE2,CAPG,NLRP12,GHRL,PPP2R4,TMSB4Y,MAPRE1,GHSR,EIF2AK3,IGFBP3,APBB1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SNCA,CBX4,FOXO1,CIAPIN1,GDNF,TNFSF18,CDKN2D,TDGF1,TPT1,FAS,DDAH2,IL1A,API5,BCL10,OPA1,BRAF,SOCS2,CRYAA,DFFA,SOCS3,CRYAB,RELA,BCL2A1,PIM1,HRK,HBXIP,BCL2L10,NME5,NME2,KRT18,CD40LG,TXNDC5,TNFAIP8,VEGFA,HSPB1,MAPK8,ERC1,MYO18A,TNFRSF6B,HMGB1,CCL2,GCLC,MCL1,PPT1,BCL2L2,BCL2L1,HSPA1B,CD74,PEA15,AKT1S1,ALB,NPM1,GLO1,ARHGDIA,ANGPTL4,CFLAR,BECN1,SPHK1,CIDEA,TAX1BP1,NOTCH2,BFAR,HDAC3,RNF7,NUP62,HDAC1,SFRP1,IFI6,RTN4,IER3,HTATIP2,NUAK2,BNIP3,PRDX2,NFKB1,TRIAP1,GPX1,BAG4,CASP3,BAG1,CLCF1,PAX7,DHCR24,CLN3,NOL3,PROC,SERPINB9,PROK2,BNIP1,PSEN1,TNFRSF10D,BNIP2,HIPK3,CFL1,SERPINB2,GHRL,FAIM3,AVEN,NAIP,SEMA4D,GSTP1,ALOX12,ACVR1,PRKCZ,YWHAZ,TNF,RTKN,ASNS,MIF,IGF1R,ERCC5,SH3GLB1,BCL2,DAD1,TNFRSF18,BCL3,AATF,CD27,RASA1,PIK3R2,HSPA9,CD28,SCG2,IL4,IL3,IL2RB,IL6,TBX3,IL7,ANXA1,BIRC6,BIRC5,ANXA5,BIRC3,SOD1,ANXA4,CDH13,SON,HSP90B1,GSK3B,BAX,BNIP3L,BRE,MPO,TIAF1,BARD1,IL2 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html CCL3,CTBP1,CCL2,CTBP2,IL8,VAPB,OPRK1,EIF5A,DEK,APOBEC3G,HBXIP,UBP1,CCL4,APOBEC3F,TARBP2,PPIA,SMARCB1,HTATSF1,CXCR6,TNIP1,TOP2A +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html ALS2,ZAK,EDN2,TNFSF15,PKMYT1,MBIP,TLR6,MAP3K7,MAP3K6,MAP3K5,CDKN2A,MAP3K4,CDKN2B,DIRAS3,MDFIC,CDKN2C,CDKN2D,MAP3K9,TDGF1,SPRED2,CHRNA7,SPRED1,GNG3,EGFR,DBNL,ANAPC2,GTPBP4,C5AR1,RBL2,PIK3CB,MADD,KIAA1804,PICK1,RBL1,THY1,MAP4K5,PLCE1,CARTPT,TRAF2,CDK5R1,CDK5R2,ADORA2B,ERBB2,PTPLAD1,MAP4K1,CHEK1,CCNG1,PYDC1,CDC37,HEXIM2,HEXIM1,DUSP16,ADRA2A,ADRA2C,TRAF7,EGF,TRAF6,MDFI,TAOK2,MAP2K3,DUSP22,TPD52L1,MALT1,CDKN1C,CBLC,RGS3,RGS4,CCNT2,C13ORF15,CCNT1,PTEN,LATS1,DAXX,PDCD4,LATS2,CAMKK2,CCNE2,PAK2,CXCR4,ANG,TGFA,CDK5RAP3,SHC1,PAK1,CDK5RAP1,FGF2,SERTAD1,CDC6,IRAK1,CCNK,CCDC88A,HERC5,PKN1,RB1,CDK7,GTF2H1,CARD10,GRM4,TARBP2,PROK2,NCK2,ADRB2,CCND1,EREG,CCND3,LAX1,CCND2,HIPK3,CHRM1,CD81,GADD45G,ERN1,MAP3K10,GHRL,GADD45B,MAP3K13,GADD45A,PRKD3,GAP43,MAP3K11,CKS1B,PARD3,C5,FPR1,TRIB3,BCCIP,SFN,TRIB2,TRIB1,AZU1,TSPYL2,MAP3K2,CD4,CD24,PPAP2A,APC,GPS1,PTPRC,NF1,CRIPAK,SOD1,CDC25C,CDKN3,CDC25A,GPS2,MNAT1,DUSP2,PRLR,EPGN,CKS2,DUSP9,DUSP8,DUSP6 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CADM1,ELF4,IL18,PREX1,JAG2,TNFSF13,TLR4,TPD52,SPINK5,TGFB1,SART1,CD47,NLRC3,EBI3,L3MBTL4,CRTAM,SPACA3,SIT1,CD3D,PRG3,CD3E,IL27,SLA2,NFAM1,SOCS5,INHA,IL21,THY1,NCK2,INHBA,LAT2,SIRPG,WBP2NL,CD40LG,LAX1,NCK1,LCK,F2,IL12A,IL12B,NHEJ1,ICOSLG,LST1,PF4,CX3CL1,PR47,AZU1,INS,SFTPD,CD2,ZAP70,KRT2,CD4,GP1BA,CD24,HELLS,CD7,CD28,IL4,PTPRC,IL8,IL7,CEBPG,CD276,FOXP3,CD1D,HDAC5,HDAC4,VWF,LAT,GLMN,CD79A,CLEC7A,HDAC9,IL2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html RTN4,NRP2,ALS2,NRTN,NRP1,LRRC4C,PAX2,GLI2,GDNF,SHH,ROBO1,APOE,MAPT,SEMA3B,ROBO2,POU4F1,UNC5C,SPON2,NRXN3,BAIAP2,OTX2,NRXN1,SLIT1,CDK5,SLIT2,THY1,AMIGO1,SEMA4F,OPHN1,GHRL,TRAPPC4,CNTN4,SIAH1,UBB,CDK5R1,PARD3,LST1,RTN4RL1,KAL1,BAI1,RTN4RL2,LAMB1,PARD6B,KLK8,NTNG1,DPYSL5,NTNG2,YWHAH,S100B,MAP1S,CYFIP1,FEZ2,FEZ1 +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html STX1A,TBX3,FAM3D,FAM3B,INHA,IL11,INHBB,LIF,OSM,INHBA,GCK,GHRH,GHRL,CARTPT,SCG5,GHSR,SNAP25 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html ALS2,ZAK,EDN2,TNFSF15,PKMYT1,MBIP,TLR6,MAP3K7,MAP3K6,MAP3K5,CDKN2A,MAP3K4,DIRAS3,CDKN2B,MDFIC,CDKN2C,MAP3K9,CDKN2D,TDGF1,SPRED2,CHRNA7,SPRED1,GNG3,EGFR,DBNL,ANAPC2,GTPBP4,C5AR1,PIK3CB,MADD,KIAA1804,PICK1,THY1,PLCE1,MAP4K5,CARTPT,TRAF2,CDK5R1,CDK5R2,ADORA2B,ERBB2,PTPLAD1,MAP4K1,CHEK1,CCNG1,PYDC1,CDC37,HEXIM2,HEXIM1,DUSP16,ADRA2A,ADRA2C,TRAF7,TRAF6,EGF,MDFI,TAOK2,MAP2K3,DUSP22,MALT1,TPD52L1,CDKN1C,CBLC,RGS3,RGS4,CCNT2,C13ORF15,CCNT1,PDCD4,LATS1,PTEN,DAXX,LATS2,CAMKK2,CCNE2,PAK2,CXCR4,ANG,TGFA,SHC1,CDK5RAP3,PAK1,CDK5RAP1,FGF2,SERTAD1,IRAK1,CDC6,CCNK,CCDC88A,HERC5,PKN1,CDK7,RB1,GTF2H1,CARD10,NCK2,GRM4,PROK2,TARBP2,ADRB2,CCND1,CCND3,EREG,LAX1,CCND2,CHRM1,HIPK3,GADD45G,CD81,MAP3K10,ERN1,GHRL,GADD45B,MAP3K13,GADD45A,PRKD3,GAP43,MAP3K11,CKS1B,PARD3,C5,FPR1,TRIB3,BCCIP,SFN,TRIB2,TRIB1,AZU1,TSPYL2,MAP3K2,CD4,CD24,PPAP2A,APC,GPS1,PTPRC,NF1,CRIPAK,CDKN3,CDC25C,SOD1,CDC25A,GPS2,MNAT1,DUSP2,PRLR,EPGN,CKS2,DUSP9,DUSP8,DUSP6 +PWCOMMONS N TERMINAL PROTEIN AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/N_TERMINAL_PROTEIN_AMINO_ACID_MODIFICATION.html METAP1,METAP2,EP300,PDF,MAP1D,CREBBP +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html GYPC,TUSC3,FUT8,ALG2,KEL,TSPAN7,ST8SIA3,ALG6,ST8SIA2,ALG8,STT3B,STT3A,MPDU1,RPN1,GAL3ST1,MGAT4B,MGAT4A,LIPA,MAN1A2,ALK,MAN1C1,CD37,MAGT1,ST8SIA4,LIPC,DOLPP1,ALG12,TM4SF4,TM4SF5 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC38A3,SLC16A10,SLC7A8,SLC7A9,SLC7A5,SLC1A4,SLC1A5,SLC1A2,SLC1A3,SERINC1,SLC1A6,SLC25A22,ARL6IP5,SLC43A1,SLC1A1,CLN3,PRAF2,PDPN,SLC3A2,SLC7A10,SLC3A1,SLC25A12,SLC25A13,SLC6A7,CTNS,SLC25A15 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html INSL4,PPARD,CSH2,PZP,CRHBP,PSG10,SCGB1A1,PSG11,LNPEP,RLN2,BYSL,PSG3,PSG1,PTHLH,PSG9,PSG8,ADM,PSG7,PSG6,PSG5,CLIC5,PSG4,GHRL,FSHB,EPYC,PRLHR,TFCP2L1,OXTR,SPRR2G,SPRR2F,FCGRT,SPRR2E,TAC3,ADCYAP1,SPRR2C,SPRR2D,TRO,SPRR2A,AGT,SPRR2B,OVGP1,FLT1,TEAD3,SOD1,COL16A1,RPL29,PRLR,SFRP4,CRH,GHSR,HPGD,LIPE +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html LEPR,EPM2A,GYG2,LEP,ADRB3,PYGM,GCK,GSK3B,GFPT1,GFPT2,GAA,GYS2,DYRK2,TREH,PYGB +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html RSF1,NAP1L1,SIRT4,SIRT5,TNP1,NAP1L3,NAP1L2,NAP1L4,SIRT1,HDAC5,SET,SMARCA5,CHAF1A,ASF1A,CHAF1B,HELLS +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html MDFI,FAM3D,CRYAA,NFKBIE,CRYAB,NF1,STIM2,ARF6,NLRP3,MXI1,NFKBIL1,TRAT1,PEA15,NFKBIL2,PACSIN3,RAC1,YRDC,FAF1,RSC1A1,BARD1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ELF1,ELF4,FOXO1,FOXO3,GLI2,MED21,ZBTB38,GLI1,EPC1,MKL2,SUPT5H,MYO6,CCNH,RXRA,TP53,MED12,MED14,CDK7,ARNTL,MED13,ELL3,PPARGC1B,GTF2H1,PRPF6,NRIP1,MED6,INHBA,HIF1A,HNF4A,ZMIZ2,MED17,NCOA6,TFAP2B,CLOCK,MED1,GLIS3,CRTC1,GLIS1,NUFIP1,ELK1,PLAGL1,FOXH1,TNFRSF1A,NPAS2,SQSTM1,SUPT4H1,MAML3,ERCC3,RUNX1,ERCC2,FOXD3,IL4,UTF1,EPAS1,MAML1,MAML2,SMAD3,SMAD2,ATF6,MNAT1,ATF4,SP1,THRAP3,RBM14,BMP6 +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html RDH12,ALDH8A1,RDH11,RARRES2,DHRS3,NPC2,MVK,IDI1,PDSS1,PDSS2,RETSAT +PWCOMMONS SPERMATID DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DEVELOPMENT.html CSNK2A2,NME5,H1FNT,HSPA2,CEP57,SYCP3,SPAG6,DDX25,TNP1,TSSK6 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html CDK5R1,GRIK1,GRIK2,GRIK3,GRIK4,GRIN2A,GRIA3,GRIA4,HOMER1,HOMER2,GRM5,GRM4,GRIN2B,HOMER3,GRIN2C,GRM6,GRID2 +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html TRNT1,MFN2,TSPO,TIMM17A,TIMM17B,C3ORF31,TOMM22,MIPEP,TIMM23,TIMM44,TOMM34 +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html KCNMB4,BCL10,GCLC,LMO4,KEL,VANGL2,CELSR1,GLI2,SOD1,TINAG,GCLM,SHH,KCNMB2,CALCA,NOTCH4 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html CARD8,CRTAM,CADM1,CIDEA,NLRP3,PYDC1,FOXP3,NLRP2,APOA2,NOD2,APOA1,INS,PYCARD,NLRP12,GLMN,SRGN +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html ORAI1,CCL8,HFE,CACNB3,CACNB4,SLC11A2,SLN,NMUR1,NMUR2,TRPV5,SLC30A5,CHRNA7,SLC39A1,TRPC1,CACNA2D1,TRPC4,SLC8A1,TRPC3,TRPC5,STIM2,STIM1,TRPM2,NPY,ATP2C1,ATP2A3,RYR3,PLN,ATP2A1,RYR1,CACNA1D,SLC40A1,CSN2 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html RP1,UNC119,TRPC3,TACR1,TAC1,OPN1SW,NR2E3,ABCA4,SAG,PITPNM1,PDE6B,TIMELESS,GRM6,NPFFR2,PDC,CACNA1F,OPN4,RHO,GRK1 +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html KLK8,IL8,CX3CL1,SLIT2,AHSG,IL20,LEP,CDH13,TNFRSF1A,NPY,CARTPT,GHRL,CHRNA7,GHSR,SCG2 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html MOCOS,TSPO,ALAD,ALDH1L1,COX10,PGD,ACOT2,ACOT1,PPOX,ACOT4,PDHB,ACOT9,GPX1,MTHFD2,ALAS1,ALAS2,CPOX,ACOT12,COX15,FECH,ACO2,COQ7,UGT1A1,COQ3,ISCU,PGLS,COQ2,NNT,NFE2L1,ME1,COASY,GCLC,NFS1,UROS,PPT1,GCLM,PDSS1,PDSS2,GLRX2,C16ORF7,GSTA1,MOCS2,FTCD,ACLY,SOD1,OXSM,SDHA,BLVRA,SDHB,GLYAT,MLYCD,SDHC,SDHD,CTNS +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html STX1A,FAM3D,INHA,IL11,OSM,LIF,INHBB,INHBA,GCK,GHRH,CARTPT,GHRL,SCG5,SNAP25 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC38A3,AQP9,SLC22A12,SLC16A10,SLC7A8,SLC7A9,SLC7A5,SLC1A4,SLC1A5,SLC1A2,SLC16A1,SLC1A3,AKR1C4,SLC1A6,SERINC1,SLC25A22,SLC1A7,SLC25A1,SLC22A6,SLC43A1,SLC1A1,ARL6IP5,AKR1C1,CLN3,PRAF2,PDPN,SLC3A2,SLC7A10,SLC3A1,SLC16A3,SLC25A12,SLC16A2,SLC16A5,SLC16A4,SLC25A13,SLC16A7,SLC6A7,SLC16A6,SLC25A10,SLC16A8,CTNS,SLC25A15 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html ITLN1,IL31RA,ANG,CLCF1,TDGF1,EGF,EGFR,BMP4,BCL10,IL3,IL5,IL29,LYN,HCLS1,IL20,CARD14,CCND1,EREG,CD80,CCND3,AKTIP,CCND2,CD81,IL12A,GLMN,TNK2 +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html KHDRBS1,ANAPC5,ANAPC4,BIRC5,ANAPC10,TPD52L1,LATS1,CDK2,CDKN1A,CDKN2A,DDX11,CDKN2B,USH1C +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html IL4,PTPRC,CRTAM,CADM1,ELF4,CD3E,IL18,IL27,CD276,IL21,NCK2,NCK1,SFTPD,GLMN,CD24,IL12B,ICOSLG,EBI3,CD28 +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html CGB,USP9X,SPO11,BMP15,FSHR,BCL2L10,PARN,EREG,DYNLL1,NPM2,LEFTY2,GDF9,BMPR1B,DMC1,FSHB,TOB2,AXIN1 +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html ALDH5A1,TP53,TP63,AASS,ACTN2,HPRT1,IGF1R,APOE,GPX3,TRPV5,TGM3,CDA,ATPIF1,INSR +PWCOMMONS REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html LYN,NF2,IL29,CLCF1,HCLS1,SOCS1,IL12A,IL31RA,IL22RA2,IL20 +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html ACADVL,PPARA,CPT1B,PPARD,ECH1,ACADM,ACADS,ECHS1,BDH2,CPT1A,HADHB +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CADM1,BCAR1,IL18,TNFSF13,SART1,TGFB1,TLR8,TGFB2,MAP3K7,CFHR1,CD47,IFNK,EBI3,CRTAM,SPACA3,IL29,CD3E,SLA2,NFAM1,SOCS5,IL21,TRAT1,THY1,UBE2N,NCK2,SIRPG,LAT2,EREG,NCK1,LCK,IL12A,IL12B,ICOSLG,MBL2,TRAF2,MIA3,KRT1,ZAP70,CD24,C2,TRAF6,CD28,IL4,PTPRC,IL7,CD276,MALT1,CD1D,FYN,IKBKG,CD79A +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html RTN4,FGD2,FGD1,KLK8,TAOK2,LRRC4C,MYH9,SLIT2,THY1,AMIGO1,CDC42,CDC42EP2,YWHAH,CDC42EP1,ROBO1,APOE,MAPT,ROBO2,FGD5,CDC42EP4,FGD6,FGD3,CDC42EP5,FGD4 +PWCOMMONS FOCAL ADHESION FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/FOCAL_ADHESION_FORMATION.html ACVRL1,TSC1,TAOK2,SORBS1,ACTN1,TESK2,ACTN2,ACTN3,PTEN,THY1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SEPT5,SYT1,SNCAIP,NRBP1,LMAN2L,USE1,COPB2,GBF1,NMUR1,COPB1,NMUR2,AP3B2,RAB26,ZW10,SCAMP1,SCAMP3,SCAMP2,BAIAP3,RPH3AL,VTI1B,OPTN,ERGIC1,ERGIC2,ERGIC3,KIF1C,GRM4,COPG2,KRT18,SCIN,RAB14,CARTPT,VAMP3,STEAP2,COPE,PKDREJ,AKAP3,SNAP29,RAB3A,KCNMB4,CPLX2,CCL3,CPLX1,STX7,NAPG,COPZ1,BET1,RER1,RABEPK,CCL8,NAPA,ARFGEF2,LMAN1,CCL5,RIMS1,ARFGEF1,HRH3,STX18,SYN3,CKLF,STX16,SEC22A,TMED10,SEC22B,DOPEY2,SEC22C,EXOC5,SNAP23,DOPEY1,RAB2A,SCRN1,NLGN1,SNAPIN,MON2,LIN7A,COG3,CADPS,COG7,SYTL4,GOSR2,GOSR1,YKT6,COG2 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX6,PEX3,AGXT,PEX7,FIS1,PEX1,PEX19,PEX16,PEX26,VPS4B,PEX14,ABCD3,PEX13,PEX12,PEX10 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html MSH5,MRE11A,MSH4,LIG3,CHEK1,SPO11,RAD52,SYCP1,RAD50,SC65,ATM,RAD51,RAD1,REC8,RAD21,RAD51L1,STAG3,RAD54B,RAD51L3,DMC1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SGMS2,GBGT1,SGMS1,LASS5,APOA1,LCAT,ST3GAL6,PLA1A,NSMAF,APOM,SGPL1,SPTLC1,UGCG,TAZ,CHPT1,PITPNM3,PI4K2A,NEU3,PLA2G2E,PLA2G2D,ENPP7,ST8SIA1,APOC2,ST8SIA3,PPT1,PLAA,SERINC2,SERINC5,LPCAT1,B3GNT5,SERINC1,PEMT,PCYT1B,B4GALT4,LPL,SPHK1,SMG1,ST8SIA5,LASS1,PLA2G4C,PLA2G4B,IMPA1,PIP5K1A,PTEN,ASAH1,ASAH2,PIGK,ST6GALNAC6,ST6GALNAC4,PIGF,PIGG,GPX4,PIGH,PIGB,PIGC,CETP,PCYT2,PLCB2,AGPAT2,AGPAT1,PIGA,CLN3,PIGZ,PIGY,PIK3C2A,PIGV,PI4KA,PIGU,PIGT,LGALS13,PIGS,PI4KB,PIGO,PRDX6,CD81,PLA2G6,PLA2G3,CLN8,PLA2G5,CLN6,PGS1,GPAA1,DGKE,ETNK1,PLCD1,CERK,PIK3R1,B4GALNT1,PSAP,FADS1,LARGE,GLA,DPM1,DPM2,DPM3,SMPD4,SMPD3,SMPD2 +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html PPARA,NPC2,APOA5,EDF1,CIDEA,ANGPTL3,SOD1,PPARGC1A,STUB1,BRCA1,NR5A1,BMP6 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html CDC6,NBN,GTPBP4,ENPP7,CCDC88A,NF2,GMNN,WRNIP1,TIPIN,S100A11,RAD9A,ATR,GLI2,CDK2,CDT1,GLI1,TSPYL2,EREG,RAD17 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html IL10,PAIP2B,SFTPD,BCL3,IL6,PRG3,PAIP2,NDUFA13,INHA,SOD1,FOXP3,FURIN,BRCA1,SIGIRR,INHBB,EIF4A3,INHBA,EIF2AK1,GLA,TSC1,GCK,GRM8,NLRP12,GHRL,GHSR,EIF2AK3,APBB1,PDZD3 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html KCNH1,ACTA1,PICK1,MYOZ1,TTN,KCNIP2,IL21,SPINK5,FARP2,TGFB2,NRCAM,KRT19,RND1,EREG,MYH11,CACNA1H,AGRN,ADAM12 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html ITLN1,ITGB2,IL31RA,NDUFS4,CLCF1,TDGF1,EGFR,BMP4,IL3,CCDC88A,IL5,NF2,LYN,IL29,CCDC88C,HCLS1,SOCS1,IL20,CARD14,CCND1,CD80,AKTIP,CCND3,CCND2,CD81,IL12A,NLRP12,TNK2,IGFBP3,IL22RA2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html XRCC4,RAD51C,XRCC3,XRCC2,XRCC6,EIF2B2,CCNA2,EIF2B3,MAP2K6,EIF2B4,EIF2B5,POLL,POLI,POLH,POLG,LIG1,RINT1,POLE,LIG3,RAD9A,LIG4,RAD1,PNKP,RFC3,KRT19,UBR5,RAD23B,RAD23A,MRE11A,HUS1,CHEK1,CHEK2,XAB2,GYS2,C16ORF5,POLQ,NTHL1,RECQL4,RECQL5,CIDEB,TREX2,CIDEA,ATR,RAD54L,ATM,RERG,PARP3,RAD54B,CLEC7A,PARP1,GHSR,UVRAG,MLH1,PMS2L1,LATS1,LATS2,TRIAP1,FANCG,FANCA,CCNO,FANCC,LYN,AIFM1,GTF2H4,TP53,APTX,RAD52,RAD50,RBBP8,GTF2H1,RAD51,GADD45G,FOXC2,RUVBL2,STEAP2,NHEJ1,GADD45A,UNG,WRNIP1,POLA1,PML,SFN,SUMO1,PCSK9,BCL3,BCL6,CD24,FEN1,UPF1,HCLS1,TNP1,CRIPAK,SOD1,EIF2B1,SELS,TP73,NAE1,ATRX,MNAT1,CDH13,MAPK12,CSNK1D,CSNK1E,EEF1E1,RBM14,OGG1,MMS19,ZAK,SETX,IGHMBP2,APOA2,MUTYH,GSTM3,RAD21,GATA3,CDKN2D,PMS2,PMS1,CIB1,MYO6,DDIT3,FOXN3,RPAIN,RAD17,ME1,HMGB1,HMGB2,GCLC,BLM,UBE2V1,UBE2V2,ABCA2,SESN1,POLE2,RAD51L1,DYRK2,GML,ASF1A,ATRIP,BRCA2,BRCA1,TSC1,VCP,POLD1,TDG,MAFA,ABL1,SMC1A,PDCD7,NBN,MCM7,ANG,PCBP4,UBE2A,BRCC3,REV1,DDB1,ADIPOR2,ADIPOR1,PRKCG,TOPORS,IFI16,UBE2B,NEK11,XRCC6BP1,UBE2N,SPDYA,RECQL,XPC,BTG2,NCOA6,DDB2,GHRL,PPP1R15A,CALCR,BRSK1,SMUG1,RPA1,ERCC8,ERCC5,ERCC6,ERCC3,ERCC4,APEX1,ERCC1,ERCC2,APC,EXO1,MSH6,MSH3,MSH2,MSH5,CEBPG,MPG,ATXN3,GCK,BRE,ALKBH1 +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html NGLY1,NCSTN,AGA,CLN3,ADAMTS9,APH1A,PSEN1,PSEN2,MGEA5,PSENEN,MAN2B1,ABCG1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SLC22A16,GNPDA1,HMGCR,VAPB,CRHBP,LHCGR,IDE,PSG10,EIF5A,APOBEC3G,APOBEC3F,ANKRD7,TGFB1,SHH,PSG11,PRKACG,MDFIC,WWP2,ADAM2,WWP1,RLN2,IZUMO1,ITCH,EIF2B2,EIF2B4,EIF2B5,SEMG1,BYSL,CRISP1,SPAG1,HBXIP,NR0B1,SPA17,CDKL2,CLEC4M,PTHLH,CRHR1,WBP2NL,BPY2,MST1R,AKAP3,AKAP4,ACR,CCL3,DERL1,PRLHR,CCL2,TFCP2L1,RRAGA,FCGRT,CCL4,ADCYAP1,SMARCB1,TRO,NPM2,HTATSF1,SPAM1,MAFF,OVGP1,MEA1,SMAD3,TEAD3,COL16A1,UBP1,CYP17A1,CLGN,PPIA,CD209,SFRP4,ADAM20,ADAM21,GHSR,LHB,MTNR1A,PPARD,INSL4,PZP,CSH2,RSF1,SMCP,DEK,SCGB1A1,LNPEP,AGPAT6,CXCR6,SOX15,MKKS,SRD5A2,APLN,TNIP1,TOP2A,DNAJC19,CTBP1,CTBP2,ZP2,DMRT1,PSG3,DMRT2,PSG1,FSHR,OR10J1,AMH,TARBP2,PSG9,PSG8,PSG7,OR2H2,EREG,ADM,PSG6,NCOA4,CLIC5,PSG5,CD81,PSG4,GHRL,FSHB,EPYC,PKDREJ,HS3ST6,HS3ST5,TSPY1,OPRK1,TAC1,SPRR2G,XKRY,OXTR,SPRR2F,SPRR2E,TAC3,CD9,DNALI1,SPRR2C,SPRR2D,SPRR2A,AGT,SPRR2B,CSDE1,RQCD1,HSD17B3,AMHR2,FOXL2,DAZ2,FLT1,IL8,TBX3,TNP1,PTGFR,SOD1,CENPI,RPL29,PRLR,CRH,ACE2,BMPR1B,WNT7A,HPGD,LIPE,NR5A1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SEPT5,SYT1,NRBP1,SNCAIP,LTBP2,CADM1,LMAN2L,USE1,NLRC4,APOA2,APOA1,GBF1,RAB26,DNAJC1,SCAMP1,CRTAM,SCAMP3,SCAMP2,BAIAP3,VTI1B,OPTN,ERGIC1,ERGIC2,ERGIC3,COPG2,KRT18,BACE2,RAB14,CARTPT,VAMP3,AKAP3,KCNMB4,ARFGAP3,ACHE,PPY,CCL3,STX7,NAPG,COPZ1,CCL8,RER1,RABEPK,NAPA,ABCA1,CCL5,ARFGEF2,LMAN1,PYDC1,RIMS1,ARFGEF1,STX18,INS,CKLF,STX16,TMED10,DOPEY2,DOPEY1,SRGN,CARD8,CIDEA,SNAPIN,ARFIP1,FOXP3,LIN7A,SYTL4,GLMN,GOSR2,GOSR1,PDIA4,DPH3,CANX,COPB2,NOD2,NMUR1,ANG,COPB1,NMUR2,AP3B2,ZW10,RPH3AL,NLRP3,NLRP2,KIF1C,GRM4,SCIN,STEAP2,ARL4D,COPE,PKDREJ,SNAP29,RAB3A,CPLX2,CPLX1,BET1,HRH3,SYN3,SEC22A,PYCARD,SEC22B,SEC22C,SNAP23,EXOC5,SCG2,RAB2A,SERGEF,NLGN1,SCRN1,MON2,COG3,CADPS,COG7,NLRP12,YKT6,COG2 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html BMI1,MFNG,SHROOM3,TRIM14,ZIC1,GLI2,SHH,ZIC3,CITED2,T,TDGF1,LEFTY2,PITX2,AXIN1,DVL2,MDFI,KIF3B,LMX1B,TBX3,FTO,SMAD5,SMAD2,SMAD1,MID1,ACVR2B,HOXB1,NOTCH4,RIPPLY1,PTCH1,PBX3 +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html EDNRA,EGFR,GNA15,C5AR1,GNAQ,CCKBR,ANG,NMUR1,AVPR1B,AVPR1A,PLCB2 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html JAG2,TPD52,SPINK5,SART1,ZAP70,CD4,IL4,PTPRC,CD3D,IL7,CEBPG,IL27,NFAM1,INHA,SOCS5,CD1D,HDAC5,INHBA,HDAC4,LCK,IL12B,CD79A,HDAC9,NHEJ1,IL2 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html FOXL2,DFFA,GZMA,AIFM1,DFFB,CYCS,CECR2,CIDEA,BNIP3,TPD52L1,PPT1,GZMB,PMAIP1,SOD1,MOAP1,CASP3,CDKN2A,BAX +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html NCBP2,AQP9,NUP160,EIF5A,SLC29A1,SLC23A1,SLC29A2,SLC23A2,SLC35B2,RAE1,DDX25,DDX19B,SLC28A2,SLC28A1,KHDRBS1,NUP133,UPF2,UPF1,NUDT4,SMG6,SMG5,CKAP5,HNRNPA2B1,SMG7,NXF5,SMG1,VDAC3,DDX39,TSC1,NUP107,BAT1 +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html PTHLH,UCN2,ADCY7,NUDT4,ADM,ADORA2A,GRM8,OXER1,PTH,ABCA1,PDZD3 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html RTP3,UNC119,RP1,RTP4,TRPC3,TAS1R3,OPN1SW,NR2E3,ABCA4,TAS1R2,SAG,PDE6B,PITPNM1,TAS2R16,TAS2R14,PDC,TAS2R43,CACNA1F,RHO,GRK1,OPN4 +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html CCKAR,GNAI2,ENPP1,STC2,PPARG,ENSA,GCGR,TULP4,SSTR2,CHMP1A,CDKN2B,SSTR1,CDKN2D,GIPR,STC1,OGT,SST +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html MDFI,DBNL,ZAK,PTPLAD1,KIAA1804,MAP4K1,PKN1,DAXX,MAP3K6,MAP4K5,MAP3K5,MDFIC,MAP3K2,MAP3K9,MAP3K10,MAP3K11 +PWCOMMONS REGULATION OF SYNAPSE STRUCTURE AND ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SYNAPSE_STRUCTURE_AND_ACTIVITY.html COL4A4,KLK8,YWHAG,YWHAH,APOE,GRIK2,NPTN,GHRL,CNTN4,UBB +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html TPST1,TPST2,HS3ST5,GCLC,NDST1,NFS1,GCLM,GLRX2,GPX1,MSRA,CHST12,CHST11,CHST14,CHST13,HS6ST1,GSTA1,UST,CHST2,CHST3,CHST4,CHST5,SOD1,CDO1,GLCE,CHST1,ADI1,CHST7,CHST6,CHST9,CHST8,MAT2B,EXT1,CTNS,SMS,HS3ST3B1 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html BIRC5,SFN,HBXIP,TNNT2,GPX1,APOA2,CDKN2D,ATPIF1,PPP2R4,ANGPTL3,DNAJB6,IFI6,ANGPTL4,DHCR24 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MYL6,KCNH1,MYOD1,MYEF2,CACNB2,TTN,TGFB1,MYL6B,MKL2,CHRNA1,IFRD1,BOC,BMP4,MYF6,COL4A4,FOXL2,TBX3,ACTA1,MYF5,TAZ,CENPF,NRD1,MYOZ1,CBY1,MBNL1,CSRP3,SIRT2,HDAC5,HDAC4,KRT19,NOTCH1,MAPK12,SVIL,MYH11,CACNA1H,UBB,HDAC9,ADAM12,IGFBP3 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html XRCC2,KNTC1,TTK,PKMYT1,AURKA,CDC16,TTN,TGFB1,RAD21,DDX11,CDKN2B,TARDBP,STAG3,CCNA1,CCNA2,CDCA5,ANAPC5,RAN,RINT1,ANAPC4,LIG3,ESPL1,PIM2,DCTN3,BOLL,DCTN2,RAD1,REC8,MAD2L1,ZWINT,CLIP1,AKAP8,MAD2L2,NEK6,RAD17,PPP5C,PAM,NEK2,MRE11A,ANLN,ANAPC10,CHEK1,ANAPC11,RCC1,SYCP1,PIN1,DUSP13,RAD51L1,NPM2,PBRM1,RAD51L3,EGF,GML,SSSCA1,CDC23,NDC80,SUGT1,RAD54L,CDC27,ATM,NOLC1,PLK1,RAD54B,SMC1A,KIF22,NBN,KIF25,KIF2C,TRIAP1,PCBP4,PRMT5,TGFA,ZW10,TAF1L,KIF11,KIF15,TPX2,NUSAP1,RAD52,UBE2C,RAD50,RAD51,CHMP1A,EREG,TOP3A,BUB1B,CHFR,DMC1,KPNA2,PML,CETN1,SPO11,BRSK1,NUMA1,NCAPH,HSPA2,BUB1,CD28,PDS5B,MSH5,MSH4,CENPE,BIRC5,CDC25C,SMC3,SC65,SMC4,CDC25B,MPHOSPH9,EPGN,CIT,MPHOSPH6 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html RTN4,BMP10,ACVRL1,BCAR1,ABI3,PTEN,SHH,VCL,MIA3,TDGF1,ANGPTL3,LAMB1,EGFR,PARD6B,GTPBP4,NF2,TBX5,SPHK1,NF1,NEXN,PLG,THY1,CDH13,ALOX15B,CLIC4,AMOT,TRIP6 +PWCOMMONS PROTEIN MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MATURATION.html NCSTN,APH1A,PSEN1,ATP6AP2,REN,PSEN2,PSENEN,STUB1,SRGN,AIP +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html MOCOS,ME1,COASY,GCLC,ALDH1L1,PGD,ACOT2,ACOT1,GCLM,PDSS1,PDHB,ACOT4,PDSS2,GLRX2,ACOT9,GPX1,MTHFD2,ACOT12,C16ORF7,GSTA1,MOCS2,ACO2,FTCD,ACLY,COQ7,SOD1,OXSM,SDHA,COQ3,SDHB,COQ2,GLYAT,PGLS,NNT,MLYCD,SDHC,SDHD,CTNS +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html PARD6A,PARD6B,TLN1,GJD3,TLN2,PRKCI,GJA1,GJA4,GJA5,VCL,GJC1,CD9,TJP1,ITGA6,LAMC1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html ALS2,ZAK,EDN2,TNFSF15,PKMYT1,MBIP,TLR6,MAP3K7,MAP3K6,MAP3K5,CDKN2A,MAP3K4,DIRAS3,CDKN2B,CDKN2C,MDFIC,CDKN2D,MAP3K9,TDGF1,SPRED2,CHRNA7,GNG3,SPRED1,EGFR,ANAPC2,DBNL,GTPBP4,C5AR1,RBL2,MADD,PIK3CB,KIAA1804,RBL1,PICK1,THY1,MAP4K5,PLCE1,CARTPT,TRAF2,CDK5R1,CDK5R2,ADORA2B,PTPLAD1,ERBB2,MAP4K1,CHEK1,PYDC1,CCNG1,CDC37,SERINC2,SERINC5,HEXIM2,HEXIM1,SERINC1,DUSP16,ADRA2A,ADRA2C,TRAF7,TRAF6,EGF,MDFI,TAOK2,MAP2K3,PIF1,DUSP22,TPD52L1,MALT1,CDKN1C,CBLC,RGS3,RGS4,CCNT2,C13ORF15,CCNT1,PTEN,PDCD4,LATS1,DAXX,LATS2,CAMKK2,CCNE2,PAK2,ANG,CXCR4,TGFA,SHC1,CDK5RAP3,PAK1,CDK5RAP1,FGF2,SERTAD1,CDC6,IRAK1,CCNK,CCDC88A,HERC5,PKN1,RB1,CDK7,GTF2H1,CARD10,GRM4,TARBP2,PROK2,NCK2,CCND1,ADRB2,EREG,CCND3,CCND2,LAX1,CHRM1,HIPK3,CD81,GADD45G,MAP3K10,ERN1,GHRL,GADD45B,GADD45A,MAP3K13,PRKD3,GAP43,MAP3K11,CKS1B,PARD3,C5,FPR1,TRIB3,BCCIP,SFN,TRIB2,TRIB1,AZU1,TSPYL2,MAP3K2,CD4,CD24,PPAP2A,APC,GPS1,PTPRC,NF1,CRIPAK,CDKN3,SOD1,CDC25C,CDC25A,GPS2,MNAT1,DUSP2,PRLR,EPGN,CKS2,DUSP9,DUSP8,DUSP6 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html KCNH1,BMP4,TBX3,ACTA1,MYEF2,MYOZ1,MBNL1,TTN,KRT19,NOTCH1,MAPK12,MYH11,CACNA1H,ADAM12,BOC,IGFBP3,IFRD1 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html RTP3,TAS2R16,TAS2R14,RTP4,TAS2R4,TAS2R5,TAS2R3,TAS2R43,TAS1R3,TAS1R1,TAS1R2 +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html ALDOA,GAPDHS,PGLS,PFKL,ECD,PGD,ALDOB,PFKFB1,HK1,TKTL1,PFKM +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html RAB3GAP2,TSPO,XPO6,LTBP2,AP1G1,TNFSF14,EIF5A,MIPEP,MXI1,AGXT,KLHL2,TGFB1,SSR1,HOMER3,TRAK1,TLK1,RPL11,KIF13B,MCM3AP,MYO6,STAP1,VPS45,ERP29,OPTN,NUPL2,RPAIN,F2,PEX26,RTP3,DERL2,RTP4,DERL1,NFKBIE,CTSA,CALR,CD74,UHMK1,CDC37,NPM1,DUSP16,TRAM1,SEC23IP,MDFI,SMAD3,SNAPIN,ICMT,ARFIP1,NFKBIL1,TRNT1,NFKBIL2,PPIH,CBLB,VCP,TRPS1,PTTG1IP,LGTN,XPO7,TRIP6,RERE,PDIA3,TIMM17A,HPS4,TIMM17B,AP3S2,PEX6,PEX3,GLI3,PEX7,AKT1,PEX1,ZFYVE16,ZFYVE9,NCKIPSD,RANBP2,TPR,KPNB1,KDELR1,TOMM34,AP3B1,KDELR2,RPGR,TIMM23,NLRP3,TIMM44,FLNA,MFN2,ATG4D,ATG4C,ATG4B,NUP205,ATG4A,C3ORF31,ARCN1,KPNA6,TOMM22,KPNA5,KPNA4,KPNA3,KPNA2,KPNA1,TNF,AP1M2,CDH1,SEC63,NAGPA,NUP214,PEX19,CEP57,AP3M1,TAP2,PEX16,BCL3,PEX14,AP3D1,SCG5,BCL6,PEX13,PEX12,APPBP2,PEX10,TNPO1,APBA1,FYB,NF1,NLGN1,PPP1R10,GABARAP,SELS,YWHAH,COG7,GSK3B,NLRP12,TRPC4AP,FAF1,GGA1,SSR2,F2R,COG2,BARD1 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html BBS4,CROCC,CKAP5,CETN3,BRCA2,CETN1,CP110,UXT,SASS6,NDE1,CEP250,SAC3D1,CNTROB,NPM1,TUBE1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html TM7SF4,MMP9,SPI1,JAG2,ZNF675,FOXO3,TPD52,SPINK5,IL10,SART1,IL31RA,TGFB2,ACVR1B,CDC42,ALAS2,ACIN1,MYST1,PRL,MYST3,KIRREL3,LYN,CD3D,IL27,LDB1,TAZ,CDK6,IFI16,INHA,NFAM1,SOCS5,MYH9,INHBA,ACVR2A,RPS19,LCK,SCIN,NCOA6,LRMP,CARTPT,IL12B,NHEJ1,RAB3D,CSF1,RAG1,MAP4K2,MAP4K1,PF4,ZBTB16,MLF1,CALCA,SNRK,RASGRP4,ZAP70,CD4,DYRK3,RUNX1,BLNK,IL4,PTPRC,MLL,MAFB,IL7,CEBPG,HCLS1,MAL,CD1D,HDAC5,NOTCH2,HDAC4,ETS1,NOTCH4,CD79A,HDAC9,IL2 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIF23,SEPT5,LIMA1,PRC1,TTK,LATS1,CXCL12,HOOK3,KIF2C,PEX1,GSN,KIFAP3,MAPT,TUBG1,KIF13B,DYNC1I1,STX5,ARHGEF2,CCDC88A,KIF11,OPA1,KIF5B,RAN,KIF5A,NUSAP1,MID1IP1,MARK4,NEBL,NCK2,UXT,KIF1A,KIF1B,TPPP,NCK1,CNTROB,LRMP,TMSB4Y,MAPRE1,STMN1,KPNA2,LRPPRC,MAP3K11,SNAP29,KIF4A,AP1M2,KATNB1,ARF6,RCC1,CDC42EP2,TUBGCP6,SORBS3,TUBGCP5,TMED10,CLASP1,PAFAH1B1,SNAP23,CLASP2,NEFL,RASA1,APBA1,ARHGEF10L,APC,CDC42EP5,KIF3B,NF2,RNF19A,CKAP5,NLGN1,MID1,TUBGCP2,CENPJ,SMC3,TSC1,MAP1S,CAPG,RHOT1,RHOT2,MAP7,SMC1A,YKT6 +PWCOMMONS REGULATION OF AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_AXONOGENESIS.html RTN4,AMIGO1,KLK8,ROBO1,APOE,MAPT,ROBO2,LRRC4C,SLIT2,THY1 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html CCKAR,ENPP1,GNAI2,NUAK2,PPARG,ASNS,ENSA,GCGR,CDKN2B,RASGRP4,ALB,CDKN2D,PCSK9,OGT,SREBF1,STC2,FADS1,TP53,LEP,PPP1R9B,CDKN1A,SSTR2,CHMP1A,TULP4,RPS19,NPY,SSTR1,GIPR,CARTPT,GHRL,STC1,GHSR,SST +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html FOXL2,AIFM1,DFFA,DFFB,CYCS,CIDEA,NDUFA13,BNIP3,CECR2,TPD52L1,PPT1,SOD1,MOAP1,CASP3,CDKN2A,BAX,ACIN1,TOP2A,DEDD2 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html DPF2,BID,TNFRSF25,DEDD,FASTK,DAXX,ADORA1,CRADD,BTK,MAP3K5,CASP8AP2,PTH,DIABLO,DAP,DEDD2,PRKCA,CFLAR,NDUFA13,FADD,DAPK1,CD38,SSTR3,BAX,RIPK3,PDCD6,SST,DAP3 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html GCLC,HS3ST5,NDST1,CHST3,CDO1,GCLM,GLCE,CHST7,CHST6,CHST12,CHST11,CHST13,MAT2B,HS6ST1,EXT1,HS3ST3B1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html CGB,HMGCR,JAG2,DNAJB13,PTTG1,BMP15,CSNK2A2,PRKACG,DDX25,OR7C1,GDF9,CCNA1,PICK1,LIG3,SPA17,BCL2L10,SPAG9,NME5,REC8,SYCP3,TCFL5,SPAG6,SPAG4,TESK1,TESK2,BPY2,WFDC2,XRN2,PNMA1,DEAF1,CHEK1,BCL2L2,SYCP1,DAZAP1,RPL10L,OAZ3,DUSP13,NPM2,HOXA10,AXIN1,ADAM28,ABCB9,ADAM29,MEA1,GGN,RBMY1A1,CDY2B,TSGA10,VCX,INSL3,PRKAG1,DEDD,NR6A1,MOV10L1,YBX2,PARN,DYNLL1,SERPINA5,RPL39L,KHDRBS3,FOXJ1,HIST1H1A,MORC1,FSHR,THEG,VCX3A,PROK2,HIST1H1T,VCX3B,MAST2,EREG,ADAM18,IFT81,RUVBL1,DMC1,FSHB,DNAH9,H1FNT,TSPY1,USP9Y,USP9X,GPR64,SPO11,CCT6B,CDYL,SPANXA1,HSPA2,CEP57,SPAG11B,LEFTY2,HSF2BP,SPATA4,DAZL,PPAP2A,PPAP2B,BRD2,SOX30,TRIM27,TNP1,MTL5,RACGAP1,SOD1,BAX,MYCBPAP,PRM1,NLRP14,PTCH2,PRM2,BMPR1B,CDY1,TSSK3,TSSK6,TOB2 +PWCOMMONS RESPONSE TO TOXIN http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TOXIN.html GLYAT,CES1,BCL2,BAX,AS3MT,DPYS,BPHL,NQO1,PDZD3,MPST +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html TNF,UBE2V1,PRDX3,DPH3,NOD2,NLRC3,NPM1,PYCARD,ABRA,CAMK2A,BCL10,CEBPG,RELA,EDA2R,NFAM1,JMY,UBE2N,PRKCQ,CARD11,EP300,AKTIP,NME1,EDF1,TSSK4,IKBKB,ERC1,EDA,MAP3K13 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html BNIP3,PPT1,PMAIP1,MTIF3,IRAK3,CASP3,MOAP1,CDKN2A,MAZ,SET,HRSP12,NRG1,FOXL2,UPF1,MTERF,DFFA,GZMA,AIFM1,DFFB,CYCS,TNP1,CIDEA,CECR2,GZMB,TPD52L1,SOD1,ETF1,HMGA1,TTF2,SMARCE1,BAX,MTRF1,SUPT16H +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html TM7SF4,MMP9,SPI1,JAG2,ZNF675,TNFSF13,FOXO3,TPD52,SPINK5,SART1,TGFB1,IL10,IL31RA,TGFB2,CDC42,ACVR1B,ALAS2,ACIN1,MYST1,PRL,MYST3,KIRREL3,LYN,CD3D,IL27,LIG1,LDB1,TAZ,LIG3,CDK6,INHA,NFAM1,SOCS5,IFI16,MYH9,ACVR2A,INHBA,RPS19,CD40LG,LCK,SCIN,NCOA6,CARTPT,LRMP,IL12B,NHEJ1,RAB3D,CSF1,MAP4K2,RAG1,MAP4K1,PF4,ZBTB16,MLF1,CALCA,SNRK,RASGRP4,ZAP70,CD4,DYRK3,RUNX1,BLNK,IL4,PTPRC,MLL,MAFB,IL7,HCLS1,CEBPG,MAL,TBX1,CD1D,HDAC5,NOTCH2,HDAC4,ETS1,NOTCH4,CD79A,HDAC9,IL2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ALS2,XRCC4,GNA15,ADORA3,ZAK,ADCY7,EDN2,TNFSF15,PMAIP1,TLR6,GHRHR,MAP3K7,MAP3K6,NLRC4,MAP3K5,CDKN2A,MAP3K4,CASP8AP2,MDFIC,MAP3K9,APOA5,TDGF1,RGN,CHRNA7,PSENEN,GNG3,EGFR,DBNL,C5AR1,PIK3CB,MADD,KIAA1804,PICK1,THY1,BCL2L10,TNNT2,CRHR1,PLCE1,MAP4K5,IFNB1,F2,CARTPT,GLP1R,ACR,TRAF2,ADORA2B,DRD5,ERBB2,PTPLAD1,APOC2,MAP4K1,ADCYAP1,ADRB3,SERINC2,SERINC5,SERINC1,MTCH1,ADRA2A,DIABLO,ADRA2C,TRAF7,EGF,TRAF6,HIP1,MDFI,CARD8,TAOK2,MAP2K3,SMAD3,MALT1,TPD52L1,ATP7A,VCP,BBC3,AVPR1B,AVPR1A,ABL1,ABL2,DAXX,EDNRA,CASP9,ANG,CXCR4,NMUR1,NMUR2,TGFA,SHC1,CAP1,PAK1,PLCB2,FGF2,IRAK1,CCDC88A,AIFM3,CCKBR,RALBP1,CYCS,TP53,PKN1,ARHGAP27,NLRP3,NLRP2,CARD10,UBE2N,PROK2,GRM4,ADRB2,CCND1,ADRB1,EREG,PSEN1,GNAQ,CCND3,CCND2,CHRM1,CD81,GADD45G,GIPR,LCK,PSEN2,ERN1,MAP3K10,GHRL,GNAS,GADD45B,MAP3K13,GAP43,PRKD3,MAP3K11,CALCR,AVPR2,PARD3,APH1A,C5,FPR1,AZU1,CALCA,MOAP1,MAP3K2,CD4,CD24,PPAP2A,COL4A3,FOXL2,CAP2,NF1,SOD1,STAT1,NCSTN,P2RY11,PRLR,EPGN,BAX,IFT57,PPP2R4,APAF1,F2R +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF2C1,EIF5,EIF5A,MTIF2,MTIF3,PAIP2B,EIF3C,EIF3D,EIF3A,EIF3B,EIF3G,EIF3H,RPS3A,EIF3E,EIF1AX,EIF3F,EIF1,DAZL,EIF3I,EIF3J,EIF2B2,EIF2B3,EIF2B4,EIF2B5,DAZ1,PAIP2,PAIP1,EIF2S3,EIF1B,EIF2B1,BOLL,EIF4B,EIF4G2,EIF4G3,EIF4A2,EIF4H,HSPB1,EIF2AK3,EIF2AK4 +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html UNC119,RP1,TRPC3,OPN1SW,NR2E3,ABCA4,SAG,PITPNM1,PDE6B,PDC,GRK1,OPN4,RHO +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html BMI1,MDFI,DVL2,TBX3,LMX1B,TRIM14,SMAD2,GLI2,T,ACVR2B,TDGF1,RIPPLY1,PTCH1,PBX3 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html NBN,ZAK,AIF1,RPRM,FOXO4,LATS1,TGFB1,LATS2,CUL3,CUL2,CUL5,CDKN2A,CDKN2B,PCBP4,CDKN2C,CDKN2D,RHOB,CDK5RAP1,MYC,MAP2K6,CUL1,DLG1,KHDRBS1,TP53,TBRG4,INHA,JMY,MFN2,PPM1G,INHBA,DHRS2,EIF4G2,PA2G4,CHMP1A,ALOX15B,BTG4,TBRG1,BTG3,ERN1,FOXC1,GADD45A,PPP1R15A,ING4,PPP2R3B,STK11,IFNW1,ZBTB17,SESN1,UHMK1,MLF1,PLAGL1,HEXIM2,HEXIM1,CDC123,RUNX3,APC,BMP4,BMP2,IL8,TP53BP2,GMNN,SMAD3,GAS1,CDKN3,GAS7,CDKN1C,PPP1R9B,NOTCH2,CDKN1B,CUL4A,MAPK12,RASSF1,MYO16,PPP1R13B,BMP7,APBB2,HPGD,APBB1 +PWCOMMONS HETEROPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HETEROPHILIC_CELL_ADHESION.html AMIGO1,AMIGO2,REG3A,AMIGO3,CADM3,PVRL1,CADM1,CD209,LGALS7,CD164 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html CDC6,NBN,ZAK,HUS1,RINT1,PML,TIPIN,RAD9A,CHEK1,CHEK2,ATR,BRSK1,FOXN3,NEK11,NAE1,CDT1,RAD1,TRIAP1,PCBP4,GML,ATRIP,CCNA2,RAD17 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html ACOX2,CYP3A5,TSPO,PPARD,CYP11B2,SULT2B1,SHH,ACOX3,STARD3,AKR1C2,AKR1C4,CYP39A1,APOF,NPC1L1,WWOX,AKR1C1,DHCR24,STS,SULT2A1,CYP11A1,DHRS9,NR0B2,NR0B1,UGT1A1,DHRS2,NPC1,UGT2B17,ADM,AKR1B10,UGT2B11,HSD11B2,UGT2B15,CLN8,AKR1D1,CLN6,HSD17B11,HDLBP,CNBP,HSD3B1,HSD3B7,HSD17B14,TFCP2L1,STUB1,DHCR7,HSD17B6,SCARB1,NR1H4,CYP19A1,NSDHL,IL4,SOAT1,SOAT2,MBTPS2,CYP46A1,FDXR,FDPS,SOD1,ABCG1,APOL2,CEL,CYP7B1,GBA2,YWHAH,NR1I2,BAAT,UGT2B4,SCP2,NR5A1,BMP6 +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html UQCRC2,OXA1L,ME3,UQCRC1,ACO2,PDHB,SDHA,SDHB,SLC25A14,NNT,UQCRH,SDHC,SDHD,SURF1,UQCRB +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html CASR,HOXD13,POSTN,GHRHR,TGFB1,DSPP,COL12A1,TWIST2,COL10A1,TWIST1,MATN3,DLL3,MGP,MEPE,PRELP,COL1A2,SHOX,EXT1,EXT2,ADAMTS4,TRAPPC2,FGFR1,ACHE,OSTF1,FGFR3,HOXA13,DSCAML1,ATP6V1B1,EXTL1,AHSG,TEAD4,IL17F,SMA4,RUNX2,SPP2,SRGN,BMP4,BMP1,EVC,KLF10,DMP1,EN1,ANKH,SHOX2,DLX6,ETS2,DLX5,TRPS1,CHRD,TLL1,AEBP1,ARSE,TCOF1,ZNF675,GLI2,PAX1,PRDX1,GLI1,TNFRSF11B,COL11A1,ALX1,GHR,UFD1L,CMKLR1,CDK6,INHA,INHBA,KIAA1217,ACVR1,STATH,COL2A1,SUFU,MSX2,COL9A2,COMP,PTH,LECT2,PAPSS1,PAPSS2,EBP,TBX3,COL13A1,KL,NF1,FBN1,TBX4,IGF1,TBX1,IGF2,NPR3,SPARC,FRZB,ANXA2,RPS6KA3,COL19A1,CLEC3B,CLEC3A,GDF11,GDF10,ATP6V0A4,BMPR1B,IGFBP4 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MMS19,NCBP1,XRCC6,ARNT2,FOXO1,RORB,TNFSF13,FOXO3,MED21,TGFB1,CITED2,EPC1,MDFIC,SMARCD3,FOXF1,GATA4,FOXF2,SMARCD1,SUPT5H,MYST1,MYST4,MYST3,BCL10,MYO6,PCBD2,IL29,RXRA,MED12,MED14,ARID1A,MED13,ARNTL,ELL3,PPARGC1A,TRERF1,PPARGC1B,HIF1A,HNF4A,MED17,TFAP2B,SMARCA1,CRTC1,ELK1,AFAP1L2,ABCA1,FOXH1,PLAGL1,MAML3,TCF4,RUNX1,TCF3,ARHGEF10L,ZNF423,UTF1,EPAS1,MAML1,TAF8,MAP2K3,MAML2,CREBBP,ESRRG,MSTN,SMAD3,SMAD2,FOXP3,ATF6,ATF4,NUP62,SMARCC1,DYRK1B,SMARCC2,NOTCH4,HIVEP3,BMP7,BMP6,HNF1B,ELF1,HNF1A,RSF1,ACVRL1,ELF4,SPI1,TP63,CTCF,GLI2,ZBTB38,GLI1,CAMKK2,PAX8,MKL2,EGR1,ATF7IP,CCNH,TP53,PRKCG,CDK7,HMGA1,ARHGEF11,RAD51,PRPF6,SCAP,NRIP1,GTF2H1,UBE2N,MED6,INHBA,BPTF,EREG,ZMIZ2,NCOA6,UBB,NSD1,CLOCK,MED1,ACVR1,GLIS3,GLIS2,GLIS1,NUFIP1,EHF,TNFRSF1A,RGMB,NPAS2,MRPL12,ERCC6,SQSTM1,BCL3,SUPT4H1,NFATC2,ERCC3,ERCC2,FOXD3,IL4,CEBPG,TBX5,TRIM28,CREB5,ILF3,TP73,MNAT1,YWHAH,ILF2,SP1,YAF2,THRAP3,FOXE1,IRF4,PHF5A,RBM14 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html DLC1,BMP10,BCAR1,OSGIN1,TGFB1,TGFB2,BNIPL,ACVR1B,CDKN2A,CDKN2C,CDKN2D,SERTAD3,NDUFS3,SERTAD2,NOL8,TP53,NDUFA13,RB1,INHBA,PLCE1,GHRH,ALOX15B,UBB,ALOX12,ING5,DCBLD2,ING4,DERL2,PML,PPT1,TSPYL2,FAM107A,PRSS2,CDA,BCL6,ENO1,COL4A4,KLK8,SPHK1,SMAD4,SMAD3,SOD1,CAPRIN2,RERG,PPP1R9B,CDKN1A,CDKN1B,BBC3,CDKN2AIP,PTCH1,GHSR,APBB2,APBB1,IL2 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NCBP2,HTATIP2,XPO6,PDIA3,TNFSF14,EIF5A,MXI1,GLI3,TGFB1,AKT1,RAE1,DDX25,ZFYVE9,ANP32A,RANBP2,NCKIPSD,TPR,KPNB1,KHDRBS1,MCM3AP,NUP133,NUDT4,NLRP3,NUPL2,FLNA,DDX39,RPAIN,NUP205,F2,TBRG1,KPNA6,KPNA5,NUP107,KPNA4,KPNA3,KPNA2,MYBBP1A,KPNA1,BAT1,NUP98,TNF,NUP160,NFKBIE,CDH1,CALR,UHMK1,NUP214,CEP57,DDX19B,NPM1,DUSP16,BCL3,BCL6,TNPO1,MDFI,FYB,UPF2,UPF1,SMG6,SMG5,NXF5,NF1,SMG7,PPP1R10,SMG1,SMAD3,MALT1,HNRNPA1,NFKBIL1,ATXN1,NFKBIL2,PPIH,CBLB,TSC1,TRPS1,GSK3B,PTTG1IP,NLRP12,FAF1,XPO7,TRIP6,RERE,BARD1,F2R +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html PTPRC,LST1,SLA2,INHA,SOCS5,FOXP3,SPINK5,THY1,TGFB2,INHBA,TARBP2,LAX1,SFTPD,GLMN +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html NCK2,CDC42EP2,MAPT,TPPP,NCK1,ARF6,TMSB4Y,MAPRE1,LATS1,RASA1,CDC42EP5 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html CHKA,PPARA,CAV1,TSPO,PPARD,LDLR,ABCA2,ABCA1,SLCO2A1,APOA4,GOT2,APOA2,STX12,APOA1,APOE,LCAT,APOF,APOC3,ABCD3,NPC1L1,CETP,ANGPTL3,PSAP,ATP11B,ABCG1,GLTP,NPC2,SLC27A4 +PWCOMMONS CELLULAR RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STRESS.html SREBF1,NUAK2,ALB,FADS1,GSK3B,TP53,PCSK9,CARTPT,ASNS,EIF2AK3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MMS19,NCBP1,XRCC6,FOXO1,RORB,FOXO3,MED21,TGFB1,CITED2,EPC1,MDFIC,SMARCD3,FOXF1,SMARCD1,GATA4,FOXF2,SUPT5H,BCL10,MYO6,PCBD2,RXRA,MED12,ARID1A,MED14,ARNTL,MED13,ELL3,TRERF1,PPARGC1B,HIF1A,HNF4A,MED17,TFAP2B,SMARCA1,CRTC1,ELK1,AFAP1L2,FOXH1,PLAGL1,MAML3,RUNX1,TCF4,TCF3,ARHGEF10L,UTF1,EPAS1,TAF8,MAML1,MAP2K3,MAML2,ESRRG,SMAD3,SMAD2,ATF6,ATF4,SMARCC1,DYRK1B,SMARCC2,NOTCH4,BMP6,ELF1,HNF1B,HNF1A,RSF1,ELF4,SPI1,TP63,CTCF,GLI2,ZBTB38,GLI1,PAX8,MKL2,ATF7IP,CCNH,TP53,CDK7,HMGA1,ARHGEF11,NRIP1,PRPF6,GTF2H1,SCAP,MED6,INHBA,BPTF,ZMIZ2,NCOA6,NSD1,CLOCK,MED1,GLIS3,GLIS1,NUFIP1,EHF,TNFRSF1A,NPAS2,ERCC6,MRPL12,SQSTM1,SUPT4H1,ERCC3,ERCC2,FOXD3,IL4,TBX5,TRIM28,CREB5,ILF3,TP73,MNAT1,ILF2,SP1,THRAP3,FOXE1,PHF5A,RBM14 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html KIAA0368,TSG101,UBE2G1,BTRC,UBE2G2,RNF217,CPA2,FBXO22,ANAPC2,UBE2A,ANAPC5,UFD1L,ANAPC4,UBR3,UBE2I,UBE2H,UBE2C,UBE2B,UHRF2,UBE2K,UBR5,FBXL4,AMFR,SIAH2,UBB,DERL2,FZR1,DERL1,SYVN1,UBE3A,ANAPC10,NEDD8,EDEM1,STUB1,ARIH1,UBE2D3,UBE2D2,SQSTM1,RNF11,UBE2D1,USP33,FBXO7,RNF144B,NPLOC4,UBE4A,UBE4B,CDC23,PCNP,CDC20,PARK2,UBE2L3,SELS,PSMD14,PSMC5,VCP,SMURF2,SMURF1,UBE2E1 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html SRI,MYL5,MYL2,TNNC2,TNNC1,KCNB2,PPP1R12B,SPHK1,MYBPC3,SOD1,TPM1,MYL9,PROK2,PLCE1,TNNT1,ATP2A1,MYBPH,CNN1,NMU +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html RP1,COPS3,OPN1SW,NR2E3,BRSK1,ABCA4,ERCC8,PDE6B,GPX1,ERCC5,ERCC6,MC1R,CDKN2D,BCL3,SERPINB13,ERCC3,ERCC4,IVL,FEN1,ERCC2,UNC119,REV1,TRPC3,FECH,RELA,NF1,UBE4B,GTF2H2,SAG,PITPNM1,RPAIN,POLD1,GRM6,DDB2,PDC,IL12A,MAPK8,SCARA3,IL12B,CACNA1F,DYNLRB1,CLOCK,GRK1,RHO,OPN4 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html BCL10,PRG3,CEBPG,IL27,IL9,TLR1,CD276,TLR3,TNFRSF8,TLR4,TLR6,TLR7,TLR8,TLR9,AZU1,APOA2,EREG,GLMN,IRF4,IL12B,LTB,SPN,EBI3,CD28 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF2C1,EIF5,EIF5A,MTIF2,MTIF3,PAIP2B,EIF3C,EIF3D,EIF3A,EIF3G,EIF3H,EIF3E,EIF3F,DAZL,EIF1,EIF3I,EIF3J,EIF2B2,EIF2B5,DAZ1,PAIP2,EIF1B,BOLL,EIF4B,EIF4G2,EIF4G3,EIF4H,EIF4A2,HSPB1,EIF2AK3,EIF2AK4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html FST,ZNF254,TCEAL1,EPC1,SIN3A,ZNF396,SUPT5H,TWIST2,TWIST1,ZNF593,ZHX1,ZHX2,MECP2,ZNF189,ZHX3,NR0B2,NR0B1,CSDA,FOXN3,PA2G4,ZNF238,SMARCE1,TGIF1,PRDM1,EID1,HMGB1,VPS72,MEIS2,HEXIM2,HEXIM1,DRAP1,BCOR,TCF25,NKX2-5,HELLS,MDFI,BMP2,KLF12,KLF10,KLF11,RYBP,SMAD4,SMAD3,SMAD2,FOXP3,HDAC5,SMARCC2,JAZF1,DNMT1,RBPJ,HDAC8,KLF4,E2F1,ZBTB32,PPARD,RSF1,ARID4A,E2F6,NR6A1,SPI1,TP63,ZNF202,CTCF,ZEB1,PAWR,GLI2,HSBP1,DAXX,ZNF345,MEN1,GFI1B,ZNF148,POU4F2,NFX1,ATF7IP,ZNF281,SLA2,ARID5B,LDB1,ARID5A,NDUFA13,FOSB,RB1,MXD4,NRIP1,CHMP1A,BPTF,ZNF136,MDM2,RIPPLY1,MDM4,CUX1,NSD1,ZFP161,GLIS3,ZMYND11,ING4,GLIS1,ZBTB16,ZNF177,ZNF174,ORC2L,GATAD2A,PEX14,BCL6,SUPT4H1,ENO1,FOXD3,TBX3,TBX2,VHL,SIRT4,TRIM27,TNP1,SIRT5,ILF3,PHF12,CBY1,SNAI2,SIRT1,STAT3,ZNF157,IRF7,DR1,IRF8,PHF21A,IRF2 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TSPO,XPO6,LTBP2,EIF5A,TNFSF14,MIPEP,MXI1,AGXT,TGFB1,SSR1,HOMER3,TRAK1,RPL11,KIF13B,MCM3AP,OPTN,NUPL2,RPAIN,F2,PEX26,RTP3,RTP4,NFKBIE,CALR,UHMK1,CDC37,DUSP16,TRAM1,MDFI,SMAD3,ICMT,NFKBIL1,TRNT1,NFKBIL2,PPIH,CBLB,TRPS1,PTTG1IP,TRIP6,XPO7,RERE,PDIA3,TIMM17A,TIMM17B,HPS4,PEX6,PEX3,GLI3,PEX7,AKT1,PEX1,ZFYVE9,ZFYVE16,NCKIPSD,RANBP2,TPR,KPNB1,TOMM34,TIMM23,NLRP3,TIMM44,FLNA,MFN2,ATG4D,ATG4C,ATG4B,ATG4A,NUP205,C3ORF31,KPNA6,KPNA5,TOMM22,KPNA4,KPNA3,KPNA2,KPNA1,TNF,AP1M2,CDH1,SEC63,NUP214,NAGPA,CEP57,PEX19,AP3M1,PEX16,BCL3,PEX14,PEX13,BCL6,PEX12,TNPO1,PEX10,FYB,NF1,NLGN1,PPP1R10,GABARAP,GSK3B,NLRP12,FAF1,SSR2,F2R,BARD1 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html CLN3,SLC9A7,CLCN3,ATP1A3,ATP1A4,PPT1,ATP1A1,ATP1A2,ATP6V1B1,TMPRSS3,BCL2,CLN5,SLC9A1,CLN6 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html HS3ST6,CCL3,RSF1,HS3ST5,CCL2,VAPB,OPRK1,EIF5A,DEK,APOBEC3G,CCL4,APOBEC3F,SMARCB1,WWP2,MDFIC,HTATSF1,WWP1,CXCR6,ITCH,TNIP1,TOP2A,CTBP1,CTBP2,IL8,HBXIP,UBP1,CLEC4M,TARBP2,PPIA,CD209,CD81,ACE2 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html ITLN1,ITGB2,STUB1,TGFB1,IL31RA,SET,NDUFS4,CLCF1,ATG7,TDGF1,UBE2D1,BMP4,EGFR,IL3,BCL10,GTPBP4,CCDC88A,IL5,NF2,LYN,IL29,CCDC88C,HCLS1,SOCS1,PRKCG,PPARGC1A,BRCA1,IL20,UBE2N,CARD14,CCND1,CD80,AKTIP,TSC1,CCND3,CCND2,CD81,IL12A,RNF139,NLRP12,PPP2R4,TNK2,IGFBP3,IL22RA2 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html HS3ST6,CCL3,HS3ST5,DERL1,CCL2,RSF1,VAPB,OPRK1,EIF5A,RRAGA,APOBEC3G,DEK,CCL4,APOBEC3F,TGFB1,MDFIC,SMARCB1,WWP2,HTATSF1,WWP1,CXCR6,ITCH,TNIP1,TOP2A,CTBP1,CTBP2,IL8,SMAD3,HBXIP,UBP1,CLEC4M,TARBP2,PPIA,CD209,CD81,ACE2 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html NBN,NEK2,PML,KNTC1,TTK,PKMYT1,ANLN,BRSK1,CDC16,RCC1,TGFB1,PIN1,TRIAP1,CDKN2B,PCBP4,PRMT5,NPM2,BUB1,TGFA,EGF,GML,CCNA2,CD28,ZW10,RINT1,NUSAP1,CDC23,BIRC5,CDC25C,UBE2C,ATM,MAD2L1,EREG,EPGN,ZWINT,BUB1B,CHFR,MAD2L2,NEK6,RAD17 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ALDH1L1,PTGS1,SLC7A8,SLC7A9,GGT1,SLC7A4,SLC7A5,AGXT,BBOX1,SLC7A6,FAH,GLDC,SLC7A7,GOT2,ASPA,GOT1,PLOD1,SCLY,MAT1A,DDAH2,DDAH1,NANP,ALDH6A1,YARS,GATM,DARS,AARS,QDPR,CDO1,PPARGC1A,PECI,SARS2,PNPLA8,PYCR1,NPC1,ALOX15B,RARS,CROT,ME1,HACL1,ME3,ACADSB,GCLC,GNE,GLUD2,FARS2,GLUD1,PFKFB1,PAH,ASL,GCLM,CD74,KARS,HADHB,ARG1,GAD2,IDH1,GCSH,ASRGL1,ALDH4A1,GAD1,NR1H4,FH,MCAT,SLC6A14,HGD,IDH3B,BRCA1,CYP7B1,ATF4,BAAT,SLC7A2,MLYCD,FAAH,SLC25A10,FPGS,SLC25A15,ACOX2,PTGES3,PPARA,PPARD,BCKDK,CYP2J2,AMT,ACOT2,ACOT1,ACN9,ACOT4,SC4MOL,ACOX3,GSS,ACOT9,AKR1C3,MCCC2,AKR1C2,MTHFD2,WARS,TYR,MSRA,CYP39A1,PTGES,HDC,ACOT12,GNPAT,GSTZ1,AKR1C1,AGPAT2,AGPAT1,HPD,ACADM,PEPD,PRG3,ACO2,ACO1,ACADS,ALDH5A1,ADIPOR2,ADIPOR1,SLC3A1,DDO,ACADVL,HAO1,PTGDS,SDS,AS3MT,HAO2,SLC27A6,SMS,AKR1D1,SLC27A2,SLC27A5,DEGS1,ALOX12,BCAT1,ALDH18A1,ECH1,HSD3B7,UGDH,NFS1,ECHS1,MIF,DCT,GLS2,TNFRSF1A,MTHFR,ABCD2,MARS2,BDH2,PTS,BCKDHA,CPT1B,FADS1,BCKDHB,FTCD,FADS2,IGF1,ACLY,CPT1A,OXSM,ADI1,CYP4A11,GBA2,CYP4F8,GLYAT,GCK,SLC6A6,LTA4H,CYP4F3,GAMT,MAT2B,CYP4F2,HPGD +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html RTN4,NRP2,PARD3,CDK5R1,NRP1,RTN4RL1,LRRC4C,GLI2,PAX2,SHH,APOE,ROBO1,MAPT,KAL1,BAI1,POU4F1,ROBO2,RTN4RL2,SEMA3B,UNC5C,SPON2,PARD6B,KLK8,NRXN3,BAIAP2,OTX2,NTNG1,DPYSL5,NTNG2,NRXN1,SLIT1,SLIT2,THY1,AMIGO1,S100B,SEMA4F,CYFIP1,OPHN1,SIAH1,CNTN4,UBB,FEZ2,FEZ1 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html CADM3,MPZL2,CADM1,ITGB1,CDH5,CD84,AMIGO1,AMIGO2,PVRL1,ROBO1,TRO,PVRL3,PVRL2,NPTN,PKD1,ROBO2 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html CARD9,TAOK2,ATP6AP2,TAOK3,NF1,EDA2R,ZNF675,TPD52L1,AMBP,ADRB3,GRM4,ADRB2,REN,HIPK2,MAPK8IP2,MAPK8IP3,MAPK8IP1,TRAF7,CD24,CD27 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html TTN,UHMK1,CAMKK2,AKT1,IGF1R,PAK2,MAP3K3,MAP3K9,LMTK2,PAK1,INSR,TAF1,MYO3A,MEX3B,KIAA1804,TAOK3,MOBKL1A,SMG1,STK4,CDKL5,EIF2AK1,DYRK1A,MAPK15,MAP3K10,NLRP12,TNK1,EIF2AK3,MAP3K13,MAP3K12,MAP3K11 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html CD9,PARD6B,TJP1,TLN1,GJD3,TLN2,GJA1,GJA4,GJA5,VCL,GJC1 +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html MDFI,NFKBIL2,TAF3,PDIA3,NFKBIE,ALB,PDIA2,SUPT7L,TOPORS,FAF1,MXI1,NFKBIL1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF23,PRC1,KATNB1,TTK,RCC1,HOOK3,KIF2C,TUBGCP6,TUBGCP5,MAPT,PAFAH1B1,CLASP1,TUBG1,CLASP2,APC,ARHGEF2,KIF11,RAN,RNF19A,CKAP5,NUSAP1,MID1IP1,MID1,TUBGCP2,MARK4,CENPJ,SMC3,UXT,MAP1S,TPPP,MAP7,MAPRE1,STMN1,SMC1A +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html H1FNT,PML,BNIP3,PPT1,MOAP1,CASP3,NUMA1,CDKN2A,DULLARD,ACIN1,TOP2A,DEDD2,FOXL2,AIFM1,DFFA,DFFB,CYCS,CIDEA,CECR2,NDUFA13,TNP1,TPD52L1,SOD1,TMEM48,WBP2NL,SYCP3,BAX,ATXN7,TSSK6 +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html ADSS,FIGNL1,OLA1,ACLY,AK5,C16ORF7,CTNS,HPRT1,GUK1,AMPD3,NDUFS1,PPAT +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PDIA3,PEX6,TNFSF14,PEX3,MXI1,GLI3,TGFB1,PEX7,AIP,AKT1,PEX1,ZFYVE9,RANBP2,NCKIPSD,TPR,KPNB1,MCM3AP,NLRP3,FLNA,RPAIN,NUP205,F2,PEX26,C3ORF31,TOMM20,KPNA6,KPNA5,TOMM22,KPNA4,KPNA3,KPNA2,KPNA1,TNF,NFKBIE,CDH1,CEP57,PEX16,BCL3,PEX14,PEX13,BCL6,PEX12,TNPO1,PEX10,FYB,MDFI,NF1,PPP1R10,SMAD3,NFKBIL1,NFKBIL2,PPIH,CBLB,TRPS1,PTTG1IP,NLRP12,FAF1,TRIP6,RERE,F2R +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html SCAMP1,SCAMP3,SCAMP2,STX7,OPTN,MON2,KRT18,RAB14,AP3B2,DOPEY2,EXOC5,SNAP23,DOPEY1,STEAP2 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html GCLC,ALDH18A1,GLUD2,GLUD1,ASL,GCLM,ARG1,PYCR1,GAD2,ALDH4A1,ASRGL1,DDAH2,GAD1,DDAH1 +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html INHBA,IL27,CEBPG,CD276,TLR3,INHA,IL12B,TLR7,TLR8,EBI3,TLR9 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SLC22A16,CGB,GNPDA1,HMGCR,JAG2,DNAJB13,PTTG1,BMP15,PRKACG,CSNK2A2,ADAM2,DDX25,OR7C1,GDF9,IZUMO1,CCNA1,PICK1,CRISP1,SPAG1,LIG3,SPA17,BCL2L10,NME5,SPAG9,REC8,WBP2NL,TCFL5,SPAG6,SYCP3,SPAG4,TESK1,TESK2,BPY2,MST1R,AKAP3,XRN2,WFDC2,AKAP4,PNMA1,ACR,DEAF1,CHEK1,BCL2L2,SYCP1,DAZAP1,RPL10L,OAZ3,DUSP13,NPM2,HOXA10,SPAM1,AXIN1,ADAM28,ABCB9,ADAM29,MEA1,GGN,RBMY1A1,CLGN,CDY2B,TSGA10,ADAM20,ADAM21,VCX,INSL3,SMCP,DEDD,PRKAG1,NR6A1,MOV10L1,YBX2,PARN,DYNLL1,SERPINA5,RPL39L,KHDRBS3,ZP2,FOXJ1,HIST1H1A,MORC1,FSHR,OR10J1,THEG,VCX3A,PROK2,HIST1H1T,VCX3B,MAST2,EREG,ADAM18,IFT81,RUVBL1,DMC1,FSHB,PKDREJ,H1FNT,DNAH9,TSPY1,USP9Y,USP9X,GPR64,XKRY,SPO11,CD9,DNALI1,CCT6B,CDYL,SPANXA1,HSPA2,CEP57,SPAG11B,LEFTY2,HSF2BP,DAZL,SPATA4,CD4,PPAP2A,PPAP2B,BRD2,DAZ2,SOX30,TRIM27,MTL5,TNP1,SOD1,RACGAP1,BAX,MYCBPAP,NLRP14,PRM1,PTCH2,PRM2,CDY1,BMPR1B,TSSK3,TOB2,TSSK6 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html E2F1,DBF4,FOXO4,LATS1,LATS2,CUL3,CUL2,ACVR1B,CUL5,CDKN2A,GFI1B,DDX11,CDKN2B,CDKN2C,CDKN2D,CDK10,CDCA5,CUL1,CDC7,KHDRBS1,CDC6,ANAPC5,ANAPC4,POLE,SKP2,TBRG4,CDK6,RB1,CDK4,FOXN3,CDK2,SPDYA,INHBA,CHMP1A,TIMELESS,CDK2AP1,USH1C,KPNA2,MAP3K11,ACVR1,BCAT1,PPP6C,TIPIN,POLA1,ANAPC10,RCC1,PRUNE2,KRT7,KATNA1,GFI1,TAF1,PTPRC,CDC23,CENPF,TPD52L1,BIRC5,CDC25C,CDKN3,CDKN1C,CDKN1A,CDKN1B,CUL4A,GSPT1,POLD1,MYO16,ABL1,APBB2,APBB1 +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html COL4A3,COL4A2,PML,NPR1,PF4,TNNI3,FOXO4,SPINK5,PLG,SERPINF1,STAB1,IL17F,NPPB +PWCOMMONS MONOCARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_TRANSPORT.html SLC16A3,SLC16A2,SLC16A1,SLC16A5,SLC16A4,AKR1C4,SLC16A7,SLC16A6,SLC16A8,AKR1C1 +PWCOMMONS EPITHELIAL CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_CELL_DIFFERENTIATION.html ELF3,UPK1A,UPK1B,KRT3,EHF,UPK3A,KRT4,SPINK5,UPK2,DMBT1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html CASR,BTD,S100A7,CRABP2,FST,TGFB2,BTK,DSPP,PLOD1,CTGF,APOA5,KRT85,TWIST2,KRT83,MATK,UGCG,FOXN1,MGP,KRT13,VAX2,KRT10,PROX1,SCEL,IL20,PTHLH,NME2,KRT17,KRT16,ATP2C1,KRT15,KRT14,DSP,TFAP2A,LAMC2,LAMC1,COL1A1,EDA,EMP1,OSTF1,ACHE,RBP2,HOXB13,ATP6V1B1,AHSG,T,TCF21,LAMB3,IL17F,RUNX2,SRGN,MEST,BMP4,IKZF3,BMP1,IKZF1,DMP1,BMX,KRT31,SMAD2,KRT34,ANKH,KRT32,LAMA3,ATP2A2,SMURF1,GHSR,FABP5,TCF15,KLF4,PPARD,FGF7,ZNF675,GLI2,CDSN,SPINK5,GLI1,ALOX12B,TIE1,COL11A1,ALX1,DHCR24,STS,STX2,FLOT2,PTF1A,CDK6,WAS,SLIT2,EVPL,EYA2,HOXC11,KRTAP5-9,GHRL,ACVR1,KRT6A,KRT6B,RTN4RL1,STATH,TRIM15,ALDH3A2,DCT,KRT9,COL17A1,COL7A1,KRT5,POU2F3,KRT1,TGM3,KRT2,RTN4RL2,CALML5,TGM5,ERCC3,ERCC2,ZBTB7B,SECTM1,TBX6,KLK7,KLK8,TBX3,KL,COL13A1,HCK,NF1,KLK5,GJB5,SPARC,SNAI2,COL5A2,CASP14,SPRR1A,SPRR1B,BNC1,GDF11,JAK2,PTCH2,ATP6V0A4 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC5A1,ITLN1,SLC37A4,SLC35A1,SLC35A2,SLC35A3,EDNRA,SLC2A8,GH1,PEA15,SLC2A5,SLC2A4,SORBS1,PPBP,INS,SLC2A3,SLC2A2,SLC35B4,SLC2A1 +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html CALCR,GSTM3,KRT19,GATA3,GHRL,BRCA2,CRIPAK,ABCA2,CD24,PDCD7,BRCA1 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html KCNH1,BMP4,ACTA1,TBX3,MYEF2,MYOZ1,CBY1,MBNL1,TTN,FOXO4,NOTCH1,SYNE1,KRT19,MAPK12,EREG,MYH11,CACNA1H,GLMN,ADAM12,IGFBP3,BOC,IFRD1 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html IL18,TLR1,TNFSF15,TNFRSF8,TLR3,TLR4,TLR6,TLR7,TLR8,TLR9,AZU1,APOA2,NOD1,IL17F,SFTPD,BCL3,LTB,EBI3,SPN,CD28,IL4,BCL10,IL6,PRG3,CEBPG,IL27,IL9,CD276,INHA,FOXP3,SIGIRR,INHBB,INHBA,MAST2,EREG,NLRP12,GHRL,GLMN,IL12B,IRF4,GHSR +PWCOMMONS SUPEROXIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SUPEROXIDE_METABOLIC_PROCESS.html APOA4,NOX4,NOX5,PRG3,PREX1,CCS,SOD1,MT3,SOD2 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GIT1,RIC8B,RGS16,RGS14,ADRB3,PLCE1,RGS20,ADRB2,RGS11,RGS12,RGS2,RGS3,RGS4,RGS5,GIT2,GRK6,GRK4,GRK5,RGS9,GNG4,RAMP1,GRK1,GNG7 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html METAP1,EIF2C1,TLR1,EIF5,EIF5A,TLR3,EIF2A,TLR4,TLR6,TLR7,IL10,TLR8,YBX2,TLR9,APOA2,DDX25,HRSP12,EIF1,EIF2B2,LTB,SPN,EBI3,SAMD4A,EIF2B5,BCL10,PRG3,IL29,IL27,NDUFA13,EIF1B,INHA,BOLL,SIGIRR,INHBB,INHBA,EIF4A3,EIF4G2,EIF4G3,EIF2AK1,MAST2,EREG,MTRF1,EIF4A2,BACE2,HSPB1,GHRL,IL12B,EIF2AK3,EIF2AK4,TNFRSF8,IGF2BP2,MTIF2,NECAB3,MTIF3,PAIP2B,EIF3C,AZU1,EIF3D,EIF3A,EIF3G,EIF3H,KRT7,EIF3E,IL17F,EIF3F,SFTPD,SEPSECS,BCL3,EIF3I,DAZL,EIF3J,CD28,IL4,IL6,DAZ1,UPF1,PAIP2,CEBPG,IL9,CD276,FOXP3,ETF1,FURIN,EIF4B,TSC1,EIF4H,NLRP12,GLMN,IRF4,GHSR,APBB1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html BCKDK,AMT,SLC7A8,SLC7A9,GGT1,SLC7A4,SLC7A5,SLC7A6,GLDC,SLC7A7,FAH,GOT2,GSS,WARS,MCCC2,TYR,ASPA,MSRA,GOT1,PLOD1,SCLY,MAT1A,HDC,GSTZ1,DDAH2,DDAH1,HPD,ALDH6A1,YARS,PEPD,DARS,AARS,QDPR,SLC3A1,CDO1,DDO,SARS2,PYCR1,SDS,RARS,SMS,BCAT1,GCLC,ALDH18A1,GLUD2,FARS2,GLUD1,NFS1,PAH,ASL,GCLM,KARS,DCT,GLS2,ARG1,MTHFR,GAD2,MARS2,GCSH,ASRGL1,ALDH4A1,PTS,GAD1,BCKDHA,BCKDHB,SLC6A14,HGD,ADI1,ATF4,BAAT,SLC7A2,SLC6A6,MAT2B,FPGS,SLC25A15 +PWCOMMONS PHOTORECEPTOR CELL MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/PHOTORECEPTOR_CELL_MAINTENANCE.html RDH12,IQCB1,NPHP3,CLRN1,USH1G,USH1C,PCDH15,GPR98,USH2A,CDH23 +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html CYP3A4,UGT1A6,UGT1A9,NR1I2,AS3MT,UGT2B11,UGT2B4,NQO1,UGT2B15,UGT2B28,AHR,S100A12 +PWCOMMONS INTERLEUKIN 8 BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_BIOSYNTHETIC_PROCESS.html BCL10,APOA2,NOD1,PRG3,IL17F,BCL3,TLR4,TLR7,TLR8 +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html PTGES3,PRG3,FADS1,PTGS1,MCAT,FADS2,CD74,BRCA1,MIF,OXSM,PTGDS,LTA4H,HPGD,DEGS1 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html EGFR,NUDT4,IL8,SLA2,SPHK1,TRAT1,BTK,CAMKK2,LAT,CDH13,LAT2,PLCE1,NMUR1,NMUR2,RGN +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RPL17,SLC44A2,VAPA,TBK1,TNFSF15,TSPAN6,TNFSF14,TLR6,MAP3K7,MYD88,TMEM9B,NLRC3,MIER1,GPR89A,EDARADD,BCL10,BST2,GOLT1B,RELA,FADD,CD40,TRIM38,ATP2C1,MIB2,RIPK2,TNFAIP3,ERC1,IRAK1BP1,NEK6,PPP5C,TRAF2,LITAF,PTPLAD1,UBE2V1,CXXC5,OTUD7B,TRAF6,TRAF5,CFLAR,CARD8,CARD9,LGALS1,NDFIP1,NDFIP2,MALT1,ECM1,LGALS9,TRADD,TRAF3IP2,IKBKE,APOL3,TNFSF10,NUP62,PLK2,IKBKG,TRIP6,SLC20A1,PRDX4,FASLG,GJA1,ZNF675,CANT1,NOD2,NOD1,HMOX1,CASP8,TICAM1,TICAM2,RHOA,TMEM101,RHOC,CASP1,CHUK,RHOH,IRAK2,IRAK1,LTBR,ECT2,FLNA,CARD10,UBE2N,ZDHHC17,TNFRSF10B,RIPK1,ZDHHC13,EEF1D,PPM1A,TFG,TRIM13,FKBP1A,TNFRSF1A,TMED4,REL,MAP3K3,SLC35B2,SQSTM1,PLEKHG5,BCL3,CC2D1A,SECTM1,STAT1,BIRC2,NLRP12,FAF1,HTR2B,TIAF1,F2R +PWCOMMONS NUCLEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOSOME_ASSEMBLY.html SET,RSF1,NAP1L1,SMARCA5,NAP1L3,NAP1L2,CHAF1A,ASF1A,CHAF1B,NAP1L4 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MTSS1,TTN,PRKG1,CXCL12,PACSIN2,PLA2G1B,MYO6,ROCK1,MYH7,MYH6,MYH9,NEBL,ARPC1A,TNNT2,RND3,KRT19,RND1,ATP2C1,TESK2,DBN1,DST,FGD2,MYL6,FGD1,SSH1,MRAS,SSH2,MYO9B,ARPC4,ARF6,ARPC5,LLGL1,CDC42EP2,DOCK2,RAC3,RAC1,ADRA2A,FGD5,FGD6,ARHGEF10L,FGD3,ARHGDIB,FGD4,CDC42EP5,FSCN2,TAOK2,MYO1E,FSCN1,ARFIP2,MYOZ1,EVL,EPB49,CDC42BPG,TSC1,MYH11,CDC42BPA,SPTA1,GHSR,ABL1,MYH10,CDC42BPB,RHOJ,LIMA1,WASF3,NUAK2,PREX1,WASF1,BCAR1,WASF2,LATS1,DSTN,CDC42,PDPK1,DYNLL1,ANG,GSN,RHOA,RHOF,DLG1,ARHGEF2,CCDC88A,ACTA1,LIMK1,VIL1,ARHGEF17,FLNB,FLNA,ELMO1,NCK2,NCK1,SCIN,CFL1,GHRL,TMSB4Y,WASL,CXCL1,SHROOM1,SHROOM2,PLEK2,SORBS3,EZR,SORBS1,MYL6B,WIPF1,RASA1,TNXB,NF2,NF1,RICTOR,RACGAP1,CAPG,AMOT,KPTN,CRK +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html KCNMB4,BCL10,GCLC,PDPN,NKX2-6,LMO4,KEL,VANGL2,CELSR1,SOD1,GLI2,GCLM,TINAG,SHH,KCNMB2,CALCA,NOTCH4,SFTPD +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html XRCC2,PRC1,DBF4,KNTC1,TTK,PKMYT1,AURKA,CDC16,TTN,FOXO4,TGFB1,CUL3,CUL2,CUL5,CDKN2A,RAD21,CDKN2B,DDX11,CDKN2C,TARDBP,CDKN2D,STAG3,TUBG1,CCNA1,CCNA2,CDCA5,CUL1,ANAPC5,RAN,RINT1,ANAPC4,POLE,LIG3,SKP2,TBRG4,ESPL1,PIM2,DCTN3,FOXN3,BOLL,DCTN2,RAD1,REC8,MAD2L1,TIMELESS,ZWINT,CNTROB,CLIP1,STMN1,AKAP8,MAD2L2,RAD17,NEK6,PPP5C,PAM,NEK2,MRE11A,TIPIN,ANLN,ANAPC10,CHEK1,ANAPC11,RCC1,SYCP1,PIN1,PRUNE2,DUSP13,RAD51L1,SAC3D1,KATNA1,NPM2,NPM1,TUBE1,PBRM1,FBXO5,RAD51L3,EGF,GML,SSSCA1,TAF1,CKAP5,BRCA2,CDC23,NDC80,TPD52L1,SUGT1,RAD54L,CDC27,ATM,CDKN1C,CDKN1A,CDKN1B,NOLC1,PLK1,POLD1,MYO16,RAD54B,ABL1,SMC1A,MYH10,KIF23,E2F1,KIF22,NBN,KIF25,LATS1,LATS2,ACVR1B,KIF2C,TRIAP1,NDE1,GFI1B,CEP250,PCBP4,PRMT5,TGFA,CDK10,ZW10,TAF1L,KHDRBS1,CDC7,CDC6,KIF11,KIF15,TPX2,NUSAP1,CDK6,RB1,UBE2C,CDK4,RAD52,CDK2,RAD50,RAD51,SPDYA,INHBA,SASS6,CHMP1A,EREG,CDK2AP1,TOP3A,BUB1B,USH1C,MDM4,CHFR,DMC1,KPNA2,ACVR1,MAP3K11,BCAT1,PPP6C,POLA1,PML,CETN3,CETN1,BRSK1,SPO11,NUMA1,NCAPH,HSPA2,KRT7,BUB1,PAFAH1B1,GFI1,CD28,PTPRC,PDS5B,MSH5,MSH4,CENPF,CENPE,BIRC5,CP110,CDC25C,RACGAP1,CDKN3,SC65,SMC3,CDC25B,SMC4,MPHOSPH9,GSPT1,CUL4A,EPGN,CIT,APBB2,MPHOSPH6,APBB1 +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html CPT1B,PPARA,HACL1,PPARD,ACADM,ECH1,ACADS,ADIPOR2,ECHS1,ADIPOR1,PPARGC1A,CPT1A,HADHB,HAO1,ACADVL,HAO2,BDH2,ALOX12 +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html IL4,TRAF2,PTPRC,DEFB103A,MALT1,TNFSF13,FOXP3,TGFB1,MAP3K7,APOA2,APOA1,CD40LG,TRAF6 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html ENPP7,SGMS2,ST8SIA1,ST8SIA3,PPT1,SGMS1,LASS5,ASAH1,ASAH2,ST6GALNAC6,SERINC1,CERK,NSMAF,B4GALNT1,CLN3,SGPL1,SPTLC1,PSAP,UGCG,SPHK1,LARGE,GLA,LASS1,ST8SIA5,NEU3,SMPD4,SMPD3,CLN6,SMPD2 +PWCOMMONS NEGATIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LIMA1,ARHGEF2,GSN,CAPG,KATNB1,CLASP1,MID1IP1,TMSB4Y,MAPRE1,APC +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html COG3,COPB2,COPG2,NAPG,COPB1,STX16,COPZ1,NAPA,GOSR1,OPTN,COPE,COG2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html HRAS,CASR,ADCY8,CRHBP,OBP2B,ZIC1,CXCL11,CXCL12,IL10,CXCL10,TGFB2,AGTR2,HTR1A,APOE,GALR3,GALR2,RALA,SPN,SYK,PLD1,C5AR1,PIK3CB,PMCH,UBR3,PLAUR,CCR9,CCR8,MAPK1,CCR7,CCR6,CCR5,CCR4,CCR3,CCR2,CX3CR1,CARTPT,ABAT,DEFA1,DYNLRB1,CCL1,CCL3,CCL2,DRD3,PPYR1,CCL8,ITGB2,CX3CL1,CCL5,CCL7,HCRTR2,HCRTR1,DOCK2,KAL1,CNR1,CKLF,CNR2,SFTPD,AGRP,IL1RAPL1,DEFB1,NOVA1,MAP2K1,HTT,MAOA,S100B,CXCL14,NPY,CXCL13,NPW,LTB4R2,PYY,GHSR,XCL1,PLAU,MTNR1A,OPRM1,TAS2R1,MCHR1,CCKAR,TAS2R5,TRPV1,TACR1,CXCR3,CCRL2,CXCR4,SAA1,NMUR2,DLG4,XCR1,FGF2,FOSL1,CCRL1,CCKBR,RALBP1,CMKLR1,FOSB,SLIT2,PROK2,PTGDS,GHRL,PTAFR,CXCL1,CXCL5,NPY2R,OPRK1,C5,CXCL2,FPR1,CXCL9,PF4,CXCL6,HPRT1,CCL28,CCL27,CCL26,CCL24,CCL25,CCL22,CCL23,CCL20,CCL21,CCBP2,LECT2,ACSL4,SCG2,IL4,KLK8,RNASE2,IL8,NF1,CCL19,BRS3,SOD1,CCL16,CCL15,CCL18,CCL17,CCL11,GCG,LEP,CDH13,CCL13,FYN,MAPK14,C7ORF16,CRH,MC4R,HTR2C,VLDLR +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF2C1,AURKAIP1,ATP6AP2,LTBP4,EIF5,TLR1,TLR3,EIF5A,TLR4,TLR6,TLR7,CXCL12,SHH,TGFB1,IL10,TLR8,IL31RA,TLR9,APOA2,ATG7,DDX25,TDGF1,HRSP12,EIF1,EIF2B2,DNAJC1,EBI3,SPN,SAMD4A,EIF2B5,EGFR,BCL10,GTPBP4,IL29,IL27,SOCS1,PPARGC1A,TRAT1,BOLL,IL20,EIF2AK1,BACE2,RNF139,HSPB1,EIF2AK3,EIF2AK4,ITLN1,KATNB1,IGF2BP2,ITGB2,ARF6,MTIF2,MTIF3,TIMP1,EIF3C,IRAK3,EIF3D,CDC42EP2,EIF3A,EIF3G,INS,EIF3H,EIF3E,IL17F,EIF3F,SFTPD,CLASP1,EIF3I,EIF3J,ANGPTL3,UBE2D1,CDC42EP5,BMP4,PAIP2,CD276,FOXP3,FURIN,BRCA1,EIF4B,AKTIP,TSC1,EIF4H,GLMN,HGS,TNK2,GHSR,IL22RA2,LIMA1,METAP1,EIF2A,LATS1,YBX2,CDC42,NDUFS4,TPP1,GSN,CLCF1,MAPT,LTB,ARHGEF2,CCDC88A,LYN,PRG3,CCDC88C,NDUFA13,PRKCG,EIF1B,MID1IP1,INHA,SIGIRR,UBE2N,INHBB,EIF4A3,INHBA,EIF4G2,NCK2,CARD14,EIF4G3,CCND1,MAST2,CCND3,EREG,CD80,CCND2,MTRF1,EIF4A2,TPPP,NCK1,CD81,IL12A,GHRL,MDM2,TMSB4Y,MDM4,MAPRE1,IL12B,CLN6,HCFC1,TNFRSF8,EGLN2,STUB1,NECAB3,PAIP2B,AZU1,SET,KRT7,REN,SEPSECS,BCL3,DAZL,RASA1,CD28,APC,IL4,IL3,IL6,DAZ1,IL5,UPF1,NF2,CEBPG,HCLS1,IL9,ETF1,CAPG,NLRP12,PPP2R4,IRF4,FAF1,APBB1,IGFBP3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ALS2,RPL17,VAPA,CITED2,MYD88,GIT2,ABRA,GNG4,GNG7,CD40,RIC8B,BRAP,THY1,ATP2C1,NEK6,AFAP1L2,ARF6,ADRB3,IL17F,RAC1,GIT1,MDFI,TAOK2,LGALS1,TAOK3,NDFIP1,SMAD4,CIDEA,NDFIP2,SMAD3,SMAD2,TPD52L1,TAX1BP3,ECM1,LGALS9,APOL3,NOTCH2,CBLC,CDC42BPG,NUP62,RGS2,RGS3,RGS4,RGS5,CDC42BPA,GRK6,HGS,GRK4,RGS9,SMURF1,GRK5,ENG,CDC42BPB,GRK1,SLC20A1,TP63,GJA1,ZNF675,PTEN,GLI1,CANT1,NOD2,NOD1,TICAM1,TICAM2,TGFA,TMEM101,LTBR,LYN,NFAM1,FLNA,SIGIRR,AMBP,NCK2,INHBA,GRM4,ZDHHC17,TNFRSF10B,EREG,ZDHHC13,RIPK1,IL12A,EEF1D,TFG,TRIM13,FKBP1A,SQSTM1,PLEKHG5,VWC2,CC2D1A,CD24,CD27,HCLS1,NLK,IGF1,RICTOR,BIRC2,CDH13,SOST,EPGN,EEF1E1,NLRP12,HTR2B,SLC44A2,ATP6AP2,TBK1,TSPAN6,ZIC1,TLR6,TGFB1,IL31RA,DMPK,TMEM9B,CDKN2B,MIER1,MDFIC,TDGF1,RGN,GPR89A,BCL10,BST2,IL29,GOLT1B,RELA,SOCS1,FADD,TRAT1,IL20,TRIM38,PLCE1,MIB2,RIPK2,TNFAIP3,PPP5C,FGD2,FGD1,EID2,LITAF,SNX6,UBE2V1,CXXC5,PEG10,OTUD7B,TRAF7,TRAF6,FGD5,EGF,FGD6,TRAF5,FGD3,FGD4,CFLAR,CARD8,CARD9,MALT1,TRADD,TRAF3IP2,CDKN1C,IKBKE,TNFSF10,PLK2,TSC1,CDKN2AIP,IL22RA2,FASLG,ACVR1B,CLCF1,HMOX1,CASP8,RHOA,RHOC,SHC1,CASP1,RAMP1,RHOH,RALBP1,SLA2,OTX2,PIGU,ARHGAP27,ECT2,UBE2N,MFN2,ACVR2A,ACVR2B,ADRB2,HIPK2,ACVR1,PPM1A,TNFRSF1A,TMED4,RGS11,RGS12,REL,MAP3K3,SLC35B2,RASGRP4,REN,SECTM1,PTPRC,NF2,DTX1,NF1,EDA2R,CBY1,RGS16,FRZB,RGS14,RGS20,MAPK8IP2,MAPK8IP3,MAPK8IP1,F2R +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html PAM,KIF25,PDS5B,CDC23,NUSAP1,ESPL1,CENPE,NDC80,SMC4,CHMP1A,NCAPH,DDX11,ZWINT,SMC1A,CDCA5,ZW10 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html MBL2,TRAF2,CADM1,BCAR1,TLR8,TGFB2,MAP3K7,CFHR1,KRT1,IFNK,C2,TRAF6,PTPRC,CRTAM,IL29,SLA2,MALT1,NFAM1,TRAT1,CD1D,THY1,UBE2N,LAT2,EREG,FYN,IKBKG,IL12A,CD79A,IL12B +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html LIMA1,KATNB1,IL10,TIMP1,PAIP2B,CDC42,APOA2,SET,GSN,INS,SFTPD,BCL3,CLASP1,DNAJC1,APC,GTPBP4,ARHGEF2,IL6,NF2,PRG3,PAIP2,SOCS1,NDUFA13,PRKCG,MID1IP1,INHA,FOXP3,FURIN,TRAT1,SIGIRR,INHBB,EIF4A3,INHBA,EIF2AK1,TSC1,BACE2,CAPG,NLRP12,GHRL,PPP2R4,MAPRE1,TMSB4Y,MDM4,GHSR,EIF2AK3,APBB1,IGFBP3 +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html GC,SLC22A16,CUBN,PDPN,TCN2,SLC19A1,TCN1,FOLR3,FOLR2,FOLR1,SLC22A4,SLC22A5,SLC46A1 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html EGFR,IL3,IL5,NF2,LYN,IL29,HCLS1,SOCS1,ITGB2,IL20,IL31RA,CD80,CLCF1,TDGF1,CD81,IL12A,TNK2,IL22RA2 +PWCOMMONS REGULATION OF GENE SPECIFIC TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_SPECIFIC_TRANSCRIPTION.html ATF6,BMP2,BPTF,TRIM28,SPI1,PEX14,RORB,SMARCA1,ARHGEF10L,SCAP +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html NCBP2,ORAI1,SPACA3,ITLN1,CBL,TNFSF14,SMAD3,STIM1,PPT1,CDH1,LDLRAP1,FLNA,AHSG,AZU1,GATA2,GCK,GHRH,GSK3B,SFTPD,NLRP12,GHRL,CARTPT,TRIP6 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html E2F2,E2F3,RSF1,MED24,TBP,MED23,GTF2E1,GTF2E2,MAZ,MED26,MED27,GTF3C4,TAF2,SNAPC5,BRF1,TAF5,MED12,CDK9,MED14,MED13,CDK7,PPARGC1A,MED7,MED4,MED30,PTRF,GTF2I,MED16,MED17,GTF2F1,GTF2F2,THRAP3,NCOA6,SMARCA5,MED1 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html P4HB,CCBL1,SNCAIP,PRG3,GATM,ALDH5A1,HPRT1,CDO1,BBOX1,TGFB2,OAZ2,OAZ1,COLQ,DIO2,SULT1B1,ASMTL,ETNK1,DHPS,MAT2B,GAMT,SLC5A7,DIO1,SMS +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html SPACA3,ADORA2A,GULP1,COLEC12,ADORA1,ELMO1,AHSG,AZU1,CORO1C,GATA2,DOCK1,FCN2,FCGR1A,FCN1,SFTPD,CLEC7A,CD14 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html HS3ST5,NDST1,CHST3,GLCE,CHST7,CHST9,CHST12,CHST8,CHST11,CHST13,HS6ST1,EXT1,HS3ST3B1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html SMARCAD1,ENPP7,NBN,WRNIP1,MRE11A,TIPIN,UBE2V1,TNFSF13,UBE2V2,TERF2IP,GLI2,IL7R,TGFB1,CDT1,GLI1,SET,TSPYL2,TLK1,TLK2,ERCC4,TERF2,ERCC1,IL4,CDC6,GTPBP4,CCDC88A,POLH,NF2,PIF1,GMNN,CEBPG,S100A11,PRKCG,RAD9A,ATR,PPARGC1A,CDK2,RAD50,RAD51,UBE2N,EREG,KPNA2,KPNA1,RAD17 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html HRAS,CXCR3,CXCL11,CXCL12,IL10,TGFB2,CXCL10,CCRL2,CXCR4,SAA1,RALA,XCR1,FGF2,FOSL1,SPN,CCRL1,SYK,PLD1,C5AR1,RALBP1,CMKLR1,PIK3CB,SLIT2,PLAUR,CCR9,PROK2,CCR8,MAPK1,CCR7,CCR6,CCR5,CCR4,CCR3,CX3CR1,CCR2,DEFA1,PTAFR,CXCL1,CCL1,CCL3,CCL2,CXCL5,NPY2R,C5,CXCL2,CXCL9,FPR1,CCL8,PF4,ITGB2,CXCL6,CX3CL1,CCL5,CCL28,CCL27,CCL7,CCL26,CCL24,CCL25,CCL22,DOCK2,CCL23,CCL20,CCL21,KAL1,CKLF,SFTPD,CCBP2,LECT2,DEFB1,NOVA1,SCG2,IL4,RNASE2,IL8,MAP2K1,CCL19,SOD1,CCL16,CCL15,CCL18,CCL17,CCL11,CDH13,CCL13,CXCL14,CXCL13,MAPK14,LTB4R2,XCL1,PLAU +PWCOMMONS RNA ELONGATION http://www.broadinstitute.org/gsea/msigdb/cards/RNA_ELONGATION.html ADRM1,ERCC6,ELL,GTF2F2,TCEB2,CDK9,SUPT4H1,ELL3,SUPT5H,ELL2 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html ARHGDIG,EMCN,ACVRL1,IL18,CX3CL1,PTEN,PR47,AZU1,CD47,MIA3,CDKN2A,SAA1,PRSS2,TGFBI,TGM2,B4GALNT2,RASA1,SPN,ARHGDIA,ARHGDIB,KNG1,GTPBP4,ADAM10,NF2,IL8,NF1,CDK6,DLL1,CDH13,SIRPG,RND1,TSC1,IL12A,IL12B,ALOX12 +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html PTPRC,CD3D,IL7,IL27,JAG2,SOCS5,SPINK5,SART1,CD1D,LCK,ZAP70,CD4,IL12B,NHEJ1,IL2 +PWCOMMONS RESPONSE TO HEAT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HEAT.html AKT1,GCLC,CRNN,EIF2B2,SOD1,DNAJB4,EIF2B3,EIF2B1,EIF2B4,EIF2B5 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html ADORA2B,ZAK,PTPLAD1,C5,FPR1,MAP4K1,DAXX,MAP3K6,MAP3K5,MDFIC,MAP3K2,CXCR4,MAP3K9,TDGF1,ADRA2A,TGFA,SHC1,CHRNA7,ADRA2C,GNG3,EGF,FGF2,MDFI,DBNL,C5AR1,MADD,PIK3CB,KIAA1804,PKN1,SOD1,GRM4,PROK2,MAP4K5,PLCE1,ADRB2,EPGN,CD81,MAP3K10,GHRL,MAP3K11 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html HCCS,CYP24A1,OXA1L,GNPDA1,WFS1,PGD,AQP7,PDX1,OGDH,PDHB,PLOD1,SLC25A27,SPR,APOM,INSR,WWOX,TXNL1,FECH,NCF4,CDO1,PPARGC1A,POR,NNT,ATPIF1,SURF1,CROT,ACAA1,PHKA2,ME3,CYP1B1,ENPP1,GLUD2,PHKA1,POMC,ADRB3,INS,GYS2,C16ORF7,DYRK2,EPM2A,FDXR,CRAT,SLC25A12,NRF1,SLC25A14,GBE1,SLC25A13,AVPR1A,QPRT,ASIP,UQCRC2,MCHR1,PPARD,UQCRC1,CYB5R2,ENOX2,PHKB,LEPR,DUOX2,PPARG,DUOX1,PPOX,PDIA5,AKR1C3,NDUFS4,FXN,GPX4,SLC25A3,TREH,LOXL1,COX17,AKR1C1,NDUFS1,AVP,ACO2,SLC25A4,ALDH5A1,PHKG2,CYCS,RUNX1T1,GRHPR,DDO,MTRR,ACADVL,DHRS2,DHRS4,UQCRH,GIPR,GAA,AKR1D1,ALDH9A1,UQCRB,AOC3,XYLB,ECH1,ADH7,GCGR,ALDH3A1,SCO2,NOX4,CEBPA,DLST,NOX5,BCS1L,CYP4F11,GYG2,ISL1,ADIPOQ,BLVRA,LEP,SDHA,NDOR1,SDHB,PPP1R2,PYGM,GCK,SDHC,GFPT1,GSK3B,SDHD,GFPT2,RETSAT,PYGB +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN22,TIMM50,PTPN21,PTEN,TGFB1,NT5C,PTPRJ,PPP2R1A,PTPRM,PTPRN2,PTPRH,PTPRR,PTPRT,PTPRO,TPTE,PPM1G,PNKP,PPM1D,PPP1CA,SBF1,PPEF2,PPEF1,PPM1M,CTDP1,PPP2R2A,PPP5C,PPP6C,PPP2R3B,PPP2R3A,SSH1,SSH2,DUSP10,PPM1B,MTMR3,THTPA,DUSP13,PPP2CA,PTPLA,PPP2CB,PPAP2A,MTMR7,PTPN7,PTPRB,PTPRC,PTPN6,PTPRD,PTPN9,PTPRE,SMG6,PTPN18,PTPN3,PTPRZ1,SMG5,PTPN2,PTPN5,EPM2A,SMG7,PTPN4,PTPN14,DUSP22,PTPN13,PTPN12,DUSP5,DUSP4,DUSP3,DUSP2,PPP2R4,DUSP9,DUSP8,DUSP6 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html IMPA1,SGMS2,GBGT1,SGMS1,LASS5,PIGK,ST6GALNAC6,APOA1,PIGF,PIGG,LCAT,PIGH,PIGB,PIGC,PCYT2,AGPAT2,AGPAT1,PIGA,PIGZ,PIGY,PIK3C2A,PIGV,UGCG,PIGU,PI4KA,PIGT,PIGS,PI4KB,CHPT1,PIGO,PI4K2A,CD81,PGS1,GPAA1,ST8SIA1,ST8SIA3,DGKE,LPCAT1,B3GNT5,PEMT,ETNK1,PCYT1B,FADS1,LARGE,ST8SIA5,LASS1,DPM1,DPM2,DPM3 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html HMGB1,E2F2,E2F3,RSF1,NAP1L1,MED24,MED23,TBP,NAP1L3,NAP1L2,NAP1L4,GTF2E1,GTF2E2,SET,MAZ,MED26,MED27,ASF1A,GTF3C4,TAF2,ATF7IP,SNAPC5,BRF1,TAF5,MED12,CDK9,MED14,MED13,CDK7,PPARGC1A,MED7,MED4,MED30,PTRF,MED16,GTF2I,GTF2F1,MED17,THRAP3,GTF2F2,NCOA6,SMARCA5,PBX1,CHAF1A,PBX3,CHAF1B,PBX4,MED1 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html ORAI1,CCL8,CACNB3,CACNB4,SLN,NMUR1,NMUR2,TRPV5,CHRNA7,TRPC1,SLC8A1,TRPC4,CACNA2D1,TRPC3,TRPC5,STIM2,STIM1,TRPM2,NPY,ATP2C1,ATP2A3,PLN,RYR3,ATP2A1,RYR1,CACNA1D,CSN2 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html IL18,SPINK5,SART1,CD47,ZAP70,SFTPD,CD24,EBI3,CD28,IL4,PTPRC,SIT1,CD3E,IL7,IL27,CD276,SOCS5,IL21,THY1,NCK2,LAT,SIRPG,LAX1,NCK1,LCK,GLMN,IL12B,ICOSLG +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html ALS2,NRP2,RTN4,NRP1,RORB,LRRC4C,PAX2,GLI2,SHH,ROBO1,APOE,MAPT,CEP290,SEMA3B,ROBO2,POU4F1,UNC5C,SPON2,NRXN3,BAIAP2,OTX2,NRXN1,SLIT1,SLIT2,THY1,AMIGO1,NRL,SEMA4F,OPHN1,SIAH1,CNTN4,UBB,PARD3,CDK5R1,RTN4RL1,KAL1,BAI1,RTN4RL2,PARD6B,KLK8,DPYSL5,NTNG1,NTNG2,YWHAH,S100B,MAP1S,CYFIP1,FEZ2,FEZ1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F2RL2,COPA,F2RL3,F13A1,HPS4,GNA12,MMRN1,GP9,FLI1,SERPINE1,SLC22A4,SLC22A2,KNG1,F12,L3MBTL4,F10,F8,SLC34A1,F9,F7,WAS,PROC,THBD,CD36,GNAQ,HNF4A,F5,CD40LG,F2,TFPI,NPPB,PROS1,VIP,GGCX,AVPR2,ADORA2A,PABPC4,PF4,ITGB3,LMAN1,PR47,F13B,GP1BA,ENTPD1,PLAT,GUCA1B,NFE2,NPR1,ITGA2,C4BPB,TMPRSS6,PLG,CEL,GPI,VWF,CD59,F2R +PWCOMMONS COENZYME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_BIOSYNTHETIC_PROCESS.html ME1,COASY,COQ3,COQ2,MOCS2,GCLC,COQ7,GCLM,PDSS1,PDSS2 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html ING5,DCBLD2,DLC1,BMP10,ING4,PML,PPT1,OSGIN1,TGFB1,ACVR1B,CDKN2A,TSPYL2,CDKN2C,CDKN2D,SERTAD3,CDA,BCL6,NDUFS3,SERTAD2,ENO1,KLK8,SMAD4,TP53,SMAD3,NDUFA13,RB1,CAPRIN2,RERG,PPP1R9B,INHBA,CDKN1A,CDKN1B,ALOX15B,BBC3,CDKN2AIP,PTCH1,APBB2,APBB1 +PWCOMMONS EPITHELIAL TO MESENCHYMAL TRANSITION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_TO_MESENCHYMAL_TRANSITION.html S100A4,BMP2,TRIM28,TGFB3,HGF,BMP7,TGFB1,CTNNB1,TGFB2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html ALS2,RTN4,NRP2,NRTN,NRP1,POU6F2,LRRC4C,KCNIP2,PAX2,GLI2,GDNF,RTN1,SHH,TGFB2,NRCAM,ATP2B2,APOE,ROBO1,MAPT,ROBO2,POU4F1,SEMA3B,UNC5C,SPON2,NRXN3,LDB1,BAIAP2,MDGA1,OTX2,PICK1,MDGA2,ARTN,NRXN1,CDK5,SLIT1,SLIT2,THY1,FARP2,AMIGO1,RND1,SERPINF1,SEMA4F,BTG4,NPTN,OPHN1,TRAPPC4,GHRL,CNTN4,SIAH1,UBB,SMARCA1,PARD3,CDK5R1,LST1,RTN4RL1,BRSK2,PPT1,KAL1,BAI1,VWC2,PCSK9,KRT2,RTN4RL2,AGRN,LAMB1,PARD6B,KLK8,LMX1B,DTX1,NF1,NLGN1,DPYSL5,NTNG1,NTNG2,RACGAP1,YWHAG,YWHAH,S100B,MAP1S,CYFIP1,CIT,FEZ2,FEZ1 +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html UAP1,CHIA,LARGE,CHST7,CHST6,CHST2,CHST4,CHST5,NAGK,EXTL2,SLC35A3,CHIT1 +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html ME1,APOA2,GCK,GYS2,MAFA,CLEC7A,EIF2B2,EIF2B1,EIF2B3,SELS,EIF2B4,EIF2B5 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html XRCC2,MRE11A,CHEK1,SPO11,SYCP1,RAD21,HSPA2,DUSP13,RAD51L1,NPM2,STAG3,RAD51L3,TUBG1,CCNA1,TAF1L,ZW10,MSH5,MSH4,LIG3,PIM2,RAD52,RAD54L,BOLL,SMC3,SC65,ATM,RAD50,RAD51,RAD1,REC8,EREG,TOP3A,RAD54B,SMC1A,DMC1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html RTP3,KCNMB3,SYT1,RP1,KCNMB4,CASR,RTP4,CADM1,TACR1,PGLYRP1,TAC1,TAS1R3,NR2E3,OPN1SW,ABCA4,KCNIP2,KCNIP1,TAS1R2,KCNMB2,PDE6B,NLRC4,NOD2,NOD1,PGLYRP4,PGLYRP2,PGLYRP3,NPFFR2,UGT2A1,TAS2R43,UNC119,CRTAM,TRPC3,STIM1,NLRP3,SAG,CD1D,TAS2R16,PITPNM1,TAS2R14,TIMELESS,GCK,GRM6,PDC,CACNA1F,OPN4,RHO,GRK1 +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html GAPDHS,SLC22A16,ROPN1B,SMCP,ATP1A3,TNP1,ATP1A4,ATP1A1,ATP1A2,GAS8,AKAP4 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CADM1,ATP6AP2,IL18,TLR1,TLR3,TLR4,TLR6,TLR7,TLR8,TGFB2,TLR9,MAP3K7,NLRC4,APOA2,NOD2,NOD1,APOA1,IFNG,CHRNA7,LTB,EBI3,SPN,BCL10,CRTAM,PRG3,IL27,INHA,NLRP3,NLRP2,SIGIRR,INHBB,CARD11,INHBA,MAST2,HIF1A,EREG,CD40LG,IL12A,GHRL,IL12B,TRAF2,TNFRSF8,AFAP1L2,ABCA1,PYDC1,CALCA,AZU1,INS,IL17F,PYCARD,SFTPD,BCL3,CD24,TRAF6,SRGN,CD28,IL4,CARD8,IL6,CEBPG,IL9,CD276,SMAD4,SMAD3,CIDEA,MALT1,SOD1,FOXP3,NLRP12,GLMN,IRF4,GHSR +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html FMOD,EID2,COX11,COX10,ANLN,PXN,SRC,NDUFS7,NDUFS5,NDUFS4,NUBP1,PTK2B,ZFYVE9,NDUFS8,PEX13,AGRN,COX18,SCO1,COX15,CD3E,TGFBR1,TAZ,PICK1,SMAD4,SMAD3,MIS12,ADRM1,ADRB2,TMEM48,PRLR,NUP205,MAPK8IP2,SURF1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PGD,RNASEH1,RNF217,GLDC,ISG20,FAH,GOT2,GOT1,DDAH2,DDAH1,ANAPC2,ANAPC5,ANAPC4,UBR3,OLA1,PGLS,UHRF2,NNT,COLQ,UBR5,MGAM,FBXL4,AMFR,MPST,HSD17B11,ALDOA,HACL1,HSD17B14,PFKFB1,PABPC4,ALDOB,PPT1,HSPA1B,ASL,HADHB,ARG1,ARIH1,GAD2,CDA,GCSH,ALDH4A1,NTHL1,GAD1,FBXO7,NPLOC4,CYP46A1,GUSB,HGD,CDC23,CIDEA,PCNP,TPD52L1,CDC20,UBE2L3,CEL,POP1,SMURF2,SMURF1,PLA2G4C,PLA2G4B,PPARA,BCKDK,PPARD,KIAA0368,TSG101,UBE2G1,UBE2G2,BNIP3,AUH,MCCC2,NT5M,GPX3,GSTZ1,NT5C,ZFP36,ABCE1,SPACA3,STS,ACO2,UFD1L,AIFM1,HYAL4,HAO1,HAO2,SIAH2,ECH1,HK1,EDEM1,SQSTM1,RNASET2,HSD17B6,USP33,BCKDHA,CPT1B,UPF2,BCKDHB,ACLY,SOD1,CPT1A,SELS,GAPDHS,BLVRA,SDHA,GBA3,GBA2,SDHB,PSMD14,YWHAH,GLA,PPP1R8,SDHC,SDHD,PYGB,GNPDA1,ALDH1L1,BTRC,PDHB,APOA4,ASPA,CDKN2A,APOA5,MIOX,CPA2,FBXO22,DFFA,NUDT3,DFFB,NUDT5,CECR2,RNASEH2A,PNPLA3,GNS,NEU3,XRN2,DERL2,FZR1,SYVN1,DERL1,GLUD1,NEDD8,UBE2V2,ANAPC10,CHIT1,UBE2D3,UBE2D2,ASRGL1,RNF11,ENTPD4,UBE2D1,SMG6,SMG5,SMG7,SMG1,TST,PSMC5,VCP,UBE2E1,AMT,TPP1,TREH,HPD,UBE2A,ACADM,PFKL,ALDH5A1,ACADS,CYCS,UBE2I,PFKM,UBE2H,UBE2C,DDO,UGT1A1,UBE2B,ACADVL,UBE2N,UBE2K,PRDX6,GAA,ERN2,DHPS,UBB,AKR1D1,ADAMTS13,UBE3A,ECHS1,TKTL1,STUB1,ERCC5,ECD,BDH2,ERCC3,ERCC4,ERCC1,ERCC2,RNF144B,FOXL2,RNASE2,RNASE3,UBE4A,RNASE6,UBE4B,PARK2,AMPD3,GSPT1,BAX,UGT2B4,SMPD4,SMPD3 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PRC1,DBF4,KNTC1,PKMYT1,TTK,AURKA,CDC16,TTN,FOXO4,TGFB1,CUL3,CUL2,CUL5,CDKN2A,DDX11,CDKN2B,CDKN2C,TARDBP,CDKN2D,CCNA2,CDCA5,CUL1,ANAPC5,RAN,RINT1,ANAPC4,POLE,SKP2,TBRG4,ESPL1,DCTN3,FOXN3,DCTN2,MAD2L1,ZWINT,CLIP1,STMN1,AKAP8,MAD2L2,NEK6,RAD17,PPP5C,PAM,NEK2,AFAP1L2,ANAPC10,ANLN,ANAPC11,RCC1,PIN1,KATNA1,NPM2,CDC123,PBRM1,FBXO5,EGF,GML,SSSCA1,TAF1,SPHK1,CDC23,SMAD3,TPD52L1,NDC80,SUGT1,CDC27,ATM,CDKN1C,CDKN1A,CDKN1B,NOLC1,PLK1,POLD1,MYO16,ABL1,SMC1A,E2F1,KIF23,KIF22,NBN,KIF25,LATS1,LATS2,TRIAP1,ACVR1B,KIF2C,GFI1B,CEP250,PCBP4,PRMT5,TGFA,CDK10,DLG1,ZW10,KHDRBS1,CDC7,CDC6,KIF11,KIF15,TPX2,NUSAP1,CDK6,CDK4,UBE2C,CDK2,SPDYA,INHBA,CHMP1A,EREG,BTG3,CDK2AP1,USH1C,BUB1B,FOXC1,CHFR,KPNA2,MAP3K11,ACVR1,BCAT1,PPP6C,PML,POLA1,CETN1,ASNS,BRSK1,NUMA1,NCAPH,BUB1,PAFAH1B1,GFI1,CD28,PDS5B,CENPF,CENPE,BIRC5,CDC25C,CDKN3,SMC3,SMC4,CDC25B,MPHOSPH9,CUL4A,GSPT1,EPGN,MPHOSPH6,APBB2,CIT,APBB1 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html IL31RA,NDUFS4,MCM7,CDKN2A,CDKN2B,ANG,CDKN2C,CLCF1,CDKN2D,TDGF1,EGFR,BCL10,CCDC88A,IL29,LYN,CCDC88C,SOCS1,INHA,IL20,INHBA,CCND1,CARD14,CCND3,EREG,PSEN1,CD80,CCND2,CD81,IL12A,RAD17,ITLN1,ITGB2,CD24,EGF,BMP4,IL4,IL3,IL5,NF2,HCLS1,CDKN1A,CDKN1B,AKTIP,NLRP12,GLMN,TNK2,IGFBP3,BARD1,IL22RA2 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html LDLR,GPAA1,PPT1,SCARF1,APOA4,FNTB,PIGK,APOA2,FNTA,APOA1,PIGF,PIGG,PIGH,ATG7,PIGB,CHM,PIGC,NPC1L1,CETP,ANGPTL3,PGGT1B,PIGA,AIPL1,PIGZ,PIGY,PIGV,PIGU,PIGT,PIGS,PIGO,DPM1,DPM2,DPM3 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html TBX6,SECTM1,IKZF3,TBX3,IKZF1,HCK,BMX,SMAD2,TRIM15,SNAI2,SLIT2,BTK,TCF21,T,EYA2,GDF11,JAK2,TIE1,KLF4,TCF15,MEST,MATK +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ALDH1L1,PTGS1,SLC7A8,SLC7A9,GGT1,SLC7A4,SLC7A5,AGXT,SLC7A6,BBOX1,FAH,SLC7A7,GLDC,GOT2,ASPA,GOT1,SCLY,PLOD1,MAT1A,DDAH2,DDAH1,NANP,ALDH6A1,YARS,GATM,DARS,AARS,QDPR,CDO1,PECI,PPARGC1A,SARS2,PNPLA8,PYCR1,NPC1,ALOX15B,RARS,CROT,MPST,ME1,HACL1,ME3,ACADSB,GCLC,GLUD2,GNE,GLUD1,FARS2,PFKFB1,PAH,ASL,GCLM,CD74,KARS,HADHB,ARG1,GAD2,ALDH4A1,ASRGL1,IDH1,GCSH,GAD1,NR1H4,FH,MCAT,SLC6A14,HGD,IDH3B,BRCA1,TST,CYP7B1,ATF4,BAAT,MLYCD,SLC7A2,SLC25A10,FAAH,FPGS,SLC25A15,PTGES3,ACOX2,PPARA,BCKDK,PPARD,CYP2J2,AMT,ACOT2,ACOT1,ACOT4,ACN9,ACOX3,SC4MOL,ACOT9,GSS,AKR1C3,MTHFD2,MCCC2,AKR1C2,WARS,TYR,MSRA,CYP39A1,PTGES,HDC,ACOT12,GNPAT,GSTZ1,AGPAT2,AKR1C1,AGPAT1,HPD,ACADM,PEPD,PRG3,ACO2,ACADS,ACO1,ALDH5A1,ADIPOR2,ADIPOR1,SLC3A1,DDO,HAO1,ACADVL,PTGDS,SDS,AS3MT,HAO2,SLC27A6,SMS,AKR1D1,SLC27A2,SLC27A5,ALOX12,DEGS1,BCAT1,ALDH18A1,ECH1,HSD3B7,NFS1,UGDH,ECHS1,MIF,GLS2,DCT,TNFRSF1A,MTHFR,ABCD2,MARS2,BDH2,PTS,BCKDHA,CPT1B,FADS1,BCKDHB,FTCD,IGF1,FADS2,ACLY,CPT1A,OXSM,ADI1,GBA2,CYP4F8,CYP4A11,GLYAT,GCK,SLC6A6,LTA4H,MAT2B,CYP4F3,GAMT,CYP4F2,HPGD +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CADM1,ATP6AP2,BCAR1,IL18,FST,TNFSF13,TLR8,TGFB1,SART1,TGFB2,MAP3K7,CFHR1,CD47,NOD2,IFNG,IFNK,EBI3,CRTAM,SPACA3,IL29,CD3E,SLA2,SOCS5,NFAM1,IL21,TRAT1,THY1,UBE2N,CARD11,PROK2,NCK2,LAT2,SIRPG,EREG,CD40LG,NCK1,LCK,IL12A,IL12B,ICOSLG,MBL2,TRAF2,AFAP1L2,CALCA,MIA3,ZAP70,KRT1,CD24,C2,TRAF6,CD28,IL4,BMP4,PTPRC,KL,IL7,SPHK1,CD276,MALT1,SOD1,CD1D,FYN,IKBKG,ATP2A1,MC4R,CD79A +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html BCL10,TNF,RELA,UBE2V1,EDA2R,PRDX3,UBE2N,PRKCQ,CARD11,NOD2,NLRC3,NPM1,PYCARD,ERC1,IKBKB,EDA,MAP3K13,CAMK2A +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F2RL2,GGCX,F2RL3,ADORA2A,F13A1,PABPC4,GNA12,PF4,ITGB3,LMAN1,MMRN1,GP9,PR47,F13B,SERPINE1,GP1BA,ENTPD1,KNG1,PLAT,F12,L3MBTL4,F10,F8,F9,ITGA2,C4BPB,F7,TMPRSS6,WAS,PLG,PROC,VWF,CD36,THBD,GNAQ,F5,HNF4A,CD40LG,CD59,F2,TFPI,PROS1,F2R +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF2C1,EIF5,EIF5A,LRRC4C,CXCL12,GATA2,PACSIN3,ROBO1,APOE,HRSP12,EIF1,ROBO2,TLK1,TLK2,EIF2B2,EIF2B5,MYH9,PPARGC1A,BOLL,NEBL,THY1,HSPB1,EIF2AK3,EIF2AK4,FGD2,HMGB1,FGD1,KATNB1,PPT1,ARF6,MTIF2,MTIF3,AHSG,EIF3C,IRAK3,EIF3D,CDC42EP2,EIF3A,CDC42EP1,EIF3G,EIF3H,EIF3E,RAC1,EIF3F,SFTPD,CLASP1,EIF3I,EIF3J,CLASP2,FGD5,CDC42EP4,FGD6,STK38L,ARHGEF10L,FGD3,FGD4,CDC42EP5,TAOK2,PAIP2,PIF1,EIF4B,TSC1,EIF4H,RTN4,LIMA1,AP2S1,TERF2IP,LATS1,CDC42,CEP250,GSN,ZFYVE16,MAPT,ATF7IP,ARHGEF2,SPACA3,CCDC88A,EIF1B,MID1IP1,NEXN,LDLRAP1,SLIT2,UBE2N,AMIGO1,NCK2,EIF4G2,EIF4G3,MTRF1,NCK1,TPPP,EIF4A2,GHRL,TMSB4Y,MAPRE1,UBB,STON2,STON1,HCFC1,PAIP2B,AZU1,SORBS3,SET,DAZL,ERCC4,ERCC1,TERF2,RASA1,APC,COL4A4,DAZ1,KLK8,UPF1,NF2,CBL,CRIPAK,ETF1,CDH13,YWHAH,CAPG,PBX1,FAF1,PBX3,PBX4 +PWCOMMONS PURINE RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_RIBONUCLEOTIDE_METABOLIC_PROCESS.html ADSS,FIGNL1,OLA1,AK5,ACLY,C16ORF7,CTNS,AMPD3,GUK1,NDUFS1 +PWCOMMONS COFACTOR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_CATABOLIC_PROCESS.html BLVRA,SDHA,SDHB,ALDH1L1,NNT,ACO2,SDHC,SDHD,UGT1A1,PDHB +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ALS2,ARHGAP4,ARHGAP5,APOA1,APOE,ARHGAP1,RHOA,RRAS,RHOB,ABRA,RHOD,FGF2,RHOG,DBNL,PLD1,ROCK1,RREB1,RALBP1,LIMK1,G3BP1,ARHGAP27,ARHGAP29,FARP2,ELMO1,MFN2,PLCE1,CRKL,SGSM3,GNB1,CFL1,LCK,GRAP2,FGD2,ARHGDIG,FGD1,GRAP,GRB2,MRAS,RTKN,MYO9B,ARF6,ABCA1,ROPN1B,RASGRP4,SOS1,RASGRP1,RAC1,APOC3,ADRA2A,FGD5,FGD6,ARHGDIA,FGD3,ARHGDIB,FGD4,CNKSR1,NF1,IGF1,TAX1BP3,PARK7,NOTCH2,CDH13,LAT,TSC1,RASSF1 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html TM7SF4,MMP9,CSF1,SPI1,ZNF675,PF4,ZBTB16,FOXO3,IL31RA,CALCA,ACVR1B,CDC42,ALAS2,SNRK,RASGRP4,DYRK3,ACIN1,RUNX1,MYST1,MYST3,IL4,LYN,MAFB,CEBPG,HCLS1,LDB1,CDK6,INHA,IFI16,MYH9,ACVR2A,INHBA,RPS19,ETS1,NCOA6,SCIN,CARTPT +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html XRCC2,DBF4,KNTC1,TTK,PKMYT1,AURKA,CDC16,TTN,FOXO4,TGFB1,CUL3,CUL2,CUL5,RAD21,CDKN2A,DDX11,CDKN2B,CDKN2C,CDKN2D,TARDBP,STAG3,CCNA1,CDCA5,CCNA2,CUL1,ANAPC5,RAN,ANAPC4,POLE,RINT1,SKP2,LIG3,TBRG4,ESPL1,PIM2,DCTN3,BOLL,FOXN3,DCTN2,RAD1,REC8,MAD2L1,TIMELESS,ZWINT,CLIP1,AKAP8,MAD2L2,RAD17,NEK6,PPP5C,PAM,NEK2,MRE11A,TIPIN,CHEK1,ANAPC10,ANLN,ANAPC11,RCC1,SYCP1,PIN1,PRUNE2,DUSP13,RAD51L1,NPM2,KATNA1,PBRM1,RAD51L3,EGF,GML,SSSCA1,TAF1,CDC23,NDC80,TPD52L1,SUGT1,CDC27,RAD54L,ATM,CDKN1C,CDKN1A,CDKN1B,NOLC1,PLK1,POLD1,MYO16,RAD54B,ABL1,SMC1A,E2F1,KIF22,NBN,KIF25,LATS1,LATS2,TRIAP1,ACVR1B,KIF2C,GFI1B,PCBP4,PRMT5,TGFA,CDK10,ZW10,TAF1L,KHDRBS1,CDC7,CDC6,KIF11,KIF15,TPX2,NUSAP1,CDK6,RB1,RAD52,UBE2C,CDK4,RAD50,CDK2,RAD51,SPDYA,INHBA,CHMP1A,EREG,CDK2AP1,TOP3A,BUB1B,USH1C,CHFR,DMC1,KPNA2,MAP3K11,ACVR1,BCAT1,PPP6C,PML,POLA1,CETN1,SPO11,BRSK1,NCAPH,NUMA1,HSPA2,KRT7,BUB1,GFI1,CD28,PTPRC,PDS5B,MSH5,MSH4,CENPF,CENPE,BIRC5,CDKN3,CDC25C,SC65,SMC3,CDC25B,SMC4,MPHOSPH9,GSPT1,CUL4A,EPGN,APBB2,MPHOSPH6,CIT,APBB1 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html TM7SF4,CSF1,MMP9,JAG2,ZNF675,TPD52,SPINK5,SART1,IL31RA,CALCA,CDC42,ZAP70,CD4,ACIN1,RUNX1,IL4,PTPRC,CD3D,IL7,CEBPG,IL27,INHA,IFI16,SOCS5,NFAM1,MYH9,CD1D,HDAC5,INHBA,HDAC4,LCK,CARTPT,IL12B,CD79A,HDAC9,NHEJ1,IL2 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html ADORA2B,ZAK,PTPLAD1,DUSP10,MAP4K2,ZNF675,MAP4K1,DAXX,MAP3K6,MAP3K5,MAP3K4,MDFIC,MAP3K2,MAP3K9,CD27,MDFI,GPS1,DBNL,CARD9,TNIK,TAOK2,KIAA1804,TAOK3,MAP2K4,MINK1,PKN1,EDA2R,TPD52L1,MAPK10,GPS2,AMBP,MAP4K3,SH2D3C,MAP4K5,SH2D3A,CRKL,HIPK2,MAPK8IP2,MAP3K10,MAPK8IP3,MAPK9,MAPK8,MAPK8IP1,DUSP9,MAP3K13,MAP3K12,MAP3K11 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RPL17,SLC44A2,SLC20A1,VAPA,TBK1,TSPAN6,GJA1,FASLG,TLR6,CANT1,NOD2,TMEM9B,NOD1,MYD88,MIER1,HMOX1,CASP8,TICAM1,TICAM2,RHOA,TMEM101,RHOC,CASP1,GPR89A,BCL10,LTBR,BST2,GOLT1B,RELA,FADD,CD40,ECT2,FLNA,UBE2N,TRIM38,ZDHHC17,TNFRSF10B,ATP2C1,MIB2,RIPK1,ZDHHC13,RIPK2,EEF1D,NEK6,PPP5C,LITAF,PPM1A,TFG,TRIM13,UBE2V1,FKBP1A,CXXC5,TNFRSF1A,TMED4,REL,MAP3K3,SLC35B2,PLEKHG5,CC2D1A,TRAF6,TRAF5,SECTM1,CFLAR,CARD9,LGALS1,NDFIP1,NDFIP2,MALT1,ECM1,BIRC2,LGALS9,TRADD,TRAF3IP2,APOL3,IKBKE,TNFSF10,PLK2,NUP62,HTR2B,F2R +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html UPF1,MTERF,TNP1,ETF1,HMGA1,TTF2,MAZ,SET,SMARCE1,MTRF1,HRSP12,SUPT16H,NRG1 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD2,ALS2,FGD1,RALBP1,NF1,ARHGAP27,ARF6,MFN2,NOTCH2,PLCE1,TSC1,RASGRP4,RAC1,ABRA,FGD5,FGD6,FGD3,FGD4 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html ENOX2,SPRR2G,SPRR2F,SPRR2E,SPRR2C,SPRR2D,SPRR2A,SPRR2B,PER2,PER1,AANAT,CRY1,EIF2B2,EIF2B4,EIF2B5,FOXL2,EGR3,ARNTL,SOD1,PTGDS,EREG,TIMELESS,HTR7,HEBP1,CARTPT,BMPR1B,CLOCK,MTNR1A,OPN4 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHIA,SNCAIP,GNPDA1,B3GALT6,SLC7A8,SLC7A9,GGT1,SLC7A4,SLC7A5,SLC35A3,SLC7A6,BBOX1,FAH,GLDC,SLC7A7,TGFB2,GOT2,ASPA,ST3GAL2,GOT1,SCLY,PLOD1,MAT1A,SULT1A1,ASMTL,ST3GAL6,SULT1A2,SPR,NQO1,DDAH2,DDAH1,NANP,EGFR,ALDH6A1,YARS,GATM,DARS,AARS,QDPR,CDO1,SARS2,GLCE,GNS,PYCR1,ISCU,COLQ,HAS1,SULT1B1,RARS,EXT1,EXT2,MPST,GCLC,GCNT2,ASS1,GLUD2,GNE,FARS2,GLUD1,PAH,ASL,NAGK,EXTL2,GCLM,KARS,CHIT1,OAZ2,ARG1,B3GNT8,GAD2,OAZ1,GCSH,ASRGL1,ALDH4A1,GAD1,B4GALT7,P4HB,UAP1,GUSB,SPHK1,SLC6A14,HGD,TST,ATF4,BAAT,DIO2,SLC7A2,DIO1,FPGS,SLC25A15,HSP90AB1,BCKDK,AMT,AKT1,GSS,MCCC2,WARS,TYR,MSRA,XYLT1,HDC,CHST12,CHST11,GSTZ1,CHST13,HPD,HSP90AA1,PEPD,PRG3,ALDH5A1,CHST2,CHST3,CHST4,CHST5,SLC3A1,HYAL4,DDO,CHST1,CHST7,SDS,CHST6,DHPS,SMS,AOC3,CLN6,BCAT1,ALDH18A1,GALNT5,NFS1,UGDH,HPRT1,GCH1,DCT,GLS2,MTHFR,B4GALNT2,ETNK1,MARS2,SULT1C2,PTS,GCHFR,BCKDHA,BCKDHB,ADI1,LARGE,GLA,SLC6A6,MAT2B,GAMT,SLC5A7 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CCL1,CCL3,HS3ST6,DERL1,RSF1,CCL2,HS3ST5,VAPB,OPRK1,RRAGA,EIF5A,CALCOCO2,DEK,HCFC2,APOBEC3G,APOBEC3F,CCL4,TGFB1,SMARCB1,WWP2,MDFIC,WWP1,HTATSF1,CXCR6,GFI1,ITCH,TOP2A,TNIP1,PARD6A,CTBP1,CTBP2,IL8,SMAD3,HBXIP,UBP1,CLEC4M,TARBP2,PPIA,CD209,CD81,ACE2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PTGES3,ACOX2,PPARA,PPARD,CYP2J2,ALDH1L1,PTGS1,ACOT2,ACOT1,AGXT,ACOT4,BBOX1,ACN9,ACOX3,SC4MOL,AKR1C3,ACOT9,MTHFD2,AKR1C2,CYP39A1,PTGES,ACOT12,GNPAT,AKR1C1,ACADM,PRG3,ALDH5A1,ACADS,ADIPOR2,ADIPOR1,PECI,PPARGC1A,ACADVL,HAO1,PNPLA8,NPC1,PTGDS,ALOX15B,HAO2,SLC27A6,AKR1D1,SLC27A2,SLC27A5,CROT,ALOX12,DEGS1,HACL1,ME3,ACADSB,ECH1,HSD3B7,PFKFB1,UGDH,ECHS1,CD74,MIF,HADHB,TNFRSF1A,ABCD2,BDH2,NR1H4,CPT1B,FADS1,MCAT,FTCD,FADS2,IGF1,BRCA1,CPT1A,OXSM,CYP4F8,CYP7B1,GBA2,CYP4A11,GLYAT,ATF4,BAAT,GCK,MLYCD,SLC25A10,FAAH,LTA4H,CYP4F3,CYP4F2,HPGD +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html LIMA1,ARF6,CXCL12,LATS1,NEBL,NCK2,CDC42EP2,GSN,NCK1,CAPG,TMSB4Y,RASA1,CDC42EP5 +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html DOCK2,IL8,SAA1,CKLF,SFTPD,PF4,ITGB2,CX3CL1,IL10,SYK,SCG2,TGFB2 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html KHDRBS1,NCBP2,MDFI,NUDT4,NFKBIE,NF1,SMAD3,TNFSF14,CDH1,NLRP3,MXI1,NFKBIL1,UHMK1,TGFB1,FLNA,NFKBIL2,GSK3B,NLRP12,BCL3,FAF1,TRIP6,BARD1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html POU6F1,GLI2,ZIC1,SHH,ZIC2,NDUFS4,CEP290,ROBO2,UNC5C,ALX1,EGR2,MDGA1,OTX2,SIX3,ALK,SLIT1,TBR1,VCX3A,PITPNM1,BPTF,GPR56,FOXG1,NCOA6,CNTN4,SMARCA1,CLN5,UTP3,SHROOM2,CDK5R1,SHROOM4,UBE3A,NNAT,DSCAML1,PPT1,HESX1,ECE2,LHX6,NKX2-2,DMBX1,NF1,AFF2,FOXP2,PCDH18,DLX2,MAP1S,PHGDH,MYO16,PBX1,CTNS,PBX3,PBX4 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html ACVRL1,HTATIP2,IL18,TNFSF12,GLI2,FOXO4,SPINK5,CANX,SHH,TGFB2,ANG,ROBO4,CEP290,ERAP1,RHOB,CHRNA7,MYH9,NCL,SLIT2,THY1,PROK2,EYA2,SERPINF1,BTG1,VEGFA,NPPB,ATPIF1,EMCN,RNH1,PML,PF4,TRIM15,CD9,AGGF1,IL17F,RUNX1,EGF,ANGPTL3,C1GALT1,SCG2,ANGPTL4,COL4A3,COL4A2,IL8,NF1,SPHK1,NPR1,SMAD2,TNNI3,PLG,CDH13,STAB1,EPGN,NOTCH4,AMOT,KLF4 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html TRAF2,MBL2,CADM1,IL28RA,RSAD2,BNIP3,TNFSF13,APOBEC3G,APOBEC3F,TLR7,TLR8,TGFB1,CD74,MAP3K7,CFHR1,APOA2,APOA1,FCN2,BCL2,FCN1,KRT1,C2,TRAF6,IL4,PTPRC,CRTAM,IL29,CEBPG,DEFB103A,SLA2,MALT1,FOXP3,NCR1,TARBP2,CD40LG,BNIP3L,IL12A,IL12B +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html CCKAR,NUAK2,GNAI2,ENPP1,PPARG,ASNS,ENSA,GCGR,CDKN2B,ALB,CDKN2D,PCSK9,OGT,SREBF1,STC2,FADS1,TP53,LEP,SSTR2,CHMP1A,TULP4,NPY,SSTR1,GIPR,GHRL,CARTPT,STC1,GHSR,SST +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html SGMS2,GBGT1,PTGS1,SGMS1,LASS5,APOA1,AGPS,LCAT,UGCG,NR0B1,PNPLA3,CHPT1,PLCE1,PI4K2A,HSD11B2,MVK,CNBP,TFCP2L1,ST8SIA1,ST8SIA3,PDSS1,CD74,PDSS2,B3GNT5,LPCAT1,PEMT,PCYT1B,CYP19A1,MCAT,FDXR,FDPS,BRCA1,CYP7B1,LASS1,ST8SIA5,IDI1,BMP6,PTGES3,IMPA1,ALG1,CYP11B2,PEX7,PIGK,ST6GALNAC6,AGPAT6,CYP39A1,PIGF,ANG,PIGG,PIGH,PIGB,NPC1L1,PIGC,PCYT2,AGPAT2,AGPAT1,DHCR24,PIGA,PIGZ,PIGY,CYP11A1,PRG3,PIK3C2A,PIGV,PI4KA,PIGU,PIGT,PIGS,PI4KB,PIGO,DGAT2,PTGDS,ADM,CD81,AKR1D1,DEGS1,PGS1,HSD3B1,HSD3B7,GPAA1,MIF,DGKE,DHCR7,ETNK1,NSDHL,FADS1,FADS2,SOD1,OXSM,LARGE,DPM1,DPM2,DPM3,LTA4H,SCP2,HPGD,NR5A1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html HCCS,CDX1,HRAS,IL18,FGF16,TGFB3,FGF10,RORB,PDX1,TNFSF12,FOXO4,ZIC1,TGFB1,SHH,TGFB2,FLI1,CUL7,ROBO4,CEP290,ERAP1,CHRNA7,PITX3,PITX2,SYK,BRAF,VANGL2,FOXN1,MYH7,MYH6,MYH9,PROX1,SIX6,THY1,MSX1,SERPINF1,VEGFA,ATPIF1,ODAM,FGD1,EMCN,CCL2,AMTN,ONECUT2,ELN,DSCAML1,EPHB4,AGGF1,ITGAX,LHX1,LHX3,IL17F,RUNX1,EGF,LAMB1,ANGPTL3,SFTPB,ANGPTL4,COL18A1,CCM2,HTT,SPHK1,ITGA2,TNNI3,TINAG,NKX6-1,NOTCH2,NOTCH4,GLMN,FABP1,ENG,GYPC,ACVRL1,HTATIP2,NRP1,MYBPC3,PAX6,PAX5,PAX4,PAX3,GLI2,LSR,CANX,SPINK5,CRX,SPRY2,DGCR2,AES,HEY1,ANG,DGCR6,HEY2,RHOB,GNPAT,FGF2,STX2,EGFL7,TLE3,TLE1,TLE2,NCL,PROK2,EREG,BTG1,GAA,NPPB,FOXC1,ABLIM1,ETV7,SHROOM2,PML,RNH1,PF4,DCN,POU1F1,APLP1,COL9A1,COMP,LY6H,PKD2,PCSK9,C1GALT1,RASA1,SCG2,COL4A3,COL4A2,IL8,TBX3,IL7,PLAC1,CEBPG,TBX4,NF1,NPR1,TBX1,COL5A3,SOD1,PLG,CDH13,STAB1,EPGN,BAX,AMOT,PTCH1,TMEM176B +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html KCNMB3,RTP3,KCNMB4,SYT1,CASR,RTP4,STIM1,TAS1R3,KCNIP2,KCNIP1,TAS1R2,KCNMB2,TAS2R16,NOD2,TAS2R14,GCK,TAS2R43,UGT2A1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html GNA15,TNFSF15,PMAIP1,EDNRA,NLRC4,CDKN2A,CASP8AP2,CASP9,ANG,NMUR1,NMUR2,APOA5,RGN,PLCB2,EGFR,C5AR1,AIFM3,CCKBR,RALBP1,CYCS,TP53,ARHGAP27,NLRP3,NLRP2,BCL2L10,THY1,TNNT2,GNAQ,IFNB1,F2,LCK,ERN1,APOC2,MOAP1,MTCH1,DIABLO,HIP1,COL4A3,FOXL2,CARD8,SMAD3,STAT1,VCP,BBC3,IFT57,BAX,AVPR1B,AVPR1A,PPP2R4,APAF1,F2R +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html CDC7,PTPRC,POLA1,TIPIN,RCC1,CHMP1A,DDX11,TIMELESS,POLD1,CDK2AP1,MYO16,ABL1,APBB2,APBB1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html ADORA2B,ZAK,ERBB2,PTPLAD1,C5,FPR1,MAP4K1,TLR6,DAXX,MAP3K6,MAP3K5,CXCR4,MDFIC,MAP3K2,MAP3K9,TDGF1,ADRA2A,TGFA,CHRNA7,ADRA2C,SHC1,CD24,PAK1,GNG3,EGF,FGF2,MDFI,EGFR,DBNL,C5AR1,PIK3CB,MADD,KIAA1804,PKN1,TPD52L1,SOD1,GRM4,PROK2,MAP4K5,PLCE1,ADRB2,EPGN,CD81,MAP3K10,GHRL,MAP3K11 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html BCKDHA,BCKDK,AMT,GLUD1,BCKDHB,HGD,ASL,DDO,FAH,GLDC,GOT2,ARG1,MCCC2,ASPA,GAD2,GOT1,GSTZ1,ASRGL1,ALDH4A1,GCSH,DDAH2,DDAH1,GAD1,HPD +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html NBN,ZAK,HUS1,KNTC1,TIPIN,PML,TTK,CHEK1,BRSK1,CHEK2,CCNG2,TGFB1,CDT1,CCNE2,TRIAP1,CDKN2A,CDKN2B,PCBP4,BUB1,FANCG,ERCC3,GML,ATRIP,CCNA2,ZW10,ERCC2,CDC6,DDB1,RINT1,RAD9A,BIRC5,RB1,ATR,NEK11,FOXN3,ATM,NAE1,RBBP8,RAD1,XPC,MAD2L1,ZWINT,BUB1B,SMC1A,MAD2L2,CHFR,RAD17 +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html MFN2,BAK1,OPA1,DNM1L,BCL2,TAZ,TP53,BNIP3,TIMM50,BCL2L1,COX18 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html TNFSF15,PMAIP1,NLRC4,MOAP1,CDKN2A,CASP9,CASP8AP2,MTCH1,DIABLO,HIP1,COL4A3,FOXL2,CARD8,AIFM3,CYCS,TP53,SMAD3,STAT1,NLRP3,NLRP2,BCL2L10,VCP,BBC3,IFNB1,IFT57,BAX,F2,LCK,APAF1,F2R +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html IL4,PTPRC,CD3E,IL18,CD276,IL21,NCK2,NCK1,CD24,IL12B,EBI3,ICOSLG,CD28 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html AURKAIP1,TLR1,TLR3,EIF5A,TLR4,TLR6,TLR7,TGFB1,TLR8,TLR9,IL31RA,APOA2,CLCF1,TPP1,ATG7,MAPT,TDGF1,LTB,EBI3,SPN,SAMD4A,EIF2B5,BCL10,PRG3,IL29,LYN,IL27,PPARGC1A,BOLL,IL20,UBE2N,NCK2,CARD14,CCND1,CCND3,EREG,CD80,CCND2,TPPP,NCK1,CD81,IL12A,IL12B,CLN6,ITLN1,KATNB1,TNFRSF8,ARF6,STUB1,AZU1,CDC42EP2,BCL3,DAZL,UBE2D1,CDC42EP5,CD28,IL4,BMP4,IL3,IL6,DAZ1,IL5,HCLS1,CEBPG,IL9,CD276,BRCA1,AKTIP,GLMN,PPP2R4,TNK2,IRF4 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GNPDA1,CHIA,B3GALT6,PGD,SLC35A2,SLC35A3,PDHB,ST3GAL2,MIOX,ST3GAL6,NANP,IDUA,IRS2,FBP1,FBP2,PPARGC1A,GLCE,GNS,PGLS,NNT,HAS1,MGAM,EXT1,EXT2,HS3ST3B1,ALDOA,ME1,LALBA,ME3,GCNT2,GNE,ALDOC,PFKFB1,ALDOB,NAGK,EXTL2,CHIT1,B3GNT8,GAD2,INS,IL17F,GYS2,IDH1,DYRK2,GAD1,B4GALT7,FH,UAP1,GUSB,EPM2A,GALT,IDH3B,ATF4,SLC25A10,FPGT,SGSH,NDST1,ALG1,PTEN,ACN9,ACOT4,HPSE,XYLT1,CHST12,CHST11,CHST14,CHST13,TREH,PFKL,ACO2,ACO1,CHST2,CHST3,CHST4,CHST5,PFKM,HYAL4,PMM2,CHST1,G6PD,CHST7,CHST6,CHST9,CHST8,GAA,UGP2,CLN6,HS3ST5,GALNT5,UGDH,HK1,TKTL1,GALK1,LECT1,AKR1A1,ECD,B4GALNT2,HS6ST1,TSTA3,PDK1,PDK2,GMDS,PDK3,PDK4,GYG2,BRS3,ACLY,GAPDHS,GBA3,SDHA,SDHB,GBA2,PYGM,LARGE,GCK,SDHC,GSK3B,GFPT1,SDHD,GFPT2,IPPK,PYGB +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html TNF,STK36,UBE2V1,EGLN1,PRDX3,PYDC1,NOD2,SUMO1,CDKN2A,NLRC3,NPM1,PYCARD,PEX14,ABRA,CAMK2A,BCL10,CREBZF,RELA,CEBPG,EDA2R,NFAM1,FOXP3,NLRP3,FLNA,JMY,SIGIRR,UBE2N,PRKCQ,CARD11,EP300,ID2,ID1,NARFL,ID3,EDA,COMMD7,ERC1,TSSK4,IKBKB,MAP3K13 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html MICB,CRTAM,CDK5R1,MICA,ZP2,OPCML,CADM1,PCDH12,COLEC12,SLIT2,CLEC4M,AMIGO1,CD209,PECAM1,CNTN4,VCAN,CLEC7A,SPAM1 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html SGSH,HS3ST5,NDST1,CHST3,GLCE,LECT1,CHST7,HPSE,CHST9,CHST12,IL17F,CHST11,CHST8,CHST14,CHST13,HS6ST1,EXT1,B4GALT7,HS3ST3B1 +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html CDC6,NBN,WRNIP1,POLA1,TIPIN,RAD9A,MCM3,RPA4,ORC1L,PURA,CDT1,ORC2L,ORC4L,ORC5L,RAD17 +PWCOMMONS PEPTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDE_METABOLIC_PROCESS.html PAM,TPP1,ADAMTS13,DMD,DEFB103A,PGCP,FURIN,PCSK5,TAPBP,DNPEP +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html IL4,MAFB,LDB1,SPI1,ZNF675,CDK6,PF4,FOXO3,ZBTB16,INHA,CALCA,ACVR1B,ACVR2A,INHBA,ETS1,SCIN,CARTPT,ACIN1,RUNX1 +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html TARBP2,PTPRC,IL29,BCL2,IL28RA,BNIP3L,BNIP3,RSAD2,APOBEC3G,TLR7,APOBEC3F,TLR8 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html CLN3,CLCN3,SLC9A7,ATP1A3,ATP1A4,PPT1,ATP1A1,ATP1A2,ATP6V1B1,BCL2,CLN5,CLN6,SLC9A1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html PPFIA2,ACVRL1,PPFIA1,ITGA11,ITGA10,PTEN,COL17A1,CDKN2A,SORBS1,FXC1,PKD2,PKD1,ANGPTL3,THBS3,RASA1,PARVG,NF2,TAOK2,COL13A1,NF1,ACTN1,ITGA2,ITGA3,ACTN2,CDK6,ACTN3,ECM2,THY1,VWF,CDH13,LYVE1,TSC1,ITGB1BP1,FBLN5,ITGA7,TESK2,SGCE,ADAM15 +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html IL4,TM7SF4,MMP9,CSF1,ZNF675,IFI16,INHA,MYH9,IL31RA,CALCA,INHBA,CDC42,CARTPT,ACIN1,RUNX1 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html PAM,KIF25,LATS1,NCAPH,DDX11,INCENP,CDCA5,TOP2A,ZW10,PDS5B,CDC23,CENPF,NUSAP1,CENPE,ESPL1,NDC80,PMF1,SRPK1,MIS12,BRCA1,SMC4,CHMP1A,REC8,PSEN1,RIOK3,ZWINT,PSEN2,ARL8A,ARL8B,SMC1A,NEK6 +PWCOMMONS REGULATION OF CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html UBE2N,SET,PIF1,TLK1,TERF2IP,TLK2,ERCC4,PPARGC1A,ERCC1,TERF2 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html FXYD1,FXYD3,TSPO,GLRA1,SLC26A2,BEST1,SLCO1A2,NMUR1,SLC22A6,SLC4A2,SLC4A1,SLC22A7,SLC22A8,SLC34A1,CLIC1,VDAC2,SLC34A3,VDAC1,SLC34A2,SLC17A7,SLC26A4,SLCO1B3,SLC26A3,SLC17A5,SLC4A11,CLIC3,SLC17A1,CLIC5,SLCO1B1,SLC13A4,CLCN4 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html WASF3,PREX1,WASF1,ARF6,LATS1,CENPJ,NCK2,CDC42EP2,SPRR2C,GSN,ANG,TPPP,MAPT,NCK1,RAC1,TMSB4Y,MAPRE1,RASA1,CDC42EP5 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CADM1,ELF4,PREX1,IL18,JAG2,TLR4,TNFSF13,TPD52,SPINK5,TGFB1,SART1,CD47,NLRC3,EBI3,CRTAM,SPACA3,SIT1,CD3D,PRG3,CD3E,SLA2,IL27,INHA,NFAM1,SOCS5,IL21,THY1,INHBA,NCK2,SIRPG,LAT2,LAX1,CD40LG,NCK1,LCK,IL12A,IL12B,NHEJ1,ICOSLG,LST1,CX3CL1,AZU1,INS,SFTPD,CD2,ZAP70,CD4,CD24,HELLS,CD7,CD28,IL4,PTPRC,IL8,IL7,CEBPG,CD276,FOXP3,CD1D,HDAC5,LAT,HDAC4,GLMN,CD79A,CLEC7A,HDAC9,IL2 +PWCOMMONS INTERLEUKIN 1 SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_1_SECRETION.html NLRC4,NOD2,CARD8,APOA1,PYCARD,NLRP12,ABCA1,NLRP3,PYDC1,NLRP2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PPARD,SNCAIP,PGD,ADH1B,PTEN,SLC35A2,ACN9,TGFB2,STARD3,APOF,MIOX,NPC1L1,DHCR24,IRS2,PFKL,FBP1,ALDH3B2,PFKM,NR0B2,FBP2,PMM2,PPARGC1A,ALDH3B1,CHST1,COQ3,COQ2,PGLS,G6PD,SULT1B1,AKR1D1,CLN8,UGP2,CLN6,ALDOA,CNBP,HDLBP,ALDOC,PFKFB1,ALDOB,ADH5,UGDH,ADH6,HK1,ADH7,TKTL1,HPRT1,GALK1,AKR1A1,INS,ADH4,DHCR7,ALDH1A3,ECD,ETNK1,SCARB1,TSTA3,NSDHL,IL4,SOAT1,PDK1,SOAT2,PDK2,MBTPS2,CYP46A1,GMDS,PDK3,SPHK1,PDK4,GALT,FDPS,BRS3,SOD1,ABCG1,GAPDHS,APOL2,CEL,ATF4,GCK,GFPT1,SLC25A10,GFPT2,ALDH2,IPPK,FPGT +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html MCHR1,CCKAR,CCKBR,PMCH,PPYR1,UBR3,BRS3,LEP,GCG,HCRTR2,HCRTR1,NPY,FYN,GALR3,NMUR2,NPW,GALR2,MC4R,GHRL,CARTPT,PYY,GHSR,HTR2C,AGRP +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html YARS,DARS,FARS2,SARS,AARS,SSB,KARS,SARS2,ADAT1,TRNT1,WARS,METTL1,RARS,POP1,THG1L,MARS2,POP4,NSUN2 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html HCCS,CYP24A1,OXA1L,UQCRC1,CYB5R2,ENOX2,PGD,DUOX2,DUOX1,PDIA5,PPOX,AKR1C3,FXN,PLOD1,GPX4,SPR,LOXL1,AKR1C1,WWOX,TXNL1,ALDH5A1,NCF4,GRHPR,CDO1,DDO,POR,MTRR,DHRS2,DHRS4,NNT,SURF1,AKR1D1,ALDH9A1,AOC3,ME3,CYP1B1,GLUD2,ADH7,ALDH3A1,SCO2,NOX4,NOX5,FDXR,CYP4F11,BLVRA,SLC25A12,SDHA,NDOR1,SLC25A13,SDHC,RETSAT +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html IL4,TRAF2,PTPRC,CRTAM,CADM1,IL27,SLA2,IL18,TNFSF13,MALT1,SOCS5,FOXP3,IL10,TGFB1,CD74,TLR8,MAP3K7,IL18BP,CD40LG,IL12A,IL12B,C2,TRAF6,EBI3 +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html MAP3K7,TRAF2,IL18,IL17F,SFTPD,GLMN,MALT1,IRF4,FOXP3,TRAF6,CD28 +PWCOMMONS POSITIVE REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEFENSE_RESPONSE.html TNFRSF1A,CRTAM,CADM1,EREG,IL12A,CX3CL1,IL12B,IFNK,TLR8,CD1D +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html IL4,HDAC5,INHBA,HDAC4,CEBPG,NFAM1,CD79A,INHA,HDAC9,TPD52,NHEJ1 +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html GCLC,NF1,EGLN2,SELS,DDIT3,THY1,GLRX2,CALCA,GPX1,BCL2,MC4R,CARTPT,IFI6 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNC1,KCNC4,KCNC3,ATOX1,KCNK7,KCNK6,KCNK5,CHRNA7,KCND3,SCN2B,SCN2A,STIM2,STIM1,SLC34A3,ATP2C1,RYR3,RYR1,SLC40A1,KCNMB3,ORAI1,KCNMB4,SCN1B,KCNA2,KCNA1,KCNA4,KCNA3,CCL8,HFE,CACNB3,KCNA6,KCNA5,CACNB4,KCNJ2,KCNJ3,KCNMB1,KCNJ1,KCNMB2,SLC11A2,KCNS3,KCNS1,SCN9A,SLC30A5,SLC31A2,SLC31A1,TRPC1,TRPC4,CACNA2D1,TRPC3,TRPC5,KCNB2,KCNK1,KCNK3,KCNK4,ATP7A,KCNJ5,KCNJ4,SLC4A11,KCNJ6,NPY,ATP2A3,ATP2A1,CACNA1D,ATP7B,KCNH1,KCNK17,KCNJ15,KCNAB3,KCNAB1,KCNJ10,KCNJ12,KCNIP2,KCNJ11,KCNQ4,KCNQ3,SLN,NMUR1,NMUR2,TRPV5,SCN7A,KCNQ2,COX17,KCNQ1,SCN10A,KCNG2,SGK1,TRPM2,KCNA10,SCN11A,KCNH2,KCNH3,KCNH4,KCNE1,KCNE2,CCS,CHP,SCNN1G,SCNN1A,SCN5A,SLC39A2,SCNN1D,SLC8A1,ATP1A4,KCNV1,KCNN4,ABCC9,SLC17A3,KCNN1,SLC17A4,PLN,KCNN3,SLC17A2,KCNF1,SCN4B,ABCC8,SCN4A,CSN2 +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html CALCA,CDH13,AGGF1,ANG,NF1,TNFSF15,GHRL,ATPIF1,TNFSF12,SCG2,DLG1 +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html GLRB,ECEL1,GLRA1,GLRA2,GRP,HCRTR2,HCRTR1,GALR1,NMUR1,GALR3,NMUR2,QRFP,AGRP,NPFF +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html LIMA1,WASF3,WASF1,PREX1,ARF6,EVL,LATS1,CXCL12,DSTN,NCK2,CDC42EP2,ANG,GSN,NCK1,CAPG,RAC1,GHRL,WIPF1,TMSB4Y,WASL,GHSR,RASA1,CDC42EP5 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html ADORA3,S100A8,AIF1,S100A9,IL13,CXCL11,ADORA1,TGFB1,CXCL10,LTB4R,CHRNA7,IL1A,F11R,VPS45,RELA,CD40,CDO1,IL20,TNFAIP6,CCR7,CCR5,CD40LG,CCR4,CCR3,CCR2,RIPK2,NFE2L1,PLA2G2E,PLA2G2D,TPST1,C3AR1,CCL3,ADORA2A,AFAP1L2,CX3CL1,CCL5,CCL4,AHSG,IL17C,IFNA2,RAC1,BLNK,AGER,S100A12,HDAC5,APOL3,HDAC4,PARP4,GHSR,HDAC9,ABCF1,ELF3,TACR1,CRP,PRDX5,NFKB1,CD97,CFHR1,FOS,NOD1,CXCR4,AOAH,CCL3L3,IL1RAP,MGLL,LBP,XCR1,NFX1,IRAK2,KNG1,APCS,IL18RAP,LYZ,CHST2,NLRP3,SIGIRR,ALOX15,KLRG1,PLA2G7,GHRL,PTAFR,AOC3,CXCL1,MBL2,NMI,CCR1,C5,CXCL2,CXCL9,CXCL6,GPR68,CCL26,CCL24,TNFRSF1A,CCL22,HRH1,CCL23,CCL20,MEFV,IL10RB,CCL21,ALOX5AP,KRT1,NFATC4,C2,PTX3,NFATC3,SCG2,NOX4,LY75,IL5,CEBPB,IL8,NFRKB,IL9,ANXA1,CYP4F11,CCL11,ORM1,CYBB,CCL13,AOX1,SELE,ORM2 +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html MDFI,NFKBIL2,CRYAA,CRYAB,NFKBIE,NF1,FAF1,NLRP3,MXI1,NFKBIL1,BARD1 +PWCOMMONS PROTEIN EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_EXPORT_FROM_NUCLEUS.html NUP214,XPO6,GSK3B,DUSP16,EIF5A,NUPL2,CALR,XPO7,UHMK1,BARD1 +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html COG3,GTPBP4,STX12,APOA1,A1CF,COG7,HPS4,TBRG1,PEX6,MDM4,PPARGC1A +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html PTPRC,MBL2,BCAR1,SLA2,MALT1,NFAM1,TRAT1,THY1,CFHR1,UBE2N,LAT2,FYN,IKBKG,KRT1,C2,CD79A,TRAF6 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF2C1,CRNKL1,EIF5,DICER1,SNRPD1,EIF5A,SNRPD2,EIF2A,SFRS6,SFRS5,DKC1,RPS3A,SFRS8,EIF1AX,SFRS9,EIF1,DDX20,EIF2B2,EIF2B3,EIF2B4,EIF2B5,SRPK2,PRPF31,EXOSC7,EXOSC2,SF1,EIF2S3,EXOSC3,EIF1B,RRP9,SFRS1,BOLL,EIF4G2,EIF4G3,RPS14,EIF4A2,SLU7,HSPB1,SIP1,EIF2AK3,EIF2AK4,SDAD1,MTIF2,MTIF3,PAIP2B,EIF3C,EIF3D,EIF3A,EIF3B,EIF3G,EIF3H,EIF3E,NPM1,EIF3F,USP39,EIF3I,DAZL,GEMIN8,EIF3J,SFRS2IP,GEMIN6,GEMIN7,GEMIN4,GEMIN5,DAZ1,PAIP2,PAIP1,SF3A2,SF3A1,EIF2B1,FBL,SF3A3,EIF4B,DIS3,ATXN2,NOLC1,EIF4H,POP4,TXNL4A +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CASR,GNA15,ATOX1,F2RL1,CD52,CXCL12,AGTR1,APP,GALR2,RGN,CHRNA7,FTL,C5AR1,THY1,CCR9,CCR8,PLCE1,CCR7,CCR6,CCR5,CCR4,ATP2C1,CCR3,CCR2,STC1,SLC40A1,GLP1R,CCL1,SRI,C3AR1,CLCN3,DRD1,CCL3,CCL2,CYSLTR1,HFE,PPT1,BDKRB1,BDKRB2,CALR,CCL5,CCL7,FTH1,P2RY4,SLC30A5,ATP7A,CD55,GCM2,SLC4A11,CXCL13,AVPR1B,AVPR1A,XCL1,CACNA1C,CACNA1A,ATP7B,MCHR1,CCKAR,CXCR3,EDNRA,FXN,SAA1,CXCR4,NMUR2,TRPV4,XCR1,MYC,KNG1,CLN3,CCKBR,PROK2,LCK,GHRL,CLN5,CLN6,CLDN16,TFR2,CCR1,TAC1,CALCA,CALCB,CCL23,BCL2,CD24,PTPRC,OPRL1,ATP1A3,CCL19,MTL5,ATP1A4,ATP1A1,ATP1A2,SOD1,CCL15,TMPRSS3,CCL11,CCL13,CCL14,HPX,MT2A,CP +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html MTERF,UPF1,TNP1,ETF1,HMGA1,TTF2,IRAK3,SET,MAZ,SMARCE1,MTRF1,HRSP12,SUPT16H,NRG1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html BID,TSPO,MTX2,TIMM17A,TIMM17B,BNIP3,MPV17,TIMM50,SFN,PMAIP1,MIPEP,BCL2L1,STARD3,NDUFS7,FIS1,TFAM,BAK1,GPX1,NDUFS5,TYMP,NDUFS4,MRPL12,CDKN2A,BCL2,NDUFS8,TFB2M,SLC25A1,COX18,TOMM34,MTERF,HSP90AA1,MSTO1,DNM1L,OPA1,SLC25A4,TAZ,TP53,TIMM23,TIMM44,MFN2,TRNT1,POLRMT,BBC3,BAX,C3ORF31,TOMM22,SLC25A15,IFI6 +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html EGR3,ARNTL,TIMELESS,PTGDS,HTR7,HEBP1,PER2,AANAT,CARTPT,PER1,CRY1,CLOCK,OPN4,MTNR1A +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html NCBP2,NCBP1,RNMT,PRPF4B,LSM6,RBM3,SNRPD3,SNRPD1,RBM5,RP9,RBM6,INTS1,SNRPD2,SYNCRIP,INTS2,ZNF638,INTS3,SMNDC1,SETX,SFRS6,INTS9,NONO,SFRS7,INTS8,DDX17,SFRS4,SFRS5,DHX38,DDX23,INTS5,INTS4,INTS7,SFRS8,SFRS9,INTS6,LSM5,U2AF1,RBMS2,SRRM1,LSM4,LSM3,DDX20,LSM1,RBMS1,SNRPA1,SNRPN,EFTUD2,PTBP1,AARS,RRP9,SFRS1,PPARGC1A,HNRNPR,BICD1,SFRS2,DDX39,RBPMS,RPS14,SNRPB,SLU7,RBMY2BP,SNRPC,SNRPF,SIP1,BAT1,SNRPG,CPSF3L,FARS2,PABPC4,SNRPB2,IGF2BP3,DUSP11,PPAN,AGGF1,METTL1,CDC40,HNRNPC,PABPC1,SFRS11,NOVA1,SPOP,DHX8,CSTF3,CSTF2,INTS12,SNW1,SSB,RNPS1,INTS10,HNRNPA0,TRNT1,RBMY1A1,PPIG,NOLC1,POP4,DDX54,CSTF1,CRNKL1,CWC15,ZNF346,RNGTT,DGCR8,DKC1,DBR1,KHDRBS1,PRPF31,SRPK2,NOL3,EXOSC7,SARS,SF1,EXOSC2,EXOSC3,PRPF3,SRPK1,HNRPDL,KHSRP,CPSF6,CPSF3,CPSF1,TRA2A,NUFIP1,IVNS1ABP,KIN,SF3B4,SF3B3,SF3B2,ADAT1,PRPF8,NUDT21,USP39,DHX15,THG1L,DHX16,GEMIN8,SFRS2IP,GEMIN6,GEMIN7,NSUN2,GEMIN4,GEMIN5,BCAS2,UPF1,GRSF1,ELAVL4,SF3A2,PRPF18,SF3A1,FBL,SLBP,SF3A3,DIS3,SFPQ,ZRANB2,PHF5A,TXNL4A +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html IL4,PTPRC,IL7,CEBPG,SLA2,TNFSF13,NFAM1,INHA,TPD52,TGFB1,HDAC5,HDAC4,INHBA,LAT2,CD40LG,LAX1,CD79A,HDAC9,NHEJ1 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html ACHE,PCDHB14,CACNB2,PCDHB13,PCDHB11,PCDHB10,SPINK5,NRCAM,PCDHB16,ACAN,POU4F1,AGRN,CHRNA1,B4GALT7,PCDHB9,COL4A4,KLK8,TNXB,PCDHB5,PCDHB6,PCDHB3,PCDHB4,NF1,NLGN1,NRD1,PCDHB2,COL5A2,MYH11,GHRL,LAMC1,UBB,MUC5AC +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html CALCA,BCL10,APOA2,NOD1,PRG3,IL17F,BCL3,TLR4,AFAP1L2,TLR7,TLR8 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html FOXL2,DFFA,AIFM1,DFFB,CYCS,CECR2,CIDEA,BNIP3,TPD52L1,UBE2V2,PPT1,SOD1,ISG20,UBE2N,ERCC5,CDKN2A,BAX,ERCC3,NTHL1,ERCC4,XRN2,ERCC1,ERCC2 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html TNF,PDIA3,NFKBIE,TNFSF14,CDH1,MXI1,GLI3,TGFB1,AKT1,CEP57,ZFYVE9,BCL3,BCL6,NCKIPSD,RANBP2,TPR,TNPO1,KPNB1,FYB,MDFI,MCM3AP,NF1,SMAD3,PPP1R10,NLRP3,FLNA,NFKBIL1,NFKBIL2,CBLB,PPIH,RPAIN,TRPS1,NUP205,F2,PTTG1IP,NLRP12,KPNA6,KPNA5,KPNA4,FAF1,KPNA3,TRIP6,KPNA2,KPNA1,RERE,F2R +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html SEPT5,KCNMB4,RAB3A,SYT1,SNCAIP,PRG3,BAIAP3,SLC6A4,NLGN1,SNAPIN,HPRT1,GDNF,RIMS1,GCH1,TGFB2,GRM4,SLC1A3,HRH3,COLQ,SYN3,CARTPT,SLC5A7,GCHFR,ALDH9A1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html PPARG,SPI1,ZNF675,FOXO3,FOXO4,SPINK5,SART1,SHH,TGFB2,ACVR1B,ADIG,ACIN1,BOC,USH2A,TWIST2,NANOG,IL27,LDB1,CDK6,INHA,SOCS5,GPR98,IL20,ACVR2A,INHBA,NME2,TCFL5,EREG,BTG1,SCIN,CARTPT,CNTN4,IQCB1,MAP4K1,PF4,ZBTB16,CALCA,NPHP3,ZAP70,VWC2,RUNX1,IL4,BMP4,TBX3,DTX1,IL7,MAFB,TAF8,TBX5,NF1,NLGN1,NOTCH2,YWHAG,NOTCH1,YWHAH,ETS1,NOTCH4,BMPR1B,IGFBP3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OCLM,RP1,WFS1,PITPNA,RP2,RPE65,RCVRN,CNGB1,NR2E3,CNGB3,KIFC3,CRYGA,ATP2B2,CRYGD,TIMM9,TGFBI,RGR,CDH23,COCH,OPA3,CLRN1,OPA1,C5AR1,MYO6,CRYAA,MYO3A,KRT12,SIX3,UBR3,VAX2,CNGA3,NTSR2,OR1D2,SIX6,OR1D5,TIMM8B,CNGA1,SAG,PITPNM1,TACSTD2,IQCB1,RTP3,RTP4,CYP1B1,DIAPH1,ADORA2A,RBP3,OPN1SW,ATP6V1B1,GPR143,OTOR,ABCA4,MYO9A,RABGGTB,RABGGTA,PDE6A,PDE6B,NPHP3,PDE6C,PDE6D,PRR4,MYO15A,IMPG1,IMPG2,RLBP1,GNAT1,TECTA,COL18A1,UNC119,AIPL1,GUCY2F,MYO1A,TRPC3,FSCN2,EFEMP1,OMP,PCDH15,PDE6H,CRYZ,PDE6G,GUCY2D,SFRP5,TULP2,TULP1,CACNA1F,WDR1,CRYM,RHO,GRK1,OPRM1,GJA8,CYB5R4,OR52A1,TAS2R4,TAS2R5,TRPV2,USH1G,RRH,MYO7A,POU6F2,TAS2R3,PAX6,TAS1R3,PAX3,PAX2,TAS1R1,TAS1R2,CRX,GJA3,CRYBB1,DFNB31,RDH8,TYR,KCNQ4,POU4F3,COL11A1,KCNQ1,CRYBB3,USH2A,DNAJC19,CRYBB2,SCN10A,RS1,RPGR,RAX,CCKBR,ZNF354A,CDS1,GPR98,SLIT2,RDH5,EML2,EYA3,SLC26A4,EYA4,PROK2,TAS2R16,ALDH7A1,DHRS3,EYA1,TAS2R14,SLC26A5,GRM8,NRL,OTOF,USH1C,GNAS,AOC2,CRYBA1,OAT,CRYBA4,ROM1,ABLIM1,SORD,OPN1LW,LUM,NDP,OPRK1,NDUFB9,TIMM10,CABP4,TIMM13,BEST1,ARR3,POU3F4,KCNE1,CHM,TAS2R43,GUCA1A,COL4A3,DFNA5,GUCA1C,OPRL1,OPN1MW,GJB6,RGS16,SOD1,VSX1,PRPH2,GJB2,RDH12,RDH10,ACCN3,PNOC,CHML,ATXN7,PDC,TBL1X,ATP6V0A4,OPN4 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html MDFI,RSF1,CEBPG,EGLN1,NLRP3,FOXP3,PYDC1,FLNA,SIGIRR,SUMO1,CDKN2A,ID2,ID1,NARFL,PEX14,ID3,COMMD7 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CADM1,FST,ADORA1,SART1,BTK,CUL3,CUL2,BAK1,CUL5,MAP3K5,APOE,CHRNA7,FAS,CUL1,CRTAM,BCL2L11,CD38,MAPK1,NME2,NME3,SSTR3,SERPINF1,IFNB1,ALOX15B,NPTN,UNC13B,LALBA,SIVA1,CDK5R1,STK17B,CD70,CHEK2,STK17A,PLAGL1,IFNA2,CDC42EP2,CDC42EP1,AGGF1,ZAP70,DIABLO,C16ORF5,CDC42EP4,CDC42EP5,BMP4,TP53BP2,SPHK1,CIDEB,SMAD3,CIDEA,TPD52L1,CIDEC,NOTCH2,EI24,RNF7,ETS1,HTATIP2,FASTK,PPARG,BNIP3,TP63,PTEN,DAXX,MAPT,TOP2A,DEDD2,AIFM3,AIFM2,AIFM1,TP53,LGALS12,NDUFA13,SLIT2,JMY,AMIGO1,INHBA,BNIP1,IL12A,MAP3K10,IL12B,BID,PML,SFN,PPP2CA,PCSK9,BCL3,VWC2,BCL6,CD27,IL7,TBX5,TP73,PLG,EEF1E1,BNIP3L,AMOT,BIK,BARD1,ZAK,TLR2,EIF5A,TNFSF14,FOXO3,TNFSF12,PMAIP1,CRADD,TGFB1,TGFB2,SMNDC1,NLRC4,CDKN2A,CASP8AP2,CDKN2C,ROBO1,ADIG,TIA1,ZNF443,ROBO2,ACIN1,DAP,MX1,NUDT2,HRK,FADD,SOCS5,STK4,STK3,IL20,TIAL1,RIPK3,ADAMTSL4,RRAGA,PRUNE2,MTCH1,DYRK2,ANGPTL3,RUNX1,RUNX3,ANGPTL4,TRAF3,CFLAR,HTT,BRCA1,TRADD,CDKN1A,TNFSF10,CDKN1B,BBC3,IKBKG,PDCD5,ABL1,SST,PDCD6,PDCD7,DAP3,DEDD,HPS4,FASLG,CASP6,CDC42,ACVR1B,CASP3,CASP4,BOK,RPS3A,PCBP4,RHOB,MKL2,NDUFS3,BOC,LTA,PRKCA,PPP2R1A,INHA,IFI16,PRKCE,DAPK2,CDK5,DAPK3,NCR1,DAPK1,ACVR2A,TNFRSF9,BTG1,SCIN,LCK,ERN1,GHRL,ERN2,DCC,DPF2,BCLAF1,TNFRSF25,TNFRSF8,TRAIP,DPF1,CALCA,UTP11L,PTH,CD2,PYCARD,ERCC3,ERCC2,COL4A3,PTPRC,KL,CEBPG,NF1,SAP30BP,TNFSF8,CASP10,CUL4A,BAX,PPP1R13B,BMPR1B,IGFBP3 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF2C1,CRNKL1,DICER1,EIF5,SNRPD1,EIF5A,SNRPD2,EIF2A,SFRS6,SFRS5,RPS3A,SFRS8,EIF1AX,SFRS9,EIF1,DDX20,EIF2B2,EIF2B3,EIF2B4,EIF2B5,SRPK2,PRPF31,SF1,EIF2S3,EIF1B,SFRS1,BOLL,EIF4G2,EIF4G3,EIF4A2,RPS14,HSPB1,SLU7,SIP1,EIF2AK3,EIF2AK4,MTIF2,MTIF3,PAIP2B,EIF3C,EIF3D,EIF3A,EIF3B,EIF3G,EIF3H,EIF3E,USP39,NPM1,EIF3F,DAZL,EIF3I,SFRS2IP,EIF3J,DAZ1,PAIP2,PAIP1,SF3A2,EIF2B1,SF3A1,SF3A3,EIF4B,ATXN2,EIF4H,TXNL4A +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html ARSB,CLN3,NAGPA,NDP,MYO7A,HPS4,GAA,HPS1,PPT1,ABCA1,CLN5,CLN6 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_SECRETION.html CRTAM,NOD2,CARD8,CADM1,INS,PYCARD,GLMN,PYDC1,NLRP3,NLRP2 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html SNAP29,SEPT5,STX5,SHROOM2,AP1M2,NLGN1,CDC23,NUSAP1,CENPF,BIRC5,CENPE,TMED10,LRMP,PAFAH1B1,SNAP23,YKT6,CDCA5 +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html ARSB,USE1,M6PR,ADRB2,NAGPA,NPC1,ATG4D,ATG4C,AP3M1,ZFYVE16,ATG4A,LYST,RHOB +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN8,CLDN16,CLDN7,CLDN17,CLDN18,CLDN9,CLDN19,CLDN4,CLDN3,CLDN6,CLDN5,CLDN22,CLDN10,CLDN11,CLDN20,CX3CL1,CLDN12,CLDN14,CLDN23,CLDN15,CLDN1,CLDN2 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html F2RL3,CCKAR,PARD3,GNA15,DRD1,DRD2,EDN2,TACR1,AZU1,CALCA,EDNRA,EDNRB,AGTR1,HRH1,P2RY6,P2RY4,LTB4R,ANG,NMUR1,NMUR2,P2RY2,PLCH1,P2RY1,MC3R,PPAP2A,PLCB2,EGFR,C5AR1,CCKBR,PICK1,HOMER1,GRM5,PLCE1,P2RY11,GNAQ,CHRM2,CHRM1,AVPR1B,AVPR1A,NMBR,HTR2B,GAP43,PTAFR,PRKD3 +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html RTP3,RTP4,ATG4D,ATG4C,ATG4B,ATG4A,ICMT,TRAM1,SSR2,SEC63,SSR1 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html NCBP2,NUP160,XPO6,EIF5A,CALR,UHMK1,NUP214,RAE1,DDX19B,DDX25,DUSP16,KHDRBS1,NUP133,UPF2,UPF1,SMG6,NUDT4,SMG5,NXF5,SMG7,SMG1,MALT1,NUPL2,ATXN1,DDX39,TSC1,GSK3B,NUP107,XPO7,BARD1,BAT1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html LIMA1,KATNB1,ARF6,TERF2IP,LATS1,CXCL12,SORBS3,CDC42EP2,SET,CEP250,GSN,MAPT,CLASP1,TLK1,TLK2,CLASP2,ERCC4,ARHGEF10L,RASA1,TERF2,ERCC1,CDC42EP5,APC,ARHGEF2,CCDC88A,NF2,PIF1,CRIPAK,MID1IP1,NEXN,PPARGC1A,NEBL,UBE2N,NCK2,TSC1,NCK1,CAPG,MAPRE1,TMSB4Y +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html BCL10,ELF3,LMO4,VANGL2,EHF,UPK3A,CELSR1,GLI2,SPINK5,TIMELESS,UPK1A,UPK1B,KRT3,KRT4,UPK2,DMBT1 +PWCOMMONS NEUTRAL AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEUTRAL_AMINO_ACID_TRANSPORT.html SLC1A4,SLC1A5,SLC38A3,SLC6A7,SERINC1,SLC7A8,SLC7A9,SLC7A10,SLC43A1,SLC7A5 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html BCKDK,GLUD1,AMT,ASL,GLDC,FAH,GOT2,MCCC2,ARG1,GAD2,ASPA,GOT1,GCSH,ASRGL1,ALDH4A1,GSTZ1,DDAH2,GAD1,DDAH1,HPD,BCKDHA,BCKDHB,HGD,DDO,COLQ,DHPS +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html CLN3,CLCN3,BCL2,ATP1A3,ATP1A4,ATP1A1,PPT1,ATP1A2,CLN5,TMPRSS3,CLN6 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html LALBA,S100A7,PGLYRP1,TLR3,DEFB127,TLR6,IL10,CHIT1,CFP,AZU1,SLC11A1,NLRC4,NOD2,NOD1,PGLYRP4,PGLYRP2,PGLYRP3,DEFB118,CD24,SPN,BCL10,SPACA3,CAMP,DEFB103A,STAB2,CD1D,WFDC12,STAB1,IL12A,DMBT1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CADM1,AQP9,IL6ST,MAP3K7,LTB4R,SEMA7A,IFNK,IKBKAP,GTPBP1,CRTAM,C5AR1,NCF4,COLEC12,GEM,THY1,CRHR1,CCR9,LILRB2,CCR8,CCR6,CCR5,CCR4,CD40LG,CCR2,MADCAM1,IL1R2,CNIH,HLA-DRB3,FCGRT,CD74,IL17A,IL17B,ZAP70,BLNK,ST6GAL1,TCF7,RGS1,ETS1,TCF12,IL27RA,BCAR1,LY86,IL28RA,BNIP3,ZEB1,SPINK5,CFHR1,HAMP,IL4R,CEACAM8,SEMA3C,DPP8,FCGR3A,FCGR3B,DPP4,CMKLR1,GZMA,IL6R,NFAM1,CD164,WAS,IL18BP,EREG,LAX1,IL12A,IL12B,SEMA4D,OPRK1,CCR1,GPR65,IL7R,CCL27,CCL26,CCL24,CCL25,CCL22,CCL23,CCL20,IL10RB,CCL21,XBP1,FCGR1A,BCL2,DEFB118,CD22,CCBP2,C2,CD28,FYB,LY75,IL4,IL6,IL7,CTLA4,CCL19,TRIM22,CCL18,CD1D,PRELID1,FCGR2B,FYN,BNIP3L,ATP6V0A2,IL2,IL16,IL18,APOBEC3G,VTN,TNFSF13,IL15,VIPR1,TLR7,CXCL12,APOBEC3F,TLR8,TGFB1,IL10,TAPBP,TGFB2,APOA4,APOA2,APOA1,GPR44,MS4A1,MS4A2,ODZ1,EBI3,CIITA,BCL10,POU2AF1,BST2,IL29,BST1,IL27,TNFRSF14,YTHDF2,SOCS5,TRAT1,IGSF6,LAT2,CST7,MNX1,KIR2DL1,DEFA1,KIR2DL3,GBP2,TNFAIP1,TRAF2,CCL2,IFITM2,IFITM3,MAP4K2,IL32,DEFB127,CX3CL1,CCL5,PYDC1,CCL4,FTH1,PRKRA,CNR2,SFTPD,TRAF6,DEFB1,ARHGDIB,MALT1,FOXP3,AIM2,LAT,FCAR,CXCL13,IKBKG,CD274,RFX1,CD79B,CD79A,IFI6,PAX5,SKAP1,PDCD1,MBP,CD97,CD96,CXCR4,LTF,NFIL3,APLN,CHUK,CCRL1,IK,PTGER4,SLA2,CHST4,CTSS,NCR1,CTSW,UBE2N,TARBP2,CD83,CD86,C1QBP,CTSC,TREM1,TREM2,PTAFR,CTSG,LCP2,PSMB10,MBL2,RAG1,RSAD2,TNFRSF4,HRH2,FCN2,POU2F2,FCN1,KRT1,IL2RG,MR1,CD7,PTPRC,SECTM1,IL2RA,CEBPB,DEFB103A,CEBPG,GPI,SP2,IRF8,ANXA11,OPRD1,DMBT1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html TM7SF4,MMP9,SPI1,JAG2,ZNF675,FOXO3,TPD52,SPINK5,SART1,TGFB1,IL10,IL31RA,TGFB2,CDC42,ACVR1B,ALAS2,ACIN1,MYST1,PRL,MYST3,KIRREL3,LYN,CD3D,LDB1,IL27,TAZ,CDK6,IFI16,INHA,NFAM1,SOCS5,MYH9,INHBA,ACVR2A,RPS19,LCK,SCIN,NCOA6,LRMP,CARTPT,IL12B,NHEJ1,RAB3D,CSF1,RAG1,MAP4K2,MAP4K1,PF4,ZBTB16,MLF1,CALCA,SNRK,RASGRP4,ZAP70,DYRK3,CD4,RUNX1,BLNK,IL4,PTPRC,MLL,MAFB,IL7,CEBPG,HCLS1,MAL,TBX1,CD1D,HDAC5,NOTCH2,HDAC4,ETS1,NOTCH4,CD79A,HDAC9,IL2 +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html AMBP,CARD9,TAOK2,HIPK2,TAOK3,MAPK8IP2,EDA2R,ZNF675,MAPK8IP3,TPD52L1,MAPK8IP1,CD27 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html DZIP3,RNF217,UBE2V1,UBE2V2,SAE1,ANAPC11,MYLIP,UBE3C,STUB1,SENP7,ERCC8,FBXW7,SUMO1,WWP1,RNF11,TRAF7,UBE2D1,TRAF6,RNF144B,BCL10,GTPBP4,VHL,UBE4B,CBL,PCNP,PRKCG,PARK2,TRIM23,UBE2C,ATG3,BRCA1,NAE1,UBE2N,UHRF2,HUWE1,TSC1,DDB2,RNF139,MDM2,CAND1,SMURF1,AMFR,UBB +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html PPARA,PFKL,CIDEA,EGLN2,PRKCG,PFKM,STUB1,GAPDHS,INS,APOA5,ECD,MDM2,HGS,MDM4,FAF1,ANGPTL3 +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html TUFM,B3GNT8,EEF1A1,GCK,ALG1,TSFM,SEPSECS,EEF2K,GYS2,GYG2,DYRK2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html DLC1,BMP10,BCAR1,OSGIN1,SGMS1,GLI2,SPINK5,TGFB1,TGFB2,BNIPL,ACVR1B,CDKN2A,CDKN2C,CDKN2D,APOA5,SERTAD3,NDUFS3,GHR,SERTAD2,NOL8,TP53,NDUFA13,RB1,FGF20,INHBA,PLCE1,EREG,GHRH,ALOX15B,BIN3,UBB,XRN2,ALOX12,ING5,DCBLD2,ING4,DERL2,RTN4RL1,PML,PPT1,TSPYL2,FAM107A,RASGRP4,PRSS2,CDA,BCL6,TNN,RTN4RL2,ENO1,DMBX1,COL4A4,KLK8,SPHK1,SMAD4,SMAD3,SOD1,CAPRIN2,RERG,PPP1R9B,NOTCH2,CDKN1A,CDKN1B,NUPR1,BBC3,CDKN2AIP,PTCH1,GHSR,BMPR1B,APBB2,APBB1,IL2 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html CLDN16,AVPR2,SLC22A18,AQP9,ADORA2B,TACR2,AQP5,CLCNKA,AQP4,CLCNKB,AQP7,AQP6,AQP1,ATP6V1B1,AQP3,AQP2,KCNJ1,SCTR,KCNK5,NFAT5,SCNN1G,SCNN1B,GUCA2B,SCNN1A,NPHP1,KNG1,NPR1,GRHPR,SLC26A3,NPHS2,NPHS1,NPPB,ATP6V0A4,UNC13B,IFT88,CLCN5 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html EMCN,ACVRL1,HTATIP2,IL18,PML,RNH1,PF4,TNFSF12,FOXO4,SPINK5,CANX,SHH,TGFB2,AGGF1,ANG,IL17F,ROBO4,RHOB,ERAP1,CHRNA7,RUNX1,EGF,ANGPTL3,C1GALT1,SCG2,ANGPTL4,COL4A3,COL4A2,IL8,NF1,SPHK1,NPR1,TNNI3,MYH9,NCL,PLG,THY1,CDH13,PROK2,SERPINF1,BTG1,STAB1,EPGN,VEGFA,NOTCH4,NPPB,AMOT,ATPIF1 +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html INHBA,CDKN1A,CDKN2A,CDKN1B,NF2,CDKN2B,CDKN2C,CDKN2D,SOCS1,NLRP12,INHA,IGFBP3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html BCL10,TNF,CEBPG,RELA,EDA2R,UBE2V1,NFAM1,PRDX3,JMY,UBE2N,CARD11,PRKCQ,NOD2,NLRC3,EP300,NPM1,PYCARD,ABRA,IKBKB,EDA,TSSK4,ERC1,MAP3K13,CAMK2A +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html DZIP3,RNF217,UBE2V1,UBE2V2,SAE1,UBE3C,ANAPC11,MYLIP,STUB1,ERCC8,FBXW7,WWP1,RNF11,TRAF7,UBE2D1,TRAF6,RNF144B,BCL10,GTPBP4,VHL,CBL,UBE4B,PRKCG,PCNP,PARK2,TRIM23,UBE2C,ATG3,BRCA1,UBE2N,UHRF2,TSC1,HUWE1,RNF139,DDB2,MDM2,CAND1,AMFR,SMURF1,UBB +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC38A3,AQP9,SLC16A10,SLC7A8,SLC7A9,SLC7A5,SLC1A4,SLC1A5,SLC16A1,SLC1A2,AKR1C4,SLC1A3,SERINC1,SLC1A6,SLC25A22,SLC1A7,SLC22A6,SLC25A1,SLC43A1,ARL6IP5,SLC1A1,AKR1C1,CLN3,PRAF2,PDPN,SLC3A2,SLC7A10,SLC3A1,SLC25A12,SLC16A3,SLC16A2,SLC16A5,SLC16A4,SLC25A13,SLC16A7,SLC6A7,SLC16A6,SLC25A10,SLC16A8,CTNS,SLC25A15 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html RTN4,HMGB1,LIMA1,KATNB1,ARF6,TERF2IP,PAIP2B,CDC42,SET,PACSIN3,GSN,RAC1,CLASP1,ERCC4,ERCC1,TERF2,APC,KLK8,ARHGEF2,PAIP2,MID1IP1,THY1,YWHAH,CAPG,MAPRE1,TMSB4Y,EIF2AK3 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html HMGCR,LHCGR,ANKRD7,SHH,PRKACG,CSDE1,SOX15,MKKS,HSD17B3,SRD5A2,EIF2B2,EIF2B4,EIF2B5,FOXL2,TBX3,MEA1,DMRT1,DMRT2,NR0B1,SOD1,FSHR,EREG,NCOA4,BMPR1B,LHB,NR5A1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html KIAA0368,TSG101,BTRC,UBE2G1,UBE2G2,USE1,RNF217,CPA2,FBXO22,ANAPC2,UBE2A,ANAPC5,UFD1L,ANAPC4,UBR3,UBE2I,PRKCG,UBE2H,UBE2C,UBE2B,UHRF2,UBE2K,UBR5,MDM2,FBXL4,SIAH1,MDM4,AMFR,UBB,SIAH2,FZR1,DERL2,SYVN1,DERL1,UBE3A,EGLN2,NEDD8,ANAPC10,STUB1,EDEM1,ARIH1,UBE2D3,UBE2D2,SQSTM1,INS,PRSS2,RNF11,UBE2D1,USP33,FBXO7,RNF144B,NPLOC4,UBE4A,UBE4B,CDC23,PCNP,CDC20,PARK2,UBE2L3,SELS,PSMD14,PSMC5,VCP,HGS,SMURF2,SMURF1,FAF1,UBE2E1 +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html NOX4,LIMS1,CDKN2A,TBX3,TBX2,KL,NPM1,MORF4,TP53,LOXL2,SOD1,PDCD4 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html KNG1,ARHGDIG,GTPBP4,ADAM10,ACVRL1,NF2,PTEN,PR47,CDH13,MIA3,CDKN2A,RND1,TGFBI,B4GALNT2,ARHGDIA,SPN,RASA1,ARHGDIB +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html PPARD,SPRR2G,SPRR2F,SPRR2E,SOD1,SCGB1A1,RPL29,PRLR,SPRR2C,SPRR2D,TRO,SPRR2A,SFRP4,SPRR2B +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html AURKAIP1,ATP6AP2,BTRC,LTBP4,PGC,MMP9,IDE,MMP8,MMP7,RNF217,RCE1,MMP3,MMP2,MMP1,SHH,HTRA2,ERAP1,CPA3,PSENEN,CPA1,CFD,FBXO22,DNAJC1,ANAPC2,ANAPC5,ANAPC4,UBR3,NAPSA,MYH9,NAPSB,ADAMTS9,UHRF2,BACE2,UBR5,TMPRSS11E,BACE1,F2,ST14,FBXL4,AMFR,FBXL6,PGCP,WFDC2,ADAMTS5,ADAMTS4,FBXL2,DERL2,FZR1,SYVN1,DERL1,MME,NEDD8,ANAPC10,TIMP1,ARIH1,UBE2D3,ACE,UBE2D2,KLKB1,CTRC,FBXO6,RNF11,FBXW2,ZMPSTE24,FBXO3,UBE2D1,SRGN,CTRL,FBXO7,PLAT,NPLOC4,BMP1,FBXO2,CDC23,PCNP,CDC20,UBE2L3,FURIN,LCN1,PSMC5,PSMC4,VCP,UBA3,PAPPA2,SPCS1,SMURF2,SMURF1,PHEX,CPB2,PLAU,UBE2E1,DPP3,SPG7,KIAA0368,CORIN,TSG101,UBE2G1,UBE2G2,MMP24,CFHR1,CASP5,LNPEP,CASP6,MMP20,CASP3,CASP4,TPP1,CASP7,TPP2,CASP8,CASP1,CASP2,CTSZ,UBE2A,PEPD,ADAM10,ASTL,UFD1L,UBE2I,CTSS,UBE2H,MMP14,UBE2C,MMP13,UBE2B,MMP12,MMP11,UBE2N,MMP10,CTSK,BLMH,ATG4D,SENP1,ATG4C,PSEN1,UBE2K,ATG4B,ATG4A,CTSO,PSEN2,SIAH1,SIAH2,CTSB,UBB,USP25,CTSH,PMPCA,CTSG,CTSF,CLN6,MBL2,PREP,APH1A,UBE3A,ADAMTS13,SHFM1,STUB1,EDEM1,SUFU,CPZ,PCSK2,PCSK1,SQSTM1,REN,PRSS2,PRSS3,PITRM1,KRT1,C2,PCSK6,HGFAC,USP33,PCSK5,RNF144B,OLR1,UBE4A,VHL,UBE4B,PARK2,TMPRSS6,CAPN3,SELS,XPNPEP1,C9ORF3,NCSTN,PSMD14,MMP23B,MBTPS1 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html ALDH8A1,RARRES2,ALAD,TSPO,COX10,PPOX,GPR143,DCT,ALAS1,TYR,ALAS2,CPOX,AP3D1,OCA2,COX15,FECH,GMPS,BLVRA,RDH12,RDH11,DHRS3,AS3MT,NFE2L1,PAICS,RETSAT +PWCOMMONS PYRIMIDINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PYRIMIDINE_NUCLEOTIDE_METABOLIC_PROCESS.html DCTD,UMPS,TYMP,NT5M,CTPS,DCK,AK5,ENTPD4,NT5C +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html ALDH8A1,ME1,RXRA,PGD,RBP2,DHRS9,TKTL1,BBOX1,RDH12,RDH11,ALDH1A2,DHRS3,THTPA,PGLS,CYP27B1,RLBP1,RETSAT +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html VAPA,PDLIM7,ITSN1,ADORA1,NRCAM,HOOK2,GATA2,BAK1,PICALM,PACSIN3,ADAM2,ATG7,VPS4B,IZUMO1,EGFR,MYO6,OPA1,STAP1,PICK1,CRISP1,TAZ,LRP1B,VTI1B,COLEC12,VAMP3,RAB7A,RTP2,NAPG,ADORA2A,RTP1,SNX2,RABEPK,HFE,SNX1,ARF6,PPT1,SNX4,NAPA,SNX3,BCL2L1,AHSG,ADRB3,DOCK1,FOLR1,RAC1,SFTPD,DULLARD,AGRN,STX11,HIP1,MRC1,NPLOC4,RABIF,REEP1,CORO1C,RABEP1,TSC2,CACNA1H,GOSR2,CLEC7A,CLTCL1,KCNH1,MSR1,LDLR,AP2S1,SORL1,SYNJ1,BNIP3,TIMM50,KCNIP2,ASGR1,AP1S1,ZFYVE16,NECAP2,COX18,STX6,RAMP3,CLN3,RAMP2,SPACA3,CCDC88A,TP53,ARHGAP27,ATP6V1H,PI4KB,LDLRAP1,M6PR,ELMO1,MFN2,ADRB2,BNIP1,IGF2R,OTOF,RAB5A,LRMP,STEAP2,ADAM12,EPN1,SERP1,STON2,SNAP29,STON1,GULP1,EEA1,SCARF1,AMPH,AZU1,CD9,BCL2,FCN2,FCGR1A,PEX16,FCN1,CD2,CD24,SNAP23,A4GALT,DNM1L,CBL,MAL,STAB2,SOD1,SH3BP4,CDH13,PLSCR1,STAB1,RAB22A,LRP8,LRP2,LRP3,CD14,DNM1,GCA +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html SRI,MDFI,PTPRC,TAF3,PDIA3,S100A7,PDIA2,NFKBIE,TOPORS,MXI1,FTH1,NFKBIL1,THY1,NFKBIL2,ALB,LCK,GAA,SUPT7L,FAF1,TMSB4Y,SRGN,ATP7B +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html HTATIP2,RNH1,PML,PF4,TNFSF12,FOXO4,SPINK5,AGGF1,IL17F,RHOB,CHRNA7,RUNX1,ANGPTL3,ANGPTL4,COL4A3,COL4A2,NF1,SPHK1,NPR1,TNNI3,PLG,SERPINF1,BTG1,STAB1,NPPB,AMOT +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html PARD6A,PARD6B,TLN1,GJD3,TLN2,PRKCI,GJA1,GJA4,GJA5,GJC1,VCL,CD9,TJP1 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html UQCRC2,ME3,OXA1L,UQCRC1,LEPR,PDHB,ADRB3,NDUFS4,GYS2,TREH,DYRK2,NDUFS1,ACO2,CYCS,EPM2A,BCS1L,GYG2,CRAT,PPARGC1A,ACADVL,LEP,SDHA,SDHB,SLC25A14,NNT,GCK,PYGM,UQCRH,GSK3B,SDHC,GFPT1,GFPT2,SDHD,GAA,SURF1,PYGB,UQCRB +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SEPT5,SYT1,UTS2,KCNC4,SNCAIP,GRIK1,SLC6A1,GRIK2,SYT5,SLC6A2,GABRB2,GRIK4,SLC6A4,CNP,VIPR1,GDNF,TGFB2,HTR1B,GRIN2B,APOE,GALR3,GALR2,CHRNA5,CHRNA4,CHRNA6,HTR1D,NQO1,CHRNA1,HTR1F,HTR1E,KCND2,SCN2B,KIF5A,BAIAP3,STRN4,GRIN2A,BSN,NTSR1,GABRR2,MAPK1,CBLN1,DOC2A,GABRR1,COLQ,HTR7,HTR6,AKAP5,NPTN,CARTPT,PMP22,KCNMB4,DRD1,SCN1B,CALY,DRD2,KCNA1,DRD4,PXK,RIMS1,KCNMB1,HCRTR2,HCRTR1,GAD2,SYPL1,GAD1,NOVA1,HAP1,UNC119,CPNE6,OMP,SNAPIN,HOMER1,KCNK3,PDE7B,NPY,RAPSN,CHRNB4,MTNR1B,CHRNB3,CACNA1E,QPRT,CHRNB1,RIT2,CORT,SST,CHRNE,CACNA1B,GABBR2,KCNIP1,MBP,KCNQ5,SLC1A2,SLC1A3,KCNQ3,FXN,SLC1A6,DLG4,KCNQ2,SLC1A1,TAAR5,NPFF,KCNMA1,PCDHB9,GPR176,PRG3,PCDHB5,PCDHB6,NPBWR1,PCDHB3,NPBWR2,PCDHB4,PI4KA,PCDHB2,GRM1,STX1B,GRM5,GRM4,GRM3,KIF1B,GRM2,GRM7,GHRL,CNTN4,UBB,ALDH9A1,HCRT,RAB3A,CPLX1,OPRK1,PCDHB14,AKAP9,PCDHB13,HPRT1,PCDHB11,PCDHB10,GCH1,AMPH,NPTX1,HRH3,SYN1,SYN3,PCDHB16,SYN2,CD24,HTR3A,HTR3B,GCHFR,APBA1,DTNA,COL4A4,KLK8,GLRB,PLP1,MPZ,NLGN1,DBH,GABARAP,ACCN1,YWHAG,ATXN3,YWHAH,GRIA2,KCNN1,GRIA1,SLC6A5,KCNN3,CRH,MYCBPAP,SLC5A7,HTR2C,CHRNA10,HTR2A +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html WASF3,WASF1,PREX1,ARF6,LATS1,NCK2,CDC42EP2,ANG,GSN,NCK1,RAC1,TMSB4Y,RASA1,CDC42EP5 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MTSS1,TTN,PRKG1,CXCL12,PACSIN2,PLA2G1B,ROCK1,MYH9,NEBL,ARPC1A,RND3,KRT19,RND1,ATP2C1,TESK2,DST,DBN1,FGD2,FGD1,SSH1,MRAS,SSH2,ARF6,ARPC4,ARPC5,LLGL1,DOCK2,CDC42EP2,RAC3,RAC1,ADRA2A,FGD5,FGD6,ARHGEF10L,FGD3,ARHGDIB,CDC42EP5,FGD4,FSCN2,TAOK2,FSCN1,ARFIP2,MYOZ1,EVL,EPB49,CDC42BPG,TSC1,CDC42BPA,MYH11,SPTA1,GHSR,ABL1,CDC42BPB,RHOJ,LIMA1,NUAK2,WASF3,WASF1,PREX1,BCAR1,WASF2,LATS1,DSTN,CDC42,PDPK1,DYNLL1,GSN,ANG,RHOA,RHOF,DLG1,ARHGEF2,CCDC88A,ACTA1,LIMK1,ARHGEF17,FLNB,FLNA,ELMO1,NCK2,NCK1,SCIN,CFL1,GHRL,WASL,TMSB4Y,CXCL1,SHROOM1,SHROOM2,PLEK2,SORBS3,EZR,SORBS1,WIPF1,RASA1,TNXB,NF2,NF1,RICTOR,RACGAP1,CAPG,AMOT,KPTN,CRK +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html NDUFB4,GCLC,ATOX1,S100A7,PRDX5,PRDX2,PDLIM1,CCL5,GCLM,GLRX2,ANGPTL7,APOA4,GSS,ERCC8,MSRA,ERCC6,GPX3,NDUFS8,CYGB,SEPP1,ERCC3,NDUFS2,ERCC1,ERCC2,DHCR24,SGK2,NUDT1,STK25,NDUFA6,APTX,DGKK,OXSR1,SOD1,SELS,NDUFA12,SOD2,PNKP,RNF7,DUSP1,PRDX6,TXNRD2,MPO,SCARA3,PRNP,SRXN1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html AURKAIP1,XRCC6,RORB,MED21,CITED2,EPC1,FOXF1,FOXF2,SUPT5H,EIF2B5,PCBD2,RXRA,MED12,MED14,MED13,PPARGC1A,BOLL,PPARGC1B,HNF4A,MED17,CRTC1,ARF6,AFAP1L2,PLAGL1,FOXH1,CDC42EP2,MAML3,TCF4,TCF3,ARHGEF10L,CDC42EP5,BMP4,UTF1,MAML1,MAP2K3,CREBBP,MAML2,ESRRG,SMAD3,MSTN,SMAD2,NUP62,NOTCH4,TNK2,BMP7,BMP6,PPARA,HNF1B,ELF1,HNF1A,ACVRL1,ELF4,SPI1,TP63,GLI2,CAMKK2,ZBTB38,GLI1,MAPT,ATF7IP,LYN,PRG3,CCNH,TP53,ARHGEF11,SCAP,RAD51,GTF2H1,MED6,INHBA,NCK2,CCND1,CARD14,EREG,CCND3,CCND2,NCK1,IL12A,IL12B,NSD1,CLOCK,MED1,CLN6,NUFIP1,EHF,HPRT1,AZU1,MRPL12,SQSTM1,BCL3,DAZL,SUPT4H1,CD24,CD28,FOXD3,IL4,IL3,DAZ1,IL6,IL5,HCLS1,TBX5,IL9,TRIM28,ILF3,TP73,GAPDHS,MNAT1,YWHAH,ILF2,YAF2,FOXE1,PPP2R4,PHF5A,RBM14,MMS19,NCBP1,TLR1,ARNT2,EIF5A,FOXO1,TLR3,TNFSF13,TLR4,FOXO3,TLR6,TLR7,TGFB1,TLR8,TLR9,IL31RA,APOA2,MDFIC,SMARCD3,ATG7,TDGF1,APOA5,SMARCD1,GATA4,MYST1,MYST4,EBI3,SAMD4A,SPN,MYST3,EGFR,BCL10,MYO6,IL29,IL27,ARID1A,ARNTL,ELL3,TRERF1,IL20,HIF1A,TFAP2B,SMARCA1,ITLN1,KATNB1,ELK1,ABCA1,DYRK2,UBE2D1,RUNX1,EGF,ANGPTL3,ZNF423,EPAS1,TAF8,CD276,FOXP3,BRCA1,ATF6,ATF4,AKTIP,SMARCC1,DYRK1B,SMARCC2,HIVEP3,GLMN,HSP90AB1,RSF1,CTCF,ANG,CLCF1,TPP1,PAX8,MKL2,LTB,PIGA,EGR1,HSP90AA1,PIGY,PRKCG,CDK7,HMGA1,PRPF6,NRIP1,UBE2N,BPTF,CD80,ZMIZ2,TPPP,CD81,NCOA6,UBB,ACVR1,GLIS3,GLIS2,GLIS1,EGLN2,TNFRSF8,STUB1,TNFRSF1A,RGMB,NPAS2,ERCC6,NFATC2,ERCC3,ERCC2,DEFB103A,CEBPG,CREB5,SP1,GCK,THRAP3,IRF4,FAF1 +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html LOR,TXNIP,ANXA1,SCEL,IL20,NME2,EVPL,EREG,SPRR1A,SPRR1B,TGM1,TGM3,DSP,CSTA,IVL +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SNCAIP,SLC7A8,SLC7A9,BPHL,GGT1,SLC7A4,SLC7A5,OTUB2,BBOX1,SLC7A6,SLC7A7,GLDC,FAH,TGFB2,GOT2,ASPA,GOT1,PLOD1,SCLY,MAT1A,ASMTL,DDAH2,DDAH1,ALDH6A1,YARS,DARS,GATM,AARS,QDPR,CDO1,SARS2,PYCR1,COLQ,SULT1B1,RARS,CCBL1,GCLC,GLUD2,GLUD1,FARS2,PAH,ASL,GCLM,KARS,OAZ2,ARG1,GAD2,OAZ1,ALDH4A1,GCSH,ASRGL1,GAD1,P4HB,SLC6A14,HGD,ATF4,BAAT,DIO2,SLC7A2,DIO1,FPGS,SLC25A15,BCKDK,AMT,GSS,WARS,MCCC2,MSRA,TYR,HDC,GSTZ1,YOD1,HPD,PEPD,PRG3,ALDH5A1,SLC3A1,DDO,SDS,DHPS,SMS,BCAT1,ALDH18A1,NFS1,HPRT1,DCT,GLS2,MTHFR,ETNK1,MARS2,PTS,BCKDHA,BCKDHB,ADI1,SLC6A6,MAT2B,GAMT,SLC5A7 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB9,COL4A4,ACHE,KLK8,PCDHB5,PCDHB6,PCDHB3,PCDHB4,NLGN1,PCDHB2,CACNB2,NRD1,PCDHB14,PCDHB13,PCDHB11,PCDHB10,NRCAM,PCDHB16,GHRL,POU4F1,UBB,AGRN,CHRNA1 +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html ACOX2,GBA2,CYP7B1,NPC1,CYP39A1,BAAT,HSD3B7,AKR1D1,AKR1C1,NR1H4,ACOX3 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html TRAF2,ATP6AP2,AFAP1L2,TGFB2,MAP3K7,CALCA,NOD2,IFNG,CHRNA7,CD24,TRAF6,SMAD4,CIDEA,SMAD3,MALT1,SOD1,FOXP3,CARD11,HIF1A,EREG,CD40LG,IL12A,GHRL,IL12B,GHSR +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html GCLC,FGF16,CRNN,SOD1,GMPR,CSDA,EIF2B1,AKT1,ACOT11,CIRBP,ERO1L,EIF2B2,DNAJB4,EIF2B3,EIF2B4,EIF2B5 +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html NCK2,LIMA1,CDC42EP2,GSN,NCK1,CAPG,ARF6,TMSB4Y,CXCL12,LATS1,RASA1,CDC42EP5 +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html B4GALT1,ST6GAL1,ST6GAL2,FUT8,GLA,ST8SIA4,MPDU1,MAN1B1,ST8SIA3,ST8SIA2,COG2 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html KCNE1L,SRI,ACTC1,ADORA3,CYP2J2,MYH7,MYH6,KCNJ12,KCNIP2,TPM1,TGFB2,DMPK,TNNT2,DES,CHRM2,HSPB7,KCNE1,RYR2,CACNA1H,KCNE2,KCNH2,KCNQ1,SCN5A,KCNG2 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html EHMT1,PHB,CREBBP,HDAC10,HDAC11,PPARGC1A,SIRT2,UBE2N,RPS6KA5,SET,HUWE1,PRMT7,PRMT8,WHSC1L1,RBM14,CARM1,NSD1,MYST1,MAP3K12,MYST4,HELLS,HDAC6,MYST3 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html KCNMB3,SRI,KCNMB4,PPARD,PLP1,KLK8,KCND2,NF1,MAL,SOD1,KCNMB2,MBP,AMIGO1,CD9,EIF2B2,EIF2B4,EIF2B5 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html CAV1,ABCA2,ABCA1,ABCG1,APOA4,APOA2,NPC1,NPC2,APOA1,APOE,LCAT,PCSK9,CETP,CD24,ANGPTL3,AKR1C1 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html DIS3,NOLC1,DKC1,EXOSC7,RPS14,EXOSC2,EXOSC3,POP4,RRP9,GEMIN4,FBL +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html CYP3A4,UGT1A6,UGT1A9,NR1I2,AS3MT,UGT2B11,UGT2B4,NQO1,UGT2B15,UGT2B28,S100A12 +PWCOMMONS ESTABLISHMENT OF VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_VESICLE_LOCALIZATION.html SEPT5,SNAP29,STX5,SHROOM2,AP1M2,NLGN1,TMED10,LRMP,SNAP23,YKT6 +PWCOMMONS HEME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_BIOSYNTHETIC_PROCESS.html ALAS1,TSPO,ALAD,ALAS2,FECH,COX10,CPOX,NFE2L1,PPOX,COX15 +PWCOMMONS UNFOLDED PROTEIN RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/UNFOLDED_PROTEIN_RESPONSE.html ATF6,DERL2,DERL1,VCP,VAPB,ERN1,AMFR,EIF2AK3,DERL3,SELS +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html SEPT5,SEPT4,PARD3,PRC1,DIAPH2,AURKC,NUSAP1,BRCA2,BIRC5,ANLN,MYH9,DCTN3,RACGAP1,TGFB2,INCENP,RAB35,CNTROB,SEPT6,SEPT7,RASA1,MYH10 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html XRCC4,RP1,AQP9,ZAK,TACR1,COPS3,FGF16,MBIP,NR2E3,HVCN1,AKT1,GPX1,MC1R,CDKN2D,ACOT11,TRPV4,EIF2B2,EIF2B3,EIF2B4,EIF2B5,BRCC3,FECH,REV1,RELA,TOPBP1,LIG4,GMPR,CSDA,XRRA1,GTF2H2,SAG,PITPNM1,PNKP,PPM1D,RPAIN,TIMELESS,GRM6,DDB2,IL12A,MAPK8,ATPIF1,IL12B,NHEJ1,DYNLRB1,CLOCK,GCLC,POLA1,PML,TAC1,BRSK1,OPN1SW,CRNN,ABCA4,GLRX2,PDE6B,ERCC8,SNN,ERCC5,ERCC6,NPFFR2,BCL3,SERPINB13,ERO1L,ERCC3,IVL,ERCC4,FEN1,ERCC2,UNC119,TRPC3,NF1,UBE4B,SOD1,EIF2B1,ATM,CCL11,ACCN2,POLD1,PDC,CIRBP,SCARA3,CACNA1F,DNAJB4,SMC1A,GRK1,RHO,OPN4 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html BCL10,IL6,LYN,MAFB,HCLS1,LDB1,CEBPG,SPI1,CDK6,FOXO3,SOD1,AKT1,INHBA,ACVR2A,ACVR1B,RPS19,ALAS2,ETS1,DYRK3,ACIN1 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html SEPT5,RAB3A,SYT1,KCNMB4,SNCAIP,BAIAP3,NLGN1,SNAPIN,RIMS1,GRM4,HRH3,SYN3,CARTPT,TMED10,STEAP2 +PWCOMMONS RNA 3END PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_3END_PROCESSING.html TRNT1,NCBP1,CSTF3,CSTF2,GRSF1,PABPC1,CPSF3,CSTF1,CPSF1,SLBP +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CHIA,S100A7,VAPB,PGLYRP1,TLR3,APOBEC3G,TLR6,CXCL12,TLR7,APOBEC3F,IL10,TLR8,ISG20,CFP,NLRC4,PGLYRP4,PGLYRP2,PGLYRP3,IFNK,DNAJC4,SPN,BCL10,CRTAM,IL29,IFI44,HBXIP,LILRB1,WFDC12,CCDC130,HSPB7,HSPB1,AMFR,HSPB3,EIF2AK3,LALBA,DERL2,DERL1,FGR,ITLN1,CCL8,HSPA1B,DEFB127,CCL5,BANF1,SERPINH1,CCL4,DERL3,CHIT1,HSPA1L,SLC11A1,IFNA7,IFNA4,PRKRA,DNAJA1,HSPE1,HERPUD1,CREBZF,S100A12,ATF6,VCP,DNAJB2,DNAJB1,DNAJB4,DNAJB5,IL28RA,DUOX2,BNIP3,HSPH1,NOD2,NOD1,CXCR4,FOSL1,IFNGR2,IFNGR1,ABCE1,SPACA3,CAMP,TP53,NLRP3,IFNAR1,IFNAR2,TARBP2,C19ORF2,IL12A,ERN1,IL12B,TNF,POLA1,IFNW1,RSAD2,IVNS1ABP,AZU1,CCL22,HSPA2,BCL2,TOR1A,TOR1B,HSPA6,DEFB118,BCL3,CD24,PTPRC,DEFB103A,CCL19,STAB2,TRIM22,CCL18,SELS,CD1D,CCL11,STAB1,IRF7,GSK3B,BNIP3L,HSPA4L,DMBT1,IFNA17 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html MCHR1,ADORA3,ADCY7,WASF2,GABBR1,GABBR2,GHRHR,EDNRA,EDNRB,GALR1,GALR3,GALR2,CAP1,PRKACB,GLP2R,PTGER4,CRHR1,PTHLH,GRM4,CRHR2,ADRB2,GRM3,CHRM5,ADRB1,GRM2,GRM8,CHRM2,GHRH,CCR3,GRM7,GIPR,CCR2,GNAS,GLP1R,ACR,CALCR,AVPR2,DRD1,GNAI3,GNAI2,ADORA2B,DRD2,OPRK1,DRD5,NPY2R,FPR1,GCGR,ADCYAP1,GPR3,CALCA,ADRB3,ADRA2A,CAP2,OPRL1,NF1,NPY1R,P2RY11,RGS1,LTB4R2,MC4R,ADRA1B,GRK5,CORT,ADRA1D +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html ARFGAP3,ACHE,PPY,LTBP2,CADM1,ABCA1,DPH3,PDIA4,PYDC1,CANX,APOA2,NOD2,NLRC4,APOA1,ANG,INS,PYCARD,SRGN,DNAJC1,SCG2,SERGEF,CRTAM,CARD8,CIDEA,ARFIP1,NLRP3,FOXP3,NLRP2,BACE2,NLRP12,GLMN,ARL4D +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html AIPL1,PIGZ,PIGY,PIGV,GPAA1,PIGU,PIGT,PIGS,PIGO,FNTB,PIGK,FNTA,PIGF,PIGG,ATG7,PIGH,CHM,PIGB,DPM1,PIGC,DPM2,DPM3,PGGT1B,PIGA +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html IQCB1,ZNF675,PF4,ZBTB16,FOXO4,SHH,CALCA,NPHP3,TWIST2,USH2A,BMP4,IL4,TBX3,MAFB,DTX1,LDB1,NF1,CDK6,SOCS5,INHA,GPR98,NOTCH2,INHBA,NOTCH1,EREG,NOTCH4,CARTPT,CNTN4 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RAB3GAP2,LTBP2,CADM1,MXI1,SSR1,RAE1,HOMER3,TRAK1,CEP290,TLK1,RPL11,KIF13B,CRTAM,CD3G,VPS45,VANGL2,OPTN,MYH9,COLQ,BACE2,PEX26,F2,BIN3,RTP3,RTP2,RTP4,NFKBIE,RTP1,PPT1,AKAP10,CALR,CDC37,UHMK1,CD74,INS,DUSP16,SUPT7L,SEC23IP,TRAM1,MDFI,NXF5,CIDEA,SMAD3,ARFIP1,ABCG1,GGN,NFKBIL2,CBLB,TRPS1,LGTN,RERE,PDIA3,PDIA2,TIMM17A,TIMM17B,AP3S2,PDIA4,GLI3,CANX,NOD2,ZFYVE9,COX18,KDELR1,AP3B1,TOMM34,KDELR2,RPGR,TP53,FLNA,ZDHHC17,NUP205,TOMM20,TOMM22,TMSB4Y,NUP107,ARL4D,SHROOM2,SHROOM3,NAGPA,NUP214,PEX19,SQSTM1,DDX19B,PEX16,AP3D1,BCL3,PEX14,PEX13,BCL6,CD24,PEX12,PEX10,APBA1,FYB,SERGEF,UPF2,UPF1,NLGN1,PPP1R10,BIRC5,SELS,GABARAP,COG3,YWHAH,COG7,GSK3B,RAB35,NLRP12,SSR2,BARD1,COG2,NCBP2,TSPO,XPO6,AP1G1,LMAN2L,TNFSF14,EIF5A,MIPEP,AGXT,TGFB1,KLHL2,AIP,NLRC4,APOA2,APOA1,DDX25,DNAJC1,CUTA,EGFR,NUP133,MCM3AP,MYO6,STAP1,NUDT4,HNRNPA2B1,LRP1B,ERP29,NUPL2,DDX39,RPAIN,BAT1,SNX9,ACHE,ARFGAP3,DERL2,PPY,DERL1,CTSA,ABCA1,PYDC1,NPM1,ANGPTL3,SRGN,CARD8,TAF3,SMG6,SMG5,CKAP5,SMG7,SMG1,SNAPIN,ICMT,REEP1,FOXP3,NFKBIL1,TRNT1,PPIH,VCP,TSC1,PTTG1IP,GLMN,TRIP6,XPO7,HPS4,PEX6,PEX3,DPH3,PEX7,AKT1,PEX1,ANG,ZFYVE16,NCKIPSD,RANBP2,TPR,KPNB1,KHDRBS1,TOPORS,TIMM23,NLRP3,TIMM44,NLRP2,MFN2,ATG4D,ATG4C,ATG4B,ATG4A,CD81,ARCN1,C3ORF31,KPNA6,KPNA5,KPNA4,KPNA3,KPNA2,KPNA1,TNF,AP1M2,NUP160,CDH1,SEC63,CEP57,AP3M1,TAP2,PYCARD,SCG5,APPBP2,ERCC3,TNPO1,SCG2,NF1,MAL,CBY1,TMEM48,TRPC4AP,FAF1,GGA1,F2R +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html RTP3,CYB5R4,OR52A1,C5AR1,RTP4,TAS2R4,TAS2R5,OMP,TAS2R3,UBR3,TAS1R3,TAS1R1,TAS1R2,OR1D2,SLIT2,OR1D5,TAS2R16,TAS2R14,TAS2R43,GNAS +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html SREBF1,NUAK2,FADS1,TP53,ASNS,EIF2B1,PPP1R9B,CHMP1A,CDKN1A,CDKN2B,ALB,GSK3B,PCSK9,CARTPT,EIF2B2,EIF2AK3,EIF2B3,EIF2B4,EIF2B5 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html BBS4,KIF11,CROCC,CKAP5,CETN3,BRCA2,CETN1,CP110,UXT,SASS6,NDE1,CEP250,SAC3D1,CNTROB,NPM1,TUBE1 +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html E2F1,TAF1,CDC6,TBRG4,CDC23,CDK6,CDC25C,FOXO4,CDK2,CDKN1C,GFI1B,CDK10,MAP3K11 +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html ST6GALNAC6,CLN3,LARGE,GLA,PSAP,UGCG,ST8SIA5,ST8SIA1,ST8SIA3,NEU3,CLN6,B4GALNT1 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html HS3ST6,C9,HS3ST5,DERL1,VAPB,SMAD3,RRAGA,TGFB1,CLEC4M,TARBP2,WWP2,ALB,CD209,WWP1,CD81,ACE2,ITCH +PWCOMMONS REGULATION OF RHO GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_GTPASE_ACTIVITY.html FGD2,ALS2,FGD1,TSC1,RALBP1,ARHGAP27,FGD5,FGD6,FGD3,FGD4 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html NCBP1,RNMT,CRNKL1,CWC15,SNRPD1,SNRPD2,SMNDC1,RNGTT,NONO,SFRS6,SFRS7,SFRS4,SFRS5,DHX38,SFRS8,SFRS9,LSM5,LSM3,DDX20,LSM1,KHDRBS1,SRPK2,PRPF31,EFTUD2,PTBP1,SF1,SFRS1,HNRNPR,PPARGC1A,SRPK1,SFRS2,DDX39,KHSRP,CPSF6,SLU7,CPSF3,SIP1,CPSF1,BAT1,TRA2A,KIN,SF3B3,USP39,NUDT21,DHX15,GEMIN8,PABPC1,SFRS2IP,GEMIN6,GEMIN7,SFRS11,SPOP,GEMIN5,CSTF3,CSTF2,GRSF1,SNW1,ELAVL4,PRPF18,SF3A2,SF3A1,HNRNPA0,SLBP,SF3A3,SFPQ,PHF5A,CSTF1,TXNL4A +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html ACR,CALCR,AVPR2,DRD1,ADORA3,ADORA2B,ADCY7,DRD5,GHRHR,ADCYAP1,GPR3,EDNRA,CALCA,ADRB3,CAP1,CAP2,CRHR1,PTHLH,ADRB2,P2RY11,ADRB1,GHRH,GIPR,GNAS,GLP1R +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CHIA,S100A7,IL28RA,DUOX2,PGLYRP1,BNIP3,TLR3,APOBEC3G,TLR6,APOBEC3F,CXCL12,TLR7,TLR8,IL10,ISG20,CFP,NOD2,NLRC4,NOD1,PGLYRP4,CXCR4,PGLYRP2,PGLYRP3,IFNK,IFNGR2,FOSL1,IFNGR1,SPN,BCL10,ABCE1,SPACA3,IL29,CAMP,IFI44,HBXIP,IFNAR1,LILRB1,TARBP2,WFDC12,IFNAR2,CCDC130,C19ORF2,IL12A,LALBA,TNF,FGR,ITLN1,POLA1,CCL8,IFNW1,RSAD2,DEFB127,IVNS1ABP,CCL5,BANF1,CCL4,CHIT1,AZU1,SLC11A1,CCL22,IFNA7,BCL2,PRKRA,IFNA4,DEFB118,BCL3,CD24,PTPRC,CREBZF,DEFB103A,CCL19,STAB2,TRIM22,S100A12,CD1D,CCL11,STAB1,IRF7,BNIP3L,DMBT1,IFNA17 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html KHDRBS1,NCBP2,NUP133,UPF2,UPF1,SMG6,NUDT4,NUP160,SMG5,NXF5,SMG7,SMG1,EIF5A,DDX39,TSC1,RAE1,DDX25,DDX19B,NUP107,BAT1 +PWCOMMONS LYSOSOMAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOMAL_TRANSPORT.html ARSB,NPC1,NAGPA,ADRB2,AP3M1,LYST,ZFYVE16,USE1,RHOB,M6PR +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html GNPDA1,BTRC,PGD,USE1,RNASEH1,RNF217,ISG20,CDKN2A,MIOX,CPA2,FBXO22,ANAPC2,ANAPC5,DFFA,DFFB,ANAPC4,CECR2,UBR3,RNASEH2A,GNS,PGLS,UHRF2,UBR5,MGAM,FBXL4,AMFR,XRN2,ALDOA,DERL2,FZR1,SYVN1,DERL1,ALDOB,PFKFB1,PABPC4,PPT1,UBE2V2,NEDD8,ANAPC10,HSPA1B,CHIT1,ARIH1,UBE2D3,UBE2D2,INS,RNF11,UBE2D1,NTHL1,FBXO7,NPLOC4,SMG6,SMG5,GUSB,SMG7,SMG1,CIDEA,CDC23,TPD52L1,PCNP,CDC20,UBE2L3,PSMC5,VCP,POP1,HGS,SMURF2,SMURF1,UBE2E1,KIAA0368,TSG101,UBE2G1,UBE2G2,BNIP3,AUH,TREH,ZFP36,ABCE1,SPACA3,UBE2A,PFKL,UFD1L,AIFM1,CYCS,UBE2I,PRKCG,UBE2H,PFKM,UBE2C,HYAL4,UBE2B,UBE2N,UBE2K,GAA,ERN2,MDM2,SIAH1,MDM4,SIAH2,UBB,UBE3A,EGLN2,HK1,TKTL1,STUB1,EDEM1,ERCC5,SQSTM1,RNASET2,PRSS2,ECD,ERCC3,ERCC4,USP33,ERCC1,ERCC2,RNF144B,FOXL2,UPF2,RNASE2,RNASE3,UBE4A,UBE4B,RNASE6,PARK2,SOD1,SELS,GBA3,GAPDHS,GBA2,PSMD14,GSPT1,PPP1R8,BAX,FAF1,PYGB +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html BCAT1,ALDH18A1,PRG3,PAH,CDO1,BBOX1,TGFB2,PYCR1,OAZ1,PLOD1,ASMTL,ETNK1,SULT1A2,MAT2B,SLC5A7 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html IL4,PTPRC,CD3E,IL7,IL18,CD276,SOCS5,IL21,SART1,THY1,CD47,NCK2,SIRPG,NCK1,LCK,ZAP70,CD24,IL12B,ICOSLG,EBI3,CD28 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html FGD2,FGD1,CDC42EP2,CDC42EP1,TAOK2,CDC42EP4,FGD5,MYH9,FGD6,FGD3,FGD4,CDC42EP5 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html EGFR,REPS2,GRB2,BCAR1,CBL,AFAP1L2,RPS6KA5,EPS15,NCK2,CDH13,CBLC,EREG,EPS8,ERBB2IP,EPGN,GAB1,TDGF1,TGFA,SHC1,SHC3,EGF,GRB7 +PWCOMMONS AMINO ACID DERIVATIVE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_BIOSYNTHETIC_PROCESS.html OAZ1,GATM,PRG3,ASMTL,ETNK1,GAMT,SLC5A7,CDO1,BBOX1,TGFB2 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html MED12,MED24,IGF1,MED14,ARID1A,MED13,ESR2,RBM9,DAXX,CALCOCO1,PPARGC1B,MED4,YWHAH,MED30,MED16,UBR5,MED17,THRAP3,DDX54,MED1 +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html SREBF1,PPP1R9B,CDKN1A,CHMP1A,NUAK2,CDKN2B,ALB,FADS1,TP53,CARTPT,PCSK9,ASNS +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html NOD2,CARD8,ACHE,CRTAM,CADM1,ANG,INS,PYCARD,GLMN,NLRP3,PYDC1,NLRP2 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html CDC6,SPHK1,SMAD3,AFAP1L2,ASNS,BIRC5,RCC1,CDC25C,CDK2,TGFB1,CHMP1A,CDKN2A,CDC123,BTG3,MYO16,FBXO5,CDK10,FOXC1,APBB2,APBB1,DLG1 +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html ADSS,CTPS,FIGNL1,NUDT5,OLA1,ACLY,AK5,AMPD3,UMPS,ADK,C16ORF7,ENTPD4,CTNS,GUK1,NDUFS1 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html HSD17B11,PPARA,HACL1,PPARD,ECH1,HSD17B14,ECHS1,PPT1,HADHB,APOA5,HSD17B6,BDH2,CPT1B,STS,ACADM,CYP46A1,ALDH5A1,ACADS,PNPLA3,CPT1A,HAO1,ACADVL,CEL,YWHAH,GLA,PRDX6,HAO2,UGT2B4,NEU3,PLA2G4C,SMPD4,AKR1D1,PLA2G4B,SMPD3 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html PPARD,FGF7,BTD,S100A7,FST,CRABP2,CDSN,SPINK5,TGFB2,GLI1,PLOD1,CTGF,ALOX12B,KRT85,KRT83,DHCR24,STS,FLOT2,UGCG,FOXN1,KRT13,KRT10,WAS,SCEL,IL20,PTHLH,NME2,EVPL,KRT17,KRTAP5-9,ATP2C1,KRT16,KRT15,KRT14,DSP,LAMC2,COL1A1,EMP1,RBP2,HOXB13,ALDH3A2,KRT9,DCT,LAMB3,COL17A1,COL7A1,KRT5,POU2F3,KRT1,TGM3,KRT2,TGM5,CALML5,ERCC3,ERCC2,KLK7,KLK5,KRT31,GJB5,KRT34,COL5A2,KRT32,LAMA3,ATP2A2,SPRR1A,CASP14,SPRR1B,BNC1,PTCH2,FABP5 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html CADM1,BCAR1,IL28RA,APOBEC3G,SPINK5,APOBEC3F,TLR8,TGFB2,CFHR1,MAP3K7,CHRNA7,IFNK,CRTAM,IL29,POLH,SLA2,PRKCG,NFAM1,NCR1,SLIT2,TRAT1,IL20,THY1,UBE2N,TARBP2,LAT2,EREG,PTGDS,IL12A,CARTPT,GHRL,IL12B,TRAF2,MBL2,UBE2V1,UBE2V2,CX3CL1,AHSG,TNFRSF1A,KRT1,C2,TRAF6,SCG2,IL4,PTPRC,KLK8,IL8,CEBPG,MALT1,FOXP3,CD1D,LEP,CDH13,NPY,FYN,EEF1E1,IKBKG,CD79A,GHSR +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html ZAK,MBIP,TLR6,DAXX,PDCD4,MAP3K6,MAP3K5,MDFIC,CXCR4,MAP3K9,TDGF1,SPRED2,TGFA,SHC1,CHRNA7,SPRED1,GNG3,PAK1,FGF2,EGFR,DBNL,C5AR1,MADD,PIK3CB,KIAA1804,PKN1,PROK2,GRM4,ADRB2,MAP4K5,PLCE1,LAX1,HIPK3,CD81,MAP3K10,GHRL,MAP3K11,ADORA2B,PTPLAD1,ERBB2,C5,FPR1,MAP4K1,TRIB3,TRIB2,TRIB1,MAP3K2,DUSP16,ADRA2A,ADRA2C,CD24,EGF,GPS1,MDFI,NF1,DUSP22,TPD52L1,SOD1,GPS2,DUSP2,EPGN,RGS3,RGS4,DUSP9,DUSP8,DUSP6 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html FST,RBM9,TCEAL1,ZNF254,TGFB1,EPC1,SIN3A,WWP1,ZNF396,SUPT5H,MYST1,MYST4,TWIST2,TWIST1,MYST3,ZNF593,ZHX1,MECP2,ZHX2,ZNF189,ZHX3,NR0B2,NR0B1,CSDA,FOXN3,PA2G4,PIAS4,SMARCE1,ZNF238,TIMELESS,TGIF1,PRDM1,SUDS3,HMGB1,EID1,EID2,GCLC,SNX6,ELK3,VPS72,NR1H2,VDR,MEIS2,HEXIM2,DRAP1,HEXIM1,BCOR,TCF25,RUNX2,NKX2-5,HELLS,ZNF423,NKRF,MDFI,DMBX1,BMP2,CREBZF,KLF12,KLF10,PHB,KLF11,SMAD4,RYBP,SMAD3,SMAD2,SNW1,FOXP3,UBP1,UIMC1,BRCA1,HDAC5,NR1I2,SMARCC2,JAZF1,DNMT1,RFX3,RBPJ,HDAC8,KLF4,E2F1,ZBTB32,PPARD,RSF1,ARID4A,E2F6,DEDD,NR6A1,SPI1,TP63,ZNF202,CTCF,PAWR,ZEB1,GLI2,HSBP1,PDCD4,DAXX,ZNF345,MEN1,ZNF350,GFI1B,ZNF148,PCGF6,ATP8B1,POU4F2,NRG1,NFX1,KHDRBS1,ATF7IP,ZNF281,SLA2,ARID5B,LDB1,ARID5A,NDUFA13,TLE1,FOSB,RB1,MXD4,NRIP1,CHMP1A,BPTF,EREG,ZNF136,MDM2,RIPPLY1,ERN2,MDM4,COMMD7,CUX1,NSD1,ZFP161,ZMYND11,GLIS3,ING4,BCLAF1,TNF,GLIS2,GLIS1,PML,ZBTB16,ZNF177,ZNF174,CALCA,SUMO1,ORC2L,LANCL2,GATAD2A,POU2F1,PER1,BCL3,PEX14,BCL6,SUPT4H1,FOXD3,ENO1,TBX3,TBX2,VHL,SIRT4,TRIM27,ZNF24,SIRT5,TNP1,CENPF,ILF3,CBY1,PHF12,SNAI2,SIRT1,STAT3,SIRT2,ATXN1,ZNF157,ID2,YAF2,ID1,IRF7,DR1,IRF8,GRLF1,PHF21A,IRF2,ID4,ID3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SLC9A7,MPV17,CD52,BAK1,AGTR1,APP,APOE,LCAT,CHRNA7,CHRNA1,CDH23,FTL,CLRN1,C5AR1,PPARGC1A,THY1,CCR9,CCR8,CCR7,NPC1,NPC2,CCR6,RPS19,RHCG,CCR5,ATP2C1,CCR4,CCR3,CCR2,STC1,IQCB1,KCNMB3,KCNMB4,CLCN3,HFE,PPT1,BDKRB1,BCL2L1,BDKRB2,CALR,KCNMB2,NPHP3,PCDH15,RPS6,ABCG1,CD55,ETS1,AVPR1B,AVPR1A,SLC9A1,GRK1,MCHR1,CCKAR,HNF1A,GLRA1,USH1G,SPI1,BNIP3,ZNF675,EDNRA,DFNB31,GPX1,FXN,SAA1,NMUR2,TRPV4,CETP,XCR1,MYC,USH2A,CLN3,AIFM3,LYN,CCKBR,GPR98,PROK2,INHBA,USH1C,NPPB,CLN5,CLN6,CLDN16,CCR1,TFR2,CCL23,BCL2,PCSK9,CD24,IL6,IL7,OPRL1,HCLS1,ATP1A3,CCL19,NPR1,ATP1A4,ATP1A1,ATP1A2,SOD1,CCL15,SELS,TMPRSS3,CCL11,CCL13,CCL14,LARGE,MT2A,NARFL,MC4R,CP,BARD1,GNA15,CASR,ATOX1,F2RL1,FOXO3,CXCL12,APOA4,APOA2,APOA1,SLC2A4,GALR2,APOA5,RGN,SLC4A1,ACIN1,BCL10,DDIT3,SLC34A3,PLCE1,EP300,HIF1A,GYLTL1B,CARTPT,SLC40A1,GLP1R,SRI,CCL1,C3AR1,DRD1,CCL3,CAV1,CCL2,DERL1,GCLC,CYSLTR1,ABCA2,ABCA1,ATP6V1B1,CCL5,FTH1,CCL7,P2RY4,P2RY2,SFTPD,SLC30A5,DYRK3,ANGPTL3,MAFB,ATP7A,GCM2,SLC4A11,CXCL13,RHOT1,RHOT2,CACNA1C,XCL1,CACNA1A,IFI6,ATP7B,CXCR3,AKT1,ACVR1B,ALAS2,TPP1,CXCR4,NDUFS1,AKR1C1,KNG1,LDB1,CDK6,ACVR2A,TARBP2,LCK,GHRL,TAC1,EGLN2,EGLN1,GLRX2,CALCA,CALCB,PTPRC,CEBPG,SLC12A4,NF1,MTL5,RHAG,RDH12,GCK,HPX,BAX +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SLC8A1,SGK1,SCN1B,SCN2B,SCN2A,ATP1A4,SLC34A3,SLC4A11,SLC17A3,SLC17A4,SLC17A2,SCN9A,SCN4B,SCN11A,SCNN1G,SCN7A,SCNN1A,SCN5A,SCN4A,SCNN1D,SCN10A +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html UBE2N,IL4,EREG,CEBPG,PRKCG,TNFSF13,GLI2,PPARGC1A,TGFB1,RAD51,GLI1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html ACVRL1,HTATIP2,IL18,TNFSF12,FOXO4,SPINK5,CANX,SHH,TGFB2,CUL7,ANG,ROBO4,RHOB,ERAP1,CHRNA7,EGFL7,PDPN,MYH9,NCL,THY1,PROK2,SERPINF1,BTG1,VEGFA,FOXC2,NPPB,ATPIF1,EMCN,RNH1,PML,PF4,AGGF1,IL17F,EGF,ANGPTL3,RUNX1,RASA1,C1GALT1,ANGPTL4,SCG2,COL4A3,COL4A2,CCM2,IL8,SPHK1,NF1,NPR1,TNNI3,PLG,CDH13,STAB1,EPGN,NOTCH4,AMOT,GLMN +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CASR,GNA15,ATOX1,F2RL1,CD52,CXCL12,BAK1,AGTR1,APP,GALR2,RGN,CHRNA7,SLC4A1,CHRNA1,FTL,CDH23,CLRN1,C5AR1,DDIT3,SLC34A3,THY1,CCR9,CCR8,CCR7,PLCE1,GYLTL1B,CCR6,RHCG,CCR5,CCR4,ATP2C1,CCR3,CCR2,CARTPT,STC1,SLC40A1,GLP1R,KCNMB3,IQCB1,SRI,CCL1,KCNMB4,C3AR1,DRD1,CLCN3,CCL3,CCL2,GCLC,CYSLTR1,HFE,PPT1,BDKRB1,BCL2L1,BDKRB2,CALR,CCL5,CCL7,FTH1,KCNMB2,NPHP3,P2RY4,P2RY2,SLC30A5,PCDH15,ATP7A,CD55,GCM2,SLC4A11,CXCL13,AVPR1B,AVPR1A,RHOT1,RHOT2,XCL1,CACNA1C,CACNA1A,IFI6,ATP7B,GRK1,MCHR1,CCKAR,GLRA1,USH1G,BNIP3,CXCR3,EDNRA,GPX1,FXN,CXCR4,SAA1,NMUR2,TRPV4,XCR1,MYC,NDUFS1,USH2A,KNG1,CLN3,AIFM3,CCKBR,GPR98,PROK2,LCK,USH1C,GHRL,CLN5,CLN6,CLDN16,CCR1,TFR2,TAC1,EGLN2,GLRX2,CALCA,CALCB,CCL23,BCL2,CD24,PTPRC,OPRL1,SLC12A4,ATP1A3,ATP1A4,MTL5,CCL19,ATP1A1,ATP1A2,SOD1,RHAG,CCL15,TMPRSS3,SELS,RDH12,CCL11,CCL13,CCL14,LARGE,HPX,BAX,MT2A,CP +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html ALDOA,SRI,MYL2,MYBPC3,PGAM2,TTN,MYBPH,ATP2A1,GAA,SMPX,MYOM1,KBTBD10,CASQ2,DTNA +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html GYPC,TUSC3,LDLR,ALG1,B3GALT5,ALG2,B3GALT4,ALG5,TSPAN7,ALG6,TSPAN8,ALG8,POMGNT1,POMT1,B3GALNT1,TRAK1,RPN1,OGT,TNIP1,MAN1A2,FUT10,ALK,MAGT1,CD37,BACE2,DOLPP1,TM4SF4,SERP1,TM4SF5,GCNT4,GALNT2,GCNT3,GALNT1,FUT9,FUT8,GALNT7,FUT7,GALNT6,KEL,FUT6,FUT5,ST8SIA3,ST8SIA2,NECAB3,STT3B,IL17A,STT3A,B3GNT5,MPDU1,FUT4,FUT1,A4GNT,FUT2,GCNT1,GAL3ST1,SDF2,MGAT4B,MGAT4A,LIPA,B3GALT2,MAN1C1,COG3,LARGE,COG7,ST8SIA4,DPM1,DPM2,DPM3,LIPC,LRP2,ALG12,POFUT1,COG2 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html PTGES3,CYP2J2,PRG3,FADS1,PTGS1,CD74,MIF,AKR1C3,CYP4F8,TNFRSF1A,AKR1C2,PTGDS,PTGES,LTA4H,CYP4F3,CYP4F2,HPGD +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGZ,IMPA1,PIGY,PIK3C2A,PIGV,PI4KA,GPAA1,PIGU,PIGT,PIGS,PI4KB,PIGO,PIGK,PIGF,PIGG,PIGH,PI4K2A,CD81,PIGB,DPM1,PIGC,DPM2,DPM3,PIGA +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SEPT5,SLC22A16,SYT1,SNCAIP,SLC22A18,NRBP1,CADM1,LTBP2,AQP9,LMAN2L,USE1,AQP5,AQP4,AQP7,AQP6,AQP1,TPD52,AQP3,IL11,SCTR,AQP2,NLRC4,APOA2,APOA1,GBF1,KCNK5,RAB26,GUCA2B,DNAJC1,SCAMP1,SCAMP3,CRTAM,SCAMP2,MYO6,BAIAP3,SLC34A1,VTI1B,OPTN,ERGIC1,ERGIC2,ERGIC3,COPG2,KRT18,BACE2,RAB14,CARTPT,VAMP3,UNC13B,AKAP3,KCNMB4,ACHE,CCL3,ARFGAP3,PPY,STX7,NAPG,ADORA2B,COPZ1,RER1,CCL8,RABEPK,NAPA,ABCA1,PYDC1,ATP6V1B1,CCL5,ARFGEF2,LMAN1,RIMS1,ARFGEF1,KCNJ1,LIF,STX18,INS,STX16,CKLF,TMED10,DOPEY2,DOPEY1,SRGN,NPHP1,CARD8,CIDEA,SNAPIN,ARFIP1,FOXP3,LIN7A,CEL,SYTL4,GLMN,GOSR2,GOSR1,GHSR,CLCN5,COPA,FAM3D,TACR2,FAM3B,PDIA4,DPH3,CANX,COPB2,NOD2,ANG,NMUR1,NMUR2,COPB1,SLC22A4,AP3B2,SLC22A2,ZW10,KNG1,STX1A,RPH3AL,INHA,GRHPR,NLRP3,NLRP2,KIF1C,OSM,INHBB,GRM4,INHBA,SLC26A3,GHRH,SCIN,NPPB,GHRL,STEAP2,ARL4D,IFT88,PKDREJ,COPE,VIP,CLDN16,SNAP29,RAB3A,AVPR2,CPLX2,CPLX1,BET1,CLCNKA,CLCNKB,HRH3,SYN3,NFAT5,SEC22A,PYCARD,SEC22B,SCG5,SEC22C,EXOC5,SNAP23,SCNN1G,SCNN1B,SCNN1A,SNAP25,SCG2,GUCA1B,RAB2A,SERGEF,TBX3,SCRN1,NLGN1,NPR1,MON2,COG3,CADPS,COG7,GCK,NPHS2,NPHS1,NLRP12,ATP6V0A4,YKT6,COG2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html DBF4,IGHMBP2,PRIM1,MUTYH,CDKN2D,PRIM2,PMS2,MYST2,PMS1,RBMS1,MCM3AP,GTPBP4,POLE,RAD9A,POLB,RNASEH2A,ORC1L,RFC3,RPAIN,RFC4,RFC1,TBRG1,RAD17,HMGB2,ENPP7,ACHE,MRE11A,TIPIN,POLE2,POLE3,EGF,S100A11,ATR,POLD4,POLD1,POLD2,KCTD13,ABL1,DUT,NBN,NAP1L1,MLH1,TERF2IP,GLI2,PMS2L1,GLI1,CDT1,MCM7,ORC4L,DKC1,NT5M,POLG2,CDC6,CCDC88A,REV1,NOL8,PRKCG,MCM2,MCM3,MCM5,RAD50,CDK2,PURA,RAD51,EREG,CDK2AP1,ORC5L,PTMS,REV3L,NUP98,WRNIP1,POLA1,KIN,POT1,RPA4,RPA3,RPA1,TFAM,RPA2,TYMP,ORC2L,SET,TSPYL2,KRT7,TINF2,TERF2,EXO1,MSH6,UPF1,MSH3,NF2,MSH2,MSH5,GMNN,NASP,IGF1,SPHAR,TP73,NAE1,ORC3L,REPIN1 +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html BID,GPX1,BAK1,CDKN2A,DNM1L,BBC3,BAX,BCL2L1,SFN,PMAIP1,IFI6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html KATNB1,EIF5A,PPT1,ARF6,AHSG,AZU1,CDC42,GATA2,CDC42EP2,SORBS3,CDC42EP1,ROBO1,MAPT,SFTPD,DAZL,ROBO2,CDC42EP4,ARHGEF10L,EIF2B5,CDC42EP5,SPACA3,DAZ1,NF2,CBL,PPARGC1A,LDLRAP1,SLIT2,BOLL,AMIGO1,UBE2N,NCK2,NCK1,TPPP,GHRL,FAF1 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html SEPT5,KCNMB4,SYT1,RAB3A,SNCAIP,FAM3D,FAM3B,RIMS1,IL11,LIF,HRH3,SYN3,SCG5,SNAP25,STX1A,TBX3,BAIAP3,NLGN1,SNAPIN,INHA,INHBB,OSM,GRM4,INHBA,GCK,GHRH,GHRL,CARTPT,GHSR +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN8,CLDN7,CADM3,MPZL2,CLDN9,ACVRL1,CADM1,CLDN4,CLDN3,CLDN6,LMO4,CLDN5,PTEN,CDSN,APOA4,CD47,REG3A,CDKN2A,CD93,ROBO1,ROBO2,COL11A1,SYK,DLG1,ALX1,EGFR,BCL10,GTPBP4,VANGL2,MGP,CD164,CERCAM,CTNNA3,THY1,AMIGO1,CD84,AMIGO2,NCAM2,AMIGO3,SIRPG,CD34,ATP2C1,NPTN,CLDN1,CLDN2,CNTN4,CLDN16,CLDN17,CDK5R1,EMCN,CLDN18,CLDN19,TNF,PKHD1,NINJ2,ITGB2,CLDN10,CX3CL1,CLDN11,CRNN,CLDN12,ITGB1,CLDN14,CDH5,CLDN15,CALCA,ANXA9,PVRL1,PVRL3,TRO,PVRL2,B4GALNT2,PKD1,RASA1,BMP1,NF2,COL13A1,LGALS7,NLGN1,CLDN22,CLDN20,CELSR1,CLDN23,CDH13,CD209,CYFIP2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html RARRES3,CNOT8,RARRES1,AIF1,TNFSF15,MXI1,FOXO4,TGFB2,MAGED1,CUL2,CUL5,CDKN2A,CDKN2B,CDKN2C,CDKN2D,IL1B,ODZ1,CUL1,IL1A,GTPBP4,CGRRF1,IL29,SSTR4,PTHLH,SSTR5,SIRPG,NME2,SSTR2,ADAMTS8,SSTR3,ALOX15B,SSTR1,NME1,CD33,TBRG1,MNT,ATPIF1,ADAMTS1,TGFB1I1,EIF2AK2,EMP3,ENPP7,LST1,IFITM1,CHEK1,UMOD,SESN1,FTH1,NPM1,PRKRA,BAI1,SFTPD,GML,B4GALT7,RUNX3,COL18A1,TP53I11,GNRH1,KLF10,KLF11,S100A11,BRCA2,FOXP3,GAS8,RERG,CDKN1C,NOTCH2,TSC1,NUP62,ETS1,FABP3,MYO16,HGS,GLMN,ADRA1A,UTP20,LDOC1,FABP7,SST,PRKRIR,KLF4,FABP6,OPRM1,DLEC1,ACVRL1,IGFBP7,IGFBP6,BAP1,PAWR,PTEN,WARS,BNIPL,CGREF1,ANG,CCL3L3,CDK10,DLG5,CDC6,CTBP1,RBBP4,CTBP2,CDK6,CD164,MXD4,MFN2,OSM,TNFRSF9,NCK2,PPM1D,EREG,BTG2,BTG1,BTG4,BTG3,SCIN,GHRL,MDM2,MDM4,TM4SF4,ING5,CXCL1,FRK,ING4,NDN,TNFRSF8,ABI1,DEC1,POU1F1,CCL23,SPEG,KRT4,GPNMB,ING1,FGFBP1,QSOX1,SCG2,APC,NOX4,COL4A3,IL6,PDS5B,IL8,NF2,VHL,TBX5,NF1,CDKN3,PLG,CDH13,CUL4A,EEF1E1,ATP8A2,TOB2,TOB1 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL4,PTPRC,IL7,CD3E,IL18,CD276,TNFSF13,SOCS5,IL21,TGFB1,SART1,THY1,NCK2,CD47,SIRPG,NCK1,LCK,ZAP70,IL12A,CD24,IL12B,ICOSLG,EBI3,CD28 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html NBN,ZAK,HUS1,PML,CHEK1,CHEK2,BRSK1,SFN,TRIAP1,PCBP4,BCL3,DYRK2,C16ORF5,GML,CCNA2,ATRIP,MYO6,AIFM1,RINT1,CIDEB,TP53,CIDEA,RAD9A,IFI16,ATR,BRCA1,NEK11,TP73,FOXN3,NAE1,RAD1,EEF1E1,ABL1,SMC1A,RAD17 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html BCL10,TBX3,TBX5,LMO4,VANGL2,FTO,DSCAML1,TBX1,MBNL1,CELSR1,SOD1,GLI2,ZIC1,TINAG,SHH,CEP290,PTCH1 +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html FYB,CBLB,TRPS1,KPNA6,KPNA5,NCKIPSD,KPNA4,KPNA3,KPNB1,KPNA2,KPNA1,RERE +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html CCKAR,COPA,PPY,SLC15A1,LDLR,PGC,PPYR1,VIPR1,SCTR,APOA4,AKR1C2,CYP39A1,ACSL1,GALR1,PRSS2,PRSS3,GALR2,TFF2,NPC1L1,TFF3,AMY2B,HTR3A,NMU,AKR1C1,CTRL,MUC2,CCKBR,CAPN9,PPARGC1A,CEL,SSTR2,BAAT,SSTR1,MLNR,AKR1B10,MEP1A,CTSE,MEP1B,FABP2,PYY,AKR1D1,SST,AMY1B +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html SLC22A16,FOLR3,FOLR2,FOLR1,HPX,PDPN,SLC22A4,PPT1,SLC22A5,SLC19A1,SLC46A1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html E2F1,ZBTB32,PPARD,E2F6,FST,NR6A1,SPI1,ZNF202,CTCF,ZEB1,PAWR,HSBP1,GLI2,ZNF254,TCEAL1,ZNF345,MEN1,EPC1,GFI1B,ZNF148,POU4F2,SUPT5H,TWIST1,NFX1,ZNF281,ZNF593,SLA2,MECP2,ZNF189,RB1,NR0B2,FOSB,CSDA,MXD4,NRIP1,ZNF238,BPTF,ZNF136,MDM2,TGIF1,MDM4,PRDM1,CUX1,NSD1,ZFP161,HMGB1,ZMYND11,EID1,GLIS3,GLIS1,ZNF177,VPS72,ZNF174,ORC2L,MEIS2,HEXIM2,DRAP1,HEXIM1,BCL6,SUPT4H1,TCF25,NKX2-5,FOXD3,ENO1,MDFI,KLF12,VHL,KLF10,KLF11,TRIM27,RYBP,SMAD3,SNAI2,STAT3,ZNF157,DR1,IRF7,IRF8,JAZF1,DNMT1,PHF21A,IRF2,HDAC8 +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html ME1,ADSS,ADCY7,CTPS,ADORA2A,AK5,ABCA1,HPRT1,PPAT,TYMS,UMPS,UCN2,ADM,OXER1,GRM8,ADK,C16ORF7,GUK1,PDZD3 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html AZU1,NF2,NF1,CDK6,SOD1,EIF2B2,EIF2B3,EIF2B1,SLIT2,EIF2B4,EIF2B5 +PWCOMMONS NUCLEOTIDE SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_SUGAR_METABOLIC_PROCESS.html UAP1,GMDS,UGDH,B4GALNT2,TSTA3,EXTL2,PMM2,UGP2,SLC35A3 +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html GPAA1,FNTB,PIGK,APOA2,APOA1,FNTA,PIGF,PIGG,ATG7,PIGH,PIGB,CHM,PIGC,PGGT1B,PIGA,AIPL1,PIGZ,PIGY,PIGV,PIGU,PIGT,PIGS,PIGO,DPM1,DPM2,DPM3 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html AIFM1,PML,CIDEB,TP53,CIDEA,IFI16,SFN,CHEK2,BRCA1,TP73,PCBP4,BCL3,DYRK2,ABL1,C16ORF5 +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html SEPT5,SNAP29,STX5,SHROOM2,MYO1A,AP1M2,NLGN1,TMED10,LRMP,SNAP23,YKT6 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html TRAF2,CADM1,IL18,TNFSF13,TGFB1,CD74,IL10,TLR8,MAP3K7,C2,TRAF6,EBI3,IL4,PTPRC,BCL10,CRTAM,SLA2,IL27,MALT1,SOCS5,FOXP3,IL18BP,CD40LG,IL12A,IL12B +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html SNCA,CBX4,FOXO1,GDNF,CIAPIN1,TNFSF18,CDKN2D,TPT1,FAS,DDAH2,IL1A,API5,OPA1,BRAF,CRYAA,SOCS2,CRYAB,SOCS3,RELA,BCL2A1,HRK,HBXIP,BCL2L10,NME5,CD40LG,TXNDC5,TNFAIP8,HSPB1,ERC1,MYO18A,TNFRSF6B,HMGB1,GCLC,CCL2,MCL1,BCL2L2,BCL2L1,HSPA1B,PEA15,AKT1S1,NPM1,GLO1,ARHGDIA,CFLAR,BECN1,SPHK1,TAX1BP1,NOTCH2,BFAR,HDAC3,RNF7,HDAC1,SFRP1,IFI6,RTN4,IER3,HTATIP2,BNIP3,NFKB1,PRDX2,TRIAP1,GPX1,BAG4,BAG1,PAX7,DHCR24,NOL3,PROK2,SERPINB9,BNIP1,PSEN1,BNIP2,TNFRSF10D,HIPK3,CFL1,SERPINB2,AVEN,FAIM3,NAIP,SEMA4D,GSTP1,ALOX12,PRKCZ,YWHAZ,TNF,RTKN,IGF1R,SH3GLB1,BCL2,TNFRSF18,DAD1,AATF,CD27,RASA1,CD28,HSPA9,PIK3R2,IL3,IL2RB,TBX3,ANXA1,BIRC6,BIRC5,ANXA5,BIRC3,ANXA4,CDH13,HSP90B1,SON,BAX,BNIP3L,BRE,MPO,TIAF1,IL2 +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html MDFI,NFKBIL2,TAF3,PDIA3,NFKBIE,PDIA2,SUPT7L,FAF1,TOPORS,MXI1,NFKBIL1 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html SLA2,MED12,IGF1,MED24,MED14,ARID1A,MED13,ESR2,RBM9,DAXX,CALCOCO1,PPARGC1B,MED4,MED30,YWHAH,MED16,MED17,UBR5,THRAP3,DDX54,MED1 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html GPS1,NF1,DUSP22,MBIP,PDCD4,GPS2,DUSP2,LAX1,RGS3,HIPK3,RGS4,DUSP16,SPRED2,SPRED1,DUSP9,DUSP8,DUSP6 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html NBN,ZAK,HUS1,RINT1,PML,RAD9A,CHEK1,CHEK2,ATR,BRSK1,NEK11,FOXN3,NAE1,RAD1,TRIAP1,PCBP4,GML,ATRIP,CCNA2,RAD17 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CCNT2,CKS1B,CDK5R1,CDK5R2,C13ORF15,CCNT1,PKMYT1,CHEK1,BCCIP,CCNG1,PTEN,LATS1,CDC37,LATS2,CCNE2,CDKN2A,CDKN2B,DIRAS3,HEXIM2,HEXIM1,CDKN2C,CDKN2D,CDK5RAP3,CDK5RAP1,SERTAD1,APC,ANAPC2,CDC6,GTPBP4,CCNK,HERC5,CDK7,CDKN3,CDC25C,CDC25A,GTF2H1,CDKN1C,MNAT1,CCND1,CCND3,CCND2,CKS2,GADD45A +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html STX7,NRBP1,NAPG,LMAN2L,COPZ1,BET1,USE1,RER1,NAPA,LMAN1,COPB2,GBF1,STX18,COPB1,STX16,SEC22A,AP3B2,SEC22B,TMED10,SEC22C,DOPEY2,SNAP23,EXOC5,DOPEY1,GOLGA5,ZW10,RAB2A,SCAMP1,SCAMP3,SCAMP2,OPTN,ERGIC1,MON2,ERGIC2,ERGIC3,KIF1C,COG3,COPG2,KRT18,COG7,RAB14,GOSR2,GOSR1,STEAP2,YKT6,COPE,COG2 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html ABI3,ABI2,ITGB2,ABI1,IL31RA,CLCF1,TDGF1,EGFR,IL3,IL5,NF2,LYN,IL29,HCLS1,SOCS1,STAT1,IL20,CD80,DYRK1A,F2,CD81,IL12A,TNK2,ABL1,ABL2,F2R,IL22RA2 +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html SERGEF,FAM3D,CIDEA,DPH3,FOXP3,IL11,OSM,LIF,INHBB,APOA2,APOA1,NLRP12,SRGN +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html METAP2,APH1A,ADAMTS13,APH1B,PPP2R5C,CUZD1,MIPEP,TTN,UHMK1,CAMKK2,AKT1,IGF1R,ECE2,MAP3K3,PAK2,MAP3K9,PRSS3,LMTK2,PCSK9,SCG5,PSENEN,PAK1,PCSK5,INSR,TAF1,MYO3A,MEX3B,KIAA1804,TAOK3,MOBKL1A,SMG1,FURIN,STK4,CDKL5,NCSTN,EIF2AK1,PSEN1,DYRK1A,MAPK15,PSEN2,NLRP12,MAP3K10,PTCH1,TNK1,EIF2AK3,MAP3K13,MAP3K12,MAP3K11 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html NOX4,ME3,NOX5,PRG3,DRD5,PREX1,BNIP3,NDUFA13,SOD1,SOD2,APOA4,NDUFS4,AOX1,GPX3,SFTPD,CCS,NDUFS3,NDUFS1,MT3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SYT1,OXA1L,OCLN,TSPAN4,CAPZA2,CAPZA1,SLC7A9,CD2AP,SLC7A6,SLC7A7,TAPBP,VCL,PICALM,APOE,KIFAP3,SH3BGR,FAS,INSR,SYK,BCL10,IKBKAP,GJD3,DARS,SCUBE3,CD3E,SCUBE1,PICK1,MATN1,TAZ,ACTN2,CD40,PPARGC1A,ADRM1,VAMP3,ATPIF1,AMFR,LAMC1,SURF1,EIF2AK3,SEPT7,SEPT9,TRAF1,STK16,TRAF2,EID2,DAG1,HFE,ANLN,RIMS1,SRC,LLGL1,CD74,PXN,CDC42EP2,UPK1A,CDA,AGRN,PARD6B,MLL,TGFBR1,CREBBP,SMAD4,EPRS,SMAD3,MALT1,SEPT11,LIN7A,PPIH,MYH11,CHAF1A,CHAF1B,TLN1,COX11,WASF3,TLN2,COX10,GJA1,TP63,SKAP2,GJA4,GJA5,NDUFS7,CDC42,NDUFS5,RANBP9,NOD2,NOD1,NDUFS4,NUBP1,ZFYVE9,GPX3,GOPC,NDUFS8,IL1RAP,TRPV5,DLG4,COX18,FANCA,AKR1C1,COX15,FANCC,ZW10,IRAK1,PPP2R1A,APCS,CCDC88C,ALDH5A1,VIL1,TP53,NLRP3,SLC9A3R1,WAS,HMGA1,SLC9A3R2,THEG,RAD51,STOM,ADRB2,TPPP,NUP205,MDM2,MDM4,WASL,KPNA3,MAP3K11,FMOD,REPS2,PARD3,TCAP,APC2,PML,NFS1,HCFC1,AASS,HPRT1,SF3B3,CLDN14,GJC1,IGF1R,CD9,LPXN,CCT6B,PTK2B,DGKD,PEX14,TGM3,PEX13,WIPF1,APBA1,GEMIN5,SCO1,APC,IL2RB,MUC20,BCS1L,TUBGCP2,MIS12,MNAT1,VWF,TJP1,TMEM48,PRLR,BAX,TCEB2,MAPK8IP2,FAF1,PTCH2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ALDH8A1,CYP3A5,RARRES2,SGMS2,GBGT1,PTGS1,SGMS1,SHH,AGPS,LCAT,APOF,PLA1A,NSMAF,APOM,WWOX,SGPL1,UGCG,PPARGC1A,NPC1,PITPNM3,NPC2,ALOX15B,HSD11B2,PLA2G2E,PLA2G2D,HSD17B11,HACL1,ENPP7,ACADSB,HSD17B14,TFCP2L1,PPT1,PDSS1,CD74,PDSS2,HADHB,PLAA,SERINC2,SERINC5,LPCAT1,SERINC1,PEMT,NR1H4,CYP46A1,SPHK1,MCAT,FDXR,ABCG1,APOL2,CEL,CYP7B1,NR1I2,MLYCD,PLA2G4C,IDI1,PLA2G4B,BMP6,PPARA,PPARD,CYP2J2,PTEN,ASAH1,ASAH2,ST6GALNAC6,AGPAT6,ST6GALNAC4,CYP39A1,PTGES,GPX4,GNPAT,CETP,AGPAT2,DHCR24,AGPAT1,CLN3,STS,PRG3,PIK3C2A,PI4KA,LGALS13,PI4KB,HAO1,PTGDS,ADM,HAO2,SLC27A6,PLA2G6,PLA2G3,SLC27A2,CLN8,PLA2G5,SLC27A5,DEGS1,ALOX12,CLN6,ECH1,HSD3B1,HSD3B7,GPAA1,MIF,DGKE,DHCR7,ABCD2,HSD17B6,CERK,NSDHL,SOAT1,IL4,CPT1B,SOAT2,PNLIPRP2,FADS1,FADS2,DGKK,SOD1,CPT1A,GBA2,YWHAH,GLA,LARGE,DPM1,DPM2,DPM3,HPGD,NR5A1,TSPO,LASS5,STARD3,APOA1,APOA5,ST3GAL6,SPTLC1,TAZ,NR0B2,NR0B1,PNPLA3,PECI,CHPT1,PNPLA8,PLCE1,AKR1B10,PI4K2A,MVK,NEU3,CROT,CNBP,HDLBP,ST8SIA1,APOC2,ST8SIA3,B3GNT5,APOC3,SCARB1,PCYT1B,B4GALT4,CYP19A1,LPL,FDPS,SMG1,BRCA1,BAAT,FAAH,LASS1,ST8SIA5,ACOX2,PTGES3,IMPA1,ALG1,CYP11B2,ACOT2,SULT2B1,ACOT1,PIP5K1A,ACOT4,SC4MOL,PEX7,ACOX3,ACOT9,AKR1C3,PIGK,AKR1C2,AKR1C4,PIGF,ANG,PIGG,PIGH,PIGB,ACOT12,PIGC,NPC1L1,PCYT2,PLCB2,AKR1C1,PIGA,PIGZ,ACADM,CYP11A1,SULT2A1,PIGY,ALDH5A1,ACADS,PIGV,PIGU,ADIPOR2,PIGT,ADIPOR1,DHRS9,PIGS,UGT1A1,PIGO,ACADVL,DHRS2,DHRS3,UGT2B17,DGAT1,DGAT2,PRDX6,CD81,UGT2B11,UGT2B15,AKR1D1,PGS1,ECHS1,STUB1,TNFRSF1A,ETNK1,PLCD1,BDH2,PPAP2A,PIK3R1,B4GALNT1,MBTPS2,PSAP,OXSM,RDH12,RDH11,CYP4A11,CYP4F8,GLYAT,UGT2B4,LTA4H,CYP4F3,CYP4F2,SCP2,SMPD4,SMPD3,RETSAT,SMPD2 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html FGD2,FGD1,TAOK2,MYH9,CDC42,CDC42EP2,CDC42EP1,FGD5,CDC42EP4,FGD6,FGD3,FGD4,CDC42EP5 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html LALBA,SPACA3,S100A7,CAMP,DEFB103A,PGLYRP1,TLR3,STAB2,DEFB127,TLR6,AZU1,CFP,WFDC12,NLRC4,NOD2,NOD1,PGLYRP4,STAB1,PGLYRP2,PGLYRP3,IL12A,DEFB118,SPN,DMBT1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SEPT5,SYT1,NRBP1,PDLIM7,LMAN2L,USE1,VPS33B,ITSN1,ADORA1,RAB1A,GATA2,HOOK2,PICALM,PACSIN3,GBF1,VPS4B,VPS4A,RAB26,SCAMP1,SCAMP3,SCAMP2,MYO6,LRP1B,VTI1B,COLEC12,AP4M1,OPTN,ERGIC1,ERGIC2,VTI1A,ERGIC3,COPG2,KRT18,LYST,RAB14,VAMP3,RAB13,AKAP3,KALRN,RAB7A,CCL3,STX7,NAPG,ADORA2A,COPZ1,SNX2,SNX1,CCL8,RER1,HFE,RABEPK,NAPA,SNX4,PPT1,ARF6,SNX3,ABCA1,CCL5,LMAN1,ARFGEF2,ARFGEF1,RIMS1,AHSG,ADRB3,DOCK1,FOLR1,STX18,RAC1,STX16,SFTPD,TMED10,DOPEY2,DOPEY1,HIP1,MRC1,CPNE6,SPTBN4,TINAGL1,LIN7A,CORO1C,RABEP1,TSC2,CPNE1,SPTBN2,SYTL4,BET1L,CPNE3,SYTL2,GOSR2,GOSR1,CLEC7A,CLTCL1,SYTL1,SEC24B,MSR1,LDLR,AP2S1,SORL1,SYNJ1,ASGR1,COPB2,AP1S1,FXN,ZFYVE16,ACTR1A,COPB1,NECAP2,AP3B2,RHOB,GOLGA5,GOLGA4,ZW10,SEC23A,RAMP3,STX6,RAMP2,STX5,CLN3,SPACA3,PRKCI,RPH3AL,ARHGAP27,ATP6V1H,PI4KB,M6PR,LDLRAP1,LRPAP1,ELMO1,KIF1C,ANKRD27,ADRB2,CHMP1A,IGF2R,SCIN,RAB5A,TOM1,LRMP,STEAP2,EPN1,PKDREJ,COPE,SEC23B,STON2,SNAP29,CPLX2,AP1M2,STON1,CPLX1,GULP1,BET1,EEA1,SCARF1,AMPH,AZU1,SQSTM1,FCN2,FCGR1A,FCN1,SEC22A,SEC22B,SEC22C,SNAP23,CD24,EXOC5,RAB2A,CBL,SCRN1,NLGN1,STAB2,MON2,CADPS,COG3,SH3BP4,CDH13,COG7,STAB1,RAB35,RAB22A,MAPK8IP3,LRP8,MAPK8IP1,LRP2,YKT6,LRP3,DNM1,CD14,COG2,KIF20A +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html XRCC4,NBN,MRE11A,XRCC6,POLA1,UBE2V2,LIG4,RAD52,SOD1,BRCA1,RAD50,XRCC6BP1,SETX,RAD51,UBE2N,RAD21,VCP,RAD54B,ERCC4,NHEJ1,FEN1,CIB1 +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html INHBB,INHBA,IL6,NLRP12,SFTPD,GHRL,BCL3,INHA,GHSR,FOXP3,SIGIRR +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html IMPA1,GPAA1,PIP5K1A,PTEN,SERINC2,PIGK,SERINC5,APOA1,PIGF,PIGG,SERINC1,LCAT,PIGH,PEMT,PIGB,PLA1A,PIGC,CETP,PCYT1B,AGPAT2,PIK3R1,PIGA,AGPAT1,PIGZ,PIGY,PIK3C2A,TAZ,PIGV,PI4KA,PIGU,PIGT,SMG1,PIGS,PI4KB,PIGO,PITPNM3,PI4K2A,CD81,DPM1,DPM2,DPM3,PLA2G4C,PLA2G4B +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html GNPDA1,BTRC,PGD,RNF217,RNASEH1,ISG20,MIOX,CPA2,FBXO22,ANAPC2,ANAPC5,ANAPC4,UBR3,RNASEH2A,GNS,PGLS,UHRF2,UBR5,MGAM,FBXL4,AMFR,XRN2,ALDOA,FZR1,DERL2,SYVN1,DERL1,PABPC4,PFKFB1,ALDOB,NEDD8,ANAPC10,HSPA1B,CHIT1,ARIH1,UBE2D3,UBE2D2,RNF11,UBE2D1,FBXO7,NPLOC4,SMG6,SMG5,GUSB,SMG7,SMG1,CDC23,PCNP,CDC20,UBE2L3,PSMC5,VCP,POP1,SMURF2,SMURF1,UBE2E1,KIAA0368,TSG101,UBE2G1,UBE2G2,AUH,TREH,ZFP36,ABCE1,UBE2A,PFKL,UFD1L,UBE2I,PFKM,UBE2H,HYAL4,UBE2C,UBE2B,UBE2K,GAA,ERN2,UBB,SIAH2,UBE3A,HK1,TKTL1,EDEM1,STUB1,SQSTM1,RNASET2,ECD,USP33,RNF144B,UPF2,RNASE2,RNASE3,UBE4A,UBE4B,RNASE6,PARK2,SELS,GBA3,GAPDHS,GBA2,PSMD14,GSPT1,PPP1R8,PYGB +PWCOMMONS MRNA SPLICE SITE SELECTION http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_SPLICE_SITE_SELECTION.html SFRS6,SFRS5,SFRS8,SFRS9,SF1,SLU7,SF3A2,SFRS1,SF3A1,SF3A3 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html SEPT5,SNAP29,SYT1,CPLX2,CCL3,CPLX1,CCL8,RABEPK,CCL5,ARFGEF2,ARFGEF1,RIMS1,RAB26,NLGN1,SCRN1,RPH3AL,VTI1B,LIN7A,CADPS,SCIN,SYTL4,VAMP3,YKT6,PKDREJ,AKAP3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html F2RL3,GNA15,ADORA3,ADCY7,EDN2,LHCGR,VIPR1,GHRHR,BTK,AGTR1,PTGIR,HTR1B,GALR1,MC1R,LTB4R,GALR3,GALR2,RGN,PRKACB,GLP2R,HTR1D,HTR1F,HTR1E,EGFR,C5AR1,NUDT4,PICK1,HTR4,TRAT1,PTHLH,CRHR1,SSTR4,CRHR2,SSTR5,PLCE1,LAT2,SSTR2,SSTR3,SSTR1,CCR3,HTR7,HTR6,MC2R,CCR2,GLP1R,ACR,DRD1,GNAI3,CCL2,ADORA2B,GNAI2,DRD2,DRD5,ADCYAP1,ADRB3,P2RY6,P2RY4,CNR1,P2RY2,PLCH1,CNR2,P2RY1,ADRA2A,TBL3,SPHK1,HOMER1,LAT,RGS1,NPY,AVPR1B,LTB4R2,MTNR1B,ADRA1B,AVPR1A,GRK5,CORT,ADRA1D,MTNR1A,OPRM1,MCHR1,CCKAR,TACR1,WASF2,GABBR1,GABBR2,CAMKK2,EDNRA,EDNRB,NDUFS4,ANG,NMUR1,NMUR2,MC5R,CAP1,CALCRL,XCR1,PLCB2,CCKBR,PTGER4,SLA2,GRM5,GRM4,ADRB2,CHRM5,GRM3,ADRB1,GRM2,GNAQ,GHRH,CHRM2,GRM8,GRM7,CHRM1,GIPR,GNAS,TSHR,PRKD3,GAP43,PTAFR,CALCR,AVPR2,PARD3,CCR1,NPY2R,OPRK1,FPR1,GCGR,GPR3,AZU1,CALCA,HRH1,HRH3,HRH2,MC3R,PPAP2A,CAP2,IL8,OPRL1,NF1,NPY1R,CDH13,P2RY11,MC4R,NMBR,HTR2B,OPRD1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ADORA3,ADCY7,LHCGR,VIPR1,GHRHR,HTR1B,PTGIR,MC1R,GALR1,GALR3,GALR2,PRKACB,GLP2R,HTR1D,HTR1F,HTR1E,HTR4,CRHR1,PTHLH,SSTR4,CRHR2,SSTR5,SSTR2,SSTR3,SSTR1,CCR3,HTR7,MC2R,HTR6,CCR2,GLP1R,ACR,DRD1,CCL2,GNAI3,ADORA2B,GNAI2,DRD2,DRD5,ADCYAP1,ADRB3,CNR1,CNR2,ADRA2A,TBL3,RGS1,NPY,LTB4R2,ADRA1B,MTNR1B,GRK5,CORT,ADRA1D,MTNR1A,OPRM1,MCHR1,WASF2,GABBR1,GABBR2,EDNRA,EDNRB,MC5R,CALCRL,CAP1,XCR1,PTGER4,GRM4,CHRM5,GRM3,ADRB2,GRM2,ADRB1,GRM8,GHRH,CHRM2,GRM7,GIPR,GNAS,TSHR,CALCR,AVPR2,NPY2R,OPRK1,CCR1,FPR1,GCGR,GPR3,CALCA,HRH3,HRH2,MC3R,CAP2,OPRL1,NF1,NPY1R,P2RY11,MC4R,OPRD1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html RAG1AP1,DICER1,DMAP1,FOS,EPC1,GPX1,DIRAS3,DGCR8,SMARCD1,GATAD2A,H2AFY,DNMT3B,HELLS,ATF7IP,DNMT3A,CREBZF,PICK1,TRIM27,SIRT4,SIRT5,TNP1,ARID1A,IGF2,HMGA1,SIRT1,HDAC5,ATRX,H2AFY2,DNMT1,GLMN +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html NCBP2,NFKBIE,TNFSF14,ABCA2,CDH1,MXI1,TGFB1,UHMK1,BCL3,KHDRBS1,MDFI,CRYAA,NUDT4,CRYAB,NF1,SMAD3,NLRP3,NFKBIL1,FLNA,NFKBIL2,GSK3B,NLRP12,FAF1,TRIP6,BARD1 +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html KNG1,PROK2,PLCE1,SMTN,KCNB2,NMUR1,SPHK1,MYH11,ADRA1A,CNN1,SOD1,NMU +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html KCNH1,MYL6,MYOD1,CACNB2,MYEF2,TTN,MYL6B,CHRNA1,IFRD1,BOC,MYF6,BMP4,COL4A4,FOXL2,TBX3,ACTA1,TAZ,MYF5,NRD1,MYOZ1,MBNL1,CSRP3,KRT19,NOTCH1,MAPK12,SVIL,MYH11,CACNA1H,UBB,ADAM12,IGFBP3 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html STX5,EEA1,ABCA1,TINAGL1,M6PR,VTI1A,MON2,ANKRD27,ADRB2,SQSTM1,ZFYVE16,RAB35,LYST,STX16,RAB14,VPS4B,BET1L,RHOB,TOM1,DOPEY2,GOSR1,DOPEY1,YKT6 +PWCOMMONS PROTEIN AMINO ACID ADP RIBOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_ADP_RIBOSYLATION.html ART3,SIRT4,SIRT5,PARP3,SIRT6,PARP1,PARP2,SIRT1,ART1,SIRT3 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html CASR,ACHE,OSTF1,STATH,ZNF675,GLI2,ATP6V1B1,AHSG,GLI1,CALCA,DSPP,TPP1,RUNX2,TWIST2,SRGN,BMP4,KL,IL7,COL13A1,DMP1,NF1,MGP,CDK6,SPARC,ANKH,MC4R,CARTPT,ATP6V0A4,ACVR1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html ALS2,LIMA1,ARF6,CXCL12,LATS1,NEBL,NCK2,CDC42EP2,GSN,NCK1,CAPG,TMSB4Y,RASA1,CDC42EP5 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html METAP1,TUSC3,METAP2,DPH3,IL31RA,AKT1,PRMT7,PRMT8,CLCF1,PRMT5,TDGF1,RPN1,EGFR,IL29,LYN,SOCS1,STK4,IL20,MAGT1,EP300,CD80,HIPK3,F2,CD81,IL12A,MAP3K12,TPST1,TPST2,ABI3,MAP4K1,ABI2,ITGB2,ABI1,UHMK1,STT3B,STT3A,TNKS,IVL,IL3,P4HB,IL5,NF2,PDF,MAP1D,HCLS1,CREBBP,SMG1,STAT1,GSK3B,DYRK1A,DPM1,DPM2,DPM3,TNK2,ABL1,ABL2,F2R,IL22RA2 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html BMI1,FGF8,LMO4,ARNT2,GLI2,ZIC1,LSR,SHH,TGFB2,TDGF1,CEP290,BCL10,NANOG,ADAM10,NKX2-6,VANGL2,PTPRR,UBR3,MBNL1,CDK5,SCEL,SLIT2,EYA2,NCOA6,RIPPLY1,EGFL8,KIAA1217,TNFAIP1,CDK5R1,DSCAML1,TRIM15,T,NPM2,RASA1,MDFI,NAT8,MLL,TBX3,NASP,TBX5,SMAD5,FTO,SMAD2,TBX1,SMAD1,CELSR1,RICTOR,SOD1,RACGAP1,TINAG,NOTCH4,PTCH1,PBX1,NR5A2,PBX3,KLF4,PBX4 +PWCOMMONS POSITIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NCK2,CDC42EP2,SORBS3,NF2,MAPT,NCK1,KATNB1,ARF6,ARHGEF10L,CDC42EP5 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html GALNT2,GYPC,GCNT4,GCNT3,GALNT1,LDLR,GALNT7,GALNT6,POMGNT1,POMT1,TRAK1,DPM1,DPM2,DPM3,A4GNT,OGT,GCNT1,POFUT1 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD2,ALS2,FGD1,RALBP1,NF1,ARHGAP27,ARF6,DMPK,MFN2,NOTCH2,PLCE1,CDC42BPG,TSC1,RASGRP4,RAC1,CDC42BPA,ABRA,FGD5,FGD6,FGD3,FGD4,CDC42BPB +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html UTS2,ACVRL1,PTGS2,CORIN,ATP6AP2,CYP11B2,PTGS1,BRS3,NPR2,SOD1,GCGR,CALCA,AGTR2,ACE,RENBP,CHGA,AGT,REN,CARTPT,ERAP2,GNB3,NPPA +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html PARD6B,PARD3,CD3G,CAP2,BRSK2,PRKCI,CCL4,MARK2,SFRP5,CDC42,WNT1,ANK1,CRB1,MAP7,CLASP2,CAP1,SPN,DLG1,CDC42BPB +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html POLL,MMS19,RAD23B,DDB1,RAD23A,TP53,BRCA2,LIG4,XAB2,ERCC8,ATXN3,ERCC5,XPC,ERCC6,DDB2,ERCC3,ERCC4,NTHL1,ERCC1,ERCC2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FST,ZNF254,TCEAL1,EPC1,SIN3A,ZNF396,SUPT5H,TWIST2,TWIST1,ZNF593,ZHX1,MECP2,ZHX2,ZNF189,ZHX3,NR0B2,CSDA,NR0B1,FOXN3,PA2G4,ZNF238,SMARCE1,TGIF1,PRDM1,HMGB1,EID1,VPS72,MEIS2,HEXIM2,HEXIM1,DRAP1,BCOR,TCF25,NKX2-5,HELLS,MDFI,BMP2,KLF12,KLF10,KLF11,SMAD4,RYBP,SMAD3,SMAD2,FOXP3,HDAC5,SMARCC2,JAZF1,DNMT1,RBPJ,HDAC8,KLF4,E2F1,ZBTB32,PPARD,RSF1,ARID4A,E2F6,NR6A1,SPI1,TP63,ZNF202,CTCF,ZEB1,PAWR,GLI2,HSBP1,DAXX,ZNF345,MEN1,GFI1B,ZNF148,POU4F2,NFX1,ZNF281,ATF7IP,LDB1,ARID5B,SLA2,ARID5A,NDUFA13,RB1,FOSB,MXD4,NRIP1,CHMP1A,BPTF,ZNF136,RIPPLY1,MDM2,MDM4,CUX1,NSD1,ZFP161,GLIS3,ZMYND11,ING4,GLIS1,ZBTB16,ZNF177,ZNF174,ORC2L,GATAD2A,PEX14,BCL6,SUPT4H1,ENO1,FOXD3,TBX3,TBX2,VHL,SIRT4,TRIM27,SIRT5,TNP1,ILF3,PHF12,CBY1,SNAI2,SIRT1,STAT3,ZNF157,DR1,IRF7,IRF8,PHF21A,IRF2 +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html CDC6,ENPP7,GTPBP4,TSPYL2,NF2,GMNN,TIPIN,S100A11,RAD9A,ATR,RAD17,CDT1 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html STON2,SPACA3,STON1,AP2S1,CBL,ARF6,PPT1,LDLRAP1,AHSG,AZU1,CDH13,GATA2,PACSIN3,ZFYVE16,RAC1,SFTPD +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html FMOD,EID2,ACVRL1,SNX6,LTBP2,GDF5,STUB1,TGFB1,CITED2,MAP3K7,FOXH1,PEG10,FNTA,CDKN2B,ZFYVE9,LEFTY2,IL17F,GDF9,SMAD7,TGFBR1,KLF10,SMAD4,CIDEA,SMAD3,SMAD2,LEFTY1,CDKN1C,HIPK2,TGFBR3,GDF10,TGFBRAP1,GDF15,HPGD,ENG,BMPR1A,ACVR1 +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html IL4,PTPRC,CD3E,IL18,IL27,CD276,IL21,NCK2,NCK1,SFTPD,GLMN,IL12B,CD24,ICOSLG,EBI3,CD28 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html CRNKL1,CWC15,TRA2A,SNRPD1,SNRPD2,SFRS6,SFRS5,DHX38,SFRS8,USP39,SFRS9,DBR1,GEMIN8,SFRS2IP,DDX20,GEMIN6,GEMIN7,GEMIN5,PRPF31,SRPK2,SF1,SNW1,SF3A2,SFRS1,SF3A1,SF3A3,DDX39,SLU7,PHF5A,SIP1,TXNL4A,BAT1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html SMARCAD1,XRCC5,RAD51C,HMGB1,XRCC3,BLM,MRE11A,RAG1,UBE2V2,CHEK1,TNFSF13,SPO11,IL7R,SYCP1,TGFB1,RPA1,IGHMBP2,RAD21,RAD51L1,SETMAR,RAD51L3,ERCC4,ERCC1,IL4,EXO1,LIG1,MSH5,MSH4,LIG3,TSN,RAD52,RAD54L,ATM,BRCA1,RAD50,RAD51,UBE2N,ATRX,REC8,RPAIN,CD40LG,TEP1,RAD54B,RUVBL2,DMC1,KPNA2,KPNA1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html PPFIA2,ACVRL1,PPFIA1,ITGA11,ITGA10,PTEN,COL17A1,CDKN2A,SORBS1,FXC1,PKD2,PKD1,ANGPTL3,THBS3,RASA1,PARVG,NF2,TAOK2,COL13A1,NF1,ACTN1,ITGA2,ACTN2,CDK6,ITGA3,ACTN3,ECM2,THY1,CDH13,LYVE1,TSC1,ITGB1BP1,FBLN5,ITGA7,TESK2,SGCE,ADAM15 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html TPST1,TPST2,ABI3,ABI2,ITGB2,ABI1,IL31RA,CLCF1,TDGF1,EGFR,IL3,IL5,IL29,LYN,NF2,HCLS1,SOCS1,STAT1,IL20,CD80,CD81,DYRK1A,F2,IL12A,TNK2,ABL1,ABL2,IL22RA2,F2R +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CADM1,ELF4,IL18,JAG2,SPINK5,SART1,CD47,NLRC3,INS,SFTPD,ZAP70,CD2,CD4,CD24,EBI3,CD28,CD7,IL4,PTPRC,CRTAM,SIT1,CD3D,CD3E,IL7,IL27,SLA2,CD276,SOCS5,IL21,FOXP3,CD1D,THY1,NCK2,LAT,SIRPG,LAX1,NCK1,LCK,GLMN,CLEC7A,IL12B,NHEJ1,ICOSLG,IL2 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html E2F1,TAF1,CDC6,CDC23,TBRG4,CDK6,RB1,FOXO4,CDC25C,CDK2,CDKN1C,PRUNE2,GFI1B,CDK10,MAP3K11 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html IL18,TLR1,TNFRSF8,TLR3,TLR4,TLR6,TLR7,TLR8,TLR9,AZU1,APOA2,NOD1,IL17F,SFTPD,BCL3,LTB,EBI3,SPN,CD28,IL4,BCL10,IL6,PRG3,IL27,CEBPG,IL9,CD276,INHA,FOXP3,SIGIRR,INHBB,INHBA,MAST2,EREG,NLRP12,GHRL,GLMN,IRF4,IL12B,GHSR +PWCOMMONS POSITIVE REGULATION OF EPITHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION.html EGFR,LAMA1,NME2,EPGN,NME1,ERBB2,FGF10,TGFA,LAMC1,LAMB1 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html RAB2A,NRBP1,LMAN2L,BET1,USE1,LMAN1,ERGIC1,ERGIC2,ERGIC3,COG3,STX18,SEC22A,SEC22B,SEC22C,GOSR2,YKT6,ZW10 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html EHMT1,PHB,CREBBP,HDAC10,HDAC11,PPARGC1A,SIRT2,RPS6KA5,UBE2N,SET,HUWE1,PRMT7,PRMT8,WHSC1L1,RBM14,CARM1,MYST1,NSD1,MAP3K12,MYST4,HDAC6,MYST3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html AURKAIP1,XRCC6,RORB,MED21,CITED2,EPC1,FOXF1,FOXF2,SUPT5H,EIF2B5,PCBD2,RXRA,MED12,MED14,MED13,PPARGC1A,PPARGC1B,BOLL,HNF4A,MED17,CRTC1,AFAP1L2,ARF6,PLAGL1,FOXH1,CDC42EP2,MAML3,TCF4,TCF3,ARHGEF10L,CDC42EP5,BMP4,UTF1,MAML1,MAP2K3,MAML2,CREBBP,ESRRG,MSTN,SMAD3,SMAD2,NUP62,NOTCH4,TNK2,BMP7,BMP6,PPARA,HNF1B,ELF1,HNF1A,ACVRL1,ELF4,SPI1,TP63,GLI2,ZBTB38,CAMKK2,GLI1,MAPT,ATF7IP,LYN,PRG3,CCNH,TP53,ARHGEF11,RAD51,GTF2H1,SCAP,MED6,INHBA,NCK2,CCND1,CARD14,CCND3,EREG,CCND2,NCK1,IL12A,IL12B,NSD1,CLOCK,CLN6,MED1,NUFIP1,EHF,HPRT1,AZU1,MRPL12,SQSTM1,BCL3,DAZL,SUPT4H1,CD28,FOXD3,IL4,IL3,DAZ1,IL6,IL5,TBX5,HCLS1,IL9,TRIM28,ILF3,TP73,GAPDHS,MNAT1,YWHAH,ILF2,YAF2,FOXE1,PPP2R4,PHF5A,RBM14,MMS19,NCBP1,TLR1,ARNT2,FOXO1,EIF5A,TLR3,TNFSF13,TLR4,FOXO3,TLR6,TLR7,TGFB1,TLR8,TLR9,IL31RA,APOA2,MDFIC,SMARCD3,ATG7,TDGF1,SMARCD1,GATA4,MYST1,SAMD4A,SPN,EBI3,MYST4,MYST3,EGFR,BCL10,MYO6,IL29,IL27,ARID1A,ARNTL,ELL3,TRERF1,IL20,HIF1A,TFAP2B,SMARCA1,ITLN1,KATNB1,ELK1,ABCA1,DYRK2,EGF,RUNX1,UBE2D1,ZNF423,EPAS1,TAF8,CD276,FOXP3,BRCA1,ATF6,ATF4,AKTIP,SMARCC1,DYRK1B,SMARCC2,HIVEP3,GLMN,HSP90AB1,RSF1,CTCF,CLCF1,ANG,TPP1,PAX8,MKL2,LTB,EGR1,HSP90AA1,PRKCG,CDK7,HMGA1,NRIP1,PRPF6,UBE2N,CD80,BPTF,ZMIZ2,TPPP,CD81,NCOA6,UBB,ACVR1,GLIS3,GLIS2,GLIS1,TNFRSF8,STUB1,TNFRSF1A,NPAS2,RGMB,ERCC6,ERCC3,NFATC2,ERCC2,CEBPG,DEFB103A,CREB5,GCK,SP1,THRAP3,IRF4 +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html KLK8,ADCY8,CRHBP,NF1,S100B,APOE,FYN,GALR3,GALR2,CRH,DLG4,ACSL4,IL1RAPL1,VLDLR +PWCOMMONS S PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE_OF_MITOTIC_CELL_CYCLE.html CHMP1A,DDX11,POLD1,MYO16,POLA1,CDK2AP1,ABL1,RCC1,APBB2,APBB1 +PWCOMMONS MITOTIC SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SPINDLE_ORGANIZATION_AND_BIOGENESIS.html KIF23,KIF11,PRC1,RAN,TTK,STMN1,RCC1,SMC1A,SMC3 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SNCAIP,CHIA,GNPDA1,B3GALT6,SLC7A8,SLC7A9,GGT1,SLC7A4,SLC7A5,BBOX1,SLC35A3,SLC7A6,GLDC,SLC7A7,TGFB2,FAH,GOT2,ASPA,GOT1,ST3GAL2,PLOD1,SCLY,MAT1A,ASMTL,SULT1A1,ST3GAL6,SULT1A2,DDAH2,DDAH1,NANP,ALDH6A1,YARS,DARS,GATM,AARS,QDPR,CDO1,SARS2,GLCE,GNS,PYCR1,COLQ,HAS1,SULT1B1,RARS,EXT1,EXT2,GCLC,GCNT2,GNE,GLUD2,FARS2,GLUD1,PAH,ASL,NAGK,GCLM,EXTL2,KARS,CHIT1,OAZ2,B3GNT8,ARG1,GAD2,OAZ1,ASRGL1,ALDH4A1,GCSH,GAD1,B4GALT7,P4HB,UAP1,GUSB,SPHK1,SLC6A14,HGD,ATF4,BAAT,DIO2,SLC7A2,DIO1,FPGS,SLC25A15,BCKDK,AMT,GSS,WARS,MCCC2,MSRA,TYR,XYLT1,HDC,CHST12,CHST11,GSTZ1,CHST13,HPD,PEPD,PRG3,ALDH5A1,CHST2,CHST3,CHST4,SLC3A1,CHST5,HYAL4,DDO,CHST1,CHST7,CHST6,SDS,DHPS,SMS,CLN6,AOC3,BCAT1,ALDH18A1,GALNT5,NFS1,UGDH,HPRT1,GLS2,DCT,MTHFR,B4GALNT2,MARS2,ETNK1,SULT1C2,PTS,BCKDHA,BCKDHB,ADI1,LARGE,SLC6A6,GAMT,MAT2B,SLC5A7 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html GPS1,DUSP22,MBIP,GPS2,DUSP2,RGS3,LAX1,RGS4,DUSP16,SPRED2,SPRED1,DUSP9,DUSP8,DUSP6 +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html SGPL1,CLN3,UGCG,LASS1,CERK,NEU3,LASS5,NSMAF,ASAH1,ASAH2,CLN6 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F2RL2,F2RL3,ACVRL1,F13A1,GNA12,MMRN1,TGFB2,GP9,SERPINE1,APOA5,KNG1,F12,L3MBTL4,F10,F8,F9,F7,WAS,PROC,THBD,CD36,GNAQ,F5,HNF4A,EREG,CD40LG,F2,TFPI,SPRR3,PROS1,GGCX,DCBLD2,RTN4RL1,ADORA2A,PABPC4,PF4,ITGB3,LMAN1,PR47,F13B,MIA3,GP1BA,RTN4RL2,ENTPD1,PLAT,KLK8,NF1,ITGA2,C4BPB,TMPRSS6,PLG,VWF,CD59,F2R +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html RTN4,KLK8,NF1,LRRC4C,SLIT2,THY1,AMIGO1,YWHAH,SERPINF1,ROBO1,APOE,MAPT,NPTN,ROBO2 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html E2F2,E2F3,MED24,MED23,TBP,GTF2E1,GTF2E2,MAZ,MED26,MED27,TAF2,TAF5,MED12,CDK9,MED14,MED13,CDK7,PPARGC1A,MED7,MED4,MED30,MED16,GTF2I,GTF2F1,MED17,NCOA6,THRAP3,GTF2F2,MED1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GNPDA1,CHIA,B3GALT6,PGD,CNOT7,SLC35A1,SLC35A2,SLC35A3,PDHB,SLC2A8,ST3GAL2,SLC2A5,SLC2A4,ST3GAL5,SLC2A2,MIOX,ST3GAL6,AKR7A2,INSR,NANP,IDUA,IRS2,FBP1,FBP2,PPARGC1A,DHDH,GLCE,MGAT1,GNS,PGLS,NNT,HAS1,MGAM,HAS3,EXT1,NEU3,EXT2,HS3ST3B1,LALBA,ME1,PHKA2,ALDOA,GCNT4,ME3,TALDO1,GCNT2,GNE,ALDOC,ALDOB,PFKFB1,ST8SIA1,ST8SIA3,ST8SIA2,NAGK,EXTL2,CHIT1,ADRB3,B3GNT8,GAD2,INS,IL17F,IDH1,GYS2,DYRK2,TFF1,SPAM1,B4GALT7,GAD1,FH,B4GALT1,ST6GAL1,UAP1,ST6GAL2,GUSB,EPM2A,GALT,IDH3B,B3GAT2,B3GAT1,ATF4,SLC25A10,ST8SIA4,ST8SIA5,ALDH2,FPGT,SGSH,SLC5A2,NDST1,ALG1,MAN1B1,PTEN,ACOT4,ACN9,ST6GALNAC6,XYLT1,HPSE,POMT1,CHST12,CHST11,CHST14,CHST13,TREH,SPACA3,PFKL,ACO2,ACO1,CHST2,CHST3,CHST4,CHST5,PFKM,PIGQ,HYAL4,PMM2,CHST1,G6PD,CHST7,CHST6,CHST9,CHST8,GAA,AMY1B,UGP2,CLN6,XYLB,FUT9,HS3ST5,GALNT7,FUT8,GALNT5,FUT5,UGDH,HK1,TKTL1,GALK1,NAGPA,LECT1,AKR1A1,ECD,MPDU1,B4GALNT2,FUT3,FUT4,FUT1,HS6ST1,A4GNT,FUT2,TSTA3,B4GALNT1,PDK1,PDK2,GMDS,PDK3,PDK4,GYG2,ACLY,BRS3,SDHA,GBA3,GAPDHS,GBA2,SDHB,LARGE,GLA,GCK,PYGM,SDHC,GSK3B,GFPT1,SDHD,GFPT2,AKR1B1,IPPK,PYGB,COG2 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html GGCX,F2RL2,F2RL3,HS3ST5,ADORA2A,F13A1,PABPC4,GNA12,PF4,ITGB3,LMAN1,MMRN1,PR47,GP9,F13B,SERPINE1,GP1BA,ENTPD1,KNG1,PLAT,F12,L3MBTL4,F10,F8,F9,ITGA2,C4BPB,F7,WAS,TMPRSS6,PLG,PROC,VWF,THBD,CD36,HNF4A,F5,GNAQ,CD40LG,CD59,F2,TFPI,PROS1,F2R +PWCOMMONS BODY FLUID SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/BODY_FLUID_SECRETION.html VIP,KNG1,GUCA1B,CEL,COPA,SLC34A1,SLC22A4,NPPB,NPR1,SLC22A2 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html UPF1,MTERF,TNP1,ETF1,MTIF3,HMGA1,TTF2,IRAK3,SET,MAZ,SMARCE1,MTRF1,HRSP12,SUPT16H,NRG1 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html BRSK1,GPX1,ERCC8,ERCC5,ERCC6,MC1R,CDKN2D,BCL3,SERPINB13,ERCC3,IVL,ERCC4,FEN1,ERCC2,REV1,RELA,UBE4B,GTF2H2,RPAIN,POLD1,DDB2,IL12A,MAPK8,SCARA3,IL12B +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html COX11,CYSLTR1,ELN,CFTR,BPGM,COX5B,EDNRA,UCP3,PPBPL2,HNMT,TMPRSS11D,CSF2RB,SFTPB,COX15 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html MDFI,GTPBP4,RSF1,CEBPG,EGLN1,FOXP3,NLRP3,PYDC1,FLNA,SIGIRR,SUMO1,CDKN2A,ID2,ID1,NARFL,PEX14,ID3,COMMD7 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html IMPA1,SGMS2,SGMS1,PIP5K1A,PTEN,PIGK,APOA1,PIGF,PIGG,LCAT,GPX4,PIGH,PIGB,PLA1A,PIGC,CETP,PCYT2,PLCB2,AGPAT2,PIGA,AGPAT1,CLN3,PIGZ,PIGY,PIK3C2A,TAZ,PIGV,PI4KA,PIGU,LGALS13,PIGT,PIGS,PI4KB,CHPT1,PIGO,PITPNM3,PRDX6,CD81,PI4K2A,PLA2G6,PLA2G2E,PLA2G3,PLA2G2D,CLN8,PLA2G5,PGS1,ENPP7,GPAA1,APOC2,PLAA,SERINC2,SERINC5,DGKE,LPCAT1,SERINC1,PEMT,ETNK1,PLCD1,PCYT1B,PIK3R1,LPL,FADS1,SMG1,DPM1,DPM2,DPM3,PLA2G4C,SMPD4,PLA2G4B,SMPD3,SMPD2 +PWCOMMONS RESPONSE TO IONIZING RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_IONIZING_RADIATION.html XRCC4,BRCC3,PML,TOPBP1,LIG4,BRSK1,XRRA1,NHEJ1,ATM +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html MDFI,DBNL,ZAK,KIAA1804,PTPLAD1,MAP4K1,PKN1,TLR6,DAXX,MAP3K6,MAP4K5,MAP3K5,MDFIC,MAP3K2,MAP3K9,MAP3K10,PAK1,MAP3K11 +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html NF2,IL29,LYN,CLCF1,HCLS1,SOCS1,PIGU,IL12A,HGS,IL20,IL31RA,IL22RA2 +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html SLC11A2,ATP7A,ATOX1,HFE,SLC30A5,CCS,SLC31A2,COX17,SLC31A1,SLC40A1,SLC39A2,ATP7B +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html RTN4,ALS2,NRP2,NRTN,NRP1,POU6F2,LRRC4C,GLI2,PAX2,KCNIP2,RTN1,GDNF,SHH,TGFB2,NRCAM,ATP2B2,APOE,ROBO1,MAPT,POU4F1,ROBO2,SEMA3B,UNC5C,EIF2B2,SPON2,EIF2B3,EIF2B4,EIF2B5,NRXN3,BAIAP2,LDB1,MDGA1,OTX2,PICK1,MDGA2,ARTN,CDK6,NRXN1,SLIT1,CDK5,SLIT2,THY1,FARP2,AMIGO1,RND1,SERPINF1,SEMA4F,BTG4,NPTN,GHRL,OPHN1,TRAPPC4,SIAH1,CNTN4,UBB,SMARCA1,CLN5,PARD3,CDK5R1,LST1,RTN4RL1,BRSK2,PPT1,AZU1,KAL1,BAI1,PCSK9,VWC2,KRT2,RTN4RL2,AGRN,LAMB1,PARD6B,KLK8,NF2,LMX1B,DTX1,NF1,NLGN1,NTNG1,DPYSL5,NTNG2,RACGAP1,SOD1,EIF2B1,YWHAG,YWHAH,S100B,MAP1S,CYFIP1,CIT,FEZ2,FEZ1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html XRCC4,RP1,ZAK,COPS3,NR2E3,GPX1,MC1R,CDKN2D,BRCC3,REV1,FECH,RELA,TOPBP1,LIG4,XRRA1,GTF2H2,SAG,PNKP,PITPNM1,PPM1D,RPAIN,GRM6,DDB2,IL12A,MAPK8,IL12B,DYNLRB1,NHEJ1,CLOCK,PML,OPN1SW,BRSK1,ABCA4,PDE6B,ERCC8,ERCC5,ERCC6,BCL3,SERPINB13,ERCC3,ERCC4,IVL,FEN1,ERCC2,UNC119,TRPC3,NF1,UBE4B,ATM,CCL11,POLD1,PDC,CACNA1F,SCARA3,SMC1A,RHO,GRK1,OPN4 +PWCOMMONS REGULATION OF CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CELL_ADHESION.html CD47,GTPBP4,SIRPG,ACVRL1,CDKN2A,NF2,B4GALNT2,CX3CL1,PTEN,RASA1 +PWCOMMONS POSITIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_MIGRATION.html EGFR,CDH13,MIA3,BCAR1,SPHK1,TDGF1,AMOT,ANGPTL3,LAMB1,TRIP6 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html TBX3,ELF3,ERBB2,NF1,TBX1,NR0B1,GLI2,MDK,SHH,GCM2,NOTCH4,TDGF1,FOXE1 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LIMA1,KATNB1,ARF6,LATS1,CXCL12,SORBS3,CDC42EP2,CEP250,GSN,MAPT,CLASP1,CLASP2,RASA1,ARHGEF10L,CDC42EP5,APC,ARHGEF2,CCDC88A,NF2,CRIPAK,MID1IP1,NEXN,NEBL,NCK2,TSC1,NCK1,CAPG,MAPRE1,TMSB4Y +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CASR,SLC9A7,GNA15,ATOX1,F2RL1,CD52,CXCL12,APOA4,BAK1,AGTR1,APP,APOA2,APOA1,SLC2A4,APOE,LCAT,GALR2,APOA5,RGN,CHRNA7,SLC4A1,CHRNA1,FTL,C5AR1,SLC34A3,THY1,CCR9,CCR8,CCR7,PLCE1,NPC1,CCR6,HIF1A,NPC2,RHCG,CCR5,ATP2C1,CCR4,CCR3,CCR2,CARTPT,STC1,SLC40A1,GLP1R,KCNMB3,CCL1,SRI,KCNMB4,C3AR1,CAV1,CCL3,DRD1,CLCN3,CCL2,DERL1,CYSLTR1,HFE,PPT1,ABCA2,BDKRB1,BCL2L1,BDKRB2,ABCA1,ATP6V1B1,CALR,CCL5,FTH1,CCL7,KCNMB2,P2RY4,P2RY2,SLC30A5,ANGPTL3,RPS6,ABCG1,ATP7A,CD55,GCM2,SLC4A11,CXCL13,AVPR1B,AVPR1A,XCL1,CACNA1C,CACNA1A,IFI6,GRK1,SLC9A1,ATP7B,CCKAR,MCHR1,HNF1A,GLRA1,BNIP3,CXCR3,EDNRA,FXN,CXCR4,SAA1,NMUR2,TRPV4,CETP,XCR1,MYC,AKR1C1,NDUFS1,KNG1,CLN3,AIFM3,CCKBR,PROK2,TARBP2,LCK,GHRL,NPPB,CLN5,CLN6,CLDN16,CCR1,TFR2,TAC1,EGLN1,CALCA,CALCB,CCL23,BCL2,PCSK9,CD24,PTPRC,OPRL1,ATP1A3,NPR1,ATP1A4,CCL19,MTL5,ATP1A1,ATP1A2,SOD1,CCL15,RHAG,TMPRSS3,CCL11,CCL13,CCL14,GCK,HPX,BAX,MT2A,NARFL,CP +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html FOXL2,SPRR2G,SPRR2F,SPRR2E,SOD1,EREG,SPRR2C,SPRR2D,SPRR2A,SPRR2B,EIF2B2,BMPR1B,EIF2B4,EIF2B5 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html MSH5,MRE11A,MSH4,LIG3,CHEK1,SPO11,RAD52,SYCP1,RAD50,ATM,RAD51,REC8,RAD21,RAD51L1,RAD54B,RAD51L3,DMC1 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html BCL10,SYT1,SCUBE3,CCDC88C,ALDH5A1,SCUBE1,MUC20,TP63,ACTN2,HPRT1,RAD51,STOM,VWF,DGKD,BAX,GOPC,GPX3,CDA,PEX14,ATPIF1,EIF2AK3,AKR1C1 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html PTPRC,IL2RB,RELA,DUOX2,SOCS1,DUOX1,ZNF675,NUP85,PF4,SOCS5,CX3CL1,PYDC1,SIGIRR,IL31RA,TNFRSF1A,IRAK3,EREG,CCR2,PYCARD,CD24,IFNK,COMMD7,C16ORF5 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html IRX4,SRI,POU6F1,BMP10,ERBB2,MYBPC3,FGF12,GLI2,SHH,CITED2,TGFB2,ECE2,HAND1,HAND2,TDGF1,GATA4,MKKS,DVL3,BMP2,ALPK3,NKX2-6,TBX5,VANGL2,TAZ,NF1,FBN1,TBX1,MYH7,CBY1,MYH6,DVL1,SHOX2,PLCE1,NCOA6,MYH11,CASQ2 +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html DMBX1,COL4A4,KLK8,EREG,RTN4RL1,APOA5,RTN4RL2,UBB,GLI2,BMPR1B,SPINK5 +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html CDK6,CX3CL1,AZU1,CDH13,CD47,SIRPG,TSC1,SAA1,PRSS2,TGM2,IL12A,IL12B,ALOX12 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html ALS2,ZAK,EDN2,TNFSF15,TLR6,DAXX,MAP3K7,MAP3K6,MAP3K5,MAP3K4,ANG,CXCR4,MDFIC,MAP3K9,TDGF1,TGFA,SHC1,CHRNA7,GNG3,PAK1,FGF2,EGFR,IRAK1,DBNL,CCDC88A,C5AR1,PIK3CB,MADD,KIAA1804,PICK1,PKN1,CARD10,PROK2,GRM4,PLCE1,CCND1,MAP4K5,ADRB2,CCND3,EREG,CCND2,CHRM1,CD81,GADD45G,ERN1,MAP3K10,CARTPT,GHRL,GADD45B,MAP3K13,PRKD3,GAP43,MAP3K11,TRAF2,PARD3,ADORA2B,PTPLAD1,ERBB2,C5,FPR1,MAP4K1,AZU1,SERINC2,SERINC5,MAP3K2,SERINC1,ADRA2A,CD4,ADRA2C,TRAF7,CD24,TRAF6,PPAP2A,EGF,MDFI,TAOK2,MAP2K3,MALT1,TPD52L1,SOD1,PRLR,EPGN +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html SGPL1,CLN3,LASS1,SPHK1,UGCG,CERK,NSMAF,LASS5,NEU3,ASAH1,CLN6,ASAH2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html NRTN,ZAK,ATP6AP2,FGF13,MBIP,MAP3K6,MAP3K5,MAP3K4,MDFIC,MAP3K9,TDGF1,SPRED2,CHRNA7,SPRED1,GNG3,MAP2K7,DBNL,C5AR1,TNIK,PIK3CB,MADD,KIAA1804,MAP4K3,PLCE1,MAP4K5,MAPK9,CARTPT,MAPK8,FGFR1,FGFR3,ADORA2B,PTPLAD1,DUSP10,MAP4K2,MAP4K1,MAPKAPK2,ADRB3,DUSP16,ADRA2A,ADRA2C,TRAF7,EGF,MDFI,CCM2,CARD9,TAOK2,MAP2K4,TAOK3,DUSP22,TPD52L1,RGS3,RGS4,ZNF675,DAXX,CAMKK2,CXCR4,TGFA,SHC1,PAK1,FGF2,MINK1,PKN1,AMBP,GRM4,SH2D3C,PROK2,ADRB2,SH2D3A,CRKL,LAX1,HIPK2,GADD45G,CD81,MAP3K10,GHRL,GADD45B,MAP3K13,MAP3K12,MAP3K11,C5,FPR1,MAP3K3,MAP3K2,REN,CD24,CD27,SCG2,GPS1,NF1,EDA2R,MAPK10,SOD1,GPS2,DUSP4,DUSP2,EPGN,MAPK8IP2,MAPK8IP3,MAPK8IP1,DUSP9,DUSP8,DUSP6 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html NBN,ZAK,AIF1,RPRM,FOXO4,TGFB1,CUL3,CUL2,CUL5,CDKN2A,CDKN2B,PCBP4,CDKN2C,CDKN2D,MYC,MAP2K6,CUL1,KHDRBS1,TP53,TBRG4,INHA,JMY,MFN2,INHBA,EIF4G2,PPM1G,PA2G4,BTG4,TBRG1,ERN1,GADD45A,PPP1R15A,ING4,PPP2R3B,STK11,IFNW1,SESN1,UHMK1,MLF1,PLAGL1,CDC123,APC,IL8,SMAD3,GAS1,CDKN3,GAS7,CDKN1C,NOTCH2,PPP1R9B,CDKN1B,MAPK12,CUL4A,RASSF1,APBB2,APBB1 +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html MED4,MED30,MED16,MED17,THRAP3,MED12,MED24,MED14,ARID1A,MED13,DAXX,MED1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html KIF22,KIF25,NBN,KNTC1,PKMYT1,TTK,AURKA,CDC16,TTN,TGFB1,KIF2C,TRIAP1,CDKN2B,DDX11,PCBP4,PRMT5,TARDBP,TGFA,CDCA5,CCNA2,ZW10,KIF11,ANAPC5,RAN,KIF15,RINT1,ANAPC4,TPX2,NUSAP1,ESPL1,UBE2C,DCTN3,DCTN2,CHMP1A,MAD2L1,EREG,ZWINT,BUB1B,CLIP1,AKAP8,MAD2L2,CHFR,NEK6,RAD17,PPP5C,PAM,NEK2,PML,ANAPC10,ANLN,CETN1,BRSK1,ANAPC11,RCC1,PIN1,NCAPH,NUMA1,NPM2,BUB1,PBRM1,GML,EGF,CD28,SSSCA1,PDS5B,CDC23,BIRC5,NDC80,CENPE,CDC25C,SUGT1,CDC27,ATM,SMC3,SMC4,CDC25B,NOLC1,EPGN,PLK1,CIT,SMC1A +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html TSPO,ALAD,FECH,COX10,PPOX,GPR143,GMPS,DCT,TYR,ALAS1,ALAS2,CPOX,AP3D1,NFE2L1,PAICS,OCA2,COX15 +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html ALAD,TSPO,FECH,COX10,PPOX,GPR143,GMPS,BLVRA,DCT,ALAS1,TYR,ALAS2,CPOX,AP3D1,NFE2L1,PAICS,OCA2,COX15 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html MDFI,DBNL,ZAK,KIAA1804,PTPLAD1,PKN1,MAP4K1,TLR6,DAXX,PDCD4,MAP3K6,MAP3K5,MAP4K5,MDFIC,MAP3K2,MAP3K9,HIPK3,MAP3K10,PAK1,MAP3K11 +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html DERL2,DERL1,VAPB,TP53,CRIPAK,DERL3,SELS,SCAP,ATF6,VCP,GSK3B,ERN1,PAK1,AMFR,EIF2AK3,ARHGEF10L +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CASR,GNA15,SLC9A7,ATOX1,F2RL1,CD52,CXCL12,AGTR1,BAK1,APP,GALR2,RGN,CHRNA7,SLC4A1,CHRNA1,FTL,C5AR1,SLC34A3,THY1,CCR9,CCR8,PLCE1,CCR7,CCR6,RHCG,CCR5,ATP2C1,CCR4,CCR3,CCR2,STC1,SLC40A1,GLP1R,CCL1,SRI,KCNMB3,C3AR1,KCNMB4,CLCN3,CCL3,DRD1,CCL2,CYSLTR1,HFE,BDKRB1,PPT1,BCL2L1,BDKRB2,CCL5,CALR,ATP6V1B1,CCL7,FTH1,KCNMB2,P2RY4,P2RY2,SLC30A5,ATP7A,GCM2,CD55,SLC4A11,CXCL13,AVPR1B,AVPR1A,XCL1,CACNA1C,CACNA1A,IFI6,SLC9A1,GRK1,ATP7B,MCHR1,CCKAR,GLRA1,BNIP3,CXCR3,EDNRA,FXN,SAA1,CXCR4,NMUR2,TRPV4,XCR1,MYC,NDUFS1,KNG1,CLN3,AIFM3,CCKBR,PROK2,LCK,GHRL,NPPB,CLN5,CLN6,CLDN16,CCR1,TFR2,TAC1,CALCA,CALCB,CCL23,BCL2,CD24,PTPRC,OPRL1,ATP1A3,ATP1A4,MTL5,NPR1,CCL19,ATP1A1,ATP1A2,SOD1,CCL15,RHAG,TMPRSS3,CCL11,CCL13,CCL14,HPX,BAX,MT2A,CP +PWCOMMONS DNA MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_MODIFICATION.html ATRX,ATF7IP,DNMT3A,FOS,PICK1,GATAD2A,DNMT1,DMAP1,DNMT3B,HELLS +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html SEPT5,NCBP2,SYT1,TSPO,SNCAIP,FAM3D,AP2S1,TNFSF14,MXI1,GDNF,TGFB1,APOA4,GATA2,SLN,PACSIN3,ZFYVE16,YRDC,RAB26,KHDRBS1,STX1A,SPACA3,NUDT4,CRYAA,CRYAB,STIM2,STIM1,NLRP3,LDLRAP1,TRAT1,FLNA,GHRH,CARTPT,GHRL,STON2,KCNMB4,ORAI1,STON1,NFKBIE,ITLN1,ABCA2,PPT1,CDH1,ARF6,CACNB4,UHMK1,AHSG,AZU1,PEA15,RAC1,SFTPD,BCL3,SNAP25,MDFI,CBL,NF1,SMAD3,NFKBIL1,NFKBIL2,CDH13,GCK,PLN,GSK3B,NLRP12,FAF1,TRIP6,RSC1A1,BARD1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html MSR1,PDLIM7,SORL1,RABEPK,HFE,ARF6,PPT1,SCARF1,ASGR1,ADRB3,AP1S1,PICALM,FOLR1,RAC1,SFTPD,RAMP3,MRC1,RAMP2,CLN3,CBL,LRP1B,ARHGAP27,STAB2,PI4KB,LDLRAP1,M6PR,ADRB2,STAB1,IGF2R,LRP2,LRP3,CLTCL1,DNM1 +PWCOMMONS POSITIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_ANGIOGENESIS.html AGGF1,BTG1,SPHK1,RHOB,AMOT,CHRNA7,TNFSF12,RUNX1,ANGPTL3,ANGPTL4 +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html NCSTN,NOTCH1,ADAM10,PSEN1,APH1A,DTX1,MAML1,PSEN2,MAML2,TP63,PSENEN,MAML3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNC1,SLC22A16,KCNC4,KCNC3,ATOX1,ATP6AP1,KCNK7,KCNK6,KCNK5,CHRNA7,KCND3,SCN2B,SCN2A,STIM2,STIM1,PKD2L1,SLC34A3,NNT,RHCG,ATP2C1,RYR3,RYR1,SLC40A1,KCNMB3,ORAI1,KCNMB4,SCN1B,KCNA2,KCNA1,KCNA4,HFE,KCNA3,CCL8,CACNB3,KCNA6,KCNA5,CACNB4,KCNJ2,KCNJ3,ATP6V0B,KCNMB1,KCNMB2,KCNJ1,SLC11A2,KCNS3,ATP6V0C,KCNS1,SCN9A,SLC30A5,C16ORF7,SLC31A2,HCN4,SLC31A1,TRPC1,HCN2,CACNA2D1,TRPC4,TRPC3,TRPC6,KCNB2,TRPC5,UCP1,KCNK1,KCNK3,KCNK4,KCNJ5,ATP7A,KCNJ4,SLC4A11,KCNJ6,NPY,UCP3,ATP2A3,UCP2,ATP2A1,CHRNB1,CACNA1D,ATP7B,KCNH1,KCNK17,KCNJ15,ATP6V0E1,KCNAB3,KCNAB1,KCNJ10,KCNJ12,HVCN1,KCNIP2,KCNJ11,KCNQ4,SLN,KCNQ3,NMUR1,NMUR2,SLC22A4,TRPV5,SLC22A3,SCN7A,KCNQ2,KCNQ1,COX17,SLC22A2,KCNG2,SLC22A1,SCN10A,TRPM3,SGK1,TRPM2,ATP6V1F,KCNA10,ATP6V1C1,SCN11A,KCNH2,KCNH3,KCNH4,KCNE1,PKD2,KCNE2,CCS,SCNN1G,CHP,SCN5A,SCNN1A,SLC39A2,SCNN1D,SLC39A1,TCIRG1,SLC8A1,NOX1,ATP1A4,RHAG,KCNV1,KCNN4,ABCC9,KCNN1,SLC17A3,SLC17A4,ATP6V1E1,PLN,KCNN3,SLC17A2,SCN4B,KCNF1,ABCC8,SCN4A,CSN2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html ALS2,NRP2,RTN4,NRTN,NRP1,POU6F2,LRRC4C,KCNIP2,GLI2,PAX2,GDNF,RTN1,SHH,TGFB2,NRCAM,ATP2B2,APOE,ROBO1,MAPT,ROBO2,SEMA3B,POU4F1,UNC5C,SPON2,NRXN3,MDGA1,LDB1,BAIAP2,PICK1,MDGA2,OTX2,NRXN1,CDK5,SLIT1,SLIT2,THY1,FARP2,AMIGO1,RND1,SEMA4F,BTG4,GHRL,OPHN1,TRAPPC4,CNTN4,SIAH1,UBB,SMARCA1,PARD3,CDK5R1,LST1,RTN4RL1,BRSK2,PPT1,KAL1,BAI1,VWC2,PCSK9,RTN4RL2,AGRN,LAMB1,PARD6B,KLK8,LMX1B,DTX1,NLGN1,DPYSL5,NTNG1,NTNG2,YWHAG,YWHAH,S100B,MAP1S,CYFIP1,FEZ2,FEZ1 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html LST1,IL18,TNFSF13,SPINK5,TGFB1,SART1,CD47,ZAP70,SFTPD,CD24,EBI3,CD28,IL4,PTPRC,SIT1,CD3E,IL7,IL27,SLA2,CD276,INHA,SOCS5,IL21,THY1,INHBA,NCK2,LAT,SIRPG,LAX1,NCK1,LCK,IL12A,GLMN,IL12B,ICOSLG +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html CALCA,CDH13,S100P,NF1,PRSS3,AMOT,TNFSF12,MYH9,PLG,SCG2,S100A2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html ALS2,RTN4,NRP2,NRTN,NRP1,LRRC4C,KCNIP2,PAX2,GLI2,GDNF,SHH,TGFB2,NRCAM,ROBO1,APOE,MAPT,POU4F1,SEMA3B,ROBO2,UNC5C,SPON2,NRXN3,BAIAP2,PICK1,OTX2,NRXN1,SLIT1,CDK5,SLIT2,THY1,FARP2,AMIGO1,RND1,SEMA4F,TRAPPC4,GHRL,OPHN1,SIAH1,CNTN4,UBB,CDK5R1,PARD3,LST1,RTN4RL1,PPT1,KAL1,BAI1,RTN4RL2,AGRN,LAMB1,PARD6B,KLK8,DPYSL5,NTNG1,NTNG2,YWHAH,S100B,MAP1S,CYFIP1,FEZ2,FEZ1 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html SHROOM1,SORBS3,SHROOM2,LIMA1,EZR,SORBS1,TSC1,NF2,FSCN2,FSCN1,EPB49,ARHGEF10L +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html MOCOS,SNCAIP,ALDH1L1,HPRT1,FAH,TGFB2,DCT,MTHFD2,TYR,ASMTL,CDA,GSTZ1,SPR,PTS,HPD,ALDH6A1,MOCS2,ALDH5A1,QDPR,FTCD,HGD,GMPS,SULT1B1,MAT2B,PAICS,PRPS1 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html IL6,PRG3,PAIP2,NDUFA13,INHA,FOXP3,FURIN,IL10,PAIP2B,SIGIRR,INHBB,INHBA,EIF4A3,EIF2AK1,TSC1,NLRP12,SFTPD,BCL3,GHRL,GHSR,EIF2AK3,APBB1 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html ACCN1,GSTM3,EGR2,NF1,BAI1,UGT8,NEUROG3,SOD1,PMP22,SERPINI1,ALDH3A2,GFRA3 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html FGD2,ALS2,FGD1,RAB3GAP2,RALBP1,RAB3GAP1,NF1,ARHGAP27,THY1,TSC1,FGD5,FGD6,FGD3,FGD4 +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html PAM,KIF25,PDS5B,CDC23,NUSAP1,CENPE,NDC80,ESPL1,LATS1,SMC4,NCAPH,CHMP1A,DDX11,ZWINT,SMC1A,CDCA5,ZW10 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html PTGES3,PPARA,PPARD,CYP2J2,PTGS1,ACOT2,ACOT1,ACOT4,ACOX3,SC4MOL,ACOT9,AKR1C3,AKR1C2,PTGES,ACOT12,GNPAT,ACADM,PRG3,ALDH5A1,ACADS,ADIPOR2,ADIPOR1,PPARGC1A,PECI,HAO1,ACADVL,PNPLA8,PTGDS,ALOX15B,HAO2,SLC27A6,SLC27A2,CROT,SLC27A5,DEGS1,ALOX12,HACL1,ACADSB,ECH1,ECHS1,CD74,MIF,HADHB,TNFRSF1A,ABCD2,BDH2,CPT1B,FADS1,MCAT,FADS2,CPT1A,BRCA1,OXSM,CYP4A11,CYP4F8,GLYAT,MLYCD,FAAH,LTA4H,CYP4F3,CYP4F2,HPGD +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html SEPT5,RAB3A,SYT1,KCNMB4,SNCAIP,BAIAP3,NLGN1,SNAPIN,RIMS1,GRM4,HRH3,SYN3,CARTPT +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html ME1,ME3,GAD2,ACO2,ACO1,IDH3B,IDH1,ACLY,GAD1,ACOT4,FH +PWCOMMONS NEGATIVE REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html CALCA,IL4,INHBA,MAFB,LDB1,ZNF675,CARTPT,PF4,INHA,ZBTB16 +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html SASS6,NDE1,CEP250,SAC3D1,NPM1,CNTROB,CETN3,TUBE1,BRCA2,CETN1,CP110 +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html CHIA,ALG1,EPM2A,GYG2,CHIT1,CHST1,B3GNT8,GCK,CHST7,PYGM,GSK3B,MGAM,GAA,GYS2,DYRK2,PYGB +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html SEPT5,SNAP29,STX5,SHROOM2,MYO1A,MSTO1,AP1M2,NIN,NLGN1,NUSAP1,CENPF,CDC23,BIRC5,CENPE,HOOK3,MFN2,PEX1,ALB,LRMP,TMED10,PAFAH1B1,SNAP23,YKT6,CDCA5 +PWCOMMONS ACTIN FILAMENT BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_MOVEMENT.html MYL6,TNNT2,MYO6,MYL6B,MYO1E,MYH7,MYO9B,MYH6,MYH9,MYH10 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html CEBPG,EGLN1,PYDC1,NLRP3,FOXP3,FLNA,SIGIRR,SUMO1,CDKN2A,ID2,ID1,NARFL,PEX14,ID3,COMMD7 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html ALAD,TSPO,ALDH1L1,COX10,UROS,PPOX,HPRT1,MTHFD2,ALAS1,ALAS2,ASMTL,CPOX,CDA,COX15,P4HB,ALDH6A1,FECH,PRG3,FTCD,GMPS,UGT1A1,BLVRA,MAT2B,NFE2L1,PAICS,PRPS1 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html SDAD1,EXOSC7,EXOSC2,EXOSC3,EIF2A,RRP9,FBL,DIS3,NOLC1,DKC1,RPS14,NPM1,POP4,GEMIN4 +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html CFHR1,ORM1,MBL2,APCS,CEBPB,KRT1,LBP,C2,ORM2,AHSG,SIGIRR +PWCOMMONS TRIACYLGLYCEROL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRIACYLGLYCEROL_METABOLIC_PROCESS.html LPL,AGPAT6,PNLIPRP2,DGAT1,DGAT2,APOA5,APOC3,APOC2,CETP,PNPLA3 +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html IMPA1,GPAA1,PTEN,PIGK,PIGF,PIGG,PIGH,PIGB,PIGC,PIK3R1,PIGA,PIGZ,PIGY,PIK3C2A,PIGV,PIGU,PI4KA,SMG1,PIGT,PIGS,PI4KB,PIGO,PITPNM3,PI4K2A,CD81,DPM1,DPM2,DPM3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html AURKAIP1,TLR1,EIF5A,TLR3,TLR4,TLR6,TLR7,TLR8,TGFB1,IL31RA,TLR9,APOA2,CLCF1,TPP1,MAPT,ATG7,TDGF1,LTB,SPN,EBI3,SAMD4A,EIF2B5,BCL10,IL29,PRG3,LYN,IL27,PPARGC1A,BOLL,IL20,UBE2N,NCK2,CCND1,CARD14,CD80,EREG,CCND3,CCND2,NCK1,TPPP,CD81,IL12A,IL12B,CLN6,ITLN1,KATNB1,EGLN2,TNFRSF8,ARF6,STUB1,AZU1,CDC42EP2,BCL3,DAZL,UBE2D1,CDC42EP5,CD28,IL4,BMP4,IL3,DAZ1,IL6,IL5,CEBPG,HCLS1,IL9,CD276,BRCA1,AKTIP,GLMN,PPP2R4,TNK2,FAF1,IRF4 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PRKG1,HOOK3,APOE,KIFAP3,PLA2G1B,KIF13B,PLD2,OPA1,ROCK1,KIF5B,KIF5A,RAN,MYH7,MYH6,MYH9,MARK4,PCLO,MARK1,THY1,RND3,UXT,KRT19,RND1,ATP2C1,CNTROB,DBN1,KIF4A,MYO9B,ARF6,KRT20,RCC1,CDC42EP2,RAC3,DMD,RAC1,TMED10,ARHGEF10L,CDC42EP5,KIF3B,TAOK2,ARFIP2,MYOZ1,CDC42BPG,LASP1,CDC42BPA,MAP7,PYY,GHSR,CDC42BPB,LIMA1,WASF3,NUAK2,WASF1,BCAR1,WASF2,LATS1,KISS1,PDPK1,DYNLL1,NUBP1,CEP250,MAPT,DYNC1I1,STX5,ARHGEF2,ACTA1,VIL1,ARHGEF17,FLNB,FLNA,ELMO1,NCK2,MAST1,NCK1,LRMP,TMSB4Y,MAP3K11,CXCL1,SNAP29,SHROOM1,SHROOM2,PLEK2,ABI2,SORBS3,EZR,SORBS1,SNAP23,WIPF1,RASA1,APBA1,RNF19A,NLGN1,CRIPAK,RICTOR,SOD1,MID1,CAPG,AMOT,KPTN,YKT6,SEPT5,MTSS1,PRC1,TTK,TTN,CXCL12,ANK3,PACSIN2,TUBG1,MYO6,NEBL,ARPC1A,TNNT2,TESK2,STMN1,DST,LRPPRC,FGD2,MYL6,FGD1,CCL3,SSH1,MRAS,SSH2,KATNB1,ARPC4,ANLN,ARPC5,LLGL1,DOCK2,ADRA2A,CLASP1,CLASP2,FGD5,FGD6,FGD3,FGD4,ARHGDIB,FSCN2,CKAP5,MYO1E,SPTBN4,FSCN1,EVL,EPB49,TSC1,MYH11,RHOT1,RHOT2,SPTA1,ABL1,SMC1A,DNAJB6,ARHGAP10,MYH10,KIF23,RHOJ,PREX1,DSTN,ARHGAP4,KIF2C,CDC42,DES,PEX1,ANG,GSN,RHOA,PAK1,RHOF,KLHL20,DLG1,CCDC88A,KIF11,LIMK1,NUSAP1,MID1IP1,NEXN,KIF1A,KIF1B,TPPP,CFL1,SCIN,GHRL,WASL,MAPRE1,KPNA2,AP1M2,KRT9,TUBGCP6,TUBGCP5,MYL6B,KRT3,PAFAH1B1,CNN2,NEFL,APC,TNXB,NF2,NF1,RACGAP1,TUBGCP2,CENPJ,SMC3,MAP1S,CRK +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html FGD2,FGD1,APOA1,APOE,RALBP1,APOC3,ARHGAP27,ABCA1,FGD5,FGD6,FGD3,FGD4 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html ME1,CALCR,GCLC,ABCA2,LATS1,LATS2,GSTM3,ANG,GATA3,PCSK9,CD24,EIF2B2,EIF2B3,EIF2B4,EIF2B5,LYN,HCLS1,ADIPOR2,ADIPOR1,BRCA2,CRIPAK,EIF2B1,BRCA1,RERG,KRT19,TSC1,NCOA6,FOXC2,GHRL,RBM14,STEAP2,GHSR,PDCD7 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html NCBP1,RNMT,CRNKL1,CWC15,SNRPD1,SNRPD2,AUH,SMNDC1,RNGTT,SFRS6,NONO,SFRS7,SFRS4,SFRS5,DHX38,SFRS8,SFRS9,LSM5,LSM3,DDX20,LSM1,KHDRBS1,ZFP36,PRPF31,SRPK2,EFTUD2,PTBP1,SF1,SFRS1,PPARGC1A,HNRNPR,SRPK1,SFRS2,DDX39,KHSRP,CPSF6,SLU7,SIP1,CPSF3,CPSF1,BAT1,TRA2A,HSPA1B,KIN,SF3B3,NUDT21,USP39,DHX15,GEMIN8,PABPC1,SFRS2IP,GEMIN6,GEMIN7,SFRS11,SPOP,GEMIN5,UPF2,CSTF3,CSTF2,SMG6,SMG5,PAIP1,SMG7,GRSF1,SMG1,SSB,SNW1,SF3A2,ELAVL4,PRPF18,SF3A1,HNRNPA0,SF3A3,SLBP,GSPT1,SFPQ,PHF5A,CSTF1,TXNL4A +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TRIB3,SFN,MBIP,PYDC1,LATS1,PDCD4,LATS2,CDKN2A,HEXIM2,PAK2,HEXIM1,DUSP16,SPRED2,SPRED1,CDK5RAP1,APC,GPS1,PTPRC,PIF1,NF1,DUSP22,CRIPAK,RB1,THY1,GPS2,TARBP2,CBLC,DUSP2,RGS3,LAX1,RGS4,HIPK3,DUSP9,DUSP8,DUSP6 +PWCOMMONS AMYLOID PRECURSOR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMYLOID_PRECURSOR_PROTEIN_METABOLIC_PROCESS.html NCSTN,CLN3,ACHE,APH1A,PSEN1,BACE2,PSEN2,PSENEN,NECAB3,ABCG1 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html KCNH1,SNAP29,VAPA,NAPG,EEA1,NAPA,CD9,ADAM2,ATG7,VPS4B,IZUMO1,SNAP23,STX11,STX6,NPLOC4,RABIF,STAP1,CRISP1,VTI1B,BNIP1,RABEP1,OTOF,CACNA1H,LRMP,GOSR2,VAMP3,ADAM12,GCA +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html BCAT1,HSP90AB1,ALDH18A1,PAH,BBOX1,GCH1,TGFB2,AKT1,OAZ1,PLOD1,ASMTL,SULT1A2,ETNK1,SPR,DDAH2,NQO1,GCHFR,EGFR,HSP90AA1,PRG3,CDO1,PYCR1,GLA,MAT2B,SLC5A7 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html PDIA2,TNFSF15,BNIP3,PMAIP1,BAK1,GPX1,NLRC4,CASP3,CDKN2A,CASP8AP2,CASP9,CASP7,CASP8,ACIN1,CASP2,TOP2A,DEDD2,AIFM3,DFFA,GZMA,AIFM1,DFFB,CYCS,TP53,NDUFA13,CECR2,GZMB,BCL2L10,IFNB1,LCK,PSEN2,F2,BID,MCL1,PPT1,BCL2L1,SFN,MOAP1,MTCH1,DIABLO,C16ORF5,HIP1,COL4A3,FOXL2,DNM1L,SMAD3,CIDEA,TPD52L1,BAD,SOD1,STAT1,VDAC1,VCP,BBC3,BAX,IFT57,BIK,APAF1,IFI6,F2R +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html MBL2,BCL10,CRTAM,CADM1,CEBPG,APOBEC3G,COLEC12,DEFB127,PYDC1,APOBEC3F,NCR1,TLR8,CD1D,APOA4,EREG,DEFB118,IL12A,SFTPD,KRT1,IL12B,IFNK,DEFB1,DMBT1 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html TBX3,SPHK1,NUSAP1,HCFC1,BIRC5,ASNS,CITED2,TGFB2,CCND1,EREG,CCND3,EPGN,CCND2,TGFA,EGF,CD28 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html EID2,SNX6,ZNF675,PTEN,ADRB3,PEG10,OTUD7B,VWC2,RHOH,MDFI,PTPRC,CARD8,NF2,SLA2,NLK,TAOK3,SOCS1,NF1,CIDEA,CBY1,FRZB,TAX1BP3,BRAP,THY1,SIGIRR,MFN2,AMBP,CBLC,ADRB2,SOST,TSC1,NLRP12,HGS,SMURF1,TNFAIP3,ACVR1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html DDX11,SMARCD1,STAG3,HIRIP3,TLK1,ACIN1,TLK2,CDCA5,MYST1,MYST4,MYST3,SATB1,DFFB,MTA2,HDAC10,ESPL1,ARID1A,HDAC11,TAF6L,PPARGC1A,REC8,RFC1,HUWE1,SMARCE1,SYCP3,ZWINT,SMARCA5,PAM,HMGB1,MRE11A,SYCP1,ACD,NPM2,PBRM1,ASF1A,HELLS,EHMT1,SMG6,PIF1,PHB,CREBBP,CDC23,NDC80,SUV39H2,HDAC5,HDAC4,HDAC3,HDAC2,HDAC1,SMARCC1,SMARCC2,SUPT16H,CHAF1A,VCX,SMC1A,HDAC8,CHAF1B,HDAC6,PTGES3,NBN,KIF25,RSF1,EZH2,NAP1L1,BNIP3,NAP1L3,TERF2IP,NAP1L2,LATS1,NAP1L4,PRMT7,DKC1,PRMT8,TOP2A,TERT,ZW10,RBBP4,AIFM2,NUSAP1,HMGA2,HMGA1,RAD50,UBE2N,CHMP1A,BPTF,CARM1,NSD1,MAP3K12,H1FNT,POT1,NCAPH,SET,SAFB,ACTL6A,SUPT4H1,TINF2,ERCC4,ERCC1,TERF2,PDS5B,MSH3,MSH2,NASP,SIRT4,SIRT5,TNP1,CENPE,SIRT1,SC65,SIRT2,MIS12,SMC4,CENPH,RPS6KA5,WHSC1L1,TEP1,RBM14,TSSK6 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html FGD2,FGD1,CD2AP,VCL,CDC42,CDC42EP2,CDC42EP1,RAC3,RAC1,CDC42EP4,FGD5,FGD6,FGD3,CDC42EP5,THBS4,FGD4,CCDC88A,PCNT,VANGL2,ARFIP2,ACTN2,DNAI2,CDH13,CYFIP1,OPHN1 +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html GRM4,CDK5R1,AKT1S1,BAX,NF1,PCSK9,PPT1,SOD1,CDK5,GDNF,RASA1,TGFB2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html NCBP2,NCBP1,PRPF4B,CRNKL1,LSM6,SNRPD3,CWC15,SNRPD1,RP9,SNRPD2,SYNCRIP,ZNF638,SMNDC1,SFRS6,NONO,SFRS7,SFRS4,SFRS5,DHX38,DDX23,SFRS8,SFRS9,U2AF1,DBR1,LSM4,SRRM1,DDX20,LSM1,PRPF31,SNRPA1,SRPK2,NOL3,SNRPN,EFTUD2,PTBP1,SF1,PRPF3,SFRS1,PPARGC1A,SRPK1,SFRS2,DDX39,SNRPB,KHSRP,SLU7,SNRPC,SIP1,SNRPF,BAT1,SNRPG,TRA2A,SNRPB2,IVNS1ABP,SF3B4,SF3B3,SF3B2,PPAN,PRPF8,CDC40,USP39,DHX16,GEMIN8,HNRNPC,SFRS2IP,GEMIN6,GEMIN7,NOVA1,SFRS11,GEMIN5,DHX8,BCAS2,SNW1,RNPS1,SF3A2,PRPF18,SF3A1,SF3A3,PPIG,SFPQ,ZRANB2,PHF5A,TXNL4A +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html ME1,COASY,ALAD,TSPO,MOCS2,GCLC,FECH,COX10,UROS,PPOX,COQ7,GCLM,PDSS1,PDSS2,COQ3,COQ2,ALAS1,ALAS2,CPOX,NFE2L1,COX15 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CADM1,ELF4,IL18,JAG2,TNFSF13,TPD52,SPINK5,TGFB1,SART1,CD47,NLRC3,EBI3,CRTAM,SIT1,CD3D,CD3E,IL27,SLA2,INHA,SOCS5,NFAM1,IL21,THY1,INHBA,NCK2,SIRPG,LAT2,LAX1,CD40LG,NCK1,LCK,IL12A,IL12B,NHEJ1,ICOSLG,LST1,INS,CD2,ZAP70,SFTPD,CD4,CD24,HELLS,CD7,CD28,IL4,PTPRC,IL7,CEBPG,CD276,FOXP3,CD1D,HDAC5,LAT,HDAC4,GLMN,CLEC7A,CD79A,HDAC9,IL2 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html ITLN1,STUB1,TGFB1,IL31RA,CLCF1,ATG7,TDGF1,UBE2D1,BMP4,IL3,BCL10,IL5,LYN,IL29,HCLS1,PPARGC1A,BRCA1,IL20,UBE2N,CARD14,CCND1,CD80,CCND3,AKTIP,CCND2,CD81,IL12A,PPP2R4,TNK2 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html GNA15,CASR,SLC9A7,ATOX1,F2RL1,CD52,CXCL12,AGTR1,APP,GALR2,RGN,CHRNA7,FTL,C5AR1,THY1,CCR9,CCR8,PLCE1,CCR7,CCR6,CCR5,ATP2C1,CCR4,CCR3,CCR2,STC1,SLC40A1,GLP1R,CCL1,SRI,C3AR1,CLCN3,DRD1,CCL3,CCL2,CYSLTR1,HFE,PPT1,BDKRB1,BDKRB2,ATP6V1B1,CALR,CCL5,CCL7,FTH1,P2RY4,SLC30A5,ATP7A,CD55,GCM2,SLC4A11,CXCL13,AVPR1B,AVPR1A,CACNA1C,XCL1,CACNA1A,ATP7B,SLC9A1,CCKAR,MCHR1,CXCR3,EDNRA,FXN,SAA1,CXCR4,NMUR2,TRPV4,XCR1,MYC,KNG1,CLN3,CCKBR,PROK2,LCK,GHRL,CLN5,CLN6,CLDN16,CCR1,TFR2,TAC1,CALCA,CALCB,CCL23,BCL2,CD24,PTPRC,OPRL1,ATP1A3,CCL19,ATP1A4,MTL5,ATP1A1,ATP1A2,SOD1,CCL15,TMPRSS3,CCL11,CCL13,CCL14,HPX,MT2A,CP +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html RSF1,BNIP3,PRMT7,PRMT8,SMARCD1,MYST1,MYST4,MYST3,RBBP4,HDAC10,ARID1A,HDAC11,TAF6L,HMGA1,PPARGC1A,UBE2N,SYCP3,HUWE1,BPTF,CARM1,NSD1,MAP3K12,SET,NPM2,PBRM1,ACTL6A,SUPT4H1,HELLS,EHMT1,NASP,PHB,CREBBP,SIRT4,SIRT5,TNP1,SIRT1,SIRT2,SUV39H2,HDAC5,RPS6KA5,HDAC4,HDAC3,HDAC2,HDAC1,SMARCC1,WHSC1L1,SMARCC2,RBM14,HDAC8,HDAC6 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F2RL2,F2RL3,ADORA3,S100A8,AIF1,F13A1,S100A9,GNA12,IL13,CXCL11,MMRN1,ADORA1,TGFB1,GP9,TGFB2,CXCL10,CTGF,LTB4R,SERPINE1,APOA5,CHRNA7,IL1A,F12,F11R,L3MBTL4,F10,VPS45,RELA,F8,F9,CD40,F7,CDO1,IL20,TNFAIP6,CCR7,CD36,THBD,F5,HNF4A,CCR5,CD40LG,CCR4,CCR3,CX3CR1,CCR2,F2,TFPI,RIPK2,NFE2L1,PLA2G2E,PLA2G2D,DCBLD2,TPST1,GGCX,C3AR1,ACHE,CCL3,ADORA2A,PABPC4,HOXB13,AFAP1L2,CX3CL1,ITGB3,LMAN1,CCL5,MDK,CCL4,AHSG,IL17C,F13B,IFNA2,MIA3,RAC1,ENTPD1,BLNK,PLAT,ITGA2,AGER,S100A12,HDAC5,HDAC4,APOL3,LYVE1,CD59,PARP4,GHSR,HDAC9,ABCF1,FGF7,ACVRL1,ELF3,TACR1,CRP,PRDX5,NFKB1,CFHR1,CD97,FOS,NOD1,CXCR4,AOAH,CCL3L3,IL1RAP,MGLL,LBP,XCR1,NFX1,IRAK2,KNG1,APCS,IL18RAP,LYZ,CHST2,NLRP3,WAS,PROC,SIGIRR,ALOX15,KLRG1,ADM,EREG,GNAQ,PLA2G7,SPRR3,GHRL,PROS1,PTAFR,GAP43,AOC3,CXCL1,MBL2,NMI,RTN4RL1,CCR1,C5,CXCL2,CXCL9,PF4,GPR68,CXCL6,CCL26,PR47,CCL24,TNFRSF1A,CCL22,HRH1,CCL23,MEFV,CCL20,CCL21,IL10RB,ALOX5AP,KRT1,RTN4RL2,NFATC4,GP1BA,C2,PTX3,NFATC3,SCG2,LY75,NOX4,KLK8,CEBPB,IL5,IL8,NFRKB,IL9,NF1,ANXA1,CYP4F11,C4BPB,SOD1,TMPRSS6,PLG,CCL11,VWF,ORM1,CYBB,CCL13,AOX1,SELE,ORM2,F2R +PWCOMMONS DETECTION OF BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_BIOTIC_STIMULUS.html NOD2,NLRC4,CRTAM,NOD1,PGLYRP4,PGLYRP2,PGLYRP3,PGLYRP1,NLRP3,CD1D +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html POLR3G,GTF3A,SNAPC5,BRF1,POLR3H,POLR2L,POLR3K,SNAPC2,POLR2K,SNAPC4,ZNF76,SNAPC3,ZNF143,POLR3C,IVNS1ABP,ZNF345,BRCA1,TROVE2,GTF3C4 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GABBR1,GABBR2,MBIP,PDCD4,LATS1,LATS2,EDNRB,GPX1,APOA2,CDKN2A,PAK2,GALR1,CDKN2D,GALR3,SPRED2,SPRED1,CDK5RAP1,DHCR24,TP53,RB1,HBXIP,THY1,TNNT2,GRM4,TARBP2,GRM3,GRM2,GRM8,LAX1,HIPK3,GRM7,CCR2,CAND1,ATPIF1,GNAI3,GNAI2,DRD5,TRIB3,SFN,PYDC1,HEXIM2,HEXIM1,DUSP16,ADRA2A,FBXO5,ANGPTL3,APC,ANGPTL4,GPS1,PTPRC,PIF1,NF1,DUSP22,CRIPAK,BIRC5,GPS2,CBLC,NOSIP,DUSP2,GLA,RGS3,RGS4,LTB4R2,PPP2R4,DUSP9,DUSP8,IFI6,DNAJB6,DUSP6 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html OSTF1,ACHE,CASR,ELF3,STATH,ZNF675,ATP6V1B1,GLI2,GLI1,AHSG,CALCA,DSPP,TPP1,RUNX2,SRGN,TWIST2,BMP4,COL13A1,KL,IL7,NF1,DMP1,MGP,CDK6,SPARC,ANKH,MC4R,CARTPT,ATP6V0A4,ACVR1 +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html LEP,PTPRC,TARBP2,KLK8,GHRL,CARTPT,CHRNA7,GHSR,FOXP3,SPINK5,TGFB2 +PWCOMMONS SPHINGOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_BIOSYNTHETIC_PROCESS.html ST6GALNAC6,SGMS2,LARGE,UGCG,ST8SIA5,LASS1,ST8SIA1,ST8SIA3,SGMS1,LASS5 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html RSF1,EZH2,NAP1L1,BNIP3,NAP1L3,NAP1L2,NAP1L4,PRMT7,PRMT8,SMARCD1,HIRIP3,TLK1,TLK2,MYST1,MYST4,MYST3,SATB1,RBBP4,MTA2,HDAC10,ARID1A,HDAC11,HMGA2,TAF6L,PPARGC1A,HMGA1,UBE2N,SYCP3,BPTF,SMARCE1,HUWE1,SMARCA5,CARM1,NSD1,MAP3K12,HMGB1,H1FNT,SET,SAFB,NPM2,PBRM1,ACTL6A,SUPT4H1,ASF1A,HELLS,EHMT1,NASP,PHB,CREBBP,SIRT4,SIRT5,TNP1,SIRT1,SIRT2,SUV39H2,RPS6KA5,HDAC5,HDAC4,HDAC3,HDAC2,HDAC1,SMARCC1,WHSC1L1,SMARCC2,SUPT16H,CHAF1A,RBM14,VCX,CHAF1B,HDAC8,TSSK6,HDAC6 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SNCA,CIAPIN1,SHH,FAS,DDAH2,TWIST2,OPA1,CRYAA,BRAF,CRYAB,PIM1,BCL2L10,THY1,NME5,NME2,KRT18,SERPINF1,CD40LG,TXNDC5,VEGFA,MAPK8,MYO18A,TNFRSF6B,IQCB1,BCL2L2,PPT1,BCL2L1,HSPA1B,CD74,AHSG,NPHP3,PEA15,IL17F,BMP4,BECN1,SPHK1,CIDEA,TNNI3,TAX1BP1,NOTCH2,BFAR,NOTCH1,RNF7,SFRP1,NUP62,NOTCH4,RTN4,HTATIP2,NUAK2,BNIP3,ZNF675,NFKB1,SPINK5,BAG4,GPX1,TRIAP1,BAG1,USH2A,DHCR24,CLN3,GPR98,AMIGO2,INHBA,SERPINB9,PROK2,PSEN1,EREG,BNIP1,BNIP2,TNFRSF10D,SERPINB2,NPPB,AVEN,SEMA4D,ALOX12,YWHAZ,PML,RTKN,ZBTB16,MIF,BCL2,BCL3,AATF,CD27,RASA1,CD28,IL4,IL3,IL6,TBX3,IL7,NPR1,BIRC6,BIRC5,SOD1,BIRC3,PLG,CDH13,YWHAH,STAB1,GSK3B,BNIP3L,IL2,BARD1,CBX4,FOXO1,FOXO4,TNFSF18,GDNF,CDKN2D,TDGF1,TPT1,API5,IL1A,BCL10,SOCS2,SOCS3,DFFA,RELA,BCL2A1,HRK,SOCS5,HBXIP,TNFAIP8,CARTPT,HSPB1,ERC1,HMGB1,GCLC,CCL2,MCL1,AKT1S1,ALB,NPM1,GLO1,SRGN,ARHGDIA,ANGPTL4,CFLAR,MAFB,HDAC5,HDAC4,HDAC3,HDAC1,HDAC9,IFI6,IER3,PRDX2,CASP3,CLCF1,PAX7,NOL3,LDB1,CDK6,INHA,PROC,HIPK3,CFL1,FAIM3,GHRL,NAIP,CNTN4,GSTP1,ACVR1,PRKCZ,TNF,ASNS,PF4,CALCA,IGF1R,ERCC5,SH3GLB1,TNFRSF18,DAD1,PIK3R2,SCG2,HSPA9,COL4A3,IL2RB,KLK8,COL4A2,DTX1,NF1,ANXA1,ANXA5,ANXA4,SIRT2,SON,HSP90B1,BAX,BRE,MPO,TIAF1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html NBN,MLH1,GLI2,PMS2L1,CDT1,GLI1,PRIM1,MUTYH,ORC4L,PRIM2,PMS2,POLG2,PMS1,CDC6,GTPBP4,CCDC88A,POLB,RAD9A,PRKCG,MCM3,CDK2,ORC1L,PURA,RAD51,RFC3,RFC4,RPAIN,RFC1,EREG,CDK2AP1,ORC5L,RAD17,REV3L,ENPP7,HMGB2,WRNIP1,POLA1,TIPIN,RPA4,RPA1,TFAM,RPA2,ORC2L,TSPYL2,EXO1,MSH6,NF2,MSH3,MSH2,MSH5,GMNN,S100A11,ATR,TP73,ABL1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNK17,KCNH1,KCNC1,KCNJ15,ATP6V0E1,KCNC4,KCNAB3,KCNC3,KCNAB1,ATP6AP1,KCNJ10,KCNIP2,HVCN1,KCNJ12,KCNJ11,KCNQ4,KCNQ3,KCNK7,KCNK6,KCNK5,SCN7A,KCNQ2,KCNQ1,SCN10A,KCNG2,KCND3,SGK1,SCN2B,SCN2A,SLC34A3,ATP6V1F,KCNA10,ATP6V1C1,NNT,SCN11A,KCNH2,KCNH3,KCNH4,KCNMB3,KCNMB4,SCN1B,KCNA2,KCNA1,KCNA4,KCNA3,KCNA6,KCNA5,KCNJ2,KCNJ3,KCNMB1,ATP6V0B,KCNMB2,KCNJ1,ATP6V0C,KCNS3,KCNS1,SCN9A,KCNE1,KCNE2,C16ORF7,SCNN1G,CHP,SCN5A,SCNN1A,SCNN1D,TCIRG1,SLC8A1,KCNB2,NOX1,ATP1A4,UCP1,KCNK1,KCNK3,KCNV1,KCNK4,KCNJ5,KCNN4,KCNJ4,ABCC9,SLC4A11,KCNJ6,KCNN1,SLC17A3,UCP3,SLC17A4,UCP2,KCNN3,ATP6V1E1,SLC17A2,SCN4B,KCNF1,ABCC8,SCN4A +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html FMOD,EID2,ACVRL1,SNX6,LTBP2,GDF5,BMPR2,STUB1,TGFB1,CITED2,FOXH1,MAP3K7,ACVR1B,PEG10,RGMB,FNTA,CDKN2B,ZFYVE9,IL17F,LEFTY2,VWC2,GDF9,SMAD7,TGFBR1,KLF10,SMAD5,SMAD4,SMAD3,CIDEA,SMAD2,SMAD1,LEFTY1,CDKN1C,ACVR2A,INHBA,ACVR2B,SOST,HIPK2,TGFBR3,GDF10,TGFBRAP1,SMURF1,GDF15,HPGD,ENG,BMPR1A,ACVR1 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html PSMB10,MBL2,CCL2,LY86,PAX5,PDCD1,CFHR1,BCL2,POU2F2,KRT1,LTF,MS4A2,C2,EBI3,BLNK,CD28,ST6GAL1,POU2AF1,IL6,BST2,IL7,BST1,DEFB103A,YTHDF2,CD83,GPI,CCR6,MNX1,TREM1,TREM2,DMBT1 +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html PRKACG,NCOA4,LHCGR,MEA1,CSDE1,DMRT1,DMRT2,SOX15,SRD5A2,ANKRD7,LHB,NR5A1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html NBN,MYO6,TP53,PML,IFI16,BRCA1,TRIAP1,PCBP4,EEF1E1,BCL3,DYRK2,C16ORF5,GML +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html ME1,FHIT,ADSS,ADCY7,CTPS,FIGNL1,ADORA2A,PGD,DCK,ABCA1,HPRT1,PPAT,TYMS,TYMP,NT5M,OXER1,PTH,REXO2,CDA,C16ORF7,ENTPD4,NDUFS1,NT5C,DCTD,NUDT4,NUDT5,OLA1,AK5,ACLY,AMPD3,PTHLH,PNKP,PGLS,UMPS,UCN2,ADM,GRM8,ADK,CTNS,PDZD3,GUK1 +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html ALDOA,GNPDA1,PFKL,GUSB,PFKFB1,PGD,ALDOB,HK1,TKTL1,PFKM,HYAL4,CHIT1,GNS,GBA3,GAPDHS,GBA2,PGLS,MGAM,ECD,MIOX,GAA,TREH,PYGB +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC38A3,SLC44A1,SLC44A2,AQP9,SLC16A10,SLC6A2,SLC6A3,SLC6A4,SLC7A8,SLC7A9,GDNF,SLC7A5,SLC1A4,SLC1A5,SLC1A2,SLC1A3,SERINC1,SLC1A6,SLC25A22,SLC22A3,ARL6IP5,SLC1A1,SLC43A1,CLN3,PRAF2,PDPN,PICK1,SLC3A2,SLC7A10,SLC3A1,SLC25A12,SLC25A13,SLC6A7,SLC18A2,SLC18A3,SLC18A1,CTNS,SLC25A15 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html E2F1,DBF4,FOXO4,LATS1,LATS2,CUL3,ACVR1B,CUL2,CUL5,GFI1B,CDKN2A,DDX11,CDKN2B,CDKN2C,CDKN2D,CDK10,CDCA5,CUL1,CDC7,KHDRBS1,CDC6,ANAPC5,ANAPC4,POLE,SKP2,TBRG4,CDK6,CDK4,CDK2,FOXN3,SPDYA,INHBA,CHMP1A,CDK2AP1,USH1C,KPNA2,MAP3K11,ACVR1,BCAT1,PPP6C,POLA1,ANAPC10,RCC1,KATNA1,GFI1,TAF1,CDC23,CENPF,BIRC5,TPD52L1,CDKN3,CDC25C,CDKN1C,CDKN1A,CDKN1B,CUL4A,GSPT1,POLD1,MYO16,ABL1,APBB2,APBB1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html RAB3GAP2,TSPO,XPO6,LTBP2,AP1G1,LMAN2L,EIF5A,TNFSF14,MIPEP,MXI1,AGXT,TGFB1,KLHL2,SSR1,AIP,HOMER3,TRAK1,CEP290,RPL11,TLK1,KIF13B,MCM3AP,MYO6,CD3G,STAP1,VPS45,LRP1B,ERP29,OPTN,MYH9,NUPL2,RPAIN,PEX26,F2,RTP3,DERL2,DERL1,RTP4,NFKBIE,PPT1,CTSA,CALR,UHMK1,CD74,CDC37,NPM1,DUSP16,ANGPTL3,TRAM1,SEC23IP,MDFI,SMAD3,SNAPIN,ICMT,ARFIP1,ABCG1,NFKBIL1,TRNT1,NFKBIL2,CBLB,PPIH,VCP,TRPS1,PTTG1IP,LGTN,XPO7,TRIP6,RERE,PDIA3,TIMM17A,HPS4,TIMM17B,AP3S2,PEX6,PEX3,GLI3,PEX7,AKT1,PEX1,ZFYVE9,ZFYVE16,NCKIPSD,RANBP2,TPR,KPNB1,KDELR1,TOMM34,AP3B1,KDELR2,RPGR,NLRP3,TIMM23,TIMM44,FLNA,MFN2,ZDHHC17,ATG4D,ATG4C,ATG4B,NUP205,ATG4A,ARCN1,C3ORF31,TOMM20,KPNA6,KPNA5,TOMM22,KPNA4,KPNA3,KPNA2,KPNA1,AP1M2,TNF,CDH1,SEC63,NUP214,NAGPA,PEX19,CEP57,AP3M1,TAP2,PEX16,BCL3,PEX14,AP3D1,SCG5,PEX13,BCL6,PEX12,CD24,APPBP2,TNPO1,PEX10,APBA1,FYB,NF1,NLGN1,PPP1R10,SELS,GABARAP,YWHAH,COG7,GSK3B,NLRP12,TRPC4AP,FAF1,GGA1,SSR2,F2R,BARD1,COG2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL18,EIF2C1,MRPL41,RPL19,RPL14,RPL13,RPL15,TLR1,EIF5,HBS1L,RPS6KB2,TLR3,EIF5A,TLR4,TLR6,TLR7,IL10,TLR8,TLR9,APOA2,EIF1AX,DDX25,HRSP12,EIF1,RPL11,EIF2B2,EIF2B3,EBI3,SPN,EIF2B4,SAMD4A,EIF2B5,MRPL52,BCL10,YARS,MRPL51,IL29,DARS,IL27,AARS,EIF2S3,BOLL,SARS2,RPS19,EIF2AK1,RPS17,RARS,BACE2,RPS12,HSPB1,RPS10,RPS11,EIF2AK3,EIF2AK4,FARS2,PABPC4,IGF2BP2,MTIF2,MTIF3,KARS,EIF3C,EIF3D,EIF3A,RPS27,EIF3B,RPL7,EIF3G,RPL6,EIF3H,RPL9,EIF3E,EIF3F,RPL8,IL17F,SFTPD,RPL3,MRPL55,EIF3I,RPL5,RPL4,RPL7A,EIF3J,EEF1A1,PAIP2,PAIP1,MRPS24,CD276,RPS9,RPL23A,FOXP3,FURIN,RPS5,EIF4B,TSC1,RPL18A,EIF4H,GLMN,GHSR,ABCF1,METAP1,COPS5,DPH1,EIF2A,RPS2,RPS3,YBX2,WARS,RPS3A,EEF2K,TNIP1,LTB,MRPL3,PRG3,NDUFA13,EIF1B,INHA,MRPS7,SIGIRR,INHBB,INHBA,EIF4G2,EIF4A3,EIF4G3,MAST2,RPL41,EREG,EIF4A2,MTRF1,FARSB,RPL3L,RPS4Y1,GHRL,DHPS,IL12B,TUFM,NACA,RPL27A,RPL35,TNFRSF8,RPL37,RPL38,RPL39,NECAB3,PAIP2B,AZU1,PET112L,MRPL10,RPL30,RPL31,RPL34,KRT7,SEPSECS,BCL3,MARS2,DAZL,CD28,IL4,IL6,DAZ1,UPF1,RRBP1,CEBPG,ASMT,IL9,RPL26,RPL24,ETF1,EIF2B1,RPL28,RPL29,MRPL23,RPL22,RPL21,TSFM,NLRP12,IRF4,APBB1 +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html ADRB3,GRM4,ADRB2,CARD9,TAOK2,HIPK2,TAOK3,EDA2R,TPD52L1,TRAF7,CD27 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html MYL6,KIF4A,MYO9B,MYL6B,NEFL,APBA1,KIF13B,DYNC1I1,KIF3B,OPA1,MYO6,KIF5B,KIF5A,MYO1E,MYH7,MYH6,MYH9,TNNT2,UXT,KIF1A,KIF1B,MAP1S,RHOT1,RHOT2,LRPPRC,MYH10 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html TNF,UBE2V1,PRDX3,NOD2,NLRC3,NPM1,PYCARD,ABRA,CAMK2A,BCL10,CEBPG,RELA,EDA2R,NFAM1,JMY,UBE2N,PRKCQ,CARD11,EP300,NME1,EDF1,ERC1,IKBKB,EDA,TSSK4,MAP3K13 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PGD,USE1,RNF217,RNASEH1,ISG20,FAH,GLDC,GOT2,GOT1,DDAH2,DDAH1,ANAPC2,ANAPC5,ANAPC4,OLA1,UBR3,PGLS,UHRF2,NNT,COLQ,UBR5,MGAM,FBXL4,AMFR,MPST,HSD17B11,ALDOA,HACL1,HSD17B14,PFKFB1,ALDOB,PABPC4,PPT1,HSPA1B,ASL,HADHB,ARIH1,ARG1,GAD2,INS,ALDH4A1,CDA,GCSH,GAD1,NTHL1,FBXO7,NPLOC4,CYP46A1,GUSB,HGD,CIDEA,CDC23,CDC20,TPD52L1,PCNP,UBE2L3,CEL,POP1,HGS,SMURF2,SMURF1,PLA2G4C,PLA2G4B,PPARA,PPARD,BCKDK,KIAA0368,TSG101,UBE2G1,UBE2G2,BNIP3,AUH,MCCC2,NT5M,GPX3,GSTZ1,NT5C,ZFP36,ABCE1,SPACA3,STS,ACO2,UFD1L,AIFM1,HYAL4,HAO1,HAO2,SIAH1,SIAH2,ECH1,HK1,EDEM1,SQSTM1,RNASET2,HSD17B6,USP33,BCKDHA,CPT1B,UPF2,CES2,BCKDHB,ACLY,SOD1,CPT1A,SELS,GBA3,GAPDHS,BLVRA,SDHA,GBA2,SDHB,PSMD14,YWHAH,GLA,PPP1R8,SDHC,SDHD,PYGB,ALDH1L1,GNPDA1,BTRC,PDHB,APOA4,ASPA,CDKN2A,MIOX,APOA5,CPA2,FBXO22,NUDT3,DFFA,DFFB,NUDT5,CECR2,RNASEH2A,PNPLA3,GNS,NEU3,XRN2,DERL2,FZR1,SYVN1,DERL1,GLUD1,UBE2V2,NEDD8,ANAPC10,CHIT1,UBE2D3,UBE2D2,ASRGL1,RNF11,ENTPD4,UBE2D1,ANGPTL3,SMG6,SMG5,SMG7,SMG1,TST,PSMC5,VCP,UBE2E1,AMT,TPP1,TREH,HPD,UBE2A,ACADM,PFKL,ALDH5A1,ACADS,CYCS,PRKCG,UBE2I,UBE2H,PFKM,UBE2C,UGT1A1,UBE2B,DDO,UBE2N,ACADVL,UBE2K,PRDX6,GAA,ERN2,MDM2,DHPS,UBB,MDM4,AKR1D1,UBE3A,ADAMTS13,ECHS1,EGLN2,TKTL1,STUB1,ERCC5,PRSS2,ECD,BDH2,ERCC3,ERCC4,ERCC1,ERCC2,RNF144B,FOXL2,RNASE2,RNASE3,UBE4A,RNASE6,UBE4B,PARK2,AMPD3,GSPT1,BAX,UGT2B4,FAF1,SMPD4,SMPD3 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html AKT1,TNF,CEP57,ZFYVE9,F2,BCL3,BCL6,GLI3,KPNB1,TNPO1,F2R +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html ALDH8A1,HSD17B11,HSD3B1,CYP11B2,STUB1,SHH,ECE2,AKR1C4,ASMTL,HSD17B6,SCG5,CYP11A1,DHRS9,UGT1A1,RDH12,DHRS2,RDH11,DHRS3,YWHAH,DIO2,ADM,SULT1B1,CHST9,CHST8,UGT2B11,HSD11B2,UGT2B4,DIO1,AKR1D1,ALDH9A1,RETSAT,BMP6 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html SERGEF,CRTAM,CARD8,ACHE,CADM1,CIDEA,ARFIP1,DPH3,PYDC1,NLRP3,FOXP3,NLRP2,NOD2,APOA2,APOA1,INS,ANG,PYCARD,NLRP12,GLMN,SRGN,DNAJC1 +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html CRTAM,ACHE,CARD8,CADM1,INHA,NLRP3,PYDC1,NLRP2,INHBB,INHBA,NOD2,GCK,GHRH,ANG,INS,SCIN,PYCARD,GHRL,GLMN,CARTPT +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html INHBA,CEBPG,IL27,IL18,CD276,TLR3,INHA,IL12B,TLR7,EBI3,TLR8,TLR9 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RAB3GAP2,LTBP2,CADM1,MXI1,SSR1,HOMER3,TRAK1,CEP290,TLK1,RPL11,KIF13B,CRTAM,CD3G,VPS45,VANGL2,OPTN,MYH9,COLQ,BACE2,F2,PEX26,BIN3,RTP3,RTP2,RTP4,NFKBIE,RTP1,AKAP10,PPT1,CALR,UHMK1,CD74,CDC37,INS,DUSP16,SUPT7L,SEC23IP,TRAM1,MDFI,SMAD3,CIDEA,ARFIP1,ABCG1,GGN,NFKBIL2,CBLB,TRPS1,LGTN,RERE,PDIA3,PDIA2,TIMM17A,TIMM17B,AP3S2,PDIA4,GLI3,CANX,NOD2,ZFYVE9,COX18,KDELR1,TOMM34,AP3B1,KDELR2,RPGR,TP53,FLNA,ZDHHC17,NUP205,TOMM20,TOMM22,TMSB4Y,ARL4D,SHROOM2,SHROOM3,NUP214,NAGPA,PEX19,SQSTM1,PEX16,BCL3,AP3D1,PEX14,BCL6,PEX13,PEX12,CD24,PEX10,APBA1,FYB,SERGEF,NLGN1,PPP1R10,BIRC5,GABARAP,SELS,COG3,YWHAH,COG7,GSK3B,RAB35,NLRP12,SSR2,COG2,BARD1,TSPO,XPO6,AP1G1,LMAN2L,EIF5A,TNFSF14,MIPEP,AGXT,KLHL2,TGFB1,AIP,NLRC4,APOA2,APOA1,DNAJC1,EGFR,CUTA,MCM3AP,MYO6,STAP1,LRP1B,ERP29,NUPL2,RPAIN,SNX9,DERL2,ACHE,ARFGAP3,PPY,DERL1,CTSA,ABCA1,PYDC1,NPM1,ANGPTL3,SRGN,CARD8,TAF3,ICMT,SNAPIN,REEP1,FOXP3,NFKBIL1,TRNT1,PPIH,VCP,PTTG1IP,GLMN,TRIP6,XPO7,HPS4,PEX6,DPH3,PEX3,PEX7,AKT1,PEX1,ANG,ZFYVE16,RANBP2,NCKIPSD,TPR,KPNB1,TOPORS,NLRP3,TIMM23,TIMM44,NLRP2,MFN2,ATG4D,ATG4C,ATG4B,ATG4A,C3ORF31,CD81,ARCN1,KPNA6,KPNA5,KPNA4,KPNA3,KPNA2,KPNA1,TNF,AP1M2,CDH1,SEC63,CEP57,AP3M1,TAP2,PYCARD,SCG5,APPBP2,ERCC3,TNPO1,SCG2,NF1,MAL,CBY1,TMEM48,TRPC4AP,FAF1,GGA1,F2R +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html ALDOA,SPACA3,GNPDA1,PFKL,GUSB,PGD,ALDOB,PFKFB1,HK1,TKTL1,PFKM,HYAL4,CHIT1,GBA3,GAPDHS,GNS,GBA2,PGLS,MIOX,ECD,MGAM,GAA,TREH,PYGB +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html ACR,AVPR2,ADORA3,CAP2,ADCY7,ADORA2B,GHRHR,ADCYAP1,EDNRA,CALCA,CRHR1,ADRB3,ADRB2,ADRB1,P2RY11,GIPR,GNAS,CAP1,GLP1R +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html HMGB1,MSH6,HMGB2,MSH3,MSH2,POLG,UNG,TP53,SMUG1,MPG,ERCC6,TDG,OGG1,APEX1,CCNO,NTHL1 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html BID,CDK5R1,GRIK2,NF1,BNIP3,PPT1,SOD1,CDK5,GDNF,NLRP1,TGFB2,GRM4,AKT1S1,BCL2,BAX,PCSK9,RASA1 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html PAM,H1FNT,RSF1,NAP1L1,HAT1,NAP1L3,NAP1L2,NAP1L4,NCAPH,SET,ACIN1,CDCA5,ASF1A,TOP2A,HELLS,MYST3,AIFM2,DFFB,SIRT4,TNP1,SIRT5,NUSAP1,SIRT1,SMC4,HDAC5,CHMP1A,SYCP3,ASH1L,SMARCA5,PRM1,PRM2,CHAF1A,CHAF1B,TSSK6 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html LALBA,HS3ST5,GCNT2,NDST1,B3GALT6,FUT8,ALG1,GALNT5,PFKFB1,UGDH,ST8SIA2,ACN9,B3GNT8,XYLT1,CHST12,MPDU1,CHST11,GYS2,CHST13,HS6ST1,DYRK2,TSTA3,B4GALT7,NANP,B4GALT1,UAP1,GMDS,CHST3,GYG2,PMM2,PPARGC1A,GLCE,B3GAT2,ATF4,GCK,CHST7,CHST6,HAS1,SLC25A10,CHST9,CHST8,EXT1,EXT2,HS3ST3B1,COG2 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNH1,KCNK17,KCNC1,KCNJ15,KCNC4,KCNC3,KCNAB3,KCNAB1,KCNJ10,KCNJ12,KCNIP2,KCNJ11,KCNQ4,KCNQ3,KCNK7,KCNK6,KCNK5,KCNQ2,KCNQ1,KCNG2,KCND3,KCNA10,KCNH2,KCNH3,KCNH4,KCNMB3,KCNMB4,KCNA2,KCNA1,KCNA4,KCNA3,KCNA6,KCNA5,KCNJ2,KCNJ3,KCNMB1,KCNJ1,KCNMB2,KCNS3,KCNS1,KCNE1,KCNE2,CHP,KCNB2,ATP1A4,KCNK1,KCNV1,KCNK3,KCNK4,KCNJ5,KCNN4,KCNJ4,ABCC9,KCNJ6,KCNN1,KCNN3,KCNF1,ABCC8 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html CRTAM,CARD8,CADM1,CIDEA,ABCA1,PYDC1,FOXP3,NLRP3,NLRP2,APOA2,NLRC4,NOD2,APOA1,INS,NLRP12,PYCARD,GLMN,SRGN +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNE1L,ADORA3,TNNC2,GRIK1,CADM1,TNNC1,GRIK2,ATP6AP2,IL18,FST,TNFSF13,APOBEC3G,APOBEC3F,TGFB1,TLR8,SART1,DMPK,TGFB2,MAP3K7,CD47,IFNG,SERPINE1,CHRNA7,IFNK,EBI3,CRTAM,IL29,CD3E,IL27,MYH7,MYH6,SOCS5,IL21,TRAT1,THY1,TNNT2,SIRPG,PLCE1,LAT2,HIF1A,TNNT1,CD40LG,F2,HSPB7,RYR2,CARTPT,SRI,KCNMB4,TRAF2,MYL5,LST1,MYL2,AFAP1L2,PXK,MYL9,KCNMB2,AHSG,MIA3,SFTPD,ZAP70,TRAF6,SRGN,BMP4,KCNB2,SPHK1,SMAD4,CD276,SMAD3,CIDEA,MALT1,FOXP3,ANKH,LAT,ATP2A1,IKBKG,GLMN,CACNA1H,CD79A,GHSR,CYP2J2,GLRA1,BCAR1,IL28RA,MYBPC3,ZNF675,KCNIP2,KCNJ12,SPINK5,CFHR1,NOD2,DES,KCNQ1,KCNG2,KNG1,SPACA3,SIT1,SLA2,INHA,NFAM1,NCR1,PROC,UBE2N,NCK2,INHBA,TARBP2,PROK2,CARD11,PTGDS,EREG,LAX1,CHRM2,NCK1,LCK,IL12A,GHRL,IL12B,UBB,KCNH2,ICOSLG,ACVR1,MBL2,HS3ST5,PPP1R12B,TPM1,PR47,CALCA,MYBPH,KCNE1,KRT1,KCNE2,GP1BA,C2,CNN1,CD24,SCN5A,NMU,CD28,IL4,COL4A4,PTPRC,KLK8,ACTC1,KL,IL7,NF1,SOD1,TMPRSS6,CD1D,FYN,MC4R +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html BMP4,IL3,IL5,LYN,IL29,ITLN1,HCLS1,IL20,IL31RA,CCND1,CARD14,CCND3,CD80,AKTIP,CCND2,CLCF1,TDGF1,CD81,IL12A,TNK2 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html MDFI,NFKBIE,NF1,TNFSF14,SMAD3,CDH1,NLRP3,MXI1,FLNA,TGFB1,NFKBIL1,NFKBIL2,NLRP12,BCL3,FAF1,TRIP6 +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html IL27,CEBPG,IL18,CD276,TLR3,INHA,FOXP3,TLR7,TLR8,TLR9,INHBA,IL12A,IL12B,EBI3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF2C1,AURKAIP1,LTBP4,TLR1,EIF5,TLR3,EIF5A,TLR4,TLR6,CXCL12,TLR7,SHH,TLR8,TGFB1,IL10,TLR9,IL31RA,APOA2,ATG7,DDX25,TDGF1,HRSP12,EIF1,EIF2B2,SAMD4A,EBI3,SPN,DNAJC1,EIF2B5,EGFR,BCL10,GTPBP4,IL29,IL27,SOCS1,PPARGC1A,BOLL,TRAT1,IL20,EIF2AK1,BACE2,RNF139,HSPB1,EIF2AK3,EIF2AK4,ITLN1,KATNB1,ITGB2,ARF6,IGF2BP2,MTIF2,MTIF3,TIMP1,EIF3C,EIF3D,EIF3A,CDC42EP2,EIF3G,EIF3H,EIF3E,EIF3F,IL17F,SFTPD,EIF3I,CLASP1,EIF3J,ANGPTL3,UBE2D1,CDC42EP5,BMP4,PAIP2,CD276,FOXP3,FURIN,BRCA1,EIF4B,AKTIP,TSC1,EIF4H,GLMN,TNK2,GHSR,IL22RA2,LIMA1,METAP1,EIF2A,LATS1,YBX2,NDUFS4,CLCF1,GSN,TPP1,MAPT,LTB,ARHGEF2,CCDC88A,PRG3,LYN,CCDC88C,NDUFA13,EIF1B,PRKCG,INHA,MID1IP1,SIGIRR,INHBB,UBE2N,EIF4G2,INHBA,EIF4A3,NCK2,CCND1,EIF4G3,CARD14,MAST2,CCND3,EREG,CD80,CCND2,MTRF1,EIF4A2,NCK1,TPPP,CD81,IL12A,GHRL,TMSB4Y,IL12B,MAPRE1,CLN6,TNFRSF8,STUB1,NECAB3,PAIP2B,AZU1,SET,KRT7,SEPSECS,BCL3,DAZL,RASA1,CD28,APC,IL4,IL3,DAZ1,IL6,UPF1,IL5,NF2,HCLS1,CEBPG,IL9,ETF1,CAPG,NLRP12,PPP2R4,IRF4,APBB1,IGFBP3 +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html DYNC1I1,KIF4A,KIF3B,OPA1,KIF5B,KIF5A,UXT,KIF1A,KIF1B,MAP1S,RHOT1,RHOT2,NEFL,APBA1,LRPPRC,KIF13B +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html GTPBP4,CCDC88C,HPS4,PEX6,APTX,AURKA,ISOC2,PPARGC1A,PTEN,COG3,APOA2,STX12,APOA1,A1CF,COG7,CDKN2AIP,TBRG1,MDM4,FBXO7 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CADM1,BCAR1,IL18,IL28RA,APOBEC3G,TNFSF13,APOBEC3F,SPINK5,SART1,TLR8,TGFB1,TGFB2,CFHR1,MAP3K7,CD47,IFNK,EBI3,SPACA3,CRTAM,SIT1,IL29,CD3E,IL27,SLA2,SOCS5,NFAM1,INHA,IL21,NCR1,TRAT1,THY1,UBE2N,INHBA,TARBP2,NCK2,LAT2,SIRPG,EREG,LAX1,NCK1,LCK,IL12A,IL12B,ICOSLG,MBL2,TRAF2,LST1,MIA3,KRT1,SFTPD,ZAP70,C2,CD24,TRAF6,CD28,IL4,PTPRC,IL7,CD276,MALT1,FOXP3,CD1D,LAT,FYN,IKBKG,GLMN,CD79A +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR1,TLR3,TNFRSF8,TLR4,TLR6,TLR7,TLR8,TLR9,AZU1,APOA2,IL17F,SFTPD,BCL3,LTB,SPN,EBI3,CD28,BCL10,IL6,PRG3,CEBPG,IL27,IL9,CD276,INHA,FOXP3,SIGIRR,INHBB,INHBA,MAST2,EREG,NLRP12,GLMN,GHRL,IRF4,IL12B,GHSR +PWCOMMONS SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SPINDLE_ORGANIZATION_AND_BIOGENESIS.html KIF23,KIF11,PRC1,RAN,TTK,STMN1,TUBG1,RCC1,SMC1A,SMC3 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN22,TIMM50,PTPN21,PTEN,TGFB1,PTPRJ,PPP2R1A,PTPRM,PTPRN2,PTPRH,PTPRR,PTPRT,PTPRO,TPTE,PPM1G,PPP1CA,PPM1D,PPEF2,SBF1,PPEF1,PPM1M,CTDP1,PPP5C,PPP2R2A,PPP6C,PPP2R3B,PPP2R3A,SSH1,SSH2,DUSP10,PPM1B,MTMR3,DUSP13,PPP2CA,PPP2CB,PTPLA,MTMR7,PTPRB,PTPN7,PTPN6,PTPRC,PTPN9,PTPRD,PTPRE,PTPN18,PTPN3,PTPN2,PTPRZ1,PTPN5,PTPN4,EPM2A,PTPN14,PTPN13,DUSP22,PTPN12,DUSP5,DUSP4,DUSP3,DUSP2,PPP2R4,DUSP9,DUSP8,DUSP6 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SNCA,CBX4,FOXO1,CIAPIN1,GDNF,TNFSF18,CDKN2D,TDGF1,TPT1,FAS,DDAH2,API5,IL1A,BCL10,OPA1,BRAF,SOCS2,CRYAA,CRYAB,SOCS3,DFFA,RELA,BCL2A1,HRK,PIM1,HBXIP,BCL2L10,NME5,NME2,KRT18,CD40LG,TXNDC5,VEGFA,TNFAIP8,HSPB1,MAPK8,ERC1,MYO18A,TNFRSF6B,HMGB1,CCL2,GCLC,MCL1,PPT1,BCL2L2,HSPA1B,BCL2L1,CD74,PEA15,AKT1S1,ALB,NPM1,GLO1,ARHGDIA,ANGPTL4,CFLAR,BECN1,SPHK1,CIDEA,TAX1BP1,NOTCH2,BFAR,HDAC3,RNF7,HDAC1,SFRP1,NUP62,IFI6,RTN4,IER3,HTATIP2,NUAK2,BNIP3,NFKB1,PRDX2,GPX1,BAG4,TRIAP1,CASP3,BAG1,CLCF1,PAX7,DHCR24,CLN3,NOL3,PROC,AMIGO2,PROK2,SERPINB9,PSEN1,BNIP1,TNFRSF10D,BNIP2,HIPK3,CFL1,SERPINB2,GHRL,AVEN,FAIM3,NAIP,SEMA4D,GSTP1,ALOX12,ACVR1,PRKCZ,YWHAZ,TNF,RTKN,ASNS,MIF,IGF1R,ERCC5,SH3GLB1,BCL2,TNFRSF18,DAD1,BCL3,AATF,RASA1,CD27,SCG2,HSPA9,PIK3R2,CD28,IL4,IL3,IL2RB,IL6,TBX3,IL7,ANXA1,BIRC6,BIRC5,ANXA5,BIRC3,SOD1,ANXA4,CDH13,SON,HSP90B1,BAX,GSK3B,BNIP3L,BRE,MPO,TIAF1,BARD1,IL2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html FGF5,MTSS1,NRTN,MPZL1,EDN2,BCAR1,AP3S1,FOXO4,AKT1,PDPK1,GAB1,TDGF1,TGFA,SHC1,FRS3,SHC3,RAPGEF1,FRS2,INSR,EGFR,PTPRJ,EFNB3,PTPRG,CD3E,BAIAP2,OTX2,PICK1,SOCS1,PTPRT,IRS1,CD3EAP,DOK1,NCK2,ADRB2,GRB10,EREG,ROR1,FOXC2,LCP2,REPS2,FGFR4,FGFR3,GRB2,ERBB3,ERBB2,AFAP1L2,ABI1,BDKRB2,SRC,PXN,IGF1R,UTP11L,MUSK,CEP57,SORBS1,PTK2B,TEK,AGRN,PIK3R3,EGF,PIK3R1,CNKSR1,FIBP,FLT3,FLT4,CBL,IGF2,KDR,RPS6KA5,NTRK3,EPS15,CBLC,CDH13,ERBB2IP,EPS8,PRLR,EPGN,NTRK1,NTRK2,MAPK8IP2,GRB7,GFRA2 +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html FOXL2,DFFA,AIFM1,DFFB,CYCS,CECR2,CIDEA,BNIP3,PPT1,TPD52L1,SOD1,CDKN2A,BAX +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html BLVRA,ALAS1,ALAD,TSPO,FECH,ALAS2,COX10,CPOX,PPOX,NFE2L1,COX15 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html RTN4,NRP2,BMP10,NRTN,NRP1,ACVRL1,HMGCR,BCAR1,TNFSF12,ENPEP,GLI2,PTEN,CD2AP,GDNF,IL10,SHH,VCL,TGFB2,WNT1,ANG,SAA1,TDGF1,SEMA3B,UNC5C,SPON2,SYK,S100A2,EGFR,GTPBP4,CCDC88A,NRXN3,MDGA1,OTX2,NRD1,NRXN1,MYH9,NEXN,SLIT1,SLIT2,THY1,VEGFC,CD34,CLIC4,ALOX15B,SEMA4F,ITGB1BP1,IL12A,OPHN1,SIAH1,CNTN4,IL12B,UBB,LAMC1,CDK5R1,SHROOM2,ABI3,ABI2,PF4,ITGB2,CX3CL1,ITGB1,CALCA,AZU1,DOCK2,MIA3,KAL1,PRSS3,CKLF,SFTPD,KRT2,TNN,CD24,LAMB1,PPAP2A,ANGPTL3,PPAP2B,THBS4,SCG2,PARD6B,S100P,IL8,NF2,TBX5,SPHK1,NF1,DPYSL5,PLG,CDH13,PARP9,AMOT,TRIP6,FEZ2,FEZ1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ADORA3,ADCY7,LHCGR,VIPR1,GHRHR,HTR1B,PTGIR,MC1R,GALR1,GALR3,GALR2,GLP2R,PRKACB,HTR1D,HTR1F,HTR1E,NUDT4,HTR4,SSTR4,PTHLH,CRHR1,CRHR2,SSTR5,SSTR2,SSTR3,SSTR1,HTR7,CCR3,HTR6,CCR2,MC2R,GLP1R,ACR,DRD1,GNAI3,CCL2,ADORA2B,GNAI2,DRD2,DRD5,ADCYAP1,ADRB3,CNR1,CNR2,ADRA2A,TBL3,RGS1,NPY,LTB4R2,MTNR1B,ADRA1B,GRK5,CORT,ADRA1D,MTNR1A,OPRM1,MCHR1,WASF2,GABBR1,GABBR2,EDNRA,EDNRB,NDUFS4,MC5R,CAP1,CALCRL,XCR1,PTGER4,GRM4,CHRM5,ADRB2,GRM3,GRM2,ADRB1,CHRM2,GRM8,GHRH,GRM7,GIPR,GNAS,TSHR,CALCR,AVPR2,CCR1,NPY2R,OPRK1,FPR1,GCGR,GPR3,CALCA,HRH3,HRH2,MC3R,CAP2,OPRL1,NF1,NPY1R,P2RY11,MC4R,OPRD1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html CNBP,HSD3B1,CYP11A1,HSD3B7,TFCP2L1,CYP11B2,FDPS,FDXR,NR0B1,SOD1,CYP7B1,CYP39A1,ADM,DHCR7,NPC1L1,HSD11B2,AKR1D1,SCP2,NSDHL,DHCR24,NR5A1,BMP6,CYP19A1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC22A16,KCNC1,KCNC4,TSPO,KCNC3,ATOX1,ATP6AP1,KCNK7,WNK4,KCNK6,KCNK5,SLC4A2,CHRNA7,SLC4A1,KCND3,SCN2B,SCN2A,TRPA1,SLC34A1,STIM2,WNK1,STIM1,SLC34A3,PKD2L1,SLC34A2,NNT,RHCG,ATP2C1,RYR3,RYR1,AKAP7,SLC40A1,FXYD1,KCNMB3,ORAI1,KCNMB4,FXYD3,SCN1B,KCNA2,KCNA1,KCNA4,CCL8,KCNA3,HFE,KCNA6,CACNB3,CACNB4,KCNA5,KCNJ2,KCNJ3,ATP6V0B,KCNMB1,KCNJ1,KCNMB2,ATP6V0C,SLC11A2,KCNS3,KCNS1,SCN9A,SLC30A5,C16ORF7,HCN4,SLC31A2,SLC31A1,TRPC1,HCN2,TRPC4,CACNA2D1,TRPC3,TRPC6,TRPC5,KCNB2,UCP1,KCNK1,VDAC2,KCNK3,VDAC1,KCNK4,KCNJ5,ATP7A,KCNJ4,SLC4A11,KCNJ6,NPY,P2RX1,UCP3,UCP2,LASP1,ATP2A3,ATP2A1,CHRNB4,CHRNB1,SLC13A4,CACNA1D,CLCN4,ATP7B,KCNK17,KCNH1,KCNJ15,ATP6V0E1,KCNAB3,GLRA1,KCNAB1,GLRA2,KCNJ10,KCNIP2,KCNJ12,HVCN1,SLC26A2,KCNJ11,KCNQ4,KCNQ3,SLN,NMUR1,NMUR2,SLC22A4,TRPV5,SLC22A3,SLC22A6,SCN7A,KCNQ2,KCNQ1,COX17,SLC22A2,SCN10A,SLC22A1,KCNG2,TRPM3,SGK1,SLC22A7,SLC22A8,CLIC1,TRPM2,ATP6V1F,SLC26A4,ATP6V1C1,KCNA10,SLC26A3,CLIC3,CLIC5,SCN11A,KCNH2,KCNH3,KCNH4,SLCO1A2,BEST1,PKD2,KCNE1,KCNE2,CCS,SCNN1G,CHP,SCNN1A,SCN5A,SCNN1D,SLC39A2,SLC39A1,TCIRG1,PLP2,GLRB,SLC8A1,NOX1,ATP1A4,RHAG,KCNV1,SLC17A7,KCNN4,SLCO1B3,SLC17A5,ABCC9,SLC17A3,KCNN1,SLC17A4,ATP6V1E1,SLC17A1,KCNN3,PLN,SLC17A2,SLCO1B1,SCN4B,KCNF1,ABCC8,SCN4A,CSN2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MMS19,RAD51C,XRCC4,XRCC3,XRCC2,ZAK,XRCC6,SETX,IGHMBP2,MUTYH,RAD21,CDKN2D,PMS2,CCNA2,MAP2K6,PMS1,CIB1,POLL,MYO6,POLI,POLH,POLG,LIG1,RINT1,POLE,LIG3,RAD9A,LIG4,DDIT3,FOXN3,RAD1,PNKP,RFC3,RPAIN,UBR5,RAD17,HMGB1,RAD23B,HMGB2,BLM,RAD23A,MRE11A,HUS1,UBE2V1,CHEK1,UBE2V2,CHEK2,SESN1,XAB2,POLE2,RAD51L1,DYRK2,C16ORF5,POLQ,GML,NTHL1,ASF1A,ATRIP,RECQL4,RECQL5,TREX2,CIDEB,CIDEA,BRCA2,ATR,RAD54L,BRCA1,ATM,VCP,POLD1,TDG,PARP3,RAD54B,SMC1A,ABL1,PARP1,NBN,UVRAG,MLH1,PMS2L1,TRIAP1,MCM7,PCBP4,FANCG,FANCA,CCNO,FANCC,UBE2A,REV1,BRCC3,AIFM1,DDB1,GTF2H4,TP53,APTX,PRKCG,IFI16,TOPORS,RAD52,UBE2B,RAD50,XRCC6BP1,NEK11,RAD51,RBBP8,GTF2H1,UBE2N,SPDYA,RECQL,XPC,BTG2,GADD45G,DDB2,RUVBL2,GADD45A,PPP1R15A,NHEJ1,UNG,WRNIP1,POLA1,PML,BRSK1,SFN,SMUG1,RPA1,ERCC8,SUMO1,ERCC5,ERCC6,BCL3,BCL6,ERCC3,APEX1,ERCC4,ERCC1,FEN1,ERCC2,APC,EXO1,MSH6,UPF1,MSH3,MSH2,MSH5,CEBPG,TNP1,SOD1,TP73,NAE1,ATRX,MNAT1,MPG,ATXN3,CSNK1D,MAPK12,CSNK1E,EEF1E1,BRE,ALKBH1,OGG1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SEPT5,SYT1,UTS2,KCNC4,SNCAIP,SLC6A1,GRIK1,GRIK2,SYT5,GABRB2,SLC6A2,GRIK4,SLC6A4,CNP,VIPR1,GDNF,TGFB2,HTR1B,GRIN2B,APOE,GALR3,GALR2,CHRNA5,CHRNA4,CHRNA6,CHRNA1,EIF2B2,HTR1D,NQO1,HTR1F,EIF2B4,EIF2B5,HTR1E,KCND2,SCN2B,KIF5A,BAIAP3,STRN4,GRIN2A,BSN,NTSR1,GABRR2,MAPK1,CBLN1,DOC2A,GABRR1,COLQ,HTR7,HTR6,AKAP5,NPTN,CARTPT,PMP22,SRI,KCNMB3,KCNMB4,DRD1,SCN1B,CALY,DRD2,DRD4,KCNA1,PXK,RIMS1,KCNMB1,KCNMB2,HCRTR2,HCRTR1,GAD2,SYPL1,GAD1,HAP1,NOVA1,UNC119,CPNE6,OMP,SNAPIN,HOMER1,KCNK3,PDE7B,NPY,RAPSN,MTNR1B,CHRNB4,CHRNB3,CACNA1E,QPRT,RIT2,CHRNB1,CORT,SST,CHRNE,CACNA1B,PPARD,GLRA1,GABBR2,KCNIP1,MBP,KCNQ5,SLC1A2,KCNQ3,SLC1A3,FXN,NMUR1,NMUR2,SLC1A6,DLG4,KCNQ2,SLC1A1,TAAR5,NPFF,PCDHB9,KCNMA1,GPR176,PRG3,PCDHB5,PCDHB6,PCDHB3,NPBWR1,PCDHB4,NPBWR2,PI4KA,PCDHB2,STX1B,GRM1,GRM5,AMIGO1,GRM4,GRM3,GRM2,KIF1B,GRM7,GHRL,CNTN4,UBB,ALDH9A1,RAB3A,HCRT,CPLX1,OPRK1,PCDHB14,AKAP9,PCDHB13,PCDHB11,HPRT1,PCDHB10,GCH1,AMPH,CD9,NPTX1,SYN1,HRH3,SYN3,PCDHB16,SYN2,CD24,HTR3A,HTR3B,GCHFR,APBA1,DTNA,COL4A4,KLK8,PLP1,GLRB,MPZ,NF1,NLGN1,MAL,SOD1,DBH,GABARAP,ACCN1,YWHAG,ATXN3,YWHAH,KCNN1,GRIA2,GRIA1,KCNN3,SLC6A5,CRH,MYCBPAP,SLC5A7,HTR2C,CHRNA10,HTR2A +PWCOMMONS GENE SILENCING http://www.broadinstitute.org/gsea/msigdb/cards/GENE_SILENCING.html HDAC5,CHMP1A,DGCR8,DICER1,SIRT4,TNP1,SIRT5,SCMH1,SIRT1,HELLS +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html LYN,NF2,IL29,HCLS1,SOCS1,STAT1,IL31RA,IL20,CLCF1,F2,IL12A,IL22RA2,F2R +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html PTPRC,TRAF2,CRTAM,CADM1,IL28RA,APOBEC3G,MALT1,FOXP3,APOBEC3F,NCR1,MAP3K7,TARBP2,IL12A,IL12B,TRAF6 +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html BMP10,GTPBP4,ACVRL1,NF2,TBX5,NF1,PTEN,PLG,SHH,THY1,VCL,MIA3,ALOX15B,CLIC4 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html TSPO,HSP90AA1,TIMM17A,MTX2,TIMM17B,TP53,BNIP3,MIPEP,BCL2L1,TIMM23,TIMM44,MFN2,TRNT1,STARD3,BAK1,BCL2,C3ORF31,SLC25A1,TOMM22,SLC25A15,TOMM34 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html ZAK,ZNF675,DAXX,MAP3K6,MAP3K5,MAP3K4,MDFIC,MAP3K9,MAP2K7,DBNL,TNIK,KIAA1804,MINK1,PKN1,AMBP,MAP4K3,SH2D3C,MAP4K5,SH2D3A,CRKL,HIPK2,MAP3K10,MAPK9,MAPK8,MAP3K13,MAP3K12,MAP3K11,ADORA2B,PTPLAD1,DUSP10,MAP4K2,MAP4K1,MAP3K2,CD27,MDFI,GPS1,CCM2,CARD9,TAOK2,TAOK3,MAP2K4,EDA2R,TPD52L1,MAPK10,GPS2,MAPK8IP2,MAPK8IP3,MAPK8IP1,DUSP9 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ZAK,AIF1,KNTC1,TTK,PKMYT1,CDC16,FOXO4,TGFB1,CITED2,TGFB2,CUL3,CUL2,CUL5,CDKN2A,DIRAS3,CDKN2B,CDKN2C,CDKN2D,CCNA2,MAP2K6,CUL1,ANAPC2,GTPBP4,MADD,RINT1,TBRG4,RAD9A,FOXN3,RAD1,PA2G4,MAD2L1,UHRF2,TIMELESS,ALOX15B,ZWINT,TBRG1,MAD2L2,RAD17,NEK6,PPP2R3B,CDK5R1,CDK5R2,STK11,NEK2,HUS1,TIPIN,ANLN,AFAP1L2,CHEK1,CHEK2,RCC1,CCNG1,SESN1,CCNG2,CDC37,UHMK1,PIN1,PLAGL1,HEXIM2,HEXIM1,NPM2,CDC123,FBXO5,EGF,GML,ATRIP,RUNX3,BMP4,BMP2,TP53BP2,SPHK1,CDC23,SMAD3,ATR,GAS1,GAS7,ATM,CDKN1C,NOTCH2,CDKN1B,MYO16,BMP7,SMC1A,CCNT2,NBN,C13ORF15,CCNT1,RPRM,LATS1,PTEN,LATS2,CDT1,CCNE2,TRIAP1,PCBP4,PRMT5,TGFA,RHOB,CDK10,CDK5RAP3,FANCG,CDK5RAP1,MYC,SERTAD1,ZW10,DLG1,CDC7,KHDRBS1,CDC6,CCNK,DDB1,HERC5,TP53,NUSAP1,RB1,INHA,CDK7,UBE2C,CDK2,NEK11,RBBP8,GTF2H1,JMY,MFN2,PPM1G,INHBA,DHRS2,EIF4G2,CHMP1A,CCND1,XPC,CCND3,EREG,CCND2,BTG4,BTG3,ERN1,BUB1B,FOXC1,CHFR,GADD45A,PPP1R15A,CKS1B,ING4,PML,HCFC1,IFNW1,BCCIP,ASNS,BRSK1,ZBTB17,MLF1,BUB1,ERCC3,ERCC2,APC,CD28,PTPRC,TBX3,IL8,GMNN,BIRC5,CDC25C,CDKN3,CDC25A,NAE1,PPP1R9B,MNAT1,MAPK12,CUL4A,EPGN,RASSF1,CKS2,PPP1R13B,APBB2,APBB1,HPGD +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html RSF1,NAP1L1,NAP1L3,NAP1L2,NAP1L4,SET,HIRIP3,TLK1,TLK2,ASF1A,HELLS,MTA2,SIRT4,TNP1,SIRT5,ARID1A,SIRT1,HMGA1,SUV39H2,HDAC5,SMARCE1,SUPT16H,SMARCA5,CHAF1A,CHAF1B,HDAC8 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html KCNH1,ACTA1,PICK1,MYOZ1,KCNIP2,IL21,TTN,FARP2,NRCAM,KRT19,RND1,EREG,MYH11,CACNA1H,AGRN,ADAM12 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ALS2,RRAD,DMPK,ARHGAP4,APOA1,ARHGAP5,DIRAS3,APOE,RASL10A,ARHGAP1,RHOA,RHOB,RRAS,ABRA,RHOD,FGF2,RHOG,GTPBP2,DBNL,PLD2,PLD1,ROCK1,RALBP1,LIMK1,RREB1,G3BP1,ARHGAP27,ARHGAP29,ELMO1,FARP2,MFN2,PLCE1,CRKL,GNB1,SGSM3,KRIT1,CFL1,LCK,SIAH2,GRAP2,FGD2,FGD1,ARHGDIG,GRAP,GRB2,MRAS,PTPLAD1,RTKN,RUNDC3A,ARF6,MYO9B,ABCA1,RRAGC,DOCK1,ROPN1B,RASGRP4,SOS1,RASGRP1,RAC1,APOC3,ADRA2A,CHP,FGD5,RAB6C,FGD6,FGD3,ARHGDIA,FGD4,ARHGDIB,PDK1,CNKSR1,ABR,VAV3,NF1,ARFIP2,RGS19,IGF1,TAX1BP3,PARK7,CDH13,LAT,NOTCH2,CDC42BPG,TSC1,RASSF1,CDC42BPA,TNK2,CDC42BPB +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html KLRC4,MICB,KLRC2,MICA,KLRC3,PAGE1,ZNF148,LBP,FOSL1,SPN,C5AR1,NCF2,LY96,NCF1,GNLY,CD160,DCDC2,NCR2,NCR1,TRAT1,HLA-G,CCR9,GAGE1,LILRB2,CCR6,KLRG1,CCR5,LYST,CCR3,CCR2,CX3CR1,MNDA,GAGE8,FAIM3,CLEC5A,KIR2DL4,KIR3DL2,PRF1,ADORA2B,ADORA2A,CXCL9,UMOD,CCL5,ITGB1,LGALS3BP,VEZF1,TYROBP,IL4,TCIRG1,ITK,BECN1,IL1RL2,CD300C,CD5L,KIR2DS3,LSP1,CD19 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html MBL2,TRAF2,CADM1,BCAR1,SPINK5,TLR8,TGFB2,CFHR1,MAP3K7,KRT1,IFNK,C2,TRAF6,IL4,PTPRC,CRTAM,IL29,SLA2,MALT1,NFAM1,FOXP3,NCR1,TRAT1,CD1D,THY1,UBE2N,LAT2,EREG,FYN,IKBKG,IL12A,CD79A,IL12B +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html DIS3,NOLC1,DKC1,EXOSC7,RPS14,EXOSC2,ERN2,EXOSC3,POP4,RRP9,GEMIN4,FBL +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html TRAF2,PARD3,ZAK,EDN2,TNFSF15,AZU1,MAP3K7,MAP3K4,ANG,TRAF7,PPAP2A,TRAF6,IRAK1,CCDC88A,TAOK2,PICK1,MALT1,CARD10,CHRM1,GADD45G,CARTPT,GADD45B,MAP3K13,PRKD3,GAP43 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html ALS2,FGD2,FGD1,TSC1,RALBP1,NF1,ARHGAP27,FGD5,FGD6,FGD3,FGD4 +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html SHROOM2,FOXL2,MAFB,NF1,JAG2,RORB,ZIC1,SOD1,TGFB2,THY1,DFNB31,BAX,GAA,CEP290 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MMS19,ARNT2,XRCC6,FOXO1,RORB,FOXO3,MED21,TGFB1,CITED2,EPC1,MDFIC,SMARCD3,FOXF1,SMARCD1,FOXF2,GATA4,SUPT5H,MYST1,MYST4,MYST3,BCL10,MYO6,PCBD2,IL29,RXRA,MED12,MED14,ARID1A,ARNTL,MED13,ELL3,TRERF1,PPARGC1B,HIF1A,HNF4A,MED17,TFAP2B,SMARCA1,CRTC1,ELK1,AFAP1L2,PLAGL1,FOXH1,MAML3,RUNX1,TCF4,TCF3,ARHGEF10L,ZNF423,UTF1,EPAS1,TAF8,MAML1,MAP2K3,CREBBP,MAML2,ESRRG,SMAD3,MSTN,SMAD2,FOXP3,ATF6,ATF4,NUP62,DYRK1B,SMARCC1,SMARCC2,NOTCH4,HIVEP3,BMP7,BMP6,ELF1,HNF1B,ACVRL1,HNF1A,RSF1,ELF4,SPI1,TP63,CTCF,GLI2,CAMKK2,ZBTB38,GLI1,PAX8,MKL2,ATF7IP,EGR1,CCNH,TP53,CDK7,HMGA1,PRPF6,NRIP1,SCAP,ARHGEF11,GTF2H1,MED6,INHBA,BPTF,ZMIZ2,NCOA6,UBB,NSD1,CLOCK,MED1,ACVR1,GLIS3,GLIS2,GLIS1,NUFIP1,EHF,TNFRSF1A,RGMB,NPAS2,MRPL12,SQSTM1,BCL3,SUPT4H1,NFATC2,ERCC3,ERCC2,FOXD3,IL4,TBX5,TRIM28,CREB5,ILF3,TP73,MNAT1,YWHAH,SP1,ILF2,YAF2,THRAP3,FOXE1,IRF4,PHF5A,RBM14 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html USP7,DZIP3,TSG101,UCHL1,UBE2V1,RNF217,UBE2V2,SAE1,UBQLN3,UBE3C,MYLIP,ANAPC11,STUB1,ERCC8,FBXW7,ISG15,WWP1,RNF11,TRAF7,TRAF6,UBE2D1,USP33,RNF14,VCPIP1,RNF144B,BCL10,GTPBP4,VHL,UBE4B,CBL,PRKCG,PCNP,PARK2,UBE2C,TRIM23,ATG3,BRCA1,UBE2N,UHRF2,TSC1,HUWE1,RNF139,DDB2,MDM2,CAND1,UBB,SMURF1,AMFR +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html UAP1,CHIA,GNPDA1,CHST2,CHST4,CHST5,NAGK,EXTL2,CHIT1,SLC35A3,LARGE,CHST7,CHST6 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html BTD,GRIK1,SNCA,ARNT2,ZIC1,MOG,SHH,ZIC2,WNT1,PROP1,CEP290,PDGFC,ROBO2,UNC5C,EIF2B2,EIF2B3,EIF2B4,EIF2B5,SH3GL3,MDGA1,MDGA2,SIX3,TBR1,PITPNM1,GPR56,FOXG1,SMARCA1,SH3GL2,SNTG2,PNMA1,SH3GL1,CDK5R1,ADORA2A,SOX3,DSCAML1,PPT1,TAGLN3,SOX8,HESX1,ECE2,ATN1,B3GNT5,LHX6,IL1RAPL2,NKX2-2,DMBX1,ADAM23,HPCAL4,JRKL,CELSR1,NEUROG3,SERPINI1,NCKAP1,PCDH18,FOXP2,DLX2,S100B,MYO16,ADAM22,POU6F1,POU6F2,PAX6,GLI2,PTEN,MBP,NDUFS4,RNF103,PCP4,NMUR2,SHC3,ALX1,EGR2,CNTN6,ALDH5A1,OTX2,ALK,SLIT1,SLIT3,VCX3A,BPTF,NCOA6,CNTN4,GSTP1,CLN5,UTP3,SHROOM2,SHROOM4,UBE3A,NNAT,ZBTB16,ALDH3A2,NPAS1,NPAS2,NPTX1,DNER,POU3F3,UGT8,DCX,PTS,DCLK1,JARID2,PTPRZ1,NF1,MAL,AFF2,RCAN1,PARK2,EIF2B1,RPS6KA6,ACCN1,PSPN,RPS6KA3,MAP1S,DRP2,C7ORF16,PHGDH,NHLH2,PBX1,CTNS,PBX3,NHLH1,PBX4 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html RSF1,STK36,DPH3,PRDX3,TGFB1,BAK1,NOD2,NLRC3,CDKN2A,PRMT8,ABRA,BCL10,GTPBP4,RELA,NFAM1,NLRP3,LDLRAP1,FLNA,JMY,SIGIRR,UBE2N,PRKCQ,CARD11,ADRB2,EP300,NME1,EDF1,COMMD7,EDA,ERC1,MAP3K13,TNF,UBE2V1,EGLN1,PYDC1,ADRB3,SUMO1,BCL2,NPM1,PYCARD,BCL3,PEX14,APEX1,CAMK2A,MDFI,CREBZF,CEBPG,EDA2R,SMAD2,FOXP3,ID2,AKTIP,ID1,BAX,NARFL,ID3,TSSK4,IKBKB +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html ZFP36,ABCE1,UPF2,RNASE2,SMG6,RNASE3,SMG5,PABPC4,SMG7,RNASE6,RNASEH1,SMG1,HSPA1B,RNASEH2A,AUH,ISG20,GSPT1,PPP1R8,RNASET2,POP1,ERN2,XRN2 +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html NF2,SOCS1,INHA,INHBA,CDKN1A,CDKN1B,CDKN2A,CDKN2B,CDKN2C,CDKN2D,NLRP12,PPP2R4,IGFBP3 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html IL10,PAIP2B,SFTPD,BCL3,IL6,PRG3,PAIP2,NDUFA13,INHA,SOD1,FOXP3,FURIN,BRCA1,SIGIRR,INHBB,INHBA,EIF4A3,EIF2AK1,TSC1,GLA,GCK,GRM8,BACE2,NLRP12,GHRL,GHSR,EIF2AK3,APBB1,PDZD3 +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html MDFI,TAF3,PDIA3,NFKBIE,PDIA2,TOPORS,MXI1,NFKBIL1,NFKBIL2,SUPT7L,FAF1,TMSB4Y,SRGN +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html CHIA,ALG1,EPM2A,GYG2,CHIT1,B3GNT8,PYGM,GCK,GSK3B,MGAM,GAA,GYS2,DYRK2,PYGB +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html RP1,UNC119,TRPC3,PGLYRP1,NR2E3,OPN1SW,ABCA4,CD1D,SAG,PITPNM1,PDE6B,NOD2,NLRC4,NOD1,PGLYRP4,PGLYRP2,GRM6,PGLYRP3,PDC,CACNA1F,OPN4,RHO,GRK1 +PWCOMMONS CELLULAR RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_NUTRIENT_LEVELS.html SREBF1,CHMP1A,NUAK2,CDKN2B,ALB,FADS1,TP53,CARTPT,PCSK9,ASNS +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NCBP2,HTATIP2,XPO6,PDIA3,EIF5A,TNFSF14,MXI1,GLI3,TGFB1,AKT1,RAE1,ZFYVE9,DDX25,ANP32A,NCKIPSD,RANBP2,TPR,KPNB1,KHDRBS1,MCM3AP,NUP133,NUDT4,NLRP3,NUPL2,FLNA,DDX39,RPAIN,NUP205,F2,KPNA6,KPNA5,KPNA4,NUP107,KPNA3,MYBBP1A,KPNA2,KPNA1,BAT1,NUP98,TNF,NUP160,NFKBIE,CDH1,CALR,UHMK1,NUP214,CEP57,DDX19B,NPM1,DUSP16,BCL3,BCL6,TNPO1,MDFI,FYB,UPF2,UPF1,SMG6,SMG5,NXF5,NF1,SMG7,PPP1R10,SMAD3,SMG1,MALT1,HNRNPA1,NFKBIL1,ATXN1,NFKBIL2,CBLB,PPIH,TSC1,TRPS1,GSK3B,NLRP12,PTTG1IP,FAF1,XPO7,TRIP6,RERE,BARD1,F2R +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html KIF22,KIF25,NBN,KNTC1,TTK,PKMYT1,AURKA,CDC16,TTN,TGFB1,KIF2C,TRIAP1,DDX11,CDKN2B,PCBP4,PRMT5,TARDBP,TGFA,CCNA2,CDCA5,ZW10,KIF11,ANAPC5,RAN,KIF15,ANAPC4,RINT1,TPX2,NUSAP1,ESPL1,UBE2C,DCTN3,DCTN2,CHMP1A,MAD2L1,EREG,ZWINT,CLIP1,BUB1B,AKAP8,CHFR,MAD2L2,RAD17,NEK6,PPP5C,PAM,NEK2,PML,ANAPC10,CETN1,ANLN,BRSK1,ANAPC11,RCC1,PIN1,NCAPH,NUMA1,NPM2,BUB1,PBRM1,EGF,GML,CD28,SSSCA1,PDS5B,CDC23,CENPE,NDC80,BIRC5,SUGT1,CDC25C,CDC27,ATM,SMC3,SMC4,CDC25B,MPHOSPH9,NOLC1,EPGN,PLK1,CIT,SMC1A,MPHOSPH6 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html TRAF2,ATP6AP2,MALT1,AFAP1L2,SOD1,CALCA,MAP3K7,CARD11,NOD2,EREG,CD40LG,IFNG,IL12A,IL12B,TRAF6 +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html CSNK2A2,NME5,H1FNT,MAST2,HSPA2,SYCP3,CEP57,SPAG6,DDX25,TNP1,TSSK6 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html ME1,AQP9,DUOX2,DUOX1,GLRX2,GOT2,APOA2,NDUFS4,DGKD,BCL2,CHRNA4,GYS2,CHRNA7,EIF2B2,SUPT5H,EIF2B3,EIF2B4,EIF2B5,RELA,BRCA2,SOD1,EIF2B1,SELS,ABCG1,CDH13,GCK,ABAT,CHRNB2,CLEC7A,MAFA +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ALS2,FGD2,FGD1,ARHGDIG,RTKN,ARF6,ABCA1,ARHGAP4,APOA1,ARHGAP5,APOE,ROPN1B,ARHGAP1,APOC3,RAC1,RHOA,ADRA2A,RHOB,ABRA,RHOD,FGD5,FGD6,RHOG,FGD3,ARHGDIA,ARHGDIB,FGD4,CNKSR1,ROCK1,RALBP1,LIMK1,ARHGAP27,ARHGAP29,TAX1BP3,CDH13,TSC1,CFL1 +PWCOMMONS CHROMOSOME CONDENSATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_CONDENSATION.html PAM,NCAPH,CHMP1A,AIFM2,DFFB,NUSAP1,ACIN1,CDCA5,TOP2A,SMC4 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html POU6F2,JAG2,MYEF2,SMAD2,TRIM15,GLI2,SHH,WNT1,NOTCH2,EYA2,NOTCH4,IFRD1,KLF4 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html PDIA2,CLDN3,ARNT2,PML,BNIP3,EGLN2,EGLN1,TGFB2,ALAS2,PLOD1,ANG,CXCR4,PLOD2,CHRNA4,CHRNA7,CD24,MT3,EPAS1,NF1,CREBBP,SMAD4,SMAD3,HSP90B1,EP300,HIF1A,VEGFA,NARFL,CHRNB2 +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html ARHGEF2,TPPP,MAPT,KATNB1,CLASP1,MID1IP1,CLASP2,MAPRE1,STMN1,CENPJ,APC +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html MCHR1,ADORA3,ADCY7,WASF2,GABBR1,GABBR2,GHRHR,EDNRA,EDNRB,NDUFS4,GALR1,GALR3,GALR2,PRKACB,GLP2R,CAP1,PTGER4,PTHLH,CRHR1,CRHR2,GRM4,GRM3,CHRM5,ADRB2,GRM2,ADRB1,GRM8,CHRM2,GHRH,CCR3,GRM7,GIPR,CCR2,GNAS,GLP1R,CALCR,ACR,AVPR2,DRD1,GNAI3,GNAI2,ADORA2B,DRD2,NPY2R,DRD5,OPRK1,FPR1,GCGR,ADCYAP1,GPR3,CALCA,ADRB3,ADRA2A,CAP2,OPRL1,NF1,NPY1R,RGS1,P2RY11,LTB4R2,MC4R,ADRA1B,GRK5,CORT,ADRA1D +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html BCKDK,AMT,GLUD1,ASL,FAH,GLDC,GOT2,ARG1,MCCC2,GAD2,ASPA,GOT1,GCSH,ALDH4A1,ASRGL1,GSTZ1,DDAH2,DDAH1,GAD1,HPD,BCKDHA,BCKDHB,HGD,DDO,TST,COLQ,DHPS,MPST +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RPL17,SLC44A2,VAPA,SLC20A1,TBK1,TSPAN6,GJA1,FASLG,TLR6,CANT1,NOD2,NOD1,MYD88,TMEM9B,MIER1,HMOX1,TICAM1,CASP8,RHOA,TICAM2,TMEM101,RHOC,CASP1,GPR89A,RHOH,BCL10,LTBR,BST2,GOLT1B,RELA,FADD,CD40,ECT2,FLNA,UBE2N,TRIM38,ZDHHC17,TNFRSF10B,ATP2C1,ZDHHC13,MIB2,RIPK1,RIPK2,TNFAIP3,EEF1D,NEK6,PPP5C,LITAF,PPM1A,UBE2V1,TFG,TRIM13,FKBP1A,CXXC5,TNFRSF1A,TMED4,MAP3K3,REL,SLC35B2,SQSTM1,PLEKHG5,OTUD7B,CC2D1A,TRAF6,TRAF5,CFLAR,SECTM1,CARD8,CARD9,LGALS1,NDFIP1,NDFIP2,MALT1,BIRC2,ECM1,LGALS9,TRADD,TRAF3IP2,IKBKE,APOL3,TNFSF10,PLK2,NUP62,NLRP12,HTR2B,F2R +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html NAT8,SLC22A18,CTPS,ABCB1,ABCA2,SOD1,ABCA3,GCLM,ABCB4,ABCG2,TOP1,LCK,SEMA3C,CSAG2,ABCC1,SCN11A,RAB6C,LIPE,MVP,BCAR3,ABCC6 +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL3,IL5,IL29,LYN,HCLS1,IL31RA,IL20,CD80,CLCF1,TDGF1,CD81,IL12A,TNK2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html PPARD,FGF7,BTD,S100A7,CRABP2,FST,SPINK5,CDSN,GLI1,TGFB2,PLOD1,CTGF,ALOX12B,KRT85,KRT83,DHCR24,STS,STX2,FLOT2,UGCG,FOXN1,KRT13,VAX2,KRT10,PROX1,WAS,SCEL,IL20,PTHLH,NME2,EVPL,KRTAP5-9,KRT17,ATP2C1,KRT16,KRT15,KRT14,DSP,TFAP2A,LAMC2,COL1A1,EDA,EMP1,KRT6A,KRT6B,RBP2,HOXB13,ALDH3A2,KRT9,DCT,COL17A1,LAMB3,KRT5,COL7A1,POU2F3,KRT1,TGM3,KRT2,TGM5,CALML5,ERCC3,ERCC2,ZBTB7B,KLK7,KLK5,KRT31,GJB5,KRT34,COL5A2,KRT32,LAMA3,ATP2A2,CASP14,SPRR1A,SPRR1B,BNC1,PTCH2,SMURF1,FABP5 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html IL8,PF4,ITGB2,CX3CL1,IL10,TGFB2,DOCK2,MIA3,SAA1,CD34,CKLF,SFTPD,SYK,SCG2 +PWCOMMONS REGULATION OF ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOTHELIAL_CELL_PROLIFERATION.html CDH13,AGGF1,ANG,NF1,TNFSF15,GHRL,ATPIF1,TNFSF12,SCG2 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html KCNMB3,KCNMB4,AIFM3,GLRA1,BNIP3,BCL2L1,SOD1,KCNMB2,BAK1,BCL2,BAX,CHRNA1,IFI6,NDUFS1,GRK1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html DCBLD2,DLC1,BMP10,DERL2,BCAR1,PML,PPT1,OSGIN1,TGFB1,TGFB2,ACVR1B,CDKN2A,TSPYL2,FAM107A,CDKN2C,CDKN2D,PRSS2,SERTAD3,CDA,BCL6,NDUFS3,ENO1,SERTAD2,NOL8,SPHK1,SMAD4,TP53,SMAD3,NDUFA13,RB1,CAPRIN2,RERG,PPP1R9B,INHBA,CDKN1A,PLCE1,CDKN1B,CDKN2AIP,APBB2,APBB1,IL2,ALOX12 +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html TARBP2,CCL3,RSF1,HS3ST5,IL8,VAPB,MDFIC,PPIA,APOBEC3G,TNIP1,APOBEC3F,TOP2A +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html BCAT1,PPP6C,DBF4,RCC1,LATS2,CUL3,CUL2,ACVR1B,CUL5,CDKN2A,CDKN2C,CDKN2D,GFI1,CDCA5,CUL1,CDC7,POLE,SKP2,CDKN3,CDK4,SPDYA,INHBA,CDKN1A,CDKN1B,CUL4A,GSPT1,ACVR1 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html TNFSF15,PMAIP1,NLRC4,MOAP1,CDKN2A,CASP9,CASP8AP2,MTCH1,DIABLO,HIP1,COL4A3,AIFM3,CYCS,TP53,SMAD3,STAT1,BCL2L10,VCP,IFNB1,BBC3,BAX,IFT57,F2,LCK,APAF1,F2R +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html UQCRC2,OXA1L,ME3,UQCRC1,ACO2,CYCS,PPARGC1A,PDHB,SDHA,SDHB,SLC25A14,NDUFS4,NNT,UQCRH,SDHC,SDHD,SURF1,NDUFS1,UQCRB +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html AIFM1,TP53,LGALS12,CIDEB,PML,CIDEA,IFI16,SFN,CHEK2,BRCA1,TP73,CUL3,CUL2,CDKN1A,CUL5,RNF7,CUL4A,PCBP4,BAX,BCL3,DYRK2,ABL1,C16ORF5,CUL1 +WIKIPW Glutathione metabolism G6PD,GGT1,GGT5,OPLAH,GCLC,GCLM,GPX1,GPX2,GPX3,GPX4,ANPEP,GSR,GSS,GSTA1,GSTM1,GSTM2,GSTT1,GSTT2,IDH1,GSTT2B +WIKIPW Alanine and aspartate metabolism ABAT,AGXT,GAD1,GAD2,GOT1,GOT2,GPT,ASL,ASPA,ASS1,PC +WIKIPW Translation Factors EIF1,PAIP1,EIF5AL1,EEF1A1,EEF1A2,EEF1B2,EEF1D,EEF1G,EEF2,EIF1AX,EIF2S1,EIF2B1,EIF2S3,EIF4A1,EIF4A2,EIF4B,EIF4E,EIF4EBP1,EIF4EBP2,EIF4G1,EIF5,EIF5A,ETF1,KIAA0664,GSPT2,PABPC1,EIF2AK1,EEF2K,EIF3E,EIF6,LOC390282,ANKHD1-EIF4EBP3,ANKHD1,EIF2AK2,LOC645139,LOC730144,EIF4H,EIF4EBP3,EIF3A,EIF3B,EIF3C,EIF3D,EIF3F,EIF3G,EIF3H,EIF3I,EIF3J,EIF4G3,EIF2B4,EIF2B3,EIF2B2,EIF2B5,EIF2S2,EIF1AY,EIF2AK3,EIF5B +WIKIPW Electron Transport Chain ATP5H,ATP5L,UQCR,COX4I1,COX5B,COX6A1,COX6A2,COX6B1,COX6C,COX7A1,COX7A2,COX7B,COX7C,COX8A,COX11,COX15,UQCRQ,ATP5S,SLC25A4,SLC25A5,SLC25A6,UCRC,NDUFS7,UQCRHL,NDUFA1,NDUFA2,NDUFA3,NDUFA4,NDUFA5,NDUFA6,NDUFA7,NDUFA8,NDUFA9,NDUFA10,NDUFAB1,NDUFB1,NDUFB2,NDUFB3,NDUFB4,NDUFB5,NDUFB6,NDUFB7,NDUFB8,NDUFB9,NDUFB10,NDUFC1,NDUFC2,NDUFS1,NDUFS2,NDUFS3,NDUFV1,NDUFS4,NDUFS5,NDUFS6,NDUFS8,NDUFV2,NDUFV3,ATP5A1,ATP5B,ATP5C1,ATP5D,ATP5E,ATP5F1,ATP5G1,ATP5G2,ATP5G3,ATP5I,ATP5J,ATP5O,NDUFA12,SCO1,SDHA,SDHB,SDHC,SDHD,SURF1,LOC727947,UCP1,UCP2,UCP3,UQCRB,UQCRC1,UQCRC2,UQCRFS1,UQCRH,SLC25A14,COX7A2L,COX5A,ATPIF1,SLC25A27,ATP5J2 +WIKIPW GPCRs, Other GPR176,CHRM2,CHRM3,GPR62,CCR5,PROKR2,ADORA2A,OR1N1,ADORA3,OR10A5,ADRA1D,ADRB2,DRD3,DRD4,GPR183,S1PR1,EDNRA,CELSR3,CELSR2,F2R,GPR116,LPHN2,LPHN3,FSHR,DARC,OR2F1,OR2B6,OR2M4,OR8G1,OR7E24,GHRHR,GPR77,GPR162,GNRHR,CXCR3,GPR133,UTS2R,GPR17,GPR18,GRM1,GRM8,GRPR,ALG6,GPR132,EMR2,HTR1F,HTR2A,HTR7,OR10A2,IL8RA,IL8RB,OR2A5,OR2A7,NTSR1,GPR143,OR1F1,OR3A1,P2RY11,RXFP3,P2RY13,GPR84,GPR88,LTB4R2,VN1R1,PTGFR,HRH4,RXFP1,LGR6,GPR135,SLC26A6,SMO,SSTR2,CCR2,OR2A4,OR1E1,GPR61,OR1G1,OR3A3,GPR98,MCHR2,EMR3,CCKBR,TAAR5,TAAR2,GPR56,GPR55,CELSR1 +WIKIPW Osteoclast IFNAR1,IFNB1,ITGB3,TNFRSF11B,PDGFB,ACP5,TRPV5,SLC9A1,SPP1,GPR68,TNFSF11,TNFRSF11A,ATP6V1G1 +WIKIPW IL-5 Signaling Pathway ATF2,CRKL,MAPK14,CSF2RB,CTNNB1,DNM2,ELK1,AKT1,PTK2B,FOXO3,ALOX5,ALOX5AP,SHC2,GRB2,RAPGEF1,GSK3A,GSK3B,HCK,HCLS1,HRAS,ICAM1,ICAM3,IL2RB,IL5,IL5RA,ITGAM,ITGB2,JAK1,JAK2,JUN,KRAS,LYN,NFKB1,NFKBIA,PIM1,PIK3CG,PIK3R1,PIK3R2,PLA2G4A,PRKCB,PRKCD,MAPK1,MAPK3,MAPK9,MAP2K2,PTPN6,PTPN11,BAX,RAC1,RAF1,RAP1GAP,RPS6KA1,SDCBP,SHC1,SOX4,STAT1,STAT3,STAT5A,STAT5B,SYK,BTK,VAV1,YWHAZ,SOCS1,CBL,CCND3,UNC119 +WIKIPW Matrix Metalloproteinases MMP21,MMP1,MMP2,MMP3,MMP7,MMP8,MMP9,MMP10,MMP11,MMP12,MMP13,MMP14,MMP15,MMP16,MMP17,MMP19,MMP26,MMP27,MMP25,BSG,TCF20,TIMP1,TIMP2,TIMP3,TIMP4,TNF,MMP28,MMP23B,MMP20 +WIKIPW Pentose Phosphate Pathway G6PD,PGLS,PGD,RPE,TALDO1,TKT,LOC729020 +WIKIPW Phase I, non P450 ESD,CES7,LIPA,PON1,PON2,PON3,CES2 +WIKIPW Androgen Receptor Signaling Pathway HIPK3,CDK7,CDK9,STUB1,PIAS3,NCOA2,KAT5,PNRC1,CDC37,MYST2,COX5B,ATF2,CREBBP,CTNNB1,AES,NR0B1,EGFR,EP300,AKT1,ESR1,ESR2,ETV5,FHL2,RAD54L2,FLNA,PATZ1,NR5A1,SPDEF,RCHY1,SIN3A,GAPDH,APPL1,GHR,NR3C1,SLC25A4,GTF2F1,GTF2F2,GTF2H1,SENP1,PSMC3IP,HDAC1,HMGB1,HMGB2,PRMT1,HSPA1A,HSPA1B,IGF1,IL6,IL6ST,AR,JUN,SMAD3,SMAD4,MDM2,MMP1,PA2G4,PIAS4,PLAGL1,POU2F1,POU2F2,MAPK1,MAP2K1,PAK6,PTEN,BAG1,PXN,RAC3,RAF1,RAN,RB1,CCND1,RELA,RNF4,NSD1,LOC644006,SP1,SRC,BRCA1,SRY,STAT3,SVIL,TGFB1I1,TGIF1,TMF1,TP53,NR2C2,UBE2I,UBE3A,YWHAH,NCOA4,CALR,NCOA3,NRIP1,CASP1,CASP3,CASP7,UXT,CASP8,NR0B2,PIAS1,CAV1,RUNX2,RUNX1,NCOA1,KAT2B,CCNE1,CCNH,PIAS2,CTDP1,RNF14,NCOR2,CDC2,CDC25B +WIKIPW AMPK signaling CDKN1A,CAMKK2,CPT1C,PPARGC1B,CPT1A,CPT1B,ADRA1B,ADRA1A,EEF2,EIF4EBP1,ELAVL1,CRTC2,AKT1,AKT2,FASN,PLCB1,MTOR,EEF2K,GYS1,GYS2,ACACA,HMGCR,HNF4A,ACACB,INS,INSR,LEP,LEPR,LIPE,LOC729991-MEF2B,ADIPOR1,PRKAG2,CAB39,PFKFB3,PIK3C3,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,PRKAG3,STRADB,PRKAA1,PRKAA2,PRKAB1,PRKAB2,PRKACB,PRKACG,PRKAG1,SLC2A4RG,RPTOR,RPS6KB1,RPS6KB2,SLC2A4,SREBF1,STK11,TP53,INS-IGF2,TSC1,TSC2,ADIPOR2,CAMKK1,PIK3R3,CCNA2,CCNA1,CCNB1,STRADA,ADIPOQ +WIKIPW BMP signalling and regulation TOB2,SMAD1,SMAD4,SMAD6,SMURF1,BMP2,BMPR1A,BMPR1B,BMPR2,RUNX2,NOG +WIKIPW Fatty Acid Beta Oxidation CPT1A,CPT1B,CPT2,CRAT,DCI,DECR1,DLD,ECHS1,ACSL1,ACSL3,ACSL4,ACSL6,GCDH,GK,GK2,GPD2,HADHA,HADHB,HADH,ACADL,ACADM,ACADS,ACADVL,ACAT1,LIPC,LIPE,LPL,ACSL5,ACSS2,PNPLA2,TPI1,SLC25A20,LIPF +WIKIPW NOD pathway SUGT1,COPS6,NLRP3,CHUK,AAMP,NLRP4,NLRP7,NLRP1,CARD8,PYCARD,XIAP,HSP90AA1,NLRP10,IKBKB,IL1B,IL18,MEFV,NAIP,NFKBIA,DUOX2,NDUFA13,NLRP2,ERBB2IP,NLRC4,RAC1,RELA,PRDM1,NOD2,CARD9,CASP1,CASP5,CASP7,CASP8,CASP9,CARD6,IKBKG,RIPK2,NLRP12,AIM2,ACAP1 +WIKIPW Osteopontin IKBKB,MMP9,NFKB1,PLAU,MAPK1,MAPK3,MAP2K1,RELA,SPP1,MAP3K14 +WIKIPW Toll-like receptor signaling pathway - mir RNF41,TLR6,MAP3K7IP1,RBCK1,ZMYND11,TRAFD1,IRAK3,TIRAP,CHUK,CISH,MAP3K8,MAPK14,TICAM1,CYLD,AKT1,AKT2,SARM1,MAP3K7IP2,FOS,PIK3R5,LY96,PELI3,MAP3K7IP3,TBK1,IFNA1,IFNA2,IFNA4,IFNA5,IFNA6,IFNA7,IFNA8,IFNA10,IFNA13,IFNA14,IFNA16,IFNA17,IFNA21,IFNAR1,IFNAR2,IFNB1,TICAM2,IKBKB,IL1B,IL6,IL8,IL12A,IL12B,CXCL10,IRAK1,IRAK2,IRF3,IRF5,IRF7,JUN,LBP,CD180,SMAD6,MBL2,CXCL9,MYD88,NEU1,NFKB1,NFKB2,NFKBIA,TMED7,IRAK4,TLR7,TLR8,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,PLK1,TLR9,TREM1,FBXW5,TOLLIP,RNF216,RNF31,OTUD5,MAPK1,MAPK3,MAPK8,MAPK11,MAPK9,MAPK10,MAPK13,MAP2K1,MAP2K2,MAP2K3,MAP2K6,MAP2K7,PELI2,PELI1,PTPN6,RAC1,SIGIRR,RELA,MAPK12,CCL3,CCL4,CCL5,CXCL11,MAP2K4,SFTPD,SFTPA1,SPP1,STAT1,SYK,MAP3K7,BTK,TLR1,TLR2,TLR3,TLR4,TLR5,TNF,TNFAIP3,TRAF3,TRAF6,USP7,CUEDC2,CASP8,PIK3R3,IKBKG,SOCS1,CTNNAL1,RIPK1,FADD,SQSTM1,CD14,CD80,CD86,CD40,IKBKE +WIKIPW Selenium PRDX4,TXNRD2,PRDX3,SERPINA3,CRP,SELM,CTH,DIO1,DIO2,DIO3,ABCA1,ALB,F2,F7,SEPHS2,ALOX5,ALOX5AP,ALOX15B,GPX6,PRDX5,GGT1,C11orf31,GPX1,GPX2,GPX3,GPX4,GSR,HBA1,HBA2,HBB,APOA1,APOB,ICAM1,IFNG,SELV,IL1B,IL6,INS,INSR,LDLR,MPO,MTHFR,MTR,NFKB1,NFKB2,PRDX1,SERPINE1,SELT,SEPX1,PLAT,PLG,PNPO,RFK,SELS,SEPN1,PTGS1,PTGS2,SELK,RELA,SAA1,SAA2,SAA4,CCL2,SEPP1,SEPW1,SOD1,SOD2,SOD3,PRDX2,TNF,INS-IGF2,TXN,TXNRD1,XDH,FLAD1,SELO,CAT,SELI,KMO,CBS,KYNU,SEP15,SCARB1 +WIKIPW Eicosanoid Synthesis ALOX12,ALOX5,ALOX5AP,ALOX15,ALOX15B,GGT1,LTA4H,LTC4S,PNPLA8,PLA2G2A,PTGDS,PTGIS,PTGS1,PTGS2,TBXAS1,PTGES2,PLA2G6,PTGES +WIKIPW Nuclear Receptors NR0B1,NR2F6,ESR1,ESR2,ESRRA,ESRRB,NR5A2,NR5A1,NR3C1,NR4A1,HNF4A,AR,ROR1,NR4A2,PGR,PPARA,PPARD,PPARG,RARA,RARB,RARG,RORA,RORC,RXRA,RXRB,RXRG,NR2F1,NR2F2,THRA,THRB,NR2E1,NR2C2,NR1H2,VDR,NR1I2,NR1I3,NR1D2 +WIKIPW Folic Acid Network TXNRD2,ALOX5,GPX6,GPX1,GPX2,GPX3,GPX4,GSR,FMN1,MTHFR,MTR,SEPX1,PNPO,PTGDS,PTGIS,SELK,SEPW1,SOD1,TCN1,TXN,TXNRD1,XDH,CAT,KMO,CBS,FADS2,PTGES +WIKIPW Cell cycle LOC100133012,HDAC5,CDK2,CDK4,CDK6,CDKN1A,CDKN1B,CDKN2A,MAD2L2,DBF4,CHEK1,TBC1D8,CHEK2,GADD45A,E2F1,E2F2,E2F3,E2F4,E2F5,E2F6,EP300,MPEG1,ORC6L,ORC3L,ABL1,GSK3B,HDAC1,HDAC2,MAD2L1,SMAD3,SMAD4,MCM2,MCM3,MCM4,MCM5,MCM6,MCM7,MDM2,ATM,ORC1L,ORC2L,ORC4L,ORC5L,PCNA,HDAC7,PLK1,HDAC8,PRKDC,RB1,RBL1,SKP2,LOC651610,BUB1,BUB1B,TFDP1,TGFB1,TP53,LOC731751,WEE1,YWHAG,SMC1A,CDC7,CDC45L,MAD1L1,CCNB3,CDC14B,CDC14A,HDAC3,CCNA2,CCNA1,CCNB1,CCND2,CCND3,CCNE1,CCNH,PKMYT1,CCNB2,CCNE2,BUB3,PTTG1,ESPL1,HDAC4,CDC2,CDC6,CDC20,CDC25A,CDC25B,CDC25C,CDH1 +WIKIPW Proteasome Degradation HIST1H2AE,H2AFX,H2AFZ,HLA-A,HLA-B,HLA-C,HLA-E,HLA-F,HLA-G,IFNG,NEDD4,PSMA1,PSMA2,PSMA3,PSMA4,PSMA5,PSMA6,PSMA7,PSMB1,PSMB2,PSMB3,PSMB4,PSMB5,PSMB6,PSMB7,PSMB8,PSMB9,PSMB10,PSMC1,PSMC2,PSMC3,PSMC4,PSMC5,PSMC6,PSMD1,PSMD2,PSMD3,PSMD4,PSMD5,PSMD7,PSMD8,PSMD9,PSMD10,PSMD11,PSMD12,PSMD13,PSME1,PSME2,RPN1,RPN2,LOC652826,UBB,UBC,UBA1,UBA7,UBE2B,UBE2D1,UBE2D2,UBE2D3,UCHL1,UCHL3,HIST1H2AB,PSMD6 +WIKIPW Integrin-mediated cell adhesion PAK4,VAV3,SORBS1,CAPN9,CAPN11,CAPN10,CRK,CSK,DOCK1,AKT1,AKT2,ITGA11,CAPN7,FYN,GRB2,RAPGEF1,HRAS,ILK,ITGA6,ITGA1,ITGA2,ITGA2B,ITGA3,ITGA4,ITGA5,ITGA7,ITGA9,ITGAD,ITGAE,ITGAL,ITGAM,ITGAV,ITGAX,ITGB1,ITGB2,ARAF,ITGB3,ITGB4,ITGB5,ITGB6,ITGB7,ITGB8,PAK1,PAK2,PAK3,PDPK1,PIK3R2,SHC3,MAPK1,MAPK4,MAPK6,MAPK7,MAPK10,MAP2K1,MAP2K2,MAP2K3,MAP2K5,MAP2K6,PAK6,PTK2,PXN,RAC1,RAC2,RAC3,RAF1,RAP1A,RAP1B,RHO,ROCK1,MAPK12,SEPP1,SHC1,SOS1,SRC,BRAF,TLN1,TNS1,CAPN5,LOC727758,VASP,VAV2,VCL,ZYX,CAPN1,CAPN2,CAPN3,CAPNS1,CAPN6,ITGA10,ITGA8,MYLK2,CAV1,CAV2,CAV3,ARHGEF7,ROCK2,BCAR1,GIT2,CDC42 +WIKIPW Homologous recombination POLD3,RAD54B,MRE11A,NBN,ATM,POLD1,POLD2,POLD4,RAD51,RAD52,RPA1,LOC651610,BRCA2 +WIKIPW IL-1 Signaling Pathway IL1A,IL1B,IL1R1,IL1RAP,IL1RN,IRAK1,IRAK2,MYD88,IRAK4,TRAF6,IL1R2 +WIKIPW Cholesterol Biosynthesis CYP51A1,DHCR7,FDFT1,FDPS,HMGCR,HMGCS1,IDI1,LSS,MVD,MVK,NSDHL,SC4MOL,SC5DL,SQLE +WIKIPW IL-7 Signaling Pathway CDK2,CDK4,STAM2,CLTC,AKT1,PTK2B,FOXO1,FOXO3,FYN,GRB2,GSK3B,HRAS,IL2RG,IL7R,IRF1,IRS1,JAK1,JAK3,LYN,MCL1,MUC1,PIK3R1,MAPK1,MAPK3,MAP2K1,MAP2K2,BAD,BAX,RAF1,RB1,BLK,SHC1,SOS1,STAT1,STAT3,STAT5A,STAT5B,STAM,IRS2,CBL,CBLB,CCNA2,CCND2 +WIKIPW Fatty Acid Omega Oxidation ADH1B,ADH4,ADH6,ADH7,CYP1A1,CYP1A2,CYP2A6,CYP2D6,CYP2E1,CYP3A4,CYP4A11,ALDH1A1,ALDH2 +WIKIPW IL-9 Signaling Pathway AKT1,GRB2,IL2RG,IL9,IL9R,IRS1,JAK1,JAK3,PIK3R1,MAPK1,MAPK3,MAP2K1,MAP2K2,PTPN11,SHC1,STAT1,STAT3,STAT5A,STAT5B,TYK2,VCP,IRS2,SOCS3 +WIKIPW Irinotecan Pathway ABCC2,CYP3A4,CYP3A5,ABCC1,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,BCHE,CES2,ABCG2 +WIKIPW B Cell Receptor Signaling Pathway BCL2L11,ARPC5,ARPC4,ARPC3,ARPC1B,ACTR3,ACTR2,ARPC2,CDK2,CDK4,CDK6,CDK7,MAP4K1,CHUK,PIK3AP1,CMTM3,CR2,CREB1,ATF2,CRK,CRKL,MAPK14,CSK,CTNNB1,DOK1,DUSP4,DUSP6,ELK1,AKT1,PTK2B,FCGR2B,FOXO1,PIP5K1C,FYN,GAB1,RASGRP3,TTLL3,STAP1,PTPN18,DAPP1,GRB2,RAPGEF1,GSK3A,GSK3B,GTF2I,BLNK,PILRB,HCK,HCLS1,HNRNPK,IKBKB,ITK,ITPR1,ITPR2,JUN,RHOA,LCK,LCP2,LYN,NCK1,NEDD9,NFATC1,NFATC2,NFATC3,NFKBIA,ATP2B4,CHST15,HDAC7,PDK2,PDPK1,PIK3CG,PIK3R1,PIK3R2,PIP4K2A,PLCG1,PLCG2,CYCS,LIME1,BANK1,PPP3CA,PPP3CB,PPP3R1,PRKCB,PRKCD,PRKCE,PRKD1,PRKCQ,MAPK1,MAPK3,MAPK4,MAPK8,MAP2K1,MAP2K2,PTK2,PTPN6,PTPN11,PTPRC,BAX,RAF1,RAP2A,RASA1,RB1,PLEKHA1,PLEKHA2,BCL2,REL,RELA,BCL6,RPS6,RPS6KA1,RPS6KB1,BLK,SH3BP2,SHC1,LOC653888,SOS1,SOS2,BRAF,STAT1,STAT3,SYK,MAP3K7,BTK,TEC,VAV1,VAV2,WAS,LAT2,ZAP70,PIP4K2C,DOK3,PIP5K1A,PIP5K1B,PIP4K2B,CASP7,SLA2,CASP9,CARD11,IKBKG,CBL,CBLB,CCNA2,BCL10,CCND2,CCND3,CCNE1,FCGR2C,CD5,MAPKAPK2,CD19,CD22,BCAR1,CD72,CD79A,CD79B,CD81,GAB2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway HDAC6,LRPPRC,DCAF7,AKAP8,TRAIP,TNIP1,GNB2L1,PIAS3,MAP3K7IP1,MAP3K2,IQGAP2,PPP1R13L,CD3EAP,PAPOLA,YWHAQ,RIPK3,FAF1,CDC37,CHUK,MAP3K8,CREBBP,CSNK2A1,CSNK2A2,CSNK2B,NLRP4,COMMD1,CYLD,DAP,DDX3X,TXLNA,MARK2,AKT1,AKT2,FBL,FANCD2,UNC5CL,FKBP5,MAP3K7IP2,FLNA,FBXW11,ZIM2,KPNA6,ALPL,GAB1,MAP3K7IP3,POLR1A,TRPC4AP,GLG1,NKIRAS2,NKIRAS1,TBK1,GSK3B,GTF2I,HDAC1,HDAC2,BIRC2,BIRC3,HSPB1,HSP90AA1,HSP90AB1,IKBKB,KCNQ1,KPNA2,KPNA3,KTN1,MCC,MCM5,MCM7,MAP3K1,MAP3K3,MTIF2,NFKB1,NFKB2,NFKBIA,NFKBIB,NFKBIE,PEBP1,POLR1D,PDCD2,PEG3,PFDN2,PML,POLR2H,POLR2L,RNF216,PPP2CA,PRKACA,PKN1,PRKCZ,MAP2K5,PSMB5,PSMC1,PSMC2,PSMC3,PSMD1,PSMD3,PSMD7,PSMD12,PSMD13,PTK2,KIAA1967,PTPN11,LY6G5B,REL,RELA,RELB,DPF2,BCL3,RPL4,RPL6,RPL8,RPL30,RPS6KB1,RPS11,RPS13,RNF25,NFKBIZ,AZI2,POLR1E,SKP1,SMARCA4,SMARCB1,SMARCC1,SMARCC2,SMARCE1,SRC,STAT1,TNF,TNFAIP3,TNFRSF1A,TNFRSF1B,NR2C2,TRAF1,TRAF2,TRAF3,TRAF5,TRAF6,UBE2D2,UBE2D3,UBE2I,SUMO1,YWHAB,YWHAE,YWHAG,YWHAH,YWHAZ,ZFAND5,TNIP2,USP11,CAPN3,HIST3H3,CASP2,CASP3,CASP7,CASP8,POLR1B,CASP10,NSMAF,CUL1,IKBKG,IKBKAP,COPS3,CAV1,ACTL6A,TRADD,RIPK1,CRADD,RIPK2,FADD,TNFRSF11A,CFLAR,BTRC,MAP3K14,USP2,RPS6KA5,TIFA,TNFRSF8,RASAL2,BAG4,POLR1C,TRAF4,IKBKE,EIF4A3,PSMD6,G3BP2,CDC34,CASP8AP2 +WIKIPW Adipogenesis MEF2B,NR1H3,NAMPT,CDKN1A,ZMPSTE24,NCOA2,CEBPA,CEBPB,CEBPD,AGPAT2,CUGBP1,PPARGC1A,PLIN2,CNTFR,KLF6,CREB1,CTNNB1,CYP26A1,GADD45A,DDIT3,CFD,AGT,DVL1,E2F1,E2F4,EBF1,EGR2,AHR,EPAS1,FOXC2,FOXO1,LPIN1,FRZB,WWTR1,GATA2,GATA3,GATA4,BSCL2,GDF10,GH1,KLF15,NR3C1,GTF3A,HIF1A,HMGA1,ID3,IGF1,FAS,IL6,IL6ST,INS,IRS1,LEP,LIF,LIFR,LIPE,LMNA,LPL,SMAD3,MBNL1,MEF2A,LOC729991-MEF2B,MEF2C,MEF2D,MIF,ASIP,GADD45B,NDN,OSM,SERPINE1,PCK1,PCK2,PLIN1,PPARA,PPARD,PPARG,CISD1,PRLR,CYP26B1,RETN,PTGIS,TRIB3,RARA,RB1,RBL1,RBL2,RORA,RXRA,RXRG,SCD,SFRP4,BMP1,LPIN3,BMP2,BMP3,SLC2A4,BMP4,SP1,SPOCK1,SREBF1,STAT1,STAT2,STAT3,STAT5A,STAT5B,STAT6,KLF5,HNF1A,NR2F1,TGFB1,TNF,INS-IGF2,TWIST1,UCP1,WNT1,WNT10B,PNPLA3,WNT5B,NRIP1,FZD1,MIXL1,IRS4,KLF7,NCOA1,SOCS1,IRS2,DLK1,SOCS3,ADIPOQ,NCOR1,NCOR2,LPIN2 +WIKIPW Glucocorticoid & Mineralcorticoid Metabolism CYP11B2,CYP17A1,CYP21A2,HSD3B1,HSD3B2,HSD11B1,HSD11B2 +WIKIPW Peptide GPCRs ATP8A1,CXCR6,CCR1,CCR3,CCR4,CCR5,CCR6,CCR7,CCR8,CX3CR1,AGTR1,AGTR2,EDNRA,EDNRB,FPR1,FPR2,FPR3,NTSR2,FSHR,DARC,TAC4,GALR1,GHSR,GNRHR,CCR10,CXCR3,GRPR,IL8RA,IL8RB,LHCGR,MC1R,MC2R,MC3R,MC4R,MC5R,NMBR,NPY1R,NPY2R,NPY5R,NTSR1,OPRD1,OPRK1,OPRL1,OPRM1,OXTR,AVPR1A,AVPR1B,AVPR2,PPYR1,BDKRB1,BDKRB2,CXCR5,SSTR1,SSTR2,SSTR3,SSTR4,SSTR5,BRS3,TACR2,TACR1,TACR3,C3AR1,TRHR,TSHR,C5AR1,CCR2,CXCR4,GALR3,GALR2,CCKAR,CCKBR +WIKIPW One Carbon Metabolism MTHFD2,ALDH1L1,FTCD,MTFMT,DHFR,DNMT1,DNMT3A,DNMT3B,AHCY,AHCYL2,FOLH1,MTHFD1L,GART,MAT2B,AMT,MAT1A,MTHFD1,MTHFR,MTR,MTRR,ATIC,BHMT,SHMT1,SHMT2,TCN2,TYMS +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway CDKN1A,YWHAQ,CLCA1,COL17A1,DSP,EGFR,EIF4E,EIF4EBP1,ERBB2,AKT1,MTOR,ABL1,FYN,SFN,LAMA1,GRB2,ITGA6,IRS1,AR,ITGB4,EIF6,RHOA,LAMA2,LAMA3,LAMA5,LAMB1,LAMB2,LAMB3,LAMC1,LAMC2,RPSA,SMAD2,SMAD3,MET,MMP7,MST1R,PAK1,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,PLEC1,PRKCA,PRKCD,ERBB2IP,BAD,PTK2,RAC1,RTKN,SHC1,LOC652460,DST,SRC,TP73,VIM,YES1,YWHAB,YWHAE,YWHAH,YWHAZ,CASP3,PIK3R3,IRS2,NTN1,CLCA2,CD151 +WIKIPW Small Ligand GPCRs CNR2,S1PR1,LPAR1,S1PR3,MTNR1A,MTNR1B,PTAFR,PTGDR,PTGER1,PTGER2,PTGER3,PTGER4,PTGFR,PTGIR,TBXA2R,S1PR4,S1PR2 +WIKIPW Apoptosis CDKN2A,CHUK,DFFA,DFFB,AKT1,BBC3,TNFRSF21,GZMB,HELLS,APAF1,BIRC2,BIRC3,XIAP,BIRC5,IGF1,IGF1R,IGF2,FAS,IKBKB,FASLG,IRF1,IRF2,IRF3,IRF4,IRF5,IRF6,IRF7,JUN,LTA,MCL1,MDM2,MAP3K1,MYC,NFKB1,NFKBIA,NFKBIB,NFKBIE,PIK3R1,PMAIP1,CYCS,PRF1,MAPK10,DIABLO,BAD,BAK1,BAX,BCL2,RELA,BCL2L1,BCL2L2,BID,MAP2K4,BNIP3L,BOK,TNF,TNFRSF1A,TNFRSF1B,TP53,TP73,TRAF1,TRAF2,TRAF3,CASP1,CASP2,CASP3,CASP4,CASP6,CASP7,CASP8,CASP9,CASP10,IKBKG,TRADD,TNFRSF25,RIPK1,CRADD,HRK,TNFSF10,FADD,TNFRSF10B,CFLAR +WIKIPW Nifedipine MAPK1,MAP2K1 +WIKIPW Signal Transduction of S1P Receptor S1PR1,S1PR3,AKT1,AKT2,PLCB1,GNAI1,GNAI2,GNAI3,RACGAP1,ASAH1,PIK3C2B,PLCB2,PLCB3,S1PR5,MAPK1,MAPK3,MAPK4,MAPK6,MAPK7,SPHK2,MAPK12,SPHK1,S1PR2 +WIKIPW EBV LMP1 signaling HSP90AA1,IFNB1,IKBKB,IL8,IRAK1,MAP3K3,NFKB1,NFKB2,MAPK1,MAPK8,RELA,CCL5,CCL20,MAP3K7,TNF,TRAF1,TRAF6,IKBKG,TRADD,MAP3K14,PDLIM7 +WIKIPW Notch Signaling Pathway RBPJL,DTX2,CREBBP,CTBP1,CTBP2,DTX3L,PTCRA,JAG1,DTX1,DVL1,DVL2,DVL3,DTX3,DTX4,NCSTN,KAT2A,DLL1,HDAC1,HDAC2,HES1,RBPJ,JAG2,KCNJ5,HES5,LFNG,MFNG,NOTCH1,NOTCH2,NOTCH3,NOTCH4,APH1A,INPP5K,DLL4,MAML3,PSEN1,PSEN2,RFNG,ADAM17,TNF,APH1B,NUMB,KAT2B,NUMBL,NCOR2,MAML1 +WIKIPW Blood Clotting Cascade F5,F7,F8,F9,F10,F11,F12,F13B,FGA,FGB,FGG,KLK1,KLKB1,F8A2,F8A3,SERPINE1,SERPINB2,PLAT,PLAU,PLG,SERPINF2,VWF,F8A1 +WIKIPW Selenium metabolism/Selenoproteins TXNRD2,SELM,DIO1,DIO2,DIO3,FABP1,SEPHS2,FOS,GPX6,C11orf31,GPX1,GPX2,GPX3,GPX4,SELV,JUN,NFKB1,SEPSECS,SCLY,SELT,SEPX1,SARS2,TRNAU1AP,SELS,SEPN1,SELK,RELA,EEFSEC,RPL30,SEPP1,SEPW1,SP3,TXNRD1,SELO,SELI,SELENBP1 +WIKIPW IL-3 Signaling Pathway GNB2L1,YWHAQ,CHEK1,CISH,CREB1,ATF2,CRK,CRKL,MAPK14,CSF2RB,DNM1,AKT1,FCER2,FES,MRAS,FOXO1,FYN,GAB1,GATA1,GATA2,GRB2,RAPGEF1,GSK3A,GSK3B,PILRB,HCK,KCNIP3,HRAS,HSPB1,BIRC5,ID1,IL3,IL3RA,JAK1,JAK2,KRAS,LCK,LYN,MATK,MMP2,MMP9,ATF1,NFKB1,PAK1,PIK3CA,PIK3CD,PIK3R1,PIK3R2,PPP2CA,PRKACA,PRKCA,PRKCB,MAPK1,MAPK3,MAPK7,MAPK8,MAPK9,MAP2K1,BAD,PTK2,PTPN6,PTPN11,BAX,PXN,RAC1,RAC2,RAF1,RAP1A,RARA,BCL2,BCL2L1,RPS6KB2,RXRA,SELP,SHC1,SLC2A1,BMX,SOS1,SPI1,SRC,STAT1,STAT3,STAT5A,STAT5B,STAT6,SYK,TEC,TNFRSF1B,TYK2,VAV1,VCL,YWHAB,YWHAZ,CBL,SOCS2,SOCS3,MAPKAPK2,GAB2,CDC42 +WIKIPW NLR proteins EPHB2,IKBKB,ERBB2IP,MAPK1,MAPK8,RELA,MAP3K7,IKBKG,CD40 +WIKIPW Myometrial Relaxation and Contraction Pathways RAMP1,RAMP3,RGS19,CREB3,RGS14,GNB5,CORIN,ADCY1,ADCY2,ADCY3,YWHAQ,ADCY5,PKIG,ADCY6,ADCY7,GPR182,ADCY8,ADCY9,RXFP2,CNN1,CNN2,ADM,CREB1,ATF2,ATF6B,CRH,CRHR1,LPAR1,ADCY4,ETS2,ATF5,FOS,MAFF,GABPA,GABPB1,RGS17,GJA1,CRCP,GNAQ,GNAS,GNB1,GNB2,GNB3,GNG3,GNG4,GNG5,GNG7,GNG11,GNGT1,SFN,GRK4,GRK5,GRK6,GUCA2A,GUCA2B,GUCY1A3,IGFBP1,IGFBP2,IGFBP3,IGFBP4,IGFBP5,IGFBP6,IL1B,IL6,ITPR1,ITPR2,ITPR3,JUN,ARRB1,ARRB2,MYL2,MYL4,ATF1,ATF3,ATF4,NFKB1,NOS1,NOS3,ATP2A2,ATP2A3,OXT,OXTR,PDE4B,PDE4D,GNG13,PLCB3,PLCD1,PLCG1,PLCG2,GNG2,PRKACA,PRKACB,PKIA,PKIB,PRKAR1A,PRKAR1B,PRKAR2A,PRKAR2B,PRKCA,PRKCB,PRKCD,PRKCE,PRKCG,PRKCH,PRKD1,PRKCQ,PRKCZ,GNG12,CXCR7,ACTA1,ACTA2,GNB4,RXFP1,RGS1,RGS2,RGS3,RGS4,ACTB,RGS7,RGS10,RGS16,RLN1,RYR1,RYR2,RYR3,RGS18,SLC8A1,SP1,ACTC1,ACTG1,YWHAB,YWHAE,YWHAG,YWHAH,YWHAZ,CACNB3,CALCA,CALD1,CALM1,CALM2,CALM3,CAMK2A,CAMK2B,CAMK2D,CAMK2G,RGS5,DGKZ,MYLK2,RGS20,RGS11,RGS9,GNG8,GSTO1,RGS6 +WIKIPW Nuclear receptors in lipid metabolism and toxicity ABCC2,CYP1A2,CYP2B6,CYP2C9,CYP2E1,CYP3A4,CYP4A11,CYP4B1,CYP7A1,CYP8B1,CYP24A1,CYP26A1,CYP27B1,ABCA1,ABCD2,ABCB1,ABCB4,PPARA,PPARD,PPARG,ABCD3,RARA,RARB,RARG,ABCG5,VDR,ABCB11,ABCC3,NR1I2,ABCG1,NR1I3,NR1H4 +WIKIPW Keap1-Nrf2 NQO1,EPHB2,GCLC,GCLM,GSTA2,HMOX1,MAF,NFE2L2,PIK3CA,PRKCA,MAPK8,AIMP2,KEAP1 +WIKIPW Kit Receptor Signaling Pathway GRAP,CISH,CLTC,SOCS4,CRK,CRKL,CSF2RB,SPRED1,DOK1,SPRED2,EP300,EPOR,AKT1,FES,FGR,ABL1,FYN,STAP1,GRB2,GRB7,GRB10,SH3KBP1,HCK,HRAS,JAK2,KIT,LYN,MATK,KITLG,MITF,PLCE1,PIK3CG,PIK3R1,PIK3R2,PLCG1,PRKCA,PRKCB,MAPK1,MAP2K1,BAD,PTPN6,PTPN11,RAF1,RASA1,RPS6KA1,SHC1,LOC652799,LOC653882,SOS1,SRC,STAT1,STAT3,STAT5A,STAT5B,BTK,TEC,VAV1,VAV2,YES1,SOCS1,CBL,CBLB,MPDZ,TNFRSF10A,SOCS6,SOCS5 +WIKIPW Focal Adhesion TNK2,PAK4,LAMC3,TESK2,CHAD,COL1A1,COL1A2,COL2A1,COL3A1,COL4A1,COL4A2,COL4A4,COL4A6,COL5A1,COL5A2,COL6A2,COL11A1,COL11A2,COMP,CRK,DOCK1,EGF,EGFR,ELK1,ERBB2,AKT1,AKT2,FGR,FIGF,ITGA11,FLNA,FLT1,FN1,PIP5K1C,PIK3R5,FYN,LAMA1,GRB2,RAPGEF1,GSK3B,PARVB,HCK,HGF,PIK3R4,BIRC2,BIRC3,TNC,IBSP,IGF1,IGF1R,ILK,ITGA6,ITGA2,ITGA2B,ITGA3,ITGA4,ITGA5,ITGA7,ITGA9,ITGAD,ITGAE,ITGAL,ITGAM,ITGAV,ITGAX,ITGB1,ITGB2,ARAF,ITGB3,ITGB4,ITGB5,ITGB6,ITGB7,ITGB8,JUN,KDR,RHOA,RHOB,LAMA2,LAMA3,LAMA4,LAMA5,LAMB1,LAMB2,LAMB3,LAMC1,LAMC2,ARHGAP5,MET,MYL6,MYLK,PPP1R12A,COL5A3,PAK1,PAK2,PAK3,PDGFA,PDGFB,PDGFRA,PDGFRB,PDPK1,PGF,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,SHC3,PELO,STYK1,MAPK1,MAPK4,MAPK6,MAPK7,MAPK8,MAPK9,PDGFC,MAP2K1,MAP2K2,MAP2K3,MAP2K5,MAP2K6,RELN,PAK6,PAK7,BAD,PTEN,PTK2,PTK6,PXN,RAC1,RAC2,RAC3,RAF1,RAP1A,RAP1B,CCND1,BCL2,ACTB,ROCK1,MAPK12,TNN,BLK,SHC1,SOS1,SPP1,SRC,SRMS,BRAF,THBS1,THBS2,THBS3,THBS4,TLN1,ACTG1,TNR,TNXB,LOC727758,TXK,VASP,VAV1,VCL,VEGFB,VEGFC,VTN,VWF,ZYX,PDGFD,CAPN1,ITGA10,ITGA8,MYLK2,CAV1,CAV2,CAV3,ACTN1,TNK1,CCND2,CCND3,ROCK2,BCAR1,FARP2,CDC42 +WIKIPW Synthesis and Degradation of Ketone Bodies HMGCS2,ACAT1,OXCT1,BDH1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor CRK,CRKL,DOCK1,ELK1,PTK2B,FOS,GAB1,GRB2,RAPGEF1,HGF,HRAS,ITGA1,ITGB1,JUN,PAK1,PIK3CA,MAPK1,MAPK3,MAPK8,MAP2K1,MAP2K2,PTEN,PTK2,PTPN11,PXN,RAF1,RAP1A,RAP1B,RASA1,SOS1,SRC,STAT3 +WIKIPW FAS pathway and Stress induction of HSP regulation PARP1,DAXX,DFFA,DFFB,APAF1,HSPB1,FAS,IL1A,FASLG,JUN,ARHGDIB,LMNA,LMNB1,MAP3K1,PAK1,PAK2,CYCS,PRKDC,MAPK8,RB1,BCL2,MAP2K4,SPTAN1,MAP3K7,TNF,LOC731751,MAPKAPK3,CASP3,CASP6,CASP7,CASP8,CASP9,CASP10,LMNB2,RIPK2,FADD,CFLAR,MAPKAPK2 +WIKIPW Osteoblast COL1A1,IBSP,ITGAV,ITGB3,TNFRSF11B,PDGFB,PDGFRA,PDGFRB,PTH,PTH1R,FGF23,TNFSF11 +WIKIPW Triacylglyceride Synthesis AGPAT2,MOGAT1,GK,GK2,GPD1,MOGAT3,LIPC,LIPE,LPL,AGPAT5,AGPAT3,AGPAT4,PNPLA2,GPAM,MOGAT2,GNPAT,DGAT2,LIPF,AGPS,PPAP2A,PPAP2C,PPAP2B,DGAT1 +WIKIPW GPCRs, Class B Secretin-like CALCRL,ADCYAP1R1,CRHR1,CRHR2,EMR1,LPHN1,LPHN2,LPHN3,GCGR,GHRHR,GIPR,GLP1R,EMR2,PTH1R,PTH2R,SCTR,ELTD1,VIPR1,VIPR2,CALCR,GLP2R,CD97 +WIKIPW Ovarian Infertility Genes CDKN1B,CEBPB,DMC1,CYP19A1,DAZL,EGR1,ESR2,SYNE2,FSHR,NR5A1,GDF9,GJA4,INHA,LHCGR,SMAD3,MLH1,MSH5,ATM,PGR,PRLR,PTGER2,LOC651610,BMPR1B,SMPD1,VDR,ZP2,ZP3,NRIP1,CCND2,NCOR1 +WIKIPW G Protein Signaling Pathways AKAP8,AKAP3,GNA13,GNB5,ADCY1,ADCY2,ADCY3,ADCY5,ADCY6,AKAP13,AKAP11,AKAP10,AKAP2,ADCY7,ADCY8,PALM2,ADCY9,ADCY4,PRKD3,PDE7B,GNA11,GNA12,GNA15,GNAI1,GNAI2,GNAI3,GNAL,GNAO1,GNAQ,GNAS,GNAZ,GNB1,GNB2,GNB3,GNG3,GNG4,GNG5,GNG7,GNG10,GNG11,GNGT1,GNGT2,HRAS,ITPR1,KCNJ3,KRAS,RHOA,PALM2-AKAP2,NRAS,PDE1A,PDE1C,PDE4A,PDE4B,PDE4C,PDE4D,PDE7A,PDE8A,PDE1B,GNG13,PLCB3,DNAJC25,DNAJC25-GNG10,PPP3CA,PPP3CC,PRKACA,PRKACB,PRKACG,PRKAR1A,PRKAR1B,PRKAR2A,PRKAR2B,PRKCA,PRKCB,PRKCD,PRKCE,PRKCG,PRKCH,PRKCI,PRKD1,PRKCQ,PRKCZ,GNG12,RRAS,SLC9A1,CALM1,CALM2,CALM3,AKAP1,PDE8B,AKAP4,ARHGEF1,GNG8,AKAP7,AKAP6,AKAP5,AKAP12,GNA14 +WIKIPW Fatty Acid Biosynthesis DECR1,ECH1,ECHS1,ACSL1,ACSL3,ACSL4,FASN,ACSL6,HADH,ACACA,ACACB,ACLY,PC,MECR,ACSL5,ECHDC2,PECR,ECHDC1,ACSS2,SCD,ECHDC3 +WIKIPW Wnt Signaling Pathway NetPath CRYBB2,CSNK1A1,CSNK1D,CSNK1E,CSNK2A1,CSNK2A2,CSNK2B,CTBP1,CTBP2,CTNNB1,DAB2,DLG1,DLG2,DLG4,DVL1,DVL2,DVL3,MARK2,EP300,AKT1,FHL2,ANKRD6,DKK1,DAAM1,FRAT2,NR5A1,FZD2,MAGI3,HIPK2,BRD7,GSK3B,TAX1BP3,APC,JUN,JUP,RHOA,LRP1,LRP6,LRP5,ARRB1,SMAD3,SMAD4,ARRB2,MAP1B,MYB,ROR2,PAX2,LEF1,PIAS4,NLK,PIN1,WNT4,PPP2CA,PRKCA,PRKCB,PRKCG,MAPK1,MAPK3,MAPK8,MAPK9,CTNNBIP1,VANGL2,LY6G5B,RAC1,RAF1,SENP2,CCND1,BCL9,SALL1,SFRP1,SFRP2,SKP1,SOX1,SOX9,MAP3K7,TBP,TCF4,TCF3,TFAP2A,SUMO1,WNT1,WNT2,WNT3,WNT5A,WNT7A,FZD5,CXXC4,CAMK2A,CAMK2B,CAMK2D,CAMK2G,AXIN1,AXIN2,FZD1,FZD4,FZD6,FZD7,FZD8,FZD9,CUL1,NKD1,RUNX2,RUVBL1,BTRC,WNT3A,MAPK8IP1,CDC2,CDC25C,CDH1 +WIKIPW IL-6 Signaling Pathway CDK5,CDK9,CEBPB,CREBBP,MAPK14,DAXX,EIF4E,EIF4EBP1,EP300,ERBB2,ERBB3,AKT1,PTK2B,FES,FGR,FOXO1,FOXO3,FOS,FYN,GAB1,PPP2R3B,GRB2,GSK3B,HCK,HDAC1,HRAS,HSPB1,HSP90AA1,IL6,IL6R,IL6ST,INPPL1,AR,JAK1,JAK2,JUN,LYN,MAPT,MAP3K4,FOXO4,NFKB1,NLK,PIK3R1,PIK3R2,PLCG1,PPP2CA,PPP2CB,PPP2R1A,PPP2R1B,PPP2R2A,PPP2R2B,PPP2R2C,PPP2R3A,PPP2R4,PPP2R5A,PPP2R5B,PPP2R5C,PPP2R5D,PPP2R5E,PRKCD,MAPK1,MAPK3,MAPK8,MAP2K1,MAP2K2,MAP2K6,BAD,PTK2,PTPN11,PXN,RAC1,RAF1,RB1,RPS6KA2,RPS6KB1,MAP2K4,SGK1,SHC1,BMX,SOS1,STAT1,STAT3,MAP3K7,HNF1A,BTK,TEC,TYK2,VAV1,CASP3,EIF2A,CASP9,NCOA1,CDK5R1,SOCS3,MAPKAPK2,CD40,GAB2 +WIKIPW TGF-beta Receptor Signaling Pathway LOC100133982,TRAP1,CDK2,CDK4,CDK6,CDKN1A,ANAPC10,YAP1,MAP3K7IP1,CTCF,GIPC1,COPS5,STRAP,STK11IP,ATF2,CREBBP,MAPK14,CTNNB1,DAB2,DAXX,AP2B1,EID2,DVL1,E2F4,E2F5,ENG,EP300,ESR1,ETS1,FKBP1A,FOXG1,SNW1,FOXO1,FOXO3,FNTA,FOS,FOSB,ANAPC2,ANAPC4,HDAC1,HNF4A,HOXA9,HSPA8,AR,JUN,JUNB,JUND,KPNB1,SMAD2,SMAD3,SMAD4,ARRB2,SMAD6,SMAD7,MEF2A,MEF2C,FOXO4,CITED1,MYC,ATF3,NFYA,NFYB,NFYC,LEF1,FZR1,ANAPC5,ANAPC7,PIK3R1,PIK3R2,PPP2R2A,PRKAR1B,PRKAR2A,PRKCB,PRKCD,DCP1A,PRKCG,ERBB2IP,MAPK8,MAP2K3,MAP2K6,PARD3,SMURF1,STAMBPL1,SNX6,RB1,RBL1,RBL2,CCND1,ROCK1,SDC2,ANAPC1,SMURF2,SKI,SKIL,SKP1,SNX1,SNX2,SP1,SPARC,STK11,MAP3K7,ZEB1,TFDP1,TFDP2,TGFB1,TGFB2,TGFB3,TGFBR1,TGFBR2,TGFBR3,TGIF1,TP53,TP73,LOC727758,UBE2D1,UBE2D2,UBE2D3,SUMO1,VDR,XPO1,SNIP1,NUP214,CAMK2A,CAMK2B,CAMK2D,CAMK2G,AXIN1,AXIN2,CUL1,PIAS1,CAV1,RUNX2,NCOA1,EIF3I,CDC23,SNX4,KAT2B,CDC16,FOXH1,BTRC,CCNE1,PIAS2,CCNB2,HGS,ZFYVE9,ACVRL1,CD44,CDC2,ZEB2,CDC25A,CDC27,NUP153,RBX1 +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation CPT2,DCI,EHHADH,ACSL1,ACSL3,ACSL4,HADHA,HADH,ACADL,ACADM,ACADS,ACADVL,PECR,SCP2,SLC25A20 +WIKIPW MAPK signaling pathway RASGRP1,MAP3K7IP1,MAP4K1,DUSP10,RASGRP4,ACVR1C,MAP3K8,ATF2,CRK,CRKL,TMEM37,MAPK14,DAXX,GADD45A,DDIT3,DUSP1,DUSP4,DUSP5,DUSP6,DUSP7,EGF,EGFR,ELK1,AKT1,AKT2,FGF4,MRAS,MAP3K7IP2,FLNA,MAPK8IP3,FOS,GCK,GNA12,GRB2,NR4A1,HSPA1A,HSPA1B,HSPA5,HSPA8,HSPB1,HSPB2,FAS,IKBKB,IL1A,IL1B,IL1R1,FASLG,JUN,JUND,KRAS,STMN1,ARRB1,ARRB2,MAPT,MAX,MEF2C,MAP3K1,MAP3K4,MAP3K5,MAP3K11,MOS,MYC,ATF4,NF1,NFKB1,NGF,NRAS,NTF4,NTRK1,MINK1,PAK1,PAK2,ECSIT,PDGFB,PDGFRB,NLK,ZAK,PLA2G5,PPM1A,PPM1B,PPP3CA,PPP3CB,PPP3CC,PPP3R1,PPP3R2,PPP5C,PRKACA,PRKCB,PRKCD,PRKCG,PRKCH,PRKCZ,MAPK1,MAPK3,MAPK4,MAPK6,MAPK7,MAPK8,MAPK9,MAPK10,MAPK13,MAP2K1,MAP2K2,MAP2K5,MAP2K6,MAP2K7,TAOK1,PTPN7,PTPRR,RAC1,RAC2,RAF1,RAP1A,RAP1B,RASA1,RASA2,RASGRF2,RPS6KA3,BDNF,MAPK12,MAP2K4,SOS2,SRF,BRAF,STK3,MAP3K7,TGFB1,TGFB2,TGFB3,TGFBR1,TGFBR2,TNF,TP53,TRAF2,TRAF6,MAP3K12,IL1R2,CASP1,CASP2,CASP3,CASP6,PLA2G10,CASP7,CASP8,CASP9,PTPN5,MAP4K3,IKBKG,MAPKAPK5,MAPKSP1,MAP3K14,MAP3K6,ACVR1B,MAP3K13,MAPKAPK2,CD14,TAOK2,MAP4K4,CDC25B,CDC42 +WIKIPW Striated Muscle Contraction DES,DMD,MYBPC1,MYBPC2,MYBPC3,MYH3,MYH6,MYH8,MYL1,MYL2,MYL3,MYL4,NEB,ACTA1,ACTA2,ACTC1,ACTG1,TMOD1,TNNC2,TNNC1,TNNI1,TNNI2,TNNI3,TNNT1,TNNT2,TNNT3,TPM1,TPM2,TPM3,TPM4,TTN,VIM,ACTN4,TCAP,MYOM1,ACTN2 +WIKIPW Apoptosis Modulation by HSP70 HSPA1A,HSPA1B,FAS,MAP3K1,NFKB1,CYCS,MAPK10,BID,TNFRSF1A,CASP2,CASP3,CASP6,CASP7,CASP8,CASP9,RIPK1,FADD,AIFM1 +WIKIPW Mitochondrial Gene Expression PPARGC1B,CREB1,PPRC1,GABPA,GABPB1,HCFC1,NRF1,MYEF2,MTERFD1,TFB1M,POLRMT,PPP3CA,TFB2M,SP1,TFAM,MTERF,CAMK4 +WIKIPW IL-4 signaling Pathway HIST2H3C,ATF2,CREBBP,MAPK14,ADRBK2,ELK1,EP300,AKT1,ETS1,FES,PRKD3,FYN,GRB2,HMGA1,HIST2H3A,IL2RG,IL4,IL4R,IL13RA1,IRS1,JAK1,JAK2,JAK3,LCK,NFKB1,PAWR,PIK3CA,PIK3CD,PIK3R1,PIK3R2,PLCG1,PRKCD,PRKCI,PRKCZ,MAPK1,MAPK3,MAPK11,BAD,PTK2,PTPN6,PTPN11,RASA1,RELA,BCL2L1,RPS6KB1,SHC1,HIST2H3D,SOS1,SPI1,SRC,STAT1,STAT5A,STAT6,TYK2,CXCR4,STAM,SOCS1,IRS2,CBL,SOCS3,DOK2,SOCS5 +WIKIPW Wnt Signaling Pathway and Pluripotency FRAT1,FZD10,CREBBP,CSNK1E,CTBP1,CTBP2,CTNNB1,CTNND1,DVL1,DVL2,DVL3,EP300,ESRRB,FZD2,FBXW2,FOXD3,PPP2R3B,RACGAP1,GSK3B,APC,PPM1J,JUN,RHOA,LDLR,LRP6,LRP5,MMP7,MYC,NFYA,PAFAH1B1,LEF1,WNT16,NLK,PLAU,WNT4,POU5F1,PPARD,PPP2CA,PPP2CB,PPP2R1A,PPP2R1B,PPP2R2A,PPP2R2B,PPP2R2C,PPP2R3A,PPP2R4,PPP2R5C,PPP2R5E,PRKCA,PRKCB,PRKCD,PRKCE,PRKCH,PRKCI,PRKD1,PRKCQ,PRKCZ,MAPK9,MAPK10,CCND1,SOX2,MAP3K7,TCF7,TCF7L2,TP53,WNT1,WNT2,WNT3,WNT5A,WNT6,WNT7A,WNT7B,WNT10B,WNT11,WNT2B,WNT9B,FZD5,FZD3,NANOG,WNT10A,FOSL1,WNT5B,AXIN1,AXIN2,FZD1,FZD4,FZD6,FZD7,FZD8,FZD9,TCF7L1,NKD1,NKD2,CCND2,CCND3,WNT3A,CD44 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) ATF2,MAPK14,DAXX,DDIT3,ELK1,GRB2,HMGN1,HRAS,HSPB1,MAX,MEF2D,MAP3K1,MAP3K5,MAP3K9,MYC,PLA2G4A,MAP2K6,RAC1,RASGRF1,MAP2K4,SHC1,STAT1,MAP3K7,TGFB2,TGFBR1,TRAF2,MAPKAPK5,MKNK1,TRADD,RIPK1,RPS6KA5,MAPKAPK2,CDC42 +WIKIPW Nucleotide Metabolism ADSL,ADSS,DHFR,PRPS1L1,HPRT1,IMPDH1,NME1,NME2,OAZ1,RRM2B,POLA1,POLB,POLD1,POLG,PRPS1,PRPS2,RRM1,RRM2,SAT1,NME1-NME2,SRM +WIKIPW Eukaryotic Transcription Initiation POLR3H,ERCC2,ERCC3,POLR1A,GTF2A2,GTF2B,GTF2E1,GTF2E2,GTF2F2,GTF2H1,GTF2H2,GTF2H3,GTF2H4,ILK,MNAT1,POLR1D,POLR3K,POLR2A,POLR2B,POLR2C,POLR2E,POLR2F,POLR2G,POLR2H,POLR2I,POLR2J,POLR2K,POLR3B,POLR3E,GTF2H2B,POLR3D,TAF5,TAF6,TAF7,TAF9,TAF12,TAF13,TBP,GTF2H2C,POLR1B,CCNH +WIKIPW Oxidative Stress MAPK14,CYBA,CYP1A1,NQO1,FOS,TXN2,GCLC,GPX1,GPX3,GSR,GSTT2,HMOX1,JUNB,MAOA,MGST1,MT1X,NFIX,NFKB1,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,MAPK10,GSTT2B,SOD1,SOD2,SOD3,SP1,TXNRD1,XDH,CAT +WIKIPW Diurnally regulated genes with circadian orthologs TUBB3,CEBPB,NCKAP1,SF3A3,RBPMS,CBX3,CRY1,CRY2,EIF4G2,ETV6,MAP3K7IP2,ERC2,GFRA1,GSTM3,GSTP1,HLA-DMA,DNAJA1,HSPA8,IDI1,ARNTL,MC1R,MYF6,G0S2,AZIN1,ZFR,PER1,PIGF,PPP1R3C,PPP2CB,PSMA4,PURA,SUMO3,KLF9,BTG1,CLDN5,SUMO1,UCP3,UGP2,NCOA4,HIST1H2BN,PER2,STBD1,VAPA,QKI,CLOCK,HERPUD1,DAZAP2,NR1D2 +WIKIPW mRNA processing LOC100130109,LOC100130932,LOC100132425,SFRS14,RBM5,HNRNPR,SRRM1,SF3B4,SF3A1,CD2BP2,NXF1,PRPF8,CUGBP1,CUGBP2,SFRS13A,CPSF4,TXNL4A,PAPOLA,RNPS1,SF3A3,TMED10,CLP1,SF3B2,NUDT21,SFRS16,DDX20,U2AF2,LOC119358,CLK1,CLK2,CLK3,SFRS12,CSTF1,CSTF2,CSTF3,DDX1,DHX8,DHX9,DHX15,XRN2,DNAJC8,NCBP2,CSTF2T,DICER1,SF3B3,SF3B1,PRPF6,FUS,RBMX,CPSF1,HNRNPA1,HNRNPA2B1,HNRNPAB,HNRNPC,HNRNPD,HNRNPH1,HNRNPH2,HNRNPK,HNRNPL,HNRNPU,PRMT2,PRMT1,HNRNPM,NCBP1,NONO,YBX1,PCBP2,CDC40,CPSF3,CPSF2,POLR2A,PPM1G,PRPF40A,METTL3,PSKH1,BRUNOL4,PTBP1,CLK4,SF4,LSM2,PTBP2,RPL36A,SFPQ,SFRS1,SFRS2,SFRS3,SFRS4,SFRS5,SFRS6,SFRS7,SFRS8,TRA2B,LOC643446,LOC645691,LOC650638,LOC653155,LOC653884,LOC653889,SNRNP70,SNRPA,SNRPA1,SNRPB,SNRPB2,SNRPD1,SNRPD2,SNRPD3,SNRPE,SNRPF,SNRPG,SNRPN,SRP54,SRPK1,SRPK2,SUPT5H,U2AF1,PABPN1,SF3A2,SMC1A,SF3B5,SPOP,DHX16,PHF5A,RBM17,PRPF18,SFRS9,RNMT,RNGTT,PRPF4B,PRPF4,PRPF3,EFTUD2,SNRNP40,RBM39,DHX38 +WIKIPW MAPK Cascade MAPK14,ELK1,RASA3,HRAS,ARAF,JUN,KRAS,MAP2,MBP,MAP3K1,MAP3K3,NRAS,PLCB3,MAPK1,MAPK3,MAPK10,MAP2K1,MAP2K2,MAP2K3,MAP2K6,MAP2K7,RAF1,RRAS,MAPK12,MAP2K4,SIPA1,BRAF,MAP3K12 +WIKIPW Wnt Signaling Pathway FZD10,CSNK1E,CTNNB1,DVL1,DVL2,DVL3,FZD2,FBXW2,GSK3B,APC,JUN,RHOA,LDLR,MYC,PAFAH1B1,WNT16,PLAU,WNT4,PPP2R5C,PPP2R5E,PRKCA,PRKCB,PRKCD,PRKCE,PRKCG,PRKCH,PRKCI,PRKD1,PRKCQ,PRKCZ,MAPK9,MAPK10,RAC1,CCND1,SFRP4,WNT1,WNT2,WNT3,WNT5A,WNT6,WNT7A,WNT7B,WNT10B,WNT11,WNT2B,FZD5,FZD3,WNT10A,FOSL1,WNT5B,AXIN1,FZD1,FZD6,FZD7,FZD8,FZD9,CCND2,CCND3,WNT3A +WIKIPW cytochrome P450 CYP4F8,CYP2U1,CYP2R1,CYP4F22,CYB5A,CYP1A1,CYP1A2,CYP1B1,CYP2A6,CYP2A7,CYP3A7,CYP2A13,CYP2B6,CYP2C19,CYP2C8,CYP2C9,CYP2C18,CYP2D6,CYP2E1,CYP2F1,CYP2J2,CYP3A4,CYP3A5,CYP4A11,CYP4B1,CYP7A1,CYP8B1,CYP11A1,CYP11B1,CYP11B2,CYP17A1,CYP19A1,CYP21A2,CYP24A1,CYP26A1,CYP27A1,CYP27B1,CYP51A1,CYB5R3,CYP4Z1,CYP4X1,CYP4A22,CYP4V2,CYP2S1,CYP27C1,CYP26C1,CYP4F3,CYB5R4,CYP39A1,CYB5R2,CYB5R1,POR,CYP2W1,CYP26B1,CYP20A1,CYP4F11,CYP3A43,CYP4F12,CYB5B,CYP4F2,CYP7B1 +WIKIPW Statin Pathway PharmGKB CYP7A1,ABCA1,HMGCR,APOA1,APOA4,APOC1,APOC2,APOC3,APOE,LCAT,LDLR,LIPC,LPL,LRP1,PLTP,SOAT1,DGAT1,SCARB1 +WIKIPW EGFR1 Signaling Pathway SH2D3C,TNK2,SPRY2,TNIP1,VAV3,CEBPA,CEBPB,MAP3K2,RALBP1,LOC119358,CREB1,CRK,CRKL,MAPK14,CSK,CTNND1,AP2A1,DNM1,DUSP1,EEF1A1,EGF,EGFR,ELF3,ELK1,ELK4,EPS8,EPS15,AKT1,PTK2B,FOXO1,FOS,CBLC,GAB1,SIN3A,APPL1,GJA1,GRB2,GRB7,GRB10,GRB14,GIT1,EPN1,SH3KBP1,HTT,HDAC1,HIP1,HRAS,INPPL1,ARAF,JAK1,JAK2,JUN,JUND,ARF4,KRAS,KRT7,KRT8,KRT17,KRT18,SMAD2,SMAD3,MCF2,MAP3K1,MAP3K3,MAP3K4,MYC,ATF1,NCK1,NRAS,PEBP1,PAK1,ASAP1,NDUFA13,PIK3C2B,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,PITPNA,PLCG1,PLCG2,PLD1,PLD2,PLEC1,PLSCR1,ERRFI1,APPL2,PRKAR1A,PRKCA,PRKCB,PRKCG,PRKCI,PKN2,PRKD1,PRKCZ,MAPK1,MAPK3,MAPK7,MAPK8,MAP2K1,MAP2K2,MAP2K3,MAP2K5,MAP2K7,PTK6,PTPN6,PTPN11,PTPN12,PTPRR,PXN,EPS15L1,RAB5A,RAC1,RAF1,RALB,RALGDS,RASA1,RBBP7,RGS16,RPS6KA1,RPS6KA2,RPS6KA3,CEACAM1,SH3BGRL,SH3GL2,SH3GL3,SHC1,WNK1,LOC652460,SNCA,SNRPD2,SOS1,SOS2,SP1,SRC,STAT1,STAT2,STAT3,STAT5A,STAT5B,STXBP1,TGIF1,VAV1,VAV2,YWHAB,SHOC2,CAMK2A,HIST3H3,ITCH,CASP9,NCK2,KLF11,PTPN5,REPS1,PIK3R3,HAT1,CAV1,CAV2,RFXANK,SOCS1,CBL,CBLB,RIPK1,ZNF259,WASL,MAP3K14,SOCS3,DOK2,REPS2,MTA2,RPS6KA5,BCAR1,USP6NL,GAB2,CDC42 +WIKIPW Non-homologous end joining XRCC6,LOC389901,MRE11A,PRKDC,LOC731751,XRCC4,XRCC5,NHEJ1 +WIKIPW G1 to S cell cycle control CDK4,CDK6,CDK7,CDKN1A,CDKN1B,CDKN1C,CDKN2A,CDKN2B,CDKN2C,CDKN2D,CREB3,CREB1,ATF6B,CREB3L4,GADD45A,E2F1,E2F2,E2F3,E2F4,E2F5,E2F6,ORC6L,ORC3L,POLA2,MCM2,MCM3,MCM4,MCM5,MCM6,MCM7,MDM2,MNAT1,MYC,MYT1,ATM,ORC1L,ORC2L,ORC4L,ORC5L,PCNA,POLE,POLE2,PRIM1,PRIM2,RB1,RBL1,CCND1,RPA1,RPA2,RPA3,LOC651610,TFDP1,TFDP2,TP53,WEE1,CDC45L,CREB3L3,CCNA1,CCNB1,CCND2,CCND3,CCNE1,CCNG2,CCNH,CREB3L1,CCNE2,CDC25A +WIKIPW Inflammatory Response Pathway COL1A2,COL3A1,FN1,IFNG,IL2,IL2RA,IL2RB,IL2RG,IL4,IL4R,IL5,IL5RA,LAMA5,LAMB1,LAMB2,LAMC1,LAMC2,LCK,THBS1,THBS3,TNFRSF1A,TNFRSF1B,VTN,ZAP70,CD28,CD80,CD86,CD40,CD40LG +WIKIPW Tryptophan metabolism AFMID,ACMSD,AANAT,CYP1A1,CYP1A2,CYP1B1,CYP2A13,CYP2C18,CYP2E1,CYP2F1,CYP2J2,CYP3A4,CYP19A1,DDC,DHCR24,ECHS1,ALDH1A1,ALDH2,ALDH9A1,ALDH3A2,HAAO,ABP1,GCDH,HSD17B10,HADH,AOX1,PRMT1,IDO1,ACAT1,MAOB,MDM2,ASMT,OGDH,AADAT,UBR5,RNF25,CYP4F12,TDO2,TPH1,LOC730429,UBE3A,WARS,CAT,ALDH1A2,KYNU,CYP7B1 +WIKIPW DNA Replication POLD3,DBF4,ORC6L,ORC3L,POLA2,RPA4,MCM2,MCM3,MCM4,MCM5,MCM6,MCM7,ORC1L,ORC2L,ORC4L,ORC5L,GMNN,PCNA,POLA1,POLD1,POLD2,POLE,POLE2,MCM10,PRIM1,PRIM2,POLD4,RFC1,RFC2,RFC3,RFC4,RFC5,RPA1,RPA2,RPA3,UBA52,UBC,CDT1,CDC7,CDC45L,CDC6 +WIKIPW Hedgehog Signaling Pathway CREBBP,DYRK1A,SIN3A,GAS1,STK36,GLI1,GLI2,GLI3,IGF2,IHH,DHH,SUFU,RAB23,PTCH1,HHIP,SHH,SKI,SMO,PTCH2,CCNB1,CDC2 +WIKIPW Endochondral Ossification ADAMTS5,KIF3A,COL2A1,COL10A1,CST5,CTSL2,ACAN,AKT1,FGF2,FGFR1,FGFR3,FRZB,ALPL,GH1,GHR,GLI3,HMGCS1,IGF1,IGF1R,IGF2,IHH,MEF2C,MGP,MMP9,MMP13,DDR2,CHST11,ENPP1,CAB39,PLAT,PLAU,SLC38A2,SOX6,PRKACA,PTCH1,PTH,PTHLH,PTH1R,NKX3-2,BMP6,BMP7,BMPR1A,SOX5,SOX9,SPP1,STAT1,STAT5B,TGFB1,TGFB2,THRA,TIMP3,VEGFA,CALM1,CALM2,CALM3,IFT88,SCIN,RUNX2,RUNX3,SERPINH1,FGF18,ADAMTS4,ADAMTS1,HDAC4 +WIKIPW Cytoplasmic Ribosomal Proteins FAU,RPL13A,RPL36,RPS6KA6,HNRNPH2,RPSA,RPL10A,RPL3,RPL3L,RPL4,RPL5,RPL6,RPL7,RPL7A,RPL8,RPL9,RPL10,RPL11,RPL12,RPL13,RPL15,RPL17,RPL18,RPL18A,RPL19,RPL21,RPL22,RPL23A,RPL24,RPL26,RPL27,RPL30,RPL27A,RPL28,RPL29,RPL31,RPL32,RPL34,RPL35A,RPL37,RPL37A,RPL38,RPL39,RPL41,RPL36A,RPLP0,RPLP1,RPLP2,RPS2,RPS3,RPS3A,RPS4X,RPS4Y1,RPS5,RPS6,RPS6KA1,RPS6KA2,RPS6KA3,RPS6KB1,RPS6KB2,RPS7,RPS8,RPS9,RPS10,RPS11,RPS12,RPS13,RPS14,RPS15,RPS15A,RPS16,RPS17,RPS18,RPS19,RPS20,RPS21,RPS23,RPS24,RPS25,RPS26,RPS27,RPS27A,RPS29,LOC653881,UBA52,RPL14,RPL23,MRPL19 +WIKIPW Insulin Signaling SGK2,FLOT1,CAP1,SORBS1,MAP3K2,EHD1,KIF3A,MAP4K5,MAP4K1,SNX26,MAP3K8,CRK,MAPK14,EGR1,EIF4E,EIF4EBP1,ELK1,AKT1,AKT2,FOXO1,FOXO3,FLOT2,RHOQ,FOS,CBLC,SGK3,MTOR,STXBP4,GAB1,SHC2,RPS6KA6,GRB2,GRB10,GRB14,RAPGEF1,GSK3A,GSK3B,GYG1,GYS1,GYS2,EHD2,PIK3R4,HRAS,IGF1R,IKBKB,INPP4A,INPPL1,INSR,IRS1,JUN,ARF1,KIF5B,ARF6,LIPE,MAP3K1,MAP3K3,MAP3K4,MAP3K5,MAP3K9,MAP3K10,MAP3K11,MYO1C,MINK1,ENPP1,PDPK1,PFKL,PFKM,PIK3C2A,PIK3C2G,PIK3C3,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,SHC3,PPP1R3A,PRKAA1,PRKAA2,PRKCA,PRKCB,PRKCD,PRKCH,PRKCI,PRKCQ,PRKCZ,MAPK1,MAPK3,MAPK4,MAPK6,MAPK7,MAPK8,MAPK11,MAPK9,MAPK10,MAPK13,MAP2K1,MAP2K2,MAP2K3,MAP2K5,MAP2K6,MAP2K7,PTEN,RHOJ,PTPN1,TRIB3,PTPN11,PTPRF,RAB4A,MAP4K2,RAC1,RAC2,RAF1,REG1A,RHEB,RPS6KA1,RPS6KA2,RPS6KA3,RPS6KB1,RPS6KB2,RRAD,MAPK12,MAP2K4,SGK1,SHC1,SLC2A1,SLC2A4,SNAP25,SOS1,SOS2,SRF,STX4,STXBP1,STXBP2,STXBP3,VAMP2,MAP3K7,TSC1,TSC2,XBP1,MAP3K12,IRS4,MAP4K3,PIK3R3,SOCS1,IRS2,CBL,CBLB,SNAP23,RPS6KA4,MAP3K14,SOCS3,MAP3K6,MAP3K13,RPS6KA5,CYTH3,MAP4K4,TBC1D4 +WIKIPW IL-2 Signaling Pathway STAM2,GNB2L1,CHUK,CISH,CREB1,CRK,CRKL,MAPK14,EIF4E,AKT1,ETS1,ETS2,PTK2B,FOXO3,PLCB1,MTOR,FYN,GRB2,NR3C1,HSP90AA1,ICAM1,IFNA1,IL2,IL2RA,IL2RB,IL2RG,IRS1,JAK1,JAK2,JAK3,KRAS,LCK,LYN,NFKB1,YBX1,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,PRKCZ,MAPK1,MAPK3,MAPK8,MAPK9,MAP2K1,MAP2K2,PTPN6,PTPN11,RAF1,BCL2,RELA,RPS6KB1,SHB,SHC1,SOS1,STAT1,STAT3,STAT5A,STAT5B,SYK,TERT,VAV1,STAM,MKNK1,SOCS1,IRS2,EIF3B,CBL,SOCS3,NMI,MAPKAPK2,ITM2B,CD53,GAB2 +WIKIPW Steroid Biosynthesis F13B,HSD3B1,HSD3B2,HSD17B1,HSD17B3,HSD17B2,HSD17B4,HSD17B7 +WIKIPW Urea cycle and metabolism of amino groups CKM,CPS1,NAGS,GAMT,GATM,GLUD1,ARG1,ARG2,ASL,ASS1,OAT,ODC1,OTC,PYCR1,ALDH18A1,PYCRL,SMS,SRM,ACY1 +WIKIPW Glycogen Metabolism GBE1,PPP2R3B,GSK3A,GSK3B,GYG1,GYS1,GYS2,PGM1,PHKA1,PHKA2,PHKB,PHKG1,PHKG2,PPP2CA,PPP2CB,PPP2R1A,PPP2R1B,PPP2R2A,PPP2R2B,PPP2R2C,PPP2R3A,PPP2R4,PPP2R5A,PPP2R5B,PPP2R5C,PPP2R5D,PPP2R5E,PYGB,PYGL,PYGM,UGP2,CALM1,CALM2,CALM3,GYG2 +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GRM1,GRM2,GRM3,GRM4,GRM5,GRM6,GRM7,GRM8,GPRC5B,GPRC5D,GPRC5C,CASR,GPRC5A,GABBR2 +WIKIPW Regulation of Actin Cytoskeleton ARPC5,ABI2,WASF2,PAK4,BAIAP2,GNA13,CFL1,CFL2,NCKAP1,CHRM1,CHRM2,CHRM3,CHRM5,PIP5KL1,CRK,CSK,DOCK1,EGF,EGFR,F2,F2R,FGD1,FGF1,FGF2,FGF3,FGF4,FGF5,FGF6,FGF7,FGF8,FGF9,FGF10,FGF11,FGF12,FGF13,FGF14,FGFR1,FGFR3,FGFR2,FGFR4,RRAS2,MRAS,FN1,PIP5K1C,PIK3R5,FGF20,FGF21,CYFIP2,FGF22,GNA12,GIT1,GRLF1,GSN,PIK3R4,APC,ITGA1,KRAS,RHOA,LIMK1,MOS,MSN,MYH10,MYL1,MYL3,MYLK,PPP1R12A,NRAS,PAK1,PAK2,PAK3,ARHGEF4,PDGFA,PDGFB,PDGFRA,PDGFRB,PFN1,PIK3C2A,PIK3C2G,PIK3C3,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,PIP4K2A,SSH1,SSH3,ENAH,MAPK1,MAPK3,MAPK4,MAPK6,GNG12,MAP2K1,MAP2K2,PAK6,PAK7,PTK2,PXN,RAC1,RAC2,RAC3,RAF1,RDX,ACTB,ROCK1,BDKRB1,RRAS,BDKRB2,SLC9A1,SOS1,SOS2,BRAF,ACTG1,TMSB4X,LOC727758,VAV1,VCL,VIL1,EZR,WAS,PIP4K2C,RASSF7,FGF23,PIP5K1A,PIP5K1B,PIP4K2B,PIK3R3,SSH2,ACTN1,FGF18,FGF17,IQGAP1,ARHGEF7,WASF1,ARHGEF1,CD14,ARHGEF6,ROCK2,BCAR1,CDC42 +WIKIPW Hypertrophy Model ADAM10,DUSP14,HBEGF,EIF4E,EIF4EBP1,MSTN,ANKRD1,IFNG,IFRD1,CYR61,IL1A,IL1R1,IL18,JUND,MYOG,ATF3,ZEB1,VEGFA,NR4A3,WDR1 +WIKIPW amino acid conjugation of benzoic acid GLYATL2,ACSS2,GLYATL1 +WIKIPW G13 Signaling Pathway GNA13,CFL1,CFL2,IQGAP2,CIT,DIAPH1,RHOA,ARHGDIB,ARHGDIG,LIMK1,MAP3K4,MYBPH,MYL1,PAK3,PFN1,PIK3CA,PIK3CB,PIK3CD,PIK3R2,PIP4K2A,PPP1CB,PKN1,MAPK10,SH3RF1,RAC1,ROCK1,RPS6KB1,RTKN,LOC727758,WAS,CALM1,CALM2,CALM3,RHPN2,IQGAP1,WASL,ARHGEF1,ROCK2,CDC42 +WIKIPW Acetylcholine Synthesis CHAT,CHKA,ACHE,PCYT1A,PDHA1,PDHA2 +WIKIPW Id Signaling Pathway CTNNB1,EGF,ELK1,ELK3,ELK4,FLT1,HES1,ID1,ID2,ID3,ID4,IFI16,IGF1,IGF1R,IRS1,KDR,SMAD1,SMAD3,SMAD4,SMAD5,MYF5,MYF6,MYOD1,MYOG,ATF3,NFKB1,NGF,PAX2,PAX5,PSMD4,RB1,RBL1,RBL2,RELA,BMP2,BMP6,BMPR2,SREBF1,TCF3,TCF7L2,TCF12,TERT,TGIF1,VEGFA,PAX8,CCNA2,CCNE1,MSC,ACVRL1,CD40LG +WIKIPW Cytokines and Inflammatory Response (BioCarta) CSF2,CSF3,CXCL1,CXCL2,HLA-DRA,HLA-DRB1,IFNB1,IFNG,IL1A,IL1B,IL2,IL4,IL5,IL6,IL10,IL12B,IL13,IL15,PDGFA,TGFB1,TNF,CD4 +WIKIPW Mismatch repair LIG1,MLH1,MSH2,PCNA,POLD1,RFC1,RPA1,EXO1 +WIKIPW Glycolysis and Gluconeogenesis DLD,ENO1,ENO2,ENO3,FBP1,ALDOA,ALDOB,ALDOC,G6PC,GAPDH,GAPDHS,GCK,GOT1,GOT2,GPI,HK1,HK2,HK3,LDHA,LDHB,LDHC,MDH1,MDH2,PC,PCK1,PDHA1,PDHA2,PDHB,PFKL,PFKM,PFKP,PGAM1,PGAM2,PGK1,PGK2,PKLR,PKM2,LOC652797,TPI1,PDHX,FBP2,LDHAL6B +WIKIPW Calcium Regulation in the Cardiac Cell RGS19,RGS14,GNB5,ADCY1,ADCY2,GJB6,ADCY3,YWHAQ,ADCY5,PKIG,ADCY6,CHRM1,CHRM2,ADCY7,CHRM3,CHRM5,ADCY8,ADCY9,GJB4,ADRA1D,ADRA1B,ADRA1A,ADRB1,ADRB2,ADRB3,ADCY4,FKBP1A,RGS17,GJA1,GJA3,GJA4,GJA5,GJA8,GJB1,GJB2,GJB3,GJB5,GNA11,GNAI1,GNAI2,GNAI3,GNAO1,GNAQ,GNAS,GNAZ,GNB1,GNB2,GNB3,GNG3,GNG4,GNG5,GNG7,GNG11,GNGT1,SFN,GRK4,GRK5,GRK6,ANXA6,ITPR1,ITPR2,ITPR3,KCNB1,KCNJ3,KCNJ5,ARRB1,ARRB2,ATP1A4,ATP1B1,ATP1B2,ATP1B3,FXYD2,ATP2A2,ATP2A3,ATP2B1,ATP2B2,ATP2B3,GNG13,PLCB3,PLN,GNG2,PRKACA,PRKACB,PKIA,PKIB,PRKAR1A,PRKAR1B,PRKAR2A,PRKAR2B,PRKCA,PRKCB,PRKCD,PRKCE,PRKCG,PRKCH,PRKD1,PRKCQ,PRKCZ,GNG12,GJC2,GJD2,GNB4,RGS1,RGS2,RGS3,RGS4,RGS7,RGS10,RGS16,RYR1,RYR2,RYR3,RGS18,SLC8A1,SLC8A3,YWHAB,YWHAE,YWHAG,YWHAH,YWHAZ,CACNA1A,CACNA1B,CACNA1C,CACNA1D,CACNA1E,CACNA1S,CACNB1,CACNB3,CALM1,CALM2,CALM3,GJA9,CALR,CAMK4,CAMK2A,CAMK2B,CAMK2D,CAMK2G,CASQ1,CASQ2,RGS5,CAMK1,RGS20,RGS11,RGS9,GNG8,RGS6 +WIKIPW Complement Activation, Classical Pathway CD55,MASP1,LOC653879,C1QA,C1QB,C1QC,C1S,C2,C3,C4A,C4B,C5,C6,C7,C8A,C8B,C9 +WIKIPW Biogenic Amine Synthesis COMT,AANAT,DBH,DDC,GAD1,GAD2,HDC,MAOA,ACHE,ASMT,PAH,PNMT,TH,TPH1 +WIKIPW ACE Inhibitor Pathway AGT,AGTR1,AGTR2,KNG1,NOS3,REN,BDKRB2 +WIKIPW Complement and Coagulation Cascades KEGG MASP2,CPB2,CR1,CR2,A2M,F2,F2R,F3,F5,F7,F8,F9,F10,F12,F13B,FGB,SERPIND1,KLKB1,KNG1,CD46,SERPINC1,SERPINE1,SERPINA5,SERPINA1,PLAT,PLAU,PLAUR,PLG,SERPINF2,PROC,PROS1,MASP1,BDKRB1,LOC653879,TFPI,THBD,SERPING1,C1QA,C1QB,C1QC,C1S,C2,C3,C3AR1,C5AR1,C6,C7,C8G,C9,VWF +WIKIPW TGF Beta Signaling Pathway CREBBP,CTNNB1,EGF,ENG,EP300,FKBP1A,ZNF423,FOS,BAMBI,HRAS,IFNG,INHBA,ITGB6,JAK1,JUN,LIF,LTBP1,SMAD1,SMAD2,SMAD3,SMAD4,SMAD5,SMAD6,SMAD7,SMAD9,NFKB1,SERPINE1,LEF1,MAPK3,MAPK9,SKI,SKIL,BMP4,SPP1,STAT1,STAT3,TFE3,TGFB1,TGFBR1,TGFBR2,TGFBR3,TGIF1,THBS1,TNF,WNT1,RUNX2,RUNX3,FOXH1,NOG,ZFYVE9,ZEB2 +WIKIPW Heme Biosynthesis ALAD,ALAS1,ALAS2,FECH,HMBS,PPOX,UROD,UROS +WIKIPW Monoamine GPCRs CHRM2,CHRM3,CHRM5,ADRA1D,ADRA1B,ADRA1A,ADRA2A,ADRA2B,ADRA2C,ADRB1,ADRB2,ADRB3,DRD1,DRD2,DRD3,DRD4,DRD5,HRH1,HRH2,HTR1A,HTR1B,HTR1D,HTR1E,HTR1F,HTR2A,HTR2B,HTR2C,HTR4,HTR5A,HTR6,HTR7 +WIKIPW EPO Receptor Signaling CISH,EPO,EPOR,AKT1,GRB2,IRS1,JAK2,PDK1,PIK3CG,MAPK1,MAPK3,MAP2K1,MAP2K2,PTPRC,RAF1,RASA1,SHC1,SOS1,SRC,STAT1,STAT3,STAT5A,STAT5B,SOCS1,IRS2 +WIKIPW Delta-Notch Signaling Pathway ADAM10,CNTF,CNTFR,CNTN1,ZFPM1,JAG1,DTX1,EGF,EGFR,EP300,AKT1,FHL1,SNW1,SPEN,NCSTN,HEY1,HEY2,POFUT1,SIN3A,DLL1,GSK3B,HDAC1,HDAC2,HES1,APP,RBPJ,JAG2,JAK2,JUN,HES5,LCK,LFNG,SMAD1,SMAD3,SMAD4,MAGEA1,MEF2C,MFNG,ASCL1,NFKBIA,NOTCH1,NOTCH2,NOTCH3,NOTCH4,NOV,FURIN,APH1A,LEF1,PIK3R1,PIK3R2,DLL4,FBXW7,HES6,MAML3,WDR12,PSENEN,MAPK1,MAPK3,PSEN1,PSEN2,HIVEP3,RELA,RING1,SKP1,SKP2,STAT3,ADAM17,TCF3,TLE1,TP53,YY1,ZFP91,APH1B,ITCH,MAML2,CUL1,NUMB,SAP30,KAT2B,NUMBL,CIR1,NCOR1,NCOR2,MAML1,RBX1 +WIKIPW Senescence and Autophagy CDKN1B,CDKN2A,CEBPB,ATG7,COL1A1,MAPK14,E2F1,FN1,MTOR,CXCL1,GSK3B,GSN,HRAS,IFI16,IFNB1,IFNG,IGF1,IGF1R,IGFBP5,IGFBP7,IL3,IL6,IL6R,IL6ST,IL8,ING1,IRF1,IRF5,IRF7,LAMP2,MDM2,MLL,SERPINE1,SERPINB2,SH3GLB1,PLAT,MAPK1,MAP2K1,MAP2K3,PTEN,RAF1,RB1,RNASEL,BMI1,BMP2,SPARC,BRAF,TGFB1,THBS1,TP53,VTN,ULK1,MAP1LC3A,BECN1,CREG1,ATG5,CXCL14,CD44,CDC25B +WIKIPW Type II interferon signaling (IFNG) HIST4H4,CYBB,IFI6,GBP1,HLA-B,HLA-C,ICAM1,IRF8,IFIT2,IFNA2,IFNB1,IFNG,IFNGR1,IFNGR2,IL1B,CXCL10,IRF1,IRF2,IRF4,JAK1,JAK2,CIITA,CXCL9,NOS2,OAS1,HIST2H4B,PRKCD,EIF2AK2,PSMB9,PTPN11,REG1A,SPI1,STAT1,STAT2,TAP1,HIST1H4I,HIST1H4A,HIST1H4D,HIST1H4F,HIST1H4K,HIST1H4J,HIST1H4C,HIST1H4H,HIST1H4B,HIST1H4E,HIST1H4L,HIST2H4A,SOCS1,SOCS3,ISG15 +WIKIPW Oxidative phosphorylation ATP5H,ATP5L,NDUFA11,ATP5S,GZMB,NDUFS7,NDUFA2,NDUFA3,NDUFA4,NDUFA5,NDUFA6,NDUFA7,NDUFA8,NDUFA9,NDUFA10,NDUFAB1,NDUFB1,NDUFB2,NDUFB4,NDUFB5,NDUFB6,NDUFB7,NDUFB8,NDUFB9,NDUFB10,NDUFC1,NDUFC2,NDUFS1,NDUFS2,NDUFS3,NDUFV1,NDUFS4,NDUFS5,NDUFS6,NDUFS8,NDUFV2,NDUFV3,ATP5A1,ATP5B,ATP5D,ATP5E,ATP5F1,ATP5G1,ATP5G2,ATP5G3,ATP5I,ATP5J,ATP6AP1,ATP5O,NDUFA4L2,ATP5J2 +WIKIPW Hypothetical Network for Drug Addiction NISCH,ADCY8,CREB1,DRD1,DRD2,DRD4,ZHX2,GRIA1,GRIA2,GRIA3,GRIA4,GRIN1,GRIN2A,GRIN2B,GRIN2C,GRIN2D,GRM1,GRM5,GJB7,TERF2IP,PPA1,PRKACA,PRKCE,MAPK1,MAPK3,MAP2K1,MAP2K2,ACTA1,CAMK4,CAMK2B,KRIT1 +WIKIPW ErbB signaling pathway CDKN1A,CDKN1B,PAK4,NRG3,CRK,NRG4,HBEGF,EGF,EGFR,EIF4EBP1,ELK1,ERBB2,ERBB3,ERBB4,EREG,PIK3R5,CBLC,MTOR,ABL1,GAB1,SHC2,GRB2,GSK3B,NRG1,HRAS,ARAF,JUN,AREG,MYC,NCK1,PLCG1,PRKCA,MAPK1,MAPK8,MAP2K1,MAP2K7,BAD,PTK2,RPS6KB1,SOS1,SRC,STAT5A,BTC,TGFA,AREGB,CAMK2A,NRG2 +WIKIPW Arachidonate Epoxygenase / Epoxide Hydrolase CYP2C8,CYP2C9,CYP2J2,EPHX2,GSTP1,COX5A +WIKIPW Catalytic cycle of mammalian FMOs FMO2,FMO3,FMO4,FMO5 +WIKIPW T Cell Receptor Signaling Pathway SH2B3,SH2D3C,WASF2,RASGRP2,VAV3,CEBPB,KHDRBS1,GRAP,YWHAQ,MAP4K1,FCRL3,CISH,CREB1,CREBBP,CRK,CRKL,CTNNB1,NFAM1,DLG1,DNM2,DOCK2,DTX1,DUSP3,TUBB,AKT1,PTK2B,CABIN1,FOS,CD2AP,ABL1,FYB,FYN,PRKD2,PTPN22,LAT,SIT1,STK39,GRB2,RAPGEF1,DBNL,ITK,ITPR1,JAK3,JUN,LCK,LCP2,ARHGDIB,LYN,MAP3K1,MUC1,NCK1,NCL,NEDD9,NFATC2,PAK1,DEF6,TRAT1,EVL,HDAC7,ACP1,PIK3R1,PIK3R2,PLCG1,LAX1,LIME1,PPP3CB,ENAH,PAG1,PRKCQ,MAPK1,MAPK3,MAPK7,MAP2K1,MAP2K2,PTK2,PTPN3,PTPN6,PTPN11,PTPN12,PTPRC,PTPRH,PTPRJ,PXN,RAC2,RAP1A,RASA1,SH3BP2,SHB,SHC1,SLA,SOS1,SOS2,SRC,BRAF,STAT1,STAT5A,STAT5B,SYK,TUBA4A,TXK,VASP,VAV1,VAV2,WAS,WIPF1,ZAP70,SLA2,CARD11,SKAP1,CBL,CBLB,RIPK2,ARHGEF7,BCL10,SKAP2,SH2D2A,PSTPIP1,UNC119,CD2,CD3D,CD3E,CD3G,CD247,CD4,CD5,CD8A,GRAP2,HOMER3,ARHGEF6,GIT2,GAB2,CDC42 +WIKIPW Polyol pathway AKR1B1,KHK,SORD +WIKIPW Tamoxifen metabolism CYP1A2,CYP1B1,CYP2A6,CYP2C19,CYP2C8,CYP2C9,CYP2D6,CYP2E1,CYP3A4,CYP3A5,FMO1,FMO3,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,SULT1E1,SULT1A1,SULT2A1,UGT2B7 +WIKIPW sulfation SULT4A1,SULT1C4,SULT1B1,GSR,SULT6B1,SULT1C3,SULT1A4,SULT1E1,SULT1A2,SULT1A1,SULT1A3,SULT1C2,SULT2B1,SULT2A1,PAPSS2,PAPSS1 +WIKIPW Arylamine metabolism CYP1A2,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,SULT1A2,SULT1A1,NAT1 +WIKIPW Benzo(a)pyrene metabolism AKR1C4,CYP1A1,CYP1B1,CYP3A4,AKR1C1,AKR1C2,EPHX1,AKR1C3 +WIKIPW Estrogen metabolism CYP1A1,CYP1A2,CYP1B1,CYP3A4,NQO1,GSTA1,GSTM1,STS,ARSD,ARSE,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,SULT1E1,SULT1A1,UGT2B7 +WIKIPW Glucuronidation UGT2A1,HK1,PGM1,PGM3,PGM5,UGT2B28,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,PGM2,UGDH,UGP2,UGT2B4,UGT2B7,UGT2B10,UGT2B15,UGT2B17,UGT2A3 +WIKIPW Aflatoxin B1 metabolism CYP2A13,CYP3A4,EPHX1,AKR7A3,GSTM1,GSTT1,AKR7A2 +WIKIPW metapathway biotransformation CHST4,GLYAT,AKR1A1,UGT2B11,CYP46A1,UGT2A1,AKR1C4,INMT,CYP4F8,CHST14,CYP2U1,GSTO2,CYP2R1,NAT12,CYP4F22,COMT,CYP1A1,CYP1A2,CYP1B1,CYP2A6,CYP2A7,CYP3A7,CYP2A13,CYP2B6,CYP2C19,CYP2C8,CYP2C9,CYP2C18,CYP2D6,CYP2E1,CYP2F1,CYP2J2,CYP3A4,CYP3A5,CYP4B1,CYP7A1,CYP8B1,CYP11A1,CYP11B1,CYP11B2,CYP17A1,CYP19A1,CYP21A2,CYP24A1,CYP26A1,CYP27A1,CYP27B1,CYP51A1,AKR1C1,AKR1C2,CHST13,CYP4Z1,EPHX1,EPHX2,GLYATL2,GSTA5,HS3ST5,AKR7A3,AKR1B1,FMO1,FMO2,FMO3,FMO4,FMO5,CHST5,NAT6,SULT4A1,CYP4X1,NAT9,HS6ST3,SULT1C4,SULT1B1,CYP4V2,GPX1,GPX2,GPX3,GPX4,GPX5,GSR,GSS,GSTA1,GSTA2,GSTA3,GSTA4,GSTM1,GSTM2,GSTM3,GSTM4,GSTM5,GSTP1,GSTT1,GSTT2,GSTZ1,CYP2S1,HNMT,NDST1,CYP27C1,NAT8L,CYP26C1,GSTK1,SULT6B1,CYP4F3,CHST6,MGST1,MGST2,MGST3,AKR1B15,SULT1C3,SULT1A4,NNMT,CHST11,NAT5,CYP39A1,UGT2B28,UGT1A10,UGT1A8,UGT1A7,UGT1A6,UGT1A5,UGT1A9,UGT1A4,UGT1A1,UGT1A3,CYP2W1,NAT10,CHST12,CHST7,CYP26B1,BAAT,AKR1B10,NAT14,CYP20A1,CYP4F11,GAL3ST2,CHST8,NDST4,HS3ST6,CYP3A43,GSTT2B,CYP4F12,AKR1D1,SULT1E1,SULT1A2,SULT1A1,SULT1A3,SULT1C2,SULT2B1,SULT2A1,TPMT,UGT2B4,UGT2B7,UGT2B17,KCNAB1,GAL3ST4,UGT2A3,GSTCD,NAT11,NAT13,CHST9,NDST2,KCNAB2,CYP4F2,CHST1,AKR7A2,AKR1C3,GAL3ST3,NAT1,HS6ST2,NAT8,KCNAB3,GLYATL1,NDST3,HS6ST1,CYP7B1,CHST2,GSTO1,CHST3,CHST10,GAL3ST1,HS2ST1,HS3ST4,HS3ST3B1,HS3ST3A1,HS3ST2,HS3ST1 +WIKIPW methylation COMT,MAT2B,HNMT,MAT1A,MAT2A,NNMT,PNMT,TPMT +WIKIPW SIDS Susceptibility Pathways CTCF,PPARGC1A,CHRNA4,CHRNB2,CHRNB4,ADCYAP1,ADCYAP1R1,TPH2,PPARGC1B,CREB1,DDC,ECE1,EN1,EP300,ESR2,FOXM1,GATA2,GATA3,GNB3,NR3C1,TLX3,HADHA,HES1,HSPD1,HTR1A,HTR2A,ACADM,IL6,IL6R,IL8,IL10,AR,KCNH2,KCNQ1,HES5,PHOX2A,LMX1B,MAOA,ASCL1,NFKB1,NFYA,NKX2-2,NKX3-1,YBX1,POU3F2,FEV,CC2D1A,AVP,CDCA7L,REST,RET,RORA,RYR2,SCN5A,SLC6A4,SLC9A3,SP1,TNF,TPH1,C4A,C4B,VIPR1,VIPR2,CAV3,PHOX2B +WIKIPW DNA damage response RAD50,CDK2,CDK4,CDK5,CDK6,CDKN1A,CDKN1B,GADD45G,TLK2,CHEK1,CHEK2,HUS1B,CREB1,DDB2,GADD45A,E2F1,FANCD2,ABL1,BBC3,SESN1,SFN,H2AFX,APAF1,FAS,MRE11A,MYC,GADD45B,NBN,ATM,RRM2B,PMAIP1,PML,CYCS,ATR,LRDD,PRKDC,BAX,RAD1,RAD9A,RAD17,RAD51,RAD52,RB1,CCND1,RFC1,RPA2,BID,TP53AIP1,LOC648152,LOC651610,LOC651921,BRCA1,TP53,LOC731751,SMC1A,CASP3,CASP8,ATRIP,CASP9,CCNB3,TNFRSF10B,CCNB1,CCND2,CCND3,CCNE1,CCNB2,CCNE2,CDC2,TLK1,CDC25A,CDC25C +WIKIPW DNA damage response (only ATM dependent) BCL2L11,FRAT1,CDKN1A,CDKN1B,CDKN2A,CTNNB1,DVL1,DVL2,DVL3,MLKL,ERBB2,AKT1,AKT2,FOXO3,ABL1,G6PC,BBC3,GRB2,GSK3B,HMGB1,APC,FASLG,INSR,IRS1,JUN,RHOA,LDLR,SMAD3,SMAD4,MDM2,MAP3K1,MAP3K4,MYC,ATM,NFKB1,NFKB2,PCK2,WNT16,PDK1,PLAU,PMAIP1,WNT4,PPP2R5C,PPP2R5E,MAPK1,MAPK8,MAPK9,MAPK10,BAD,PTEN,BAK1,BAX,RAC1,RAC2,RAC3,RBL2,CCND1,BCL2,BCL6,SCP2,BIK,SHC1,LOC651610,SOD2,SOS1,SOS2,MAP3K7,TGFB1,TP53,TP73,WNT1,WNT2,WNT3,WNT5A,WNT6,WNT7A,WNT7B,WNT10B,WNT11,WNT2B,WNT10A,FOSL1,WNT5B,AXIN1,CAT,CCND2,CCND3,WNT3A,CCNG2,CDC42 +WIKIPW estrogen signalling HDAC5,CDK7,CHUK,CREB1,CREBBP,MAPK14,ELK1,EP300,ERCC2,AKT1,ERCC3,ESR1,FOS,SHC2,SIN3A,GNAS,GNB1,GNGT1,GPER,GRB2,GTF2A2,GTF2B,GTF2E1,GTF2E2,GTF2F2,GTF2H1,GTF2H2,GTF2H3,GTF2H4,HDAC1,HDAC2,HRAS,IKBKB,ILK,JUN,MNAT1,NFKB1,HDAC7,PIK3CA,POLR2A,POLR2B,POLR2C,POLR2E,POLR2F,POLR2G,POLR2H,POLR2I,POLR2J,POLR2K,PRKACA,HDAC8,MAPK1,MAPK9,MAP2K1,CCND1,BCL2,GTF2H2B,SOS1,SP1,SRC,BRCA1,BRAF,TAF5,TAF6,TAF7,TAF9,TAF12,TAF13,TBP,GTF2H2C,IKBKG,HDAC3,CCNH,NCOR1,HDAC4 +WIKIPW Retinol metabolism (BiGCaT, NuGO) ADH1A,ADH4,CRABP1,CRABP2,RDH12,CYP2E1,RDH10,CYP26A1,ALDH1A1,ALDH1A3,NPC1L1,LPL,RDH8,BCMO1,RETSAT,CYP26B1,RARA,RARB,RARG,RBP1,RBP2,RBP4,RDH5,RLBP1,RXRA,RXRB,RXRG,ABCG5,ABCG8,SULT1A1,SULT2B1,ALDH1A2,LRAT,DHRS3,CD36,SCARB1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway CREB1,MAPK14,ELK1,ELK4,FOS,GNAI1,GNAI2,GNAI3,GNAO1,HTR1A,HTR1B,HTR1D,HTR1E,HTR1F,ITPR1,RHOA,MAP3K1,PDPK1,PIK3CA,MAPK1,MAPK3,MAP2K1,MAP2K2,MAP2K3,MAP2K6,RAP1A,RASGRF1,SRF,BRAF,MAPKAPK3,RPS6KA5,MAPKAPK2 +WIKIPW VandyConte::Blakely Network UNC13B,HRH3,FBXO32,TPH2,ADORA2A,MAPK14,DBH,AGT,AMPH,IL1B,IL1R1,ITGB3,ACHE,NOS1,TNFRSF11B,PPP2CB,PVRL2,RBL2,SLC5A7,SLC6A1,SLC6A2,SLC6A3,SLC6A4,STX1A,SYN1,TDO2,TGFB1I1,TH,TNF,TSC2,CDC25C +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling ELK1,ELK4,GATA4,GNAQ,HTR2A,HTR2B,HTR2C,ITPR1,MAPK1,MAPK3,MAP2K1,MAP2K2,RAF1,RASGRF1,SRF,MAPKAPK2 +WIKIPW Serotonin Receptor 2 -> STAT3 signaling HTR2A,JAK2,STAT3 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling EGR1,ELK1,ELK4,GNAS,NR3C1,HTR4,HTR6,HTR7,ATF1,MAPK1,MAPK3,MAP2K1,MAP2K2,RAP1A,SRF,BRAF,RPS6KA5,MAPKAPK2 +WIKIPW Toll-like receptor signaling pathway TLR6,MAP3K7IP1,TIRAP,CHUK,MAP3K8,MAPK14,TICAM1,AKT1,AKT2,MAP3K7IP2,FOS,PIK3R5,LY96,TBK1,IFNA1,IFNA2,IFNA4,IFNA5,IFNA6,IFNA7,IFNA8,IFNA10,IFNA13,IFNA14,IFNA16,IFNA17,IFNA21,IFNAR1,IFNAR2,IFNB1,TICAM2,IKBKB,IL1B,IL6,IL8,IL12A,IL12B,CXCL10,IRAK1,IRF3,IRF5,IRF7,JUN,LBP,CXCL9,MYD88,NFKB1,NFKB2,NFKBIA,TMED7,IRAK4,TLR7,TLR8,PIK3CA,PIK3CB,PIK3CD,PIK3CG,PIK3R1,PIK3R2,TLR9,TOLLIP,MAPK1,MAPK3,MAPK8,MAPK11,MAPK9,MAPK10,MAPK13,MAP2K1,MAP2K2,MAP2K3,MAP2K6,MAP2K7,RAC1,RELA,MAPK12,CCL3,CCL4,CCL5,CXCL11,MAP2K4,SPP1,STAT1,MAP3K7,TLR1,TLR2,TLR3,TLR4,TLR5,TNF,TRAF3,TRAF6,CASP8,PIK3R3,IKBKG,RIPK1,FADD,CD14,CD80,CD86,CD40,IKBKE +WIKIPW TCA Cycle DLAT,DLD,DLST,FH,LOC283398,IDH2,IDH3A,IDH3B,IDH3G,MDH1,MDH2,OGDH,ACO2,PC,PDHA1,PDHA2,PDHB,PDK1,PDK2,PDK3,PDK4,PDP1,PDP2,SDHA,SDHB,SDHC,SDHD,PDHX,SUCLG2,SUCLG1,SUCLA2 +WIKIPW Nucleotide GPCRs LTB4R,ADORA1,ADORA2A,ADORA2B,ADORA3,LPAR4,P2RY1,P2RY2,P2RY4,P2RY6 +WIKIPW Prostaglandin Synthesis and Regulation EDN1,EDNRA,EDNRB,ANXA8L2,ANXA1,ANXA2,ANXA3,ANXA4,ANXA5,ANXA6,HPGD,HSD11B1,HSD11B2,PLA2G4A,PRL,PTGDR,PTGDS,PTGER1,PTGER2,PTGER3,PTGER4,PTGFR,PTGIR,PTGIS,PTGS1,PTGS2,S100A6,S100A10,TBXAS1,SCGB1A1 diff --git a/src/dataimport/networks/out_pathway_members_list.tsv b/src/dataimport/networks/out_pathway_members_list.tsv new file mode 100644 index 0000000..4087d9b --- /dev/null +++ b/src/dataimport/networks/out_pathway_members_list.tsv @@ -0,0 +1,96553 @@ +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html LDHC +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html LDHB +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html LDHA +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PGAM1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ADH1C +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PGAM2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ADH1B +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ADH1A +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ACSS2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PDHB +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ACSS1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PGAM4 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PDHA2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PDHA1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html LDHAL6B +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PFKL +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html LDHAL6A +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html FBP1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PFKP +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ALDH3B2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html FBP2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PFKM +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ALDH3B1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PGM2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html G6PC +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ALDH7A1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ALDH1B1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PKM2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PGM1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html DLD +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PKLR +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ALDH9A1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ALDOA +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ALDOC +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ALDOB +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ADH5 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html HK2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html HK1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ADH6 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ADH7 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ALDH3A2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html G6PC2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ALDH3A1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html GALM +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html TPI1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html AKR1A1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ADH4 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html HK3 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ALDH1A3 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ENO2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ENO3 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html GAPDH +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ENO1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html BPGM +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html DLAT +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PCK2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PCK1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html GPI +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html GCK +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html ALDH2 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PGK1 +KEGG GLYCOLYSIS GLUCONEOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOLYSIS_GLUCONEOGENESIS.html PGK2 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html LOC642502 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html OGDHL +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html OGDH +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html PDHB +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html IDH3G +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html LOC283398 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html IDH2 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html IDH1 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html PDHA2 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html PDHA1 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html SUCLA2 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html FH +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html DLST +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html ACO2 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html SUCLG2 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html ACO1 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html SUCLG1 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html CS +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html IDH3B +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html ACLY +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html DLAT +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html PCK2 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html IDH3A +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html PCK1 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html SDHA +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html SDHB +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html SDHC +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html SDHD +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html DLD +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html MDH2 +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html PC +KEGG CITRATE CYCLE TCA CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CITRATE_CYCLE_TCA_CYCLE.html MDH1 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html ALDOA +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html TALDO1 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html ALDOC +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html PGD +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html ALDOB +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html TKTL2 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html TKTL1 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html DERA +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html RPIA +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html PRPS1L1 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html PFKL +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html PFKP +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html FBP1 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html TKT +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html RBKS +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html PFKM +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html FBP2 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html LOC729020 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html PGM2 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html GPI +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html PGLS +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html RPE +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html G6PD +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html H6PD +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html PGM1 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html PRPS2 +KEGG PENTOSE PHOSPHATE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_PHOSPHATE_PATHWAY.html PRPS1 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGDH +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT1A7 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT1A6 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT1A9 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html CRYL1 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT1A8 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT1A3 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT1A5 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT1A4 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT2A1 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT2A3 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT2B28 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html GUSB +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html LOC729020 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT1A1 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html DHDH +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT1A10 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html RPE +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT2B17 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html AKR1B1 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT2B11 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT2B4 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT2B10 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT2B15 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html DCXR +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGP2 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html UGT2B7 +KEGG PENTOSE AND GLUCURONATE INTERCONVERSIONS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PENTOSE_AND_GLUCURONATE_INTERCONVERSIONS.html XYLB +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html ALDOA +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html SORD +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html PFKFB4 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html PFKFB3 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html ALDOC +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html PFKFB2 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html ALDOB +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html PFKFB1 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html HK2 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html HK1 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html GMPPB +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html MTMR2 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html TPI1 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html MTMR1 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html HK3 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html GMPPA +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html TSTA3 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html MTMR6 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html MTMR7 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html PFKL +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html GMDS +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html PFKP +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html FBP1 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html PFKM +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html FBP2 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html PMM2 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html PMM1 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html KHK +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html MPI +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html AKR1B10 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html AKR1B1 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html FUK +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html PHPT1 +KEGG FRUCTOSE AND MANNOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FRUCTOSE_AND_MANNOSE_METABOLISM.html FPGT +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html LALBA +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html HK2 +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html HK1 +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html GLB1 +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html G6PC2 +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html GALK2 +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html GALK1 +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html HK3 +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html GALE +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html B4GALT1 +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html B4GALT2 +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html PFKL +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html PFKP +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html GALT +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html PFKM +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html PGM2 +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html G6PC +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html GCK +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html GLA +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html GANC +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html MGAM +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html PGM1 +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html AKR1B1 +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html GAA +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html LCT +KEGG GALACTOSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GALACTOSE_METABOLISM.html UGP2 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGDH +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html ALDH3A2 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT1A7 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT1A6 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT1A9 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT1A8 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT1A3 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT1A5 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html MIOX +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT1A4 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT2A1 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT2A3 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT2B28 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT1A1 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT1A10 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html ALDH7A1 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT2B17 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html ALDH1B1 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html ALDH2 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT2B11 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT2B4 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT2B10 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT2B15 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html ALDH9A1 +KEGG ASCORBATE AND ALDARATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASCORBATE_AND_ALDARATE_METABOLISM.html UGT2B7 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACOX1 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACADSB +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html CPT2 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html EHHADH +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ADH1C +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ADH5 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ADH6 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ADH1B +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ECHS1 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ADH1A +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ADH7 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACAT2 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACAT1 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html DCI +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ALDH3A2 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html HADHA +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACOX3 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html HADHB +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACSL1 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html CYP4A22 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ADH4 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACSL4 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html HADH +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACSL3 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACSL6 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACSL5 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html CPT1C +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html CPT1B +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html GCDH +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACAA2 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACADM +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACADS +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACADL +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html PECI +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html CPT1A +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACADVL +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html CYP4A11 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ALDH7A1 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ALDH1B1 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ALDH2 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ALDH9A1 +KEGG FATTY ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FATTY_ACID_METABOLISM.html ACAA1 +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html TM7SF2 +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html SOAT1 +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html SOAT2 +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html EBP +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html LIPA +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html CYP51A1 +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html LSS +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html SC4MOL +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html FDFT1 +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html CEL +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html CYP27B1 +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html SQLE +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html DHCR7 +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html HSD17B7 +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html SC5DL +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html NSDHL +KEGG STEROID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_BIOSYNTHESIS.html DHCR24 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html ACOX2 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html CYP46A1 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html HSD3B7 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html AMACR +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html CYP7B1 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html CYP39A1 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html BAAT +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html AKR1C4 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html CYP27A1 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html CH25H +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html CYP7A1 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html HSD17B4 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html CYP8B1 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html SCP2 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html AKR1D1 +KEGG PRIMARY BILE ACID BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_BILE_ACID_BIOSYNTHESIS.html SLC27A5 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP3A4 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP3A5 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP3A7 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP11B1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP11B2 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html SULT2B1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html AKR1C3 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP3A43 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html AKR1C2 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html AKR1C4 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP7A1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html SRD5A3 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html SRD5A1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html SULT1E1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html SRD5A2 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html AKR1C1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html STS +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP11A1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP1A1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT1A1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT1A10 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT2B17 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html HSD11B1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT2B11 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html HSD11B2 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT2B10 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT2B15 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html AKR1D1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html HSD3B2 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html HSD3B1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP1B1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html HSD17B2 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html HSD17B1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html HSD17B12 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html COMT +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT1A7 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT1A6 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT1A9 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT1A8 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT1A3 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT1A5 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT1A4 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html HSD17B6 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT2A1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html HSD17B3 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT2A3 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT2B28 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html HSD17B7 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP19A1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html HSD17B8 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP21A2 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP7B1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html CYP17A1 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT2B4 +KEGG STEROID HORMONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STEROID_HORMONE_BIOSYNTHESIS.html UGT2B7 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html LOC642502 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6AP1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFAB1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX5A +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX5B +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html LOC100133737 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html UQCR10 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html UQCR11 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP8 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html LOC727947 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX6C +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html LOC644310 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5C1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1G3 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX7B +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX7C +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1B2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP12A +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1B1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V0B +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V0C +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX6B1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX6B2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5J2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX8C +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFA4L2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX8A +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html LHPP +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html LOC390424 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html PPA2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html PPA1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html UQCRHL +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFV3 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V0E2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX3 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFV1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFV2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX6A2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX6A1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5D +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html UQCRC2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5E +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX11 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V0E1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html UQCRC1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX10 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5B +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html CYC1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html UQCRFS1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html UQCRQ +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFS7 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFS6 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFS5 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFS4 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFS8 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5L +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5O +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFS3 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5I +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V0D1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFS2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V0D2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5H +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX17 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFS1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX15 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5J +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ND1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFB10 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ND4 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP4A +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP4B +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ND5 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ND2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ND3 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFC2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX4I2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1H +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX4I1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFC1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFA10 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1D +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFA11 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1F +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1C1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1C2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1A +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html UQCRH +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html UQCRB +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFB3 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFB4 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFB5 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFB6 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFB7 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFB8 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFB9 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX7B2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html CYTB +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5G2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1G2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5G1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX7A2L +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1G1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5G3 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFB1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFB2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ND6 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html TCIRG1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFA4 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFA5 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFA2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFA3 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX7A2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFA8 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html COX7A1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFA9 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFA6 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFA7 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5F1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html NDUFA1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html SDHA +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html SDHB +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ND4L +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html LOC100130247 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1E1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html SDHC +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V1E2 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html SDHD +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V0A1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP5A1 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V0A4 +KEGG OXIDATIVE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OXIDATIVE_PHOSPHORYLATION.html ATP6V0A2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADCY3 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADCY4 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html FHIT +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADCY1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html GDA +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html GMPR2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADCY2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADCY7 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADCY8 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADCY5 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADCY6 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE3B +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PNP +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PRIM1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NT5C3 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE4A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE4B +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NT5C2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PRIM2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NUDT2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NUDT5 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLE +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE4D +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE4C +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2J2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NME7 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2J3 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NME6 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NME4 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NME5 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NME2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NME3 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NME1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE5A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADSL +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PRPS2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PRPS1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html XDH +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADSS +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ENPP1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ENPP3 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NT5C1A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NT5C1B +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PNPT1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ZNRD1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html RRM2B +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PPAT +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADA +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE6A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE6B +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLE4 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE6C +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE6D +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLE2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLE3 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ENTPD8 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ENTPD5 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ENTPD6 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ENTPD3 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PRPS1L1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ENTPD4 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ENTPD1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ENTPD2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ALLC +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html GUCY2F +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html C17ORF48 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADSSL1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html AK1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html AK2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html AK5 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html GUCY2C +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html AK7 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE6H +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE6G +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html GART +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html GUCY2D +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLD3 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLD4 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE7B +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE7A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLD1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLD2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html GUK1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE11A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html CANT1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NT5M +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html GUCY1A2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html GUCY1A3 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE8B +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE8A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADCY10 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NT5E +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html IMPDH1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html IMPDH2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NT5C +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR1E +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR1D +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR1A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE10A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR1C +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR1B +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html DGUOK +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html GMPR +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html GMPS +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PRUNE +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html RRM2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADK +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PKM2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html RRM1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PKLR +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html GUCY1B3 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE9A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PRHOXNB +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2H +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2G +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2F +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2E +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2L +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2K +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2J +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2I +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLA1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html DCK +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLA2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html HPRT1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2D +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html AK3L1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2C +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PFAS +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2B +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR2A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE1B +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ATIC +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE1C +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NUDT9 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE1A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PAPSS1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PAPSS2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR3G +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR3F +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR3H +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR3K +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NPR1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NPR2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR3GL +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE3A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR3A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR3C +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html AMPD2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR3B +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html AMPD3 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html APRT +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html POLR3D +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html AMPD1 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ITPA +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html NME1-NME2 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PDE2A +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html ADCY9 +KEGG PURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PURINE_METABOLISM.html PAICS +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html CTPS +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html DTYMK +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html PNP +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html PRIM1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NT5C3 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html PRIM2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NT5C2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NUDT2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLE +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2J2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2J3 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NME7 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NME6 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NME4 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NME5 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NME2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NME3 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NME1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NT5C1A +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html PNPT1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NT5C1B +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html ZNRD1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html CTPS2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html RRM2B +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html CMPK1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html TK2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html CMPK2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html TK1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLE4 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLE2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html UPRT +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLE3 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html ENTPD8 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html DHODH +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html ENTPD5 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html CDA +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html ENTPD6 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html ENTPD3 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html ENTPD4 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html ENTPD1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html UPB1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html AK3 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLD3 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLD4 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLD1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLD2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html DUT +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html CAD +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html CANT1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NT5M +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NT5E +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NT5C +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR1E +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR1D +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR1A +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR1C +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR1B +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html UMPS +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html RRM2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html RRM1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html TXNRD2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html TXNRD1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2H +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2G +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2F +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2E +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2L +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2K +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2J +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2I +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLA1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html DCK +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html UPP1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html UPP2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html DPYS +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLA2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2D +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2C +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2B +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR2A +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html TYMS +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html TYMP +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html UCK1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html UCK2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html DCTD +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR3G +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR3F +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR3H +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR3K +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR3A +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR3GL +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR3C +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR3B +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html POLR3D +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html ITPA +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html NME1-NME2 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html UCKL1 +KEGG PYRIMIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRIMIDINE_METABOLISM.html DPYD +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ADSS +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ASS1 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GLUD2 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html NIT2 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GLUD1 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html IL4I1 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ASNS +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html CAD +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ASL +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html AGXT +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html PPAT +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GLS2 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GOT2 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ASPA +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GAD2 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GOT1 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ALDH4A1 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GPT2 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GAD1 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ADSSL1 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ALDH5A1 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ACY3 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html CPS1 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html DDO +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GLUL +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GLS +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GFPT1 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GFPT2 +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ADSL +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html ABAT +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html GPT +KEGG ALANINE ASPARTATE AND GLUTAMATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALANINE_ASPARTATE_AND_GLUTAMATE_METABOLISM.html AGXT2 +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html AMT +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html GCAT +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html PSPH +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html AGXT +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html PIPOX +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html GLDC +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html ALAS1 +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html ALAS2 +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html SRR +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html DMGDH +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html DAO +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html GNMT +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html SARDH +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html CHDH +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html SHMT1 +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html SHMT2 +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html GATM +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html MAOA +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html MAOB +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html GLYCTK +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html CTH +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html SDS +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html BHMT +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html DLD +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html PHGDH +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html AGXT2 +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html GAMT +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html AOC2 +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html PSAT1 +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html CBS +KEGG GLYCINE SERINE AND THREONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCINE_SERINE_AND_THREONINE_METABOLISM.html AOC3 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html LDHC +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html LDHB +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html LDHA +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html AHCY +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html SRM +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html IL4I1 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html GOT2 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html GOT1 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html MAT1A +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html TRDMT1 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html DNMT3L +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html ENOPH1 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html AMD1 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html DNMT3B +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html DNMT3A +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html MAT2A +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html LDHAL6B +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html LDHAL6A +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html CDO1 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html TAT +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html ADI1 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html CTH +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html SDS +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html MTR +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html BHMT +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html DNMT1 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html MTAP +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html AHCYL1 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html MAT2B +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html AHCYL2 +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html APIP +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html SMS +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html MPST +KEGG CYSTEINE AND METHIONINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYSTEINE_AND_METHIONINE_METABOLISM.html CBS +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html BCAT1 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html HSD17B10 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ACADSB +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html BCAT2 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html EHHADH +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html HMGCS1 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html IL4I1 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ECHS1 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ACAT2 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ACAT1 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html HIBADH +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ALDH3A2 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html HADHA +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html AUH +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html HADHB +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html MCCC2 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html MUT +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html IVD +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html MCCC1 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html OXCT1 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html MCEE +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html OXCT2 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ACAD8 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html HADH +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html HMGCL +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html BCKDHA +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ACAA2 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ALDH6A1 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ACADM +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ACADS +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html BCKDHB +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html DBT +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ALDH7A1 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html HMGCS2 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ALDH1B1 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html DLD +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html AOX1 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ALDH2 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ABAT +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html HIBCH +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html PCCB +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html PCCA +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ALDH9A1 +KEGG VALINE LEUCINE AND ISOLEUCINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_DEGRADATION.html ACAA1 +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html IARS +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html BCAT1 +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html BCAT2 +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html VARS2 +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html LARS +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html PDHA2 +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html LARS2 +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html PDHA1 +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html IARS2 +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html VARS +KEGG VALINE LEUCINE AND ISOLEUCINE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VALINE_LEUCINE_AND_ISOLEUCINE_BIOSYNTHESIS.html PDHB +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html EHHADH +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html SETD1B +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html SETD1A +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html OGDHL +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html AASS +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html ECHS1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html ACAT2 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html OGDH +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html ACAT1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html PIPOX +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html HADHA +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html BBOX1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html ALDH3A2 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html AASDHPPT +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html PLOD1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html PLOD2 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html PLOD3 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html SETMAR +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html HADH +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html AASDH +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html AADAT +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html SETDB1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html GCDH +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html DLST +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html SETDB2 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html EHMT1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html SUV39H1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html WHSC1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html EHMT2 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html SUV39H2 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html SUV420H2 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html DOT1L +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html ALDH7A1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html ALDH1B1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html WHSC1L1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html TMLHE +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html ASH1L +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html ALDH2 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html SETD7 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html SETD8 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html SETD2 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html NSD1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html ALDH9A1 +KEGG LYSINE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSINE_DEGRADATION.html SUV420H1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html SAT1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html CKMT1B +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html SAT2 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html CKB +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html GOT2 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html GOT1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html P4HA2 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html P4HA1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html P4HA3 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html NOS3 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html DAO +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html NOS2 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html GATM +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html OTC +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html LAP3 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html PYCR1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html PYCR2 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ALDH7A1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html GLUL +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html CKM +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ALDH1B1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html SMS +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html OAT +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ADC +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ALDH9A1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html PRODH +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html PYCRL +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ALDH18A1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html SRM +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ASS1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html NAGS +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html GLUD2 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html GLUD1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html AGMAT +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ASL +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ALDH3A2 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html GLS2 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ARG1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html CKMT2 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ARG2 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ALDH4A1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html AMD1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ODC1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html NOS1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ACY1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html MAOA +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html MAOB +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html CPS1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ABP1 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html CKMT1A +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html GLS +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html ALDH2 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html PRODH2 +KEGG ARGININE AND PROLINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARGININE_AND_PROLINE_METABOLISM.html GAMT +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html CNDP1 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html WBSCR22 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html ALDH3A2 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html ALDH3A1 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html ASPA +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html HNMT +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html HDC +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html ALDH1A3 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html HEMK1 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html LCMT1 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html DDC +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html ACY3 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html MAOA +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html LCMT2 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html METTL6 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html MAOB +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html HAL +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html FTCD +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html ALDH3B2 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html METTL2B +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html ALDH3B1 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html AMDHD1 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html ABP1 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html ALDH7A1 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html TRMT11 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html ALDH1B1 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html ALDH2 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html UROC1 +KEGG HISTIDINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HISTIDINE_METABOLISM.html ALDH9A1 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html TYRP1 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html PNMT +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html TH +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html ADH5 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html ADH1C +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html IL4I1 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html WBSCR22 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html ADH6 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html ADH1B +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html ADH1A +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html ADH7 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html COMT +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html FAH +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html MIF +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html ALDH3A1 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html DCT +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html GOT2 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html TYR +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html GOT1 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html ALDH1A3 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html ADH4 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html TPO +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html GSTZ1 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html HEMK1 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html HPD +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html LCMT1 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html DDC +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html NAT6 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html LCMT2 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html MAOA +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html METTL6 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html MAOB +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html HGD +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html ALDH3B2 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html DBH +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html METTL2B +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html TAT +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html ALDH3B1 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html TRMT11 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html AOX1 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html AOC2 +KEGG TYROSINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYROSINE_METABOLISM.html AOC3 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html DDC +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html NAT6 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html MAOA +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html MAOB +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html IL4I1 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html ALDH3B2 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html PAH +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html TAT +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html ALDH3B1 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html MIF +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html ALDH3A1 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html GOT2 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html GOT1 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html PRDX6 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html ALDH1A3 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html AOC2 +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html HPD +KEGG PHENYLALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHENYLALANINE_METABOLISM.html AOC3 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html KYNU +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html CYP1B1 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html EHHADH +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html OGDHL +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html IL4I1 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html ECHS1 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html WARS2 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html KMO +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html ACAT2 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html OGDH +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html ACAT1 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html ALDH3A2 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html HADHA +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html AFMID +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html WARS +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html TDO2 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html HAAO +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html AANAT +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html CAT +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html HADH +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html AADAT +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html GCDH +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html DDC +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html CYP1A1 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html MAOA +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html ASMT +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html MAOB +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html ACMSD +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html IDO2 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html IDO1 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html CYP1A2 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html INMT +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html ABP1 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html ALDH7A1 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html ALDH1B1 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html AOX1 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html ALDH2 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html TPH1 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html ALDH9A1 +KEGG TRYPTOPHAN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TRYPTOPHAN_METABOLISM.html TPH2 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html ACADM +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html CNDP1 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html SRM +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html UPB1 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html EHHADH +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html DPYS +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html ECHS1 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html HADHA +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html ALDH3A2 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html ALDH7A1 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html GAD2 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html MLYCD +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html ALDH1B1 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html ALDH2 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html ABAT +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html DPYD +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html HIBCH +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html AOC2 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html SMS +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html GAD1 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html ALDH9A1 +KEGG BETA ALANINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BETA_ALANINE_METABOLISM.html AOC3 +KEGG TAURINE AND HYPOTAURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TAURINE_AND_HYPOTAURINE_METABOLISM.html GGT5 +KEGG TAURINE AND HYPOTAURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TAURINE_AND_HYPOTAURINE_METABOLISM.html ADO +KEGG TAURINE AND HYPOTAURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TAURINE_AND_HYPOTAURINE_METABOLISM.html GGT6 +KEGG TAURINE AND HYPOTAURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TAURINE_AND_HYPOTAURINE_METABOLISM.html GAD2 +KEGG TAURINE AND HYPOTAURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TAURINE_AND_HYPOTAURINE_METABOLISM.html BAAT +KEGG TAURINE AND HYPOTAURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TAURINE_AND_HYPOTAURINE_METABOLISM.html GGT7 +KEGG TAURINE AND HYPOTAURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TAURINE_AND_HYPOTAURINE_METABOLISM.html CSAD +KEGG TAURINE AND HYPOTAURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TAURINE_AND_HYPOTAURINE_METABOLISM.html GGT1 +KEGG TAURINE AND HYPOTAURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TAURINE_AND_HYPOTAURINE_METABOLISM.html CDO1 +KEGG TAURINE AND HYPOTAURINE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TAURINE_AND_HYPOTAURINE_METABOLISM.html GAD1 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html SEPHS2 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html SEPHS1 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html AHCY +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html WBSCR22 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html GGT1 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html SCLY +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html MAT1A +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html MARS2 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html PAPSS1 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html PAPSS2 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html MARS +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html HEMK1 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html LCMT1 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html MAT2A +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html LCMT2 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html METTL6 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html METTL2B +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html GGT5 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html GGT6 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html CTH +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html GGT7 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html TRMT11 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html AHCYL1 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html MAT2B +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html AHCYL2 +KEGG SELENOAMINO ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SELENOAMINO_ACID_METABOLISM.html CBS +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html PGD +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GGT1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html ANPEP +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTM5 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTM1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSS +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GPX2 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTM2 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSR +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GPX1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTM3 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTM4 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GPX6 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html OPLAH +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GPX5 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GPX4 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GPX3 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTZ1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GPX7 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTT1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTT2 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html LAP3 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html G6PD +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html RRM2 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html RRM1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html SMS +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTP1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GCLC +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GGCT +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html SRM +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html RRM2B +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GCLM +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTK1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html IDH2 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html IDH1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTO2 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTO1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTA1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html ODC1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTA2 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTA3 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTA4 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GSTA5 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html MGST3 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html TXNDC12 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GGT5 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GGT6 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html GGT7 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html MGST1 +KEGG GLUTATHIONE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLUTATHIONE_METABOLISM.html MGST2 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UXS1 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html TREH +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html AMY2B +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html AMY2A +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT1A1 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html PGM2L1 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html PGM2 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT1A10 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT2B17 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html G6PC +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html MGAM +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html PGM1 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT2B11 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html GAA +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT2B10 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT2B15 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html AMY1C +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html AMY1B +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html AMY1A +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGP2 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html ENPP1 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html ENPP3 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGDH +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html HK2 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html HK1 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html G6PC2 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT1A7 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT1A6 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT1A9 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT1A8 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT1A3 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html HK3 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT1A5 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT1A4 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html GYS1 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html GYS2 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT2A1 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT2A3 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT2B28 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html AGL +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html GUSB +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html SI +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html GBA3 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html GPI +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html GBE1 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html PYGM +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html GCK +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html GANC +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html PYGL +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT2B4 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html UGT2B7 +KEGG STARCH AND SUCROSE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_STARCH_AND_SUCROSE_METABOLISM.html PYGB +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html RFT1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MGAT5B +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html TUSC3 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html GANAB +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html FUT8 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG2 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG3 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MAN1B1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG5 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG6 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG8 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG9 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html STT3B +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html STT3A +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html DAD1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html RPN1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html RPN2 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html DDOST +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MGAT4B +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html B4GALT1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MGAT4A +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html B4GALT3 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ST6GAL1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html B4GALT2 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MAN1A2 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html DPAGT1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MOGS +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MAN1A1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MAN1C1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MGAT1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MAN2A2 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MAN2A1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MGAT2 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MGAT3 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG10B +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html DPM1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html DPM2 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html DPM3 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG10 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG11 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html MGAT5 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html DOLPP1 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG12 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG13 +KEGG N GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_N_GLYCAN_BIOSYNTHESIS.html ALG14 +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html AGA +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html HEXA +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html HEXB +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html ENGASE +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html FUCA2 +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html FUCA1 +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html MANBA +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html GLB1 +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html MAN2C1 +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html MAN2B2 +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html NEU1 +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html NEU3 +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html MAN2B1 +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html NEU2 +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html GBA +KEGG OTHER GLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OTHER_GLYCAN_DEGRADATION.html NEU4 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT3 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GCNT4 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT2 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT1 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GCNT3 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT7 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT6 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT5 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT4 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html ST3GAL1 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html ST3GAL2 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT10 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNTL5 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNTL4 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNTL6 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html B3GNT6 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT11 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GCNT1 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT12 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT13 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html C1GALT1 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html B4GALT5 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT14 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html C1GALT1C1 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html WBSCR17 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNTL2 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNTL1 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html ST6GALNAC1 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT8 +KEGG O GLYCAN BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_O_GLYCAN_BIOSYNTHESIS.html GALNT9 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html CYB5R3 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html CYB5R1 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GNPDA1 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html CHIA +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GNPDA2 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GNE +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GNPNAT1 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html HEXA +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html HEXB +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html UGDH +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html HK2 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html HK1 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html NAGK +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html UXS1 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html CHIT1 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GMPPB +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GALK2 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GALK1 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html NANS +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html HK3 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GMPPA +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GALE +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html TSTA3 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html NANP +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html UAP1 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GMDS +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html CMAS +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html NPL +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GALT +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html PMM2 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html PMM1 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html PGM2 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GPI +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html PGM3 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html RENBP +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html AMDHD2 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html MPI +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GCK +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GFPT1 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html PGM1 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html GFPT2 +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html FUK +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html FPGT +KEGG AMINO SUGAR AND NUCLEOTIDE SUGAR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINO_SUGAR_AND_NUCLEOTIDE_SUGAR_METABOLISM.html UGP2 +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html ARSB +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html SGSH +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html HGSNAT +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html HYAL1 +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html NAGLU +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html HYAL2 +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html HYAL3 +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html HS3ST3A1 +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html HEXA +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html GUSB +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html HEXB +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html HYAL4 +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html GLB1 +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html GNS +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html IDS +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html HPSE2 +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html HPSE +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html GALNS +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html SPAM1 +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html HS3ST3B1 +KEGG GLYCOSAMINOGLYCAN DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_DEGRADATION.html IDUA +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html B3GALT6 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html UST +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CHST3 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CHPF2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html DSE +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CSGALNACT1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html B3GAT2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html B3GAT1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html B3GAT3 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CHST7 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CHSY3 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html XYLT2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CHPF +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html XYLT1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CHST12 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CSGALNACT2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CHST11 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CHST14 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CHST13 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CHSY1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html CHST15 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS CHONDROITIN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_CHONDROITIN_SULFATE.html B4GALT7 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html B4GALT1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html B4GALT3 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html B4GALT2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html FUT8 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html CHST2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html CHST4 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html CHST1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html ST3GAL1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html ST3GAL3 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html ST3GAL2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html CHST6 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html B3GNT7 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html B3GNT1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html B3GNT2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS KERATAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_KERATAN_SULFATE.html B4GALT4 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html EXTL3 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html NDST3 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html HS3ST5 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html NDST4 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html NDST1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html B3GALT6 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html NDST2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html HS3ST2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html HS3ST1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html EXTL1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html EXTL2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html HS2ST1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html XYLT2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html XYLT1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html HS6ST3 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html HS6ST2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html HS6ST1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html B4GALT7 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html HS3ST3A1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html GLCE +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html B3GAT2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html B3GAT1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html B3GAT3 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html EXT1 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html EXT2 +KEGG GLYCOSAMINOGLYCAN BIOSYNTHESIS HEPARAN SULFATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSAMINOGLYCAN_BIOSYNTHESIS_HEPARAN_SULFATE.html HS3ST3B1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html PNLIP +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html DAK +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html GPAT2 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html AGPAT6 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html AGPAT9 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html MGLL +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html AGPAT4 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html AGPAT3 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html AGPAT2 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html AGPAT1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html PPAP2C +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html PNPLA3 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html ALDH7A1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html DGAT1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html DGAT2 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html ALDH1B1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html LCLAT1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html GPAM +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html ALDH9A1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html GK2 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html ALDH3A2 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html DGKA +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html DGKB +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html DGKE +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html AKR1A1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html DGKD +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html DGKG +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html PPAP2A +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html AGK +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html PPAP2B +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html LPL +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html PNLIPRP1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html PNLIPRP2 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html DGKQ +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html DGKH +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html DGKI +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html GLYCTK +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html AWAT2 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html CEL +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html GLA +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html AKR1B1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html LIPG +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html MBOAT1 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html ALDH2 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html MBOAT2 +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html DGKZ +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html GK +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html LIPC +KEGG GLYCEROLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROLIPID_METABOLISM.html LIPF +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCZ1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html IMPA2 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html CDIPT +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html IMPA1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html SYNJ1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIP5K1B +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIP5K1C +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html ITPKB +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIP5K1A +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html ITPKA +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PTEN +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCB3 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCB4 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html MIOX +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIK3C3 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html SYNJ2 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIK3CA +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCB1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html ITPK1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCB2 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html IPMK +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIK3CG +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html ALDH6A1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html MINPP1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIK3C2G +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html INPPL1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIK3C2A +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIK3CB +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIK3C2B +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIK3CD +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PI4KA +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PI4KB +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCE1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html INPP4B +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html INPP4A +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html INPP1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html OCRL +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html ISYNA1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html TPI1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html INPP5K +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html INPP5J +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIKFYVE +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCD3 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCD4 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html INPP5E +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCD1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html INPP5B +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html INPP5A +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCG1 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PLCG2 +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIP4K2A +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html IPPK +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIP4K2C +KEGG INOSITOL PHOSPHATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INOSITOL_PHOSPHATE_METABOLISM.html PIP4K2B +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html GPAA1 +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html GPLD1 +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGK +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGL +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGM +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGF +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGG +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGH +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGB +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGC +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGA +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGZ +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGY +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGX +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGW +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PGAP1 +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGV +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGU +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGT +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGS +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGQ +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGP +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGO +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html PIGN +KEGG GLYCOSYLPHOSPHATIDYLINOSITOL GPI ANCHOR BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSYLPHOSPHATIDYLINOSITOL_GPI_ANCHOR_BIOSYNTHESIS.html DPM2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html CDIPT +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html GPAT2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html CDS2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html AGPAT6 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html LCAT +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html AGPAT9 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G1B +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html GNPAT +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PHOSPHO1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PTDSS1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PCYT2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html AGPAT4 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html AGPAT3 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html AGPAT2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html CHAT +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html AGPAT1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PTDSS2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLD2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html CRLS1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLD1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html LPGAT1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PPAP2C +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html TAZ +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html LYPLA2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PISD +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html LYPLA1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html LPCAT2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html CDS1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html CHPT1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html LPCAT3 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html LPCAT4 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G2A +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html LCLAT1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G6 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G2C +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G2E +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G3 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G2D +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html GPAM +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G5 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G2F +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html CHKA +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html ACHE +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PGS1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html CHKB +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html GPD1L +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html DGKA +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html JMJD7-PLA2G4B +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html DGKB +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html DGKE +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html LPCAT1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html DGKD +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G12A +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html DGKG +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G12B +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PEMT +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html ETNK1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PCYT1A +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html ETNK2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PCYT1B +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PPAP2A +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PPAP2B +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html GPD2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html GPD1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html C17ORF48 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G15 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html DGKQ +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G10 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html DGKH +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html DGKI +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G4A +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html MBOAT7 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html MBOAT1 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html DGKZ +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html MBOAT2 +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G4B +KEGG GLYCEROPHOSPHOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCEROPHOSPHOLIPID_METABOLISM.html PLA2G4E +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html ENPP6 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html ENPP2 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PAFAH2 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html JMJD7-PLA2G4B +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html AGPS +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html LPCAT1 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G12A +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G12B +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G1B +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PAFAH1B3 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PAFAH1B1 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PAFAH1B2 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PPAP2A +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PPAP2B +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLD2 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLD1 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G10 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PPAP2C +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html LPCAT2 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html CHPT1 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html LPCAT4 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G4A +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G2A +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G7 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G6 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G2C +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G3 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G2E +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G2D +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G4B +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G4E +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G5 +KEGG ETHER LIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ETHER_LIPID_METABOLISM.html PLA2G2F +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP2J2 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PTGES2 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PTGS2 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP2C19 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP2C18 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PTGS1 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html GGT1 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html LTC4S +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html AKR1C3 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html GPX2 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html GPX1 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PTGIS +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html GPX6 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PTGES +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html GPX5 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html GPX4 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html GPX3 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G1B +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html ALOX12B +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html GPX7 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP2E1 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CBR3 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html ALOX15 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PTGDS +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html ALOX15B +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G2A +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G6 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G2C +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G2E +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G3 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G2D +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G5 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G2F +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html ALOX12 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP2U1 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP2B6 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html JMJD7-PLA2G4B +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CBR1 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP4A22 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G12A +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G12B +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html HPGDS +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html TBXAS1 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G10 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP2C9 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP2C8 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html EPHX2 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html GGT5 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP4A11 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html GGT6 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G4A +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html GGT7 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html LTA4H +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP4F3 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html ALOX5 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html CYP4F2 +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G4B +KEGG ARACHIDONIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARACHIDONIC_ACID_METABOLISM.html PLA2G4E +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP3A4 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP3A5 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP3A7 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP2J2 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP2C19 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP2C18 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP3A43 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html JMJD7-PLA2G4B +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G12A +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G12B +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G1B +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G10 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP2C9 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP2C8 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP1A2 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html CYP2E1 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html ALOX15 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G4A +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html AKR1B10 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G2A +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G6 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G2C +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G2E +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G3 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G4B +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G2D +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G4E +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G5 +KEGG LINOLEIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LINOLEIC_ACID_METABOLISM.html PLA2G2F +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html ACOX1 +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G10 +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html FADS2 +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html ACOX3 +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html JMJD7-PLA2G4B +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G4A +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G12A +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G12B +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G1B +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G2A +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G6 +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G2C +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G3 +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G2E +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G2D +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G4B +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G4E +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G5 +KEGG ALPHA LINOLENIC ACID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALPHA_LINOLENIC_ACID_METABOLISM.html PLA2G2F +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html ENPP7 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SGMS2 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SGPP1 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SGPP2 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SGMS1 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html ASAH1 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html ASAH2 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html GLB1 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html GALC +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html UGT8 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html CERK +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html B4GALT6 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html PPAP2A +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html PPAP2B +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html GAL3ST1 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html GBA +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SGPL1 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html ACER3 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SPTLC1 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SPTLC2 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SPHK2 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html PPAP2C +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html ACER2 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html ACER1 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html UGCG +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SPHK1 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html ASAH2C +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html GLA +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SMPD1 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html ARSA +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html KDSR +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html NEU1 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html NEU3 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html NEU2 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SMPD4 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SMPD3 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html DEGS2 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html NEU4 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html SMPD2 +KEGG SPHINGOLIPID METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPHINGOLIPID_METABOLISM.html DEGS1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html FUT9 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html GCNT2 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html FUT7 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html B3GALT5 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html FUT6 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html FUT5 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html ST8SIA1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html ST3GAL3 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html B3GNT5 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html B3GNT4 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html ST3GAL4 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html ST3GAL6 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html FUT3 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html B3GNT1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html FUT4 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html FUT1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html B3GNT3 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html FUT2 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html B3GNT2 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html B4GALT4 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html B4GALT1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html B4GALT3 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html B4GALT2 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html B3GALT2 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html B3GALT1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS LACTO AND NEOLACTO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_LACTO_AND_NEOLACTO_SERIES.html ABO +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html A4GALT +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html FUT9 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html B3GALT5 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html GBGT1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html HEXA +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html HEXB +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html ST8SIA1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html ST3GAL1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html ST3GAL2 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html GLA +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html B3GALNT1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html NAGA +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html FUT1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GLOBO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GLOBO_SERIES.html FUT2 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html SLC33A1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html HEXA +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html B3GALT4 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html HEXB +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html ST8SIA1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html GLB1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html ST6GALNAC5 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html ST3GAL1 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html ST6GALNAC6 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html ST6GALNAC3 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html ST6GALNAC4 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html ST3GAL2 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html ST3GAL5 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html ST8SIA5 +KEGG GLYCOSPHINGOLIPID BIOSYNTHESIS GANGLIO SERIES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYCOSPHINGOLIPID_BIOSYNTHESIS_GANGLIO_SERIES.html B4GALNT1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html LDHC +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ME1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html LDHB +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html LDHA +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ME3 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ME2 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html LDHD +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ACAT2 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ACSS2 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ACAT1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html PDHB +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ALDH3A2 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ACSS1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ACOT12 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ACYP2 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ACYP1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html GLO1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html PDHA2 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html PDHA1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html LDHAL6B +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html LDHAL6A +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ACACA +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ACACB +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html DLAT +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html GRHPR +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html PCK2 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html PCK1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html HAGH +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ALDH7A1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ALDH1B1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html PKM2 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html AKR1B1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html PKLR +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html DLD +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ALDH2 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html HAGHL +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html MDH2 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html ALDH9A1 +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html PC +KEGG PYRUVATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PYRUVATE_METABOLISM.html MDH1 +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html MTHFD2L +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html ACO2 +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html ACO1 +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html CS +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html GRHPR +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html MTHFD1L +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html HYI +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html AFMID +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html GLYCTK +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html HAO1 +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html MTHFD1 +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html MTHFD2 +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html PGP +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html HAO2 +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html MDH2 +KEGG GLYOXYLATE AND DICARBOXYLATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLYOXYLATE_AND_DICARBOXYLATE_METABOLISM.html MDH1 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html LDHC +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html LDHB +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html LDHA +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html EHHADH +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ECHS1 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ACAT2 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ACSS2 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ACSS3 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ACAT1 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html HADHA +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ALDH3A2 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html MUT +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ACSS1 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html LOC283398 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html MCEE +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html SUCLA2 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ALDH6A1 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ACADM +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html LDHAL6B +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html LDHAL6A +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html SUCLG2 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html SUCLG1 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ACACA +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ACACB +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ALDH7A1 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ALDH1B1 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html MLYCD +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ALDH2 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ABAT +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html HIBCH +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html PCCB +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html ALDH9A1 +KEGG PROPANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROPANOATE_METABOLISM.html PCCA +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html EHHADH +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html HMGCS1 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ECHS1 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ACAT2 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ACAT1 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html PDHB +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html HADHA +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ALDH3A2 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html GAD2 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html OXCT1 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html OXCT2 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html BDH2 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html PDHA2 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html PDHA1 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html HADH +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html BDH1 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html GAD1 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html HMGCL +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ALDH5A1 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ACADS +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ACSM2A +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ACSM3 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ALDH7A1 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ACSM1 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html HMGCS2 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html L2HGDH +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ALDH1B1 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html AKR1B10 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ALDH2 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ABAT +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html AACS +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ACSM5 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ALDH9A1 +KEGG BUTANOATE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BUTANOATE_METABOLISM.html ACSM4 +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html SHMT1 +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html SHMT2 +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html MTHFD2L +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html ALDH1L1 +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html AMT +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html FTCD +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html MTHFD1L +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html GART +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html MTHFD1 +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html MTHFD2 +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html TYMS +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html MTHFS +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html MTHFR +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html DHFR +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html ATIC +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html MTR +KEGG ONE CARBON POOL BY FOLATE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ONE_CARBON_POOL_BY_FOLATE.html MTFMT +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html ENPP1 +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html ENPP3 +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html ACP6 +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html ACP5 +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html ACP2 +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html ACPT +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html ACP1 +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html ACPP +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html MTMR2 +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html TYR +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html MTMR1 +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html RFK +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html FLAD1 +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html MTMR6 +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html MTMR7 +KEGG RIBOFLAVIN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOFLAVIN_METABOLISM.html PHPT1 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NMNAT3 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NMNAT2 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NAMPT +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html ENPP1 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NUDT12 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html BST1 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NT5C1A +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html ENPP3 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NT5C1B +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NADSYN1 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NADK +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html PNP +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html C9ORF95 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html CD38 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NNT +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NT5M +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NT5C3 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NT5C2 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html AOX1 +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html QPRT +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NT5E +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NNMT +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NT5C +KEGG NICOTINATE AND NICOTINAMIDE METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NICOTINATE_AND_NICOTINAMIDE_METABOLISM.html NMNAT1 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html BCAT1 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html COASY +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html BCAT2 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html ENPP1 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html ENPP3 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html UPB1 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html PPCS +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html DPYS +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html PPCDC +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html PANK4 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html PANK2 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html PANK3 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html PANK1 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html VNN1 +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html DPYD +KEGG PANTOTHENATE AND COA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANTOTHENATE_AND_COA_BIOSYNTHESIS.html VNN2 +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html ALPL +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html ALPPL2 +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html ALPI +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html DHFR +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html GGH +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html QDPR +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html SPR +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html PTS +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html FPGS +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html ALPP +KEGG FOLATE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOLATE_BIOSYNTHESIS.html GCH1 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP3A4 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP3A5 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP3A7 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP2C19 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP2C18 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html ADH1C +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html ADH1B +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html ADH1A +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html RPE65 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP3A43 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html RDH8 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP1A1 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP26A1 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html DHRS9 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP1A2 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html PNPLA4 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT1A1 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html RDH5 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT1A10 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT2B17 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html DHRS3 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html DGAT1 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html LRAT +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html DHRS4 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html DGAT2 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT2B11 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP2A6 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP2A7 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT2B10 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT2B15 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html BCMO1 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP2B6 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html DHRS4L2 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html ADH5 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html ADH6 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html ADH7 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT1A7 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html ALDH1A1 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html ALDH1A2 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP2A13 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT1A6 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT1A9 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT1A8 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP4A22 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT1A3 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html ADH4 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT1A5 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT1A4 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP26B1 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT2A1 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT2A3 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT2B28 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP2C9 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP2C8 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html AWAT2 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html RDH12 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP4A11 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html RDH11 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html RDH10 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html CYP26C1 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT2B4 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html RDH16 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html UGT2B7 +KEGG RETINOL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RETINOL_METABOLISM.html RETSAT +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html HCCS +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html FTMT +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html ALAD +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html COX10 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UROS +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html PPOX +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html FTH1 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT1A7 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT1A6 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html HMOX2 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html ALAS1 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT1A9 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT1A8 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html ALAS2 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT1A3 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT1A5 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html CPOX +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html HMOX1 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT1A4 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT2A1 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT2A3 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT2B28 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html COX15 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html FECH +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html HMBS +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html GUSB +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html EPRS +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT1A1 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html MMAB +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html EARS2 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html BLVRA +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT1A10 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT2B17 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html BLVRB +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT2B11 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT2B4 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html CP +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT2B10 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT2B15 +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UROD +KEGG PORPHYRIN AND CHLOROPHYLL METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PORPHYRIN_AND_CHLOROPHYLL_METABOLISM.html UGT2B7 +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html DHDDS +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html MVD +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html HMGCR +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html HMGCS1 +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html FDPS +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html ACAT2 +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html PMVK +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html PDSS1 +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html ACAT1 +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html PDSS2 +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html HMGCS2 +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html GGPS1 +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html MVK +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html IDI2 +KEGG TERPENOID BACKBONE BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TERPENOID_BACKBONE_BIOSYNTHESIS.html IDI1 +KEGG LIMONENE AND PINENE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LIMONENE_AND_PINENE_DEGRADATION.html ALDH7A1 +KEGG LIMONENE AND PINENE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LIMONENE_AND_PINENE_DEGRADATION.html NAT6 +KEGG LIMONENE AND PINENE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LIMONENE_AND_PINENE_DEGRADATION.html ALDH1B1 +KEGG LIMONENE AND PINENE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LIMONENE_AND_PINENE_DEGRADATION.html EHHADH +KEGG LIMONENE AND PINENE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LIMONENE_AND_PINENE_DEGRADATION.html ALDH2 +KEGG LIMONENE AND PINENE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LIMONENE_AND_PINENE_DEGRADATION.html ECHS1 +KEGG LIMONENE AND PINENE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LIMONENE_AND_PINENE_DEGRADATION.html YOD1 +KEGG LIMONENE AND PINENE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LIMONENE_AND_PINENE_DEGRADATION.html HADHA +KEGG LIMONENE AND PINENE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LIMONENE_AND_PINENE_DEGRADATION.html ALDH3A2 +KEGG LIMONENE AND PINENE DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LIMONENE_AND_PINENE_DEGRADATION.html ALDH9A1 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA14 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA13 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html GLUD2 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html AMT +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html GLUD1 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA5A +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA12 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA5B +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html HAL +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html ASNS +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CPS1 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html GLS2 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CTH +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html GLUL +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA9 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA8 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html GLS +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA7 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA6 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA4 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA3 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA2 +KEGG NITROGEN METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NITROGEN_METABOLISM.html CA1 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html SUOX +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html SULT2B1 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html SULT1A1 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html CHST12 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html CHST11 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html SULT1A3 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html CHST13 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html SULT1A2 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html SULT1E1 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html SULT1A4 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html PAPSS1 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html PAPSS2 +KEGG SULFUR METABOLISM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SULFUR_METABOLISM.html BPNT1 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html TARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html VARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html PSTK +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html NARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html FARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html QARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html WARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html IARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html VARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html KARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html IARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html WARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html PARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html NARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html HARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html SEPSECS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html LARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html MARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html TARSL2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html MARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html CARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html YARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html DARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html RARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html SARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html AARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html GARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html EPRS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html DARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html LARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html SARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html EARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html TARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html RARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html HARS +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html FARSB +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html CARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html FARSA +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html YARS2 +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html MTFMT +KEGG AMINOACYL TRNA BIOSYNTHESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMINOACYL_TRNA_BIOSYNTHESIS.html AARS2 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP3A4 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP3A5 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP3A7 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP2C19 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP2C18 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP2S1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html ADH1C +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html ADH1B +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html ADH1A +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTM5 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP3A43 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html AKR1C3 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTM1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html AKR1C2 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTM2 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTM3 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html AKR1C4 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTM4 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTZ1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html AKR1C1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP1A1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html ALDH3B2 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTT1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTT2 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP1A2 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP2E1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT1A1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html DHDH +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html ALDH3B1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT1A10 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT2B17 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT2B11 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT2B10 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT2B15 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTP1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP1B1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP2F1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP2B6 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html ADH5 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html ADH6 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html ADH7 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html ALDH3A1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT1A7 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT1A6 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT1A9 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT1A8 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT1A3 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html ALDH1A3 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTK1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html ADH4 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT1A5 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT1A4 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT2A1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTO2 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTO1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT2A3 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT2B28 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTA1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTA2 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTA3 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTA4 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html GSTA5 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP2C9 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html CYP2C8 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html EPHX1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html MGST3 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT2B4 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html UGT2B7 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html MGST1 +KEGG METABOLISM OF XENOBIOTICS BY CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_METABOLISM_OF_XENOBIOTICS_BY_CYTOCHROME_P450.html MGST2 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP3A4 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP3A5 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP3A7 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP2C19 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP2C18 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP2D6 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html ADH1C +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html ADH1B +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html ADH1A +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTM5 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP3A43 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTM1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTM2 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTM3 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTM4 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTZ1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html ALDH3B2 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTT1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTT2 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP1A2 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP2E1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT1A1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html ALDH3B1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT1A10 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT2B17 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT2B11 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP2A6 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP2A7 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT2B10 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT2B15 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTP1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP2B6 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html ADH5 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html ADH6 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html ADH7 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html ALDH3A1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html FMO4 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT1A7 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html FMO5 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP2A13 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT1A6 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT1A9 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT1A8 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT1A3 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html FMO1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html ALDH1A3 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTK1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT1A5 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html FMO2 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html ADH4 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html FMO3 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT1A4 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT2A1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTO2 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTO1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT2A3 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT2B28 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTA1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTA2 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTA3 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTA4 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html GSTA5 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP2C9 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html MAOA +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html CYP2C8 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html MAOB +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html MGST3 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html AOX1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT2B4 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html UGT2B7 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html MGST1 +KEGG DRUG METABOLISM CYTOCHROME P450 http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_CYTOCHROME_P450.html MGST2 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CYP3A4 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CYP3A5 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CYP3A7 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CYP3A43 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html IMPDH1 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html IMPDH2 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT1A1 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html GMPS +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT1A10 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT2B17 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UMPS +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT2B11 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CYP2A6 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CYP2A7 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT2B10 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT2B15 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html XDH +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UPP1 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UPP2 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html DPYS +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html HPRT1 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html TK2 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html TK1 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT1A7 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CYP2A13 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT1A6 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html TYMP +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT1A9 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT1A8 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT1A3 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT1A5 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT1A4 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CDA +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT2A1 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UCK1 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT2A3 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UCK2 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT2B28 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CES2 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CES1 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html CES7 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html NAT1 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UPB1 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html GUSB +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html NAT2 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html TPMT +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html ITPA +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UCKL1 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT2B4 +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html DPYD +KEGG DRUG METABOLISM OTHER ENZYMES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DRUG_METABOLISM_OTHER_ENZYMES.html UGT2B7 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html ACOX1 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html SCD +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html FADS1 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html HSD17B12 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html ACOT2 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html ACOT1 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html FADS2 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html TECR +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html HADHA +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html ACOT4 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html ACOX3 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html PECR +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html ACOT7 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html BAAT +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html PTPLB +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html ELOVL5 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html PTPLA +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html ELOVL2 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html ELOVL6 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html YOD1 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html SCD5 +KEGG BIOSYNTHESIS OF UNSATURATED FATTY ACIDS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BIOSYNTHESIS_OF_UNSATURATED_FATTY_ACIDS.html ACAA1 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA8 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA7 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA9 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCD1 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA2 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA1 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA4 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA3 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA6 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA5 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html TAP2 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html TAP1 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCD2 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCB10 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCD3 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCD4 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA13 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA12 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCB9 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCA10 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCB8 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCB11 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCC11 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCC10 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCB1 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html CFTR +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCC12 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCB7 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCB6 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCG4 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCB5 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCG1 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCB4 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCG2 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCG8 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCC9 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCG5 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCC3 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCC4 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCC1 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCC2 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCC8 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCC5 +KEGG ABC TRANSPORTERS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ABC_TRANSPORTERS.html ABCC6 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL18 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL17 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL36A +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL19 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL14 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL13 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL15 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPLP2 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS27L +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL22L1 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS2 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS3 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS3A +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPLP0 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPLP1 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL26L1 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL10 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html FAU +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL11 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL12 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS27A +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL36AL +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RSL24D1P11 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL35A +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS4X +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS18 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS19 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL41 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS16 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS17 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS15 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL3L +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS12 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS13 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS4Y1 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS10 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS11 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html UBA52 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL35 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL27A +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS15A +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL36 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL37 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL38 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL39 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL10L +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS25 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS26 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS27 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html MRPL13 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL30 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS28 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL7 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS29 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL32 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL6 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL31 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL9 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL34 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL8 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL3 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL5 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RSL24D1 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL7A +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL10A +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL4 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS20 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS21 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS23 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS24 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPSA +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL26 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS9 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL27 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL24 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL23A +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS6 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS5 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS8 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL28 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPS7 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL29 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL23 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL18A +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL13A +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL22 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL21 +KEGG RIBOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIBOSOME.html RPL37A +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html CNOT8 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html LSM6 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html LSM7 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html CNOT3 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html CNOT2 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html EDC4 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html SKIV2L2 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html CNOT1 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html CNOT7 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html CNOT6 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html CNOT4 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html DCPS +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html PARN +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html EDC3 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html LSM5 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html LSM4 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html LSM3 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html LSM2 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html LSM1 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html ZCCHC7 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html EXOSC8 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html EXOSC9 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html EXOSC6 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html EXOSC7 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html EXOSC4 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html EXOSC5 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html TTC37 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html CNOT10 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html EXOSC2 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html PAPD7 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html EXOSC3 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html EXOSC1 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html XRN1 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html XRN2 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html C1D +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html SKIV2L +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html PNPT1 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html NAA38 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html EXOSC10 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html PATL1 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html CNOT6L +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html ENO2 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html RQCD1 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html ENO3 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html ENO1 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html HSPA9 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html C1DP2 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html C1DP3 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html DDX6 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html DIS3 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html PAPOLB +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html PAPOLA +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html WDR61 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html DCP1B +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html DCP2 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html DCP1A +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html HSPD1 +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html PAPOLG +KEGG RNA DEGRADATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_DEGRADATION.html MPHOSPH6 +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2H +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2G +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2F +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2E +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2L +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2K +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2J +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2I +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html ZNRD1 +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2D +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2C +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2B +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2A +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR3G +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR3F +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR3H +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR3K +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR1E +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR1D +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR1A +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR3GL +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR1C +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR3A +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR1B +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR3C +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2J2 +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR3B +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR2J3 +KEGG RNA POLYMERASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RNA_POLYMERASE.html POLR3D +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html LOC391764 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html STON1 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF9B +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TBP +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF7L +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2E1 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TBPL2 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2E2 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF5L +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2A1 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2A2 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF9 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TBPL1 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF1L +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF2 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF1 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF4 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF6 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF5 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF4B +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF7 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2H4 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2H3 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2A1L +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF6L +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2B +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2H2 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2H1 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF11 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF10 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF13 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html TAF12 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2I +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2F1 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2IRD1 +KEGG BASAL TRANSCRIPTION FACTORS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_TRANSCRIPTION_FACTORS.html GTF2F2 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html POLA1 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RNASEH1 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html POLA2 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RPA4 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RPA3 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RPA1 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html PRIM1 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RPA2 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html POLE4 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html MCM7 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html POLE2 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html POLE3 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html PRIM2 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html FEN1 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html SSBP1 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html LIG1 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html POLE +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html MCM2 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RNASEH2A +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html MCM3 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RNASEH2B +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html MCM4 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RNASEH2C +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html MCM5 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html MCM6 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html POLD3 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RFC5 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html POLD4 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html DNA2 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RFC3 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RFC4 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RFC1 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html RFC2 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html POLD1 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html POLD2 +KEGG DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DNA_REPLICATION.html PCNA +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html NCBP2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html NCBP1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html CHERP +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html LSM6 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html U2AF2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRPD3 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html LSM7 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRPD1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRPD2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SART1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SMNDC1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html CTNNBL1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SFRS6 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SFRS7 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SFRS4 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SFRS5 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html DDX23 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html DHX38 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html RBM8A +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SFRS9 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PQBP1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html LSM5 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html U2AF1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html LSM4 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html LSM3 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html LSM2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html ACIN1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRPA1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SF3B14 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html EFTUD2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html MAGOH +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SFRS1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SFRS3 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HNRNPU +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SFRS2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html AQR +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRPB +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRPA +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SLU7 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRPC +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRPF +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRPE +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html BAT1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRPG +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html CCDC12 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html NHP2L1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PPIL1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRPB2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HSPA1A +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HSPA1B +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html NAA38 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html XAB2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HNRNPA3 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HSPA1L +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HNRNPM +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html DDX46 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html TCERG1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HNRNPK +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html CDC40 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html ISY1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HNRNPC +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PRPF40B +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PRPF40A +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html DDX42 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html DHX8 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNW1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html DDX5 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html RBMX +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HNRNPA1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PPIE +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PPIH +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRNP27 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PUF60 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HNRNPA1L2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html CRNKL1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html CWC15 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html ZMAT2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html BUD31 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SFRS2B +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PLRG1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PCBP1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html MAGOHB +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PRPF31 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PRPF3 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html CDC5L +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PRPF4 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PRPF6 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html EIF4A3 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRNP200 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html LOC120364 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html THOC4 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRNP40 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html THOC2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html THOC3 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PRPF38B +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html THOC1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PRPF38A +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html TRA2B +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html TRA2A +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SR140 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html LOC653884 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html WBP11 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SF3B5 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SF3B4 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SF3B3 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SF3B2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PRPF19 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SF3B1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HSPA2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PRPF8 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html USP39 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html DHX15 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HSPA6 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html DHX16 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SNRNP70 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html RBM25 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html HSPA8 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html BCAS2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html RBM22 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SFRS13A +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SF3A2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PRPF18 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SF3A1 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SF3A3 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html SYF2 +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html PHF5A +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html TXNL4A +KEGG SPLICEOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SPLICEOSOME.html RBM17 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB10 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html LOC345645 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html SHFM1 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMA7 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMA8 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB11 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB5 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB4 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMF1 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB7 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB6 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB1 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB3 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB2 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMD1 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html IFNG +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMD2 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMD3 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMD4 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMD6 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMD7 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html LOC121906 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMD8 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html LOC100132108 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB8 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMB9 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMA2 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMA1 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMD14 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMC6 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMC5 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMD13 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMA6 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSME1 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMC4 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMD12 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSME2 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMC3 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMA5 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMD11 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMC2 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMA4 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMC1 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSMA3 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html POMP +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSME3 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html LOC652826 +KEGG PROTEASOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEASOME.html PSME4 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SRP14 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html OXA1L +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SRP54 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SEC11C +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SRP9L1 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SEC11A +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SRP68 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SRPRB +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SRP19 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SEC62 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SEC63 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html IMMP1L +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html IMMP2L +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SEC61B +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SRPR +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SPCS3 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SPCS1 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SRP72 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SPCS2 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html HSPA5 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SEC61A1 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SRP9 +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SEC61G +KEGG PROTEIN EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROTEIN_EXPORT.html SEC61A2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACOX2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACOX1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html SLC27A1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html PPARA +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html PPARD +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html CPT2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html EHHADH +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html PPARG +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html AQP7 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html MMP1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACOX3 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html APOA2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html PDPK1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html APOA1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html CYP7A1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html APOA5 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ILK +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html SCD5 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACADM +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html RXRB +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html RXRA +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html RXRG +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACADL +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html CD36 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html CYP27A1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html UBC +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html SLC27A6 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html SLC27A2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html SLC27A5 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html SLC27A4 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACAA1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ME1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html GK2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACSL1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html CYP4A22 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html SORBS1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html PLIN1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html APOC3 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACSL4 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACSL3 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACSL6 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html PLTP +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ACSL5 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html NR1H3 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ANGPTL4 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html CPT1C +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html CPT1B +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html LPL +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html OLR1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html SCD +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html FADS2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html UCP1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html PCK2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html ADIPOQ +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html DBI +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html CPT1A +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html PCK1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html CYP4A11 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html HMGCS2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html FABP3 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html FABP4 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html FABP1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html GK +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html FABP2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html FABP7 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html CYP8B1 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html SCP2 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html FABP5 +KEGG PPAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PPAR_SIGNALING_PATHWAY.html FABP6 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html HMGB1 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html APEX2 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html UNG +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html XRCC1 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html SMUG1 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html MUTYH +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html HMGB1L1 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html POLE4 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html POLE2 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html POLE3 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html NTHL1 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html APEX1 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html FEN1 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html POLL +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html LIG1 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html NEIL3 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html NEIL2 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html POLE +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html LIG3 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html NEIL1 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html MBD4 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html POLB +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html LOC645490 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html POLD3 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html POLD4 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html MPG +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html POLD1 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html POLD2 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html TDG +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html PCNA +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html PARP3 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html PARP4 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html PARP1 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html OGG1 +KEGG BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASE_EXCISION_REPAIR.html PARP2 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RAD23B +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RAD23A +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html CETN2 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RPA4 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RBX1 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RPA3 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RPA1 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html ERCC8 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RPA2 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html ERCC5 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html POLE4 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html ERCC6 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html POLE2 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html POLE3 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html ERCC3 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html ERCC4 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html ERCC1 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html ERCC2 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html CCNH +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html LIG1 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html DDB1 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html POLE +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html GTF2H4 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html GTF2H3 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html CDK7 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html GTF2H5 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html GTF2H2 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html GTF2H1 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RFC5 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html POLD3 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html XPA +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html POLD4 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html MNAT1 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RFC3 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html XPC +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RFC4 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html CUL4A +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RFC1 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html RFC2 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html POLD1 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html POLD2 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html DDB2 +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html PCNA +KEGG NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NUCLEOTIDE_EXCISION_REPAIR.html CUL4B +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html EXO1 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html MSH6 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html SSBP1 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html MSH3 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html MSH2 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html LIG1 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html MLH1 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html MLH3 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html RPA4 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html RPA3 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html POLD3 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html RPA1 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html RFC5 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html RPA2 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html POLD4 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html RFC3 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html RFC4 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html RFC1 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html RFC2 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html POLD1 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html POLD2 +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html PCNA +KEGG MISMATCH REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MISMATCH_REPAIR.html PMS2 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RAD51C +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html NBN +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html XRCC3 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html XRCC2 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html BLM +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html MRE11A +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html SHFM1 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RPA4 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RPA3 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RPA1 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RPA2 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RAD51L1 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html MUS81 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RAD51L3 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html SSBP1 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html EME1 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html BRCA2 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RAD52 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RAD54L +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RAD50 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RAD51 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html POLD3 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html POLD4 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html POLD1 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html POLD2 +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html TOP3A +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html RAD54B +KEGG HOMOLOGOUS RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HOMOLOGOUS_RECOMBINATION.html TOP3B +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html POLL +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html XRCC5 +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html XRCC4 +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html MRE11A +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html XRCC6 +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html PRKDC +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html LIG4 +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html RAD50 +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html DCLRE1C +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html DNTT +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html POLM +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html LOC731751 +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html NHEJ1 +KEGG NON HOMOLOGOUS END JOINING http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_HOMOLOGOUS_END_JOINING.html FEN1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html HRAS +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html NRG4 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html NRG3 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html STAT5A +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html BTC +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html STAT5B +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html RPS6KB2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html RPS6KB1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html AKT1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PAK6 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PAK7 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html EIF4EBP1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PAK2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PAK3 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PAK4 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html GAB1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PIK3CA +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html TGFA +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html SHC1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PAK1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html SHC3 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html NRG1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html SHC2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html MAP2K7 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html NRG2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html MYC +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html AKT3 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html AKT2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html SHC4 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PIK3CG +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html EGFR +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PRKCA +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html BRAF +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PIK3CB +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PIK3CD +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PRKCG +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PRKCB +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html NCK2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html MAPK1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html CRKL +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html EREG +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html JUN +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html NCK1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html MAPK3 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html MAPK9 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html MAPK8 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html ERBB4 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html ERBB3 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html GRB2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html CAMK2G +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html ERBB2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html ELK1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html SRC +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PTK2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html KRAS +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html SOS1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html SOS2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html CAMK2D +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html CAMK2B +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PIK3R5 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PIK3R3 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html EGF +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html CAMK2A +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PIK3R1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PIK3R2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html MAP2K1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html MAP2K2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html CBL +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html MAP2K4 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html RAF1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html MAPK10 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html BAD +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html CBLC +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html NRAS +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html CDKN1A +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html CBLB +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html CDKN1B +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PLCG1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html GSK3B +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html PLCG2 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html ARAF +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html HBEGF +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html MTOR +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html AREG +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html ABL1 +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html CRK +KEGG ERBB SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ERBB_SIGNALING_PATHWAY.html ABL2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html SLC8A3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADCY3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADCY4 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GNA14 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GNA15 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADCY1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADCY2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html TNNC2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADCY7 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html TNNC1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADCY8 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GNA11 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html LHCGR +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ITPKB +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ITPKA +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PRKX +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PRKACG +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ATP2B1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ATP2B2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html AGTR1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ATP2B3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ATP2B4 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GRIN2C +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GRIN2D +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CHRNA7 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PRKACA +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PRKACB +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html EGFR +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html BST1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html MYLK3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html HTR4 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GRIN2A +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CHP2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html MYLK2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html NTSR1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CD38 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PLCE1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html SLC25A31 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CAMK4 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html HTR7 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html RYR3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html HTR6 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html RYR1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PDGFRA +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html RYR2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PDGFRB +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PHKA2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html DRD1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADORA2B +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ERBB4 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CYSLTR1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CYSLTR2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADORA2A +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ERBB3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ERBB2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html DRD5 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PHKA1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html TRHR +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html BDKRB1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html BDKRB2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADRB3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GRPR +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html TRPC1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html SPHK2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CACNA1I +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GRIN1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html SPHK1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html VDAC2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CACNA1S +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html VDAC3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html VDAC1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html P2RX5 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html P2RX4 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html P2RX7 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html P2RX6 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html P2RX1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ATP2A2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PLCG1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ATP2A3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PPID +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html P2RX3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html AVPR1B +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html P2RX2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ATP2A1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html LTB4R2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PLCG2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html TBXA2R +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CACNA1G +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADRA1B +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html AVPR1A +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CACNA1H +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADRA1A +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CACNA1E +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CACNA1F +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CACNA1C +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CACNA1D +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADRA1D +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CACNA1A +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html MYLK +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CACNA1B +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PLCZ1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CCKAR +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html TACR3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PHKB +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html TACR2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html TACR1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html EDNRA +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html EDNRB +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PLCB3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PLCB4 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html NOS3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html NOS2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PLCB1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PLCB2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html HTR5A +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PRKCA +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PTGER1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PTGER3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CCKBR +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html SLC25A4 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PHKG1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html SLC25A5 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PHKG2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html SLC25A6 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PRKCG +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GRM1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PRKCB +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GRM5 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GNAL +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CHRM5 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADRB2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADRB1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CHRM3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GNAQ +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CHRM2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CHRM1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html GNAS +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PTAFR +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CAMK2G +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PPP3R1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PPP3R2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html OXTR +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html HRH1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PDE1B +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html HRH2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PDE1C +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CALML3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PTK2B +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PDE1A +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PPP3CB +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PLCD3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CAMK2D +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PLCD4 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PPP3CC +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CALML6 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PLCD1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CAMK2B +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CHP +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PPP3CA +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CALML5 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CAMK2A +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html SLC8A1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html SLC8A2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html NOS1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html LOC729317 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ITPR3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PTGFR +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ITPR1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ITPR2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html ADCY9 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html PLN +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CALM3 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html HTR2B +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html HTR2C +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CALM2 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html HTR2A +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html CALM1 +KEGG CALCIUM SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CALCIUM_SIGNALING_PATHWAY.html F2R +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADCY3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADCY4 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html HRAS +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADCY1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADCY2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADCY7 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADCY8 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADCY5 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADCY6 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html STAT5B +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html FOXO3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCL11 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCL12 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PRKX +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCL10 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNG8 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PRKACG +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html TIAM2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html TIAM1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCR10 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PIK3CA +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNG2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PRKACA +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNG3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PRKACB +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNG4 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNG5 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNG7 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PIK3CG +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ROCK1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html BRAF +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html NCF1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PIK3CB +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ROCK2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html RELA +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PIK3CD +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL4L1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL4L2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCR9 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html MAPK1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCR8 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCR7 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCR6 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PPBP +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCR5 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ARRB2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCR4 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ARRB1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCR3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html MAPK3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CX3CR1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCR2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNAI3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html FGR +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNAI2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GRB2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNAI1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html NFKBIB +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADRBK2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL8 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html NFKBIA +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADRBK1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CX3CL1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PF4V1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL5 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL4 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL7 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PXN +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html DOCK2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PTK2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html KRAS +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html RAC2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html RAC1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ITK +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html VAV3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html MAP2K1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html VAV2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html VAV1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNGT1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNGT2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCL14 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCL13 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCL16 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html IKBKG +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GRK6 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html RAP1A +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GRK7 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GRK4 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html RAP1B +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GRK5 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html IKBKB +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html XCL1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html XCL2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GRK1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PREX1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html BCAR1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCR1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCR2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html NFKB1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCR3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html AKT1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CDC42 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PLCB3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PLCB4 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCR5 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCR4 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL3L1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCR6 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL3L3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html RHOA +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html SHC1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PAK1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PLCB1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html XCR1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html SHC3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CSK +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html SHC2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PLCB2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CHUK +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html AKT3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html SHC4 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html AKT2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html LYN +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PRKCD +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html WAS +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ELMO1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PRKCB +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CRKL +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNB2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNB1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNB5 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNB4 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html WASL +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNB3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCL1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PRKCZ +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PARD3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCL5 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCL3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCR1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCL2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCL9 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNG13 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PF4 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNG11 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNG12 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CXCL6 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL28 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL27 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL26 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL24 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL25 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL22 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL23 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL20 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PTK2B +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL21 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html SOS1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html RASGRP2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html SOS2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PIK3R5 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PIK3R3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PIK3R1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PIK3R2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html IL8 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html HCK +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html RAF1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL19 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html STAT1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL16 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL15 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL18 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html STAT3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL17 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html STAT2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL11 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html NRAS +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL13 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html PPBPL1 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CCL14 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html ADCY9 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GSK3A +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GSK3B +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html GNG10 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html JAK2 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html JAK3 +KEGG CHEMOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHEMOKINE_SIGNALING_PATHWAY.html CRK +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCZ1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html IMPA2 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html CDIPT +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html IMPA1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html SYNJ1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIP5K1B +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIP5K1C +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html ITPKB +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIP5K1A +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PTEN +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html ITPKA +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html CDS2 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCB3 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCB4 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIK3C3 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIK3CA +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html SYNJ2 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCB1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html ITPK1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCB2 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIK3CG +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PRKCA +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIK3C2G +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIK3CB +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIK3C2A +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html INPPL1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIK3C2B +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIK3CD +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PI4KA +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PRKCG +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PI4KB +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html CDS1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PRKCB +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCE1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html INPP4B +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html INPP4A +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html INPP1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html OCRL +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html DGKA +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html DGKB +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html DGKE +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html INPP5K +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html CALML3 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html DGKD +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html INPP5J +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html DGKG +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIKFYVE +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCD3 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCD4 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html CALML6 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html INPP5E +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCD1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIK3R5 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html CALML5 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html INPP5D +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIK3R3 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html INPP5B +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIK3R1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html INPP5A +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIK3R2 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html DGKQ +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html DGKH +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html DGKI +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html ITPR3 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html ITPR1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html ITPR2 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCG1 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PLCG2 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html CALM3 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html DGKZ +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html IPPK +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIP4K2A +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIP4K2C +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html CALM2 +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html PIP4K2B +KEGG PHOSPHATIDYLINOSITOL SIGNALING SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PHOSPHATIDYLINOSITOL_SIGNALING_SYSTEM.html CALM1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html DBF4 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html TGFB3 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html PKMYT1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html TTK +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html PTTG2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html PTTG1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC16 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html TGFB1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html TGFB2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html RAD21 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDKN2A +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDKN2B +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDKN2C +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDKN2D +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CCNA1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CCNA2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html STAG2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CUL1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html STAG1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ANAPC1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html LOC651610 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ANAPC2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html RBL2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ANAPC5 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html RBL1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ANAPC4 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html SKP2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ESPL1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html SKP1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ORC1L +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html WEE1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html WEE2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html MAD2L1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html EP300 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ANAPC7 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html MAD2L2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html LOC728622 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html FZR1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ANAPC13 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CHEK1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ANAPC10 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ANAPC11 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CHEK2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html RBX1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ORC6L +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html TFDP2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html TFDP1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CREBBP +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html SMAD4 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html SMAD3 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC23 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC20 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html SMAD2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ATR +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC26 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC27 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ATM +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDKN1C +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDKN1A +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html HDAC2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDKN1B +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html HDAC1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html PLK1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html PCNA +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ABL1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html SMC1A +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html SMC1B +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html E2F1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html E2F2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html MAD1L1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html E2F3 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html E2F4 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html E2F5 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC14A +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC14B +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CCNE2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CCNE1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC45 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html MCM7 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ORC4L +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html MYC +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC7 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC6 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDK1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CCNH +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html TP53 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDK6 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDK7 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html MCM2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html RB1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDK4 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html MCM3 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html MCM4 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDK2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html MCM5 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html MCM6 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CCND1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CCND3 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CCND2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html GADD45G +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ORC5L +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html MDM2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html BUB1B +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html GADD45B +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html GADD45A +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html YWHAZ +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html PRKDC +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html SFN +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html LOC650621 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ZBTB17 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ORC2L +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html BUB1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html BUB3 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html YWHAB +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC25C +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html YWHAE +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html SMC3 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC25A +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CDC25B +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CCNB1 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CCNB3 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html YWHAG +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html CCNB2 +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html YWHAH +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html ORC3L +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html GSK3B +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html YWHAQ +KEGG CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_CYCLE.html LOC731751 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ADCY3 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ADCY4 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ADCY1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ADCY2 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP2R5B +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ADCY7 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP2R5A +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ADCY8 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP2R5D +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html BTRC +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ADCY5 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP2R5C +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ADCY6 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PKMYT1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PTTG2 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html AURKA +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PTTG1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CDC16 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PRKX +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PRKACG +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PGR +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html MOS +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html STAG3 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PRKACA +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PRKACB +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CUL1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ANAPC1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ANAPC2 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ANAPC5 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html SGOL1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ANAPC4 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CHP2 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ESPL1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html SKP1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP1CC +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP1CB +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html MAPK1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html REC8 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP1CA +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html MAD2L1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html MAPK3 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP2R5E +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ANAPC7 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html MAD2L2 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html LOC728622 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ANAPC13 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ANAPC10 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ANAPC11 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html RBX1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html INS +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html FBXO43 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html FBXO5 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html MAP2K1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CDC23 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CDC20 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CDC26 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CDC27 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PLK1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html SMC1A +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html SMC1B +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PLCZ1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CPEB1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CCNE2 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CCNE1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html SLK +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP2R1B +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CDK1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP2R1A +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html AR +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CDK2 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html SPDYC +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html SPDYA +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html YWHAZ +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CAMK2G +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP3R1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP3R2 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html LOC650621 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html IGF1R +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CALML3 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP2CA +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP2CB +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP3CB +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CAMK2D +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html BUB1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP3CC +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CALML6 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CAMK2B +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CHP +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html PPP3CA +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CALML5 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CAMK2A +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html FBXW11 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html YWHAB +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html IGF1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ITPR3 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CDC25C +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html YWHAE +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ITPR1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html SMC3 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ITPR2 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CCNB1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html RPS6KA6 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html YWHAG +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html RPS6KA3 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CCNB2 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html YWHAH +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html MAPK12 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html ADCY9 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html RPS6KA1 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html RPS6KA2 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html YWHAQ +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CALM3 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CALM2 +KEGG OOCYTE MEIOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_OOCYTE_MEIOSIS.html CALM1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html STEAP3 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html LRDD +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html ZMAT3 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html RPRM +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html PMAIP1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html PTEN +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html GTSE1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CCNE2 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CCNE1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html TP53I3 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CASP3 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CDKN2A +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CASP9 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html SERPINE1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CASP8 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html FAS +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html TP53AIP1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html LOC651610 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CDK1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CYCS +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html TP53 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CDK6 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CDK4 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CDK2 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html RFWD2 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html PPM1D +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CCND1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html TNFRSF10B +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CCND3 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CCND2 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html SERPINB5 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html RRM2 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CD82 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html GADD45G +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html DDB2 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html MDM2 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html SIAH1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html MDM4 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html GADD45B +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html GADD45A +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html BID +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CHEK1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html SFN +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html RRM2B +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CHEK2 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CCNG1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html SESN2 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CCNG2 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html SESN1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html SESN3 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html SHISA5 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html BAI1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html RCHY1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html THBS1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html IGF1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html ATR +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html TP73 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html ATM +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CCNB1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CCNB3 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html EI24 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CDKN1A +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html CCNB2 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html BBC3 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html BAX +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html TSC2 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html APAF1 +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html PERP +KEGG P53 SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_P53_SIGNALING_PATHWAY.html IGFBP3 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html BTRC +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html SAE1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CDC16 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CUL3 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CUL2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CUL5 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CUL7 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html WWP2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html KLHL9 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html WWP1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html ITCH +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CUL1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html ANAPC1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html ANAPC2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html ANAPC5 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html SOCS3 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html ANAPC4 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html SOCS1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html SKP2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2J1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html SKP1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2J2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html TRIM37 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html PIAS4 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html HUWE1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html PIAS3 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBR5 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html TRIM32 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html PIAS2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html PIAS1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html ANAPC7 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html LOC728622 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html FZR1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html SYVN1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html ANAPC13 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html PPIL2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBA7 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBA6 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html KEAP1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html ANAPC10 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2QL1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CDC34 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html ANAPC11 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html RBX1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2D4 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html FBXW7 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2D3 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html FBXW8 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2D2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html LOC652346 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html RHOBTB2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html FBXO4 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html RCHY1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html TRAF6 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2D1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html FBXO2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CDC23 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2L6 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CDC20 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBOX5 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CDC26 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2L3 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CDC27 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html BRCA1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2E3 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CBLC +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CBLB +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html RNF7 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html NEDD4 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBA1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBA2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBA3 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html AIRE +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html SMURF2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html SMURF1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2E2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2E1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2G1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2G2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html FANCL +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html MGRN1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2A +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html DDB1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html HERC4 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2F +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html HERC3 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2I +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2H +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html HERC2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2NL +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2C +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html HERC1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2B +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html RFWD2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2N +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2O +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2K +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2M +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html KLHL13 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html DDB2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html MDM2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2W +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html SIAH1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2S +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2U +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2Z +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE3B +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html XIAP +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE3A +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html PML +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html NHLRC1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE3C +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html LOC650621 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html STUB1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2R2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html PRPF19 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html ERCC8 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html MAP3K1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html NEDD4L +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html FBXW11 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html TRIP12 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE4A +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html VHL +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CBL +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE4B +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html BIRC6 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html LOC652671 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html PARK2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html MID1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html BIRC3 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2Q2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html BIRC2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html UBE2Q1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CUL4A +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html TCEB2 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html DET1 +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html CUL4B +KEGG UBIQUITIN MEDIATED PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_UBIQUITIN_MEDIATED_PROTEOLYSIS.html TCEB1 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html SNAP29 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX8 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX7 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html BET1 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html USE1 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html TSNARE1 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX12 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX19 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX18 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX17 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX16 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html SNAP47 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html SEC22B +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html SNAP23 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX11 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html SNAP25 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX10 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX6 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX5 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX4 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX1A +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX3 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX2 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html VTI1B +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html STX1B +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html VTI1A +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html BNIP1 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html VAMP8 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html VAMP7 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html VAMP5 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html VAMP4 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html BET1L +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html VAMP3 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html GOSR2 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html GOSR1 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html VAMP2 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html VAMP1 +KEGG SNARE INTERACTIONS IN VESICULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SNARE_INTERACTIONS_IN_VESICULAR_TRANSPORT.html YKT6 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA21 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html ATG12 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html BECN1L1 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA2 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA1 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html ATG5 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA7 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html INS +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA6 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA5 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html ATG7 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNG +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA4 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html PIK3C3 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html PRKAA1 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html PRKAA2 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA8 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html PIK3R4 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html GABARAPL2 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html GABARAPL1 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html BECN1 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA10 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html ATG3 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html GABARAP +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html ATG4D +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html ATG4C +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html ATG4B +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html ULK1 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html ULK2 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html ATG4A +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html ULK3 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA14 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA13 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA16 +KEGG REGULATION OF AUTOPHAGY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_AUTOPHAGY.html IFNA17 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html HGSNAT +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GNPTG +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP4E1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP1G1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html LGMN +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ATP6AP1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html IDS +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html MCOLN1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html IDUA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html NAPSA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP4M1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GNS +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html NPC1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html NPC2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html NEU1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSL2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html NAGLU +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ACP5 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html PPT2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ACP2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html PPT1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ABCA2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSL1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ATP6V0B +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html SLC11A2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ATP6V0C +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html SLC11A1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CD68 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html LAPTM5 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html NAGA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GALNS +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GALC +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html SCARB2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ENTPD4 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html LAPTM4B +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ABCB9 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html LAPTM4A +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GUSB +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CD63 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html DNASE2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html LAMP1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html LAMP2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html LAMP3 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CLTCL1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ARSB +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html SGSH +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CLTA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CLTB +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GM2A +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP1B1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ARSG +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html HEXA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html HEXB +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP3S2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP3S1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CLTC +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ASAH1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GLB1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP1S3 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP1S1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP1S2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html TPP1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP3B2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ATP6V0D1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html MAN2B1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ATP6V0D2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP3B1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CLN3 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html HYAL1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSZ +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ATP6V1H +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSS +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CD164 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html M6PR +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSW +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html DNASE2B +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSK +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSO +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html IGF2R +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GAA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSE +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSD +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html SORT1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSC +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSB +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSH +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CLN5 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSG +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTSF +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP1M1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html MFSD8 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP1M2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html PSAPL1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html NAGPA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GNPTAB +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP3M2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP3M1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP3D1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GBA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AGA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html TCIRG1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html PLA2G15 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html LIPA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html PSAP +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP4S1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html FUCA1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html MANBA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html SLC17A5 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GLA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html SUMF1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html SMPD1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ARSA +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ATP6V0A1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GGA1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html AP4B1 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ATP6V0A4 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html CTNS +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GGA2 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html GGA3 +KEGG LYSOSOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LYSOSOME.html ATP6V0A2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HRAS +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CHMP4C +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CHMP5 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CHMP4B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CHMP4A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CHMP6 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html FAM125A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html DAB2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html WWP1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html VPS4B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html GIT2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html VPS4A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html DNAJC6 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html STAM +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ITCH +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html EGFR +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html SH3GL3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PLD2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RET +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PLD1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html VPS45 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PSD3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HLA-A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PSD4 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HLA-C +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HLA-B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PSD2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HLA-E +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HLA-G +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HLA-F +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CCR5 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ARRB2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ACAP3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ARRB1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ACAP1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ACAP2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PDGFRA +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PDCD6IP +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html SH3GL2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html SH3GL1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CHMP2A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html FGFR2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ARFGAP1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ARFGAP2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html FGFR4 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ARFGAP3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html FGFR3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ERBB4 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ERBB3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html STAM2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ASAP2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ASAP1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ADRBK2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HSPA1A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ADRBK1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ARF6 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ASAP3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HSPA1B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html SRC +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CHMP2B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HSPA1L +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ADRB3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html LOC652799 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html SNF8 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html EGF +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html IQSEC3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html TRAF6 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html IQSEC1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html AP2M1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CSF1R +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html IQSEC2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html GIT1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PARD6A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PARD6B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html MET +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html LOC652614 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html KDR +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html EPS15 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CBLC +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CBLB +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RABEP1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html NEDD4 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html NTRK1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html GRK6 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html GRK7 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HGS +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html GRK4 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html SMURF2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html GRK5 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PARD6G +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html SMURF1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CLTCL1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html GRK1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PIP4K2B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CLTA +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CLTB +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB5B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html LDLR +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB5C +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html TSG101 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html AP2S1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html VPS37A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PIP5K1B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html VPS37B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CXCR1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PIP5K1C +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CXCR2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html VPS37C +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PIP5K1A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html VPS37D +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CLTC +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ZFYVE20 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CDC42 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html AP2B1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html SMAP2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html SMAP1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CXCR4 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html AGAP1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html AGAP2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html EPN3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB4A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PRKCI +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html LDLRAP1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB11FIP4 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB11FIP5 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB11FIP2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ADRB2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB11FIP3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ADRB1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CHMP1B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PSD +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB5A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html SH3KBP1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html MDM2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB11FIP1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html EPN1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html EPN2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PRKCZ +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PARD3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html USP8 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html EEA1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html KIT +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html IGF1R +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HSPA2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html SH3GLB2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html SH3GLB1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html PIKFYVE +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HSPA6 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB11B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB11A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html IL2RG +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html NEDD4L +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html EHD1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html EHD2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html VPS36 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html EHD3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html HSPA8 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html EHD4 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html STAMBP +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html FAM125B +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html DNM3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html IL2RB +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html IL2RA +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html DNM1L +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html FLT1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html VTA1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html CBL +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RUFY1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html AP2A2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB31 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html TFRC +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html AP2A1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RAB22A +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html VPS24 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html VPS28 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ARAP3 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ARAP2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html DNM1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html ARAP1 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html DNM2 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html F2R +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html VPS25 +KEGG ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOCYTOSIS.html RNF41 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ACOX2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ACOX1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html EHHADH +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX6 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PRDX5 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX5 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html MPV17 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX3 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PMVK +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PRDX1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html AGXT +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX11G +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX7 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ACOX3 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html FAR1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PECR +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html FAR2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ACOT8 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html AGPS +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html MPV17L +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PXMP4 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PXMP2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html GNPAT +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html DAO +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html NOS2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html CAT +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html HMGCL +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html NUDT19 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html NUDT12 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html DECR2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PECI +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html DDO +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html HAO1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html DHRS4 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX26 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html HAO2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html MVK +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html SLC27A2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html CROT +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ACAA1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html XDH +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html HACL1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ECH1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ABCD1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PIPOX +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ACSL1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX19 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html GSTK1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX16 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ABCD2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html IDH2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX14 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html IDH1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ABCD3 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX13 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ABCD4 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX12 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html HSD17B4 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ACSL4 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ACSL3 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX10 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ACSL6 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html ACSL5 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PAOX +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html AMACR +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html EPHX2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html CRAT +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html SOD1 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PHYH +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html SOD2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX11A +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html PEX11B +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html BAAT +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html MLYCD +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html SCP2 +KEGG PEROXISOME http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PEROXISOME.html SLC25A17 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PGF +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html RPS6KB2 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html RPS6KB1 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html AKT1 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PDPK1 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html EIF4EBP1 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PIK3CA +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html MLST8 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html CAB39 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html AKT3 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html AKT2 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PIK3CG +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html BRAF +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PIK3CB +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PIK3CD +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html RPTOR +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html DDIT4 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html VEGFB +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html MAPK1 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html VEGFC +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html HIF1A +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html MAPK3 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html VEGFA +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html CAB39L +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html STK11 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html INS +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PIK3R5 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PRKAA1 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PRKAA2 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PIK3R3 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html FIGF +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PIK3R1 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html PIK3R2 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html STRADA +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html IGF1 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html RICTOR +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html RPS6 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html EIF4E1B +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html EIF4B +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html RPS6KA6 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html RPS6KA3 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html EIF4E +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html TSC1 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html RPS6KA1 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html RPS6KA2 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html ULK1 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html ULK2 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html TSC2 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html ULK3 +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html RHEB +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html MTOR +KEGG MTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MTOR_SIGNALING_PATHWAY.html EIF4E2 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html FASLG +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html NFKB1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PRKX +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PRKACG +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html AKT1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CASP6 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PRKAR2B +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PRKAR2A +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CASP3 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html MYD88 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CASP9 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CASP7 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html IL1RAP +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CASP8 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html EXOG +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PIK3CA +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html IL1B +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CSF2RB +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PRKACA +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html FAS +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PRKACB +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html IL1A +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CHUK +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html AKT3 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html AKT2 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PIK3CG +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html LOC651610 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html IRAK2 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html IRAK1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html AIFM1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html DFFA +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PIK3CB +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html DFFB +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html RELA +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PIK3CD +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CYCS +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html TP53 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CHP2 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html FADD +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html TNFRSF10A +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html TNFRSF10C +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html TNFRSF10B +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html TNFRSF10D +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html RIPK1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html MAP3K14 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html NGF +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html BID +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html TRAF2 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html IL1R1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html TNF +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html XIAP +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PPP3R1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PPP3R2 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html NFKBIA +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html BCL2L1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html IRAK4 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html IRAK3 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html TNFRSF1A +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html BCL2 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PPP3CB +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PPP3CC +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PIK3R5 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CHP +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PPP3CA +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PIK3R3 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PIK3R1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PIK3R2 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CFLAR +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html IL3 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html ENDOD1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html BAD +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html BIRC3 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CAPN2 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html BIRC2 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html ATM +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html TRADD +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CAPN1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html CASP10 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html TNFSF10 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html NTRK1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PRKAR1B +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html BAX +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html ENDOG +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html PRKAR1A +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html IKBKG +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html APAF1 +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html IKBKB +KEGG APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_APOPTOSIS.html IL3RA +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html UQCRC2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html ATP1B1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html UQCRC1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html SLC9A6 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html ATP1B3 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html ATP1B2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html TNNC1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html ATP1B4 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CYC1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX5A +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html UQCRFS1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html UQCRQ +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX5B +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html UQCR10 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html UQCR11 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNG8 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNG7 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNG6 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNG5 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX4I2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNG4 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX4I1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html MYH7 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html LOC727947 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNG3 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html MYH6 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNG2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNG1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX6C +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html TNNT2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html LOC644310 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html UQCRH +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html RYR2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html UQCRB +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html FXYD2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html MYL2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html MYL3 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX7B2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX7B +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNB1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX7C +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CYTB +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNB2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNB3 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX7A2L +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNB4 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html TPM2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html TPM1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html TPM4 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html TPM3 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX6B1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX6B2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html ACTC1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNA2D1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html SLC8A1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX7A2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX7A1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX8C +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX8A +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html ATP1A3 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html ATP1A4 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html ATP1A1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html ATP1A2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNA2D3 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html TNNI3 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNA2D2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNA1S +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html UQCRHL +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNA2D4 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html ATP2A2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX3 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html LOC100130247 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX6A2 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html COX6A1 +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNA1F +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNA1C +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html CACNA1D +KEGG CARDIAC MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CARDIAC_MUSCLE_CONTRACTION.html SLC9A1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADCY3 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html GNA13 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADCY4 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADCY1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADCY2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADCY7 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADCY8 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html GNA11 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADCY5 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html GNA12 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADCY6 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PRKG1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PRKX +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PRKACG +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html AGTR1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ACTG2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PTGIR +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G1B +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PRKACA +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PRKACB +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ROCK1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html BRAF +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ROCK2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html MYLK3 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html MYLK2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PPP1CC +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PPP1CB +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html MAPK1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PPP1CA +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html MAPK3 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G2A +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G2C +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G2E +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G2D +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G2F +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html KCNMB3 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html MYL6 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html KCNMB4 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADORA2B +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADORA2A +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html KCNMB1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html KCNMB2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html MYL9 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html MAP2K1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html MAP2K2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CACNA1S +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G4A +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html AVPR1B +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADRA1B +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html AVPR1A +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html MYH11 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADRA1A +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CACNA1F +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CACNA1C +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G4B +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CACNA1D +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADRA1D +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G4E +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html MYLK +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html MRVI1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html EDNRA +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLCB3 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLCB4 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html GUCY1A2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html RHOA +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html GUCY1A3 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CALCRL +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLCB1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLCB2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html RAMP1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PPP1R14A +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PRKCA +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html KCNMA1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html RAMP3 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html RAMP2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ARHGEF1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ACTA2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PRKCH +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PRKCG +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PRKCE +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ARHGEF12 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PRKCD +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PRKCB +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ARHGEF11 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PRKCQ +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html GNAQ +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G6 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html GNAS +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html GUCY1B3 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G3 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G5 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PPP1R12B +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CALD1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html JMJD7-PLA2G4B +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CYP4A22 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CALML3 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html MYL6B +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G12A +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G12B +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PPP1R12A +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CALML6 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CALML5 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html PLA2G10 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html NPR1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html RAF1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html NPR2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ITPR3 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ITPR1 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ITPR2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CYP4A11 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ADCY9 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html ARAF +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CALM3 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CALM2 +KEGG VASCULAR SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASCULAR_SMOOTH_MUSCLE_CONTRACTION.html CALM1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP2R5B +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP2R5A +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP2R5D +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html BTRC +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT3A +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP2R5C +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html MMP7 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PRKX +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CTNNB1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CSNK2A2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html MAP3K7 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PRKACG +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT4 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT3 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CSNK2A1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PRKACA +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PRKACB +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT6 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CUL1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT10A +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT10B +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html VANGL1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html ROCK1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html ROCK2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html VANGL2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CHP2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html SKP1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html EP300 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html JUN +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html MAPK9 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP2R5E +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html MAPK8 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html LOC728622 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT5A +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT5B +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CXXC4 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html DAAM1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html DAAM2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html RBX1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html RAC2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html RAC3 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html RAC1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CACYBP +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html AXIN2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html AXIN1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html DVL2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html DVL3 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html TCF7 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CREBBP +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html SMAD4 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html SMAD3 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html SMAD2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PORCN +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html DVL1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html SFRP5 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html SFRP1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PRICKLE1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html SFRP2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html SFRP4 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PRICKLE2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WIF1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPARD +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PLCB3 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PLCB4 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FRAT1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html RHOA +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FRAT2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html SOX17 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PLCB1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FOSL1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html MYC +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PLCB2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP2R1B +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PRKCA +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP2R1A +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html TBL1XR1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CTBP1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CTBP2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html TP53 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html LEF1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PRKCG +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PRKCB +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CTNNBIP1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html SENP2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CCND1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PSEN1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CCND3 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CCND2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT9B +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT11 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html SIAH1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html RUVBL1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT9A +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CER1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html NKD1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT16 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html NKD2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html APC2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CAMK2G +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP3R1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP3R2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html TCF7L2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html TCF7L1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CHD8 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP2CA +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP2CB +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP3CB +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html NFAT5 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CAMK2D +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP3CC +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html NFATC4 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CAMK2B +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CHP +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html PPP3CA +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html NFATC2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html NFATC3 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FBXW11 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CAMK2A +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT8A +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT8B +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html APC +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html NFATC1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CSNK1A1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FZD9 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FZD8 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html NLK +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FZD1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CSNK2B +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CSNK1A1L +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FZD3 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FZD2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html MAPK10 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FZD5 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FZD4 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FZD7 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html DKK4 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT2B +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FZD6 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html DKK2 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html FZD10 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT7B +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html DKK1 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html CSNK1E +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html GSK3B +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html LRP6 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html TBL1X +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html WNT7A +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html LRP5 +KEGG WNT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_WNT_SIGNALING_PATHWAY.html TBL1Y +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html ETV7 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html LOC652554 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html GRB2 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html CPEB1 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html KRAS +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html SOS1 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html SOS2 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html PIWIL1 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html PIWIL2 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html PIWIL3 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html PIWIL4 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html ETV6 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html EGFR +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html MAP2K1 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html SPIRE1 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html SPIRE2 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html NOTCH3 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html FMN2 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html NOTCH2 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html MAPK1 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html NOTCH1 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html ETS1 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html ETS2 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html NOTCH4 +KEGG DORSO VENTRAL AXIS FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DORSO_VENTRAL_AXIS_FORMATION.html MAPK3 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html MFNG +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html APH1A +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html JAG2 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html JAG1 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html CIR1 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html NUMB +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html PSENEN +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html MAML3 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html RBPJL +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html LFNG +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html PTCRA +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html DTX4 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html DVL2 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html KAT2A +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html DVL3 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html CTBP1 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html KAT2B +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html CTBP2 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html DTX1 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html DTX3L +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html DTX2 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html MAML1 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html MAML2 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html DTX3 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html CREBBP +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html DLL3 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html DLL1 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html SNW1 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html RFNG +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html DVL1 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html NUMBL +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html NCSTN +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html HES1 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html NOTCH3 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html NOTCH2 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html NOTCH1 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html HDAC2 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html EP300 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html HDAC1 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html PSEN1 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html HES5 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html DLL4 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html PSEN2 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html NOTCH4 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html ADAM17 +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html RBPJ +KEGG NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOTCH_SIGNALING_PATHWAY.html NCOR2 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT3A +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html BTRC +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html STK36 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html GLI2 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html GLI3 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html SHH +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html PRKX +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html ZIC2 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html GLI1 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT2 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html PRKACG +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT1 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT4 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT3 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html RAB23 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html PRKACA +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html HHIP +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html PRKACB +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT6 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html IHH +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT10A +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT10B +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html CSNK1G1 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html CSNK1G2 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html SMO +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT9B +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT11 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html CSNK1G3 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT9A +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT5A +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html DHH +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT16 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT5B +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html SUFU +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html FBXW11 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT8A +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT8B +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html CSNK1A1 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html BMP4 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html BMP2 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html CSNK1A1L +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html GAS1 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT2B +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT7B +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html CSNK1D +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html CSNK1E +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html GSK3B +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html PTCH1 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html PTCH2 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html BMP7 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html LRP2 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html WNT7A +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html BMP5 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html BMP8B +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html BMP6 +KEGG HEDGEHOG SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEDGEHOG_SIGNALING_PATHWAY.html BMP8A +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html NOG +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html E2F4 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ACVRL1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html LTBP1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html E2F5 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html GDF7 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html GDF6 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html GDF5 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html FST +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html TGFB3 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html RPS6KB2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html RPS6KB1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html TGFB1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ACVR1C +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html TGFB2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html CDKN2B +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ZFYVE16 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ZFYVE9 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html IFNG +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html RHOA +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html MYC +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html CUL1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html PITX2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html PPP2R1B +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html PPP2R1A +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html RBL2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ROCK1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ROCK2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html NODAL +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html RBL1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html SKP1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html LEFTY1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html INHBB +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ACVR2A +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html AMH +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html INHBA +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html MAPK1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ACVR2B +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html EP300 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html INHBE +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html MAPK3 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html INHBC +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ACVR1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html LOC728622 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html TNF +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html BMPR2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html DCN +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html RBX1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html COMP +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html PPP2CA +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html LEFTY2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html PPP2CB +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html THBS1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html THBS2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html THBS3 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html TFDP1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html THBS4 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html BMP4 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html AMHR2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html BMP2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html SMAD9 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html SMAD7 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html SMAD6 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html TGFBR1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html TGFBR2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html CREBBP +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html SMAD5 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html SMAD4 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html SMAD3 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html SMAD2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html SMAD1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html SP1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ID2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ID1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ID4 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html SMURF2 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html SMURF1 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html ID3 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html BMP7 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html BMPR1B +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html CHRD +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html BMP5 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html BMP8B +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html BMP6 +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html BMPR1A +KEGG TGF BETA SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TGF_BETA_SIGNALING_PATHWAY.html BMP8A +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html HRAS +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PLXNA3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PLXNA1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PLXNA2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EFNA1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EFNA2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EFNA3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html L1CAM +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html LRRC4C +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html CXCL12 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html UNC5B +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html UNC5A +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html ROBO1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA7A +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html ROBO2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html UNC5D +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html ROBO3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html UNC5C +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html ROCK1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EFNB3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html ROCK2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PLXNB1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PLXNB2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EFNB1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PLXNB3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EFNB2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html CHP2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html MAPK1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html RND1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html MAPK3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EFNA5 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EFNA4 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PLXNC1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html GNAI3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html GNAI2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html GNAI1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHB3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html ITGB1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHB4 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHB1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHB2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA5A +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA5B +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PTK2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHB6 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html KRAS +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html RAC2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html RAC3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html RAC1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html MET +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NTN4 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHA1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NTN1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHA2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NTN3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHA3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHA5 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHA4 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA6A +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHA7 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA6B +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHA6 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA6C +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA6D +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html RGS3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html EPHA8 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html ABL1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NRP1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html FES +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PAK6 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PAK7 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html CDC42 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PAK2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA3G +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PAK3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html CXCR4 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PAK4 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA3F +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA3E +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA3D +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html RHOA +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA3C +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA3B +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html RHOD +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PAK1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA3A +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html LIMK2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html LIMK1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html ARHGEF12 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html CDK5 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SLIT1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SLIT2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SLIT3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NCK2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA4G +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA4F +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html CFL2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NCK1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html CFL1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SRGAP3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA4C +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA4B +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA4D +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SEMA4A +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SRGAP1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html SRGAP2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html ABLIM1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html DCC +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html ABLIM2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html ABLIM3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PPP3R1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PPP3R2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PPP3CB +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NFAT5 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PPP3CC +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NFATC4 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html CHP +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html PPP3CA +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NFATC2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NFATC3 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html RASA1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NFATC1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NGEF +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NTNG1 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html DPYSL5 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html DPYSL2 +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html NRAS +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html FYN +KEGG AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AXON_GUIDANCE.html GSK3B +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html HRAS +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PTGS2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html AKT1 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html CDC42 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html CASP9 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G1B +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PIK3CA +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html NOS3 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html SHC2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html AKT3 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html AKT2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PIK3CG +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PRKCA +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PIK3CB +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PIK3CD +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html CHP2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PRKCG +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PRKCB +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html SH2D2A +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html MAPK1 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html VEGFA +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html MAPK3 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G2A +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html HSPB1 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G6 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G2C +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G2E +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G3 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G2D +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G5 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G2F +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PPP3R1 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html MAPKAPK3 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PPP3R2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html MAPKAPK2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html SRC +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PXN +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PTK2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html JMJD7-PLA2G4B +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html KRAS +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html RAC2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html RAC3 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G12A +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G12B +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html RAC1 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PPP3CB +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html NFAT5 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PPP3CC +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PIK3R5 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html NFATC4 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html CHP +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PPP3CA +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html NFATC2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PIK3R3 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html NFATC3 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PIK3R1 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PIK3R2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html NFATC1 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html SPHK2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G10 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html MAP2K1 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html MAP2K2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html SPHK1 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html RAF1 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html MAPK11 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html BAD +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html KDR +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html NRAS +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G4A +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLCG1 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html MAPK12 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html MAPK13 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html MAPK14 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLCG2 +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G4B +KEGG VEGF SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VEGF_SIGNALING_PATHWAY.html PLA2G4E +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html HRAS +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PGF +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html CTNNB1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ACTG1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ILK +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PIK3CA +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html RAPGEF1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PIK3CG +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ROCK1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html BRAF +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ROCK2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PIK3CB +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MYLK3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PIK3CD +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MYLK2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html VEGFB +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html VEGFC +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MAPK1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PPP1CA +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LAMC3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html JUN +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html VEGFA +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MAPK3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PDGFRA +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MAPK9 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PDGFRB +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LAMC2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MAPK8 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LAMC1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGA2B +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html IBSP +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ERBB2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGA11 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGA10 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PXN +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LAMB4 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LAMB3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LAMB2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html RAC2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html RAC3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html RAC1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LAMB1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html SPP1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LOC646048 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MAP2K1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html HGF +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html KDR +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LAMA2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LAMA1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LAMA4 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LAMA3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LAMA5 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html LOC646821 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html BCAR1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PTEN +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PDPK1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL11A2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL11A1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PARVG +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html FLNC +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html FLNB +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html FLNA +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html CCND1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html CCND3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html CCND2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PARVB +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PARVA +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL3A1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL2A1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL6A6 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html BCL2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html SOS1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL6A3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html SOS2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL6A2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL6A1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html THBS1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html THBS2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html THBS3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html THBS4 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html IGF1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MAPK10 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html BIRC3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html CAPN2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html BIRC2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html FYN +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html GSK3B +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PDGFB +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PDGFA +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html VTN +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MYL10 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html CHAD +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html VCL +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PDGFC +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PDGFD +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html EGFR +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ACTN4 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ACTN1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ACTN2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ACTN3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PPP1CC +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PPP1CB +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html RASGRF1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL1A2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html RELN +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL1A1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html CAV3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html CAV2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MYL7 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html CAV1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MYL5 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MYL2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html GRB2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html DIAPH1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGB4 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ELK1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGB5 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGB3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGB1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html SRC +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MYL9 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PTK2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html DOCK1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGB8 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGB7 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGAV +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGB6 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html EGF +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html FN1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html VAV3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MET +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGA1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MYLPF +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGA2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MYL12B +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGA3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MYL12A +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGA4 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html VAV2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html VAV1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGA9 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGA6 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGA5 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGA8 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ITGA7 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html RAP1A +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html RAP1B +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html MYLK +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html TLN1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html TLN2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PIP5K1C +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html AKT1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PAK6 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PAK7 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html CDC42 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ARHGAP5 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PAK2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PAK3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PAK4 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html RHOA +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html SHC1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ZYX +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PAK1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html SHC3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html SHC2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html AKT3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html AKT2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html SHC4 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PRKCA +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PRKCG +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html VASP +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PRKCB +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html CRKL +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html XIAP +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html TNC +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html IGF1R +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COMP +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html TNR +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PPP1R12A +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html TNN +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PIK3R5 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PIK3R3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html FIGF +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PIK3R1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html PIK3R2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html ACTB +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL4A4 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL4A2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html FLT1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL4A1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html TNXB +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html FLT4 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html RAF1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html BAD +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL5A3 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL5A2 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL5A1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html COL4A6 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html VWF +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html GRLF1 +KEGG FOCAL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FOCAL_ADHESION.html CRK +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html VTN +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html SDC4 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html SDC2 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html SDC3 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html CHAD +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html GP9 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html CD47 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html GP5 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html GP6 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html CD44 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html SV2B +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html SV2A +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL11A2 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL11A1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html SV2C +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html SDC1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html CD36 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html LAMC3 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL1A2 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html RELN +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html LAMC2 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html LAMC1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL1A1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGA2B +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html IBSP +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html TNC +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL3A1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html DAG1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGA11 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGB4 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGA10 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGB5 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL2A1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGB3 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGB1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html HMMR +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html LAMB4 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html LAMB3 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html LAMB2 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL6A6 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGB8 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html GP1BB +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html TNR +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COMP +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGB7 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGAV +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL6A3 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGB6 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL6A2 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL6A1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html GP1BA +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html TNN +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html AGRN +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html THBS1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html LAMB1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html THBS2 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html THBS3 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html THBS4 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html FN1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html SPP1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL4A4 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL4A2 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html TNXB +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL4A1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGA1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html HSPG2 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGA2 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGA3 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGA4 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL5A3 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL5A2 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL5A1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html COL4A6 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html LAMA2 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html LAMA1 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html VWF +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGA9 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html LAMA4 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html LAMA3 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGA6 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html LAMA5 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGA5 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGA8 +KEGG ECM RECEPTOR INTERACTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ECM_RECEPTOR_INTERACTION.html ITGA7 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html PVR +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html MPZL1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CADM3 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html OCLN +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CADM1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html L1CAM +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NRCAM +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NEGR1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html SPN +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html F11R +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html PTPRM +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html PTPRF +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-A +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-C +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD40 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-B +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-E +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DQA2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html PDCD1LG2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-G +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DQA1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-F +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NCAM1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NCAM2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD40LG +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD34 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DPA1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html MADCAM1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD226 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DRA +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html GLG1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ITGAL +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DRB1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DRB3 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ITGB2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ITGB1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ITGAM +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ALCAM +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html PVRL1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ITGB8 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html PVRL3 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ITGAV +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ITGB7 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ICOS +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html PVRL2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DRB4 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DRB5 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DPB1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DOA +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DOB +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD276 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ITGA4 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html LOC652614 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ITGA9 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ITGA6 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ITGA8 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NLGN4X +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD58 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD274 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN8 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN7 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN9 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN4 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD8A +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN3 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD8B +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN6 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN5 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html SDC4 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DMB +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DMA +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html PDCD1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html SDC2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html SDC3 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CNTNAP2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CNTNAP1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ESAM +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ICAM1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NRXN2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NRXN3 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ICAM2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ICAM3 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NRXN1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html SIGLEC1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD86 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html SDC1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD80 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CNTN2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CNTN1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html VCAN +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html JAM2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html JAM3 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html ICOSLG +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html HLA-DQB1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN16 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN17 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN18 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN19 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CDH1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN10 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN11 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CDH2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NEO1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CDH3 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CDH4 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN14 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CDH5 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN15 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html VCAM1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD22 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD4 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD6 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html SELPLG +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD28 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html PTPRC +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html SELP +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html MAG +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html MPZ +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html SELL +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CTLA4 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NLGN1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NFASC +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN22 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CD99 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NLGN2 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html NLGN3 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN20 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CLDN23 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html CDH15 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html PECAM1 +KEGG CELL ADHESION MOLECULES CAMS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CELL_ADHESION_MOLECULES_CAMS.html SELE +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html LOC646821 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html WASF3 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html WASF1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html WASF2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html LMO7 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html FER +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html IQGAP1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html VCL +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html CTNNB1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html MAP3K7 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html ACTG1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html CSNK2A2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html CDC42 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html CSNK2A1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html RHOA +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html INSR +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html PTPRJ +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html EGFR +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html PTPRM +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html PTPRF +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html ACTN4 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html BAIAP2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html LEF1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html ACTN1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html ACTN2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html ACTN3 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html CTNNA1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html WAS +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html CTNNA3 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html CTNNA2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html FARP2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html MAPK1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html EP300 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html MAPK3 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html WASL +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html FGFR1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html PARD3 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html ERBB2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html CTNND1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html CDH1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html ACP1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html TCF7L2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html TCF7L1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html SRC +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html PVRL4 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html IGF1R +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html PVRL1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html RAC2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html SORBS1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html RAC3 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html PVRL3 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html PVRL2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html RAC1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html SSX2IP +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html YES1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html MLLT4 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html ACTB +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html PTPRB +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html LOC646048 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html PTPN6 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html TCF7 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html NLK +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html TGFBR1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html MET +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html TGFBR2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html CREBBP +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html SMAD4 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html CSNK2B +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html SMAD3 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html SMAD2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html SNAI2 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html SNAI1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html TJP1 +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html FYN +KEGG ADHERENS JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADHERENS_JUNCTION.html PTPN1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html HRAS +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH15 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html OCLN +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html VAPA +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html ZAK +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CASK +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYL10 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html AMOTL1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CTNNB1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CSNK2A2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html ACTG1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CSNK2A1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html RRAS +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html F11R +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MAGI3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html INADL +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MAGI2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MAGI1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html ACTN4 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MPDZ +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH4 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html ACTN1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH7 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html ACTN2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH6 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html ACTN3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CTNNA1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CSDA +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH9 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH8 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CTNNA3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CTNNA2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html IGSF5 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CGN +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html RAB13 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH7B +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYL7 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYL5 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html GNAI3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYL2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html GNAI2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html GNAI1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MRAS +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html SRC +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html TJAP1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html LLGL1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html LLGL2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYL9 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html KRAS +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PPP2R2B +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PPP2R2C +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PPP2R2D +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PARD6A +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PARD6B +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html LOC646048 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html EPB41 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CRB3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYLPF +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYL12B +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYL12A +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH11 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH13 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PARD6G +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH14 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MYH10 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN8 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN7 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html LOC646821 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN9 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN4 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN6 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN5 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PTEN +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html AKT1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CDC42 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CTTN +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html RHOA +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html AKT3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html AKT2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PPP2R1B +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PRKCA +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PPP2R1A +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html SYMPK +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MPP5 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PRKCI +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PRKCH +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PRKCG +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CDK4 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PRKCE +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PRKCD +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PRKCB +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html EPB41L2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html EPB41L3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PRKCQ +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html EPB41L1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html RRAS2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html ASH1L +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html JAM2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html JAM3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PPP2R2A +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN16 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN17 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PRKCZ +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PARD3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html RAB3B +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN18 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN19 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN10 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN11 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN14 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN15 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PPP2CA +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html PPP2CB +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html EXOC4 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html EXOC3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html YES1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html MLLT4 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html ACTB +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html HCLS1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CSNK2B +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN22 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN20 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html CLDN23 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html NRAS +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html TJP1 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html TJP3 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html TJP2 +KEGG TIGHT JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TIGHT_JUNCTION.html SPTAN1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ADCY3 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ADCY4 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ADCY1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html HRAS +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ADCY2 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PDGFB +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBB2B +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ADCY7 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PDGFA +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBB2A +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ADCY8 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GNA11 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ADCY5 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBB2C +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ADCY6 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GJA1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html LPAR1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PRKG2 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PRKG1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PRKX +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PRKACG +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PLCB3 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PLCB4 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GUCY1A2 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBB6 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GUCY1A3 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PRKACA +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PDGFC +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PRKACB +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBB8 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PDGFD +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBB1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PLCB1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBA1A +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PLCB2 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBA1B +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBA1C +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBB3 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBB4 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html MAP2K5 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html EGFR +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PRKCA +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GJD2 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html CDK1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PRKCG +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GRM1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PRKCB +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GRM5 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html MAPK1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ADRB1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GNAQ +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html MAPK3 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PDGFRA +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBA4A +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html PDGFRB +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GNAS +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GUCY1B3 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html MAPK7 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html DRD1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GNAI3 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GNAI2 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GNAI1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html GRB2 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html DRD2 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html SRC +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBB4Q +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBB +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html KRAS +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html MAP3K2 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html SOS1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html SOS2 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBA3C +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBA3D +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBA3E +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html EGF +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html MAP2K1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html MAP2K2 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html RAF1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ITPR3 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ITPR1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ITPR2 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html NRAS +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TJP1 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBA8 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html ADCY9 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html CSNK1D +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html TUBAL3 +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html HTR2B +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html HTR2C +KEGG GAP JUNCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GAP_JUNCTION.html HTR2A +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html A2M +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html MASP1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html MASP2 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html F13A1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C1QC +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html SERPINA5 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html CD46 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html SERPINE1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html CFH +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html SERPINA1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html CFI +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html CFD +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html KNG1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html F11 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html F12 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html F10 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C5AR1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C4A +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C4B +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html F8 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html F9 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html SERPING1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html F7 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html PROC +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html PLAUR +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C8G +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C1QA +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C8A +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C1QB +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C8B +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html THBD +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html F5 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html SERPINF2 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html F3 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html F2 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html TFPI +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html PROS1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C3AR1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html MBL2 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C7 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C9 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C3 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C6 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C5 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C1R +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html BDKRB1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C1S +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html BDKRB2 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html F13B +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html FGG +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html FGA +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html FGB +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html KLKB1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html SERPINC1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C2 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html PLAT +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html CR1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html CR2 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html CFB +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C4BPB +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html C4BPA +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html PLG +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html VWF +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html CD55 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html CD59 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html SERPIND1 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html CPB2 +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html PLAU +KEGG COMPLEMENT AND COAGULATION CASCADES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COMPLEMENT_AND_COAGULATION_CASCADES.html F2R +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HSP90AB1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KLRC4 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA21 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KLRC2 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KLRC3 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html PDIA3 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html CD8A +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html CD8B +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html LGMN +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DMB +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html CANX +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DMA +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html RFXAP +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html RFXANK +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html B2M +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html TAPBP +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KLRD1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html LTA +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html CIITA +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HSP90AA1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-A +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-C +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-B +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html CTSS +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-E +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DQA2 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DQA1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-G +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-F +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html PSME1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html PSME2 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KIR3DL3 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DPA1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KIR2DL1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html PSME3 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html CTSB +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KIR2DL3 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KIR2DL2 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KLRC1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KIR3DL1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DRA +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KIR2DL4 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KIR3DL2 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DQB1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KIR2DL5A +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DRB1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DRB3 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html NFYC +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFI30 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html NFYB +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HSPA1A +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html NFYA +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HSPA1B +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html CALR +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html CD74 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html CTSL1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HSPA1L +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA2 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HSPA2 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA7 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA6 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html TAP2 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA5 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html TAP1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA4 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HSPA6 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DRB4 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DRB5 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HSPA4 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html CD4 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DPB1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HSPA5 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA8 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DOA +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HLA-DOB +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html HSPA8 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KIR2DS5 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html RFX5 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html CREB1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA10 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KIR2DS1 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KIR2DS4 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html KIR2DS3 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html LOC652614 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA14 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA13 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA16 +KEGG ANTIGEN PROCESSING AND PRESENTATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ANTIGEN_PROCESSING_AND_PRESENTATION.html IFNA17 +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html THOP1 +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html MME +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html ANPEP +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html CTSA +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html ENPEP +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html LNPEP +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html AGTR1 +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html ACE +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html AGTR2 +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html REN +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html AGT +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html MAS1 +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html ACE2 +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html CPA3 +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html CMA1 +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html NLN +KEGG RENIN ANGIOTENSIN SYSTEM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENIN_ANGIOTENSIN_SYSTEM.html CTSG +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TBK1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TLR1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TIRAP +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TLR2 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TLR3 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TLR4 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TLR5 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CXCL11 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TLR6 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TLR7 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TLR8 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CXCL10 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TLR9 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAP3K7 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MYD88 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAP3K8 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IL1B +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html PIK3CA +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAP2K7 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAP2K6 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html PIK3CG +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html PIK3CB +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html RELA +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html PIK3CD +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html FADD +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CD40 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNB1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html JUN +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK3 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK9 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK8 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CCL3 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NFKBIA +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CCL5 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CCL4 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IRAK4 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA2 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA7 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA6 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA5 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA4 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html RAC1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA8 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TRAF6 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TRAF3 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html SPP1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAP2K1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAP2K2 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAP2K3 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAP2K4 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IKBKE +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IKBKG +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IKBKB +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA21 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TOLLIP +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NFKB1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html AKT1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html FOS +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TICAM1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CASP8 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TICAM2 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html LBP +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CHUK +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html AKT3 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html AKT2 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IRAK1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html LY96 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNAR1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNAR2 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CD86 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CTSK +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CD80 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html RIPK1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IL12A +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IL12B +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TNF +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CXCL9 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html PIK3R5 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html PIK3R3 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html PIK3R1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html PIK3R2 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IL6 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IL8 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA10 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK11 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK10 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html STAT1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TAB1 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TAB2 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK12 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IRF5 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK13 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IRF7 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK14 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA14 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IRF3 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA13 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA16 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CD14 +KEGG TOLL LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TOLL_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA17 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html HSP90AB1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IL18 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NFKB1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CASP5 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAP3K7 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NLRC4 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NOD2 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NOD1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CASP8 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IL1B +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CASP1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CHUK +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html HSP90AA1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html RELA +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NLRP3 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NLRP1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CARD18 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK3 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK9 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html RIPK2 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NAIP +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK8 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TNFAIP3 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CXCL1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TNF +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CCL2 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html XIAP +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NFKBIB +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CXCL2 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CCL8 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NFKBIA +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CCL5 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html PYDC1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CCL7 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MEFV +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html PYCARD +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html PSTPIP1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TRAF6 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IL6 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CARD8 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CARD9 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IL8 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK11 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK10 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TAB1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html BIRC3 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CARD6 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html SUGT1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html BIRC2 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TAB2 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TAB3 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CCL11 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html HSP90B1 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CCL13 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html ERBB2IP +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK12 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK13 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK14 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IKBKG +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TRIP6 +KEGG NOD LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NOD_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IKBKB +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA21 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TBK1 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html DAK +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NFKB1 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CXCL10 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAP3K7 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TMEM173 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html ATG5 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html ISG15 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNE +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CASP8 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNK +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CHUK +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html RELA +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html FADD +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TANK +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html SIKE1 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNB1 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html RIPK1 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IL12A +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK9 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK8 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IL12B +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAVS +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TRAF2 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html OTUD5 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFIH1 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TNF +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html ATG12 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NFKBIB +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NLRX1 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNW1 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html NFKBIA +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html AZI2 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html PIN1 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html RNF125 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CYLD +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA2 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA1 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA7 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html DDX3X +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA6 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAP3K1 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA5 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html DDX3Y +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA4 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA8 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TRAF6 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TBKBP1 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html DHX58 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TRAF3 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IL8 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA10 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK11 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TRIM25 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK10 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html TRADD +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html DDX58 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html CASP10 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IKBKE +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK12 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK13 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IRF7 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html MAPK14 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IKBKG +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA14 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IRF3 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA13 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IKBKB +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA16 +KEGG RIG I LIKE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RIG_I_LIKE_RECEPTOR_SIGNALING_PATHWAY.html IFNA17 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA21 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html TBK1 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IL18 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html NFKB1 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html CXCL10 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html TMEM173 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IL1B +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html CASP1 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html CHUK +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html POLR1D +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html RELA +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html CCL4L1 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html CCL4L2 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html POLR1C +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNB1 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html RIPK1 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html RIPK3 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html MAVS +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html NFKBIB +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html NFKBIA +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IL33 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html CCL5 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html CCL4 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA2 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA1 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA7 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA6 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA5 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA4 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html PYCARD +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA8 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html ZBP1 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html POLR3G +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html POLR3F +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IL6 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html POLR3H +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html POLR3K +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA10 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html TREX1 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html POLR3A +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html POLR3GL +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html POLR3C +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html POLR3B +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html AIM2 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html POLR3D +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html DDX58 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IKBKE +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IRF7 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IKBKG +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA14 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IRF3 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA13 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA16 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IKBKB +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html IFNA17 +KEGG CYTOSOLIC DNA SENSING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CYTOSOLIC_DNA_SENSING_PATHWAY.html ADAR +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL9R +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL6ST +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html OSMR +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html STAT5A +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html STAT5B +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL19 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL13 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL15 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL10 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL11 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNE +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNG +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SPRED2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIK3CA +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL15RA +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CSF3R +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html STAM +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNK +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SPRED1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIK3CG +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL29 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SOCS2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIK3CB +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SOCS3 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIK3CD +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SOCS1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html LIFR +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIM1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SOCS7 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL26 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SOCS4 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL24 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SOCS5 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL21 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL22 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL11RA +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL20 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html EP300 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIAS4 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNB1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIAS3 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIAS2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIAS1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL22RA1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html GRB2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html STAM2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CNTFR +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html BCL2L1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html LIF +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL12RB2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL23A +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL12RB1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA7 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA6 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA5 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA4 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA8 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PTPN6 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL23R +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CREBBP +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PTPN11 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html GH2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html GH1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CBLC +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CBLB +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL5RA +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL3RA +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL22RA2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CSH1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA21 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html LEPR +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL21R +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL28RA +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SPRY4 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SPRY3 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html AKT1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SPRY2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SPRY1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CLCF1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL4R +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CSF2RB +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html TPO +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL13RA1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNGR2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PRL +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html MYC +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNGR1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CSF2RA +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html AKT3 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html GHR +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL13RA2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html AKT2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL6R +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNAR1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html OSM +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html TYK2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNAR2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CCND1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL20RB +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CCND3 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL20RA +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CCND2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL12A +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL12B +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CSF3 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CSF2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CRLF2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CTF1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNW1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL7R +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html STAT6 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html STAT4 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL10RB +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL10RA +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SOS1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html SOS2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL2RG +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIK3R5 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIK3R3 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIK3R1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PIK3R2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html EPO +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL4 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL3 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL6 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL2RB +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL5 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL2RA +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL7 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CBL +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL9 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA10 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html STAT1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html STAT3 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CISH +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html STAT2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IRF9 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html LEP +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html TSLP +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html CNTF +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html PRLR +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html JAK1 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html EPOR +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html JAK2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA14 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html JAK3 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA13 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL28B +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html MPL +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA16 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL28A +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IL2 +KEGG JAK STAT SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_JAK_STAT_SIGNALING_PATHWAY.html IFNA17 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL9R +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD8A +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD8B +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html GYPA +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html ANPEP +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html GP9 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html FLT3LG +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL11 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html GP5 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html DNTT +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD44 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL4R +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html MS4A1 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CSF3R +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL1B +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html TPO +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CSF2RA +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL1A +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD3G +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD3D +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD3E +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL6R +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL11RA +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD38 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD37 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD36 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD34 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD33 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html HLA-DRA +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html ITGA2B +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CSF3 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL1R2 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CSF2 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL1R1 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html TNF +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html HLA-DRB1 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html FCER2 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CSF1 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html HLA-DRB3 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html MME +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html KITLG +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html KIT +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html ITGB3 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL7R +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html ITGAM +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD9 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html GP1BB +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html LOC652799 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html FCGR1A +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD2 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html HLA-DRB4 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD22 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html HLA-DRB5 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html GP1BA +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD4 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD5 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD7 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html THPO +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html EPO +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CSF1R +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL4 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL3 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL6 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CR1 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL5 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL2RA +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CR2 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL7 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html FLT3 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD1C +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html ITGA1 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD1B +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html ITGA2 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD1A +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html ITGA3 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html ITGA4 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD1E +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD1D +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD55 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD19 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html ITGA6 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html TFRC +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html ITGA5 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD59 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html EPOR +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL5RA +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html CD14 +KEGG HEMATOPOIETIC CELL LINEAGE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HEMATOPOIETIC_CELL_LINEAGE.html IL3RA +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html MICB +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KLRC2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html HRAS +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html MICA +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KLRC3 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html CD48 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNG +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PIK3CA +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html FAS +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KLRD1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html SYK +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PIK3CG +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html BRAF +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PIK3CB +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PIK3CD +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html CHP2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html HLA-A +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html HLA-C +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html HLA-B +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html HLA-E +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html HLA-G +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html HCST +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html MAPK1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNB1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html MAPK3 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KIR2DL1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KIR2DL3 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KIR2DL2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KLRC1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KIR3DL1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KIR2DL4 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KIR3DL2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html ITGAL +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html GRB2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KLRK1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html ITGB2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KRAS +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html RAC2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA7 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html RAC3 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA6 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA5 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA4 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html RAC1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html ZAP70 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html FCER1G +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA8 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html TYROBP +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PTPN6 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html VAV3 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html MAP2K1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html MAP2K2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KIR2DS5 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KIR2DS1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KIR2DS4 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KIR2DS3 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html VAV2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html VAV1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PTPN11 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html LAT +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html TNFSF10 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PLCG1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PLCG2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA21 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html FASLG +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html SH2D1A +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html RAET1E +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html CASP3 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html RAET1G +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html RAET1L +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html SHC1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PAK1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html SHC3 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html FCGR3A +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html SHC2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNGR2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html SH2D1B +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html FCGR3B +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNGR1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html SHC4 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PRKCA +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html ICAM1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html ICAM2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html GZMB +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PRKCG +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html NCR2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html NCR1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html NCR3 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNAR1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PRKCB +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html TNFRSF10A +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNAR2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html TNFRSF10C +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html TNFRSF10B +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html ULBP3 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html TNFRSF10D +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html ULBP1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html ULBP2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html LCK +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html LCP2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html BID +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PRF1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html CSF2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html CD244 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html TNF +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html KIR2DL5A +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html CD247 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PPP3R1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PPP3R2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PTK2B +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html SOS1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html SOS2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PPP3CB +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html NFAT5 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PPP3CC +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html NFATC4 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PIK3R5 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html CHP +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PPP3CA +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PIK3R3 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html NFATC2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html NFATC3 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PIK3R1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html PIK3R2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html NFATC1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA10 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html RAF1 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html NRAS +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html FYN +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html ARAF +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA14 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA13 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA16 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html SH3BP2 +KEGG NATURAL KILLER CELL MEDIATED CYTOTOXICITY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NATURAL_KILLER_CELL_MEDIATED_CYTOTOXICITY.html IFNA17 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html HRAS +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html IL10 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAP3K7 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAP3K8 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html IFNG +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3CA +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAP2K7 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3CG +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html BCL10 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD3G +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD3D +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD3E +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3CB +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html RELA +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3CD +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CHP2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAPK1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD40LG +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html JUN +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAPK3 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAPK9 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html GRAP2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFKBIE +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html GRB2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFKBIB +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFKBIA +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html KRAS +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html ICOS +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html ZAP70 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html TEC +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PTPN6 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html ITK +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html VAV3 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAP2K1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAP2K2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MALT1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html VAV2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html VAV1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CBLC +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html LAT +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CBLB +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PLCG1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html IKBKG +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html IKBKB +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD8A +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD8B +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFKB1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PDCD1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html AKT1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PAK6 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html FOS +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PAK7 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CDC42 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PAK2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PAK3 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PAK4 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html RHOA +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PAK1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html AKT3 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CHUK +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html AKT2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html DLG1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CDK4 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html NCK2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CARD11 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PRKCQ +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html NCK1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html LCK +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAP3K14 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html LCP2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CSF2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html TNF +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD247 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PPP3R1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PPP3R2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html RASGRP1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html SOS1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html SOS2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFAT5 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PPP3CB +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PPP3CC +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFATC4 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD4 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3R5 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CHP +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PPP3CA +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFATC2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3R3 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFATC3 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3R1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3R2 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD28 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFATC1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html IL4 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PDK1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html PTPRC +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html IL5 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CBL +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html CTLA4 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html RAF1 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAPK11 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html NRAS +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAPK12 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html FYN +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAPK13 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAPK14 +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html GSK3B +KEGG T CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_T_CELL_RECEPTOR_SIGNALING_PATHWAY.html IL2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html HRAS +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFKB1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html BTK +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html AKT1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html FOS +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3CA +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3AP1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html CHUK +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html AKT3 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html SYK +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html AKT2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3CG +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html BCL10 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html LYN +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3CB +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html RELA +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3CD +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html CHP2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PRKCB +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html CARD11 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAPK1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html LILRB3 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html JUN +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD81 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAPK3 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html IFITM1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html GRB2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFKBIE +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFKBIB +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PPP3R1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PPP3R2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFKBIA +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD72 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html KRAS +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html RAC2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html DAPP1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html RASGRP3 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html RAC3 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html SOS1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html SOS2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html RAC1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PPP3CB +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFAT5 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD22 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PPP3CC +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3R5 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFATC4 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html CHP +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PPP3CA +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html INPP5D +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFATC2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3R3 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFATC3 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3R1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PIK3R2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html NFATC1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html BLNK +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PTPN6 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html VAV3 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html CR2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAP2K1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html MAP2K2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html RAF1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html MALT1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html VAV2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html VAV1 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html NRAS +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD19 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html FCGR2B +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html GSK3B +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html PLCG2 +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html IKBKG +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD79B +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html CD79A +KEGG B CELL RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_B_CELL_RECEPTOR_SIGNALING_PATHWAY.html IKBKB +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html HRAS +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html IL13 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html BTK +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html AKT1 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html GAB2 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G1B +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PIK3CA +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MS4A2 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAP2K7 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAP2K6 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html AKT3 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html SYK +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html AKT2 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PIK3CG +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PRKCA +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html LYN +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PIK3CB +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PIK3CD +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PRKCE +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PRKCD +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PRKCB +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAPK1 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAPK3 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G2A +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G6 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAPK9 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G2C +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAPK8 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G2E +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G3 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G2D +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G5 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html LCP2 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G2F +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html CSF2 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html TNF +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html GRB2 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html JMJD7-PLA2G4B +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html KRAS +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html RAC2 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html RAC3 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G12A +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html SOS1 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html SOS2 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G12B +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html RAC1 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html FCER1G +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PIK3R5 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html INPP5D +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PIK3R3 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PIK3R1 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PIK3R2 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html IL4 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PDK1 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html FCER1A +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html IL3 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html VAV3 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html IL5 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G10 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAP2K1 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAP2K2 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAP2K3 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAP2K4 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html RAF1 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAPK11 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAPK10 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html VAV2 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html VAV1 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html LAT +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html NRAS +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G4A +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLCG1 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAPK12 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html FYN +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAPK13 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html MAPK14 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLCG2 +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G4B +KEGG FC EPSILON RI SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_EPSILON_RI_SIGNALING_PATHWAY.html PLA2G4E +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html RPS6KB2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html RPS6KB1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html GAB2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIK3CA +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html SYK +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIK3CG +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PLD2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PLD1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIK3CB +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html NCF1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIK3CD +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html ARPC1A +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html ARPC1B +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html MAPK1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html MAPK3 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html ASAP2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html ASAP1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html ARF6 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html ARPC4 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html ARPC5 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html ASAP3 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html DOCK2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html ARPC3 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html RAC2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html ARPC2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html RAC1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html VAV3 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html MAP2K1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html SPHK2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html SPHK1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html VAV2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html VAV1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html LAT +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html MYO10 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PLA2G4A +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PLCG1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PLCG2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PLA2G4F +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html MARCKS +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PLA2G4B +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PLA2G4E +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIP4K2B +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PLA2G4D +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html WASF3 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html MARCKSL1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html WASF1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html WASF2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIP5K1B +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIP5K1C +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIP5K1A +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html AKT1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html CDC42 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html GSN +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PAK1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html FCGR3A +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html AKT3 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html AKT2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PRKCA +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html LIMK2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html LYN +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html LIMK1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PPAP2C +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PRKCG +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PRKCE +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html WAS +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PRKCD +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html VASP +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PRKCB +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html CRKL +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html ARPC5L +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html CFL2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html CFL1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html SCIN +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PLA2G6 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html WASL +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html LOC653888 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html AMPH +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html FCGR1A +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIKFYVE +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIK3R5 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html INPP5D +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIK3R3 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PPAP2A +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PPAP2B +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIK3R1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PIK3R2 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html DNM3 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html PTPRC +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html DNM1L +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html HCK +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html RAF1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html FCGR2B +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html FCGR2C +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html FCGR2A +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html CRK +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html DNM1 +KEGG FC GAMMA R MEDIATED PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_FC_GAMMA_R_MEDIATED_PHAGOCYTOSIS.html DNM2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html OCLN +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MMP9 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MYL10 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CXCL12 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MMP2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html VCL +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CTNNB1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ACTG1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PIK3CA +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html RAPGEF4 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html RAPGEF3 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PIK3CG +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html F11R +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ROCK1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html NCF2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ACTN4 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html NCF1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PIK3CB +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ROCK2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html NCF4 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PIK3CD +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ACTN1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ACTN2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ACTN3 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CTNNA1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CTNNA3 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html THY1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CTNNA2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MYL7 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ITGAL +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html GNAI3 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MYL5 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html GNAI2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MYL2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html GNAI1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html SIPA1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ITGB2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ITGB1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PXN +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ITGAM +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MYL9 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PTK2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html RAC2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html RAC1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html LOC646048 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ITK +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html VAV3 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MYLPF +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MYL12B +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ITGA4 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MYL12A +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html VAV2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html VAV1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PTPN11 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PLCG1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PLCG2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html RAP1A +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html RAP1B +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN8 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html LOC646821 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN7 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN9 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN4 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN3 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html BCAR1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN6 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN5 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CDC42 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ARHGAP5 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CXCR4 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html RHOA +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ESAM +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MSN +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html RHOH +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PRKCA +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ICAM1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PRKCG +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html VASP +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PRKCB +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html TXK +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html JAM2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html JAM3 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN16 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN17 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN18 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN19 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CTNND1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN10 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN11 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN14 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CDH5 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN15 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html VCAM1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html EZR +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PTK2B +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PIK3R5 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PIK3R3 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PIK3R1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MLLT4 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PIK3R2 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html ACTB +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html NOX3 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html NOX1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CD99 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN22 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MAPK11 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN20 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CLDN23 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CYBA +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html CYBB +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html RASSF5 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MAPK12 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MAPK13 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html MAPK14 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html PECAM1 +KEGG LEUKOCYTE TRANSENDOTHELIAL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEUKOCYTE_TRANSENDOTHELIAL_MIGRATION.html GRLF1 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DQB1 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DRB1 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DRB3 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html TNFSF13 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html IL15 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DMB +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html CXCL12 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html CCL28 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DMA +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html IL10 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html CCL27 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html TGFB1 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html CCL25 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html CXCR4 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html ITGB7 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html ICOS +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html CCR10 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DRB4 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html IL15RA +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DRB5 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DPB1 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DOA +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DOB +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html CD28 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html IL4 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html IL6 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html IL5 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html LTBR +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html TNFRSF13B +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html TNFRSF13C +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html TNFRSF17 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html CD40 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html PIGR +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html ITGA4 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DQA2 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DQA1 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html CCR9 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html CD86 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html TNFSF13B +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html CD80 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html CD40LG +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html MADCAM1 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html AICDA +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DPA1 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html MAP3K14 +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html ICOSLG +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html HLA-DRA +KEGG INTESTINAL IMMUNE NETWORK FOR IGA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INTESTINAL_IMMUNE_NETWORK_FOR_IGA_PRODUCTION.html IL2 +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html ARNTL +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html NPAS2 +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html CRY2 +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html CSNK1D +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html NR1D1 +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html CSNK1E +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html PER2 +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html PER1 +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html PER3 +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html BHLHE40 +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html CRY1 +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html BHLHE41 +KEGG CIRCADIAN RHYTHM MAMMAL http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CIRCADIAN_RHYTHM_MAMMAL.html CLOCK +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html ADCY1 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html HRAS +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html ADCY8 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PRKX +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PRKACG +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PLCB3 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PLCB4 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html GRIN2B +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html GRIN2C +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html GRIN2D +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PPP1R1A +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PRKACA +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PRKACB +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html RAPGEF3 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PLCB1 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PLCB2 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PRKCA +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html BRAF +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html GRIN2A +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CHP2 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PRKCG +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PPP1CC +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html GRM1 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PPP1CB +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PRKCB +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html GRM5 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html MAPK1 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PPP1CA +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html EP300 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html GNAQ +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CAMK4 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html MAPK3 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CAMK2G +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PPP3R1 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PPP3R2 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html KRAS +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CALML3 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PPP3CB +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CAMK2D +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PPP1R12A +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PPP3CC +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CALML6 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CAMK2B +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CHP +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html PPP3CA +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CALML5 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CAMK2A +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html MAP2K1 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html MAP2K2 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html GRIN1 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CREBBP +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html RAF1 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html ITPR3 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html ITPR1 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html ITPR2 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html RPS6KA6 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html NRAS +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html ATF4 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html RPS6KA3 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html GRIA2 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html RPS6KA1 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html GRIA1 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html RPS6KA2 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html ARAF +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CALM3 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html RAP1A +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html RAP1B +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CACNA1C +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CALM2 +KEGG LONG TERM POTENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_POTENTIATION.html CALM1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html HRAS +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html FOXO3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAGED1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html BDNF +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAP3K5 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html GAB1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PIK3CA +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NGFRAP1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html FRS2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAP2K7 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RAPGEF1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAP2K5 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html IRS4 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PIK3CG +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html IRS2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html BRAF +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PIK3CB +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RELA +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PIK3CD +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html IRS1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAPK1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CAMK4 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PRDM4 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html JUN +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAPK3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RIPK2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAPK9 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAPK8 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAPK7 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NGF +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NFKBIE +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html GRB2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NFKBIB +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NFKBIA +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAPKAPK2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html IRAK4 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html IRAK3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html KRAS +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RAC1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html TRAF6 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html ARHGDIA +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html ARHGDIB +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NTF4 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NTF3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAP2K1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAP2K2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PTPN11 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NTRK3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html ATF4 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PLCG1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NTRK1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NTRK2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PLCG2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RAP1A +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RAP1B +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html IKBKB +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html ABL1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html FASLG +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NFKB1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html AKT1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CDC42 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RHOA +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html SHC1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CSK +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html SHC3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html SHC2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html AKT3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html SHC4 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html AKT2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html IRAK2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html IRAK1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html TP53 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html KIDINS220 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PRKCD +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CRKL +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PSEN1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html SORT1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NGFR +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html ZNF274 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html YWHAZ +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CAMK2G +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAP3K3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CALML3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html BCL2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAP3K1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html SOS1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html SOS2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CAMK2D +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html SH2B3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CALML6 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CAMK2B +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PIK3R5 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html SH2B2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CALML5 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html SH2B1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PIK3R3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CAMK2A +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PIK3R1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PIK3R2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html PDK1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html YWHAB +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RAF1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAPK11 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html BAD +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAPK10 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html YWHAE +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html TP73 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RPS6KA5 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RPS6KA6 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html NRAS +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html YWHAG +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RPS6KA3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html YWHAH +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RPS6KA4 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAPK12 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RPS6KA1 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAPK13 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html RPS6KA2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html GSK3B +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html MAPK14 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html BAX +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html YWHAQ +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CALM3 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CRK +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CALM2 +KEGG NEUROTROPHIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NEUROTROPHIN_SIGNALING_PATHWAY.html CALM1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GNAZ +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GNA13 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html HRAS +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GNA11 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GNA12 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PRKG2 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PRKG1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLCB3 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLCB4 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GUCY1A2 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GRID2 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G1B +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GUCY1A3 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLCB1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLCB2 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PPP2R1B +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PRKCA +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PPP2R1A +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html LYN +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html BRAF +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PRKCG +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GRM1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PRKCB +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GRM5 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html CRHR1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html MAPK1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GNAQ +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html MAPK3 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G2A +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html RYR1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G6 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G2C +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GNAS +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GUCY1B3 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G2E +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G3 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G2D +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G5 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G2F +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GNAI3 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GNAI2 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GNAI1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html IGF1R +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html JMJD7-PLA2G4B +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html KRAS +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G12A +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PPP2CA +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PPP2CB +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G12B +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GNAO1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html NOS1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G10 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html MAP2K1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html MAP2K2 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html RAF1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html IGF1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GRIA3 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html ITPR3 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html ITPR1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html ITPR2 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html NRAS +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G4A +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GRIA2 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html GRIA1 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html C7ORF16 +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html ARAF +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html CRH +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G4B +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html PLA2G4E +KEGG LONG TERM DEPRESSION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LONG_TERM_DEPRESSION.html CACNA1A +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R1 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html ADCY4 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R4 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R5 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html ADCY8 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R3 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html ADCY6 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS1R3 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS1R1 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS1R2 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html PRKX +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html PRKACG +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R60 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R9 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R8 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html PRKACA +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R7 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html GNG3 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html PRKACB +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R20 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html PLCB2 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TRPM5 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R16 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html GRM4 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R50 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R13 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R14 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R19 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html GNB1 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html GNAS +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html GNB3 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R10 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html GNG13 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R46 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html PDE1A +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R42 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R43 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html SCNN1G +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R45 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html SCNN1B +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html SCNN1A +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R40 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R41 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html KCNB1 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html ITPR3 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html GNAT3 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html ACCN1 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R39 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R38 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html TAS2R31 +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html CACNA1A +KEGG TASTE TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TASTE_TRANSDUCTION.html CACNA1B +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html HRAS +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ACTG1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MOS +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIK3CA +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIK3CG +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ROCK1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html BRAF +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIK3CB +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ROCK2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYLK3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIK3CD +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYLK2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYH9 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MAPK1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PPP1CA +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html F2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MAPK3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PDGFRA +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PDGFRB +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGA2B +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGA11 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGA10 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html BDKRB1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html BDKRB2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PXN +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html C3ORF10 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PFN1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PFN2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PFN3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html KRAS +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PFN4 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html RAC2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html INS +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html RAC3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html RAC1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html GIT1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html LOC646048 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MAP2K1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MAP2K2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html NCKAP1L +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html NCKAP1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html SLC9A1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF6 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html LOC646821 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF5 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF8 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF7 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF9 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html WASF1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html BCAR1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html WASF2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html INSRR +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF4 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARHGEF4 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARHGEF1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARHGEF7 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARHGEF6 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARHGEF12 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html WAS +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html TMSB4X +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html TMSB4Y +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html APC2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ABI2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html GNG12 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html EZR +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html SOS1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html SOS2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html NRAS +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARAF +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CD14 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html GNA13 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF19 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF18 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ENAH +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PDGFB +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF14 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PDGFA +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF17 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF16 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html GNA12 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF11 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html IQGAP3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF10 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html IQGAP2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF13 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYL10 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF12 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html IQGAP1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html VCL +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html TIAM2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html TIAM1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html RRAS +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PDGFC +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PDGFD +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html EGFR +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ACTN4 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html BAIAP2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF23 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ACTN1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF22 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ACTN2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF21 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ACTN3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PPP1CC +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGF20 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PPP1CB +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARPC1A +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARPC1B +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGFR2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGFR1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGD1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYL7 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGAL +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGFR4 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGFR3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYL5 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html SSH1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYL2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html DIAPH1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html DIAPH2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MRAS +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGAE +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html SSH3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html SSH2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html DIAPH3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGB4 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGB5 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARPC4 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGB2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARPC5 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGB3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGB1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGAM +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYL9 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PTK2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html DOCK1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARPC3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGAX +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGB8 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARPC2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGB7 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGAV +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGB6 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html EGF +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html TMSL3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FGD3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html FN1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html VAV3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGA1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGA2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYLPF +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYL12B +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGA3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYL12A +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGA4 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html VAV2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html VAV1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGA9 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGA6 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGA5 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGA8 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGA7 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CYFIP2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CYFIP1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ITGAD +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYH14 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIP4K2A +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYLK +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIP4K2C +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MYH10 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIP4K2B +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIP5K1B +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIP5K1C +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIP5K1A +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PAK6 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PAK7 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CDC42 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PAK2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html GSN +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PAK3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PAK4 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html RHOA +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html MSN +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PAK1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CSK +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html LIMK2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html LIMK1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CHRM5 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CHRM4 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CRKL +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CHRM3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CHRM2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html RRAS2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CFL2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ARPC5L +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CHRM1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html SCIN +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CFL1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html WASL +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html RDX +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html LOC653888 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIKFYVE +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PPP1R12A +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIK3R5 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIK3R3 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIK3R1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html PIK3R2 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html APC +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html ACTB +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html RAF1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html GRLF1 +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html CRK +KEGG REGULATION OF ACTIN CYTOSKELETON http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_REGULATION_OF_ACTIN_CYTOSKELETON.html F2R +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html HRAS +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html FOXO1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PDE3B +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html RPS6KB2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html RPS6KB1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKX +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKACG +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKAR2B +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html EIF4EBP1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKAR2A +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SLC2A4 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PIK3CA +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKACA +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKACB +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html INSR +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html RAPGEF1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html IRS4 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PIK3CG +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html IRS2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html BRAF +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SOCS2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PTPRF +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PIK3CB +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SOCS3 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PIK3CD +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKAB2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SOCS1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKAB1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html FBP1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SOCS4 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html FBP2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PPP1R3A +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PPP1CC +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html IRS1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PPP1CB +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PPARGC1A +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html RPTOR +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html MAPK1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PPP1CA +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html MAPK3 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html MAPK9 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html MAPK8 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PHKA2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html GRB2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PHKA1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html ELK1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html G6PC2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PPP1R3D +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PPP1R3C +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PPP1R3B +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html KRAS +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html INS +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html GYS1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html GYS2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SREBF1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html MAP2K1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html MAP2K2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html ACACA +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html ACACB +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html RPS6 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html EIF4E1B +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html CBLC +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html CBLB +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html EIF4E +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html TSC1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKAR1B +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKAR1A +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html TSC2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html RHEB +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PTPN1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html MTOR +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html IKBKB +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html EIF4E2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKAG3 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PHKB +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKAG1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKAG2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html RHOQ +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html AKT1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PDPK1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SHC1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SHC3 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SHC2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html AKT3 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SHC4 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html AKT2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PHKG1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html FLOT2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PHKG2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html FLOT1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKCI +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html G6PC +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html CRKL +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PKLR +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKCZ +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html EXOC7 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html MKNK2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html HK2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html HK1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html MKNK1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html INPP5K +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SORBS1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html CALML3 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SOS1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html HK3 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SOS2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html FASN +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html CALML6 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKAA1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PIK3R5 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html SH2B2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PRKAA2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html CALML5 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html INPP5D +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PIK3R3 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html TRIP10 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PIK3R1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PIK3R2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html CBL +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html RAF1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PDE3A +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html BAD +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html MAPK10 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PCK2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PCK1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html NRAS +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html GCK +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PYGM +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PYGL +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html GSK3B +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html ARAF +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html CALM3 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html CRK +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html LIPE +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html CALM2 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html CALM1 +KEGG INSULIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_INSULIN_SIGNALING_PATHWAY.html PYGB +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ADCY3 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CGA +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ADCY4 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ADCY1 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html HRAS +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ADCY2 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ADCY7 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ADCY8 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html GNA11 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ADCY5 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ADCY6 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MMP2 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PRKX +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PRKACG +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAP3K4 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G1B +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PRKACA +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PRKACB +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAP2K7 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAP2K6 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html EGFR +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLD2 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLD1 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAPK1 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html JUN +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAPK3 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G2A +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAPK9 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G2C +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAPK8 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAPK7 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G2E +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G2D +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G2F +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html GRB2 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ELK1 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html SRC +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html KRAS +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html GNRH1 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAP2K1 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html GNRH2 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAP2K2 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAP2K3 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAP2K4 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CACNA1S +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ATF4 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G4A +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CACNA1F +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CACNA1C +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html LHB +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G4B +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CACNA1D +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G4E +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html GNRHR +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CDC42 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLCB3 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLCB4 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLCB1 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLCB2 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PRKCA +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MMP14 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PRKCD +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PRKCB +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html GNAQ +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G6 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html GNAS +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G3 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html FSHB +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G5 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CAMK2G +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html JMJD7-PLA2G4B +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAP3K3 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAP3K2 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PTK2B +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CALML3 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G12A +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAP3K1 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html SOS1 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html SOS2 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G12B +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CAMK2D +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CALML6 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CAMK2B +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CALML5 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CAMK2A +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html PLA2G10 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html RAF1 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAPK11 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAPK10 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ITPR3 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ITPR1 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ITPR2 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html NRAS +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAPK12 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html ADCY9 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAPK13 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html MAPK14 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CALM3 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html HBEGF +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CALM2 +KEGG GNRH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GNRH_SIGNALING_PATHWAY.html CALM1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html HSP90AB1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ADCY3 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ADCY4 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ADCY1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ADCY2 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ADCY7 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ADCY8 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ADCY5 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ADCY6 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PKMYT1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PDE3B +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CDC16 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CPEB1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PRKX +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PRKACG +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PGR +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html AKT1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MOS +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PIK3CA +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PRKACA +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PRKACB +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CCNA1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CCNA2 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html AKT3 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html AKT2 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PIK3CG +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ANAPC1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CDK1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ANAPC2 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html HSP90AA1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html BRAF +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ANAPC5 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PIK3CB +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PIK3CD +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ANAPC4 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CDK2 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html SPDYC +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html SPDYA +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MAPK1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MAD2L1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MAPK3 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MAPK9 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MAPK8 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ANAPC7 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MAD2L2 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html FZR1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html GNAI3 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html GNAI2 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ANAPC13 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html GNAI1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ANAPC10 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ANAPC11 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html LOC650621 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html IGF1R +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html KRAS +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html INS +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html BUB1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PIK3R5 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PIK3R3 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PIK3R1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PIK3R2 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MAP2K1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html RAF1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html IGF1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CDC23 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PDE3A +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MAPK11 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MAPK10 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CDC25C +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CDC26 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CDC27 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CDC25A +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CDC25B +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CCNB1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html RPS6KA6 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CCNB3 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html RPS6KA3 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html CCNB2 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ADCY9 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html RPS6KA1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MAPK12 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html PLK1 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MAPK13 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html RPS6KA2 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html MAPK14 +KEGG PROGESTERONE MEDIATED OOCYTE MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROGESTERONE_MEDIATED_OOCYTE_MATURATION.html ARAF +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html ADCY3 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html ADCY4 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html ADCY1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html HRAS +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html ADCY2 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html ADCY7 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html ADCY8 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html ADCY5 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT3A +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html EDN1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html ADCY6 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html PRKX +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CTNNB1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html PRKACG +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT2 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT4 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT3 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html MC1R +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CREB3L2 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CREB3L1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html PRKACA +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CREB3L4 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html PRKACB +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CREB3L3 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT6 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT10A +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT10B +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html MAPK1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html EP300 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html MAPK3 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT5A +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html GNAI3 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT5B +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html GNAI2 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html GNAI1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html POMC +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html KRAS +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html LOC652799 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html DVL2 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html DVL3 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html TCF7 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html MAP2K1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html MAP2K2 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CREBBP +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html DVL1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html ASIP +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html MITF +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html EDNRB +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html TYR +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html PLCB3 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html PLCB4 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html PLCB1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html PLCB2 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html PRKCA +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html LEF1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html PRKCG +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html PRKCB +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html GNAQ +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT9B +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html GNAS +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT11 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT9A +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT16 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html TYRP1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CAMK2G +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html KITLG +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html KIT +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html TCF7L2 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html TCF7L1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html DCT +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CALML3 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CAMK2D +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CALML6 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CAMK2B +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CALML5 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CAMK2A +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT8A +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT8B +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html FZD9 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html FZD8 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html GNAO1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CREB3 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CREB1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html FZD1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html RAF1 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html FZD3 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html FZD2 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html FZD5 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html FZD4 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html FZD7 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html FZD6 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT2B +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html NRAS +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT7B +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html FZD10 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html ADCY9 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html GSK3B +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CALM3 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html WNT7A +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CALM2 +KEGG MELANOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOGENESIS.html CALM1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PRKAG3 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PPARA +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PRKAG1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html LEPR +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PRKAG2 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html NFKB1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html CAMKK1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html CAMKK2 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html AKT1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html SLC2A4 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html SLC2A1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html CHUK +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html AKT3 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html AKT2 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html IRS4 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html IRS2 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html SOCS3 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html RXRB +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html RXRA +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html RELA +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PRKAB2 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html RXRG +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html ADIPOR2 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PRKAB1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html ADIPOR1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html IRS1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PPARGC1A +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PRKCQ +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html G6PC +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html CD36 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html MAPK9 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html MAPK8 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html TRAF2 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html TNF +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html NFKBIE +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html STK11 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html NFKBIB +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html NFKBIA +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html POMC +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html G6PC2 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html TNFRSF1A +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html TNFRSF1B +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html ACSL1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PRKAA1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PRKAA2 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html ACSL4 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html ACSL3 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html AGRP +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html ACSL6 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html ACSL5 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html CPT1C +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html CPT1B +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html MAPK10 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html ACACB +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PCK2 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html ADIPOQ +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html STAT3 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html CPT1A +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html TRADD +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PTPN11 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html PCK1 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html LEP +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html NPY +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html IKBKG +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html JAK2 +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html MTOR +KEGG ADIPOCYTOKINE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ADIPOCYTOKINE_SIGNALING_PATHWAY.html IKBKB +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PRKCZ +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html TNF +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html HK2 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html HK1 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PDX1 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html KCNJ11 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html SLC2A4 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html INS +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html SLC2A2 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html HK3 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PIK3CA +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PIK3R5 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PIK3R3 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html INSR +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PIK3R1 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PIK3R2 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html IRS4 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PIK3CG +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html IRS2 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html SOCS2 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PIK3CB +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html SOCS3 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PIK3CD +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html SOCS1 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html SOCS4 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html MAPK10 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PRKCE +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html IRS1 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html ADIPOQ +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PRKCD +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html MAPK1 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html GCK +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PKM2 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html PKLR +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html MAPK3 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html CACNA1G +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html MAPK9 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html MAPK8 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html CACNA1E +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html MTOR +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html MAFA +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html IKBKB +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html CACNA1C +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html ABCC8 +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html CACNA1D +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html CACNA1A +KEGG TYPE II DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_II_DIABETES_MELLITUS.html CACNA1B +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DQB1 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html PRF1 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html TNF +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DRB1 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DRB3 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html FASLG +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DMB +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DMA +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html GAD2 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html INS +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html IFNG +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DRB4 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DRB5 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html IL1B +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html FAS +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DPB1 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DOA +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html GAD1 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DOB +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html IL1A +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html LTA +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html CD28 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html ICA1 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html PTPRN2 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-A +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html GZMB +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-C +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-B +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html PTPRN +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-E +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DQA2 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-G +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DQA1 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html LOC652614 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-F +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html CD86 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html CPE +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html CD80 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html IL12A +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DPA1 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HSPD1 +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html IL12B +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html HLA-DRA +KEGG TYPE I DIABETES MELLITUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_TYPE_I_DIABETES_MELLITUS.html IL2 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html HNF1B +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html HNF1A +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html ONECUT1 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html FOXA2 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html FOXA3 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html PAX6 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html PAX4 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html PDX1 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html BHLHA15 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html INS +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html IAPP +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html SLC2A2 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html NKX2-2 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html HNF4G +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html NEUROG3 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html NKX6-1 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html HES1 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html HHEX +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html GCK +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html HNF4A +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html PKLR +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html MNX1 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html NEUROD1 +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html MAFA +KEGG MATURITY ONSET DIABETES OF THE YOUNG http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MATURITY_ONSET_DIABETES_OF_THE_YOUNG.html NR5A2 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html FXYD2 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html ATP1B1 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html FXYD4 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html ATP1B3 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html ATP1B2 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html ATP1B4 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html NR3C2 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html SFN +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html KCNJ1 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html PDPK1 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html KRAS +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html INS +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html PIK3CA +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html PIK3R5 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html SCNN1G +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html NEDD4L +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html SCNN1B +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html PIK3R3 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html INSR +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html SCNN1A +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html PIK3R1 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html PIK3R2 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html IRS4 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html PIK3CG +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html PRKCA +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html SGK1 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html IRS2 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html PIK3CB +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html PIK3CD +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html ATP1A3 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html IGF1 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html ATP1A4 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html ATP1A1 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html PRKCG +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html ATP1A2 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html IRS1 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html SLC9A3R2 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html PRKCB +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html MAPK1 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html MAPK3 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html HSD11B1 +KEGG ALDOSTERONE REGULATED SODIUM REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALDOSTERONE_REGULATED_SODIUM_REABSORPTION.html HSD11B2 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html ADCY3 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DYNC1LI1 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html AVPR2 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DYNC1LI2 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html RAB5B +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html RAB5C +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DYNC2LI1 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html ADCY6 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html AQP4 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html AQP3 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html PRKX +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html AQP2 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html PRKACG +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DYNLL1 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DYNLL2 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DYNC2H1 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html CREB3L2 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html RAB11B +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html RAB11A +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html CREB3L1 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html PRKACA +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html CREB3L4 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html PRKACB +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html CREB3L3 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DYNC1H1 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html ARHGDIA +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html NSF +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html ARHGDIB +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DYNC1I1 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html STX4 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html AVP +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html CREB3 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html CREB1 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html CREB5 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DCTN5 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DCTN6 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DCTN4 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DCTN1 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DCTN2 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html ADCY9 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html RAB5A +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html GNAS +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html VAMP2 +KEGG VASOPRESSIN REGULATED WATER REABSORPTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VASOPRESSIN_REGULATED_WATER_REABSORPTION.html DYNC1I2 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html FXYD2 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html ATP1B1 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html SLC38A3 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html ATP1B3 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html ATP1B2 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html GLUD2 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html SLC9A3 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html GLUD1 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html ATP1B4 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html ATP1A3 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html ATP1A4 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html ATP1A1 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html ATP1A2 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html AQP1 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html PCK2 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html PCK1 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html GLS2 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html GLS +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html SLC25A10 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html CA4 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html CA2 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html SLC4A4 +KEGG PROXIMAL TUBULE BICARBONATE RECLAMATION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROXIMAL_TUBULE_BICARBONATE_RECLAMATION.html MDH1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html LOC642502 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html SNCA +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html IDE +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFAB1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX5A +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX5B +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html APP +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html LOC100133737 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html UQCR10 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html UQCR11 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html GRIN2B +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html GRIN2C +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html APOE +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html GRIN2D +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html IL1B +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html PSENEN +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html FAS +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP8 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP6 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CHP2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html GRIN2A +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html LOC727947 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html FADD +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX6C +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html MAPK1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html LOC644310 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html BACE2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html RYR3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html MAPK3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html BACE1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP5C1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html EIF2AK3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html HSD17B10 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CDK5R1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX7B +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX7C +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html MME +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX6B1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX6B2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html LPL +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX8C +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFA4L2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX8A +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html GRIN1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CACNA1S +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html LOC390424 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html UQCRHL +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFV3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATF6 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP2A2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP2A3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFV1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFV2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP2A1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX6A2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX6A1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CACNA1F +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CACNA1C +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CACNA1D +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html UQCRC2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP5D +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP5E +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html UQCRC1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP5B +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CYC1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html UQCRFS1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html UQCRQ +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFS7 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFS6 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFS5 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CASP3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html PLCB3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFS4 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html PLCB4 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CASP9 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html MAPT +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CASP7 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFS8 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CASP8 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP5O +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFS3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html PLCB1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFS2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP5H +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html PLCB2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFS1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP5J +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFB10 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ADAM10 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CYCS +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFC2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX4I2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX4I1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFC1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFA10 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CDK5 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html PSEN1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html GNAQ +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html UQCRH +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html PSEN2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ERN1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ADAM17 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html UQCRB +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFB3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html BID +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFB4 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFB5 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFB6 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html TNF +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFB7 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html APH1A +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFB8 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFB9 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX7B2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html PPP3R1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html PPP3R2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CYTB +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP5G2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX7A2L +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP5G1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP5G3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFB1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFB2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html TNFRSF1A +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CALML3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html PPP3CB +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html PPP3CC +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CALML6 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CHP +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html PPP3CA +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CALML5 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html GAPDH +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFA4 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFA5 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFA2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NOS1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFA3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX7A2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFA8 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html COX7A1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFA9 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFA6 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFA7 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP5F1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html BAD +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CAPN2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ITPR3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NDUFA1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ITPR1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ITPR2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CAPN1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NAE1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html SDHA +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html NCSTN +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html SDHB +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html LRP1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html GSK3B +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html LOC100130247 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html SDHC +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html SDHD +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CALM3 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html APAF1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html ATP5A1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html APBB1 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CALM2 +KEGG ALZHEIMERS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALZHEIMERS_DISEASE.html CALM1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SEPT5 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html LOC642502 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SNCAIP +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SLC6A3 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SNCA +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFAB1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX5A +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX5B +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UQCR10 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html LOC100133737 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UQCR11 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html HTRA2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP8 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP6 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UBE2J1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html LOC727947 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UBE2J2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX6C +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SLC25A31 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html LOC644310 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP5C1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html LRRK2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX7B +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UBA7 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX7C +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX6B1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX6B2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX8C +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFA4L2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX8A +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UBE2L6 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UBE2L3 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html VDAC2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html VDAC3 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html LOC390424 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UQCRHL +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html VDAC1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFV3 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html GPR37 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX3 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UBA1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFV1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html PPID +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFV2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX6A2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX6A1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP5D +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UQCRC2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP5E +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UQCRC1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UBE2G1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP5B +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html CYC1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UBE2G2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UCHL1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html PINK1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UQCRFS1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UQCRQ +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFS7 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFS6 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFS5 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html CASP3 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFS4 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html CASP9 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFS8 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP5O +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFS3 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFS2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP5H +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFS1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP5J +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ND1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFB10 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ND4 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SLC25A4 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SLC25A5 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ND5 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ND2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SLC25A6 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ND3 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html CYCS +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFC2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX4I2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX4I1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFC1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFA10 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UQCRH +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UBB +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html UQCRB +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFB3 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFB4 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFB5 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFB6 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFB7 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFB8 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFB9 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX7B2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html TH +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html CYTB +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP5G2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP5G1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX7A2L +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP5G3 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFB1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFB2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ND6 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFA4 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFA5 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFA2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFA3 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX7A2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html LOC729317 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html COX7A1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFA8 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFA9 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFA6 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFA7 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP5F1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html PARK2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html NDUFA1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html PARK7 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SDHA +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SDHB +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ND4L +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html LOC100130247 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SDHC +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SDHD +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SLC18A2 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html ATP5A1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html APAF1 +KEGG PARKINSONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PARKINSONS_DISEASE.html SLC18A1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html ALS2 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html PRPH +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html DAXX +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html GPX1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html MAP3K5 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html SLC1A2 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html CASP3 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html GRIN2B +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html CASP9 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html GRIN2C +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html GRIN2D +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html CAT +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html CASP1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html MAP2K6 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html CYCS +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html GRIN2A +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html CHP2 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html TP53 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html RAB5A +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html BID +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html DERL1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html TNF +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html PPP3R1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html PPP3R2 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html BCL2L1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html TNFRSF1A +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html TNFRSF1B +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html BCL2 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html RAC1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html PPP3CB +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html PPP3CC +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html NEFH +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html CCS +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html CHP +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html PPP3CA +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html NEFL +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html NEFM +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html NOS1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html MAP2K3 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html GRIN1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html TOMM40 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html MAPK11 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html BAD +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html SOD1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html PRPH2 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html GRIA2 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html MAPK12 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html MAPK13 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html GRIA1 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html BAX +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html MAPK14 +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html TOMM40L +KEGG AMYOTROPHIC LATERAL SCLEROSIS ALS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AMYOTROPHIC_LATERAL_SCLEROSIS_ALS.html APAF1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html LOC642502 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFAB1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html TBP +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html REST +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX5A +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX5B +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html TBPL2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html LOC100133737 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html UQCR10 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html BDNF +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html UQCR11 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html SIN3A +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html GRIN2B +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CREB3L2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CREB3L1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CREB3L4 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CREB3L3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP8 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html TBPL1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP6 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html TAF4B +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html RCOR1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html LOC727947 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2J2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html DCTN4 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html PPARGC1A +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2J3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html DCTN1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX6C +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html DCTN2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html EP300 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html SLC25A31 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html LOC644310 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP5C1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX7B +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX7C +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX6B1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX6B2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html HAP1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html AP2M1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html HIP1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html TAF4 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html HTT +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX8C +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFA4L2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html GRIN1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CREBBP +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX8A +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html UCP1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html VDAC2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html LOC390424 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html VDAC3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html VDAC1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html UQCRHL +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFV3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NRF1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html HDAC2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html HDAC1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html BBC3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFV1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html PPID +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFV2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX6A2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX6A1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html DNAL1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CLTCL1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html DNAL4 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html UQCRC2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP5D +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP5E +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CLTA +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CLTB +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html UQCRC1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html AP2S1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP5B +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CYC1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html PPARG +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CLTC +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html UQCRFS1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html UQCRQ +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFS7 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFS6 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html GPX1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFS5 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CASP3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html AP2B1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html PLCB3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFS4 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html PLCB4 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CASP9 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFS8 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CASP8 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html DLG4 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP5O +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFS3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html PLCB1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFS2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP5H +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html PLCB2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFS1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP5J +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFB10 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html SLC25A4 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html SLC25A5 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html SLC25A6 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CYCS +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html TP53 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFC2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX4I2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX4I1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFC1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFA10 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html DNAI2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html GRM5 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html GNAQ +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html UQCRH +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html UQCRB +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFB3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2H +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFB4 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2G +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFB5 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2F +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFB6 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2E +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFB7 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2L +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFB8 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2K +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFB9 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX7B2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2J +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2I +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html DNAH3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CYTB +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html DNAH1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP5G2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX7A2L +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP5G1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html DNAH2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2D +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP5G3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2C +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFB1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2B +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFB2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html POLR2A +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html TFAM +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html DNALI1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html DNAI1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html TGM2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFA4 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFA5 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFA2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX7A2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFA3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFA8 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html COX7A1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html LOC729317 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CREB3 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFA9 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFA6 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CREB1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFA7 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP5F1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html CREB5 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html SOD1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html NDUFA1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ITPR1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html SOD2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html SDHA +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html SDHB +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html AP2A2 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html SP1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html AP2A1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html BAX +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html SDHC +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html IFT57 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html LOC100130247 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html SDHD +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html APAF1 +KEGG HUNTINGTONS DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HUNTINGTONS_DISEASE.html ATP5A1 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html C7 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html C9 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html C6 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html C5 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html ELK1 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html STIP1 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html HSPA1A +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html CCL5 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html C1QC +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html PRKX +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html PRKACG +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html IL1B +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html PRKACA +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html PRKACB +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html HSPA5 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html IL1A +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html EGR1 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html IL6 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html MAP2K1 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html MAP2K2 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html SOD1 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html C8G +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html C8A +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html NCAM1 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html C1QA +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html MAPK1 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html C8B +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html NCAM2 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html C1QB +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html NOTCH1 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html FYN +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html BAX +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html MAPK3 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html LAMC1 +KEGG PRION DISEASES http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRION_DISEASES.html PRNP +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ADCY3 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html LOC646821 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V0E1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6AP1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html PDIA4 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html PRKX +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ACTG1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html PRKACG +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html PRKACA +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html PRKACB +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V0D1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html KCNQ1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html KDELR1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V0D2 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html PRKCA +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html KDELR3 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html KDELR2 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1H +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html CFTR +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html PRKCG +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1D +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1F +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html PRKCB +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1C1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1C2 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1A +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html SEC61B +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html GNAS +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1G3 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html SEC61G +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1G2 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1B2 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1G1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1B1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V0B +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V0C +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ERO1L +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html SEC61A1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html SEC61A2 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ACTB +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html TCIRG1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html LOC646048 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html MUC2 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html SLC12A2 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html TJP1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V0E2 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ADCY9 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ARF1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html PLCG1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1E1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html PLCG2 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V1E2 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V0A1 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V0A4 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html TJP2 +KEGG VIBRIO CHOLERAE INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIBRIO_CHOLERAE_INFECTION.html ATP6V0A2 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V0E1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6AP1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html CXCR1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html CXCR2 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html NFKB1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html CDC42 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html CASP3 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html NOD1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html PAK1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html CSK +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V0D1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V0D2 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html CHUK +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html EGFR +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html F11R +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ADAM10 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html LYN +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html RELA +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1H +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1D +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1F +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1C1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1A +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html IGSF5 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1C2 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html JUN +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html MAPK9 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ADAM17 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html MAPK8 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1G3 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html JAM2 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html MAP3K14 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html JAM3 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html CXCL1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html NFKBIA +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1G2 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1B2 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1G1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1B1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html CCL5 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html SRC +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V0B +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V0C +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html RAC1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html GIT1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html TCIRG1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html IL8 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html PTPRZ1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html MET +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html MAP2K4 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html MAPK11 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html MAPK10 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html PTPN11 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html TJP1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V0E2 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html PLCG1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html MAPK12 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html MAPK13 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1E1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html MAPK14 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html PLCG2 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html IKBKG +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V1E2 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html HBEGF +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V0A1 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html IKBKB +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V0A4 +KEGG EPITHELIAL CELL SIGNALING IN HELICOBACTER PYLORI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_EPITHELIAL_CELL_SIGNALING_IN_HELICOBACTER_PYLORI_INFECTION.html ATP6V0A2 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html LOC646821 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html OCLN +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBB2B +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBB2A +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBB2C +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TLR4 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TLR5 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html CTNNB1 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ACTG1 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html CDC42 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html CTTN +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html RHOA +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBB6 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBB8 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBA1A +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBB1 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBA1B +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBB3 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBA1C +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBB4 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html PRKCA +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ARHGEF2 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ROCK1 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html LY96 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ROCK2 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html WAS +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html NCL +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ARPC1A +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ARPC1B +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html NCK2 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html KRT18 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ARPC5L +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html NCK1 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html CLDN1 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBA4A +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html WASL +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html YWHAZ +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html CDH1 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ARPC4 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ARPC5 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ITGB1 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html LOC653888 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBB4Q +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBB +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html EZR +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ARPC3 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ARPC2 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBA3C +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBA3D +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBA3E +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ACTB +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html LOC646048 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html HCLS1 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBA8 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html FYN +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html YWHAQ +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html TUBAL3 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html ABL1 +KEGG PATHOGENIC ESCHERICHIA COLI INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PATHOGENIC_ESCHERICHIA_COLI_INFECTION.html CD14 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html PTGS2 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html MARCKSL1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html TLR2 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html TGFB3 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html TLR4 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html NFKB1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DMB +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DMA +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html TGFB1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html IL10 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html TGFB2 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html MAP3K7 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html FOS +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html MYD88 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html IFNG +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html IL1B +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html NOS2 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html FCGR3A +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html FCGR3B +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html IFNGR2 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html IFNGR1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html IL1A +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html IRAK1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html NCF2 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html NCF1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html NCF4 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html RELA +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DQA2 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DQA1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html PRKCB +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html MAPK1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html JUN +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html MAPK3 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html IL12A +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DPA1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html IL12B +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DRA +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DQB1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html TNF +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DRB1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html C3 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html NFKBIB +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DRB3 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html ELK1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html NFKBIA +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html ITGB2 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html ITGB1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html ITGAM +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html IRAK4 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html FCGR1A +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DRB4 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DRB5 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DPB1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DOA +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html TRAF6 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html HLA-DOB +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html IL4 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html PTPN6 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html CR1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html MAPK11 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html ITGA4 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html TAB1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html STAT1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html TAB2 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html CYBA +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html MAPK12 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html MAPK13 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html FCGR2C +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html MAPK14 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html JAK1 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html JAK2 +KEGG LEISHMANIA INFECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_LEISHMANIA_INFECTION.html FCGR2A +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html TGFB3 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html MLH1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html TGFB1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html CTNNB1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html TGFB2 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html AKT1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html FOS +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html CASP3 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html CASP9 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html RHOA +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html PIK3CA +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html MYC +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html AKT3 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html AKT2 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html PIK3CG +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html BRAF +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html PIK3CB +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html PIK3CD +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html CYCS +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html TP53 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html LEF1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html MAPK1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html CCND1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html JUN +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html MAPK3 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html MAPK9 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html MAPK8 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html DCC +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html APC2 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html TCF7L2 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html TCF7L1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html KRAS +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html RAC2 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html RAC3 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html BCL2 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html RAC1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html PIK3R5 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html AXIN2 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html PIK3R3 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html PIK3R1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html PIK3R2 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html APC +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html AXIN1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html MSH6 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html TCF7 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html MSH3 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html MAP2K1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html MSH2 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html TGFBR1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html TGFBR2 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html SMAD4 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html SMAD3 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html RAF1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html BIRC5 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html SMAD2 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html BAD +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html MAPK10 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html APPL1 +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html RALGDS +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html BAX +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html GSK3B +KEGG COLORECTAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_COLORECTAL_CANCER.html ARAF +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html HRAS +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PDGFB +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PGF +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html ARNT2 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html TGFB3 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html FLCN +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html TGFB1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html TGFB2 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html AKT1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PAK6 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html CDC42 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PAK7 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html CUL2 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PAK2 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PAK3 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PAK4 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html GAB1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html SLC2A1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PIK3CA +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html TGFA +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PAK1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html RAPGEF1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html AKT3 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html AKT2 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PIK3CG +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html BRAF +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PIK3CB +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PIK3CD +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html VEGFB +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html MAPK1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html VEGFC +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html CRKL +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html HIF1A +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html EP300 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html JUN +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html MAPK3 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html VEGFA +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html GRB2 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html EGLN3 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html EGLN2 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html EGLN1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html ARNT +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html RBX1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html KRAS +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html SOS1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html SOS2 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html RAC1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PIK3R5 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PIK3R3 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html FIGF +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PIK3R1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PIK3R2 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html FH +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html MAP2K1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html EPAS1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html VHL +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html MAP2K2 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html MET +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html CREBBP +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html RAF1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html HGF +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html PTPN11 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html NRAS +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html ETS1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html ARAF +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html TCEB2 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html RAP1A +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html RAP1B +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html TCEB1 +KEGG RENAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_RENAL_CELL_CARCINOMA.html CRK +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html E2F1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html E2F2 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html E2F3 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html PGF +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html TGFB3 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html NFKB1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html TGFB1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html TGFB2 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html AKT1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html CDC42 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html CDKN2A +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html CASP9 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html RALB +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html PIK3CA +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html RALA +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html TGFA +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html AKT3 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html CHUK +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html AKT2 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html PIK3CG +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html EGFR +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html PLD1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html BRAF +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html PIK3CB +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html RALBP1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html ARHGEF6 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html RELA +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html PIK3CD +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html TP53 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html CDK6 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html RB1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html CDK4 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html RAD51 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html VEGFB +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html MAPK1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html VEGFC +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html CCND1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html MAPK3 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html VEGFA +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html MAPK9 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html MAPK8 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html ERBB2 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html BCL2L1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html KRAS +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html RAC2 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html RAC3 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html RAC1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html PIK3R5 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html PIK3R3 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html EGF +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html FIGF +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html PIK3R1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html PIK3R2 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html MAP2K1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html TGFBR1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html TGFBR2 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html SMAD4 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html BRCA2 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html RAF1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html SMAD3 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html SMAD2 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html BAD +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html MAPK10 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html STAT1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html RALGDS +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html STAT3 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html IKBKG +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html ARAF +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html JAK1 +KEGG PANCREATIC CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PANCREATIC_CANCER.html IKBKB +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html HRAS +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html MLH1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html FOXO3 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html PTEN +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html CTNNB1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html AKT1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html PDPK1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html CASP9 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html ILK +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html PIK3CA +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html MYC +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html AKT3 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html AKT2 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html EGFR +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html PIK3CG +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html BRAF +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html PIK3CB +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html PIK3CD +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html TP53 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html LEF1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html CTNNA1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html CTNNA3 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html CTNNA2 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html MAPK1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html CCND1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html MAPK3 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html APC2 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html GRB2 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html ERBB2 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html ELK1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html CDH1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html TCF7L2 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html TCF7L1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html KRAS +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html SOS1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html SOS2 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html PIK3R5 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html AXIN2 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html EGF +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html PIK3R3 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html PIK3R1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html PIK3R2 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html AXIN1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html APC +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html TCF7 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html MAP2K1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html MAP2K2 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html RAF1 +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html BAD +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html NRAS +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html GSK3B +KEGG ENDOMETRIAL CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ENDOMETRIAL_CANCER.html ARAF +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html E2F1 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html E2F2 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html E2F3 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html HRAS +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PDGFB +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PDGFA +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PTEN +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html AKT1 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CDKN2A +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PIK3CA +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html TGFA +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html SHC1 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html SHC3 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html SHC2 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html AKT3 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html AKT2 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html SHC4 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PIK3CG +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PRKCA +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html EGFR +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html BRAF +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PIK3CB +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PIK3CD +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html TP53 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CDK6 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PRKCG +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html RB1 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CDK4 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PRKCB +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html MAPK1 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CCND1 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html MAPK3 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PDGFRA +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html MDM2 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PDGFRB +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html GRB2 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CAMK2G +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html IGF1R +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html KRAS +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CALML3 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html SOS1 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html SOS2 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CAMK2D +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CALML6 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PIK3R5 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CAMK2B +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CALML5 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html EGF +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PIK3R3 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CAMK2A +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PIK3R1 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PIK3R2 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html MAP2K1 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html MAP2K2 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html RAF1 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html IGF1 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html NRAS +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CDKN1A +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PLCG1 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html PLCG2 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html ARAF +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CALM3 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html MTOR +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CALM2 +KEGG GLIOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GLIOMA.html CALM1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html HSP90AB1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html E2F1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html E2F2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html E2F3 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html HRAS +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PDGFB +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PDGFA +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html FOXO1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html NFKB1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PTEN +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CTNNB1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html INSRR +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CCNE2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html AKT1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CCNE1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PDPK1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CASP9 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CREB3L2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PIK3CA +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html TGFA +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CREB3L1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PDGFC +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CREB3L4 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html SRD5A2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CREB3L3 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PDGFD +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CHUK +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html AKT3 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html AKT2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PIK3CG +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html EGFR +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html AR +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html HSP90AA1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html BRAF +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PIK3CB +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html RELA +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PIK3CD +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html TP53 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html LEF1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html RB1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CDK2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html MAPK1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CCND1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html EP300 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html MAPK3 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PDGFRA +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PDGFRB +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html MDM2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html GSTP1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html FGFR2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html FGFR1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html GRB2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html ERBB2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html NFKBIA +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html TCF7L2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html TCF7L1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html IGF1R +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html KRAS +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html INS +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html BCL2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html SOS1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html SOS2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html NKX3-1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PIK3R5 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PIK3R3 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html EGF +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PIK3R1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html PIK3R2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html TCF7 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html MAP2K1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CREB3 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html KLK3 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html MAP2K2 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CREB1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CREBBP +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html RAF1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html IGF1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CREB5 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html BAD +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html NRAS +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html ATF4 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html HSP90B1 +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CDKN1A +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html CDKN1B +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html GSK3B +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html ARAF +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html IKBKG +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html MTOR +KEGG PROSTATE CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PROSTATE_CANCER.html IKBKB +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html HRAS +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html PPARG +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html TFG +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html CDH1 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html TCF7L2 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html TCF7L1 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html TPM3 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html CTNNB1 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html KRAS +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html PAX8 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html TPR +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html MYC +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html RET +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html TCF7 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html MAP2K1 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html BRAF +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html MAP2K2 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html RXRB +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html RXRA +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html RXRG +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html TP53 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html LEF1 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html MAPK1 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html CCDC6 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html NRAS +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html CCND1 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html NCOA4 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html NTRK1 +KEGG THYROID CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_THYROID_CANCER.html MAPK3 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT3A +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html STK36 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html GLI2 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html GLI3 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html SHH +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html CTNNB1 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html GLI1 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT2 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT1 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT4 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT3 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html HHIP +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT6 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT10A +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT10B +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html TP53 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html LEF1 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html SMO +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT9B +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT11 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT9A +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT5A +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT16 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT5B +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html APC2 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html TCF7L2 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html TCF7L1 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html SUFU +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html AXIN2 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT8A +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html AXIN1 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT8B +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html APC +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html DVL2 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html FZD9 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html BMP4 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html FZD8 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html DVL3 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html TCF7 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html BMP2 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html FZD1 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html FZD3 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html FZD2 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html FZD5 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html FZD4 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html FZD7 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT2B +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html DVL1 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html FZD6 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT7B +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html FZD10 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html GSK3B +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html PTCH1 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html PTCH2 +KEGG BASAL CELL CARCINOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BASAL_CELL_CARCINOMA.html WNT7A +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html E2F1 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF6 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF19 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html E2F2 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF5 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF18 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html E2F3 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF8 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html HRAS +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF7 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PDGFB +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PDGFA +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF9 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF14 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF17 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html MITF +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF16 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF11 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF10 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF13 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF12 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PTEN +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html AKT1 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html CDKN2A +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PIK3CA +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PDGFC +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PDGFD +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF1 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF2 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF3 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html AKT3 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html AKT2 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF4 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PIK3CG +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html EGFR +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html BRAF +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PIK3CB +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PIK3CD +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html TP53 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF23 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html CDK6 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF22 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html RB1 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF21 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html CDK4 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGF20 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html MAPK1 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html CCND1 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html MAPK3 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PDGFRA +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html MDM2 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PDGFRB +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html FGFR1 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html CDH1 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html IGF1R +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html KRAS +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PIK3R5 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PIK3R3 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html EGF +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PIK3R1 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html PIK3R2 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html MAP2K1 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html MAP2K2 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html MET +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html RAF1 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html IGF1 +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html BAD +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html HGF +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html NRAS +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html CDKN1A +KEGG MELANOMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_MELANOMA.html ARAF +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html E2F1 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html E2F2 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html E2F3 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html HRAS +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html FGFR3 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html PGF +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html ERBB2 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html MMP9 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html CDH1 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html MMP2 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html MMP1 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html TYMP +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html KRAS +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html CDKN2A +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html THBS1 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html EGF +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html MYC +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html FIGF +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html EGFR +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html IL8 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html BRAF +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html MAP2K1 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html MAP2K2 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html TP53 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html RAF1 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html RB1 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html DAPK2 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html CDK4 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html DAPK3 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html DAPK1 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html VEGFB +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html RPS6KA5 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html MAPK1 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html NRAS +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html VEGFC +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html CDKN1A +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html CCND1 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html RASSF1 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html MAPK3 +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html ARAF +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html VEGFA +KEGG BLADDER CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_BLADDER_CANCER.html MDM2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html E2F1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html E2F2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html E2F3 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html HRAS +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html STAT5A +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html STAT5B +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html TGFB3 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html NFKB1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html TGFB1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html TGFB2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html AKT1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CDKN2A +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html GAB2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html PIK3CA +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html SHC1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html SHC3 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html SHC2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html MYC +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html AKT3 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CHUK +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html SHC4 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html AKT2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html PIK3CG +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CTBP1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html BCR +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CTBP2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html BRAF +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html PIK3CB +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html RELA +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html PIK3CD +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html TP53 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CDK6 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html RB1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CDK4 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html MECOM +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html MAPK1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CCND1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CRKL +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html MAPK3 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html MDM2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html GRB2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html NFKBIA +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html BCL2L1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html KRAS +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html SOS1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html SOS2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html PIK3R5 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html PIK3R3 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html RUNX1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html PIK3R1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html PIK3R2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html MAP2K1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html MAP2K2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html TGFBR1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html TGFBR2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CBL +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html SMAD4 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html SMAD3 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html RAF1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html BAD +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html PTPN11 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CBLC +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html NRAS +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CBLB +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CDKN1A +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html HDAC2 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CDKN1B +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html HDAC1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html IKBKG +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html ARAF +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html ABL1 +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html IKBKB +KEGG CHRONIC MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_CHRONIC_MYELOID_LEUKEMIA.html CRK +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PPARD +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html HRAS +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html STAT5A +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html STAT5B +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html SPI1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html RPS6KB2 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html RPS6KB1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html NFKB1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html AKT1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html EIF4EBP1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PIK3CA +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html RARA +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html CCNA1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html MYC +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html CHUK +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html AKT3 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html AKT2 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PIK3CG +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html BRAF +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PIK3CB +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html RELA +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PIK3CD +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PIM1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html RUNX1T1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html LEF1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PIM2 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html JUP +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html MAPK1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html CCND1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html MAPK3 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html GRB2 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PML +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html KIT +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html ZBTB16 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html TCF7L2 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html TCF7L1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html KRAS +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html LOC652346 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html SOS1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html LOC652799 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html SOS2 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PIK3R5 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PIK3R3 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html RUNX1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PIK3R1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html PIK3R2 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html CEBPA +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html TCF7 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html MAP2K1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html FLT3 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html MAP2K2 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html RAF1 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html LOC652671 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html BAD +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html STAT3 +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html NRAS +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html IKBKG +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html ARAF +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html MTOR +KEGG ACUTE MYELOID LEUKEMIA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ACUTE_MYELOID_LEUKEMIA.html IKBKB +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html E2F1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html E2F2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html FHIT +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html E2F3 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PTGS2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html NFKB1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PTEN +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html CCNE2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html AKT1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html CCNE1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html MAX +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html CDKN2B +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html CASP9 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PIK3CA +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html NOS2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html RARB +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html MYC +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html CHUK +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html AKT3 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html AKT2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PIK3CG +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PIK3CB +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html RXRB +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html RXRA +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html RELA +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PIK3CD +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html CYCS +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html TP53 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html SKP2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html RXRG +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html CDK6 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html RB1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html CDK4 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html CDK2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html CCND1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PIAS4 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html LAMC3 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PIAS3 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PIAS2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html LAMC2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html LAMC1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PIAS1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html ITGA2B +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html TRAF1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html CKS1B +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html TRAF2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html XIAP +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html NFKBIA +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html BCL2L1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html ITGB1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html LAMB4 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PTK2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html LAMB3 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html LAMB2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html BCL2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html ITGAV +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PIK3R5 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PIK3R3 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html TRAF6 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html LAMB1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html TRAF5 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PIK3R1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html TRAF4 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html PIK3R2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html TRAF3 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html FN1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html COL4A4 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html COL4A2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html COL4A1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html ITGA2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html ITGA3 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html BIRC3 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html BIRC2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html COL4A6 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html LAMA2 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html LAMA1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html LAMA4 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html CDKN1B +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html LAMA3 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html ITGA6 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html LAMA5 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html IKBKG +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html APAF1 +KEGG SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SMALL_CELL_LUNG_CANCER.html IKBKB +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html E2F1 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html FHIT +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html E2F2 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html HRAS +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html E2F3 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html FOXO3 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html AKT1 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PDPK1 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html CDKN2A +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html CASP9 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html TGFA +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PIK3CA +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html RARB +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html AKT3 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html AKT2 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PIK3CG +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PRKCA +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html EGFR +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html BRAF +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html RXRB +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PIK3CB +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html RXRA +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PIK3CD +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html RXRG +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html TP53 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PRKCG +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html CDK6 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html RB1 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html CDK4 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html STK4 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PRKCB +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html MAPK1 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html CCND1 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html MAPK3 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html GRB2 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html ERBB2 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html KRAS +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html SOS1 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html SOS2 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PIK3R5 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html EGF +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PIK3R3 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PIK3R1 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PIK3R2 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html MAP2K1 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html MAP2K2 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html RAF1 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html BAD +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html NRAS +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html RASSF5 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PLCG1 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html RASSF1 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html PLCG2 +KEGG NON SMALL CELL LUNG CANCER http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_NON_SMALL_CELL_LUNG_CANCER.html ARAF +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DQB1 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html TNF +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DRB1 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DRB3 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html IL13 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DMB +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DMA +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html IL10 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html EPX +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DRB4 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html MS4A2 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html FCER1G +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DRB5 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DPB1 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DOA +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DOB +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html IL4 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html FCER1A +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html IL3 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html IL5 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html RNASE3 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html IL9 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html PRG2 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html CD40 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DQA2 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DQA1 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html CCL11 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html CD40LG +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DPA1 +KEGG ASTHMA http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ASTHMA.html HLA-DRA +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA21 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html CGA +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html FASLG +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DMB +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DMA +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IL10 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html TPO +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html FAS +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-A +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-C +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html GZMB +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-B +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html CD40 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-E +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DQA2 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-G +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DQA1 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-F +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html CD86 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html CD80 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html CD40LG +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DPA1 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html TSHR +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DRA +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html TG +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DQB1 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html PRF1 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DRB1 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DRB3 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html TSHB +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA2 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA1 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA7 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA6 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA5 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA4 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DRB4 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DRB5 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA8 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DPB1 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DOA +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html HLA-DOB +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html CD28 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IL4 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IL5 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA10 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html CTLA4 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html LOC652614 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA14 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA13 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA16 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IFNA17 +KEGG AUTOIMMUNE THYROID DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_AUTOIMMUNE_THYROID_DISEASE.html IL2 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H2AA3 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html LOC340096 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H2AA4 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html SNRPD3 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html SNRPD1 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C1QC +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html IL10 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BO +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BM +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BN +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BK +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H2AFV +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html GRIN2B +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BL +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BI +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html IFNG +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BJ +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H2AFZ +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H2AFY +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H2AFX +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST3H3 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C4A +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html ACTN4 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C4B +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html GRIN2A +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html ACTN1 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html ACTN2 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html CD40 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H2AFJ +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html ACTN3 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H2BFWT +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DQA2 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DQA1 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C1QA +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C1QB +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html CD40LG +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html SNRPB +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DPA1 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DRA +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H4L +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H4K +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html LOC391769 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DRB1 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DRB3 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H2AFB2 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H2AFB1 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html TROVE2 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html LOC651868 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H4A +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H4B +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DRB4 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H4E +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DRB5 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H4F +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H4C +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DPB1 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H4D +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H4I +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DOA +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DOB +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H4J +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H4G +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H4H +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H3A +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H3J +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html SSB +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H3C +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H3D +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html LOC644950 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H3A +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H3B +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H3C +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H3F3A +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H3F3B +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H3D +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H3F3C +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H3E +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H3F +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H3G +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H3H +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H3I +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST4H4 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H4A +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DMB +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DMA +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H4B +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H2AB +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H2AC +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST3H2A +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST3H2BB +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html FCGR3A +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html FCGR3B +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html ELANE +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H2BFM +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H2AFB3 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C8G +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C8A +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C8B +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html CD86 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html CD80 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H2BE +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST2H2BF +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html CTSG +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2AB +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HLA-DQB1 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2AC +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C7 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2AA +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C9 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html TNF +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C3 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2AG +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C6 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2AD +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C5 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2AE +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C1R +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C1S +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html FCGR1A +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html C2 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html CD28 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BA +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BB +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BC +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BD +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BE +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BF +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BG +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2BH +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html TRIM21 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html FCGR2B +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html FCGR2C +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html H2AFY2 +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2AI +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2AH +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2AK +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2AJ +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html FCGR2A +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2AM +KEGG SYSTEMIC LUPUS ERYTHEMATOSUS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_SYSTEMIC_LUPUS_ERYTHEMATOSUS.html HIST1H2AL +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DQB1 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html PRF1 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html TNF +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DRB1 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DRB3 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html FASLG +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DMB +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DMA +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html IL10 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html IFNG +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DRB4 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DRB5 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html FAS +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DPB1 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DOA +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DOB +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html CD28 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html IL4 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html IL5 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-A +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html GZMB +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-C +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-B +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html CD40 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-E +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DQA2 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-G +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html LOC652614 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DQA1 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-F +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html CD86 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html CD80 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html CD40LG +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html IL12A +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DPA1 +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html IL12B +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html HLA-DRA +KEGG ALLOGRAFT REJECTION http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ALLOGRAFT_REJECTION.html IL2 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DQB1 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html PRF1 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html KIR2DL5A +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html TNF +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DRB1 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DRB3 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html FASLG +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DMB +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DMA +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html IFNG +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DRB4 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DRB5 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html IL1B +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html FAS +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DPB1 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DOA +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html KLRD1 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DOB +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html IL1A +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html CD28 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html IL6 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-A +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html GZMB +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-C +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-B +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-E +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DQA2 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-G +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DQA1 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html LOC652614 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-F +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html CD86 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html CD80 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DPA1 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html KIR2DL1 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html KIR2DL3 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html KIR2DL2 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html KIR3DL1 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html KLRC1 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html HLA-DRA +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html KIR3DL2 +KEGG GRAFT VERSUS HOST DISEASE http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_GRAFT_VERSUS_HOST_DISEASE.html IL2 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html CD8A +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html CD8B +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html UNG +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html RAG1 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html RAG2 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html IL7R +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html RFXANK +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html RFXAP +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html ADA +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html BTK +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html ICOS +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html TAP2 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html TAP1 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html ZAP70 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html IGLL1 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html IL2RG +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html CD4 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html BLNK +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html CIITA +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html PTPRC +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html CD3D +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html RFX5 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html CD3E +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html TNFRSF13B +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html TNFRSF13C +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html CD40 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html DCLRE1C +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html CD19 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html CD40LG +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html LCK +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html IKBKG +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html AIRE +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html AICDA +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html JAK3 +KEGG PRIMARY IMMUNODEFICIENCY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_PRIMARY_IMMUNODEFICIENCY.html CD79A +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html PRKAG3 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html LOC646821 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html TNNC1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html PRKAG1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html MYBPC3 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html PRKAG2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html TGFB3 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html TTN +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html TGFB1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html TGFB2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ACTG1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html DES +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNG8 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNG7 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html PRKAB2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNG6 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNG5 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html PRKAB1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNG4 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html MYH7 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNG3 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html MYH6 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNG2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNG1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html TNNT2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html SGCG +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html SGCD +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html RYR2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html SGCA +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html SGCB +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGA2B +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html TNF +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html MYL2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html MYL3 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html DAG1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGA11 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNB1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGB4 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGA10 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNB2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGB5 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNB3 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNB4 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGB3 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html TPM2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html TPM1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGB1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html TPM4 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html TPM3 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ACE +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGB8 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html DMD +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGB7 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGAV +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGB6 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html PRKAA1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html PRKAA2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html EMD +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ACTB +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html LOC646048 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html IL6 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNA2D1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html SLC8A1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ACTC1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGA1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html LMNA +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGA2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html IGF1 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGA3 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGA4 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNA2D3 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html TNNI3 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNA2D2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNA1S +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNA2D4 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html LAMA2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGA9 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGA6 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ATP2A2 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGA5 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGA8 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html ITGA7 +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNA1F +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNA1C +KEGG HYPERTROPHIC CARDIOMYOPATHY HCM http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_HYPERTROPHIC_CARDIOMYOPATHY_HCM.html CACNA1D +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html LOC646821 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html GJA1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CTNNB1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ACTG1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html DES +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ACTN4 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNG8 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNG7 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNG6 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNG5 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNG4 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html LEF1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ACTN1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ACTN2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNG3 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ACTN3 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNG2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNG1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CTNNA1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CTNNA3 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CTNNA2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html JUP +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html SGCG +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html DSP +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html SGCD +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html RYR2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html SGCA +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html SGCB +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGA2B +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html DAG1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGA11 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNB1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGB4 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGA10 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNB2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGB5 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNB3 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNB4 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGB3 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CDH2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html TCF7L2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGB1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html TCF7L1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGB8 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html DMD +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGB7 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGAV +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGB6 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html EMD +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ACTB +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html LOC646048 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNA2D1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html SLC8A1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html TCF7 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGA1 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html LMNA +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGA2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGA3 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGA4 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNA2D3 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNA2D2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNA1S +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNA2D4 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html LAMA2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGA9 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGA6 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ATP2A2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html DSG2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGA5 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html PKP2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGA8 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html ITGA7 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html DSC2 +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNA1F +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNA1C +KEGG ARRHYTHMOGENIC RIGHT VENTRICULAR CARDIOMYOPATHY ARVC http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_ARRHYTHMOGENIC_RIGHT_VENTRICULAR_CARDIOMYOPATHY_ARVC.html CACNA1D +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ADCY3 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html LOC646821 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ADCY4 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ADCY1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ADCY2 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ADCY7 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ADCY8 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html TNNC1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ADCY5 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html MYBPC3 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ADCY6 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html TGFB3 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html TTN +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html TGFB1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html PRKX +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html TGFB2 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html PRKACG +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ACTG1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html DES +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html PRKACA +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html PRKACB +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNG8 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNG7 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNG6 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNG5 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNG4 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html MYH7 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNG3 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html MYH6 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNG2 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNG1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html TNNT2 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ADRB1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html SGCG +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html SGCD +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html RYR2 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html GNAS +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html SGCA +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html SGCB +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGA2B +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html TNF +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html MYL2 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html MYL3 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html DAG1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNB1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGA11 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGB4 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGA10 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNB2 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGB5 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNB3 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNB4 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGB3 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html TPM2 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGB1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html TPM1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html TPM4 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html TPM3 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGB8 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html DMD +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGB7 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGAV +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGB6 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html EMD +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ACTB +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html LOC646048 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ACTC1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNA2D1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html SLC8A1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGA1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html LMNA +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGA2 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html IGF1 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGA3 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGA4 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNA2D3 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html TNNI3 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNA2D2 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNA1S +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNA2D4 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html LAMA2 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGA9 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGA6 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ATP2A2 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ADCY9 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGA5 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html PLN +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGA8 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html ITGA7 +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNA1F +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNA1C +KEGG DILATED CARDIOMYOPATHY http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_DILATED_CARDIOMYOPATHY.html CACNA1D +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html LOC646821 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH15 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DMB +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CXADR +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DMA +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html ACTG1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CASP3 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CASP9 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CASP8 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html ICAM1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH3 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CYCS +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH2 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-A +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH4 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH7 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-C +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH6 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CD40 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-B +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH9 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-E +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH8 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DQA2 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DQA1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-G +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-F +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html EIF4G1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html EIF4G2 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CCND1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CD86 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html EIF4G3 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CD80 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html SGCG +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CD40LG +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html SGCD +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DPA1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH7B +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html SGCA +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DRA +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html SGCB +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DQB1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html BID +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html ITGAL +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html PRF1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CAV1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DRB1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DRB3 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html DAG1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html ITGB2 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html RAC2 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html RAC3 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html DMD +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html RAC1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DRB4 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DRB5 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DPB1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DOA +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html HLA-DOB +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CD28 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html ACTB +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html LOC646048 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html LOC652614 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html LAMA2 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html CD55 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html FYN +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH11 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH13 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH14 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html ABL1 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html ABL2 +KEGG VIRAL MYOCARDITIS http://www.broadinstitute.org/gsea/msigdb/cards/KEGG_VIRAL_MYOCARDITIS.html MYH10 +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html TNF +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html RELA +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html CREBBP +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html NFKBIA +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html NFKB1 +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html FADD +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html TRADD +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html TNFRSF1A +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html TNFRSF1B +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html HDAC3 +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html EP300 +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html RIPK1 +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html IKBKG +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html IKBKB +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html TRAF6 +BIOCARTA RELA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RELA_PATHWAY.html CHUK +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html CAV1 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html PDE3B +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html PRKG2 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html BDKRB2 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html PRKG1 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html PRKACG +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html AKT1 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html PRKAR2B +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html PRKAR2A +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html NOS3 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html PRKACB +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html CHRNA1 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html KNG1 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html HSP90AA1 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html FLT1 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html ACTA1 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html FLT4 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html PDE3A +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html CYCSP35 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html TNNI1 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html KDR +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html PDE2A +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html PRKAR1B +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html SLC7A1 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html CHRM1 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html PRKAR1A +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html VEGFA +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html CALM3 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html RYR2 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html CALM2 +BIOCARTA NO1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO1_PATHWAY.html CALM1 +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html PTPRC +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html ADCY1 +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html CD3G +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html HLA-DRB1 +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html CD3D +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html CD3E +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html CREBBP +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html CD247 +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html TRA@ +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html TRB@ +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html PRKACG +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html PRKAR2B +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html GNGT1 +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html PRKAR2A +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html GNB1 +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html PRKAR1B +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html LCK +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html PRKAR1A +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html ZAP70 +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html CD4 +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html GNAS +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html PRKACB +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html CSK +BIOCARTA CSK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CSK_PATHWAY.html HLA-DRA +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html CCNB1 +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html PRKCA +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html CDK1 +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html GRB2 +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html PTPRA +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html CDC25C +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html CSK +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html CDC25A +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html SRC +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html PRKCB +BIOCARTA SRCRPTP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SRCRPTP_PATHWAY.html CDC25B +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html PLAT +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html COL4A4 +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html COL4A3 +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html COL4A2 +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html F10 +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html COL4A1 +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html F7 +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html COL4A6 +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html PLG +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html COL4A5 +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html PROC +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html FGG +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html FGA +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html FGB +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html AHSP +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html F2 +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html SERPINC1 +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html TFPI +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html PROS1 +BIOCARTA AMI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AMI_PATHWAY.html F2R +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html CSF3 +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html ITGAL +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html ICAM1 +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html SELP +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html TNF +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html IL8 +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html SELL +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html C5 +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html ITGB2 +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html ITGAM +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html PECAM1 +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html IFNG +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html SELPLG +BIOCARTA GRANULOCYTES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GRANULOCYTES_PATHWAY.html IL1A +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html VCAM1 +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html ICAM1 +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html ITGAL +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html IL8 +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html CD34 +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html SELL +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html PECAM1 +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html ITGB2 +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html ITGA4 +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html ITGB1 +BIOCARTA LYM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LYM_PATHWAY.html IL1A +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html ARFGAP1 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html KDELR3 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html KDELR2 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html COPA +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html ARFGAP3 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html CLTB +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html CYTH1 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html GPLD1 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html ASAP2 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html CYTH4 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html COP +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html CYTH2 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html CYTH3 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html ARFGEF2 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html ARFGEF1 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html GBF1 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html ARF1 +BIOCARTA ARAP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARAP_PATHWAY.html KDELR1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html NRG3 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html UTRN +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html DAG1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html ITGB1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html PXN +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html SRC +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html PAK6 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html CDC42 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html PAK7 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html MUSK +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html CTTN +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html PTK2 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html PAK2 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html PAK3 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html PAK4 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html DMD +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html RAC1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html GIT2 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html PAK1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html NRG1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html CHRNA1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html NRG2 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html EGFR +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html ACTA1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html ITGA1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html DVL1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html LAMA2 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html MAPK1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html LAMA4 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html LAMA3 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html SP1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html RAPSN +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html CHRM1 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html JUN +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html MAPK3 +BIOCARTA AGR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGR_PATHWAY.html MAPK8 +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html CCNB1 +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html PRKACG +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html CDK1 +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html PRKAR2B +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html PPP1CA +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html PRKAR2A +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html PPP2CA +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html PRKAG1 +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html AKAP8 +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html PRKACB +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html DDX5 +BIOCARTA AKAP95 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP95_PATHWAY.html NCAPD2 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html PIK3CG +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html HSP90AA1 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html RELA +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html NFKBIA +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html FASLG +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html FOXO1 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html NFKB1 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html BAD +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html FOXO3 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html FOXO4 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html AKT1 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html GH1 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html PDPK1 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html YWHAH +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html CASP9 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html PPP2CA +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html IKBKG +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html PIK3CA +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html IKBKB +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html PIK3R1 +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html CHUK +BIOCARTA AKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKT_PATHWAY.html GHR +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html MEF2C +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html BMP10 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html NOG +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html HNF1A +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html MYL2 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html TGFB3 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html BMPR2 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html TGFB1 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html TGFB2 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html CTNNB1 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html ATF2 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html MAP3K7 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html WNT1 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html GATA4 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html NKX2-5 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html AXIN1 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html APC +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html BMP4 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html BMP2 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html TGFBR1 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html SMAD6 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html SMAD5 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html TGFBR2 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html SMAD4 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html FZD1 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html SMAD1 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html DVL1 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html RFC1 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html GSK3B +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html NPPB +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html TGFBR3 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html BMP7 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html CHRD +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html BMP5 +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html NPPA +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html BMPR1A +BIOCARTA ALK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ALK_PATHWAY.html ACVR1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html MEF2C +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html MEF2A +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html HRAS +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html GRB2 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html ELK1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html SRC +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html ATF2 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html AGTR1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html PTK2 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html PTK2B +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html SOS1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html AGT +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html MAP3K1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html RAC1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html SHC1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html PAK1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html EGFR +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html PRKCA +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html MAP2K1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html MAP2K2 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html MAP2K4 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html RAF1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html CYCSP35 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html PRKCB +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html MAPK1 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html MEF2D +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html LOC729991-MEF2B +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html GNAQ +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html JUN +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html MAPK3 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html CALM3 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html MAPK8 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html CALM2 +BIOCARTA AT1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AT1R_PATHWAY.html CALM1 +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html COL4A4 +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html COL4A3 +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html COL4A2 +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html COL4A1 +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html COL4A6 +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html COL4A5 +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html AGTR1 +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html ACE +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html AGTR2 +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html REN +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html AGT +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html ACE2 +BIOCARTA ACE2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACE2_PATHWAY.html CMA1 +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html IL4 +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html HLA-DRB1 +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html CD80 +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html CD40LG +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html FASLG +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html CD4 +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html FAS +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html CD40 +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html IL10 +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html IL2 +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html HLA-DRA +BIOCARTA ASBCELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ASBCELL_PATHWAY.html CD28 +BIOCARTA DNAFRAGMENT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DNAFRAGMENT_PATHWAY.html HMGB1 +BIOCARTA DNAFRAGMENT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DNAFRAGMENT_PATHWAY.html CASP3 +BIOCARTA DNAFRAGMENT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DNAFRAGMENT_PATHWAY.html HMGB2 +BIOCARTA DNAFRAGMENT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DNAFRAGMENT_PATHWAY.html DFFA +BIOCARTA DNAFRAGMENT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DNAFRAGMENT_PATHWAY.html ENDOG +BIOCARTA DNAFRAGMENT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DNAFRAGMENT_PATHWAY.html CASP7 +BIOCARTA DNAFRAGMENT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DNAFRAGMENT_PATHWAY.html DFFB +BIOCARTA DNAFRAGMENT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DNAFRAGMENT_PATHWAY.html GZMB +BIOCARTA DNAFRAGMENT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DNAFRAGMENT_PATHWAY.html TOP2B +BIOCARTA DNAFRAGMENT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DNAFRAGMENT_PATHWAY.html TOP2A +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html BID +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html PRKCA +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html TLN1 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html CYCS +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html TP53 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html BAD +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html BCL2L1 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html STAT1 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html PXN +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html ATM +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html PRKCB +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html AKT1 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html CASP6 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html CASP3 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html PTK2 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html CASP9 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html BCL2 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html CASP7 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html BAX +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html EIF2S1 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html APAF1 +BIOCARTA CHEMICAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHEMICAL_PATHWAY.html PARP1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html PRKCA +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html F2RL3 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html HRAS +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html TBXAS1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html MAP2K1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html GNAI1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html PTGS1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html ITGA1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html RAF1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html ITGB1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html SRC +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html PRKCB +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html MAPK1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html GNGT1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html PTK2 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html PLA2G4A +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html GNB1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html MAPK3 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html F2 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html PLCB1 +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html SYK +BIOCARTA SPPA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPPA_PATHWAY.html F2R +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html NBN +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html MRE11A +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html RELA +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html TP53 +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html NFKBIA +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html NFKB1 +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html CHEK1 +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html CHEK2 +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html RAD50 +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html TP73 +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html ATM +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html BRCA1 +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html RBBP8 +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html RAD51 +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html CDKN1A +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html JUN +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html MDM2 +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html MAPK8 +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html ABL1 +BIOCARTA ATM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATM_PATHWAY.html GADD45A +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html PRKCA +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html PRKCB +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html PRKACG +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html PRKAR2B +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html GNGT1 +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html PRKAR2A +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html ARRB1 +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html GNB1 +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html PRKAR1B +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html PRKAR1A +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html GNAS +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html GRK4 +BIOCARTA AGPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AGPCR_PATHWAY.html PRKACB +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html PIK3CG +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html DPF2 +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html ZBTB7A +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html XIAP +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html ITGA1 +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html BIRC5 +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html ITGB1 +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html AKT1 +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html FOS +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html CASP3 +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html CCT4 +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html CASP7 +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html JUND +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html PIK3CA +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html MTOR +BIOCARTA BCELLSURVIVAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCELLSURVIVAL_PATHWAY.html PIK3R1 +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html ICAM1 +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html PTPRC +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html ITGAL +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html CR1 +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html CR2 +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html FCGR2B +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html HLA-DRB1 +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html CD80 +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html ITGB2 +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html CD40 +BIOCARTA BLYMPHOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BLYMPHOCYTE_PATHWAY.html HLA-DRA +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html HRAS +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html GRB2 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html ELK1 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html BTK +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html FOS +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html SOS1 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html MAP3K1 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html RAC1 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html PPP3CB +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html PPP3CC +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html SHC1 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html NFATC4 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html PPP3CA +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html NFATC2 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html NFATC3 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html NFATC1 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html SYK +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html BLNK +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html PRKCA +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html LYN +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html MAP2K1 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html RAF1 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html CYCSP35 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html VAV1 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html PRKCB +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html PLCG1 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html MAPK14 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html JUN +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html MAPK3 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html CALM3 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html MAPK8 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html CD79B +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html CD79A +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html CALM2 +BIOCARTA BCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BCR_PATHWAY.html CALM1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html HRAS +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html GRB2 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html GNAI1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html STAT5A +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html CAMK2G +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html GNA11 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html STAT5B +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html STAT6 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html AGTR2 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html STAT4 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html PTK2B +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html SOS1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html AGT +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html MAPT +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html CAMK2D +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html SHC1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html CAMK2B +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html CAMK2A +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html PRKCA +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html KNG1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html MAP2K1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html MAP2K2 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html RAF1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html CYCSP35 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html STAT1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html CDK5 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html STAT3 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html STAT2 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html PRKCB +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html MAPK1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html GNGT1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html PLCG1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html FYN +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html GNB1 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html MAPK14 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html MAPK3 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html F2 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html CALM3 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html JAK2 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html MAPK8 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html CALM2 +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html MYLK +BIOCARTA BIOPEPTIDES PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BIOPEPTIDES_PATHWAY.html CALM1 +BIOCARTA NEUROTRANSMITTERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NEUROTRANSMITTERS_PATHWAY.html PNMT +BIOCARTA NEUROTRANSMITTERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NEUROTRANSMITTERS_PATHWAY.html HDC +BIOCARTA NEUROTRANSMITTERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NEUROTRANSMITTERS_PATHWAY.html TH +BIOCARTA NEUROTRANSMITTERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NEUROTRANSMITTERS_PATHWAY.html DBH +BIOCARTA NEUROTRANSMITTERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NEUROTRANSMITTERS_PATHWAY.html TPH1 +BIOCARTA NEUROTRANSMITTERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NEUROTRANSMITTERS_PATHWAY.html GAD1 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html FOSL2 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html RELA +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html NFKB1 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html IFNAR1 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html IRF9 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html IFNAR2 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html FOS +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html TNFSF11 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html TNFRSF11A +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html IFNB1 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html MAPK8 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html EIF2AK2 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html TRAF6 +BIOCARTA RANKL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANKL_PATHWAY.html FOSL1 +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CAMK1G +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CAMK2G +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CREB1 +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CYCSP35 +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CAMKK1 +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CAMKK2 +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CAMK4 +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CAMK2D +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CALM3 +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CAMK1 +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CAMK2B +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CAMK2A +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CALM2 +BIOCARTA CACAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CACAM_PATHWAY.html CALM1 +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html PRKCA +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html HRAS +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html TNF +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html MAP2K1 +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html RELA +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html NFKBIA +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html RAF1 +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html CUZD1 +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html NFKB1 +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html PRKCB +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html MAPK1 +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html FOS +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html JUN +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html MAPK3 +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html PLCB1 +BIOCARTA CDMAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDMAC_PATHWAY.html MYC +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html MEF2C +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html GRIP1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html TBP +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html POLR2A +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html GTF2E1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html GTF2A1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html PELP1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html ERCC3 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html SRA1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html CREBBP +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html HDAC10 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html ESR1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html HDAC11 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html SPEN +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html NR0B1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html PPARGC1A +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html HIST2H3C +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html BRCA1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html NRIP1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html HDAC5 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html HDAC4 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html HDAC3 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html CCND1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html HDAC2 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html EP300 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html HDAC1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html PHB2 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html GTF2F1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html CARM1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html HDAC9 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html HDAC8 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html HDAC7 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html NCOR2 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html MED1 +BIOCARTA CARM ER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM_ER_PATHWAY.html HDAC6 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html PRF1 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html LMNB1 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html XIAP +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html LMNB2 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html DFFA +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html DFFB +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html CYCS +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html LMNA +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html GZMB +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html BIRC3 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html BIRC2 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html CASP10 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html CASP6 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html CASP3 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html CASP4 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html CASP9 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html CASP7 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html CASP8 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html APAF1 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html PARP1 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html CASP1 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html CASP2 +BIOCARTA CASPASE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CASPASE_PATHWAY.html ARHGDIB +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html EGFR +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html PRKCA +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html GRB2 +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html CBL +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html MET +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html SRC +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html PRKCB +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html SH3GLB2 +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html SH3GLB1 +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html PDGFRA +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html SH3KBP1 +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html EGF +BIOCARTA CBL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CBL_PATHWAY.html CSF1R +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html PRKCA +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html HRAS +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html PIK3C2G +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html MYL2 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html MAP2K1 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html ROCK2 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html LIMK1 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html PPP1R12B +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html NOX1 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html RAF1 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html PRKCB +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html CCL11 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html MAPK1 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html GNGT1 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html PTK2 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html GNAQ +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html GNB1 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html CCR3 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html MAPK3 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html CFL1 +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html RHOA +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html GNAS +BIOCARTA CCR3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR3_PATHWAY.html PLCB1 +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html IKBKAP +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html RELA +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html NFKBIA +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html NFKB1 +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html CD40 +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html DUSP1 +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html CD40LG +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html MAP3K1 +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html IKBKG +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html IKBKB +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html TRAF6 +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html TNFAIP3 +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html MAP3K14 +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html CHUK +BIOCARTA CD40 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CD40_PATHWAY.html TRAF3 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html CDC6 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html KITLG +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html MCM2 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html MCM3 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html MCM4 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html MCM5 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html CDK2 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html ORC1L +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html MCM6 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html CDT1 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html CCNE1 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html ORC2L +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html ORC3L +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html MCM7 +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html CDKN1B +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html ORC4L +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html ORC6L +BIOCARTA MCM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCM_PATHWAY.html ORC5L +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html E2F1 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html TGFB3 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html TGFB1 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html TGFB2 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html CCNE1 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html CDKN2A +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html CDKN2B +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html CCNA1 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html TFDP1 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html CDK1 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html SMAD4 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html SKP2 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html TP53 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html SMAD3 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html CDK6 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html RB1 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html ATR +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html CDK4 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html CDK2 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html CDC25A +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html ATM +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html CCND1 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html CDKN1A +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html CDKN1B +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html DHFR +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html HDAC1 +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html GSK3B +BIOCARTA G1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G1_PATHWAY.html ABL1 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html CDK1 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html TP53 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html PRKDC +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html CHEK1 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html ATR +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html CHEK2 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html CDC34 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html CDC25C +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html MYT1 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html ATM +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html CDC25A +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html BRCA1 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html WEE1 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html CDC25B +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html CCNB1 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html CDKN1A +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html YWHAH +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html EP300 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html RPS6KA1 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html PLK1 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html CDKN2D +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html YWHAQ +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html MDM2 +BIOCARTA G2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_G2_PATHWAY.html GADD45A +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html BCAR1 +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html ACTN1 +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html ACTN2 +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html ACTN3 +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html CTNNA1 +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html SRC +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html CTNNA3 +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html PXN +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html VCL +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html CTNNA2 +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html CTNNB1 +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html PTK2 +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html PECAM1 +BIOCARTA CELL2CELL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELL2CELL_PATHWAY.html CSK +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html KNG1 +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html C7 +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html ITGAL +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html ICAM1 +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html SELP +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html IL6 +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html TNF +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html IL8 +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html C3 +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html C6 +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html C5 +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html ITGB2 +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html ITGA4 +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html ITGB1 +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html VCAM1 +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html SELPLG +BIOCARTA LAIR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LAIR_PATHWAY.html IL1A +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html TRAF2 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html MAP2K1 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html AIFM1 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html RELA +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html MAP2K4 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html CYCS +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html RAF1 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html NFKB1 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html FADD +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html BAD +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html TRADD +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html MAPK1 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html TNFRSF1A +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html RIPK1 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html BCL2 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html MAP3K1 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html BAX +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html MAPK3 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html CASP8 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html SMPD1 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html MAPK8 +BIOCARTA CERAMIDE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CERAMIDE_PATHWAY.html NSMAF +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html TNF +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html RELA +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html TP53 +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html NFKBIA +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html NFKB1 +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html HSPA1A +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html RB1 +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html TAX1BP3 +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html WT1 +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html LIN7A +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html TNFRSF1A +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html TNFRSF1B +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html IFNG +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html USH1C +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html JAK2 +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html IKBKB +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html IFNGR2 +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html IFNGR1 +BIOCARTA TID PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TID_PATHWAY.html DNAJA3 +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C7 +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C9 +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C4A +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C3 +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C4B +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C6 +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C5 +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C1R +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C1S +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C1QC +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C1QA +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C8A +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C1QB +BIOCARTA CLASSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CLASSIC_PATHWAY.html C2 +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C7 +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html MBL2 +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C9 +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C4A +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html MASP1 +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html CFB +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html MASP2 +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C4B +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C3 +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C6 +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C5 +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C1R +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C1S +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C1QC +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C8A +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C1QA +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C1QB +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html C2 +BIOCARTA COMP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_COMP_PATHWAY.html CFD +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html NCOA1 +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html EP300 +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html KAT2B +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html NCOA2 +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html NCOA3 +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html HDAC1 +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html RXRA +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html TSC2 +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html CREBBP +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html CARM1 +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html NCOR1 +BIOCARTA VDR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VDR_PATHWAY.html MED1 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html MEF2C +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html MYOD1 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html MEF2A +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html AKT1 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html IGF1R +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html INS +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html PPP3CB +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html PPP3CC +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html PIK3CA +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html PPP3CA +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html NFATC2 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html INSR +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html PIK3R1 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html MAP2K6 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html NFATC1 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html PIK3CG +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html CAMK1G +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html IGF1 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html CYCSP35 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html HDAC5 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html MEF2D +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html LOC729991-MEF2B +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html YWHAH +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html MAPK14 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html CABIN1 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html CALM3 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html CAMK1 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html MAPK7 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html CALM2 +BIOCARTA HDAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HDAC_PATHWAY.html CALM1 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html PIK3CG +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html HSP90AA1 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html CORIN +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html RELA +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html ANXA1 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html CYCSP35 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html NFKB1 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html NR3C1 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html AKT1 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html GNGT1 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html ADRB2 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html GNB1 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html CALM3 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html PIK3CA +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html NOS3 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html GNAS +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html PIK3R1 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html CALM2 +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html NPPA +BIOCARTA GCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GCR_PATHWAY.html CALM1 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html PIK3CG +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html TGFBR1 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html TGFBR2 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html SMAD5 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html TGFB3 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html SMAD4 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html TP53 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html RPS6KB1 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html SMAD1 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html PTEN +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html TGFB1 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html TGFB2 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html CDKN2A +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html CDKN1B +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html PPP2CA +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html TGFBR3 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html MDM2 +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html PIK3CA +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html CD79B +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html CD79A +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html MTOR +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html MYC +BIOCARTA CTCF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTCF_PATHWAY.html PIK3R1 +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html ITGAL +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html ICAM1 +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html PRF1 +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html CD3G +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html CD3D +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html CD3E +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html CD247 +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html HLA-A +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html FASLG +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html ITGB2 +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html GZMB +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html TRA@ +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html TRB@ +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html B2M +BIOCARTA CTL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTL_PATHWAY.html FAS +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html PRKCA +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html HRAS +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html PIK3C2G +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html MAP2K1 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html GNAI1 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html RELA +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html BCAR1 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html RAF1 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html NFKB1 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html CXCL12 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html PXN +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html PRKCB +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html MAPK1 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html GNGT1 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html PTK2 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html PLCG1 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html GNAQ +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html PTK2B +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html CXCR4 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html GNB1 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html MAPK3 +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html PIK3CA +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html CRK +BIOCARTA CXCR4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CXCR4_PATHWAY.html PIK3R1 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html E2F1 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CDK1 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CCNH +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html RBL1 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CDK6 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CDK7 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html RB1 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CDK4 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CDC25A +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CDK2 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CCNB1 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CCNE1 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CCND1 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CDKN1A +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CDKN2A +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CDKN1B +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CCND3 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CDKN2B +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CCND2 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CDKN2C +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CDKN2D +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html CCNA1 +BIOCARTA CELLCYCLE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CELLCYCLE_PATHWAY.html TFDP1 +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html PRKACG +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html PRKAR2B +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html ADRB2 +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html ADCY1 +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html PRKAR2A +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html EZR +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html PRKAR1B +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html PRKAR1A +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html GNAS +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html CFTR +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html PRKACB +BIOCARTA CFTR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CFTR_PATHWAY.html SLC9A3R1 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL4 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL3 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL6 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL5 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html TNF +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL8 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL16 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL18 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL9 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL13 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL15 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL10 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IFNA1 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL17A +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IFNB1 +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IFNG +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL12A +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL12B +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html LTA +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL1A +BIOCARTA CYTOKINE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CYTOKINE_PATHWAY.html IL2 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html CSF3 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html CSF2 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html TNF +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html HLA-DRB1 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html PDGFA +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html CSF1 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html TGFB3 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL13 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL15 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html TGFB1 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL10 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL11 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html TGFB2 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IFNA1 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IFNG +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html CD4 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html LTA +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL1A +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL4 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL3 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL6 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL5 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL8 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL7 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IFNB1 +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL12A +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL12B +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html HLA-DRA +BIOCARTA INFLAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INFLAM_PATHWAY.html IL2 +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html PRF1 +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html CYCS +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html GZMB +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html CASP10 +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html CASP3 +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html ARHGAP5 +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html CASP9 +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html JUN +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html CASP8 +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html APAF1 +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html CASP1 +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html PARP1 +BIOCARTA D4GDI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_D4GDI_PATHWAY.html ARHGDIB +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html IL4 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html CSF2 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html IL3 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html IL5 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html TLR2 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html IL13 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html TLR4 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html ANPEP +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html CD40 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html TLR7 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html IL10 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html TLR9 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html IFNA1 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html ITGAX +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html IFNB1 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html CD33 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html IFNG +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html IL12A +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html CD2 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html IL12B +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html CD5 +BIOCARTA DC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DC_PATHWAY.html CD7 +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html CSNK1A1 +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html APP +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html CAPNS2 +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html CDK5R1 +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html CAPNS1 +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html CSNK1D +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html GSK3B +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html PPP2CA +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html MAPT +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html CDK5 +BIOCARTA P35ALZHEIMERS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P35ALZHEIMERS_PATHWAY.html CAPN1 +BIOCARTA RNA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RNA_PATHWAY.html EIF2S1 +BIOCARTA RNA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RNA_PATHWAY.html RELA +BIOCARTA RNA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RNA_PATHWAY.html EIF2S2 +BIOCARTA RNA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RNA_PATHWAY.html TP53 +BIOCARTA RNA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RNA_PATHWAY.html NFKBIA +BIOCARTA RNA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RNA_PATHWAY.html NFKB1 +BIOCARTA RNA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RNA_PATHWAY.html EIF2AK2 +BIOCARTA RNA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RNA_PATHWAY.html DNAJC3 +BIOCARTA RNA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RNA_PATHWAY.html MAP3K14 +BIOCARTA RNA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RNA_PATHWAY.html CHUK +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html ALDOA +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html MTA3 +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html ESR1 +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html MTA1 +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html CDH1 +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html MBD3 +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html SNAI2 +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html SNAI1 +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html HDAC1 +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html HSPB2 +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html TUBA3C +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html CTSD +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html HSPB1 +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html TUBA4A +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html TUBA4B +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html TUBA1A +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html PDZK1 +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html GAPDH +BIOCARTA MTA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTA3_PATHWAY.html TUBA1C +BIOCARTA SKP2E2F PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SKP2E2F_PATHWAY.html E2F1 +BIOCARTA SKP2E2F PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SKP2E2F_PATHWAY.html CCNE1 +BIOCARTA SKP2E2F PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SKP2E2F_PATHWAY.html SKP2 +BIOCARTA SKP2E2F PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SKP2E2F_PATHWAY.html SKP1 +BIOCARTA SKP2E2F PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SKP2E2F_PATHWAY.html RB1 +BIOCARTA SKP2E2F PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SKP2E2F_PATHWAY.html CDC34 +BIOCARTA SKP2E2F PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SKP2E2F_PATHWAY.html CCNA1 +BIOCARTA SKP2E2F PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SKP2E2F_PATHWAY.html CDK2 +BIOCARTA SKP2E2F PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SKP2E2F_PATHWAY.html CUL1 +BIOCARTA SKP2E2F PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SKP2E2F_PATHWAY.html TFDP1 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html PRKCA +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html CYCSP35 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html PRKCB +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html CDKN1A +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html PLCG1 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html GNAQ +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html SP1 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html SP3 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html PPP3CB +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html CALM3 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html PPP3CC +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html NFATC4 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html MARCKS +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html PPP3CA +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html NFATC2 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html NFATC3 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html CALM2 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html NFATC1 +BIOCARTA CALCINEURIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CALCINEURIN_PATHWAY.html CALM1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html HRAS +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html GRB2 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html STAT5A +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html STAT5B +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html ELK1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html SRF +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html STAT6 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html FOS +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html STAT4 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html CSNK2A1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html SOS1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html MAP3K1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html PIK3CA +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html SHC1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html EGF +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html PIK3R1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html RASA1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html PRKCA +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html EGFR +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html MAP2K1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html MAP2K4 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html RAF1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html STAT1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html STAT3 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html PRKCB +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html STAT2 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html PLCG1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html JUN +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html MAPK3 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html JAK1 +BIOCARTA EGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGF_PATHWAY.html MAPK8 +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html GPD2 +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html SDHA +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html SDHB +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html UQCRC1 +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html SLC25A4 +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html COX1 +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html SLC25A6 +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html SDHC +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html SDHD +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html CYCS +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html ATP5A1 +BIOCARTA ETC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETC_PATHWAY.html NDUFA1 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html SYNJ1 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html CYCSP35 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html AMPH +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html EPS15 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html NME2 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html PICALM +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html AP2A1 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html NME1 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html PPP3CB +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html CALM3 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html SYNJ2 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html PPP3CC +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html PPP3CA +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html BIN1 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html EPN1 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html CALM2 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html DNM1 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html AP2M1 +BIOCARTA NDKDYNAMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NDKDYNAMIN_PATHWAY.html CALM1 +BIOCARTA EPHA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPHA4_PATHWAY.html EPHA4 +BIOCARTA EPHA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPHA4_PATHWAY.html SELP +BIOCARTA EPHA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPHA4_PATHWAY.html LYN +BIOCARTA EPHA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPHA4_PATHWAY.html ACTA1 +BIOCARTA EPHA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPHA4_PATHWAY.html FYN +BIOCARTA EPHA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPHA4_PATHWAY.html ITGA1 +BIOCARTA EPHA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPHA4_PATHWAY.html L1CAM +BIOCARTA EPHA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPHA4_PATHWAY.html RAP1B +BIOCARTA EPHA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPHA4_PATHWAY.html ITGB1 +BIOCARTA EPHA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPHA4_PATHWAY.html EPHB1 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html PTPN6 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html HRAS +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html MAP2K1 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html GRB2 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html STAT5A +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html STAT5B +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html RAF1 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html ELK1 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html FOS +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html CSNK2A1 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html PLCG1 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html SOS1 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html JUN +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html MAPK3 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html EPOR +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html MAPK8 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html SHC1 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html JAK2 +BIOCARTA EPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPO_PATHWAY.html EPO +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html PIK3CG +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html TLN1 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html HRAS +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html ROCK1 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html MAP2K1 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html MYL2 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html DIAPH1 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html ITGA1 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html RAF1 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html ITGB1 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html PXN +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html SRC +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html MAPK1 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html PFN1 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html PTK2 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html ARHGAP5 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html FYN +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html GSN +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html MAPK3 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html RHOA +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html PIK3CA +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html SHC1 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html PIK3R1 +BIOCARTA ECM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ECM_PATHWAY.html MYLK +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html HRAS +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html GRB2 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html MKNK2 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html MKNK1 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html ELK1 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html ITGB1 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html SRC +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html IGF1R +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html SOS1 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html PPP2CA +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html SHC1 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html MYC +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html EGFR +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html MAP2K1 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html MAP2K2 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html PTPRR +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html RAF1 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html STAT3 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html RPS6KA5 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html MAPK1 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html GNGT1 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html RPS6KA1 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html GNB1 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html MAPK3 +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html PDGFRA +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html GNAS +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html NGFR +BIOCARTA ERK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK_PATHWAY.html NGF +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html CSF3 +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html CSF2 +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html IL3 +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html CCL3 +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html IL6 +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html FLT3 +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html IL9 +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html TGFB3 +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html IGF1 +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html KITLG +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html TGFB1 +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html IL11 +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html TGFB2 +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html IL1A +BIOCARTA ERYTH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERYTH_PATHWAY.html EPO +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html CDKN1A +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html HIF1A +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html RELA +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html GRIN1 +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html NFKBIA +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html EPOR +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html JAK2 +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html NFKB1 +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html ARNT +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html SOD2 +BIOCARTA EPONFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EPONFKB_PATHWAY.html EPO +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF6 +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF5 +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF2S3 +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EEF2 +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF4G1 +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF4G2 +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF3A +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF4G3 +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF4E +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF4A2 +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF2S1 +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF1AX +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF2S2 +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF4A1 +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EEF2K +BIOCARTA EIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF_PATHWAY.html EIF1 +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html F10 +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html F7 +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html PROC +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html FGG +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html FGA +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html F5 +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html FGB +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html F3 +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html F2 +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html TFPI +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html SERPINC1 +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html PROS1 +BIOCARTA EXTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EXTRINSIC_PATHWAY.html F2R +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html LMNB1 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html LMNB2 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html PRKDC +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html FASLG +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html DAXX +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html MAP3K7 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html CASP6 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html CASP3 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html PAK2 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html CASP7 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html MAP3K1 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html CASP8 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html PAK1 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html FAS +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html ARHGDIB +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html CFLAR +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html DFFA +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html DFFB +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html MAP2K4 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html LMNA +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html PTPN13 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html FADD +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html RB1 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html CASP10 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html JUN +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html RIPK2 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html MAPK8 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html FAF1 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html PARP1 +BIOCARTA FAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FAS_PATHWAY.html SPTAN1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html HRAS +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html GRB2 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html ELK1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html BTK +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html FOS +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html PAK2 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html SOS1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html MAP3K1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html PPP3CB +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html PIK3CA +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html PPP3CC +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html FCER1G +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html SHC1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html NFATC4 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html PPP3CA +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html NFATC2 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html NFATC3 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html MAP2K7 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html PIK3R1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html NFATC1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html SYK +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html PIK3CG +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html FCER1A +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html LYN +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html MAP2K1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html MAP2K4 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html RAF1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html CYCSP35 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html VAV1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html PRKCB +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html MAPK1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html PLA2G4A +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html PLCG1 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html JUN +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html MAPK3 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html CALM3 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html MAPK8 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html CALM2 +BIOCARTA FCER1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FCER1_PATHWAY.html CALM1 +BIOCARTA FEEDER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FEEDER_PATHWAY.html KHK +BIOCARTA FEEDER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FEEDER_PATHWAY.html TPI1 +BIOCARTA FEEDER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FEEDER_PATHWAY.html MPI +BIOCARTA FEEDER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FEEDER_PATHWAY.html PYGM +BIOCARTA FEEDER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FEEDER_PATHWAY.html PYGL +BIOCARTA FEEDER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FEEDER_PATHWAY.html PGM1 +BIOCARTA FEEDER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FEEDER_PATHWAY.html HK1 +BIOCARTA FEEDER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FEEDER_PATHWAY.html TREH +BIOCARTA FEEDER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FEEDER_PATHWAY.html LCT +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html PLAT +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html FGG +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html FGA +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html FGB +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html F13A1 +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html SERPINE1 +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html F2 +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html SERPINB2 +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html CPB2 +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html PLG +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html PLAU +BIOCARTA FIBRINOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FIBRINOLYSIS_PATHWAY.html F2R +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html GNA15 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html HRAS +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html FPR1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html NCF1C +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html NFKBIA +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html ELK1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html NFKB1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html MAP3K1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html RAC1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html PPP3CB +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html PPP3CC +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html NFATC4 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html PPP3CA +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html PAK1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html NFATC2 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html PLCB1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html NFATC3 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html MAP2K6 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html NFATC1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html CAMK1G +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html PIK3C2G +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html NCF2 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html MAP2K1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html MAP2K2 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html RELA +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html MAP2K3 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html RAF1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html CYCSP35 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html MAPK1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html GNGT1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html GNB1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html MAPK14 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html MAPK3 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html CAMK1 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html CALM3 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html CALM2 +BIOCARTA FMLP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FMLP_PATHWAY.html CALM1 +BIOCARTA FREE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FREE_PATHWAY.html GSS +BIOCARTA FREE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FREE_PATHWAY.html XDH +BIOCARTA FREE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FREE_PATHWAY.html GPX1 +BIOCARTA FREE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FREE_PATHWAY.html GSR +BIOCARTA FREE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FREE_PATHWAY.html TNF +BIOCARTA FREE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FREE_PATHWAY.html IL8 +BIOCARTA FREE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FREE_PATHWAY.html RELA +BIOCARTA FREE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FREE_PATHWAY.html NOX1 +BIOCARTA FREE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FREE_PATHWAY.html NFKB1 +BIOCARTA FREE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_FREE_PATHWAY.html SOD1 +BIOCARTA GABA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GABA_PATHWAY.html GABRA2 +BIOCARTA GABA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GABA_PATHWAY.html GPHN +BIOCARTA GABA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GABA_PATHWAY.html GABRA1 +BIOCARTA GABA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GABA_PATHWAY.html GABRA4 +BIOCARTA GABA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GABA_PATHWAY.html GABRA3 +BIOCARTA GABA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GABA_PATHWAY.html GABRA6 +BIOCARTA GABA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GABA_PATHWAY.html GABRA5 +BIOCARTA GABA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GABA_PATHWAY.html DNM1 +BIOCARTA GABA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GABA_PATHWAY.html GABARAP +BIOCARTA GABA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GABA_PATHWAY.html SRC +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html MAF +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html IL4 +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html IL5 +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html MAP2K3 +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html IL13 +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html JUNB +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html PRKACG +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html PRKAR2B +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html PRKAR2A +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html GATA3 +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html MAPK14 +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html PRKAR1B +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html PRKAR1A +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html PRKACB +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html NFATC2 +BIOCARTA GATA3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GATA3_PATHWAY.html NFATC1 +BIOCARTA GLYCOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLYCOLYSIS_PATHWAY.html GPI +BIOCARTA GLYCOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLYCOLYSIS_PATHWAY.html TPI1 +BIOCARTA GLYCOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLYCOLYSIS_PATHWAY.html PFKL +BIOCARTA GLYCOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLYCOLYSIS_PATHWAY.html ALDOB +BIOCARTA GLYCOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLYCOLYSIS_PATHWAY.html PKLR +BIOCARTA GLYCOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLYCOLYSIS_PATHWAY.html PGAM1 +BIOCARTA GLYCOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLYCOLYSIS_PATHWAY.html HK1 +BIOCARTA GLYCOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLYCOLYSIS_PATHWAY.html PGK1 +BIOCARTA GLYCOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLYCOLYSIS_PATHWAY.html GAPDH +BIOCARTA GLYCOLYSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLYCOLYSIS_PATHWAY.html ENO1 +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html PRF1 +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html HMGB2 +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html SET +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html GZMA +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html NME1 +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html DFFA +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html DFFB +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html CREBBP +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html ANP32A +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html GZMB +BIOCARTA SET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SET_PATHWAY.html APEX1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html HRAS +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html HNF1A +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html GRB2 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html STAT5A +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html STAT5B +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html SRF +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html SLC2A4 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html INS +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html SOS1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html PIK3CA +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html SHC1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html INSR +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html PIK3R1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html GHR +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html PRKCA +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html PIK3CG +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html PTPN6 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html MAP2K1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html SOCS1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html RAF1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html IRS1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html PRKCB +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html MAPK1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html GH1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html RPS6KA1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html PLCG1 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html MAPK3 +BIOCARTA GH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GH_PATHWAY.html JAK2 +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html ALAD +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html FECH +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html HMBS +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html UROS +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html HBA2 +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html HBA1 +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html GATA1 +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html ALAS1 +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html ALAS2 +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html CPOX +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html AHSP +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html UROD +BIOCARTA AHSP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AHSP_PATHWAY.html HBB +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html CD3G +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html CD3D +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html CCR5 +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html CD3E +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html CD247 +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html FASLG +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html CD4 +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html FAS +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html TRA@ +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html TRB@ +BIOCARTA TCAPOPTOSIS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCAPOPTOSIS_PATHWAY.html CD28 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html FASLG +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html NFKB1 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html DAXX +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html CRADD +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html ACTG1 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html CASP6 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html BAG4 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html MAP3K5 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html CASP3 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html CASP9 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html PAK2 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html GSN +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html CASP7 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html CASP8 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html FAS +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html MAP2K7 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html CASP2 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html CHUK +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html DFFA +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html DFFB +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html RELA +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html CYCS +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html FADD +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html RB1 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html PRKCD +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html PSEN1 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html CDK11A +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html RIPK1 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html PSEN2 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html MDM2 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html CDK11B +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html MAPK8 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html MAP3K14 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html BID +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html TRAF1 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html TRAF2 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html TNF +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html XIAP +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html LMNB1 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html LMNB2 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html PRKDC +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html NFKBIA +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html TNFRSF1A +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html PTK2 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html NUMA1 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html TNFRSF1B +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html MAP3K1 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html BCL2 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html RASA1 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html ARHGDIB +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html CFLAR +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html LMNA +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html BIRC3 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html BIRC2 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html TRADD +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html APAF1 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html PARP1 +BIOCARTA HIVNEF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIVNEF_PATHWAY.html SPTAN1 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html ACTA1 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html WASF1 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html ARPC4 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html ARPC5 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html ARPC1A +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html ACTR3 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html ACTR2 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html ARPC1B +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html CDC42 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html ARPC3 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html ARPC2 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html RAC1 +BIOCARTA SALMONELLA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SALMONELLA_PATHWAY.html WASL +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html ADCY1 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html HRAS +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html GNAI1 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html PAQR7 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html ARPC4 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html ARPC5 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html MYT1 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html SRC +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html PIN1 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html PAQR5 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html PGR +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html PRKACG +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html ACTR3 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html PRKAR2B +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html ACTR2 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html PRKAR2A +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html ARPC3 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html ARPC2 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html CAP1 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html PRKACB +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html CDK1 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html ACTA1 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html CDC25C +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html CCNB1 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html ARPC1A +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html MAPK1 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html ARPC1B +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html GNGT1 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html RPS6KA1 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html GNB1 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html PRKAR1B +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html MAPK3 +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html PRKAR1A +BIOCARTA MPR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MPR_PATHWAY.html GNAS +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html PIK3CG +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html MAP2K1 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html MAP2K2 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html MAP2K3 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html RELA +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html CREB1 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html NFKB1 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html RB1 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html AKT1 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html MAPK1 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html SP1 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html MAPK14 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html MAP3K1 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html MAPK3 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html PIK3CA +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html PIK3R1 +BIOCARTA HCMV PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HCMV_PATHWAY.html MAP2K6 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html CSNK1A1 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html TAF1 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html HSP90AA1 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html NFKBIB +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html TP53 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html FHL2 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html ABCB1 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html HSPA1A +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html ATM +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html HIC1 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html RPA1 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html AKT1 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html CDKN1A +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html EP300 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html HIF1A +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html CSNK1D +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html BAX +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html DNAJB1P1 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html MDM2 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html MAPK8 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html NQO1 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html IGFBP3 +BIOCARTA P53HYPOXIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53HYPOXIA_PATHWAY.html GADD45A +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html P4HB +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html LDHA +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html HSP90AA1 +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html COPS5 +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html VHL +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html CREB1 +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html EDN1 +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html ARNT +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html EP300 +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html HIF1A +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html JUN +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html VEGFA +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html NOS3 +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html ASPH +BIOCARTA HIF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HIF_PATHWAY.html EPO +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html PIK3CG +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html HRAS +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html MAP2K1 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html GRB2 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html RAF1 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html ELK1 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html IGF1 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html IRS1 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html SRF +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html PTPN11 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html FOS +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html IGF1R +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html CSNK2A1 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html SOS1 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html JUN +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html MAPK3 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html PIK3CA +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html MAPK8 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html SHC1 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html PIK3R1 +BIOCARTA IGF1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1_PATHWAY.html RASA1 +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html CSF3 +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html IL3 +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html IL6 +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html CD3G +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html IL8 +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html CD3D +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html CD8A +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html CD3E +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html CD247 +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html KITLG +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html TRA@ +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html TRB@ +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html IL17A +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html CD34 +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html CD58 +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html CD2 +BIOCARTA IL17 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL17_PATHWAY.html CD4 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html HRAS +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html IL2RB +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html IL2RA +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html MAP2K1 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html GRB2 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html STAT5A +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html STAT5B +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html RAF1 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html ELK1 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html FOS +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html CSNK2A1 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html SOS1 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html JUN +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html LCK +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html MAPK3 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html JAK1 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html MAPK8 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html SHC1 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html IL2RG +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html JAK3 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html IL2 +BIOCARTA IL2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2_PATHWAY.html SYK +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html PTPN6 +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html IL3 +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html HRAS +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html MAP2K1 +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html GRB2 +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html STAT5A +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html STAT5B +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html RAF1 +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html FOS +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html SOS1 +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html MAPK3 +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html CSF2RB +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html SHC1 +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html JAK2 +BIOCARTA IL3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL3_PATHWAY.html IL3RA +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html AKT1 +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html STAT6 +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html IL4 +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html GRB2 +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html IL4R +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html JAK1 +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html IL2RG +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html SHC1 +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html RPS6KB1 +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html JAK3 +BIOCARTA IL4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL4_PATHWAY.html IRS1 +BIOCARTA IL5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL5_PATHWAY.html IL4 +BIOCARTA IL5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL5_PATHWAY.html CCL11 +BIOCARTA IL5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL5_PATHWAY.html IL6 +BIOCARTA IL5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL5_PATHWAY.html IL5 +BIOCARTA IL5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL5_PATHWAY.html HLA-DRB1 +BIOCARTA IL5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL5_PATHWAY.html CCR3 +BIOCARTA IL5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL5_PATHWAY.html IL1B +BIOCARTA IL5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL5_PATHWAY.html CD4 +BIOCARTA IL5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL5_PATHWAY.html IL5RA +BIOCARTA IL5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL5_PATHWAY.html HLA-DRA +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html IL6 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html HRAS +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html CEBPB +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html MAP2K1 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html GRB2 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html IL6ST +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html RAF1 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html ELK1 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html IL6R +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html SRF +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html STAT3 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html PTPN11 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html TYK2 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html FOS +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html CSNK2A1 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html SOS1 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html JUN +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html MAPK3 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html JAK1 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html JAK2 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html SHC1 +BIOCARTA IL6 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL6_PATHWAY.html JAK3 +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html IL6 +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html TNF +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html STAT5A +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html STAT5B +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html STAT1 +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html IL10 +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html STAT3 +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html STAT2 +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html BLVRA +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html STAT6 +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html STAT4 +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html IL10RB +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html IL10RA +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html HMOX1 +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html BLVRB +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html JAK1 +BIOCARTA IL10 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL10_PATHWAY.html IL1A +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html IL18R1 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html CD3G +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html CD3D +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html CD3E +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html IL18 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html CD247 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html CXCR3 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html TRA@ +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html TRB@ +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html IL12RB2 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html TYK2 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html STAT4 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html IL12RB1 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html CCR5 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html JUN +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html MAPK14 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html IFNG +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html IL12A +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html JAK2 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html MAPK8 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html IL12B +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html ETV5 +BIOCARTA IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL12_PATHWAY.html MAP2K6 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html E2F1 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html HRAS +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html NMI +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html GRB2 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html STAT5A +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html STAT5B +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html FASLG +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html RPS6KB1 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html BCL2L1 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html AKT1 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html FOS +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html SOS1 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html BCL2 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html PIK3CA +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html IL2RG +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html SHC1 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html FAS +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html MYC +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html PIK3R1 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html SYK +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html PIK3CG +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html CFLAR +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html PTPN6 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html IL2RB +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html IKZF3 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html IL2RA +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html SOCS3 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html SOCS1 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html CBL +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html RAF1 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html BAD +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html IRS1 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html MAPK1 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html CRKL +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html PPIA +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html MAPK3 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html JAK1 +BIOCARTA IL2RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL2RB_PATHWAY.html JAK3 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html IL22RA1 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html SOCS3 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html STAT5A +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html STAT5B +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html STAT1 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html IL22 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html STAT3 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html STAT2 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html STAT6 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html TYK2 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html STAT4 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html IL10RA +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html JAK1 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html JAK2 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html JAK3 +BIOCARTA IL22BP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL22BP_PATHWAY.html IL22RA2 +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html PIK3CG +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html NMI +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html IL7 +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html STAT5A +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html CREBBP +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html STAT5B +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html IL7R +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html EP300 +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html FYN +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html PTK2B +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html BCL2 +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html LCK +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html JAK1 +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html PIK3CA +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html IL2RG +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html JAK3 +BIOCARTA IL7 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL7_PATHWAY.html PIK3R1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html TOLLIP +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html GNAI1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html TIRAP +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html GJA1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html NFKB1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html TLR4 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html CTNNB1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html AKT1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html WNT1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html PDPK1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html MYD88 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html PPP2CA +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html PIK3CA +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html LBP +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html PIK3R1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html APC +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html AXIN1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html IRAK1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html LY96 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html RELA +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html FZD1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html LEF1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html DVL1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html CCND1 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html GSK3B +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html EIF2AK2 +BIOCARTA GSK3 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GSK3_PATHWAY.html CD14 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html BID +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html TRAF2 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html XIAP +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html TNFRSF25 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html NFKBIA +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html NFKB1 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html TNFSF12 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html CASP6 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html CASP3 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html CASP9 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html CASP7 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html BCL2 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html CASP8 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html CHUK +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html CFLAR +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html DFFA +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html DFFB +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html RELA +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html CYCS +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html LMNA +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html GAS2 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html FADD +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html BIRC3 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html BIRC2 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html TRADD +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html TNFRSF10A +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html CASP10 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html TNFSF10 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html TNFRSF10B +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html RIPK1 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html APAF1 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html MAP3K14 +BIOCARTA DEATH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DEATH_PATHWAY.html SPTAN1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html E2F1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html HRAS +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html NFKBIA +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html NFKB1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html AKT1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html CCNE1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html RAC1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html RHOA +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html PIK3CA +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html PAK1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html CHUK +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html PIK3R1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html TFDP1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html RELA +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html RAF1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html CDK6 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html RB1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html CDK4 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html CDK2 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html MAPK1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html CCND1 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html CDKN1A +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html CDKN1B +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html IKBKG +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html MAPK3 +BIOCARTA RACCYCD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RACCYCD_PATHWAY.html IKBKB +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html PIK3CG +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html HRAS +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html BCR +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html MAP2K1 +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html GRB2 +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html STAT5A +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html STAT5B +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html MAP2K4 +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html RAF1 +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html BAD +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html STAT1 +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html AKT1 +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html FOS +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html CRKL +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html SOS1 +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html JUN +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html MAP3K1 +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html MAPK3 +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html PIK3CA +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html MAPK8 +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html JAK2 +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html MYC +BIOCARTA GLEEVEC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GLEEVEC_PATHWAY.html PIK3R1 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html PIK3CG +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html HRAS +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html MAP2K1 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html GRB2 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html RAF1 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html ELK1 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html IRS1 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html SRF +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html PTPN11 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html FOS +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html CSNK2A1 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html SLC2A4 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html INS +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html SOS1 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html JUN +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html MAPK3 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html PIK3CA +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html MAPK8 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html SHC1 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html INSR +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html PIK3R1 +BIOCARTA INSULIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INSULIN_PATHWAY.html RASA1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html TLN1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html CAV1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html HRAS +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html GRB2 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html PPP1R12B +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html BCAR1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html ITGB1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html PXN +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html SRC +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html VCL +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html PTK2 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html SOS1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html RHOA +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html SHC1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html ZYX +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html CSK +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html RAPGEF1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html CAPNS2 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html BCR +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html CAPNS1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html ACTA1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html ROCK1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html MAP2K1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html MAP2K2 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html ITGA1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html RAF1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html ACTN1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html ACTN2 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html ACTN3 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html CAPN1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html MAPK1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html CRKL +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html TNS1 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html FYN +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html JUN +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html MAPK3 +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html RAP1A +BIOCARTA INTEGRIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTEGRIN_PATHWAY.html MAPK8 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html F11 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html COL4A4 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html KNG1 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html F12 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html COL4A3 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html COL4A2 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html F10 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html COL4A1 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html F8 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html F9 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html SERPING1 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html COL4A6 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html COL4A5 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html PROC +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html FGG +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html F5 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html FGA +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html FGB +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html KLKB1 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html F2 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html SERPINC1 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html PROS1 +BIOCARTA INTRINSIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_INTRINSIC_PATHWAY.html F2R +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html TRAF2 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html HRAS +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html TNF +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html NFKBIA +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html FASLG +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html NFKB1 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html DAXX +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html FOS +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html TNFRSF1A +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html TNFRSF1B +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAP3K5 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAP3K1 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html PPP2CA +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html BCL2 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html HOXA7 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html FAS +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html EGF +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAP2K7 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAP2K6 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html CHUK +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html CEBPA +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html EGFR +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html PRKCA +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAP2K1 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAP2K3 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html RELA +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAP2K4 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html RAF1 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html PRKCH +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html PRKCG +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html PRKCE +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html PRKCD +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html PRKCB +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAPK1 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html PRKCQ +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html SP1 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html ETS1 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAPK13 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html ETS2 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAPK14 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html JUN +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html RIPK1 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAPK3 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAPK8 +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html IKBKB +BIOCARTA KERATINOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KERATINOCYTE_PATHWAY.html MAP3K14 +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html PTPRC +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html CD3G +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html CD3D +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html HLA-DRB1 +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html CD3E +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html CD247 +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html TRA@ +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html TRB@ +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html FYN +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html LCK +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html ZAP70 +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html CD4 +BIOCARTA TCRA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCRA_PATHWAY.html HLA-DRA +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html C8A +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html C7 +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html MBL2 +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html C9 +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html MASP1 +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html C4A +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html MASP2 +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html C4B +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html C3 +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html C6 +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html C5 +BIOCARTA LECTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LECTIN_PATHWAY.html C2 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html HRAS +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html GRB2 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html BCAR1 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html SRC +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html PTK2B +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html SOS1 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html MAP3K1 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html RAC1 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html SHC1 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html PAK1 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html PRKCA +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html MAP2K1 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html MAP2K2 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html MAP2K3 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html MAP2K4 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html RAF1 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html CYCSP35 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html PRKCB +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html MAPK1 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html CRKL +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html GNAQ +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html PLCG1 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html MAPK14 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html JUN +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html MAPK3 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html CALM3 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html MAPK8 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html CALM2 +BIOCARTA PYK2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PYK2_PATHWAY.html CALM1 +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html EGFR +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html THRA +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html THRB +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html MAP2K1 +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html RXRA +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html MAPK14 +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html MAP3K1 +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html RARA +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html ZBTB16 +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html EGF +BIOCARTA EGFR SMRTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EGFR_SMRTE_PATHWAY.html NCOR2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MEF2C +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html HRAS +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MEF2A +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html TGFB3 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html RPS6KB2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html NFKB1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html RPS6KB1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html DAXX +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html TGFB1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html TGFB2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K7 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html FOS +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAX +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K6 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K5 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K4 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html PAK2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K9 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K8 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html SHC1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html PAK1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html RAPGEF2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MYC +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP2K7 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html CHUK +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP2K6 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP2K5 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html BRAF +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html RELA +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP4K3 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPK1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP4K4 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP4K5 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPK6 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPK4 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html RIPK1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html JUN +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPK3 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K10 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPK9 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPK8 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPK7 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K14 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K13 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K12 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K11 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html TRAF2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html GRB2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPKAPK5 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MKNK2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP4K2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPKAPK3 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html NFKBIA +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MKNK1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html ELK1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP4K1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPKAPK2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html ATF2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K3 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP3K1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html RAC1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html CEBPA +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP2K1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP2K2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html TGFBR1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP2K3 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html CREB1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAP2K4 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html RAF1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPK11 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPK10 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html STAT1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html TRADD +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html RPS6KA5 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MEF2D +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html RPS6KA3 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html RPS6KA4 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html LOC729991-MEF2B +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html SP1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPK12 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html RPS6KA1 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPK13 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html RPS6KA2 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html MAPK14 +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html ARAF +BIOCARTA MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAPK_PATHWAY.html IKBKB +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html HRAS +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html TLN1 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html MYL2 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html CXCR3 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html ITGB1 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html PXN +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html PRKACG +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html PRKAR2B +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html PTK2 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html PRKAR2A +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html EZR +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html PRKACB +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html EGF +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html EGFR +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html CAPNS2 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html CAPNS1 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html ACTA1 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html ITGA1 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html CAPN2 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html CAPN1 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html MAPK1 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html PRKAR1B +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html PRKAR1A +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html MAPK3 +BIOCARTA MCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MCALPAIN_PATHWAY.html MYLK +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html ACOX1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PPARA +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PTGS2 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PDGFA +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html STAT5A +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html EHHADH +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html STAT5B +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html CITED2 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PRKACG +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PRKAR2B +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PRKAR2A +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html APOA2 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html APOA1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PIK3CA +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html NOS2 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PRKACB +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html MYC +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html NR2F1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PIK3CG +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PRKCA +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html HSP90AA1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html RXRA +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html RELA +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html NR0B2 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html RB1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PPARGC1A +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PRKCB +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html NRIP1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html MAPK1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html NCOA1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html CD36 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html EP300 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html JUN +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html MAPK3 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html MED1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html ME1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html TNF +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html FRA8B +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html NFKBIA +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html HSPA1A +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html MRPL11 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html INS +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html FAT1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html HSD17B4 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PIK3R1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html NR1H3 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html CPT1B +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html LPL +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html CREBBP +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html SRA1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html DUSP1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html SP1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PRKAR1B +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html PRKAR1A +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html FABP1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html NCOR1 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html NCOR2 +BIOCARTA PPARA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PPARA_PATHWAY.html DUT +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html E2F1 +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html HRAS +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html E2F4 +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html RBL2 +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html CSF1 +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html RBL1 +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html HDAC5 +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html FOS +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html SIN3B +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html HDAC2 +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html SIN3A +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html ETS1 +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html ETS2 +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html JUN +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html DDX20 +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html NCOR2 +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html ETV3 +BIOCARTA ETS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ETS_PATHWAY.html CSF1R +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html ICAM1 +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html ITGAL +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html SELP +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html CD44 +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html SELL +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html PECAM1 +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html ITGB2 +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html ITGA4 +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html SELE +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html ITGB1 +BIOCARTA MONOCYTE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MONOCYTE_PATHWAY.html ITGAM +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html PDK2 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html MKNK1 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html RPS6KB1 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html FKBP1A +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html RPS6 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html PTEN +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html EIF4B +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html EIF4G1 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html AKT1 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html EIF4G2 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html EIF4EBP1 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html PDPK1 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html EIF3A +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html EIF4G3 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html EIF4E +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html TSC1 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html EIF4A2 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html PPP2CA +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html EIF4A1 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html TSC2 +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html PIK3CA +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html MTOR +BIOCARTA MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MTOR_PATHWAY.html PIK3R1 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html ADCY1 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html HRAS +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html MAP2K1 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html GRB2 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html RAF1 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html BAD +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html IRS1 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html PRKACG +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html AKT1 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html MAPK1 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html PRKAR2B +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html IGF1R +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html PRKAR2A +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html YWHAH +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html RPS6KA1 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html SOS1 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html PRKAR1B +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html MAPK3 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html PRKAR1A +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html PIK3CA +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html SHC1 +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html PRKACB +BIOCARTA IGF1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1R_PATHWAY.html PIK3R1 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html LDB1 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html CREBBP +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html FZD1 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html LEF1 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html TRRAP +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html DVL1 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html CTNNB1 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html WNT1 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html EP300 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html HDAC1 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html GSK3B +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html PITX2 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html APC +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html MED1 +BIOCARTA PITX2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PITX2_PATHWAY.html AXIN1 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html PIK3CG +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html HRAS +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html MAP2K1 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html GRB2 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html RAF1 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html ELK1 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html FOS +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html CSNK2A1 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html PLCG1 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html SOS1 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html JUN +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html MAPK3 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html PIK3CA +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html MAPK8 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html SHC1 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html NGFR +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html PIK3R1 +BIOCARTA NGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NGF_PATHWAY.html NGF +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html VIP +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html NFKBIA +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html NFKB1 +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html VIPR2 +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html PRKACG +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html PRKAR2B +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html PRKAR2A +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html MAP3K1 +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html PPP3CB +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html PPP3CC +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html PRKACB +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html PPP3CA +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html NFATC2 +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html MYC +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html CHUK +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html NFATC1 +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html EGR3 +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html EGR2 +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html RELA +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html CYCSP35 +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html GNAQ +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html PLCG1 +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html PRKAR1B +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html PRKAR1A +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html CALM3 +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html CALM2 +BIOCARTA VIP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VIP_PATHWAY.html CALM1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html MEF2C +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html HRAS +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html EDN1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html RPS6KB1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html AKT1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html PRKACG +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html PRKAR2B +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html PRKAR2A +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html GATA4 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html PIK3CA +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html PRKACB +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html FGF2 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html PIK3CG +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html CAMK1G +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html ACTA1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html MYH2 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html CYCSP35 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html MAPK1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html CAMK4 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html MAPK3 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html F2 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html CAMK1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html MAPK8 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html NPPA +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html CTF1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html FKBP1A +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html CALR +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html LIF +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html HAND1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html HAND2 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html AGT +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html PPP3CB +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html PPP3CC +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html NFATC4 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html PPP3CA +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html NFATC2 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html NKX2-5 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html NFATC3 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html PIK3R1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html NFATC1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html CSNK1A1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html MAP2K1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html CREBBP +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html RAF1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html IGF1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html ELSPBP1 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html MAPK14 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html GSK3B +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html PRKAR1B +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html PRKAR1A +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html HBEGF +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html CALM3 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html CALM2 +BIOCARTA NFAT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFAT_PATHWAY.html CALM1 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html TNF +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html IL8 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html TGFBR1 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html MAP2K3 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html RELA +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html TGFBR2 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html CREBBP +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html TLR2 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html SMAD4 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html NFKBIA +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html SMAD3 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html NFKB1 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html MAPK11 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html NR3C1 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html MAP3K7 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html EP300 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html MYD88 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html DUSP1 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html MAPK14 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html IL1B +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html MAP3K14 +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html IKBKB +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html CHUK +BIOCARTA NTHI PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NTHI_PATHWAY.html MAP2K6 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html IRAK1 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html IL1R1 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html TNF +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html RELA +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html NFKBIA +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html NFKB1 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html TLR4 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html FADD +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html TAB1 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html TRADD +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html MAP3K7 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html TNFRSF1A +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html TNFRSF1B +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html MYD88 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html RIPK1 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html MAP3K1 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html IKBKG +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html MAP3K14 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html TNFAIP3 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html IKBKB +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html TRAF6 +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html CHUK +BIOCARTA NFKB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NFKB_PATHWAY.html IL1A +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PRKCA +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html NOS1 +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html GRIN1 +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html GRIN2A +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html CYCSP35 +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PRKCB +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PRKACG +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PRKAR2B +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PRKAR2A +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html GRIN2B +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html GRIN2C +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PRKAR1B +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html GRIN2D +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PRKAR1A +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PPP3CB +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html DLG4 +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html CALM3 +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PPP3CC +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PPP3CA +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html PRKACB +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html CALM2 +BIOCARTA NOS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NOS1_PATHWAY.html CALM1 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html CD3G +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html CD3D +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html CD3E +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html CD247 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html CXCR3 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html IL12RB2 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html TYK2 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html STAT4 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html IL12RB1 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html CCR5 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html IFNG +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html IL12A +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html CD2 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html CD4 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html JAK2 +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html IL12B +BIOCARTA NO2IL12 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NO2IL12_PATHWAY.html NOS2 +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html KAT2B +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html RXRA +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html TBP +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html GTF2B +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html POLR2A +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html GTF2E1 +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html HDAC3 +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html NCOA1 +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html NCOA2 +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html NCOA3 +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html GTF2A1 +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html GTF2F1 +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html RARA +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html ERCC3 +BIOCARTA RARRXR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RARRXR_PATHWAY.html NCOR2 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html PPARA +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html PPARD +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html IDDM11 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html ABCB11 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html PPARG +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html ABCB1 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html CYP2E1 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html NR0B2 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html CYP1A2 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html ABCB4 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html NR1I3 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html ABCC3 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html RARA +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html NR1H4 +BIOCARTA NUCLEARRS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NUCLEARRS_PATHWAY.html NR1H3 +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html PRKCA +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html MAFG +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html FXYD2 +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html MAFF +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html CREB1 +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html KEAP1 +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html MAFK +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html PRKCB +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html FOS +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html MAPK1 +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html JUN +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html MAPK14 +BIOCARTA ARENRF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARENRF2_PATHWAY.html MAPK8 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html HMGN1 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MEF2C +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html TRAF2 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MEF2A +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html HRAS +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html GRB2 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MAPKAPK5 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html TGFB3 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html ELK1 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MKNK1 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MAPKAPK2 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html DAXX +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html TGFB1 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html TGFB2 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html ATF2 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MAP3K7 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html CDC42 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MAX +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MAP3K5 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MAP3K9 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MAP3K1 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html RAC1 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html SHC1 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html RAPGEF2 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MYC +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MAP2K6 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html CREB1 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html TGFBR1 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MAP2K4 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html STAT1 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html DDIT3 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html TRADD +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html RPS6KA5 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MEF2D +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html PLA2G4A +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html LOC729991-MEF2B +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html MAPK14 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html RIPK1 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html HSPB2 +BIOCARTA P38MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P38MAPK_PATHWAY.html HSPB1 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html E2F1 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html TP53 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html RB1 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html CDK4 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html TIMP3 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html CDK2 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html ATM +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html CCNE1 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html CCND1 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html CDKN1A +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html BCL2 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html BAX +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html PCNA +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html MDM2 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html APAF1 +BIOCARTA P53 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P53_PATHWAY.html GADD45A +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html HRAS +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html PDGFA +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html GRB2 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html STAT5A +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html STAT5B +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html ELK1 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html SRF +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html STAT6 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html FOS +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html STAT4 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html CSNK2A1 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html SOS1 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html MAP3K1 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html PIK3CA +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html SHC1 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html PIK3R1 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html RASA1 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html PIK3CG +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html PRKCA +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html MAP2K1 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html MAP2K4 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html RAF1 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html STAT1 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html STAT3 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html PRKCB +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html STAT2 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html PLCG1 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html JUN +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html MAPK3 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html PDGFRA +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html JAK1 +BIOCARTA PDGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PDGF_PATHWAY.html MAPK8 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html PRKCA +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html CCL2 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html CYCSP35 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html CXCL12 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html CCL4 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html PRKCB +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html FOS +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html GNAQ +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html CCR5 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html PLCG1 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html PTK2B +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html CXCR4 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html JUN +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html MAPK14 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html CALM3 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html MAPK8 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html CALM2 +BIOCARTA CCR5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CCR5_PATHWAY.html CALM1 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html PRKCZ +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html ARHGEF2 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html LYN +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html PFKL +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html PFKP +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html EEA1 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html RPS6KB1 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html BAD +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html PFKM +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html JAG1 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html PRKCE +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html VAV2 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html BTK +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html AKT1 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html PDPK1 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html ARF1 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html PLCG1 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html AP2A1 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html GSK3A +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html GSK3B +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html RAC1 +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html RAB5A +BIOCARTA PTDINS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTDINS_PATHWAY.html AP2M1 +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html RAP2B +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html PRKACG +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html PRKAR2B +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html PTGER1 +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html ADRB2 +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html ADCY1 +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html PRKAR2A +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html PLCE1 +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html PRKAR1B +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html PRKAR1A +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html GNAS +BIOCARTA PLCE PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLCE_PATHWAY.html PRKACB +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html ADCY1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html PDGFA +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html GNAI1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html ITGB3 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html SRC +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html ASAH1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html SPHKAP +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html AKT1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html PTK2 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html S1PR1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html ITGAV +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html RAC1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html RHOA +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html PIK3CA +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html PLCB1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html PIK3R1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html PRKCA +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html PIK3CG +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html SPHK1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html PRKCB +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html MAPK1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html GNGT1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html GNB1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html MAPK3 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html PDGFRA +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html SMPD1 +BIOCARTA EDG1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EDG1_PATHWAY.html SMPD2 +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html EGR1 +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html MAPK1 +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html CDK5R1 +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html HRAS +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html MAP2K1 +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html MAP2K2 +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html MAPK3 +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html RAF1 +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html NGFR +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html CDK5 +BIOCARTA CDK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDK5_PATHWAY.html NGF +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html GNA13 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html MYL7 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html MYL2 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html PPP1R12B +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html GNA12 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGAP5 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html PLCB1 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF4 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html PRKCA +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF3 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF2 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF1 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ROCK1 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF7 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF18 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF6 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF19 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF5 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF16 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF17 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html PKN1 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF9 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF15 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF12 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF10 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html ARHGEF11 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html PRKCB +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html GNGT1 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html GNAQ +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html GNB1 +BIOCARTA MYOSIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MYOSIN_PATHWAY.html MYLK +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html COL4A4 +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html PLAT +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html F11 +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html COL4A3 +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html COL4A2 +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html COL4A1 +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html F9 +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html PLG +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html COL4A6 +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html COL4A5 +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html APP +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html F2 +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html SERPINE1 +BIOCARTA PLATELETAPP PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PLATELETAPP_PATHWAY.html PLAU +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html HNF1A +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html BTRC +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html FZD1 +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html DLL1 +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html DVL1 +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html CTNNB1 +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html WNT1 +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html NOTCH1 +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html PSEN1 +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html GSK3B +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html ADAM17 +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html RBPJ +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html AXIN1 +BIOCARTA PS1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PS1_PATHWAY.html APC +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html UBE2A +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html UBE3A +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMA7 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMA2 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMB5 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMA1 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMB4 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMB7 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMB6 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMB1 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMA6 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMA5 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html UBA1 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMA4 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMB3 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMA3 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html PSMB2 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html RPN1 +BIOCARTA PROTEASOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PROTEASOME_PATHWAY.html RPN2 +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html CDK1 +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html PCNT +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html PRKAG1 +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html PKN1 +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html AKAP9 +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html NUP85 +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html PRKCE +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html PRKACG +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html PRKAR2B +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html PRKAR2A +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html PPP1CA +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html PPP2CA +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html MAP2 +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html RHOA +BIOCARTA AKAPCENTROSOME PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAPCENTROSOME_PATHWAY.html PRKACB +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html PDK2 +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html GRB2 +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html BCAR1 +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html FASLG +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html FOXO3 +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html PTEN +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html ITGB1 +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html AKT1 +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html MAPK1 +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html PTK2 +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html PDPK1 +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html CDKN1B +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html SOS1 +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html MAPK3 +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html ILK +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html PIK3CA +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html SHC1 +BIOCARTA PTEN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTEN_PATHWAY.html PIK3R1 +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB2A +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB3A +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB7A +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB8A +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB9A +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html ACTA1 +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB4A +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB5A +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB11A +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB6A +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB1A +BIOCARTA RAB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAB_PATHWAY.html RAB27A +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html PIK3CG +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html PLD1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html CDK5R1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html MYL2 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html NCF2 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html LIMK1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html RALBP1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html PPP1R12B +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html WASF1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html ARFIP2 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html TRIO +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html RPS6KB1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html CDK5 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html VAV1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html MAP3K1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html RAC1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html CFL1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html PDGFRA +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html CHN1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html PIK3CA +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html PAK1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html PIK3R1 +BIOCARTA RAC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAC1_PATHWAY.html MYLK +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html PIK3CG +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html PLD1 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html HRAS +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html MAP2K1 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html RALBP1 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html RELA +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html RAF1 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html ELK1 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html NFKB1 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html BAD +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html BCL2L1 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html FOXO4 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html RALGDS +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html AKT1 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html CDC42 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html CASP9 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html RAC1 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html MAPK3 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html RHOA +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html PIK3CA +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html RALA +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html PIK3R1 +BIOCARTA RAS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RAS_PATHWAY.html CHUK +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html KLRC4 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html PTPN6 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html KLRC2 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html KLRC3 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html MAP2K1 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html IL18 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html HLA-A +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html VAV1 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html ITGB1 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html B2M +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html LAT +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html PTK2B +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html RAC1 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html MAPK3 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html PIK3CA +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html PAK1 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html KLRD1 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html PIK3R1 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html KLRC1 +BIOCARTA NKCELLS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKCELLS_PATHWAY.html SYK +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html CDK1 +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html TP53 +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html CHEK1 +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html RB1 +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html MYT1 +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html CDK4 +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html CDC25C +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html CDK2 +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html WEE1 +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html ATM +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html CDC25B +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html YWHAH +BIOCARTA RB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RB_PATHWAY.html MAPK14 +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAG3 +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html YWHAZ +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R3B +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R3A +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R5B +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R5A +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R5D +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAG1 +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R5C +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAG2 +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKACG +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAR2B +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAR2A +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2CA +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2CB +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html FASN +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAA1 +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKACA +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAA2 +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKACB +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R2B +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R2C +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R2D +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R1B +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R1A +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAB2 +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html ACACA +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAB1 +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html MLXIPL +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html YWHAB +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html YWHAA +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html YWHAE +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html YWHAD +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html YWHAG +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html YWHAH +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html GCK +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAR1B +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html MLX +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PKLR +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PRKAR1A +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html YWHAQ +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R5E +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R4 +BIOCARTA CHREBP2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CHREBP2_PATHWAY.html PPP2R2A +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html ADCY1 +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html KITLG +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html KIT +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html BCL2L1 +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html PRKACG +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html AKT1 +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html IGF1R +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html PRKAR2B +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html PRKAR2A +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html BCL2 +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html CSF2RB +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html PIK3CA +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html PRKACB +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html PIK3R1 +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html PIK3CG +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html IL3 +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html IGF1 +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html BAD +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html MAPK1 +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html YWHAH +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html RPS6KA1 +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html BAX +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html PRKAR1B +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html PRKAR1A +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html MAPK3 +BIOCARTA BAD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BAD_PATHWAY.html IL3RA +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html DRD1 +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html CDK5R1 +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html DRD2 +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html GRM1 +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html CDK5 +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html PRKACG +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html PRKAR2B +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html PRKAR2A +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html PPP1CA +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html CSNK1D +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html PPP1R1B +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html PRKAR1B +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html PPP2CA +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html PRKAR1A +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html PRKACB +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html PPP3CA +BIOCARTA CK1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CK1_PATHWAY.html PLCB1 +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html PPP1CA +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html EIF2AK1 +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html EIF2S1 +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html GSK3B +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html EIF2S2 +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html EIF5 +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html EIF2S3 +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html EIF2AK2 +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html EIF2AK3 +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html EIF2AK4 +BIOCARTA EIF2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF2_PATHWAY.html EIF2B5 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html PRKCA +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html PDK2 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html MKNK1 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html RPS6KB1 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html IRS1 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html PTEN +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html PRKCB +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html EIF4G1 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html AKT1 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html MAPK1 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html EIF4G2 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html EIF4EBP1 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html PDPK1 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html EIF4G3 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html EIF4E +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html EIF4A2 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html MAPK14 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html MAPK3 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html EIF4A1 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html PIK3CA +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html PABPC1 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html MTOR +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html PIK3R1 +BIOCARTA EIF4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_EIF4_PATHWAY.html GHR +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html CSF3 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html IL4 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html CSF2 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html IL3 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html IL6 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html IL5 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html CD8A +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html IL8 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html IL7 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html CSF1 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html IL9 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html IL11 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html CD4 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html IL2 +BIOCARTA STEM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STEM_PATHWAY.html EPO +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html E2F1 +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html CKS1B +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html SKP2 +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html NEDD8 +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html RB1 +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html SKP1 +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html CDK2 +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html RBX1 +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html CCNE1 +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html CDKN1B +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html UBE2M +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html CUL1 +BIOCARTA P27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_P27_PATHWAY.html TFDP1 +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html MEF2C +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html PPARA +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html MEF2A +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html ESRRA +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html CAMK1G +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html CAMK2G +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html CYCSP35 +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html PPARGC1A +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html HDAC5 +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html MEF2D +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html YWHAH +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html LOC729991-MEF2B +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html CAMK4 +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html SLC2A4 +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html PPP3CB +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html CAMK2D +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html CAMK1 +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html CALM3 +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html PPP3CC +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html CAMK2B +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html PPP3CA +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html CAMK2A +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html CALM2 +BIOCARTA PGC1A PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PGC1A_PATHWAY.html CALM1 +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html HRAS +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html SP100 +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html TNF +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html CREBBP +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html PML +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html TP53 +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html FASLG +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html PAX3 +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html RB1 +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html SIRT1 +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html DAXX +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html TNFRSF1A +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html SUMO1 +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html TNFRSF1B +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html PRAM1 +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html RARA +BIOCARTA PML PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PML_PATHWAY.html FAS +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html CREB1 +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html CREM +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html OPRK1 +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html KCNIP3 +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html POLR2A +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html PRKACG +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html PRKAR2B +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html FOS +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html PRKAR2A +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html JUN +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html PRKAR1B +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html PRKAR1A +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html MAPK3 +BIOCARTA DREAM PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_DREAM_PATHWAY.html PRKACB +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html PRKAG3 +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html LEP +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html PRKAG1 +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html LEPR +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html PRKAG2 +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html PRKAB2 +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html ACACA +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html PRKAB1 +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html PRKAA1 +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html PRKAA2 +BIOCARTA LEPTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LEPTIN_PATHWAY.html CPT1A +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html TLN1 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html MYL2 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html DIAPH1 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html PPP1R12B +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html PIP5K1B +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARPC4 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html PIP5K1A +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARPC5 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html SRC +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html VCL +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARHGAP4 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ACTR3 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html PFN1 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ACTR2 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARHGAP6 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARHGAP5 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARPC3 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARPC2 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html GSN +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARHGAP1 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html RHOA +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARHGEF1 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ROCK1 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html LIMK1 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html BAIAP2 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARHGEF5 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARHGEF11 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARPC1A +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html ARPC1B +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html CFL1 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html OPHN1 +BIOCARTA RHO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RHO_PATHWAY.html MYLK +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html PRKACG +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html GNA13 +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html PRKAR2B +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html PRKAR2A +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html PRKAG1 +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html GNA12 +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html RHOA +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html LPAR3 +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html AKAP13 +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html LPAR2 +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html LPAR1 +BIOCARTA AKAP13 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_AKAP13_PATHWAY.html PRKACB +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html NBN +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html MRE11A +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html HUS1 +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html TP53 +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html TREX1 +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html BRCA2 +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html RAD9A +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html CHEK1 +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html ATR +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html CHEK2 +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html RAD50 +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html ATM +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html BRCA1 +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html RAD51 +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html RAD1 +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html FANCD2 +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html FANCE +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html FANCF +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html FANCG +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html RAD17 +BIOCARTA ATRBRCA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ATRBRCA_PATHWAY.html FANCC +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html EGFR +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html PRKCA +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html HRAS +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html RELA +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html EDN1 +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html NFKB1 +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html PRKCB +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html EDNRA +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html FOS +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html AGTR1 +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html EDNRB +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html PLCG1 +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html JUN +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html AGT +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html RHOA +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html ADAM12 +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html EGF +BIOCARTA CARDIACEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARDIACEGF_PATHWAY.html MYC +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html PIK3CG +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html EGFR +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html IL6 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html HRAS +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html ERBB4 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html MAP2K1 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html GRB2 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html GRIP1 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html ERBB3 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html IL6ST +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html ESR1 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html RAF1 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html IL6R +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html STAT3 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html MAPK1 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html EP300 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html SOS1 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html MAPK3 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html PIK3CA +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html SHC1 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html CARM1 +BIOCARTA HER2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HER2_PATHWAY.html PIK3R1 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html PIK3CG +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html MEF2C +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html HRAS +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html MEF2A +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html GRB2 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html CREB1 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html AKT1 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html MAPK1 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html MEF2D +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html LOC729991-MEF2B +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html RPS6KA1 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html PLCG1 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html NTRK1 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html MAPK3 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html PIK3CA +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html SHC1 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html MAPK7 +BIOCARTA ERK5 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ERK5_PATHWAY.html PIK3R1 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html HRAS +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html HNF1A +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html ROCK1 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html ACTA1 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html MAP2K1 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html DIAPH1 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html MAP2K2 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html LIMK1 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html MAP4K2 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html RAF1 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html MAL +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html SRF +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html MAPK1 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html CDC42 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html MAP3K1 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html RAC1 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html MAPK3 +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html RHOA +BIOCARTA MAL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MAL_PATHWAY.html MAPK8 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html PRKCA +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html CAPNS2 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html CAPNS1 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html CYCSP35 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html CAPN2 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html TRA@ +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html TRB@ +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html PRKCB +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html MEF2D +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html HDAC2 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html EP300 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html HDAC1 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html CABIN1 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html PPP3CB +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html CALM3 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html PPP3CC +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html PPP3CA +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html NFATC2 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html CALM2 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html NFATC1 +BIOCARTA MEF2D PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MEF2D_PATHWAY.html CALM1 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html BID +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html XIAP +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html AIFM1 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html DFFA +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html DFFB +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html CYCS +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html BCL2L1 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html BIRC3 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html BIRC2 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html BAK1 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html CASP6 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html CASP3 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html CASP9 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html ENDOG +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html CASP7 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html BCL2 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html BAX +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html CASP8 +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html DIABLO +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html BIK +BIOCARTA MITOCHONDRIA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MITOCHONDRIA_PATHWAY.html APAF1 +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html PIK3CG +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html FASLG +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html FOXO3 +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html BAD +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html SRC +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html AKT1 +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html PTK2 +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html MUSK +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html YWHAH +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html PTK2B +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html RAPSN +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html PIK3CA +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html CHRNB1 +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html PIK3R1 +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html TERT +BIOCARTA ACH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACH_PATHWAY.html CHRNG +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html SEPT5 +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html SUMO1 +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html SNCAIP +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html GPR37 +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html UBE2G1 +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html UBE2G2 +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html SNCA +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html UBE2F +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html UBE2L6 +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html PARK2 +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html UBE2L3 +BIOCARTA PARKIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PARKIN_PATHWAY.html UBE2E2 +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html ARPC4 +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html ARPC5 +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html ARPC1A +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html ACTR3 +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html CDC42 +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html ACTR2 +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html ARPC1B +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html ARPC3 +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html ARPC2 +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html RAC1 +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html PDGFRA +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html RHOA +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html PIK3CA +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html WASL +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html PAK1 +BIOCARTA CDC42RAC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CDC42RAC_PATHWAY.html PIK3R1 +BIOCARTA RANMS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANMS_PATHWAY.html NUMA1 +BIOCARTA RANMS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANMS_PATHWAY.html RAN +BIOCARTA RANMS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANMS_PATHWAY.html KIF15 +BIOCARTA RANMS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANMS_PATHWAY.html TPX2 +BIOCARTA RANMS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANMS_PATHWAY.html AURKA +BIOCARTA RANMS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANMS_PATHWAY.html RANBP1 +BIOCARTA RANMS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANMS_PATHWAY.html RANGAP1 +BIOCARTA RANMS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANMS_PATHWAY.html RCC1 +BIOCARTA RANMS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANMS_PATHWAY.html KPNA2 +BIOCARTA RANMS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_RANMS_PATHWAY.html KPNB1 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html MAPK1 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html GNGT1 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html ADCY1 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html MAP2K1 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html MAP2K2 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html GNB1 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html ARRB1 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html MAPK3 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html RAF1 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html GNAS +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html PLCB1 +BIOCARTA BARR MAPK PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARR_MAPK_PATHWAY.html DNM1 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html IL4 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html IL2RA +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html CD3G +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html CD3D +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html CD3E +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html TGFBR1 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html TGFBR2 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html CD247 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html TGFB3 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html SMAD4 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html SMAD3 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html TRA@ +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html TGFB1 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html TRB@ +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html TGFB2 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html IFNG +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html TGFBR3 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html TOB2 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html IL2 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html TOB1 +BIOCARTA TOB1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOB1_PATHWAY.html CD28 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html HRAS +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html ADCY1 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html MAP2K1 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html MAP2K2 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html HCK +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html RAF1 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html SRC +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html MAPK1 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html GNGT1 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html ARRB1 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html GNB1 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html MAPK3 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html GNAS +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html PLCB1 +BIOCARTA BARRESTIN SRC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_SRC_PATHWAY.html DNM1 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CSF2 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CCL3 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CCR1 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html TGFB3 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CXCR3 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CCL4 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html TGFB1 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html TGFB2 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html IL12RB2 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html IL12RB1 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CXCR4 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html IL4R +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html IFNG +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CD4 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html IFNGR2 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html IFNGR1 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CD28 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html IL4 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html IL18R1 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html IL5 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CCR7 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CCR5 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CD40LG +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CCR4 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html CCR3 +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html IL12A +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html IL12B +BIOCARTA NKT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_NKT_PATHWAY.html IL2 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IL1R1 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html TNF +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html TOLLIP +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html TGFB3 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html NFKBIA +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html NFKB1 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html TGFB1 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html TGFB2 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html MAP3K7 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IRAK3 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IFNA1 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html MYD88 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html MAP3K1 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IL1RAP +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IL1B +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html TRAF6 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html MAP2K6 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IL1A +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html CHUK +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IRAK2 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IRAK1 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IL6 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html RELA +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html MAP2K3 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IL1RN +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html TAB1 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html ECSIT +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IFNB1 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html MAPK14 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html JUN +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html MAPK8 +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html IKBKB +BIOCARTA IL1R PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IL1R_PATHWAY.html MAP3K14 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html HRAS +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html GRB2 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html ELK1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html MAP4K1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html ITGB1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html PTEN +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html SRC +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html PXN +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html FOS +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html PTK2 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html DOCK1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html PTK2B +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html SOS1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html GAB1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html PIK3CA +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html PAK1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html RAPGEF1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html PIK3R1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html RASA1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html PIK3CG +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html ACTA1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html MAP2K1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html MAP2K2 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html MET +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html ITGA1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html RAF1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html HGF +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html STAT3 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html PTPN11 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html MAPK1 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html CRKL +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html JUN +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html MAPK3 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html RAP1A +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html MAPK8 +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html RAP1B +BIOCARTA MET PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_MET_PATHWAY.html CRK +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html HRAS +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html ADCY1 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html GNAI1 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html ELK1 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html PRKACG +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html FOS +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html PRKAR2B +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html PRKAR2A +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html PPP3CB +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html PPP3CC +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html NFATC4 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html PRKACB +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html PPP3CA +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html NFATC2 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html NFATC3 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html NFATC1 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html PRKCA +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html MAP2K1 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html CREB1 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html RAF1 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html CYCSP35 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html PRKCB +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html GNGT1 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html RPS6KA3 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html PLCG1 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html GNAQ +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html GNB1 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html PRKAR1B +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html JUN +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html MAPK3 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html PRKAR1A +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html CALM3 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html GNAS +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html CALM2 +BIOCARTA GPCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_GPCR_PATHWAY.html CALM1 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html PDK2 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html INPPL1 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html EIF2S3 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html IGF1 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html RPS6KB1 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html RPS6 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html PTEN +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html AKT1 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html IGF1R +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html EIF4EBP1 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html PDPK1 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html EIF4E +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html GSK3B +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html EIF2S1 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html PPP2CA +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html EIF2S2 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html PIK3CA +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html MTOR +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html PIK3R1 +BIOCARTA IGF1MTOR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_IGF1MTOR_PATHWAY.html EIF2B5 +BIOCARTA SODD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SODD_PATHWAY.html TNFRSF1A +BIOCARTA SODD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SODD_PATHWAY.html TRAF2 +BIOCARTA SODD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SODD_PATHWAY.html BAG4 +BIOCARTA SODD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SODD_PATHWAY.html TNFRSF1B +BIOCARTA SODD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SODD_PATHWAY.html TNF +BIOCARTA SODD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SODD_PATHWAY.html RIPK1 +BIOCARTA SODD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SODD_PATHWAY.html CASP8 +BIOCARTA SODD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SODD_PATHWAY.html FADD +BIOCARTA SODD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SODD_PATHWAY.html BIRC3 +BIOCARTA SODD PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SODD_PATHWAY.html TRADD +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html GLI2 +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html GLI3 +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html SHH +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html SUFU +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html GLI1 +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html PRKACG +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html PRKAR2B +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html SMO +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html PRKAR2A +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html DYRK1B +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html PRKAR1B +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html GSK3B +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html DYRK1A +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html PRKAR1A +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html PTCH1 +BIOCARTA SHH PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SHH_PATHWAY.html PRKACB +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html CCNB1 +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html CDK1 +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html XPO1 +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html MNAT1 +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html CCNH +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html PTCH1 +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html CDK7 +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html CDC25C +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html CDC25A +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html SHH +BIOCARTA PTC1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PTC1_PATHWAY.html CDC25B +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html PTPRB +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html EGFR +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html HRAS +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html MAP2K1 +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html GRB2 +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html CBL +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html RAF1 +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html SRC +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html SPRY4 +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html SPRY3 +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html MAPK1 +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html SPRY2 +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html SPRY1 +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html SOS1 +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html MAPK3 +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html SHC1 +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html EGF +BIOCARTA SPRY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SPRY_PATHWAY.html RASA1 +BIOCARTA BARRESTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_PATHWAY.html GNGT1 +BIOCARTA BARRESTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_PATHWAY.html PPARA +BIOCARTA BARRESTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_PATHWAY.html ADCY1 +BIOCARTA BARRESTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_PATHWAY.html AP2A1 +BIOCARTA BARRESTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_PATHWAY.html GNB1 +BIOCARTA BARRESTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_PATHWAY.html ARRB1 +BIOCARTA BARRESTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_PATHWAY.html GNAS +BIOCARTA BARRESTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_PATHWAY.html PLCB1 +BIOCARTA BARRESTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_PATHWAY.html DNM1 +BIOCARTA BARRESTIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_BARRESTIN_PATHWAY.html AP2M1 +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CDK1 +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CD3G +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CD3D +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CD3E +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CAMK2G +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CD247 +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CCNB1 +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html PRKACG +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html PRKAR2B +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html PRKAR2A +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CAMK4 +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html MAPK13 +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html PRKAR1B +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html PRKAR1A +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CAMK2D +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CD2 +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CAMK2B +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html PRKACB +BIOCARTA STATHMIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STATHMIN_PATHWAY.html CAMK2A +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html TNF +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html ACTA1 +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html CYCS +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html MAPKAPK3 +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html FASLG +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html MAPKAPK2 +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html DAXX +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html CASP3 +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html CASP9 +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html BCL2 +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html HSPB2 +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html HSPB1 +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html FAS +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html APAF1 +BIOCARTA HSP27 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_HSP27_PATHWAY.html IL1A +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html HRAS +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html GRB2 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html CD247 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html ELK1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html NFKBIA +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html NFKB1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html TRB@ +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html FOS +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html MAP3K1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html SOS1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html RAC1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html PPP3CB +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html ZAP70 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html PIK3CA +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html PPP3CC +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html NFATC4 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html SHC1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html PPP3CA +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html NFATC2 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html NFATC3 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html PIK3R1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html RASA1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html NFATC1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html PIK3CG +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html PTPN7 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html PRKCA +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html CD3G +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html CD3D +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html MAP2K1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html CD3E +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html RELA +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html MAP2K4 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html RAF1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html CYCSP35 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html TRA@ +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html VAV1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html PRKCB +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html LAT +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html PLCG1 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html FYN +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html JUN +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html LCK +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html MAPK3 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html CALM3 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html MAPK8 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html CALM2 +BIOCARTA TCR PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCR_PATHWAY.html CALM1 +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html PTPRC +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html ITGAL +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html ICAM1 +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html CD3G +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html CD3D +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html CD8A +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html CD3E +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html CD247 +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html ITGB2 +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html TRA@ +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html TRB@ +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html THY1 +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html CD2 +BIOCARTA TCYTOTOXIC PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TCYTOTOXIC_PATHWAY.html CD28 +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html PTPRC +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html ITGAL +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html ICAM1 +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html CD3G +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html CD3D +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html CD3E +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html CD247 +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html ITGB2 +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html TRA@ +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html TRB@ +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html THY1 +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html CD2 +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html CD4 +BIOCARTA THELPER PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_THELPER_PATHWAY.html CD28 +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html TRAF2 +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html RELA +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html TNFRSF13B +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html TNFRSF13C +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html TNFRSF17 +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html NFKB1 +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html TNFSF13 +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html TNFSF13B +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html MAPK14 +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html MAPK8 +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html MAP3K14 +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html TRAF6 +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html TRAF5 +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html CHUK +BIOCARTA TALL1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TALL1_PATHWAY.html TRAF3 +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html XRCC5 +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html EGFR +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html PRKCA +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html HSP90AA1 +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html XRCC6 +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html TP53 +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html RB1 +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html POLR2A +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html AKT1 +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html IGF1R +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html KRAS +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html PPP2CA +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html BCL2 +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html TEP1 +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html TNKS +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html MYC +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html TERT +BIOCARTA TEL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TEL_PATHWAY.html TERF1 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html MAP2K1 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html SMAD7 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html TGFBR1 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html CREBBP +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html TGFBR2 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html TGFB3 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html SMAD4 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html SMAD3 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html SMAD2 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html CDH1 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html TAB1 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html TGFB1 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html TGFB2 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html MAP3K7 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html EP300 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html ZFYVE9 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html MAPK3 +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html SKIL +BIOCARTA TGFB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TGFB_PATHWAY.html APC +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IL4 +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IL18R1 +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IL2RA +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html HLA-DRB1 +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IL18 +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html CD40 +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IL12RB2 +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html CD86 +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IL12RB1 +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html CD40LG +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IL4R +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IFNG +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IL12A +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IL12B +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IFNGR2 +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IFNGR1 +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html IL2 +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html HLA-DRA +BIOCARTA TH1TH2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TH1TH2_PATHWAY.html CD28 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html IL4 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html TRAF2 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html RELA +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html NFKBIA +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html NFKB1 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html ATF2 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html TNFRSF9 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html MAP3K5 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html MAP4K5 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html JUN +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html MAPK14 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html MAP3K1 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html IFNG +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html MAPK8 +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html IKBKB +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html CHUK +BIOCARTA 41BB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_41BB_PATHWAY.html IL2 +BIOCARTA KREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KREB_PATHWAY.html SDHA +BIOCARTA KREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KREB_PATHWAY.html ACO2 +BIOCARTA KREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KREB_PATHWAY.html CS +BIOCARTA KREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KREB_PATHWAY.html IDH2 +BIOCARTA KREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KREB_PATHWAY.html SUCLA2 +BIOCARTA KREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KREB_PATHWAY.html OGDH +BIOCARTA KREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KREB_PATHWAY.html MDH1 +BIOCARTA KREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_KREB_PATHWAY.html FH +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html ITK +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html CD3G +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html HLA-DRB1 +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html CD3D +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html CD3E +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html GRB2 +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html CD247 +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html CTLA4 +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html TRA@ +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html TRB@ +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html PTPN11 +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html CD86 +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html CD80 +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html ICOS +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html LCK +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html PIK3CA +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html PIK3R1 +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html ICOSLG +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html IL2 +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html HLA-DRA +BIOCARTA CTLA4 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CTLA4_PATHWAY.html CD28 +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html PIK3CG +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html HRAS +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html IGF1 +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html FOXO3 +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html SOD1 +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html SOD3 +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html SOD2 +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html AKT1 +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html IGF1R +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html GH1 +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html PIK3CA +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html SHC1 +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html CAT +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html PIK3R1 +BIOCARTA LONGEVITY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_LONGEVITY_PATHWAY.html GHR +BIOCARTA SARS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SARS_PATHWAY.html LDHC +BIOCARTA SARS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SARS_PATHWAY.html LDHB +BIOCARTA SARS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SARS_PATHWAY.html LDHA +BIOCARTA SARS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SARS_PATHWAY.html EIF4E +BIOCARTA SARS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SARS_PATHWAY.html CKM +BIOCARTA SARS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SARS_PATHWAY.html MAPK14 +BIOCARTA SARS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SARS_PATHWAY.html ANPEP +BIOCARTA SARS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SARS_PATHWAY.html GPT +BIOCARTA SARS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SARS_PATHWAY.html NCL +BIOCARTA SARS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_SARS_PATHWAY.html FBL +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html GNA13 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html F2RL3 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ADCY1 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html GNAI1 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html PPP1R12B +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html GNA12 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html MAP3K7 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html PTK2B +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html RHOA +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html PIK3CA +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html PLCB1 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html PIK3R1 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html PIK3CG +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF4 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html PRKCA +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF3 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF2 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF1 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ROCK1 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF7 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF6 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF18 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF19 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF5 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF16 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF17 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF9 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF15 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF12 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF10 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html ARHGEF11 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html PRKCB +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html GNGT1 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html GNAQ +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html GNB1 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html F2 +BIOCARTA PAR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_PAR1_PATHWAY.html F2R +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html TRAF2 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html TNF +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html MAP4K2 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html NFKBIA +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html NFKB1 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html CRADD +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html ATF1 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html TNFRSF1A +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html MAP3K1 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html CASP2 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html CHUK +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html LTA +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html MAP2K6 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html RELA +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html MAP2K3 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html MAP2K4 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html TANK +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html TRADD +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html MAPK14 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html JUN +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html RIPK1 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html IKBKG +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html MAPK8 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html MAP3K14 +BIOCARTA STRESS PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_STRESS_PATHWAY.html IKBKB +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html TRAF2 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html TNF +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html LMNB1 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html LMNB2 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html PRKDC +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html CRADD +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html MAP3K7 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html BAG4 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html TNFRSF1A +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html CASP3 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html PAK2 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html MAP3K1 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html CASP8 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html PAK1 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html CASP2 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html ARHGDIB +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html MADD +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html DFFA +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html DFFB +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html MAP2K4 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html LMNA +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html FADD +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html RB1 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html TRADD +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html JUN +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html RIPK1 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html MAPK8 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html PARP1 +BIOCARTA TNFR1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR1_PATHWAY.html SPTAN1 +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html TRAF1 +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html IKBKAP +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html TRAF2 +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html RELA +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html NFKBIA +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html NFKB1 +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html TANK +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html TNFRSF1B +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html DUSP1 +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html MAP3K1 +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html RIPK1 +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html IKBKG +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html MAP3K14 +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html TNFAIP3 +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html IKBKB +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html LTA +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html CHUK +BIOCARTA TNFR2 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TNFR2_PATHWAY.html TRAF3 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html PPARA +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html TOLLIP +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html TLR2 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html TIRAP +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html PGLYRP1 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html NFKBIA +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html TLR3 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html ELK1 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html NFKB1 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html TLR4 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html TLR6 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html TLR7 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html TLR9 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html MAP3K7 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html FOS +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html MYD88 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html MAP3K1 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html TRAF6 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html MAP2K6 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html CHUK +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html IRAK1 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html TLR10 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html LY96 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html RELA +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html MAP2K3 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html MAP2K4 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html TAB1 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html ECSIT +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html TAB2 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html MAPK14 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html JUN +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html IKBKG +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html MAPK8 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html IKBKB +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html EIF2AK2 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html MAP3K14 +BIOCARTA TOLL PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TOLL_PATHWAY.html CD14 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html PIK3CG +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html PRKCA +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html HRAS +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html MAP2K1 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html GRB2 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html STAT5A +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html STAT5B +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html RAF1 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html STAT1 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html STAT3 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html PRKCB +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html FOS +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html CSNK2A1 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html PLCG1 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html SOS1 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html JUN +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html MAPK3 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html PIK3CA +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html SHC1 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html JAK2 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html MPL +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html PIK3R1 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html RASA1 +BIOCARTA TPO PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TPO_PATHWAY.html THPO +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html ADCY1 +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html HRAS +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html GRB2 +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html CAMK2G +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html PRKACG +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html AKT1 +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html PRKAR2B +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html PRKAR2A +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html SOS1 +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html RAC1 +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html CAMK2D +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html PIK3CA +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html CAMK2B +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html PRKACB +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html CAMK2A +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html PIK3R1 +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html PRKCA +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html CREB1 +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html PRKCB +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html RPS6KA5 +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html MAPK1 +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html RPS6KA1 +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html MAPK14 +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html PRKAR1B +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html PRKAR1A +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html MAPK3 +BIOCARTA CREB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CREB_PATHWAY.html GNAS +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html CREB1 +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html RXRA +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html CREBBP +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html PRKACG +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html PRKAR2B +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html PRKAR2A +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html EP300 +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html NCOA3 +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html PRKAR1B +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html PRKAR1A +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html RARA +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html PRKACB +BIOCARTA CARM1 PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_CARM1_PATHWAY.html CARM1 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html PIK3CG +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html EGFR +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html HRAS +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html GRB2 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html CYCS +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html BAD +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html ITGB1 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html CTNNB1 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html AKT1 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html MAPK1 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html GH1 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html PTK2 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html CASP9 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html SOS1 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html MAPK3 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html RHOA +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html PIK3CA +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html SHC1 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html APAF1 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html PIK3R1 +BIOCARTA TFF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TFF_PATHWAY.html GHR +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html AKT1 +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html PRKCA +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html HRAS +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html PLCG1 +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html GRB2 +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html SOS1 +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html NTRK1 +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html PIK3CA +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html SHC1 +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html PIK3R1 +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html NGF +BIOCARTA TRKA PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_TRKA_PATHWAY.html PRKCB +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html PIK3CG +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html E2F1 +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html POLR1D +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html TBX2 +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html TP53 +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html POLR1A +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html POLR1C +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html RB1 +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html POLR1B +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html CDKN2A +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html RAC1 +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html MDM2 +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html PIK3CA +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html ABL1 +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html MYC +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html PIK3R1 +BIOCARTA ARF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ARF_PATHWAY.html TWIST1 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html TLN1 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html CAPNS2 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html CAPNS1 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html ACTA1 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html ITGA1 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html ACTN1 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html ACTN2 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html ACTN3 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html ITGB3 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html ITGB1 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html PXN +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html SRC +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html CAPN1 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html PTK2 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html EZR +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html RAC1 +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html RHOA +BIOCARTA UCALPAIN PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_UCALPAIN_PATHWAY.html SPTAN1 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html HRAS +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html PXN +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html ARNT +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html PTK2 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html EIF1AX +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html PIK3CA +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html EIF1 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html SHC1 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html NOS3 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html EIF2B2 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html EIF2B3 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html PIK3R1 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html EIF2B4 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html EIF2B5 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html PIK3CG +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html PRKCA +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html FLT1 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html VHL +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html FLT4 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html ELAVL1 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html EIF2S3 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html EIF2B1 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html PRKCB +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html KDR +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html HIF1A +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html PLCG1 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html EIF2S1 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html EIF2S2 +BIOCARTA VEGF PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VEGF_PATHWAY.html VEGFA +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html COL4A4 +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html P4HB +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html COL4A3 +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html SLC23A1 +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html COL4A2 +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html COL4A1 +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html SLC23A2 +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html SLC2A3 +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html SLC2A1 +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html COL4A6 +BIOCARTA VITCB PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_VITCB_PATHWAY.html COL4A5 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html PPARD +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html BTRC +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html CTNNB1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html MAP3K7 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html WNT1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html CSNK2A1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html PPP2CA +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html FRAT1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html MYC +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html APC +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html AXIN1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html CSNK1A1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html CTBP1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html NLK +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html CREBBP +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html FZD1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html SMAD4 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html LEF1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html TLE1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html TAB1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html DVL1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html CCND1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html CSNK1D +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html HDAC1 +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html GSK3B +BIOCARTA WNT PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_WNT_PATHWAY.html WIF1 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html WASF3 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html ACTA1 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html WASF1 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html WASF2 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html ABI2 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html ARPC4 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html ARPC5 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html PSMA7 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html NCKAP1 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html ARPC1A +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html ACTR3 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html ACTR2 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html ARPC1B +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html ARPC3 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html ARPC2 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html NCK1 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html NTRK1 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html PIR +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html RAC1 +BIOCARTA ACTINY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/BIOCARTA_ACTINY_PATHWAY.html WASL +PWCOMMONS mRNA Editing NUP85 +PWCOMMONS mRNA Editing NUP35 +PWCOMMONS mRNA Editing AAAS +PWCOMMONS mRNA Editing NUP50 +PWCOMMONS mRNA Editing NUP43 +PWCOMMONS mRNA Editing NUP205 +PWCOMMONS mRNA Editing NUP93 +PWCOMMONS mRNA Editing NUP88 +PWCOMMONS mRNA Editing NUPL2 +PWCOMMONS mRNA Editing NUP210 +PWCOMMONS mRNA Editing NUP155 +PWCOMMONS mRNA Editing RANBP2 +PWCOMMONS mRNA Editing RAE1 +PWCOMMONS mRNA Editing NUP188 +PWCOMMONS mRNA Editing NUP214 +PWCOMMONS mRNA Editing NUP54 +PWCOMMONS mRNA Editing NUP62 +PWCOMMONS mRNA Editing NUP107 +PWCOMMONS mRNA Editing NUP133 +PWCOMMONS mRNA Editing NUP160 +PWCOMMONS mRNA Editing NUP37 +PWCOMMONS mRNA Editing EIF1AX +PWCOMMONS mRNA Editing EIF4H +PWCOMMONS mRNA Editing EIF4B +PWCOMMONS mRNA Editing EIF4E +PWCOMMONS mRNA Editing EIF4G1 +PWCOMMONS mRNA Editing EIF4A2 +PWCOMMONS mRNA Editing EIF2S3 +PWCOMMONS mRNA Editing EIF2S2 +PWCOMMONS mRNA Editing EIF2S1 +PWCOMMONS mRNA Editing EIF3K +PWCOMMONS mRNA Editing EIF3H +PWCOMMONS mRNA Editing EIF3E +PWCOMMONS mRNA Editing EIF3F +PWCOMMONS mRNA Editing EIF3J +PWCOMMONS mRNA Editing EIF3G +PWCOMMONS mRNA Editing EIF3C +PWCOMMONS mRNA Editing EIF3A +PWCOMMONS mRNA Editing EIF3I +PWCOMMONS mRNA Editing EIF3D +PWCOMMONS mRNA Editing EIF3B +PWCOMMONS mRNA Editing RPS23 +PWCOMMONS mRNA Editing RPS16 +PWCOMMONS mRNA Editing RPS12 +PWCOMMONS mRNA Editing RPS29 +PWCOMMONS mRNA Editing RPSA +PWCOMMONS mRNA Editing RPS21 +PWCOMMONS mRNA Editing RPS27A +PWCOMMONS mRNA Editing RPS20 +PWCOMMONS mRNA Editing RPS15 +PWCOMMONS mRNA Editing RPS24 +PWCOMMONS mRNA Editing RPS9 +PWCOMMONS mRNA Editing RPS10 +PWCOMMONS mRNA Editing RPS28 +PWCOMMONS mRNA Editing RPS2 +PWCOMMONS mRNA Editing RPS19 +PWCOMMONS mRNA Editing RPS4X +PWCOMMONS mRNA Editing RPS18 +PWCOMMONS mRNA Editing RPS8 +PWCOMMONS mRNA Editing RPS3 +PWCOMMONS mRNA Editing RPS4Y1 +PWCOMMONS mRNA Editing RPS25 +PWCOMMONS mRNA Editing RPS14 +PWCOMMONS mRNA Editing RPS17 +PWCOMMONS mRNA Editing RPS26 +PWCOMMONS mRNA Editing RPS11 +PWCOMMONS mRNA Editing RPS5 +PWCOMMONS mRNA Editing FAU +PWCOMMONS mRNA Editing RPS15A +PWCOMMONS mRNA Editing RPS13 +PWCOMMONS mRNA Editing RPS6 +PWCOMMONS mRNA Editing RPS3A +PWCOMMONS mRNA Editing RPS7 +PWCOMMONS mRNA Editing RPS27 +PWCOMMONS mRNA Editing RPL27A +PWCOMMONS mRNA Editing RPL15 +PWCOMMONS mRNA Editing RPL11 +PWCOMMONS mRNA Editing RPL29 +PWCOMMONS mRNA Editing RPL30 +PWCOMMONS mRNA Editing RPL8 +PWCOMMONS mRNA Editing RPL22 +PWCOMMONS mRNA Editing RPL28 +PWCOMMONS mRNA Editing RPL7A +PWCOMMONS mRNA Editing RPL35A +PWCOMMONS mRNA Editing RPL31 +PWCOMMONS mRNA Editing RPL26L1 +PWCOMMONS mRNA Editing RPL26 +PWCOMMONS mRNA Editing RPL18A +PWCOMMONS mRNA Editing RPL14 +PWCOMMONS mRNA Editing RPLP2 +PWCOMMONS mRNA Editing RPL10 +PWCOMMONS mRNA Editing RPL34 +PWCOMMONS mRNA Editing RPL37 +PWCOMMONS mRNA Editing RPL3L +PWCOMMONS mRNA Editing RPL32 +PWCOMMONS mRNA Editing RPL36 +PWCOMMONS mRNA Editing RPLP1 +PWCOMMONS mRNA Editing RPL23A +PWCOMMONS mRNA Editing RPL24 +PWCOMMONS mRNA Editing RPL6 +PWCOMMONS mRNA Editing RPL18 +PWCOMMONS mRNA Editing RPL5 +PWCOMMONS mRNA Editing RPL23 +PWCOMMONS mRNA Editing RPL19 +PWCOMMONS mRNA Editing RPL41 +PWCOMMONS mRNA Editing RPL7 +PWCOMMONS mRNA Editing RPL13A +PWCOMMONS mRNA Editing RPL27 +PWCOMMONS mRNA Editing RPL17 +PWCOMMONS mRNA Editing RPL3 +PWCOMMONS mRNA Editing RPL10A +PWCOMMONS mRNA Editing RPL21 +PWCOMMONS mRNA Editing RPL4 +PWCOMMONS mRNA Editing RPL35 +PWCOMMONS mRNA Editing RPL13 +PWCOMMONS mRNA Editing RPL39 +PWCOMMONS mRNA Editing RPL38 +PWCOMMONS mRNA Editing RPL36A +PWCOMMONS mRNA Editing RPL9 +PWCOMMONS mRNA Editing RPLP0 +PWCOMMONS mRNA Editing UBA52 +PWCOMMONS mRNA Editing RPL37A +PWCOMMONS mRNA Editing RPL12 +PWCOMMONS mRNA Editing EEF1A1 +PWCOMMONS mRNA Editing EIF2B5 +PWCOMMONS mRNA Editing EIF2B1 +PWCOMMONS mRNA Editing EIF2B3 +PWCOMMONS mRNA Editing EIF2B4 +PWCOMMONS mRNA Editing EIF2B2 +PWCOMMONS mRNA Editing NXF1 +PWCOMMONS mRNA Editing SFRS2 +PWCOMMONS mRNA Editing CDC40 +PWCOMMONS mRNA Editing SFRS3 +PWCOMMONS mRNA Editing SFRS11 +PWCOMMONS mRNA Editing U2AF2 +PWCOMMONS mRNA Editing SFRS9 +PWCOMMONS mRNA Editing SFRS5 +PWCOMMONS mRNA Editing SFRS7 +PWCOMMONS mRNA Editing SFRS4 +PWCOMMONS mRNA Editing SFRS6 +PWCOMMONS mRNA Editing DHX38 +PWCOMMONS mRNA Editing U2AF1 +PWCOMMONS mRNA Editing SFRS1 +PWCOMMONS mRNA Editing RNPS1 +PWCOMMONS mRNA Editing UPF3B +PWCOMMONS mRNA Editing SRRM1 +PWCOMMONS mRNA Editing THOC4 +PWCOMMONS mRNA Editing RBM8A +PWCOMMONS mRNA Editing MAGOH +PWCOMMONS mRNA Editing NCBP2 +PWCOMMONS mRNA Editing NCBP1 +PWCOMMONS mRNA Editing EIF5 +PWCOMMONS mRNA Editing APOBEC1 +PWCOMMONS mRNA Editing EEF1G +PWCOMMONS mRNA Editing EEF1D +PWCOMMONS mRNA Editing EEF1B2 +PWCOMMONS mRNA Editing PABPC1 +PWCOMMONS mRNA Editing CSTF2 +PWCOMMONS mRNA Editing CSTF1 +PWCOMMONS mRNA Editing CSTF3 +PWCOMMONS mRNA Editing PABPN1 +PWCOMMONS mRNA Editing PAPOLA +PWCOMMONS mRNA Editing CPSF2 +PWCOMMONS mRNA Editing CPSF1 +PWCOMMONS mRNA Editing CPSF3 +PWCOMMONS mRNA Editing PCF11 +PWCOMMONS mRNA Editing CLP1 +PWCOMMONS mRNA Editing CPSF7 +PWCOMMONS mRNA Editing NUDT21 +PWCOMMONS mRNA Editing ETF1 +PWCOMMONS mRNA Editing GSPT2 +PWCOMMONS mRNA Editing EIF5B +PWCOMMONS mRNA Editing EEF2 +PWCOMMONS mRNA Editing ADAR +PWCOMMONS mRNA Editing ADARB1 +PWCOMMONS mRNA Editing +PWCOMMONS mRNA Editing: C to U Conversion NUP85 +PWCOMMONS mRNA Editing: C to U Conversion NUP35 +PWCOMMONS mRNA Editing: C to U Conversion AAAS +PWCOMMONS mRNA Editing: C to U Conversion NUP50 +PWCOMMONS mRNA Editing: C to U Conversion NUP43 +PWCOMMONS mRNA Editing: C to U Conversion NUP205 +PWCOMMONS mRNA Editing: C to U Conversion NUP93 +PWCOMMONS mRNA Editing: C to U Conversion NUP88 +PWCOMMONS mRNA Editing: C to U Conversion NUPL2 +PWCOMMONS mRNA Editing: C to U Conversion NUP210 +PWCOMMONS mRNA Editing: C to U Conversion NUP155 +PWCOMMONS mRNA Editing: C to U Conversion RANBP2 +PWCOMMONS mRNA Editing: C to U Conversion RAE1 +PWCOMMONS mRNA Editing: C to U Conversion NUP188 +PWCOMMONS mRNA Editing: C to U Conversion NUP214 +PWCOMMONS mRNA Editing: C to U Conversion NUP54 +PWCOMMONS mRNA Editing: C to U Conversion NUP62 +PWCOMMONS mRNA Editing: C to U Conversion NUP107 +PWCOMMONS mRNA Editing: C to U Conversion NUP133 +PWCOMMONS mRNA Editing: C to U Conversion NUP160 +PWCOMMONS mRNA Editing: C to U Conversion NUP37 +PWCOMMONS mRNA Editing: C to U Conversion EIF1AX +PWCOMMONS mRNA Editing: C to U Conversion EIF4H +PWCOMMONS mRNA Editing: C to U Conversion EIF4B +PWCOMMONS mRNA Editing: C to U Conversion EIF4E +PWCOMMONS mRNA Editing: C to U Conversion EIF4G1 +PWCOMMONS mRNA Editing: C to U Conversion EIF4A2 +PWCOMMONS mRNA Editing: C to U Conversion EIF2S3 +PWCOMMONS mRNA Editing: C to U Conversion EIF2S2 +PWCOMMONS mRNA Editing: C to U Conversion EIF2S1 +PWCOMMONS mRNA Editing: C to U Conversion EIF3K +PWCOMMONS mRNA Editing: C to U Conversion EIF3H +PWCOMMONS mRNA Editing: C to U Conversion EIF3E +PWCOMMONS mRNA Editing: C to U Conversion EIF3F +PWCOMMONS mRNA Editing: C to U Conversion EIF3J +PWCOMMONS mRNA Editing: C to U Conversion EIF3G +PWCOMMONS mRNA Editing: C to U Conversion EIF3C +PWCOMMONS mRNA Editing: C to U Conversion EIF3A +PWCOMMONS mRNA Editing: C to U Conversion EIF3I +PWCOMMONS mRNA Editing: C to U Conversion EIF3D +PWCOMMONS mRNA Editing: C to U Conversion EIF3B +PWCOMMONS mRNA Editing: C to U Conversion RPS23 +PWCOMMONS mRNA Editing: C to U Conversion RPS16 +PWCOMMONS mRNA Editing: C to U Conversion RPS12 +PWCOMMONS mRNA Editing: C to U Conversion RPS29 +PWCOMMONS mRNA Editing: C to U Conversion RPSA +PWCOMMONS mRNA Editing: C to U Conversion RPS21 +PWCOMMONS mRNA Editing: C to U Conversion RPS27A +PWCOMMONS mRNA Editing: C to U Conversion RPS20 +PWCOMMONS mRNA Editing: C to U Conversion RPS15 +PWCOMMONS mRNA Editing: C to U Conversion RPS24 +PWCOMMONS mRNA Editing: C to U Conversion RPS9 +PWCOMMONS mRNA Editing: C to U Conversion RPS10 +PWCOMMONS mRNA Editing: C to U Conversion RPS28 +PWCOMMONS mRNA Editing: C to U Conversion RPS2 +PWCOMMONS mRNA Editing: C to U Conversion RPS19 +PWCOMMONS mRNA Editing: C to U Conversion RPS4X +PWCOMMONS mRNA Editing: C to U Conversion RPS18 +PWCOMMONS mRNA Editing: C to U Conversion RPS8 +PWCOMMONS mRNA Editing: C to U Conversion RPS3 +PWCOMMONS mRNA Editing: C to U Conversion RPS4Y1 +PWCOMMONS mRNA Editing: C to U Conversion RPS25 +PWCOMMONS mRNA Editing: C to U Conversion RPS14 +PWCOMMONS mRNA Editing: C to U Conversion RPS17 +PWCOMMONS mRNA Editing: C to U Conversion RPS26 +PWCOMMONS mRNA Editing: C to U Conversion RPS11 +PWCOMMONS mRNA Editing: C to U Conversion RPS5 +PWCOMMONS mRNA Editing: C to U Conversion FAU +PWCOMMONS mRNA Editing: C to U Conversion RPS15A +PWCOMMONS mRNA Editing: C to U Conversion RPS13 +PWCOMMONS mRNA Editing: C to U Conversion RPS6 +PWCOMMONS mRNA Editing: C to U Conversion RPS3A +PWCOMMONS mRNA Editing: C to U Conversion RPS7 +PWCOMMONS mRNA Editing: C to U Conversion RPS27 +PWCOMMONS mRNA Editing: C to U Conversion RPL27A +PWCOMMONS mRNA Editing: C to U Conversion RPL15 +PWCOMMONS mRNA Editing: C to U Conversion RPL11 +PWCOMMONS mRNA Editing: C to U Conversion RPL29 +PWCOMMONS mRNA Editing: C to U Conversion RPL30 +PWCOMMONS mRNA Editing: C to U Conversion RPL8 +PWCOMMONS mRNA Editing: C to U Conversion RPL22 +PWCOMMONS mRNA Editing: C to U Conversion RPL28 +PWCOMMONS mRNA Editing: C to U Conversion RPL7A +PWCOMMONS mRNA Editing: C to U Conversion RPL35A +PWCOMMONS mRNA Editing: C to U Conversion RPL31 +PWCOMMONS mRNA Editing: C to U Conversion RPL26L1 +PWCOMMONS mRNA Editing: C to U Conversion RPL26 +PWCOMMONS mRNA Editing: C to U Conversion RPL18A +PWCOMMONS mRNA Editing: C to U Conversion RPL14 +PWCOMMONS mRNA Editing: C to U Conversion RPLP2 +PWCOMMONS mRNA Editing: C to U Conversion RPL10 +PWCOMMONS mRNA Editing: C to U Conversion RPL34 +PWCOMMONS mRNA Editing: C to U Conversion RPL37 +PWCOMMONS mRNA Editing: C to U Conversion RPL3L +PWCOMMONS mRNA Editing: C to U Conversion RPL32 +PWCOMMONS mRNA Editing: C to U Conversion RPL36 +PWCOMMONS mRNA Editing: C to U Conversion RPLP1 +PWCOMMONS mRNA Editing: C to U Conversion RPL23A +PWCOMMONS mRNA Editing: C to U Conversion RPL24 +PWCOMMONS mRNA Editing: C to U Conversion RPL6 +PWCOMMONS mRNA Editing: C to U Conversion RPL18 +PWCOMMONS mRNA Editing: C to U Conversion RPL5 +PWCOMMONS mRNA Editing: C to U Conversion RPL23 +PWCOMMONS mRNA Editing: C to U Conversion RPL19 +PWCOMMONS mRNA Editing: C to U Conversion RPL41 +PWCOMMONS mRNA Editing: C to U Conversion RPL7 +PWCOMMONS mRNA Editing: C to U Conversion RPL13A +PWCOMMONS mRNA Editing: C to U Conversion RPL27 +PWCOMMONS mRNA Editing: C to U Conversion RPL17 +PWCOMMONS mRNA Editing: C to U Conversion RPL3 +PWCOMMONS mRNA Editing: C to U Conversion RPL10A +PWCOMMONS mRNA Editing: C to U Conversion RPL21 +PWCOMMONS mRNA Editing: C to U Conversion RPL4 +PWCOMMONS mRNA Editing: C to U Conversion RPL35 +PWCOMMONS mRNA Editing: C to U Conversion RPL13 +PWCOMMONS mRNA Editing: C to U Conversion RPL39 +PWCOMMONS mRNA Editing: C to U Conversion RPL38 +PWCOMMONS mRNA Editing: C to U Conversion RPL36A +PWCOMMONS mRNA Editing: C to U Conversion RPL9 +PWCOMMONS mRNA Editing: C to U Conversion RPLP0 +PWCOMMONS mRNA Editing: C to U Conversion UBA52 +PWCOMMONS mRNA Editing: C to U Conversion RPL37A +PWCOMMONS mRNA Editing: C to U Conversion RPL12 +PWCOMMONS mRNA Editing: C to U Conversion EEF1A1 +PWCOMMONS mRNA Editing: C to U Conversion EIF2B5 +PWCOMMONS mRNA Editing: C to U Conversion EIF2B1 +PWCOMMONS mRNA Editing: C to U Conversion EIF2B3 +PWCOMMONS mRNA Editing: C to U Conversion EIF2B4 +PWCOMMONS mRNA Editing: C to U Conversion EIF2B2 +PWCOMMONS mRNA Editing: C to U Conversion NXF1 +PWCOMMONS mRNA Editing: C to U Conversion SFRS2 +PWCOMMONS mRNA Editing: C to U Conversion CDC40 +PWCOMMONS mRNA Editing: C to U Conversion SFRS3 +PWCOMMONS mRNA Editing: C to U Conversion SFRS11 +PWCOMMONS mRNA Editing: C to U Conversion U2AF2 +PWCOMMONS mRNA Editing: C to U Conversion SFRS9 +PWCOMMONS mRNA Editing: C to U Conversion SFRS5 +PWCOMMONS mRNA Editing: C to U Conversion SFRS7 +PWCOMMONS mRNA Editing: C to U Conversion SFRS4 +PWCOMMONS mRNA Editing: C to U Conversion SFRS6 +PWCOMMONS mRNA Editing: C to U Conversion DHX38 +PWCOMMONS mRNA Editing: C to U Conversion U2AF1 +PWCOMMONS mRNA Editing: C to U Conversion SFRS1 +PWCOMMONS mRNA Editing: C to U Conversion RNPS1 +PWCOMMONS mRNA Editing: C to U Conversion UPF3B +PWCOMMONS mRNA Editing: C to U Conversion SRRM1 +PWCOMMONS mRNA Editing: C to U Conversion THOC4 +PWCOMMONS mRNA Editing: C to U Conversion RBM8A +PWCOMMONS mRNA Editing: C to U Conversion MAGOH +PWCOMMONS mRNA Editing: C to U Conversion NCBP2 +PWCOMMONS mRNA Editing: C to U Conversion NCBP1 +PWCOMMONS mRNA Editing: C to U Conversion EIF5 +PWCOMMONS mRNA Editing: C to U Conversion APOBEC1 +PWCOMMONS mRNA Editing: C to U Conversion EEF1G +PWCOMMONS mRNA Editing: C to U Conversion EEF1D +PWCOMMONS mRNA Editing: C to U Conversion EEF1B2 +PWCOMMONS mRNA Editing: C to U Conversion PABPC1 +PWCOMMONS mRNA Editing: C to U Conversion CSTF2 +PWCOMMONS mRNA Editing: C to U Conversion CSTF1 +PWCOMMONS mRNA Editing: C to U Conversion CSTF3 +PWCOMMONS mRNA Editing: C to U Conversion PABPN1 +PWCOMMONS mRNA Editing: C to U Conversion PAPOLA +PWCOMMONS mRNA Editing: C to U Conversion CPSF2 +PWCOMMONS mRNA Editing: C to U Conversion CPSF1 +PWCOMMONS mRNA Editing: C to U Conversion CPSF3 +PWCOMMONS mRNA Editing: C to U Conversion PCF11 +PWCOMMONS mRNA Editing: C to U Conversion CLP1 +PWCOMMONS mRNA Editing: C to U Conversion CPSF7 +PWCOMMONS mRNA Editing: C to U Conversion NUDT21 +PWCOMMONS mRNA Editing: C to U Conversion ETF1 +PWCOMMONS mRNA Editing: C to U Conversion GSPT2 +PWCOMMONS mRNA Editing: C to U Conversion EIF5B +PWCOMMONS mRNA Editing: C to U Conversion EEF2 +PWCOMMONS mRNA Editing: C to U Conversion +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF4H +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression PABPC1 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF4B +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF4E +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF4G1 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF4A2 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF1AX +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF2S3 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF2S2 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF2S1 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF3K +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF3H +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF3E +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF3F +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF3J +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF3G +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF3C +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF3A +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF3I +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF3D +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression EIF3B +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS23 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS16 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS12 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS29 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPSA +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS21 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS27A +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS20 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS15 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS24 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS9 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS10 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS28 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS2 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS19 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS4X +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS18 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS8 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS3 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS4Y1 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS25 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS14 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS17 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS26 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS11 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS5 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression FAU +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS15A +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS13 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS6 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS3A +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS7 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPS27 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL27A +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL15 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL11 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL29 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL30 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL8 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL22 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL28 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL7A +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL31 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL35A +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL26L1 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL26 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL18A +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL14 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPLP2 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL10 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL34 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL37 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL32 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL3L +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL36 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPLP1 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL23A +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL24 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL6 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL18 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL5 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL19 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL23 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL41 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL7 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL27 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL17 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL3 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL10A +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL21 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL4 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL35 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL13 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL39 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL36A +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL38 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL9 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPLP0 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression UBA52 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL37A +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression RPL12 +PWCOMMONS L13a-mediated translational silencing of Ceruloplasmin expression +PWCOMMONS Translation initiation complex formation EIF4H +PWCOMMONS Translation initiation complex formation EIF4B +PWCOMMONS Translation initiation complex formation EIF4E +PWCOMMONS Translation initiation complex formation EIF4G1 +PWCOMMONS Translation initiation complex formation EIF4A2 +PWCOMMONS Translation initiation complex formation EIF2S3 +PWCOMMONS Translation initiation complex formation EIF2S2 +PWCOMMONS Translation initiation complex formation EIF2S1 +PWCOMMONS Translation initiation complex formation EIF3K +PWCOMMONS Translation initiation complex formation EIF3H +PWCOMMONS Translation initiation complex formation EIF3E +PWCOMMONS Translation initiation complex formation EIF3F +PWCOMMONS Translation initiation complex formation EIF3J +PWCOMMONS Translation initiation complex formation EIF3G +PWCOMMONS Translation initiation complex formation EIF3C +PWCOMMONS Translation initiation complex formation EIF3A +PWCOMMONS Translation initiation complex formation EIF3I +PWCOMMONS Translation initiation complex formation EIF3D +PWCOMMONS Translation initiation complex formation EIF3B +PWCOMMONS Translation initiation complex formation RPS23 +PWCOMMONS Translation initiation complex formation RPS16 +PWCOMMONS Translation initiation complex formation RPS12 +PWCOMMONS Translation initiation complex formation RPS29 +PWCOMMONS Translation initiation complex formation RPSA +PWCOMMONS Translation initiation complex formation RPS21 +PWCOMMONS Translation initiation complex formation RPS27A +PWCOMMONS Translation initiation complex formation RPS20 +PWCOMMONS Translation initiation complex formation RPS15 +PWCOMMONS Translation initiation complex formation RPS24 +PWCOMMONS Translation initiation complex formation RPS9 +PWCOMMONS Translation initiation complex formation RPS10 +PWCOMMONS Translation initiation complex formation RPS28 +PWCOMMONS Translation initiation complex formation RPS2 +PWCOMMONS Translation initiation complex formation RPS19 +PWCOMMONS Translation initiation complex formation RPS4X +PWCOMMONS Translation initiation complex formation RPS18 +PWCOMMONS Translation initiation complex formation RPS8 +PWCOMMONS Translation initiation complex formation RPS3 +PWCOMMONS Translation initiation complex formation RPS4Y1 +PWCOMMONS Translation initiation complex formation RPS25 +PWCOMMONS Translation initiation complex formation RPS14 +PWCOMMONS Translation initiation complex formation RPS17 +PWCOMMONS Translation initiation complex formation RPS26 +PWCOMMONS Translation initiation complex formation RPS11 +PWCOMMONS Translation initiation complex formation RPS5 +PWCOMMONS Translation initiation complex formation FAU +PWCOMMONS Translation initiation complex formation RPS15A +PWCOMMONS Translation initiation complex formation RPS13 +PWCOMMONS Translation initiation complex formation RPS6 +PWCOMMONS Translation initiation complex formation RPS3A +PWCOMMONS Translation initiation complex formation RPS7 +PWCOMMONS Translation initiation complex formation RPS27 +PWCOMMONS Translation initiation complex formation PABPC1 +PWCOMMONS Translation initiation complex formation RPL13A +PWCOMMONS Translation initiation complex formation RPL27A +PWCOMMONS Translation initiation complex formation RPL15 +PWCOMMONS Translation initiation complex formation RPL11 +PWCOMMONS Translation initiation complex formation RPL29 +PWCOMMONS Translation initiation complex formation RPL30 +PWCOMMONS Translation initiation complex formation RPL8 +PWCOMMONS Translation initiation complex formation RPL22 +PWCOMMONS Translation initiation complex formation RPL28 +PWCOMMONS Translation initiation complex formation RPL7A +PWCOMMONS Translation initiation complex formation RPL31 +PWCOMMONS Translation initiation complex formation RPL35A +PWCOMMONS Translation initiation complex formation RPL26L1 +PWCOMMONS Translation initiation complex formation RPL26 +PWCOMMONS Translation initiation complex formation RPL18A +PWCOMMONS Translation initiation complex formation RPL14 +PWCOMMONS Translation initiation complex formation RPLP2 +PWCOMMONS Translation initiation complex formation RPL10 +PWCOMMONS Translation initiation complex formation RPL34 +PWCOMMONS Translation initiation complex formation RPL37 +PWCOMMONS Translation initiation complex formation RPL32 +PWCOMMONS Translation initiation complex formation RPL3L +PWCOMMONS Translation initiation complex formation RPL36 +PWCOMMONS Translation initiation complex formation RPLP1 +PWCOMMONS Translation initiation complex formation RPL23A +PWCOMMONS Translation initiation complex formation RPL24 +PWCOMMONS Translation initiation complex formation RPL6 +PWCOMMONS Translation initiation complex formation RPL18 +PWCOMMONS Translation initiation complex formation RPL5 +PWCOMMONS Translation initiation complex formation RPL19 +PWCOMMONS Translation initiation complex formation RPL23 +PWCOMMONS Translation initiation complex formation RPL41 +PWCOMMONS Translation initiation complex formation RPL7 +PWCOMMONS Translation initiation complex formation RPL27 +PWCOMMONS Translation initiation complex formation RPL17 +PWCOMMONS Translation initiation complex formation RPL3 +PWCOMMONS Translation initiation complex formation RPL10A +PWCOMMONS Translation initiation complex formation RPL21 +PWCOMMONS Translation initiation complex formation RPL4 +PWCOMMONS Translation initiation complex formation RPL35 +PWCOMMONS Translation initiation complex formation RPL13 +PWCOMMONS Translation initiation complex formation RPL39 +PWCOMMONS Translation initiation complex formation RPL36A +PWCOMMONS Translation initiation complex formation RPL38 +PWCOMMONS Translation initiation complex formation RPL9 +PWCOMMONS Translation initiation complex formation RPLP0 +PWCOMMONS Translation initiation complex formation UBA52 +PWCOMMONS Translation initiation complex formation RPL37A +PWCOMMONS Translation initiation complex formation RPL12 +PWCOMMONS Translation initiation complex formation +PWCOMMONS Formation of the Editosome NUP85 +PWCOMMONS Formation of the Editosome NUP35 +PWCOMMONS Formation of the Editosome AAAS +PWCOMMONS Formation of the Editosome NUP50 +PWCOMMONS Formation of the Editosome NUP43 +PWCOMMONS Formation of the Editosome NUP205 +PWCOMMONS Formation of the Editosome NUP93 +PWCOMMONS Formation of the Editosome NUP88 +PWCOMMONS Formation of the Editosome NUPL2 +PWCOMMONS Formation of the Editosome NUP210 +PWCOMMONS Formation of the Editosome NUP155 +PWCOMMONS Formation of the Editosome RANBP2 +PWCOMMONS Formation of the Editosome RAE1 +PWCOMMONS Formation of the Editosome NUP188 +PWCOMMONS Formation of the Editosome NUP214 +PWCOMMONS Formation of the Editosome NUP54 +PWCOMMONS Formation of the Editosome NUP62 +PWCOMMONS Formation of the Editosome NUP107 +PWCOMMONS Formation of the Editosome NUP133 +PWCOMMONS Formation of the Editosome NUP160 +PWCOMMONS Formation of the Editosome NUP37 +PWCOMMONS Formation of the Editosome EIF1AX +PWCOMMONS Formation of the Editosome EIF4H +PWCOMMONS Formation of the Editosome EIF4B +PWCOMMONS Formation of the Editosome EIF4E +PWCOMMONS Formation of the Editosome EIF4G1 +PWCOMMONS Formation of the Editosome EIF4A2 +PWCOMMONS Formation of the Editosome EIF2S3 +PWCOMMONS Formation of the Editosome EIF2S2 +PWCOMMONS Formation of the Editosome EIF2S1 +PWCOMMONS Formation of the Editosome EIF3K +PWCOMMONS Formation of the Editosome EIF3H +PWCOMMONS Formation of the Editosome EIF3E +PWCOMMONS Formation of the Editosome EIF3F +PWCOMMONS Formation of the Editosome EIF3J +PWCOMMONS Formation of the Editosome EIF3G +PWCOMMONS Formation of the Editosome EIF3C +PWCOMMONS Formation of the Editosome EIF3A +PWCOMMONS Formation of the Editosome EIF3I +PWCOMMONS Formation of the Editosome EIF3D +PWCOMMONS Formation of the Editosome EIF3B +PWCOMMONS Formation of the Editosome RPS23 +PWCOMMONS Formation of the Editosome RPS16 +PWCOMMONS Formation of the Editosome RPS12 +PWCOMMONS Formation of the Editosome RPS29 +PWCOMMONS Formation of the Editosome RPSA +PWCOMMONS Formation of the Editosome RPS21 +PWCOMMONS Formation of the Editosome RPS27A +PWCOMMONS Formation of the Editosome RPS20 +PWCOMMONS Formation of the Editosome RPS15 +PWCOMMONS Formation of the Editosome RPS24 +PWCOMMONS Formation of the Editosome RPS9 +PWCOMMONS Formation of the Editosome RPS10 +PWCOMMONS Formation of the Editosome RPS28 +PWCOMMONS Formation of the Editosome RPS2 +PWCOMMONS Formation of the Editosome RPS19 +PWCOMMONS Formation of the Editosome RPS4X +PWCOMMONS Formation of the Editosome RPS18 +PWCOMMONS Formation of the Editosome RPS8 +PWCOMMONS Formation of the Editosome RPS3 +PWCOMMONS Formation of the Editosome RPS4Y1 +PWCOMMONS Formation of the Editosome RPS25 +PWCOMMONS Formation of the Editosome RPS14 +PWCOMMONS Formation of the Editosome RPS17 +PWCOMMONS Formation of the Editosome RPS26 +PWCOMMONS Formation of the Editosome RPS11 +PWCOMMONS Formation of the Editosome RPS5 +PWCOMMONS Formation of the Editosome FAU +PWCOMMONS Formation of the Editosome RPS15A +PWCOMMONS Formation of the Editosome RPS13 +PWCOMMONS Formation of the Editosome RPS6 +PWCOMMONS Formation of the Editosome RPS3A +PWCOMMONS Formation of the Editosome RPS7 +PWCOMMONS Formation of the Editosome RPS27 +PWCOMMONS Formation of the Editosome RPL27A +PWCOMMONS Formation of the Editosome RPL15 +PWCOMMONS Formation of the Editosome RPL11 +PWCOMMONS Formation of the Editosome RPL29 +PWCOMMONS Formation of the Editosome RPL30 +PWCOMMONS Formation of the Editosome RPL8 +PWCOMMONS Formation of the Editosome RPL22 +PWCOMMONS Formation of the Editosome RPL28 +PWCOMMONS Formation of the Editosome RPL7A +PWCOMMONS Formation of the Editosome RPL35A +PWCOMMONS Formation of the Editosome RPL31 +PWCOMMONS Formation of the Editosome RPL26L1 +PWCOMMONS Formation of the Editosome RPL26 +PWCOMMONS Formation of the Editosome RPL18A +PWCOMMONS Formation of the Editosome RPL14 +PWCOMMONS Formation of the Editosome RPLP2 +PWCOMMONS Formation of the Editosome RPL10 +PWCOMMONS Formation of the Editosome RPL34 +PWCOMMONS Formation of the Editosome RPL37 +PWCOMMONS Formation of the Editosome RPL3L +PWCOMMONS Formation of the Editosome RPL32 +PWCOMMONS Formation of the Editosome RPL36 +PWCOMMONS Formation of the Editosome RPLP1 +PWCOMMONS Formation of the Editosome RPL23A +PWCOMMONS Formation of the Editosome RPL24 +PWCOMMONS Formation of the Editosome RPL6 +PWCOMMONS Formation of the Editosome RPL18 +PWCOMMONS Formation of the Editosome RPL5 +PWCOMMONS Formation of the Editosome RPL23 +PWCOMMONS Formation of the Editosome RPL19 +PWCOMMONS Formation of the Editosome RPL41 +PWCOMMONS Formation of the Editosome RPL7 +PWCOMMONS Formation of the Editosome RPL13A +PWCOMMONS Formation of the Editosome RPL27 +PWCOMMONS Formation of the Editosome RPL17 +PWCOMMONS Formation of the Editosome RPL3 +PWCOMMONS Formation of the Editosome RPL10A +PWCOMMONS Formation of the Editosome RPL21 +PWCOMMONS Formation of the Editosome RPL4 +PWCOMMONS Formation of the Editosome RPL35 +PWCOMMONS Formation of the Editosome RPL13 +PWCOMMONS Formation of the Editosome RPL39 +PWCOMMONS Formation of the Editosome RPL38 +PWCOMMONS Formation of the Editosome RPL36A +PWCOMMONS Formation of the Editosome RPL9 +PWCOMMONS Formation of the Editosome RPLP0 +PWCOMMONS Formation of the Editosome UBA52 +PWCOMMONS Formation of the Editosome RPL37A +PWCOMMONS Formation of the Editosome RPL12 +PWCOMMONS Formation of the Editosome EEF1A1 +PWCOMMONS Formation of the Editosome EIF2B5 +PWCOMMONS Formation of the Editosome EIF2B1 +PWCOMMONS Formation of the Editosome EIF2B3 +PWCOMMONS Formation of the Editosome EIF2B4 +PWCOMMONS Formation of the Editosome EIF2B2 +PWCOMMONS Formation of the Editosome NXF1 +PWCOMMONS Formation of the Editosome SFRS2 +PWCOMMONS Formation of the Editosome CDC40 +PWCOMMONS Formation of the Editosome SFRS3 +PWCOMMONS Formation of the Editosome SFRS11 +PWCOMMONS Formation of the Editosome U2AF2 +PWCOMMONS Formation of the Editosome SFRS9 +PWCOMMONS Formation of the Editosome SFRS5 +PWCOMMONS Formation of the Editosome SFRS7 +PWCOMMONS Formation of the Editosome SFRS4 +PWCOMMONS Formation of the Editosome SFRS6 +PWCOMMONS Formation of the Editosome DHX38 +PWCOMMONS Formation of the Editosome U2AF1 +PWCOMMONS Formation of the Editosome SFRS1 +PWCOMMONS Formation of the Editosome RNPS1 +PWCOMMONS Formation of the Editosome UPF3B +PWCOMMONS Formation of the Editosome SRRM1 +PWCOMMONS Formation of the Editosome THOC4 +PWCOMMONS Formation of the Editosome RBM8A +PWCOMMONS Formation of the Editosome MAGOH +PWCOMMONS Formation of the Editosome NCBP2 +PWCOMMONS Formation of the Editosome NCBP1 +PWCOMMONS Formation of the Editosome EIF5 +PWCOMMONS Formation of the Editosome APOBEC1 +PWCOMMONS Formation of the Editosome EEF1G +PWCOMMONS Formation of the Editosome EEF1D +PWCOMMONS Formation of the Editosome EEF1B2 +PWCOMMONS Formation of the Editosome PABPC1 +PWCOMMONS Formation of the Editosome CSTF2 +PWCOMMONS Formation of the Editosome CSTF1 +PWCOMMONS Formation of the Editosome CSTF3 +PWCOMMONS Formation of the Editosome PABPN1 +PWCOMMONS Formation of the Editosome PAPOLA +PWCOMMONS Formation of the Editosome CPSF2 +PWCOMMONS Formation of the Editosome CPSF1 +PWCOMMONS Formation of the Editosome CPSF3 +PWCOMMONS Formation of the Editosome PCF11 +PWCOMMONS Formation of the Editosome CLP1 +PWCOMMONS Formation of the Editosome CPSF7 +PWCOMMONS Formation of the Editosome NUDT21 +PWCOMMONS Formation of the Editosome ETF1 +PWCOMMONS Formation of the Editosome GSPT2 +PWCOMMONS Formation of the Editosome EIF5B +PWCOMMONS Formation of the Editosome EEF2 +PWCOMMONS Formation of the Editosome +PWCOMMONS mRNA Editing: A to I Conversion ADARB1 +PWCOMMONS mRNA Editing: A to I Conversion +PWCOMMONS Formation of editosomes by ADAR proteins ADARB1 +PWCOMMONS Formation of editosomes by ADAR proteins +PWCOMMONS C6 deamination of adenosine ADARB1 +PWCOMMONS C6 deamination of adenosine +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF4H +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF4B +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF4E +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF4G1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF4A2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF2S3 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF2S2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF2S1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF3K +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF3H +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF3E +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF3F +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF3J +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF3G +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF3C +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF3A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF3I +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF3D +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF3B +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS23 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS16 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS12 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS29 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPSA +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS21 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS27A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS20 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS15 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS24 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS9 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS10 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS28 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS19 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS4X +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS18 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS8 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS3 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS4Y1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS25 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS14 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS17 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS26 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS11 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS5 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region FAU +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS15A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS13 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS6 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS3A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS7 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPS27 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP153 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP85 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP35 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region AAAS +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP50 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP43 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP205 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP93 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP88 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUPL2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP210 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP155 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RANBP2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RAE1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP188 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP214 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP54 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP62 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP107 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP133 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP160 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUP37 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL27A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL15 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL11 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL29 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL30 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL8 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL22 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL28 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL7A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL35A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL31 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL26L1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL26 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL18A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL14 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPLP2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL10 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL34 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL37 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL3L +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL32 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL36 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPLP1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL23A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL24 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL6 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL18 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL5 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL23 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL19 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL41 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL7 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL13A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL27 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL17 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL3 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL10A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL21 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL4 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL35 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL13 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL39 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL38 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL36A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL9 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPLP0 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region UBA52 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL37A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RPL12 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EEF1A1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region PCF11 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region CLP1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region CPSF7 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NUDT21 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF2B5 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF2B1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF2B3 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF2B4 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF2B2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region PABPN1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region PAPOLA +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NCBP2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NCBP1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region CPSF2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region CPSF1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region CPSF3 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region CSTF2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region CSTF1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region CSTF3 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region ETF1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region GSPT2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region PABPC1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region SFRS2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region CDC40 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region SFRS3 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region SFRS11 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region U2AF2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region SFRS9 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region SFRS5 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region SFRS7 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region SFRS4 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region SFRS6 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region DHX38 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region U2AF1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region SFRS1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RNPS1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region UPF3B +PWCOMMONS Cleavage of Growing Transcript in the Termination Region SRRM1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region THOC4 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region RBM8A +PWCOMMONS Cleavage of Growing Transcript in the Termination Region MAGOH +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EEF1G +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EEF1D +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EEF1B2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region NXF1 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF5 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EIF5B +PWCOMMONS Cleavage of Growing Transcript in the Termination Region EEF2 +PWCOMMONS Cleavage of Growing Transcript in the Termination Region +PWCOMMONS mRNA Splicing NUP85 +PWCOMMONS mRNA Splicing NUP35 +PWCOMMONS mRNA Splicing AAAS +PWCOMMONS mRNA Splicing NUP50 +PWCOMMONS mRNA Splicing NUP43 +PWCOMMONS mRNA Splicing NUP205 +PWCOMMONS mRNA Splicing NUP93 +PWCOMMONS mRNA Splicing NUP88 +PWCOMMONS mRNA Splicing NUPL2 +PWCOMMONS mRNA Splicing NUP210 +PWCOMMONS mRNA Splicing NUP155 +PWCOMMONS mRNA Splicing RANBP2 +PWCOMMONS mRNA Splicing RAE1 +PWCOMMONS mRNA Splicing NUP188 +PWCOMMONS mRNA Splicing NUP214 +PWCOMMONS mRNA Splicing NUP54 +PWCOMMONS mRNA Splicing NUP62 +PWCOMMONS mRNA Splicing NUP107 +PWCOMMONS mRNA Splicing NUP133 +PWCOMMONS mRNA Splicing NUP160 +PWCOMMONS mRNA Splicing NUP37 +PWCOMMONS mRNA Splicing EIF1AX +PWCOMMONS mRNA Splicing EIF4H +PWCOMMONS mRNA Splicing EIF4B +PWCOMMONS mRNA Splicing EIF4E +PWCOMMONS mRNA Splicing EIF4G1 +PWCOMMONS mRNA Splicing EIF4A2 +PWCOMMONS mRNA Splicing EIF2S3 +PWCOMMONS mRNA Splicing EIF2S2 +PWCOMMONS mRNA Splicing EIF2S1 +PWCOMMONS mRNA Splicing EIF3K +PWCOMMONS mRNA Splicing EIF3H +PWCOMMONS mRNA Splicing EIF3E +PWCOMMONS mRNA Splicing EIF3F +PWCOMMONS mRNA Splicing EIF3J +PWCOMMONS mRNA Splicing EIF3G +PWCOMMONS mRNA Splicing EIF3C +PWCOMMONS mRNA Splicing EIF3A +PWCOMMONS mRNA Splicing EIF3I +PWCOMMONS mRNA Splicing EIF3D +PWCOMMONS mRNA Splicing EIF3B +PWCOMMONS mRNA Splicing RPS23 +PWCOMMONS mRNA Splicing RPS16 +PWCOMMONS mRNA Splicing RPS12 +PWCOMMONS mRNA Splicing RPS29 +PWCOMMONS mRNA Splicing RPSA +PWCOMMONS mRNA Splicing RPS21 +PWCOMMONS mRNA Splicing RPS27A +PWCOMMONS mRNA Splicing RPS20 +PWCOMMONS mRNA Splicing RPS15 +PWCOMMONS mRNA Splicing RPS24 +PWCOMMONS mRNA Splicing RPS9 +PWCOMMONS mRNA Splicing RPS10 +PWCOMMONS mRNA Splicing RPS28 +PWCOMMONS mRNA Splicing RPS2 +PWCOMMONS mRNA Splicing RPS19 +PWCOMMONS mRNA Splicing RPS4X +PWCOMMONS mRNA Splicing RPS18 +PWCOMMONS mRNA Splicing RPS8 +PWCOMMONS mRNA Splicing RPS3 +PWCOMMONS mRNA Splicing RPS4Y1 +PWCOMMONS mRNA Splicing RPS25 +PWCOMMONS mRNA Splicing RPS14 +PWCOMMONS mRNA Splicing RPS17 +PWCOMMONS mRNA Splicing RPS26 +PWCOMMONS mRNA Splicing RPS11 +PWCOMMONS mRNA Splicing RPS5 +PWCOMMONS mRNA Splicing FAU +PWCOMMONS mRNA Splicing RPS15A +PWCOMMONS mRNA Splicing RPS13 +PWCOMMONS mRNA Splicing RPS6 +PWCOMMONS mRNA Splicing RPS3A +PWCOMMONS mRNA Splicing RPS7 +PWCOMMONS mRNA Splicing RPS27 +PWCOMMONS mRNA Splicing RPL27A +PWCOMMONS mRNA Splicing RPL15 +PWCOMMONS mRNA Splicing RPL11 +PWCOMMONS mRNA Splicing RPL29 +PWCOMMONS mRNA Splicing RPL30 +PWCOMMONS mRNA Splicing RPL8 +PWCOMMONS mRNA Splicing RPL22 +PWCOMMONS mRNA Splicing RPL28 +PWCOMMONS mRNA Splicing RPL7A +PWCOMMONS mRNA Splicing RPL35A +PWCOMMONS mRNA Splicing RPL31 +PWCOMMONS mRNA Splicing RPL26L1 +PWCOMMONS mRNA Splicing RPL26 +PWCOMMONS mRNA Splicing RPL18A +PWCOMMONS mRNA Splicing RPL14 +PWCOMMONS mRNA Splicing RPLP2 +PWCOMMONS mRNA Splicing RPL10 +PWCOMMONS mRNA Splicing RPL34 +PWCOMMONS mRNA Splicing RPL37 +PWCOMMONS mRNA Splicing RPL3L +PWCOMMONS mRNA Splicing RPL32 +PWCOMMONS mRNA Splicing RPL36 +PWCOMMONS mRNA Splicing RPLP1 +PWCOMMONS mRNA Splicing RPL23A +PWCOMMONS mRNA Splicing RPL24 +PWCOMMONS mRNA Splicing RPL6 +PWCOMMONS mRNA Splicing RPL18 +PWCOMMONS mRNA Splicing RPL5 +PWCOMMONS mRNA Splicing RPL23 +PWCOMMONS mRNA Splicing RPL19 +PWCOMMONS mRNA Splicing RPL41 +PWCOMMONS mRNA Splicing RPL7 +PWCOMMONS mRNA Splicing RPL13A +PWCOMMONS mRNA Splicing RPL27 +PWCOMMONS mRNA Splicing RPL17 +PWCOMMONS mRNA Splicing RPL3 +PWCOMMONS mRNA Splicing RPL10A +PWCOMMONS mRNA Splicing RPL21 +PWCOMMONS mRNA Splicing RPL4 +PWCOMMONS mRNA Splicing RPL35 +PWCOMMONS mRNA Splicing RPL13 +PWCOMMONS mRNA Splicing RPL39 +PWCOMMONS mRNA Splicing RPL38 +PWCOMMONS mRNA Splicing RPL36A +PWCOMMONS mRNA Splicing RPL9 +PWCOMMONS mRNA Splicing RPLP0 +PWCOMMONS mRNA Splicing UBA52 +PWCOMMONS mRNA Splicing RPL37A +PWCOMMONS mRNA Splicing RPL12 +PWCOMMONS mRNA Splicing EEF1A1 +PWCOMMONS mRNA Splicing EIF2B5 +PWCOMMONS mRNA Splicing EIF2B1 +PWCOMMONS mRNA Splicing EIF2B3 +PWCOMMONS mRNA Splicing EIF2B4 +PWCOMMONS mRNA Splicing EIF2B2 +PWCOMMONS mRNA Splicing NXF1 +PWCOMMONS mRNA Splicing SFRS2 +PWCOMMONS mRNA Splicing CDC40 +PWCOMMONS mRNA Splicing SFRS3 +PWCOMMONS mRNA Splicing SFRS11 +PWCOMMONS mRNA Splicing U2AF2 +PWCOMMONS mRNA Splicing SFRS9 +PWCOMMONS mRNA Splicing SFRS5 +PWCOMMONS mRNA Splicing SFRS7 +PWCOMMONS mRNA Splicing SFRS4 +PWCOMMONS mRNA Splicing SFRS6 +PWCOMMONS mRNA Splicing DHX38 +PWCOMMONS mRNA Splicing U2AF1 +PWCOMMONS mRNA Splicing SFRS1 +PWCOMMONS mRNA Splicing RNPS1 +PWCOMMONS mRNA Splicing UPF3B +PWCOMMONS mRNA Splicing SRRM1 +PWCOMMONS mRNA Splicing THOC4 +PWCOMMONS mRNA Splicing RBM8A +PWCOMMONS mRNA Splicing MAGOH +PWCOMMONS mRNA Splicing NCBP2 +PWCOMMONS mRNA Splicing NCBP1 +PWCOMMONS mRNA Splicing EIF5 +PWCOMMONS mRNA Splicing APOBEC1 +PWCOMMONS mRNA Splicing EEF1G +PWCOMMONS mRNA Splicing EEF1D +PWCOMMONS mRNA Splicing EEF1B2 +PWCOMMONS mRNA Splicing PABPC1 +PWCOMMONS mRNA Splicing CSTF2 +PWCOMMONS mRNA Splicing CSTF1 +PWCOMMONS mRNA Splicing CSTF3 +PWCOMMONS mRNA Splicing PABPN1 +PWCOMMONS mRNA Splicing PAPOLA +PWCOMMONS mRNA Splicing CPSF2 +PWCOMMONS mRNA Splicing CPSF1 +PWCOMMONS mRNA Splicing CPSF3 +PWCOMMONS mRNA Splicing PCF11 +PWCOMMONS mRNA Splicing CLP1 +PWCOMMONS mRNA Splicing CPSF7 +PWCOMMONS mRNA Splicing NUDT21 +PWCOMMONS mRNA Splicing ETF1 +PWCOMMONS mRNA Splicing GSPT2 +PWCOMMONS mRNA Splicing EIF5B +PWCOMMONS mRNA Splicing EEF2 +PWCOMMONS mRNA Splicing EFTUD2 +PWCOMMONS mRNA Splicing PRPF6 +PWCOMMONS mRNA Splicing DDX23 +PWCOMMONS mRNA Splicing TXNL4A +PWCOMMONS mRNA Splicing PRPF8 +PWCOMMONS mRNA Splicing SNRNP200 +PWCOMMONS mRNA Splicing SNRNP40 +PWCOMMONS mRNA Splicing NHP2L1 +PWCOMMONS mRNA Splicing LSM2 +PWCOMMONS mRNA Splicing SNRPG +PWCOMMONS mRNA Splicing SNRPD3 +PWCOMMONS mRNA Splicing SNRPF +PWCOMMONS mRNA Splicing SNRPB +PWCOMMONS mRNA Splicing SNRPD2 +PWCOMMONS mRNA Splicing SNRPE +PWCOMMONS mRNA Splicing SNRPD1 +PWCOMMONS mRNA Splicing GTF2F1 +PWCOMMONS mRNA Splicing GTF2F2 +PWCOMMONS mRNA Splicing POLR2G +PWCOMMONS mRNA Splicing POLR2B +PWCOMMONS mRNA Splicing POLR2L +PWCOMMONS mRNA Splicing POLR2A +PWCOMMONS mRNA Splicing POLR2K +PWCOMMONS mRNA Splicing POLR2H +PWCOMMONS mRNA Splicing POLR2D +PWCOMMONS mRNA Splicing POLR2C +PWCOMMONS mRNA Splicing POLR2J +PWCOMMONS mRNA Splicing POLR2I +PWCOMMONS mRNA Splicing POLR2F +PWCOMMONS mRNA Splicing POLR2E +PWCOMMONS mRNA Splicing SF3B14 +PWCOMMONS mRNA Splicing SF3B2 +PWCOMMONS mRNA Splicing SF3B5 +PWCOMMONS mRNA Splicing SF3B3 +PWCOMMONS mRNA Splicing SF3B1 +PWCOMMONS mRNA Splicing SF3B4 +PWCOMMONS mRNA Splicing HNRNPD +PWCOMMONS mRNA Splicing HNRNPA3 +PWCOMMONS mRNA Splicing HNRNPH2 +PWCOMMONS mRNA Splicing HNRNPM +PWCOMMONS mRNA Splicing DNAJC8 +PWCOMMONS mRNA Splicing HNRNPUL1 +PWCOMMONS mRNA Splicing CD2BP2 +PWCOMMONS mRNA Splicing HNRNPH1 +PWCOMMONS mRNA Splicing HNRNPA0 +PWCOMMONS mRNA Splicing PCBP1 +PWCOMMONS mRNA Splicing SF4 +PWCOMMONS mRNA Splicing HNRNPL +PWCOMMONS mRNA Splicing HNRNPA2B1 +PWCOMMONS mRNA Splicing YBX1 +PWCOMMONS mRNA Splicing HNRNPA1 +PWCOMMONS mRNA Splicing HNRNPR +PWCOMMONS mRNA Splicing HNRNPC +PWCOMMONS mRNA Splicing PTBP1 +PWCOMMONS mRNA Splicing PCBP2 +PWCOMMONS mRNA Splicing SMC1A +PWCOMMONS mRNA Splicing RBM5 +PWCOMMONS mRNA Splicing HNRNPU +PWCOMMONS mRNA Splicing DHX9 +PWCOMMONS mRNA Splicing CCAR1 +PWCOMMONS mRNA Splicing HNRNPF +PWCOMMONS mRNA Splicing RBMX +PWCOMMONS mRNA Splicing PRPF4 +PWCOMMONS mRNA Splicing PHF5A +PWCOMMONS mRNA Splicing SNRPB2 +PWCOMMONS mRNA Splicing SNRPA1 +PWCOMMONS mRNA Splicing SF3A3 +PWCOMMONS mRNA Splicing SF3A1 +PWCOMMONS mRNA Splicing SF3A2 +PWCOMMONS mRNA Splicing SNRNP70 +PWCOMMONS mRNA Splicing SNRPA +PWCOMMONS mRNA Splicing +PWCOMMONS mRNA Splicing - Major Pathway EIF4H +PWCOMMONS mRNA Splicing - Major Pathway EIF4B +PWCOMMONS mRNA Splicing - Major Pathway EIF4E +PWCOMMONS mRNA Splicing - Major Pathway EIF4G1 +PWCOMMONS mRNA Splicing - Major Pathway EIF4A2 +PWCOMMONS mRNA Splicing - Major Pathway EIF2S3 +PWCOMMONS mRNA Splicing - Major Pathway EIF2S2 +PWCOMMONS mRNA Splicing - Major Pathway EIF2S1 +PWCOMMONS mRNA Splicing - Major Pathway EIF3K +PWCOMMONS mRNA Splicing - Major Pathway EIF3H +PWCOMMONS mRNA Splicing - Major Pathway EIF3E +PWCOMMONS mRNA Splicing - Major Pathway EIF3F +PWCOMMONS mRNA Splicing - Major Pathway EIF3J +PWCOMMONS mRNA Splicing - Major Pathway EIF3G +PWCOMMONS mRNA Splicing - Major Pathway EIF3C +PWCOMMONS mRNA Splicing - Major Pathway EIF3A +PWCOMMONS mRNA Splicing - Major Pathway EIF3I +PWCOMMONS mRNA Splicing - Major Pathway EIF3D +PWCOMMONS mRNA Splicing - Major Pathway EIF3B +PWCOMMONS mRNA Splicing - Major Pathway RPS23 +PWCOMMONS mRNA Splicing - Major Pathway RPS16 +PWCOMMONS mRNA Splicing - Major Pathway RPS12 +PWCOMMONS mRNA Splicing - Major Pathway RPS29 +PWCOMMONS mRNA Splicing - Major Pathway RPSA +PWCOMMONS mRNA Splicing - Major Pathway RPS21 +PWCOMMONS mRNA Splicing - Major Pathway RPS27A +PWCOMMONS mRNA Splicing - Major Pathway RPS20 +PWCOMMONS mRNA Splicing - Major Pathway RPS15 +PWCOMMONS mRNA Splicing - Major Pathway RPS24 +PWCOMMONS mRNA Splicing - Major Pathway RPS9 +PWCOMMONS mRNA Splicing - Major Pathway RPS10 +PWCOMMONS mRNA Splicing - Major Pathway RPS28 +PWCOMMONS mRNA Splicing - Major Pathway RPS2 +PWCOMMONS mRNA Splicing - Major Pathway RPS19 +PWCOMMONS mRNA Splicing - Major Pathway RPS4X +PWCOMMONS mRNA Splicing - Major Pathway RPS18 +PWCOMMONS mRNA Splicing - Major Pathway RPS8 +PWCOMMONS mRNA Splicing - Major Pathway RPS3 +PWCOMMONS mRNA Splicing - Major Pathway RPS4Y1 +PWCOMMONS mRNA Splicing - Major Pathway RPS25 +PWCOMMONS mRNA Splicing - Major Pathway RPS14 +PWCOMMONS mRNA Splicing - Major Pathway RPS17 +PWCOMMONS mRNA Splicing - Major Pathway RPS26 +PWCOMMONS mRNA Splicing - Major Pathway RPS11 +PWCOMMONS mRNA Splicing - Major Pathway RPS5 +PWCOMMONS mRNA Splicing - Major Pathway FAU +PWCOMMONS mRNA Splicing - Major Pathway RPS15A +PWCOMMONS mRNA Splicing - Major Pathway RPS13 +PWCOMMONS mRNA Splicing - Major Pathway RPS6 +PWCOMMONS mRNA Splicing - Major Pathway RPS3A +PWCOMMONS mRNA Splicing - Major Pathway RPS7 +PWCOMMONS mRNA Splicing - Major Pathway RPS27 +PWCOMMONS mRNA Splicing - Major Pathway NUP153 +PWCOMMONS mRNA Splicing - Major Pathway NUP85 +PWCOMMONS mRNA Splicing - Major Pathway NUP35 +PWCOMMONS mRNA Splicing - Major Pathway AAAS +PWCOMMONS mRNA Splicing - Major Pathway NUP50 +PWCOMMONS mRNA Splicing - Major Pathway NUP43 +PWCOMMONS mRNA Splicing - Major Pathway NUP205 +PWCOMMONS mRNA Splicing - Major Pathway NUP93 +PWCOMMONS mRNA Splicing - Major Pathway NUP88 +PWCOMMONS mRNA Splicing - Major Pathway NUPL2 +PWCOMMONS mRNA Splicing - Major Pathway NUP210 +PWCOMMONS mRNA Splicing - Major Pathway NUP155 +PWCOMMONS mRNA Splicing - Major Pathway RANBP2 +PWCOMMONS mRNA Splicing - Major Pathway RAE1 +PWCOMMONS mRNA Splicing - Major Pathway NUP188 +PWCOMMONS mRNA Splicing - Major Pathway NUP214 +PWCOMMONS mRNA Splicing - Major Pathway NUP54 +PWCOMMONS mRNA Splicing - Major Pathway NUP62 +PWCOMMONS mRNA Splicing - Major Pathway NUP107 +PWCOMMONS mRNA Splicing - Major Pathway NUP133 +PWCOMMONS mRNA Splicing - Major Pathway NUP160 +PWCOMMONS mRNA Splicing - Major Pathway NUP37 +PWCOMMONS mRNA Splicing - Major Pathway RPL27A +PWCOMMONS mRNA Splicing - Major Pathway RPL15 +PWCOMMONS mRNA Splicing - Major Pathway RPL11 +PWCOMMONS mRNA Splicing - Major Pathway RPL29 +PWCOMMONS mRNA Splicing - Major Pathway RPL30 +PWCOMMONS mRNA Splicing - Major Pathway RPL8 +PWCOMMONS mRNA Splicing - Major Pathway RPL22 +PWCOMMONS mRNA Splicing - Major Pathway RPL28 +PWCOMMONS mRNA Splicing - Major Pathway RPL7A +PWCOMMONS mRNA Splicing - Major Pathway RPL35A +PWCOMMONS mRNA Splicing - Major Pathway RPL31 +PWCOMMONS mRNA Splicing - Major Pathway RPL26L1 +PWCOMMONS mRNA Splicing - Major Pathway RPL26 +PWCOMMONS mRNA Splicing - Major Pathway RPL18A +PWCOMMONS mRNA Splicing - Major Pathway RPL14 +PWCOMMONS mRNA Splicing - Major Pathway RPLP2 +PWCOMMONS mRNA Splicing - Major Pathway RPL10 +PWCOMMONS mRNA Splicing - Major Pathway RPL34 +PWCOMMONS mRNA Splicing - Major Pathway RPL37 +PWCOMMONS mRNA Splicing - Major Pathway RPL3L +PWCOMMONS mRNA Splicing - Major Pathway RPL32 +PWCOMMONS mRNA Splicing - Major Pathway RPL36 +PWCOMMONS mRNA Splicing - Major Pathway RPLP1 +PWCOMMONS mRNA Splicing - Major Pathway RPL23A +PWCOMMONS mRNA Splicing - Major Pathway RPL24 +PWCOMMONS mRNA Splicing - Major Pathway RPL6 +PWCOMMONS mRNA Splicing - Major Pathway RPL18 +PWCOMMONS mRNA Splicing - Major Pathway RPL5 +PWCOMMONS mRNA Splicing - Major Pathway RPL23 +PWCOMMONS mRNA Splicing - Major Pathway RPL19 +PWCOMMONS mRNA Splicing - Major Pathway RPL41 +PWCOMMONS mRNA Splicing - Major Pathway RPL7 +PWCOMMONS mRNA Splicing - Major Pathway RPL13A +PWCOMMONS mRNA Splicing - Major Pathway RPL27 +PWCOMMONS mRNA Splicing - Major Pathway RPL17 +PWCOMMONS mRNA Splicing - Major Pathway RPL3 +PWCOMMONS mRNA Splicing - Major Pathway RPL10A +PWCOMMONS mRNA Splicing - Major Pathway RPL21 +PWCOMMONS mRNA Splicing - Major Pathway RPL4 +PWCOMMONS mRNA Splicing - Major Pathway RPL35 +PWCOMMONS mRNA Splicing - Major Pathway RPL13 +PWCOMMONS mRNA Splicing - Major Pathway RPL39 +PWCOMMONS mRNA Splicing - Major Pathway RPL38 +PWCOMMONS mRNA Splicing - Major Pathway RPL36A +PWCOMMONS mRNA Splicing - Major Pathway RPL9 +PWCOMMONS mRNA Splicing - Major Pathway RPLP0 +PWCOMMONS mRNA Splicing - Major Pathway UBA52 +PWCOMMONS mRNA Splicing - Major Pathway RPL37A +PWCOMMONS mRNA Splicing - Major Pathway RPL12 +PWCOMMONS mRNA Splicing - Major Pathway EEF1A1 +PWCOMMONS mRNA Splicing - Major Pathway EIF2B5 +PWCOMMONS mRNA Splicing - Major Pathway EIF2B1 +PWCOMMONS mRNA Splicing - Major Pathway EIF2B3 +PWCOMMONS mRNA Splicing - Major Pathway EIF2B4 +PWCOMMONS mRNA Splicing - Major Pathway EIF2B2 +PWCOMMONS mRNA Splicing - Major Pathway NXF1 +PWCOMMONS mRNA Splicing - Major Pathway SFRS2 +PWCOMMONS mRNA Splicing - Major Pathway CDC40 +PWCOMMONS mRNA Splicing - Major Pathway SFRS3 +PWCOMMONS mRNA Splicing - Major Pathway SFRS11 +PWCOMMONS mRNA Splicing - Major Pathway U2AF2 +PWCOMMONS mRNA Splicing - Major Pathway SFRS9 +PWCOMMONS mRNA Splicing - Major Pathway SFRS5 +PWCOMMONS mRNA Splicing - Major Pathway SFRS7 +PWCOMMONS mRNA Splicing - Major Pathway SFRS4 +PWCOMMONS mRNA Splicing - Major Pathway SFRS6 +PWCOMMONS mRNA Splicing - Major Pathway DHX38 +PWCOMMONS mRNA Splicing - Major Pathway U2AF1 +PWCOMMONS mRNA Splicing - Major Pathway SFRS1 +PWCOMMONS mRNA Splicing - Major Pathway RNPS1 +PWCOMMONS mRNA Splicing - Major Pathway UPF3B +PWCOMMONS mRNA Splicing - Major Pathway SRRM1 +PWCOMMONS mRNA Splicing - Major Pathway THOC4 +PWCOMMONS mRNA Splicing - Major Pathway RBM8A +PWCOMMONS mRNA Splicing - Major Pathway MAGOH +PWCOMMONS mRNA Splicing - Major Pathway NCBP2 +PWCOMMONS mRNA Splicing - Major Pathway NCBP1 +PWCOMMONS mRNA Splicing - Major Pathway EIF5 +PWCOMMONS mRNA Splicing - Major Pathway APOBEC1 +PWCOMMONS mRNA Splicing - Major Pathway EEF1G +PWCOMMONS mRNA Splicing - Major Pathway EEF1D +PWCOMMONS mRNA Splicing - Major Pathway EEF1B2 +PWCOMMONS mRNA Splicing - Major Pathway PABPC1 +PWCOMMONS mRNA Splicing - Major Pathway HNRNPD +PWCOMMONS mRNA Splicing - Major Pathway HNRNPA3 +PWCOMMONS mRNA Splicing - Major Pathway HNRNPH2 +PWCOMMONS mRNA Splicing - Major Pathway HNRNPM +PWCOMMONS mRNA Splicing - Major Pathway DNAJC8 +PWCOMMONS mRNA Splicing - Major Pathway HNRNPUL1 +PWCOMMONS mRNA Splicing - Major Pathway CD2BP2 +PWCOMMONS mRNA Splicing - Major Pathway HNRNPH1 +PWCOMMONS mRNA Splicing - Major Pathway HNRNPA0 +PWCOMMONS mRNA Splicing - Major Pathway PCBP1 +PWCOMMONS mRNA Splicing - Major Pathway SF4 +PWCOMMONS mRNA Splicing - Major Pathway HNRNPL +PWCOMMONS mRNA Splicing - Major Pathway HNRNPA2B1 +PWCOMMONS mRNA Splicing - Major Pathway YBX1 +PWCOMMONS mRNA Splicing - Major Pathway HNRNPA1 +PWCOMMONS mRNA Splicing - Major Pathway HNRNPR +PWCOMMONS mRNA Splicing - Major Pathway HNRNPC +PWCOMMONS mRNA Splicing - Major Pathway PTBP1 +PWCOMMONS mRNA Splicing - Major Pathway PCBP2 +PWCOMMONS mRNA Splicing - Major Pathway SMC1A +PWCOMMONS mRNA Splicing - Major Pathway RBM5 +PWCOMMONS mRNA Splicing - Major Pathway HNRNPU +PWCOMMONS mRNA Splicing - Major Pathway DHX9 +PWCOMMONS mRNA Splicing - Major Pathway CCAR1 +PWCOMMONS mRNA Splicing - Major Pathway HNRNPF +PWCOMMONS mRNA Splicing - Major Pathway RBMX +PWCOMMONS mRNA Splicing - Major Pathway EFTUD2 +PWCOMMONS mRNA Splicing - Major Pathway PRPF6 +PWCOMMONS mRNA Splicing - Major Pathway DDX23 +PWCOMMONS mRNA Splicing - Major Pathway TXNL4A +PWCOMMONS mRNA Splicing - Major Pathway PRPF8 +PWCOMMONS mRNA Splicing - Major Pathway SNRNP200 +PWCOMMONS mRNA Splicing - Major Pathway SNRNP40 +PWCOMMONS mRNA Splicing - Major Pathway NHP2L1 +PWCOMMONS mRNA Splicing - Major Pathway LSM2 +PWCOMMONS mRNA Splicing - Major Pathway SNRPG +PWCOMMONS mRNA Splicing - Major Pathway SNRPD3 +PWCOMMONS mRNA Splicing - Major Pathway SNRPF +PWCOMMONS mRNA Splicing - Major Pathway SNRPB +PWCOMMONS mRNA Splicing - Major Pathway SNRPD2 +PWCOMMONS mRNA Splicing - Major Pathway SNRPE +PWCOMMONS mRNA Splicing - Major Pathway SNRPD1 +PWCOMMONS mRNA Splicing - Major Pathway PABPN1 +PWCOMMONS mRNA Splicing - Major Pathway PAPOLA +PWCOMMONS mRNA Splicing - Major Pathway CSTF2 +PWCOMMONS mRNA Splicing - Major Pathway CSTF1 +PWCOMMONS mRNA Splicing - Major Pathway CSTF3 +PWCOMMONS mRNA Splicing - Major Pathway PCF11 +PWCOMMONS mRNA Splicing - Major Pathway CLP1 +PWCOMMONS mRNA Splicing - Major Pathway CPSF2 +PWCOMMONS mRNA Splicing - Major Pathway CPSF1 +PWCOMMONS mRNA Splicing - Major Pathway CPSF3 +PWCOMMONS mRNA Splicing - Major Pathway CPSF7 +PWCOMMONS mRNA Splicing - Major Pathway NUDT21 +PWCOMMONS mRNA Splicing - Major Pathway POLR2G +PWCOMMONS mRNA Splicing - Major Pathway POLR2B +PWCOMMONS mRNA Splicing - Major Pathway POLR2L +PWCOMMONS mRNA Splicing - Major Pathway POLR2A +PWCOMMONS mRNA Splicing - Major Pathway POLR2K +PWCOMMONS mRNA Splicing - Major Pathway POLR2H +PWCOMMONS mRNA Splicing - Major Pathway POLR2D +PWCOMMONS mRNA Splicing - Major Pathway POLR2C +PWCOMMONS mRNA Splicing - Major Pathway POLR2F +PWCOMMONS mRNA Splicing - Major Pathway POLR2J +PWCOMMONS mRNA Splicing - Major Pathway POLR2I +PWCOMMONS mRNA Splicing - Major Pathway POLR2E +PWCOMMONS mRNA Splicing - Major Pathway GTF2F1 +PWCOMMONS mRNA Splicing - Major Pathway GTF2F2 +PWCOMMONS mRNA Splicing - Major Pathway PRPF4 +PWCOMMONS mRNA Splicing - Major Pathway PHF5A +PWCOMMONS mRNA Splicing - Major Pathway SNRPB2 +PWCOMMONS mRNA Splicing - Major Pathway SF3B5 +PWCOMMONS mRNA Splicing - Major Pathway SNRPA1 +PWCOMMONS mRNA Splicing - Major Pathway SF3B14 +PWCOMMONS mRNA Splicing - Major Pathway SF3B2 +PWCOMMONS mRNA Splicing - Major Pathway SF3B3 +PWCOMMONS mRNA Splicing - Major Pathway SF3B1 +PWCOMMONS mRNA Splicing - Major Pathway SF3B4 +PWCOMMONS mRNA Splicing - Major Pathway SF3A3 +PWCOMMONS mRNA Splicing - Major Pathway SF3A1 +PWCOMMONS mRNA Splicing - Major Pathway SF3A2 +PWCOMMONS mRNA Splicing - Major Pathway ETF1 +PWCOMMONS mRNA Splicing - Major Pathway GSPT2 +PWCOMMONS mRNA Splicing - Major Pathway SNRNP70 +PWCOMMONS mRNA Splicing - Major Pathway SNRPA +PWCOMMONS mRNA Splicing - Major Pathway EIF5B +PWCOMMONS mRNA Splicing - Major Pathway EEF2 +PWCOMMONS mRNA Splicing - Major Pathway +PWCOMMONS mRNA 3'-end processing EIF4H +PWCOMMONS mRNA 3'-end processing EIF4B +PWCOMMONS mRNA 3'-end processing EIF4E +PWCOMMONS mRNA 3'-end processing EIF4G1 +PWCOMMONS mRNA 3'-end processing EIF4A2 +PWCOMMONS mRNA 3'-end processing EIF2S3 +PWCOMMONS mRNA 3'-end processing EIF2S2 +PWCOMMONS mRNA 3'-end processing EIF2S1 +PWCOMMONS mRNA 3'-end processing EIF3K +PWCOMMONS mRNA 3'-end processing EIF3H +PWCOMMONS mRNA 3'-end processing EIF3E +PWCOMMONS mRNA 3'-end processing EIF3F +PWCOMMONS mRNA 3'-end processing EIF3J +PWCOMMONS mRNA 3'-end processing EIF3G +PWCOMMONS mRNA 3'-end processing EIF3C +PWCOMMONS mRNA 3'-end processing EIF3A +PWCOMMONS mRNA 3'-end processing EIF3I +PWCOMMONS mRNA 3'-end processing EIF3D +PWCOMMONS mRNA 3'-end processing EIF3B +PWCOMMONS mRNA 3'-end processing RPS23 +PWCOMMONS mRNA 3'-end processing RPS16 +PWCOMMONS mRNA 3'-end processing RPS12 +PWCOMMONS mRNA 3'-end processing RPS29 +PWCOMMONS mRNA 3'-end processing RPSA +PWCOMMONS mRNA 3'-end processing RPS21 +PWCOMMONS mRNA 3'-end processing RPS27A +PWCOMMONS mRNA 3'-end processing RPS20 +PWCOMMONS mRNA 3'-end processing RPS15 +PWCOMMONS mRNA 3'-end processing RPS24 +PWCOMMONS mRNA 3'-end processing RPS9 +PWCOMMONS mRNA 3'-end processing RPS10 +PWCOMMONS mRNA 3'-end processing RPS28 +PWCOMMONS mRNA 3'-end processing RPS2 +PWCOMMONS mRNA 3'-end processing RPS19 +PWCOMMONS mRNA 3'-end processing RPS4X +PWCOMMONS mRNA 3'-end processing RPS18 +PWCOMMONS mRNA 3'-end processing RPS8 +PWCOMMONS mRNA 3'-end processing RPS3 +PWCOMMONS mRNA 3'-end processing RPS4Y1 +PWCOMMONS mRNA 3'-end processing RPS25 +PWCOMMONS mRNA 3'-end processing RPS14 +PWCOMMONS mRNA 3'-end processing RPS17 +PWCOMMONS mRNA 3'-end processing RPS26 +PWCOMMONS mRNA 3'-end processing RPS11 +PWCOMMONS mRNA 3'-end processing RPS5 +PWCOMMONS mRNA 3'-end processing FAU +PWCOMMONS mRNA 3'-end processing RPS15A +PWCOMMONS mRNA 3'-end processing RPS13 +PWCOMMONS mRNA 3'-end processing RPS6 +PWCOMMONS mRNA 3'-end processing RPS3A +PWCOMMONS mRNA 3'-end processing RPS7 +PWCOMMONS mRNA 3'-end processing RPS27 +PWCOMMONS mRNA 3'-end processing NUP153 +PWCOMMONS mRNA 3'-end processing NUP85 +PWCOMMONS mRNA 3'-end processing NUP35 +PWCOMMONS mRNA 3'-end processing AAAS +PWCOMMONS mRNA 3'-end processing NUP50 +PWCOMMONS mRNA 3'-end processing NUP43 +PWCOMMONS mRNA 3'-end processing NUP205 +PWCOMMONS mRNA 3'-end processing NUP93 +PWCOMMONS mRNA 3'-end processing NUP88 +PWCOMMONS mRNA 3'-end processing NUPL2 +PWCOMMONS mRNA 3'-end processing NUP210 +PWCOMMONS mRNA 3'-end processing NUP155 +PWCOMMONS mRNA 3'-end processing RANBP2 +PWCOMMONS mRNA 3'-end processing RAE1 +PWCOMMONS mRNA 3'-end processing NUP188 +PWCOMMONS mRNA 3'-end processing NUP214 +PWCOMMONS mRNA 3'-end processing NUP54 +PWCOMMONS mRNA 3'-end processing NUP62 +PWCOMMONS mRNA 3'-end processing NUP107 +PWCOMMONS mRNA 3'-end processing NUP133 +PWCOMMONS mRNA 3'-end processing NUP160 +PWCOMMONS mRNA 3'-end processing NUP37 +PWCOMMONS mRNA 3'-end processing RPL27A +PWCOMMONS mRNA 3'-end processing RPL15 +PWCOMMONS mRNA 3'-end processing RPL11 +PWCOMMONS mRNA 3'-end processing RPL29 +PWCOMMONS mRNA 3'-end processing RPL30 +PWCOMMONS mRNA 3'-end processing RPL8 +PWCOMMONS mRNA 3'-end processing RPL22 +PWCOMMONS mRNA 3'-end processing RPL28 +PWCOMMONS mRNA 3'-end processing RPL7A +PWCOMMONS mRNA 3'-end processing RPL35A +PWCOMMONS mRNA 3'-end processing RPL31 +PWCOMMONS mRNA 3'-end processing RPL26L1 +PWCOMMONS mRNA 3'-end processing RPL26 +PWCOMMONS mRNA 3'-end processing RPL18A +PWCOMMONS mRNA 3'-end processing RPL14 +PWCOMMONS mRNA 3'-end processing RPLP2 +PWCOMMONS mRNA 3'-end processing RPL10 +PWCOMMONS mRNA 3'-end processing RPL34 +PWCOMMONS mRNA 3'-end processing RPL37 +PWCOMMONS mRNA 3'-end processing RPL3L +PWCOMMONS mRNA 3'-end processing RPL32 +PWCOMMONS mRNA 3'-end processing RPL36 +PWCOMMONS mRNA 3'-end processing RPLP1 +PWCOMMONS mRNA 3'-end processing RPL23A +PWCOMMONS mRNA 3'-end processing RPL24 +PWCOMMONS mRNA 3'-end processing RPL6 +PWCOMMONS mRNA 3'-end processing RPL18 +PWCOMMONS mRNA 3'-end processing RPL5 +PWCOMMONS mRNA 3'-end processing RPL23 +PWCOMMONS mRNA 3'-end processing RPL19 +PWCOMMONS mRNA 3'-end processing RPL41 +PWCOMMONS mRNA 3'-end processing RPL7 +PWCOMMONS mRNA 3'-end processing RPL13A +PWCOMMONS mRNA 3'-end processing RPL27 +PWCOMMONS mRNA 3'-end processing RPL17 +PWCOMMONS mRNA 3'-end processing RPL3 +PWCOMMONS mRNA 3'-end processing RPL10A +PWCOMMONS mRNA 3'-end processing RPL21 +PWCOMMONS mRNA 3'-end processing RPL4 +PWCOMMONS mRNA 3'-end processing RPL35 +PWCOMMONS mRNA 3'-end processing RPL13 +PWCOMMONS mRNA 3'-end processing RPL39 +PWCOMMONS mRNA 3'-end processing RPL38 +PWCOMMONS mRNA 3'-end processing RPL36A +PWCOMMONS mRNA 3'-end processing RPL9 +PWCOMMONS mRNA 3'-end processing RPLP0 +PWCOMMONS mRNA 3'-end processing UBA52 +PWCOMMONS mRNA 3'-end processing RPL37A +PWCOMMONS mRNA 3'-end processing RPL12 +PWCOMMONS mRNA 3'-end processing EEF1A1 +PWCOMMONS mRNA 3'-end processing PCF11 +PWCOMMONS mRNA 3'-end processing CLP1 +PWCOMMONS mRNA 3'-end processing CPSF7 +PWCOMMONS mRNA 3'-end processing NUDT21 +PWCOMMONS mRNA 3'-end processing EIF2B5 +PWCOMMONS mRNA 3'-end processing EIF2B1 +PWCOMMONS mRNA 3'-end processing EIF2B3 +PWCOMMONS mRNA 3'-end processing EIF2B4 +PWCOMMONS mRNA 3'-end processing EIF2B2 +PWCOMMONS mRNA 3'-end processing ETF1 +PWCOMMONS mRNA 3'-end processing GSPT2 +PWCOMMONS mRNA 3'-end processing PABPC1 +PWCOMMONS mRNA 3'-end processing PAPOLA +PWCOMMONS mRNA 3'-end processing PABPN1 +PWCOMMONS mRNA 3'-end processing SFRS2 +PWCOMMONS mRNA 3'-end processing CDC40 +PWCOMMONS mRNA 3'-end processing SFRS3 +PWCOMMONS mRNA 3'-end processing SFRS11 +PWCOMMONS mRNA 3'-end processing U2AF2 +PWCOMMONS mRNA 3'-end processing SFRS9 +PWCOMMONS mRNA 3'-end processing SFRS5 +PWCOMMONS mRNA 3'-end processing SFRS7 +PWCOMMONS mRNA 3'-end processing SFRS4 +PWCOMMONS mRNA 3'-end processing SFRS6 +PWCOMMONS mRNA 3'-end processing DHX38 +PWCOMMONS mRNA 3'-end processing U2AF1 +PWCOMMONS mRNA 3'-end processing SFRS1 +PWCOMMONS mRNA 3'-end processing RNPS1 +PWCOMMONS mRNA 3'-end processing UPF3B +PWCOMMONS mRNA 3'-end processing SRRM1 +PWCOMMONS mRNA 3'-end processing THOC4 +PWCOMMONS mRNA 3'-end processing RBM8A +PWCOMMONS mRNA 3'-end processing MAGOH +PWCOMMONS mRNA 3'-end processing NCBP2 +PWCOMMONS mRNA 3'-end processing NCBP1 +PWCOMMONS mRNA 3'-end processing CPSF2 +PWCOMMONS mRNA 3'-end processing CPSF1 +PWCOMMONS mRNA 3'-end processing CPSF3 +PWCOMMONS mRNA 3'-end processing EEF1G +PWCOMMONS mRNA 3'-end processing EEF1D +PWCOMMONS mRNA 3'-end processing EEF1B2 +PWCOMMONS mRNA 3'-end processing NXF1 +PWCOMMONS mRNA 3'-end processing EIF5 +PWCOMMONS mRNA 3'-end processing EIF5B +PWCOMMONS mRNA 3'-end processing CSTF2 +PWCOMMONS mRNA 3'-end processing CSTF1 +PWCOMMONS mRNA 3'-end processing CSTF3 +PWCOMMONS mRNA 3'-end processing EEF2 +PWCOMMONS mRNA 3'-end processing +PWCOMMONS mRNA Splicing - Minor Pathway PRPF6 +PWCOMMONS mRNA Splicing - Minor Pathway DDX23 +PWCOMMONS mRNA Splicing - Minor Pathway TXNL4A +PWCOMMONS mRNA Splicing - Minor Pathway PRPF8 +PWCOMMONS mRNA Splicing - Minor Pathway SNRNP200 +PWCOMMONS mRNA Splicing - Minor Pathway SNRNP40 +PWCOMMONS mRNA Splicing - Minor Pathway NHP2L1 +PWCOMMONS mRNA Splicing - Minor Pathway LSM2 +PWCOMMONS mRNA Splicing - Minor Pathway SNRPG +PWCOMMONS mRNA Splicing - Minor Pathway SNRPD3 +PWCOMMONS mRNA Splicing - Minor Pathway SNRPF +PWCOMMONS mRNA Splicing - Minor Pathway SNRPB +PWCOMMONS mRNA Splicing - Minor Pathway SNRPD2 +PWCOMMONS mRNA Splicing - Minor Pathway SNRPE +PWCOMMONS mRNA Splicing - Minor Pathway SNRPD1 +PWCOMMONS mRNA Splicing - Minor Pathway SFRS7 +PWCOMMONS mRNA Splicing - Minor Pathway SFRS2 +PWCOMMONS mRNA Splicing - Minor Pathway SFRS6 +PWCOMMONS mRNA Splicing - Minor Pathway SFRS1 +PWCOMMONS mRNA Splicing - Minor Pathway GTF2F1 +PWCOMMONS mRNA Splicing - Minor Pathway GTF2F2 +PWCOMMONS mRNA Splicing - Minor Pathway POLR2G +PWCOMMONS mRNA Splicing - Minor Pathway POLR2B +PWCOMMONS mRNA Splicing - Minor Pathway POLR2L +PWCOMMONS mRNA Splicing - Minor Pathway POLR2A +PWCOMMONS mRNA Splicing - Minor Pathway POLR2K +PWCOMMONS mRNA Splicing - Minor Pathway POLR2H +PWCOMMONS mRNA Splicing - Minor Pathway POLR2D +PWCOMMONS mRNA Splicing - Minor Pathway POLR2C +PWCOMMONS mRNA Splicing - Minor Pathway POLR2J +PWCOMMONS mRNA Splicing - Minor Pathway POLR2I +PWCOMMONS mRNA Splicing - Minor Pathway POLR2F +PWCOMMONS mRNA Splicing - Minor Pathway POLR2E +PWCOMMONS mRNA Splicing - Minor Pathway NCBP2 +PWCOMMONS mRNA Splicing - Minor Pathway NCBP1 +PWCOMMONS mRNA Splicing - Minor Pathway SF3B14 +PWCOMMONS mRNA Splicing - Minor Pathway SF3B2 +PWCOMMONS mRNA Splicing - Minor Pathway SF3B5 +PWCOMMONS mRNA Splicing - Minor Pathway SF3B3 +PWCOMMONS mRNA Splicing - Minor Pathway SF3B1 +PWCOMMONS mRNA Splicing - Minor Pathway SF3B4 +PWCOMMONS mRNA Splicing - Minor Pathway +PWCOMMONS Formation of the Early Elongation Complex TCEA1 +PWCOMMONS Formation of the Early Elongation Complex ELL +PWCOMMONS Formation of the Early Elongation Complex TCEB3 +PWCOMMONS Formation of the Early Elongation Complex TCEB1 +PWCOMMONS Formation of the Early Elongation Complex TCEB2 +PWCOMMONS Formation of the Early Elongation Complex SSRP1 +PWCOMMONS Formation of the Early Elongation Complex SUPT16H +PWCOMMONS Formation of the Early Elongation Complex CCNT2 +PWCOMMONS Formation of the Early Elongation Complex CDK9 +PWCOMMONS Formation of the Early Elongation Complex CCNT1 +PWCOMMONS Formation of the Early Elongation Complex POLR2G +PWCOMMONS Formation of the Early Elongation Complex POLR2B +PWCOMMONS Formation of the Early Elongation Complex POLR2L +PWCOMMONS Formation of the Early Elongation Complex POLR2A +PWCOMMONS Formation of the Early Elongation Complex POLR2K +PWCOMMONS Formation of the Early Elongation Complex POLR2H +PWCOMMONS Formation of the Early Elongation Complex POLR2D +PWCOMMONS Formation of the Early Elongation Complex POLR2C +PWCOMMONS Formation of the Early Elongation Complex POLR2I +PWCOMMONS Formation of the Early Elongation Complex POLR2F +PWCOMMONS Formation of the Early Elongation Complex POLR2J +PWCOMMONS Formation of the Early Elongation Complex POLR2E +PWCOMMONS Formation of the Early Elongation Complex GTF2F1 +PWCOMMONS Formation of the Early Elongation Complex GTF2F2 +PWCOMMONS Formation of the Early Elongation Complex SUPT4H1 +PWCOMMONS Formation of the Early Elongation Complex TH1L +PWCOMMONS Formation of the Early Elongation Complex WHSC2 +PWCOMMONS Formation of the Early Elongation Complex RDBP +PWCOMMONS Formation of the Early Elongation Complex COBRA1 +PWCOMMONS Formation of the Early Elongation Complex NCBP2 +PWCOMMONS Formation of the Early Elongation Complex NCBP1 +PWCOMMONS Formation of the Early Elongation Complex EIF1AX +PWCOMMONS Formation of the Early Elongation Complex EIF4H +PWCOMMONS Formation of the Early Elongation Complex EIF4B +PWCOMMONS Formation of the Early Elongation Complex EIF4E +PWCOMMONS Formation of the Early Elongation Complex EIF4G1 +PWCOMMONS Formation of the Early Elongation Complex EIF4A2 +PWCOMMONS Formation of the Early Elongation Complex EIF2S3 +PWCOMMONS Formation of the Early Elongation Complex EIF2S2 +PWCOMMONS Formation of the Early Elongation Complex EIF2S1 +PWCOMMONS Formation of the Early Elongation Complex EIF3K +PWCOMMONS Formation of the Early Elongation Complex EIF3H +PWCOMMONS Formation of the Early Elongation Complex EIF3E +PWCOMMONS Formation of the Early Elongation Complex EIF3F +PWCOMMONS Formation of the Early Elongation Complex EIF3J +PWCOMMONS Formation of the Early Elongation Complex EIF3G +PWCOMMONS Formation of the Early Elongation Complex EIF3C +PWCOMMONS Formation of the Early Elongation Complex EIF3A +PWCOMMONS Formation of the Early Elongation Complex EIF3I +PWCOMMONS Formation of the Early Elongation Complex EIF3D +PWCOMMONS Formation of the Early Elongation Complex EIF3B +PWCOMMONS Formation of the Early Elongation Complex RPS23 +PWCOMMONS Formation of the Early Elongation Complex RPS16 +PWCOMMONS Formation of the Early Elongation Complex RPS12 +PWCOMMONS Formation of the Early Elongation Complex RPS29 +PWCOMMONS Formation of the Early Elongation Complex RPSA +PWCOMMONS Formation of the Early Elongation Complex RPS21 +PWCOMMONS Formation of the Early Elongation Complex RPS27A +PWCOMMONS Formation of the Early Elongation Complex RPS20 +PWCOMMONS Formation of the Early Elongation Complex RPS15 +PWCOMMONS Formation of the Early Elongation Complex RPS24 +PWCOMMONS Formation of the Early Elongation Complex RPS9 +PWCOMMONS Formation of the Early Elongation Complex RPS10 +PWCOMMONS Formation of the Early Elongation Complex RPS28 +PWCOMMONS Formation of the Early Elongation Complex RPS2 +PWCOMMONS Formation of the Early Elongation Complex RPS19 +PWCOMMONS Formation of the Early Elongation Complex RPS4X +PWCOMMONS Formation of the Early Elongation Complex RPS18 +PWCOMMONS Formation of the Early Elongation Complex RPS8 +PWCOMMONS Formation of the Early Elongation Complex RPS3 +PWCOMMONS Formation of the Early Elongation Complex RPS4Y1 +PWCOMMONS Formation of the Early Elongation Complex RPS25 +PWCOMMONS Formation of the Early Elongation Complex RPS14 +PWCOMMONS Formation of the Early Elongation Complex RPS17 +PWCOMMONS Formation of the Early Elongation Complex RPS26 +PWCOMMONS Formation of the Early Elongation Complex RPS11 +PWCOMMONS Formation of the Early Elongation Complex RPS5 +PWCOMMONS Formation of the Early Elongation Complex FAU +PWCOMMONS Formation of the Early Elongation Complex RPS15A +PWCOMMONS Formation of the Early Elongation Complex RPS13 +PWCOMMONS Formation of the Early Elongation Complex RPS6 +PWCOMMONS Formation of the Early Elongation Complex RPS3A +PWCOMMONS Formation of the Early Elongation Complex RPS7 +PWCOMMONS Formation of the Early Elongation Complex RPS27 +PWCOMMONS Formation of the Early Elongation Complex NUP153 +PWCOMMONS Formation of the Early Elongation Complex NUP85 +PWCOMMONS Formation of the Early Elongation Complex NUP35 +PWCOMMONS Formation of the Early Elongation Complex AAAS +PWCOMMONS Formation of the Early Elongation Complex NUP50 +PWCOMMONS Formation of the Early Elongation Complex NUP43 +PWCOMMONS Formation of the Early Elongation Complex NUP205 +PWCOMMONS Formation of the Early Elongation Complex NUP93 +PWCOMMONS Formation of the Early Elongation Complex NUP88 +PWCOMMONS Formation of the Early Elongation Complex NUPL2 +PWCOMMONS Formation of the Early Elongation Complex NUP210 +PWCOMMONS Formation of the Early Elongation Complex NUP155 +PWCOMMONS Formation of the Early Elongation Complex RANBP2 +PWCOMMONS Formation of the Early Elongation Complex RAE1 +PWCOMMONS Formation of the Early Elongation Complex NUP188 +PWCOMMONS Formation of the Early Elongation Complex NUP214 +PWCOMMONS Formation of the Early Elongation Complex NUP54 +PWCOMMONS Formation of the Early Elongation Complex NUP62 +PWCOMMONS Formation of the Early Elongation Complex NUP107 +PWCOMMONS Formation of the Early Elongation Complex NUP133 +PWCOMMONS Formation of the Early Elongation Complex NUP160 +PWCOMMONS Formation of the Early Elongation Complex NUP37 +PWCOMMONS Formation of the Early Elongation Complex RPL27A +PWCOMMONS Formation of the Early Elongation Complex RPL15 +PWCOMMONS Formation of the Early Elongation Complex RPL11 +PWCOMMONS Formation of the Early Elongation Complex RPL29 +PWCOMMONS Formation of the Early Elongation Complex RPL30 +PWCOMMONS Formation of the Early Elongation Complex RPL8 +PWCOMMONS Formation of the Early Elongation Complex RPL22 +PWCOMMONS Formation of the Early Elongation Complex RPL28 +PWCOMMONS Formation of the Early Elongation Complex RPL7A +PWCOMMONS Formation of the Early Elongation Complex RPL35A +PWCOMMONS Formation of the Early Elongation Complex RPL31 +PWCOMMONS Formation of the Early Elongation Complex RPL26L1 +PWCOMMONS Formation of the Early Elongation Complex RPL26 +PWCOMMONS Formation of the Early Elongation Complex RPL18A +PWCOMMONS Formation of the Early Elongation Complex RPL14 +PWCOMMONS Formation of the Early Elongation Complex RPLP2 +PWCOMMONS Formation of the Early Elongation Complex RPL10 +PWCOMMONS Formation of the Early Elongation Complex RPL34 +PWCOMMONS Formation of the Early Elongation Complex RPL37 +PWCOMMONS Formation of the Early Elongation Complex RPL3L +PWCOMMONS Formation of the Early Elongation Complex RPL32 +PWCOMMONS Formation of the Early Elongation Complex RPL36 +PWCOMMONS Formation of the Early Elongation Complex RPLP1 +PWCOMMONS Formation of the Early Elongation Complex RPL23A +PWCOMMONS Formation of the Early Elongation Complex RPL24 +PWCOMMONS Formation of the Early Elongation Complex RPL6 +PWCOMMONS Formation of the Early Elongation Complex RPL18 +PWCOMMONS Formation of the Early Elongation Complex RPL5 +PWCOMMONS Formation of the Early Elongation Complex RPL23 +PWCOMMONS Formation of the Early Elongation Complex RPL19 +PWCOMMONS Formation of the Early Elongation Complex RPL41 +PWCOMMONS Formation of the Early Elongation Complex RPL7 +PWCOMMONS Formation of the Early Elongation Complex RPL13A +PWCOMMONS Formation of the Early Elongation Complex RPL27 +PWCOMMONS Formation of the Early Elongation Complex RPL17 +PWCOMMONS Formation of the Early Elongation Complex RPL3 +PWCOMMONS Formation of the Early Elongation Complex RPL10A +PWCOMMONS Formation of the Early Elongation Complex RPL21 +PWCOMMONS Formation of the Early Elongation Complex RPL4 +PWCOMMONS Formation of the Early Elongation Complex RPL35 +PWCOMMONS Formation of the Early Elongation Complex RPL13 +PWCOMMONS Formation of the Early Elongation Complex RPL39 +PWCOMMONS Formation of the Early Elongation Complex RPL38 +PWCOMMONS Formation of the Early Elongation Complex RPL36A +PWCOMMONS Formation of the Early Elongation Complex RPL9 +PWCOMMONS Formation of the Early Elongation Complex RPLP0 +PWCOMMONS Formation of the Early Elongation Complex UBA52 +PWCOMMONS Formation of the Early Elongation Complex RPL37A +PWCOMMONS Formation of the Early Elongation Complex RPL12 +PWCOMMONS Formation of the Early Elongation Complex EEF1A1 +PWCOMMONS Formation of the Early Elongation Complex PCF11 +PWCOMMONS Formation of the Early Elongation Complex CLP1 +PWCOMMONS Formation of the Early Elongation Complex CPSF7 +PWCOMMONS Formation of the Early Elongation Complex NUDT21 +PWCOMMONS Formation of the Early Elongation Complex EIF2B5 +PWCOMMONS Formation of the Early Elongation Complex EIF2B1 +PWCOMMONS Formation of the Early Elongation Complex EIF2B3 +PWCOMMONS Formation of the Early Elongation Complex EIF2B4 +PWCOMMONS Formation of the Early Elongation Complex EIF2B2 +PWCOMMONS Formation of the Early Elongation Complex PABPN1 +PWCOMMONS Formation of the Early Elongation Complex PAPOLA +PWCOMMONS Formation of the Early Elongation Complex CPSF2 +PWCOMMONS Formation of the Early Elongation Complex CPSF1 +PWCOMMONS Formation of the Early Elongation Complex CPSF3 +PWCOMMONS Formation of the Early Elongation Complex CSTF2 +PWCOMMONS Formation of the Early Elongation Complex CSTF1 +PWCOMMONS Formation of the Early Elongation Complex CSTF3 +PWCOMMONS Formation of the Early Elongation Complex ETF1 +PWCOMMONS Formation of the Early Elongation Complex GSPT2 +PWCOMMONS Formation of the Early Elongation Complex PABPC1 +PWCOMMONS Formation of the Early Elongation Complex SFRS2 +PWCOMMONS Formation of the Early Elongation Complex CDC40 +PWCOMMONS Formation of the Early Elongation Complex SFRS3 +PWCOMMONS Formation of the Early Elongation Complex SFRS11 +PWCOMMONS Formation of the Early Elongation Complex U2AF2 +PWCOMMONS Formation of the Early Elongation Complex SFRS9 +PWCOMMONS Formation of the Early Elongation Complex SFRS5 +PWCOMMONS Formation of the Early Elongation Complex SFRS7 +PWCOMMONS Formation of the Early Elongation Complex SFRS4 +PWCOMMONS Formation of the Early Elongation Complex SFRS6 +PWCOMMONS Formation of the Early Elongation Complex DHX38 +PWCOMMONS Formation of the Early Elongation Complex U2AF1 +PWCOMMONS Formation of the Early Elongation Complex SFRS1 +PWCOMMONS Formation of the Early Elongation Complex RNPS1 +PWCOMMONS Formation of the Early Elongation Complex UPF3B +PWCOMMONS Formation of the Early Elongation Complex SRRM1 +PWCOMMONS Formation of the Early Elongation Complex THOC4 +PWCOMMONS Formation of the Early Elongation Complex RBM8A +PWCOMMONS Formation of the Early Elongation Complex MAGOH +PWCOMMONS Formation of the Early Elongation Complex EEF1G +PWCOMMONS Formation of the Early Elongation Complex EEF1D +PWCOMMONS Formation of the Early Elongation Complex EEF1B2 +PWCOMMONS Formation of the Early Elongation Complex NXF1 +PWCOMMONS Formation of the Early Elongation Complex EIF5 +PWCOMMONS Formation of the Early Elongation Complex EIF5B +PWCOMMONS Formation of the Early Elongation Complex EEF2 +PWCOMMONS Formation of the Early Elongation Complex ERCC2 +PWCOMMONS Formation of the Early Elongation Complex GTF2H3 +PWCOMMONS Formation of the Early Elongation Complex GTF2H4 +PWCOMMONS Formation of the Early Elongation Complex GTF2H2 +PWCOMMONS Formation of the Early Elongation Complex ERCC3 +PWCOMMONS Formation of the Early Elongation Complex GTF2H1 +PWCOMMONS Formation of the Early Elongation Complex CCNH +PWCOMMONS Formation of the Early Elongation Complex CDK7 +PWCOMMONS Formation of the Early Elongation Complex MNAT1 +PWCOMMONS Formation of the Early Elongation Complex +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5O +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5F1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5J +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5G1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5L +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-ATP6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5J2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-ATP8 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5H +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5I +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5C1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5D +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5A1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5B +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ATP5E +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase UQCRC1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase UQCRB +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase UQCR10 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase UQCR +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase UQCRC2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase UQCRH +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase UQCRQ +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase UQCRFS1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-CYB +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase CYC1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase CPOX +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase UROS +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-CO2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase COX8A +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase COX7C +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-CO3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase COX6C +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase COX5B +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-CO1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase COX7A2L +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase COX4I1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase COX6A1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase COX7B +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase COX6B1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase COX5A +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase DLST +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase OGDH +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase DLD +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase HADH +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ALAD +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase CS +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase GCDH +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ECHS1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase PPOX +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase ACO2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase IDH3G +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase IDH3A +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase IDH3B +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase SUCLG1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase SUCLG2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase KCNJ11 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase SDHC +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase SDHD +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase SDHB +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase SDHA +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase FECH +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase SUCLA2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase CYCS +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MDH2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFS3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFS4 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFS6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFS5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFS1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFS2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFV2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFV3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFV1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA4 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA11 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-ND3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA13 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFB5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFC1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFC2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFB3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFB1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFAB1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-ND4 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-ND5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFB9 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFB6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFB4 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA8 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFB7 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA12 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFB2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-ND4L +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-ND2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFB10 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA7 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFB8 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFB11 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-ND6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase MT-ND1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFS7 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA10 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFS8 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase NDUFA9 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase VAMP2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase FH +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase INS +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase SYT5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoadipate to glutaryl CoA by alpha-ketoglutarate dehydrogenase +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase SDHC +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase SDHD +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase SDHB +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase SDHA +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5O +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5F1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5J +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5G1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5L +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-ATP6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5J2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-ATP8 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5H +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5I +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5C1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5D +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5A1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5B +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ATP5E +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase UROD +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase UQCRC1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase UQCRB +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase UQCR10 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase UQCR +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase UQCRC2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase UQCRH +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase UQCRQ +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase UQCRFS1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-CYB +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase CYC1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase SUCLG1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase SUCLA2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase CYCS +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase CPOX +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase UROS +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase DLST +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase OGDH +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase DLD +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-CO2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase COX8A +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase COX7C +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-CO3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase COX6C +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase COX5B +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-CO1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase COX7A2L +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase COX4I1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase COX6A1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase COX7B +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase COX6B1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase COX5A +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MDH2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFS3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFS4 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFS6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFS5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFS1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFS2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFV2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFV3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFV1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA4 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA11 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-ND3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA13 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFB5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFC1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFC2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFB3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFB1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFAB1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-ND4 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-ND5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFB9 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFB6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFB4 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA8 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFB7 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA12 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFB2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-ND4L +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-ND2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFB10 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA7 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFB8 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFB11 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-ND6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase MT-ND1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFS7 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA10 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFS8 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase NDUFA9 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase VAMP2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ALAD +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase CS +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase PPOX +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase ACO2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase IDH3G +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase IDH3A +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase IDH3B +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase FH +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase INS +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase SYT5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase SUCLG2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase KCNJ11 +PWCOMMONS Oxidative decarboxylation of alpha-ketoglutarate to succinyl CoA by alpha-ketoglutarate dehydrogenase +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis GART +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis NT5C2 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis GLRX +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5O +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5F1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5J +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5G1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5L +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis MT-ATP6 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5J2 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis MT-ATP8 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5H +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5I +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5C1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5D +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5A1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5B +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATP5E +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis HPRT1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis TXN +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis XDH +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis PAICS +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis CPS1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis UPP1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ASS1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis CMPK1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ADSL +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ATIC +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis OAT +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis NP +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis GYS2 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis CAT +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis UMPS +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis UGDH +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis RRM2 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis RRM1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis AMPD1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis PRPS1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis PPAT +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ARG1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis KCNJ11 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis AMPD3 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis GBE1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis TXNRD1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis DPYD +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis DPYS +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis AK1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis PYCR1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis VAMP2 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis NT5C1A +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis CTPS +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis GMPS +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis GUK1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis IMPDH2 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis GDA +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis NME1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis IMPDH1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ADSS +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis NME2 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis OTC +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis AMPD2 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis INS +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis SYT5 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis SLC35D1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis PFAS +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis GSR +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis ASL +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis UPB1 +PWCOMMONS 5-Phosphoribose 1-diphosphate biosynthesis +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ TXN +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ GLRX +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ GMPS +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ HPRT1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ TXNRD1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ XDH +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ GUK1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ IMPDH2 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ NP +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ NME2 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ NME1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ CAT +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ RRM2 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ RRM1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ GDA +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ GSR +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ IMPDH1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate (IMP), NAD+, and H2O to xanthosine 5'-monophosphate (XMP) and NADH + H+ +PWCOMMONS De novo synthesis of IMP NT5C2 +PWCOMMONS De novo synthesis of IMP GLRX +PWCOMMONS De novo synthesis of IMP ATP5O +PWCOMMONS De novo synthesis of IMP ATP5F1 +PWCOMMONS De novo synthesis of IMP ATP5J +PWCOMMONS De novo synthesis of IMP ATP5G1 +PWCOMMONS De novo synthesis of IMP ATP5L +PWCOMMONS De novo synthesis of IMP MT-ATP6 +PWCOMMONS De novo synthesis of IMP ATP5J2 +PWCOMMONS De novo synthesis of IMP MT-ATP8 +PWCOMMONS De novo synthesis of IMP ATP5H +PWCOMMONS De novo synthesis of IMP ATP5I +PWCOMMONS De novo synthesis of IMP ATP5C1 +PWCOMMONS De novo synthesis of IMP ATP5D +PWCOMMONS De novo synthesis of IMP ATP5A1 +PWCOMMONS De novo synthesis of IMP ATP5B +PWCOMMONS De novo synthesis of IMP ATP5E +PWCOMMONS De novo synthesis of IMP HPRT1 +PWCOMMONS De novo synthesis of IMP TXN +PWCOMMONS De novo synthesis of IMP XDH +PWCOMMONS De novo synthesis of IMP PAICS +PWCOMMONS De novo synthesis of IMP ADSL +PWCOMMONS De novo synthesis of IMP ATIC +PWCOMMONS De novo synthesis of IMP NP +PWCOMMONS De novo synthesis of IMP CAT +PWCOMMONS De novo synthesis of IMP RRM2 +PWCOMMONS De novo synthesis of IMP RRM1 +PWCOMMONS De novo synthesis of IMP AMPD1 +PWCOMMONS De novo synthesis of IMP PPAT +PWCOMMONS De novo synthesis of IMP KCNJ11 +PWCOMMONS De novo synthesis of IMP AMPD3 +PWCOMMONS De novo synthesis of IMP TXNRD1 +PWCOMMONS De novo synthesis of IMP AK1 +PWCOMMONS De novo synthesis of IMP VAMP2 +PWCOMMONS De novo synthesis of IMP GMPS +PWCOMMONS De novo synthesis of IMP GUK1 +PWCOMMONS De novo synthesis of IMP IMPDH2 +PWCOMMONS De novo synthesis of IMP GDA +PWCOMMONS De novo synthesis of IMP NME1 +PWCOMMONS De novo synthesis of IMP IMPDH1 +PWCOMMONS De novo synthesis of IMP ADSS +PWCOMMONS De novo synthesis of IMP NME2 +PWCOMMONS De novo synthesis of IMP AMPD2 +PWCOMMONS De novo synthesis of IMP INS +PWCOMMONS De novo synthesis of IMP SYT5 +PWCOMMONS De novo synthesis of IMP PFAS +PWCOMMONS De novo synthesis of IMP GSR +PWCOMMONS De novo synthesis of IMP +PWCOMMONS Extension of Telomeres POLD4 +PWCOMMONS Extension of Telomeres POLD3 +PWCOMMONS Extension of Telomeres POLD2 +PWCOMMONS Extension of Telomeres POLD1 +PWCOMMONS Extension of Telomeres LIG1 +PWCOMMONS Extension of Telomeres DNA2 +PWCOMMONS Extension of Telomeres RPA1 +PWCOMMONS Extension of Telomeres RPA3 +PWCOMMONS Extension of Telomeres RPA2 +PWCOMMONS Extension of Telomeres PRIM2 +PWCOMMONS Extension of Telomeres POLA1 +PWCOMMONS Extension of Telomeres PRIM1 +PWCOMMONS Extension of Telomeres POLA2 +PWCOMMONS Extension of Telomeres RFC2 +PWCOMMONS Extension of Telomeres RFC1 +PWCOMMONS Extension of Telomeres RFC3 +PWCOMMONS Extension of Telomeres RFC5 +PWCOMMONS Extension of Telomeres RFC4 +PWCOMMONS Extension of Telomeres POLE2 +PWCOMMONS Extension of Telomeres POLE +PWCOMMONS Extension of Telomeres FEN1 +PWCOMMONS Extension of Telomeres POT1 +PWCOMMONS Extension of Telomeres HIST3H3 +PWCOMMONS Extension of Telomeres HIST1H4A +PWCOMMONS Extension of Telomeres TERF2 +PWCOMMONS Extension of Telomeres ACD +PWCOMMONS Extension of Telomeres TINF2 +PWCOMMONS Extension of Telomeres TERF1 +PWCOMMONS Extension of Telomeres TERF2IP +PWCOMMONS Extension of Telomeres TERT +PWCOMMONS Extension of Telomeres DKC1 +PWCOMMONS Extension of Telomeres RUVBL2 +PWCOMMONS Extension of Telomeres NHP2 +PWCOMMONS Extension of Telomeres RUVBL1 +PWCOMMONS Extension of Telomeres WDR79 +PWCOMMONS Extension of Telomeres +PWCOMMONS Telomere Extension By Telomerase DKC1 +PWCOMMONS Telomere Extension By Telomerase RUVBL2 +PWCOMMONS Telomere Extension By Telomerase LIG1 +PWCOMMONS Telomere Extension By Telomerase DNA2 +PWCOMMONS Telomere Extension By Telomerase PCNA +PWCOMMONS Telomere Extension By Telomerase POLD4 +PWCOMMONS Telomere Extension By Telomerase POLD3 +PWCOMMONS Telomere Extension By Telomerase POLD2 +PWCOMMONS Telomere Extension By Telomerase POLD1 +PWCOMMONS Telomere Extension By Telomerase RPA1 +PWCOMMONS Telomere Extension By Telomerase RPA3 +PWCOMMONS Telomere Extension By Telomerase RPA2 +PWCOMMONS Telomere Extension By Telomerase RFC2 +PWCOMMONS Telomere Extension By Telomerase RFC1 +PWCOMMONS Telomere Extension By Telomerase RFC3 +PWCOMMONS Telomere Extension By Telomerase RFC5 +PWCOMMONS Telomere Extension By Telomerase RFC4 +PWCOMMONS Telomere Extension By Telomerase PRIM2 +PWCOMMONS Telomere Extension By Telomerase POLA1 +PWCOMMONS Telomere Extension By Telomerase PRIM1 +PWCOMMONS Telomere Extension By Telomerase POLA2 +PWCOMMONS Telomere Extension By Telomerase POT1 +PWCOMMONS Telomere Extension By Telomerase HIST3H3 +PWCOMMONS Telomere Extension By Telomerase HIST1H4A +PWCOMMONS Telomere Extension By Telomerase TERF2 +PWCOMMONS Telomere Extension By Telomerase ACD +PWCOMMONS Telomere Extension By Telomerase TINF2 +PWCOMMONS Telomere Extension By Telomerase TERF1 +PWCOMMONS Telomere Extension By Telomerase TERF2IP +PWCOMMONS Telomere Extension By Telomerase FEN1 +PWCOMMONS Telomere Extension By Telomerase NHP2 +PWCOMMONS Telomere Extension By Telomerase RUVBL1 +PWCOMMONS Telomere Extension By Telomerase WDR79 +PWCOMMONS Telomere Extension By Telomerase POLE2 +PWCOMMONS Telomere Extension By Telomerase POLE +PWCOMMONS Telomere Extension By Telomerase +PWCOMMONS Telomere C-strand synthesis initiation PCNA +PWCOMMONS Telomere C-strand synthesis initiation POLD4 +PWCOMMONS Telomere C-strand synthesis initiation POLD3 +PWCOMMONS Telomere C-strand synthesis initiation POLD2 +PWCOMMONS Telomere C-strand synthesis initiation POLD1 +PWCOMMONS Telomere C-strand synthesis initiation DNA2 +PWCOMMONS Telomere C-strand synthesis initiation RPA1 +PWCOMMONS Telomere C-strand synthesis initiation RPA3 +PWCOMMONS Telomere C-strand synthesis initiation RPA2 +PWCOMMONS Telomere C-strand synthesis initiation PRIM2 +PWCOMMONS Telomere C-strand synthesis initiation POLA1 +PWCOMMONS Telomere C-strand synthesis initiation PRIM1 +PWCOMMONS Telomere C-strand synthesis initiation POLA2 +PWCOMMONS Telomere C-strand synthesis initiation RFC2 +PWCOMMONS Telomere C-strand synthesis initiation RFC1 +PWCOMMONS Telomere C-strand synthesis initiation RFC3 +PWCOMMONS Telomere C-strand synthesis initiation RFC5 +PWCOMMONS Telomere C-strand synthesis initiation RFC4 +PWCOMMONS Telomere C-strand synthesis initiation POT1 +PWCOMMONS Telomere C-strand synthesis initiation HIST3H3 +PWCOMMONS Telomere C-strand synthesis initiation HIST1H4A +PWCOMMONS Telomere C-strand synthesis initiation TERF2 +PWCOMMONS Telomere C-strand synthesis initiation ACD +PWCOMMONS Telomere C-strand synthesis initiation TINF2 +PWCOMMONS Telomere C-strand synthesis initiation TERF1 +PWCOMMONS Telomere C-strand synthesis initiation TERF2IP +PWCOMMONS Telomere C-strand synthesis initiation POLE2 +PWCOMMONS Telomere C-strand synthesis initiation POLE +PWCOMMONS Telomere C-strand synthesis initiation FEN1 +PWCOMMONS Telomere C-strand synthesis initiation +PWCOMMONS Removal of the Flap Intermediate from the C-strand PCNA +PWCOMMONS Removal of the Flap Intermediate from the C-strand POLD4 +PWCOMMONS Removal of the Flap Intermediate from the C-strand POLD3 +PWCOMMONS Removal of the Flap Intermediate from the C-strand POLD2 +PWCOMMONS Removal of the Flap Intermediate from the C-strand POLD1 +PWCOMMONS Removal of the Flap Intermediate from the C-strand RPA1 +PWCOMMONS Removal of the Flap Intermediate from the C-strand RPA3 +PWCOMMONS Removal of the Flap Intermediate from the C-strand RPA2 +PWCOMMONS Removal of the Flap Intermediate from the C-strand FEN1 +PWCOMMONS Removal of the Flap Intermediate from the C-strand +PWCOMMONS Polymerase switching on the C-strand of the telomere DNA2 +PWCOMMONS Polymerase switching on the C-strand of the telomere PCNA +PWCOMMONS Polymerase switching on the C-strand of the telomere POLD4 +PWCOMMONS Polymerase switching on the C-strand of the telomere POLD3 +PWCOMMONS Polymerase switching on the C-strand of the telomere POLD2 +PWCOMMONS Polymerase switching on the C-strand of the telomere POLD1 +PWCOMMONS Polymerase switching on the C-strand of the telomere RPA1 +PWCOMMONS Polymerase switching on the C-strand of the telomere RPA3 +PWCOMMONS Polymerase switching on the C-strand of the telomere RPA2 +PWCOMMONS Polymerase switching on the C-strand of the telomere RFC2 +PWCOMMONS Polymerase switching on the C-strand of the telomere RFC1 +PWCOMMONS Polymerase switching on the C-strand of the telomere RFC3 +PWCOMMONS Polymerase switching on the C-strand of the telomere RFC5 +PWCOMMONS Polymerase switching on the C-strand of the telomere RFC4 +PWCOMMONS Polymerase switching on the C-strand of the telomere PRIM2 +PWCOMMONS Polymerase switching on the C-strand of the telomere POLA1 +PWCOMMONS Polymerase switching on the C-strand of the telomere PRIM1 +PWCOMMONS Polymerase switching on the C-strand of the telomere POLA2 +PWCOMMONS Polymerase switching on the C-strand of the telomere POT1 +PWCOMMONS Polymerase switching on the C-strand of the telomere HIST3H3 +PWCOMMONS Polymerase switching on the C-strand of the telomere HIST1H4A +PWCOMMONS Polymerase switching on the C-strand of the telomere TERF2 +PWCOMMONS Polymerase switching on the C-strand of the telomere ACD +PWCOMMONS Polymerase switching on the C-strand of the telomere TINF2 +PWCOMMONS Polymerase switching on the C-strand of the telomere TERF1 +PWCOMMONS Polymerase switching on the C-strand of the telomere TERF2IP +PWCOMMONS Polymerase switching on the C-strand of the telomere FEN1 +PWCOMMONS Polymerase switching on the C-strand of the telomere +PWCOMMONS Processive synthesis on the C-strand of the telomere DNA2 +PWCOMMONS Processive synthesis on the C-strand of the telomere PCNA +PWCOMMONS Processive synthesis on the C-strand of the telomere POLD4 +PWCOMMONS Processive synthesis on the C-strand of the telomere POLD3 +PWCOMMONS Processive synthesis on the C-strand of the telomere POLD2 +PWCOMMONS Processive synthesis on the C-strand of the telomere POLD1 +PWCOMMONS Processive synthesis on the C-strand of the telomere RPA1 +PWCOMMONS Processive synthesis on the C-strand of the telomere RPA3 +PWCOMMONS Processive synthesis on the C-strand of the telomere RPA2 +PWCOMMONS Processive synthesis on the C-strand of the telomere POT1 +PWCOMMONS Processive synthesis on the C-strand of the telomere HIST3H3 +PWCOMMONS Processive synthesis on the C-strand of the telomere HIST1H4A +PWCOMMONS Processive synthesis on the C-strand of the telomere TERF2 +PWCOMMONS Processive synthesis on the C-strand of the telomere ACD +PWCOMMONS Processive synthesis on the C-strand of the telomere TINF2 +PWCOMMONS Processive synthesis on the C-strand of the telomere TERF1 +PWCOMMONS Processive synthesis on the C-strand of the telomere TERF2IP +PWCOMMONS Processive synthesis on the C-strand of the telomere FEN1 +PWCOMMONS Processive synthesis on the C-strand of the telomere +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis POLD4 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis POLD3 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis POLD2 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis POLD1 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis LIG1 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis DNA2 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis RPA1 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis RPA3 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis RPA2 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis PRIM2 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis POLA1 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis PRIM1 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis POLA2 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis RFC2 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis RFC1 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis RFC3 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis RFC5 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis RFC4 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis POLE2 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis POLE +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis FEN1 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis POT1 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis HIST3H3 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis HIST1H4A +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis TERF2 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis ACD +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis TINF2 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis TERF1 +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis TERF2IP +PWCOMMONS Telomere C-strand (Lagging Strand) Synthesis +PWCOMMONS Packaging Of Telomere Ends HIST3H3 +PWCOMMONS Packaging Of Telomere Ends HIST1H4A +PWCOMMONS Packaging Of Telomere Ends TERF2 +PWCOMMONS Packaging Of Telomere Ends ACD +PWCOMMONS Packaging Of Telomere Ends TINF2 +PWCOMMONS Packaging Of Telomere Ends TERF1 +PWCOMMONS Packaging Of Telomere Ends TERF2IP +PWCOMMONS Packaging Of Telomere Ends +PWCOMMONS Recycling of eIF2:GDP EIF2B1 +PWCOMMONS Recycling of eIF2:GDP EIF2B3 +PWCOMMONS Recycling of eIF2:GDP EIF2B4 +PWCOMMONS Recycling of eIF2:GDP EIF2B2 +PWCOMMONS Recycling of eIF2:GDP EIF2S3 +PWCOMMONS Recycling of eIF2:GDP EIF2S2 +PWCOMMONS Recycling of eIF2:GDP EIF2S1 +PWCOMMONS Recycling of eIF2:GDP EIF1AX +PWCOMMONS Recycling of eIF2:GDP EIF3K +PWCOMMONS Recycling of eIF2:GDP EIF3H +PWCOMMONS Recycling of eIF2:GDP EIF3E +PWCOMMONS Recycling of eIF2:GDP EIF3F +PWCOMMONS Recycling of eIF2:GDP EIF3J +PWCOMMONS Recycling of eIF2:GDP EIF3G +PWCOMMONS Recycling of eIF2:GDP EIF3C +PWCOMMONS Recycling of eIF2:GDP EIF3A +PWCOMMONS Recycling of eIF2:GDP EIF3I +PWCOMMONS Recycling of eIF2:GDP EIF3D +PWCOMMONS Recycling of eIF2:GDP EIF3B +PWCOMMONS Recycling of eIF2:GDP RPS23 +PWCOMMONS Recycling of eIF2:GDP RPS16 +PWCOMMONS Recycling of eIF2:GDP RPS12 +PWCOMMONS Recycling of eIF2:GDP RPS29 +PWCOMMONS Recycling of eIF2:GDP RPSA +PWCOMMONS Recycling of eIF2:GDP RPS21 +PWCOMMONS Recycling of eIF2:GDP RPS27A +PWCOMMONS Recycling of eIF2:GDP RPS20 +PWCOMMONS Recycling of eIF2:GDP RPS15 +PWCOMMONS Recycling of eIF2:GDP RPS24 +PWCOMMONS Recycling of eIF2:GDP RPS9 +PWCOMMONS Recycling of eIF2:GDP RPS10 +PWCOMMONS Recycling of eIF2:GDP RPS28 +PWCOMMONS Recycling of eIF2:GDP RPS2 +PWCOMMONS Recycling of eIF2:GDP RPS19 +PWCOMMONS Recycling of eIF2:GDP RPS4X +PWCOMMONS Recycling of eIF2:GDP RPS18 +PWCOMMONS Recycling of eIF2:GDP RPS8 +PWCOMMONS Recycling of eIF2:GDP RPS3 +PWCOMMONS Recycling of eIF2:GDP RPS4Y1 +PWCOMMONS Recycling of eIF2:GDP RPS25 +PWCOMMONS Recycling of eIF2:GDP RPS14 +PWCOMMONS Recycling of eIF2:GDP RPS17 +PWCOMMONS Recycling of eIF2:GDP RPS26 +PWCOMMONS Recycling of eIF2:GDP RPS11 +PWCOMMONS Recycling of eIF2:GDP RPS5 +PWCOMMONS Recycling of eIF2:GDP FAU +PWCOMMONS Recycling of eIF2:GDP RPS15A +PWCOMMONS Recycling of eIF2:GDP RPS13 +PWCOMMONS Recycling of eIF2:GDP RPS6 +PWCOMMONS Recycling of eIF2:GDP RPS3A +PWCOMMONS Recycling of eIF2:GDP RPS7 +PWCOMMONS Recycling of eIF2:GDP RPS27 +PWCOMMONS Recycling of eIF2:GDP +PWCOMMONS Steroid metabolism ACOT8 +PWCOMMONS Steroid metabolism ABCB11 +PWCOMMONS Steroid metabolism CYP39A1 +PWCOMMONS Steroid metabolism CYP8B1 +PWCOMMONS Steroid metabolism BAAT +PWCOMMONS Steroid metabolism HSD3B7 +PWCOMMONS Steroid metabolism AKR1C4 +PWCOMMONS Steroid metabolism HSD17B4 +PWCOMMONS Steroid metabolism AMACR +PWCOMMONS Steroid metabolism SLC27A5 +PWCOMMONS Steroid metabolism AKR1D1 +PWCOMMONS Steroid metabolism CYP27A1 +PWCOMMONS Steroid metabolism SLC27A2 +PWCOMMONS Steroid metabolism CYP7A1 +PWCOMMONS Steroid metabolism ACOX2 +PWCOMMONS Steroid metabolism CH25H +PWCOMMONS Steroid metabolism CYP7B1 +PWCOMMONS Steroid metabolism SLCO1B1 +PWCOMMONS Steroid metabolism SLCO1B3 +PWCOMMONS Steroid metabolism ALB +PWCOMMONS Steroid metabolism FABP6 +PWCOMMONS Steroid metabolism ABCC3 +PWCOMMONS Steroid metabolism SLC10A1 +PWCOMMONS Steroid metabolism SLCO1A2 +PWCOMMONS Steroid metabolism SLC10A2 +PWCOMMONS Steroid metabolism GGPS1 +PWCOMMONS Steroid metabolism EBP +PWCOMMONS Steroid metabolism SQLE +PWCOMMONS Steroid metabolism CYP11B1 +PWCOMMONS Steroid metabolism LBR +PWCOMMONS Steroid metabolism MVK +PWCOMMONS Steroid metabolism CYP11B2 +PWCOMMONS Steroid metabolism FDFT1 +PWCOMMONS Steroid metabolism STAR +PWCOMMONS Steroid metabolism CYP21A2 +PWCOMMONS Steroid metabolism CYP51A1 +PWCOMMONS Steroid metabolism NSDHL +PWCOMMONS Steroid metabolism CYP11A1 +PWCOMMONS Steroid metabolism DHCR24 +PWCOMMONS Steroid metabolism CYP19A1 +PWCOMMONS Steroid metabolism DHCR7 +PWCOMMONS Steroid metabolism HSD17B3 +PWCOMMONS Steroid metabolism TM7SF2 +PWCOMMONS Steroid metabolism PMVK +PWCOMMONS Steroid metabolism SC5DL +PWCOMMONS Steroid metabolism SC4MOL +PWCOMMONS Steroid metabolism MVD +PWCOMMONS Steroid metabolism LSS +PWCOMMONS Steroid metabolism CYP17A1 +PWCOMMONS Steroid metabolism HMGCS1 +PWCOMMONS Steroid metabolism HSD11B1 +PWCOMMONS Steroid metabolism +PWCOMMONS Metabolism of bile acids and bile salts ACOT8 +PWCOMMONS Metabolism of bile acids and bile salts ABCB11 +PWCOMMONS Metabolism of bile acids and bile salts CYP39A1 +PWCOMMONS Metabolism of bile acids and bile salts CYP8B1 +PWCOMMONS Metabolism of bile acids and bile salts BAAT +PWCOMMONS Metabolism of bile acids and bile salts HSD3B7 +PWCOMMONS Metabolism of bile acids and bile salts AKR1C4 +PWCOMMONS Metabolism of bile acids and bile salts HSD17B4 +PWCOMMONS Metabolism of bile acids and bile salts AMACR +PWCOMMONS Metabolism of bile acids and bile salts SLC27A5 +PWCOMMONS Metabolism of bile acids and bile salts AKR1D1 +PWCOMMONS Metabolism of bile acids and bile salts CYP27A1 +PWCOMMONS Metabolism of bile acids and bile salts SLC27A2 +PWCOMMONS Metabolism of bile acids and bile salts CYP7A1 +PWCOMMONS Metabolism of bile acids and bile salts ACOX2 +PWCOMMONS Metabolism of bile acids and bile salts CH25H +PWCOMMONS Metabolism of bile acids and bile salts CYP7B1 +PWCOMMONS Metabolism of bile acids and bile salts SLCO1B1 +PWCOMMONS Metabolism of bile acids and bile salts SLCO1B3 +PWCOMMONS Metabolism of bile acids and bile salts ALB +PWCOMMONS Metabolism of bile acids and bile salts FABP6 +PWCOMMONS Metabolism of bile acids and bile salts ABCC3 +PWCOMMONS Metabolism of bile acids and bile salts SLC10A1 +PWCOMMONS Metabolism of bile acids and bile salts SLCO1A2 +PWCOMMONS Metabolism of bile acids and bile salts SLC10A2 +PWCOMMONS Metabolism of bile acids and bile salts +PWCOMMONS Recycling of bile acids and salts BAAT +PWCOMMONS Recycling of bile acids and salts ABCB11 +PWCOMMONS Recycling of bile acids and salts SLCO1B3 +PWCOMMONS Recycling of bile acids and salts ALB +PWCOMMONS Recycling of bile acids and salts FABP6 +PWCOMMONS Recycling of bile acids and salts ABCC3 +PWCOMMONS Recycling of bile acids and salts SLC10A1 +PWCOMMONS Recycling of bile acids and salts SLCO1A2 +PWCOMMONS Recycling of bile acids and salts SLC10A2 +PWCOMMONS Recycling of bile acids and salts SLC27A5 +PWCOMMONS Recycling of bile acids and salts +PWCOMMONS Synthesis of bile acids and bile salts ACOT8 +PWCOMMONS Synthesis of bile acids and bile salts ABCB11 +PWCOMMONS Synthesis of bile acids and bile salts CYP39A1 +PWCOMMONS Synthesis of bile acids and bile salts CYP8B1 +PWCOMMONS Synthesis of bile acids and bile salts BAAT +PWCOMMONS Synthesis of bile acids and bile salts HSD3B7 +PWCOMMONS Synthesis of bile acids and bile salts AKR1C4 +PWCOMMONS Synthesis of bile acids and bile salts HSD17B4 +PWCOMMONS Synthesis of bile acids and bile salts AMACR +PWCOMMONS Synthesis of bile acids and bile salts SLC27A5 +PWCOMMONS Synthesis of bile acids and bile salts AKR1D1 +PWCOMMONS Synthesis of bile acids and bile salts CYP27A1 +PWCOMMONS Synthesis of bile acids and bile salts SLC27A2 +PWCOMMONS Synthesis of bile acids and bile salts CYP7A1 +PWCOMMONS Synthesis of bile acids and bile salts ACOX2 +PWCOMMONS Synthesis of bile acids and bile salts CH25H +PWCOMMONS Synthesis of bile acids and bile salts CYP7B1 +PWCOMMONS Synthesis of bile acids and bile salts +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol ABCB11 +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol CYP8B1 +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol CYP7A1 +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol BAAT +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol HSD3B7 +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol AKR1C4 +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol HSD17B4 +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol AMACR +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol SLC27A5 +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol AKR1D1 +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol CYP27A1 +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol SLC27A2 +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol ACOX2 +PWCOMMONS Synthesis of bile acids and bile salts via 7alpha-hydroxycholesterol +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol ABCB11 +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol CYP8B1 +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol BAAT +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol HSD3B7 +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol AKR1C4 +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol HSD17B4 +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol AMACR +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol CYP7B1 +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol SLC27A5 +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol AKR1D1 +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol CYP27A1 +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol SLC27A2 +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol ACOX2 +PWCOMMONS Synthesis of bile acids and bile salts via 27-hydroxycholesterol +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol ACOT8 +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol ABCB11 +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol CYP39A1 +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol CYP8B1 +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol BAAT +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol HSD3B7 +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol AKR1C4 +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol HSD17B4 +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol AMACR +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol SLC27A5 +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol AKR1D1 +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol CYP27A1 +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol SLC27A2 +PWCOMMONS Synthesis of bile acids and bile salts via 24-hydroxycholesterol +PWCOMMONS Steroid hormone biosynthesis HSD11B1 +PWCOMMONS Steroid hormone biosynthesis CYP17A1 +PWCOMMONS Steroid hormone biosynthesis HSD17B3 +PWCOMMONS Steroid hormone biosynthesis CYP21A2 +PWCOMMONS Steroid hormone biosynthesis CYP11B1 +PWCOMMONS Steroid hormone biosynthesis CYP11A1 +PWCOMMONS Steroid hormone biosynthesis CYP11B2 +PWCOMMONS Steroid hormone biosynthesis STAR +PWCOMMONS Steroid hormone biosynthesis +PWCOMMONS Glucocorticoid biosynthesis CYP19A1 +PWCOMMONS Glucocorticoid biosynthesis CYP17A1 +PWCOMMONS Glucocorticoid biosynthesis HSD17B3 +PWCOMMONS Glucocorticoid biosynthesis CYP21A2 +PWCOMMONS Glucocorticoid biosynthesis CYP11B1 +PWCOMMONS Glucocorticoid biosynthesis +PWCOMMONS Mineralocorticoid biosynthesis CYP17A1 +PWCOMMONS Mineralocorticoid biosynthesis HSD17B3 +PWCOMMONS Mineralocorticoid biosynthesis CYP21A2 +PWCOMMONS Mineralocorticoid biosynthesis CYP11B1 +PWCOMMONS Mineralocorticoid biosynthesis CYP11B2 +PWCOMMONS Mineralocorticoid biosynthesis +PWCOMMONS Pregnenolone biosynthesis CYP19A1 +PWCOMMONS Pregnenolone biosynthesis HSD17B3 +PWCOMMONS Pregnenolone biosynthesis CYP11B1 +PWCOMMONS Pregnenolone biosynthesis CYP11B2 +PWCOMMONS Pregnenolone biosynthesis STAR +PWCOMMONS Pregnenolone biosynthesis CYP17A1 +PWCOMMONS Pregnenolone biosynthesis CYP21A2 +PWCOMMONS Pregnenolone biosynthesis +PWCOMMONS Androgen biosynthesis CYP17A1 +PWCOMMONS Androgen biosynthesis HSD17B3 +PWCOMMONS Androgen biosynthesis CYP21A2 +PWCOMMONS Androgen biosynthesis CYP11B1 +PWCOMMONS Androgen biosynthesis +PWCOMMONS Cholesterol biosynthesis EBP +PWCOMMONS Cholesterol biosynthesis SQLE +PWCOMMONS Cholesterol biosynthesis CYP11B1 +PWCOMMONS Cholesterol biosynthesis LBR +PWCOMMONS Cholesterol biosynthesis MVK +PWCOMMONS Cholesterol biosynthesis CYP11B2 +PWCOMMONS Cholesterol biosynthesis FDFT1 +PWCOMMONS Cholesterol biosynthesis STAR +PWCOMMONS Cholesterol biosynthesis CYP21A2 +PWCOMMONS Cholesterol biosynthesis CYP51A1 +PWCOMMONS Cholesterol biosynthesis NSDHL +PWCOMMONS Cholesterol biosynthesis CYP11A1 +PWCOMMONS Cholesterol biosynthesis DHCR24 +PWCOMMONS Cholesterol biosynthesis CYP19A1 +PWCOMMONS Cholesterol biosynthesis DHCR7 +PWCOMMONS Cholesterol biosynthesis HSD17B3 +PWCOMMONS Cholesterol biosynthesis TM7SF2 +PWCOMMONS Cholesterol biosynthesis PMVK +PWCOMMONS Cholesterol biosynthesis SC5DL +PWCOMMONS Cholesterol biosynthesis SC4MOL +PWCOMMONS Cholesterol biosynthesis MVD +PWCOMMONS Cholesterol biosynthesis LSS +PWCOMMONS Cholesterol biosynthesis CYP17A1 +PWCOMMONS Cholesterol biosynthesis HMGCS1 +PWCOMMONS Cholesterol biosynthesis +PWCOMMONS Transformation of lanosterol to cholesterol SC4MOL +PWCOMMONS Transformation of lanosterol to cholesterol DHCR24 +PWCOMMONS Transformation of lanosterol to cholesterol EBP +PWCOMMONS Transformation of lanosterol to cholesterol DHCR7 +PWCOMMONS Transformation of lanosterol to cholesterol TM7SF2 +PWCOMMONS Transformation of lanosterol to cholesterol CYP51A1 +PWCOMMONS Transformation of lanosterol to cholesterol LBR +PWCOMMONS Transformation of lanosterol to cholesterol NSDHL +PWCOMMONS Transformation of lanosterol to cholesterol +PWCOMMONS Amplification of signal from the kinetochores ANAPC5 +PWCOMMONS Amplification of signal from the kinetochores ANAPC11 +PWCOMMONS Amplification of signal from the kinetochores CDC23 +PWCOMMONS Amplification of signal from the kinetochores ANAPC1 +PWCOMMONS Amplification of signal from the kinetochores UBE2D1 +PWCOMMONS Amplification of signal from the kinetochores ANAPC2 +PWCOMMONS Amplification of signal from the kinetochores CDC27 +PWCOMMONS Amplification of signal from the kinetochores ANAPC4 +PWCOMMONS Amplification of signal from the kinetochores ANAPC10 +PWCOMMONS Amplification of signal from the kinetochores UBE2C +PWCOMMONS Amplification of signal from the kinetochores ANAPC7 +PWCOMMONS Amplification of signal from the kinetochores CDC26 +PWCOMMONS Amplification of signal from the kinetochores CDC16 +PWCOMMONS Amplification of signal from the kinetochores UBE2E1 +PWCOMMONS Amplification of signal from the kinetochores BUB3 +PWCOMMONS Amplification of signal from the kinetochores BUB1B +PWCOMMONS Amplification of signal from the kinetochores MAD2L1 +PWCOMMONS Amplification of signal from the kinetochores CDC20 +PWCOMMONS Amplification of signal from the kinetochores NEK2 +PWCOMMONS Amplification of signal from the kinetochores CDC2 +PWCOMMONS Amplification of signal from the kinetochores CCNB1 +PWCOMMONS Amplification of signal from the kinetochores MAD1L1 +PWCOMMONS Amplification of signal from the kinetochores PTTG1 +PWCOMMONS Amplification of signal from the kinetochores PSMC6 +PWCOMMONS Amplification of signal from the kinetochores PSMA3 +PWCOMMONS Amplification of signal from the kinetochores PSMD8 +PWCOMMONS Amplification of signal from the kinetochores PSMD10 +PWCOMMONS Amplification of signal from the kinetochores PSMD1 +PWCOMMONS Amplification of signal from the kinetochores PSMD6 +PWCOMMONS Amplification of signal from the kinetochores PSMB5 +PWCOMMONS Amplification of signal from the kinetochores PSMB4 +PWCOMMONS Amplification of signal from the kinetochores PSMD4 +PWCOMMONS Amplification of signal from the kinetochores PSMA2 +PWCOMMONS Amplification of signal from the kinetochores PSMB8 +PWCOMMONS Amplification of signal from the kinetochores PSMD5 +PWCOMMONS Amplification of signal from the kinetochores PSMB6 +PWCOMMONS Amplification of signal from the kinetochores PSME3 +PWCOMMONS Amplification of signal from the kinetochores PSMB3 +PWCOMMONS Amplification of signal from the kinetochores PSMB7 +PWCOMMONS Amplification of signal from the kinetochores PSME1 +PWCOMMONS Amplification of signal from the kinetochores PSMD11 +PWCOMMONS Amplification of signal from the kinetochores PSMA5 +PWCOMMONS Amplification of signal from the kinetochores PSMC5 +PWCOMMONS Amplification of signal from the kinetochores PSMC1 +PWCOMMONS Amplification of signal from the kinetochores PSMD7 +PWCOMMONS Amplification of signal from the kinetochores PSMD3 +PWCOMMONS Amplification of signal from the kinetochores PSMB2 +PWCOMMONS Amplification of signal from the kinetochores PSMD13 +PWCOMMONS Amplification of signal from the kinetochores PSMD14 +PWCOMMONS Amplification of signal from the kinetochores PSMB1 +PWCOMMONS Amplification of signal from the kinetochores PSMA6 +PWCOMMONS Amplification of signal from the kinetochores PSMB9 +PWCOMMONS Amplification of signal from the kinetochores PSMB10 +PWCOMMONS Amplification of signal from the kinetochores PSMD9 +PWCOMMONS Amplification of signal from the kinetochores PSMC4 +PWCOMMONS Amplification of signal from the kinetochores PSMA1 +PWCOMMONS Amplification of signal from the kinetochores PSMA4 +PWCOMMONS Amplification of signal from the kinetochores PSMA7 +PWCOMMONS Amplification of signal from the kinetochores PSMF1 +PWCOMMONS Amplification of signal from the kinetochores PSME2 +PWCOMMONS Amplification of signal from the kinetochores PSMD12 +PWCOMMONS Amplification of signal from the kinetochores PSMC3 +PWCOMMONS Amplification of signal from the kinetochores PSMC2 +PWCOMMONS Amplification of signal from the kinetochores PSMD2 +PWCOMMONS Amplification of signal from the kinetochores +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal ANAPC5 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal ANAPC11 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal CDC23 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal ANAPC1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal UBE2D1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal ANAPC2 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal CDC27 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal ANAPC4 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal ANAPC10 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal UBE2C +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal ANAPC7 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal CDC26 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal CDC16 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal UBE2E1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal BUB3 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal BUB1B +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal MAD2L1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal CDC20 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal NEK2 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal CDC2 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal CCNB1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal MAD1L1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PTTG1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMC6 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMA3 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD8 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD10 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD6 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMB5 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMB4 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD4 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMA2 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMB8 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD5 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMB6 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSME3 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMB3 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMB7 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSME1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD11 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMA5 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMC5 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMC1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD7 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD3 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMB2 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD13 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD14 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMB1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMA6 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMB9 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMB10 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD9 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMC4 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMA1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMA4 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMA7 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMF1 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSME2 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD12 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMC3 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMC2 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal PSMD2 +PWCOMMONS Amplification of signal from unattached kinetochores via a MAD2 inhibitory signal +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex ANAPC5 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex ANAPC11 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex CDC23 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex ANAPC1 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex UBE2D1 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex ANAPC2 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex CDC27 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex ANAPC4 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex ANAPC10 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex UBE2C +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex ANAPC7 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex CDC26 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex CDC16 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex UBE2E1 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex BUB3 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex BUB1B +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex MAD2L1 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex CDC20 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex NEK2 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex CDC2 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex CCNB1 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PTTG1 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMC6 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMA3 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD8 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD10 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD1 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD6 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMB5 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMB4 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD4 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMA2 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMB8 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD5 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMB6 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSME3 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMB3 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMB7 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSME1 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD11 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMA5 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMC5 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMC1 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD7 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD3 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMB2 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD13 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD14 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMB1 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMA6 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMB9 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMB10 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD9 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMC4 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMA1 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMA4 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMA7 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMF1 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSME2 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD12 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMC3 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMC2 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex PSMD2 +PWCOMMONS Inactivation of APC/C via direct inhibition of the APC/C complex +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components CDC20 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components FZR1 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components ANAPC5 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components ANAPC11 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components CDC23 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components ANAPC1 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components UBE2D1 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components ANAPC2 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components CDC27 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components ANAPC4 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components ANAPC10 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components UBE2C +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components ANAPC7 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components CDC26 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components CDC16 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components UBE2E1 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components BUB3 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components BUB1B +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components NEK2 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components CDC2 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components CCNB1 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PTTG1 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMC6 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMA3 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD8 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD10 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD1 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD6 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMB5 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMB4 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD4 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMA2 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMB8 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD5 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMB6 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSME3 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMB3 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMB7 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSME1 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD11 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMA5 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMC5 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMC1 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD7 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD3 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMB2 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD13 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD14 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMB1 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMA6 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMB9 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMB10 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD9 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMC4 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMA1 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMA4 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMA7 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMF1 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSME2 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD12 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMC3 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMC2 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components PSMD2 +PWCOMMONS Inhibition of the proteolytic activity of APC/C required for the onset of anaphase by mitotic spindle checkpoint components +PWCOMMONS Inhibition of HSL AKT2 +PWCOMMONS Inhibition of HSL +PWCOMMONS PI3K Cascade FRAP1 +PWCOMMONS PI3K Cascade LST8 +PWCOMMONS PI3K Cascade EIF4B +PWCOMMONS PI3K Cascade RPS6 +PWCOMMONS PI3K Cascade RPS6KB1 +PWCOMMONS PI3K Cascade EIF4EBP1 +PWCOMMONS PI3K Cascade EIF4E +PWCOMMONS PI3K Cascade EIF4G1 +PWCOMMONS PI3K Cascade EEF2K +PWCOMMONS PI3K Cascade AKT2 +PWCOMMONS PI3K Cascade PDE3B +PWCOMMONS PI3K Cascade TSC1 +PWCOMMONS PI3K Cascade PDPK1 +PWCOMMONS PI3K Cascade +PWCOMMONS PKB-mediated events FRAP1 +PWCOMMONS PKB-mediated events LST8 +PWCOMMONS PKB-mediated events EIF4B +PWCOMMONS PKB-mediated events RPS6 +PWCOMMONS PKB-mediated events RPS6KB1 +PWCOMMONS PKB-mediated events EIF4EBP1 +PWCOMMONS PKB-mediated events EIF4E +PWCOMMONS PKB-mediated events EIF4G1 +PWCOMMONS PKB-mediated events EEF2K +PWCOMMONS PKB-mediated events AKT2 +PWCOMMONS PKB-mediated events PDE3B +PWCOMMONS PKB-mediated events TSC1 +PWCOMMONS PKB-mediated events +PWCOMMONS mTOR signalling FRAP1 +PWCOMMONS mTOR signalling LST8 +PWCOMMONS mTOR signalling EIF4B +PWCOMMONS mTOR signalling RPS6 +PWCOMMONS mTOR signalling RPS6KB1 +PWCOMMONS mTOR signalling EIF4EBP1 +PWCOMMONS mTOR signalling EIF4E +PWCOMMONS mTOR signalling EIF4G1 +PWCOMMONS mTOR signalling EEF2K +PWCOMMONS mTOR signalling AKT2 +PWCOMMONS mTOR signalling PDE3B +PWCOMMONS mTOR signalling TSC1 +PWCOMMONS mTOR signalling +PWCOMMONS mTORC1-mediated signalling RPS6KB1 +PWCOMMONS mTORC1-mediated signalling RPS6 +PWCOMMONS mTORC1-mediated signalling EIF4G1 +PWCOMMONS mTORC1-mediated signalling EEF2K +PWCOMMONS mTORC1-mediated signalling FRAP1 +PWCOMMONS mTORC1-mediated signalling LST8 +PWCOMMONS mTORC1-mediated signalling RHEB +PWCOMMONS mTORC1-mediated signalling EIF4EBP1 +PWCOMMONS mTORC1-mediated signalling EIF4E +PWCOMMONS mTORC1-mediated signalling AKT2 +PWCOMMONS mTORC1-mediated signalling PDE3B +PWCOMMONS mTORC1-mediated signalling TSC1 +PWCOMMONS mTORC1-mediated signalling +PWCOMMONS S6K1-mediated signalling RPS6KB1 +PWCOMMONS S6K1-mediated signalling RPS6 +PWCOMMONS S6K1-mediated signalling EIF4G1 +PWCOMMONS S6K1-mediated signalling EEF2K +PWCOMMONS S6K1-mediated signalling FRAP1 +PWCOMMONS S6K1-mediated signalling LST8 +PWCOMMONS S6K1-mediated signalling RHEB +PWCOMMONS S6K1-mediated signalling +PWCOMMONS S6K1 signalling RPS6 +PWCOMMONS S6K1 signalling EEF2K +PWCOMMONS S6K1 signalling EIF4G1 +PWCOMMONS S6K1 signalling RPS6KB1 +PWCOMMONS S6K1 signalling +PWCOMMONS Release of eIF4E EIF4E +PWCOMMONS Release of eIF4E RHEB +PWCOMMONS Release of eIF4E FRAP1 +PWCOMMONS Release of eIF4E LST8 +PWCOMMONS Release of eIF4E EIF4B +PWCOMMONS Release of eIF4E RPS6 +PWCOMMONS Release of eIF4E RPS6KB1 +PWCOMMONS Release of eIF4E EIF4G1 +PWCOMMONS Release of eIF4E EEF2K +PWCOMMONS Release of eIF4E AKT2 +PWCOMMONS Release of eIF4E PDE3B +PWCOMMONS Release of eIF4E TSC1 +PWCOMMONS Release of eIF4E +PWCOMMONS Inhibition of TSC complex formation by PKB PDE3B +PWCOMMONS Inhibition of TSC complex formation by PKB TSC1 +PWCOMMONS Inhibition of TSC complex formation by PKB +PWCOMMONS PDE3B signalling AKT2 +PWCOMMONS PDE3B signalling +PWCOMMONS Activation of PKB PDE3B +PWCOMMONS Activation of PKB PDPK1 +PWCOMMONS Activation of PKB TSC1 +PWCOMMONS Activation of PKB +PWCOMMONS vRNP Assembly IPO5 +PWCOMMONS vRNP Assembly +PWCOMMONS Transport of Notch receptor precursor to golgi NOTCH3 +PWCOMMONS Transport of Notch receptor precursor to golgi NOTCH2 +PWCOMMONS Transport of Notch receptor precursor to golgi NOTCH1 +PWCOMMONS Transport of Notch receptor precursor to golgi ADAM10 +PWCOMMONS Transport of Notch receptor precursor to golgi PSENEN +PWCOMMONS Transport of Notch receptor precursor to golgi HES1 +PWCOMMONS Transport of Notch receptor precursor to golgi FURIN +PWCOMMONS Transport of Notch receptor precursor to golgi +PWCOMMONS Maturation of Notch precursor via proteolytic cleavage NOTCH3 +PWCOMMONS Maturation of Notch precursor via proteolytic cleavage NOTCH2 +PWCOMMONS Maturation of Notch precursor via proteolytic cleavage NOTCH1 +PWCOMMONS Maturation of Notch precursor via proteolytic cleavage ADAM10 +PWCOMMONS Maturation of Notch precursor via proteolytic cleavage PSENEN +PWCOMMONS Maturation of Notch precursor via proteolytic cleavage HES1 +PWCOMMONS Maturation of Notch precursor via proteolytic cleavage FURIN +PWCOMMONS Maturation of Notch precursor via proteolytic cleavage +PWCOMMONS Mature Notch receptor trafficks to plasma membrane NOTCH4 +PWCOMMONS Mature Notch receptor trafficks to plasma membrane NOTCH1 +PWCOMMONS Mature Notch receptor trafficks to plasma membrane NOTCH2 +PWCOMMONS Mature Notch receptor trafficks to plasma membrane ADAM10 +PWCOMMONS Mature Notch receptor trafficks to plasma membrane PSENEN +PWCOMMONS Mature Notch receptor trafficks to plasma membrane HES1 +PWCOMMONS Mature Notch receptor trafficks to plasma membrane +PWCOMMONS Notch receptor binds with a ligand NOTCH3 +PWCOMMONS Notch receptor binds with a ligand NOTCH1 +PWCOMMONS Notch receptor binds with a ligand NOTCH2 +PWCOMMONS Notch receptor binds with a ligand HES1 +PWCOMMONS Notch receptor binds with a ligand ADAM10 +PWCOMMONS Notch receptor binds with a ligand PSENEN +PWCOMMONS Notch receptor binds with a ligand +PWCOMMONS Receptor-ligand binding initiates the second proteolytic cleavage of Notch receptor NOTCH3 +PWCOMMONS Receptor-ligand binding initiates the second proteolytic cleavage of Notch receptor NOTCH1 +PWCOMMONS Receptor-ligand binding initiates the second proteolytic cleavage of Notch receptor NOTCH2 +PWCOMMONS Receptor-ligand binding initiates the second proteolytic cleavage of Notch receptor HES1 +PWCOMMONS Receptor-ligand binding initiates the second proteolytic cleavage of Notch receptor ADAM10 +PWCOMMONS Receptor-ligand binding initiates the second proteolytic cleavage of Notch receptor PSENEN +PWCOMMONS Receptor-ligand binding initiates the second proteolytic cleavage of Notch receptor +PWCOMMONS A third proteolytic cleavage releases NICD NOTCH3 +PWCOMMONS A third proteolytic cleavage releases NICD NOTCH1 +PWCOMMONS A third proteolytic cleavage releases NICD HES1 +PWCOMMONS A third proteolytic cleavage releases NICD NOTCH2 +PWCOMMONS A third proteolytic cleavage releases NICD PSENEN +PWCOMMONS A third proteolytic cleavage releases NICD +PWCOMMONS NICD trafficks to nucleus NOTCH4 +PWCOMMONS NICD trafficks to nucleus NOTCH1 +PWCOMMONS NICD trafficks to nucleus HES1 +PWCOMMONS NICD trafficks to nucleus NOTCH2 +PWCOMMONS NICD trafficks to nucleus +PWCOMMONS Gab1 signalosome PIK3R1 +PWCOMMONS Gab1 signalosome GAB1 +PWCOMMONS Gab1 signalosome EGFR +PWCOMMONS Gab1 signalosome EGF +PWCOMMONS Gab1 signalosome PTPN11 +PWCOMMONS Gab1 signalosome PAG1 +PWCOMMONS Gab1 signalosome CSK +PWCOMMONS Gab1 signalosome PXN +PWCOMMONS Gab1 signalosome +PWCOMMONS Thrombin signalling through PARs F2RL3 +PWCOMMONS Thrombin signalling through PARs F2RL2 +PWCOMMONS Thrombin signalling through PARs F2 +PWCOMMONS Thrombin signalling through PARs GNAQ +PWCOMMONS Thrombin signalling through PARs ARHGEF1 +PWCOMMONS Thrombin signalling through PARs GNA13 +PWCOMMONS Thrombin signalling through PARs PRKCA +PWCOMMONS Thrombin signalling through PARs MARCKS +PWCOMMONS Thrombin signalling through PARs +PWCOMMONS Thrombin signalling G-protein cascades ARHGEF1 +PWCOMMONS Thrombin signalling G-protein cascades GNA13 +PWCOMMONS Thrombin signalling G-protein cascades PRKCA +PWCOMMONS Thrombin signalling G-protein cascades MARCKS +PWCOMMONS Thrombin signalling G-protein cascades +PWCOMMONS Proteinase-activated receptor G (q) cascade GNAQ +PWCOMMONS Proteinase-activated receptor G (q) cascade MARCKS +PWCOMMONS Proteinase-activated receptor G (q) cascade +PWCOMMONS G alpha (q) signalling events GNAQ +PWCOMMONS G alpha (q) signalling events MARCKS +PWCOMMONS G alpha (q) signalling events +PWCOMMONS Proteinase-activated receptor G (12/13) cascade ARHGEF1 +PWCOMMONS Proteinase-activated receptor G (12/13) cascade GNA13 +PWCOMMONS Proteinase-activated receptor G (12/13) cascade +PWCOMMONS G alpha (12/13) signalling events GNA13 +PWCOMMONS G alpha (12/13) signalling events +PWCOMMONS Thrombin-mediated activation of PARs F2RL3 +PWCOMMONS Thrombin-mediated activation of PARs F2RL2 +PWCOMMONS Thrombin-mediated activation of PARs F2 +PWCOMMONS Thrombin-mediated activation of PARs +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A FZR1 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A ANAPC5 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A ANAPC11 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A CDC23 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A ANAPC1 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A ANAPC2 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A UBE2D1 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A CDC27 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A ANAPC4 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A ANAPC10 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A ANAPC7 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A UBE2C +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A CDC26 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A CDC16 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A UBE2E1 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMC6 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMA3 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD8 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD10 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD1 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD6 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMB5 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMB4 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD4 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMA2 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMB8 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD5 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMB6 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSME3 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMB3 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMB7 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSME1 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD11 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMA5 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMC5 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMC1 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD7 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD3 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMB2 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD13 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD14 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMB1 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMA6 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMB9 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMB10 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD9 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMC4 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMA1 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMA4 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMA7 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMF1 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSME2 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD12 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMC3 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMC2 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A PSMD2 +PWCOMMONS Ubiquitin Mediated Degradation of Phosphorylated Cdc25A +PWCOMMONS ERK2 activation MAPK1 +PWCOMMONS ERK2 activation MAP2K2 +PWCOMMONS ERK2 activation ATF1 +PWCOMMONS ERK2 activation CREB1 +PWCOMMONS ERK2 activation +PWCOMMONS E2F transcriptional targets at G1/S PLK1 +PWCOMMONS E2F transcriptional targets at G1/S CDK2 +PWCOMMONS E2F transcriptional targets at G1/S TFDP1 +PWCOMMONS E2F transcriptional targets at G1/S E2F1 +PWCOMMONS E2F transcriptional targets at G1/S CDC6 +PWCOMMONS E2F transcriptional targets at G1/S CUL1 +PWCOMMONS E2F transcriptional targets at G1/S BTRC +PWCOMMONS E2F transcriptional targets at G1/S SKP1 +PWCOMMONS E2F transcriptional targets at G1/S PRIM2 +PWCOMMONS E2F transcriptional targets at G1/S POLA1 +PWCOMMONS E2F transcriptional targets at G1/S PRIM1 +PWCOMMONS E2F transcriptional targets at G1/S POLA2 +PWCOMMONS E2F transcriptional targets at G1/S PCNA +PWCOMMONS E2F transcriptional targets at G1/S ORC6L +PWCOMMONS E2F transcriptional targets at G1/S ORC3L +PWCOMMONS E2F transcriptional targets at G1/S ORC4L +PWCOMMONS E2F transcriptional targets at G1/S ORC5L +PWCOMMONS E2F transcriptional targets at G1/S ORC1L +PWCOMMONS E2F transcriptional targets at G1/S ORC2L +PWCOMMONS E2F transcriptional targets at G1/S FZR1 +PWCOMMONS E2F transcriptional targets at G1/S ANAPC5 +PWCOMMONS E2F transcriptional targets at G1/S ANAPC11 +PWCOMMONS E2F transcriptional targets at G1/S CDC23 +PWCOMMONS E2F transcriptional targets at G1/S ANAPC1 +PWCOMMONS E2F transcriptional targets at G1/S UBE2D1 +PWCOMMONS E2F transcriptional targets at G1/S ANAPC2 +PWCOMMONS E2F transcriptional targets at G1/S CDC27 +PWCOMMONS E2F transcriptional targets at G1/S ANAPC4 +PWCOMMONS E2F transcriptional targets at G1/S ANAPC10 +PWCOMMONS E2F transcriptional targets at G1/S UBE2C +PWCOMMONS E2F transcriptional targets at G1/S ANAPC7 +PWCOMMONS E2F transcriptional targets at G1/S CDC26 +PWCOMMONS E2F transcriptional targets at G1/S CDC16 +PWCOMMONS E2F transcriptional targets at G1/S UBE2E1 +PWCOMMONS E2F transcriptional targets at G1/S DHFR +PWCOMMONS E2F transcriptional targets at G1/S CDT1 +PWCOMMONS E2F transcriptional targets at G1/S FBXO5 +PWCOMMONS E2F transcriptional targets at G1/S CDC25A +PWCOMMONS E2F transcriptional targets at G1/S CDC2 +PWCOMMONS E2F transcriptional targets at G1/S CKS1B +PWCOMMONS E2F transcriptional targets at G1/S RPA1 +PWCOMMONS E2F transcriptional targets at G1/S RPA2 +PWCOMMONS E2F transcriptional targets at G1/S RPA3 +PWCOMMONS E2F transcriptional targets at G1/S RPA4 +PWCOMMONS E2F transcriptional targets at G1/S CDC45L +PWCOMMONS E2F transcriptional targets at G1/S MCM10 +PWCOMMONS E2F transcriptional targets at G1/S MCM7 +PWCOMMONS E2F transcriptional targets at G1/S MCM4 +PWCOMMONS E2F transcriptional targets at G1/S MCM5 +PWCOMMONS E2F transcriptional targets at G1/S MCM3 +PWCOMMONS E2F transcriptional targets at G1/S MCM6 +PWCOMMONS E2F transcriptional targets at G1/S MCM2 +PWCOMMONS E2F transcriptional targets at G1/S CDC7 +PWCOMMONS E2F transcriptional targets at G1/S DBF4 +PWCOMMONS E2F transcriptional targets at G1/S POLE2 +PWCOMMONS E2F transcriptional targets at G1/S POLE +PWCOMMONS E2F transcriptional targets at G1/S TYMS +PWCOMMONS E2F transcriptional targets at G1/S CCNH +PWCOMMONS E2F transcriptional targets at G1/S CDK7 +PWCOMMONS E2F transcriptional targets at G1/S MNAT1 +PWCOMMONS E2F transcriptional targets at G1/S CCNB1 +PWCOMMONS E2F transcriptional targets at G1/S WEE1 +PWCOMMONS E2F transcriptional targets at G1/S PSMC6 +PWCOMMONS E2F transcriptional targets at G1/S PSMA3 +PWCOMMONS E2F transcriptional targets at G1/S PSMD8 +PWCOMMONS E2F transcriptional targets at G1/S PSMD10 +PWCOMMONS E2F transcriptional targets at G1/S PSMD1 +PWCOMMONS E2F transcriptional targets at G1/S PSMD6 +PWCOMMONS E2F transcriptional targets at G1/S PSMB5 +PWCOMMONS E2F transcriptional targets at G1/S PSMB4 +PWCOMMONS E2F transcriptional targets at G1/S PSMD4 +PWCOMMONS E2F transcriptional targets at G1/S PSMA2 +PWCOMMONS E2F transcriptional targets at G1/S PSMB8 +PWCOMMONS E2F transcriptional targets at G1/S PSMD5 +PWCOMMONS E2F transcriptional targets at G1/S PSMB6 +PWCOMMONS E2F transcriptional targets at G1/S PSME3 +PWCOMMONS E2F transcriptional targets at G1/S PSMB3 +PWCOMMONS E2F transcriptional targets at G1/S PSMB7 +PWCOMMONS E2F transcriptional targets at G1/S PSME1 +PWCOMMONS E2F transcriptional targets at G1/S PSMD11 +PWCOMMONS E2F transcriptional targets at G1/S PSMA5 +PWCOMMONS E2F transcriptional targets at G1/S PSMC5 +PWCOMMONS E2F transcriptional targets at G1/S PSMC1 +PWCOMMONS E2F transcriptional targets at G1/S PSMD7 +PWCOMMONS E2F transcriptional targets at G1/S PSMD3 +PWCOMMONS E2F transcriptional targets at G1/S PSMB2 +PWCOMMONS E2F transcriptional targets at G1/S PSMD13 +PWCOMMONS E2F transcriptional targets at G1/S PSMD14 +PWCOMMONS E2F transcriptional targets at G1/S PSMB1 +PWCOMMONS E2F transcriptional targets at G1/S PSMA6 +PWCOMMONS E2F transcriptional targets at G1/S PSMB9 +PWCOMMONS E2F transcriptional targets at G1/S PSMB10 +PWCOMMONS E2F transcriptional targets at G1/S PSMD9 +PWCOMMONS E2F transcriptional targets at G1/S PSMC4 +PWCOMMONS E2F transcriptional targets at G1/S PSMA1 +PWCOMMONS E2F transcriptional targets at G1/S PSMA4 +PWCOMMONS E2F transcriptional targets at G1/S PSMA7 +PWCOMMONS E2F transcriptional targets at G1/S PSMF1 +PWCOMMONS E2F transcriptional targets at G1/S PSME2 +PWCOMMONS E2F transcriptional targets at G1/S PSMD12 +PWCOMMONS E2F transcriptional targets at G1/S PSMC3 +PWCOMMONS E2F transcriptional targets at G1/S PSMC2 +PWCOMMONS E2F transcriptional targets at G1/S PSMD2 +PWCOMMONS E2F transcriptional targets at G1/S RFC2 +PWCOMMONS E2F transcriptional targets at G1/S RFC1 +PWCOMMONS E2F transcriptional targets at G1/S RFC3 +PWCOMMONS E2F transcriptional targets at G1/S RFC5 +PWCOMMONS E2F transcriptional targets at G1/S RFC4 +PWCOMMONS E2F transcriptional targets at G1/S RRM2 +PWCOMMONS E2F transcriptional targets at G1/S POLD4 +PWCOMMONS E2F transcriptional targets at G1/S POLD3 +PWCOMMONS E2F transcriptional targets at G1/S POLD2 +PWCOMMONS E2F transcriptional targets at G1/S POLD1 +PWCOMMONS E2F transcriptional targets at G1/S TK2 +PWCOMMONS E2F transcriptional targets at G1/S CCNA1 +PWCOMMONS E2F transcriptional targets at G1/S CCNE1 +PWCOMMONS E2F transcriptional targets at G1/S +PWCOMMONS Phosphorylation of proteins involved in G1/S transition by active Cyclin E:Cdk2 complexes CDK2 +PWCOMMONS Phosphorylation of proteins involved in G1/S transition by active Cyclin E:Cdk2 complexes +PWCOMMONS Phosphorylation of Emi1 ANAPC5 +PWCOMMONS Phosphorylation of Emi1 ANAPC11 +PWCOMMONS Phosphorylation of Emi1 CDC23 +PWCOMMONS Phosphorylation of Emi1 ANAPC1 +PWCOMMONS Phosphorylation of Emi1 UBE2D1 +PWCOMMONS Phosphorylation of Emi1 ANAPC2 +PWCOMMONS Phosphorylation of Emi1 CDC27 +PWCOMMONS Phosphorylation of Emi1 ANAPC4 +PWCOMMONS Phosphorylation of Emi1 ANAPC10 +PWCOMMONS Phosphorylation of Emi1 UBE2C +PWCOMMONS Phosphorylation of Emi1 ANAPC7 +PWCOMMONS Phosphorylation of Emi1 CDC26 +PWCOMMONS Phosphorylation of Emi1 CDC16 +PWCOMMONS Phosphorylation of Emi1 UBE2E1 +PWCOMMONS Phosphorylation of Emi1 PLK1 +PWCOMMONS Phosphorylation of Emi1 FBXO5 +PWCOMMONS Phosphorylation of Emi1 CUL1 +PWCOMMONS Phosphorylation of Emi1 BTRC +PWCOMMONS Phosphorylation of Emi1 SKP1 +PWCOMMONS Phosphorylation of Emi1 PSMC6 +PWCOMMONS Phosphorylation of Emi1 PSMA3 +PWCOMMONS Phosphorylation of Emi1 PSMD8 +PWCOMMONS Phosphorylation of Emi1 PSMD10 +PWCOMMONS Phosphorylation of Emi1 PSMD1 +PWCOMMONS Phosphorylation of Emi1 PSMD6 +PWCOMMONS Phosphorylation of Emi1 PSMB5 +PWCOMMONS Phosphorylation of Emi1 PSMB4 +PWCOMMONS Phosphorylation of Emi1 PSMD4 +PWCOMMONS Phosphorylation of Emi1 PSMA2 +PWCOMMONS Phosphorylation of Emi1 PSMB8 +PWCOMMONS Phosphorylation of Emi1 PSMD5 +PWCOMMONS Phosphorylation of Emi1 PSMB6 +PWCOMMONS Phosphorylation of Emi1 PSME3 +PWCOMMONS Phosphorylation of Emi1 PSMB3 +PWCOMMONS Phosphorylation of Emi1 PSMB7 +PWCOMMONS Phosphorylation of Emi1 PSME1 +PWCOMMONS Phosphorylation of Emi1 PSMD11 +PWCOMMONS Phosphorylation of Emi1 PSMA5 +PWCOMMONS Phosphorylation of Emi1 PSMC5 +PWCOMMONS Phosphorylation of Emi1 PSMC1 +PWCOMMONS Phosphorylation of Emi1 PSMD7 +PWCOMMONS Phosphorylation of Emi1 PSMD3 +PWCOMMONS Phosphorylation of Emi1 PSMB2 +PWCOMMONS Phosphorylation of Emi1 PSMD13 +PWCOMMONS Phosphorylation of Emi1 PSMD14 +PWCOMMONS Phosphorylation of Emi1 PSMB1 +PWCOMMONS Phosphorylation of Emi1 PSMA6 +PWCOMMONS Phosphorylation of Emi1 PSMB9 +PWCOMMONS Phosphorylation of Emi1 PSMB10 +PWCOMMONS Phosphorylation of Emi1 PSMD9 +PWCOMMONS Phosphorylation of Emi1 PSMC4 +PWCOMMONS Phosphorylation of Emi1 PSMA1 +PWCOMMONS Phosphorylation of Emi1 PSMA4 +PWCOMMONS Phosphorylation of Emi1 PSMA7 +PWCOMMONS Phosphorylation of Emi1 PSMF1 +PWCOMMONS Phosphorylation of Emi1 PSME2 +PWCOMMONS Phosphorylation of Emi1 PSMD12 +PWCOMMONS Phosphorylation of Emi1 PSMC3 +PWCOMMONS Phosphorylation of Emi1 PSMC2 +PWCOMMONS Phosphorylation of Emi1 PSMD2 +PWCOMMONS Phosphorylation of Emi1 CDC2 +PWCOMMONS Phosphorylation of Emi1 CCNB1 +PWCOMMONS Phosphorylation of Emi1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 GLRX +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5O +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5F1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5J +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5G1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5L +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 MT-ATP6 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5J2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 MT-ATP8 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5H +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5I +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5C1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5D +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5A1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5B +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 ATP5E +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 TXNRD1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 AK1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 VAMP2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 NME2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 NME1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 RRM2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 RRM1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 INS +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 SYT5 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 GSR +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 KCNJ11 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by adenylate kinase 1 +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected pyrimidine APEX1 +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected pyrimidine TDG +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected pyrimidine SMUG1 +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected pyrimidine NTHL1 +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected pyrimidine +PWCOMMONS Glutamate Binding, Activation of AMPA Receptors and Synaptic Plasticity NSF +PWCOMMONS Glutamate Binding, Activation of AMPA Receptors and Synaptic Plasticity AKAP5 +PWCOMMONS Glutamate Binding, Activation of AMPA Receptors and Synaptic Plasticity EPB41L1 +PWCOMMONS Glutamate Binding, Activation of AMPA Receptors and Synaptic Plasticity DLG1 +PWCOMMONS Glutamate Binding, Activation of AMPA Receptors and Synaptic Plasticity DLG4 +PWCOMMONS Glutamate Binding, Activation of AMPA Receptors and Synaptic Plasticity MDM2 +PWCOMMONS Glutamate Binding, Activation of AMPA Receptors and Synaptic Plasticity +PWCOMMONS Trafficking of AMPA receptors NSF +PWCOMMONS Trafficking of AMPA receptors AKAP5 +PWCOMMONS Trafficking of AMPA receptors EPB41L1 +PWCOMMONS Trafficking of AMPA receptors DLG1 +PWCOMMONS Trafficking of AMPA receptors DLG4 +PWCOMMONS Trafficking of AMPA receptors MDM2 +PWCOMMONS Trafficking of AMPA receptors +PWCOMMONS Trafficking of GluR2-containing AMPA receptors NSF +PWCOMMONS Trafficking of GluR2-containing AMPA receptors +PWCOMMONS Ca-dependent events CAV1 +PWCOMMONS Ca-dependent events NOS3 +PWCOMMONS Ca-dependent events CALM1 +PWCOMMONS Ca-dependent events HSP90AA1 +PWCOMMONS Ca-dependent events MGLL +PWCOMMONS Ca-dependent events LIPE +PWCOMMONS Ca-dependent events PFKFB1 +PWCOMMONS Ca-dependent events FABP4 +PWCOMMONS Ca-dependent events MLXIPL +PWCOMMONS Ca-dependent events CREB1 +PWCOMMONS Ca-dependent events ADRBK1 +PWCOMMONS Ca-dependent events CAMK4 +PWCOMMONS Ca-dependent events AKT1 +PWCOMMONS Ca-dependent events +PWCOMMONS CaM pathway NOS3 +PWCOMMONS CaM pathway CALM1 +PWCOMMONS CaM pathway HSP90AA1 +PWCOMMONS CaM pathway MGLL +PWCOMMONS CaM pathway LIPE +PWCOMMONS CaM pathway PFKFB1 +PWCOMMONS CaM pathway FABP4 +PWCOMMONS CaM pathway MLXIPL +PWCOMMONS CaM pathway CREB1 +PWCOMMONS CaM pathway ADRBK1 +PWCOMMONS CaM pathway CAMK4 +PWCOMMONS CaM pathway AKT1 +PWCOMMONS CaM pathway +PWCOMMONS Calmodulin induced events LIPE +PWCOMMONS Calmodulin induced events PFKFB1 +PWCOMMONS Calmodulin induced events FABP4 +PWCOMMONS Calmodulin induced events CALM1 +PWCOMMONS Calmodulin induced events MLXIPL +PWCOMMONS Calmodulin induced events CREB1 +PWCOMMONS Calmodulin induced events ADRBK1 +PWCOMMONS Calmodulin induced events CAMK4 +PWCOMMONS Calmodulin induced events +PWCOMMONS CaMK IV-mediated phosphorylation of CREB CALM1 +PWCOMMONS CaMK IV-mediated phosphorylation of CREB CREB1 +PWCOMMONS CaMK IV-mediated phosphorylation of CREB +PWCOMMONS PKA-mediated phosphorylation of CREB LIPE +PWCOMMONS PKA-mediated phosphorylation of CREB PFKFB1 +PWCOMMONS PKA-mediated phosphorylation of CREB FABP4 +PWCOMMONS PKA-mediated phosphorylation of CREB CALM1 +PWCOMMONS PKA-mediated phosphorylation of CREB MLXIPL +PWCOMMONS PKA-mediated phosphorylation of CREB CREB1 +PWCOMMONS PKA-mediated phosphorylation of CREB +PWCOMMONS PKA activation LIPE +PWCOMMONS PKA activation PFKFB1 +PWCOMMONS PKA activation MLXIPL +PWCOMMONS PKA activation CREB1 +PWCOMMONS PKA activation FABP4 +PWCOMMONS PKA activation CALM1 +PWCOMMONS PKA activation +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate XDH +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate HPRT1 +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate GDA +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate NP +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate TXN +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate GLRX +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate GMPS +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate TXNRD1 +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate GUK1 +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate IMPDH2 +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate NME2 +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate NME1 +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate RRM2 +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate RRM1 +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate GSR +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate IMPDH1 +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate CAT +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate NT5E +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate NT5C +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate NT5M +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate NT5C1A +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate NT5C1B +PWCOMMONS Hydrolysis of nucleoside 5'-monophosphates to nucleosides plus orthophosphate +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II XDH +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II HPRT1 +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II GDA +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II NP +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II TXN +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II GLRX +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II GMPS +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II TXNRD1 +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II GUK1 +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II IMPDH2 +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II NME2 +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II NME1 +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II RRM2 +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II RRM1 +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II GSR +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II IMPDH1 +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II CAT +PWCOMMONS Hydrolysis of cytosolic nucleoside 5'-monophosphates by 5'-nucleotidase cytosolic II +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5O +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5F1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5J +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5G1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5L +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-ATP6 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5J2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-ATP8 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5H +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5I +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5C1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5D +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5A1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5B +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ATP5E +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids UQCRC1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids UQCRB +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids UQCR10 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids UQCR +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids UQCRC2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids UQCRH +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids UQCRQ +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids UQCRFS1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-CYB +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids CYC1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids CYCS +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-CO2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids COX8A +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids COX7C +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-CO3 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids COX6C +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids COX5B +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-CO1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids COX7A2L +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids COX4I1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids COX6A1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids COX7B +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids COX6B1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids COX5A +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ETFA +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ETFB +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids HADH +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFS3 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFS4 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFS6 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA5 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFS5 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFS1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFS2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFV2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFV3 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFV1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA4 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA11 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-ND3 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA13 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFB5 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFC1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA6 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFC2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA3 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFB3 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFB1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFAB1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-ND4 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-ND5 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFB9 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFB6 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFB4 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA8 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFB7 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA12 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFB2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-ND4L +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-ND2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFB10 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA7 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFB8 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFB11 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-ND6 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids MT-ND1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFS7 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA10 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFS8 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids NDUFA9 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids VAMP2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ECHS1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids HADHB +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids HADHA +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids INS +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids SYT5 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids KCNJ11 +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ACADM +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ACADL +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids ACADVL +PWCOMMONS mitochondrial fatty acid beta-oxidation of saturated fatty acids +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5O +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5F1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5J +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5G1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5L +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-ATP6 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5J2 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-ATP8 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5H +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5I +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5C1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5D +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5A1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5B +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ATP5E +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA UQCRC1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA UQCRB +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA UQCR10 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA UQCR +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA UQCRC2 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA UQCRH +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA UQCRQ +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA UQCRFS1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-CYB +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA CYC1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA CYCS +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-CO2 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA COX8A +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA COX7C +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-CO3 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA COX6C +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA COX5B +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-CO1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA COX7A2L +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA COX4I1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA COX6A1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA COX7B +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA COX6B1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA COX5A +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ETFA +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ETFB +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA HADH +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFS3 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFS4 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFS6 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA5 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFS5 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFS1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFS2 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFV2 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFV3 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFV1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA4 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA11 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-ND3 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA13 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFB5 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFC1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA6 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFC2 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA3 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFB3 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFB1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFAB1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-ND4 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-ND5 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFB9 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFB6 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFB4 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA8 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFB7 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA12 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFB2 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-ND4L +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-ND2 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFB10 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA7 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA2 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFB8 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFB11 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-ND6 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA MT-ND1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFS7 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA10 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFS8 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA NDUFA9 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA VAMP2 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ECHS1 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA HADHB +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA HADHA +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA INS +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA SYT5 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA KCNJ11 +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA ACADM +PWCOMMONS Beta oxidation of octanoyl-CoA to hexanoyl-CoA +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5O +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5F1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5J +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5G1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5L +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-ATP6 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5J2 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-ATP8 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5H +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5I +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5C1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5D +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5A1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5B +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ATP5E +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ETFA +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ETFB +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA UQCRC1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA UQCRB +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA UQCR10 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA UQCR +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA UQCRC2 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA UQCRH +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA UQCRQ +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA UQCRFS1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-CYB +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA CYC1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA CYCS +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA ECHS1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-CO2 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA COX8A +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA COX7C +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-CO3 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA COX6C +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA COX5B +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-CO1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA COX7A2L +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA COX4I1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA COX6A1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA COX7B +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA COX6B1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA COX5A +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA HADHB +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA HADHA +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA HADH +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA VAMP2 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA INS +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA SYT5 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA KCNJ11 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFS3 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFS4 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFS6 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA5 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFS5 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFS1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFS2 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFV2 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFV3 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFV1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA4 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA11 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-ND3 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA13 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFB5 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFC1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA6 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFC2 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA3 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFB3 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFB1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFAB1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-ND4 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-ND5 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFB9 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFB6 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFB4 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA8 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFB7 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA12 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFB2 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-ND4L +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-ND2 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFB10 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA7 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA2 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFB8 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFB11 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-ND6 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA MT-ND1 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFS7 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA10 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFS8 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA NDUFA9 +PWCOMMONS Beta oxidation of hexanoyl-CoA to butanoyl-CoA +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5O +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5F1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5J +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5G1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5L +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-ATP6 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5J2 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-ATP8 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5H +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5I +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5C1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5D +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5A1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5B +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ATP5E +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ETFA +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ETFB +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA UQCRC1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA UQCRB +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA UQCR10 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA UQCR +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA UQCRC2 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA UQCRH +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA UQCRQ +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA UQCRFS1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-CYB +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA CYC1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA CYCS +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA ECHS1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-CO2 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA COX8A +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA COX7C +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-CO3 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA COX6C +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA COX5B +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-CO1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA COX7A2L +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA COX4I1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA COX6A1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA COX7B +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA COX6B1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA COX5A +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA HADH +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA VAMP2 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA INS +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA SYT5 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA KCNJ11 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFS3 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFS4 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFS6 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA5 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFS5 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFS1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFS2 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFV2 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFV3 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFV1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA4 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA11 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-ND3 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA13 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFB5 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFC1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA6 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFC2 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA3 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFB3 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFB1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFAB1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-ND4 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-ND5 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFB9 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFB6 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFB4 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA8 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFB7 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA12 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFB2 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-ND4L +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-ND2 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFB10 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA7 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA2 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFB8 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFB11 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-ND6 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA MT-ND1 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFS7 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA10 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFS8 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA NDUFA9 +PWCOMMONS Beta oxidation of butanoyl-CoA to acetyl-CoA +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5O +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5F1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5J +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5G1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5L +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-ATP6 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5J2 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-ATP8 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5H +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5I +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5C1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5D +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5A1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5B +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ATP5E +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA HADHB +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA HADHA +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA UQCRC1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA UQCRB +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA UQCR10 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA UQCR +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA UQCRC2 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA UQCRH +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA UQCRQ +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA UQCRFS1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-CYB +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA CYC1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA CYCS +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-CO2 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA COX8A +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA COX7C +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-CO3 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA COX6C +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA COX5B +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-CO1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA COX7A2L +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA COX4I1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA COX6A1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA COX7B +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA COX6B1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA COX5A +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ETFA +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ETFB +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA HADH +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ACADL +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFS3 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFS4 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFS6 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA5 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFS5 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFS1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFS2 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFV2 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFV3 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFV1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA4 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA11 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-ND3 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA13 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFB5 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFC1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA6 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFC2 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA3 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFB3 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFB1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFAB1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-ND4 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-ND5 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFB9 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFB6 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFB4 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA8 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFB7 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA12 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFB2 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-ND4L +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-ND2 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFB10 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA7 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA2 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFB8 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFB11 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-ND6 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA MT-ND1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFS7 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA10 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFS8 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA NDUFA9 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA VAMP2 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ECHS1 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA INS +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA SYT5 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA KCNJ11 +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA ACADM +PWCOMMONS Beta oxidation of myristoyl-CoA to lauroyl-CoA +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5O +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5F1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5J +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5G1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5L +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-ATP6 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5J2 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-ATP8 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5H +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5I +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5C1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5D +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5A1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5B +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ATP5E +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA UQCRC1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA UQCRB +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA UQCR10 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA UQCR +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA UQCRC2 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA UQCRH +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA UQCRQ +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA UQCRFS1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-CYB +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA CYC1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA CYCS +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-CO2 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA COX8A +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA COX7C +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-CO3 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA COX6C +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA COX5B +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-CO1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA COX7A2L +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA COX4I1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA COX6A1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA COX7B +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA COX6B1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA COX5A +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ETFA +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ETFB +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA HADH +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ACADL +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFS3 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFS4 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFS6 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA5 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFS5 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFS1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFS2 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFV2 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFV3 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFV1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA4 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA11 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-ND3 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA13 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFB5 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFC1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA6 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFC2 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA3 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFB3 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFB1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFAB1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-ND4 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-ND5 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFB9 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFB6 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFB4 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA8 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFB7 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA12 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFB2 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-ND4L +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-ND2 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFB10 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA7 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA2 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFB8 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFB11 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-ND6 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA MT-ND1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFS7 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA10 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFS8 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA NDUFA9 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA VAMP2 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ECHS1 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA HADHB +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA HADHA +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA INS +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA SYT5 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA KCNJ11 +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA ACADM +PWCOMMONS Beta oxidation of lauroyl-CoA to decanoyl-CoA-CoA +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5O +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5F1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5J +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5G1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5L +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-ATP6 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5J2 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-ATP8 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5H +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5I +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5C1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5D +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5A1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5B +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ATP5E +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA UQCRC1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA UQCRB +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA UQCR10 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA UQCR +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA UQCRC2 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA UQCRH +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA UQCRQ +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA UQCRFS1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-CYB +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA CYC1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA CYCS +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-CO2 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA COX8A +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA COX7C +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-CO3 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA COX6C +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA COX5B +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-CO1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA COX7A2L +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA COX4I1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA COX6A1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA COX7B +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA COX6B1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA COX5A +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ETFA +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ETFB +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA HADH +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFS3 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFS4 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFS6 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA5 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFS5 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFS1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFS2 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFV2 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFV3 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFV1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA4 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA11 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-ND3 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA13 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFB5 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFC1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA6 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFC2 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA3 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFB3 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFB1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFAB1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-ND4 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-ND5 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFB9 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFB6 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFB4 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA8 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFB7 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA12 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFB2 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-ND4L +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-ND2 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFB10 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA7 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA2 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFB8 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFB11 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-ND6 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA MT-ND1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFS7 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA10 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFS8 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA NDUFA9 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA VAMP2 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ECHS1 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA HADHB +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA HADHA +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA INS +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA SYT5 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA KCNJ11 +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA ACADM +PWCOMMONS Beta oxidation of decanoyl-CoA to octanoyl-CoA-CoA +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5O +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5F1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5J +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5G1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5L +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-ATP6 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5J2 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-ATP8 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5H +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5I +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5C1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5D +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5A1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5B +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ATP5E +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA HADHB +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA HADHA +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA UQCRC1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA UQCRB +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA UQCR10 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA UQCR +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA UQCRC2 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA UQCRH +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA UQCRQ +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA UQCRFS1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-CYB +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA CYC1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA CYCS +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-CO2 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA COX8A +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA COX7C +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-CO3 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA COX6C +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA COX5B +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-CO1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA COX7A2L +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA COX4I1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA COX6A1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA COX7B +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA COX6B1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA COX5A +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ETFA +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ETFB +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA HADH +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ACADL +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ACADVL +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFS3 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFS4 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFS6 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA5 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFS5 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFS1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFS2 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFV2 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFV3 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFV1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA4 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA11 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-ND3 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA13 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFB5 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFC1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA6 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFC2 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA3 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFB3 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFB1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFAB1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-ND4 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-ND5 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFB9 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFB6 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFB4 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA8 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFB7 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA12 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFB2 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-ND4L +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-ND2 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFB10 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA7 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA2 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFB8 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFB11 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-ND6 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA MT-ND1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFS7 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA10 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFS8 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA NDUFA9 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA VAMP2 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ECHS1 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA INS +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA SYT5 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA KCNJ11 +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA ACADM +PWCOMMONS Beta oxidation of palmitoyl-CoA to myristoyl-CoA +PWCOMMONS Apoptotic cleavage of cell adhesion proteins TJP2 +PWCOMMONS Apoptotic cleavage of cell adhesion proteins DSG3 +PWCOMMONS Apoptotic cleavage of cell adhesion proteins CDH1 +PWCOMMONS Apoptotic cleavage of cell adhesion proteins CASP3 +PWCOMMONS Apoptotic cleavage of cell adhesion proteins PKP1 +PWCOMMONS Apoptotic cleavage of cell adhesion proteins DSP +PWCOMMONS Apoptotic cleavage of cell adhesion proteins DSG2 +PWCOMMONS Apoptotic cleavage of cell adhesion proteins DSG1 +PWCOMMONS Apoptotic cleavage of cell adhesion proteins +PWCOMMONS Nicotinate metabolism AFMID +PWCOMMONS Nicotinate metabolism ACMSD +PWCOMMONS Nicotinate metabolism NMNAT2 +PWCOMMONS Nicotinate metabolism NAMPT +PWCOMMONS Nicotinate metabolism NAPRT1 +PWCOMMONS Nicotinate metabolism KYNU +PWCOMMONS Nicotinate metabolism HAAO +PWCOMMONS Nicotinate metabolism TDO2 +PWCOMMONS Nicotinate metabolism NMNAT3 +PWCOMMONS Nicotinate metabolism INDO +PWCOMMONS Nicotinate metabolism QPRT +PWCOMMONS Nicotinate metabolism KMO +PWCOMMONS Nicotinate metabolism NADK +PWCOMMONS Nicotinate metabolism NMNAT1 +PWCOMMONS Nicotinate metabolism +PWCOMMONS Nicotinamide salvaging NMNAT3 +PWCOMMONS Nicotinamide salvaging NADSYN1 +PWCOMMONS Nicotinamide salvaging NMNAT2 +PWCOMMONS Nicotinamide salvaging NADK +PWCOMMONS Nicotinamide salvaging NMNAT1 +PWCOMMONS Nicotinamide salvaging NAPRT1 +PWCOMMONS Nicotinamide salvaging +PWCOMMONS Catecholamines biosynthesis SLC18A2 +PWCOMMONS Catecholamines biosynthesis VAMP2 +PWCOMMONS Catecholamines biosynthesis RAB3A +PWCOMMONS Catecholamines biosynthesis SYT1 +PWCOMMONS Catecholamines biosynthesis RIMS1 +PWCOMMONS Catecholamines biosynthesis CPLX1 +PWCOMMONS Catecholamines biosynthesis DBH +PWCOMMONS Catecholamines biosynthesis MAOA +PWCOMMONS Catecholamines biosynthesis SLC22A2 +PWCOMMONS Catecholamines biosynthesis DDC +PWCOMMONS Catecholamines biosynthesis +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange PCNA +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange POLD4 +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange POLD3 +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange POLD2 +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange POLD1 +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange RAD51 +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange RPA1 +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange RPA3 +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange RPA2 +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange RAD52 +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange BRCA2 +PWCOMMONS Presynaptic phase of homologous DNA pairing and strand exchange +PWCOMMONS Assembly of the RAD51-ssDNA nucleoprotein complex RAD52 +PWCOMMONS Assembly of the RAD51-ssDNA nucleoprotein complex RPA1 +PWCOMMONS Assembly of the RAD51-ssDNA nucleoprotein complex RPA3 +PWCOMMONS Assembly of the RAD51-ssDNA nucleoprotein complex RPA2 +PWCOMMONS Assembly of the RAD51-ssDNA nucleoprotein complex +PWCOMMONS Resolution of D-loop structures PCNA +PWCOMMONS Resolution of D-loop structures POLD4 +PWCOMMONS Resolution of D-loop structures POLD3 +PWCOMMONS Resolution of D-loop structures POLD2 +PWCOMMONS Resolution of D-loop structures POLD1 +PWCOMMONS Resolution of D-loop structures +PWCOMMONS Resolution of D-loop structures through Holliday junction intermediates PCNA +PWCOMMONS Resolution of D-loop structures through Holliday junction intermediates POLD4 +PWCOMMONS Resolution of D-loop structures through Holliday junction intermediates POLD3 +PWCOMMONS Resolution of D-loop structures through Holliday junction intermediates POLD2 +PWCOMMONS Resolution of D-loop structures through Holliday junction intermediates POLD1 +PWCOMMONS Resolution of D-loop structures through Holliday junction intermediates +PWCOMMONS Synaptic stable pairing/D-loop structure formation between recombining DNA molecules PCNA +PWCOMMONS Synaptic stable pairing/D-loop structure formation between recombining DNA molecules POLD4 +PWCOMMONS Synaptic stable pairing/D-loop structure formation between recombining DNA molecules POLD3 +PWCOMMONS Synaptic stable pairing/D-loop structure formation between recombining DNA molecules POLD2 +PWCOMMONS Synaptic stable pairing/D-loop structure formation between recombining DNA molecules POLD1 +PWCOMMONS Synaptic stable pairing/D-loop structure formation between recombining DNA molecules +PWCOMMONS Homologous DNA pairing and strand exchange PCNA +PWCOMMONS Homologous DNA pairing and strand exchange POLD4 +PWCOMMONS Homologous DNA pairing and strand exchange POLD3 +PWCOMMONS Homologous DNA pairing and strand exchange POLD2 +PWCOMMONS Homologous DNA pairing and strand exchange POLD1 +PWCOMMONS Homologous DNA pairing and strand exchange RAD51 +PWCOMMONS Homologous DNA pairing and strand exchange RPA1 +PWCOMMONS Homologous DNA pairing and strand exchange RPA3 +PWCOMMONS Homologous DNA pairing and strand exchange RPA2 +PWCOMMONS Homologous DNA pairing and strand exchange RAD52 +PWCOMMONS Homologous DNA pairing and strand exchange BRCA2 +PWCOMMONS Homologous DNA pairing and strand exchange +PWCOMMONS Peptide hormones LHB +PWCOMMONS Peptide hormones FSHB +PWCOMMONS Peptide hormones TSHB +PWCOMMONS Peptide hormones CGB +PWCOMMONS Peptide hormones PCSK1 +PWCOMMONS Peptide hormones POMC +PWCOMMONS Peptide hormones +PWCOMMONS Glycoprotein hormones LHB +PWCOMMONS Glycoprotein hormones FSHB +PWCOMMONS Glycoprotein hormones TSHB +PWCOMMONS Glycoprotein hormones CGB +PWCOMMONS Glycoprotein hormones +PWCOMMONS Serotonin clearance from the synaptic cleft ALDH2 +PWCOMMONS Serotonin clearance from the synaptic cleft +PWCOMMONS Metabolism of serotonin ALDH2 +PWCOMMONS Metabolism of serotonin +PWCOMMONS Protein folding CCT2 +PWCOMMONS Protein folding CCT3 +PWCOMMONS Protein folding CCT6A +PWCOMMONS Protein folding CCT5 +PWCOMMONS Protein folding CCT8 +PWCOMMONS Protein folding CCT1 +PWCOMMONS Protein folding CCT7 +PWCOMMONS Protein folding CCT4 +PWCOMMONS Protein folding TBCE +PWCOMMONS Protein folding TBCB +PWCOMMONS Protein folding TBCC +PWCOMMONS Protein folding TBCD +PWCOMMONS Protein folding ACTB +PWCOMMONS Protein folding TBCA +PWCOMMONS Protein folding VBP1 +PWCOMMONS Protein folding PFDN1 +PWCOMMONS Protein folding PFDN5 +PWCOMMONS Protein folding PFDN2 +PWCOMMONS Protein folding PFDN4 +PWCOMMONS Protein folding PFDN6 +PWCOMMONS Protein folding +PWCOMMONS Chaperonin-mediated protein folding CCT2 +PWCOMMONS Chaperonin-mediated protein folding CCT3 +PWCOMMONS Chaperonin-mediated protein folding CCT6A +PWCOMMONS Chaperonin-mediated protein folding CCT5 +PWCOMMONS Chaperonin-mediated protein folding CCT8 +PWCOMMONS Chaperonin-mediated protein folding CCT1 +PWCOMMONS Chaperonin-mediated protein folding CCT7 +PWCOMMONS Chaperonin-mediated protein folding CCT4 +PWCOMMONS Chaperonin-mediated protein folding TBCE +PWCOMMONS Chaperonin-mediated protein folding TBCB +PWCOMMONS Chaperonin-mediated protein folding TBCC +PWCOMMONS Chaperonin-mediated protein folding TBCD +PWCOMMONS Chaperonin-mediated protein folding ACTB +PWCOMMONS Chaperonin-mediated protein folding TBCA +PWCOMMONS Chaperonin-mediated protein folding VBP1 +PWCOMMONS Chaperonin-mediated protein folding PFDN1 +PWCOMMONS Chaperonin-mediated protein folding PFDN5 +PWCOMMONS Chaperonin-mediated protein folding PFDN2 +PWCOMMONS Chaperonin-mediated protein folding PFDN4 +PWCOMMONS Chaperonin-mediated protein folding PFDN6 +PWCOMMONS Chaperonin-mediated protein folding +PWCOMMONS Association of TriC/CCT with target proteins during biosynthesis CCT2 +PWCOMMONS Association of TriC/CCT with target proteins during biosynthesis CCT3 +PWCOMMONS Association of TriC/CCT with target proteins during biosynthesis CCT6A +PWCOMMONS Association of TriC/CCT with target proteins during biosynthesis CCT5 +PWCOMMONS Association of TriC/CCT with target proteins during biosynthesis CCT8 +PWCOMMONS Association of TriC/CCT with target proteins during biosynthesis CCT1 +PWCOMMONS Association of TriC/CCT with target proteins during biosynthesis CCT7 +PWCOMMONS Association of TriC/CCT with target proteins during biosynthesis CCT4 +PWCOMMONS Association of TriC/CCT with target proteins during biosynthesis +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding TBCB +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding TBCC +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding TBCD +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding CCT2 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding CCT3 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding CCT6A +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding CCT5 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding CCT8 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding CCT1 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding CCT7 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding CCT4 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding ACTB +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding TBCA +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding VBP1 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding PFDN1 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding PFDN5 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding PFDN2 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding PFDN4 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding PFDN6 +PWCOMMONS Cooperation of Prefoldin and TriC/CCT in actin and tubulin folding +PWCOMMONS Folding of actin by CCT/TriC CCT2 +PWCOMMONS Folding of actin by CCT/TriC CCT3 +PWCOMMONS Folding of actin by CCT/TriC CCT6A +PWCOMMONS Folding of actin by CCT/TriC CCT5 +PWCOMMONS Folding of actin by CCT/TriC CCT8 +PWCOMMONS Folding of actin by CCT/TriC CCT1 +PWCOMMONS Folding of actin by CCT/TriC CCT7 +PWCOMMONS Folding of actin by CCT/TriC CCT4 +PWCOMMONS Folding of actin by CCT/TriC +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC TBCB +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC TBCC +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC TBCD +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC CCT2 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC CCT3 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC CCT6A +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC CCT5 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC CCT8 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC CCT1 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC CCT7 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC CCT4 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC ACTB +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC TBCA +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC VBP1 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC PFDN1 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC PFDN5 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC PFDN2 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC PFDN4 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC PFDN6 +PWCOMMONS Prefoldin mediated transfer of substrate to CCT/TriC +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC TBCB +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC TBCD +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC TBCC +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC CCT2 +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC CCT3 +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC CCT6A +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC CCT5 +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC CCT8 +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC CCT1 +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC CCT7 +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC CCT4 +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC TBCA +PWCOMMONS Formation of tubulin folding intermediates by CCT/TriC +PWCOMMONS Post-chaperonin tubulin folding pathway TBCB +PWCOMMONS Post-chaperonin tubulin folding pathway TBCD +PWCOMMONS Post-chaperonin tubulin folding pathway TBCC +PWCOMMONS Post-chaperonin tubulin folding pathway TBCA +PWCOMMONS Post-chaperonin tubulin folding pathway +PWCOMMONS FGFR2c ligand binding and activation CBL +PWCOMMONS FGFR2c ligand binding and activation +PWCOMMONS Valine catabolism ATP5O +PWCOMMONS Valine catabolism ATP5F1 +PWCOMMONS Valine catabolism ATP5J +PWCOMMONS Valine catabolism ATP5G1 +PWCOMMONS Valine catabolism ATP5L +PWCOMMONS Valine catabolism MT-ATP6 +PWCOMMONS Valine catabolism ATP5J2 +PWCOMMONS Valine catabolism MT-ATP8 +PWCOMMONS Valine catabolism ATP5H +PWCOMMONS Valine catabolism ATP5I +PWCOMMONS Valine catabolism ATP5C1 +PWCOMMONS Valine catabolism ATP5D +PWCOMMONS Valine catabolism ATP5A1 +PWCOMMONS Valine catabolism ATP5B +PWCOMMONS Valine catabolism ATP5E +PWCOMMONS Valine catabolism UROD +PWCOMMONS Valine catabolism UQCRC1 +PWCOMMONS Valine catabolism UQCRB +PWCOMMONS Valine catabolism UQCR10 +PWCOMMONS Valine catabolism UQCR +PWCOMMONS Valine catabolism UQCRC2 +PWCOMMONS Valine catabolism UQCRH +PWCOMMONS Valine catabolism UQCRQ +PWCOMMONS Valine catabolism UQCRFS1 +PWCOMMONS Valine catabolism MT-CYB +PWCOMMONS Valine catabolism CYC1 +PWCOMMONS Valine catabolism CPOX +PWCOMMONS Valine catabolism UROS +PWCOMMONS Valine catabolism MT-CO2 +PWCOMMONS Valine catabolism COX8A +PWCOMMONS Valine catabolism COX7C +PWCOMMONS Valine catabolism MT-CO3 +PWCOMMONS Valine catabolism COX6C +PWCOMMONS Valine catabolism COX5B +PWCOMMONS Valine catabolism MT-CO1 +PWCOMMONS Valine catabolism COX7A2L +PWCOMMONS Valine catabolism COX4I1 +PWCOMMONS Valine catabolism COX6A1 +PWCOMMONS Valine catabolism COX7B +PWCOMMONS Valine catabolism COX6B1 +PWCOMMONS Valine catabolism COX5A +PWCOMMONS Valine catabolism DLST +PWCOMMONS Valine catabolism OGDH +PWCOMMONS Valine catabolism DLD +PWCOMMONS Valine catabolism BCAT1 +PWCOMMONS Valine catabolism DBT +PWCOMMONS Valine catabolism BCKDHA +PWCOMMONS Valine catabolism BCKDHB +PWCOMMONS Valine catabolism MCEE +PWCOMMONS Valine catabolism ALAD +PWCOMMONS Valine catabolism CS +PWCOMMONS Valine catabolism HIBCH +PWCOMMONS Valine catabolism PPOX +PWCOMMONS Valine catabolism ACO2 +PWCOMMONS Valine catabolism IDH3G +PWCOMMONS Valine catabolism IDH3A +PWCOMMONS Valine catabolism IDH3B +PWCOMMONS Valine catabolism ALDH6A1 +PWCOMMONS Valine catabolism SUCLG1 +PWCOMMONS Valine catabolism SUCLG2 +PWCOMMONS Valine catabolism BCAT2 +PWCOMMONS Valine catabolism KCNJ11 +PWCOMMONS Valine catabolism SDHC +PWCOMMONS Valine catabolism SDHD +PWCOMMONS Valine catabolism SDHB +PWCOMMONS Valine catabolism SDHA +PWCOMMONS Valine catabolism FECH +PWCOMMONS Valine catabolism SUCLA2 +PWCOMMONS Valine catabolism CYCS +PWCOMMONS Valine catabolism HIBADH +PWCOMMONS Valine catabolism PCCB +PWCOMMONS Valine catabolism PCCA +PWCOMMONS Valine catabolism MDH2 +PWCOMMONS Valine catabolism NDUFS3 +PWCOMMONS Valine catabolism NDUFS4 +PWCOMMONS Valine catabolism NDUFS6 +PWCOMMONS Valine catabolism NDUFA5 +PWCOMMONS Valine catabolism NDUFS5 +PWCOMMONS Valine catabolism NDUFS1 +PWCOMMONS Valine catabolism NDUFS2 +PWCOMMONS Valine catabolism NDUFV2 +PWCOMMONS Valine catabolism NDUFV3 +PWCOMMONS Valine catabolism NDUFV1 +PWCOMMONS Valine catabolism NDUFA4 +PWCOMMONS Valine catabolism NDUFA11 +PWCOMMONS Valine catabolism MT-ND3 +PWCOMMONS Valine catabolism NDUFA13 +PWCOMMONS Valine catabolism NDUFB5 +PWCOMMONS Valine catabolism NDUFC1 +PWCOMMONS Valine catabolism NDUFA6 +PWCOMMONS Valine catabolism NDUFC2 +PWCOMMONS Valine catabolism NDUFA3 +PWCOMMONS Valine catabolism NDUFB3 +PWCOMMONS Valine catabolism NDUFB1 +PWCOMMONS Valine catabolism NDUFAB1 +PWCOMMONS Valine catabolism MT-ND4 +PWCOMMONS Valine catabolism MT-ND5 +PWCOMMONS Valine catabolism NDUFA1 +PWCOMMONS Valine catabolism NDUFB9 +PWCOMMONS Valine catabolism NDUFB6 +PWCOMMONS Valine catabolism NDUFB4 +PWCOMMONS Valine catabolism NDUFA8 +PWCOMMONS Valine catabolism NDUFB7 +PWCOMMONS Valine catabolism NDUFA12 +PWCOMMONS Valine catabolism NDUFB2 +PWCOMMONS Valine catabolism MT-ND4L +PWCOMMONS Valine catabolism MT-ND2 +PWCOMMONS Valine catabolism NDUFB10 +PWCOMMONS Valine catabolism NDUFA7 +PWCOMMONS Valine catabolism NDUFA2 +PWCOMMONS Valine catabolism NDUFB8 +PWCOMMONS Valine catabolism NDUFB11 +PWCOMMONS Valine catabolism MT-ND6 +PWCOMMONS Valine catabolism MT-ND1 +PWCOMMONS Valine catabolism NDUFS7 +PWCOMMONS Valine catabolism NDUFA10 +PWCOMMONS Valine catabolism NDUFS8 +PWCOMMONS Valine catabolism NDUFA9 +PWCOMMONS Valine catabolism VAMP2 +PWCOMMONS Valine catabolism MUT +PWCOMMONS Valine catabolism FH +PWCOMMONS Valine catabolism INS +PWCOMMONS Valine catabolism SYT5 +PWCOMMONS Valine catabolism +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase DBT +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase BCKDHA +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase BCKDHB +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase DLD +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5O +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5F1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5J +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5G1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5L +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ATP6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5J2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ATP8 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5H +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5I +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5C1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5D +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5A1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5B +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5E +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UROD +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCRC1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCRB +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCR10 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCR +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCRC2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCRH +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCRQ +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCRFS1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-CYB +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase CYC1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase CPOX +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UROS +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-CO2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX8A +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX7C +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-CO3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX6C +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX5B +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-CO1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX7A2L +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX4I1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX6A1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX7B +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX6B1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX5A +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase DLST +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase OGDH +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MCEE +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ALAD +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase CS +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase HIBCH +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase PPOX +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ACO2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase IDH3G +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase IDH3A +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase IDH3B +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ALDH6A1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SUCLG1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SUCLG2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase KCNJ11 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SDHC +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SDHD +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SDHB +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SDHA +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase FECH +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SUCLA2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase CYCS +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase HIBADH +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase PCCB +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase PCCA +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MDH2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS4 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFV2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFV3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFV1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA4 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA11 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA13 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFC1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFC2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB3 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFAB1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND4 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB9 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB4 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA8 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB7 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA12 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND4L +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB10 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA7 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB8 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB11 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND6 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS7 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA10 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS8 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA9 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase VAMP2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MUT +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase FH +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase INS +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SYT5 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisovalerate to isobutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase +PWCOMMONS PLC beta mediated events CAV1 +PWCOMMONS PLC beta mediated events HSP90AA1 +PWCOMMONS PLC beta mediated events NOS3 +PWCOMMONS PLC beta mediated events VAMP2 +PWCOMMONS PLC beta mediated events INS +PWCOMMONS PLC beta mediated events SYT5 +PWCOMMONS PLC beta mediated events AKT1 +PWCOMMONS PLC beta mediated events PLA2G4A +PWCOMMONS PLC beta mediated events MGLL +PWCOMMONS PLC beta mediated events LIPE +PWCOMMONS PLC beta mediated events PFKFB1 +PWCOMMONS PLC beta mediated events FABP4 +PWCOMMONS PLC beta mediated events MLXIPL +PWCOMMONS PLC beta mediated events CREB1 +PWCOMMONS PLC beta mediated events ADRBK1 +PWCOMMONS PLC beta mediated events CAMK4 +PWCOMMONS PLC beta mediated events +PWCOMMONS 2-LTR circle formation XRCC5 +PWCOMMONS 2-LTR circle formation BANF1 +PWCOMMONS 2-LTR circle formation LIG4 +PWCOMMONS 2-LTR circle formation XRCC4 +PWCOMMONS 2-LTR circle formation +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex ANAPC5 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex ANAPC11 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex CDC23 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex ANAPC1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex UBE2D1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex ANAPC2 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex CDC27 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex ANAPC4 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex ANAPC10 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex UBE2C +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex ANAPC7 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex CDC26 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex CDC16 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex UBE2E1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex CDC2 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex CCNB1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex CDC20 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex WEE1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex CDK2 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex CUL1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex BTRC +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex SKP1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex XPO1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex FBXO5 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex CDC25C +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMC6 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMA3 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD8 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD10 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD6 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMB5 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMB4 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD4 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMA2 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMB8 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD5 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMB6 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSME3 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMB3 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMB7 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSME1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD11 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMA5 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMC5 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMC1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD7 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD3 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMB2 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD13 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD14 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMB1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMA6 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMB9 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMB10 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD9 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMC4 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMA1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMA4 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMA7 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMF1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSME2 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD12 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMC3 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMC2 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex PSMD2 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex CHEK1 +PWCOMMONS Chk1/Chk2(Cds1) mediated inactivation of Cyclin B:Cdk1 complex +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex CDT1 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex FZR1 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ANAPC5 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ANAPC11 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex CDC23 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ANAPC1 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ANAPC2 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex UBE2D1 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex CDC27 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ANAPC4 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ANAPC10 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ANAPC7 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex UBE2C +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex CDC26 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex CDC16 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex UBE2E1 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMC6 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMA3 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD8 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD10 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD1 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD6 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMB5 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMB4 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD4 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMA2 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMB8 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD5 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMB6 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSME3 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMB3 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMB7 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSME1 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD11 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMA5 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMC5 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMC1 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD7 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD3 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMB2 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD13 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD14 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMB1 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMA6 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMB9 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMB10 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD9 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMC4 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMA1 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMA4 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMA7 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMF1 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSME2 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD12 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMC3 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMC2 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex PSMD2 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex CDC6 +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ORC6L +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ORC4L +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ORC3L +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ORC5L +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ORC1L +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex ORC2L +PWCOMMONS CDT1 association with the CDC6:ORC:origin complex +PWCOMMONS Alcohol Dehydrogenase ADH1C +PWCOMMONS Alcohol Dehydrogenase ADH1A +PWCOMMONS Alcohol Dehydrogenase ACSS2 +PWCOMMONS Alcohol Dehydrogenase ADH7 +PWCOMMONS Alcohol Dehydrogenase ADH1B +PWCOMMONS Alcohol Dehydrogenase ADH6 +PWCOMMONS Alcohol Dehydrogenase ALDH1A1 +PWCOMMONS Alcohol Dehydrogenase ALDH2 +PWCOMMONS Alcohol Dehydrogenase +PWCOMMONS Ethanol is oxidized by NAD+ to form acetaldehyde, NADH, and H+ ADH1C +PWCOMMONS Ethanol is oxidized by NAD+ to form acetaldehyde, NADH, and H+ ADH1A +PWCOMMONS Ethanol is oxidized by NAD+ to form acetaldehyde, NADH, and H+ ACSS2 +PWCOMMONS Ethanol is oxidized by NAD+ to form acetaldehyde, NADH, and H+ ADH7 +PWCOMMONS Ethanol is oxidized by NAD+ to form acetaldehyde, NADH, and H+ ADH1B +PWCOMMONS Ethanol is oxidized by NAD+ to form acetaldehyde, NADH, and H+ ADH6 +PWCOMMONS Ethanol is oxidized by NAD+ to form acetaldehyde, NADH, and H+ ALDH1A1 +PWCOMMONS Ethanol is oxidized by NAD+ to form acetaldehyde, NADH, and H+ ALDH2 +PWCOMMONS Ethanol is oxidized by NAD+ to form acetaldehyde, NADH, and H+ +PWCOMMONS Cleavage of the damaged pyrimidine CCNO +PWCOMMONS Cleavage of the damaged pyrimidine APEX1 +PWCOMMONS Cleavage of the damaged pyrimidine TDG +PWCOMMONS Cleavage of the damaged pyrimidine NTHL1 +PWCOMMONS Cleavage of the damaged pyrimidine +PWCOMMONS Transcription-coupled NER (TC-NER) PCNA +PWCOMMONS Transcription-coupled NER (TC-NER) POLD4 +PWCOMMONS Transcription-coupled NER (TC-NER) POLD3 +PWCOMMONS Transcription-coupled NER (TC-NER) POLD2 +PWCOMMONS Transcription-coupled NER (TC-NER) POLD1 +PWCOMMONS Transcription-coupled NER (TC-NER) POLE2 +PWCOMMONS Transcription-coupled NER (TC-NER) POLE +PWCOMMONS Transcription-coupled NER (TC-NER) ERCC5 +PWCOMMONS Transcription-coupled NER (TC-NER) TCEA1 +PWCOMMONS Transcription-coupled NER (TC-NER) ERCC8 +PWCOMMONS Transcription-coupled NER (TC-NER) XAB2 +PWCOMMONS Transcription-coupled NER (TC-NER) ERCC6 +PWCOMMONS Transcription-coupled NER (TC-NER) ERCC4 +PWCOMMONS Transcription-coupled NER (TC-NER) ERCC1 +PWCOMMONS Transcription-coupled NER (TC-NER) ERCC2 +PWCOMMONS Transcription-coupled NER (TC-NER) GTF2H3 +PWCOMMONS Transcription-coupled NER (TC-NER) GTF2H4 +PWCOMMONS Transcription-coupled NER (TC-NER) GTF2H2 +PWCOMMONS Transcription-coupled NER (TC-NER) ERCC3 +PWCOMMONS Transcription-coupled NER (TC-NER) GTF2H1 +PWCOMMONS Transcription-coupled NER (TC-NER) CCNH +PWCOMMONS Transcription-coupled NER (TC-NER) CDK7 +PWCOMMONS Transcription-coupled NER (TC-NER) MNAT1 +PWCOMMONS Transcription-coupled NER (TC-NER) POLR2G +PWCOMMONS Transcription-coupled NER (TC-NER) POLR2B +PWCOMMONS Transcription-coupled NER (TC-NER) POLR2L +PWCOMMONS Transcription-coupled NER (TC-NER) POLR2A +PWCOMMONS Transcription-coupled NER (TC-NER) POLR2K +PWCOMMONS Transcription-coupled NER (TC-NER) POLR2H +PWCOMMONS Transcription-coupled NER (TC-NER) POLR2D +PWCOMMONS Transcription-coupled NER (TC-NER) POLR2C +PWCOMMONS Transcription-coupled NER (TC-NER) POLR2I +PWCOMMONS Transcription-coupled NER (TC-NER) POLR2F +PWCOMMONS Transcription-coupled NER (TC-NER) POLR2J +PWCOMMONS Transcription-coupled NER (TC-NER) POLR2E +PWCOMMONS Transcription-coupled NER (TC-NER) RFC2 +PWCOMMONS Transcription-coupled NER (TC-NER) RFC1 +PWCOMMONS Transcription-coupled NER (TC-NER) RFC3 +PWCOMMONS Transcription-coupled NER (TC-NER) RFC5 +PWCOMMONS Transcription-coupled NER (TC-NER) RFC4 +PWCOMMONS Transcription-coupled NER (TC-NER) RPA1 +PWCOMMONS Transcription-coupled NER (TC-NER) RPA3 +PWCOMMONS Transcription-coupled NER (TC-NER) RPA2 +PWCOMMONS Transcription-coupled NER (TC-NER) +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER PCNA +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLD4 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLD3 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLD2 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLD1 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLR2G +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLR2B +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLR2L +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLR2A +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLR2K +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLR2H +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLR2D +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLR2C +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLR2I +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLR2F +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLR2J +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLR2E +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLE2 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER POLE +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER RFC2 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER RFC1 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER RFC3 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER RFC5 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER RFC4 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER RPA1 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER RPA3 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER RPA2 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in TC-NER +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER PCNA +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLD4 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLD3 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLD2 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLD1 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLE2 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLE +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLR2G +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLR2B +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLR2L +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLR2A +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLR2K +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLR2H +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLR2D +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLR2C +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLR2I +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLR2F +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLR2J +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER POLR2E +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER RFC2 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER RFC1 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER RFC3 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER RFC5 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER RFC4 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER RPA1 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER RPA3 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER RPA2 +PWCOMMONS Repair synthesis for gap-filling by DNA polymerase in TC-NER +PWCOMMONS Dual incision reaction in TC-NER PCNA +PWCOMMONS Dual incision reaction in TC-NER POLD4 +PWCOMMONS Dual incision reaction in TC-NER POLD3 +PWCOMMONS Dual incision reaction in TC-NER POLD2 +PWCOMMONS Dual incision reaction in TC-NER POLD1 +PWCOMMONS Dual incision reaction in TC-NER POLE2 +PWCOMMONS Dual incision reaction in TC-NER POLE +PWCOMMONS Dual incision reaction in TC-NER ERCC5 +PWCOMMONS Dual incision reaction in TC-NER TCEA1 +PWCOMMONS Dual incision reaction in TC-NER ERCC8 +PWCOMMONS Dual incision reaction in TC-NER XAB2 +PWCOMMONS Dual incision reaction in TC-NER ERCC6 +PWCOMMONS Dual incision reaction in TC-NER ERCC4 +PWCOMMONS Dual incision reaction in TC-NER ERCC1 +PWCOMMONS Dual incision reaction in TC-NER ERCC2 +PWCOMMONS Dual incision reaction in TC-NER GTF2H3 +PWCOMMONS Dual incision reaction in TC-NER GTF2H4 +PWCOMMONS Dual incision reaction in TC-NER GTF2H2 +PWCOMMONS Dual incision reaction in TC-NER ERCC3 +PWCOMMONS Dual incision reaction in TC-NER GTF2H1 +PWCOMMONS Dual incision reaction in TC-NER CCNH +PWCOMMONS Dual incision reaction in TC-NER CDK7 +PWCOMMONS Dual incision reaction in TC-NER MNAT1 +PWCOMMONS Dual incision reaction in TC-NER POLR2G +PWCOMMONS Dual incision reaction in TC-NER POLR2B +PWCOMMONS Dual incision reaction in TC-NER POLR2L +PWCOMMONS Dual incision reaction in TC-NER POLR2A +PWCOMMONS Dual incision reaction in TC-NER POLR2K +PWCOMMONS Dual incision reaction in TC-NER POLR2H +PWCOMMONS Dual incision reaction in TC-NER POLR2D +PWCOMMONS Dual incision reaction in TC-NER POLR2C +PWCOMMONS Dual incision reaction in TC-NER POLR2I +PWCOMMONS Dual incision reaction in TC-NER POLR2F +PWCOMMONS Dual incision reaction in TC-NER POLR2J +PWCOMMONS Dual incision reaction in TC-NER POLR2E +PWCOMMONS Dual incision reaction in TC-NER RFC2 +PWCOMMONS Dual incision reaction in TC-NER RFC1 +PWCOMMONS Dual incision reaction in TC-NER RFC3 +PWCOMMONS Dual incision reaction in TC-NER RFC5 +PWCOMMONS Dual incision reaction in TC-NER RFC4 +PWCOMMONS Dual incision reaction in TC-NER RPA1 +PWCOMMONS Dual incision reaction in TC-NER RPA3 +PWCOMMONS Dual incision reaction in TC-NER RPA2 +PWCOMMONS Dual incision reaction in TC-NER +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex PCNA +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLD4 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLD3 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLD2 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLD1 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLR2G +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLR2B +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLR2L +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLR2A +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLR2K +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLR2H +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLR2D +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLR2C +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLR2I +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLR2F +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLR2J +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLR2E +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex ERCC5 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex TCEA1 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex ERCC8 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex XAB2 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex ERCC6 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex ERCC4 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex ERCC1 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex ERCC2 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex GTF2H3 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex GTF2H4 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex GTF2H2 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex ERCC3 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex GTF2H1 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex CCNH +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex CDK7 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex MNAT1 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex RFC2 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex RFC1 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex RFC3 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex RFC5 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex RFC4 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLE2 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex POLE +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex RPA1 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex RPA3 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex RPA2 +PWCOMMONS Formation of transcription-coupled NER (TC-NER) repair complex +PWCOMMONS Nuclear Events (kinase and transcription factor activation) MAPKAPK2 +PWCOMMONS Nuclear Events (kinase and transcription factor activation) ATF1 +PWCOMMONS Nuclear Events (kinase and transcription factor activation) CREB1 +PWCOMMONS Nuclear Events (kinase and transcription factor activation) MAPK7 +PWCOMMONS Nuclear Events (kinase and transcription factor activation) +PWCOMMONS ERK/MAPK targets MAPK7 +PWCOMMONS ERK/MAPK targets ATF1 +PWCOMMONS ERK/MAPK targets CREB1 +PWCOMMONS ERK/MAPK targets +PWCOMMONS CREB phosphorylation MAPKAPK2 +PWCOMMONS CREB phosphorylation ATF1 +PWCOMMONS CREB phosphorylation CREB1 +PWCOMMONS CREB phosphorylation +PWCOMMONS Minus-strand DNA synthesis PPIA +PWCOMMONS Minus-strand DNA synthesis BANF1 +PWCOMMONS Minus-strand DNA synthesis LIG4 +PWCOMMONS Minus-strand DNA synthesis XRCC4 +PWCOMMONS Minus-strand DNA synthesis XRCC6 +PWCOMMONS Minus-strand DNA synthesis XRCC5 +PWCOMMONS Minus-strand DNA synthesis FEN1 +PWCOMMONS Minus-strand DNA synthesis +PWCOMMONS Eicosanoid ligand-binding receptors FPR2 +PWCOMMONS Eicosanoid ligand-binding receptors OXER1 +PWCOMMONS Eicosanoid ligand-binding receptors MGLL +PWCOMMONS Eicosanoid ligand-binding receptors PFKFB1 +PWCOMMONS Eicosanoid ligand-binding receptors MLXIPL +PWCOMMONS Eicosanoid ligand-binding receptors TBXA2R +PWCOMMONS Eicosanoid ligand-binding receptors PTGIR +PWCOMMONS Eicosanoid ligand-binding receptors CREB1 +PWCOMMONS Eicosanoid ligand-binding receptors LIPE +PWCOMMONS Eicosanoid ligand-binding receptors GNAS +PWCOMMONS Eicosanoid ligand-binding receptors PTGER3 +PWCOMMONS Eicosanoid ligand-binding receptors GPR44 +PWCOMMONS Eicosanoid ligand-binding receptors FABP4 +PWCOMMONS Eicosanoid ligand-binding receptors PTGDR +PWCOMMONS Eicosanoid ligand-binding receptors PTGFR +PWCOMMONS Eicosanoid ligand-binding receptors PTGER1 +PWCOMMONS Eicosanoid ligand-binding receptors +PWCOMMONS Prostanoid ligand receptors PFKFB1 +PWCOMMONS Prostanoid ligand receptors MLXIPL +PWCOMMONS Prostanoid ligand receptors TBXA2R +PWCOMMONS Prostanoid ligand receptors PTGIR +PWCOMMONS Prostanoid ligand receptors CREB1 +PWCOMMONS Prostanoid ligand receptors LIPE +PWCOMMONS Prostanoid ligand receptors GNAS +PWCOMMONS Prostanoid ligand receptors PTGER3 +PWCOMMONS Prostanoid ligand receptors GPR44 +PWCOMMONS Prostanoid ligand receptors FABP4 +PWCOMMONS Prostanoid ligand receptors PTGDR +PWCOMMONS Prostanoid ligand receptors PTGFR +PWCOMMONS Prostanoid ligand receptors PTGER1 +PWCOMMONS Prostanoid ligand receptors +PWCOMMONS Terminal pathway of complement C6 +PWCOMMONS Terminal pathway of complement C7 +PWCOMMONS Terminal pathway of complement C5 +PWCOMMONS Terminal pathway of complement C8A +PWCOMMONS Terminal pathway of complement C8B +PWCOMMONS Terminal pathway of complement C8G +PWCOMMONS Terminal pathway of complement +PWCOMMONS Serotonin Neurotransmitter Release Cycle CPLX1 +PWCOMMONS Serotonin Neurotransmitter Release Cycle SLC18A2 +PWCOMMONS Serotonin Neurotransmitter Release Cycle VAMP2 +PWCOMMONS Serotonin Neurotransmitter Release Cycle RAB3A +PWCOMMONS Serotonin Neurotransmitter Release Cycle SYT1 +PWCOMMONS Serotonin Neurotransmitter Release Cycle DBH +PWCOMMONS Serotonin Neurotransmitter Release Cycle MAOA +PWCOMMONS Serotonin Neurotransmitter Release Cycle DDC +PWCOMMONS Serotonin Neurotransmitter Release Cycle AANAT +PWCOMMONS Serotonin Neurotransmitter Release Cycle SLC22A2 +PWCOMMONS Serotonin Neurotransmitter Release Cycle +PWCOMMONS Synthesis of Serotonin AANAT +PWCOMMONS Synthesis of Serotonin +PWCOMMONS Leukotriene synthesis GGT5 +PWCOMMONS Leukotriene synthesis DPEP2 +PWCOMMONS Leukotriene synthesis ALOX5 +PWCOMMONS Leukotriene synthesis LTC4S +PWCOMMONS Leukotriene synthesis LTA4H +PWCOMMONS Leukotriene synthesis +PWCOMMONS Neurotransmitter Clearance In The Synaptic Cleft ALDH2 +PWCOMMONS Neurotransmitter Clearance In The Synaptic Cleft SLC22A2 +PWCOMMONS Neurotransmitter Clearance In The Synaptic Cleft COMT +PWCOMMONS Neurotransmitter Clearance In The Synaptic Cleft SLC6A3 +PWCOMMONS Neurotransmitter Clearance In The Synaptic Cleft BCHE +PWCOMMONS Neurotransmitter Clearance In The Synaptic Cleft +PWCOMMONS Dopamine clearance from the synaptic cleft MAOA +PWCOMMONS Dopamine clearance from the synaptic cleft SLC6A3 +PWCOMMONS Dopamine clearance from the synaptic cleft +PWCOMMONS Enzymatic degradation of dopamine by COMT MAOA +PWCOMMONS Enzymatic degradation of dopamine by COMT +PWCOMMONS Enzymatic degradation of Dopamine by monoamine oxidase MAOA +PWCOMMONS Enzymatic degradation of Dopamine by monoamine oxidase +PWCOMMONS Activation of Chaperones by IRE1alpha NFYA +PWCOMMONS Activation of Chaperones by IRE1alpha HSPA5 +PWCOMMONS Activation of Chaperones by IRE1alpha +PWCOMMONS RAF phosphorylates MEK RAF1 +PWCOMMONS RAF phosphorylates MEK YWHAB +PWCOMMONS RAF phosphorylates MEK MAP2K1 +PWCOMMONS RAF phosphorylates MEK MAPK3 +PWCOMMONS RAF phosphorylates MEK MAPK1 +PWCOMMONS RAF phosphorylates MEK +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NT5C2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5O +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5F1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5J +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5G1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5L +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-ATP6 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5J2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-ATP8 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5H +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5I +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5C1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5D +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5A1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5B +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATP5E +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX HPRT1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UQCRC1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UQCRB +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UQCR10 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UQCR +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UQCRC2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UQCRH +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UQCRQ +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UQCRFS1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-CYB +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX CYC1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-CO2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX COX8A +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX COX7C +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-CO3 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX COX6C +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX COX5B +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-CO1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX COX7A2L +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX COX4I1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX COX6A1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX COX7B +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX COX6B1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX COX5A +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PGLS +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GOT2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX HADH +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UPP1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PDHX +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PDHA1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PDHB +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX DLAT +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX DLD +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GOT1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PC +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PGK1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ADSL +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GCDH +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MDH1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PCK1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ATIC +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX OAT +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NP +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GYS2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ECHS1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX TXN +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SUCLG1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SUCLG2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ARG1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX KCNJ11 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX AMPD3 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX RPE +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GLRX +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SDHC +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SDHD +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SDHB +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SDHA +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX DPYD +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GART +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GPT +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX DPYS +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX AK1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MDH2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UMPS +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX CYCS +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFS3 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFS4 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFS6 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA5 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFS5 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFS1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFS2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFV2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFV3 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFV1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA4 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA11 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-ND3 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA13 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFB5 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFC1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA6 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFC2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA3 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFB3 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFB1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFAB1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-ND4 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-ND5 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFB9 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFB6 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFB4 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA8 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFB7 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA12 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFB2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-ND4L +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-ND2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFB10 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA7 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFB8 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFB11 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-ND6 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX MT-ND1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFS7 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA10 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFS8 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NDUFA9 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX VAMP2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NT5C1A +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX CTPS +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PRPS1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX DLST +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX OGDH +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GMPS +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GUK1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX IMPDH2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GDA +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NME1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX IMPDH1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ADSS +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX OTC +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX FH +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX INS +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SYT5 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PFAS +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SLC35D1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ASL +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UPB1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SLC25A21 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GPI +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UROD +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX CPOX +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UROS +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX XDH +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PAICS +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX CPS1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX TALDO1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ASS1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX CMPK1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ALAD +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX CS +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX CAT +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SLC25A1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PPOX +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX ACO2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX IDH3G +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX IDH3A +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX IDH3B +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX UGDH +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX RRM2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX RRM1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX G6PD +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX AMPD1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SLC25A11 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PPAT +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX TKT +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX FECH +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PCK2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SUCLA2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GBE1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX TXNRD1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX TPI1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX SLC25A10 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX G6PC +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PYCR1 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX NME2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX RPIA +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX AMPD2 +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX PGD +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX GSR +PWCOMMONS Transcriptional activation of glucose metabolism genes by ChREBP:MLX +PWCOMMONS NF-kB is activated and signals survival RELA +PWCOMMONS NF-kB is activated and signals survival TRAF6 +PWCOMMONS NF-kB is activated and signals survival SQSTM1 +PWCOMMONS NF-kB is activated and signals survival NGFR +PWCOMMONS NF-kB is activated and signals survival IKBKB +PWCOMMONS NF-kB is activated and signals survival NFKBIA +PWCOMMONS NF-kB is activated and signals survival +PWCOMMONS RNA Polymerase I Promoter Clearance UBTF +PWCOMMONS RNA Polymerase I Promoter Clearance TAF1C +PWCOMMONS RNA Polymerase I Promoter Clearance TAF1B +PWCOMMONS RNA Polymerase I Promoter Clearance TAF1A +PWCOMMONS RNA Polymerase I Promoter Clearance POLR1D +PWCOMMONS RNA Polymerase I Promoter Clearance POLR1C +PWCOMMONS RNA Polymerase I Promoter Clearance POLR1A +PWCOMMONS RNA Polymerase I Promoter Clearance POLR2K +PWCOMMONS RNA Polymerase I Promoter Clearance POLR2H +PWCOMMONS RNA Polymerase I Promoter Clearance POLR1B +PWCOMMONS RNA Polymerase I Promoter Clearance ERCC2 +PWCOMMONS RNA Polymerase I Promoter Clearance GTF2H3 +PWCOMMONS RNA Polymerase I Promoter Clearance GTF2H4 +PWCOMMONS RNA Polymerase I Promoter Clearance GTF2H2 +PWCOMMONS RNA Polymerase I Promoter Clearance ERCC3 +PWCOMMONS RNA Polymerase I Promoter Clearance GTF2H1 +PWCOMMONS RNA Polymerase I Promoter Clearance CCNH +PWCOMMONS RNA Polymerase I Promoter Clearance CDK7 +PWCOMMONS RNA Polymerase I Promoter Clearance MNAT1 +PWCOMMONS RNA Polymerase I Promoter Clearance MAPK3 +PWCOMMONS RNA Polymerase I Promoter Clearance PCAF +PWCOMMONS RNA Polymerase I Promoter Clearance +PWCOMMONS RNA Polymerase I Promoter Opening TAF1C +PWCOMMONS RNA Polymerase I Promoter Opening TAF1B +PWCOMMONS RNA Polymerase I Promoter Opening TAF1A +PWCOMMONS RNA Polymerase I Promoter Opening RRN3 +PWCOMMONS RNA Polymerase I Promoter Opening POLR1D +PWCOMMONS RNA Polymerase I Promoter Opening POLR1C +PWCOMMONS RNA Polymerase I Promoter Opening POLR1A +PWCOMMONS RNA Polymerase I Promoter Opening POLR2K +PWCOMMONS RNA Polymerase I Promoter Opening POLR2H +PWCOMMONS RNA Polymerase I Promoter Opening POLR1B +PWCOMMONS RNA Polymerase I Promoter Opening ERCC2 +PWCOMMONS RNA Polymerase I Promoter Opening GTF2H3 +PWCOMMONS RNA Polymerase I Promoter Opening GTF2H4 +PWCOMMONS RNA Polymerase I Promoter Opening GTF2H2 +PWCOMMONS RNA Polymerase I Promoter Opening ERCC3 +PWCOMMONS RNA Polymerase I Promoter Opening GTF2H1 +PWCOMMONS RNA Polymerase I Promoter Opening CCNH +PWCOMMONS RNA Polymerase I Promoter Opening CDK7 +PWCOMMONS RNA Polymerase I Promoter Opening MNAT1 +PWCOMMONS RNA Polymerase I Promoter Opening MAPK3 +PWCOMMONS RNA Polymerase I Promoter Opening +PWCOMMONS RNA Polymerase I Transcription Initiation TAF1B +PWCOMMONS RNA Polymerase I Transcription Initiation TAF1A +PWCOMMONS RNA Polymerase I Transcription Initiation UBTF +PWCOMMONS RNA Polymerase I Transcription Initiation POLR1C +PWCOMMONS RNA Polymerase I Transcription Initiation POLR1D +PWCOMMONS RNA Polymerase I Transcription Initiation POLR1A +PWCOMMONS RNA Polymerase I Transcription Initiation POLR2K +PWCOMMONS RNA Polymerase I Transcription Initiation POLR2H +PWCOMMONS RNA Polymerase I Transcription Initiation POLR1B +PWCOMMONS RNA Polymerase I Transcription Initiation RRN3 +PWCOMMONS RNA Polymerase I Transcription Initiation ERCC2 +PWCOMMONS RNA Polymerase I Transcription Initiation GTF2H3 +PWCOMMONS RNA Polymerase I Transcription Initiation GTF2H4 +PWCOMMONS RNA Polymerase I Transcription Initiation GTF2H2 +PWCOMMONS RNA Polymerase I Transcription Initiation ERCC3 +PWCOMMONS RNA Polymerase I Transcription Initiation GTF2H1 +PWCOMMONS RNA Polymerase I Transcription Initiation CCNH +PWCOMMONS RNA Polymerase I Transcription Initiation CDK7 +PWCOMMONS RNA Polymerase I Transcription Initiation MNAT1 +PWCOMMONS RNA Polymerase I Transcription Initiation PCAF +PWCOMMONS RNA Polymerase I Transcription Initiation +PWCOMMONS RNA Polymerase I Promoter Escape UBTF +PWCOMMONS RNA Polymerase I Promoter Escape TAF1C +PWCOMMONS RNA Polymerase I Promoter Escape TAF1B +PWCOMMONS RNA Polymerase I Promoter Escape TAF1A +PWCOMMONS RNA Polymerase I Promoter Escape POLR1D +PWCOMMONS RNA Polymerase I Promoter Escape POLR1C +PWCOMMONS RNA Polymerase I Promoter Escape POLR1A +PWCOMMONS RNA Polymerase I Promoter Escape POLR2K +PWCOMMONS RNA Polymerase I Promoter Escape POLR2H +PWCOMMONS RNA Polymerase I Promoter Escape POLR1B +PWCOMMONS RNA Polymerase I Promoter Escape ERCC2 +PWCOMMONS RNA Polymerase I Promoter Escape GTF2H3 +PWCOMMONS RNA Polymerase I Promoter Escape GTF2H4 +PWCOMMONS RNA Polymerase I Promoter Escape GTF2H2 +PWCOMMONS RNA Polymerase I Promoter Escape ERCC3 +PWCOMMONS RNA Polymerase I Promoter Escape GTF2H1 +PWCOMMONS RNA Polymerase I Promoter Escape CCNH +PWCOMMONS RNA Polymerase I Promoter Escape CDK7 +PWCOMMONS RNA Polymerase I Promoter Escape MNAT1 +PWCOMMONS RNA Polymerase I Promoter Escape +PWCOMMONS Formation of Acetoacetic Acid HMGCL +PWCOMMONS Formation of Acetoacetic Acid ACAT1 +PWCOMMONS Formation of Acetoacetic Acid BDH1 +PWCOMMONS Formation of Acetoacetic Acid +PWCOMMONS Regulation of gene expression in endocrine-committed (NEUROG3+) progenitor cells NEUROD1 +PWCOMMONS Regulation of gene expression in endocrine-committed (NEUROG3+) progenitor cells NKX2-2 +PWCOMMONS Regulation of gene expression in endocrine-committed (NEUROG3+) progenitor cells NEUROG3 +PWCOMMONS Regulation of gene expression in endocrine-committed (NEUROG3+) progenitor cells +PWCOMMONS Glycolysis ATP5F1 +PWCOMMONS Glycolysis ATP5J +PWCOMMONS Glycolysis ATP5G1 +PWCOMMONS Glycolysis ATP5L +PWCOMMONS Glycolysis MT-ATP6 +PWCOMMONS Glycolysis ATP5J2 +PWCOMMONS Glycolysis MT-ATP8 +PWCOMMONS Glycolysis ATP5H +PWCOMMONS Glycolysis ATP5I +PWCOMMONS Glycolysis ATP5C1 +PWCOMMONS Glycolysis ATP5D +PWCOMMONS Glycolysis ATP5A1 +PWCOMMONS Glycolysis ATP5B +PWCOMMONS Glycolysis ATP5E +PWCOMMONS Glycolysis MLX +PWCOMMONS Glycolysis MLXIPL +PWCOMMONS Glycolysis HPRT1 +PWCOMMONS Glycolysis UQCRC1 +PWCOMMONS Glycolysis UQCRB +PWCOMMONS Glycolysis UQCR10 +PWCOMMONS Glycolysis UQCR +PWCOMMONS Glycolysis UQCRC2 +PWCOMMONS Glycolysis UQCRH +PWCOMMONS Glycolysis UQCRQ +PWCOMMONS Glycolysis UQCRFS1 +PWCOMMONS Glycolysis MT-CYB +PWCOMMONS Glycolysis CYC1 +PWCOMMONS Glycolysis PFKFB2 +PWCOMMONS Glycolysis PFKFB4 +PWCOMMONS Glycolysis PFKFB3 +PWCOMMONS Glycolysis GOT2 +PWCOMMONS Glycolysis GYG2 +PWCOMMONS Glycolysis UPP1 +PWCOMMONS Glycolysis PC +PWCOMMONS Glycolysis ADSL +PWCOMMONS Glycolysis MDH1 +PWCOMMONS Glycolysis PCK1 +PWCOMMONS Glycolysis OAT +PWCOMMONS Glycolysis GYS2 +PWCOMMONS Glycolysis ECHS1 +PWCOMMONS Glycolysis TXN +PWCOMMONS Glycolysis SUCLG1 +PWCOMMONS Glycolysis SUCLG2 +PWCOMMONS Glycolysis ARG1 +PWCOMMONS Glycolysis KCNJ11 +PWCOMMONS Glycolysis AMPD3 +PWCOMMONS Glycolysis RPE +PWCOMMONS Glycolysis GPT +PWCOMMONS Glycolysis DPYS +PWCOMMONS Glycolysis AK1 +PWCOMMONS Glycolysis PKM2 +PWCOMMONS Glycolysis NDUFS3 +PWCOMMONS Glycolysis NDUFS4 +PWCOMMONS Glycolysis NDUFS6 +PWCOMMONS Glycolysis NDUFA5 +PWCOMMONS Glycolysis NDUFS5 +PWCOMMONS Glycolysis NDUFS1 +PWCOMMONS Glycolysis NDUFS2 +PWCOMMONS Glycolysis NDUFV2 +PWCOMMONS Glycolysis NDUFV3 +PWCOMMONS Glycolysis NDUFV1 +PWCOMMONS Glycolysis NDUFA4 +PWCOMMONS Glycolysis NDUFA11 +PWCOMMONS Glycolysis MT-ND3 +PWCOMMONS Glycolysis NDUFA13 +PWCOMMONS Glycolysis NDUFB5 +PWCOMMONS Glycolysis NDUFC1 +PWCOMMONS Glycolysis NDUFA6 +PWCOMMONS Glycolysis NDUFC2 +PWCOMMONS Glycolysis NDUFA3 +PWCOMMONS Glycolysis NDUFB3 +PWCOMMONS Glycolysis NDUFB1 +PWCOMMONS Glycolysis NDUFAB1 +PWCOMMONS Glycolysis MT-ND4 +PWCOMMONS Glycolysis MT-ND5 +PWCOMMONS Glycolysis NDUFA1 +PWCOMMONS Glycolysis NDUFB9 +PWCOMMONS Glycolysis NDUFB6 +PWCOMMONS Glycolysis NDUFB4 +PWCOMMONS Glycolysis NDUFA8 +PWCOMMONS Glycolysis NDUFB7 +PWCOMMONS Glycolysis NDUFA12 +PWCOMMONS Glycolysis NDUFB2 +PWCOMMONS Glycolysis MT-ND4L +PWCOMMONS Glycolysis MT-ND2 +PWCOMMONS Glycolysis NDUFB10 +PWCOMMONS Glycolysis NDUFA7 +PWCOMMONS Glycolysis NDUFA2 +PWCOMMONS Glycolysis NDUFB8 +PWCOMMONS Glycolysis NDUFB11 +PWCOMMONS Glycolysis MT-ND6 +PWCOMMONS Glycolysis MT-ND1 +PWCOMMONS Glycolysis NDUFS7 +PWCOMMONS Glycolysis NDUFA10 +PWCOMMONS Glycolysis NDUFS8 +PWCOMMONS Glycolysis NDUFA9 +PWCOMMONS Glycolysis VAMP2 +PWCOMMONS Glycolysis NT5C1A +PWCOMMONS Glycolysis FASN +PWCOMMONS Glycolysis DLST +PWCOMMONS Glycolysis OGDH +PWCOMMONS Glycolysis DLD +PWCOMMONS Glycolysis GMPS +PWCOMMONS Glycolysis GUK1 +PWCOMMONS Glycolysis IMPDH2 +PWCOMMONS Glycolysis GDA +PWCOMMONS Glycolysis NME1 +PWCOMMONS Glycolysis IMPDH1 +PWCOMMONS Glycolysis ADSS +PWCOMMONS Glycolysis ATIC +PWCOMMONS Glycolysis PFKFB1 +PWCOMMONS Glycolysis INS +PWCOMMONS Glycolysis SYT5 +PWCOMMONS Glycolysis GART +PWCOMMONS Glycolysis SLC35D1 +PWCOMMONS Glycolysis ASL +PWCOMMONS Glycolysis UPB1 +PWCOMMONS Glycolysis GLRX +PWCOMMONS Glycolysis SLC25A21 +PWCOMMONS Glycolysis AGPAT1 +PWCOMMONS Glycolysis UROS +PWCOMMONS Glycolysis TALDO1 +PWCOMMONS Glycolysis ASS1 +PWCOMMONS Glycolysis CMPK1 +PWCOMMONS Glycolysis ALAD +PWCOMMONS Glycolysis IDH3G +PWCOMMONS Glycolysis IDH3A +PWCOMMONS Glycolysis IDH3B +PWCOMMONS Glycolysis UGDH +PWCOMMONS Glycolysis RRM2 +PWCOMMONS Glycolysis RRM1 +PWCOMMONS Glycolysis G6PD +PWCOMMONS Glycolysis AMPD1 +PWCOMMONS Glycolysis SLC25A11 +PWCOMMONS Glycolysis PPAT +PWCOMMONS Glycolysis SDHC +PWCOMMONS Glycolysis SDHD +PWCOMMONS Glycolysis SDHB +PWCOMMONS Glycolysis SDHA +PWCOMMONS Glycolysis FECH +PWCOMMONS Glycolysis TKT +PWCOMMONS Glycolysis PDHX +PWCOMMONS Glycolysis DLAT +PWCOMMONS Glycolysis PDHA1 +PWCOMMONS Glycolysis PDHB +PWCOMMONS Glycolysis PPAP2C +PWCOMMONS Glycolysis GBE1 +PWCOMMONS Glycolysis TXNRD1 +PWCOMMONS Glycolysis TPI1 +PWCOMMONS Glycolysis SLC25A10 +PWCOMMONS Glycolysis G6PC +PWCOMMONS Glycolysis GSR +PWCOMMONS Glycolysis NT5C2 +PWCOMMONS Glycolysis MT-CO2 +PWCOMMONS Glycolysis COX8A +PWCOMMONS Glycolysis COX7C +PWCOMMONS Glycolysis MT-CO3 +PWCOMMONS Glycolysis COX6C +PWCOMMONS Glycolysis COX5B +PWCOMMONS Glycolysis MT-CO1 +PWCOMMONS Glycolysis COX7A2L +PWCOMMONS Glycolysis COX4I1 +PWCOMMONS Glycolysis COX6A1 +PWCOMMONS Glycolysis COX7B +PWCOMMONS Glycolysis COX6B1 +PWCOMMONS Glycolysis COX5A +PWCOMMONS Glycolysis PGLS +PWCOMMONS Glycolysis HADH +PWCOMMONS Glycolysis GOT1 +PWCOMMONS Glycolysis PGK1 +PWCOMMONS Glycolysis GCDH +PWCOMMONS Glycolysis NP +PWCOMMONS Glycolysis DPYD +PWCOMMONS Glycolysis ACLY +PWCOMMONS Glycolysis MDH2 +PWCOMMONS Glycolysis UMPS +PWCOMMONS Glycolysis CYCS +PWCOMMONS Glycolysis CTPS +PWCOMMONS Glycolysis PRPS1 +PWCOMMONS Glycolysis ACACB +PWCOMMONS Glycolysis OTC +PWCOMMONS Glycolysis FH +PWCOMMONS Glycolysis PFAS +PWCOMMONS Glycolysis GPI +PWCOMMONS Glycolysis UROD +PWCOMMONS Glycolysis CPOX +PWCOMMONS Glycolysis XDH +PWCOMMONS Glycolysis PAICS +PWCOMMONS Glycolysis CPS1 +PWCOMMONS Glycolysis CS +PWCOMMONS Glycolysis CAT +PWCOMMONS Glycolysis PPOX +PWCOMMONS Glycolysis SLC25A1 +PWCOMMONS Glycolysis ACO2 +PWCOMMONS Glycolysis PGM1 +PWCOMMONS Glycolysis PCK2 +PWCOMMONS Glycolysis SUCLA2 +PWCOMMONS Glycolysis PPAP2B +PWCOMMONS Glycolysis PYCR1 +PWCOMMONS Glycolysis DGAT1 +PWCOMMONS Glycolysis NME2 +PWCOMMONS Glycolysis RPIA +PWCOMMONS Glycolysis AMPD2 +PWCOMMONS Glycolysis PGD +PWCOMMONS Glycolysis PPAP2A +PWCOMMONS Glycolysis +PWCOMMONS Fructose 6-phosphate and ATP react to form fructose 2,6-bisphosphate and ADP PFKFB2 +PWCOMMONS Fructose 6-phosphate and ATP react to form fructose 2,6-bisphosphate and ADP PFKFB4 +PWCOMMONS Fructose 6-phosphate and ATP react to form fructose 2,6-bisphosphate and ADP PFKFB3 +PWCOMMONS Fructose 6-phosphate and ATP react to form fructose 2,6-bisphosphate and ADP +PWCOMMONS Transcriptional activation of lipogenesis genes by ChREBP:MLX PPAP2C +PWCOMMONS Transcriptional activation of lipogenesis genes by ChREBP:MLX ACLY +PWCOMMONS Transcriptional activation of lipogenesis genes by ChREBP:MLX ACACB +PWCOMMONS Transcriptional activation of lipogenesis genes by ChREBP:MLX DGAT1 +PWCOMMONS Transcriptional activation of lipogenesis genes by ChREBP:MLX AGPAT1 +PWCOMMONS Transcriptional activation of lipogenesis genes by ChREBP:MLX PPAP2A +PWCOMMONS Transcriptional activation of lipogenesis genes by ChREBP:MLX PPAP2B +PWCOMMONS Transcriptional activation of lipogenesis genes by ChREBP:MLX +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NT5C2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5O +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5F1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5J +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5G1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5L +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-ATP6 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5J2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-ATP8 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5H +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5I +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5C1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5D +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5A1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5B +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATP5E +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP HPRT1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UQCRC1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UQCRB +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UQCR10 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UQCR +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UQCRC2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UQCRH +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UQCRQ +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UQCRFS1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-CYB +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP CYC1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-CO2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP COX8A +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP COX7C +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-CO3 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP COX6C +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP COX5B +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-CO1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP COX7A2L +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP COX4I1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP COX6A1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP COX7B +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP COX6B1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP COX5A +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PGLS +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GOT2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP HADH +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UPP1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PDHX +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PDHA1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PDHB +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP DLAT +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP DLD +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GOT1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PC +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PGK1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ADSL +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GCDH +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MDH1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PCK1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ATIC +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP OAT +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NP +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GYS2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ECHS1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP TXN +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SUCLG1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SUCLG2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ARG1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP KCNJ11 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP AMPD3 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP RPE +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GLRX +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SDHC +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SDHD +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SDHB +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SDHA +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP DPYD +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GART +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GPT +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP DPYS +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP AK1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MDH2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PKM2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UMPS +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP CYCS +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFS3 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFS4 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFS6 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA5 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFS5 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFS1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFS2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFV2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFV3 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFV1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA4 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA11 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-ND3 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA13 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFB5 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFC1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA6 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFC2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA3 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFB3 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFB1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFAB1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-ND4 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-ND5 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFB9 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFB6 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFB4 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA8 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFB7 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA12 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFB2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-ND4L +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-ND2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFB10 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA7 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFB8 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFB11 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-ND6 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP MT-ND1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFS7 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA10 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFS8 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NDUFA9 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP VAMP2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NT5C1A +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP CTPS +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PRPS1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP DLST +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP OGDH +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GMPS +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GUK1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP IMPDH2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GDA +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NME1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP IMPDH1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ADSS +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP OTC +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP FH +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP INS +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SYT5 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PFAS +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SLC35D1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ASL +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UPB1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SLC25A21 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GPI +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UROD +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP CPOX +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UROS +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP XDH +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PAICS +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP CPS1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP TALDO1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ASS1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP CMPK1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ALAD +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP CS +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP CAT +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SLC25A1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PPOX +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP ACO2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP IDH3G +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP IDH3A +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP IDH3B +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP UGDH +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP RRM2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP RRM1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP G6PD +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP AMPD1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SLC25A11 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PPAT +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP TKT +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP FECH +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PCK2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SUCLA2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GBE1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP TXNRD1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP TPI1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP SLC25A10 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP G6PC +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PYCR1 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP NME2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP RPIA +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP AMPD2 +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP PGD +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP GSR +PWCOMMONS Phosphoenolpyruvate and ADP react to form pyruvate and ATP +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NT5C2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5O +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5F1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5J +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5G1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5L +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-ATP6 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5J2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-ATP8 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5H +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5I +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5C1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5D +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5A1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5B +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATP5E +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ HPRT1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UQCRC1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UQCRB +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UQCR10 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UQCR +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UQCRC2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UQCRH +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UQCRQ +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UQCRFS1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-CYB +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ CYC1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-CO2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ COX8A +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ COX7C +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-CO3 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ COX6C +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ COX5B +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-CO1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ COX7A2L +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ COX4I1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ COX6A1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ COX7B +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ COX6B1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ COX5A +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PGLS +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GOT2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ HADH +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UPP1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PDHX +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PDHA1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PDHB +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ DLAT +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ DLD +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GOT1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PC +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PGK1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ADSL +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GCDH +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PCK1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MDH1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ATIC +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ OAT +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NP +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GYS2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ECHS1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ TXN +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SUCLG1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SUCLG2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ARG1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ KCNJ11 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ AMPD3 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ RPE +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GLRX +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SDHC +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SDHD +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SDHB +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SDHA +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ DPYD +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GART +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GPT +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ DPYS +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ AK1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MDH2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PKM2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UMPS +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ CYCS +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFS3 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFS4 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFS6 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA5 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFS5 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFS1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFS2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFV2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFV3 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFV1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA4 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA11 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-ND3 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA13 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFB5 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFC1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA6 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFC2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA3 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFB3 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFB1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFAB1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-ND4 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-ND5 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFB9 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFB6 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFB4 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA8 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFB7 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA12 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFB2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-ND4L +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-ND2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFB10 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA7 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFB8 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFB11 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-ND6 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ MT-ND1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFS7 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA10 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFS8 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NDUFA9 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ VAMP2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NT5C1A +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ CTPS +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PRPS1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ DLST +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ OGDH +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GMPS +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GUK1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ IMPDH2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GDA +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NME1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ IMPDH1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ADSS +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ OTC +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ FH +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ INS +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SYT5 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SLC35D1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PFAS +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ASL +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UPB1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SLC25A21 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GPI +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UROD +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ CPOX +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UROS +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ XDH +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PAICS +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ CPS1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ TALDO1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ASS1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ CMPK1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ALAD +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ CS +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ CAT +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SLC25A1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PPOX +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ ACO2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ IDH3G +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ IDH3A +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ IDH3B +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ UGDH +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ RRM2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ RRM1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ G6PD +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ AMPD1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SLC25A11 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PPAT +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ TKT +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ FECH +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PGM1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PCK2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GBE1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SUCLA2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ TXNRD1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ TPI1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ SLC25A10 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ G6PC +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PYCR1 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ NME2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ RPIA +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ AMPD2 +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ PGD +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ GSR +PWCOMMONS Glyceraldehyde 3-phosphate, NAD+, and orthophosphate react to form 1,3-bisphosphoglycerate, NADH, and H+ +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NT5C2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5O +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5F1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5J +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5G1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5L +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-ATP6 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5J2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-ATP8 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5H +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5I +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5C1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5D +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5A1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5B +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATP5E +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP HPRT1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UQCRC1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UQCRB +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UQCR10 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UQCR +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UQCRC2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UQCRH +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UQCRQ +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UQCRFS1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-CYB +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP CYC1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-CO2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP COX8A +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP COX7C +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-CO3 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP COX6C +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP COX5B +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-CO1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP COX7A2L +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP COX4I1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP COX6A1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP COX7B +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP COX6B1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP COX5A +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PGLS +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GOT2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP HADH +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UPP1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PDHX +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PDHA1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PDHB +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP DLAT +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP DLD +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GOT1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PC +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PGK1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ADSL +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GCDH +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MDH1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PCK1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ATIC +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP OAT +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NP +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GYS2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ECHS1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP TXN +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SUCLG1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SUCLG2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ARG1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP KCNJ11 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP AMPD3 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP RPE +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GLRX +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SDHC +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SDHD +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SDHB +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SDHA +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP DPYD +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GART +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GPT +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP DPYS +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP AK1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MDH2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PKM2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UMPS +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP CYCS +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFS3 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFS4 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFS6 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA5 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFS5 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFS1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFS2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFV2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFV3 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFV1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA4 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA11 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-ND3 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA13 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFB5 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFC1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA6 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFC2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA3 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFB3 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFB1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFAB1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-ND4 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-ND5 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFB9 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFB6 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFB4 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA8 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFB7 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA12 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFB2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-ND4L +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-ND2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFB10 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA7 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFB8 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFB11 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-ND6 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP MT-ND1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFS7 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA10 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFS8 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NDUFA9 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP VAMP2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NT5C1A +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP CTPS +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PRPS1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP DLST +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP OGDH +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GMPS +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GUK1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP IMPDH2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GDA +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NME1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP IMPDH1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ADSS +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP OTC +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP FH +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP INS +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SYT5 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PFAS +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SLC35D1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ASL +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UPB1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SLC25A21 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GPI +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UROD +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP CPOX +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UROS +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP XDH +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PAICS +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP CPS1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP TALDO1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ASS1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP CMPK1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ALAD +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP CS +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP CAT +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SLC25A1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PPOX +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP ACO2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP IDH3G +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP IDH3A +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP IDH3B +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP UGDH +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP RRM2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP RRM1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP G6PD +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP AMPD1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SLC25A11 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PPAT +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP TKT +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP FECH +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PCK2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SUCLA2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GBE1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP TXNRD1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP TPI1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP SLC25A10 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP G6PC +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PYCR1 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP NME2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP RPIA +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP AMPD2 +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP PGD +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP GSR +PWCOMMONS 1,3-bisphosphoglycerate and ADP react to form 3-phosphoglycerate and ATP +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5F1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5J +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5G1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5L +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-ATP6 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5J2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-ATP8 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5H +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5I +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5C1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5D +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5A1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5B +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATP5E +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MLX +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MLXIPL +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate HPRT1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UQCRC1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UQCRB +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UQCR10 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UQCR +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UQCRC2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UQCRH +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UQCRQ +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UQCRFS1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-CYB +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate CYC1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GOT2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GYG2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UPP1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PC +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ADSL +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MDH1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PCK1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate OAT +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GYS2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ECHS1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate TXN +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SUCLG1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SUCLG2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ARG1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate KCNJ11 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate AMPD3 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate RPE +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GPT +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate DPYS +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate AK1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PKM2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFS3 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFS4 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFS6 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA5 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFS5 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFS1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFS2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFV2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFV3 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFV1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA4 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA11 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-ND3 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA13 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFB5 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFC1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA6 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFC2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA3 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFB3 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFB1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFAB1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-ND4 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-ND5 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFB9 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFB6 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFB4 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA8 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFB7 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA12 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFB2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-ND4L +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-ND2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFB10 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA7 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFB8 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFB11 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-ND6 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-ND1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFS7 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA10 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFS8 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NDUFA9 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate VAMP2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NT5C1A +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate FASN +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate DLST +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate OGDH +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate DLD +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GMPS +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GUK1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate IMPDH2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GDA +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NME1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate IMPDH1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ADSS +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ATIC +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PFKFB1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate INS +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SYT5 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GART +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SLC35D1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ASL +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UPB1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GLRX +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SLC25A21 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate AGPAT1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UROS +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate TALDO1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ASS1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate CMPK1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ALAD +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate IDH3G +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate IDH3A +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate IDH3B +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UGDH +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate RRM2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate RRM1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate G6PD +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate AMPD1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SLC25A11 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PPAT +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SDHC +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SDHD +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SDHB +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SDHA +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate FECH +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate TKT +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PDHX +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate DLAT +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PDHA1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PDHB +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PPAP2C +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GBE1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate TXNRD1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate TPI1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SLC25A10 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate G6PC +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GSR +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NT5C2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-CO2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate COX8A +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate COX7C +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-CO3 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate COX6C +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate COX5B +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MT-CO1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate COX7A2L +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate COX4I1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate COX6A1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate COX7B +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate COX6B1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate COX5A +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PGLS +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate HADH +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GOT1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PGK1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GCDH +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NP +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate DPYD +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ACLY +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate MDH2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UMPS +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate CYCS +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate CTPS +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PRPS1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ACACB +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate OTC +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate FH +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PFAS +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate GPI +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate UROD +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate CPOX +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate XDH +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PAICS +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate CPS1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate CS +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate CAT +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PPOX +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SLC25A1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate ACO2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PGM1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PCK2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate SUCLA2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PPAP2B +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PYCR1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate DGAT1 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate NME2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate RPIA +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate AMPD2 +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PGD +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate PPAP2A +PWCOMMONS Dihydroxyacetone phosphate is isomerized to form glyceraldehyde-3-phosphate +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5F1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5J +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5G1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5L +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-ATP6 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5J2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-ATP8 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5H +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5I +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5C1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5D +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5A1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5B +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATP5E +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MLX +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MLXIPL +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate HPRT1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UQCRC1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UQCRB +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UQCR10 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UQCR +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UQCRC2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UQCRH +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UQCRQ +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UQCRFS1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-CYB +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate CYC1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GOT2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GYG2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UPP1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PC +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ADSL +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MDH1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PCK1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate OAT +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GYS2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ECHS1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate TXN +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SUCLG1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SUCLG2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ARG1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate KCNJ11 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate AMPD3 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate RPE +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GPT +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate DPYS +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate AK1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PKM2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFS3 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFS4 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFS6 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA5 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFS5 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFS1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFS2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFV2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFV3 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFV1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA4 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA11 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-ND3 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA13 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFB5 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFC1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA6 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFC2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA3 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFB3 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFB1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFAB1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-ND4 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-ND5 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFB9 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFB6 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFB4 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA8 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFB7 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA12 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFB2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-ND4L +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-ND2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFB10 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA7 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFB8 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFB11 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-ND6 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-ND1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFS7 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA10 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFS8 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NDUFA9 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate VAMP2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NT5C1A +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate FASN +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate DLST +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate OGDH +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate DLD +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GMPS +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GUK1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate IMPDH2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GDA +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NME1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate IMPDH1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ADSS +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ATIC +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PFKFB1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate INS +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SYT5 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GART +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SLC35D1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ASL +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UPB1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GLRX +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SLC25A21 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate AGPAT1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UROS +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate TALDO1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ASS1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate CMPK1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ALAD +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate IDH3G +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate IDH3A +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate IDH3B +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UGDH +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate RRM2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate RRM1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate G6PD +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate AMPD1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SLC25A11 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PPAT +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SDHC +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SDHD +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SDHB +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SDHA +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate FECH +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate TKT +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PDHX +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate DLAT +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PDHA1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PDHB +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PPAP2C +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GBE1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate TXNRD1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate TPI1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SLC25A10 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate G6PC +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GSR +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NT5C2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-CO2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate COX8A +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate COX7C +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-CO3 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate COX6C +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate COX5B +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MT-CO1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate COX7A2L +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate COX4I1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate COX6A1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate COX7B +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate COX6B1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate COX5A +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PGLS +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate HADH +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GOT1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PGK1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GCDH +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NP +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate DPYD +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ACLY +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate MDH2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UMPS +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate CYCS +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate CTPS +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PRPS1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ACACB +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate OTC +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate FH +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PFAS +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate GPI +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate UROD +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate CPOX +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate XDH +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PAICS +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate CPS1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate CS +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate CAT +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PPOX +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SLC25A1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate ACO2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PGM1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PCK2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate SUCLA2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PPAP2B +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PYCR1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate DGAT1 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate NME2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate RPIA +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate AMPD2 +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PGD +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate PPAP2A +PWCOMMONS Glucose 6-phosphate is isomerized to form fructose-6-phosphate +PWCOMMONS Mitochondrial tRNA aminoacylation IARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation QARS +PWCOMMONS Mitochondrial tRNA aminoacylation VARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation WARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation HARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation YARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation SARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation GARS +PWCOMMONS Mitochondrial tRNA aminoacylation PARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation EARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation RARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation NARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation FARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation TARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation DARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation MARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation KARS +PWCOMMONS Mitochondrial tRNA aminoacylation CARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation LARS2 +PWCOMMONS Mitochondrial tRNA aminoacylation +PWCOMMONS Translation RPS16 +PWCOMMONS Translation RPS12 +PWCOMMONS Translation RPS29 +PWCOMMONS Translation RPSA +PWCOMMONS Translation RPS21 +PWCOMMONS Translation RPS27A +PWCOMMONS Translation RPS20 +PWCOMMONS Translation RPS15 +PWCOMMONS Translation RPS24 +PWCOMMONS Translation RPS9 +PWCOMMONS Translation RPS10 +PWCOMMONS Translation RPS28 +PWCOMMONS Translation RPS2 +PWCOMMONS Translation RPS19 +PWCOMMONS Translation RPS4X +PWCOMMONS Translation RPS18 +PWCOMMONS Translation RPS8 +PWCOMMONS Translation RPS3 +PWCOMMONS Translation RPS4Y1 +PWCOMMONS Translation RPS25 +PWCOMMONS Translation RPS14 +PWCOMMONS Translation RPS17 +PWCOMMONS Translation RPS26 +PWCOMMONS Translation RPS11 +PWCOMMONS Translation RPS5 +PWCOMMONS Translation FAU +PWCOMMONS Translation RPS15A +PWCOMMONS Translation RPS13 +PWCOMMONS Translation RPS6 +PWCOMMONS Translation RPS3A +PWCOMMONS Translation RPS7 +PWCOMMONS Translation RPS27 +PWCOMMONS Translation RPL27A +PWCOMMONS Translation RPL15 +PWCOMMONS Translation RPL11 +PWCOMMONS Translation RPL29 +PWCOMMONS Translation RPL30 +PWCOMMONS Translation RPL8 +PWCOMMONS Translation RPL22 +PWCOMMONS Translation RPL28 +PWCOMMONS Translation RPL7A +PWCOMMONS Translation RPL35A +PWCOMMONS Translation RPL31 +PWCOMMONS Translation RPL26L1 +PWCOMMONS Translation RPL26 +PWCOMMONS Translation RPL18A +PWCOMMONS Translation RPL14 +PWCOMMONS Translation RPLP2 +PWCOMMONS Translation RPL10 +PWCOMMONS Translation RPL34 +PWCOMMONS Translation RPL37 +PWCOMMONS Translation RPL3L +PWCOMMONS Translation RPL32 +PWCOMMONS Translation RPL36 +PWCOMMONS Translation RPLP1 +PWCOMMONS Translation RPL23A +PWCOMMONS Translation RPL24 +PWCOMMONS Translation RPL6 +PWCOMMONS Translation RPL18 +PWCOMMONS Translation RPL5 +PWCOMMONS Translation RPL23 +PWCOMMONS Translation RPL19 +PWCOMMONS Translation RPL41 +PWCOMMONS Translation RPL7 +PWCOMMONS Translation RPL13A +PWCOMMONS Translation RPL27 +PWCOMMONS Translation RPL17 +PWCOMMONS Translation RPL3 +PWCOMMONS Translation RPL10A +PWCOMMONS Translation RPL21 +PWCOMMONS Translation RPL4 +PWCOMMONS Translation RPL35 +PWCOMMONS Translation RPL13 +PWCOMMONS Translation RPL39 +PWCOMMONS Translation RPL38 +PWCOMMONS Translation RPL36A +PWCOMMONS Translation RPL9 +PWCOMMONS Translation RPLP0 +PWCOMMONS Translation UBA52 +PWCOMMONS Translation RPL37A +PWCOMMONS Translation RPL12 +PWCOMMONS Translation EEF1A1 +PWCOMMONS Translation EIF2B5 +PWCOMMONS Translation EIF2B1 +PWCOMMONS Translation EIF2B3 +PWCOMMONS Translation EIF2B4 +PWCOMMONS Translation EIF2B2 +PWCOMMONS Translation ETF1 +PWCOMMONS Translation GSPT2 +PWCOMMONS Translation EEF1G +PWCOMMONS Translation EEF1D +PWCOMMONS Translation EEF1B2 +PWCOMMONS Translation EIF2S3 +PWCOMMONS Translation EIF2S2 +PWCOMMONS Translation EIF2S1 +PWCOMMONS Translation EIF5 +PWCOMMONS Translation EIF1AX +PWCOMMONS Translation EIF3K +PWCOMMONS Translation EIF3H +PWCOMMONS Translation EIF3E +PWCOMMONS Translation EIF3F +PWCOMMONS Translation EIF3J +PWCOMMONS Translation EIF3G +PWCOMMONS Translation EIF3C +PWCOMMONS Translation EIF3A +PWCOMMONS Translation EIF3I +PWCOMMONS Translation EIF3D +PWCOMMONS Translation EIF3B +PWCOMMONS Translation EIF4H +PWCOMMONS Translation EIF4B +PWCOMMONS Translation EIF4E +PWCOMMONS Translation EIF4G1 +PWCOMMONS Translation EIF4A2 +PWCOMMONS Translation EIF5B +PWCOMMONS Translation EEF2 +PWCOMMONS Translation EIF4EBP1 +PWCOMMONS Translation PABPC1 +PWCOMMONS Translation +PWCOMMONS Eukaryotic Translation Elongation RPS16 +PWCOMMONS Eukaryotic Translation Elongation RPS12 +PWCOMMONS Eukaryotic Translation Elongation RPS29 +PWCOMMONS Eukaryotic Translation Elongation RPSA +PWCOMMONS Eukaryotic Translation Elongation RPS21 +PWCOMMONS Eukaryotic Translation Elongation RPS27A +PWCOMMONS Eukaryotic Translation Elongation RPS20 +PWCOMMONS Eukaryotic Translation Elongation RPS15 +PWCOMMONS Eukaryotic Translation Elongation RPS24 +PWCOMMONS Eukaryotic Translation Elongation RPS9 +PWCOMMONS Eukaryotic Translation Elongation RPS10 +PWCOMMONS Eukaryotic Translation Elongation RPS28 +PWCOMMONS Eukaryotic Translation Elongation RPS2 +PWCOMMONS Eukaryotic Translation Elongation RPS19 +PWCOMMONS Eukaryotic Translation Elongation RPS4X +PWCOMMONS Eukaryotic Translation Elongation RPS18 +PWCOMMONS Eukaryotic Translation Elongation RPS8 +PWCOMMONS Eukaryotic Translation Elongation RPS3 +PWCOMMONS Eukaryotic Translation Elongation RPS4Y1 +PWCOMMONS Eukaryotic Translation Elongation RPS25 +PWCOMMONS Eukaryotic Translation Elongation RPS14 +PWCOMMONS Eukaryotic Translation Elongation RPS17 +PWCOMMONS Eukaryotic Translation Elongation RPS26 +PWCOMMONS Eukaryotic Translation Elongation RPS11 +PWCOMMONS Eukaryotic Translation Elongation RPS5 +PWCOMMONS Eukaryotic Translation Elongation FAU +PWCOMMONS Eukaryotic Translation Elongation RPS15A +PWCOMMONS Eukaryotic Translation Elongation RPS13 +PWCOMMONS Eukaryotic Translation Elongation RPS6 +PWCOMMONS Eukaryotic Translation Elongation RPS3A +PWCOMMONS Eukaryotic Translation Elongation RPS7 +PWCOMMONS Eukaryotic Translation Elongation RPS27 +PWCOMMONS Eukaryotic Translation Elongation RPL27A +PWCOMMONS Eukaryotic Translation Elongation RPL15 +PWCOMMONS Eukaryotic Translation Elongation RPL11 +PWCOMMONS Eukaryotic Translation Elongation RPL29 +PWCOMMONS Eukaryotic Translation Elongation RPL30 +PWCOMMONS Eukaryotic Translation Elongation RPL8 +PWCOMMONS Eukaryotic Translation Elongation RPL22 +PWCOMMONS Eukaryotic Translation Elongation RPL28 +PWCOMMONS Eukaryotic Translation Elongation RPL7A +PWCOMMONS Eukaryotic Translation Elongation RPL35A +PWCOMMONS Eukaryotic Translation Elongation RPL31 +PWCOMMONS Eukaryotic Translation Elongation RPL26L1 +PWCOMMONS Eukaryotic Translation Elongation RPL26 +PWCOMMONS Eukaryotic Translation Elongation RPL18A +PWCOMMONS Eukaryotic Translation Elongation RPL14 +PWCOMMONS Eukaryotic Translation Elongation RPLP2 +PWCOMMONS Eukaryotic Translation Elongation RPL10 +PWCOMMONS Eukaryotic Translation Elongation RPL34 +PWCOMMONS Eukaryotic Translation Elongation RPL37 +PWCOMMONS Eukaryotic Translation Elongation RPL3L +PWCOMMONS Eukaryotic Translation Elongation RPL32 +PWCOMMONS Eukaryotic Translation Elongation RPL36 +PWCOMMONS Eukaryotic Translation Elongation RPLP1 +PWCOMMONS Eukaryotic Translation Elongation RPL23A +PWCOMMONS Eukaryotic Translation Elongation RPL24 +PWCOMMONS Eukaryotic Translation Elongation RPL6 +PWCOMMONS Eukaryotic Translation Elongation RPL18 +PWCOMMONS Eukaryotic Translation Elongation RPL5 +PWCOMMONS Eukaryotic Translation Elongation RPL23 +PWCOMMONS Eukaryotic Translation Elongation RPL19 +PWCOMMONS Eukaryotic Translation Elongation RPL41 +PWCOMMONS Eukaryotic Translation Elongation RPL7 +PWCOMMONS Eukaryotic Translation Elongation RPL13A +PWCOMMONS Eukaryotic Translation Elongation RPL27 +PWCOMMONS Eukaryotic Translation Elongation RPL17 +PWCOMMONS Eukaryotic Translation Elongation RPL3 +PWCOMMONS Eukaryotic Translation Elongation RPL10A +PWCOMMONS Eukaryotic Translation Elongation RPL21 +PWCOMMONS Eukaryotic Translation Elongation RPL4 +PWCOMMONS Eukaryotic Translation Elongation RPL35 +PWCOMMONS Eukaryotic Translation Elongation RPL13 +PWCOMMONS Eukaryotic Translation Elongation RPL39 +PWCOMMONS Eukaryotic Translation Elongation RPL38 +PWCOMMONS Eukaryotic Translation Elongation RPL36A +PWCOMMONS Eukaryotic Translation Elongation RPL9 +PWCOMMONS Eukaryotic Translation Elongation RPLP0 +PWCOMMONS Eukaryotic Translation Elongation UBA52 +PWCOMMONS Eukaryotic Translation Elongation RPL37A +PWCOMMONS Eukaryotic Translation Elongation RPL12 +PWCOMMONS Eukaryotic Translation Elongation EEF1A1 +PWCOMMONS Eukaryotic Translation Elongation ETF1 +PWCOMMONS Eukaryotic Translation Elongation GSPT2 +PWCOMMONS Eukaryotic Translation Elongation EEF1G +PWCOMMONS Eukaryotic Translation Elongation EEF1D +PWCOMMONS Eukaryotic Translation Elongation EEF1B2 +PWCOMMONS Eukaryotic Translation Elongation EEF2 +PWCOMMONS Eukaryotic Translation Elongation +PWCOMMONS Peptide chain elongation RPS23 +PWCOMMONS Peptide chain elongation RPS16 +PWCOMMONS Peptide chain elongation RPS12 +PWCOMMONS Peptide chain elongation RPS29 +PWCOMMONS Peptide chain elongation RPSA +PWCOMMONS Peptide chain elongation RPS21 +PWCOMMONS Peptide chain elongation RPS27A +PWCOMMONS Peptide chain elongation RPS20 +PWCOMMONS Peptide chain elongation RPS15 +PWCOMMONS Peptide chain elongation RPS24 +PWCOMMONS Peptide chain elongation RPS9 +PWCOMMONS Peptide chain elongation RPS10 +PWCOMMONS Peptide chain elongation RPS28 +PWCOMMONS Peptide chain elongation RPS2 +PWCOMMONS Peptide chain elongation RPS19 +PWCOMMONS Peptide chain elongation RPS4X +PWCOMMONS Peptide chain elongation RPS18 +PWCOMMONS Peptide chain elongation RPS8 +PWCOMMONS Peptide chain elongation RPS3 +PWCOMMONS Peptide chain elongation RPS4Y1 +PWCOMMONS Peptide chain elongation RPS25 +PWCOMMONS Peptide chain elongation RPS14 +PWCOMMONS Peptide chain elongation RPS17 +PWCOMMONS Peptide chain elongation RPS26 +PWCOMMONS Peptide chain elongation RPS11 +PWCOMMONS Peptide chain elongation RPS5 +PWCOMMONS Peptide chain elongation FAU +PWCOMMONS Peptide chain elongation RPS15A +PWCOMMONS Peptide chain elongation RPS13 +PWCOMMONS Peptide chain elongation RPS6 +PWCOMMONS Peptide chain elongation RPS3A +PWCOMMONS Peptide chain elongation RPS7 +PWCOMMONS Peptide chain elongation RPS27 +PWCOMMONS Peptide chain elongation RPL27A +PWCOMMONS Peptide chain elongation RPL15 +PWCOMMONS Peptide chain elongation RPL11 +PWCOMMONS Peptide chain elongation RPL29 +PWCOMMONS Peptide chain elongation RPL30 +PWCOMMONS Peptide chain elongation RPL8 +PWCOMMONS Peptide chain elongation RPL22 +PWCOMMONS Peptide chain elongation RPL28 +PWCOMMONS Peptide chain elongation RPL7A +PWCOMMONS Peptide chain elongation RPL35A +PWCOMMONS Peptide chain elongation RPL31 +PWCOMMONS Peptide chain elongation RPL26L1 +PWCOMMONS Peptide chain elongation RPL26 +PWCOMMONS Peptide chain elongation RPL18A +PWCOMMONS Peptide chain elongation RPL14 +PWCOMMONS Peptide chain elongation RPLP2 +PWCOMMONS Peptide chain elongation RPL10 +PWCOMMONS Peptide chain elongation RPL34 +PWCOMMONS Peptide chain elongation RPL37 +PWCOMMONS Peptide chain elongation RPL3L +PWCOMMONS Peptide chain elongation RPL32 +PWCOMMONS Peptide chain elongation RPL36 +PWCOMMONS Peptide chain elongation RPLP1 +PWCOMMONS Peptide chain elongation RPL23A +PWCOMMONS Peptide chain elongation RPL24 +PWCOMMONS Peptide chain elongation RPL6 +PWCOMMONS Peptide chain elongation RPL18 +PWCOMMONS Peptide chain elongation RPL5 +PWCOMMONS Peptide chain elongation RPL23 +PWCOMMONS Peptide chain elongation RPL19 +PWCOMMONS Peptide chain elongation RPL41 +PWCOMMONS Peptide chain elongation RPL7 +PWCOMMONS Peptide chain elongation RPL13A +PWCOMMONS Peptide chain elongation RPL27 +PWCOMMONS Peptide chain elongation RPL17 +PWCOMMONS Peptide chain elongation RPL3 +PWCOMMONS Peptide chain elongation RPL10A +PWCOMMONS Peptide chain elongation RPL21 +PWCOMMONS Peptide chain elongation RPL4 +PWCOMMONS Peptide chain elongation RPL35 +PWCOMMONS Peptide chain elongation RPL13 +PWCOMMONS Peptide chain elongation RPL39 +PWCOMMONS Peptide chain elongation RPL38 +PWCOMMONS Peptide chain elongation RPL36A +PWCOMMONS Peptide chain elongation RPL9 +PWCOMMONS Peptide chain elongation RPLP0 +PWCOMMONS Peptide chain elongation UBA52 +PWCOMMONS Peptide chain elongation RPL37A +PWCOMMONS Peptide chain elongation RPL12 +PWCOMMONS Peptide chain elongation EEF2 +PWCOMMONS Peptide chain elongation ETF1 +PWCOMMONS Peptide chain elongation GSPT2 +PWCOMMONS Peptide chain elongation EEF1G +PWCOMMONS Peptide chain elongation EEF1D +PWCOMMONS Peptide chain elongation EEF1B2 +PWCOMMONS Peptide chain elongation +PWCOMMONS Eukaryotic Translation Termination GSPT2 +PWCOMMONS Eukaryotic Translation Termination RPS23 +PWCOMMONS Eukaryotic Translation Termination RPS16 +PWCOMMONS Eukaryotic Translation Termination RPS12 +PWCOMMONS Eukaryotic Translation Termination RPS29 +PWCOMMONS Eukaryotic Translation Termination RPSA +PWCOMMONS Eukaryotic Translation Termination RPS21 +PWCOMMONS Eukaryotic Translation Termination RPS27A +PWCOMMONS Eukaryotic Translation Termination RPS20 +PWCOMMONS Eukaryotic Translation Termination RPS15 +PWCOMMONS Eukaryotic Translation Termination RPS24 +PWCOMMONS Eukaryotic Translation Termination RPS9 +PWCOMMONS Eukaryotic Translation Termination RPS10 +PWCOMMONS Eukaryotic Translation Termination RPS28 +PWCOMMONS Eukaryotic Translation Termination RPS2 +PWCOMMONS Eukaryotic Translation Termination RPS19 +PWCOMMONS Eukaryotic Translation Termination RPS4X +PWCOMMONS Eukaryotic Translation Termination RPS18 +PWCOMMONS Eukaryotic Translation Termination RPS8 +PWCOMMONS Eukaryotic Translation Termination RPS3 +PWCOMMONS Eukaryotic Translation Termination RPS4Y1 +PWCOMMONS Eukaryotic Translation Termination RPS25 +PWCOMMONS Eukaryotic Translation Termination RPS14 +PWCOMMONS Eukaryotic Translation Termination RPS17 +PWCOMMONS Eukaryotic Translation Termination RPS26 +PWCOMMONS Eukaryotic Translation Termination RPS11 +PWCOMMONS Eukaryotic Translation Termination RPS5 +PWCOMMONS Eukaryotic Translation Termination FAU +PWCOMMONS Eukaryotic Translation Termination RPS15A +PWCOMMONS Eukaryotic Translation Termination RPS13 +PWCOMMONS Eukaryotic Translation Termination RPS6 +PWCOMMONS Eukaryotic Translation Termination RPS3A +PWCOMMONS Eukaryotic Translation Termination RPS7 +PWCOMMONS Eukaryotic Translation Termination RPS27 +PWCOMMONS Eukaryotic Translation Termination RPL27A +PWCOMMONS Eukaryotic Translation Termination RPL15 +PWCOMMONS Eukaryotic Translation Termination RPL11 +PWCOMMONS Eukaryotic Translation Termination RPL29 +PWCOMMONS Eukaryotic Translation Termination RPL30 +PWCOMMONS Eukaryotic Translation Termination RPL8 +PWCOMMONS Eukaryotic Translation Termination RPL22 +PWCOMMONS Eukaryotic Translation Termination RPL28 +PWCOMMONS Eukaryotic Translation Termination RPL7A +PWCOMMONS Eukaryotic Translation Termination RPL35A +PWCOMMONS Eukaryotic Translation Termination RPL31 +PWCOMMONS Eukaryotic Translation Termination RPL26L1 +PWCOMMONS Eukaryotic Translation Termination RPL26 +PWCOMMONS Eukaryotic Translation Termination RPL18A +PWCOMMONS Eukaryotic Translation Termination RPL14 +PWCOMMONS Eukaryotic Translation Termination RPLP2 +PWCOMMONS Eukaryotic Translation Termination RPL10 +PWCOMMONS Eukaryotic Translation Termination RPL34 +PWCOMMONS Eukaryotic Translation Termination RPL37 +PWCOMMONS Eukaryotic Translation Termination RPL3L +PWCOMMONS Eukaryotic Translation Termination RPL32 +PWCOMMONS Eukaryotic Translation Termination RPL36 +PWCOMMONS Eukaryotic Translation Termination RPLP1 +PWCOMMONS Eukaryotic Translation Termination RPL23A +PWCOMMONS Eukaryotic Translation Termination RPL24 +PWCOMMONS Eukaryotic Translation Termination RPL6 +PWCOMMONS Eukaryotic Translation Termination RPL18 +PWCOMMONS Eukaryotic Translation Termination RPL5 +PWCOMMONS Eukaryotic Translation Termination RPL23 +PWCOMMONS Eukaryotic Translation Termination RPL19 +PWCOMMONS Eukaryotic Translation Termination RPL41 +PWCOMMONS Eukaryotic Translation Termination RPL7 +PWCOMMONS Eukaryotic Translation Termination RPL13A +PWCOMMONS Eukaryotic Translation Termination RPL27 +PWCOMMONS Eukaryotic Translation Termination RPL17 +PWCOMMONS Eukaryotic Translation Termination RPL3 +PWCOMMONS Eukaryotic Translation Termination RPL10A +PWCOMMONS Eukaryotic Translation Termination RPL21 +PWCOMMONS Eukaryotic Translation Termination RPL4 +PWCOMMONS Eukaryotic Translation Termination RPL35 +PWCOMMONS Eukaryotic Translation Termination RPL13 +PWCOMMONS Eukaryotic Translation Termination RPL39 +PWCOMMONS Eukaryotic Translation Termination RPL38 +PWCOMMONS Eukaryotic Translation Termination RPL36A +PWCOMMONS Eukaryotic Translation Termination RPL9 +PWCOMMONS Eukaryotic Translation Termination RPLP0 +PWCOMMONS Eukaryotic Translation Termination UBA52 +PWCOMMONS Eukaryotic Translation Termination RPL37A +PWCOMMONS Eukaryotic Translation Termination RPL12 +PWCOMMONS Eukaryotic Translation Termination +PWCOMMONS Eukaryotic Translation Initiation RPS16 +PWCOMMONS Eukaryotic Translation Initiation RPS12 +PWCOMMONS Eukaryotic Translation Initiation RPS29 +PWCOMMONS Eukaryotic Translation Initiation RPSA +PWCOMMONS Eukaryotic Translation Initiation RPS21 +PWCOMMONS Eukaryotic Translation Initiation RPS27A +PWCOMMONS Eukaryotic Translation Initiation RPS20 +PWCOMMONS Eukaryotic Translation Initiation RPS15 +PWCOMMONS Eukaryotic Translation Initiation RPS24 +PWCOMMONS Eukaryotic Translation Initiation RPS9 +PWCOMMONS Eukaryotic Translation Initiation RPS10 +PWCOMMONS Eukaryotic Translation Initiation RPS28 +PWCOMMONS Eukaryotic Translation Initiation RPS2 +PWCOMMONS Eukaryotic Translation Initiation RPS19 +PWCOMMONS Eukaryotic Translation Initiation RPS4X +PWCOMMONS Eukaryotic Translation Initiation RPS18 +PWCOMMONS Eukaryotic Translation Initiation RPS8 +PWCOMMONS Eukaryotic Translation Initiation RPS3 +PWCOMMONS Eukaryotic Translation Initiation RPS4Y1 +PWCOMMONS Eukaryotic Translation Initiation RPS25 +PWCOMMONS Eukaryotic Translation Initiation RPS14 +PWCOMMONS Eukaryotic Translation Initiation RPS17 +PWCOMMONS Eukaryotic Translation Initiation RPS26 +PWCOMMONS Eukaryotic Translation Initiation RPS11 +PWCOMMONS Eukaryotic Translation Initiation RPS5 +PWCOMMONS Eukaryotic Translation Initiation FAU +PWCOMMONS Eukaryotic Translation Initiation RPS15A +PWCOMMONS Eukaryotic Translation Initiation RPS13 +PWCOMMONS Eukaryotic Translation Initiation RPS6 +PWCOMMONS Eukaryotic Translation Initiation RPS3A +PWCOMMONS Eukaryotic Translation Initiation RPS7 +PWCOMMONS Eukaryotic Translation Initiation RPS27 +PWCOMMONS Eukaryotic Translation Initiation RPL27A +PWCOMMONS Eukaryotic Translation Initiation RPL15 +PWCOMMONS Eukaryotic Translation Initiation RPL11 +PWCOMMONS Eukaryotic Translation Initiation RPL29 +PWCOMMONS Eukaryotic Translation Initiation RPL30 +PWCOMMONS Eukaryotic Translation Initiation RPL8 +PWCOMMONS Eukaryotic Translation Initiation RPL22 +PWCOMMONS Eukaryotic Translation Initiation RPL28 +PWCOMMONS Eukaryotic Translation Initiation RPL7A +PWCOMMONS Eukaryotic Translation Initiation RPL35A +PWCOMMONS Eukaryotic Translation Initiation RPL31 +PWCOMMONS Eukaryotic Translation Initiation RPL26L1 +PWCOMMONS Eukaryotic Translation Initiation RPL26 +PWCOMMONS Eukaryotic Translation Initiation RPL18A +PWCOMMONS Eukaryotic Translation Initiation RPL14 +PWCOMMONS Eukaryotic Translation Initiation RPLP2 +PWCOMMONS Eukaryotic Translation Initiation RPL10 +PWCOMMONS Eukaryotic Translation Initiation RPL34 +PWCOMMONS Eukaryotic Translation Initiation RPL37 +PWCOMMONS Eukaryotic Translation Initiation RPL3L +PWCOMMONS Eukaryotic Translation Initiation RPL32 +PWCOMMONS Eukaryotic Translation Initiation RPL36 +PWCOMMONS Eukaryotic Translation Initiation RPLP1 +PWCOMMONS Eukaryotic Translation Initiation RPL23A +PWCOMMONS Eukaryotic Translation Initiation RPL24 +PWCOMMONS Eukaryotic Translation Initiation RPL6 +PWCOMMONS Eukaryotic Translation Initiation RPL18 +PWCOMMONS Eukaryotic Translation Initiation RPL5 +PWCOMMONS Eukaryotic Translation Initiation RPL23 +PWCOMMONS Eukaryotic Translation Initiation RPL19 +PWCOMMONS Eukaryotic Translation Initiation RPL41 +PWCOMMONS Eukaryotic Translation Initiation RPL7 +PWCOMMONS Eukaryotic Translation Initiation RPL13A +PWCOMMONS Eukaryotic Translation Initiation RPL27 +PWCOMMONS Eukaryotic Translation Initiation RPL17 +PWCOMMONS Eukaryotic Translation Initiation RPL3 +PWCOMMONS Eukaryotic Translation Initiation RPL10A +PWCOMMONS Eukaryotic Translation Initiation RPL21 +PWCOMMONS Eukaryotic Translation Initiation RPL4 +PWCOMMONS Eukaryotic Translation Initiation RPL35 +PWCOMMONS Eukaryotic Translation Initiation RPL13 +PWCOMMONS Eukaryotic Translation Initiation RPL39 +PWCOMMONS Eukaryotic Translation Initiation RPL38 +PWCOMMONS Eukaryotic Translation Initiation RPL36A +PWCOMMONS Eukaryotic Translation Initiation RPL9 +PWCOMMONS Eukaryotic Translation Initiation RPLP0 +PWCOMMONS Eukaryotic Translation Initiation UBA52 +PWCOMMONS Eukaryotic Translation Initiation RPL37A +PWCOMMONS Eukaryotic Translation Initiation RPL12 +PWCOMMONS Eukaryotic Translation Initiation EEF1A1 +PWCOMMONS Eukaryotic Translation Initiation EIF2B5 +PWCOMMONS Eukaryotic Translation Initiation EIF2B1 +PWCOMMONS Eukaryotic Translation Initiation EIF2B3 +PWCOMMONS Eukaryotic Translation Initiation EIF2B4 +PWCOMMONS Eukaryotic Translation Initiation EIF2B2 +PWCOMMONS Eukaryotic Translation Initiation ETF1 +PWCOMMONS Eukaryotic Translation Initiation GSPT2 +PWCOMMONS Eukaryotic Translation Initiation EEF1G +PWCOMMONS Eukaryotic Translation Initiation EEF1D +PWCOMMONS Eukaryotic Translation Initiation EEF1B2 +PWCOMMONS Eukaryotic Translation Initiation EIF2S3 +PWCOMMONS Eukaryotic Translation Initiation EIF2S2 +PWCOMMONS Eukaryotic Translation Initiation EIF2S1 +PWCOMMONS Eukaryotic Translation Initiation EIF5 +PWCOMMONS Eukaryotic Translation Initiation EIF1AX +PWCOMMONS Eukaryotic Translation Initiation EIF3K +PWCOMMONS Eukaryotic Translation Initiation EIF3H +PWCOMMONS Eukaryotic Translation Initiation EIF3E +PWCOMMONS Eukaryotic Translation Initiation EIF3F +PWCOMMONS Eukaryotic Translation Initiation EIF3J +PWCOMMONS Eukaryotic Translation Initiation EIF3G +PWCOMMONS Eukaryotic Translation Initiation EIF3C +PWCOMMONS Eukaryotic Translation Initiation EIF3A +PWCOMMONS Eukaryotic Translation Initiation EIF3I +PWCOMMONS Eukaryotic Translation Initiation EIF3D +PWCOMMONS Eukaryotic Translation Initiation EIF3B +PWCOMMONS Eukaryotic Translation Initiation EIF4H +PWCOMMONS Eukaryotic Translation Initiation EIF4B +PWCOMMONS Eukaryotic Translation Initiation EIF4E +PWCOMMONS Eukaryotic Translation Initiation EIF4G1 +PWCOMMONS Eukaryotic Translation Initiation EIF4A2 +PWCOMMONS Eukaryotic Translation Initiation EIF5B +PWCOMMONS Eukaryotic Translation Initiation EEF2 +PWCOMMONS Eukaryotic Translation Initiation EIF4EBP1 +PWCOMMONS Eukaryotic Translation Initiation PABPC1 +PWCOMMONS Eukaryotic Translation Initiation +PWCOMMONS Cap-dependent Translation Initiation RPS16 +PWCOMMONS Cap-dependent Translation Initiation RPS12 +PWCOMMONS Cap-dependent Translation Initiation RPS29 +PWCOMMONS Cap-dependent Translation Initiation RPSA +PWCOMMONS Cap-dependent Translation Initiation RPS21 +PWCOMMONS Cap-dependent Translation Initiation RPS27A +PWCOMMONS Cap-dependent Translation Initiation RPS20 +PWCOMMONS Cap-dependent Translation Initiation RPS15 +PWCOMMONS Cap-dependent Translation Initiation RPS24 +PWCOMMONS Cap-dependent Translation Initiation RPS9 +PWCOMMONS Cap-dependent Translation Initiation RPS10 +PWCOMMONS Cap-dependent Translation Initiation RPS28 +PWCOMMONS Cap-dependent Translation Initiation RPS2 +PWCOMMONS Cap-dependent Translation Initiation RPS19 +PWCOMMONS Cap-dependent Translation Initiation RPS4X +PWCOMMONS Cap-dependent Translation Initiation RPS18 +PWCOMMONS Cap-dependent Translation Initiation RPS8 +PWCOMMONS Cap-dependent Translation Initiation RPS3 +PWCOMMONS Cap-dependent Translation Initiation RPS4Y1 +PWCOMMONS Cap-dependent Translation Initiation RPS25 +PWCOMMONS Cap-dependent Translation Initiation RPS14 +PWCOMMONS Cap-dependent Translation Initiation RPS17 +PWCOMMONS Cap-dependent Translation Initiation RPS26 +PWCOMMONS Cap-dependent Translation Initiation RPS11 +PWCOMMONS Cap-dependent Translation Initiation RPS5 +PWCOMMONS Cap-dependent Translation Initiation FAU +PWCOMMONS Cap-dependent Translation Initiation RPS15A +PWCOMMONS Cap-dependent Translation Initiation RPS13 +PWCOMMONS Cap-dependent Translation Initiation RPS6 +PWCOMMONS Cap-dependent Translation Initiation RPS3A +PWCOMMONS Cap-dependent Translation Initiation RPS7 +PWCOMMONS Cap-dependent Translation Initiation RPS27 +PWCOMMONS Cap-dependent Translation Initiation RPL27A +PWCOMMONS Cap-dependent Translation Initiation RPL15 +PWCOMMONS Cap-dependent Translation Initiation RPL11 +PWCOMMONS Cap-dependent Translation Initiation RPL29 +PWCOMMONS Cap-dependent Translation Initiation RPL30 +PWCOMMONS Cap-dependent Translation Initiation RPL8 +PWCOMMONS Cap-dependent Translation Initiation RPL22 +PWCOMMONS Cap-dependent Translation Initiation RPL28 +PWCOMMONS Cap-dependent Translation Initiation RPL7A +PWCOMMONS Cap-dependent Translation Initiation RPL35A +PWCOMMONS Cap-dependent Translation Initiation RPL31 +PWCOMMONS Cap-dependent Translation Initiation RPL26L1 +PWCOMMONS Cap-dependent Translation Initiation RPL26 +PWCOMMONS Cap-dependent Translation Initiation RPL18A +PWCOMMONS Cap-dependent Translation Initiation RPL14 +PWCOMMONS Cap-dependent Translation Initiation RPLP2 +PWCOMMONS Cap-dependent Translation Initiation RPL10 +PWCOMMONS Cap-dependent Translation Initiation RPL34 +PWCOMMONS Cap-dependent Translation Initiation RPL37 +PWCOMMONS Cap-dependent Translation Initiation RPL3L +PWCOMMONS Cap-dependent Translation Initiation RPL32 +PWCOMMONS Cap-dependent Translation Initiation RPL36 +PWCOMMONS Cap-dependent Translation Initiation RPLP1 +PWCOMMONS Cap-dependent Translation Initiation RPL23A +PWCOMMONS Cap-dependent Translation Initiation RPL24 +PWCOMMONS Cap-dependent Translation Initiation RPL6 +PWCOMMONS Cap-dependent Translation Initiation RPL18 +PWCOMMONS Cap-dependent Translation Initiation RPL5 +PWCOMMONS Cap-dependent Translation Initiation RPL23 +PWCOMMONS Cap-dependent Translation Initiation RPL19 +PWCOMMONS Cap-dependent Translation Initiation RPL41 +PWCOMMONS Cap-dependent Translation Initiation RPL7 +PWCOMMONS Cap-dependent Translation Initiation RPL13A +PWCOMMONS Cap-dependent Translation Initiation RPL27 +PWCOMMONS Cap-dependent Translation Initiation RPL17 +PWCOMMONS Cap-dependent Translation Initiation RPL3 +PWCOMMONS Cap-dependent Translation Initiation RPL10A +PWCOMMONS Cap-dependent Translation Initiation RPL21 +PWCOMMONS Cap-dependent Translation Initiation RPL4 +PWCOMMONS Cap-dependent Translation Initiation RPL35 +PWCOMMONS Cap-dependent Translation Initiation RPL13 +PWCOMMONS Cap-dependent Translation Initiation RPL39 +PWCOMMONS Cap-dependent Translation Initiation RPL38 +PWCOMMONS Cap-dependent Translation Initiation RPL36A +PWCOMMONS Cap-dependent Translation Initiation RPL9 +PWCOMMONS Cap-dependent Translation Initiation RPLP0 +PWCOMMONS Cap-dependent Translation Initiation UBA52 +PWCOMMONS Cap-dependent Translation Initiation RPL37A +PWCOMMONS Cap-dependent Translation Initiation RPL12 +PWCOMMONS Cap-dependent Translation Initiation EEF1A1 +PWCOMMONS Cap-dependent Translation Initiation EIF2B5 +PWCOMMONS Cap-dependent Translation Initiation EIF2B1 +PWCOMMONS Cap-dependent Translation Initiation EIF2B3 +PWCOMMONS Cap-dependent Translation Initiation EIF2B4 +PWCOMMONS Cap-dependent Translation Initiation EIF2B2 +PWCOMMONS Cap-dependent Translation Initiation ETF1 +PWCOMMONS Cap-dependent Translation Initiation GSPT2 +PWCOMMONS Cap-dependent Translation Initiation EEF1G +PWCOMMONS Cap-dependent Translation Initiation EEF1D +PWCOMMONS Cap-dependent Translation Initiation EEF1B2 +PWCOMMONS Cap-dependent Translation Initiation EIF2S3 +PWCOMMONS Cap-dependent Translation Initiation EIF2S2 +PWCOMMONS Cap-dependent Translation Initiation EIF2S1 +PWCOMMONS Cap-dependent Translation Initiation EIF5 +PWCOMMONS Cap-dependent Translation Initiation EIF1AX +PWCOMMONS Cap-dependent Translation Initiation EIF3K +PWCOMMONS Cap-dependent Translation Initiation EIF3H +PWCOMMONS Cap-dependent Translation Initiation EIF3E +PWCOMMONS Cap-dependent Translation Initiation EIF3F +PWCOMMONS Cap-dependent Translation Initiation EIF3J +PWCOMMONS Cap-dependent Translation Initiation EIF3G +PWCOMMONS Cap-dependent Translation Initiation EIF3C +PWCOMMONS Cap-dependent Translation Initiation EIF3A +PWCOMMONS Cap-dependent Translation Initiation EIF3I +PWCOMMONS Cap-dependent Translation Initiation EIF3D +PWCOMMONS Cap-dependent Translation Initiation EIF3B +PWCOMMONS Cap-dependent Translation Initiation EIF4H +PWCOMMONS Cap-dependent Translation Initiation EIF4B +PWCOMMONS Cap-dependent Translation Initiation EIF4E +PWCOMMONS Cap-dependent Translation Initiation EIF4G1 +PWCOMMONS Cap-dependent Translation Initiation EIF4A2 +PWCOMMONS Cap-dependent Translation Initiation EIF5B +PWCOMMONS Cap-dependent Translation Initiation EEF2 +PWCOMMONS Cap-dependent Translation Initiation EIF4EBP1 +PWCOMMONS Cap-dependent Translation Initiation PABPC1 +PWCOMMONS Cap-dependent Translation Initiation +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF2S2 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF2S1 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF1AX +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF3K +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF3H +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF3E +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF3F +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF3J +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF3G +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF3C +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF3A +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF3I +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF3D +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex EIF3B +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS23 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS16 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS12 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS29 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPSA +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS21 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS27A +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS20 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS15 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS24 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS9 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS10 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS28 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS2 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS19 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS4X +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS18 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS8 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS3 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS4Y1 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS25 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS14 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS17 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS26 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS11 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS5 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex FAU +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS15A +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS13 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS6 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS3A +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS7 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex RPS27 +PWCOMMONS Formation of the ternary complex, and subsequently, the 43S complex +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF4H +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF4B +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF4E +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF4G1 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF4A2 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF2S3 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF2S2 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF2S1 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF3K +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF3H +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF3E +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF3F +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF3J +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF3G +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF3C +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF3A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF3I +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF3D +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF3B +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS23 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS16 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS12 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS29 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPSA +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS21 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS27A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS20 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS15 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS24 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS9 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS10 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS28 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS2 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS19 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS4X +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS18 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS8 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS3 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS4Y1 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS25 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS14 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS17 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS26 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS11 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS5 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S FAU +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS15A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS13 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS6 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS3A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS7 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPS27 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL27A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL15 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL11 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL29 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL30 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL8 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL22 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL28 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL7A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL35A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL31 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL26L1 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL26 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL18A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL14 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPLP2 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL10 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL34 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL37 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL3L +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL32 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL36 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPLP1 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL23A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL24 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL6 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL18 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL5 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL23 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL19 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL41 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL7 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL13A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL27 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL17 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL3 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL10A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL21 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL4 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL35 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL13 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL39 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL38 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL36A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL9 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPLP0 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S UBA52 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL37A +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S RPL12 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EEF1A1 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF2B5 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF2B1 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF2B3 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF2B4 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF2B2 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF4EBP1 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S ETF1 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S GSPT2 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S PABPC1 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EEF1G +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EEF1D +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EEF1B2 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF5 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EIF5B +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S EEF2 +PWCOMMONS Activation of the mRNA upon binding of the cap-binding complex and eIFs, and subsequent binding to 43S +PWCOMMONS Ribosomal scanning and start codon recognition RPS16 +PWCOMMONS Ribosomal scanning and start codon recognition RPS12 +PWCOMMONS Ribosomal scanning and start codon recognition RPS29 +PWCOMMONS Ribosomal scanning and start codon recognition RPSA +PWCOMMONS Ribosomal scanning and start codon recognition RPS21 +PWCOMMONS Ribosomal scanning and start codon recognition RPS27A +PWCOMMONS Ribosomal scanning and start codon recognition RPS20 +PWCOMMONS Ribosomal scanning and start codon recognition RPS15 +PWCOMMONS Ribosomal scanning and start codon recognition RPS24 +PWCOMMONS Ribosomal scanning and start codon recognition RPS9 +PWCOMMONS Ribosomal scanning and start codon recognition RPS10 +PWCOMMONS Ribosomal scanning and start codon recognition RPS28 +PWCOMMONS Ribosomal scanning and start codon recognition RPS2 +PWCOMMONS Ribosomal scanning and start codon recognition RPS19 +PWCOMMONS Ribosomal scanning and start codon recognition RPS4X +PWCOMMONS Ribosomal scanning and start codon recognition RPS18 +PWCOMMONS Ribosomal scanning and start codon recognition RPS8 +PWCOMMONS Ribosomal scanning and start codon recognition RPS3 +PWCOMMONS Ribosomal scanning and start codon recognition RPS4Y1 +PWCOMMONS Ribosomal scanning and start codon recognition RPS25 +PWCOMMONS Ribosomal scanning and start codon recognition RPS14 +PWCOMMONS Ribosomal scanning and start codon recognition RPS17 +PWCOMMONS Ribosomal scanning and start codon recognition RPS26 +PWCOMMONS Ribosomal scanning and start codon recognition RPS11 +PWCOMMONS Ribosomal scanning and start codon recognition RPS5 +PWCOMMONS Ribosomal scanning and start codon recognition FAU +PWCOMMONS Ribosomal scanning and start codon recognition RPS15A +PWCOMMONS Ribosomal scanning and start codon recognition RPS13 +PWCOMMONS Ribosomal scanning and start codon recognition RPS6 +PWCOMMONS Ribosomal scanning and start codon recognition RPS3A +PWCOMMONS Ribosomal scanning and start codon recognition RPS7 +PWCOMMONS Ribosomal scanning and start codon recognition RPS27 +PWCOMMONS Ribosomal scanning and start codon recognition RPL27A +PWCOMMONS Ribosomal scanning and start codon recognition RPL15 +PWCOMMONS Ribosomal scanning and start codon recognition RPL11 +PWCOMMONS Ribosomal scanning and start codon recognition RPL29 +PWCOMMONS Ribosomal scanning and start codon recognition RPL30 +PWCOMMONS Ribosomal scanning and start codon recognition RPL8 +PWCOMMONS Ribosomal scanning and start codon recognition RPL22 +PWCOMMONS Ribosomal scanning and start codon recognition RPL28 +PWCOMMONS Ribosomal scanning and start codon recognition RPL7A +PWCOMMONS Ribosomal scanning and start codon recognition RPL35A +PWCOMMONS Ribosomal scanning and start codon recognition RPL31 +PWCOMMONS Ribosomal scanning and start codon recognition RPL26L1 +PWCOMMONS Ribosomal scanning and start codon recognition RPL26 +PWCOMMONS Ribosomal scanning and start codon recognition RPL18A +PWCOMMONS Ribosomal scanning and start codon recognition RPL14 +PWCOMMONS Ribosomal scanning and start codon recognition RPLP2 +PWCOMMONS Ribosomal scanning and start codon recognition RPL10 +PWCOMMONS Ribosomal scanning and start codon recognition RPL34 +PWCOMMONS Ribosomal scanning and start codon recognition RPL37 +PWCOMMONS Ribosomal scanning and start codon recognition RPL3L +PWCOMMONS Ribosomal scanning and start codon recognition RPL32 +PWCOMMONS Ribosomal scanning and start codon recognition RPL36 +PWCOMMONS Ribosomal scanning and start codon recognition RPLP1 +PWCOMMONS Ribosomal scanning and start codon recognition RPL23A +PWCOMMONS Ribosomal scanning and start codon recognition RPL24 +PWCOMMONS Ribosomal scanning and start codon recognition RPL6 +PWCOMMONS Ribosomal scanning and start codon recognition RPL18 +PWCOMMONS Ribosomal scanning and start codon recognition RPL5 +PWCOMMONS Ribosomal scanning and start codon recognition RPL23 +PWCOMMONS Ribosomal scanning and start codon recognition RPL19 +PWCOMMONS Ribosomal scanning and start codon recognition RPL41 +PWCOMMONS Ribosomal scanning and start codon recognition RPL7 +PWCOMMONS Ribosomal scanning and start codon recognition RPL13A +PWCOMMONS Ribosomal scanning and start codon recognition RPL27 +PWCOMMONS Ribosomal scanning and start codon recognition RPL17 +PWCOMMONS Ribosomal scanning and start codon recognition RPL3 +PWCOMMONS Ribosomal scanning and start codon recognition RPL10A +PWCOMMONS Ribosomal scanning and start codon recognition RPL21 +PWCOMMONS Ribosomal scanning and start codon recognition RPL4 +PWCOMMONS Ribosomal scanning and start codon recognition RPL35 +PWCOMMONS Ribosomal scanning and start codon recognition RPL13 +PWCOMMONS Ribosomal scanning and start codon recognition RPL39 +PWCOMMONS Ribosomal scanning and start codon recognition RPL38 +PWCOMMONS Ribosomal scanning and start codon recognition RPL36A +PWCOMMONS Ribosomal scanning and start codon recognition RPL9 +PWCOMMONS Ribosomal scanning and start codon recognition RPLP0 +PWCOMMONS Ribosomal scanning and start codon recognition UBA52 +PWCOMMONS Ribosomal scanning and start codon recognition RPL37A +PWCOMMONS Ribosomal scanning and start codon recognition RPL12 +PWCOMMONS Ribosomal scanning and start codon recognition EEF1A1 +PWCOMMONS Ribosomal scanning and start codon recognition EIF2B5 +PWCOMMONS Ribosomal scanning and start codon recognition EIF2B1 +PWCOMMONS Ribosomal scanning and start codon recognition EIF2B3 +PWCOMMONS Ribosomal scanning and start codon recognition EIF2B4 +PWCOMMONS Ribosomal scanning and start codon recognition EIF2B2 +PWCOMMONS Ribosomal scanning and start codon recognition ETF1 +PWCOMMONS Ribosomal scanning and start codon recognition GSPT2 +PWCOMMONS Ribosomal scanning and start codon recognition EEF1G +PWCOMMONS Ribosomal scanning and start codon recognition EEF1D +PWCOMMONS Ribosomal scanning and start codon recognition EEF1B2 +PWCOMMONS Ribosomal scanning and start codon recognition EIF2S3 +PWCOMMONS Ribosomal scanning and start codon recognition EIF2S2 +PWCOMMONS Ribosomal scanning and start codon recognition EIF2S1 +PWCOMMONS Ribosomal scanning and start codon recognition EIF5 +PWCOMMONS Ribosomal scanning and start codon recognition EIF4H +PWCOMMONS Ribosomal scanning and start codon recognition EIF4B +PWCOMMONS Ribosomal scanning and start codon recognition EIF4E +PWCOMMONS Ribosomal scanning and start codon recognition EIF4G1 +PWCOMMONS Ribosomal scanning and start codon recognition EIF4A2 +PWCOMMONS Ribosomal scanning and start codon recognition EIF1AX +PWCOMMONS Ribosomal scanning and start codon recognition EIF3K +PWCOMMONS Ribosomal scanning and start codon recognition EIF3H +PWCOMMONS Ribosomal scanning and start codon recognition EIF3E +PWCOMMONS Ribosomal scanning and start codon recognition EIF3F +PWCOMMONS Ribosomal scanning and start codon recognition EIF3J +PWCOMMONS Ribosomal scanning and start codon recognition EIF3G +PWCOMMONS Ribosomal scanning and start codon recognition EIF3C +PWCOMMONS Ribosomal scanning and start codon recognition EIF3A +PWCOMMONS Ribosomal scanning and start codon recognition EIF3I +PWCOMMONS Ribosomal scanning and start codon recognition EIF3D +PWCOMMONS Ribosomal scanning and start codon recognition EIF3B +PWCOMMONS Ribosomal scanning and start codon recognition EIF5B +PWCOMMONS Ribosomal scanning and start codon recognition EEF2 +PWCOMMONS Ribosomal scanning and start codon recognition +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS16 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS12 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS29 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPSA +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS21 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS27A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS20 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS15 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS24 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS9 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS10 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS28 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS2 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS19 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS4X +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS18 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS8 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS3 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS4Y1 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS25 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS14 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS17 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS26 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS11 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS5 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit FAU +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS15A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS13 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS6 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS3A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS7 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPS27 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL27A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL15 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL11 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL29 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL30 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL8 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL22 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL28 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL7A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL35A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL31 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL26L1 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL26 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL18A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL14 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPLP2 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL10 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL34 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL37 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL3L +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL32 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL36 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPLP1 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL23A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL24 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL6 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL18 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL5 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL23 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL19 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL41 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL7 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL13A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL27 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL17 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL3 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL10A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL21 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL4 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL35 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL13 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL39 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL38 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL36A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL9 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPLP0 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit UBA52 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL37A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit RPL12 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EEF1A1 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF2B5 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF2B1 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF2B3 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF2B4 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF2B2 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF2S3 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF2S2 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF2S1 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF1AX +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF3K +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF3H +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF3E +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF3F +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF3J +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF3G +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF3C +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF3A +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF3I +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF3D +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF3B +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit ETF1 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit GSPT2 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EEF1G +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EEF1D +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EEF1B2 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF5B +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF5 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF4E +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF4H +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF4B +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF4G1 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EIF4A2 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit EEF2 +PWCOMMONS GTP hydrolysis and joining of the 60S ribosomal subunit +PWCOMMONS Formation of a pool of free 40S subunits RPS16 +PWCOMMONS Formation of a pool of free 40S subunits RPS12 +PWCOMMONS Formation of a pool of free 40S subunits RPS29 +PWCOMMONS Formation of a pool of free 40S subunits RPSA +PWCOMMONS Formation of a pool of free 40S subunits RPS21 +PWCOMMONS Formation of a pool of free 40S subunits RPS27A +PWCOMMONS Formation of a pool of free 40S subunits RPS20 +PWCOMMONS Formation of a pool of free 40S subunits RPS15 +PWCOMMONS Formation of a pool of free 40S subunits RPS24 +PWCOMMONS Formation of a pool of free 40S subunits RPS9 +PWCOMMONS Formation of a pool of free 40S subunits RPS10 +PWCOMMONS Formation of a pool of free 40S subunits RPS28 +PWCOMMONS Formation of a pool of free 40S subunits RPS2 +PWCOMMONS Formation of a pool of free 40S subunits RPS19 +PWCOMMONS Formation of a pool of free 40S subunits RPS4X +PWCOMMONS Formation of a pool of free 40S subunits RPS18 +PWCOMMONS Formation of a pool of free 40S subunits RPS8 +PWCOMMONS Formation of a pool of free 40S subunits RPS3 +PWCOMMONS Formation of a pool of free 40S subunits RPS4Y1 +PWCOMMONS Formation of a pool of free 40S subunits RPS25 +PWCOMMONS Formation of a pool of free 40S subunits RPS14 +PWCOMMONS Formation of a pool of free 40S subunits RPS17 +PWCOMMONS Formation of a pool of free 40S subunits RPS26 +PWCOMMONS Formation of a pool of free 40S subunits RPS11 +PWCOMMONS Formation of a pool of free 40S subunits RPS5 +PWCOMMONS Formation of a pool of free 40S subunits FAU +PWCOMMONS Formation of a pool of free 40S subunits RPS15A +PWCOMMONS Formation of a pool of free 40S subunits RPS13 +PWCOMMONS Formation of a pool of free 40S subunits RPS6 +PWCOMMONS Formation of a pool of free 40S subunits RPS3A +PWCOMMONS Formation of a pool of free 40S subunits RPS7 +PWCOMMONS Formation of a pool of free 40S subunits RPS27 +PWCOMMONS Formation of a pool of free 40S subunits RPL27A +PWCOMMONS Formation of a pool of free 40S subunits RPL15 +PWCOMMONS Formation of a pool of free 40S subunits RPL11 +PWCOMMONS Formation of a pool of free 40S subunits RPL29 +PWCOMMONS Formation of a pool of free 40S subunits RPL30 +PWCOMMONS Formation of a pool of free 40S subunits RPL8 +PWCOMMONS Formation of a pool of free 40S subunits RPL22 +PWCOMMONS Formation of a pool of free 40S subunits RPL28 +PWCOMMONS Formation of a pool of free 40S subunits RPL7A +PWCOMMONS Formation of a pool of free 40S subunits RPL35A +PWCOMMONS Formation of a pool of free 40S subunits RPL31 +PWCOMMONS Formation of a pool of free 40S subunits RPL26L1 +PWCOMMONS Formation of a pool of free 40S subunits RPL26 +PWCOMMONS Formation of a pool of free 40S subunits RPL18A +PWCOMMONS Formation of a pool of free 40S subunits RPL14 +PWCOMMONS Formation of a pool of free 40S subunits RPLP2 +PWCOMMONS Formation of a pool of free 40S subunits RPL10 +PWCOMMONS Formation of a pool of free 40S subunits RPL34 +PWCOMMONS Formation of a pool of free 40S subunits RPL37 +PWCOMMONS Formation of a pool of free 40S subunits RPL3L +PWCOMMONS Formation of a pool of free 40S subunits RPL32 +PWCOMMONS Formation of a pool of free 40S subunits RPL36 +PWCOMMONS Formation of a pool of free 40S subunits RPLP1 +PWCOMMONS Formation of a pool of free 40S subunits RPL23A +PWCOMMONS Formation of a pool of free 40S subunits RPL24 +PWCOMMONS Formation of a pool of free 40S subunits RPL6 +PWCOMMONS Formation of a pool of free 40S subunits RPL18 +PWCOMMONS Formation of a pool of free 40S subunits RPL5 +PWCOMMONS Formation of a pool of free 40S subunits RPL23 +PWCOMMONS Formation of a pool of free 40S subunits RPL19 +PWCOMMONS Formation of a pool of free 40S subunits RPL41 +PWCOMMONS Formation of a pool of free 40S subunits RPL7 +PWCOMMONS Formation of a pool of free 40S subunits RPL13A +PWCOMMONS Formation of a pool of free 40S subunits RPL27 +PWCOMMONS Formation of a pool of free 40S subunits RPL17 +PWCOMMONS Formation of a pool of free 40S subunits RPL3 +PWCOMMONS Formation of a pool of free 40S subunits RPL10A +PWCOMMONS Formation of a pool of free 40S subunits RPL21 +PWCOMMONS Formation of a pool of free 40S subunits RPL4 +PWCOMMONS Formation of a pool of free 40S subunits RPL35 +PWCOMMONS Formation of a pool of free 40S subunits RPL13 +PWCOMMONS Formation of a pool of free 40S subunits RPL39 +PWCOMMONS Formation of a pool of free 40S subunits RPL38 +PWCOMMONS Formation of a pool of free 40S subunits RPL36A +PWCOMMONS Formation of a pool of free 40S subunits RPL9 +PWCOMMONS Formation of a pool of free 40S subunits RPLP0 +PWCOMMONS Formation of a pool of free 40S subunits UBA52 +PWCOMMONS Formation of a pool of free 40S subunits RPL37A +PWCOMMONS Formation of a pool of free 40S subunits RPL12 +PWCOMMONS Formation of a pool of free 40S subunits EEF1A1 +PWCOMMONS Formation of a pool of free 40S subunits EIF2B5 +PWCOMMONS Formation of a pool of free 40S subunits EIF2B1 +PWCOMMONS Formation of a pool of free 40S subunits EIF2B3 +PWCOMMONS Formation of a pool of free 40S subunits EIF2B4 +PWCOMMONS Formation of a pool of free 40S subunits EIF2B2 +PWCOMMONS Formation of a pool of free 40S subunits ETF1 +PWCOMMONS Formation of a pool of free 40S subunits GSPT2 +PWCOMMONS Formation of a pool of free 40S subunits EEF1G +PWCOMMONS Formation of a pool of free 40S subunits EEF1D +PWCOMMONS Formation of a pool of free 40S subunits EEF1B2 +PWCOMMONS Formation of a pool of free 40S subunits EIF2S3 +PWCOMMONS Formation of a pool of free 40S subunits EIF2S2 +PWCOMMONS Formation of a pool of free 40S subunits EIF2S1 +PWCOMMONS Formation of a pool of free 40S subunits EIF5 +PWCOMMONS Formation of a pool of free 40S subunits EIF4H +PWCOMMONS Formation of a pool of free 40S subunits EIF4B +PWCOMMONS Formation of a pool of free 40S subunits EIF4E +PWCOMMONS Formation of a pool of free 40S subunits EIF4G1 +PWCOMMONS Formation of a pool of free 40S subunits EIF4A2 +PWCOMMONS Formation of a pool of free 40S subunits EIF1AX +PWCOMMONS Formation of a pool of free 40S subunits EIF3K +PWCOMMONS Formation of a pool of free 40S subunits EIF3H +PWCOMMONS Formation of a pool of free 40S subunits EIF3E +PWCOMMONS Formation of a pool of free 40S subunits EIF3F +PWCOMMONS Formation of a pool of free 40S subunits EIF3J +PWCOMMONS Formation of a pool of free 40S subunits EIF3G +PWCOMMONS Formation of a pool of free 40S subunits EIF3C +PWCOMMONS Formation of a pool of free 40S subunits EIF3A +PWCOMMONS Formation of a pool of free 40S subunits EIF3I +PWCOMMONS Formation of a pool of free 40S subunits EIF3D +PWCOMMONS Formation of a pool of free 40S subunits EIF3B +PWCOMMONS Formation of a pool of free 40S subunits EIF5B +PWCOMMONS Formation of a pool of free 40S subunits EEF2 +PWCOMMONS Formation of a pool of free 40S subunits EIF4EBP1 +PWCOMMONS Formation of a pool of free 40S subunits PABPC1 +PWCOMMONS Formation of a pool of free 40S subunits +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter GTF3C2 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter GTF3C3 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter GTF3C4 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter GTF3C5 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter GTF3C1 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter POLR3B +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter POLR3E +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter POLR3D +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter LZTS1 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter POLR2L +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter POLR2K +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter POLR2H +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter POLR3H +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter POLR2F +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter POLR3F +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter POLR3A +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter POLR2E +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter BRF1 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter BDP1 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter TBP +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 1 Promoter +PWCOMMONS Platelet activation triggers COL1A2 +PWCOMMONS Platelet activation triggers GP6 +PWCOMMONS Platelet activation triggers FCER1G +PWCOMMONS Platelet activation triggers SYK +PWCOMMONS Platelet activation triggers PLCG2 +PWCOMMONS Platelet activation triggers F2R +PWCOMMONS Platelet activation triggers F2RL3 +PWCOMMONS Platelet activation triggers F2RL2 +PWCOMMONS Platelet activation triggers F2 +PWCOMMONS Platelet activation triggers GNAQ +PWCOMMONS Platelet activation triggers ARHGEF1 +PWCOMMONS Platelet activation triggers GNA13 +PWCOMMONS Platelet activation triggers PRKCA +PWCOMMONS Platelet activation triggers MARCKS +PWCOMMONS Platelet activation triggers +PWCOMMONS Collagen-mediated activation cascade COL1A2 +PWCOMMONS Collagen-mediated activation cascade GP6 +PWCOMMONS Collagen-mediated activation cascade FCER1G +PWCOMMONS Collagen-mediated activation cascade SYK +PWCOMMONS Collagen-mediated activation cascade PLCG2 +PWCOMMONS Collagen-mediated activation cascade +PWCOMMONS Histamine receptors PFKFB1 +PWCOMMONS Histamine receptors MLXIPL +PWCOMMONS Histamine receptors HRH1 +PWCOMMONS Histamine receptors CREB1 +PWCOMMONS Histamine receptors LIPE +PWCOMMONS Histamine receptors GNAS +PWCOMMONS Histamine receptors HRH2 +PWCOMMONS Histamine receptors FABP4 +PWCOMMONS Histamine receptors +PWCOMMONS AKT phosphorylates targets in the cytosol PDPK1 +PWCOMMONS AKT phosphorylates targets in the cytosol CASP9 +PWCOMMONS AKT phosphorylates targets in the cytosol AKT1S1 +PWCOMMONS AKT phosphorylates targets in the cytosol MDM2 +PWCOMMONS AKT phosphorylates targets in the cytosol BAD +PWCOMMONS AKT phosphorylates targets in the cytosol +PWCOMMONS RNA Polymerase II Transcription Elongation TCEA1 +PWCOMMONS RNA Polymerase II Transcription Elongation ELL +PWCOMMONS RNA Polymerase II Transcription Elongation TCEB3 +PWCOMMONS RNA Polymerase II Transcription Elongation TCEB1 +PWCOMMONS RNA Polymerase II Transcription Elongation TCEB2 +PWCOMMONS RNA Polymerase II Transcription Elongation SSRP1 +PWCOMMONS RNA Polymerase II Transcription Elongation SUPT16H +PWCOMMONS RNA Polymerase II Transcription Elongation CCNT2 +PWCOMMONS RNA Polymerase II Transcription Elongation CDK9 +PWCOMMONS RNA Polymerase II Transcription Elongation CCNT1 +PWCOMMONS RNA Polymerase II Transcription Elongation POLR2G +PWCOMMONS RNA Polymerase II Transcription Elongation POLR2B +PWCOMMONS RNA Polymerase II Transcription Elongation POLR2L +PWCOMMONS RNA Polymerase II Transcription Elongation POLR2A +PWCOMMONS RNA Polymerase II Transcription Elongation POLR2K +PWCOMMONS RNA Polymerase II Transcription Elongation POLR2H +PWCOMMONS RNA Polymerase II Transcription Elongation POLR2D +PWCOMMONS RNA Polymerase II Transcription Elongation POLR2C +PWCOMMONS RNA Polymerase II Transcription Elongation POLR2I +PWCOMMONS RNA Polymerase II Transcription Elongation POLR2F +PWCOMMONS RNA Polymerase II Transcription Elongation POLR2J +PWCOMMONS RNA Polymerase II Transcription Elongation POLR2E +PWCOMMONS RNA Polymerase II Transcription Elongation GTF2F1 +PWCOMMONS RNA Polymerase II Transcription Elongation GTF2F2 +PWCOMMONS RNA Polymerase II Transcription Elongation SUPT4H1 +PWCOMMONS RNA Polymerase II Transcription Elongation TH1L +PWCOMMONS RNA Polymerase II Transcription Elongation WHSC2 +PWCOMMONS RNA Polymerase II Transcription Elongation RDBP +PWCOMMONS RNA Polymerase II Transcription Elongation COBRA1 +PWCOMMONS RNA Polymerase II Transcription Elongation NCBP2 +PWCOMMONS RNA Polymerase II Transcription Elongation NCBP1 +PWCOMMONS RNA Polymerase II Transcription Elongation ERCC2 +PWCOMMONS RNA Polymerase II Transcription Elongation GTF2H3 +PWCOMMONS RNA Polymerase II Transcription Elongation GTF2H4 +PWCOMMONS RNA Polymerase II Transcription Elongation GTF2H2 +PWCOMMONS RNA Polymerase II Transcription Elongation ERCC3 +PWCOMMONS RNA Polymerase II Transcription Elongation GTF2H1 +PWCOMMONS RNA Polymerase II Transcription Elongation CCNH +PWCOMMONS RNA Polymerase II Transcription Elongation CDK7 +PWCOMMONS RNA Polymerase II Transcription Elongation MNAT1 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF1AX +PWCOMMONS RNA Polymerase II Transcription Elongation EIF4H +PWCOMMONS RNA Polymerase II Transcription Elongation EIF4B +PWCOMMONS RNA Polymerase II Transcription Elongation EIF4E +PWCOMMONS RNA Polymerase II Transcription Elongation EIF4G1 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF4A2 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF2S3 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF2S2 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF2S1 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF3K +PWCOMMONS RNA Polymerase II Transcription Elongation EIF3H +PWCOMMONS RNA Polymerase II Transcription Elongation EIF3E +PWCOMMONS RNA Polymerase II Transcription Elongation EIF3F +PWCOMMONS RNA Polymerase II Transcription Elongation EIF3J +PWCOMMONS RNA Polymerase II Transcription Elongation EIF3G +PWCOMMONS RNA Polymerase II Transcription Elongation EIF3C +PWCOMMONS RNA Polymerase II Transcription Elongation EIF3A +PWCOMMONS RNA Polymerase II Transcription Elongation EIF3I +PWCOMMONS RNA Polymerase II Transcription Elongation EIF3D +PWCOMMONS RNA Polymerase II Transcription Elongation EIF3B +PWCOMMONS RNA Polymerase II Transcription Elongation RPS23 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS16 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS12 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS29 +PWCOMMONS RNA Polymerase II Transcription Elongation RPSA +PWCOMMONS RNA Polymerase II Transcription Elongation RPS21 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS27A +PWCOMMONS RNA Polymerase II Transcription Elongation RPS20 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS15 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS24 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS9 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS10 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS28 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS2 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS19 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS4X +PWCOMMONS RNA Polymerase II Transcription Elongation RPS18 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS8 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS3 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS4Y1 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS25 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS14 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS17 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS26 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS11 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS5 +PWCOMMONS RNA Polymerase II Transcription Elongation FAU +PWCOMMONS RNA Polymerase II Transcription Elongation RPS15A +PWCOMMONS RNA Polymerase II Transcription Elongation RPS13 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS6 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS3A +PWCOMMONS RNA Polymerase II Transcription Elongation RPS7 +PWCOMMONS RNA Polymerase II Transcription Elongation RPS27 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP153 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP85 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP35 +PWCOMMONS RNA Polymerase II Transcription Elongation AAAS +PWCOMMONS RNA Polymerase II Transcription Elongation NUP50 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP43 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP205 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP93 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP88 +PWCOMMONS RNA Polymerase II Transcription Elongation NUPL2 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP210 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP155 +PWCOMMONS RNA Polymerase II Transcription Elongation RANBP2 +PWCOMMONS RNA Polymerase II Transcription Elongation RAE1 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP188 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP214 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP54 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP62 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP107 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP133 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP160 +PWCOMMONS RNA Polymerase II Transcription Elongation NUP37 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL27A +PWCOMMONS RNA Polymerase II Transcription Elongation RPL15 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL11 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL29 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL30 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL8 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL22 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL28 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL7A +PWCOMMONS RNA Polymerase II Transcription Elongation RPL35A +PWCOMMONS RNA Polymerase II Transcription Elongation RPL31 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL26L1 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL26 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL18A +PWCOMMONS RNA Polymerase II Transcription Elongation RPL14 +PWCOMMONS RNA Polymerase II Transcription Elongation RPLP2 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL10 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL34 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL37 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL3L +PWCOMMONS RNA Polymerase II Transcription Elongation RPL32 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL36 +PWCOMMONS RNA Polymerase II Transcription Elongation RPLP1 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL23A +PWCOMMONS RNA Polymerase II Transcription Elongation RPL24 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL6 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL18 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL5 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL23 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL19 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL41 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL7 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL13A +PWCOMMONS RNA Polymerase II Transcription Elongation RPL27 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL17 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL3 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL10A +PWCOMMONS RNA Polymerase II Transcription Elongation RPL21 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL4 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL35 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL13 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL39 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL38 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL36A +PWCOMMONS RNA Polymerase II Transcription Elongation RPL9 +PWCOMMONS RNA Polymerase II Transcription Elongation RPLP0 +PWCOMMONS RNA Polymerase II Transcription Elongation UBA52 +PWCOMMONS RNA Polymerase II Transcription Elongation RPL37A +PWCOMMONS RNA Polymerase II Transcription Elongation RPL12 +PWCOMMONS RNA Polymerase II Transcription Elongation EEF1A1 +PWCOMMONS RNA Polymerase II Transcription Elongation PCF11 +PWCOMMONS RNA Polymerase II Transcription Elongation CLP1 +PWCOMMONS RNA Polymerase II Transcription Elongation CPSF7 +PWCOMMONS RNA Polymerase II Transcription Elongation NUDT21 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF2B5 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF2B1 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF2B3 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF2B4 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF2B2 +PWCOMMONS RNA Polymerase II Transcription Elongation PABPN1 +PWCOMMONS RNA Polymerase II Transcription Elongation PAPOLA +PWCOMMONS RNA Polymerase II Transcription Elongation CPSF2 +PWCOMMONS RNA Polymerase II Transcription Elongation CPSF1 +PWCOMMONS RNA Polymerase II Transcription Elongation CPSF3 +PWCOMMONS RNA Polymerase II Transcription Elongation CSTF2 +PWCOMMONS RNA Polymerase II Transcription Elongation CSTF1 +PWCOMMONS RNA Polymerase II Transcription Elongation CSTF3 +PWCOMMONS RNA Polymerase II Transcription Elongation ETF1 +PWCOMMONS RNA Polymerase II Transcription Elongation GSPT2 +PWCOMMONS RNA Polymerase II Transcription Elongation PABPC1 +PWCOMMONS RNA Polymerase II Transcription Elongation SFRS2 +PWCOMMONS RNA Polymerase II Transcription Elongation CDC40 +PWCOMMONS RNA Polymerase II Transcription Elongation SFRS3 +PWCOMMONS RNA Polymerase II Transcription Elongation SFRS11 +PWCOMMONS RNA Polymerase II Transcription Elongation U2AF2 +PWCOMMONS RNA Polymerase II Transcription Elongation SFRS9 +PWCOMMONS RNA Polymerase II Transcription Elongation SFRS5 +PWCOMMONS RNA Polymerase II Transcription Elongation SFRS7 +PWCOMMONS RNA Polymerase II Transcription Elongation SFRS4 +PWCOMMONS RNA Polymerase II Transcription Elongation SFRS6 +PWCOMMONS RNA Polymerase II Transcription Elongation DHX38 +PWCOMMONS RNA Polymerase II Transcription Elongation U2AF1 +PWCOMMONS RNA Polymerase II Transcription Elongation SFRS1 +PWCOMMONS RNA Polymerase II Transcription Elongation RNPS1 +PWCOMMONS RNA Polymerase II Transcription Elongation UPF3B +PWCOMMONS RNA Polymerase II Transcription Elongation SRRM1 +PWCOMMONS RNA Polymerase II Transcription Elongation THOC4 +PWCOMMONS RNA Polymerase II Transcription Elongation RBM8A +PWCOMMONS RNA Polymerase II Transcription Elongation MAGOH +PWCOMMONS RNA Polymerase II Transcription Elongation EEF1G +PWCOMMONS RNA Polymerase II Transcription Elongation EEF1D +PWCOMMONS RNA Polymerase II Transcription Elongation EEF1B2 +PWCOMMONS RNA Polymerase II Transcription Elongation NXF1 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF5 +PWCOMMONS RNA Polymerase II Transcription Elongation EIF5B +PWCOMMONS RNA Polymerase II Transcription Elongation EEF2 +PWCOMMONS RNA Polymerase II Transcription Elongation +PWCOMMONS Formation of RNA Pol II elongation complex POLR2G +PWCOMMONS Formation of RNA Pol II elongation complex POLR2B +PWCOMMONS Formation of RNA Pol II elongation complex POLR2L +PWCOMMONS Formation of RNA Pol II elongation complex POLR2A +PWCOMMONS Formation of RNA Pol II elongation complex POLR2K +PWCOMMONS Formation of RNA Pol II elongation complex POLR2H +PWCOMMONS Formation of RNA Pol II elongation complex POLR2D +PWCOMMONS Formation of RNA Pol II elongation complex POLR2C +PWCOMMONS Formation of RNA Pol II elongation complex POLR2I +PWCOMMONS Formation of RNA Pol II elongation complex POLR2F +PWCOMMONS Formation of RNA Pol II elongation complex POLR2J +PWCOMMONS Formation of RNA Pol II elongation complex POLR2E +PWCOMMONS Formation of RNA Pol II elongation complex GTF2F1 +PWCOMMONS Formation of RNA Pol II elongation complex GTF2F2 +PWCOMMONS Formation of RNA Pol II elongation complex SUPT4H1 +PWCOMMONS Formation of RNA Pol II elongation complex TH1L +PWCOMMONS Formation of RNA Pol II elongation complex WHSC2 +PWCOMMONS Formation of RNA Pol II elongation complex RDBP +PWCOMMONS Formation of RNA Pol II elongation complex COBRA1 +PWCOMMONS Formation of RNA Pol II elongation complex NCBP2 +PWCOMMONS Formation of RNA Pol II elongation complex NCBP1 +PWCOMMONS Formation of RNA Pol II elongation complex CCNT2 +PWCOMMONS Formation of RNA Pol II elongation complex CDK9 +PWCOMMONS Formation of RNA Pol II elongation complex CCNT1 +PWCOMMONS Formation of RNA Pol II elongation complex TCEA1 +PWCOMMONS Formation of RNA Pol II elongation complex ELL +PWCOMMONS Formation of RNA Pol II elongation complex TCEB3 +PWCOMMONS Formation of RNA Pol II elongation complex TCEB1 +PWCOMMONS Formation of RNA Pol II elongation complex TCEB2 +PWCOMMONS Formation of RNA Pol II elongation complex SSRP1 +PWCOMMONS Formation of RNA Pol II elongation complex SUPT16H +PWCOMMONS Formation of RNA Pol II elongation complex EIF1AX +PWCOMMONS Formation of RNA Pol II elongation complex EIF4H +PWCOMMONS Formation of RNA Pol II elongation complex EIF4B +PWCOMMONS Formation of RNA Pol II elongation complex EIF4E +PWCOMMONS Formation of RNA Pol II elongation complex EIF4G1 +PWCOMMONS Formation of RNA Pol II elongation complex EIF4A2 +PWCOMMONS Formation of RNA Pol II elongation complex EIF2S3 +PWCOMMONS Formation of RNA Pol II elongation complex EIF2S2 +PWCOMMONS Formation of RNA Pol II elongation complex EIF2S1 +PWCOMMONS Formation of RNA Pol II elongation complex EIF3K +PWCOMMONS Formation of RNA Pol II elongation complex EIF3H +PWCOMMONS Formation of RNA Pol II elongation complex EIF3E +PWCOMMONS Formation of RNA Pol II elongation complex EIF3F +PWCOMMONS Formation of RNA Pol II elongation complex EIF3J +PWCOMMONS Formation of RNA Pol II elongation complex EIF3G +PWCOMMONS Formation of RNA Pol II elongation complex EIF3C +PWCOMMONS Formation of RNA Pol II elongation complex EIF3A +PWCOMMONS Formation of RNA Pol II elongation complex EIF3I +PWCOMMONS Formation of RNA Pol II elongation complex EIF3D +PWCOMMONS Formation of RNA Pol II elongation complex EIF3B +PWCOMMONS Formation of RNA Pol II elongation complex RPS23 +PWCOMMONS Formation of RNA Pol II elongation complex RPS16 +PWCOMMONS Formation of RNA Pol II elongation complex RPS12 +PWCOMMONS Formation of RNA Pol II elongation complex RPS29 +PWCOMMONS Formation of RNA Pol II elongation complex RPSA +PWCOMMONS Formation of RNA Pol II elongation complex RPS21 +PWCOMMONS Formation of RNA Pol II elongation complex RPS27A +PWCOMMONS Formation of RNA Pol II elongation complex RPS20 +PWCOMMONS Formation of RNA Pol II elongation complex RPS15 +PWCOMMONS Formation of RNA Pol II elongation complex RPS24 +PWCOMMONS Formation of RNA Pol II elongation complex RPS9 +PWCOMMONS Formation of RNA Pol II elongation complex RPS10 +PWCOMMONS Formation of RNA Pol II elongation complex RPS28 +PWCOMMONS Formation of RNA Pol II elongation complex RPS2 +PWCOMMONS Formation of RNA Pol II elongation complex RPS19 +PWCOMMONS Formation of RNA Pol II elongation complex RPS4X +PWCOMMONS Formation of RNA Pol II elongation complex RPS18 +PWCOMMONS Formation of RNA Pol II elongation complex RPS8 +PWCOMMONS Formation of RNA Pol II elongation complex RPS3 +PWCOMMONS Formation of RNA Pol II elongation complex RPS4Y1 +PWCOMMONS Formation of RNA Pol II elongation complex RPS25 +PWCOMMONS Formation of RNA Pol II elongation complex RPS14 +PWCOMMONS Formation of RNA Pol II elongation complex RPS17 +PWCOMMONS Formation of RNA Pol II elongation complex RPS26 +PWCOMMONS Formation of RNA Pol II elongation complex RPS11 +PWCOMMONS Formation of RNA Pol II elongation complex RPS5 +PWCOMMONS Formation of RNA Pol II elongation complex FAU +PWCOMMONS Formation of RNA Pol II elongation complex RPS15A +PWCOMMONS Formation of RNA Pol II elongation complex RPS13 +PWCOMMONS Formation of RNA Pol II elongation complex RPS6 +PWCOMMONS Formation of RNA Pol II elongation complex RPS3A +PWCOMMONS Formation of RNA Pol II elongation complex RPS7 +PWCOMMONS Formation of RNA Pol II elongation complex RPS27 +PWCOMMONS Formation of RNA Pol II elongation complex NUP153 +PWCOMMONS Formation of RNA Pol II elongation complex NUP85 +PWCOMMONS Formation of RNA Pol II elongation complex NUP35 +PWCOMMONS Formation of RNA Pol II elongation complex AAAS +PWCOMMONS Formation of RNA Pol II elongation complex NUP50 +PWCOMMONS Formation of RNA Pol II elongation complex NUP43 +PWCOMMONS Formation of RNA Pol II elongation complex NUP205 +PWCOMMONS Formation of RNA Pol II elongation complex NUP93 +PWCOMMONS Formation of RNA Pol II elongation complex NUP88 +PWCOMMONS Formation of RNA Pol II elongation complex NUPL2 +PWCOMMONS Formation of RNA Pol II elongation complex NUP210 +PWCOMMONS Formation of RNA Pol II elongation complex NUP155 +PWCOMMONS Formation of RNA Pol II elongation complex RANBP2 +PWCOMMONS Formation of RNA Pol II elongation complex RAE1 +PWCOMMONS Formation of RNA Pol II elongation complex NUP188 +PWCOMMONS Formation of RNA Pol II elongation complex NUP214 +PWCOMMONS Formation of RNA Pol II elongation complex NUP54 +PWCOMMONS Formation of RNA Pol II elongation complex NUP62 +PWCOMMONS Formation of RNA Pol II elongation complex NUP107 +PWCOMMONS Formation of RNA Pol II elongation complex NUP133 +PWCOMMONS Formation of RNA Pol II elongation complex NUP160 +PWCOMMONS Formation of RNA Pol II elongation complex NUP37 +PWCOMMONS Formation of RNA Pol II elongation complex RPL27A +PWCOMMONS Formation of RNA Pol II elongation complex RPL15 +PWCOMMONS Formation of RNA Pol II elongation complex RPL11 +PWCOMMONS Formation of RNA Pol II elongation complex RPL29 +PWCOMMONS Formation of RNA Pol II elongation complex RPL30 +PWCOMMONS Formation of RNA Pol II elongation complex RPL8 +PWCOMMONS Formation of RNA Pol II elongation complex RPL22 +PWCOMMONS Formation of RNA Pol II elongation complex RPL28 +PWCOMMONS Formation of RNA Pol II elongation complex RPL7A +PWCOMMONS Formation of RNA Pol II elongation complex RPL35A +PWCOMMONS Formation of RNA Pol II elongation complex RPL31 +PWCOMMONS Formation of RNA Pol II elongation complex RPL26L1 +PWCOMMONS Formation of RNA Pol II elongation complex RPL26 +PWCOMMONS Formation of RNA Pol II elongation complex RPL18A +PWCOMMONS Formation of RNA Pol II elongation complex RPL14 +PWCOMMONS Formation of RNA Pol II elongation complex RPLP2 +PWCOMMONS Formation of RNA Pol II elongation complex RPL10 +PWCOMMONS Formation of RNA Pol II elongation complex RPL34 +PWCOMMONS Formation of RNA Pol II elongation complex RPL37 +PWCOMMONS Formation of RNA Pol II elongation complex RPL3L +PWCOMMONS Formation of RNA Pol II elongation complex RPL32 +PWCOMMONS Formation of RNA Pol II elongation complex RPL36 +PWCOMMONS Formation of RNA Pol II elongation complex RPLP1 +PWCOMMONS Formation of RNA Pol II elongation complex RPL23A +PWCOMMONS Formation of RNA Pol II elongation complex RPL24 +PWCOMMONS Formation of RNA Pol II elongation complex RPL6 +PWCOMMONS Formation of RNA Pol II elongation complex RPL18 +PWCOMMONS Formation of RNA Pol II elongation complex RPL5 +PWCOMMONS Formation of RNA Pol II elongation complex RPL23 +PWCOMMONS Formation of RNA Pol II elongation complex RPL19 +PWCOMMONS Formation of RNA Pol II elongation complex RPL41 +PWCOMMONS Formation of RNA Pol II elongation complex RPL7 +PWCOMMONS Formation of RNA Pol II elongation complex RPL13A +PWCOMMONS Formation of RNA Pol II elongation complex RPL27 +PWCOMMONS Formation of RNA Pol II elongation complex RPL17 +PWCOMMONS Formation of RNA Pol II elongation complex RPL3 +PWCOMMONS Formation of RNA Pol II elongation complex RPL10A +PWCOMMONS Formation of RNA Pol II elongation complex RPL21 +PWCOMMONS Formation of RNA Pol II elongation complex RPL4 +PWCOMMONS Formation of RNA Pol II elongation complex RPL35 +PWCOMMONS Formation of RNA Pol II elongation complex RPL13 +PWCOMMONS Formation of RNA Pol II elongation complex RPL39 +PWCOMMONS Formation of RNA Pol II elongation complex RPL38 +PWCOMMONS Formation of RNA Pol II elongation complex RPL36A +PWCOMMONS Formation of RNA Pol II elongation complex RPL9 +PWCOMMONS Formation of RNA Pol II elongation complex RPLP0 +PWCOMMONS Formation of RNA Pol II elongation complex UBA52 +PWCOMMONS Formation of RNA Pol II elongation complex RPL37A +PWCOMMONS Formation of RNA Pol II elongation complex RPL12 +PWCOMMONS Formation of RNA Pol II elongation complex EEF1A1 +PWCOMMONS Formation of RNA Pol II elongation complex PCF11 +PWCOMMONS Formation of RNA Pol II elongation complex CLP1 +PWCOMMONS Formation of RNA Pol II elongation complex CPSF7 +PWCOMMONS Formation of RNA Pol II elongation complex NUDT21 +PWCOMMONS Formation of RNA Pol II elongation complex EIF2B5 +PWCOMMONS Formation of RNA Pol II elongation complex EIF2B1 +PWCOMMONS Formation of RNA Pol II elongation complex EIF2B3 +PWCOMMONS Formation of RNA Pol II elongation complex EIF2B4 +PWCOMMONS Formation of RNA Pol II elongation complex EIF2B2 +PWCOMMONS Formation of RNA Pol II elongation complex PABPN1 +PWCOMMONS Formation of RNA Pol II elongation complex PAPOLA +PWCOMMONS Formation of RNA Pol II elongation complex CPSF2 +PWCOMMONS Formation of RNA Pol II elongation complex CPSF1 +PWCOMMONS Formation of RNA Pol II elongation complex CPSF3 +PWCOMMONS Formation of RNA Pol II elongation complex CSTF2 +PWCOMMONS Formation of RNA Pol II elongation complex CSTF1 +PWCOMMONS Formation of RNA Pol II elongation complex CSTF3 +PWCOMMONS Formation of RNA Pol II elongation complex ETF1 +PWCOMMONS Formation of RNA Pol II elongation complex GSPT2 +PWCOMMONS Formation of RNA Pol II elongation complex PABPC1 +PWCOMMONS Formation of RNA Pol II elongation complex SFRS2 +PWCOMMONS Formation of RNA Pol II elongation complex CDC40 +PWCOMMONS Formation of RNA Pol II elongation complex SFRS3 +PWCOMMONS Formation of RNA Pol II elongation complex SFRS11 +PWCOMMONS Formation of RNA Pol II elongation complex U2AF2 +PWCOMMONS Formation of RNA Pol II elongation complex SFRS9 +PWCOMMONS Formation of RNA Pol II elongation complex SFRS5 +PWCOMMONS Formation of RNA Pol II elongation complex SFRS7 +PWCOMMONS Formation of RNA Pol II elongation complex SFRS4 +PWCOMMONS Formation of RNA Pol II elongation complex SFRS6 +PWCOMMONS Formation of RNA Pol II elongation complex DHX38 +PWCOMMONS Formation of RNA Pol II elongation complex U2AF1 +PWCOMMONS Formation of RNA Pol II elongation complex SFRS1 +PWCOMMONS Formation of RNA Pol II elongation complex RNPS1 +PWCOMMONS Formation of RNA Pol II elongation complex UPF3B +PWCOMMONS Formation of RNA Pol II elongation complex SRRM1 +PWCOMMONS Formation of RNA Pol II elongation complex THOC4 +PWCOMMONS Formation of RNA Pol II elongation complex RBM8A +PWCOMMONS Formation of RNA Pol II elongation complex MAGOH +PWCOMMONS Formation of RNA Pol II elongation complex EEF1G +PWCOMMONS Formation of RNA Pol II elongation complex EEF1D +PWCOMMONS Formation of RNA Pol II elongation complex EEF1B2 +PWCOMMONS Formation of RNA Pol II elongation complex NXF1 +PWCOMMONS Formation of RNA Pol II elongation complex EIF5 +PWCOMMONS Formation of RNA Pol II elongation complex EIF5B +PWCOMMONS Formation of RNA Pol II elongation complex EEF2 +PWCOMMONS Formation of RNA Pol II elongation complex ERCC2 +PWCOMMONS Formation of RNA Pol II elongation complex GTF2H3 +PWCOMMONS Formation of RNA Pol II elongation complex GTF2H4 +PWCOMMONS Formation of RNA Pol II elongation complex GTF2H2 +PWCOMMONS Formation of RNA Pol II elongation complex ERCC3 +PWCOMMONS Formation of RNA Pol II elongation complex GTF2H1 +PWCOMMONS Formation of RNA Pol II elongation complex CCNH +PWCOMMONS Formation of RNA Pol II elongation complex CDK7 +PWCOMMONS Formation of RNA Pol II elongation complex MNAT1 +PWCOMMONS Formation of RNA Pol II elongation complex +PWCOMMONS Post-Elongation Processing of the Transcript EIF4H +PWCOMMONS Post-Elongation Processing of the Transcript EIF4B +PWCOMMONS Post-Elongation Processing of the Transcript EIF4E +PWCOMMONS Post-Elongation Processing of the Transcript EIF4G1 +PWCOMMONS Post-Elongation Processing of the Transcript EIF4A2 +PWCOMMONS Post-Elongation Processing of the Transcript EIF2S3 +PWCOMMONS Post-Elongation Processing of the Transcript EIF2S2 +PWCOMMONS Post-Elongation Processing of the Transcript EIF2S1 +PWCOMMONS Post-Elongation Processing of the Transcript EIF3K +PWCOMMONS Post-Elongation Processing of the Transcript EIF3H +PWCOMMONS Post-Elongation Processing of the Transcript EIF3E +PWCOMMONS Post-Elongation Processing of the Transcript EIF3F +PWCOMMONS Post-Elongation Processing of the Transcript EIF3J +PWCOMMONS Post-Elongation Processing of the Transcript EIF3G +PWCOMMONS Post-Elongation Processing of the Transcript EIF3C +PWCOMMONS Post-Elongation Processing of the Transcript EIF3A +PWCOMMONS Post-Elongation Processing of the Transcript EIF3I +PWCOMMONS Post-Elongation Processing of the Transcript EIF3D +PWCOMMONS Post-Elongation Processing of the Transcript EIF3B +PWCOMMONS Post-Elongation Processing of the Transcript RPS23 +PWCOMMONS Post-Elongation Processing of the Transcript RPS16 +PWCOMMONS Post-Elongation Processing of the Transcript RPS12 +PWCOMMONS Post-Elongation Processing of the Transcript RPS29 +PWCOMMONS Post-Elongation Processing of the Transcript RPSA +PWCOMMONS Post-Elongation Processing of the Transcript RPS21 +PWCOMMONS Post-Elongation Processing of the Transcript RPS27A +PWCOMMONS Post-Elongation Processing of the Transcript RPS20 +PWCOMMONS Post-Elongation Processing of the Transcript RPS15 +PWCOMMONS Post-Elongation Processing of the Transcript RPS24 +PWCOMMONS Post-Elongation Processing of the Transcript RPS9 +PWCOMMONS Post-Elongation Processing of the Transcript RPS10 +PWCOMMONS Post-Elongation Processing of the Transcript RPS28 +PWCOMMONS Post-Elongation Processing of the Transcript RPS2 +PWCOMMONS Post-Elongation Processing of the Transcript RPS19 +PWCOMMONS Post-Elongation Processing of the Transcript RPS4X +PWCOMMONS Post-Elongation Processing of the Transcript RPS18 +PWCOMMONS Post-Elongation Processing of the Transcript RPS8 +PWCOMMONS Post-Elongation Processing of the Transcript RPS3 +PWCOMMONS Post-Elongation Processing of the Transcript RPS4Y1 +PWCOMMONS Post-Elongation Processing of the Transcript RPS25 +PWCOMMONS Post-Elongation Processing of the Transcript RPS14 +PWCOMMONS Post-Elongation Processing of the Transcript RPS17 +PWCOMMONS Post-Elongation Processing of the Transcript RPS26 +PWCOMMONS Post-Elongation Processing of the Transcript RPS11 +PWCOMMONS Post-Elongation Processing of the Transcript RPS5 +PWCOMMONS Post-Elongation Processing of the Transcript FAU +PWCOMMONS Post-Elongation Processing of the Transcript RPS15A +PWCOMMONS Post-Elongation Processing of the Transcript RPS13 +PWCOMMONS Post-Elongation Processing of the Transcript RPS6 +PWCOMMONS Post-Elongation Processing of the Transcript RPS3A +PWCOMMONS Post-Elongation Processing of the Transcript RPS7 +PWCOMMONS Post-Elongation Processing of the Transcript RPS27 +PWCOMMONS Post-Elongation Processing of the Transcript NUP153 +PWCOMMONS Post-Elongation Processing of the Transcript NUP85 +PWCOMMONS Post-Elongation Processing of the Transcript NUP35 +PWCOMMONS Post-Elongation Processing of the Transcript AAAS +PWCOMMONS Post-Elongation Processing of the Transcript NUP50 +PWCOMMONS Post-Elongation Processing of the Transcript NUP43 +PWCOMMONS Post-Elongation Processing of the Transcript NUP205 +PWCOMMONS Post-Elongation Processing of the Transcript NUP93 +PWCOMMONS Post-Elongation Processing of the Transcript NUP88 +PWCOMMONS Post-Elongation Processing of the Transcript NUPL2 +PWCOMMONS Post-Elongation Processing of the Transcript NUP210 +PWCOMMONS Post-Elongation Processing of the Transcript NUP155 +PWCOMMONS Post-Elongation Processing of the Transcript RANBP2 +PWCOMMONS Post-Elongation Processing of the Transcript RAE1 +PWCOMMONS Post-Elongation Processing of the Transcript NUP188 +PWCOMMONS Post-Elongation Processing of the Transcript NUP214 +PWCOMMONS Post-Elongation Processing of the Transcript NUP54 +PWCOMMONS Post-Elongation Processing of the Transcript NUP62 +PWCOMMONS Post-Elongation Processing of the Transcript NUP107 +PWCOMMONS Post-Elongation Processing of the Transcript NUP133 +PWCOMMONS Post-Elongation Processing of the Transcript NUP160 +PWCOMMONS Post-Elongation Processing of the Transcript NUP37 +PWCOMMONS Post-Elongation Processing of the Transcript RPL27A +PWCOMMONS Post-Elongation Processing of the Transcript RPL15 +PWCOMMONS Post-Elongation Processing of the Transcript RPL11 +PWCOMMONS Post-Elongation Processing of the Transcript RPL29 +PWCOMMONS Post-Elongation Processing of the Transcript RPL30 +PWCOMMONS Post-Elongation Processing of the Transcript RPL8 +PWCOMMONS Post-Elongation Processing of the Transcript RPL22 +PWCOMMONS Post-Elongation Processing of the Transcript RPL28 +PWCOMMONS Post-Elongation Processing of the Transcript RPL7A +PWCOMMONS Post-Elongation Processing of the Transcript RPL35A +PWCOMMONS Post-Elongation Processing of the Transcript RPL31 +PWCOMMONS Post-Elongation Processing of the Transcript RPL26L1 +PWCOMMONS Post-Elongation Processing of the Transcript RPL26 +PWCOMMONS Post-Elongation Processing of the Transcript RPL18A +PWCOMMONS Post-Elongation Processing of the Transcript RPL14 +PWCOMMONS Post-Elongation Processing of the Transcript RPLP2 +PWCOMMONS Post-Elongation Processing of the Transcript RPL10 +PWCOMMONS Post-Elongation Processing of the Transcript RPL34 +PWCOMMONS Post-Elongation Processing of the Transcript RPL37 +PWCOMMONS Post-Elongation Processing of the Transcript RPL3L +PWCOMMONS Post-Elongation Processing of the Transcript RPL32 +PWCOMMONS Post-Elongation Processing of the Transcript RPL36 +PWCOMMONS Post-Elongation Processing of the Transcript RPLP1 +PWCOMMONS Post-Elongation Processing of the Transcript RPL23A +PWCOMMONS Post-Elongation Processing of the Transcript RPL24 +PWCOMMONS Post-Elongation Processing of the Transcript RPL6 +PWCOMMONS Post-Elongation Processing of the Transcript RPL18 +PWCOMMONS Post-Elongation Processing of the Transcript RPL5 +PWCOMMONS Post-Elongation Processing of the Transcript RPL23 +PWCOMMONS Post-Elongation Processing of the Transcript RPL19 +PWCOMMONS Post-Elongation Processing of the Transcript RPL41 +PWCOMMONS Post-Elongation Processing of the Transcript RPL7 +PWCOMMONS Post-Elongation Processing of the Transcript RPL13A +PWCOMMONS Post-Elongation Processing of the Transcript RPL27 +PWCOMMONS Post-Elongation Processing of the Transcript RPL17 +PWCOMMONS Post-Elongation Processing of the Transcript RPL3 +PWCOMMONS Post-Elongation Processing of the Transcript RPL10A +PWCOMMONS Post-Elongation Processing of the Transcript RPL21 +PWCOMMONS Post-Elongation Processing of the Transcript RPL4 +PWCOMMONS Post-Elongation Processing of the Transcript RPL35 +PWCOMMONS Post-Elongation Processing of the Transcript RPL13 +PWCOMMONS Post-Elongation Processing of the Transcript RPL39 +PWCOMMONS Post-Elongation Processing of the Transcript RPL38 +PWCOMMONS Post-Elongation Processing of the Transcript RPL36A +PWCOMMONS Post-Elongation Processing of the Transcript RPL9 +PWCOMMONS Post-Elongation Processing of the Transcript RPLP0 +PWCOMMONS Post-Elongation Processing of the Transcript UBA52 +PWCOMMONS Post-Elongation Processing of the Transcript RPL37A +PWCOMMONS Post-Elongation Processing of the Transcript RPL12 +PWCOMMONS Post-Elongation Processing of the Transcript EEF1A1 +PWCOMMONS Post-Elongation Processing of the Transcript PCF11 +PWCOMMONS Post-Elongation Processing of the Transcript CLP1 +PWCOMMONS Post-Elongation Processing of the Transcript CPSF7 +PWCOMMONS Post-Elongation Processing of the Transcript NUDT21 +PWCOMMONS Post-Elongation Processing of the Transcript EIF2B5 +PWCOMMONS Post-Elongation Processing of the Transcript EIF2B1 +PWCOMMONS Post-Elongation Processing of the Transcript EIF2B3 +PWCOMMONS Post-Elongation Processing of the Transcript EIF2B4 +PWCOMMONS Post-Elongation Processing of the Transcript EIF2B2 +PWCOMMONS Post-Elongation Processing of the Transcript ETF1 +PWCOMMONS Post-Elongation Processing of the Transcript GSPT2 +PWCOMMONS Post-Elongation Processing of the Transcript PABPC1 +PWCOMMONS Post-Elongation Processing of the Transcript PAPOLA +PWCOMMONS Post-Elongation Processing of the Transcript PABPN1 +PWCOMMONS Post-Elongation Processing of the Transcript SFRS2 +PWCOMMONS Post-Elongation Processing of the Transcript CDC40 +PWCOMMONS Post-Elongation Processing of the Transcript SFRS3 +PWCOMMONS Post-Elongation Processing of the Transcript SFRS11 +PWCOMMONS Post-Elongation Processing of the Transcript U2AF2 +PWCOMMONS Post-Elongation Processing of the Transcript SFRS9 +PWCOMMONS Post-Elongation Processing of the Transcript SFRS5 +PWCOMMONS Post-Elongation Processing of the Transcript SFRS7 +PWCOMMONS Post-Elongation Processing of the Transcript SFRS4 +PWCOMMONS Post-Elongation Processing of the Transcript SFRS6 +PWCOMMONS Post-Elongation Processing of the Transcript DHX38 +PWCOMMONS Post-Elongation Processing of the Transcript U2AF1 +PWCOMMONS Post-Elongation Processing of the Transcript SFRS1 +PWCOMMONS Post-Elongation Processing of the Transcript RNPS1 +PWCOMMONS Post-Elongation Processing of the Transcript UPF3B +PWCOMMONS Post-Elongation Processing of the Transcript SRRM1 +PWCOMMONS Post-Elongation Processing of the Transcript THOC4 +PWCOMMONS Post-Elongation Processing of the Transcript RBM8A +PWCOMMONS Post-Elongation Processing of the Transcript MAGOH +PWCOMMONS Post-Elongation Processing of the Transcript NCBP2 +PWCOMMONS Post-Elongation Processing of the Transcript NCBP1 +PWCOMMONS Post-Elongation Processing of the Transcript CPSF2 +PWCOMMONS Post-Elongation Processing of the Transcript CPSF1 +PWCOMMONS Post-Elongation Processing of the Transcript CPSF3 +PWCOMMONS Post-Elongation Processing of the Transcript EEF1G +PWCOMMONS Post-Elongation Processing of the Transcript EEF1D +PWCOMMONS Post-Elongation Processing of the Transcript EEF1B2 +PWCOMMONS Post-Elongation Processing of the Transcript NXF1 +PWCOMMONS Post-Elongation Processing of the Transcript EIF5 +PWCOMMONS Post-Elongation Processing of the Transcript EIF5B +PWCOMMONS Post-Elongation Processing of the Transcript CSTF2 +PWCOMMONS Post-Elongation Processing of the Transcript CSTF1 +PWCOMMONS Post-Elongation Processing of the Transcript CSTF3 +PWCOMMONS Post-Elongation Processing of the Transcript EEF2 +PWCOMMONS Post-Elongation Processing of the Transcript +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF4H +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF4B +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF4E +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF4G1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF4A2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF2S3 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF2S2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF2S1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF3K +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF3H +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF3E +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF3F +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF3J +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF3G +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF3C +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF3A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF3I +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF3D +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF3B +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS23 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS16 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS12 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS29 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPSA +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS21 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS27A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS20 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS15 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS24 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS9 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS10 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS28 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS19 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS4X +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS18 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS8 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS3 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS4Y1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS25 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS14 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS17 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS26 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS11 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS5 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA FAU +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS15A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS13 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS6 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS3A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS7 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPS27 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP153 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP85 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP35 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA AAAS +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP50 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP43 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP205 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP93 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP88 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUPL2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP210 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP155 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RANBP2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RAE1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP188 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP214 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP54 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP62 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP107 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP133 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP160 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUP37 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL27A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL15 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL11 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL29 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL30 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL8 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL22 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL28 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL7A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL35A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL31 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL26L1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL26 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL18A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL14 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPLP2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL10 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL34 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL37 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL3L +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL32 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL36 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPLP1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL23A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL24 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL6 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL18 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL5 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL23 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL19 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL41 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL7 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL13A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL27 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL17 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL3 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL10A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL21 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL4 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL35 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL13 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL39 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL38 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL36A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL9 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPLP0 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA UBA52 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL37A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RPL12 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EEF1A1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA PCF11 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA CLP1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA CPSF7 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NUDT21 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF2B5 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF2B1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF2B3 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF2B4 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF2B2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA ETF1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA GSPT2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA PABPC1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA PAPOLA +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA PABPN1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA SFRS2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA CDC40 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA SFRS3 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA SFRS11 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA U2AF2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA SFRS9 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA SFRS5 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA SFRS7 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA SFRS4 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA SFRS6 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA DHX38 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA U2AF1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA SFRS1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RNPS1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA UPF3B +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA SRRM1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA THOC4 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA RBM8A +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA MAGOH +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NCBP2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NCBP1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA CPSF2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA CPSF1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA CPSF3 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EEF1G +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EEF1D +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EEF1B2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA NXF1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF5 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EIF5B +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA CSTF2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA CSTF1 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA CSTF3 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA EEF2 +PWCOMMONS Post-Elongation Processing of Intron-Containing pre-mRNA +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF4H +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF4B +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF4E +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF4G1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF4A2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF2S3 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF2S2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF2S1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF3K +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF3H +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF3E +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF3F +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF3J +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF3G +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF3C +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF3A +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF3I +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF3D +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF3B +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS23 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS16 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS12 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS29 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPSA +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS21 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS27A +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS20 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS15 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS24 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS9 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS10 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS28 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS19 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS4X +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS18 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS8 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS3 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS4Y1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS25 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS14 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS17 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS26 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS11 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS5 +PWCOMMONS Transport of Mature Transcript to Cytoplasm FAU +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS15A +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS13 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS6 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS3A +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS7 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPS27 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL27A +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL15 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL11 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL29 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL30 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL8 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL22 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL28 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL7A +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL35A +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL31 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL26L1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL26 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL18A +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL14 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPLP2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL10 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL34 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL37 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL3L +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL32 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL36 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPLP1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL23A +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL24 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL6 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL18 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL5 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL23 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL19 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL41 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL7 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL13A +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL27 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL17 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL3 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL10A +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL21 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL4 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL35 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL13 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL39 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL38 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL36A +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL9 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPLP0 +PWCOMMONS Transport of Mature Transcript to Cytoplasm UBA52 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL37A +PWCOMMONS Transport of Mature Transcript to Cytoplasm RPL12 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EEF1A1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF2B5 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF2B1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF2B3 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF2B4 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF2B2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm ETF1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm GSPT2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm PABPC1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EEF1G +PWCOMMONS Transport of Mature Transcript to Cytoplasm EEF1D +PWCOMMONS Transport of Mature Transcript to Cytoplasm EEF1B2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP153 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP85 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP35 +PWCOMMONS Transport of Mature Transcript to Cytoplasm AAAS +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP50 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP43 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP205 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP93 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP88 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUPL2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP210 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP155 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RANBP2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RAE1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP188 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP214 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP54 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP62 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP107 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP133 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP160 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NUP37 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF5 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NXF1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm THOC4 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EIF5B +PWCOMMONS Transport of Mature Transcript to Cytoplasm NCBP2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm NCBP1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm EEF2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm CPSF2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm CPSF1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm CPSF3 +PWCOMMONS Transport of Mature Transcript to Cytoplasm SLBP +PWCOMMONS Transport of Mature Transcript to Cytoplasm SFRS2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm CDC40 +PWCOMMONS Transport of Mature Transcript to Cytoplasm SFRS3 +PWCOMMONS Transport of Mature Transcript to Cytoplasm SFRS11 +PWCOMMONS Transport of Mature Transcript to Cytoplasm U2AF2 +PWCOMMONS Transport of Mature Transcript to Cytoplasm SFRS9 +PWCOMMONS Transport of Mature Transcript to Cytoplasm SFRS5 +PWCOMMONS Transport of Mature Transcript to Cytoplasm SFRS7 +PWCOMMONS Transport of Mature Transcript to Cytoplasm SFRS4 +PWCOMMONS Transport of Mature Transcript to Cytoplasm SFRS6 +PWCOMMONS Transport of Mature Transcript to Cytoplasm DHX38 +PWCOMMONS Transport of Mature Transcript to Cytoplasm U2AF1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm SFRS1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RNPS1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm UPF3B +PWCOMMONS Transport of Mature Transcript to Cytoplasm SRRM1 +PWCOMMONS Transport of Mature Transcript to Cytoplasm RBM8A +PWCOMMONS Transport of Mature Transcript to Cytoplasm MAGOH +PWCOMMONS Transport of Mature Transcript to Cytoplasm +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF4H +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF4B +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF4E +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF4G1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF4A2 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF2S3 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF2S2 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF2S1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF3K +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF3H +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF3E +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF3F +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF3J +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF3G +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF3C +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF3A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF3I +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF3D +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF3B +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS23 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS16 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS12 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS29 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPSA +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS21 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS27A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS20 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS15 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS24 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS9 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS10 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS28 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS2 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS19 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS4X +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS18 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS8 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS3 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS4Y1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS25 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS14 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS17 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS26 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS11 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS5 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts FAU +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS15A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS13 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS6 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS3A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS7 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPS27 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL27A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL15 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL11 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL29 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL30 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL8 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL22 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL28 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL7A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL35A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL31 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL26L1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL26 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL18A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL14 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPLP2 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL10 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL34 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL37 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL3L +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL32 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL36 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPLP1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL23A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL24 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL6 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL18 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL5 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL23 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL19 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL41 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL7 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL13A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL27 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL17 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL3 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL10A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL21 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL4 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL35 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL13 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL39 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL38 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL36A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL9 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPLP0 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts UBA52 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL37A +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RPL12 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EEF1A1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF2B5 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF2B1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF2B3 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF2B4 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF2B2 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts ETF1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts GSPT2 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts PABPC1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EEF1G +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EEF1D +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EEF1B2 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP153 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP85 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP35 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts AAAS +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP50 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP43 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP205 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP93 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP88 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUPL2 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP210 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP155 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RANBP2 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts RAE1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP188 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP214 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP54 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP62 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP107 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP133 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP160 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NUP37 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF5 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NXF1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts THOC4 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EIF5B +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NCBP2 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts NCBP1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts EEF2 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts CPSF2 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts CPSF1 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts CPSF3 +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts SLBP +PWCOMMONS Transport of Mature mRNAs Derived from Intronless Transcripts +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF4H +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF4B +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF4E +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF4G1 +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF4A2 +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF2S3 +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF2S2 +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF2S1 +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF3K +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF3H +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF3E +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF3F +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF3J +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF3G +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF3C +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF3A +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF3I +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF3D +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF3B +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS23 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS16 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS12 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS29 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPSA +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS21 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS27A +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS20 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS15 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS24 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS9 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS10 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS28 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS2 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS19 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS4X +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS18 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS8 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS3 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS4Y1 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS25 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS14 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS17 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS26 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS11 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS5 +PWCOMMONS Transport of the SLBP independent Mature mRNA FAU +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS15A +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS13 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS6 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS3A +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS7 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPS27 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL27A +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL15 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL11 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL29 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL30 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL8 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL22 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL28 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL7A +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL35A +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL31 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL26L1 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL26 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL18A +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL14 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPLP2 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL10 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL34 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL37 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL3L +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL32 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL36 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPLP1 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL23A +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL24 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL6 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL18 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL5 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL23 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL19 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL41 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL7 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL13A +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL27 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL17 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL3 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL10A +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL21 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL4 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL35 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL13 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL39 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL38 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL36A +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL9 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPLP0 +PWCOMMONS Transport of the SLBP independent Mature mRNA UBA52 +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL37A +PWCOMMONS Transport of the SLBP independent Mature mRNA RPL12 +PWCOMMONS Transport of the SLBP independent Mature mRNA EEF1A1 +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF2B5 +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF2B1 +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF2B3 +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF2B4 +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF2B2 +PWCOMMONS Transport of the SLBP independent Mature mRNA ETF1 +PWCOMMONS Transport of the SLBP independent Mature mRNA GSPT2 +PWCOMMONS Transport of the SLBP independent Mature mRNA PABPC1 +PWCOMMONS Transport of the SLBP independent Mature mRNA EEF1G +PWCOMMONS Transport of the SLBP independent Mature mRNA EEF1D +PWCOMMONS Transport of the SLBP independent Mature mRNA EEF1B2 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP153 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP85 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP35 +PWCOMMONS Transport of the SLBP independent Mature mRNA AAAS +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP50 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP43 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP205 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP93 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP88 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUPL2 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP210 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP155 +PWCOMMONS Transport of the SLBP independent Mature mRNA RANBP2 +PWCOMMONS Transport of the SLBP independent Mature mRNA RAE1 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP188 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP214 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP54 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP62 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP107 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP133 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP160 +PWCOMMONS Transport of the SLBP independent Mature mRNA NUP37 +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF5 +PWCOMMONS Transport of the SLBP independent Mature mRNA NXF1 +PWCOMMONS Transport of the SLBP independent Mature mRNA THOC4 +PWCOMMONS Transport of the SLBP independent Mature mRNA EIF5B +PWCOMMONS Transport of the SLBP independent Mature mRNA NCBP2 +PWCOMMONS Transport of the SLBP independent Mature mRNA NCBP1 +PWCOMMONS Transport of the SLBP independent Mature mRNA EEF2 +PWCOMMONS Transport of the SLBP independent Mature mRNA +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP85 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP35 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA AAAS +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP50 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP43 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP205 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP93 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP88 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUPL2 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP210 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP155 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RANBP2 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RAE1 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP188 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP214 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP54 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP62 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP107 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP133 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP160 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NUP37 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF1AX +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF4H +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF4B +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF4E +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF4G1 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF4A2 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF2S3 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF2S2 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF2S1 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF3K +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF3H +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF3E +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF3F +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF3J +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF3G +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF3C +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF3A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF3I +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF3D +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF3B +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS23 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS16 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS12 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS29 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPSA +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS21 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS27A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS20 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS15 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS24 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS9 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS10 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS28 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS2 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS19 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS4X +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS18 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS8 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS3 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS4Y1 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS25 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS14 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS17 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS26 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS11 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS5 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA FAU +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS15A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS13 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS6 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS3A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS7 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPS27 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL27A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL15 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL11 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL29 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL30 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL8 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL22 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL28 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL7A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL35A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL31 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL26L1 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL26 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL18A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL14 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPLP2 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL10 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL34 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL37 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL3L +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL32 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL36 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPLP1 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL23A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL24 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL6 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL18 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL5 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL23 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL19 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL41 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL7 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL13A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL27 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL17 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL3 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL10A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL21 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL4 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL35 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL13 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL39 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL38 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL36A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL9 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPLP0 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA UBA52 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL37A +PWCOMMONS Transport of the SLBP Dependant Mature mRNA RPL12 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EEF1A1 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF2B5 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF2B1 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF2B3 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF2B4 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF2B2 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA ETF1 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA GSPT2 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA PABPC1 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EEF1G +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EEF1D +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EEF1B2 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NXF1 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA THOC4 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA SLBP +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF5 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EIF5B +PWCOMMONS Transport of the SLBP Dependant Mature mRNA EEF2 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NCBP2 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA NCBP1 +PWCOMMONS Transport of the SLBP Dependant Mature mRNA +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF4H +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF4B +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF4E +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF4G1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF4A2 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF2S3 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF2S2 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF2S1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF3K +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF3H +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF3E +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF3F +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF3J +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF3G +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF3C +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF3A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF3I +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF3D +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF3B +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS23 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS16 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS12 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS29 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPSA +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS21 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS27A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS20 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS15 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS24 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS9 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS10 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS28 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS2 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS19 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS4X +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS18 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS8 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS3 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS4Y1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS25 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS14 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS17 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS26 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS11 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS5 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript FAU +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS15A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS13 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS6 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS3A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS7 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPS27 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL27A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL15 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL11 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL29 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL30 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL8 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL22 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL28 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL7A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL35A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL31 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL26L1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL26 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL18A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL14 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPLP2 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL10 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL34 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL37 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL3L +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL32 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL36 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPLP1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL23A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL24 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL6 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL18 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL5 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL23 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL19 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL41 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL7 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL13A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL27 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL17 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL3 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL10A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL21 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL4 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL35 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL13 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL39 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL38 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL36A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL9 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPLP0 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript UBA52 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL37A +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RPL12 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EEF1A1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF2B5 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF2B1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF2B3 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF2B4 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF2B2 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NXF1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript THOC4 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NCBP2 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NCBP1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript CPSF2 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript CPSF1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript CPSF3 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript ETF1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript GSPT2 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript PABPC1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EEF1G +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EEF1D +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EEF1B2 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF5 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP153 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP85 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP35 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript AAAS +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP50 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP43 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP205 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP93 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP88 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUPL2 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP210 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP155 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RANBP2 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript RAE1 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP188 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP214 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP54 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP62 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP107 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP133 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP160 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript NUP37 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EIF5B +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript EEF2 +PWCOMMONS Transport of Mature mRNA Derived from an Intronless Transcript +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF4H +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF4B +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF4E +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF4G1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF4A2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF2S3 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF2S2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF2S1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF3K +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF3H +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF3E +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF3F +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF3J +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF3G +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF3C +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF3A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF3I +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF3D +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF3B +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS23 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS16 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS12 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS29 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPSA +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS21 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS27A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS20 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS15 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS24 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS9 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS10 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS28 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS19 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS4X +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS18 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS8 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS3 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS4Y1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS25 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS14 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS17 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS26 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS11 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS5 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript FAU +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS15A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS13 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS6 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS3A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS7 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPS27 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP153 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP85 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP35 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript AAAS +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP50 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP43 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP205 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP93 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP88 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUPL2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP210 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP155 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RANBP2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RAE1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP188 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP214 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP54 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP62 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP107 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP133 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP160 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NUP37 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL27A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL15 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL11 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL29 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL30 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL8 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL22 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL28 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL7A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL35A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL31 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL26L1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL26 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL18A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL14 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPLP2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL10 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL34 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL37 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL3L +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL32 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL36 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPLP1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL23A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL24 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL6 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL18 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL5 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL23 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL19 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL41 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL7 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL13A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL27 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL17 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL3 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL10A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL21 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL4 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL35 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL13 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL39 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL38 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL36A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL9 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPLP0 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript UBA52 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL37A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RPL12 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EEF1A1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF2B5 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF2B1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF2B3 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF2B4 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF2B2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript ETF1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript GSPT2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript PABPC1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EEF1G +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EEF1D +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EEF1B2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NXF1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript SFRS2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript CDC40 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript SFRS3 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript SFRS11 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript U2AF2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript SFRS9 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript SFRS5 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript SFRS7 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript SFRS4 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript SFRS6 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript DHX38 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript U2AF1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript SFRS1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RNPS1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript UPF3B +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript SRRM1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript THOC4 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript RBM8A +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript MAGOH +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NCBP2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript NCBP1 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF5 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EIF5B +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript EEF2 +PWCOMMONS Transport of Mature mRNA derived from an Intron-Containing Transcript +PWCOMMONS tRNA Aminoacylation SCYE1 +PWCOMMONS tRNA Aminoacylation EEF1E1 +PWCOMMONS tRNA Aminoacylation LARS +PWCOMMONS tRNA Aminoacylation MARS +PWCOMMONS tRNA Aminoacylation RARS +PWCOMMONS tRNA Aminoacylation IARS +PWCOMMONS tRNA Aminoacylation JTV1 +PWCOMMONS tRNA Aminoacylation EPRS +PWCOMMONS tRNA Aminoacylation QARS +PWCOMMONS tRNA Aminoacylation KARS +PWCOMMONS tRNA Aminoacylation DARS +PWCOMMONS tRNA Aminoacylation FARSA +PWCOMMONS tRNA Aminoacylation FARSB +PWCOMMONS tRNA Aminoacylation HARS +PWCOMMONS tRNA Aminoacylation GARS +PWCOMMONS tRNA Aminoacylation CARS +PWCOMMONS tRNA Aminoacylation VARS +PWCOMMONS tRNA Aminoacylation YARS +PWCOMMONS tRNA Aminoacylation WARS +PWCOMMONS tRNA Aminoacylation AARS +PWCOMMONS tRNA Aminoacylation SARS +PWCOMMONS tRNA Aminoacylation TARS +PWCOMMONS tRNA Aminoacylation AARS2 +PWCOMMONS tRNA Aminoacylation IARS2 +PWCOMMONS tRNA Aminoacylation VARS2 +PWCOMMONS tRNA Aminoacylation WARS2 +PWCOMMONS tRNA Aminoacylation HARS2 +PWCOMMONS tRNA Aminoacylation YARS2 +PWCOMMONS tRNA Aminoacylation SARS2 +PWCOMMONS tRNA Aminoacylation PARS2 +PWCOMMONS tRNA Aminoacylation EARS2 +PWCOMMONS tRNA Aminoacylation RARS2 +PWCOMMONS tRNA Aminoacylation NARS2 +PWCOMMONS tRNA Aminoacylation FARS2 +PWCOMMONS tRNA Aminoacylation TARS2 +PWCOMMONS tRNA Aminoacylation DARS2 +PWCOMMONS tRNA Aminoacylation MARS2 +PWCOMMONS tRNA Aminoacylation CARS2 +PWCOMMONS tRNA Aminoacylation LARS2 +PWCOMMONS tRNA Aminoacylation +PWCOMMONS Cytosolic tRNA aminoacylation SCYE1 +PWCOMMONS Cytosolic tRNA aminoacylation EEF1E1 +PWCOMMONS Cytosolic tRNA aminoacylation LARS +PWCOMMONS Cytosolic tRNA aminoacylation MARS +PWCOMMONS Cytosolic tRNA aminoacylation RARS +PWCOMMONS Cytosolic tRNA aminoacylation IARS +PWCOMMONS Cytosolic tRNA aminoacylation JTV1 +PWCOMMONS Cytosolic tRNA aminoacylation EPRS +PWCOMMONS Cytosolic tRNA aminoacylation QARS +PWCOMMONS Cytosolic tRNA aminoacylation KARS +PWCOMMONS Cytosolic tRNA aminoacylation DARS +PWCOMMONS Cytosolic tRNA aminoacylation FARSA +PWCOMMONS Cytosolic tRNA aminoacylation FARSB +PWCOMMONS Cytosolic tRNA aminoacylation HARS +PWCOMMONS Cytosolic tRNA aminoacylation GARS +PWCOMMONS Cytosolic tRNA aminoacylation CARS +PWCOMMONS Cytosolic tRNA aminoacylation VARS +PWCOMMONS Cytosolic tRNA aminoacylation YARS +PWCOMMONS Cytosolic tRNA aminoacylation WARS +PWCOMMONS Cytosolic tRNA aminoacylation AARS +PWCOMMONS Cytosolic tRNA aminoacylation SARS +PWCOMMONS Cytosolic tRNA aminoacylation TARS +PWCOMMONS Cytosolic tRNA aminoacylation +PWCOMMONS Generic Transcription Pathway CCNC +PWCOMMONS Generic Transcription Pathway MED13 +PWCOMMONS Generic Transcription Pathway MED12 +PWCOMMONS Generic Transcription Pathway MED20 +PWCOMMONS Generic Transcription Pathway MED4 +PWCOMMONS Generic Transcription Pathway MED10 +PWCOMMONS Generic Transcription Pathway MED7 +PWCOMMONS Generic Transcription Pathway CDK8 +PWCOMMONS Generic Transcription Pathway MED24 +PWCOMMONS Generic Transcription Pathway MED6 +PWCOMMONS Generic Transcription Pathway MED31 +PWCOMMONS Generic Transcription Pathway MED17 +PWCOMMONS Generic Transcription Pathway MED1 +PWCOMMONS Generic Transcription Pathway MED14 +PWCOMMONS Generic Transcription Pathway MED25 +PWCOMMONS Generic Transcription Pathway +PWCOMMONS Apoptotic execution phase DFFB +PWCOMMONS Apoptotic execution phase CASP3 +PWCOMMONS Apoptotic execution phase KPNB1 +PWCOMMONS Apoptotic execution phase KPNA1 +PWCOMMONS Apoptotic execution phase OCLN +PWCOMMONS Apoptotic execution phase TJP2 +PWCOMMONS Apoptotic execution phase DSG3 +PWCOMMONS Apoptotic execution phase CDH1 +PWCOMMONS Apoptotic execution phase PKP1 +PWCOMMONS Apoptotic execution phase DSP +PWCOMMONS Apoptotic execution phase DSG2 +PWCOMMONS Apoptotic execution phase DSG1 +PWCOMMONS Apoptotic execution phase FNTA +PWCOMMONS Apoptotic execution phase CASP8 +PWCOMMONS Apoptotic execution phase GSN +PWCOMMONS Apoptotic execution phase SPTAN1 +PWCOMMONS Apoptotic execution phase ADD1 +PWCOMMONS Apoptotic execution phase MAPT +PWCOMMONS Apoptotic execution phase PLEC1 +PWCOMMONS Apoptotic execution phase VIM +PWCOMMONS Apoptotic execution phase GAS2 +PWCOMMONS Apoptotic execution phase DBNL +PWCOMMONS Apoptotic execution phase CASP6 +PWCOMMONS Apoptotic execution phase ACIN1 +PWCOMMONS Apoptotic execution phase MST4 +PWCOMMONS Apoptotic execution phase PTK2 +PWCOMMONS Apoptotic execution phase CASP7 +PWCOMMONS Apoptotic execution phase BIRC2 +PWCOMMONS Apoptotic execution phase STK24 +PWCOMMONS Apoptotic execution phase PRKCQ +PWCOMMONS Apoptotic execution phase ROCK1 +PWCOMMONS Apoptotic execution phase CLSPN +PWCOMMONS Apoptotic execution phase LMNB1 +PWCOMMONS Apoptotic execution phase BCAP31 +PWCOMMONS Apoptotic execution phase BMX +PWCOMMONS Apoptotic execution phase PRKCD +PWCOMMONS Apoptotic execution phase PAK2 +PWCOMMONS Apoptotic execution phase ARHGAP10 +PWCOMMONS Apoptotic execution phase FZR1 +PWCOMMONS Apoptotic execution phase ANAPC5 +PWCOMMONS Apoptotic execution phase ANAPC11 +PWCOMMONS Apoptotic execution phase CDC23 +PWCOMMONS Apoptotic execution phase ANAPC1 +PWCOMMONS Apoptotic execution phase ANAPC2 +PWCOMMONS Apoptotic execution phase UBE2D1 +PWCOMMONS Apoptotic execution phase CDC27 +PWCOMMONS Apoptotic execution phase ANAPC4 +PWCOMMONS Apoptotic execution phase ANAPC10 +PWCOMMONS Apoptotic execution phase ANAPC7 +PWCOMMONS Apoptotic execution phase UBE2C +PWCOMMONS Apoptotic execution phase CDC26 +PWCOMMONS Apoptotic execution phase CDC16 +PWCOMMONS Apoptotic execution phase UBE2E1 +PWCOMMONS Apoptotic execution phase PSMC6 +PWCOMMONS Apoptotic execution phase PSMA3 +PWCOMMONS Apoptotic execution phase PSMD8 +PWCOMMONS Apoptotic execution phase PSMD10 +PWCOMMONS Apoptotic execution phase PSMD1 +PWCOMMONS Apoptotic execution phase PSMD6 +PWCOMMONS Apoptotic execution phase PSMB5 +PWCOMMONS Apoptotic execution phase PSMB4 +PWCOMMONS Apoptotic execution phase PSMD4 +PWCOMMONS Apoptotic execution phase PSMA2 +PWCOMMONS Apoptotic execution phase PSMB8 +PWCOMMONS Apoptotic execution phase PSMD5 +PWCOMMONS Apoptotic execution phase PSMB6 +PWCOMMONS Apoptotic execution phase PSME3 +PWCOMMONS Apoptotic execution phase PSMB3 +PWCOMMONS Apoptotic execution phase PSMB7 +PWCOMMONS Apoptotic execution phase PSME1 +PWCOMMONS Apoptotic execution phase PSMD11 +PWCOMMONS Apoptotic execution phase PSMA5 +PWCOMMONS Apoptotic execution phase PSMC5 +PWCOMMONS Apoptotic execution phase PSMC1 +PWCOMMONS Apoptotic execution phase PSMD7 +PWCOMMONS Apoptotic execution phase PSMD3 +PWCOMMONS Apoptotic execution phase PSMB2 +PWCOMMONS Apoptotic execution phase PSMD13 +PWCOMMONS Apoptotic execution phase PSMD14 +PWCOMMONS Apoptotic execution phase PSMB1 +PWCOMMONS Apoptotic execution phase PSMA6 +PWCOMMONS Apoptotic execution phase PSMB9 +PWCOMMONS Apoptotic execution phase PSMB10 +PWCOMMONS Apoptotic execution phase PSMD9 +PWCOMMONS Apoptotic execution phase PSMC4 +PWCOMMONS Apoptotic execution phase PSMA1 +PWCOMMONS Apoptotic execution phase PSMA4 +PWCOMMONS Apoptotic execution phase PSMA7 +PWCOMMONS Apoptotic execution phase PSMF1 +PWCOMMONS Apoptotic execution phase PSME2 +PWCOMMONS Apoptotic execution phase PSMD12 +PWCOMMONS Apoptotic execution phase PSMC3 +PWCOMMONS Apoptotic execution phase PSMC2 +PWCOMMONS Apoptotic execution phase PSMD2 +PWCOMMONS Apoptotic execution phase CDC25A +PWCOMMONS Apoptotic execution phase +PWCOMMONS Apoptosis induced DNA fragmentation DFFB +PWCOMMONS Apoptosis induced DNA fragmentation CASP3 +PWCOMMONS Apoptosis induced DNA fragmentation KPNB1 +PWCOMMONS Apoptosis induced DNA fragmentation KPNA1 +PWCOMMONS Apoptosis induced DNA fragmentation +PWCOMMONS Activation of DNA fragmentation factor DFFB +PWCOMMONS Activation of DNA fragmentation factor CASP3 +PWCOMMONS Activation of DNA fragmentation factor KPNB1 +PWCOMMONS Activation of DNA fragmentation factor KPNA1 +PWCOMMONS Activation of DNA fragmentation factor +PWCOMMONS Apoptotic cleavage of cellular proteins TJP2 +PWCOMMONS Apoptotic cleavage of cellular proteins DSG3 +PWCOMMONS Apoptotic cleavage of cellular proteins CDH1 +PWCOMMONS Apoptotic cleavage of cellular proteins PKP1 +PWCOMMONS Apoptotic cleavage of cellular proteins CASP3 +PWCOMMONS Apoptotic cleavage of cellular proteins DSP +PWCOMMONS Apoptotic cleavage of cellular proteins DSG2 +PWCOMMONS Apoptotic cleavage of cellular proteins DSG1 +PWCOMMONS Apoptotic cleavage of cellular proteins FNTA +PWCOMMONS Apoptotic cleavage of cellular proteins CASP8 +PWCOMMONS Apoptotic cleavage of cellular proteins GSN +PWCOMMONS Apoptotic cleavage of cellular proteins SPTAN1 +PWCOMMONS Apoptotic cleavage of cellular proteins ADD1 +PWCOMMONS Apoptotic cleavage of cellular proteins MAPT +PWCOMMONS Apoptotic cleavage of cellular proteins PLEC1 +PWCOMMONS Apoptotic cleavage of cellular proteins VIM +PWCOMMONS Apoptotic cleavage of cellular proteins GAS2 +PWCOMMONS Apoptotic cleavage of cellular proteins DBNL +PWCOMMONS Apoptotic cleavage of cellular proteins CASP6 +PWCOMMONS Apoptotic cleavage of cellular proteins ACIN1 +PWCOMMONS Apoptotic cleavage of cellular proteins MST4 +PWCOMMONS Apoptotic cleavage of cellular proteins PTK2 +PWCOMMONS Apoptotic cleavage of cellular proteins CASP7 +PWCOMMONS Apoptotic cleavage of cellular proteins BIRC2 +PWCOMMONS Apoptotic cleavage of cellular proteins STK24 +PWCOMMONS Apoptotic cleavage of cellular proteins PRKCQ +PWCOMMONS Apoptotic cleavage of cellular proteins ROCK1 +PWCOMMONS Apoptotic cleavage of cellular proteins CLSPN +PWCOMMONS Apoptotic cleavage of cellular proteins LMNB1 +PWCOMMONS Apoptotic cleavage of cellular proteins BCAP31 +PWCOMMONS Apoptotic cleavage of cellular proteins BMX +PWCOMMONS Apoptotic cleavage of cellular proteins PRKCD +PWCOMMONS Apoptotic cleavage of cellular proteins +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins SPTAN1 +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins ADD1 +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins CASP3 +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins MAPT +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins PLEC1 +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins VIM +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins GAS2 +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins DBNL +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins CASP8 +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins CASP6 +PWCOMMONS Caspase-mediated cleavage of cytoskeletal proteins +PWCOMMONS Breakdown of the nuclear lamina CASP6 +PWCOMMONS Breakdown of the nuclear lamina +PWCOMMONS Stimulation of the cell death response by PAK-2p34 ARHGAP10 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 FZR1 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 ANAPC5 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 ANAPC11 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 CDC23 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 ANAPC1 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 ANAPC2 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 UBE2D1 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 CDC27 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 ANAPC4 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 ANAPC10 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 ANAPC7 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 UBE2C +PWCOMMONS Stimulation of the cell death response by PAK-2p34 CDC26 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 CDC16 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 UBE2E1 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMC6 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMA3 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD8 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD10 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD1 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD6 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMB5 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMB4 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD4 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMA2 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMB8 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD5 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMB6 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSME3 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMB3 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMB7 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSME1 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD11 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMA5 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMC5 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMC1 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD7 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD3 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMB2 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD13 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD14 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMB1 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMA6 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMB9 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMB10 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD9 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMC4 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMA1 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMA4 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMA7 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMF1 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSME2 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD12 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMC3 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMC2 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 PSMD2 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 CDC25A +PWCOMMONS Stimulation of the cell death response by PAK-2p34 CASP3 +PWCOMMONS Stimulation of the cell death response by PAK-2p34 +PWCOMMONS Cleavage of the damaged purine OGG1 +PWCOMMONS Cleavage of the damaged purine MPG +PWCOMMONS Cleavage of the damaged purine MUTYH +PWCOMMONS Cleavage of the damaged purine +PWCOMMONS FasL/ CD95L signaling BID +PWCOMMONS FasL/ CD95L signaling MST4 +PWCOMMONS FasL/ CD95L signaling CASP8 +PWCOMMONS FasL/ CD95L signaling FADD +PWCOMMONS FasL/ CD95L signaling TNFRSF10B +PWCOMMONS FasL/ CD95L signaling TNFSF10 +PWCOMMONS FasL/ CD95L signaling DSG3 +PWCOMMONS FasL/ CD95L signaling GSN +PWCOMMONS FasL/ CD95L signaling DIABLO +PWCOMMONS FasL/ CD95L signaling XIAP +PWCOMMONS FasL/ CD95L signaling CASP3 +PWCOMMONS FasL/ CD95L signaling FASLG +PWCOMMONS FasL/ CD95L signaling FAS +PWCOMMONS FasL/ CD95L signaling BAX +PWCOMMONS FasL/ CD95L signaling BAK1 +PWCOMMONS FasL/ CD95L signaling PAK2 +PWCOMMONS FasL/ CD95L signaling ARHGAP10 +PWCOMMONS FasL/ CD95L signaling GAS2 +PWCOMMONS FasL/ CD95L signaling VIM +PWCOMMONS FasL/ CD95L signaling CASP9 +PWCOMMONS FasL/ CD95L signaling DSG1 +PWCOMMONS FasL/ CD95L signaling CYCS +PWCOMMONS FasL/ CD95L signaling APAF1 +PWCOMMONS FasL/ CD95L signaling CASP10 +PWCOMMONS FasL/ CD95L signaling FZR1 +PWCOMMONS FasL/ CD95L signaling ANAPC5 +PWCOMMONS FasL/ CD95L signaling ANAPC11 +PWCOMMONS FasL/ CD95L signaling CDC23 +PWCOMMONS FasL/ CD95L signaling ANAPC1 +PWCOMMONS FasL/ CD95L signaling ANAPC2 +PWCOMMONS FasL/ CD95L signaling UBE2D1 +PWCOMMONS FasL/ CD95L signaling CDC27 +PWCOMMONS FasL/ CD95L signaling ANAPC4 +PWCOMMONS FasL/ CD95L signaling ANAPC10 +PWCOMMONS FasL/ CD95L signaling ANAPC7 +PWCOMMONS FasL/ CD95L signaling UBE2C +PWCOMMONS FasL/ CD95L signaling CDC26 +PWCOMMONS FasL/ CD95L signaling CDC16 +PWCOMMONS FasL/ CD95L signaling UBE2E1 +PWCOMMONS FasL/ CD95L signaling PSMC6 +PWCOMMONS FasL/ CD95L signaling PSMA3 +PWCOMMONS FasL/ CD95L signaling PSMD8 +PWCOMMONS FasL/ CD95L signaling PSMD10 +PWCOMMONS FasL/ CD95L signaling PSMD1 +PWCOMMONS FasL/ CD95L signaling PSMD6 +PWCOMMONS FasL/ CD95L signaling PSMB5 +PWCOMMONS FasL/ CD95L signaling PSMB4 +PWCOMMONS FasL/ CD95L signaling PSMD4 +PWCOMMONS FasL/ CD95L signaling PSMA2 +PWCOMMONS FasL/ CD95L signaling PSMB8 +PWCOMMONS FasL/ CD95L signaling PSMD5 +PWCOMMONS FasL/ CD95L signaling PSMB6 +PWCOMMONS FasL/ CD95L signaling PSME3 +PWCOMMONS FasL/ CD95L signaling PSMB3 +PWCOMMONS FasL/ CD95L signaling PSMB7 +PWCOMMONS FasL/ CD95L signaling PSME1 +PWCOMMONS FasL/ CD95L signaling PSMD11 +PWCOMMONS FasL/ CD95L signaling PSMA5 +PWCOMMONS FasL/ CD95L signaling PSMC5 +PWCOMMONS FasL/ CD95L signaling PSMC1 +PWCOMMONS FasL/ CD95L signaling PSMD7 +PWCOMMONS FasL/ CD95L signaling PSMD3 +PWCOMMONS FasL/ CD95L signaling PSMB2 +PWCOMMONS FasL/ CD95L signaling PSMD13 +PWCOMMONS FasL/ CD95L signaling PSMD14 +PWCOMMONS FasL/ CD95L signaling PSMB1 +PWCOMMONS FasL/ CD95L signaling PSMA6 +PWCOMMONS FasL/ CD95L signaling PSMB9 +PWCOMMONS FasL/ CD95L signaling PSMB10 +PWCOMMONS FasL/ CD95L signaling PSMD9 +PWCOMMONS FasL/ CD95L signaling PSMC4 +PWCOMMONS FasL/ CD95L signaling PSMA1 +PWCOMMONS FasL/ CD95L signaling PSMA4 +PWCOMMONS FasL/ CD95L signaling PSMA7 +PWCOMMONS FasL/ CD95L signaling PSMF1 +PWCOMMONS FasL/ CD95L signaling PSME2 +PWCOMMONS FasL/ CD95L signaling PSMD12 +PWCOMMONS FasL/ CD95L signaling PSMC3 +PWCOMMONS FasL/ CD95L signaling PSMC2 +PWCOMMONS FasL/ CD95L signaling PSMD2 +PWCOMMONS FasL/ CD95L signaling NMT1 +PWCOMMONS FasL/ CD95L signaling ADD1 +PWCOMMONS FasL/ CD95L signaling BIRC2 +PWCOMMONS FasL/ CD95L signaling MAPT +PWCOMMONS FasL/ CD95L signaling DBNL +PWCOMMONS FasL/ CD95L signaling DSG2 +PWCOMMONS FasL/ CD95L signaling BMX +PWCOMMONS FasL/ CD95L signaling BCL2 +PWCOMMONS FasL/ CD95L signaling CDH1 +PWCOMMONS FasL/ CD95L signaling SPTAN1 +PWCOMMONS FasL/ CD95L signaling CASP7 +PWCOMMONS FasL/ CD95L signaling CLSPN +PWCOMMONS FasL/ CD95L signaling DFFA +PWCOMMONS FasL/ CD95L signaling DFFB +PWCOMMONS FasL/ CD95L signaling KPNB1 +PWCOMMONS FasL/ CD95L signaling KPNA1 +PWCOMMONS FasL/ CD95L signaling OCLN +PWCOMMONS FasL/ CD95L signaling TJP2 +PWCOMMONS FasL/ CD95L signaling PKP1 +PWCOMMONS FasL/ CD95L signaling DSP +PWCOMMONS FasL/ CD95L signaling CASP6 +PWCOMMONS FasL/ CD95L signaling ACIN1 +PWCOMMONS FasL/ CD95L signaling STK24 +PWCOMMONS FasL/ CD95L signaling PRKCQ +PWCOMMONS FasL/ CD95L signaling ROCK1 +PWCOMMONS FasL/ CD95L signaling LMNB1 +PWCOMMONS FasL/ CD95L signaling BCAP31 +PWCOMMONS FasL/ CD95L signaling PRKCD +PWCOMMONS FasL/ CD95L signaling CDC25A +PWCOMMONS FasL/ CD95L signaling FNTA +PWCOMMONS FasL/ CD95L signaling PTK2 +PWCOMMONS FasL/ CD95L signaling BAD +PWCOMMONS FasL/ CD95L signaling PLEC1 +PWCOMMONS FasL/ CD95L signaling +PWCOMMONS SMAC-mediated apoptotic response MST4 +PWCOMMONS SMAC-mediated apoptotic response DSG3 +PWCOMMONS SMAC-mediated apoptotic response DIABLO +PWCOMMONS SMAC-mediated apoptotic response XIAP +PWCOMMONS SMAC-mediated apoptotic response CASP3 +PWCOMMONS SMAC-mediated apoptotic response SPTAN1 +PWCOMMONS SMAC-mediated apoptotic response CASP9 +PWCOMMONS SMAC-mediated apoptotic response CDH1 +PWCOMMONS SMAC-mediated apoptotic response CASP7 +PWCOMMONS SMAC-mediated apoptotic response GAS2 +PWCOMMONS SMAC-mediated apoptotic response DSG1 +PWCOMMONS SMAC-mediated apoptotic response FNTA +PWCOMMONS SMAC-mediated apoptotic response PTK2 +PWCOMMONS SMAC-mediated apoptotic response ADD1 +PWCOMMONS SMAC-mediated apoptotic response BIRC2 +PWCOMMONS SMAC-mediated apoptotic response DBNL +PWCOMMONS SMAC-mediated apoptotic response DSG2 +PWCOMMONS SMAC-mediated apoptotic response BMX +PWCOMMONS SMAC-mediated apoptotic response DFFA +PWCOMMONS SMAC-mediated apoptotic response DFFB +PWCOMMONS SMAC-mediated apoptotic response KPNB1 +PWCOMMONS SMAC-mediated apoptotic response KPNA1 +PWCOMMONS SMAC-mediated apoptotic response OCLN +PWCOMMONS SMAC-mediated apoptotic response TJP2 +PWCOMMONS SMAC-mediated apoptotic response PKP1 +PWCOMMONS SMAC-mediated apoptotic response DSP +PWCOMMONS SMAC-mediated apoptotic response CASP8 +PWCOMMONS SMAC-mediated apoptotic response GSN +PWCOMMONS SMAC-mediated apoptotic response MAPT +PWCOMMONS SMAC-mediated apoptotic response PLEC1 +PWCOMMONS SMAC-mediated apoptotic response CASP6 +PWCOMMONS SMAC-mediated apoptotic response ACIN1 +PWCOMMONS SMAC-mediated apoptotic response STK24 +PWCOMMONS SMAC-mediated apoptotic response PRKCQ +PWCOMMONS SMAC-mediated apoptotic response ROCK1 +PWCOMMONS SMAC-mediated apoptotic response CLSPN +PWCOMMONS SMAC-mediated apoptotic response LMNB1 +PWCOMMONS SMAC-mediated apoptotic response BCAP31 +PWCOMMONS SMAC-mediated apoptotic response PRKCD +PWCOMMONS SMAC-mediated apoptotic response PAK2 +PWCOMMONS SMAC-mediated apoptotic response ARHGAP10 +PWCOMMONS SMAC-mediated apoptotic response FZR1 +PWCOMMONS SMAC-mediated apoptotic response ANAPC5 +PWCOMMONS SMAC-mediated apoptotic response ANAPC11 +PWCOMMONS SMAC-mediated apoptotic response CDC23 +PWCOMMONS SMAC-mediated apoptotic response ANAPC1 +PWCOMMONS SMAC-mediated apoptotic response ANAPC2 +PWCOMMONS SMAC-mediated apoptotic response UBE2D1 +PWCOMMONS SMAC-mediated apoptotic response CDC27 +PWCOMMONS SMAC-mediated apoptotic response ANAPC4 +PWCOMMONS SMAC-mediated apoptotic response ANAPC10 +PWCOMMONS SMAC-mediated apoptotic response ANAPC7 +PWCOMMONS SMAC-mediated apoptotic response UBE2C +PWCOMMONS SMAC-mediated apoptotic response CDC26 +PWCOMMONS SMAC-mediated apoptotic response CDC16 +PWCOMMONS SMAC-mediated apoptotic response UBE2E1 +PWCOMMONS SMAC-mediated apoptotic response PSMC6 +PWCOMMONS SMAC-mediated apoptotic response PSMA3 +PWCOMMONS SMAC-mediated apoptotic response PSMD8 +PWCOMMONS SMAC-mediated apoptotic response PSMD10 +PWCOMMONS SMAC-mediated apoptotic response PSMD1 +PWCOMMONS SMAC-mediated apoptotic response PSMD6 +PWCOMMONS SMAC-mediated apoptotic response PSMB5 +PWCOMMONS SMAC-mediated apoptotic response PSMB4 +PWCOMMONS SMAC-mediated apoptotic response PSMD4 +PWCOMMONS SMAC-mediated apoptotic response PSMA2 +PWCOMMONS SMAC-mediated apoptotic response PSMB8 +PWCOMMONS SMAC-mediated apoptotic response PSMD5 +PWCOMMONS SMAC-mediated apoptotic response PSMB6 +PWCOMMONS SMAC-mediated apoptotic response PSME3 +PWCOMMONS SMAC-mediated apoptotic response PSMB3 +PWCOMMONS SMAC-mediated apoptotic response PSMB7 +PWCOMMONS SMAC-mediated apoptotic response PSME1 +PWCOMMONS SMAC-mediated apoptotic response PSMD11 +PWCOMMONS SMAC-mediated apoptotic response PSMA5 +PWCOMMONS SMAC-mediated apoptotic response PSMC5 +PWCOMMONS SMAC-mediated apoptotic response PSMC1 +PWCOMMONS SMAC-mediated apoptotic response PSMD7 +PWCOMMONS SMAC-mediated apoptotic response PSMD3 +PWCOMMONS SMAC-mediated apoptotic response PSMB2 +PWCOMMONS SMAC-mediated apoptotic response PSMD13 +PWCOMMONS SMAC-mediated apoptotic response PSMD14 +PWCOMMONS SMAC-mediated apoptotic response PSMB1 +PWCOMMONS SMAC-mediated apoptotic response PSMA6 +PWCOMMONS SMAC-mediated apoptotic response PSMB9 +PWCOMMONS SMAC-mediated apoptotic response PSMB10 +PWCOMMONS SMAC-mediated apoptotic response PSMD9 +PWCOMMONS SMAC-mediated apoptotic response PSMC4 +PWCOMMONS SMAC-mediated apoptotic response PSMA1 +PWCOMMONS SMAC-mediated apoptotic response PSMA4 +PWCOMMONS SMAC-mediated apoptotic response PSMA7 +PWCOMMONS SMAC-mediated apoptotic response PSMF1 +PWCOMMONS SMAC-mediated apoptotic response PSME2 +PWCOMMONS SMAC-mediated apoptotic response PSMD12 +PWCOMMONS SMAC-mediated apoptotic response PSMC3 +PWCOMMONS SMAC-mediated apoptotic response PSMC2 +PWCOMMONS SMAC-mediated apoptotic response PSMD2 +PWCOMMONS SMAC-mediated apoptotic response CDC25A +PWCOMMONS SMAC-mediated apoptotic response +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes FNTA +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes CASP3 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes XIAP +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes DIABLO +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes MST4 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes DSG3 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes PTK2 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes SPTAN1 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes ADD1 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes BIRC2 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes CASP7 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes CDH1 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes GAS2 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes DBNL +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes DSG2 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes CASP9 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes DSG1 +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes BMX +PWCOMMONS SMAC-mediated dissociation of IAP:caspase complexes +PWCOMMONS SMAC binds to IAPs MST4 +PWCOMMONS SMAC binds to IAPs DSG3 +PWCOMMONS SMAC binds to IAPs DIABLO +PWCOMMONS SMAC binds to IAPs XIAP +PWCOMMONS SMAC binds to IAPs CASP3 +PWCOMMONS SMAC binds to IAPs SPTAN1 +PWCOMMONS SMAC binds to IAPs CASP9 +PWCOMMONS SMAC binds to IAPs CDH1 +PWCOMMONS SMAC binds to IAPs CASP7 +PWCOMMONS SMAC binds to IAPs GAS2 +PWCOMMONS SMAC binds to IAPs DSG1 +PWCOMMONS SMAC binds to IAPs FNTA +PWCOMMONS SMAC binds to IAPs PTK2 +PWCOMMONS SMAC binds to IAPs ADD1 +PWCOMMONS SMAC binds to IAPs BIRC2 +PWCOMMONS SMAC binds to IAPs DBNL +PWCOMMONS SMAC binds to IAPs DSG2 +PWCOMMONS SMAC binds to IAPs BMX +PWCOMMONS SMAC binds to IAPs +PWCOMMONS Cytochrome c-mediated apoptotic response DSG3 +PWCOMMONS Cytochrome c-mediated apoptotic response GSN +PWCOMMONS Cytochrome c-mediated apoptotic response SPTAN1 +PWCOMMONS Cytochrome c-mediated apoptotic response CDH1 +PWCOMMONS Cytochrome c-mediated apoptotic response CASP7 +PWCOMMONS Cytochrome c-mediated apoptotic response PAK2 +PWCOMMONS Cytochrome c-mediated apoptotic response ARHGAP10 +PWCOMMONS Cytochrome c-mediated apoptotic response CASP3 +PWCOMMONS Cytochrome c-mediated apoptotic response CLSPN +PWCOMMONS Cytochrome c-mediated apoptotic response GAS2 +PWCOMMONS Cytochrome c-mediated apoptotic response DFFA +PWCOMMONS Cytochrome c-mediated apoptotic response DFFB +PWCOMMONS Cytochrome c-mediated apoptotic response KPNB1 +PWCOMMONS Cytochrome c-mediated apoptotic response KPNA1 +PWCOMMONS Cytochrome c-mediated apoptotic response OCLN +PWCOMMONS Cytochrome c-mediated apoptotic response TJP2 +PWCOMMONS Cytochrome c-mediated apoptotic response PKP1 +PWCOMMONS Cytochrome c-mediated apoptotic response DSP +PWCOMMONS Cytochrome c-mediated apoptotic response CASP8 +PWCOMMONS Cytochrome c-mediated apoptotic response PLEC1 +PWCOMMONS Cytochrome c-mediated apoptotic response VIM +PWCOMMONS Cytochrome c-mediated apoptotic response CASP6 +PWCOMMONS Cytochrome c-mediated apoptotic response ACIN1 +PWCOMMONS Cytochrome c-mediated apoptotic response STK24 +PWCOMMONS Cytochrome c-mediated apoptotic response PRKCQ +PWCOMMONS Cytochrome c-mediated apoptotic response ROCK1 +PWCOMMONS Cytochrome c-mediated apoptotic response LMNB1 +PWCOMMONS Cytochrome c-mediated apoptotic response BCAP31 +PWCOMMONS Cytochrome c-mediated apoptotic response PRKCD +PWCOMMONS Cytochrome c-mediated apoptotic response CDC25A +PWCOMMONS Cytochrome c-mediated apoptotic response DSG1 +PWCOMMONS Cytochrome c-mediated apoptotic response CYCS +PWCOMMONS Cytochrome c-mediated apoptotic response APAF1 +PWCOMMONS Cytochrome c-mediated apoptotic response CASP9 +PWCOMMONS Cytochrome c-mediated apoptotic response FNTA +PWCOMMONS Cytochrome c-mediated apoptotic response FZR1 +PWCOMMONS Cytochrome c-mediated apoptotic response ANAPC5 +PWCOMMONS Cytochrome c-mediated apoptotic response ANAPC11 +PWCOMMONS Cytochrome c-mediated apoptotic response CDC23 +PWCOMMONS Cytochrome c-mediated apoptotic response ANAPC1 +PWCOMMONS Cytochrome c-mediated apoptotic response ANAPC2 +PWCOMMONS Cytochrome c-mediated apoptotic response UBE2D1 +PWCOMMONS Cytochrome c-mediated apoptotic response CDC27 +PWCOMMONS Cytochrome c-mediated apoptotic response ANAPC4 +PWCOMMONS Cytochrome c-mediated apoptotic response ANAPC10 +PWCOMMONS Cytochrome c-mediated apoptotic response ANAPC7 +PWCOMMONS Cytochrome c-mediated apoptotic response UBE2C +PWCOMMONS Cytochrome c-mediated apoptotic response CDC26 +PWCOMMONS Cytochrome c-mediated apoptotic response CDC16 +PWCOMMONS Cytochrome c-mediated apoptotic response UBE2E1 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMC6 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMA3 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD8 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD10 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD1 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD6 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMB5 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMB4 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD4 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMA2 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMB8 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD5 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMB6 +PWCOMMONS Cytochrome c-mediated apoptotic response PSME3 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMB3 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMB7 +PWCOMMONS Cytochrome c-mediated apoptotic response PSME1 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD11 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMA5 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMC5 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMC1 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD7 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD3 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMB2 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD13 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD14 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMB1 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMA6 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMB9 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMB10 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD9 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMC4 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMA1 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMA4 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMA7 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMF1 +PWCOMMONS Cytochrome c-mediated apoptotic response PSME2 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD12 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMC3 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMC2 +PWCOMMONS Cytochrome c-mediated apoptotic response PSMD2 +PWCOMMONS Cytochrome c-mediated apoptotic response PTK2 +PWCOMMONS Cytochrome c-mediated apoptotic response ADD1 +PWCOMMONS Cytochrome c-mediated apoptotic response BIRC2 +PWCOMMONS Cytochrome c-mediated apoptotic response MAPT +PWCOMMONS Cytochrome c-mediated apoptotic response DBNL +PWCOMMONS Cytochrome c-mediated apoptotic response DSG2 +PWCOMMONS Cytochrome c-mediated apoptotic response BMX +PWCOMMONS Cytochrome c-mediated apoptotic response +PWCOMMONS Formation of apoptosome APAF1 +PWCOMMONS Formation of apoptosome CASP9 +PWCOMMONS Formation of apoptosome +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage DSG3 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage GSN +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage SPTAN1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CDH1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CASP7 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PAK2 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage ARHGAP10 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CASP3 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CLSPN +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage GAS2 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage DFFA +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage DFFB +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage KPNB1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage KPNA1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage OCLN +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage TJP2 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PKP1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage DSP +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CASP8 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PLEC1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage VIM +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CASP6 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage ACIN1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage STK24 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PRKCQ +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage ROCK1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage LMNB1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage BCAP31 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PRKCD +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CDC25A +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage DSG1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CYCS +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage APAF1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CASP9 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage FNTA +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage FZR1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage ANAPC5 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage ANAPC11 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CDC23 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage ANAPC1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage ANAPC2 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage UBE2D1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CDC27 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage ANAPC4 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage ANAPC10 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage ANAPC7 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage UBE2C +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CDC26 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage CDC16 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage UBE2E1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMC6 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMA3 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD8 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD10 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD6 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMB5 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMB4 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD4 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMA2 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMB8 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD5 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMB6 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSME3 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMB3 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMB7 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSME1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD11 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMA5 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMC5 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMC1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD7 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD3 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMB2 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD13 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD14 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMB1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMA6 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMB9 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMB10 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD9 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMC4 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMA1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMA4 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMA7 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMF1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSME2 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD12 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMC3 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMC2 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PSMD2 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage PTK2 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage ADD1 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage BIRC2 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage MAPT +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage DBNL +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage DSG2 +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage BMX +PWCOMMONS Activation of caspases through apoptosome-mediated cleavage +PWCOMMONS Release of apoptotic factors from the mitochondria DSG3 +PWCOMMONS Release of apoptotic factors from the mitochondria GSN +PWCOMMONS Release of apoptotic factors from the mitochondria DIABLO +PWCOMMONS Release of apoptotic factors from the mitochondria XIAP +PWCOMMONS Release of apoptotic factors from the mitochondria CASP3 +PWCOMMONS Release of apoptotic factors from the mitochondria PAK2 +PWCOMMONS Release of apoptotic factors from the mitochondria ARHGAP10 +PWCOMMONS Release of apoptotic factors from the mitochondria GAS2 +PWCOMMONS Release of apoptotic factors from the mitochondria VIM +PWCOMMONS Release of apoptotic factors from the mitochondria CASP9 +PWCOMMONS Release of apoptotic factors from the mitochondria DSG1 +PWCOMMONS Release of apoptotic factors from the mitochondria CYCS +PWCOMMONS Release of apoptotic factors from the mitochondria APAF1 +PWCOMMONS Release of apoptotic factors from the mitochondria FZR1 +PWCOMMONS Release of apoptotic factors from the mitochondria ANAPC5 +PWCOMMONS Release of apoptotic factors from the mitochondria ANAPC11 +PWCOMMONS Release of apoptotic factors from the mitochondria CDC23 +PWCOMMONS Release of apoptotic factors from the mitochondria ANAPC1 +PWCOMMONS Release of apoptotic factors from the mitochondria ANAPC2 +PWCOMMONS Release of apoptotic factors from the mitochondria UBE2D1 +PWCOMMONS Release of apoptotic factors from the mitochondria CDC27 +PWCOMMONS Release of apoptotic factors from the mitochondria ANAPC4 +PWCOMMONS Release of apoptotic factors from the mitochondria ANAPC10 +PWCOMMONS Release of apoptotic factors from the mitochondria ANAPC7 +PWCOMMONS Release of apoptotic factors from the mitochondria UBE2C +PWCOMMONS Release of apoptotic factors from the mitochondria CDC26 +PWCOMMONS Release of apoptotic factors from the mitochondria CDC16 +PWCOMMONS Release of apoptotic factors from the mitochondria UBE2E1 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMC6 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMA3 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD8 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD10 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD1 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD6 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMB5 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMB4 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD4 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMA2 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMB8 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD5 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMB6 +PWCOMMONS Release of apoptotic factors from the mitochondria PSME3 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMB3 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMB7 +PWCOMMONS Release of apoptotic factors from the mitochondria PSME1 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD11 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMA5 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMC5 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMC1 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD7 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD3 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMB2 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD13 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD14 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMB1 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMA6 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMB9 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMB10 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD9 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMC4 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMA1 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMA4 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMA7 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMF1 +PWCOMMONS Release of apoptotic factors from the mitochondria PSME2 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD12 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMC3 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMC2 +PWCOMMONS Release of apoptotic factors from the mitochondria PSMD2 +PWCOMMONS Release of apoptotic factors from the mitochondria ADD1 +PWCOMMONS Release of apoptotic factors from the mitochondria BIRC2 +PWCOMMONS Release of apoptotic factors from the mitochondria MAPT +PWCOMMONS Release of apoptotic factors from the mitochondria DBNL +PWCOMMONS Release of apoptotic factors from the mitochondria DSG2 +PWCOMMONS Release of apoptotic factors from the mitochondria BMX +PWCOMMONS Release of apoptotic factors from the mitochondria SPTAN1 +PWCOMMONS Release of apoptotic factors from the mitochondria CDH1 +PWCOMMONS Release of apoptotic factors from the mitochondria CASP7 +PWCOMMONS Release of apoptotic factors from the mitochondria CLSPN +PWCOMMONS Release of apoptotic factors from the mitochondria CDC25A +PWCOMMONS Release of apoptotic factors from the mitochondria DFFA +PWCOMMONS Release of apoptotic factors from the mitochondria DFFB +PWCOMMONS Release of apoptotic factors from the mitochondria KPNB1 +PWCOMMONS Release of apoptotic factors from the mitochondria KPNA1 +PWCOMMONS Release of apoptotic factors from the mitochondria OCLN +PWCOMMONS Release of apoptotic factors from the mitochondria TJP2 +PWCOMMONS Release of apoptotic factors from the mitochondria PKP1 +PWCOMMONS Release of apoptotic factors from the mitochondria DSP +PWCOMMONS Release of apoptotic factors from the mitochondria CASP8 +PWCOMMONS Release of apoptotic factors from the mitochondria PLEC1 +PWCOMMONS Release of apoptotic factors from the mitochondria CASP6 +PWCOMMONS Release of apoptotic factors from the mitochondria ACIN1 +PWCOMMONS Release of apoptotic factors from the mitochondria STK24 +PWCOMMONS Release of apoptotic factors from the mitochondria PRKCQ +PWCOMMONS Release of apoptotic factors from the mitochondria ROCK1 +PWCOMMONS Release of apoptotic factors from the mitochondria LMNB1 +PWCOMMONS Release of apoptotic factors from the mitochondria BCAP31 +PWCOMMONS Release of apoptotic factors from the mitochondria PRKCD +PWCOMMONS Release of apoptotic factors from the mitochondria FNTA +PWCOMMONS Release of apoptotic factors from the mitochondria PTK2 +PWCOMMONS Release of apoptotic factors from the mitochondria +PWCOMMONS Apoptotic factor-mediated response MST4 +PWCOMMONS Apoptotic factor-mediated response DSG3 +PWCOMMONS Apoptotic factor-mediated response DIABLO +PWCOMMONS Apoptotic factor-mediated response XIAP +PWCOMMONS Apoptotic factor-mediated response CASP3 +PWCOMMONS Apoptotic factor-mediated response SPTAN1 +PWCOMMONS Apoptotic factor-mediated response CASP9 +PWCOMMONS Apoptotic factor-mediated response CDH1 +PWCOMMONS Apoptotic factor-mediated response CASP7 +PWCOMMONS Apoptotic factor-mediated response GAS2 +PWCOMMONS Apoptotic factor-mediated response DSG1 +PWCOMMONS Apoptotic factor-mediated response FNTA +PWCOMMONS Apoptotic factor-mediated response PTK2 +PWCOMMONS Apoptotic factor-mediated response ADD1 +PWCOMMONS Apoptotic factor-mediated response BIRC2 +PWCOMMONS Apoptotic factor-mediated response DBNL +PWCOMMONS Apoptotic factor-mediated response DSG2 +PWCOMMONS Apoptotic factor-mediated response BMX +PWCOMMONS Apoptotic factor-mediated response DFFA +PWCOMMONS Apoptotic factor-mediated response DFFB +PWCOMMONS Apoptotic factor-mediated response KPNB1 +PWCOMMONS Apoptotic factor-mediated response KPNA1 +PWCOMMONS Apoptotic factor-mediated response OCLN +PWCOMMONS Apoptotic factor-mediated response TJP2 +PWCOMMONS Apoptotic factor-mediated response PKP1 +PWCOMMONS Apoptotic factor-mediated response DSP +PWCOMMONS Apoptotic factor-mediated response CASP8 +PWCOMMONS Apoptotic factor-mediated response GSN +PWCOMMONS Apoptotic factor-mediated response MAPT +PWCOMMONS Apoptotic factor-mediated response PLEC1 +PWCOMMONS Apoptotic factor-mediated response CASP6 +PWCOMMONS Apoptotic factor-mediated response ACIN1 +PWCOMMONS Apoptotic factor-mediated response STK24 +PWCOMMONS Apoptotic factor-mediated response PRKCQ +PWCOMMONS Apoptotic factor-mediated response ROCK1 +PWCOMMONS Apoptotic factor-mediated response CLSPN +PWCOMMONS Apoptotic factor-mediated response LMNB1 +PWCOMMONS Apoptotic factor-mediated response BCAP31 +PWCOMMONS Apoptotic factor-mediated response PRKCD +PWCOMMONS Apoptotic factor-mediated response PAK2 +PWCOMMONS Apoptotic factor-mediated response ARHGAP10 +PWCOMMONS Apoptotic factor-mediated response FZR1 +PWCOMMONS Apoptotic factor-mediated response ANAPC5 +PWCOMMONS Apoptotic factor-mediated response ANAPC11 +PWCOMMONS Apoptotic factor-mediated response CDC23 +PWCOMMONS Apoptotic factor-mediated response ANAPC1 +PWCOMMONS Apoptotic factor-mediated response ANAPC2 +PWCOMMONS Apoptotic factor-mediated response UBE2D1 +PWCOMMONS Apoptotic factor-mediated response CDC27 +PWCOMMONS Apoptotic factor-mediated response ANAPC4 +PWCOMMONS Apoptotic factor-mediated response ANAPC10 +PWCOMMONS Apoptotic factor-mediated response ANAPC7 +PWCOMMONS Apoptotic factor-mediated response UBE2C +PWCOMMONS Apoptotic factor-mediated response CDC26 +PWCOMMONS Apoptotic factor-mediated response CDC16 +PWCOMMONS Apoptotic factor-mediated response UBE2E1 +PWCOMMONS Apoptotic factor-mediated response PSMC6 +PWCOMMONS Apoptotic factor-mediated response PSMA3 +PWCOMMONS Apoptotic factor-mediated response PSMD8 +PWCOMMONS Apoptotic factor-mediated response PSMD10 +PWCOMMONS Apoptotic factor-mediated response PSMD1 +PWCOMMONS Apoptotic factor-mediated response PSMD6 +PWCOMMONS Apoptotic factor-mediated response PSMB5 +PWCOMMONS Apoptotic factor-mediated response PSMB4 +PWCOMMONS Apoptotic factor-mediated response PSMD4 +PWCOMMONS Apoptotic factor-mediated response PSMA2 +PWCOMMONS Apoptotic factor-mediated response PSMB8 +PWCOMMONS Apoptotic factor-mediated response PSMD5 +PWCOMMONS Apoptotic factor-mediated response PSMB6 +PWCOMMONS Apoptotic factor-mediated response PSME3 +PWCOMMONS Apoptotic factor-mediated response PSMB3 +PWCOMMONS Apoptotic factor-mediated response PSMB7 +PWCOMMONS Apoptotic factor-mediated response PSME1 +PWCOMMONS Apoptotic factor-mediated response PSMD11 +PWCOMMONS Apoptotic factor-mediated response PSMA5 +PWCOMMONS Apoptotic factor-mediated response PSMC5 +PWCOMMONS Apoptotic factor-mediated response PSMC1 +PWCOMMONS Apoptotic factor-mediated response PSMD7 +PWCOMMONS Apoptotic factor-mediated response PSMD3 +PWCOMMONS Apoptotic factor-mediated response PSMB2 +PWCOMMONS Apoptotic factor-mediated response PSMD13 +PWCOMMONS Apoptotic factor-mediated response PSMD14 +PWCOMMONS Apoptotic factor-mediated response PSMB1 +PWCOMMONS Apoptotic factor-mediated response PSMA6 +PWCOMMONS Apoptotic factor-mediated response PSMB9 +PWCOMMONS Apoptotic factor-mediated response PSMB10 +PWCOMMONS Apoptotic factor-mediated response PSMD9 +PWCOMMONS Apoptotic factor-mediated response PSMC4 +PWCOMMONS Apoptotic factor-mediated response PSMA1 +PWCOMMONS Apoptotic factor-mediated response PSMA4 +PWCOMMONS Apoptotic factor-mediated response PSMA7 +PWCOMMONS Apoptotic factor-mediated response PSMF1 +PWCOMMONS Apoptotic factor-mediated response PSME2 +PWCOMMONS Apoptotic factor-mediated response PSMD12 +PWCOMMONS Apoptotic factor-mediated response PSMC3 +PWCOMMONS Apoptotic factor-mediated response PSMC2 +PWCOMMONS Apoptotic factor-mediated response PSMD2 +PWCOMMONS Apoptotic factor-mediated response CDC25A +PWCOMMONS Apoptotic factor-mediated response CYCS +PWCOMMONS Apoptotic factor-mediated response APAF1 +PWCOMMONS Apoptotic factor-mediated response +PWCOMMONS Transport of connexins along the secretory pathway GJB2 +PWCOMMONS Transport of connexins along the secretory pathway GJB1 +PWCOMMONS Transport of connexins along the secretory pathway +PWCOMMONS Insulin Synthesis and Secretion INS +PWCOMMONS Insulin Synthesis and Secretion SRPRB +PWCOMMONS Insulin Synthesis and Secretion SRPR +PWCOMMONS Insulin Synthesis and Secretion EXOC4 +PWCOMMONS Insulin Synthesis and Secretion EXOC6 +PWCOMMONS Insulin Synthesis and Secretion EXOC5 +PWCOMMONS Insulin Synthesis and Secretion EXOC8 +PWCOMMONS Insulin Synthesis and Secretion EXOC2 +PWCOMMONS Insulin Synthesis and Secretion NKX2-2 +PWCOMMONS Insulin Synthesis and Secretion KIF5B +PWCOMMONS Insulin Synthesis and Secretion SLC30A7 +PWCOMMONS Insulin Synthesis and Secretion PDX1 +PWCOMMONS Insulin Synthesis and Secretion SRP19 +PWCOMMONS Insulin Synthesis and Secretion SRP9 +PWCOMMONS Insulin Synthesis and Secretion SRP54 +PWCOMMONS Insulin Synthesis and Secretion SRP14 +PWCOMMONS Insulin Synthesis and Secretion SRP72 +PWCOMMONS Insulin Synthesis and Secretion ERO1L +PWCOMMONS Insulin Synthesis and Secretion VAMP2 +PWCOMMONS Insulin Synthesis and Secretion SYT5 +PWCOMMONS Insulin Synthesis and Secretion TRAM2 +PWCOMMONS Insulin Synthesis and Secretion SEC61B +PWCOMMONS Insulin Synthesis and Secretion SSR3 +PWCOMMONS Insulin Synthesis and Secretion TRAM1 +PWCOMMONS Insulin Synthesis and Secretion SSR2 +PWCOMMONS Insulin Synthesis and Secretion SSR4 +PWCOMMONS Insulin Synthesis and Secretion SEC61G +PWCOMMONS Insulin Synthesis and Secretion RPN2 +PWCOMMONS Insulin Synthesis and Secretion RPN1 +PWCOMMONS Insulin Synthesis and Secretion DDOST +PWCOMMONS Insulin Synthesis and Secretion DAD1 +PWCOMMONS Insulin Synthesis and Secretion STT3B +PWCOMMONS Insulin Synthesis and Secretion STT3A +PWCOMMONS Insulin Synthesis and Secretion MAFA +PWCOMMONS Insulin Synthesis and Secretion PCSK2 +PWCOMMONS Insulin Synthesis and Secretion SPCS3 +PWCOMMONS Insulin Synthesis and Secretion SEC11C +PWCOMMONS Insulin Synthesis and Secretion SEC11A +PWCOMMONS Insulin Synthesis and Secretion SPCS1 +PWCOMMONS Insulin Synthesis and Secretion SPCS2 +PWCOMMONS Insulin Synthesis and Secretion CPE +PWCOMMONS Insulin Synthesis and Secretion +PWCOMMONS G2/M Transition ANAPC5 +PWCOMMONS G2/M Transition ANAPC11 +PWCOMMONS G2/M Transition CDC23 +PWCOMMONS G2/M Transition ANAPC1 +PWCOMMONS G2/M Transition UBE2D1 +PWCOMMONS G2/M Transition ANAPC2 +PWCOMMONS G2/M Transition CDC27 +PWCOMMONS G2/M Transition ANAPC4 +PWCOMMONS G2/M Transition ANAPC10 +PWCOMMONS G2/M Transition UBE2C +PWCOMMONS G2/M Transition ANAPC7 +PWCOMMONS G2/M Transition CDC26 +PWCOMMONS G2/M Transition CDC16 +PWCOMMONS G2/M Transition UBE2E1 +PWCOMMONS G2/M Transition CDC2 +PWCOMMONS G2/M Transition CCNB1 +PWCOMMONS G2/M Transition PLK1 +PWCOMMONS G2/M Transition FBXO5 +PWCOMMONS G2/M Transition CDC20 +PWCOMMONS G2/M Transition CCNB2 +PWCOMMONS G2/M Transition CUL1 +PWCOMMONS G2/M Transition BTRC +PWCOMMONS G2/M Transition SKP1 +PWCOMMONS G2/M Transition CDC25C +PWCOMMONS G2/M Transition PKMYT1 +PWCOMMONS G2/M Transition WEE1 +PWCOMMONS G2/M Transition PSMC6 +PWCOMMONS G2/M Transition PSMA3 +PWCOMMONS G2/M Transition PSMD8 +PWCOMMONS G2/M Transition PSMD10 +PWCOMMONS G2/M Transition PSMD1 +PWCOMMONS G2/M Transition PSMD6 +PWCOMMONS G2/M Transition PSMB5 +PWCOMMONS G2/M Transition PSMB4 +PWCOMMONS G2/M Transition PSMD4 +PWCOMMONS G2/M Transition PSMA2 +PWCOMMONS G2/M Transition PSMB8 +PWCOMMONS G2/M Transition PSMD5 +PWCOMMONS G2/M Transition PSMB6 +PWCOMMONS G2/M Transition PSME3 +PWCOMMONS G2/M Transition PSMB3 +PWCOMMONS G2/M Transition PSMB7 +PWCOMMONS G2/M Transition PSME1 +PWCOMMONS G2/M Transition PSMD11 +PWCOMMONS G2/M Transition PSMA5 +PWCOMMONS G2/M Transition PSMC5 +PWCOMMONS G2/M Transition PSMC1 +PWCOMMONS G2/M Transition PSMD7 +PWCOMMONS G2/M Transition PSMD3 +PWCOMMONS G2/M Transition PSMB2 +PWCOMMONS G2/M Transition PSMD13 +PWCOMMONS G2/M Transition PSMD14 +PWCOMMONS G2/M Transition PSMB1 +PWCOMMONS G2/M Transition PSMA6 +PWCOMMONS G2/M Transition PSMB9 +PWCOMMONS G2/M Transition PSMB10 +PWCOMMONS G2/M Transition PSMD9 +PWCOMMONS G2/M Transition PSMC4 +PWCOMMONS G2/M Transition PSMA1 +PWCOMMONS G2/M Transition PSMA4 +PWCOMMONS G2/M Transition PSMA7 +PWCOMMONS G2/M Transition PSMF1 +PWCOMMONS G2/M Transition PSME2 +PWCOMMONS G2/M Transition PSMD12 +PWCOMMONS G2/M Transition PSMC3 +PWCOMMONS G2/M Transition PSMC2 +PWCOMMONS G2/M Transition PSMD2 +PWCOMMONS G2/M Transition CCNA2 +PWCOMMONS G2/M Transition CCNA1 +PWCOMMONS G2/M Transition CDK2 +PWCOMMONS G2/M Transition CDC25B +PWCOMMONS G2/M Transition XPO1 +PWCOMMONS G2/M Transition CCNH +PWCOMMONS G2/M Transition CDK7 +PWCOMMONS G2/M Transition MNAT1 +PWCOMMONS G2/M Transition CEP250 +PWCOMMONS G2/M Transition CKAP5 +PWCOMMONS G2/M Transition ALMS1 +PWCOMMONS G2/M Transition ODF2 +PWCOMMONS G2/M Transition CEP152 +PWCOMMONS G2/M Transition SSNA1 +PWCOMMONS G2/M Transition CEP110 +PWCOMMONS G2/M Transition CLASP1 +PWCOMMONS G2/M Transition NEDD1 +PWCOMMONS G2/M Transition CEP135 +PWCOMMONS G2/M Transition DYNC1H1 +PWCOMMONS G2/M Transition AZI1 +PWCOMMONS G2/M Transition CEP57 +PWCOMMONS G2/M Transition TSGA14 +PWCOMMONS G2/M Transition PRKACA +PWCOMMONS G2/M Transition CEP72 +PWCOMMONS G2/M Transition CEP76 +PWCOMMONS G2/M Transition MAPRE1 +PWCOMMONS G2/M Transition CEP164 +PWCOMMONS G2/M Transition TUBG1 +PWCOMMONS G2/M Transition PLK4 +PWCOMMONS G2/M Transition CSNK1E +PWCOMMONS G2/M Transition AKAP9 +PWCOMMONS G2/M Transition PCM1 +PWCOMMONS G2/M Transition YWHAG +PWCOMMONS G2/M Transition PRKAR2B +PWCOMMONS G2/M Transition CEP290 +PWCOMMONS G2/M Transition YWHAE +PWCOMMONS G2/M Transition NLP +PWCOMMONS G2/M Transition OFD1 +PWCOMMONS G2/M Transition SDCCAG8 +PWCOMMONS G2/M Transition PCNT +PWCOMMONS G2/M Transition FGFR1OP +PWCOMMONS G2/M Transition DCTN3 +PWCOMMONS G2/M Transition CEP78 +PWCOMMONS G2/M Transition HSP90AA1 +PWCOMMONS G2/M Transition PPP2R1A +PWCOMMONS G2/M Transition CEP110 +PWCOMMONS G2/M Transition CDK5RAP2 +PWCOMMONS G2/M Transition CEP70 +PWCOMMONS G2/M Transition CEP63 +PWCOMMONS G2/M Transition TUBB2C +PWCOMMONS G2/M Transition CENPJ +PWCOMMONS G2/M Transition CEP27 +PWCOMMONS G2/M Transition TUBB +PWCOMMONS G2/M Transition ACTR1A +PWCOMMONS G2/M Transition CEP192 +PWCOMMONS G2/M Transition NDE1 +PWCOMMONS G2/M Transition TUBA4A +PWCOMMONS G2/M Transition CSNK1D +PWCOMMONS G2/M Transition SFI1 +PWCOMMONS G2/M Transition DYNLL1 +PWCOMMONS G2/M Transition TUBB4 +PWCOMMONS G2/M Transition DCTN2 +PWCOMMONS G2/M Transition TUBA1A +PWCOMMONS G2/M Transition NEK2 +PWCOMMONS G2/M Transition PAFAH1B1 +PWCOMMONS G2/M Transition CETN2 +PWCOMMONS G2/M Transition DYNC1I2 +PWCOMMONS G2/M Transition NUMA1 +PWCOMMONS G2/M Transition TUBGCP4 +PWCOMMONS G2/M Transition TUBGCP5 +PWCOMMONS G2/M Transition TUBGCP6 +PWCOMMONS G2/M Transition TUBG2 +PWCOMMONS G2/M Transition TUBGCP3 +PWCOMMONS G2/M Transition TUBGCP2 +PWCOMMONS G2/M Transition +PWCOMMONS Polo-like kinase mediated events ANAPC5 +PWCOMMONS Polo-like kinase mediated events ANAPC11 +PWCOMMONS Polo-like kinase mediated events CDC23 +PWCOMMONS Polo-like kinase mediated events ANAPC1 +PWCOMMONS Polo-like kinase mediated events UBE2D1 +PWCOMMONS Polo-like kinase mediated events ANAPC2 +PWCOMMONS Polo-like kinase mediated events CDC27 +PWCOMMONS Polo-like kinase mediated events ANAPC4 +PWCOMMONS Polo-like kinase mediated events ANAPC10 +PWCOMMONS Polo-like kinase mediated events UBE2C +PWCOMMONS Polo-like kinase mediated events ANAPC7 +PWCOMMONS Polo-like kinase mediated events CDC26 +PWCOMMONS Polo-like kinase mediated events CDC16 +PWCOMMONS Polo-like kinase mediated events UBE2E1 +PWCOMMONS Polo-like kinase mediated events CDC2 +PWCOMMONS Polo-like kinase mediated events CCNB1 +PWCOMMONS Polo-like kinase mediated events PLK1 +PWCOMMONS Polo-like kinase mediated events FBXO5 +PWCOMMONS Polo-like kinase mediated events CDC20 +PWCOMMONS Polo-like kinase mediated events CCNB2 +PWCOMMONS Polo-like kinase mediated events CUL1 +PWCOMMONS Polo-like kinase mediated events BTRC +PWCOMMONS Polo-like kinase mediated events SKP1 +PWCOMMONS Polo-like kinase mediated events CDC25C +PWCOMMONS Polo-like kinase mediated events PKMYT1 +PWCOMMONS Polo-like kinase mediated events WEE1 +PWCOMMONS Polo-like kinase mediated events PSMC6 +PWCOMMONS Polo-like kinase mediated events PSMA3 +PWCOMMONS Polo-like kinase mediated events PSMD8 +PWCOMMONS Polo-like kinase mediated events PSMD10 +PWCOMMONS Polo-like kinase mediated events PSMD1 +PWCOMMONS Polo-like kinase mediated events PSMD6 +PWCOMMONS Polo-like kinase mediated events PSMB5 +PWCOMMONS Polo-like kinase mediated events PSMB4 +PWCOMMONS Polo-like kinase mediated events PSMD4 +PWCOMMONS Polo-like kinase mediated events PSMA2 +PWCOMMONS Polo-like kinase mediated events PSMB8 +PWCOMMONS Polo-like kinase mediated events PSMD5 +PWCOMMONS Polo-like kinase mediated events PSMB6 +PWCOMMONS Polo-like kinase mediated events PSME3 +PWCOMMONS Polo-like kinase mediated events PSMB3 +PWCOMMONS Polo-like kinase mediated events PSMB7 +PWCOMMONS Polo-like kinase mediated events PSME1 +PWCOMMONS Polo-like kinase mediated events PSMD11 +PWCOMMONS Polo-like kinase mediated events PSMA5 +PWCOMMONS Polo-like kinase mediated events PSMC5 +PWCOMMONS Polo-like kinase mediated events PSMC1 +PWCOMMONS Polo-like kinase mediated events PSMD7 +PWCOMMONS Polo-like kinase mediated events PSMD3 +PWCOMMONS Polo-like kinase mediated events PSMB2 +PWCOMMONS Polo-like kinase mediated events PSMD13 +PWCOMMONS Polo-like kinase mediated events PSMD14 +PWCOMMONS Polo-like kinase mediated events PSMB1 +PWCOMMONS Polo-like kinase mediated events PSMA6 +PWCOMMONS Polo-like kinase mediated events PSMB9 +PWCOMMONS Polo-like kinase mediated events PSMB10 +PWCOMMONS Polo-like kinase mediated events PSMD9 +PWCOMMONS Polo-like kinase mediated events PSMC4 +PWCOMMONS Polo-like kinase mediated events PSMA1 +PWCOMMONS Polo-like kinase mediated events PSMA4 +PWCOMMONS Polo-like kinase mediated events PSMA7 +PWCOMMONS Polo-like kinase mediated events PSMF1 +PWCOMMONS Polo-like kinase mediated events PSME2 +PWCOMMONS Polo-like kinase mediated events PSMD12 +PWCOMMONS Polo-like kinase mediated events PSMC3 +PWCOMMONS Polo-like kinase mediated events PSMC2 +PWCOMMONS Polo-like kinase mediated events PSMD2 +PWCOMMONS Polo-like kinase mediated events CCNA2 +PWCOMMONS Polo-like kinase mediated events CCNA1 +PWCOMMONS Polo-like kinase mediated events +PWCOMMONS Phosphorylation of proteins involved in the G2/M transition by Cyclin A:Cdc2 complexes CCNA1 +PWCOMMONS Phosphorylation of proteins involved in the G2/M transition by Cyclin A:Cdc2 complexes CCNA2 +PWCOMMONS Phosphorylation of proteins involved in the G2/M transition by Cyclin A:Cdc2 complexes +PWCOMMONS Cyclin A/B1 associated events during G2/M transition WEE1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CDK2 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CUL1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition BTRC +PWCOMMONS Cyclin A/B1 associated events during G2/M transition SKP1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CCNB1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CDC20 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition ANAPC5 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition ANAPC11 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CDC23 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition ANAPC1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition ANAPC2 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition UBE2D1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CDC27 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition ANAPC4 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition ANAPC10 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition ANAPC7 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition UBE2C +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CDC26 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CDC16 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition UBE2E1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMC6 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMA3 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD8 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD10 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD6 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMB5 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMB4 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD4 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMA2 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMB8 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD5 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMB6 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSME3 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMB3 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMB7 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSME1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD11 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMA5 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMC5 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMC1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD7 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD3 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMB2 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD13 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD14 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMB1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMA6 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMB9 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMB10 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD9 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMC4 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMA1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMA4 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMA7 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMF1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSME2 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD12 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMC3 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMC2 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PSMD2 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CCNA2 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition FZR1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CCNA1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition PKMYT1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CCNB2 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CDC25B +PWCOMMONS Cyclin A/B1 associated events during G2/M transition XPO1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition FBXO5 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CCNH +PWCOMMONS Cyclin A/B1 associated events during G2/M transition CDK7 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition MNAT1 +PWCOMMONS Cyclin A/B1 associated events during G2/M transition +PWCOMMONS Centrosome maturation CKAP5 +PWCOMMONS Centrosome maturation ALMS1 +PWCOMMONS Centrosome maturation ODF2 +PWCOMMONS Centrosome maturation CEP152 +PWCOMMONS Centrosome maturation SSNA1 +PWCOMMONS Centrosome maturation CEP110 +PWCOMMONS Centrosome maturation CLASP1 +PWCOMMONS Centrosome maturation NEDD1 +PWCOMMONS Centrosome maturation CEP135 +PWCOMMONS Centrosome maturation DYNC1H1 +PWCOMMONS Centrosome maturation AZI1 +PWCOMMONS Centrosome maturation CEP57 +PWCOMMONS Centrosome maturation TSGA14 +PWCOMMONS Centrosome maturation PRKACA +PWCOMMONS Centrosome maturation CEP72 +PWCOMMONS Centrosome maturation CEP76 +PWCOMMONS Centrosome maturation MAPRE1 +PWCOMMONS Centrosome maturation CEP164 +PWCOMMONS Centrosome maturation TUBG1 +PWCOMMONS Centrosome maturation PLK4 +PWCOMMONS Centrosome maturation CSNK1E +PWCOMMONS Centrosome maturation AKAP9 +PWCOMMONS Centrosome maturation PCM1 +PWCOMMONS Centrosome maturation YWHAG +PWCOMMONS Centrosome maturation PRKAR2B +PWCOMMONS Centrosome maturation CEP290 +PWCOMMONS Centrosome maturation YWHAE +PWCOMMONS Centrosome maturation NLP +PWCOMMONS Centrosome maturation OFD1 +PWCOMMONS Centrosome maturation SDCCAG8 +PWCOMMONS Centrosome maturation PCNT +PWCOMMONS Centrosome maturation FGFR1OP +PWCOMMONS Centrosome maturation DCTN3 +PWCOMMONS Centrosome maturation CEP78 +PWCOMMONS Centrosome maturation HSP90AA1 +PWCOMMONS Centrosome maturation PLK1 +PWCOMMONS Centrosome maturation CDC2 +PWCOMMONS Centrosome maturation PPP2R1A +PWCOMMONS Centrosome maturation CEP110 +PWCOMMONS Centrosome maturation CDK5RAP2 +PWCOMMONS Centrosome maturation CEP70 +PWCOMMONS Centrosome maturation CEP63 +PWCOMMONS Centrosome maturation TUBB2C +PWCOMMONS Centrosome maturation CENPJ +PWCOMMONS Centrosome maturation CEP27 +PWCOMMONS Centrosome maturation TUBB +PWCOMMONS Centrosome maturation ACTR1A +PWCOMMONS Centrosome maturation CEP192 +PWCOMMONS Centrosome maturation NDE1 +PWCOMMONS Centrosome maturation TUBA4A +PWCOMMONS Centrosome maturation CSNK1D +PWCOMMONS Centrosome maturation SFI1 +PWCOMMONS Centrosome maturation DYNLL1 +PWCOMMONS Centrosome maturation TUBB4 +PWCOMMONS Centrosome maturation DCTN2 +PWCOMMONS Centrosome maturation TUBA1A +PWCOMMONS Centrosome maturation NEK2 +PWCOMMONS Centrosome maturation PAFAH1B1 +PWCOMMONS Centrosome maturation CETN2 +PWCOMMONS Centrosome maturation DYNC1I2 +PWCOMMONS Centrosome maturation FBXO5 +PWCOMMONS Centrosome maturation NUMA1 +PWCOMMONS Centrosome maturation TUBGCP4 +PWCOMMONS Centrosome maturation TUBGCP5 +PWCOMMONS Centrosome maturation TUBGCP6 +PWCOMMONS Centrosome maturation TUBG2 +PWCOMMONS Centrosome maturation TUBGCP3 +PWCOMMONS Centrosome maturation TUBGCP2 +PWCOMMONS Centrosome maturation FZR1 +PWCOMMONS Centrosome maturation CCNB1 +PWCOMMONS Centrosome maturation +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CKAP5 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes ALMS1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes ODF2 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP152 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes SSNA1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP110 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CLASP1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes NEDD1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP135 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes DYNC1H1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes AZI1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP57 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes PRKACA +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TSGA14 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP72 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP76 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes MAPRE1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP164 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TUBG1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes PLK4 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes AKAP9 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CSNK1E +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes PCM1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes YWHAG +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes PRKAR2B +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes YWHAE +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes NLP +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP290 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes OFD1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes SDCCAG8 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes PCNT +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes FGFR1OP +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes DCTN3 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP250 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP78 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes HSP90AA1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CDC2 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes PPP2R1A +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP110 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CDK5RAP2 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP63 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP70 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TUBB2C +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CENPJ +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP27 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TUBB +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes ACTR1A +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CEP192 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes NDE1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TUBA4A +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CSNK1D +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes SFI1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TUBB4 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes DYNLL1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes DCTN2 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes NEK2 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TUBA1A +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes PAFAH1B1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CETN2 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes DYNC1I2 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes NUMA1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TUBGCP4 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TUBGCP5 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TUBGCP6 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TUBG2 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TUBGCP3 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes TUBGCP2 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes FZR1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes CCNB1 +PWCOMMONS Recruitment of mitotic centrosome proteins and complexes +PWCOMMONS Recruitment of NuMA to mitotic centrosomes TUBGCP4 +PWCOMMONS Recruitment of NuMA to mitotic centrosomes TUBGCP5 +PWCOMMONS Recruitment of NuMA to mitotic centrosomes TUBGCP6 +PWCOMMONS Recruitment of NuMA to mitotic centrosomes NEDD1 +PWCOMMONS Recruitment of NuMA to mitotic centrosomes TUBG1 +PWCOMMONS Recruitment of NuMA to mitotic centrosomes TUBG2 +PWCOMMONS Recruitment of NuMA to mitotic centrosomes TUBGCP3 +PWCOMMONS Recruitment of NuMA to mitotic centrosomes TUBGCP2 +PWCOMMONS Recruitment of NuMA to mitotic centrosomes FZR1 +PWCOMMONS Recruitment of NuMA to mitotic centrosomes CDC2 +PWCOMMONS Recruitment of NuMA to mitotic centrosomes CCNB1 +PWCOMMONS Recruitment of NuMA to mitotic centrosomes +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CKAP5 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome ALMS1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome ODF2 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP152 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome SSNA1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP110 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CLASP1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome NEDD1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP135 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome DYNC1H1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome AZI1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP57 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome TSGA14 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome PRKACA +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP72 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP76 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome MAPRE1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP164 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome TUBG1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome PLK4 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CSNK1E +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome AKAP9 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome PCM1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome YWHAG +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome PRKAR2B +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP290 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome YWHAE +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome NLP +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome OFD1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome SDCCAG8 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome PCNT +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome FGFR1OP +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome DCTN3 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP78 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome HSP90AA1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome PLK1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CDC2 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome PPP2R1A +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP110 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CDK5RAP2 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP70 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP63 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome TUBB2C +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CENPJ +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP27 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome TUBB +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome ACTR1A +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CEP192 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome NDE1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome TUBA4A +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CSNK1D +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome SFI1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome DYNLL1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome TUBB4 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome DCTN2 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome TUBA1A +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome NEK2 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome PAFAH1B1 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome CETN2 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome DYNC1I2 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome FBXO5 +PWCOMMONS Loss of proteins required for interphase microtubule organization from the centrosome +PWCOMMONS Loss of Nlp from mitotic centrosomes CKAP5 +PWCOMMONS Loss of Nlp from mitotic centrosomes ALMS1 +PWCOMMONS Loss of Nlp from mitotic centrosomes ODF2 +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP152 +PWCOMMONS Loss of Nlp from mitotic centrosomes SSNA1 +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP110 +PWCOMMONS Loss of Nlp from mitotic centrosomes CLASP1 +PWCOMMONS Loss of Nlp from mitotic centrosomes NEDD1 +PWCOMMONS Loss of Nlp from mitotic centrosomes DYNC1H1 +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP135 +PWCOMMONS Loss of Nlp from mitotic centrosomes AZI1 +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP57 +PWCOMMONS Loss of Nlp from mitotic centrosomes TSGA14 +PWCOMMONS Loss of Nlp from mitotic centrosomes PRKACA +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP72 +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP76 +PWCOMMONS Loss of Nlp from mitotic centrosomes MAPRE1 +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP164 +PWCOMMONS Loss of Nlp from mitotic centrosomes TUBG1 +PWCOMMONS Loss of Nlp from mitotic centrosomes PLK4 +PWCOMMONS Loss of Nlp from mitotic centrosomes AKAP9 +PWCOMMONS Loss of Nlp from mitotic centrosomes CSNK1E +PWCOMMONS Loss of Nlp from mitotic centrosomes PCM1 +PWCOMMONS Loss of Nlp from mitotic centrosomes PRKAR2B +PWCOMMONS Loss of Nlp from mitotic centrosomes YWHAG +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP290 +PWCOMMONS Loss of Nlp from mitotic centrosomes YWHAE +PWCOMMONS Loss of Nlp from mitotic centrosomes OFD1 +PWCOMMONS Loss of Nlp from mitotic centrosomes SDCCAG8 +PWCOMMONS Loss of Nlp from mitotic centrosomes PCNT +PWCOMMONS Loss of Nlp from mitotic centrosomes FGFR1OP +PWCOMMONS Loss of Nlp from mitotic centrosomes DCTN3 +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP250 +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP78 +PWCOMMONS Loss of Nlp from mitotic centrosomes HSP90AA1 +PWCOMMONS Loss of Nlp from mitotic centrosomes PLK1 +PWCOMMONS Loss of Nlp from mitotic centrosomes CDC2 +PWCOMMONS Loss of Nlp from mitotic centrosomes PPP2R1A +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP110 +PWCOMMONS Loss of Nlp from mitotic centrosomes CDK5RAP2 +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP70 +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP63 +PWCOMMONS Loss of Nlp from mitotic centrosomes TUBB2C +PWCOMMONS Loss of Nlp from mitotic centrosomes CENPJ +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP27 +PWCOMMONS Loss of Nlp from mitotic centrosomes TUBB +PWCOMMONS Loss of Nlp from mitotic centrosomes ACTR1A +PWCOMMONS Loss of Nlp from mitotic centrosomes CEP192 +PWCOMMONS Loss of Nlp from mitotic centrosomes NDE1 +PWCOMMONS Loss of Nlp from mitotic centrosomes TUBA4A +PWCOMMONS Loss of Nlp from mitotic centrosomes CSNK1D +PWCOMMONS Loss of Nlp from mitotic centrosomes SFI1 +PWCOMMONS Loss of Nlp from mitotic centrosomes TUBB4 +PWCOMMONS Loss of Nlp from mitotic centrosomes DYNLL1 +PWCOMMONS Loss of Nlp from mitotic centrosomes DCTN2 +PWCOMMONS Loss of Nlp from mitotic centrosomes NEK2 +PWCOMMONS Loss of Nlp from mitotic centrosomes TUBA1A +PWCOMMONS Loss of Nlp from mitotic centrosomes PAFAH1B1 +PWCOMMONS Loss of Nlp from mitotic centrosomes CETN2 +PWCOMMONS Loss of Nlp from mitotic centrosomes DYNC1I2 +PWCOMMONS Loss of Nlp from mitotic centrosomes FBXO5 +PWCOMMONS Loss of Nlp from mitotic centrosomes +PWCOMMONS Cyclin B2 mediated events CCNB2 +PWCOMMONS Cyclin B2 mediated events CCNB1 +PWCOMMONS Cyclin B2 mediated events +PWCOMMONS M Phase ANAPC5 +PWCOMMONS M Phase ANAPC11 +PWCOMMONS M Phase CDC23 +PWCOMMONS M Phase ANAPC1 +PWCOMMONS M Phase UBE2D1 +PWCOMMONS M Phase ANAPC2 +PWCOMMONS M Phase CDC27 +PWCOMMONS M Phase ANAPC4 +PWCOMMONS M Phase ANAPC10 +PWCOMMONS M Phase UBE2C +PWCOMMONS M Phase ANAPC7 +PWCOMMONS M Phase CDC26 +PWCOMMONS M Phase CDC16 +PWCOMMONS M Phase UBE2E1 +PWCOMMONS M Phase BUB3 +PWCOMMONS M Phase BUB1B +PWCOMMONS M Phase MAD2L1 +PWCOMMONS M Phase CDC20 +PWCOMMONS M Phase NEK2 +PWCOMMONS M Phase CDC2 +PWCOMMONS M Phase CCNB1 +PWCOMMONS M Phase MAD1L1 +PWCOMMONS M Phase PTTG1 +PWCOMMONS M Phase PSMC6 +PWCOMMONS M Phase PSMA3 +PWCOMMONS M Phase PSMD8 +PWCOMMONS M Phase PSMD10 +PWCOMMONS M Phase PSMD1 +PWCOMMONS M Phase PSMD6 +PWCOMMONS M Phase PSMB5 +PWCOMMONS M Phase PSMB4 +PWCOMMONS M Phase PSMD4 +PWCOMMONS M Phase PSMA2 +PWCOMMONS M Phase PSMB8 +PWCOMMONS M Phase PSMD5 +PWCOMMONS M Phase PSMB6 +PWCOMMONS M Phase PSME3 +PWCOMMONS M Phase PSMB3 +PWCOMMONS M Phase PSMB7 +PWCOMMONS M Phase PSME1 +PWCOMMONS M Phase PSMD11 +PWCOMMONS M Phase PSMA5 +PWCOMMONS M Phase PSMC5 +PWCOMMONS M Phase PSMC1 +PWCOMMONS M Phase PSMD7 +PWCOMMONS M Phase PSMD3 +PWCOMMONS M Phase PSMB2 +PWCOMMONS M Phase PSMD13 +PWCOMMONS M Phase PSMD14 +PWCOMMONS M Phase PSMB1 +PWCOMMONS M Phase PSMA6 +PWCOMMONS M Phase PSMB9 +PWCOMMONS M Phase PSMB10 +PWCOMMONS M Phase PSMD9 +PWCOMMONS M Phase PSMC4 +PWCOMMONS M Phase PSMA1 +PWCOMMONS M Phase PSMA4 +PWCOMMONS M Phase PSMA7 +PWCOMMONS M Phase PSMF1 +PWCOMMONS M Phase PSME2 +PWCOMMONS M Phase PSMD12 +PWCOMMONS M Phase PSMC3 +PWCOMMONS M Phase PSMC2 +PWCOMMONS M Phase PSMD2 +PWCOMMONS M Phase REC8 +PWCOMMONS M Phase STAG2 +PWCOMMONS M Phase SMC3 +PWCOMMONS M Phase SMC1A +PWCOMMONS M Phase RAD21 +PWCOMMONS M Phase STAG1 +PWCOMMONS M Phase PLK1 +PWCOMMONS M Phase FBXO5 +PWCOMMONS M Phase CCDC99 +PWCOMMONS M Phase CKAP5 +PWCOMMONS M Phase CENPA +PWCOMMONS M Phase NUDC +PWCOMMONS M Phase ZWINT +PWCOMMONS M Phase CENPF +PWCOMMONS M Phase NDEL1 +PWCOMMONS M Phase XPO1 +PWCOMMONS M Phase KIF2A +PWCOMMONS M Phase SKA1 +PWCOMMONS M Phase SGOL1 +PWCOMMONS M Phase RANGAP1 +PWCOMMONS M Phase ERCC6L +PWCOMMONS M Phase BUB1 +PWCOMMONS M Phase KIF2C +PWCOMMONS M Phase SGOL2 +PWCOMMONS M Phase TAOK1 +PWCOMMONS M Phase RANBP2 +PWCOMMONS M Phase CLASP1 +PWCOMMONS M Phase AHCTF1 +PWCOMMONS M Phase RCC2 +PWCOMMONS M Phase KIF18A +PWCOMMONS M Phase NDE1 +PWCOMMONS M Phase CLASP2 +PWCOMMONS M Phase CLIP1 +PWCOMMONS M Phase PPP1CC +PWCOMMONS M Phase MAPRE1 +PWCOMMONS M Phase INCENP +PWCOMMONS M Phase PAFAH1B1 +PWCOMMONS M Phase KIF2B +PWCOMMONS M Phase FAM33A +PWCOMMONS M Phase CENPE +PWCOMMONS M Phase B9D2 +PWCOMMONS M Phase RPS27 +PWCOMMONS M Phase CENPN +PWCOMMONS M Phase APITD1 +PWCOMMONS M Phase CENPL +PWCOMMONS M Phase CENPC1 +PWCOMMONS M Phase CENPT +PWCOMMONS M Phase CENPM +PWCOMMONS M Phase MLF1IP +PWCOMMONS M Phase CENPO +PWCOMMONS M Phase CENPP +PWCOMMONS M Phase CENPQ +PWCOMMONS M Phase CENPI +PWCOMMONS M Phase CENPH +PWCOMMONS M Phase CENPK +PWCOMMONS M Phase AURKB +PWCOMMONS M Phase CDCA8 +PWCOMMONS M Phase BIRC5 +PWCOMMONS M Phase NUP85 +PWCOMMONS M Phase SEC13 +PWCOMMONS M Phase NUP107 +PWCOMMONS M Phase NUP133 +PWCOMMONS M Phase NUP160 +PWCOMMONS M Phase NUP37 +PWCOMMONS M Phase NUP43 +PWCOMMONS M Phase ZWILCH +PWCOMMONS M Phase ZW10 +PWCOMMONS M Phase KNTC1 +PWCOMMONS M Phase CASC5 +PWCOMMONS M Phase MIS12 +PWCOMMONS M Phase PMF1 +PWCOMMONS M Phase DSN1 +PWCOMMONS M Phase NSL1 +PWCOMMONS M Phase NUF2 +PWCOMMONS M Phase NDC80 +PWCOMMONS M Phase SPC24 +PWCOMMONS M Phase SPC25 +PWCOMMONS M Phase KIF20A +PWCOMMONS M Phase KIF23 +PWCOMMONS M Phase GORASP1 +PWCOMMONS M Phase +PWCOMMONS Mitotic Telophase /Cytokinesis FBXO5 +PWCOMMONS Mitotic Telophase /Cytokinesis NUDC +PWCOMMONS Mitotic Telophase /Cytokinesis KIF20A +PWCOMMONS Mitotic Telophase /Cytokinesis KIF23 +PWCOMMONS Mitotic Telophase /Cytokinesis +PWCOMMONS Mitotic Prometaphase STAG2 +PWCOMMONS Mitotic Prometaphase SMC3 +PWCOMMONS Mitotic Prometaphase SMC1A +PWCOMMONS Mitotic Prometaphase RAD21 +PWCOMMONS Mitotic Prometaphase STAG1 +PWCOMMONS Mitotic Prometaphase PLK1 +PWCOMMONS Mitotic Prometaphase FBXO5 +PWCOMMONS Mitotic Prometaphase CCDC99 +PWCOMMONS Mitotic Prometaphase CKAP5 +PWCOMMONS Mitotic Prometaphase CENPA +PWCOMMONS Mitotic Prometaphase NUDC +PWCOMMONS Mitotic Prometaphase ZWINT +PWCOMMONS Mitotic Prometaphase CENPF +PWCOMMONS Mitotic Prometaphase NDEL1 +PWCOMMONS Mitotic Prometaphase XPO1 +PWCOMMONS Mitotic Prometaphase KIF2A +PWCOMMONS Mitotic Prometaphase SKA1 +PWCOMMONS Mitotic Prometaphase SGOL1 +PWCOMMONS Mitotic Prometaphase RANGAP1 +PWCOMMONS Mitotic Prometaphase ERCC6L +PWCOMMONS Mitotic Prometaphase MAD1L1 +PWCOMMONS Mitotic Prometaphase BUB1 +PWCOMMONS Mitotic Prometaphase KIF2C +PWCOMMONS Mitotic Prometaphase SGOL2 +PWCOMMONS Mitotic Prometaphase TAOK1 +PWCOMMONS Mitotic Prometaphase RANBP2 +PWCOMMONS Mitotic Prometaphase CLASP1 +PWCOMMONS Mitotic Prometaphase AHCTF1 +PWCOMMONS Mitotic Prometaphase RCC2 +PWCOMMONS Mitotic Prometaphase KIF18A +PWCOMMONS Mitotic Prometaphase NDE1 +PWCOMMONS Mitotic Prometaphase CLASP2 +PWCOMMONS Mitotic Prometaphase CDC20 +PWCOMMONS Mitotic Prometaphase CLIP1 +PWCOMMONS Mitotic Prometaphase PPP1CC +PWCOMMONS Mitotic Prometaphase MAPRE1 +PWCOMMONS Mitotic Prometaphase INCENP +PWCOMMONS Mitotic Prometaphase PAFAH1B1 +PWCOMMONS Mitotic Prometaphase KIF2B +PWCOMMONS Mitotic Prometaphase FAM33A +PWCOMMONS Mitotic Prometaphase CENPE +PWCOMMONS Mitotic Prometaphase B9D2 +PWCOMMONS Mitotic Prometaphase RPS27 +PWCOMMONS Mitotic Prometaphase BUB3 +PWCOMMONS Mitotic Prometaphase BUB1B +PWCOMMONS Mitotic Prometaphase MAD2L1 +PWCOMMONS Mitotic Prometaphase CENPN +PWCOMMONS Mitotic Prometaphase APITD1 +PWCOMMONS Mitotic Prometaphase CENPL +PWCOMMONS Mitotic Prometaphase CENPC1 +PWCOMMONS Mitotic Prometaphase CENPT +PWCOMMONS Mitotic Prometaphase CENPM +PWCOMMONS Mitotic Prometaphase MLF1IP +PWCOMMONS Mitotic Prometaphase CENPO +PWCOMMONS Mitotic Prometaphase CENPP +PWCOMMONS Mitotic Prometaphase CENPQ +PWCOMMONS Mitotic Prometaphase CENPI +PWCOMMONS Mitotic Prometaphase CENPH +PWCOMMONS Mitotic Prometaphase CENPK +PWCOMMONS Mitotic Prometaphase AURKB +PWCOMMONS Mitotic Prometaphase CDCA8 +PWCOMMONS Mitotic Prometaphase BIRC5 +PWCOMMONS Mitotic Prometaphase NUP85 +PWCOMMONS Mitotic Prometaphase SEC13 +PWCOMMONS Mitotic Prometaphase NUP107 +PWCOMMONS Mitotic Prometaphase NUP133 +PWCOMMONS Mitotic Prometaphase NUP160 +PWCOMMONS Mitotic Prometaphase NUP37 +PWCOMMONS Mitotic Prometaphase NUP43 +PWCOMMONS Mitotic Prometaphase ZWILCH +PWCOMMONS Mitotic Prometaphase ZW10 +PWCOMMONS Mitotic Prometaphase KNTC1 +PWCOMMONS Mitotic Prometaphase CASC5 +PWCOMMONS Mitotic Prometaphase MIS12 +PWCOMMONS Mitotic Prometaphase PMF1 +PWCOMMONS Mitotic Prometaphase DSN1 +PWCOMMONS Mitotic Prometaphase NSL1 +PWCOMMONS Mitotic Prometaphase NUF2 +PWCOMMONS Mitotic Prometaphase NDC80 +PWCOMMONS Mitotic Prometaphase SPC24 +PWCOMMONS Mitotic Prometaphase SPC25 +PWCOMMONS Mitotic Prometaphase +PWCOMMONS Mitotic Spindle Checkpoint ANAPC5 +PWCOMMONS Mitotic Spindle Checkpoint ANAPC11 +PWCOMMONS Mitotic Spindle Checkpoint CDC23 +PWCOMMONS Mitotic Spindle Checkpoint ANAPC1 +PWCOMMONS Mitotic Spindle Checkpoint UBE2D1 +PWCOMMONS Mitotic Spindle Checkpoint ANAPC2 +PWCOMMONS Mitotic Spindle Checkpoint CDC27 +PWCOMMONS Mitotic Spindle Checkpoint ANAPC4 +PWCOMMONS Mitotic Spindle Checkpoint ANAPC10 +PWCOMMONS Mitotic Spindle Checkpoint UBE2C +PWCOMMONS Mitotic Spindle Checkpoint ANAPC7 +PWCOMMONS Mitotic Spindle Checkpoint CDC26 +PWCOMMONS Mitotic Spindle Checkpoint CDC16 +PWCOMMONS Mitotic Spindle Checkpoint UBE2E1 +PWCOMMONS Mitotic Spindle Checkpoint BUB3 +PWCOMMONS Mitotic Spindle Checkpoint BUB1B +PWCOMMONS Mitotic Spindle Checkpoint MAD2L1 +PWCOMMONS Mitotic Spindle Checkpoint CDC20 +PWCOMMONS Mitotic Spindle Checkpoint NEK2 +PWCOMMONS Mitotic Spindle Checkpoint CDC2 +PWCOMMONS Mitotic Spindle Checkpoint CCNB1 +PWCOMMONS Mitotic Spindle Checkpoint MAD1L1 +PWCOMMONS Mitotic Spindle Checkpoint PTTG1 +PWCOMMONS Mitotic Spindle Checkpoint PSMC6 +PWCOMMONS Mitotic Spindle Checkpoint PSMA3 +PWCOMMONS Mitotic Spindle Checkpoint PSMD8 +PWCOMMONS Mitotic Spindle Checkpoint PSMD10 +PWCOMMONS Mitotic Spindle Checkpoint PSMD1 +PWCOMMONS Mitotic Spindle Checkpoint PSMD6 +PWCOMMONS Mitotic Spindle Checkpoint PSMB5 +PWCOMMONS Mitotic Spindle Checkpoint PSMB4 +PWCOMMONS Mitotic Spindle Checkpoint PSMD4 +PWCOMMONS Mitotic Spindle Checkpoint PSMA2 +PWCOMMONS Mitotic Spindle Checkpoint PSMB8 +PWCOMMONS Mitotic Spindle Checkpoint PSMD5 +PWCOMMONS Mitotic Spindle Checkpoint PSMB6 +PWCOMMONS Mitotic Spindle Checkpoint PSME3 +PWCOMMONS Mitotic Spindle Checkpoint PSMB3 +PWCOMMONS Mitotic Spindle Checkpoint PSMB7 +PWCOMMONS Mitotic Spindle Checkpoint PSME1 +PWCOMMONS Mitotic Spindle Checkpoint PSMD11 +PWCOMMONS Mitotic Spindle Checkpoint PSMA5 +PWCOMMONS Mitotic Spindle Checkpoint PSMC5 +PWCOMMONS Mitotic Spindle Checkpoint PSMC1 +PWCOMMONS Mitotic Spindle Checkpoint PSMD7 +PWCOMMONS Mitotic Spindle Checkpoint PSMD3 +PWCOMMONS Mitotic Spindle Checkpoint PSMB2 +PWCOMMONS Mitotic Spindle Checkpoint PSMD13 +PWCOMMONS Mitotic Spindle Checkpoint PSMD14 +PWCOMMONS Mitotic Spindle Checkpoint PSMB1 +PWCOMMONS Mitotic Spindle Checkpoint PSMA6 +PWCOMMONS Mitotic Spindle Checkpoint PSMB9 +PWCOMMONS Mitotic Spindle Checkpoint PSMB10 +PWCOMMONS Mitotic Spindle Checkpoint PSMD9 +PWCOMMONS Mitotic Spindle Checkpoint PSMC4 +PWCOMMONS Mitotic Spindle Checkpoint PSMA1 +PWCOMMONS Mitotic Spindle Checkpoint PSMA4 +PWCOMMONS Mitotic Spindle Checkpoint PSMA7 +PWCOMMONS Mitotic Spindle Checkpoint PSMF1 +PWCOMMONS Mitotic Spindle Checkpoint PSME2 +PWCOMMONS Mitotic Spindle Checkpoint PSMD12 +PWCOMMONS Mitotic Spindle Checkpoint PSMC3 +PWCOMMONS Mitotic Spindle Checkpoint PSMC2 +PWCOMMONS Mitotic Spindle Checkpoint PSMD2 +PWCOMMONS Mitotic Spindle Checkpoint +PWCOMMONS Initiation of checkpoint signal from defective kinetochores ANAPC5 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores ANAPC11 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores CDC23 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores ANAPC1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores UBE2D1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores ANAPC2 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores CDC27 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores ANAPC4 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores ANAPC10 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores UBE2C +PWCOMMONS Initiation of checkpoint signal from defective kinetochores ANAPC7 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores CDC26 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores CDC16 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores UBE2E1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores BUB3 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores BUB1B +PWCOMMONS Initiation of checkpoint signal from defective kinetochores MAD2L1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores CDC20 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores NEK2 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores CDC2 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores CCNB1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores MAD1L1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PTTG1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMC6 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMA3 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD8 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD10 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD6 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMB5 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMB4 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD4 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMA2 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMB8 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD5 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMB6 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSME3 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMB3 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMB7 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSME1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD11 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMA5 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMC5 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMC1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD7 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD3 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMB2 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD13 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD14 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMB1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMA6 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMB9 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMB10 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD9 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMC4 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMA1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMA4 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMA7 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMF1 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSME2 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD12 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMC3 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMC2 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores PSMD2 +PWCOMMONS Initiation of checkpoint signal from defective kinetochores +PWCOMMONS Mitotic Metaphase/Anaphase Transition FBXO5 +PWCOMMONS Mitotic Metaphase/Anaphase Transition REC8 +PWCOMMONS Mitotic Metaphase/Anaphase Transition STAG2 +PWCOMMONS Mitotic Metaphase/Anaphase Transition SMC3 +PWCOMMONS Mitotic Metaphase/Anaphase Transition SMC1A +PWCOMMONS Mitotic Metaphase/Anaphase Transition RAD21 +PWCOMMONS Mitotic Metaphase/Anaphase Transition STAG1 +PWCOMMONS Mitotic Metaphase/Anaphase Transition +PWCOMMONS Mitotic Prophase PLK1 +PWCOMMONS Mitotic Prophase +PWCOMMONS Golgi Cisternae Pericentriolar Stack Reorganization PLK1 +PWCOMMONS Golgi Cisternae Pericentriolar Stack Reorganization +PWCOMMONS M/G1 Transition CDC6 +PWCOMMONS M/G1 Transition TFDP1 +PWCOMMONS M/G1 Transition E2F1 +PWCOMMONS M/G1 Transition POLE2 +PWCOMMONS M/G1 Transition POLE +PWCOMMONS M/G1 Transition PRIM2 +PWCOMMONS M/G1 Transition POLA1 +PWCOMMONS M/G1 Transition PRIM1 +PWCOMMONS M/G1 Transition POLA2 +PWCOMMONS M/G1 Transition CDC45L +PWCOMMONS M/G1 Transition MCM7 +PWCOMMONS M/G1 Transition MCM4 +PWCOMMONS M/G1 Transition MCM5 +PWCOMMONS M/G1 Transition MCM3 +PWCOMMONS M/G1 Transition MCM6 +PWCOMMONS M/G1 Transition MCM2 +PWCOMMONS M/G1 Transition GINS4 +PWCOMMONS M/G1 Transition GINS1 +PWCOMMONS M/G1 Transition GINS2 +PWCOMMONS M/G1 Transition LIG1 +PWCOMMONS M/G1 Transition PCNA +PWCOMMONS M/G1 Transition POLD4 +PWCOMMONS M/G1 Transition POLD3 +PWCOMMONS M/G1 Transition POLD2 +PWCOMMONS M/G1 Transition POLD1 +PWCOMMONS M/G1 Transition DNA2 +PWCOMMONS M/G1 Transition RPA1 +PWCOMMONS M/G1 Transition RPA3 +PWCOMMONS M/G1 Transition RPA2 +PWCOMMONS M/G1 Transition FEN1 +PWCOMMONS M/G1 Transition CDK2 +PWCOMMONS M/G1 Transition RFC2 +PWCOMMONS M/G1 Transition RFC1 +PWCOMMONS M/G1 Transition RFC3 +PWCOMMONS M/G1 Transition RFC5 +PWCOMMONS M/G1 Transition RFC4 +PWCOMMONS M/G1 Transition CDT1 +PWCOMMONS M/G1 Transition GMNN +PWCOMMONS M/G1 Transition MCM10 +PWCOMMONS M/G1 Transition ORC6L +PWCOMMONS M/G1 Transition ORC4L +PWCOMMONS M/G1 Transition ORC3L +PWCOMMONS M/G1 Transition ORC5L +PWCOMMONS M/G1 Transition ORC1L +PWCOMMONS M/G1 Transition ORC2L +PWCOMMONS M/G1 Transition RPA4 +PWCOMMONS M/G1 Transition CDC7 +PWCOMMONS M/G1 Transition DBF4 +PWCOMMONS M/G1 Transition CDC2 +PWCOMMONS M/G1 Transition FZR1 +PWCOMMONS M/G1 Transition ANAPC5 +PWCOMMONS M/G1 Transition ANAPC11 +PWCOMMONS M/G1 Transition CDC23 +PWCOMMONS M/G1 Transition ANAPC1 +PWCOMMONS M/G1 Transition ANAPC2 +PWCOMMONS M/G1 Transition UBE2D1 +PWCOMMONS M/G1 Transition CDC27 +PWCOMMONS M/G1 Transition ANAPC4 +PWCOMMONS M/G1 Transition ANAPC10 +PWCOMMONS M/G1 Transition ANAPC7 +PWCOMMONS M/G1 Transition UBE2C +PWCOMMONS M/G1 Transition CDC26 +PWCOMMONS M/G1 Transition CDC16 +PWCOMMONS M/G1 Transition UBE2E1 +PWCOMMONS M/G1 Transition PSMC6 +PWCOMMONS M/G1 Transition PSMA3 +PWCOMMONS M/G1 Transition PSMD8 +PWCOMMONS M/G1 Transition PSMD10 +PWCOMMONS M/G1 Transition PSMD1 +PWCOMMONS M/G1 Transition PSMD6 +PWCOMMONS M/G1 Transition PSMB5 +PWCOMMONS M/G1 Transition PSMB4 +PWCOMMONS M/G1 Transition PSMD4 +PWCOMMONS M/G1 Transition PSMA2 +PWCOMMONS M/G1 Transition PSMB8 +PWCOMMONS M/G1 Transition PSMD5 +PWCOMMONS M/G1 Transition PSMB6 +PWCOMMONS M/G1 Transition PSME3 +PWCOMMONS M/G1 Transition PSMB3 +PWCOMMONS M/G1 Transition PSMB7 +PWCOMMONS M/G1 Transition PSME1 +PWCOMMONS M/G1 Transition PSMD11 +PWCOMMONS M/G1 Transition PSMA5 +PWCOMMONS M/G1 Transition PSMC5 +PWCOMMONS M/G1 Transition PSMC1 +PWCOMMONS M/G1 Transition PSMD7 +PWCOMMONS M/G1 Transition PSMD3 +PWCOMMONS M/G1 Transition PSMB2 +PWCOMMONS M/G1 Transition PSMD13 +PWCOMMONS M/G1 Transition PSMD14 +PWCOMMONS M/G1 Transition PSMB1 +PWCOMMONS M/G1 Transition PSMA6 +PWCOMMONS M/G1 Transition PSMB9 +PWCOMMONS M/G1 Transition PSMB10 +PWCOMMONS M/G1 Transition PSMD9 +PWCOMMONS M/G1 Transition PSMC4 +PWCOMMONS M/G1 Transition PSMA1 +PWCOMMONS M/G1 Transition PSMA4 +PWCOMMONS M/G1 Transition PSMA7 +PWCOMMONS M/G1 Transition PSMF1 +PWCOMMONS M/G1 Transition PSME2 +PWCOMMONS M/G1 Transition PSMD12 +PWCOMMONS M/G1 Transition PSMC3 +PWCOMMONS M/G1 Transition PSMC2 +PWCOMMONS M/G1 Transition PSMD2 +PWCOMMONS M/G1 Transition +PWCOMMONS Assembly of the pre-replicative complex CDT1 +PWCOMMONS Assembly of the pre-replicative complex GMNN +PWCOMMONS Assembly of the pre-replicative complex TFDP1 +PWCOMMONS Assembly of the pre-replicative complex E2F1 +PWCOMMONS Assembly of the pre-replicative complex POLE2 +PWCOMMONS Assembly of the pre-replicative complex POLE +PWCOMMONS Assembly of the pre-replicative complex PRIM2 +PWCOMMONS Assembly of the pre-replicative complex POLA1 +PWCOMMONS Assembly of the pre-replicative complex PRIM1 +PWCOMMONS Assembly of the pre-replicative complex POLA2 +PWCOMMONS Assembly of the pre-replicative complex CDC6 +PWCOMMONS Assembly of the pre-replicative complex MCM10 +PWCOMMONS Assembly of the pre-replicative complex ORC6L +PWCOMMONS Assembly of the pre-replicative complex ORC4L +PWCOMMONS Assembly of the pre-replicative complex ORC3L +PWCOMMONS Assembly of the pre-replicative complex ORC5L +PWCOMMONS Assembly of the pre-replicative complex ORC1L +PWCOMMONS Assembly of the pre-replicative complex ORC2L +PWCOMMONS Assembly of the pre-replicative complex MCM7 +PWCOMMONS Assembly of the pre-replicative complex MCM4 +PWCOMMONS Assembly of the pre-replicative complex MCM5 +PWCOMMONS Assembly of the pre-replicative complex MCM3 +PWCOMMONS Assembly of the pre-replicative complex MCM6 +PWCOMMONS Assembly of the pre-replicative complex MCM2 +PWCOMMONS Assembly of the pre-replicative complex RFC2 +PWCOMMONS Assembly of the pre-replicative complex RFC1 +PWCOMMONS Assembly of the pre-replicative complex RFC3 +PWCOMMONS Assembly of the pre-replicative complex RFC5 +PWCOMMONS Assembly of the pre-replicative complex RFC4 +PWCOMMONS Assembly of the pre-replicative complex FZR1 +PWCOMMONS Assembly of the pre-replicative complex ANAPC5 +PWCOMMONS Assembly of the pre-replicative complex ANAPC11 +PWCOMMONS Assembly of the pre-replicative complex CDC23 +PWCOMMONS Assembly of the pre-replicative complex ANAPC1 +PWCOMMONS Assembly of the pre-replicative complex ANAPC2 +PWCOMMONS Assembly of the pre-replicative complex UBE2D1 +PWCOMMONS Assembly of the pre-replicative complex CDC27 +PWCOMMONS Assembly of the pre-replicative complex ANAPC4 +PWCOMMONS Assembly of the pre-replicative complex ANAPC10 +PWCOMMONS Assembly of the pre-replicative complex ANAPC7 +PWCOMMONS Assembly of the pre-replicative complex UBE2C +PWCOMMONS Assembly of the pre-replicative complex CDC26 +PWCOMMONS Assembly of the pre-replicative complex CDC16 +PWCOMMONS Assembly of the pre-replicative complex UBE2E1 +PWCOMMONS Assembly of the pre-replicative complex PSMC6 +PWCOMMONS Assembly of the pre-replicative complex PSMA3 +PWCOMMONS Assembly of the pre-replicative complex PSMD8 +PWCOMMONS Assembly of the pre-replicative complex PSMD10 +PWCOMMONS Assembly of the pre-replicative complex PSMD1 +PWCOMMONS Assembly of the pre-replicative complex PSMD6 +PWCOMMONS Assembly of the pre-replicative complex PSMB5 +PWCOMMONS Assembly of the pre-replicative complex PSMB4 +PWCOMMONS Assembly of the pre-replicative complex PSMD4 +PWCOMMONS Assembly of the pre-replicative complex PSMA2 +PWCOMMONS Assembly of the pre-replicative complex PSMB8 +PWCOMMONS Assembly of the pre-replicative complex PSMD5 +PWCOMMONS Assembly of the pre-replicative complex PSMB6 +PWCOMMONS Assembly of the pre-replicative complex PSME3 +PWCOMMONS Assembly of the pre-replicative complex PSMB3 +PWCOMMONS Assembly of the pre-replicative complex PSMB7 +PWCOMMONS Assembly of the pre-replicative complex PSME1 +PWCOMMONS Assembly of the pre-replicative complex PSMD11 +PWCOMMONS Assembly of the pre-replicative complex PSMA5 +PWCOMMONS Assembly of the pre-replicative complex PSMC5 +PWCOMMONS Assembly of the pre-replicative complex PSMC1 +PWCOMMONS Assembly of the pre-replicative complex PSMD7 +PWCOMMONS Assembly of the pre-replicative complex PSMD3 +PWCOMMONS Assembly of the pre-replicative complex PSMB2 +PWCOMMONS Assembly of the pre-replicative complex PSMD13 +PWCOMMONS Assembly of the pre-replicative complex PSMD14 +PWCOMMONS Assembly of the pre-replicative complex PSMB1 +PWCOMMONS Assembly of the pre-replicative complex PSMA6 +PWCOMMONS Assembly of the pre-replicative complex PSMB9 +PWCOMMONS Assembly of the pre-replicative complex PSMB10 +PWCOMMONS Assembly of the pre-replicative complex PSMD9 +PWCOMMONS Assembly of the pre-replicative complex PSMC4 +PWCOMMONS Assembly of the pre-replicative complex PSMA1 +PWCOMMONS Assembly of the pre-replicative complex PSMA4 +PWCOMMONS Assembly of the pre-replicative complex PSMA7 +PWCOMMONS Assembly of the pre-replicative complex PSMF1 +PWCOMMONS Assembly of the pre-replicative complex PSME2 +PWCOMMONS Assembly of the pre-replicative complex PSMD12 +PWCOMMONS Assembly of the pre-replicative complex PSMC3 +PWCOMMONS Assembly of the pre-replicative complex PSMC2 +PWCOMMONS Assembly of the pre-replicative complex PSMD2 +PWCOMMONS Assembly of the pre-replicative complex RPA1 +PWCOMMONS Assembly of the pre-replicative complex RPA2 +PWCOMMONS Assembly of the pre-replicative complex RPA3 +PWCOMMONS Assembly of the pre-replicative complex RPA4 +PWCOMMONS Assembly of the pre-replicative complex CDC45L +PWCOMMONS Assembly of the pre-replicative complex CDK2 +PWCOMMONS Assembly of the pre-replicative complex CDC7 +PWCOMMONS Assembly of the pre-replicative complex DBF4 +PWCOMMONS Assembly of the pre-replicative complex POLD4 +PWCOMMONS Assembly of the pre-replicative complex POLD3 +PWCOMMONS Assembly of the pre-replicative complex POLD2 +PWCOMMONS Assembly of the pre-replicative complex POLD1 +PWCOMMONS Assembly of the pre-replicative complex PCNA +PWCOMMONS Assembly of the pre-replicative complex CDC2 +PWCOMMONS Assembly of the pre-replicative complex +PWCOMMONS Assembly of the ORC complex at the origin of replication ORC3L +PWCOMMONS Assembly of the ORC complex at the origin of replication ORC2L +PWCOMMONS Assembly of the ORC complex at the origin of replication ORC6L +PWCOMMONS Assembly of the ORC complex at the origin of replication ORC4L +PWCOMMONS Assembly of the ORC complex at the origin of replication ORC1L +PWCOMMONS Assembly of the ORC complex at the origin of replication CDC2 +PWCOMMONS Assembly of the ORC complex at the origin of replication +PWCOMMONS CDC6 association with the ORC:origin complex ORC6L +PWCOMMONS CDC6 association with the ORC:origin complex ORC4L +PWCOMMONS CDC6 association with the ORC:origin complex ORC3L +PWCOMMONS CDC6 association with the ORC:origin complex ORC5L +PWCOMMONS CDC6 association with the ORC:origin complex ORC1L +PWCOMMONS CDC6 association with the ORC:origin complex ORC2L +PWCOMMONS CDC6 association with the ORC:origin complex CDT1 +PWCOMMONS CDC6 association with the ORC:origin complex +PWCOMMONS Activation of the pre-replicative complex POLD3 +PWCOMMONS Activation of the pre-replicative complex POLD2 +PWCOMMONS Activation of the pre-replicative complex POLD1 +PWCOMMONS Activation of the pre-replicative complex PCNA +PWCOMMONS Activation of the pre-replicative complex PRIM2 +PWCOMMONS Activation of the pre-replicative complex POLA1 +PWCOMMONS Activation of the pre-replicative complex PRIM1 +PWCOMMONS Activation of the pre-replicative complex POLA2 +PWCOMMONS Activation of the pre-replicative complex POLE2 +PWCOMMONS Activation of the pre-replicative complex POLE +PWCOMMONS Activation of the pre-replicative complex RB1 +PWCOMMONS Activation of the pre-replicative complex CDT1 +PWCOMMONS Activation of the pre-replicative complex GMNN +PWCOMMONS Activation of the pre-replicative complex TFDP1 +PWCOMMONS Activation of the pre-replicative complex E2F1 +PWCOMMONS Activation of the pre-replicative complex CDK2 +PWCOMMONS Activation of the pre-replicative complex MCM10 +PWCOMMONS Activation of the pre-replicative complex MCM7 +PWCOMMONS Activation of the pre-replicative complex MCM4 +PWCOMMONS Activation of the pre-replicative complex MCM5 +PWCOMMONS Activation of the pre-replicative complex MCM3 +PWCOMMONS Activation of the pre-replicative complex MCM6 +PWCOMMONS Activation of the pre-replicative complex MCM2 +PWCOMMONS Activation of the pre-replicative complex CDC6 +PWCOMMONS Activation of the pre-replicative complex ORC6L +PWCOMMONS Activation of the pre-replicative complex ORC4L +PWCOMMONS Activation of the pre-replicative complex ORC3L +PWCOMMONS Activation of the pre-replicative complex ORC5L +PWCOMMONS Activation of the pre-replicative complex ORC1L +PWCOMMONS Activation of the pre-replicative complex ORC2L +PWCOMMONS Activation of the pre-replicative complex CDC7 +PWCOMMONS Activation of the pre-replicative complex DBF4 +PWCOMMONS Activation of the pre-replicative complex RFC2 +PWCOMMONS Activation of the pre-replicative complex RFC1 +PWCOMMONS Activation of the pre-replicative complex RFC3 +PWCOMMONS Activation of the pre-replicative complex RFC5 +PWCOMMONS Activation of the pre-replicative complex RFC4 +PWCOMMONS Activation of the pre-replicative complex CDC45L +PWCOMMONS Activation of the pre-replicative complex RPA1 +PWCOMMONS Activation of the pre-replicative complex RPA2 +PWCOMMONS Activation of the pre-replicative complex RPA3 +PWCOMMONS Activation of the pre-replicative complex RPA4 +PWCOMMONS Activation of the pre-replicative complex +PWCOMMONS DNA replication initiation POLD3 +PWCOMMONS DNA replication initiation POLD2 +PWCOMMONS DNA replication initiation POLD1 +PWCOMMONS DNA replication initiation PCNA +PWCOMMONS DNA replication initiation PRIM2 +PWCOMMONS DNA replication initiation POLA1 +PWCOMMONS DNA replication initiation PRIM1 +PWCOMMONS DNA replication initiation POLA2 +PWCOMMONS DNA replication initiation RFC2 +PWCOMMONS DNA replication initiation RFC1 +PWCOMMONS DNA replication initiation RFC3 +PWCOMMONS DNA replication initiation RFC5 +PWCOMMONS DNA replication initiation RFC4 +PWCOMMONS DNA replication initiation POLE2 +PWCOMMONS DNA replication initiation POLE +PWCOMMONS DNA replication initiation RB1 +PWCOMMONS DNA replication initiation TFDP1 +PWCOMMONS DNA replication initiation E2F1 +PWCOMMONS DNA replication initiation +PWCOMMONS Switching of origins to a post-replicative state CDT1 +PWCOMMONS Switching of origins to a post-replicative state CDC6 +PWCOMMONS Switching of origins to a post-replicative state ORC6L +PWCOMMONS Switching of origins to a post-replicative state ORC4L +PWCOMMONS Switching of origins to a post-replicative state ORC3L +PWCOMMONS Switching of origins to a post-replicative state ORC5L +PWCOMMONS Switching of origins to a post-replicative state ORC2L +PWCOMMONS Switching of origins to a post-replicative state MCM7 +PWCOMMONS Switching of origins to a post-replicative state MCM4 +PWCOMMONS Switching of origins to a post-replicative state MCM5 +PWCOMMONS Switching of origins to a post-replicative state MCM3 +PWCOMMONS Switching of origins to a post-replicative state MCM6 +PWCOMMONS Switching of origins to a post-replicative state MCM2 +PWCOMMONS Switching of origins to a post-replicative state FZR1 +PWCOMMONS Switching of origins to a post-replicative state ANAPC5 +PWCOMMONS Switching of origins to a post-replicative state ANAPC11 +PWCOMMONS Switching of origins to a post-replicative state CDC23 +PWCOMMONS Switching of origins to a post-replicative state ANAPC1 +PWCOMMONS Switching of origins to a post-replicative state ANAPC2 +PWCOMMONS Switching of origins to a post-replicative state UBE2D1 +PWCOMMONS Switching of origins to a post-replicative state CDC27 +PWCOMMONS Switching of origins to a post-replicative state ANAPC4 +PWCOMMONS Switching of origins to a post-replicative state ANAPC10 +PWCOMMONS Switching of origins to a post-replicative state ANAPC7 +PWCOMMONS Switching of origins to a post-replicative state UBE2C +PWCOMMONS Switching of origins to a post-replicative state CDC26 +PWCOMMONS Switching of origins to a post-replicative state CDC16 +PWCOMMONS Switching of origins to a post-replicative state UBE2E1 +PWCOMMONS Switching of origins to a post-replicative state PSMC6 +PWCOMMONS Switching of origins to a post-replicative state PSMA3 +PWCOMMONS Switching of origins to a post-replicative state PSMD8 +PWCOMMONS Switching of origins to a post-replicative state PSMD10 +PWCOMMONS Switching of origins to a post-replicative state PSMD1 +PWCOMMONS Switching of origins to a post-replicative state PSMD6 +PWCOMMONS Switching of origins to a post-replicative state PSMB5 +PWCOMMONS Switching of origins to a post-replicative state PSMB4 +PWCOMMONS Switching of origins to a post-replicative state PSMD4 +PWCOMMONS Switching of origins to a post-replicative state PSMA2 +PWCOMMONS Switching of origins to a post-replicative state PSMB8 +PWCOMMONS Switching of origins to a post-replicative state PSMD5 +PWCOMMONS Switching of origins to a post-replicative state PSMB6 +PWCOMMONS Switching of origins to a post-replicative state PSME3 +PWCOMMONS Switching of origins to a post-replicative state PSMB3 +PWCOMMONS Switching of origins to a post-replicative state PSMB7 +PWCOMMONS Switching of origins to a post-replicative state PSME1 +PWCOMMONS Switching of origins to a post-replicative state PSMD11 +PWCOMMONS Switching of origins to a post-replicative state PSMA5 +PWCOMMONS Switching of origins to a post-replicative state PSMC5 +PWCOMMONS Switching of origins to a post-replicative state PSMC1 +PWCOMMONS Switching of origins to a post-replicative state PSMD7 +PWCOMMONS Switching of origins to a post-replicative state PSMD3 +PWCOMMONS Switching of origins to a post-replicative state PSMB2 +PWCOMMONS Switching of origins to a post-replicative state PSMD13 +PWCOMMONS Switching of origins to a post-replicative state PSMD14 +PWCOMMONS Switching of origins to a post-replicative state PSMB1 +PWCOMMONS Switching of origins to a post-replicative state PSMA6 +PWCOMMONS Switching of origins to a post-replicative state PSMB9 +PWCOMMONS Switching of origins to a post-replicative state PSMB10 +PWCOMMONS Switching of origins to a post-replicative state PSMD9 +PWCOMMONS Switching of origins to a post-replicative state PSMC4 +PWCOMMONS Switching of origins to a post-replicative state PSMA1 +PWCOMMONS Switching of origins to a post-replicative state PSMA4 +PWCOMMONS Switching of origins to a post-replicative state PSMA7 +PWCOMMONS Switching of origins to a post-replicative state PSMF1 +PWCOMMONS Switching of origins to a post-replicative state PSME2 +PWCOMMONS Switching of origins to a post-replicative state PSMD12 +PWCOMMONS Switching of origins to a post-replicative state PSMC3 +PWCOMMONS Switching of origins to a post-replicative state PSMC2 +PWCOMMONS Switching of origins to a post-replicative state PSMD2 +PWCOMMONS Switching of origins to a post-replicative state CDK2 +PWCOMMONS Switching of origins to a post-replicative state +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 FZR1 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 ANAPC5 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 ANAPC11 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 CDC23 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 ANAPC1 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 ANAPC2 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 UBE2D1 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 CDC27 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 ANAPC4 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 ANAPC10 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 ANAPC7 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 UBE2C +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 CDC26 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 CDC16 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 UBE2E1 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMC6 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMA3 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD8 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD10 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD1 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD6 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMB5 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMB4 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD4 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMA2 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMB8 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD5 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMB6 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSME3 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMB3 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMB7 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSME1 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD11 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMA5 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMC5 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMC1 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD7 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD3 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMB2 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD13 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD14 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMB1 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMA6 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMB9 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMB10 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD9 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMC4 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMA1 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMA4 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMA7 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMF1 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSME2 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD12 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMC3 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMC2 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 PSMD2 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 CDK2 +PWCOMMONS CDK-mediated phosphorylation and removal of Cdc6 +PWCOMMONS Orc1 removal from chromatin CDT1 +PWCOMMONS Orc1 removal from chromatin CDC6 +PWCOMMONS Orc1 removal from chromatin ORC6L +PWCOMMONS Orc1 removal from chromatin ORC4L +PWCOMMONS Orc1 removal from chromatin ORC3L +PWCOMMONS Orc1 removal from chromatin ORC5L +PWCOMMONS Orc1 removal from chromatin ORC2L +PWCOMMONS Orc1 removal from chromatin MCM7 +PWCOMMONS Orc1 removal from chromatin MCM4 +PWCOMMONS Orc1 removal from chromatin MCM5 +PWCOMMONS Orc1 removal from chromatin MCM3 +PWCOMMONS Orc1 removal from chromatin MCM6 +PWCOMMONS Orc1 removal from chromatin MCM2 +PWCOMMONS Orc1 removal from chromatin FZR1 +PWCOMMONS Orc1 removal from chromatin ANAPC5 +PWCOMMONS Orc1 removal from chromatin ANAPC11 +PWCOMMONS Orc1 removal from chromatin CDC23 +PWCOMMONS Orc1 removal from chromatin ANAPC1 +PWCOMMONS Orc1 removal from chromatin ANAPC2 +PWCOMMONS Orc1 removal from chromatin UBE2D1 +PWCOMMONS Orc1 removal from chromatin CDC27 +PWCOMMONS Orc1 removal from chromatin ANAPC4 +PWCOMMONS Orc1 removal from chromatin ANAPC10 +PWCOMMONS Orc1 removal from chromatin ANAPC7 +PWCOMMONS Orc1 removal from chromatin UBE2C +PWCOMMONS Orc1 removal from chromatin CDC26 +PWCOMMONS Orc1 removal from chromatin CDC16 +PWCOMMONS Orc1 removal from chromatin UBE2E1 +PWCOMMONS Orc1 removal from chromatin PSMC6 +PWCOMMONS Orc1 removal from chromatin PSMA3 +PWCOMMONS Orc1 removal from chromatin PSMD8 +PWCOMMONS Orc1 removal from chromatin PSMD10 +PWCOMMONS Orc1 removal from chromatin PSMD1 +PWCOMMONS Orc1 removal from chromatin PSMD6 +PWCOMMONS Orc1 removal from chromatin PSMB5 +PWCOMMONS Orc1 removal from chromatin PSMB4 +PWCOMMONS Orc1 removal from chromatin PSMD4 +PWCOMMONS Orc1 removal from chromatin PSMA2 +PWCOMMONS Orc1 removal from chromatin PSMB8 +PWCOMMONS Orc1 removal from chromatin PSMD5 +PWCOMMONS Orc1 removal from chromatin PSMB6 +PWCOMMONS Orc1 removal from chromatin PSME3 +PWCOMMONS Orc1 removal from chromatin PSMB3 +PWCOMMONS Orc1 removal from chromatin PSMB7 +PWCOMMONS Orc1 removal from chromatin PSME1 +PWCOMMONS Orc1 removal from chromatin PSMD11 +PWCOMMONS Orc1 removal from chromatin PSMA5 +PWCOMMONS Orc1 removal from chromatin PSMC5 +PWCOMMONS Orc1 removal from chromatin PSMC1 +PWCOMMONS Orc1 removal from chromatin PSMD7 +PWCOMMONS Orc1 removal from chromatin PSMD3 +PWCOMMONS Orc1 removal from chromatin PSMB2 +PWCOMMONS Orc1 removal from chromatin PSMD13 +PWCOMMONS Orc1 removal from chromatin PSMD14 +PWCOMMONS Orc1 removal from chromatin PSMB1 +PWCOMMONS Orc1 removal from chromatin PSMA6 +PWCOMMONS Orc1 removal from chromatin PSMB9 +PWCOMMONS Orc1 removal from chromatin PSMB10 +PWCOMMONS Orc1 removal from chromatin PSMD9 +PWCOMMONS Orc1 removal from chromatin PSMC4 +PWCOMMONS Orc1 removal from chromatin PSMA1 +PWCOMMONS Orc1 removal from chromatin PSMA4 +PWCOMMONS Orc1 removal from chromatin PSMA7 +PWCOMMONS Orc1 removal from chromatin PSMF1 +PWCOMMONS Orc1 removal from chromatin PSME2 +PWCOMMONS Orc1 removal from chromatin PSMD12 +PWCOMMONS Orc1 removal from chromatin PSMC3 +PWCOMMONS Orc1 removal from chromatin PSMC2 +PWCOMMONS Orc1 removal from chromatin PSMD2 +PWCOMMONS Orc1 removal from chromatin CDK2 +PWCOMMONS Orc1 removal from chromatin +PWCOMMONS DNA strand elongation MCM7 +PWCOMMONS DNA strand elongation MCM4 +PWCOMMONS DNA strand elongation MCM5 +PWCOMMONS DNA strand elongation MCM3 +PWCOMMONS DNA strand elongation MCM6 +PWCOMMONS DNA strand elongation MCM2 +PWCOMMONS DNA strand elongation GINS4 +PWCOMMONS DNA strand elongation GINS1 +PWCOMMONS DNA strand elongation GINS2 +PWCOMMONS DNA strand elongation POLD4 +PWCOMMONS DNA strand elongation POLD3 +PWCOMMONS DNA strand elongation POLD2 +PWCOMMONS DNA strand elongation POLD1 +PWCOMMONS DNA strand elongation PCNA +PWCOMMONS DNA strand elongation PRIM2 +PWCOMMONS DNA strand elongation POLA1 +PWCOMMONS DNA strand elongation PRIM1 +PWCOMMONS DNA strand elongation POLA2 +PWCOMMONS DNA strand elongation RFC2 +PWCOMMONS DNA strand elongation RFC1 +PWCOMMONS DNA strand elongation RFC3 +PWCOMMONS DNA strand elongation RFC5 +PWCOMMONS DNA strand elongation RFC4 +PWCOMMONS DNA strand elongation LIG1 +PWCOMMONS DNA strand elongation DNA2 +PWCOMMONS DNA strand elongation RPA1 +PWCOMMONS DNA strand elongation RPA3 +PWCOMMONS DNA strand elongation RPA2 +PWCOMMONS DNA strand elongation FEN1 +PWCOMMONS DNA strand elongation +PWCOMMONS Unwinding of DNA MCM7 +PWCOMMONS Unwinding of DNA MCM4 +PWCOMMONS Unwinding of DNA MCM5 +PWCOMMONS Unwinding of DNA MCM3 +PWCOMMONS Unwinding of DNA MCM6 +PWCOMMONS Unwinding of DNA MCM2 +PWCOMMONS Unwinding of DNA GINS4 +PWCOMMONS Unwinding of DNA GINS1 +PWCOMMONS Unwinding of DNA GINS2 +PWCOMMONS Unwinding of DNA +PWCOMMONS Leading Strand Synthesis POLD3 +PWCOMMONS Leading Strand Synthesis POLD2 +PWCOMMONS Leading Strand Synthesis POLD1 +PWCOMMONS Leading Strand Synthesis PCNA +PWCOMMONS Leading Strand Synthesis PRIM2 +PWCOMMONS Leading Strand Synthesis POLA1 +PWCOMMONS Leading Strand Synthesis PRIM1 +PWCOMMONS Leading Strand Synthesis POLA2 +PWCOMMONS Leading Strand Synthesis RFC2 +PWCOMMONS Leading Strand Synthesis RFC1 +PWCOMMONS Leading Strand Synthesis RFC3 +PWCOMMONS Leading Strand Synthesis RFC5 +PWCOMMONS Leading Strand Synthesis RFC4 +PWCOMMONS Leading Strand Synthesis LIG1 +PWCOMMONS Leading Strand Synthesis DNA2 +PWCOMMONS Leading Strand Synthesis RPA1 +PWCOMMONS Leading Strand Synthesis RPA3 +PWCOMMONS Leading Strand Synthesis RPA2 +PWCOMMONS Leading Strand Synthesis FEN1 +PWCOMMONS Leading Strand Synthesis +PWCOMMONS Polymerase switching POLD3 +PWCOMMONS Polymerase switching POLD2 +PWCOMMONS Polymerase switching POLD1 +PWCOMMONS Polymerase switching PCNA +PWCOMMONS Polymerase switching PRIM2 +PWCOMMONS Polymerase switching POLA1 +PWCOMMONS Polymerase switching PRIM1 +PWCOMMONS Polymerase switching POLA2 +PWCOMMONS Polymerase switching RFC2 +PWCOMMONS Polymerase switching RFC1 +PWCOMMONS Polymerase switching RFC3 +PWCOMMONS Polymerase switching RFC5 +PWCOMMONS Polymerase switching RFC4 +PWCOMMONS Polymerase switching +PWCOMMONS Processive synthesis on the lagging strand PCNA +PWCOMMONS Processive synthesis on the lagging strand POLD4 +PWCOMMONS Processive synthesis on the lagging strand POLD3 +PWCOMMONS Processive synthesis on the lagging strand POLD2 +PWCOMMONS Processive synthesis on the lagging strand POLD1 +PWCOMMONS Processive synthesis on the lagging strand DNA2 +PWCOMMONS Processive synthesis on the lagging strand PRIM2 +PWCOMMONS Processive synthesis on the lagging strand POLA1 +PWCOMMONS Processive synthesis on the lagging strand PRIM1 +PWCOMMONS Processive synthesis on the lagging strand POLA2 +PWCOMMONS Processive synthesis on the lagging strand RPA1 +PWCOMMONS Processive synthesis on the lagging strand RPA3 +PWCOMMONS Processive synthesis on the lagging strand RPA2 +PWCOMMONS Processive synthesis on the lagging strand FEN1 +PWCOMMONS Processive synthesis on the lagging strand +PWCOMMONS Removal of the Flap Intermediate POLD4 +PWCOMMONS Removal of the Flap Intermediate POLD3 +PWCOMMONS Removal of the Flap Intermediate POLD2 +PWCOMMONS Removal of the Flap Intermediate POLD1 +PWCOMMONS Removal of the Flap Intermediate PCNA +PWCOMMONS Removal of the Flap Intermediate PRIM2 +PWCOMMONS Removal of the Flap Intermediate POLA1 +PWCOMMONS Removal of the Flap Intermediate PRIM1 +PWCOMMONS Removal of the Flap Intermediate POLA2 +PWCOMMONS Removal of the Flap Intermediate RPA1 +PWCOMMONS Removal of the Flap Intermediate RPA3 +PWCOMMONS Removal of the Flap Intermediate RPA2 +PWCOMMONS Removal of the Flap Intermediate FEN1 +PWCOMMONS Removal of the Flap Intermediate +PWCOMMONS Lagging Strand Synthesis POLD3 +PWCOMMONS Lagging Strand Synthesis POLD2 +PWCOMMONS Lagging Strand Synthesis POLD1 +PWCOMMONS Lagging Strand Synthesis PCNA +PWCOMMONS Lagging Strand Synthesis PRIM2 +PWCOMMONS Lagging Strand Synthesis POLA1 +PWCOMMONS Lagging Strand Synthesis PRIM1 +PWCOMMONS Lagging Strand Synthesis POLA2 +PWCOMMONS Lagging Strand Synthesis RFC2 +PWCOMMONS Lagging Strand Synthesis RFC1 +PWCOMMONS Lagging Strand Synthesis RFC3 +PWCOMMONS Lagging Strand Synthesis RFC5 +PWCOMMONS Lagging Strand Synthesis RFC4 +PWCOMMONS Lagging Strand Synthesis LIG1 +PWCOMMONS Lagging Strand Synthesis DNA2 +PWCOMMONS Lagging Strand Synthesis RPA1 +PWCOMMONS Lagging Strand Synthesis RPA3 +PWCOMMONS Lagging Strand Synthesis RPA2 +PWCOMMONS Lagging Strand Synthesis FEN1 +PWCOMMONS Lagging Strand Synthesis +PWCOMMONS G1 Phase CDK2 +PWCOMMONS G1 Phase TFDP1 +PWCOMMONS G1 Phase E2F1 +PWCOMMONS G1 Phase CDC6 +PWCOMMONS G1 Phase PRIM2 +PWCOMMONS G1 Phase POLA1 +PWCOMMONS G1 Phase PRIM1 +PWCOMMONS G1 Phase POLA2 +PWCOMMONS G1 Phase ORC6L +PWCOMMONS G1 Phase ORC3L +PWCOMMONS G1 Phase ORC4L +PWCOMMONS G1 Phase ORC5L +PWCOMMONS G1 Phase ORC1L +PWCOMMONS G1 Phase ORC2L +PWCOMMONS G1 Phase PCNA +PWCOMMONS G1 Phase BCL2 +PWCOMMONS G1 Phase PMAIP1 +PWCOMMONS G1 Phase FZR1 +PWCOMMONS G1 Phase ANAPC5 +PWCOMMONS G1 Phase ANAPC11 +PWCOMMONS G1 Phase CDC23 +PWCOMMONS G1 Phase ANAPC1 +PWCOMMONS G1 Phase UBE2D1 +PWCOMMONS G1 Phase ANAPC2 +PWCOMMONS G1 Phase CDC27 +PWCOMMONS G1 Phase ANAPC4 +PWCOMMONS G1 Phase ANAPC10 +PWCOMMONS G1 Phase UBE2C +PWCOMMONS G1 Phase ANAPC7 +PWCOMMONS G1 Phase CDC26 +PWCOMMONS G1 Phase CDC16 +PWCOMMONS G1 Phase UBE2E1 +PWCOMMONS G1 Phase DHFR +PWCOMMONS G1 Phase BCL2L1 +PWCOMMONS G1 Phase CDT1 +PWCOMMONS G1 Phase CDC25A +PWCOMMONS G1 Phase CDC2 +PWCOMMONS G1 Phase CKS1B +PWCOMMONS G1 Phase CUL1 +PWCOMMONS G1 Phase SKP1 +PWCOMMONS G1 Phase RPA1 +PWCOMMONS G1 Phase RPA2 +PWCOMMONS G1 Phase RPA3 +PWCOMMONS G1 Phase RPA4 +PWCOMMONS G1 Phase CDC45L +PWCOMMONS G1 Phase MCM10 +PWCOMMONS G1 Phase MCM7 +PWCOMMONS G1 Phase MCM4 +PWCOMMONS G1 Phase MCM5 +PWCOMMONS G1 Phase MCM3 +PWCOMMONS G1 Phase MCM6 +PWCOMMONS G1 Phase MCM2 +PWCOMMONS G1 Phase CDC7 +PWCOMMONS G1 Phase DBF4 +PWCOMMONS G1 Phase POLE2 +PWCOMMONS G1 Phase POLE +PWCOMMONS G1 Phase TYMS +PWCOMMONS G1 Phase CCNH +PWCOMMONS G1 Phase CDK7 +PWCOMMONS G1 Phase MNAT1 +PWCOMMONS G1 Phase CCND1 +PWCOMMONS G1 Phase CDK4 +PWCOMMONS G1 Phase WEE1 +PWCOMMONS G1 Phase PSMC6 +PWCOMMONS G1 Phase PSMA3 +PWCOMMONS G1 Phase PSMD8 +PWCOMMONS G1 Phase PSMD10 +PWCOMMONS G1 Phase PSMD1 +PWCOMMONS G1 Phase PSMD6 +PWCOMMONS G1 Phase PSMB5 +PWCOMMONS G1 Phase PSMB4 +PWCOMMONS G1 Phase PSMD4 +PWCOMMONS G1 Phase PSMA2 +PWCOMMONS G1 Phase PSMB8 +PWCOMMONS G1 Phase PSMD5 +PWCOMMONS G1 Phase PSMB6 +PWCOMMONS G1 Phase PSME3 +PWCOMMONS G1 Phase PSMB3 +PWCOMMONS G1 Phase PSMB7 +PWCOMMONS G1 Phase PSME1 +PWCOMMONS G1 Phase PSMD11 +PWCOMMONS G1 Phase PSMA5 +PWCOMMONS G1 Phase PSMC5 +PWCOMMONS G1 Phase PSMC1 +PWCOMMONS G1 Phase PSMD7 +PWCOMMONS G1 Phase PSMD3 +PWCOMMONS G1 Phase PSMB2 +PWCOMMONS G1 Phase PSMD13 +PWCOMMONS G1 Phase PSMD14 +PWCOMMONS G1 Phase PSMB1 +PWCOMMONS G1 Phase PSMA6 +PWCOMMONS G1 Phase PSMB9 +PWCOMMONS G1 Phase PSMB10 +PWCOMMONS G1 Phase PSMD9 +PWCOMMONS G1 Phase PSMC4 +PWCOMMONS G1 Phase PSMA1 +PWCOMMONS G1 Phase PSMA4 +PWCOMMONS G1 Phase PSMA7 +PWCOMMONS G1 Phase PSMF1 +PWCOMMONS G1 Phase PSME2 +PWCOMMONS G1 Phase PSMD12 +PWCOMMONS G1 Phase PSMC3 +PWCOMMONS G1 Phase PSMC2 +PWCOMMONS G1 Phase PSMD2 +PWCOMMONS G1 Phase RFC2 +PWCOMMONS G1 Phase RFC1 +PWCOMMONS G1 Phase RFC3 +PWCOMMONS G1 Phase RFC5 +PWCOMMONS G1 Phase RFC4 +PWCOMMONS G1 Phase RRM2 +PWCOMMONS G1 Phase BBC3 +PWCOMMONS G1 Phase POLD4 +PWCOMMONS G1 Phase POLD3 +PWCOMMONS G1 Phase POLD2 +PWCOMMONS G1 Phase POLD1 +PWCOMMONS G1 Phase TK2 +PWCOMMONS G1 Phase CCNA1 +PWCOMMONS G1 Phase CCNE1 +PWCOMMONS G1 Phase +PWCOMMONS Cyclin D associated events in G1 CDK2 +PWCOMMONS Cyclin D associated events in G1 TFDP1 +PWCOMMONS Cyclin D associated events in G1 E2F1 +PWCOMMONS Cyclin D associated events in G1 CDC6 +PWCOMMONS Cyclin D associated events in G1 PRIM2 +PWCOMMONS Cyclin D associated events in G1 POLA1 +PWCOMMONS Cyclin D associated events in G1 PRIM1 +PWCOMMONS Cyclin D associated events in G1 POLA2 +PWCOMMONS Cyclin D associated events in G1 ORC6L +PWCOMMONS Cyclin D associated events in G1 ORC3L +PWCOMMONS Cyclin D associated events in G1 ORC4L +PWCOMMONS Cyclin D associated events in G1 ORC5L +PWCOMMONS Cyclin D associated events in G1 ORC1L +PWCOMMONS Cyclin D associated events in G1 ORC2L +PWCOMMONS Cyclin D associated events in G1 PCNA +PWCOMMONS Cyclin D associated events in G1 BCL2 +PWCOMMONS Cyclin D associated events in G1 PMAIP1 +PWCOMMONS Cyclin D associated events in G1 FZR1 +PWCOMMONS Cyclin D associated events in G1 ANAPC5 +PWCOMMONS Cyclin D associated events in G1 ANAPC11 +PWCOMMONS Cyclin D associated events in G1 CDC23 +PWCOMMONS Cyclin D associated events in G1 ANAPC1 +PWCOMMONS Cyclin D associated events in G1 UBE2D1 +PWCOMMONS Cyclin D associated events in G1 ANAPC2 +PWCOMMONS Cyclin D associated events in G1 CDC27 +PWCOMMONS Cyclin D associated events in G1 ANAPC4 +PWCOMMONS Cyclin D associated events in G1 ANAPC10 +PWCOMMONS Cyclin D associated events in G1 UBE2C +PWCOMMONS Cyclin D associated events in G1 ANAPC7 +PWCOMMONS Cyclin D associated events in G1 CDC26 +PWCOMMONS Cyclin D associated events in G1 CDC16 +PWCOMMONS Cyclin D associated events in G1 UBE2E1 +PWCOMMONS Cyclin D associated events in G1 DHFR +PWCOMMONS Cyclin D associated events in G1 BCL2L1 +PWCOMMONS Cyclin D associated events in G1 CDT1 +PWCOMMONS Cyclin D associated events in G1 CDC25A +PWCOMMONS Cyclin D associated events in G1 CDC2 +PWCOMMONS Cyclin D associated events in G1 CKS1B +PWCOMMONS Cyclin D associated events in G1 CUL1 +PWCOMMONS Cyclin D associated events in G1 SKP1 +PWCOMMONS Cyclin D associated events in G1 RPA1 +PWCOMMONS Cyclin D associated events in G1 RPA2 +PWCOMMONS Cyclin D associated events in G1 RPA3 +PWCOMMONS Cyclin D associated events in G1 RPA4 +PWCOMMONS Cyclin D associated events in G1 CDC45L +PWCOMMONS Cyclin D associated events in G1 MCM10 +PWCOMMONS Cyclin D associated events in G1 MCM7 +PWCOMMONS Cyclin D associated events in G1 MCM4 +PWCOMMONS Cyclin D associated events in G1 MCM5 +PWCOMMONS Cyclin D associated events in G1 MCM3 +PWCOMMONS Cyclin D associated events in G1 MCM6 +PWCOMMONS Cyclin D associated events in G1 MCM2 +PWCOMMONS Cyclin D associated events in G1 CDC7 +PWCOMMONS Cyclin D associated events in G1 DBF4 +PWCOMMONS Cyclin D associated events in G1 POLE2 +PWCOMMONS Cyclin D associated events in G1 POLE +PWCOMMONS Cyclin D associated events in G1 TYMS +PWCOMMONS Cyclin D associated events in G1 CCNH +PWCOMMONS Cyclin D associated events in G1 CDK7 +PWCOMMONS Cyclin D associated events in G1 MNAT1 +PWCOMMONS Cyclin D associated events in G1 CCND1 +PWCOMMONS Cyclin D associated events in G1 CDK4 +PWCOMMONS Cyclin D associated events in G1 WEE1 +PWCOMMONS Cyclin D associated events in G1 PSMC6 +PWCOMMONS Cyclin D associated events in G1 PSMA3 +PWCOMMONS Cyclin D associated events in G1 PSMD8 +PWCOMMONS Cyclin D associated events in G1 PSMD10 +PWCOMMONS Cyclin D associated events in G1 PSMD1 +PWCOMMONS Cyclin D associated events in G1 PSMD6 +PWCOMMONS Cyclin D associated events in G1 PSMB5 +PWCOMMONS Cyclin D associated events in G1 PSMB4 +PWCOMMONS Cyclin D associated events in G1 PSMD4 +PWCOMMONS Cyclin D associated events in G1 PSMA2 +PWCOMMONS Cyclin D associated events in G1 PSMB8 +PWCOMMONS Cyclin D associated events in G1 PSMD5 +PWCOMMONS Cyclin D associated events in G1 PSMB6 +PWCOMMONS Cyclin D associated events in G1 PSME3 +PWCOMMONS Cyclin D associated events in G1 PSMB3 +PWCOMMONS Cyclin D associated events in G1 PSMB7 +PWCOMMONS Cyclin D associated events in G1 PSME1 +PWCOMMONS Cyclin D associated events in G1 PSMD11 +PWCOMMONS Cyclin D associated events in G1 PSMA5 +PWCOMMONS Cyclin D associated events in G1 PSMC5 +PWCOMMONS Cyclin D associated events in G1 PSMC1 +PWCOMMONS Cyclin D associated events in G1 PSMD7 +PWCOMMONS Cyclin D associated events in G1 PSMD3 +PWCOMMONS Cyclin D associated events in G1 PSMB2 +PWCOMMONS Cyclin D associated events in G1 PSMD13 +PWCOMMONS Cyclin D associated events in G1 PSMD14 +PWCOMMONS Cyclin D associated events in G1 PSMB1 +PWCOMMONS Cyclin D associated events in G1 PSMA6 +PWCOMMONS Cyclin D associated events in G1 PSMB9 +PWCOMMONS Cyclin D associated events in G1 PSMB10 +PWCOMMONS Cyclin D associated events in G1 PSMD9 +PWCOMMONS Cyclin D associated events in G1 PSMC4 +PWCOMMONS Cyclin D associated events in G1 PSMA1 +PWCOMMONS Cyclin D associated events in G1 PSMA4 +PWCOMMONS Cyclin D associated events in G1 PSMA7 +PWCOMMONS Cyclin D associated events in G1 PSMF1 +PWCOMMONS Cyclin D associated events in G1 PSME2 +PWCOMMONS Cyclin D associated events in G1 PSMD12 +PWCOMMONS Cyclin D associated events in G1 PSMC3 +PWCOMMONS Cyclin D associated events in G1 PSMC2 +PWCOMMONS Cyclin D associated events in G1 PSMD2 +PWCOMMONS Cyclin D associated events in G1 RFC2 +PWCOMMONS Cyclin D associated events in G1 RFC1 +PWCOMMONS Cyclin D associated events in G1 RFC3 +PWCOMMONS Cyclin D associated events in G1 RFC5 +PWCOMMONS Cyclin D associated events in G1 RFC4 +PWCOMMONS Cyclin D associated events in G1 RRM2 +PWCOMMONS Cyclin D associated events in G1 BBC3 +PWCOMMONS Cyclin D associated events in G1 POLD4 +PWCOMMONS Cyclin D associated events in G1 POLD3 +PWCOMMONS Cyclin D associated events in G1 POLD2 +PWCOMMONS Cyclin D associated events in G1 POLD1 +PWCOMMONS Cyclin D associated events in G1 TK2 +PWCOMMONS Cyclin D associated events in G1 CCNA1 +PWCOMMONS Cyclin D associated events in G1 CCNE1 +PWCOMMONS Cyclin D associated events in G1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 CDK4 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 FZR1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 ANAPC5 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 ANAPC11 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 CDC23 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 ANAPC1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 ANAPC2 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 UBE2D1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 CDC27 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 ANAPC4 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 ANAPC10 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 ANAPC7 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 UBE2C +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 CDC26 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 CDC16 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 UBE2E1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMC6 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMA3 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD8 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD10 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD6 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMB5 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMB4 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD4 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMA2 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMB8 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD5 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMB6 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSME3 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMB3 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMB7 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSME1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD11 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMA5 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMC5 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMC1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD7 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD3 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMB2 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD13 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD14 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMB1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMA6 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMB9 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMB10 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD9 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMC4 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMA1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMA4 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMA7 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMF1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSME2 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD12 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMC3 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMC2 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 PSMD2 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 CDC25A +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D1 +PWCOMMONS G1/S Transition CDC6 +PWCOMMONS G1/S Transition TFDP1 +PWCOMMONS G1/S Transition E2F1 +PWCOMMONS G1/S Transition POLE2 +PWCOMMONS G1/S Transition POLE +PWCOMMONS G1/S Transition PRIM2 +PWCOMMONS G1/S Transition POLA1 +PWCOMMONS G1/S Transition PRIM1 +PWCOMMONS G1/S Transition POLA2 +PWCOMMONS G1/S Transition CDC45L +PWCOMMONS G1/S Transition MCM7 +PWCOMMONS G1/S Transition MCM4 +PWCOMMONS G1/S Transition MCM5 +PWCOMMONS G1/S Transition MCM3 +PWCOMMONS G1/S Transition MCM6 +PWCOMMONS G1/S Transition MCM2 +PWCOMMONS G1/S Transition GINS4 +PWCOMMONS G1/S Transition GINS1 +PWCOMMONS G1/S Transition GINS2 +PWCOMMONS G1/S Transition LIG1 +PWCOMMONS G1/S Transition PCNA +PWCOMMONS G1/S Transition POLD4 +PWCOMMONS G1/S Transition POLD3 +PWCOMMONS G1/S Transition POLD2 +PWCOMMONS G1/S Transition POLD1 +PWCOMMONS G1/S Transition DNA2 +PWCOMMONS G1/S Transition RPA1 +PWCOMMONS G1/S Transition RPA3 +PWCOMMONS G1/S Transition RPA2 +PWCOMMONS G1/S Transition FEN1 +PWCOMMONS G1/S Transition CDK2 +PWCOMMONS G1/S Transition RFC2 +PWCOMMONS G1/S Transition RFC1 +PWCOMMONS G1/S Transition RFC3 +PWCOMMONS G1/S Transition RFC5 +PWCOMMONS G1/S Transition RFC4 +PWCOMMONS G1/S Transition ORC1L +PWCOMMONS G1/S Transition CDT1 +PWCOMMONS G1/S Transition ORC6L +PWCOMMONS G1/S Transition ORC4L +PWCOMMONS G1/S Transition ORC3L +PWCOMMONS G1/S Transition ORC5L +PWCOMMONS G1/S Transition ORC2L +PWCOMMONS G1/S Transition FZR1 +PWCOMMONS G1/S Transition ANAPC5 +PWCOMMONS G1/S Transition ANAPC11 +PWCOMMONS G1/S Transition CDC23 +PWCOMMONS G1/S Transition ANAPC1 +PWCOMMONS G1/S Transition ANAPC2 +PWCOMMONS G1/S Transition UBE2D1 +PWCOMMONS G1/S Transition CDC27 +PWCOMMONS G1/S Transition ANAPC4 +PWCOMMONS G1/S Transition ANAPC10 +PWCOMMONS G1/S Transition ANAPC7 +PWCOMMONS G1/S Transition UBE2C +PWCOMMONS G1/S Transition CDC26 +PWCOMMONS G1/S Transition CDC16 +PWCOMMONS G1/S Transition UBE2E1 +PWCOMMONS G1/S Transition PSMC6 +PWCOMMONS G1/S Transition PSMA3 +PWCOMMONS G1/S Transition PSMD8 +PWCOMMONS G1/S Transition PSMD10 +PWCOMMONS G1/S Transition PSMD1 +PWCOMMONS G1/S Transition PSMD6 +PWCOMMONS G1/S Transition PSMB5 +PWCOMMONS G1/S Transition PSMB4 +PWCOMMONS G1/S Transition PSMD4 +PWCOMMONS G1/S Transition PSMA2 +PWCOMMONS G1/S Transition PSMB8 +PWCOMMONS G1/S Transition PSMD5 +PWCOMMONS G1/S Transition PSMB6 +PWCOMMONS G1/S Transition PSME3 +PWCOMMONS G1/S Transition PSMB3 +PWCOMMONS G1/S Transition PSMB7 +PWCOMMONS G1/S Transition PSME1 +PWCOMMONS G1/S Transition PSMD11 +PWCOMMONS G1/S Transition PSMA5 +PWCOMMONS G1/S Transition PSMC5 +PWCOMMONS G1/S Transition PSMC1 +PWCOMMONS G1/S Transition PSMD7 +PWCOMMONS G1/S Transition PSMD3 +PWCOMMONS G1/S Transition PSMB2 +PWCOMMONS G1/S Transition PSMD13 +PWCOMMONS G1/S Transition PSMD14 +PWCOMMONS G1/S Transition PSMB1 +PWCOMMONS G1/S Transition PSMA6 +PWCOMMONS G1/S Transition PSMB9 +PWCOMMONS G1/S Transition PSMB10 +PWCOMMONS G1/S Transition PSMD9 +PWCOMMONS G1/S Transition PSMC4 +PWCOMMONS G1/S Transition PSMA1 +PWCOMMONS G1/S Transition PSMA4 +PWCOMMONS G1/S Transition PSMA7 +PWCOMMONS G1/S Transition PSMF1 +PWCOMMONS G1/S Transition PSME2 +PWCOMMONS G1/S Transition PSMD12 +PWCOMMONS G1/S Transition PSMC3 +PWCOMMONS G1/S Transition PSMC2 +PWCOMMONS G1/S Transition PSMD2 +PWCOMMONS G1/S Transition GMNN +PWCOMMONS G1/S Transition MCM10 +PWCOMMONS G1/S Transition CDC7 +PWCOMMONS G1/S Transition DBF4 +PWCOMMONS G1/S Transition RPA4 +PWCOMMONS G1/S Transition CKS1B +PWCOMMONS G1/S Transition CUL1 +PWCOMMONS G1/S Transition SKP1 +PWCOMMONS G1/S Transition WEE1 +PWCOMMONS G1/S Transition CDC25A +PWCOMMONS G1/S Transition CCNH +PWCOMMONS G1/S Transition CDK7 +PWCOMMONS G1/S Transition MNAT1 +PWCOMMONS G1/S Transition PLK1 +PWCOMMONS G1/S Transition BTRC +PWCOMMONS G1/S Transition DHFR +PWCOMMONS G1/S Transition FBXO5 +PWCOMMONS G1/S Transition CDC2 +PWCOMMONS G1/S Transition TYMS +PWCOMMONS G1/S Transition CCNB1 +PWCOMMONS G1/S Transition RRM2 +PWCOMMONS G1/S Transition TK2 +PWCOMMONS G1/S Transition CCNA1 +PWCOMMONS G1/S Transition CCNE1 +PWCOMMONS G1/S Transition +PWCOMMONS Cyclin E associated events during G1/S transition ANAPC5 +PWCOMMONS Cyclin E associated events during G1/S transition ANAPC11 +PWCOMMONS Cyclin E associated events during G1/S transition CDC23 +PWCOMMONS Cyclin E associated events during G1/S transition ANAPC1 +PWCOMMONS Cyclin E associated events during G1/S transition UBE2D1 +PWCOMMONS Cyclin E associated events during G1/S transition ANAPC2 +PWCOMMONS Cyclin E associated events during G1/S transition CDC27 +PWCOMMONS Cyclin E associated events during G1/S transition ANAPC4 +PWCOMMONS Cyclin E associated events during G1/S transition ANAPC10 +PWCOMMONS Cyclin E associated events during G1/S transition UBE2C +PWCOMMONS Cyclin E associated events during G1/S transition ANAPC7 +PWCOMMONS Cyclin E associated events during G1/S transition CDC26 +PWCOMMONS Cyclin E associated events during G1/S transition CDC16 +PWCOMMONS Cyclin E associated events during G1/S transition UBE2E1 +PWCOMMONS Cyclin E associated events during G1/S transition CDK2 +PWCOMMONS Cyclin E associated events during G1/S transition CKS1B +PWCOMMONS Cyclin E associated events during G1/S transition CUL1 +PWCOMMONS Cyclin E associated events during G1/S transition SKP1 +PWCOMMONS Cyclin E associated events during G1/S transition WEE1 +PWCOMMONS Cyclin E associated events during G1/S transition CDC25A +PWCOMMONS Cyclin E associated events during G1/S transition RB1 +PWCOMMONS Cyclin E associated events during G1/S transition CCNH +PWCOMMONS Cyclin E associated events during G1/S transition CDK7 +PWCOMMONS Cyclin E associated events during G1/S transition MNAT1 +PWCOMMONS Cyclin E associated events during G1/S transition PSMC6 +PWCOMMONS Cyclin E associated events during G1/S transition PSMA3 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD8 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD10 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD1 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD6 +PWCOMMONS Cyclin E associated events during G1/S transition PSMB5 +PWCOMMONS Cyclin E associated events during G1/S transition PSMB4 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD4 +PWCOMMONS Cyclin E associated events during G1/S transition PSMA2 +PWCOMMONS Cyclin E associated events during G1/S transition PSMB8 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD5 +PWCOMMONS Cyclin E associated events during G1/S transition PSMB6 +PWCOMMONS Cyclin E associated events during G1/S transition PSME3 +PWCOMMONS Cyclin E associated events during G1/S transition PSMB3 +PWCOMMONS Cyclin E associated events during G1/S transition PSMB7 +PWCOMMONS Cyclin E associated events during G1/S transition PSME1 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD11 +PWCOMMONS Cyclin E associated events during G1/S transition PSMA5 +PWCOMMONS Cyclin E associated events during G1/S transition PSMC5 +PWCOMMONS Cyclin E associated events during G1/S transition PSMC1 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD7 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD3 +PWCOMMONS Cyclin E associated events during G1/S transition PSMB2 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD13 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD14 +PWCOMMONS Cyclin E associated events during G1/S transition PSMB1 +PWCOMMONS Cyclin E associated events during G1/S transition PSMA6 +PWCOMMONS Cyclin E associated events during G1/S transition PSMB9 +PWCOMMONS Cyclin E associated events during G1/S transition PSMB10 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD9 +PWCOMMONS Cyclin E associated events during G1/S transition PSMC4 +PWCOMMONS Cyclin E associated events during G1/S transition PSMA1 +PWCOMMONS Cyclin E associated events during G1/S transition PSMA4 +PWCOMMONS Cyclin E associated events during G1/S transition PSMA7 +PWCOMMONS Cyclin E associated events during G1/S transition PSMF1 +PWCOMMONS Cyclin E associated events during G1/S transition PSME2 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD12 +PWCOMMONS Cyclin E associated events during G1/S transition PSMC3 +PWCOMMONS Cyclin E associated events during G1/S transition PSMC2 +PWCOMMONS Cyclin E associated events during G1/S transition PSMD2 +PWCOMMONS Cyclin E associated events during G1/S transition +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 ANAPC5 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 ANAPC11 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 CDC23 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 ANAPC1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 UBE2D1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 ANAPC2 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 CDC27 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 ANAPC4 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 ANAPC10 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 UBE2C +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 ANAPC7 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 CDC26 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 CDC16 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 UBE2E1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 CDK2 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 CKS1B +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 CUL1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 SKP1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 RB1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 CCNH +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 CDK7 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 MNAT1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMC6 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMA3 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD8 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD10 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD6 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMB5 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMB4 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD4 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMA2 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMB8 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD5 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMB6 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSME3 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMB3 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMB7 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSME1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD11 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMA5 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMC5 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMC1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD7 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD3 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMB2 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD13 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD14 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMB1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMA6 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMB9 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMB10 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD9 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMC4 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMA1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMA4 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMA7 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMF1 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSME2 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD12 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMC3 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMC2 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 PSMD2 +PWCOMMONS SCF(Skp2)-mediated degradation of p27/p21 +PWCOMMONS E2F mediated regulation of DNA replication TFDP1 +PWCOMMONS E2F mediated regulation of DNA replication E2F1 +PWCOMMONS E2F mediated regulation of DNA replication PRIM2 +PWCOMMONS E2F mediated regulation of DNA replication POLA1 +PWCOMMONS E2F mediated regulation of DNA replication PRIM1 +PWCOMMONS E2F mediated regulation of DNA replication POLA2 +PWCOMMONS E2F mediated regulation of DNA replication PLK1 +PWCOMMONS E2F mediated regulation of DNA replication CDK2 +PWCOMMONS E2F mediated regulation of DNA replication CDC6 +PWCOMMONS E2F mediated regulation of DNA replication CUL1 +PWCOMMONS E2F mediated regulation of DNA replication BTRC +PWCOMMONS E2F mediated regulation of DNA replication SKP1 +PWCOMMONS E2F mediated regulation of DNA replication PCNA +PWCOMMONS E2F mediated regulation of DNA replication ORC6L +PWCOMMONS E2F mediated regulation of DNA replication ORC3L +PWCOMMONS E2F mediated regulation of DNA replication ORC4L +PWCOMMONS E2F mediated regulation of DNA replication ORC5L +PWCOMMONS E2F mediated regulation of DNA replication ORC1L +PWCOMMONS E2F mediated regulation of DNA replication ORC2L +PWCOMMONS E2F mediated regulation of DNA replication FZR1 +PWCOMMONS E2F mediated regulation of DNA replication ANAPC5 +PWCOMMONS E2F mediated regulation of DNA replication ANAPC11 +PWCOMMONS E2F mediated regulation of DNA replication CDC23 +PWCOMMONS E2F mediated regulation of DNA replication ANAPC1 +PWCOMMONS E2F mediated regulation of DNA replication UBE2D1 +PWCOMMONS E2F mediated regulation of DNA replication ANAPC2 +PWCOMMONS E2F mediated regulation of DNA replication CDC27 +PWCOMMONS E2F mediated regulation of DNA replication ANAPC4 +PWCOMMONS E2F mediated regulation of DNA replication ANAPC10 +PWCOMMONS E2F mediated regulation of DNA replication UBE2C +PWCOMMONS E2F mediated regulation of DNA replication ANAPC7 +PWCOMMONS E2F mediated regulation of DNA replication CDC26 +PWCOMMONS E2F mediated regulation of DNA replication CDC16 +PWCOMMONS E2F mediated regulation of DNA replication UBE2E1 +PWCOMMONS E2F mediated regulation of DNA replication DHFR +PWCOMMONS E2F mediated regulation of DNA replication CDT1 +PWCOMMONS E2F mediated regulation of DNA replication FBXO5 +PWCOMMONS E2F mediated regulation of DNA replication CDC25A +PWCOMMONS E2F mediated regulation of DNA replication CDC2 +PWCOMMONS E2F mediated regulation of DNA replication CKS1B +PWCOMMONS E2F mediated regulation of DNA replication RPA1 +PWCOMMONS E2F mediated regulation of DNA replication RPA2 +PWCOMMONS E2F mediated regulation of DNA replication RPA3 +PWCOMMONS E2F mediated regulation of DNA replication RPA4 +PWCOMMONS E2F mediated regulation of DNA replication CDC45L +PWCOMMONS E2F mediated regulation of DNA replication MCM10 +PWCOMMONS E2F mediated regulation of DNA replication MCM7 +PWCOMMONS E2F mediated regulation of DNA replication MCM4 +PWCOMMONS E2F mediated regulation of DNA replication MCM5 +PWCOMMONS E2F mediated regulation of DNA replication MCM3 +PWCOMMONS E2F mediated regulation of DNA replication MCM6 +PWCOMMONS E2F mediated regulation of DNA replication MCM2 +PWCOMMONS E2F mediated regulation of DNA replication CDC7 +PWCOMMONS E2F mediated regulation of DNA replication DBF4 +PWCOMMONS E2F mediated regulation of DNA replication POLE2 +PWCOMMONS E2F mediated regulation of DNA replication POLE +PWCOMMONS E2F mediated regulation of DNA replication TYMS +PWCOMMONS E2F mediated regulation of DNA replication CCNH +PWCOMMONS E2F mediated regulation of DNA replication CDK7 +PWCOMMONS E2F mediated regulation of DNA replication MNAT1 +PWCOMMONS E2F mediated regulation of DNA replication CCNB1 +PWCOMMONS E2F mediated regulation of DNA replication WEE1 +PWCOMMONS E2F mediated regulation of DNA replication PSMC6 +PWCOMMONS E2F mediated regulation of DNA replication PSMA3 +PWCOMMONS E2F mediated regulation of DNA replication PSMD8 +PWCOMMONS E2F mediated regulation of DNA replication PSMD10 +PWCOMMONS E2F mediated regulation of DNA replication PSMD1 +PWCOMMONS E2F mediated regulation of DNA replication PSMD6 +PWCOMMONS E2F mediated regulation of DNA replication PSMB5 +PWCOMMONS E2F mediated regulation of DNA replication PSMB4 +PWCOMMONS E2F mediated regulation of DNA replication PSMD4 +PWCOMMONS E2F mediated regulation of DNA replication PSMA2 +PWCOMMONS E2F mediated regulation of DNA replication PSMB8 +PWCOMMONS E2F mediated regulation of DNA replication PSMD5 +PWCOMMONS E2F mediated regulation of DNA replication PSMB6 +PWCOMMONS E2F mediated regulation of DNA replication PSME3 +PWCOMMONS E2F mediated regulation of DNA replication PSMB3 +PWCOMMONS E2F mediated regulation of DNA replication PSMB7 +PWCOMMONS E2F mediated regulation of DNA replication PSME1 +PWCOMMONS E2F mediated regulation of DNA replication PSMD11 +PWCOMMONS E2F mediated regulation of DNA replication PSMA5 +PWCOMMONS E2F mediated regulation of DNA replication PSMC5 +PWCOMMONS E2F mediated regulation of DNA replication PSMC1 +PWCOMMONS E2F mediated regulation of DNA replication PSMD7 +PWCOMMONS E2F mediated regulation of DNA replication PSMD3 +PWCOMMONS E2F mediated regulation of DNA replication PSMB2 +PWCOMMONS E2F mediated regulation of DNA replication PSMD13 +PWCOMMONS E2F mediated regulation of DNA replication PSMD14 +PWCOMMONS E2F mediated regulation of DNA replication PSMB1 +PWCOMMONS E2F mediated regulation of DNA replication PSMA6 +PWCOMMONS E2F mediated regulation of DNA replication PSMB9 +PWCOMMONS E2F mediated regulation of DNA replication PSMB10 +PWCOMMONS E2F mediated regulation of DNA replication PSMD9 +PWCOMMONS E2F mediated regulation of DNA replication PSMC4 +PWCOMMONS E2F mediated regulation of DNA replication PSMA1 +PWCOMMONS E2F mediated regulation of DNA replication PSMA4 +PWCOMMONS E2F mediated regulation of DNA replication PSMA7 +PWCOMMONS E2F mediated regulation of DNA replication PSMF1 +PWCOMMONS E2F mediated regulation of DNA replication PSME2 +PWCOMMONS E2F mediated regulation of DNA replication PSMD12 +PWCOMMONS E2F mediated regulation of DNA replication PSMC3 +PWCOMMONS E2F mediated regulation of DNA replication PSMC2 +PWCOMMONS E2F mediated regulation of DNA replication PSMD2 +PWCOMMONS E2F mediated regulation of DNA replication RFC2 +PWCOMMONS E2F mediated regulation of DNA replication RFC1 +PWCOMMONS E2F mediated regulation of DNA replication RFC3 +PWCOMMONS E2F mediated regulation of DNA replication RFC5 +PWCOMMONS E2F mediated regulation of DNA replication RFC4 +PWCOMMONS E2F mediated regulation of DNA replication RRM2 +PWCOMMONS E2F mediated regulation of DNA replication POLD4 +PWCOMMONS E2F mediated regulation of DNA replication POLD3 +PWCOMMONS E2F mediated regulation of DNA replication POLD2 +PWCOMMONS E2F mediated regulation of DNA replication POLD1 +PWCOMMONS E2F mediated regulation of DNA replication TK2 +PWCOMMONS E2F mediated regulation of DNA replication CCNA1 +PWCOMMONS E2F mediated regulation of DNA replication CCNE1 +PWCOMMONS E2F mediated regulation of DNA replication +PWCOMMONS E2F-enabled inhibition of pre-replication complex formation ORC6L +PWCOMMONS E2F-enabled inhibition of pre-replication complex formation ORC4L +PWCOMMONS E2F-enabled inhibition of pre-replication complex formation ORC3L +PWCOMMONS E2F-enabled inhibition of pre-replication complex formation ORC5L +PWCOMMONS E2F-enabled inhibition of pre-replication complex formation ORC1L +PWCOMMONS E2F-enabled inhibition of pre-replication complex formation ORC2L +PWCOMMONS E2F-enabled inhibition of pre-replication complex formation CDC25A +PWCOMMONS E2F-enabled inhibition of pre-replication complex formation +PWCOMMONS Inhibition of replication initiation of damaged DNA by Rb/E2F1 TFDP1 +PWCOMMONS Inhibition of replication initiation of damaged DNA by Rb/E2F1 E2F1 +PWCOMMONS Inhibition of replication initiation of damaged DNA by Rb/E2F1 PRIM2 +PWCOMMONS Inhibition of replication initiation of damaged DNA by Rb/E2F1 POLA1 +PWCOMMONS Inhibition of replication initiation of damaged DNA by Rb/E2F1 PRIM1 +PWCOMMONS Inhibition of replication initiation of damaged DNA by Rb/E2F1 POLA2 +PWCOMMONS Inhibition of replication initiation of damaged DNA by Rb/E2F1 +PWCOMMONS S Phase ORC1L +PWCOMMONS S Phase CDT1 +PWCOMMONS S Phase ORC6L +PWCOMMONS S Phase ORC4L +PWCOMMONS S Phase ORC3L +PWCOMMONS S Phase ORC5L +PWCOMMONS S Phase ORC2L +PWCOMMONS S Phase MCM7 +PWCOMMONS S Phase MCM4 +PWCOMMONS S Phase MCM5 +PWCOMMONS S Phase MCM3 +PWCOMMONS S Phase MCM6 +PWCOMMONS S Phase MCM2 +PWCOMMONS S Phase CDK2 +PWCOMMONS S Phase FZR1 +PWCOMMONS S Phase ANAPC5 +PWCOMMONS S Phase ANAPC11 +PWCOMMONS S Phase CDC23 +PWCOMMONS S Phase ANAPC1 +PWCOMMONS S Phase ANAPC2 +PWCOMMONS S Phase UBE2D1 +PWCOMMONS S Phase CDC27 +PWCOMMONS S Phase ANAPC4 +PWCOMMONS S Phase ANAPC10 +PWCOMMONS S Phase ANAPC7 +PWCOMMONS S Phase UBE2C +PWCOMMONS S Phase CDC26 +PWCOMMONS S Phase CDC16 +PWCOMMONS S Phase UBE2E1 +PWCOMMONS S Phase PSMC6 +PWCOMMONS S Phase PSMA3 +PWCOMMONS S Phase PSMD8 +PWCOMMONS S Phase PSMD10 +PWCOMMONS S Phase PSMD1 +PWCOMMONS S Phase PSMD6 +PWCOMMONS S Phase PSMB5 +PWCOMMONS S Phase PSMB4 +PWCOMMONS S Phase PSMD4 +PWCOMMONS S Phase PSMA2 +PWCOMMONS S Phase PSMB8 +PWCOMMONS S Phase PSMD5 +PWCOMMONS S Phase PSMB6 +PWCOMMONS S Phase PSME3 +PWCOMMONS S Phase PSMB3 +PWCOMMONS S Phase PSMB7 +PWCOMMONS S Phase PSME1 +PWCOMMONS S Phase PSMD11 +PWCOMMONS S Phase PSMA5 +PWCOMMONS S Phase PSMC5 +PWCOMMONS S Phase PSMC1 +PWCOMMONS S Phase PSMD7 +PWCOMMONS S Phase PSMD3 +PWCOMMONS S Phase PSMB2 +PWCOMMONS S Phase PSMD13 +PWCOMMONS S Phase PSMD14 +PWCOMMONS S Phase PSMB1 +PWCOMMONS S Phase PSMA6 +PWCOMMONS S Phase PSMB9 +PWCOMMONS S Phase PSMB10 +PWCOMMONS S Phase PSMD9 +PWCOMMONS S Phase PSMC4 +PWCOMMONS S Phase PSMA1 +PWCOMMONS S Phase PSMA4 +PWCOMMONS S Phase PSMA7 +PWCOMMONS S Phase PSMF1 +PWCOMMONS S Phase PSME2 +PWCOMMONS S Phase PSMD12 +PWCOMMONS S Phase PSMC3 +PWCOMMONS S Phase PSMC2 +PWCOMMONS S Phase PSMD2 +PWCOMMONS S Phase CDC45L +PWCOMMONS S Phase GINS4 +PWCOMMONS S Phase GINS1 +PWCOMMONS S Phase GINS2 +PWCOMMONS S Phase POLD4 +PWCOMMONS S Phase POLD3 +PWCOMMONS S Phase POLD2 +PWCOMMONS S Phase POLD1 +PWCOMMONS S Phase PCNA +PWCOMMONS S Phase PRIM2 +PWCOMMONS S Phase POLA1 +PWCOMMONS S Phase PRIM1 +PWCOMMONS S Phase POLA2 +PWCOMMONS S Phase RFC2 +PWCOMMONS S Phase RFC1 +PWCOMMONS S Phase RFC3 +PWCOMMONS S Phase RFC5 +PWCOMMONS S Phase RFC4 +PWCOMMONS S Phase LIG1 +PWCOMMONS S Phase DNA2 +PWCOMMONS S Phase RPA1 +PWCOMMONS S Phase RPA3 +PWCOMMONS S Phase RPA2 +PWCOMMONS S Phase FEN1 +PWCOMMONS S Phase POLE2 +PWCOMMONS S Phase POLE +PWCOMMONS S Phase RB1 +PWCOMMONS S Phase TFDP1 +PWCOMMONS S Phase E2F1 +PWCOMMONS S Phase CKS1B +PWCOMMONS S Phase CUL1 +PWCOMMONS S Phase SKP1 +PWCOMMONS S Phase WEE1 +PWCOMMONS S Phase CCNH +PWCOMMONS S Phase CDK7 +PWCOMMONS S Phase MNAT1 +PWCOMMONS S Phase CCND1 +PWCOMMONS S Phase CDK4 +PWCOMMONS S Phase CDC25A +PWCOMMONS S Phase +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry ANAPC5 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry ANAPC11 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry CDC23 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry ANAPC1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry UBE2D1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry ANAPC2 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry CDC27 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry ANAPC4 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry ANAPC10 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry UBE2C +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry ANAPC7 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry CDC26 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry CDC16 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry UBE2E1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry CDK2 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry CKS1B +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry CUL1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry SKP1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry WEE1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry RB1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry CCNH +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry CDK7 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry MNAT1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMC6 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMA3 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD8 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD10 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD6 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMB5 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMB4 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD4 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMA2 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMB8 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD5 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMB6 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSME3 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMB3 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMB7 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSME1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD11 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMA5 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMC5 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMC1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD7 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD3 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMB2 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD13 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD14 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMB1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMA6 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMB9 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMB10 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD9 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMC4 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMA1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMA4 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMA7 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMF1 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSME2 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD12 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMC3 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMC2 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry PSMD2 +PWCOMMONS Cyclin A:Cdk2-associated events at S phase entry +PWCOMMONS Synthesis of DNA ORC1L +PWCOMMONS Synthesis of DNA CDT1 +PWCOMMONS Synthesis of DNA ORC6L +PWCOMMONS Synthesis of DNA ORC4L +PWCOMMONS Synthesis of DNA ORC3L +PWCOMMONS Synthesis of DNA ORC5L +PWCOMMONS Synthesis of DNA ORC2L +PWCOMMONS Synthesis of DNA MCM7 +PWCOMMONS Synthesis of DNA MCM4 +PWCOMMONS Synthesis of DNA MCM5 +PWCOMMONS Synthesis of DNA MCM3 +PWCOMMONS Synthesis of DNA MCM6 +PWCOMMONS Synthesis of DNA MCM2 +PWCOMMONS Synthesis of DNA CDK2 +PWCOMMONS Synthesis of DNA FZR1 +PWCOMMONS Synthesis of DNA ANAPC5 +PWCOMMONS Synthesis of DNA ANAPC11 +PWCOMMONS Synthesis of DNA CDC23 +PWCOMMONS Synthesis of DNA ANAPC1 +PWCOMMONS Synthesis of DNA ANAPC2 +PWCOMMONS Synthesis of DNA UBE2D1 +PWCOMMONS Synthesis of DNA CDC27 +PWCOMMONS Synthesis of DNA ANAPC4 +PWCOMMONS Synthesis of DNA ANAPC10 +PWCOMMONS Synthesis of DNA ANAPC7 +PWCOMMONS Synthesis of DNA UBE2C +PWCOMMONS Synthesis of DNA CDC26 +PWCOMMONS Synthesis of DNA CDC16 +PWCOMMONS Synthesis of DNA UBE2E1 +PWCOMMONS Synthesis of DNA PSMC6 +PWCOMMONS Synthesis of DNA PSMA3 +PWCOMMONS Synthesis of DNA PSMD8 +PWCOMMONS Synthesis of DNA PSMD10 +PWCOMMONS Synthesis of DNA PSMD1 +PWCOMMONS Synthesis of DNA PSMD6 +PWCOMMONS Synthesis of DNA PSMB5 +PWCOMMONS Synthesis of DNA PSMB4 +PWCOMMONS Synthesis of DNA PSMD4 +PWCOMMONS Synthesis of DNA PSMA2 +PWCOMMONS Synthesis of DNA PSMB8 +PWCOMMONS Synthesis of DNA PSMD5 +PWCOMMONS Synthesis of DNA PSMB6 +PWCOMMONS Synthesis of DNA PSME3 +PWCOMMONS Synthesis of DNA PSMB3 +PWCOMMONS Synthesis of DNA PSMB7 +PWCOMMONS Synthesis of DNA PSME1 +PWCOMMONS Synthesis of DNA PSMD11 +PWCOMMONS Synthesis of DNA PSMA5 +PWCOMMONS Synthesis of DNA PSMC5 +PWCOMMONS Synthesis of DNA PSMC1 +PWCOMMONS Synthesis of DNA PSMD7 +PWCOMMONS Synthesis of DNA PSMD3 +PWCOMMONS Synthesis of DNA PSMB2 +PWCOMMONS Synthesis of DNA PSMD13 +PWCOMMONS Synthesis of DNA PSMD14 +PWCOMMONS Synthesis of DNA PSMB1 +PWCOMMONS Synthesis of DNA PSMA6 +PWCOMMONS Synthesis of DNA PSMB9 +PWCOMMONS Synthesis of DNA PSMB10 +PWCOMMONS Synthesis of DNA PSMD9 +PWCOMMONS Synthesis of DNA PSMC4 +PWCOMMONS Synthesis of DNA PSMA1 +PWCOMMONS Synthesis of DNA PSMA4 +PWCOMMONS Synthesis of DNA PSMA7 +PWCOMMONS Synthesis of DNA PSMF1 +PWCOMMONS Synthesis of DNA PSME2 +PWCOMMONS Synthesis of DNA PSMD12 +PWCOMMONS Synthesis of DNA PSMC3 +PWCOMMONS Synthesis of DNA PSMC2 +PWCOMMONS Synthesis of DNA PSMD2 +PWCOMMONS Synthesis of DNA CDC45L +PWCOMMONS Synthesis of DNA GINS4 +PWCOMMONS Synthesis of DNA GINS1 +PWCOMMONS Synthesis of DNA GINS2 +PWCOMMONS Synthesis of DNA POLD4 +PWCOMMONS Synthesis of DNA POLD3 +PWCOMMONS Synthesis of DNA POLD2 +PWCOMMONS Synthesis of DNA POLD1 +PWCOMMONS Synthesis of DNA PCNA +PWCOMMONS Synthesis of DNA PRIM2 +PWCOMMONS Synthesis of DNA POLA1 +PWCOMMONS Synthesis of DNA PRIM1 +PWCOMMONS Synthesis of DNA POLA2 +PWCOMMONS Synthesis of DNA RFC2 +PWCOMMONS Synthesis of DNA RFC1 +PWCOMMONS Synthesis of DNA RFC3 +PWCOMMONS Synthesis of DNA RFC5 +PWCOMMONS Synthesis of DNA RFC4 +PWCOMMONS Synthesis of DNA LIG1 +PWCOMMONS Synthesis of DNA DNA2 +PWCOMMONS Synthesis of DNA RPA1 +PWCOMMONS Synthesis of DNA RPA3 +PWCOMMONS Synthesis of DNA RPA2 +PWCOMMONS Synthesis of DNA FEN1 +PWCOMMONS Synthesis of DNA POLE2 +PWCOMMONS Synthesis of DNA POLE +PWCOMMONS Synthesis of DNA RB1 +PWCOMMONS Synthesis of DNA TFDP1 +PWCOMMONS Synthesis of DNA E2F1 +PWCOMMONS Synthesis of DNA +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D CDK4 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D FZR1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D ANAPC5 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D ANAPC11 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D CDC23 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D ANAPC1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D ANAPC2 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D UBE2D1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D CDC27 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D ANAPC4 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D ANAPC10 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D ANAPC7 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D UBE2C +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D CDC26 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D CDC16 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D UBE2E1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMC6 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMA3 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD8 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD10 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD6 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMB5 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMB4 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD4 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMA2 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMB8 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD5 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMB6 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSME3 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMB3 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMB7 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSME1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD11 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMA5 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMC5 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMC1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD7 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD3 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMB2 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD13 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD14 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMB1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMA6 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMB9 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMB10 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD9 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMC4 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMA1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMA4 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMA7 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMF1 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSME2 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD12 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMC3 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMC2 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D PSMD2 +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D CDC25A +PWCOMMONS Ubiquitin-dependent degradation of Cyclin D +PWCOMMONS G2/M Checkpoints ANAPC5 +PWCOMMONS G2/M Checkpoints ANAPC11 +PWCOMMONS G2/M Checkpoints CDC23 +PWCOMMONS G2/M Checkpoints ANAPC1 +PWCOMMONS G2/M Checkpoints UBE2D1 +PWCOMMONS G2/M Checkpoints ANAPC2 +PWCOMMONS G2/M Checkpoints CDC27 +PWCOMMONS G2/M Checkpoints ANAPC4 +PWCOMMONS G2/M Checkpoints ANAPC10 +PWCOMMONS G2/M Checkpoints UBE2C +PWCOMMONS G2/M Checkpoints ANAPC7 +PWCOMMONS G2/M Checkpoints CDC26 +PWCOMMONS G2/M Checkpoints CDC16 +PWCOMMONS G2/M Checkpoints UBE2E1 +PWCOMMONS G2/M Checkpoints CDC2 +PWCOMMONS G2/M Checkpoints CCNB1 +PWCOMMONS G2/M Checkpoints CDC20 +PWCOMMONS G2/M Checkpoints WEE1 +PWCOMMONS G2/M Checkpoints CDK2 +PWCOMMONS G2/M Checkpoints CCNB2 +PWCOMMONS G2/M Checkpoints CUL1 +PWCOMMONS G2/M Checkpoints BTRC +PWCOMMONS G2/M Checkpoints SKP1 +PWCOMMONS G2/M Checkpoints XPO1 +PWCOMMONS G2/M Checkpoints FBXO5 +PWCOMMONS G2/M Checkpoints CCNH +PWCOMMONS G2/M Checkpoints CDK7 +PWCOMMONS G2/M Checkpoints MNAT1 +PWCOMMONS G2/M Checkpoints PSMC6 +PWCOMMONS G2/M Checkpoints PSMA3 +PWCOMMONS G2/M Checkpoints PSMD8 +PWCOMMONS G2/M Checkpoints PSMD10 +PWCOMMONS G2/M Checkpoints PSMD1 +PWCOMMONS G2/M Checkpoints PSMD6 +PWCOMMONS G2/M Checkpoints PSMB5 +PWCOMMONS G2/M Checkpoints PSMB4 +PWCOMMONS G2/M Checkpoints PSMD4 +PWCOMMONS G2/M Checkpoints PSMA2 +PWCOMMONS G2/M Checkpoints PSMB8 +PWCOMMONS G2/M Checkpoints PSMD5 +PWCOMMONS G2/M Checkpoints PSMB6 +PWCOMMONS G2/M Checkpoints PSME3 +PWCOMMONS G2/M Checkpoints PSMB3 +PWCOMMONS G2/M Checkpoints PSMB7 +PWCOMMONS G2/M Checkpoints PSME1 +PWCOMMONS G2/M Checkpoints PSMD11 +PWCOMMONS G2/M Checkpoints PSMA5 +PWCOMMONS G2/M Checkpoints PSMC5 +PWCOMMONS G2/M Checkpoints PSMC1 +PWCOMMONS G2/M Checkpoints PSMD7 +PWCOMMONS G2/M Checkpoints PSMD3 +PWCOMMONS G2/M Checkpoints PSMB2 +PWCOMMONS G2/M Checkpoints PSMD13 +PWCOMMONS G2/M Checkpoints PSMD14 +PWCOMMONS G2/M Checkpoints PSMB1 +PWCOMMONS G2/M Checkpoints PSMA6 +PWCOMMONS G2/M Checkpoints PSMB9 +PWCOMMONS G2/M Checkpoints PSMB10 +PWCOMMONS G2/M Checkpoints PSMD9 +PWCOMMONS G2/M Checkpoints PSMC4 +PWCOMMONS G2/M Checkpoints PSMA1 +PWCOMMONS G2/M Checkpoints PSMA4 +PWCOMMONS G2/M Checkpoints PSMA7 +PWCOMMONS G2/M Checkpoints PSMF1 +PWCOMMONS G2/M Checkpoints PSME2 +PWCOMMONS G2/M Checkpoints PSMD12 +PWCOMMONS G2/M Checkpoints PSMC3 +PWCOMMONS G2/M Checkpoints PSMC2 +PWCOMMONS G2/M Checkpoints PSMD2 +PWCOMMONS G2/M Checkpoints CDC25A +PWCOMMONS G2/M Checkpoints CDC25C +PWCOMMONS G2/M Checkpoints CHEK1 +PWCOMMONS G2/M Checkpoints ATM +PWCOMMONS G2/M Checkpoints TP53 +PWCOMMONS G2/M Checkpoints CKS1B +PWCOMMONS G2/M Checkpoints RB1 +PWCOMMONS G2/M Checkpoints BCL2L1 +PWCOMMONS G2/M Checkpoints PMAIP1 +PWCOMMONS G2/M Checkpoints BCL2 +PWCOMMONS G2/M Checkpoints BBC3 +PWCOMMONS G2/M Checkpoints MDM2 +PWCOMMONS G2/M Checkpoints CDKN1A +PWCOMMONS G2/M Checkpoints ATRIP +PWCOMMONS G2/M Checkpoints RPA1 +PWCOMMONS G2/M Checkpoints RPA3 +PWCOMMONS G2/M Checkpoints RPA2 +PWCOMMONS G2/M Checkpoints CLSPN +PWCOMMONS G2/M Checkpoints CDC45L +PWCOMMONS G2/M Checkpoints MCM10 +PWCOMMONS G2/M Checkpoints MCM7 +PWCOMMONS G2/M Checkpoints MCM4 +PWCOMMONS G2/M Checkpoints MCM5 +PWCOMMONS G2/M Checkpoints MCM3 +PWCOMMONS G2/M Checkpoints MCM6 +PWCOMMONS G2/M Checkpoints MCM2 +PWCOMMONS G2/M Checkpoints CDC6 +PWCOMMONS G2/M Checkpoints ORC6L +PWCOMMONS G2/M Checkpoints ORC4L +PWCOMMONS G2/M Checkpoints ORC3L +PWCOMMONS G2/M Checkpoints ORC5L +PWCOMMONS G2/M Checkpoints ORC1L +PWCOMMONS G2/M Checkpoints ORC2L +PWCOMMONS G2/M Checkpoints CDC7 +PWCOMMONS G2/M Checkpoints DBF4 +PWCOMMONS G2/M Checkpoints RFC2 +PWCOMMONS G2/M Checkpoints RFC3 +PWCOMMONS G2/M Checkpoints RFC5 +PWCOMMONS G2/M Checkpoints RFC4 +PWCOMMONS G2/M Checkpoints HUS1 +PWCOMMONS G2/M Checkpoints RAD1 +PWCOMMONS G2/M Checkpoints +PWCOMMONS G2/M DNA replication checkpoint ANAPC5 +PWCOMMONS G2/M DNA replication checkpoint ANAPC11 +PWCOMMONS G2/M DNA replication checkpoint CDC23 +PWCOMMONS G2/M DNA replication checkpoint ANAPC1 +PWCOMMONS G2/M DNA replication checkpoint UBE2D1 +PWCOMMONS G2/M DNA replication checkpoint ANAPC2 +PWCOMMONS G2/M DNA replication checkpoint CDC27 +PWCOMMONS G2/M DNA replication checkpoint ANAPC4 +PWCOMMONS G2/M DNA replication checkpoint ANAPC10 +PWCOMMONS G2/M DNA replication checkpoint UBE2C +PWCOMMONS G2/M DNA replication checkpoint ANAPC7 +PWCOMMONS G2/M DNA replication checkpoint CDC26 +PWCOMMONS G2/M DNA replication checkpoint CDC16 +PWCOMMONS G2/M DNA replication checkpoint UBE2E1 +PWCOMMONS G2/M DNA replication checkpoint CDC2 +PWCOMMONS G2/M DNA replication checkpoint CCNB1 +PWCOMMONS G2/M DNA replication checkpoint CDC20 +PWCOMMONS G2/M DNA replication checkpoint WEE1 +PWCOMMONS G2/M DNA replication checkpoint CDK2 +PWCOMMONS G2/M DNA replication checkpoint CCNB2 +PWCOMMONS G2/M DNA replication checkpoint CUL1 +PWCOMMONS G2/M DNA replication checkpoint BTRC +PWCOMMONS G2/M DNA replication checkpoint SKP1 +PWCOMMONS G2/M DNA replication checkpoint XPO1 +PWCOMMONS G2/M DNA replication checkpoint FBXO5 +PWCOMMONS G2/M DNA replication checkpoint CCNH +PWCOMMONS G2/M DNA replication checkpoint CDK7 +PWCOMMONS G2/M DNA replication checkpoint MNAT1 +PWCOMMONS G2/M DNA replication checkpoint PSMC6 +PWCOMMONS G2/M DNA replication checkpoint PSMA3 +PWCOMMONS G2/M DNA replication checkpoint PSMD8 +PWCOMMONS G2/M DNA replication checkpoint PSMD10 +PWCOMMONS G2/M DNA replication checkpoint PSMD1 +PWCOMMONS G2/M DNA replication checkpoint PSMD6 +PWCOMMONS G2/M DNA replication checkpoint PSMB5 +PWCOMMONS G2/M DNA replication checkpoint PSMB4 +PWCOMMONS G2/M DNA replication checkpoint PSMD4 +PWCOMMONS G2/M DNA replication checkpoint PSMA2 +PWCOMMONS G2/M DNA replication checkpoint PSMB8 +PWCOMMONS G2/M DNA replication checkpoint PSMD5 +PWCOMMONS G2/M DNA replication checkpoint PSMB6 +PWCOMMONS G2/M DNA replication checkpoint PSME3 +PWCOMMONS G2/M DNA replication checkpoint PSMB3 +PWCOMMONS G2/M DNA replication checkpoint PSMB7 +PWCOMMONS G2/M DNA replication checkpoint PSME1 +PWCOMMONS G2/M DNA replication checkpoint PSMD11 +PWCOMMONS G2/M DNA replication checkpoint PSMA5 +PWCOMMONS G2/M DNA replication checkpoint PSMC5 +PWCOMMONS G2/M DNA replication checkpoint PSMC1 +PWCOMMONS G2/M DNA replication checkpoint PSMD7 +PWCOMMONS G2/M DNA replication checkpoint PSMD3 +PWCOMMONS G2/M DNA replication checkpoint PSMB2 +PWCOMMONS G2/M DNA replication checkpoint PSMD13 +PWCOMMONS G2/M DNA replication checkpoint PSMD14 +PWCOMMONS G2/M DNA replication checkpoint PSMB1 +PWCOMMONS G2/M DNA replication checkpoint PSMA6 +PWCOMMONS G2/M DNA replication checkpoint PSMB9 +PWCOMMONS G2/M DNA replication checkpoint PSMB10 +PWCOMMONS G2/M DNA replication checkpoint PSMD9 +PWCOMMONS G2/M DNA replication checkpoint PSMC4 +PWCOMMONS G2/M DNA replication checkpoint PSMA1 +PWCOMMONS G2/M DNA replication checkpoint PSMA4 +PWCOMMONS G2/M DNA replication checkpoint PSMA7 +PWCOMMONS G2/M DNA replication checkpoint PSMF1 +PWCOMMONS G2/M DNA replication checkpoint PSME2 +PWCOMMONS G2/M DNA replication checkpoint PSMD12 +PWCOMMONS G2/M DNA replication checkpoint PSMC3 +PWCOMMONS G2/M DNA replication checkpoint PSMC2 +PWCOMMONS G2/M DNA replication checkpoint PSMD2 +PWCOMMONS G2/M DNA replication checkpoint +PWCOMMONS Activation of ATR in response to replication stress RPA3 +PWCOMMONS Activation of ATR in response to replication stress RPA2 +PWCOMMONS Activation of ATR in response to replication stress CLSPN +PWCOMMONS Activation of ATR in response to replication stress CDC45L +PWCOMMONS Activation of ATR in response to replication stress CDK2 +PWCOMMONS Activation of ATR in response to replication stress MCM10 +PWCOMMONS Activation of ATR in response to replication stress MCM7 +PWCOMMONS Activation of ATR in response to replication stress MCM4 +PWCOMMONS Activation of ATR in response to replication stress MCM5 +PWCOMMONS Activation of ATR in response to replication stress MCM3 +PWCOMMONS Activation of ATR in response to replication stress MCM6 +PWCOMMONS Activation of ATR in response to replication stress MCM2 +PWCOMMONS Activation of ATR in response to replication stress CDC6 +PWCOMMONS Activation of ATR in response to replication stress ORC6L +PWCOMMONS Activation of ATR in response to replication stress ORC4L +PWCOMMONS Activation of ATR in response to replication stress ORC3L +PWCOMMONS Activation of ATR in response to replication stress ORC5L +PWCOMMONS Activation of ATR in response to replication stress ORC1L +PWCOMMONS Activation of ATR in response to replication stress ORC2L +PWCOMMONS Activation of ATR in response to replication stress CDC7 +PWCOMMONS Activation of ATR in response to replication stress DBF4 +PWCOMMONS Activation of ATR in response to replication stress RFC2 +PWCOMMONS Activation of ATR in response to replication stress RFC3 +PWCOMMONS Activation of ATR in response to replication stress RFC5 +PWCOMMONS Activation of ATR in response to replication stress RFC4 +PWCOMMONS Activation of ATR in response to replication stress HUS1 +PWCOMMONS Activation of ATR in response to replication stress RAD1 +PWCOMMONS Activation of ATR in response to replication stress CHEK1 +PWCOMMONS Activation of ATR in response to replication stress CDC25A +PWCOMMONS Activation of ATR in response to replication stress FZR1 +PWCOMMONS Activation of ATR in response to replication stress ANAPC5 +PWCOMMONS Activation of ATR in response to replication stress ANAPC11 +PWCOMMONS Activation of ATR in response to replication stress CDC23 +PWCOMMONS Activation of ATR in response to replication stress ANAPC1 +PWCOMMONS Activation of ATR in response to replication stress ANAPC2 +PWCOMMONS Activation of ATR in response to replication stress UBE2D1 +PWCOMMONS Activation of ATR in response to replication stress CDC27 +PWCOMMONS Activation of ATR in response to replication stress ANAPC4 +PWCOMMONS Activation of ATR in response to replication stress ANAPC10 +PWCOMMONS Activation of ATR in response to replication stress ANAPC7 +PWCOMMONS Activation of ATR in response to replication stress UBE2C +PWCOMMONS Activation of ATR in response to replication stress CDC26 +PWCOMMONS Activation of ATR in response to replication stress CDC16 +PWCOMMONS Activation of ATR in response to replication stress UBE2E1 +PWCOMMONS Activation of ATR in response to replication stress PSMC6 +PWCOMMONS Activation of ATR in response to replication stress PSMA3 +PWCOMMONS Activation of ATR in response to replication stress PSMD8 +PWCOMMONS Activation of ATR in response to replication stress PSMD10 +PWCOMMONS Activation of ATR in response to replication stress PSMD1 +PWCOMMONS Activation of ATR in response to replication stress PSMD6 +PWCOMMONS Activation of ATR in response to replication stress PSMB5 +PWCOMMONS Activation of ATR in response to replication stress PSMB4 +PWCOMMONS Activation of ATR in response to replication stress PSMD4 +PWCOMMONS Activation of ATR in response to replication stress PSMA2 +PWCOMMONS Activation of ATR in response to replication stress PSMB8 +PWCOMMONS Activation of ATR in response to replication stress PSMD5 +PWCOMMONS Activation of ATR in response to replication stress PSMB6 +PWCOMMONS Activation of ATR in response to replication stress PSME3 +PWCOMMONS Activation of ATR in response to replication stress PSMB3 +PWCOMMONS Activation of ATR in response to replication stress PSMB7 +PWCOMMONS Activation of ATR in response to replication stress PSME1 +PWCOMMONS Activation of ATR in response to replication stress PSMD11 +PWCOMMONS Activation of ATR in response to replication stress PSMA5 +PWCOMMONS Activation of ATR in response to replication stress PSMC5 +PWCOMMONS Activation of ATR in response to replication stress PSMC1 +PWCOMMONS Activation of ATR in response to replication stress PSMD7 +PWCOMMONS Activation of ATR in response to replication stress PSMD3 +PWCOMMONS Activation of ATR in response to replication stress PSMB2 +PWCOMMONS Activation of ATR in response to replication stress PSMD13 +PWCOMMONS Activation of ATR in response to replication stress PSMD14 +PWCOMMONS Activation of ATR in response to replication stress PSMB1 +PWCOMMONS Activation of ATR in response to replication stress PSMA6 +PWCOMMONS Activation of ATR in response to replication stress PSMB9 +PWCOMMONS Activation of ATR in response to replication stress PSMB10 +PWCOMMONS Activation of ATR in response to replication stress PSMD9 +PWCOMMONS Activation of ATR in response to replication stress PSMC4 +PWCOMMONS Activation of ATR in response to replication stress PSMA1 +PWCOMMONS Activation of ATR in response to replication stress PSMA4 +PWCOMMONS Activation of ATR in response to replication stress PSMA7 +PWCOMMONS Activation of ATR in response to replication stress PSMF1 +PWCOMMONS Activation of ATR in response to replication stress PSME2 +PWCOMMONS Activation of ATR in response to replication stress PSMD12 +PWCOMMONS Activation of ATR in response to replication stress PSMC3 +PWCOMMONS Activation of ATR in response to replication stress PSMC2 +PWCOMMONS Activation of ATR in response to replication stress PSMD2 +PWCOMMONS Activation of ATR in response to replication stress CDC25C +PWCOMMONS Activation of ATR in response to replication stress ATRIP +PWCOMMONS Activation of ATR in response to replication stress +PWCOMMONS G2/M DNA damage checkpoint CDC25C +PWCOMMONS G2/M DNA damage checkpoint CHEK1 +PWCOMMONS G2/M DNA damage checkpoint FZR1 +PWCOMMONS G2/M DNA damage checkpoint ANAPC5 +PWCOMMONS G2/M DNA damage checkpoint ANAPC11 +PWCOMMONS G2/M DNA damage checkpoint CDC23 +PWCOMMONS G2/M DNA damage checkpoint ANAPC1 +PWCOMMONS G2/M DNA damage checkpoint ANAPC2 +PWCOMMONS G2/M DNA damage checkpoint UBE2D1 +PWCOMMONS G2/M DNA damage checkpoint CDC27 +PWCOMMONS G2/M DNA damage checkpoint ANAPC4 +PWCOMMONS G2/M DNA damage checkpoint ANAPC10 +PWCOMMONS G2/M DNA damage checkpoint ANAPC7 +PWCOMMONS G2/M DNA damage checkpoint UBE2C +PWCOMMONS G2/M DNA damage checkpoint CDC26 +PWCOMMONS G2/M DNA damage checkpoint CDC16 +PWCOMMONS G2/M DNA damage checkpoint UBE2E1 +PWCOMMONS G2/M DNA damage checkpoint PSMC6 +PWCOMMONS G2/M DNA damage checkpoint PSMA3 +PWCOMMONS G2/M DNA damage checkpoint PSMD8 +PWCOMMONS G2/M DNA damage checkpoint PSMD10 +PWCOMMONS G2/M DNA damage checkpoint PSMD1 +PWCOMMONS G2/M DNA damage checkpoint PSMD6 +PWCOMMONS G2/M DNA damage checkpoint PSMB5 +PWCOMMONS G2/M DNA damage checkpoint PSMB4 +PWCOMMONS G2/M DNA damage checkpoint PSMD4 +PWCOMMONS G2/M DNA damage checkpoint PSMA2 +PWCOMMONS G2/M DNA damage checkpoint PSMB8 +PWCOMMONS G2/M DNA damage checkpoint PSMD5 +PWCOMMONS G2/M DNA damage checkpoint PSMB6 +PWCOMMONS G2/M DNA damage checkpoint PSME3 +PWCOMMONS G2/M DNA damage checkpoint PSMB3 +PWCOMMONS G2/M DNA damage checkpoint PSMB7 +PWCOMMONS G2/M DNA damage checkpoint PSME1 +PWCOMMONS G2/M DNA damage checkpoint PSMD11 +PWCOMMONS G2/M DNA damage checkpoint PSMA5 +PWCOMMONS G2/M DNA damage checkpoint PSMC5 +PWCOMMONS G2/M DNA damage checkpoint PSMC1 +PWCOMMONS G2/M DNA damage checkpoint PSMD7 +PWCOMMONS G2/M DNA damage checkpoint PSMD3 +PWCOMMONS G2/M DNA damage checkpoint PSMB2 +PWCOMMONS G2/M DNA damage checkpoint PSMD13 +PWCOMMONS G2/M DNA damage checkpoint PSMD14 +PWCOMMONS G2/M DNA damage checkpoint PSMB1 +PWCOMMONS G2/M DNA damage checkpoint PSMA6 +PWCOMMONS G2/M DNA damage checkpoint PSMB9 +PWCOMMONS G2/M DNA damage checkpoint PSMB10 +PWCOMMONS G2/M DNA damage checkpoint PSMD9 +PWCOMMONS G2/M DNA damage checkpoint PSMC4 +PWCOMMONS G2/M DNA damage checkpoint PSMA1 +PWCOMMONS G2/M DNA damage checkpoint PSMA4 +PWCOMMONS G2/M DNA damage checkpoint PSMA7 +PWCOMMONS G2/M DNA damage checkpoint PSMF1 +PWCOMMONS G2/M DNA damage checkpoint PSME2 +PWCOMMONS G2/M DNA damage checkpoint PSMD12 +PWCOMMONS G2/M DNA damage checkpoint PSMC3 +PWCOMMONS G2/M DNA damage checkpoint PSMC2 +PWCOMMONS G2/M DNA damage checkpoint PSMD2 +PWCOMMONS G2/M DNA damage checkpoint CDC2 +PWCOMMONS G2/M DNA damage checkpoint CCNB1 +PWCOMMONS G2/M DNA damage checkpoint CDC20 +PWCOMMONS G2/M DNA damage checkpoint WEE1 +PWCOMMONS G2/M DNA damage checkpoint CDK2 +PWCOMMONS G2/M DNA damage checkpoint CUL1 +PWCOMMONS G2/M DNA damage checkpoint BTRC +PWCOMMONS G2/M DNA damage checkpoint SKP1 +PWCOMMONS G2/M DNA damage checkpoint XPO1 +PWCOMMONS G2/M DNA damage checkpoint FBXO5 +PWCOMMONS G2/M DNA damage checkpoint ATM +PWCOMMONS G2/M DNA damage checkpoint TP53 +PWCOMMONS G2/M DNA damage checkpoint CKS1B +PWCOMMONS G2/M DNA damage checkpoint RB1 +PWCOMMONS G2/M DNA damage checkpoint BCL2L1 +PWCOMMONS G2/M DNA damage checkpoint PMAIP1 +PWCOMMONS G2/M DNA damage checkpoint BCL2 +PWCOMMONS G2/M DNA damage checkpoint BBC3 +PWCOMMONS G2/M DNA damage checkpoint MDM2 +PWCOMMONS G2/M DNA damage checkpoint CDKN1A +PWCOMMONS G2/M DNA damage checkpoint CCNH +PWCOMMONS G2/M DNA damage checkpoint CDK7 +PWCOMMONS G2/M DNA damage checkpoint MNAT1 +PWCOMMONS G2/M DNA damage checkpoint ATRIP +PWCOMMONS G2/M DNA damage checkpoint +PWCOMMONS p53-Dependent G1 DNA Damage Response ANAPC5 +PWCOMMONS p53-Dependent G1 DNA Damage Response ANAPC11 +PWCOMMONS p53-Dependent G1 DNA Damage Response CDC23 +PWCOMMONS p53-Dependent G1 DNA Damage Response ANAPC1 +PWCOMMONS p53-Dependent G1 DNA Damage Response UBE2D1 +PWCOMMONS p53-Dependent G1 DNA Damage Response ANAPC2 +PWCOMMONS p53-Dependent G1 DNA Damage Response CDC27 +PWCOMMONS p53-Dependent G1 DNA Damage Response ANAPC4 +PWCOMMONS p53-Dependent G1 DNA Damage Response ANAPC10 +PWCOMMONS p53-Dependent G1 DNA Damage Response UBE2C +PWCOMMONS p53-Dependent G1 DNA Damage Response ANAPC7 +PWCOMMONS p53-Dependent G1 DNA Damage Response CDC26 +PWCOMMONS p53-Dependent G1 DNA Damage Response CDC16 +PWCOMMONS p53-Dependent G1 DNA Damage Response UBE2E1 +PWCOMMONS p53-Dependent G1 DNA Damage Response CDK2 +PWCOMMONS p53-Dependent G1 DNA Damage Response CKS1B +PWCOMMONS p53-Dependent G1 DNA Damage Response CUL1 +PWCOMMONS p53-Dependent G1 DNA Damage Response SKP1 +PWCOMMONS p53-Dependent G1 DNA Damage Response RB1 +PWCOMMONS p53-Dependent G1 DNA Damage Response BCL2L1 +PWCOMMONS p53-Dependent G1 DNA Damage Response PMAIP1 +PWCOMMONS p53-Dependent G1 DNA Damage Response BCL2 +PWCOMMONS p53-Dependent G1 DNA Damage Response BBC3 +PWCOMMONS p53-Dependent G1 DNA Damage Response MDM2 +PWCOMMONS p53-Dependent G1 DNA Damage Response TP53 +PWCOMMONS p53-Dependent G1 DNA Damage Response ATM +PWCOMMONS p53-Dependent G1 DNA Damage Response CDKN1A +PWCOMMONS p53-Dependent G1 DNA Damage Response CCNH +PWCOMMONS p53-Dependent G1 DNA Damage Response CDK7 +PWCOMMONS p53-Dependent G1 DNA Damage Response MNAT1 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMC6 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMA3 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD8 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD10 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD1 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD6 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMB5 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMB4 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD4 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMA2 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMB8 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD5 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMB6 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSME3 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMB3 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMB7 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSME1 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD11 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMA5 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMC5 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMC1 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD7 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD3 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMB2 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD13 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD14 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMB1 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMA6 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMB9 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMB10 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD9 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMC4 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMA1 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMA4 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMA7 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMF1 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSME2 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD12 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMC3 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMC2 +PWCOMMONS p53-Dependent G1 DNA Damage Response PSMD2 +PWCOMMONS p53-Dependent G1 DNA Damage Response +PWCOMMONS Transcriptional activation of p53 responsive genes CDKN1A +PWCOMMONS Transcriptional activation of p53 responsive genes +PWCOMMONS Transcriptional activation of cell cycle inhibitor p21 CDKN1A +PWCOMMONS Transcriptional activation of cell cycle inhibitor p21 +PWCOMMONS Stabilization of p53 PMAIP1 +PWCOMMONS Stabilization of p53 BCL2 +PWCOMMONS Stabilization of p53 BBC3 +PWCOMMONS Stabilization of p53 MDM2 +PWCOMMONS Stabilization of p53 TP53 +PWCOMMONS Stabilization of p53 ATM +PWCOMMONS Stabilization of p53 +PWCOMMONS p53-Independent DNA Damage Response CDC25C +PWCOMMONS p53-Independent DNA Damage Response FZR1 +PWCOMMONS p53-Independent DNA Damage Response ANAPC5 +PWCOMMONS p53-Independent DNA Damage Response ANAPC11 +PWCOMMONS p53-Independent DNA Damage Response CDC23 +PWCOMMONS p53-Independent DNA Damage Response ANAPC1 +PWCOMMONS p53-Independent DNA Damage Response ANAPC2 +PWCOMMONS p53-Independent DNA Damage Response UBE2D1 +PWCOMMONS p53-Independent DNA Damage Response CDC27 +PWCOMMONS p53-Independent DNA Damage Response ANAPC4 +PWCOMMONS p53-Independent DNA Damage Response ANAPC10 +PWCOMMONS p53-Independent DNA Damage Response ANAPC7 +PWCOMMONS p53-Independent DNA Damage Response UBE2C +PWCOMMONS p53-Independent DNA Damage Response CDC26 +PWCOMMONS p53-Independent DNA Damage Response CDC16 +PWCOMMONS p53-Independent DNA Damage Response UBE2E1 +PWCOMMONS p53-Independent DNA Damage Response PSMC6 +PWCOMMONS p53-Independent DNA Damage Response PSMA3 +PWCOMMONS p53-Independent DNA Damage Response PSMD8 +PWCOMMONS p53-Independent DNA Damage Response PSMD10 +PWCOMMONS p53-Independent DNA Damage Response PSMD1 +PWCOMMONS p53-Independent DNA Damage Response PSMD6 +PWCOMMONS p53-Independent DNA Damage Response PSMB5 +PWCOMMONS p53-Independent DNA Damage Response PSMB4 +PWCOMMONS p53-Independent DNA Damage Response PSMD4 +PWCOMMONS p53-Independent DNA Damage Response PSMA2 +PWCOMMONS p53-Independent DNA Damage Response PSMB8 +PWCOMMONS p53-Independent DNA Damage Response PSMD5 +PWCOMMONS p53-Independent DNA Damage Response PSMB6 +PWCOMMONS p53-Independent DNA Damage Response PSME3 +PWCOMMONS p53-Independent DNA Damage Response PSMB3 +PWCOMMONS p53-Independent DNA Damage Response PSMB7 +PWCOMMONS p53-Independent DNA Damage Response PSME1 +PWCOMMONS p53-Independent DNA Damage Response PSMD11 +PWCOMMONS p53-Independent DNA Damage Response PSMA5 +PWCOMMONS p53-Independent DNA Damage Response PSMC5 +PWCOMMONS p53-Independent DNA Damage Response PSMC1 +PWCOMMONS p53-Independent DNA Damage Response PSMD7 +PWCOMMONS p53-Independent DNA Damage Response PSMD3 +PWCOMMONS p53-Independent DNA Damage Response PSMB2 +PWCOMMONS p53-Independent DNA Damage Response PSMD13 +PWCOMMONS p53-Independent DNA Damage Response PSMD14 +PWCOMMONS p53-Independent DNA Damage Response PSMB1 +PWCOMMONS p53-Independent DNA Damage Response PSMA6 +PWCOMMONS p53-Independent DNA Damage Response PSMB9 +PWCOMMONS p53-Independent DNA Damage Response PSMB10 +PWCOMMONS p53-Independent DNA Damage Response PSMD9 +PWCOMMONS p53-Independent DNA Damage Response PSMC4 +PWCOMMONS p53-Independent DNA Damage Response PSMA1 +PWCOMMONS p53-Independent DNA Damage Response PSMA4 +PWCOMMONS p53-Independent DNA Damage Response PSMA7 +PWCOMMONS p53-Independent DNA Damage Response PSMF1 +PWCOMMONS p53-Independent DNA Damage Response PSME2 +PWCOMMONS p53-Independent DNA Damage Response PSMD12 +PWCOMMONS p53-Independent DNA Damage Response PSMC3 +PWCOMMONS p53-Independent DNA Damage Response PSMC2 +PWCOMMONS p53-Independent DNA Damage Response PSMD2 +PWCOMMONS p53-Independent DNA Damage Response +PWCOMMONS G1/S DNA Damage Checkpoints CDC25C +PWCOMMONS G1/S DNA Damage Checkpoints FZR1 +PWCOMMONS G1/S DNA Damage Checkpoints ANAPC5 +PWCOMMONS G1/S DNA Damage Checkpoints ANAPC11 +PWCOMMONS G1/S DNA Damage Checkpoints CDC23 +PWCOMMONS G1/S DNA Damage Checkpoints ANAPC1 +PWCOMMONS G1/S DNA Damage Checkpoints ANAPC2 +PWCOMMONS G1/S DNA Damage Checkpoints UBE2D1 +PWCOMMONS G1/S DNA Damage Checkpoints CDC27 +PWCOMMONS G1/S DNA Damage Checkpoints ANAPC4 +PWCOMMONS G1/S DNA Damage Checkpoints ANAPC10 +PWCOMMONS G1/S DNA Damage Checkpoints ANAPC7 +PWCOMMONS G1/S DNA Damage Checkpoints UBE2C +PWCOMMONS G1/S DNA Damage Checkpoints CDC26 +PWCOMMONS G1/S DNA Damage Checkpoints CDC16 +PWCOMMONS G1/S DNA Damage Checkpoints UBE2E1 +PWCOMMONS G1/S DNA Damage Checkpoints PSMC6 +PWCOMMONS G1/S DNA Damage Checkpoints PSMA3 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD8 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD10 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD1 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD6 +PWCOMMONS G1/S DNA Damage Checkpoints PSMB5 +PWCOMMONS G1/S DNA Damage Checkpoints PSMB4 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD4 +PWCOMMONS G1/S DNA Damage Checkpoints PSMA2 +PWCOMMONS G1/S DNA Damage Checkpoints PSMB8 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD5 +PWCOMMONS G1/S DNA Damage Checkpoints PSMB6 +PWCOMMONS G1/S DNA Damage Checkpoints PSME3 +PWCOMMONS G1/S DNA Damage Checkpoints PSMB3 +PWCOMMONS G1/S DNA Damage Checkpoints PSMB7 +PWCOMMONS G1/S DNA Damage Checkpoints PSME1 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD11 +PWCOMMONS G1/S DNA Damage Checkpoints PSMA5 +PWCOMMONS G1/S DNA Damage Checkpoints PSMC5 +PWCOMMONS G1/S DNA Damage Checkpoints PSMC1 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD7 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD3 +PWCOMMONS G1/S DNA Damage Checkpoints PSMB2 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD13 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD14 +PWCOMMONS G1/S DNA Damage Checkpoints PSMB1 +PWCOMMONS G1/S DNA Damage Checkpoints PSMA6 +PWCOMMONS G1/S DNA Damage Checkpoints PSMB9 +PWCOMMONS G1/S DNA Damage Checkpoints PSMB10 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD9 +PWCOMMONS G1/S DNA Damage Checkpoints PSMC4 +PWCOMMONS G1/S DNA Damage Checkpoints PSMA1 +PWCOMMONS G1/S DNA Damage Checkpoints PSMA4 +PWCOMMONS G1/S DNA Damage Checkpoints PSMA7 +PWCOMMONS G1/S DNA Damage Checkpoints PSMF1 +PWCOMMONS G1/S DNA Damage Checkpoints PSME2 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD12 +PWCOMMONS G1/S DNA Damage Checkpoints PSMC3 +PWCOMMONS G1/S DNA Damage Checkpoints PSMC2 +PWCOMMONS G1/S DNA Damage Checkpoints PSMD2 +PWCOMMONS G1/S DNA Damage Checkpoints CDK2 +PWCOMMONS G1/S DNA Damage Checkpoints CKS1B +PWCOMMONS G1/S DNA Damage Checkpoints CUL1 +PWCOMMONS G1/S DNA Damage Checkpoints SKP1 +PWCOMMONS G1/S DNA Damage Checkpoints RB1 +PWCOMMONS G1/S DNA Damage Checkpoints BCL2L1 +PWCOMMONS G1/S DNA Damage Checkpoints PMAIP1 +PWCOMMONS G1/S DNA Damage Checkpoints BCL2 +PWCOMMONS G1/S DNA Damage Checkpoints BBC3 +PWCOMMONS G1/S DNA Damage Checkpoints MDM2 +PWCOMMONS G1/S DNA Damage Checkpoints TP53 +PWCOMMONS G1/S DNA Damage Checkpoints ATM +PWCOMMONS G1/S DNA Damage Checkpoints CDKN1A +PWCOMMONS G1/S DNA Damage Checkpoints CCNH +PWCOMMONS G1/S DNA Damage Checkpoints CDK7 +PWCOMMONS G1/S DNA Damage Checkpoints MNAT1 +PWCOMMONS G1/S DNA Damage Checkpoints +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CDC25C +PWCOMMONS p53-Independent G1/S DNA damage checkpoint FZR1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint ANAPC5 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint ANAPC11 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CDC23 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint ANAPC1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint ANAPC2 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint UBE2D1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CDC27 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint ANAPC4 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint ANAPC10 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint ANAPC7 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint UBE2C +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CDC26 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CDC16 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint UBE2E1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMC6 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMA3 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD8 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD10 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD6 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMB5 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMB4 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD4 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMA2 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMB8 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD5 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMB6 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSME3 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMB3 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMB7 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSME1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD11 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMA5 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMC5 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMC1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD7 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD3 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMB2 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD13 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD14 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMB1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMA6 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMB9 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMB10 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD9 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMC4 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMA1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMA4 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMA7 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMF1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSME2 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD12 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMC3 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMC2 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PSMD2 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CDK2 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CKS1B +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CUL1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint SKP1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint RB1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint BCL2L1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint PMAIP1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint BCL2 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint BBC3 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint MDM2 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint TP53 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint ATM +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CDKN1A +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CCNH +PWCOMMONS p53-Independent G1/S DNA damage checkpoint CDK7 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint MNAT1 +PWCOMMONS p53-Independent G1/S DNA damage checkpoint +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CDC25C +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint FZR1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint ANAPC5 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint ANAPC11 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CDC23 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint ANAPC1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint ANAPC2 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint UBE2D1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CDC27 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint ANAPC4 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint ANAPC10 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint ANAPC7 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint UBE2C +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CDC26 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CDC16 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint UBE2E1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMC6 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMA3 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD8 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD10 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD6 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMB5 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMB4 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD4 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMA2 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMB8 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD5 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMB6 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSME3 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMB3 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMB7 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSME1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD11 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMA5 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMC5 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMC1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD7 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD3 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMB2 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD13 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD14 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMB1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMA6 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMB9 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMB10 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD9 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMC4 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMA1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMA4 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMA7 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMF1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSME2 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD12 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMC3 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMC2 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PSMD2 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CDK2 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CKS1B +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CUL1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint SKP1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint RB1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint BCL2L1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint PMAIP1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint BCL2 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint BBC3 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint MDM2 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint TP53 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint ATM +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CDKN1A +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CCNH +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint CDK7 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint MNAT1 +PWCOMMONS p53-Dependent G1/S DNA damage checkpoint +PWCOMMONS Dual incision reaction in GG-NER PCNA +PWCOMMONS Dual incision reaction in GG-NER POLD4 +PWCOMMONS Dual incision reaction in GG-NER POLD3 +PWCOMMONS Dual incision reaction in GG-NER POLD2 +PWCOMMONS Dual incision reaction in GG-NER POLD1 +PWCOMMONS Dual incision reaction in GG-NER ERCC5 +PWCOMMONS Dual incision reaction in GG-NER XPA +PWCOMMONS Dual incision reaction in GG-NER DDB2 +PWCOMMONS Dual incision reaction in GG-NER DDB1 +PWCOMMONS Dual incision reaction in GG-NER ERCC4 +PWCOMMONS Dual incision reaction in GG-NER ERCC1 +PWCOMMONS Dual incision reaction in GG-NER RAD23B +PWCOMMONS Dual incision reaction in GG-NER XPC +PWCOMMONS Dual incision reaction in GG-NER ERCC2 +PWCOMMONS Dual incision reaction in GG-NER GTF2H3 +PWCOMMONS Dual incision reaction in GG-NER GTF2H4 +PWCOMMONS Dual incision reaction in GG-NER GTF2H2 +PWCOMMONS Dual incision reaction in GG-NER ERCC3 +PWCOMMONS Dual incision reaction in GG-NER GTF2H1 +PWCOMMONS Dual incision reaction in GG-NER CCNH +PWCOMMONS Dual incision reaction in GG-NER CDK7 +PWCOMMONS Dual incision reaction in GG-NER MNAT1 +PWCOMMONS Dual incision reaction in GG-NER RPA1 +PWCOMMONS Dual incision reaction in GG-NER RPA3 +PWCOMMONS Dual incision reaction in GG-NER RPA2 +PWCOMMONS Dual incision reaction in GG-NER POLE2 +PWCOMMONS Dual incision reaction in GG-NER POLE +PWCOMMONS Dual incision reaction in GG-NER RFC2 +PWCOMMONS Dual incision reaction in GG-NER RFC1 +PWCOMMONS Dual incision reaction in GG-NER RFC3 +PWCOMMONS Dual incision reaction in GG-NER RFC5 +PWCOMMONS Dual incision reaction in GG-NER RFC4 +PWCOMMONS Dual incision reaction in GG-NER +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase PCNA +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase POLD4 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase POLD3 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase POLD2 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase POLD1 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase POLE2 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase POLE +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase RFC2 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase RFC1 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase RFC3 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase RFC5 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase RFC4 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase RPA1 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase RPA3 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase RPA2 +PWCOMMONS Repair synthesis of patch ~27-30 bases long by DNA polymerase +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A hexamer GBE1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A hexamer GYS2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A hexamer UGDH +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A hexamer SLC35D1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A hexamer NME1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A hexamer +PWCOMMONS snRNP Assembly WDR77 +PWCOMMONS snRNP Assembly PRMT5 +PWCOMMONS snRNP Assembly SNRPG +PWCOMMONS snRNP Assembly SNRPD3 +PWCOMMONS snRNP Assembly SNRPF +PWCOMMONS snRNP Assembly SNRPB +PWCOMMONS snRNP Assembly SNRPD2 +PWCOMMONS snRNP Assembly SNRPE +PWCOMMONS snRNP Assembly SNRPD1 +PWCOMMONS snRNP Assembly GEMIN4 +PWCOMMONS snRNP Assembly SIP1 +PWCOMMONS snRNP Assembly GEMIN6 +PWCOMMONS snRNP Assembly GEMIN5 +PWCOMMONS snRNP Assembly DDX20 +PWCOMMONS snRNP Assembly SMN1 +PWCOMMONS snRNP Assembly GEMIN7 +PWCOMMONS snRNP Assembly SNUPN +PWCOMMONS snRNP Assembly PHAX +PWCOMMONS snRNP Assembly NCBP2 +PWCOMMONS snRNP Assembly NCBP1 +PWCOMMONS snRNP Assembly TGS1 +PWCOMMONS snRNP Assembly NUP153 +PWCOMMONS snRNP Assembly NUP85 +PWCOMMONS snRNP Assembly NUP35 +PWCOMMONS snRNP Assembly AAAS +PWCOMMONS snRNP Assembly NUP50 +PWCOMMONS snRNP Assembly NUP43 +PWCOMMONS snRNP Assembly NUP205 +PWCOMMONS snRNP Assembly NUP93 +PWCOMMONS snRNP Assembly NUP88 +PWCOMMONS snRNP Assembly NUPL2 +PWCOMMONS snRNP Assembly NUP210 +PWCOMMONS snRNP Assembly NUP155 +PWCOMMONS snRNP Assembly RANBP2 +PWCOMMONS snRNP Assembly RAE1 +PWCOMMONS snRNP Assembly NUP188 +PWCOMMONS snRNP Assembly NUP214 +PWCOMMONS snRNP Assembly NUP54 +PWCOMMONS snRNP Assembly NUP62 +PWCOMMONS snRNP Assembly NUP107 +PWCOMMONS snRNP Assembly NUP133 +PWCOMMONS snRNP Assembly NUP160 +PWCOMMONS snRNP Assembly NUP37 +PWCOMMONS snRNP Assembly +PWCOMMONS Reverse Transcription of HIV RNA PPIA +PWCOMMONS Reverse Transcription of HIV RNA BANF1 +PWCOMMONS Reverse Transcription of HIV RNA LIG4 +PWCOMMONS Reverse Transcription of HIV RNA XRCC4 +PWCOMMONS Reverse Transcription of HIV RNA XRCC6 +PWCOMMONS Reverse Transcription of HIV RNA XRCC5 +PWCOMMONS Reverse Transcription of HIV RNA FEN1 +PWCOMMONS Reverse Transcription of HIV RNA +PWCOMMONS Plus-strand DNA synthesis PPIA +PWCOMMONS Plus-strand DNA synthesis BANF1 +PWCOMMONS Plus-strand DNA synthesis LIG4 +PWCOMMONS Plus-strand DNA synthesis XRCC4 +PWCOMMONS Plus-strand DNA synthesis XRCC6 +PWCOMMONS Plus-strand DNA synthesis XRCC5 +PWCOMMONS Plus-strand DNA synthesis FEN1 +PWCOMMONS Plus-strand DNA synthesis +PWCOMMONS Integration of provirus LIG4 +PWCOMMONS Integration of provirus XRCC4 +PWCOMMONS Integration of provirus XRCC6 +PWCOMMONS Integration of provirus XRCC5 +PWCOMMONS Integration of provirus PPIA +PWCOMMONS Integration of provirus +PWCOMMONS Downstream TCR signaling MAP3K7 +PWCOMMONS Downstream TCR signaling TRAF6 +PWCOMMONS Downstream TCR signaling MALT1 +PWCOMMONS Downstream TCR signaling BCL10 +PWCOMMONS Downstream TCR signaling CARD11 +PWCOMMONS Downstream TCR signaling PDPK1 +PWCOMMONS Downstream TCR signaling NFKBIA +PWCOMMONS Downstream TCR signaling NFKB1 +PWCOMMONS Downstream TCR signaling RELA +PWCOMMONS Downstream TCR signaling FOXO1 +PWCOMMONS Downstream TCR signaling THEM4 +PWCOMMONS Downstream TCR signaling CHUK +PWCOMMONS Downstream TCR signaling IKBKB +PWCOMMONS Downstream TCR signaling IKBKG +PWCOMMONS Downstream TCR signaling PRKCQ +PWCOMMONS Downstream TCR signaling INPP5D +PWCOMMONS Downstream TCR signaling UBE2V1 +PWCOMMONS Downstream TCR signaling UBE2N +PWCOMMONS Downstream TCR signaling CREB1 +PWCOMMONS Downstream TCR signaling TRAT1 +PWCOMMONS Downstream TCR signaling MDM2 +PWCOMMONS Downstream TCR signaling RPS6KB2 +PWCOMMONS Downstream TCR signaling RICTOR +PWCOMMONS Downstream TCR signaling FRAP1 +PWCOMMONS Downstream TCR signaling LST8 +PWCOMMONS Downstream TCR signaling NR4A1 +PWCOMMONS Downstream TCR signaling RIPK2 +PWCOMMONS Downstream TCR signaling ZAP70 +PWCOMMONS Downstream TCR signaling LCK +PWCOMMONS Downstream TCR signaling CD4 +PWCOMMONS Downstream TCR signaling CD3E +PWCOMMONS Downstream TCR signaling CD3D +PWCOMMONS Downstream TCR signaling CD3G +PWCOMMONS Downstream TCR signaling PTEN +PWCOMMONS Downstream TCR signaling BAD +PWCOMMONS Downstream TCR signaling TRIB3 +PWCOMMONS Downstream TCR signaling CASP9 +PWCOMMONS Downstream TCR signaling AKT1S1 +PWCOMMONS Downstream TCR signaling +PWCOMMONS Glucagon-type ligand receptors IQGAP1 +PWCOMMONS Glucagon-type ligand receptors MGLL +PWCOMMONS Glucagon-type ligand receptors PFKFB1 +PWCOMMONS Glucagon-type ligand receptors GLP1R +PWCOMMONS Glucagon-type ligand receptors GNAS +PWCOMMONS Glucagon-type ligand receptors MLXIPL +PWCOMMONS Glucagon-type ligand receptors GCG +PWCOMMONS Glucagon-type ligand receptors GCGR +PWCOMMONS Glucagon-type ligand receptors ADCY8 +PWCOMMONS Glucagon-type ligand receptors CREB1 +PWCOMMONS Glucagon-type ligand receptors LIPE +PWCOMMONS Glucagon-type ligand receptors SCTR +PWCOMMONS Glucagon-type ligand receptors SCT +PWCOMMONS Glucagon-type ligand receptors GLP2R +PWCOMMONS Glucagon-type ligand receptors GHRHR +PWCOMMONS Glucagon-type ligand receptors GHRH +PWCOMMONS Glucagon-type ligand receptors GIPR +PWCOMMONS Glucagon-type ligand receptors GIP +PWCOMMONS Glucagon-type ligand receptors VAMP2 +PWCOMMONS Glucagon-type ligand receptors VIP +PWCOMMONS Glucagon-type ligand receptors FABP4 +PWCOMMONS Glucagon-type ligand receptors INS +PWCOMMONS Glucagon-type ligand receptors SYT5 +PWCOMMONS Glucagon-type ligand receptors ADCYAP1R1 +PWCOMMONS Glucagon-type ligand receptors KCNJ11 +PWCOMMONS Glucagon-type ligand receptors +PWCOMMONS Citric acid cycle (TCA cycle) SDHC +PWCOMMONS Citric acid cycle (TCA cycle) SDHD +PWCOMMONS Citric acid cycle (TCA cycle) SDHB +PWCOMMONS Citric acid cycle (TCA cycle) SDHA +PWCOMMONS Citric acid cycle (TCA cycle) UROD +PWCOMMONS Citric acid cycle (TCA cycle) ATP5O +PWCOMMONS Citric acid cycle (TCA cycle) ATP5F1 +PWCOMMONS Citric acid cycle (TCA cycle) ATP5J +PWCOMMONS Citric acid cycle (TCA cycle) ATP5G1 +PWCOMMONS Citric acid cycle (TCA cycle) ATP5L +PWCOMMONS Citric acid cycle (TCA cycle) MT-ATP6 +PWCOMMONS Citric acid cycle (TCA cycle) ATP5J2 +PWCOMMONS Citric acid cycle (TCA cycle) MT-ATP8 +PWCOMMONS Citric acid cycle (TCA cycle) ATP5H +PWCOMMONS Citric acid cycle (TCA cycle) ATP5I +PWCOMMONS Citric acid cycle (TCA cycle) ATP5C1 +PWCOMMONS Citric acid cycle (TCA cycle) ATP5D +PWCOMMONS Citric acid cycle (TCA cycle) ATP5A1 +PWCOMMONS Citric acid cycle (TCA cycle) ATP5B +PWCOMMONS Citric acid cycle (TCA cycle) ATP5E +PWCOMMONS Citric acid cycle (TCA cycle) SUCLG1 +PWCOMMONS Citric acid cycle (TCA cycle) SUCLA2 +PWCOMMONS Citric acid cycle (TCA cycle) UQCRC1 +PWCOMMONS Citric acid cycle (TCA cycle) UQCRB +PWCOMMONS Citric acid cycle (TCA cycle) UQCR10 +PWCOMMONS Citric acid cycle (TCA cycle) UQCR +PWCOMMONS Citric acid cycle (TCA cycle) UQCRC2 +PWCOMMONS Citric acid cycle (TCA cycle) UQCRH +PWCOMMONS Citric acid cycle (TCA cycle) UQCRQ +PWCOMMONS Citric acid cycle (TCA cycle) UQCRFS1 +PWCOMMONS Citric acid cycle (TCA cycle) MT-CYB +PWCOMMONS Citric acid cycle (TCA cycle) CYC1 +PWCOMMONS Citric acid cycle (TCA cycle) CYCS +PWCOMMONS Citric acid cycle (TCA cycle) CPOX +PWCOMMONS Citric acid cycle (TCA cycle) UROS +PWCOMMONS Citric acid cycle (TCA cycle) DLST +PWCOMMONS Citric acid cycle (TCA cycle) OGDH +PWCOMMONS Citric acid cycle (TCA cycle) DLD +PWCOMMONS Citric acid cycle (TCA cycle) MT-CO2 +PWCOMMONS Citric acid cycle (TCA cycle) COX8A +PWCOMMONS Citric acid cycle (TCA cycle) COX7C +PWCOMMONS Citric acid cycle (TCA cycle) MT-CO3 +PWCOMMONS Citric acid cycle (TCA cycle) COX6C +PWCOMMONS Citric acid cycle (TCA cycle) COX5B +PWCOMMONS Citric acid cycle (TCA cycle) MT-CO1 +PWCOMMONS Citric acid cycle (TCA cycle) COX7A2L +PWCOMMONS Citric acid cycle (TCA cycle) COX4I1 +PWCOMMONS Citric acid cycle (TCA cycle) COX6A1 +PWCOMMONS Citric acid cycle (TCA cycle) COX7B +PWCOMMONS Citric acid cycle (TCA cycle) COX6B1 +PWCOMMONS Citric acid cycle (TCA cycle) COX5A +PWCOMMONS Citric acid cycle (TCA cycle) MDH2 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFS3 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFS4 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFS6 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA5 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFS5 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFS1 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFS2 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFV2 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFV3 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFV1 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA4 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA11 +PWCOMMONS Citric acid cycle (TCA cycle) MT-ND3 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA13 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFB5 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFC1 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA6 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFC2 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA3 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFB3 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFB1 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFAB1 +PWCOMMONS Citric acid cycle (TCA cycle) MT-ND4 +PWCOMMONS Citric acid cycle (TCA cycle) MT-ND5 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA1 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFB9 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFB6 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFB4 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA8 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFB7 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA12 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFB2 +PWCOMMONS Citric acid cycle (TCA cycle) MT-ND4L +PWCOMMONS Citric acid cycle (TCA cycle) MT-ND2 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFB10 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA7 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA2 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFB8 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFB11 +PWCOMMONS Citric acid cycle (TCA cycle) MT-ND6 +PWCOMMONS Citric acid cycle (TCA cycle) MT-ND1 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFS7 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA10 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFS8 +PWCOMMONS Citric acid cycle (TCA cycle) NDUFA9 +PWCOMMONS Citric acid cycle (TCA cycle) VAMP2 +PWCOMMONS Citric acid cycle (TCA cycle) ALAD +PWCOMMONS Citric acid cycle (TCA cycle) CS +PWCOMMONS Citric acid cycle (TCA cycle) PPOX +PWCOMMONS Citric acid cycle (TCA cycle) ACO2 +PWCOMMONS Citric acid cycle (TCA cycle) IDH3G +PWCOMMONS Citric acid cycle (TCA cycle) IDH3A +PWCOMMONS Citric acid cycle (TCA cycle) IDH3B +PWCOMMONS Citric acid cycle (TCA cycle) FH +PWCOMMONS Citric acid cycle (TCA cycle) INS +PWCOMMONS Citric acid cycle (TCA cycle) SYT5 +PWCOMMONS Citric acid cycle (TCA cycle) SUCLG2 +PWCOMMONS Citric acid cycle (TCA cycle) KCNJ11 +PWCOMMONS Citric acid cycle (TCA cycle) +PWCOMMONS Glycogenin catalyzes the synthesis of an oligo(1,4)glucose moiety covalently attached to itself GYS1 +PWCOMMONS Glycogenin catalyzes the synthesis of an oligo(1,4)glucose moiety covalently attached to itself GYG1 +PWCOMMONS Glycogenin catalyzes the synthesis of an oligo(1,4)glucose moiety covalently attached to itself GBE1 +PWCOMMONS Glycogenin catalyzes the synthesis of an oligo(1,4)glucose moiety covalently attached to itself GYS2 +PWCOMMONS Glycogenin catalyzes the synthesis of an oligo(1,4)glucose moiety covalently attached to itself +PWCOMMONS Acetylcholine Neurotransmitter Release Cycle VAMP2 +PWCOMMONS Acetylcholine Neurotransmitter Release Cycle RAB3A +PWCOMMONS Acetylcholine Neurotransmitter Release Cycle SYT1 +PWCOMMONS Acetylcholine Neurotransmitter Release Cycle RIMS1 +PWCOMMONS Acetylcholine Neurotransmitter Release Cycle CPLX1 +PWCOMMONS Acetylcholine Neurotransmitter Release Cycle SLC5A7 +PWCOMMONS Acetylcholine Neurotransmitter Release Cycle CHAT +PWCOMMONS Acetylcholine Neurotransmitter Release Cycle +PWCOMMONS Cytochrome P450 - arranged by substrate type PTGIS +PWCOMMONS Cytochrome P450 - arranged by substrate type TBXAS1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP4F3 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP4F2 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP4F12 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP4A11 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2J2 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP4B1 +PWCOMMONS Cytochrome P450 - arranged by substrate type LGMN +PWCOMMONS Cytochrome P450 - arranged by substrate type GC +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP26B1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CUBN +PWCOMMONS Cytochrome P450 - arranged by substrate type LRP2 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP26A1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP27B1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP24A1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2R1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP26C1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP46A1 +PWCOMMONS Cytochrome P450 - arranged by substrate type EBP +PWCOMMONS Cytochrome P450 - arranged by substrate type ACOT8 +PWCOMMONS Cytochrome P450 - arranged by substrate type LBR +PWCOMMONS Cytochrome P450 - arranged by substrate type ABCB11 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP39A1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP7A1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP21A2 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP51A1 +PWCOMMONS Cytochrome P450 - arranged by substrate type NSDHL +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP11B2 +PWCOMMONS Cytochrome P450 - arranged by substrate type HSD17B4 +PWCOMMONS Cytochrome P450 - arranged by substrate type AMACR +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP7B1 +PWCOMMONS Cytochrome P450 - arranged by substrate type SC5DL +PWCOMMONS Cytochrome P450 - arranged by substrate type SC4MOL +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP17A1 +PWCOMMONS Cytochrome P450 - arranged by substrate type ACOX2 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP11B1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP1B1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP8B1 +PWCOMMONS Cytochrome P450 - arranged by substrate type BAAT +PWCOMMONS Cytochrome P450 - arranged by substrate type HSD3B7 +PWCOMMONS Cytochrome P450 - arranged by substrate type AKR1C4 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP11A1 +PWCOMMONS Cytochrome P450 - arranged by substrate type DHCR24 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP19A1 +PWCOMMONS Cytochrome P450 - arranged by substrate type DHCR7 +PWCOMMONS Cytochrome P450 - arranged by substrate type HSD17B3 +PWCOMMONS Cytochrome P450 - arranged by substrate type TM7SF2 +PWCOMMONS Cytochrome P450 - arranged by substrate type SLC27A5 +PWCOMMONS Cytochrome P450 - arranged by substrate type AKR1D1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP27A1 +PWCOMMONS Cytochrome P450 - arranged by substrate type SLC27A2 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2C19 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2E1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP3A4 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP1A1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2F1 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2C18 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP3A7 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2C9 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP1A2 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2A6 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2D6 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2C8 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP3A5 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2A13 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2B6 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP4F11 +PWCOMMONS Cytochrome P450 - arranged by substrate type CYP2W1 +PWCOMMONS Cytochrome P450 - arranged by substrate type +PWCOMMONS Eicosanoids PTGIS +PWCOMMONS Eicosanoids TBXAS1 +PWCOMMONS Eicosanoids CYP4F3 +PWCOMMONS Eicosanoids CYP4F2 +PWCOMMONS Eicosanoids +PWCOMMONS Xenobiotics CYP2E1 +PWCOMMONS Xenobiotics CYP3A4 +PWCOMMONS Xenobiotics CYP1A1 +PWCOMMONS Xenobiotics CYP2F1 +PWCOMMONS Xenobiotics CYP2C18 +PWCOMMONS Xenobiotics CYP3A7 +PWCOMMONS Xenobiotics CYP2C9 +PWCOMMONS Xenobiotics CYP1A2 +PWCOMMONS Xenobiotics CYP2A6 +PWCOMMONS Xenobiotics CYP2D6 +PWCOMMONS Xenobiotics CYP2C8 +PWCOMMONS Xenobiotics CYP3A5 +PWCOMMONS Xenobiotics CYP2A13 +PWCOMMONS Xenobiotics CYP2B6 +PWCOMMONS Xenobiotics +PWCOMMONS Fatty acids CYP4A11 +PWCOMMONS Fatty acids CYP2J2 +PWCOMMONS Fatty acids CYP4B1 +PWCOMMONS Fatty acids +PWCOMMONS Endogenous sterols EBP +PWCOMMONS Endogenous sterols ACOT8 +PWCOMMONS Endogenous sterols LBR +PWCOMMONS Endogenous sterols ABCB11 +PWCOMMONS Endogenous sterols CYP39A1 +PWCOMMONS Endogenous sterols CYP7A1 +PWCOMMONS Endogenous sterols CYP21A2 +PWCOMMONS Endogenous sterols CYP51A1 +PWCOMMONS Endogenous sterols NSDHL +PWCOMMONS Endogenous sterols CYP11B2 +PWCOMMONS Endogenous sterols HSD17B4 +PWCOMMONS Endogenous sterols AMACR +PWCOMMONS Endogenous sterols CYP7B1 +PWCOMMONS Endogenous sterols SC5DL +PWCOMMONS Endogenous sterols SC4MOL +PWCOMMONS Endogenous sterols CYP17A1 +PWCOMMONS Endogenous sterols ACOX2 +PWCOMMONS Endogenous sterols CYP11B1 +PWCOMMONS Endogenous sterols CYP1B1 +PWCOMMONS Endogenous sterols CYP8B1 +PWCOMMONS Endogenous sterols BAAT +PWCOMMONS Endogenous sterols HSD3B7 +PWCOMMONS Endogenous sterols AKR1C4 +PWCOMMONS Endogenous sterols CYP11A1 +PWCOMMONS Endogenous sterols DHCR24 +PWCOMMONS Endogenous sterols CYP19A1 +PWCOMMONS Endogenous sterols DHCR7 +PWCOMMONS Endogenous sterols HSD17B3 +PWCOMMONS Endogenous sterols TM7SF2 +PWCOMMONS Endogenous sterols SLC27A5 +PWCOMMONS Endogenous sterols AKR1D1 +PWCOMMONS Endogenous sterols CYP27A1 +PWCOMMONS Endogenous sterols SLC27A2 +PWCOMMONS Endogenous sterols +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 ABCB11 +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 CYP8B1 +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 BAAT +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 AKR1C4 +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 HSD17B4 +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 AMACR +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 SLC27A5 +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 AKR1D1 +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 CYP27A1 +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 SLC27A2 +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 ACOX2 +PWCOMMONS Sterols are 12-hydroxylated by CYP8B1 +PWCOMMONS Unknown CYP2W1 +PWCOMMONS Unknown +PWCOMMONS Vitamins GC +PWCOMMONS Vitamins CYP26B1 +PWCOMMONS Vitamins CUBN +PWCOMMONS Vitamins LRP2 +PWCOMMONS Vitamins CYP26A1 +PWCOMMONS Vitamins CYP27B1 +PWCOMMONS Vitamins CYP24A1 +PWCOMMONS Vitamins CYP2R1 +PWCOMMONS Vitamins CYP26C1 +PWCOMMONS Vitamins +PWCOMMONS vWF interaction with collagen COL1A1 +PWCOMMONS vWF interaction with collagen COL1A2 +PWCOMMONS vWF interaction with collagen GP5 +PWCOMMONS vWF interaction with collagen GP9 +PWCOMMONS vWF interaction with collagen GP1BA +PWCOMMONS vWF interaction with collagen GP1BB +PWCOMMONS vWF interaction with collagen +PWCOMMONS Processing of DNA double-strand break ends RPA3 +PWCOMMONS Processing of DNA double-strand break ends RPA2 +PWCOMMONS Processing of DNA double-strand break ends LIG1 +PWCOMMONS Processing of DNA double-strand break ends PCNA +PWCOMMONS Processing of DNA double-strand break ends POLD4 +PWCOMMONS Processing of DNA double-strand break ends POLD3 +PWCOMMONS Processing of DNA double-strand break ends POLD2 +PWCOMMONS Processing of DNA double-strand break ends POLD1 +PWCOMMONS Processing of DNA double-strand break ends RAD51 +PWCOMMONS Processing of DNA double-strand break ends RAD52 +PWCOMMONS Processing of DNA double-strand break ends BRCA2 +PWCOMMONS Processing of DNA double-strand break ends +PWCOMMONS Histidine catabolism HAL +PWCOMMONS Histidine catabolism FTCD +PWCOMMONS Histidine catabolism AMDHD1 +PWCOMMONS Histidine catabolism +PWCOMMONS Collagen adhesion via alpha 2 beta 1 glycoprotein ITGB1 +PWCOMMONS Collagen adhesion via alpha 2 beta 1 glycoprotein COL1A1 +PWCOMMONS Collagen adhesion via alpha 2 beta 1 glycoprotein COL1A2 +PWCOMMONS Collagen adhesion via alpha 2 beta 1 glycoprotein +PWCOMMONS Depyrimidination CCNO +PWCOMMONS Depyrimidination APEX1 +PWCOMMONS Depyrimidination TDG +PWCOMMONS Depyrimidination NTHL1 +PWCOMMONS Depyrimidination +PWCOMMONS Hormone ligand-binding receptors PFKFB1 +PWCOMMONS Hormone ligand-binding receptors MLXIPL +PWCOMMONS Hormone ligand-binding receptors CREB1 +PWCOMMONS Hormone ligand-binding receptors LIPE +PWCOMMONS Hormone ligand-binding receptors GNAS +PWCOMMONS Hormone ligand-binding receptors FSHR +PWCOMMONS Hormone ligand-binding receptors FSHB +PWCOMMONS Hormone ligand-binding receptors CGA +PWCOMMONS Hormone ligand-binding receptors CGB +PWCOMMONS Hormone ligand-binding receptors LHCGR +PWCOMMONS Hormone ligand-binding receptors LHB +PWCOMMONS Hormone ligand-binding receptors FABP4 +PWCOMMONS Hormone ligand-binding receptors TSHR +PWCOMMONS Hormone ligand-binding receptors TSHB +PWCOMMONS Hormone ligand-binding receptors +PWCOMMONS Proline synthesis PYCR1 +PWCOMMONS Proline synthesis +PWCOMMONS BH3-only proteins associate with and inactivate anti-apoptotic BCL-2 members PMAIP1 +PWCOMMONS BH3-only proteins associate with and inactivate anti-apoptotic BCL-2 members BID +PWCOMMONS BH3-only proteins associate with and inactivate anti-apoptotic BCL-2 members BCL2 +PWCOMMONS BH3-only proteins associate with and inactivate anti-apoptotic BCL-2 members BAD +PWCOMMONS BH3-only proteins associate with and inactivate anti-apoptotic BCL-2 members BBC3 +PWCOMMONS BH3-only proteins associate with and inactivate anti-apoptotic BCL-2 members +PWCOMMONS Propionyl-CoA catabolism SDHC +PWCOMMONS Propionyl-CoA catabolism SDHD +PWCOMMONS Propionyl-CoA catabolism SDHB +PWCOMMONS Propionyl-CoA catabolism SDHA +PWCOMMONS Propionyl-CoA catabolism UROD +PWCOMMONS Propionyl-CoA catabolism ATP5O +PWCOMMONS Propionyl-CoA catabolism ATP5F1 +PWCOMMONS Propionyl-CoA catabolism ATP5J +PWCOMMONS Propionyl-CoA catabolism ATP5G1 +PWCOMMONS Propionyl-CoA catabolism ATP5L +PWCOMMONS Propionyl-CoA catabolism MT-ATP6 +PWCOMMONS Propionyl-CoA catabolism ATP5J2 +PWCOMMONS Propionyl-CoA catabolism MT-ATP8 +PWCOMMONS Propionyl-CoA catabolism ATP5H +PWCOMMONS Propionyl-CoA catabolism ATP5I +PWCOMMONS Propionyl-CoA catabolism ATP5C1 +PWCOMMONS Propionyl-CoA catabolism ATP5D +PWCOMMONS Propionyl-CoA catabolism ATP5A1 +PWCOMMONS Propionyl-CoA catabolism ATP5B +PWCOMMONS Propionyl-CoA catabolism ATP5E +PWCOMMONS Propionyl-CoA catabolism SUCLG1 +PWCOMMONS Propionyl-CoA catabolism SUCLA2 +PWCOMMONS Propionyl-CoA catabolism UQCRC1 +PWCOMMONS Propionyl-CoA catabolism UQCRB +PWCOMMONS Propionyl-CoA catabolism UQCR10 +PWCOMMONS Propionyl-CoA catabolism UQCR +PWCOMMONS Propionyl-CoA catabolism UQCRC2 +PWCOMMONS Propionyl-CoA catabolism UQCRH +PWCOMMONS Propionyl-CoA catabolism UQCRQ +PWCOMMONS Propionyl-CoA catabolism UQCRFS1 +PWCOMMONS Propionyl-CoA catabolism MT-CYB +PWCOMMONS Propionyl-CoA catabolism CYC1 +PWCOMMONS Propionyl-CoA catabolism CYCS +PWCOMMONS Propionyl-CoA catabolism CPOX +PWCOMMONS Propionyl-CoA catabolism UROS +PWCOMMONS Propionyl-CoA catabolism DLST +PWCOMMONS Propionyl-CoA catabolism OGDH +PWCOMMONS Propionyl-CoA catabolism DLD +PWCOMMONS Propionyl-CoA catabolism MT-CO2 +PWCOMMONS Propionyl-CoA catabolism COX8A +PWCOMMONS Propionyl-CoA catabolism COX7C +PWCOMMONS Propionyl-CoA catabolism MT-CO3 +PWCOMMONS Propionyl-CoA catabolism COX6C +PWCOMMONS Propionyl-CoA catabolism COX5B +PWCOMMONS Propionyl-CoA catabolism MT-CO1 +PWCOMMONS Propionyl-CoA catabolism COX7A2L +PWCOMMONS Propionyl-CoA catabolism COX4I1 +PWCOMMONS Propionyl-CoA catabolism COX6A1 +PWCOMMONS Propionyl-CoA catabolism COX7B +PWCOMMONS Propionyl-CoA catabolism COX6B1 +PWCOMMONS Propionyl-CoA catabolism COX5A +PWCOMMONS Propionyl-CoA catabolism PCCB +PWCOMMONS Propionyl-CoA catabolism PCCA +PWCOMMONS Propionyl-CoA catabolism MDH2 +PWCOMMONS Propionyl-CoA catabolism NDUFS3 +PWCOMMONS Propionyl-CoA catabolism NDUFS4 +PWCOMMONS Propionyl-CoA catabolism NDUFS6 +PWCOMMONS Propionyl-CoA catabolism NDUFA5 +PWCOMMONS Propionyl-CoA catabolism NDUFS5 +PWCOMMONS Propionyl-CoA catabolism NDUFS1 +PWCOMMONS Propionyl-CoA catabolism NDUFS2 +PWCOMMONS Propionyl-CoA catabolism NDUFV2 +PWCOMMONS Propionyl-CoA catabolism NDUFV3 +PWCOMMONS Propionyl-CoA catabolism NDUFV1 +PWCOMMONS Propionyl-CoA catabolism NDUFA4 +PWCOMMONS Propionyl-CoA catabolism NDUFA11 +PWCOMMONS Propionyl-CoA catabolism MT-ND3 +PWCOMMONS Propionyl-CoA catabolism NDUFA13 +PWCOMMONS Propionyl-CoA catabolism NDUFB5 +PWCOMMONS Propionyl-CoA catabolism NDUFC1 +PWCOMMONS Propionyl-CoA catabolism NDUFA6 +PWCOMMONS Propionyl-CoA catabolism NDUFC2 +PWCOMMONS Propionyl-CoA catabolism NDUFA3 +PWCOMMONS Propionyl-CoA catabolism NDUFB3 +PWCOMMONS Propionyl-CoA catabolism NDUFB1 +PWCOMMONS Propionyl-CoA catabolism NDUFAB1 +PWCOMMONS Propionyl-CoA catabolism MT-ND4 +PWCOMMONS Propionyl-CoA catabolism MT-ND5 +PWCOMMONS Propionyl-CoA catabolism NDUFA1 +PWCOMMONS Propionyl-CoA catabolism NDUFB9 +PWCOMMONS Propionyl-CoA catabolism NDUFB6 +PWCOMMONS Propionyl-CoA catabolism NDUFB4 +PWCOMMONS Propionyl-CoA catabolism NDUFA8 +PWCOMMONS Propionyl-CoA catabolism NDUFB7 +PWCOMMONS Propionyl-CoA catabolism NDUFA12 +PWCOMMONS Propionyl-CoA catabolism NDUFB2 +PWCOMMONS Propionyl-CoA catabolism MT-ND4L +PWCOMMONS Propionyl-CoA catabolism MT-ND2 +PWCOMMONS Propionyl-CoA catabolism NDUFB10 +PWCOMMONS Propionyl-CoA catabolism NDUFA7 +PWCOMMONS Propionyl-CoA catabolism NDUFA2 +PWCOMMONS Propionyl-CoA catabolism NDUFB8 +PWCOMMONS Propionyl-CoA catabolism NDUFB11 +PWCOMMONS Propionyl-CoA catabolism MT-ND6 +PWCOMMONS Propionyl-CoA catabolism MT-ND1 +PWCOMMONS Propionyl-CoA catabolism NDUFS7 +PWCOMMONS Propionyl-CoA catabolism NDUFA10 +PWCOMMONS Propionyl-CoA catabolism NDUFS8 +PWCOMMONS Propionyl-CoA catabolism NDUFA9 +PWCOMMONS Propionyl-CoA catabolism VAMP2 +PWCOMMONS Propionyl-CoA catabolism MCEE +PWCOMMONS Propionyl-CoA catabolism ALAD +PWCOMMONS Propionyl-CoA catabolism CS +PWCOMMONS Propionyl-CoA catabolism MUT +PWCOMMONS Propionyl-CoA catabolism PPOX +PWCOMMONS Propionyl-CoA catabolism ACO2 +PWCOMMONS Propionyl-CoA catabolism IDH3G +PWCOMMONS Propionyl-CoA catabolism IDH3A +PWCOMMONS Propionyl-CoA catabolism IDH3B +PWCOMMONS Propionyl-CoA catabolism FH +PWCOMMONS Propionyl-CoA catabolism INS +PWCOMMONS Propionyl-CoA catabolism SYT5 +PWCOMMONS Propionyl-CoA catabolism SUCLG2 +PWCOMMONS Propionyl-CoA catabolism KCNJ11 +PWCOMMONS Propionyl-CoA catabolism +PWCOMMONS IRS activation RAF1 +PWCOMMONS IRS activation YWHAB +PWCOMMONS IRS activation SOS1 +PWCOMMONS IRS activation MAP2K1 +PWCOMMONS IRS activation MAPK3 +PWCOMMONS IRS activation SHC1 +PWCOMMONS IRS activation MAPK1 +PWCOMMONS IRS activation INSR +PWCOMMONS IRS activation INS +PWCOMMONS IRS activation +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides DPYS +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides DTYMK +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides TYMP +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides NME2 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides NME1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides DPYD +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides UPB1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides GYG2 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides TXN +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides GLRX +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides GBE1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides TXNRD1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides CPS1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides UPP1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides UCK1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides ASS1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides PYCR1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides CTPS +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides CMPK1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides OAT +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides GYS2 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides OTC +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides UGDH +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides RRM2 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides RRM1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides SLC35D1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides GSR +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides ASL +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides ARG1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by thymidine phosphorylase DPYS +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by thymidine phosphorylase DTYMK +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by thymidine phosphorylase TYMP +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by thymidine phosphorylase NME2 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by thymidine phosphorylase NME1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by thymidine phosphorylase DPYD +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by thymidine phosphorylase UPB1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by thymidine phosphorylase +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 TXN +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 GLRX +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 GBE1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 TXNRD1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 DPYD +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 DPYS +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 CPS1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 UPP1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 UCK1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 ASS1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 PYCR1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 CTPS +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 CMPK1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 OAT +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 GYS2 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 NME2 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 NME1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 OTC +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 UGDH +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 RRM2 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 RRM1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 SLC35D1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 GSR +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 ASL +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 ARG1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 UPB1 +PWCOMMONS Reversible phosphorolysis of pyrimidine nucleosides by uridine phosphorylase 1 +PWCOMMONS Galactose catabolism GART +PWCOMMONS Galactose catabolism NT5C2 +PWCOMMONS Galactose catabolism GLRX +PWCOMMONS Galactose catabolism ATP5O +PWCOMMONS Galactose catabolism ATP5F1 +PWCOMMONS Galactose catabolism ATP5J +PWCOMMONS Galactose catabolism ATP5G1 +PWCOMMONS Galactose catabolism ATP5L +PWCOMMONS Galactose catabolism MT-ATP6 +PWCOMMONS Galactose catabolism ATP5J2 +PWCOMMONS Galactose catabolism MT-ATP8 +PWCOMMONS Galactose catabolism ATP5H +PWCOMMONS Galactose catabolism ATP5I +PWCOMMONS Galactose catabolism ATP5C1 +PWCOMMONS Galactose catabolism ATP5D +PWCOMMONS Galactose catabolism ATP5A1 +PWCOMMONS Galactose catabolism ATP5B +PWCOMMONS Galactose catabolism ATP5E +PWCOMMONS Galactose catabolism HPRT1 +PWCOMMONS Galactose catabolism TXN +PWCOMMONS Galactose catabolism PGLS +PWCOMMONS Galactose catabolism XDH +PWCOMMONS Galactose catabolism PAICS +PWCOMMONS Galactose catabolism CPS1 +PWCOMMONS Galactose catabolism UPP1 +PWCOMMONS Galactose catabolism TALDO1 +PWCOMMONS Galactose catabolism GALE +PWCOMMONS Galactose catabolism ASS1 +PWCOMMONS Galactose catabolism CMPK1 +PWCOMMONS Galactose catabolism ADSL +PWCOMMONS Galactose catabolism ATIC +PWCOMMONS Galactose catabolism OAT +PWCOMMONS Galactose catabolism NP +PWCOMMONS Galactose catabolism GYS2 +PWCOMMONS Galactose catabolism CAT +PWCOMMONS Galactose catabolism UMPS +PWCOMMONS Galactose catabolism UGDH +PWCOMMONS Galactose catabolism RRM2 +PWCOMMONS Galactose catabolism RRM1 +PWCOMMONS Galactose catabolism G6PD +PWCOMMONS Galactose catabolism AMPD1 +PWCOMMONS Galactose catabolism PPAT +PWCOMMONS Galactose catabolism ARG1 +PWCOMMONS Galactose catabolism KCNJ11 +PWCOMMONS Galactose catabolism AMPD3 +PWCOMMONS Galactose catabolism TKT +PWCOMMONS Galactose catabolism PGM1 +PWCOMMONS Galactose catabolism RPE +PWCOMMONS Galactose catabolism GBE1 +PWCOMMONS Galactose catabolism TXNRD1 +PWCOMMONS Galactose catabolism DPYD +PWCOMMONS Galactose catabolism GALK1 +PWCOMMONS Galactose catabolism DPYS +PWCOMMONS Galactose catabolism AK1 +PWCOMMONS Galactose catabolism PYCR1 +PWCOMMONS Galactose catabolism VAMP2 +PWCOMMONS Galactose catabolism NT5C1A +PWCOMMONS Galactose catabolism CTPS +PWCOMMONS Galactose catabolism PRPS1 +PWCOMMONS Galactose catabolism GMPS +PWCOMMONS Galactose catabolism GUK1 +PWCOMMONS Galactose catabolism IMPDH2 +PWCOMMONS Galactose catabolism GDA +PWCOMMONS Galactose catabolism NME1 +PWCOMMONS Galactose catabolism IMPDH1 +PWCOMMONS Galactose catabolism ADSS +PWCOMMONS Galactose catabolism NME2 +PWCOMMONS Galactose catabolism RPIA +PWCOMMONS Galactose catabolism GALT +PWCOMMONS Galactose catabolism OTC +PWCOMMONS Galactose catabolism AMPD2 +PWCOMMONS Galactose catabolism INS +PWCOMMONS Galactose catabolism SYT5 +PWCOMMONS Galactose catabolism PGD +PWCOMMONS Galactose catabolism PFAS +PWCOMMONS Galactose catabolism SLC35D1 +PWCOMMONS Galactose catabolism GSR +PWCOMMONS Galactose catabolism ASL +PWCOMMONS Galactose catabolism UPB1 +PWCOMMONS Galactose catabolism +PWCOMMONS Striated Muscle Contraction TTN +PWCOMMONS Striated Muscle Contraction TCAP +PWCOMMONS Striated Muscle Contraction VIM +PWCOMMONS Striated Muscle Contraction NEB +PWCOMMONS Striated Muscle Contraction TMOD1 +PWCOMMONS Striated Muscle Contraction DMD +PWCOMMONS Striated Muscle Contraction +PWCOMMONS PI3K/AKT signalling FRAP1 +PWCOMMONS PI3K/AKT signalling LST8 +PWCOMMONS PI3K/AKT signalling PDPK1 +PWCOMMONS PI3K/AKT signalling NGF +PWCOMMONS PI3K/AKT signalling NR4A1 +PWCOMMONS PI3K/AKT signalling FOXO1 +PWCOMMONS PI3K/AKT signalling CHUK +PWCOMMONS PI3K/AKT signalling THEM4 +PWCOMMONS PI3K/AKT signalling PTEN +PWCOMMONS PI3K/AKT signalling CREB1 +PWCOMMONS PI3K/AKT signalling BAD +PWCOMMONS PI3K/AKT signalling RHOA +PWCOMMONS PI3K/AKT signalling TRIB3 +PWCOMMONS PI3K/AKT signalling PHLPP +PWCOMMONS PI3K/AKT signalling CASP9 +PWCOMMONS PI3K/AKT signalling AKT1S1 +PWCOMMONS PI3K/AKT signalling MDM2 +PWCOMMONS PI3K/AKT signalling RPS6KB2 +PWCOMMONS PI3K/AKT signalling +PWCOMMONS AKT phosphorylates targets in the nucleus NR4A1 +PWCOMMONS AKT phosphorylates targets in the nucleus RPS6KB2 +PWCOMMONS AKT phosphorylates targets in the nucleus FOXO1 +PWCOMMONS AKT phosphorylates targets in the nucleus +PWCOMMONS Negative regulation of the PI3K/AKT network FRAP1 +PWCOMMONS Negative regulation of the PI3K/AKT network LST8 +PWCOMMONS Negative regulation of the PI3K/AKT network THEM4 +PWCOMMONS Negative regulation of the PI3K/AKT network TRIB3 +PWCOMMONS Negative regulation of the PI3K/AKT network PDPK1 +PWCOMMONS Negative regulation of the PI3K/AKT network NR4A1 +PWCOMMONS Negative regulation of the PI3K/AKT network FOXO1 +PWCOMMONS Negative regulation of the PI3K/AKT network PHLPP +PWCOMMONS Negative regulation of the PI3K/AKT network CHUK +PWCOMMONS Negative regulation of the PI3K/AKT network PTEN +PWCOMMONS Negative regulation of the PI3K/AKT network CREB1 +PWCOMMONS Negative regulation of the PI3K/AKT network BAD +PWCOMMONS Negative regulation of the PI3K/AKT network CASP9 +PWCOMMONS Negative regulation of the PI3K/AKT network AKT1S1 +PWCOMMONS Negative regulation of the PI3K/AKT network MDM2 +PWCOMMONS Negative regulation of the PI3K/AKT network RPS6KB2 +PWCOMMONS Negative regulation of the PI3K/AKT network +PWCOMMONS MRN complex relocalizes to nuclear foci MRE11A +PWCOMMONS MRN complex relocalizes to nuclear foci NBN +PWCOMMONS MRN complex relocalizes to nuclear foci H2AFX +PWCOMMONS MRN complex relocalizes to nuclear foci +PWCOMMONS Assembly of the RAD50-MRE11-NBS1 complex at DNA double-strand breaks MRE11A +PWCOMMONS Assembly of the RAD50-MRE11-NBS1 complex at DNA double-strand breaks NBN +PWCOMMONS Assembly of the RAD50-MRE11-NBS1 complex at DNA double-strand breaks H2AFX +PWCOMMONS Assembly of the RAD50-MRE11-NBS1 complex at DNA double-strand breaks +PWCOMMONS Digestion of dietary lipid CEL +PWCOMMONS Digestion of dietary lipid PNLIP +PWCOMMONS Digestion of dietary lipid CLPS +PWCOMMONS Digestion of dietary lipid +PWCOMMONS Amine-derived hormones AANAT +PWCOMMONS Amine-derived hormones SLC5A5 +PWCOMMONS Amine-derived hormones DIO3 +PWCOMMONS Amine-derived hormones PNMT +PWCOMMONS Amine-derived hormones SLC18A2 +PWCOMMONS Amine-derived hormones VAMP2 +PWCOMMONS Amine-derived hormones RAB3A +PWCOMMONS Amine-derived hormones SYT1 +PWCOMMONS Amine-derived hormones RIMS1 +PWCOMMONS Amine-derived hormones CPLX1 +PWCOMMONS Amine-derived hormones DBH +PWCOMMONS Amine-derived hormones MAOA +PWCOMMONS Amine-derived hormones SLC22A2 +PWCOMMONS Amine-derived hormones +PWCOMMONS Serotonin and melatonin biosynthesis AANAT +PWCOMMONS Serotonin and melatonin biosynthesis +PWCOMMONS Thyroxine biosynthesis DIO3 +PWCOMMONS Thyroxine biosynthesis +PWCOMMONS Exocytosis of Dense granule LAMP2 +PWCOMMONS Exocytosis of Dense granule +PWCOMMONS Lectin pathway of complement activation C2 +PWCOMMONS Lectin pathway of complement activation C3 +PWCOMMONS Lectin pathway of complement activation C9 +PWCOMMONS Lectin pathway of complement activation C6 +PWCOMMONS Lectin pathway of complement activation C7 +PWCOMMONS Lectin pathway of complement activation C5 +PWCOMMONS Lectin pathway of complement activation C8A +PWCOMMONS Lectin pathway of complement activation C8B +PWCOMMONS Lectin pathway of complement activation C8G +PWCOMMONS Lectin pathway of complement activation MBL2 +PWCOMMONS Lectin pathway of complement activation MASP1 +PWCOMMONS Lectin pathway of complement activation +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase ANAPC5 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase ANAPC11 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase CDC23 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase ANAPC1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase UBE2D1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase ANAPC2 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase CDC27 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase ANAPC4 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase ANAPC10 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase UBE2C +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase ANAPC7 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase CDC26 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase CDC16 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase UBE2E1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PLK1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase CDK2 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase CUL1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase BTRC +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase SKP1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase FBXO5 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMC6 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMA3 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD8 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD10 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD6 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMB5 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMB4 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD4 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMA2 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMB8 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD5 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMB6 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSME3 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMB3 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMB7 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSME1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD11 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMA5 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMC5 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMC1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD7 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD3 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMB2 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD13 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD14 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMB1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMA6 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMB9 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMB10 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD9 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMC4 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMA1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMA4 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMA7 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMF1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSME2 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD12 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMC3 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMC2 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PSMD2 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase CDC20 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase CDC2 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase CCNB1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase MAD2L1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase BUB3 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase BUB1B +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase NEK2 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase PTTG1 +PWCOMMONS Regulation of APC/C activators between G1/S and early anaphase +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 ANAPC5 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 ANAPC11 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 CDC23 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 ANAPC1 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 UBE2D1 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 ANAPC2 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 CDC27 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 ANAPC4 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 ANAPC10 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 UBE2C +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 ANAPC7 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 CDC26 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 CDC16 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 UBE2E1 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 CUL1 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 BTRC +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 SKP1 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMC6 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMA3 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD8 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD10 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD1 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD6 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMB5 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMB4 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD4 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMA2 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMB8 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD5 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMB6 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSME3 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMB3 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMB7 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSME1 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD11 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMA5 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMC5 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMC1 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD7 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD3 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMB2 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD13 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD14 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMB1 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMA6 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMB9 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMB10 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD9 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMC4 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMA1 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMA4 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMA7 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMF1 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSME2 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD12 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMC3 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMC2 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 PSMD2 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 CDC2 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 CCNB1 +PWCOMMONS SCF-beta-TrCP mediated degradation of Emi1 +PWCOMMONS Transmembrane transport of small molecules SLC29A1 +PWCOMMONS Transmembrane transport of small molecules SLC29A2 +PWCOMMONS Transmembrane transport of small molecules SLC28A2 +PWCOMMONS Transmembrane transport of small molecules SLC28A1 +PWCOMMONS Transmembrane transport of small molecules SLC7A7 +PWCOMMONS Transmembrane transport of small molecules SLC3A2 +PWCOMMONS Transmembrane transport of small molecules SLC6A15 +PWCOMMONS Transmembrane transport of small molecules SLC38A1 +PWCOMMONS Transmembrane transport of small molecules SLC38A4 +PWCOMMONS Transmembrane transport of small molecules SLC7A10 +PWCOMMONS Transmembrane transport of small molecules SLC7A3 +PWCOMMONS Transmembrane transport of small molecules SLC38A2 +PWCOMMONS Transmembrane transport of small molecules SLC7A1 +PWCOMMONS Transmembrane transport of small molecules SLC38A5 +PWCOMMONS Transmembrane transport of small molecules SLC1A4 +PWCOMMONS Transmembrane transport of small molecules SLC36A2 +PWCOMMONS Transmembrane transport of small molecules SLC6A12 +PWCOMMONS Transmembrane transport of small molecules SLC6A20 +PWCOMMONS Transmembrane transport of small molecules SLC7A6 +PWCOMMONS Transmembrane transport of small molecules SLC6A6 +PWCOMMONS Transmembrane transport of small molecules SLC36A1 +PWCOMMONS Transmembrane transport of small molecules SLC6A19 +PWCOMMONS Transmembrane transport of small molecules SLC7A8 +PWCOMMONS Transmembrane transport of small molecules SLC7A11 +PWCOMMONS Transmembrane transport of small molecules SLC43A2 +PWCOMMONS Transmembrane transport of small molecules SLC16A10 +PWCOMMONS Transmembrane transport of small molecules SLC7A5 +PWCOMMONS Transmembrane transport of small molecules SLC38A3 +PWCOMMONS Transmembrane transport of small molecules SLC6A14 +PWCOMMONS Transmembrane transport of small molecules SLC43A1 +PWCOMMONS Transmembrane transport of small molecules SLC1A5 +PWCOMMONS Transmembrane transport of small molecules SLC7A9 +PWCOMMONS Transmembrane transport of small molecules SLC3A1 +PWCOMMONS Transmembrane transport of small molecules SLC6A18 +PWCOMMONS Transmembrane transport of small molecules PEX3 +PWCOMMONS Transmembrane transport of small molecules ABCA7 +PWCOMMONS Transmembrane transport of small molecules APOA1 +PWCOMMONS Transmembrane transport of small molecules SLC5A1 +PWCOMMONS Transmembrane transport of small molecules SLC2A2 +PWCOMMONS Transmembrane transport of small molecules SLC2A5 +PWCOMMONS Transmembrane transport of small molecules CFTR +PWCOMMONS Transmembrane transport of small molecules +PWCOMMONS ABC-family proteins mediated transport APOA1 +PWCOMMONS ABC-family proteins mediated transport +PWCOMMONS Amino acid transport across the plasma membrane SLC3A2 +PWCOMMONS Amino acid transport across the plasma membrane SLC6A15 +PWCOMMONS Amino acid transport across the plasma membrane SLC38A1 +PWCOMMONS Amino acid transport across the plasma membrane SLC38A4 +PWCOMMONS Amino acid transport across the plasma membrane SLC7A10 +PWCOMMONS Amino acid transport across the plasma membrane SLC7A3 +PWCOMMONS Amino acid transport across the plasma membrane SLC38A2 +PWCOMMONS Amino acid transport across the plasma membrane SLC7A1 +PWCOMMONS Amino acid transport across the plasma membrane SLC38A5 +PWCOMMONS Amino acid transport across the plasma membrane SLC1A4 +PWCOMMONS Amino acid transport across the plasma membrane SLC36A2 +PWCOMMONS Amino acid transport across the plasma membrane SLC6A12 +PWCOMMONS Amino acid transport across the plasma membrane SLC6A20 +PWCOMMONS Amino acid transport across the plasma membrane SLC7A6 +PWCOMMONS Amino acid transport across the plasma membrane SLC6A6 +PWCOMMONS Amino acid transport across the plasma membrane SLC36A1 +PWCOMMONS Amino acid transport across the plasma membrane SLC6A19 +PWCOMMONS Amino acid transport across the plasma membrane SLC7A8 +PWCOMMONS Amino acid transport across the plasma membrane SLC7A11 +PWCOMMONS Amino acid transport across the plasma membrane SLC43A2 +PWCOMMONS Amino acid transport across the plasma membrane SLC16A10 +PWCOMMONS Amino acid transport across the plasma membrane SLC7A5 +PWCOMMONS Amino acid transport across the plasma membrane SLC38A3 +PWCOMMONS Amino acid transport across the plasma membrane SLC6A14 +PWCOMMONS Amino acid transport across the plasma membrane SLC43A1 +PWCOMMONS Amino acid transport across the plasma membrane SLC1A5 +PWCOMMONS Amino acid transport across the plasma membrane SLC7A9 +PWCOMMONS Amino acid transport across the plasma membrane SLC3A1 +PWCOMMONS Amino acid transport across the plasma membrane SLC6A18 +PWCOMMONS Amino acid transport across the plasma membrane +PWCOMMONS Hexose uptake SLC2A2 +PWCOMMONS Hexose uptake SLC2A5 +PWCOMMONS Hexose uptake +PWCOMMONS Transport of nucleosides and free purine and pyrimidine bases across the plasma membrane SLC29A1 +PWCOMMONS Transport of nucleosides and free purine and pyrimidine bases across the plasma membrane SLC29A2 +PWCOMMONS Transport of nucleosides and free purine and pyrimidine bases across the plasma membrane SLC28A2 +PWCOMMONS Transport of nucleosides and free purine and pyrimidine bases across the plasma membrane SLC28A1 +PWCOMMONS Transport of nucleosides and free purine and pyrimidine bases across the plasma membrane +PWCOMMONS Muscle contraction TTN +PWCOMMONS Muscle contraction TCAP +PWCOMMONS Muscle contraction VIM +PWCOMMONS Muscle contraction NEB +PWCOMMONS Muscle contraction TMOD1 +PWCOMMONS Muscle contraction DMD +PWCOMMONS Muscle contraction +PWCOMMONS VEGF ligand-receptor interactions FLT4 +PWCOMMONS VEGF ligand-receptor interactions +PWCOMMONS VEGF binds to VEGFR leading to receptor dimerization FLT4 +PWCOMMONS VEGF binds to VEGFR leading to receptor dimerization +PWCOMMONS Activation of BMF and translocation to mitochondria BMF +PWCOMMONS Activation of BMF and translocation to mitochondria DYNLL2 +PWCOMMONS Activation of BMF and translocation to mitochondria +PWCOMMONS LPS transferred from LBP carrier to CD14 LBP +PWCOMMONS LPS transferred from LBP carrier to CD14 +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid PPAP2C +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid GK +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid GPD1 +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid AGPAT5 +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid DGAT1 +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid AGPAT2 +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid AGPAT4 +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid AGPAT3 +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid PPAP2A +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid AGPAT1 +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid PPAP2B +PWCOMMONS Conversion of Fatty Acyl-CoA to Phosphatidic Acid +PWCOMMONS Synthesis of phosphatidic acid from lysophosphatidic acid AGPAT5 +PWCOMMONS Synthesis of phosphatidic acid from lysophosphatidic acid DGAT1 +PWCOMMONS Synthesis of phosphatidic acid from lysophosphatidic acid AGPAT4 +PWCOMMONS Synthesis of phosphatidic acid from lysophosphatidic acid AGPAT2 +PWCOMMONS Synthesis of phosphatidic acid from lysophosphatidic acid AGPAT3 +PWCOMMONS Synthesis of phosphatidic acid from lysophosphatidic acid PPAP2A +PWCOMMONS Synthesis of phosphatidic acid from lysophosphatidic acid AGPAT1 +PWCOMMONS Synthesis of phosphatidic acid from lysophosphatidic acid PPAP2B +PWCOMMONS Synthesis of phosphatidic acid from lysophosphatidic acid +PWCOMMONS Conversion of Phosphatidic Acid to Diacylglycerol PPAP2A +PWCOMMONS Conversion of Phosphatidic Acid to Diacylglycerol DGAT1 +PWCOMMONS Conversion of Phosphatidic Acid to Diacylglycerol PPAP2B +PWCOMMONS Conversion of Phosphatidic Acid to Diacylglycerol +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate PPAP2C +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate GK +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate GPD1 +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate AGPAT5 +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate DGAT1 +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate AGPAT2 +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate AGPAT4 +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate AGPAT3 +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate PPAP2A +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate AGPAT1 +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate PPAP2B +PWCOMMONS Synthesis of lysophosphatidic acid from glycerol-3-phosphate +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate PPAP2C +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate AGPAT5 +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate DGAT1 +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate AGPAT4 +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate PPAP2B +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate GK +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate GPD1 +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate AGPAT2 +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate AGPAT3 +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate PPAP2A +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate AGPAT1 +PWCOMMONS Formation of Cytosolic Glycerol-3-phosphate +PWCOMMONS Interactions of Rev with host cellular proteins RAN +PWCOMMONS Interactions of Rev with host cellular proteins XPO1 +PWCOMMONS Interactions of Rev with host cellular proteins RANBP1 +PWCOMMONS Interactions of Rev with host cellular proteins NUP153 +PWCOMMONS Interactions of Rev with host cellular proteins NUP85 +PWCOMMONS Interactions of Rev with host cellular proteins NUP35 +PWCOMMONS Interactions of Rev with host cellular proteins AAAS +PWCOMMONS Interactions of Rev with host cellular proteins NUP50 +PWCOMMONS Interactions of Rev with host cellular proteins NUP43 +PWCOMMONS Interactions of Rev with host cellular proteins NUP205 +PWCOMMONS Interactions of Rev with host cellular proteins NUP93 +PWCOMMONS Interactions of Rev with host cellular proteins NUP88 +PWCOMMONS Interactions of Rev with host cellular proteins NUPL2 +PWCOMMONS Interactions of Rev with host cellular proteins NUP210 +PWCOMMONS Interactions of Rev with host cellular proteins NUP155 +PWCOMMONS Interactions of Rev with host cellular proteins RANBP2 +PWCOMMONS Interactions of Rev with host cellular proteins RAE1 +PWCOMMONS Interactions of Rev with host cellular proteins NUP188 +PWCOMMONS Interactions of Rev with host cellular proteins NUP214 +PWCOMMONS Interactions of Rev with host cellular proteins NUP54 +PWCOMMONS Interactions of Rev with host cellular proteins NUP62 +PWCOMMONS Interactions of Rev with host cellular proteins NUP107 +PWCOMMONS Interactions of Rev with host cellular proteins NUP133 +PWCOMMONS Interactions of Rev with host cellular proteins NUP160 +PWCOMMONS Interactions of Rev with host cellular proteins NUP37 +PWCOMMONS Interactions of Rev with host cellular proteins RANGAP1 +PWCOMMONS Interactions of Rev with host cellular proteins +PWCOMMONS Nuclear import of Rev protein RAN +PWCOMMONS Nuclear import of Rev protein XPO1 +PWCOMMONS Nuclear import of Rev protein RANBP1 +PWCOMMONS Nuclear import of Rev protein NUP153 +PWCOMMONS Nuclear import of Rev protein NUP85 +PWCOMMONS Nuclear import of Rev protein NUP35 +PWCOMMONS Nuclear import of Rev protein AAAS +PWCOMMONS Nuclear import of Rev protein NUP50 +PWCOMMONS Nuclear import of Rev protein NUP43 +PWCOMMONS Nuclear import of Rev protein NUP205 +PWCOMMONS Nuclear import of Rev protein NUP93 +PWCOMMONS Nuclear import of Rev protein NUP88 +PWCOMMONS Nuclear import of Rev protein NUPL2 +PWCOMMONS Nuclear import of Rev protein NUP210 +PWCOMMONS Nuclear import of Rev protein NUP155 +PWCOMMONS Nuclear import of Rev protein RANBP2 +PWCOMMONS Nuclear import of Rev protein RAE1 +PWCOMMONS Nuclear import of Rev protein NUP188 +PWCOMMONS Nuclear import of Rev protein NUP214 +PWCOMMONS Nuclear import of Rev protein NUP54 +PWCOMMONS Nuclear import of Rev protein NUP62 +PWCOMMONS Nuclear import of Rev protein NUP107 +PWCOMMONS Nuclear import of Rev protein NUP133 +PWCOMMONS Nuclear import of Rev protein NUP160 +PWCOMMONS Nuclear import of Rev protein NUP37 +PWCOMMONS Nuclear import of Rev protein RANGAP1 +PWCOMMONS Nuclear import of Rev protein +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA RAN +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA XPO1 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA RANBP1 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP153 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP85 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP35 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA AAAS +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP50 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP43 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP205 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP93 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP88 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUPL2 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP210 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP155 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA RANBP2 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA RAE1 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP188 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP214 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP54 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP62 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP107 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP133 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP160 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA NUP37 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA RANGAP1 +PWCOMMONS Rev-mediated nuclear export of HIV-1 RNA +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2G +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2B +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2L +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2A +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2K +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2H +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2D +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2C +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2F +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2J +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2I +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE POLR2E +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE GTF2F1 +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE GTF2F2 +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE ERCC2 +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE GTF2H3 +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE GTF2H4 +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE GTF2H2 +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE ERCC3 +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE GTF2H1 +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE CCNH +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE CDK7 +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE MNAT1 +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE RNMT +PWCOMMONS RNA Pol II CTD phosphorylation and interaction with CE +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade IRF3 +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade TBK1 +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade TICAM1 +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade TLR3 +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade MAP3K7IP1 +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade MAP3K7IP2 +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade TRAF6 +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade MAP3K7 +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade CHUK +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade IKBKB +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade IKBKG +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade RELA +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade RIPK1 +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade JUN +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade MAPK1 +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade MAPK8 +PWCOMMONS Toll Like Receptor 3 (TLR3) Cascade +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates TBK1 TBK1 +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates TBK1 TICAM1 +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates TBK1 TLR3 +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates TBK1 RIPK1 +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates TBK1 CHUK +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates TBK1 IKBKB +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates TBK1 IKBKG +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates TBK1 +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates RIP1 CHUK +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates RIP1 IKBKB +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates RIP1 IKBKG +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates RIP1 RIPK1 +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates RIP1 TICAM1 +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates RIP1 TLR3 +PWCOMMONS Viral dsRNA:TLR3:TRIF Complex Activates RIP1 +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade MAP3K7IP2 +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade MAP3K7 +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade TRAF6 +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade ATF2 +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade TICAM1 +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade TLR3 +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade IKBKB +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade CHUK +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade IKBKG +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade MAPK1 +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade RELA +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade MAPK8 +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade JUN +PWCOMMONS TRAF6 Mediated Induction of the antiviral cytokine IFN-alpha/beta cascade +PWCOMMONS Gap junction trafficking and regulation GJB1 +PWCOMMONS Gap junction trafficking and regulation GJB2 +PWCOMMONS Gap junction trafficking and regulation AP2M1 +PWCOMMONS Gap junction trafficking and regulation +PWCOMMONS Gap junction trafficking GJB1 +PWCOMMONS Gap junction trafficking GJB2 +PWCOMMONS Gap junction trafficking AP2M1 +PWCOMMONS Gap junction trafficking +PWCOMMONS Gap junction assembly GJB1 +PWCOMMONS Gap junction assembly GJB2 +PWCOMMONS Gap junction assembly +PWCOMMONS Oligomerization of connexins into connexons GJB1 +PWCOMMONS Oligomerization of connexins into connexons GJB2 +PWCOMMONS Oligomerization of connexins into connexons +PWCOMMONS Transport of connexons to the plasma membrane GJB2 +PWCOMMONS Transport of connexons to the plasma membrane +PWCOMMONS Response to elevated platelet cytosolic Ca++ IGF1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ CD36 +PWCOMMONS Response to elevated platelet cytosolic Ca++ VWF +PWCOMMONS Response to elevated platelet cytosolic Ca++ SERPINE1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ F5 +PWCOMMONS Response to elevated platelet cytosolic Ca++ APP +PWCOMMONS Response to elevated platelet cytosolic Ca++ SERPINF2 +PWCOMMONS Response to elevated platelet cytosolic Ca++ SELP +PWCOMMONS Response to elevated platelet cytosolic Ca++ SERPING1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ A2M +PWCOMMONS Response to elevated platelet cytosolic Ca++ FN1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ ITGB1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ ITGA5 +PWCOMMONS Response to elevated platelet cytosolic Ca++ ITGB3 +PWCOMMONS Response to elevated platelet cytosolic Ca++ ITGA2B +PWCOMMONS Response to elevated platelet cytosolic Ca++ CD63 +PWCOMMONS Response to elevated platelet cytosolic Ca++ HGF +PWCOMMONS Response to elevated platelet cytosolic Ca++ SERPINA1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ LAMP2 +PWCOMMONS Response to elevated platelet cytosolic Ca++ F8 +PWCOMMONS Response to elevated platelet cytosolic Ca++ PF4 +PWCOMMONS Response to elevated platelet cytosolic Ca++ PPBP +PWCOMMONS Response to elevated platelet cytosolic Ca++ PECAM1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ CD9 +PWCOMMONS Response to elevated platelet cytosolic Ca++ SPARC +PWCOMMONS Response to elevated platelet cytosolic Ca++ PLG +PWCOMMONS Response to elevated platelet cytosolic Ca++ STX4 +PWCOMMONS Response to elevated platelet cytosolic Ca++ PICK1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ STXBP3 +PWCOMMONS Response to elevated platelet cytosolic Ca++ ALB +PWCOMMONS Response to elevated platelet cytosolic Ca++ CFD +PWCOMMONS Response to elevated platelet cytosolic Ca++ SRGN +PWCOMMONS Response to elevated platelet cytosolic Ca++ ALDOA +PWCOMMONS Response to elevated platelet cytosolic Ca++ PROS1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ TMSB4X +PWCOMMONS Response to elevated platelet cytosolic Ca++ F13A1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ CLU +PWCOMMONS Response to elevated platelet cytosolic Ca++ TIMP1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ GP5 +PWCOMMONS Response to elevated platelet cytosolic Ca++ GP9 +PWCOMMONS Response to elevated platelet cytosolic Ca++ GP1BA +PWCOMMONS Response to elevated platelet cytosolic Ca++ GP1BB +PWCOMMONS Response to elevated platelet cytosolic Ca++ FGB +PWCOMMONS Response to elevated platelet cytosolic Ca++ FGG +PWCOMMONS Response to elevated platelet cytosolic Ca++ FGA +PWCOMMONS Response to elevated platelet cytosolic Ca++ EGF +PWCOMMONS Response to elevated platelet cytosolic Ca++ MMRN1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ KNG1 +PWCOMMONS Response to elevated platelet cytosolic Ca++ HRG +PWCOMMONS Response to elevated platelet cytosolic Ca++ +PWCOMMONS Platelet degranulation PF4 +PWCOMMONS Platelet degranulation IGF1 +PWCOMMONS Platelet degranulation IGF1 +PWCOMMONS Platelet degranulation SRGN +PWCOMMONS Platelet degranulation FN1 +PWCOMMONS Platelet degranulation CD36 +PWCOMMONS Platelet degranulation VWF +PWCOMMONS Platelet degranulation SERPINE1 +PWCOMMONS Platelet degranulation PLG +PWCOMMONS Platelet degranulation F5 +PWCOMMONS Platelet degranulation APP +PWCOMMONS Platelet degranulation SERPINF2 +PWCOMMONS Platelet degranulation SELP +PWCOMMONS Platelet degranulation SERPING1 +PWCOMMONS Platelet degranulation ALDOA +PWCOMMONS Platelet degranulation A2M +PWCOMMONS Platelet degranulation ITGB1 +PWCOMMONS Platelet degranulation ITGA5 +PWCOMMONS Platelet degranulation PROS1 +PWCOMMONS Platelet degranulation ALB +PWCOMMONS Platelet degranulation CFD +PWCOMMONS Platelet degranulation ITGB3 +PWCOMMONS Platelet degranulation ITGA2B +PWCOMMONS Platelet degranulation GP5 +PWCOMMONS Platelet degranulation GP9 +PWCOMMONS Platelet degranulation GP1BA +PWCOMMONS Platelet degranulation GP1BB +PWCOMMONS Platelet degranulation TMSB4X +PWCOMMONS Platelet degranulation F13A1 +PWCOMMONS Platelet degranulation HGF +PWCOMMONS Platelet degranulation SERPINA1 +PWCOMMONS Platelet degranulation FGB +PWCOMMONS Platelet degranulation FGG +PWCOMMONS Platelet degranulation FGA +PWCOMMONS Platelet degranulation EGF +PWCOMMONS Platelet degranulation CLU +PWCOMMONS Platelet degranulation F8 +PWCOMMONS Platelet degranulation PPBP +PWCOMMONS Platelet degranulation TIMP1 +PWCOMMONS Platelet degranulation PECAM1 +PWCOMMONS Platelet degranulation MMRN1 +PWCOMMONS Platelet degranulation CD9 +PWCOMMONS Platelet degranulation KNG1 +PWCOMMONS Platelet degranulation HRG +PWCOMMONS Platelet degranulation CD63 +PWCOMMONS Platelet degranulation LAMP2 +PWCOMMONS Platelet degranulation +PWCOMMONS Exocytosis of Alpha granule PF4 +PWCOMMONS Exocytosis of Alpha granule IGF1 +PWCOMMONS Exocytosis of Alpha granule IGF1 +PWCOMMONS Exocytosis of Alpha granule SRGN +PWCOMMONS Exocytosis of Alpha granule FN1 +PWCOMMONS Exocytosis of Alpha granule CD36 +PWCOMMONS Exocytosis of Alpha granule VWF +PWCOMMONS Exocytosis of Alpha granule SERPINE1 +PWCOMMONS Exocytosis of Alpha granule PLG +PWCOMMONS Exocytosis of Alpha granule F5 +PWCOMMONS Exocytosis of Alpha granule APP +PWCOMMONS Exocytosis of Alpha granule SERPINF2 +PWCOMMONS Exocytosis of Alpha granule SELP +PWCOMMONS Exocytosis of Alpha granule SERPING1 +PWCOMMONS Exocytosis of Alpha granule ALDOA +PWCOMMONS Exocytosis of Alpha granule A2M +PWCOMMONS Exocytosis of Alpha granule ITGB1 +PWCOMMONS Exocytosis of Alpha granule ITGA5 +PWCOMMONS Exocytosis of Alpha granule PROS1 +PWCOMMONS Exocytosis of Alpha granule ALB +PWCOMMONS Exocytosis of Alpha granule CFD +PWCOMMONS Exocytosis of Alpha granule ITGB3 +PWCOMMONS Exocytosis of Alpha granule ITGA2B +PWCOMMONS Exocytosis of Alpha granule GP5 +PWCOMMONS Exocytosis of Alpha granule GP9 +PWCOMMONS Exocytosis of Alpha granule GP1BA +PWCOMMONS Exocytosis of Alpha granule GP1BB +PWCOMMONS Exocytosis of Alpha granule TMSB4X +PWCOMMONS Exocytosis of Alpha granule F13A1 +PWCOMMONS Exocytosis of Alpha granule HGF +PWCOMMONS Exocytosis of Alpha granule SERPINA1 +PWCOMMONS Exocytosis of Alpha granule FGB +PWCOMMONS Exocytosis of Alpha granule FGG +PWCOMMONS Exocytosis of Alpha granule FGA +PWCOMMONS Exocytosis of Alpha granule EGF +PWCOMMONS Exocytosis of Alpha granule CLU +PWCOMMONS Exocytosis of Alpha granule F8 +PWCOMMONS Exocytosis of Alpha granule PPBP +PWCOMMONS Exocytosis of Alpha granule TIMP1 +PWCOMMONS Exocytosis of Alpha granule PECAM1 +PWCOMMONS Exocytosis of Alpha granule MMRN1 +PWCOMMONS Exocytosis of Alpha granule CD9 +PWCOMMONS Exocytosis of Alpha granule KNG1 +PWCOMMONS Exocytosis of Alpha granule HRG +PWCOMMONS Exocytosis of Alpha granule +PWCOMMONS Disinhibition of SNARE formation PICK1 +PWCOMMONS Disinhibition of SNARE formation STXBP3 +PWCOMMONS Disinhibition of SNARE formation +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding VAMP8 +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding AP1G1 +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding AP1B1 +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding HSPA8 +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding DNAJC6 +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding STX4 +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding VAMP7 +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding SNAP23 +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding VAMP2 +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding SH3GL2 +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding ARF1 +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding GBF1 +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding VTI1B +PWCOMMONS Vamp2 associated Clathrin derived vesicle budding +PWCOMMONS Late Phase of HIV Life Cycle GTF2A1 +PWCOMMONS Late Phase of HIV Life Cycle GTF2A2 +PWCOMMONS Late Phase of HIV Life Cycle GTF2E2 +PWCOMMONS Late Phase of HIV Life Cycle GTF2E1 +PWCOMMONS Late Phase of HIV Life Cycle GTF2F1 +PWCOMMONS Late Phase of HIV Life Cycle GTF2F2 +PWCOMMONS Late Phase of HIV Life Cycle POLR2G +PWCOMMONS Late Phase of HIV Life Cycle POLR2B +PWCOMMONS Late Phase of HIV Life Cycle POLR2L +PWCOMMONS Late Phase of HIV Life Cycle POLR2A +PWCOMMONS Late Phase of HIV Life Cycle POLR2K +PWCOMMONS Late Phase of HIV Life Cycle POLR2H +PWCOMMONS Late Phase of HIV Life Cycle POLR2D +PWCOMMONS Late Phase of HIV Life Cycle POLR2C +PWCOMMONS Late Phase of HIV Life Cycle POLR2J +PWCOMMONS Late Phase of HIV Life Cycle POLR2I +PWCOMMONS Late Phase of HIV Life Cycle POLR2F +PWCOMMONS Late Phase of HIV Life Cycle POLR2E +PWCOMMONS Late Phase of HIV Life Cycle TAF9 +PWCOMMONS Late Phase of HIV Life Cycle TAF4 +PWCOMMONS Late Phase of HIV Life Cycle TAF13 +PWCOMMONS Late Phase of HIV Life Cycle TAF10 +PWCOMMONS Late Phase of HIV Life Cycle TAF1 +PWCOMMONS Late Phase of HIV Life Cycle TAF6 +PWCOMMONS Late Phase of HIV Life Cycle TAF12 +PWCOMMONS Late Phase of HIV Life Cycle TAF4B +PWCOMMONS Late Phase of HIV Life Cycle TAF5 +PWCOMMONS Late Phase of HIV Life Cycle TAF11 +PWCOMMONS Late Phase of HIV Life Cycle TBP +PWCOMMONS Late Phase of HIV Life Cycle ERCC2 +PWCOMMONS Late Phase of HIV Life Cycle GTF2H3 +PWCOMMONS Late Phase of HIV Life Cycle GTF2H4 +PWCOMMONS Late Phase of HIV Life Cycle GTF2H2 +PWCOMMONS Late Phase of HIV Life Cycle ERCC3 +PWCOMMONS Late Phase of HIV Life Cycle GTF2H1 +PWCOMMONS Late Phase of HIV Life Cycle CCNH +PWCOMMONS Late Phase of HIV Life Cycle CDK7 +PWCOMMONS Late Phase of HIV Life Cycle MNAT1 +PWCOMMONS Late Phase of HIV Life Cycle RNGTT +PWCOMMONS Late Phase of HIV Life Cycle CTDP1 +PWCOMMONS Late Phase of HIV Life Cycle TCEA1 +PWCOMMONS Late Phase of HIV Life Cycle ELL +PWCOMMONS Late Phase of HIV Life Cycle TCEB3 +PWCOMMONS Late Phase of HIV Life Cycle TCEB1 +PWCOMMONS Late Phase of HIV Life Cycle TCEB2 +PWCOMMONS Late Phase of HIV Life Cycle SSRP1 +PWCOMMONS Late Phase of HIV Life Cycle SUPT16H +PWCOMMONS Late Phase of HIV Life Cycle CCNT2 +PWCOMMONS Late Phase of HIV Life Cycle CDK9 +PWCOMMONS Late Phase of HIV Life Cycle CCNT1 +PWCOMMONS Late Phase of HIV Life Cycle SUPT4H1 +PWCOMMONS Late Phase of HIV Life Cycle TH1L +PWCOMMONS Late Phase of HIV Life Cycle WHSC2 +PWCOMMONS Late Phase of HIV Life Cycle RDBP +PWCOMMONS Late Phase of HIV Life Cycle COBRA1 +PWCOMMONS Late Phase of HIV Life Cycle NCBP2 +PWCOMMONS Late Phase of HIV Life Cycle NCBP1 +PWCOMMONS Late Phase of HIV Life Cycle RNMT +PWCOMMONS Late Phase of HIV Life Cycle KPNB1 +PWCOMMONS Late Phase of HIV Life Cycle RAN +PWCOMMONS Late Phase of HIV Life Cycle XPO1 +PWCOMMONS Late Phase of HIV Life Cycle RANBP1 +PWCOMMONS Late Phase of HIV Life Cycle NUP153 +PWCOMMONS Late Phase of HIV Life Cycle NUP85 +PWCOMMONS Late Phase of HIV Life Cycle NUP35 +PWCOMMONS Late Phase of HIV Life Cycle AAAS +PWCOMMONS Late Phase of HIV Life Cycle NUP50 +PWCOMMONS Late Phase of HIV Life Cycle NUP43 +PWCOMMONS Late Phase of HIV Life Cycle NUP205 +PWCOMMONS Late Phase of HIV Life Cycle NUP93 +PWCOMMONS Late Phase of HIV Life Cycle NUP88 +PWCOMMONS Late Phase of HIV Life Cycle NUPL2 +PWCOMMONS Late Phase of HIV Life Cycle NUP210 +PWCOMMONS Late Phase of HIV Life Cycle NUP155 +PWCOMMONS Late Phase of HIV Life Cycle RANBP2 +PWCOMMONS Late Phase of HIV Life Cycle RAE1 +PWCOMMONS Late Phase of HIV Life Cycle NUP188 +PWCOMMONS Late Phase of HIV Life Cycle NUP214 +PWCOMMONS Late Phase of HIV Life Cycle NUP54 +PWCOMMONS Late Phase of HIV Life Cycle NUP62 +PWCOMMONS Late Phase of HIV Life Cycle NUP107 +PWCOMMONS Late Phase of HIV Life Cycle NUP133 +PWCOMMONS Late Phase of HIV Life Cycle NUP160 +PWCOMMONS Late Phase of HIV Life Cycle NUP37 +PWCOMMONS Late Phase of HIV Life Cycle RANGAP1 +PWCOMMONS Late Phase of HIV Life Cycle +PWCOMMONS Transcription of the HIV genome GTF2A1 +PWCOMMONS Transcription of the HIV genome GTF2A2 +PWCOMMONS Transcription of the HIV genome GTF2E2 +PWCOMMONS Transcription of the HIV genome GTF2E1 +PWCOMMONS Transcription of the HIV genome GTF2F1 +PWCOMMONS Transcription of the HIV genome GTF2F2 +PWCOMMONS Transcription of the HIV genome POLR2G +PWCOMMONS Transcription of the HIV genome POLR2B +PWCOMMONS Transcription of the HIV genome POLR2L +PWCOMMONS Transcription of the HIV genome POLR2A +PWCOMMONS Transcription of the HIV genome POLR2K +PWCOMMONS Transcription of the HIV genome POLR2H +PWCOMMONS Transcription of the HIV genome POLR2D +PWCOMMONS Transcription of the HIV genome POLR2C +PWCOMMONS Transcription of the HIV genome POLR2J +PWCOMMONS Transcription of the HIV genome POLR2I +PWCOMMONS Transcription of the HIV genome POLR2F +PWCOMMONS Transcription of the HIV genome POLR2E +PWCOMMONS Transcription of the HIV genome TAF9 +PWCOMMONS Transcription of the HIV genome TAF4 +PWCOMMONS Transcription of the HIV genome TAF13 +PWCOMMONS Transcription of the HIV genome TAF10 +PWCOMMONS Transcription of the HIV genome TAF1 +PWCOMMONS Transcription of the HIV genome TAF6 +PWCOMMONS Transcription of the HIV genome TAF12 +PWCOMMONS Transcription of the HIV genome TAF4B +PWCOMMONS Transcription of the HIV genome TAF5 +PWCOMMONS Transcription of the HIV genome TAF11 +PWCOMMONS Transcription of the HIV genome TBP +PWCOMMONS Transcription of the HIV genome ERCC2 +PWCOMMONS Transcription of the HIV genome GTF2H3 +PWCOMMONS Transcription of the HIV genome GTF2H4 +PWCOMMONS Transcription of the HIV genome GTF2H2 +PWCOMMONS Transcription of the HIV genome ERCC3 +PWCOMMONS Transcription of the HIV genome GTF2H1 +PWCOMMONS Transcription of the HIV genome CCNH +PWCOMMONS Transcription of the HIV genome CDK7 +PWCOMMONS Transcription of the HIV genome MNAT1 +PWCOMMONS Transcription of the HIV genome RNGTT +PWCOMMONS Transcription of the HIV genome CTDP1 +PWCOMMONS Transcription of the HIV genome TCEA1 +PWCOMMONS Transcription of the HIV genome ELL +PWCOMMONS Transcription of the HIV genome TCEB3 +PWCOMMONS Transcription of the HIV genome TCEB1 +PWCOMMONS Transcription of the HIV genome TCEB2 +PWCOMMONS Transcription of the HIV genome SSRP1 +PWCOMMONS Transcription of the HIV genome SUPT16H +PWCOMMONS Transcription of the HIV genome CCNT2 +PWCOMMONS Transcription of the HIV genome CDK9 +PWCOMMONS Transcription of the HIV genome CCNT1 +PWCOMMONS Transcription of the HIV genome SUPT4H1 +PWCOMMONS Transcription of the HIV genome TH1L +PWCOMMONS Transcription of the HIV genome WHSC2 +PWCOMMONS Transcription of the HIV genome RDBP +PWCOMMONS Transcription of the HIV genome COBRA1 +PWCOMMONS Transcription of the HIV genome NCBP2 +PWCOMMONS Transcription of the HIV genome NCBP1 +PWCOMMONS Transcription of the HIV genome RNMT +PWCOMMONS Transcription of the HIV genome +PWCOMMONS HIV-1 Transcription Pre-Initiation GTF2A1 +PWCOMMONS HIV-1 Transcription Pre-Initiation GTF2A2 +PWCOMMONS HIV-1 Transcription Pre-Initiation GTF2E2 +PWCOMMONS HIV-1 Transcription Pre-Initiation GTF2E1 +PWCOMMONS HIV-1 Transcription Pre-Initiation GTF2F1 +PWCOMMONS HIV-1 Transcription Pre-Initiation GTF2F2 +PWCOMMONS HIV-1 Transcription Pre-Initiation POLR2G +PWCOMMONS HIV-1 Transcription Pre-Initiation POLR2B +PWCOMMONS HIV-1 Transcription Pre-Initiation POLR2L +PWCOMMONS HIV-1 Transcription Pre-Initiation POLR2A +PWCOMMONS HIV-1 Transcription Pre-Initiation POLR2K +PWCOMMONS HIV-1 Transcription Pre-Initiation POLR2H +PWCOMMONS HIV-1 Transcription Pre-Initiation POLR2D +PWCOMMONS HIV-1 Transcription Pre-Initiation POLR2C +PWCOMMONS HIV-1 Transcription Pre-Initiation POLR2J +PWCOMMONS HIV-1 Transcription Pre-Initiation POLR2I +PWCOMMONS HIV-1 Transcription Pre-Initiation POLR2F +PWCOMMONS HIV-1 Transcription Pre-Initiation POLR2E +PWCOMMONS HIV-1 Transcription Pre-Initiation TAF9 +PWCOMMONS HIV-1 Transcription Pre-Initiation TAF4 +PWCOMMONS HIV-1 Transcription Pre-Initiation TAF13 +PWCOMMONS HIV-1 Transcription Pre-Initiation TAF10 +PWCOMMONS HIV-1 Transcription Pre-Initiation TAF1 +PWCOMMONS HIV-1 Transcription Pre-Initiation TAF6 +PWCOMMONS HIV-1 Transcription Pre-Initiation TAF12 +PWCOMMONS HIV-1 Transcription Pre-Initiation TAF4B +PWCOMMONS HIV-1 Transcription Pre-Initiation TAF5 +PWCOMMONS HIV-1 Transcription Pre-Initiation TAF11 +PWCOMMONS HIV-1 Transcription Pre-Initiation TBP +PWCOMMONS HIV-1 Transcription Pre-Initiation ERCC2 +PWCOMMONS HIV-1 Transcription Pre-Initiation GTF2H3 +PWCOMMONS HIV-1 Transcription Pre-Initiation GTF2H4 +PWCOMMONS HIV-1 Transcription Pre-Initiation GTF2H2 +PWCOMMONS HIV-1 Transcription Pre-Initiation ERCC3 +PWCOMMONS HIV-1 Transcription Pre-Initiation GTF2H1 +PWCOMMONS HIV-1 Transcription Pre-Initiation CCNH +PWCOMMONS HIV-1 Transcription Pre-Initiation CDK7 +PWCOMMONS HIV-1 Transcription Pre-Initiation MNAT1 +PWCOMMONS HIV-1 Transcription Pre-Initiation RNGTT +PWCOMMONS HIV-1 Transcription Pre-Initiation RNMT +PWCOMMONS HIV-1 Transcription Pre-Initiation +PWCOMMONS HIV-1 Transcription Initiation GTF2A1 +PWCOMMONS HIV-1 Transcription Initiation GTF2A2 +PWCOMMONS HIV-1 Transcription Initiation GTF2E2 +PWCOMMONS HIV-1 Transcription Initiation GTF2E1 +PWCOMMONS HIV-1 Transcription Initiation GTF2F1 +PWCOMMONS HIV-1 Transcription Initiation GTF2F2 +PWCOMMONS HIV-1 Transcription Initiation POLR2G +PWCOMMONS HIV-1 Transcription Initiation POLR2B +PWCOMMONS HIV-1 Transcription Initiation POLR2L +PWCOMMONS HIV-1 Transcription Initiation POLR2A +PWCOMMONS HIV-1 Transcription Initiation POLR2K +PWCOMMONS HIV-1 Transcription Initiation POLR2H +PWCOMMONS HIV-1 Transcription Initiation POLR2D +PWCOMMONS HIV-1 Transcription Initiation POLR2C +PWCOMMONS HIV-1 Transcription Initiation POLR2J +PWCOMMONS HIV-1 Transcription Initiation POLR2I +PWCOMMONS HIV-1 Transcription Initiation POLR2F +PWCOMMONS HIV-1 Transcription Initiation POLR2E +PWCOMMONS HIV-1 Transcription Initiation TAF9 +PWCOMMONS HIV-1 Transcription Initiation TAF4 +PWCOMMONS HIV-1 Transcription Initiation TAF13 +PWCOMMONS HIV-1 Transcription Initiation TAF10 +PWCOMMONS HIV-1 Transcription Initiation TAF1 +PWCOMMONS HIV-1 Transcription Initiation TAF6 +PWCOMMONS HIV-1 Transcription Initiation TAF12 +PWCOMMONS HIV-1 Transcription Initiation TAF4B +PWCOMMONS HIV-1 Transcription Initiation TAF5 +PWCOMMONS HIV-1 Transcription Initiation TAF11 +PWCOMMONS HIV-1 Transcription Initiation TBP +PWCOMMONS HIV-1 Transcription Initiation ERCC2 +PWCOMMONS HIV-1 Transcription Initiation GTF2H3 +PWCOMMONS HIV-1 Transcription Initiation GTF2H4 +PWCOMMONS HIV-1 Transcription Initiation GTF2H2 +PWCOMMONS HIV-1 Transcription Initiation ERCC3 +PWCOMMONS HIV-1 Transcription Initiation GTF2H1 +PWCOMMONS HIV-1 Transcription Initiation CCNH +PWCOMMONS HIV-1 Transcription Initiation CDK7 +PWCOMMONS HIV-1 Transcription Initiation MNAT1 +PWCOMMONS HIV-1 Transcription Initiation RNGTT +PWCOMMONS HIV-1 Transcription Initiation RNMT +PWCOMMONS HIV-1 Transcription Initiation +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2G +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2B +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2L +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2A +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2K +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2H +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2D +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2C +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2F +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2J +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2I +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape POLR2E +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape GTF2F1 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape GTF2F2 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape ERCC2 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape GTF2H3 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape GTF2H4 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape GTF2H2 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape ERCC3 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape GTF2H1 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape CCNH +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape CDK7 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape MNAT1 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape GTF2B +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape GTF2A1 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape GTF2A2 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape GTF2E2 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape GTF2E1 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape TAF9 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape TAF4 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape TAF13 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape TAF10 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape TAF1 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape TAF6 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape TAF12 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape TAF4B +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape TAF5 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape TAF11 +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape TBP +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape RNMT +PWCOMMONS RNA Polymerase II HIV-1 Promoter Escape +PWCOMMONS HIV-1 Transcription Elongation TCEA1 +PWCOMMONS HIV-1 Transcription Elongation ELL +PWCOMMONS HIV-1 Transcription Elongation TCEB3 +PWCOMMONS HIV-1 Transcription Elongation TCEB1 +PWCOMMONS HIV-1 Transcription Elongation TCEB2 +PWCOMMONS HIV-1 Transcription Elongation SSRP1 +PWCOMMONS HIV-1 Transcription Elongation SUPT16H +PWCOMMONS HIV-1 Transcription Elongation CCNT2 +PWCOMMONS HIV-1 Transcription Elongation CDK9 +PWCOMMONS HIV-1 Transcription Elongation CCNT1 +PWCOMMONS HIV-1 Transcription Elongation POLR2G +PWCOMMONS HIV-1 Transcription Elongation POLR2B +PWCOMMONS HIV-1 Transcription Elongation POLR2L +PWCOMMONS HIV-1 Transcription Elongation POLR2A +PWCOMMONS HIV-1 Transcription Elongation POLR2K +PWCOMMONS HIV-1 Transcription Elongation POLR2H +PWCOMMONS HIV-1 Transcription Elongation POLR2D +PWCOMMONS HIV-1 Transcription Elongation POLR2C +PWCOMMONS HIV-1 Transcription Elongation POLR2I +PWCOMMONS HIV-1 Transcription Elongation POLR2F +PWCOMMONS HIV-1 Transcription Elongation POLR2J +PWCOMMONS HIV-1 Transcription Elongation POLR2E +PWCOMMONS HIV-1 Transcription Elongation GTF2F1 +PWCOMMONS HIV-1 Transcription Elongation GTF2F2 +PWCOMMONS HIV-1 Transcription Elongation SUPT4H1 +PWCOMMONS HIV-1 Transcription Elongation TH1L +PWCOMMONS HIV-1 Transcription Elongation WHSC2 +PWCOMMONS HIV-1 Transcription Elongation RDBP +PWCOMMONS HIV-1 Transcription Elongation COBRA1 +PWCOMMONS HIV-1 Transcription Elongation NCBP2 +PWCOMMONS HIV-1 Transcription Elongation NCBP1 +PWCOMMONS HIV-1 Transcription Elongation ERCC2 +PWCOMMONS HIV-1 Transcription Elongation GTF2H3 +PWCOMMONS HIV-1 Transcription Elongation GTF2H4 +PWCOMMONS HIV-1 Transcription Elongation GTF2H2 +PWCOMMONS HIV-1 Transcription Elongation ERCC3 +PWCOMMONS HIV-1 Transcription Elongation GTF2H1 +PWCOMMONS HIV-1 Transcription Elongation CCNH +PWCOMMONS HIV-1 Transcription Elongation CDK7 +PWCOMMONS HIV-1 Transcription Elongation MNAT1 +PWCOMMONS HIV-1 Transcription Elongation +PWCOMMONS Formation of the HIV-1 Early Elongation Complex TCEA1 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex ELL +PWCOMMONS Formation of the HIV-1 Early Elongation Complex TCEB3 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex TCEB1 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex TCEB2 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex SSRP1 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex SUPT16H +PWCOMMONS Formation of the HIV-1 Early Elongation Complex CCNT2 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex CDK9 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex CCNT1 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex POLR2G +PWCOMMONS Formation of the HIV-1 Early Elongation Complex POLR2B +PWCOMMONS Formation of the HIV-1 Early Elongation Complex POLR2L +PWCOMMONS Formation of the HIV-1 Early Elongation Complex POLR2A +PWCOMMONS Formation of the HIV-1 Early Elongation Complex POLR2K +PWCOMMONS Formation of the HIV-1 Early Elongation Complex POLR2H +PWCOMMONS Formation of the HIV-1 Early Elongation Complex POLR2D +PWCOMMONS Formation of the HIV-1 Early Elongation Complex POLR2C +PWCOMMONS Formation of the HIV-1 Early Elongation Complex POLR2I +PWCOMMONS Formation of the HIV-1 Early Elongation Complex POLR2F +PWCOMMONS Formation of the HIV-1 Early Elongation Complex POLR2J +PWCOMMONS Formation of the HIV-1 Early Elongation Complex POLR2E +PWCOMMONS Formation of the HIV-1 Early Elongation Complex GTF2F1 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex GTF2F2 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex SUPT4H1 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex TH1L +PWCOMMONS Formation of the HIV-1 Early Elongation Complex WHSC2 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex RDBP +PWCOMMONS Formation of the HIV-1 Early Elongation Complex COBRA1 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex NCBP2 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex NCBP1 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex ERCC2 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex GTF2H3 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex GTF2H4 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex GTF2H2 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex ERCC3 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex GTF2H1 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex CCNH +PWCOMMONS Formation of the HIV-1 Early Elongation Complex CDK7 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex MNAT1 +PWCOMMONS Formation of the HIV-1 Early Elongation Complex +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript TCEA1 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript ELL +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript TCEB3 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript TCEB1 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript TCEB2 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript SSRP1 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript SUPT16H +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript POLR2G +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript POLR2B +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript POLR2L +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript POLR2A +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript POLR2K +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript POLR2H +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript POLR2D +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript POLR2C +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript POLR2I +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript POLR2F +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript POLR2J +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript POLR2E +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript GTF2F1 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript GTF2F2 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript SUPT4H1 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript CDK9 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript CCNT1 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript TH1L +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript WHSC2 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript RDBP +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript COBRA1 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript ERCC2 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript GTF2H3 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript GTF2H4 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript GTF2H2 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript ERCC3 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript GTF2H1 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript CCNH +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript CDK7 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript MNAT1 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript NCBP2 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript NCBP1 +PWCOMMONS Tat-mediated elongation of the HIV-1 transcript +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat TCEA1 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat ELL +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat TCEB3 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat TCEB1 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat TCEB2 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat SSRP1 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat SUPT16H +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat POLR2G +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat POLR2B +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat POLR2L +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat POLR2A +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat POLR2K +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat POLR2H +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat POLR2D +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat POLR2C +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat POLR2I +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat POLR2F +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat POLR2J +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat POLR2E +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat GTF2F1 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat GTF2F2 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat SUPT4H1 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat CDK9 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat CCNT1 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat TH1L +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat WHSC2 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat RDBP +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat COBRA1 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat NCBP2 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat NCBP1 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat ERCC2 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat GTF2H3 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat GTF2H4 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat GTF2H2 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat ERCC3 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat GTF2H1 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat CCNH +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat CDK7 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat MNAT1 +PWCOMMONS Formation of HIV-1 elongation complex containing HIV-1 Tat +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat TCEA1 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat ELL +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat TCEB3 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat TCEB1 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat TCEB2 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat SSRP1 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat SUPT16H +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat CCNT2 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat CDK9 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat CCNT1 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat POLR2G +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat POLR2B +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat POLR2L +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat POLR2A +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat POLR2K +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat POLR2H +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat POLR2D +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat POLR2C +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat POLR2I +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat POLR2F +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat POLR2J +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat POLR2E +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat GTF2F1 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat GTF2F2 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat SUPT4H1 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat TH1L +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat WHSC2 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat RDBP +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat COBRA1 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat NCBP2 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat NCBP1 +PWCOMMONS Abortive elongation of HIV-1 transcript in the absence of Tat +PWCOMMONS Glutathione conjugation GCLC +PWCOMMONS Glutathione conjugation GCLM +PWCOMMONS Glutathione conjugation +PWCOMMONS Glutathione synthesis GCLC +PWCOMMONS Glutathione synthesis GCLM +PWCOMMONS Glutathione synthesis +PWCOMMONS Ceramide signalling NGFR +PWCOMMONS Ceramide signalling NGF +PWCOMMONS Ceramide signalling +PWCOMMONS Regulation of PAK-2p34 activity by PS-GAP/RHG10 ARHGAP10 +PWCOMMONS Regulation of PAK-2p34 activity by PS-GAP/RHG10 +PWCOMMONS Regulation of Insulin Secretion ATP5F1 +PWCOMMONS Regulation of Insulin Secretion ATP5J +PWCOMMONS Regulation of Insulin Secretion ATP5G1 +PWCOMMONS Regulation of Insulin Secretion ATP5L +PWCOMMONS Regulation of Insulin Secretion MT-ATP6 +PWCOMMONS Regulation of Insulin Secretion ATP5J2 +PWCOMMONS Regulation of Insulin Secretion MT-ATP8 +PWCOMMONS Regulation of Insulin Secretion ATP5H +PWCOMMONS Regulation of Insulin Secretion ATP5I +PWCOMMONS Regulation of Insulin Secretion ATP5C1 +PWCOMMONS Regulation of Insulin Secretion ATP5D +PWCOMMONS Regulation of Insulin Secretion ATP5A1 +PWCOMMONS Regulation of Insulin Secretion ATP5B +PWCOMMONS Regulation of Insulin Secretion ATP5E +PWCOMMONS Regulation of Insulin Secretion MLX +PWCOMMONS Regulation of Insulin Secretion MLXIPL +PWCOMMONS Regulation of Insulin Secretion HPRT1 +PWCOMMONS Regulation of Insulin Secretion UQCRC1 +PWCOMMONS Regulation of Insulin Secretion UQCRB +PWCOMMONS Regulation of Insulin Secretion UQCR10 +PWCOMMONS Regulation of Insulin Secretion UQCR +PWCOMMONS Regulation of Insulin Secretion UQCRC2 +PWCOMMONS Regulation of Insulin Secretion UQCRH +PWCOMMONS Regulation of Insulin Secretion UQCRQ +PWCOMMONS Regulation of Insulin Secretion UQCRFS1 +PWCOMMONS Regulation of Insulin Secretion MT-CYB +PWCOMMONS Regulation of Insulin Secretion CYC1 +PWCOMMONS Regulation of Insulin Secretion GOT2 +PWCOMMONS Regulation of Insulin Secretion GYG2 +PWCOMMONS Regulation of Insulin Secretion UPP1 +PWCOMMONS Regulation of Insulin Secretion PC +PWCOMMONS Regulation of Insulin Secretion ADSL +PWCOMMONS Regulation of Insulin Secretion PCK1 +PWCOMMONS Regulation of Insulin Secretion MDH1 +PWCOMMONS Regulation of Insulin Secretion OAT +PWCOMMONS Regulation of Insulin Secretion GYS2 +PWCOMMONS Regulation of Insulin Secretion ECHS1 +PWCOMMONS Regulation of Insulin Secretion TXN +PWCOMMONS Regulation of Insulin Secretion SUCLG1 +PWCOMMONS Regulation of Insulin Secretion SUCLG2 +PWCOMMONS Regulation of Insulin Secretion ARG1 +PWCOMMONS Regulation of Insulin Secretion KCNJ11 +PWCOMMONS Regulation of Insulin Secretion AMPD3 +PWCOMMONS Regulation of Insulin Secretion RPE +PWCOMMONS Regulation of Insulin Secretion GPT +PWCOMMONS Regulation of Insulin Secretion DPYS +PWCOMMONS Regulation of Insulin Secretion AK1 +PWCOMMONS Regulation of Insulin Secretion PKM2 +PWCOMMONS Regulation of Insulin Secretion NDUFS3 +PWCOMMONS Regulation of Insulin Secretion NDUFS4 +PWCOMMONS Regulation of Insulin Secretion NDUFS6 +PWCOMMONS Regulation of Insulin Secretion NDUFA5 +PWCOMMONS Regulation of Insulin Secretion NDUFS5 +PWCOMMONS Regulation of Insulin Secretion NDUFS1 +PWCOMMONS Regulation of Insulin Secretion NDUFS2 +PWCOMMONS Regulation of Insulin Secretion NDUFV2 +PWCOMMONS Regulation of Insulin Secretion NDUFV3 +PWCOMMONS Regulation of Insulin Secretion NDUFV1 +PWCOMMONS Regulation of Insulin Secretion NDUFA4 +PWCOMMONS Regulation of Insulin Secretion NDUFA11 +PWCOMMONS Regulation of Insulin Secretion MT-ND3 +PWCOMMONS Regulation of Insulin Secretion NDUFA13 +PWCOMMONS Regulation of Insulin Secretion NDUFB5 +PWCOMMONS Regulation of Insulin Secretion NDUFC1 +PWCOMMONS Regulation of Insulin Secretion NDUFA6 +PWCOMMONS Regulation of Insulin Secretion NDUFC2 +PWCOMMONS Regulation of Insulin Secretion NDUFA3 +PWCOMMONS Regulation of Insulin Secretion NDUFB3 +PWCOMMONS Regulation of Insulin Secretion NDUFB1 +PWCOMMONS Regulation of Insulin Secretion NDUFAB1 +PWCOMMONS Regulation of Insulin Secretion MT-ND4 +PWCOMMONS Regulation of Insulin Secretion MT-ND5 +PWCOMMONS Regulation of Insulin Secretion NDUFA1 +PWCOMMONS Regulation of Insulin Secretion NDUFB9 +PWCOMMONS Regulation of Insulin Secretion NDUFB6 +PWCOMMONS Regulation of Insulin Secretion NDUFB4 +PWCOMMONS Regulation of Insulin Secretion NDUFA8 +PWCOMMONS Regulation of Insulin Secretion NDUFB7 +PWCOMMONS Regulation of Insulin Secretion NDUFA12 +PWCOMMONS Regulation of Insulin Secretion NDUFB2 +PWCOMMONS Regulation of Insulin Secretion MT-ND4L +PWCOMMONS Regulation of Insulin Secretion MT-ND2 +PWCOMMONS Regulation of Insulin Secretion NDUFB10 +PWCOMMONS Regulation of Insulin Secretion NDUFA7 +PWCOMMONS Regulation of Insulin Secretion NDUFA2 +PWCOMMONS Regulation of Insulin Secretion NDUFB8 +PWCOMMONS Regulation of Insulin Secretion NDUFB11 +PWCOMMONS Regulation of Insulin Secretion MT-ND6 +PWCOMMONS Regulation of Insulin Secretion MT-ND1 +PWCOMMONS Regulation of Insulin Secretion NDUFS7 +PWCOMMONS Regulation of Insulin Secretion NDUFA10 +PWCOMMONS Regulation of Insulin Secretion NDUFS8 +PWCOMMONS Regulation of Insulin Secretion NDUFA9 +PWCOMMONS Regulation of Insulin Secretion VAMP2 +PWCOMMONS Regulation of Insulin Secretion NT5C1A +PWCOMMONS Regulation of Insulin Secretion FASN +PWCOMMONS Regulation of Insulin Secretion DLST +PWCOMMONS Regulation of Insulin Secretion OGDH +PWCOMMONS Regulation of Insulin Secretion DLD +PWCOMMONS Regulation of Insulin Secretion GMPS +PWCOMMONS Regulation of Insulin Secretion GUK1 +PWCOMMONS Regulation of Insulin Secretion IMPDH2 +PWCOMMONS Regulation of Insulin Secretion GDA +PWCOMMONS Regulation of Insulin Secretion NME1 +PWCOMMONS Regulation of Insulin Secretion IMPDH1 +PWCOMMONS Regulation of Insulin Secretion ADSS +PWCOMMONS Regulation of Insulin Secretion ATIC +PWCOMMONS Regulation of Insulin Secretion PFKFB1 +PWCOMMONS Regulation of Insulin Secretion INS +PWCOMMONS Regulation of Insulin Secretion SYT5 +PWCOMMONS Regulation of Insulin Secretion GART +PWCOMMONS Regulation of Insulin Secretion SLC35D1 +PWCOMMONS Regulation of Insulin Secretion ASL +PWCOMMONS Regulation of Insulin Secretion UPB1 +PWCOMMONS Regulation of Insulin Secretion GLRX +PWCOMMONS Regulation of Insulin Secretion SLC25A21 +PWCOMMONS Regulation of Insulin Secretion AGPAT1 +PWCOMMONS Regulation of Insulin Secretion UROS +PWCOMMONS Regulation of Insulin Secretion ETFA +PWCOMMONS Regulation of Insulin Secretion ETFB +PWCOMMONS Regulation of Insulin Secretion TALDO1 +PWCOMMONS Regulation of Insulin Secretion ASS1 +PWCOMMONS Regulation of Insulin Secretion CMPK1 +PWCOMMONS Regulation of Insulin Secretion ALAD +PWCOMMONS Regulation of Insulin Secretion IDH3G +PWCOMMONS Regulation of Insulin Secretion IDH3A +PWCOMMONS Regulation of Insulin Secretion IDH3B +PWCOMMONS Regulation of Insulin Secretion UGDH +PWCOMMONS Regulation of Insulin Secretion RRM2 +PWCOMMONS Regulation of Insulin Secretion RRM1 +PWCOMMONS Regulation of Insulin Secretion G6PD +PWCOMMONS Regulation of Insulin Secretion AMPD1 +PWCOMMONS Regulation of Insulin Secretion SLC25A11 +PWCOMMONS Regulation of Insulin Secretion PPAT +PWCOMMONS Regulation of Insulin Secretion SDHC +PWCOMMONS Regulation of Insulin Secretion SDHD +PWCOMMONS Regulation of Insulin Secretion SDHB +PWCOMMONS Regulation of Insulin Secretion SDHA +PWCOMMONS Regulation of Insulin Secretion FECH +PWCOMMONS Regulation of Insulin Secretion TKT +PWCOMMONS Regulation of Insulin Secretion PDHX +PWCOMMONS Regulation of Insulin Secretion DLAT +PWCOMMONS Regulation of Insulin Secretion PDHA1 +PWCOMMONS Regulation of Insulin Secretion PDHB +PWCOMMONS Regulation of Insulin Secretion PPAP2C +PWCOMMONS Regulation of Insulin Secretion GBE1 +PWCOMMONS Regulation of Insulin Secretion TXNRD1 +PWCOMMONS Regulation of Insulin Secretion TPI1 +PWCOMMONS Regulation of Insulin Secretion SLC25A10 +PWCOMMONS Regulation of Insulin Secretion G6PC +PWCOMMONS Regulation of Insulin Secretion GSR +PWCOMMONS Regulation of Insulin Secretion NT5C2 +PWCOMMONS Regulation of Insulin Secretion MT-CO2 +PWCOMMONS Regulation of Insulin Secretion COX8A +PWCOMMONS Regulation of Insulin Secretion COX7C +PWCOMMONS Regulation of Insulin Secretion MT-CO3 +PWCOMMONS Regulation of Insulin Secretion COX6C +PWCOMMONS Regulation of Insulin Secretion COX5B +PWCOMMONS Regulation of Insulin Secretion MT-CO1 +PWCOMMONS Regulation of Insulin Secretion COX7A2L +PWCOMMONS Regulation of Insulin Secretion COX4I1 +PWCOMMONS Regulation of Insulin Secretion COX6A1 +PWCOMMONS Regulation of Insulin Secretion COX7B +PWCOMMONS Regulation of Insulin Secretion COX6B1 +PWCOMMONS Regulation of Insulin Secretion COX5A +PWCOMMONS Regulation of Insulin Secretion PGLS +PWCOMMONS Regulation of Insulin Secretion HADH +PWCOMMONS Regulation of Insulin Secretion PFKFB2 +PWCOMMONS Regulation of Insulin Secretion PFKFB4 +PWCOMMONS Regulation of Insulin Secretion PFKFB3 +PWCOMMONS Regulation of Insulin Secretion GOT1 +PWCOMMONS Regulation of Insulin Secretion SLC2A2 +PWCOMMONS Regulation of Insulin Secretion PGK1 +PWCOMMONS Regulation of Insulin Secretion GCDH +PWCOMMONS Regulation of Insulin Secretion NP +PWCOMMONS Regulation of Insulin Secretion DPYD +PWCOMMONS Regulation of Insulin Secretion ACLY +PWCOMMONS Regulation of Insulin Secretion MDH2 +PWCOMMONS Regulation of Insulin Secretion UMPS +PWCOMMONS Regulation of Insulin Secretion CYCS +PWCOMMONS Regulation of Insulin Secretion CTPS +PWCOMMONS Regulation of Insulin Secretion PRPS1 +PWCOMMONS Regulation of Insulin Secretion ACACB +PWCOMMONS Regulation of Insulin Secretion OTC +PWCOMMONS Regulation of Insulin Secretion FH +PWCOMMONS Regulation of Insulin Secretion PFAS +PWCOMMONS Regulation of Insulin Secretion GPI +PWCOMMONS Regulation of Insulin Secretion UROD +PWCOMMONS Regulation of Insulin Secretion CPOX +PWCOMMONS Regulation of Insulin Secretion XDH +PWCOMMONS Regulation of Insulin Secretion PAICS +PWCOMMONS Regulation of Insulin Secretion CPS1 +PWCOMMONS Regulation of Insulin Secretion CS +PWCOMMONS Regulation of Insulin Secretion CAT +PWCOMMONS Regulation of Insulin Secretion PPOX +PWCOMMONS Regulation of Insulin Secretion SLC25A1 +PWCOMMONS Regulation of Insulin Secretion ACO2 +PWCOMMONS Regulation of Insulin Secretion PGM1 +PWCOMMONS Regulation of Insulin Secretion PCK2 +PWCOMMONS Regulation of Insulin Secretion SUCLA2 +PWCOMMONS Regulation of Insulin Secretion PPAP2B +PWCOMMONS Regulation of Insulin Secretion PYCR1 +PWCOMMONS Regulation of Insulin Secretion DGAT1 +PWCOMMONS Regulation of Insulin Secretion NME2 +PWCOMMONS Regulation of Insulin Secretion RPIA +PWCOMMONS Regulation of Insulin Secretion AMPD2 +PWCOMMONS Regulation of Insulin Secretion PGD +PWCOMMONS Regulation of Insulin Secretion PPAP2A +PWCOMMONS Regulation of Insulin Secretion ADCY8 +PWCOMMONS Regulation of Insulin Secretion AKAP5 +PWCOMMONS Regulation of Insulin Secretion IQGAP1 +PWCOMMONS Regulation of Insulin Secretion MGLL +PWCOMMONS Regulation of Insulin Secretion GLP1R +PWCOMMONS Regulation of Insulin Secretion GNAS +PWCOMMONS Regulation of Insulin Secretion CREB1 +PWCOMMONS Regulation of Insulin Secretion LIPE +PWCOMMONS Regulation of Insulin Secretion FABP4 +PWCOMMONS Regulation of Insulin Secretion CAV1 +PWCOMMONS Regulation of Insulin Secretion HSP90AA1 +PWCOMMONS Regulation of Insulin Secretion CALM1 +PWCOMMONS Regulation of Insulin Secretion NOS3 +PWCOMMONS Regulation of Insulin Secretion PRKCA +PWCOMMONS Regulation of Insulin Secretion AKT1 +PWCOMMONS Regulation of Insulin Secretion CHRM3 +PWCOMMONS Regulation of Insulin Secretion MARCKS +PWCOMMONS Regulation of Insulin Secretion PLA2G4A +PWCOMMONS Regulation of Insulin Secretion ADRBK1 +PWCOMMONS Regulation of Insulin Secretion CAMK4 +PWCOMMONS Regulation of Insulin Secretion +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5F1 +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5J +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5G1 +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5L +PWCOMMONS Glucose Regulation of Insulin Secretion MT-ATP6 +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5J2 +PWCOMMONS Glucose Regulation of Insulin Secretion MT-ATP8 +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5H +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5I +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5C1 +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5D +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5A1 +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5B +PWCOMMONS Glucose Regulation of Insulin Secretion ATP5E +PWCOMMONS Glucose Regulation of Insulin Secretion MLX +PWCOMMONS Glucose Regulation of Insulin Secretion MLXIPL +PWCOMMONS Glucose Regulation of Insulin Secretion HPRT1 +PWCOMMONS Glucose Regulation of Insulin Secretion UQCRC1 +PWCOMMONS Glucose Regulation of Insulin Secretion UQCRB +PWCOMMONS Glucose Regulation of Insulin Secretion UQCR10 +PWCOMMONS Glucose Regulation of Insulin Secretion UQCR +PWCOMMONS Glucose Regulation of Insulin Secretion UQCRC2 +PWCOMMONS Glucose Regulation of Insulin Secretion UQCRH +PWCOMMONS Glucose Regulation of Insulin Secretion UQCRQ +PWCOMMONS Glucose Regulation of Insulin Secretion UQCRFS1 +PWCOMMONS Glucose Regulation of Insulin Secretion MT-CYB +PWCOMMONS Glucose Regulation of Insulin Secretion CYC1 +PWCOMMONS Glucose Regulation of Insulin Secretion GOT2 +PWCOMMONS Glucose Regulation of Insulin Secretion GYG2 +PWCOMMONS Glucose Regulation of Insulin Secretion UPP1 +PWCOMMONS Glucose Regulation of Insulin Secretion PC +PWCOMMONS Glucose Regulation of Insulin Secretion ADSL +PWCOMMONS Glucose Regulation of Insulin Secretion PCK1 +PWCOMMONS Glucose Regulation of Insulin Secretion MDH1 +PWCOMMONS Glucose Regulation of Insulin Secretion OAT +PWCOMMONS Glucose Regulation of Insulin Secretion GYS2 +PWCOMMONS Glucose Regulation of Insulin Secretion ECHS1 +PWCOMMONS Glucose Regulation of Insulin Secretion TXN +PWCOMMONS Glucose Regulation of Insulin Secretion SUCLG1 +PWCOMMONS Glucose Regulation of Insulin Secretion SUCLG2 +PWCOMMONS Glucose Regulation of Insulin Secretion ARG1 +PWCOMMONS Glucose Regulation of Insulin Secretion KCNJ11 +PWCOMMONS Glucose Regulation of Insulin Secretion AMPD3 +PWCOMMONS Glucose Regulation of Insulin Secretion RPE +PWCOMMONS Glucose Regulation of Insulin Secretion GPT +PWCOMMONS Glucose Regulation of Insulin Secretion DPYS +PWCOMMONS Glucose Regulation of Insulin Secretion AK1 +PWCOMMONS Glucose Regulation of Insulin Secretion PKM2 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFS3 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFS4 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFS6 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA5 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFS5 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFS1 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFS2 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFV2 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFV3 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFV1 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA4 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA11 +PWCOMMONS Glucose Regulation of Insulin Secretion MT-ND3 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA13 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFB5 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFC1 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA6 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFC2 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA3 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFB3 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFB1 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFAB1 +PWCOMMONS Glucose Regulation of Insulin Secretion MT-ND4 +PWCOMMONS Glucose Regulation of Insulin Secretion MT-ND5 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA1 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFB9 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFB6 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFB4 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA8 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFB7 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA12 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFB2 +PWCOMMONS Glucose Regulation of Insulin Secretion MT-ND4L +PWCOMMONS Glucose Regulation of Insulin Secretion MT-ND2 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFB10 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA7 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA2 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFB8 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFB11 +PWCOMMONS Glucose Regulation of Insulin Secretion MT-ND6 +PWCOMMONS Glucose Regulation of Insulin Secretion MT-ND1 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFS7 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA10 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFS8 +PWCOMMONS Glucose Regulation of Insulin Secretion NDUFA9 +PWCOMMONS Glucose Regulation of Insulin Secretion VAMP2 +PWCOMMONS Glucose Regulation of Insulin Secretion NT5C1A +PWCOMMONS Glucose Regulation of Insulin Secretion FASN +PWCOMMONS Glucose Regulation of Insulin Secretion DLST +PWCOMMONS Glucose Regulation of Insulin Secretion OGDH +PWCOMMONS Glucose Regulation of Insulin Secretion DLD +PWCOMMONS Glucose Regulation of Insulin Secretion GMPS +PWCOMMONS Glucose Regulation of Insulin Secretion GUK1 +PWCOMMONS Glucose Regulation of Insulin Secretion IMPDH2 +PWCOMMONS Glucose Regulation of Insulin Secretion GDA +PWCOMMONS Glucose Regulation of Insulin Secretion NME1 +PWCOMMONS Glucose Regulation of Insulin Secretion IMPDH1 +PWCOMMONS Glucose Regulation of Insulin Secretion ADSS +PWCOMMONS Glucose Regulation of Insulin Secretion ATIC +PWCOMMONS Glucose Regulation of Insulin Secretion PFKFB1 +PWCOMMONS Glucose Regulation of Insulin Secretion INS +PWCOMMONS Glucose Regulation of Insulin Secretion SYT5 +PWCOMMONS Glucose Regulation of Insulin Secretion GART +PWCOMMONS Glucose Regulation of Insulin Secretion SLC35D1 +PWCOMMONS Glucose Regulation of Insulin Secretion ASL +PWCOMMONS Glucose Regulation of Insulin Secretion UPB1 +PWCOMMONS Glucose Regulation of Insulin Secretion GLRX +PWCOMMONS Glucose Regulation of Insulin Secretion SLC25A21 +PWCOMMONS Glucose Regulation of Insulin Secretion AGPAT1 +PWCOMMONS Glucose Regulation of Insulin Secretion UROS +PWCOMMONS Glucose Regulation of Insulin Secretion ETFA +PWCOMMONS Glucose Regulation of Insulin Secretion ETFB +PWCOMMONS Glucose Regulation of Insulin Secretion TALDO1 +PWCOMMONS Glucose Regulation of Insulin Secretion ASS1 +PWCOMMONS Glucose Regulation of Insulin Secretion CMPK1 +PWCOMMONS Glucose Regulation of Insulin Secretion ALAD +PWCOMMONS Glucose Regulation of Insulin Secretion IDH3G +PWCOMMONS Glucose Regulation of Insulin Secretion IDH3A +PWCOMMONS Glucose Regulation of Insulin Secretion IDH3B +PWCOMMONS Glucose Regulation of Insulin Secretion UGDH +PWCOMMONS Glucose Regulation of Insulin Secretion RRM2 +PWCOMMONS Glucose Regulation of Insulin Secretion RRM1 +PWCOMMONS Glucose Regulation of Insulin Secretion G6PD +PWCOMMONS Glucose Regulation of Insulin Secretion AMPD1 +PWCOMMONS Glucose Regulation of Insulin Secretion SLC25A11 +PWCOMMONS Glucose Regulation of Insulin Secretion PPAT +PWCOMMONS Glucose Regulation of Insulin Secretion SDHC +PWCOMMONS Glucose Regulation of Insulin Secretion SDHD +PWCOMMONS Glucose Regulation of Insulin Secretion SDHB +PWCOMMONS Glucose Regulation of Insulin Secretion SDHA +PWCOMMONS Glucose Regulation of Insulin Secretion FECH +PWCOMMONS Glucose Regulation of Insulin Secretion TKT +PWCOMMONS Glucose Regulation of Insulin Secretion PDHX +PWCOMMONS Glucose Regulation of Insulin Secretion DLAT +PWCOMMONS Glucose Regulation of Insulin Secretion PDHA1 +PWCOMMONS Glucose Regulation of Insulin Secretion PDHB +PWCOMMONS Glucose Regulation of Insulin Secretion PPAP2C +PWCOMMONS Glucose Regulation of Insulin Secretion GBE1 +PWCOMMONS Glucose Regulation of Insulin Secretion TXNRD1 +PWCOMMONS Glucose Regulation of Insulin Secretion TPI1 +PWCOMMONS Glucose Regulation of Insulin Secretion SLC25A10 +PWCOMMONS Glucose Regulation of Insulin Secretion G6PC +PWCOMMONS Glucose Regulation of Insulin Secretion GSR +PWCOMMONS Glucose Regulation of Insulin Secretion NT5C2 +PWCOMMONS Glucose Regulation of Insulin Secretion MT-CO2 +PWCOMMONS Glucose Regulation of Insulin Secretion COX8A +PWCOMMONS Glucose Regulation of Insulin Secretion COX7C +PWCOMMONS Glucose Regulation of Insulin Secretion MT-CO3 +PWCOMMONS Glucose Regulation of Insulin Secretion COX6C +PWCOMMONS Glucose Regulation of Insulin Secretion COX5B +PWCOMMONS Glucose Regulation of Insulin Secretion MT-CO1 +PWCOMMONS Glucose Regulation of Insulin Secretion COX7A2L +PWCOMMONS Glucose Regulation of Insulin Secretion COX4I1 +PWCOMMONS Glucose Regulation of Insulin Secretion COX6A1 +PWCOMMONS Glucose Regulation of Insulin Secretion COX7B +PWCOMMONS Glucose Regulation of Insulin Secretion COX6B1 +PWCOMMONS Glucose Regulation of Insulin Secretion COX5A +PWCOMMONS Glucose Regulation of Insulin Secretion PGLS +PWCOMMONS Glucose Regulation of Insulin Secretion HADH +PWCOMMONS Glucose Regulation of Insulin Secretion PFKFB2 +PWCOMMONS Glucose Regulation of Insulin Secretion PFKFB4 +PWCOMMONS Glucose Regulation of Insulin Secretion PFKFB3 +PWCOMMONS Glucose Regulation of Insulin Secretion GOT1 +PWCOMMONS Glucose Regulation of Insulin Secretion SLC2A2 +PWCOMMONS Glucose Regulation of Insulin Secretion PGK1 +PWCOMMONS Glucose Regulation of Insulin Secretion GCDH +PWCOMMONS Glucose Regulation of Insulin Secretion NP +PWCOMMONS Glucose Regulation of Insulin Secretion DPYD +PWCOMMONS Glucose Regulation of Insulin Secretion ACLY +PWCOMMONS Glucose Regulation of Insulin Secretion MDH2 +PWCOMMONS Glucose Regulation of Insulin Secretion UMPS +PWCOMMONS Glucose Regulation of Insulin Secretion CYCS +PWCOMMONS Glucose Regulation of Insulin Secretion CTPS +PWCOMMONS Glucose Regulation of Insulin Secretion PRPS1 +PWCOMMONS Glucose Regulation of Insulin Secretion ACACB +PWCOMMONS Glucose Regulation of Insulin Secretion OTC +PWCOMMONS Glucose Regulation of Insulin Secretion FH +PWCOMMONS Glucose Regulation of Insulin Secretion PFAS +PWCOMMONS Glucose Regulation of Insulin Secretion GPI +PWCOMMONS Glucose Regulation of Insulin Secretion UROD +PWCOMMONS Glucose Regulation of Insulin Secretion CPOX +PWCOMMONS Glucose Regulation of Insulin Secretion XDH +PWCOMMONS Glucose Regulation of Insulin Secretion PAICS +PWCOMMONS Glucose Regulation of Insulin Secretion CPS1 +PWCOMMONS Glucose Regulation of Insulin Secretion CS +PWCOMMONS Glucose Regulation of Insulin Secretion CAT +PWCOMMONS Glucose Regulation of Insulin Secretion PPOX +PWCOMMONS Glucose Regulation of Insulin Secretion SLC25A1 +PWCOMMONS Glucose Regulation of Insulin Secretion ACO2 +PWCOMMONS Glucose Regulation of Insulin Secretion PGM1 +PWCOMMONS Glucose Regulation of Insulin Secretion PCK2 +PWCOMMONS Glucose Regulation of Insulin Secretion SUCLA2 +PWCOMMONS Glucose Regulation of Insulin Secretion PPAP2B +PWCOMMONS Glucose Regulation of Insulin Secretion PYCR1 +PWCOMMONS Glucose Regulation of Insulin Secretion DGAT1 +PWCOMMONS Glucose Regulation of Insulin Secretion NME2 +PWCOMMONS Glucose Regulation of Insulin Secretion RPIA +PWCOMMONS Glucose Regulation of Insulin Secretion AMPD2 +PWCOMMONS Glucose Regulation of Insulin Secretion PGD +PWCOMMONS Glucose Regulation of Insulin Secretion PPAP2A +PWCOMMONS Glucose Regulation of Insulin Secretion +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase PDHX +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase DLAT +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase DLD +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase PDHA1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase PDHB +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase SDHC +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase SDHD +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase SDHB +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase SDHA +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase UROD +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5O +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5F1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5J +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5G1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5L +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-ATP6 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5J2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-ATP8 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5H +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5I +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5C1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5D +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5A1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5B +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ATP5E +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase SUCLG1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase SUCLA2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase UQCRC1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase UQCRB +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase UQCR10 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase UQCR +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase UQCRC2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase UQCRH +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase UQCRQ +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase UQCRFS1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-CYB +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase CYC1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase CYCS +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase CPOX +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase UROS +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase DLST +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase OGDH +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-CO2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase COX8A +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase COX7C +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-CO3 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase COX6C +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase COX5B +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-CO1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase COX7A2L +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase COX4I1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase COX6A1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase COX7B +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase COX6B1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase COX5A +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MDH2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFS3 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFS4 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFS6 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA5 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFS5 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFS1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFS2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFV2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFV3 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFV1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA4 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA11 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-ND3 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA13 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFB5 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFC1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA6 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFC2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA3 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFB3 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFB1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFAB1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-ND4 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-ND5 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFB9 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFB6 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFB4 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA8 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFB7 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA12 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFB2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-ND4L +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-ND2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFB10 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA7 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFB8 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFB11 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-ND6 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase MT-ND1 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFS7 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA10 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFS8 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase NDUFA9 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase VAMP2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ALAD +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase CS +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase PPOX +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase ACO2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase IDH3G +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase IDH3A +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase IDH3B +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase FH +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase INS +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase SYT5 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase SUCLG2 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase KCNJ11 +PWCOMMONS Oxidative decarboxylation of pyruvate to acetyl CoA by pyruvate dehydrogenase +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5F1 +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5J +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5G1 +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5L +PWCOMMONS Formation of ATP by chemiosmotic coupling MT-ATP6 +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5J2 +PWCOMMONS Formation of ATP by chemiosmotic coupling MT-ATP8 +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5H +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5I +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5C1 +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5D +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5A1 +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5B +PWCOMMONS Formation of ATP by chemiosmotic coupling ATP5E +PWCOMMONS Formation of ATP by chemiosmotic coupling VAMP2 +PWCOMMONS Formation of ATP by chemiosmotic coupling INS +PWCOMMONS Formation of ATP by chemiosmotic coupling SYT5 +PWCOMMONS Formation of ATP by chemiosmotic coupling KCNJ11 +PWCOMMONS Formation of ATP by chemiosmotic coupling +PWCOMMONS Electron Transport Chain SDHC +PWCOMMONS Electron Transport Chain SDHD +PWCOMMONS Electron Transport Chain SDHB +PWCOMMONS Electron Transport Chain SDHA +PWCOMMONS Electron Transport Chain ATP5O +PWCOMMONS Electron Transport Chain ATP5F1 +PWCOMMONS Electron Transport Chain ATP5J +PWCOMMONS Electron Transport Chain ATP5G1 +PWCOMMONS Electron Transport Chain ATP5L +PWCOMMONS Electron Transport Chain MT-ATP6 +PWCOMMONS Electron Transport Chain ATP5J2 +PWCOMMONS Electron Transport Chain MT-ATP8 +PWCOMMONS Electron Transport Chain ATP5H +PWCOMMONS Electron Transport Chain ATP5I +PWCOMMONS Electron Transport Chain ATP5C1 +PWCOMMONS Electron Transport Chain ATP5D +PWCOMMONS Electron Transport Chain ATP5A1 +PWCOMMONS Electron Transport Chain ATP5B +PWCOMMONS Electron Transport Chain ATP5E +PWCOMMONS Electron Transport Chain UROD +PWCOMMONS Electron Transport Chain UQCRC1 +PWCOMMONS Electron Transport Chain UQCRB +PWCOMMONS Electron Transport Chain UQCR10 +PWCOMMONS Electron Transport Chain UQCR +PWCOMMONS Electron Transport Chain UQCRC2 +PWCOMMONS Electron Transport Chain UQCRH +PWCOMMONS Electron Transport Chain UQCRQ +PWCOMMONS Electron Transport Chain UQCRFS1 +PWCOMMONS Electron Transport Chain MT-CYB +PWCOMMONS Electron Transport Chain CYC1 +PWCOMMONS Electron Transport Chain SUCLG1 +PWCOMMONS Electron Transport Chain SUCLA2 +PWCOMMONS Electron Transport Chain CYCS +PWCOMMONS Electron Transport Chain CPOX +PWCOMMONS Electron Transport Chain UROS +PWCOMMONS Electron Transport Chain DLST +PWCOMMONS Electron Transport Chain OGDH +PWCOMMONS Electron Transport Chain DLD +PWCOMMONS Electron Transport Chain MT-CO2 +PWCOMMONS Electron Transport Chain COX8A +PWCOMMONS Electron Transport Chain COX7C +PWCOMMONS Electron Transport Chain MT-CO3 +PWCOMMONS Electron Transport Chain COX6C +PWCOMMONS Electron Transport Chain COX5B +PWCOMMONS Electron Transport Chain MT-CO1 +PWCOMMONS Electron Transport Chain COX7A2L +PWCOMMONS Electron Transport Chain COX4I1 +PWCOMMONS Electron Transport Chain COX6A1 +PWCOMMONS Electron Transport Chain COX7B +PWCOMMONS Electron Transport Chain COX6B1 +PWCOMMONS Electron Transport Chain COX5A +PWCOMMONS Electron Transport Chain ETFA +PWCOMMONS Electron Transport Chain ETFB +PWCOMMONS Electron Transport Chain MDH2 +PWCOMMONS Electron Transport Chain NDUFS3 +PWCOMMONS Electron Transport Chain NDUFS4 +PWCOMMONS Electron Transport Chain NDUFS6 +PWCOMMONS Electron Transport Chain NDUFA5 +PWCOMMONS Electron Transport Chain NDUFS5 +PWCOMMONS Electron Transport Chain NDUFS1 +PWCOMMONS Electron Transport Chain NDUFS2 +PWCOMMONS Electron Transport Chain NDUFV2 +PWCOMMONS Electron Transport Chain NDUFV3 +PWCOMMONS Electron Transport Chain NDUFV1 +PWCOMMONS Electron Transport Chain NDUFA4 +PWCOMMONS Electron Transport Chain NDUFA11 +PWCOMMONS Electron Transport Chain MT-ND3 +PWCOMMONS Electron Transport Chain NDUFA13 +PWCOMMONS Electron Transport Chain NDUFB5 +PWCOMMONS Electron Transport Chain NDUFC1 +PWCOMMONS Electron Transport Chain NDUFA6 +PWCOMMONS Electron Transport Chain NDUFC2 +PWCOMMONS Electron Transport Chain NDUFA3 +PWCOMMONS Electron Transport Chain NDUFB3 +PWCOMMONS Electron Transport Chain NDUFB1 +PWCOMMONS Electron Transport Chain NDUFAB1 +PWCOMMONS Electron Transport Chain MT-ND4 +PWCOMMONS Electron Transport Chain MT-ND5 +PWCOMMONS Electron Transport Chain NDUFA1 +PWCOMMONS Electron Transport Chain NDUFB9 +PWCOMMONS Electron Transport Chain NDUFB6 +PWCOMMONS Electron Transport Chain NDUFB4 +PWCOMMONS Electron Transport Chain NDUFA8 +PWCOMMONS Electron Transport Chain NDUFB7 +PWCOMMONS Electron Transport Chain NDUFA12 +PWCOMMONS Electron Transport Chain NDUFB2 +PWCOMMONS Electron Transport Chain MT-ND4L +PWCOMMONS Electron Transport Chain MT-ND2 +PWCOMMONS Electron Transport Chain NDUFB10 +PWCOMMONS Electron Transport Chain NDUFA7 +PWCOMMONS Electron Transport Chain NDUFA2 +PWCOMMONS Electron Transport Chain NDUFB8 +PWCOMMONS Electron Transport Chain NDUFB11 +PWCOMMONS Electron Transport Chain MT-ND6 +PWCOMMONS Electron Transport Chain MT-ND1 +PWCOMMONS Electron Transport Chain NDUFS7 +PWCOMMONS Electron Transport Chain NDUFA10 +PWCOMMONS Electron Transport Chain NDUFS8 +PWCOMMONS Electron Transport Chain NDUFA9 +PWCOMMONS Electron Transport Chain VAMP2 +PWCOMMONS Electron Transport Chain ALAD +PWCOMMONS Electron Transport Chain CS +PWCOMMONS Electron Transport Chain PPOX +PWCOMMONS Electron Transport Chain ACO2 +PWCOMMONS Electron Transport Chain IDH3G +PWCOMMONS Electron Transport Chain IDH3A +PWCOMMONS Electron Transport Chain IDH3B +PWCOMMONS Electron Transport Chain FH +PWCOMMONS Electron Transport Chain INS +PWCOMMONS Electron Transport Chain SYT5 +PWCOMMONS Electron Transport Chain SUCLG2 +PWCOMMONS Electron Transport Chain KCNJ11 +PWCOMMONS Electron Transport Chain +PWCOMMONS Inhibition of Insulin Secretion by Adrenaline/Noradrenaline INS +PWCOMMONS Inhibition of Insulin Secretion by Adrenaline/Noradrenaline ADCY8 +PWCOMMONS Inhibition of Insulin Secretion by Adrenaline/Noradrenaline +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine HSP90AA1 +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine CALM1 +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine NOS3 +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine PRKCA +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine AKT1 +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine VAMP2 +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine INS +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine SYT5 +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine CHRM3 +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine MARCKS +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine PLA2G4A +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine MGLL +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine LIPE +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine PFKFB1 +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine FABP4 +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine MLXIPL +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine CREB1 +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine ADRBK1 +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine CAMK4 +PWCOMMONS Regulation of Insulin Secretion by Acetylcholine +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 IQGAP1 +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 MGLL +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 PFKFB1 +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 GLP1R +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 GNAS +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 MLXIPL +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 ADCY8 +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 CREB1 +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 LIPE +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 VAMP2 +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 FABP4 +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 INS +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 SYT5 +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 KCNJ11 +PWCOMMONS Regulation of Insulin Secretion by Glucagon-like Peptide-1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins CCNB1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins CDC20 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC5 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC11 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins CDC23 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC2 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins UBE2D1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins CDC27 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC4 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC10 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC7 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins UBE2C +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins CDC26 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins CDC16 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins UBE2E1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins FZR1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMC6 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMA3 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD8 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD10 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD6 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMB5 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMB4 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD4 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMA2 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMB8 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD5 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMB6 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSME3 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMB3 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMB7 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSME1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD11 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMA5 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMC5 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMC1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD7 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD3 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMB2 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD13 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD14 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMB1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMA6 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMB9 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMB10 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD9 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMC4 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMA1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMA4 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMA7 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMF1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSME2 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD12 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMC3 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMC2 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PSMD2 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins PTTG1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins BUB3 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins BUB1B +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins MAD2L1 +PWCOMMONS APC/C:Cdc20 mediated degradation of mitotic proteins +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B ANAPC5 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B ANAPC11 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B CDC23 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B ANAPC1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B UBE2D1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B ANAPC2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B CDC27 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B ANAPC4 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B ANAPC10 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B UBE2C +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B ANAPC7 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B CDC26 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B CDC16 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B UBE2E1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B CDC2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B CCNB1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B CDC20 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMC6 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMA3 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD8 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD10 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD6 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMB5 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMB4 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD4 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMA2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMB8 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD5 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMB6 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSME3 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMB3 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMB7 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSME1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD11 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMA5 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMC5 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMC1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD7 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD3 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMB2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD13 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD14 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMB1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMA6 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMB9 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMB10 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD9 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMC4 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMA1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMA4 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMA7 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMF1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSME2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD12 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMC3 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMC2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B PSMD2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Cyclin B +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin ANAPC5 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin ANAPC11 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin CDC23 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin ANAPC1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin UBE2D1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin ANAPC2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin CDC27 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin ANAPC4 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin ANAPC10 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin UBE2C +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin ANAPC7 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin CDC26 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin CDC16 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin UBE2E1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin CDC20 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMC6 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMA3 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD8 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD10 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD6 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMB5 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMB4 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD4 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMA2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMB8 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD5 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMB6 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSME3 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMB3 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMB7 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSME1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD11 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMA5 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMC5 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMC1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD7 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD3 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMB2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD13 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD14 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMB1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMA6 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMB9 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMB10 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD9 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMC4 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMA1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMA4 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMA7 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMF1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSME2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD12 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMC3 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMC2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PSMD2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin PTTG1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin CDC2 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin CCNB1 +PWCOMMONS APC/C:Cdc20 mediated degradation of Securin +PWCOMMONS ARMS-mediated activation NGF +PWCOMMONS ARMS-mediated activation MAP2K2 +PWCOMMONS ARMS-mediated activation RAF1 +PWCOMMONS ARMS-mediated activation YWHAB +PWCOMMONS ARMS-mediated activation MAP2K1 +PWCOMMONS ARMS-mediated activation MAPK1 +PWCOMMONS ARMS-mediated activation MAPK3 +PWCOMMONS ARMS-mediated activation RPS6KA5 +PWCOMMONS ARMS-mediated activation ATF1 +PWCOMMONS ARMS-mediated activation CREB1 +PWCOMMONS ARMS-mediated activation FRS2 +PWCOMMONS ARMS-mediated activation BRAF +PWCOMMONS ARMS-mediated activation RAP1A +PWCOMMONS ARMS-mediated activation +PWCOMMONS MAP kinase cascade RAF1 +PWCOMMONS MAP kinase cascade YWHAB +PWCOMMONS MAP kinase cascade MAP2K1 +PWCOMMONS MAP kinase cascade MAPK1 +PWCOMMONS MAP kinase cascade MAPK3 +PWCOMMONS MAP kinase cascade RPS6KA5 +PWCOMMONS MAP kinase cascade ATF1 +PWCOMMONS MAP kinase cascade CREB1 +PWCOMMONS MAP kinase cascade +PWCOMMONS ERK activation MAPK3 +PWCOMMONS ERK activation MAP2K1 +PWCOMMONS ERK activation ATF1 +PWCOMMONS ERK activation CREB1 +PWCOMMONS ERK activation MAPK1 +PWCOMMONS ERK activation MAP2K2 +PWCOMMONS ERK activation +PWCOMMONS ERK1 activation MAPK3 +PWCOMMONS ERK1 activation MAP2K1 +PWCOMMONS ERK1 activation ATF1 +PWCOMMONS ERK1 activation CREB1 +PWCOMMONS ERK1 activation +PWCOMMONS MEK activation RAF1 +PWCOMMONS MEK activation YWHAB +PWCOMMONS MEK activation MAP2K1 +PWCOMMONS MEK activation MAPK1 +PWCOMMONS MEK activation MAPK3 +PWCOMMONS MEK activation +PWCOMMONS Interactions of Tat with host cellular proteins CCNT1 +PWCOMMONS Interactions of Tat with host cellular proteins +PWCOMMONS Phosphorylation of the APC/C FBXO5 +PWCOMMONS Phosphorylation of the APC/C ANAPC5 +PWCOMMONS Phosphorylation of the APC/C ANAPC11 +PWCOMMONS Phosphorylation of the APC/C CDC23 +PWCOMMONS Phosphorylation of the APC/C ANAPC1 +PWCOMMONS Phosphorylation of the APC/C UBE2D1 +PWCOMMONS Phosphorylation of the APC/C ANAPC2 +PWCOMMONS Phosphorylation of the APC/C CDC27 +PWCOMMONS Phosphorylation of the APC/C ANAPC4 +PWCOMMONS Phosphorylation of the APC/C ANAPC10 +PWCOMMONS Phosphorylation of the APC/C UBE2C +PWCOMMONS Phosphorylation of the APC/C ANAPC7 +PWCOMMONS Phosphorylation of the APC/C CDC26 +PWCOMMONS Phosphorylation of the APC/C CDC16 +PWCOMMONS Phosphorylation of the APC/C UBE2E1 +PWCOMMONS Phosphorylation of the APC/C FZR1 +PWCOMMONS Phosphorylation of the APC/C CDC2 +PWCOMMONS Phosphorylation of the APC/C CCNB1 +PWCOMMONS Phosphorylation of the APC/C +PWCOMMONS Homologous Recombination Repair RPA3 +PWCOMMONS Homologous Recombination Repair RPA2 +PWCOMMONS Homologous Recombination Repair RAD50 +PWCOMMONS Homologous Recombination Repair MRE11A +PWCOMMONS Homologous Recombination Repair H2AFX +PWCOMMONS Homologous Recombination Repair BRCA1 +PWCOMMONS Homologous Recombination Repair TP53BP1 +PWCOMMONS Homologous Recombination Repair MDC1 +PWCOMMONS Homologous Recombination Repair NBN +PWCOMMONS Homologous Recombination Repair ATM +PWCOMMONS Homologous Recombination Repair LIG1 +PWCOMMONS Homologous Recombination Repair PCNA +PWCOMMONS Homologous Recombination Repair POLD4 +PWCOMMONS Homologous Recombination Repair POLD3 +PWCOMMONS Homologous Recombination Repair POLD2 +PWCOMMONS Homologous Recombination Repair POLD1 +PWCOMMONS Homologous Recombination Repair RAD51 +PWCOMMONS Homologous Recombination Repair RAD52 +PWCOMMONS Homologous Recombination Repair BRCA2 +PWCOMMONS Homologous Recombination Repair PMAIP1 +PWCOMMONS Homologous Recombination Repair BCL2 +PWCOMMONS Homologous Recombination Repair BCL2L1 +PWCOMMONS Homologous Recombination Repair TP53 +PWCOMMONS Homologous Recombination Repair MDM2 +PWCOMMONS Homologous Recombination Repair BBC3 +PWCOMMONS Homologous Recombination Repair +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks RPA3 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks RPA2 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks RAD50 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks MRE11A +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks H2AFX +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks BRCA1 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks TP53BP1 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks MDC1 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks NBN +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks ATM +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks LIG1 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks PCNA +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks POLD4 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks POLD3 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks POLD2 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks POLD1 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks RAD51 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks RAD52 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks BRCA2 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks PMAIP1 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks BCL2 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks BCL2L1 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks TP53 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks MDM2 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks BBC3 +PWCOMMONS Homologous recombination repair of replication-independent double-strand breaks +PWCOMMONS Recruitment of repair and signaling proteins to double-strand breaks MRE11A +PWCOMMONS Recruitment of repair and signaling proteins to double-strand breaks H2AFX +PWCOMMONS Recruitment of repair and signaling proteins to double-strand breaks BRCA1 +PWCOMMONS Recruitment of repair and signaling proteins to double-strand breaks TP53BP1 +PWCOMMONS Recruitment of repair and signaling proteins to double-strand breaks MDC1 +PWCOMMONS Recruitment of repair and signaling proteins to double-strand breaks NBN +PWCOMMONS Recruitment of repair and signaling proteins to double-strand breaks ATM +PWCOMMONS Recruitment of repair and signaling proteins to double-strand breaks +PWCOMMONS ATM mediated response to DNA double-strand break TP53BP1 +PWCOMMONS ATM mediated response to DNA double-strand break MDC1 +PWCOMMONS ATM mediated response to DNA double-strand break H2AFX +PWCOMMONS ATM mediated response to DNA double-strand break PMAIP1 +PWCOMMONS ATM mediated response to DNA double-strand break BCL2 +PWCOMMONS ATM mediated response to DNA double-strand break LIG1 +PWCOMMONS ATM mediated response to DNA double-strand break PCNA +PWCOMMONS ATM mediated response to DNA double-strand break POLD4 +PWCOMMONS ATM mediated response to DNA double-strand break POLD3 +PWCOMMONS ATM mediated response to DNA double-strand break POLD2 +PWCOMMONS ATM mediated response to DNA double-strand break POLD1 +PWCOMMONS ATM mediated response to DNA double-strand break BCL2L1 +PWCOMMONS ATM mediated response to DNA double-strand break ATM +PWCOMMONS ATM mediated response to DNA double-strand break TP53 +PWCOMMONS ATM mediated response to DNA double-strand break RAD51 +PWCOMMONS ATM mediated response to DNA double-strand break RAD52 +PWCOMMONS ATM mediated response to DNA double-strand break BRCA2 +PWCOMMONS ATM mediated response to DNA double-strand break NBN +PWCOMMONS ATM mediated response to DNA double-strand break RAD50 +PWCOMMONS ATM mediated response to DNA double-strand break MRE11A +PWCOMMONS ATM mediated response to DNA double-strand break RPA1 +PWCOMMONS ATM mediated response to DNA double-strand break RPA3 +PWCOMMONS ATM mediated response to DNA double-strand break RPA2 +PWCOMMONS ATM mediated response to DNA double-strand break MDM2 +PWCOMMONS ATM mediated response to DNA double-strand break BBC3 +PWCOMMONS ATM mediated response to DNA double-strand break +PWCOMMONS ATM mediated phosphorylation of repair proteins MRE11A +PWCOMMONS ATM mediated phosphorylation of repair proteins BRCA1 +PWCOMMONS ATM mediated phosphorylation of repair proteins TP53BP1 +PWCOMMONS ATM mediated phosphorylation of repair proteins MDC1 +PWCOMMONS ATM mediated phosphorylation of repair proteins H2AFX +PWCOMMONS ATM mediated phosphorylation of repair proteins ATM +PWCOMMONS ATM mediated phosphorylation of repair proteins NBN +PWCOMMONS ATM mediated phosphorylation of repair proteins TP53 +PWCOMMONS ATM mediated phosphorylation of repair proteins +PWCOMMONS Intrinsic Pathway F5 +PWCOMMONS Intrinsic Pathway KNG1 +PWCOMMONS Intrinsic Pathway PLG +PWCOMMONS Intrinsic Pathway FGB +PWCOMMONS Intrinsic Pathway FGG +PWCOMMONS Intrinsic Pathway FGA +PWCOMMONS Intrinsic Pathway PLAT +PWCOMMONS Intrinsic Pathway C1QBP +PWCOMMONS Intrinsic Pathway PROC +PWCOMMONS Intrinsic Pathway F12 +PWCOMMONS Intrinsic Pathway F11 +PWCOMMONS Intrinsic Pathway GP5 +PWCOMMONS Intrinsic Pathway GP9 +PWCOMMONS Intrinsic Pathway GP1BA +PWCOMMONS Intrinsic Pathway GP1BB +PWCOMMONS Intrinsic Pathway F8 +PWCOMMONS Intrinsic Pathway F9 +PWCOMMONS Intrinsic Pathway F13B +PWCOMMONS Intrinsic Pathway F13A1 +PWCOMMONS Intrinsic Pathway SERPINC1 +PWCOMMONS Intrinsic Pathway F2 +PWCOMMONS Intrinsic Pathway VWF +PWCOMMONS Intrinsic Pathway KLKB1 +PWCOMMONS Intrinsic Pathway SERPINE1 +PWCOMMONS Intrinsic Pathway F2RL3 +PWCOMMONS Intrinsic Pathway PROS1 +PWCOMMONS Intrinsic Pathway SERPING1 +PWCOMMONS Intrinsic Pathway THBD +PWCOMMONS Intrinsic Pathway SERPINF2 +PWCOMMONS Intrinsic Pathway A2M +PWCOMMONS Intrinsic Pathway PRCP +PWCOMMONS Intrinsic Pathway +PWCOMMONS Common Pathway F5 +PWCOMMONS Common Pathway PLG +PWCOMMONS Common Pathway FGB +PWCOMMONS Common Pathway FGG +PWCOMMONS Common Pathway FGA +PWCOMMONS Common Pathway PLAT +PWCOMMONS Common Pathway PROC +PWCOMMONS Common Pathway F8 +PWCOMMONS Common Pathway F9 +PWCOMMONS Common Pathway F13B +PWCOMMONS Common Pathway F13A1 +PWCOMMONS Common Pathway SERPINC1 +PWCOMMONS Common Pathway F2 +PWCOMMONS Common Pathway F11 +PWCOMMONS Common Pathway GP5 +PWCOMMONS Common Pathway GP9 +PWCOMMONS Common Pathway GP1BA +PWCOMMONS Common Pathway GP1BB +PWCOMMONS Common Pathway SERPINE1 +PWCOMMONS Common Pathway F2RL3 +PWCOMMONS Common Pathway PROS1 +PWCOMMONS Common Pathway THBD +PWCOMMONS Common Pathway VWF +PWCOMMONS Common Pathway SERPINF2 +PWCOMMONS Common Pathway +PWCOMMONS SHC-mediated signalling RAF1 +PWCOMMONS SHC-mediated signalling YWHAB +PWCOMMONS SHC-mediated signalling MAP2K1 +PWCOMMONS SHC-mediated signalling RPS6KA5 +PWCOMMONS SHC-mediated signalling MAPK3 +PWCOMMONS SHC-mediated signalling ATF1 +PWCOMMONS SHC-mediated signalling CREB1 +PWCOMMONS SHC-mediated signalling MAPK1 +PWCOMMONS SHC-mediated signalling SHC1 +PWCOMMONS SHC-mediated signalling SOS1 +PWCOMMONS SHC-mediated signalling +PWCOMMONS RAF activation RAF1 +PWCOMMONS RAF activation YWHAB +PWCOMMONS RAF activation MAP2K1 +PWCOMMONS RAF activation MAPK1 +PWCOMMONS RAF activation MAPK3 +PWCOMMONS RAF activation +PWCOMMONS Acetylation NAT2 +PWCOMMONS Acetylation +PWCOMMONS Signalling to RAS RAF1 +PWCOMMONS Signalling to RAS YWHAB +PWCOMMONS Signalling to RAS RPS6KA5 +PWCOMMONS Signalling to RAS MAPK3 +PWCOMMONS Signalling to RAS ATF1 +PWCOMMONS Signalling to RAS CREB1 +PWCOMMONS Signalling to RAS MAPK1 +PWCOMMONS Signalling to RAS SHC1 +PWCOMMONS Signalling to RAS SOS1 +PWCOMMONS Signalling to RAS NGF +PWCOMMONS Signalling to RAS MAP2K1 +PWCOMMONS Signalling to RAS RALGDS +PWCOMMONS Signalling to RAS +PWCOMMONS Signaling by FGFR CBL +PWCOMMONS Signaling by FGFR FGF23 +PWCOMMONS Signaling by FGFR FGFR4 +PWCOMMONS Signaling by FGFR +PWCOMMONS FGFR ligand binding and activation CBL +PWCOMMONS FGFR ligand binding and activation FGF23 +PWCOMMONS FGFR ligand binding and activation FGFR4 +PWCOMMONS FGFR ligand binding and activation +PWCOMMONS FGFR2 ligand binding and activation CBL +PWCOMMONS FGFR2 ligand binding and activation +PWCOMMONS FGFR2b ligand binding and activation CBL +PWCOMMONS FGFR2b ligand binding and activation +PWCOMMONS FGFR3 ligand binding and activation CBL +PWCOMMONS FGFR3 ligand binding and activation +PWCOMMONS FGFR3c ligand binding and activation SDC2 +PWCOMMONS FGFR3c ligand binding and activation +PWCOMMONS FGFR3b ligand binding and activation CBL +PWCOMMONS FGFR3b ligand binding and activation +PWCOMMONS FGFR4 ligand binding and activation FGFR4 +PWCOMMONS FGFR4 ligand binding and activation SDC2 +PWCOMMONS FGFR4 ligand binding and activation +PWCOMMONS FGFR1 ligand binding and activation CBL +PWCOMMONS FGFR1 ligand binding and activation FGF23 +PWCOMMONS FGFR1 ligand binding and activation +PWCOMMONS FGFR1b ligand binding and activation CBL +PWCOMMONS FGFR1b ligand binding and activation +PWCOMMONS FGFR1c and Klotho ligand binding and activation SDC2 +PWCOMMONS FGFR1c and Klotho ligand binding and activation CBL +PWCOMMONS FGFR1c and Klotho ligand binding and activation +PWCOMMONS FGFR1c ligand binding and activation SDC2 +PWCOMMONS FGFR1c ligand binding and activation +PWCOMMONS Purine metabolism XDH +PWCOMMONS Purine metabolism GUK1 +PWCOMMONS Purine metabolism GDA +PWCOMMONS Purine metabolism NP +PWCOMMONS Purine metabolism NME2 +PWCOMMONS Purine metabolism NME1 +PWCOMMONS Purine metabolism CAT +PWCOMMONS Purine metabolism ADA +PWCOMMONS Purine metabolism ADK +PWCOMMONS Purine metabolism DGUOK +PWCOMMONS Purine metabolism TXN +PWCOMMONS Purine metabolism GLRX +PWCOMMONS Purine metabolism ATP5O +PWCOMMONS Purine metabolism ATP5F1 +PWCOMMONS Purine metabolism ATP5J +PWCOMMONS Purine metabolism ATP5G1 +PWCOMMONS Purine metabolism ATP5L +PWCOMMONS Purine metabolism MT-ATP6 +PWCOMMONS Purine metabolism ATP5J2 +PWCOMMONS Purine metabolism MT-ATP8 +PWCOMMONS Purine metabolism ATP5H +PWCOMMONS Purine metabolism ATP5I +PWCOMMONS Purine metabolism ATP5C1 +PWCOMMONS Purine metabolism ATP5D +PWCOMMONS Purine metabolism ATP5A1 +PWCOMMONS Purine metabolism ATP5B +PWCOMMONS Purine metabolism ATP5E +PWCOMMONS Purine metabolism HPRT1 +PWCOMMONS Purine metabolism TXNRD1 +PWCOMMONS Purine metabolism AK1 +PWCOMMONS Purine metabolism VAMP2 +PWCOMMONS Purine metabolism ADSL +PWCOMMONS Purine metabolism APRT +PWCOMMONS Purine metabolism GMPS +PWCOMMONS Purine metabolism IMPDH2 +PWCOMMONS Purine metabolism IMPDH1 +PWCOMMONS Purine metabolism ADSS +PWCOMMONS Purine metabolism AMPD2 +PWCOMMONS Purine metabolism RRM2 +PWCOMMONS Purine metabolism RRM1 +PWCOMMONS Purine metabolism AMPD1 +PWCOMMONS Purine metabolism INS +PWCOMMONS Purine metabolism SYT5 +PWCOMMONS Purine metabolism GSR +PWCOMMONS Purine metabolism KCNJ11 +PWCOMMONS Purine metabolism AMPD3 +PWCOMMONS Purine metabolism GART +PWCOMMONS Purine metabolism PAICS +PWCOMMONS Purine metabolism ATIC +PWCOMMONS Purine metabolism PPAT +PWCOMMONS Purine metabolism PFAS +PWCOMMONS Purine metabolism ADSSL1 +PWCOMMONS Purine metabolism +PWCOMMONS Purine biosynthesis TXN +PWCOMMONS Purine biosynthesis GLRX +PWCOMMONS Purine biosynthesis GMPS +PWCOMMONS Purine biosynthesis HPRT1 +PWCOMMONS Purine biosynthesis TXNRD1 +PWCOMMONS Purine biosynthesis XDH +PWCOMMONS Purine biosynthesis GUK1 +PWCOMMONS Purine biosynthesis NP +PWCOMMONS Purine biosynthesis IMPDH2 +PWCOMMONS Purine biosynthesis IMPDH1 +PWCOMMONS Purine biosynthesis NME2 +PWCOMMONS Purine biosynthesis NME1 +PWCOMMONS Purine biosynthesis CAT +PWCOMMONS Purine biosynthesis RRM2 +PWCOMMONS Purine biosynthesis RRM1 +PWCOMMONS Purine biosynthesis GDA +PWCOMMONS Purine biosynthesis GSR +PWCOMMONS Purine biosynthesis ATP5O +PWCOMMONS Purine biosynthesis ATP5F1 +PWCOMMONS Purine biosynthesis ATP5J +PWCOMMONS Purine biosynthesis ATP5G1 +PWCOMMONS Purine biosynthesis ATP5L +PWCOMMONS Purine biosynthesis MT-ATP6 +PWCOMMONS Purine biosynthesis ATP5J2 +PWCOMMONS Purine biosynthesis MT-ATP8 +PWCOMMONS Purine biosynthesis ATP5H +PWCOMMONS Purine biosynthesis ATP5I +PWCOMMONS Purine biosynthesis ATP5C1 +PWCOMMONS Purine biosynthesis ATP5D +PWCOMMONS Purine biosynthesis ATP5A1 +PWCOMMONS Purine biosynthesis ATP5B +PWCOMMONS Purine biosynthesis ATP5E +PWCOMMONS Purine biosynthesis ADSSL1 +PWCOMMONS Purine biosynthesis AK1 +PWCOMMONS Purine biosynthesis VAMP2 +PWCOMMONS Purine biosynthesis ADSL +PWCOMMONS Purine biosynthesis ADSS +PWCOMMONS Purine biosynthesis AMPD2 +PWCOMMONS Purine biosynthesis AMPD1 +PWCOMMONS Purine biosynthesis INS +PWCOMMONS Purine biosynthesis SYT5 +PWCOMMONS Purine biosynthesis KCNJ11 +PWCOMMONS Purine biosynthesis AMPD3 +PWCOMMONS Purine biosynthesis +PWCOMMONS dATP formation GLRX +PWCOMMONS dATP formation RRM2 +PWCOMMONS dATP formation RRM1 +PWCOMMONS dATP formation TXNRD1 +PWCOMMONS dATP formation NME2 +PWCOMMONS dATP formation NME1 +PWCOMMONS dATP formation +PWCOMMONS ATP formation TXN +PWCOMMONS ATP formation GLRX +PWCOMMONS ATP formation ATP5O +PWCOMMONS ATP formation ATP5F1 +PWCOMMONS ATP formation ATP5J +PWCOMMONS ATP formation ATP5G1 +PWCOMMONS ATP formation ATP5L +PWCOMMONS ATP formation MT-ATP6 +PWCOMMONS ATP formation ATP5J2 +PWCOMMONS ATP formation MT-ATP8 +PWCOMMONS ATP formation ATP5H +PWCOMMONS ATP formation ATP5I +PWCOMMONS ATP formation ATP5C1 +PWCOMMONS ATP formation ATP5D +PWCOMMONS ATP formation ATP5A1 +PWCOMMONS ATP formation ATP5B +PWCOMMONS ATP formation ATP5E +PWCOMMONS ATP formation HPRT1 +PWCOMMONS ATP formation ADSSL1 +PWCOMMONS ATP formation TXNRD1 +PWCOMMONS ATP formation XDH +PWCOMMONS ATP formation AK1 +PWCOMMONS ATP formation VAMP2 +PWCOMMONS ATP formation ADSL +PWCOMMONS ATP formation NP +PWCOMMONS ATP formation GMPS +PWCOMMONS ATP formation GUK1 +PWCOMMONS ATP formation IMPDH2 +PWCOMMONS ATP formation GDA +PWCOMMONS ATP formation NME1 +PWCOMMONS ATP formation IMPDH1 +PWCOMMONS ATP formation ADSS +PWCOMMONS ATP formation NME2 +PWCOMMONS ATP formation CAT +PWCOMMONS ATP formation AMPD2 +PWCOMMONS ATP formation RRM2 +PWCOMMONS ATP formation RRM1 +PWCOMMONS ATP formation AMPD1 +PWCOMMONS ATP formation INS +PWCOMMONS ATP formation SYT5 +PWCOMMONS ATP formation GSR +PWCOMMONS ATP formation KCNJ11 +PWCOMMONS ATP formation AMPD3 +PWCOMMONS ATP formation +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate TXN +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate GLRX +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5O +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5F1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5J +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5G1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5L +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate MT-ATP6 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5J2 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate MT-ATP8 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5H +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5I +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5C1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5D +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5A1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5B +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ATP5E +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate HPRT1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate TXNRD1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate XDH +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate AK1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ADSSL1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate VAMP2 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ADSL +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate NP +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate GMPS +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate GUK1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate IMPDH2 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate GDA +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate NME1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate IMPDH1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate ADSS +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate NME2 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate CAT +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate AMPD2 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate RRM2 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate RRM1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate AMPD1 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate INS +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate SYT5 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate GSR +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate KCNJ11 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate AMPD3 +PWCOMMONS Conversion of cytosolic inosine 5'-monophosphate, L-aspartate, and GTP to adenylosuccinate, guanosine 5'-diphosphate, and orthophosphate +PWCOMMONS dGTP formation GLRX +PWCOMMONS dGTP formation RRM2 +PWCOMMONS dGTP formation RRM1 +PWCOMMONS dGTP formation TXNRD1 +PWCOMMONS dGTP formation NME2 +PWCOMMONS dGTP formation NME1 +PWCOMMONS dGTP formation +PWCOMMONS Purine catabolism XDH +PWCOMMONS Purine catabolism ADA +PWCOMMONS Purine catabolism HPRT1 +PWCOMMONS Purine catabolism NT5C2 +PWCOMMONS Purine catabolism NP +PWCOMMONS Purine catabolism TXN +PWCOMMONS Purine catabolism GLRX +PWCOMMONS Purine catabolism GMPS +PWCOMMONS Purine catabolism TXNRD1 +PWCOMMONS Purine catabolism GUK1 +PWCOMMONS Purine catabolism IMPDH2 +PWCOMMONS Purine catabolism NME2 +PWCOMMONS Purine catabolism NME1 +PWCOMMONS Purine catabolism RRM2 +PWCOMMONS Purine catabolism RRM1 +PWCOMMONS Purine catabolism GSR +PWCOMMONS Purine catabolism IMPDH1 +PWCOMMONS Purine catabolism CAT +PWCOMMONS Purine catabolism +PWCOMMONS Xanthine formation XDH +PWCOMMONS Xanthine formation HPRT1 +PWCOMMONS Xanthine formation NT5C2 +PWCOMMONS Xanthine formation GDA +PWCOMMONS Xanthine formation NP +PWCOMMONS Xanthine formation TXN +PWCOMMONS Xanthine formation GLRX +PWCOMMONS Xanthine formation GMPS +PWCOMMONS Xanthine formation TXNRD1 +PWCOMMONS Xanthine formation GUK1 +PWCOMMONS Xanthine formation IMPDH2 +PWCOMMONS Xanthine formation NME2 +PWCOMMONS Xanthine formation NME1 +PWCOMMONS Xanthine formation RRM2 +PWCOMMONS Xanthine formation RRM1 +PWCOMMONS Xanthine formation GSR +PWCOMMONS Xanthine formation IMPDH1 +PWCOMMONS Xanthine formation CAT +PWCOMMONS Xanthine formation +PWCOMMONS Inosine formation XDH +PWCOMMONS Inosine formation HPRT1 +PWCOMMONS Inosine formation NP +PWCOMMONS Inosine formation TXN +PWCOMMONS Inosine formation GLRX +PWCOMMONS Inosine formation GMPS +PWCOMMONS Inosine formation TXNRD1 +PWCOMMONS Inosine formation GUK1 +PWCOMMONS Inosine formation IMPDH2 +PWCOMMONS Inosine formation NME2 +PWCOMMONS Inosine formation NME1 +PWCOMMONS Inosine formation RRM2 +PWCOMMONS Inosine formation RRM1 +PWCOMMONS Inosine formation GDA +PWCOMMONS Inosine formation GSR +PWCOMMONS Inosine formation IMPDH1 +PWCOMMONS Inosine formation CAT +PWCOMMONS Inosine formation ADA +PWCOMMONS Inosine formation +PWCOMMONS Hypoxanthine formation XDH +PWCOMMONS Hypoxanthine formation CAT +PWCOMMONS Hypoxanthine formation ADA +PWCOMMONS Hypoxanthine formation +PWCOMMONS Guanine formation XDH +PWCOMMONS Guanine formation HPRT1 +PWCOMMONS Guanine formation GDA +PWCOMMONS Guanine formation NP +PWCOMMONS Guanine formation CAT +PWCOMMONS Guanine formation +PWCOMMONS Purine salvage reactions XDH +PWCOMMONS Purine salvage reactions GUK1 +PWCOMMONS Purine salvage reactions GDA +PWCOMMONS Purine salvage reactions NP +PWCOMMONS Purine salvage reactions NME2 +PWCOMMONS Purine salvage reactions NME1 +PWCOMMONS Purine salvage reactions CAT +PWCOMMONS Purine salvage reactions ADA +PWCOMMONS Purine salvage reactions ADK +PWCOMMONS Purine salvage reactions DGUOK +PWCOMMONS Purine salvage reactions TXN +PWCOMMONS Purine salvage reactions GLRX +PWCOMMONS Purine salvage reactions ATP5O +PWCOMMONS Purine salvage reactions ATP5F1 +PWCOMMONS Purine salvage reactions ATP5J +PWCOMMONS Purine salvage reactions ATP5G1 +PWCOMMONS Purine salvage reactions ATP5L +PWCOMMONS Purine salvage reactions MT-ATP6 +PWCOMMONS Purine salvage reactions ATP5J2 +PWCOMMONS Purine salvage reactions MT-ATP8 +PWCOMMONS Purine salvage reactions ATP5H +PWCOMMONS Purine salvage reactions ATP5I +PWCOMMONS Purine salvage reactions ATP5C1 +PWCOMMONS Purine salvage reactions ATP5D +PWCOMMONS Purine salvage reactions ATP5A1 +PWCOMMONS Purine salvage reactions ATP5B +PWCOMMONS Purine salvage reactions ATP5E +PWCOMMONS Purine salvage reactions HPRT1 +PWCOMMONS Purine salvage reactions TXNRD1 +PWCOMMONS Purine salvage reactions AK1 +PWCOMMONS Purine salvage reactions VAMP2 +PWCOMMONS Purine salvage reactions ADSL +PWCOMMONS Purine salvage reactions APRT +PWCOMMONS Purine salvage reactions GMPS +PWCOMMONS Purine salvage reactions IMPDH2 +PWCOMMONS Purine salvage reactions IMPDH1 +PWCOMMONS Purine salvage reactions ADSS +PWCOMMONS Purine salvage reactions AMPD2 +PWCOMMONS Purine salvage reactions RRM2 +PWCOMMONS Purine salvage reactions RRM1 +PWCOMMONS Purine salvage reactions AMPD1 +PWCOMMONS Purine salvage reactions INS +PWCOMMONS Purine salvage reactions SYT5 +PWCOMMONS Purine salvage reactions GSR +PWCOMMONS Purine salvage reactions KCNJ11 +PWCOMMONS Purine salvage reactions AMPD3 +PWCOMMONS Purine salvage reactions +PWCOMMONS Deoxyribonucleotide salvage XDH +PWCOMMONS Deoxyribonucleotide salvage GUK1 +PWCOMMONS Deoxyribonucleotide salvage GDA +PWCOMMONS Deoxyribonucleotide salvage NP +PWCOMMONS Deoxyribonucleotide salvage NME2 +PWCOMMONS Deoxyribonucleotide salvage NME1 +PWCOMMONS Deoxyribonucleotide salvage CAT +PWCOMMONS Deoxyribonucleotide salvage ADA +PWCOMMONS Deoxyribonucleotide salvage ADK +PWCOMMONS Deoxyribonucleotide salvage DGUOK +PWCOMMONS Deoxyribonucleotide salvage +PWCOMMONS Ribonucleotide salvage TXN +PWCOMMONS Ribonucleotide salvage GLRX +PWCOMMONS Ribonucleotide salvage ATP5O +PWCOMMONS Ribonucleotide salvage ATP5F1 +PWCOMMONS Ribonucleotide salvage ATP5J +PWCOMMONS Ribonucleotide salvage ATP5G1 +PWCOMMONS Ribonucleotide salvage ATP5L +PWCOMMONS Ribonucleotide salvage MT-ATP6 +PWCOMMONS Ribonucleotide salvage ATP5J2 +PWCOMMONS Ribonucleotide salvage MT-ATP8 +PWCOMMONS Ribonucleotide salvage ATP5H +PWCOMMONS Ribonucleotide salvage ATP5I +PWCOMMONS Ribonucleotide salvage ATP5C1 +PWCOMMONS Ribonucleotide salvage ATP5D +PWCOMMONS Ribonucleotide salvage ATP5A1 +PWCOMMONS Ribonucleotide salvage ATP5B +PWCOMMONS Ribonucleotide salvage ATP5E +PWCOMMONS Ribonucleotide salvage HPRT1 +PWCOMMONS Ribonucleotide salvage TXNRD1 +PWCOMMONS Ribonucleotide salvage XDH +PWCOMMONS Ribonucleotide salvage AK1 +PWCOMMONS Ribonucleotide salvage ADA +PWCOMMONS Ribonucleotide salvage VAMP2 +PWCOMMONS Ribonucleotide salvage ADSL +PWCOMMONS Ribonucleotide salvage APRT +PWCOMMONS Ribonucleotide salvage NP +PWCOMMONS Ribonucleotide salvage GMPS +PWCOMMONS Ribonucleotide salvage GUK1 +PWCOMMONS Ribonucleotide salvage IMPDH2 +PWCOMMONS Ribonucleotide salvage NME1 +PWCOMMONS Ribonucleotide salvage IMPDH1 +PWCOMMONS Ribonucleotide salvage ADSS +PWCOMMONS Ribonucleotide salvage NME2 +PWCOMMONS Ribonucleotide salvage CAT +PWCOMMONS Ribonucleotide salvage AMPD2 +PWCOMMONS Ribonucleotide salvage RRM2 +PWCOMMONS Ribonucleotide salvage RRM1 +PWCOMMONS Ribonucleotide salvage AMPD1 +PWCOMMONS Ribonucleotide salvage INS +PWCOMMONS Ribonucleotide salvage SYT5 +PWCOMMONS Ribonucleotide salvage GDA +PWCOMMONS Ribonucleotide salvage GSR +PWCOMMONS Ribonucleotide salvage KCNJ11 +PWCOMMONS Ribonucleotide salvage ADK +PWCOMMONS Ribonucleotide salvage AMPD3 +PWCOMMONS Ribonucleotide salvage +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin NT5C2 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5O +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5F1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5J +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5G1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5L +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin MT-ATP6 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5J2 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin MT-ATP8 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5H +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5I +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5C1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5D +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5A1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5B +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATP5E +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin HPRT1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin PGLS +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin GYG1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin UPP1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ADSL +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ATIC +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin OAT +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin NP +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin GYS2 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin AGL +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin TXN +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin PYGM +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ARG1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin KCNJ11 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin AMPD3 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin RPE +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin GLRX +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin DPYD +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin GART +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin DPYS +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin AK1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin PYGL +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin UMPS +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin VAMP2 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin NT5C1A +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin CTPS +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin PRPS1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin GMPS +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin GUK1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin IMPDH2 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin GDA +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin NME1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin IMPDH1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ADSS +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin OTC +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin INS +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin SYT5 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin PFAS +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin SLC35D1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ASL +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin UPB1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin XDH +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin PAICS +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin CPS1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin TALDO1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin ASS1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin CMPK1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin CAT +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin UGDH +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin RRM2 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin RRM1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin G6PD +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin AMPD1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin PPAT +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin TKT +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin PGM1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin GBE1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin TXNRD1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin PYCR1 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin NME2 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin RPIA +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin AMPD2 +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin PGD +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin GSR +PWCOMMONS Glycogen-glycogenin reacts with n orthophosphates, yielding n glucose 1-phosphates and limit dextrin-glycogenin +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus KPNB1 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP153 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP85 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP35 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus AAAS +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP50 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP43 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP205 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP93 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP88 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUPL2 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP210 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP155 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus RANBP2 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus RAE1 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP188 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP214 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP54 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP62 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP107 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP133 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP160 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus NUP37 +PWCOMMONS Transport of Ribonucleoproteins into the Host Nucleus +PWCOMMONS Reversal of Alkylation Damage By DNA Dioxygenases ALKBH3 +PWCOMMONS Reversal of Alkylation Damage By DNA Dioxygenases +PWCOMMONS PERK regulated gene expression ATF4 +PWCOMMONS PERK regulated gene expression EIF2AK3 +PWCOMMONS PERK regulated gene expression HSPA5 +PWCOMMONS PERK regulated gene expression +PWCOMMONS Creation of C4 and C2 activators C2 +PWCOMMONS Creation of C4 and C2 activators C3 +PWCOMMONS Creation of C4 and C2 activators C9 +PWCOMMONS Creation of C4 and C2 activators C6 +PWCOMMONS Creation of C4 and C2 activators C7 +PWCOMMONS Creation of C4 and C2 activators C5 +PWCOMMONS Creation of C4 and C2 activators C8A +PWCOMMONS Creation of C4 and C2 activators C8B +PWCOMMONS Creation of C4 and C2 activators C8G +PWCOMMONS Creation of C4 and C2 activators C1QC +PWCOMMONS Creation of C4 and C2 activators C1QA +PWCOMMONS Creation of C4 and C2 activators C1QB +PWCOMMONS Creation of C4 and C2 activators C1S +PWCOMMONS Creation of C4 and C2 activators C1R +PWCOMMONS Creation of C4 and C2 activators MBL2 +PWCOMMONS Creation of C4 and C2 activators MASP1 +PWCOMMONS Creation of C4 and C2 activators +PWCOMMONS Classical antibody-mediated complement activation C2 +PWCOMMONS Classical antibody-mediated complement activation C3 +PWCOMMONS Classical antibody-mediated complement activation C9 +PWCOMMONS Classical antibody-mediated complement activation C6 +PWCOMMONS Classical antibody-mediated complement activation C7 +PWCOMMONS Classical antibody-mediated complement activation C5 +PWCOMMONS Classical antibody-mediated complement activation C8A +PWCOMMONS Classical antibody-mediated complement activation C8B +PWCOMMONS Classical antibody-mediated complement activation C8G +PWCOMMONS Classical antibody-mediated complement activation C1QC +PWCOMMONS Classical antibody-mediated complement activation C1QA +PWCOMMONS Classical antibody-mediated complement activation C1QB +PWCOMMONS Classical antibody-mediated complement activation C1S +PWCOMMONS Classical antibody-mediated complement activation C1R +PWCOMMONS Classical antibody-mediated complement activation +PWCOMMONS Metabolism of folate and pterines AMD1 +PWCOMMONS Metabolism of folate and pterines AHCY +PWCOMMONS Metabolism of folate and pterines MTHFD1 +PWCOMMONS Metabolism of folate and pterines SLC46A1 +PWCOMMONS Metabolism of folate and pterines MTHFR +PWCOMMONS Metabolism of folate and pterines SRM +PWCOMMONS Metabolism of folate and pterines MTR +PWCOMMONS Metabolism of folate and pterines SMS +PWCOMMONS Metabolism of folate and pterines NNMT +PWCOMMONS Metabolism of folate and pterines TPMT +PWCOMMONS Metabolism of folate and pterines SLC19A1 +PWCOMMONS Metabolism of folate and pterines SHMT1 +PWCOMMONS Metabolism of folate and pterines DHFR +PWCOMMONS Metabolism of folate and pterines SLC25A32 +PWCOMMONS Metabolism of folate and pterines +PWCOMMONS Regulation of DNA replication ORC6L +PWCOMMONS Regulation of DNA replication ORC3L +PWCOMMONS Regulation of DNA replication ORC4L +PWCOMMONS Regulation of DNA replication ORC5L +PWCOMMONS Regulation of DNA replication ORC1L +PWCOMMONS Regulation of DNA replication ORC2L +PWCOMMONS Regulation of DNA replication CDT1 +PWCOMMONS Regulation of DNA replication FZR1 +PWCOMMONS Regulation of DNA replication ANAPC5 +PWCOMMONS Regulation of DNA replication ANAPC11 +PWCOMMONS Regulation of DNA replication CDC23 +PWCOMMONS Regulation of DNA replication ANAPC1 +PWCOMMONS Regulation of DNA replication ANAPC2 +PWCOMMONS Regulation of DNA replication UBE2D1 +PWCOMMONS Regulation of DNA replication CDC27 +PWCOMMONS Regulation of DNA replication ANAPC4 +PWCOMMONS Regulation of DNA replication ANAPC10 +PWCOMMONS Regulation of DNA replication ANAPC7 +PWCOMMONS Regulation of DNA replication UBE2C +PWCOMMONS Regulation of DNA replication CDC26 +PWCOMMONS Regulation of DNA replication CDC16 +PWCOMMONS Regulation of DNA replication UBE2E1 +PWCOMMONS Regulation of DNA replication PSMC6 +PWCOMMONS Regulation of DNA replication PSMA3 +PWCOMMONS Regulation of DNA replication PSMD8 +PWCOMMONS Regulation of DNA replication PSMD10 +PWCOMMONS Regulation of DNA replication PSMD1 +PWCOMMONS Regulation of DNA replication PSMD6 +PWCOMMONS Regulation of DNA replication PSMB5 +PWCOMMONS Regulation of DNA replication PSMB4 +PWCOMMONS Regulation of DNA replication PSMD4 +PWCOMMONS Regulation of DNA replication PSMA2 +PWCOMMONS Regulation of DNA replication PSMB8 +PWCOMMONS Regulation of DNA replication PSMD5 +PWCOMMONS Regulation of DNA replication PSMB6 +PWCOMMONS Regulation of DNA replication PSME3 +PWCOMMONS Regulation of DNA replication PSMB3 +PWCOMMONS Regulation of DNA replication PSMB7 +PWCOMMONS Regulation of DNA replication PSME1 +PWCOMMONS Regulation of DNA replication PSMD11 +PWCOMMONS Regulation of DNA replication PSMA5 +PWCOMMONS Regulation of DNA replication PSMC5 +PWCOMMONS Regulation of DNA replication PSMC1 +PWCOMMONS Regulation of DNA replication PSMD7 +PWCOMMONS Regulation of DNA replication PSMD3 +PWCOMMONS Regulation of DNA replication PSMB2 +PWCOMMONS Regulation of DNA replication PSMD13 +PWCOMMONS Regulation of DNA replication PSMD14 +PWCOMMONS Regulation of DNA replication PSMB1 +PWCOMMONS Regulation of DNA replication PSMA6 +PWCOMMONS Regulation of DNA replication PSMB9 +PWCOMMONS Regulation of DNA replication PSMB10 +PWCOMMONS Regulation of DNA replication PSMD9 +PWCOMMONS Regulation of DNA replication PSMC4 +PWCOMMONS Regulation of DNA replication PSMA1 +PWCOMMONS Regulation of DNA replication PSMA4 +PWCOMMONS Regulation of DNA replication PSMA7 +PWCOMMONS Regulation of DNA replication PSMF1 +PWCOMMONS Regulation of DNA replication PSME2 +PWCOMMONS Regulation of DNA replication PSMD12 +PWCOMMONS Regulation of DNA replication PSMC3 +PWCOMMONS Regulation of DNA replication PSMC2 +PWCOMMONS Regulation of DNA replication PSMD2 +PWCOMMONS Regulation of DNA replication CDC6 +PWCOMMONS Regulation of DNA replication CDC2 +PWCOMMONS Regulation of DNA replication MCM7 +PWCOMMONS Regulation of DNA replication MCM4 +PWCOMMONS Regulation of DNA replication MCM5 +PWCOMMONS Regulation of DNA replication MCM3 +PWCOMMONS Regulation of DNA replication MCM6 +PWCOMMONS Regulation of DNA replication MCM2 +PWCOMMONS Regulation of DNA replication CDK2 +PWCOMMONS Regulation of DNA replication MCM10 +PWCOMMONS Regulation of DNA replication +PWCOMMONS Removal of licensing factors from origins CDT1 +PWCOMMONS Removal of licensing factors from origins CDC6 +PWCOMMONS Removal of licensing factors from origins ORC6L +PWCOMMONS Removal of licensing factors from origins ORC4L +PWCOMMONS Removal of licensing factors from origins ORC3L +PWCOMMONS Removal of licensing factors from origins ORC5L +PWCOMMONS Removal of licensing factors from origins ORC2L +PWCOMMONS Removal of licensing factors from origins MCM7 +PWCOMMONS Removal of licensing factors from origins MCM4 +PWCOMMONS Removal of licensing factors from origins MCM5 +PWCOMMONS Removal of licensing factors from origins MCM3 +PWCOMMONS Removal of licensing factors from origins MCM6 +PWCOMMONS Removal of licensing factors from origins MCM2 +PWCOMMONS Removal of licensing factors from origins FZR1 +PWCOMMONS Removal of licensing factors from origins ANAPC5 +PWCOMMONS Removal of licensing factors from origins ANAPC11 +PWCOMMONS Removal of licensing factors from origins CDC23 +PWCOMMONS Removal of licensing factors from origins ANAPC1 +PWCOMMONS Removal of licensing factors from origins ANAPC2 +PWCOMMONS Removal of licensing factors from origins UBE2D1 +PWCOMMONS Removal of licensing factors from origins CDC27 +PWCOMMONS Removal of licensing factors from origins ANAPC4 +PWCOMMONS Removal of licensing factors from origins ANAPC10 +PWCOMMONS Removal of licensing factors from origins ANAPC7 +PWCOMMONS Removal of licensing factors from origins UBE2C +PWCOMMONS Removal of licensing factors from origins CDC26 +PWCOMMONS Removal of licensing factors from origins CDC16 +PWCOMMONS Removal of licensing factors from origins UBE2E1 +PWCOMMONS Removal of licensing factors from origins PSMC6 +PWCOMMONS Removal of licensing factors from origins PSMA3 +PWCOMMONS Removal of licensing factors from origins PSMD8 +PWCOMMONS Removal of licensing factors from origins PSMD10 +PWCOMMONS Removal of licensing factors from origins PSMD1 +PWCOMMONS Removal of licensing factors from origins PSMD6 +PWCOMMONS Removal of licensing factors from origins PSMB5 +PWCOMMONS Removal of licensing factors from origins PSMB4 +PWCOMMONS Removal of licensing factors from origins PSMD4 +PWCOMMONS Removal of licensing factors from origins PSMA2 +PWCOMMONS Removal of licensing factors from origins PSMB8 +PWCOMMONS Removal of licensing factors from origins PSMD5 +PWCOMMONS Removal of licensing factors from origins PSMB6 +PWCOMMONS Removal of licensing factors from origins PSME3 +PWCOMMONS Removal of licensing factors from origins PSMB3 +PWCOMMONS Removal of licensing factors from origins PSMB7 +PWCOMMONS Removal of licensing factors from origins PSME1 +PWCOMMONS Removal of licensing factors from origins PSMD11 +PWCOMMONS Removal of licensing factors from origins PSMA5 +PWCOMMONS Removal of licensing factors from origins PSMC5 +PWCOMMONS Removal of licensing factors from origins PSMC1 +PWCOMMONS Removal of licensing factors from origins PSMD7 +PWCOMMONS Removal of licensing factors from origins PSMD3 +PWCOMMONS Removal of licensing factors from origins PSMB2 +PWCOMMONS Removal of licensing factors from origins PSMD13 +PWCOMMONS Removal of licensing factors from origins PSMD14 +PWCOMMONS Removal of licensing factors from origins PSMB1 +PWCOMMONS Removal of licensing factors from origins PSMA6 +PWCOMMONS Removal of licensing factors from origins PSMB9 +PWCOMMONS Removal of licensing factors from origins PSMB10 +PWCOMMONS Removal of licensing factors from origins PSMD9 +PWCOMMONS Removal of licensing factors from origins PSMC4 +PWCOMMONS Removal of licensing factors from origins PSMA1 +PWCOMMONS Removal of licensing factors from origins PSMA4 +PWCOMMONS Removal of licensing factors from origins PSMA7 +PWCOMMONS Removal of licensing factors from origins PSMF1 +PWCOMMONS Removal of licensing factors from origins PSME2 +PWCOMMONS Removal of licensing factors from origins PSMD12 +PWCOMMONS Removal of licensing factors from origins PSMC3 +PWCOMMONS Removal of licensing factors from origins PSMC2 +PWCOMMONS Removal of licensing factors from origins PSMD2 +PWCOMMONS Removal of licensing factors from origins CDK2 +PWCOMMONS Removal of licensing factors from origins GMNN +PWCOMMONS Removal of licensing factors from origins MCM10 +PWCOMMONS Removal of licensing factors from origins +PWCOMMONS Association of licensing factors with the pre-replicative complex ORC6L +PWCOMMONS Association of licensing factors with the pre-replicative complex ORC3L +PWCOMMONS Association of licensing factors with the pre-replicative complex ORC4L +PWCOMMONS Association of licensing factors with the pre-replicative complex ORC5L +PWCOMMONS Association of licensing factors with the pre-replicative complex ORC1L +PWCOMMONS Association of licensing factors with the pre-replicative complex ORC2L +PWCOMMONS Association of licensing factors with the pre-replicative complex CDT1 +PWCOMMONS Association of licensing factors with the pre-replicative complex FZR1 +PWCOMMONS Association of licensing factors with the pre-replicative complex ANAPC5 +PWCOMMONS Association of licensing factors with the pre-replicative complex ANAPC11 +PWCOMMONS Association of licensing factors with the pre-replicative complex CDC23 +PWCOMMONS Association of licensing factors with the pre-replicative complex ANAPC1 +PWCOMMONS Association of licensing factors with the pre-replicative complex ANAPC2 +PWCOMMONS Association of licensing factors with the pre-replicative complex UBE2D1 +PWCOMMONS Association of licensing factors with the pre-replicative complex CDC27 +PWCOMMONS Association of licensing factors with the pre-replicative complex ANAPC4 +PWCOMMONS Association of licensing factors with the pre-replicative complex ANAPC10 +PWCOMMONS Association of licensing factors with the pre-replicative complex ANAPC7 +PWCOMMONS Association of licensing factors with the pre-replicative complex UBE2C +PWCOMMONS Association of licensing factors with the pre-replicative complex CDC26 +PWCOMMONS Association of licensing factors with the pre-replicative complex CDC16 +PWCOMMONS Association of licensing factors with the pre-replicative complex UBE2E1 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMC6 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMA3 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD8 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD10 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD1 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD6 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMB5 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMB4 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD4 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMA2 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMB8 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD5 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMB6 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSME3 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMB3 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMB7 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSME1 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD11 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMA5 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMC5 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMC1 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD7 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD3 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMB2 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD13 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD14 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMB1 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMA6 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMB9 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMB10 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD9 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMC4 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMA1 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMA4 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMA7 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMF1 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSME2 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD12 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMC3 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMC2 +PWCOMMONS Association of licensing factors with the pre-replicative complex PSMD2 +PWCOMMONS Association of licensing factors with the pre-replicative complex CDC6 +PWCOMMONS Association of licensing factors with the pre-replicative complex CDC2 +PWCOMMONS Association of licensing factors with the pre-replicative complex +PWCOMMONS Influenza Life Cycle RAN +PWCOMMONS Influenza Life Cycle NUP153 +PWCOMMONS Influenza Life Cycle NUP85 +PWCOMMONS Influenza Life Cycle NUP35 +PWCOMMONS Influenza Life Cycle AAAS +PWCOMMONS Influenza Life Cycle NUP50 +PWCOMMONS Influenza Life Cycle NUP43 +PWCOMMONS Influenza Life Cycle NUP205 +PWCOMMONS Influenza Life Cycle NUP93 +PWCOMMONS Influenza Life Cycle NUP88 +PWCOMMONS Influenza Life Cycle NUPL2 +PWCOMMONS Influenza Life Cycle NUP210 +PWCOMMONS Influenza Life Cycle NUP155 +PWCOMMONS Influenza Life Cycle RANBP2 +PWCOMMONS Influenza Life Cycle RAE1 +PWCOMMONS Influenza Life Cycle NUP188 +PWCOMMONS Influenza Life Cycle NUP214 +PWCOMMONS Influenza Life Cycle NUP54 +PWCOMMONS Influenza Life Cycle NUP62 +PWCOMMONS Influenza Life Cycle NUP107 +PWCOMMONS Influenza Life Cycle NUP133 +PWCOMMONS Influenza Life Cycle NUP160 +PWCOMMONS Influenza Life Cycle NUP37 +PWCOMMONS Influenza Life Cycle HSPA1A +PWCOMMONS Influenza Life Cycle CALR +PWCOMMONS Influenza Life Cycle CANX +PWCOMMONS Influenza Life Cycle KPNA1 +PWCOMMONS Influenza Life Cycle KPNB1 +PWCOMMONS Influenza Life Cycle HNRNPD +PWCOMMONS Influenza Life Cycle HNRNPH2 +PWCOMMONS Influenza Life Cycle HNRNPUL1 +PWCOMMONS Influenza Life Cycle CD2BP2 +PWCOMMONS Influenza Life Cycle HNRNPH1 +PWCOMMONS Influenza Life Cycle SFRS9 +PWCOMMONS Influenza Life Cycle HNRNPA0 +PWCOMMONS Influenza Life Cycle HNRNPL +PWCOMMONS Influenza Life Cycle HNRNPA2B1 +PWCOMMONS Influenza Life Cycle HNRNPA1 +PWCOMMONS Influenza Life Cycle SFRS2 +PWCOMMONS Influenza Life Cycle PCBP2 +PWCOMMONS Influenza Life Cycle RNPS1 +PWCOMMONS Influenza Life Cycle SMC1A +PWCOMMONS Influenza Life Cycle RBM5 +PWCOMMONS Influenza Life Cycle HNRNPU +PWCOMMONS Influenza Life Cycle CCAR1 +PWCOMMONS Influenza Life Cycle U2AF1 +PWCOMMONS Influenza Life Cycle RBMX +PWCOMMONS Influenza Life Cycle HNRNPA3 +PWCOMMONS Influenza Life Cycle HNRNPM +PWCOMMONS Influenza Life Cycle SRRM1 +PWCOMMONS Influenza Life Cycle U2AF2 +PWCOMMONS Influenza Life Cycle THOC4 +PWCOMMONS Influenza Life Cycle PCBP1 +PWCOMMONS Influenza Life Cycle SF4 +PWCOMMONS Influenza Life Cycle YBX1 +PWCOMMONS Influenza Life Cycle HNRNPR +PWCOMMONS Influenza Life Cycle HNRNPC +PWCOMMONS Influenza Life Cycle PTBP1 +PWCOMMONS Influenza Life Cycle SFRS3 +PWCOMMONS Influenza Life Cycle SFRS5 +PWCOMMONS Influenza Life Cycle SFRS7 +PWCOMMONS Influenza Life Cycle SFRS6 +PWCOMMONS Influenza Life Cycle DHX9 +PWCOMMONS Influenza Life Cycle SFRS1 +PWCOMMONS Influenza Life Cycle HNRNPF +PWCOMMONS Influenza Life Cycle SNRNP70 +PWCOMMONS Influenza Life Cycle SNRPA +PWCOMMONS Influenza Life Cycle SNRPG +PWCOMMONS Influenza Life Cycle SNRPD3 +PWCOMMONS Influenza Life Cycle SNRPF +PWCOMMONS Influenza Life Cycle SNRPB +PWCOMMONS Influenza Life Cycle SNRPD2 +PWCOMMONS Influenza Life Cycle SNRPE +PWCOMMONS Influenza Life Cycle SNRPD1 +PWCOMMONS Influenza Life Cycle GTF2F1 +PWCOMMONS Influenza Life Cycle GTF2F2 +PWCOMMONS Influenza Life Cycle POLR2G +PWCOMMONS Influenza Life Cycle POLR2B +PWCOMMONS Influenza Life Cycle POLR2L +PWCOMMONS Influenza Life Cycle POLR2A +PWCOMMONS Influenza Life Cycle POLR2K +PWCOMMONS Influenza Life Cycle POLR2H +PWCOMMONS Influenza Life Cycle POLR2D +PWCOMMONS Influenza Life Cycle POLR2C +PWCOMMONS Influenza Life Cycle POLR2J +PWCOMMONS Influenza Life Cycle POLR2I +PWCOMMONS Influenza Life Cycle POLR2F +PWCOMMONS Influenza Life Cycle POLR2E +PWCOMMONS Influenza Life Cycle NCBP2 +PWCOMMONS Influenza Life Cycle NCBP1 +PWCOMMONS Influenza Life Cycle HSP90AA1 +PWCOMMONS Influenza Life Cycle IPO5 +PWCOMMONS Influenza Life Cycle RPS23 +PWCOMMONS Influenza Life Cycle RPS16 +PWCOMMONS Influenza Life Cycle RPS12 +PWCOMMONS Influenza Life Cycle RPS29 +PWCOMMONS Influenza Life Cycle RPSA +PWCOMMONS Influenza Life Cycle RPS21 +PWCOMMONS Influenza Life Cycle RPS27A +PWCOMMONS Influenza Life Cycle RPS20 +PWCOMMONS Influenza Life Cycle RPS15 +PWCOMMONS Influenza Life Cycle RPS24 +PWCOMMONS Influenza Life Cycle RPS9 +PWCOMMONS Influenza Life Cycle RPS10 +PWCOMMONS Influenza Life Cycle RPS28 +PWCOMMONS Influenza Life Cycle RPS2 +PWCOMMONS Influenza Life Cycle RPS19 +PWCOMMONS Influenza Life Cycle RPS4X +PWCOMMONS Influenza Life Cycle RPS18 +PWCOMMONS Influenza Life Cycle RPS8 +PWCOMMONS Influenza Life Cycle RPS3 +PWCOMMONS Influenza Life Cycle RPS4Y1 +PWCOMMONS Influenza Life Cycle RPS25 +PWCOMMONS Influenza Life Cycle RPS14 +PWCOMMONS Influenza Life Cycle RPS17 +PWCOMMONS Influenza Life Cycle RPS26 +PWCOMMONS Influenza Life Cycle RPS11 +PWCOMMONS Influenza Life Cycle RPS5 +PWCOMMONS Influenza Life Cycle FAU +PWCOMMONS Influenza Life Cycle RPS15A +PWCOMMONS Influenza Life Cycle RPS13 +PWCOMMONS Influenza Life Cycle RPS6 +PWCOMMONS Influenza Life Cycle RPS3A +PWCOMMONS Influenza Life Cycle RPS7 +PWCOMMONS Influenza Life Cycle RPS27 +PWCOMMONS Influenza Life Cycle RPL27A +PWCOMMONS Influenza Life Cycle RPL15 +PWCOMMONS Influenza Life Cycle RPL11 +PWCOMMONS Influenza Life Cycle RPL29 +PWCOMMONS Influenza Life Cycle RPL30 +PWCOMMONS Influenza Life Cycle RPL8 +PWCOMMONS Influenza Life Cycle RPL22 +PWCOMMONS Influenza Life Cycle RPL28 +PWCOMMONS Influenza Life Cycle RPL7A +PWCOMMONS Influenza Life Cycle RPL35A +PWCOMMONS Influenza Life Cycle RPL31 +PWCOMMONS Influenza Life Cycle RPL26L1 +PWCOMMONS Influenza Life Cycle RPL26 +PWCOMMONS Influenza Life Cycle RPL18A +PWCOMMONS Influenza Life Cycle RPL14 +PWCOMMONS Influenza Life Cycle RPLP2 +PWCOMMONS Influenza Life Cycle RPL10 +PWCOMMONS Influenza Life Cycle RPL34 +PWCOMMONS Influenza Life Cycle RPL37 +PWCOMMONS Influenza Life Cycle RPL3L +PWCOMMONS Influenza Life Cycle RPL32 +PWCOMMONS Influenza Life Cycle RPL36 +PWCOMMONS Influenza Life Cycle RPLP1 +PWCOMMONS Influenza Life Cycle RPL23A +PWCOMMONS Influenza Life Cycle RPL24 +PWCOMMONS Influenza Life Cycle RPL6 +PWCOMMONS Influenza Life Cycle RPL18 +PWCOMMONS Influenza Life Cycle RPL5 +PWCOMMONS Influenza Life Cycle RPL23 +PWCOMMONS Influenza Life Cycle RPL19 +PWCOMMONS Influenza Life Cycle RPL41 +PWCOMMONS Influenza Life Cycle RPL7 +PWCOMMONS Influenza Life Cycle RPL13A +PWCOMMONS Influenza Life Cycle RPL27 +PWCOMMONS Influenza Life Cycle RPL17 +PWCOMMONS Influenza Life Cycle RPL3 +PWCOMMONS Influenza Life Cycle RPL10A +PWCOMMONS Influenza Life Cycle RPL21 +PWCOMMONS Influenza Life Cycle RPL4 +PWCOMMONS Influenza Life Cycle RPL35 +PWCOMMONS Influenza Life Cycle RPL13 +PWCOMMONS Influenza Life Cycle RPL39 +PWCOMMONS Influenza Life Cycle RPL38 +PWCOMMONS Influenza Life Cycle RPL36A +PWCOMMONS Influenza Life Cycle RPL9 +PWCOMMONS Influenza Life Cycle RPLP0 +PWCOMMONS Influenza Life Cycle UBA52 +PWCOMMONS Influenza Life Cycle RPL37A +PWCOMMONS Influenza Life Cycle RPL12 +PWCOMMONS Influenza Life Cycle GRSF1 +PWCOMMONS Influenza Life Cycle +PWCOMMONS Virus Assembly and Release CANX +PWCOMMONS Virus Assembly and Release +PWCOMMONS Assembly of Viral Components at the Budding Site CANX +PWCOMMONS Assembly of Viral Components at the Budding Site +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPH2 +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPUL1 +PWCOMMONS Influenza Viral RNA Transcription and Replication CD2BP2 +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPH1 +PWCOMMONS Influenza Viral RNA Transcription and Replication SFRS9 +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPA0 +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPL +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPA2B1 +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPA1 +PWCOMMONS Influenza Viral RNA Transcription and Replication SFRS2 +PWCOMMONS Influenza Viral RNA Transcription and Replication PCBP2 +PWCOMMONS Influenza Viral RNA Transcription and Replication RNPS1 +PWCOMMONS Influenza Viral RNA Transcription and Replication SMC1A +PWCOMMONS Influenza Viral RNA Transcription and Replication RBM5 +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPU +PWCOMMONS Influenza Viral RNA Transcription and Replication CCAR1 +PWCOMMONS Influenza Viral RNA Transcription and Replication U2AF1 +PWCOMMONS Influenza Viral RNA Transcription and Replication RBMX +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPA3 +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPM +PWCOMMONS Influenza Viral RNA Transcription and Replication SRRM1 +PWCOMMONS Influenza Viral RNA Transcription and Replication U2AF2 +PWCOMMONS Influenza Viral RNA Transcription and Replication THOC4 +PWCOMMONS Influenza Viral RNA Transcription and Replication PCBP1 +PWCOMMONS Influenza Viral RNA Transcription and Replication SF4 +PWCOMMONS Influenza Viral RNA Transcription and Replication YBX1 +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPR +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPC +PWCOMMONS Influenza Viral RNA Transcription and Replication PTBP1 +PWCOMMONS Influenza Viral RNA Transcription and Replication SFRS3 +PWCOMMONS Influenza Viral RNA Transcription and Replication SFRS5 +PWCOMMONS Influenza Viral RNA Transcription and Replication SFRS7 +PWCOMMONS Influenza Viral RNA Transcription and Replication SFRS6 +PWCOMMONS Influenza Viral RNA Transcription and Replication DHX9 +PWCOMMONS Influenza Viral RNA Transcription and Replication SFRS1 +PWCOMMONS Influenza Viral RNA Transcription and Replication HNRNPF +PWCOMMONS Influenza Viral RNA Transcription and Replication SNRNP70 +PWCOMMONS Influenza Viral RNA Transcription and Replication SNRPA +PWCOMMONS Influenza Viral RNA Transcription and Replication SNRPG +PWCOMMONS Influenza Viral RNA Transcription and Replication SNRPD3 +PWCOMMONS Influenza Viral RNA Transcription and Replication SNRPF +PWCOMMONS Influenza Viral RNA Transcription and Replication SNRPB +PWCOMMONS Influenza Viral RNA Transcription and Replication SNRPD2 +PWCOMMONS Influenza Viral RNA Transcription and Replication SNRPE +PWCOMMONS Influenza Viral RNA Transcription and Replication SNRPD1 +PWCOMMONS Influenza Viral RNA Transcription and Replication GTF2F1 +PWCOMMONS Influenza Viral RNA Transcription and Replication GTF2F2 +PWCOMMONS Influenza Viral RNA Transcription and Replication POLR2G +PWCOMMONS Influenza Viral RNA Transcription and Replication POLR2B +PWCOMMONS Influenza Viral RNA Transcription and Replication POLR2L +PWCOMMONS Influenza Viral RNA Transcription and Replication POLR2A +PWCOMMONS Influenza Viral RNA Transcription and Replication POLR2K +PWCOMMONS Influenza Viral RNA Transcription and Replication POLR2H +PWCOMMONS Influenza Viral RNA Transcription and Replication POLR2D +PWCOMMONS Influenza Viral RNA Transcription and Replication POLR2C +PWCOMMONS Influenza Viral RNA Transcription and Replication POLR2J +PWCOMMONS Influenza Viral RNA Transcription and Replication POLR2I +PWCOMMONS Influenza Viral RNA Transcription and Replication POLR2F +PWCOMMONS Influenza Viral RNA Transcription and Replication POLR2E +PWCOMMONS Influenza Viral RNA Transcription and Replication NCBP2 +PWCOMMONS Influenza Viral RNA Transcription and Replication NCBP1 +PWCOMMONS Influenza Viral RNA Transcription and Replication HSP90AA1 +PWCOMMONS Influenza Viral RNA Transcription and Replication IPO5 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS23 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS16 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS12 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS29 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPSA +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS21 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS27A +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS20 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS15 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS24 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS9 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS10 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS28 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS2 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS19 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS4X +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS18 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS8 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS3 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS4Y1 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS25 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS14 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS17 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS26 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS11 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS5 +PWCOMMONS Influenza Viral RNA Transcription and Replication FAU +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS15A +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS13 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS6 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS3A +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS7 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPS27 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL27A +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL15 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL11 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL29 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL30 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL8 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL22 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL28 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL7A +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL35A +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL31 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL26L1 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL26 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL18A +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL14 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPLP2 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL10 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL34 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL37 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL3L +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL32 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL36 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPLP1 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL23A +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL24 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL6 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL18 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL5 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL23 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL19 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL41 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL7 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL13A +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL27 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL17 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL3 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL10A +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL21 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL4 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL35 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL13 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL39 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL38 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL36A +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL9 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPLP0 +PWCOMMONS Influenza Viral RNA Transcription and Replication UBA52 +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL37A +PWCOMMONS Influenza Viral RNA Transcription and Replication RPL12 +PWCOMMONS Influenza Viral RNA Transcription and Replication GRSF1 +PWCOMMONS Influenza Viral RNA Transcription and Replication +PWCOMMONS Viral Messenger RNA Synthesis HNRNPH2 +PWCOMMONS Viral Messenger RNA Synthesis HNRNPUL1 +PWCOMMONS Viral Messenger RNA Synthesis CD2BP2 +PWCOMMONS Viral Messenger RNA Synthesis HNRNPH1 +PWCOMMONS Viral Messenger RNA Synthesis SFRS9 +PWCOMMONS Viral Messenger RNA Synthesis HNRNPA0 +PWCOMMONS Viral Messenger RNA Synthesis HNRNPL +PWCOMMONS Viral Messenger RNA Synthesis HNRNPA2B1 +PWCOMMONS Viral Messenger RNA Synthesis HNRNPA1 +PWCOMMONS Viral Messenger RNA Synthesis SFRS2 +PWCOMMONS Viral Messenger RNA Synthesis PCBP2 +PWCOMMONS Viral Messenger RNA Synthesis RNPS1 +PWCOMMONS Viral Messenger RNA Synthesis SMC1A +PWCOMMONS Viral Messenger RNA Synthesis RBM5 +PWCOMMONS Viral Messenger RNA Synthesis HNRNPU +PWCOMMONS Viral Messenger RNA Synthesis CCAR1 +PWCOMMONS Viral Messenger RNA Synthesis U2AF1 +PWCOMMONS Viral Messenger RNA Synthesis RBMX +PWCOMMONS Viral Messenger RNA Synthesis HNRNPA3 +PWCOMMONS Viral Messenger RNA Synthesis HNRNPM +PWCOMMONS Viral Messenger RNA Synthesis SRRM1 +PWCOMMONS Viral Messenger RNA Synthesis U2AF2 +PWCOMMONS Viral Messenger RNA Synthesis THOC4 +PWCOMMONS Viral Messenger RNA Synthesis PCBP1 +PWCOMMONS Viral Messenger RNA Synthesis SF4 +PWCOMMONS Viral Messenger RNA Synthesis YBX1 +PWCOMMONS Viral Messenger RNA Synthesis HNRNPR +PWCOMMONS Viral Messenger RNA Synthesis HNRNPC +PWCOMMONS Viral Messenger RNA Synthesis PTBP1 +PWCOMMONS Viral Messenger RNA Synthesis SFRS3 +PWCOMMONS Viral Messenger RNA Synthesis SFRS5 +PWCOMMONS Viral Messenger RNA Synthesis SFRS7 +PWCOMMONS Viral Messenger RNA Synthesis SFRS6 +PWCOMMONS Viral Messenger RNA Synthesis DHX9 +PWCOMMONS Viral Messenger RNA Synthesis SFRS1 +PWCOMMONS Viral Messenger RNA Synthesis HNRNPF +PWCOMMONS Viral Messenger RNA Synthesis SNRNP70 +PWCOMMONS Viral Messenger RNA Synthesis SNRPA +PWCOMMONS Viral Messenger RNA Synthesis SNRPG +PWCOMMONS Viral Messenger RNA Synthesis SNRPD3 +PWCOMMONS Viral Messenger RNA Synthesis SNRPF +PWCOMMONS Viral Messenger RNA Synthesis SNRPB +PWCOMMONS Viral Messenger RNA Synthesis SNRPD2 +PWCOMMONS Viral Messenger RNA Synthesis SNRPE +PWCOMMONS Viral Messenger RNA Synthesis SNRPD1 +PWCOMMONS Viral Messenger RNA Synthesis GTF2F1 +PWCOMMONS Viral Messenger RNA Synthesis GTF2F2 +PWCOMMONS Viral Messenger RNA Synthesis POLR2G +PWCOMMONS Viral Messenger RNA Synthesis POLR2B +PWCOMMONS Viral Messenger RNA Synthesis POLR2L +PWCOMMONS Viral Messenger RNA Synthesis POLR2A +PWCOMMONS Viral Messenger RNA Synthesis POLR2K +PWCOMMONS Viral Messenger RNA Synthesis POLR2H +PWCOMMONS Viral Messenger RNA Synthesis POLR2D +PWCOMMONS Viral Messenger RNA Synthesis POLR2C +PWCOMMONS Viral Messenger RNA Synthesis POLR2J +PWCOMMONS Viral Messenger RNA Synthesis POLR2I +PWCOMMONS Viral Messenger RNA Synthesis POLR2F +PWCOMMONS Viral Messenger RNA Synthesis POLR2E +PWCOMMONS Viral Messenger RNA Synthesis NCBP2 +PWCOMMONS Viral Messenger RNA Synthesis NCBP1 +PWCOMMONS Viral Messenger RNA Synthesis +PWCOMMONS Viral mRNA Translation RPS16 +PWCOMMONS Viral mRNA Translation RPS12 +PWCOMMONS Viral mRNA Translation RPS29 +PWCOMMONS Viral mRNA Translation RPSA +PWCOMMONS Viral mRNA Translation RPS21 +PWCOMMONS Viral mRNA Translation RPS27A +PWCOMMONS Viral mRNA Translation RPS20 +PWCOMMONS Viral mRNA Translation RPS15 +PWCOMMONS Viral mRNA Translation RPS24 +PWCOMMONS Viral mRNA Translation RPS9 +PWCOMMONS Viral mRNA Translation RPS10 +PWCOMMONS Viral mRNA Translation RPS28 +PWCOMMONS Viral mRNA Translation RPS2 +PWCOMMONS Viral mRNA Translation RPS19 +PWCOMMONS Viral mRNA Translation RPS4X +PWCOMMONS Viral mRNA Translation RPS18 +PWCOMMONS Viral mRNA Translation RPS8 +PWCOMMONS Viral mRNA Translation RPS3 +PWCOMMONS Viral mRNA Translation RPS4Y1 +PWCOMMONS Viral mRNA Translation RPS25 +PWCOMMONS Viral mRNA Translation RPS14 +PWCOMMONS Viral mRNA Translation RPS17 +PWCOMMONS Viral mRNA Translation RPS26 +PWCOMMONS Viral mRNA Translation RPS11 +PWCOMMONS Viral mRNA Translation RPS5 +PWCOMMONS Viral mRNA Translation FAU +PWCOMMONS Viral mRNA Translation RPS15A +PWCOMMONS Viral mRNA Translation RPS13 +PWCOMMONS Viral mRNA Translation RPS6 +PWCOMMONS Viral mRNA Translation RPS3A +PWCOMMONS Viral mRNA Translation RPS7 +PWCOMMONS Viral mRNA Translation RPS27 +PWCOMMONS Viral mRNA Translation RPL27A +PWCOMMONS Viral mRNA Translation RPL15 +PWCOMMONS Viral mRNA Translation RPL11 +PWCOMMONS Viral mRNA Translation RPL29 +PWCOMMONS Viral mRNA Translation RPL30 +PWCOMMONS Viral mRNA Translation RPL8 +PWCOMMONS Viral mRNA Translation RPL22 +PWCOMMONS Viral mRNA Translation RPL28 +PWCOMMONS Viral mRNA Translation RPL7A +PWCOMMONS Viral mRNA Translation RPL35A +PWCOMMONS Viral mRNA Translation RPL31 +PWCOMMONS Viral mRNA Translation RPL26L1 +PWCOMMONS Viral mRNA Translation RPL26 +PWCOMMONS Viral mRNA Translation RPL18A +PWCOMMONS Viral mRNA Translation RPL14 +PWCOMMONS Viral mRNA Translation RPLP2 +PWCOMMONS Viral mRNA Translation RPL10 +PWCOMMONS Viral mRNA Translation RPL34 +PWCOMMONS Viral mRNA Translation RPL37 +PWCOMMONS Viral mRNA Translation RPL3L +PWCOMMONS Viral mRNA Translation RPL32 +PWCOMMONS Viral mRNA Translation RPL36 +PWCOMMONS Viral mRNA Translation RPLP1 +PWCOMMONS Viral mRNA Translation RPL23A +PWCOMMONS Viral mRNA Translation RPL24 +PWCOMMONS Viral mRNA Translation RPL6 +PWCOMMONS Viral mRNA Translation RPL18 +PWCOMMONS Viral mRNA Translation RPL5 +PWCOMMONS Viral mRNA Translation RPL23 +PWCOMMONS Viral mRNA Translation RPL19 +PWCOMMONS Viral mRNA Translation RPL41 +PWCOMMONS Viral mRNA Translation RPL7 +PWCOMMONS Viral mRNA Translation RPL13A +PWCOMMONS Viral mRNA Translation RPL27 +PWCOMMONS Viral mRNA Translation RPL17 +PWCOMMONS Viral mRNA Translation RPL3 +PWCOMMONS Viral mRNA Translation RPL10A +PWCOMMONS Viral mRNA Translation RPL21 +PWCOMMONS Viral mRNA Translation RPL4 +PWCOMMONS Viral mRNA Translation RPL35 +PWCOMMONS Viral mRNA Translation RPL13 +PWCOMMONS Viral mRNA Translation RPL39 +PWCOMMONS Viral mRNA Translation RPL38 +PWCOMMONS Viral mRNA Translation RPL36A +PWCOMMONS Viral mRNA Translation RPL9 +PWCOMMONS Viral mRNA Translation RPLP0 +PWCOMMONS Viral mRNA Translation UBA52 +PWCOMMONS Viral mRNA Translation RPL37A +PWCOMMONS Viral mRNA Translation RPL12 +PWCOMMONS Viral mRNA Translation GRSF1 +PWCOMMONS Viral mRNA Translation +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus RAN +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP153 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP85 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP35 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus AAAS +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP50 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP43 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP205 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP93 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP88 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUPL2 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP210 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP155 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus RANBP2 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus RAE1 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP188 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP214 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP54 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP62 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP107 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP133 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP160 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus NUP37 +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus HSPA1A +PWCOMMONS Export of Viral Ribonucleoproteins from Nucleus +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery RAN +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP153 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP85 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP35 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery AAAS +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP50 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP43 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP205 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP93 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP88 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUPL2 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP210 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP155 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery RANBP2 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery RAE1 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP188 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP214 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP54 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP62 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP107 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP133 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP160 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery NUP37 +PWCOMMONS NEP/NS2 Interacts with the Cellular Export Machinery +PWCOMMONS NADPH regeneration CROT +PWCOMMONS NADPH regeneration HSD17B4 +PWCOMMONS NADPH regeneration AMACR +PWCOMMONS NADPH regeneration ACOX3 +PWCOMMONS NADPH regeneration HACL1 +PWCOMMONS NADPH regeneration ACOX2 +PWCOMMONS NADPH regeneration ACOT8 +PWCOMMONS NADPH regeneration SLC27A2 +PWCOMMONS NADPH regeneration IDH1 +PWCOMMONS NADPH regeneration PHYH +PWCOMMONS NADPH regeneration +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter POLR3E +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter POLR3D +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter LZTS1 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter POLR2L +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter POLR2K +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter POLR2H +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter POLR3H +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter POLR2F +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter POLR3F +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter POLR3A +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter POLR2E +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter BRF1 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter BDP1 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter TBP +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter GTF3C2 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter GTF3C3 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter GTF3C4 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter GTF3C5 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter GTF3C1 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 2 Promoter +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NT5C2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PFKFB1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5O +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5F1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5J +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5G1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5L +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-ATP6 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5J2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-ATP8 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5H +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5I +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5C1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5D +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5A1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5B +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATP5E +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MLX +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MLXIPL +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) HPRT1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UQCRC1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UQCRB +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UQCR10 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UQCR +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UQCRC2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UQCRH +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UQCRQ +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UQCRFS1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-CYB +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) CYC1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-CO2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) COX8A +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) COX7C +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-CO3 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) COX6C +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) COX5B +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-CO1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) COX7A2L +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) COX4I1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) COX6A1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) COX7B +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) COX6B1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) COX5A +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PGLS +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GOT2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) HADH +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UPP1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PDHX +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PDHA1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PDHB +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) DLAT +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) DLD +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GOT1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PC +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PGK1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ADSL +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GCDH +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PCK1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MDH1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ATIC +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) OAT +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NP +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GYS2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ECHS1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) TXN +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SUCLG1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SUCLG2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ARG1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) KCNJ11 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) AMPD3 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) RPE +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GLRX +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SDHC +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SDHD +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SDHB +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SDHA +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) DPYD +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GART +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GPT +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ACLY +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) DPYS +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) AK1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MDH2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UMPS +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) CYCS +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFS3 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFS4 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFS6 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA5 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFS5 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFS1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFS2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFV2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFV3 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFV1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA4 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA11 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-ND3 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA13 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFB5 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFC1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA6 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFC2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA3 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFB3 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFB1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFAB1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-ND4 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-ND5 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFB9 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFB6 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFB4 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA8 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFB7 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA12 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFB2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-ND4L +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-ND2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFB10 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA7 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFB8 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFB11 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-ND6 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) MT-ND1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFS7 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA10 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFS8 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NDUFA9 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) VAMP2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NT5C1A +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) CTPS +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) FASN +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PRPS1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) DLST +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) OGDH +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ACACB +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GMPS +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GUK1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) IMPDH2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GDA +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NME1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) IMPDH1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ADSS +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) OTC +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) FH +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) INS +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SYT5 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PFAS +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SLC35D1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ASL +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UPB1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) AGPAT1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SLC25A21 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GPI +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UROD +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) CPOX +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UROS +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) XDH +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PAICS +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) CPS1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) TALDO1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ASS1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) CMPK1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ALAD +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) CS +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) CAT +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SLC25A1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PPOX +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) ACO2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) IDH3G +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) IDH3A +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) IDH3B +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) UGDH +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) RRM2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) RRM1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) G6PD +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) AMPD1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SLC25A11 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PPAT +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) TKT +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) FECH +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PPAP2C +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PCK2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SUCLA2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GBE1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) TXNRD1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PPAP2B +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) TPI1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) SLC25A10 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) G6PC +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PYCR1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) DGAT1 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) NME2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) RPIA +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) AMPD2 +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PGD +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) GSR +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) PPAP2A +PWCOMMONS Pentose phosphate pathway (hexose monophosphate shunt) +PWCOMMONS Influenza Virus Induced Apoptosis SLC25A6 +PWCOMMONS Influenza Virus Induced Apoptosis +PWCOMMONS HIV Life Cycle PPIA +PWCOMMONS HIV Life Cycle BANF1 +PWCOMMONS HIV Life Cycle CD4 +PWCOMMONS HIV Life Cycle XRCC6 +PWCOMMONS HIV Life Cycle XRCC5 +PWCOMMONS HIV Life Cycle FEN1 +PWCOMMONS HIV Life Cycle LIG4 +PWCOMMONS HIV Life Cycle XRCC4 +PWCOMMONS HIV Life Cycle GTF2B +PWCOMMONS HIV Life Cycle GTF2A1 +PWCOMMONS HIV Life Cycle GTF2A2 +PWCOMMONS HIV Life Cycle GTF2E2 +PWCOMMONS HIV Life Cycle GTF2E1 +PWCOMMONS HIV Life Cycle GTF2F1 +PWCOMMONS HIV Life Cycle GTF2F2 +PWCOMMONS HIV Life Cycle POLR2G +PWCOMMONS HIV Life Cycle POLR2B +PWCOMMONS HIV Life Cycle POLR2L +PWCOMMONS HIV Life Cycle POLR2A +PWCOMMONS HIV Life Cycle POLR2K +PWCOMMONS HIV Life Cycle POLR2H +PWCOMMONS HIV Life Cycle POLR2D +PWCOMMONS HIV Life Cycle POLR2C +PWCOMMONS HIV Life Cycle POLR2J +PWCOMMONS HIV Life Cycle POLR2I +PWCOMMONS HIV Life Cycle POLR2F +PWCOMMONS HIV Life Cycle POLR2E +PWCOMMONS HIV Life Cycle TAF9 +PWCOMMONS HIV Life Cycle TAF4 +PWCOMMONS HIV Life Cycle TAF13 +PWCOMMONS HIV Life Cycle TAF10 +PWCOMMONS HIV Life Cycle TAF1 +PWCOMMONS HIV Life Cycle TAF6 +PWCOMMONS HIV Life Cycle TAF12 +PWCOMMONS HIV Life Cycle TAF4B +PWCOMMONS HIV Life Cycle TAF5 +PWCOMMONS HIV Life Cycle TAF11 +PWCOMMONS HIV Life Cycle TBP +PWCOMMONS HIV Life Cycle ERCC2 +PWCOMMONS HIV Life Cycle GTF2H3 +PWCOMMONS HIV Life Cycle GTF2H4 +PWCOMMONS HIV Life Cycle GTF2H2 +PWCOMMONS HIV Life Cycle ERCC3 +PWCOMMONS HIV Life Cycle GTF2H1 +PWCOMMONS HIV Life Cycle CCNH +PWCOMMONS HIV Life Cycle CDK7 +PWCOMMONS HIV Life Cycle MNAT1 +PWCOMMONS HIV Life Cycle RNGTT +PWCOMMONS HIV Life Cycle CTDP1 +PWCOMMONS HIV Life Cycle TCEA1 +PWCOMMONS HIV Life Cycle ELL +PWCOMMONS HIV Life Cycle TCEB3 +PWCOMMONS HIV Life Cycle TCEB1 +PWCOMMONS HIV Life Cycle TCEB2 +PWCOMMONS HIV Life Cycle SSRP1 +PWCOMMONS HIV Life Cycle SUPT16H +PWCOMMONS HIV Life Cycle CCNT2 +PWCOMMONS HIV Life Cycle CDK9 +PWCOMMONS HIV Life Cycle CCNT1 +PWCOMMONS HIV Life Cycle SUPT4H1 +PWCOMMONS HIV Life Cycle TH1L +PWCOMMONS HIV Life Cycle WHSC2 +PWCOMMONS HIV Life Cycle RDBP +PWCOMMONS HIV Life Cycle COBRA1 +PWCOMMONS HIV Life Cycle NCBP2 +PWCOMMONS HIV Life Cycle NCBP1 +PWCOMMONS HIV Life Cycle RNMT +PWCOMMONS HIV Life Cycle KPNB1 +PWCOMMONS HIV Life Cycle RAN +PWCOMMONS HIV Life Cycle XPO1 +PWCOMMONS HIV Life Cycle RANBP1 +PWCOMMONS HIV Life Cycle NUP153 +PWCOMMONS HIV Life Cycle NUP85 +PWCOMMONS HIV Life Cycle NUP35 +PWCOMMONS HIV Life Cycle AAAS +PWCOMMONS HIV Life Cycle NUP50 +PWCOMMONS HIV Life Cycle NUP43 +PWCOMMONS HIV Life Cycle NUP205 +PWCOMMONS HIV Life Cycle NUP93 +PWCOMMONS HIV Life Cycle NUP88 +PWCOMMONS HIV Life Cycle NUPL2 +PWCOMMONS HIV Life Cycle NUP210 +PWCOMMONS HIV Life Cycle NUP155 +PWCOMMONS HIV Life Cycle RANBP2 +PWCOMMONS HIV Life Cycle RAE1 +PWCOMMONS HIV Life Cycle NUP188 +PWCOMMONS HIV Life Cycle NUP214 +PWCOMMONS HIV Life Cycle NUP54 +PWCOMMONS HIV Life Cycle NUP62 +PWCOMMONS HIV Life Cycle NUP107 +PWCOMMONS HIV Life Cycle NUP133 +PWCOMMONS HIV Life Cycle NUP160 +PWCOMMONS HIV Life Cycle NUP37 +PWCOMMONS HIV Life Cycle RANGAP1 +PWCOMMONS HIV Life Cycle +PWCOMMONS Early Phase of HIV Life Cycle PPIA +PWCOMMONS Early Phase of HIV Life Cycle BANF1 +PWCOMMONS Early Phase of HIV Life Cycle CD4 +PWCOMMONS Early Phase of HIV Life Cycle XRCC6 +PWCOMMONS Early Phase of HIV Life Cycle XRCC5 +PWCOMMONS Early Phase of HIV Life Cycle FEN1 +PWCOMMONS Early Phase of HIV Life Cycle LIG4 +PWCOMMONS Early Phase of HIV Life Cycle XRCC4 +PWCOMMONS Early Phase of HIV Life Cycle +PWCOMMONS Binding and entry of HIV virion PPIA +PWCOMMONS Binding and entry of HIV virion BANF1 +PWCOMMONS Binding and entry of HIV virion XRCC6 +PWCOMMONS Binding and entry of HIV virion XRCC5 +PWCOMMONS Binding and entry of HIV virion FEN1 +PWCOMMONS Binding and entry of HIV virion LIG4 +PWCOMMONS Binding and entry of HIV virion XRCC4 +PWCOMMONS Binding and entry of HIV virion CD4 +PWCOMMONS Binding and entry of HIV virion +PWCOMMONS Uncoating of the HIV Virion PPIA +PWCOMMONS Uncoating of the HIV Virion BANF1 +PWCOMMONS Uncoating of the HIV Virion XRCC6 +PWCOMMONS Uncoating of the HIV Virion XRCC5 +PWCOMMONS Uncoating of the HIV Virion FEN1 +PWCOMMONS Uncoating of the HIV Virion LIG4 +PWCOMMONS Uncoating of the HIV Virion XRCC4 +PWCOMMONS Uncoating of the HIV Virion +PWCOMMONS 3' -UTR-mediated translational regulation EIF4H +PWCOMMONS 3' -UTR-mediated translational regulation PABPC1 +PWCOMMONS 3' -UTR-mediated translational regulation EIF4B +PWCOMMONS 3' -UTR-mediated translational regulation EIF4E +PWCOMMONS 3' -UTR-mediated translational regulation EIF4G1 +PWCOMMONS 3' -UTR-mediated translational regulation EIF4A2 +PWCOMMONS 3' -UTR-mediated translational regulation EIF1AX +PWCOMMONS 3' -UTR-mediated translational regulation EIF2S3 +PWCOMMONS 3' -UTR-mediated translational regulation EIF2S2 +PWCOMMONS 3' -UTR-mediated translational regulation EIF2S1 +PWCOMMONS 3' -UTR-mediated translational regulation EIF3K +PWCOMMONS 3' -UTR-mediated translational regulation EIF3H +PWCOMMONS 3' -UTR-mediated translational regulation EIF3E +PWCOMMONS 3' -UTR-mediated translational regulation EIF3F +PWCOMMONS 3' -UTR-mediated translational regulation EIF3J +PWCOMMONS 3' -UTR-mediated translational regulation EIF3G +PWCOMMONS 3' -UTR-mediated translational regulation EIF3C +PWCOMMONS 3' -UTR-mediated translational regulation EIF3A +PWCOMMONS 3' -UTR-mediated translational regulation EIF3I +PWCOMMONS 3' -UTR-mediated translational regulation EIF3D +PWCOMMONS 3' -UTR-mediated translational regulation EIF3B +PWCOMMONS 3' -UTR-mediated translational regulation RPS23 +PWCOMMONS 3' -UTR-mediated translational regulation RPS16 +PWCOMMONS 3' -UTR-mediated translational regulation RPS12 +PWCOMMONS 3' -UTR-mediated translational regulation RPS29 +PWCOMMONS 3' -UTR-mediated translational regulation RPSA +PWCOMMONS 3' -UTR-mediated translational regulation RPS21 +PWCOMMONS 3' -UTR-mediated translational regulation RPS27A +PWCOMMONS 3' -UTR-mediated translational regulation RPS20 +PWCOMMONS 3' -UTR-mediated translational regulation RPS15 +PWCOMMONS 3' -UTR-mediated translational regulation RPS24 +PWCOMMONS 3' -UTR-mediated translational regulation RPS9 +PWCOMMONS 3' -UTR-mediated translational regulation RPS10 +PWCOMMONS 3' -UTR-mediated translational regulation RPS28 +PWCOMMONS 3' -UTR-mediated translational regulation RPS2 +PWCOMMONS 3' -UTR-mediated translational regulation RPS19 +PWCOMMONS 3' -UTR-mediated translational regulation RPS4X +PWCOMMONS 3' -UTR-mediated translational regulation RPS18 +PWCOMMONS 3' -UTR-mediated translational regulation RPS8 +PWCOMMONS 3' -UTR-mediated translational regulation RPS3 +PWCOMMONS 3' -UTR-mediated translational regulation RPS4Y1 +PWCOMMONS 3' -UTR-mediated translational regulation RPS25 +PWCOMMONS 3' -UTR-mediated translational regulation RPS14 +PWCOMMONS 3' -UTR-mediated translational regulation RPS17 +PWCOMMONS 3' -UTR-mediated translational regulation RPS26 +PWCOMMONS 3' -UTR-mediated translational regulation RPS11 +PWCOMMONS 3' -UTR-mediated translational regulation RPS5 +PWCOMMONS 3' -UTR-mediated translational regulation FAU +PWCOMMONS 3' -UTR-mediated translational regulation RPS15A +PWCOMMONS 3' -UTR-mediated translational regulation RPS13 +PWCOMMONS 3' -UTR-mediated translational regulation RPS6 +PWCOMMONS 3' -UTR-mediated translational regulation RPS3A +PWCOMMONS 3' -UTR-mediated translational regulation RPS7 +PWCOMMONS 3' -UTR-mediated translational regulation RPS27 +PWCOMMONS 3' -UTR-mediated translational regulation RPL27A +PWCOMMONS 3' -UTR-mediated translational regulation RPL15 +PWCOMMONS 3' -UTR-mediated translational regulation RPL11 +PWCOMMONS 3' -UTR-mediated translational regulation RPL29 +PWCOMMONS 3' -UTR-mediated translational regulation RPL30 +PWCOMMONS 3' -UTR-mediated translational regulation RPL8 +PWCOMMONS 3' -UTR-mediated translational regulation RPL22 +PWCOMMONS 3' -UTR-mediated translational regulation RPL28 +PWCOMMONS 3' -UTR-mediated translational regulation RPL7A +PWCOMMONS 3' -UTR-mediated translational regulation RPL31 +PWCOMMONS 3' -UTR-mediated translational regulation RPL35A +PWCOMMONS 3' -UTR-mediated translational regulation RPL26L1 +PWCOMMONS 3' -UTR-mediated translational regulation RPL26 +PWCOMMONS 3' -UTR-mediated translational regulation RPL18A +PWCOMMONS 3' -UTR-mediated translational regulation RPL14 +PWCOMMONS 3' -UTR-mediated translational regulation RPLP2 +PWCOMMONS 3' -UTR-mediated translational regulation RPL10 +PWCOMMONS 3' -UTR-mediated translational regulation RPL34 +PWCOMMONS 3' -UTR-mediated translational regulation RPL37 +PWCOMMONS 3' -UTR-mediated translational regulation RPL32 +PWCOMMONS 3' -UTR-mediated translational regulation RPL3L +PWCOMMONS 3' -UTR-mediated translational regulation RPL36 +PWCOMMONS 3' -UTR-mediated translational regulation RPLP1 +PWCOMMONS 3' -UTR-mediated translational regulation RPL23A +PWCOMMONS 3' -UTR-mediated translational regulation RPL24 +PWCOMMONS 3' -UTR-mediated translational regulation RPL6 +PWCOMMONS 3' -UTR-mediated translational regulation RPL18 +PWCOMMONS 3' -UTR-mediated translational regulation RPL5 +PWCOMMONS 3' -UTR-mediated translational regulation RPL19 +PWCOMMONS 3' -UTR-mediated translational regulation RPL23 +PWCOMMONS 3' -UTR-mediated translational regulation RPL41 +PWCOMMONS 3' -UTR-mediated translational regulation RPL7 +PWCOMMONS 3' -UTR-mediated translational regulation RPL27 +PWCOMMONS 3' -UTR-mediated translational regulation RPL17 +PWCOMMONS 3' -UTR-mediated translational regulation RPL3 +PWCOMMONS 3' -UTR-mediated translational regulation RPL10A +PWCOMMONS 3' -UTR-mediated translational regulation RPL21 +PWCOMMONS 3' -UTR-mediated translational regulation RPL4 +PWCOMMONS 3' -UTR-mediated translational regulation RPL35 +PWCOMMONS 3' -UTR-mediated translational regulation RPL13 +PWCOMMONS 3' -UTR-mediated translational regulation RPL39 +PWCOMMONS 3' -UTR-mediated translational regulation RPL36A +PWCOMMONS 3' -UTR-mediated translational regulation RPL38 +PWCOMMONS 3' -UTR-mediated translational regulation RPL9 +PWCOMMONS 3' -UTR-mediated translational regulation RPLP0 +PWCOMMONS 3' -UTR-mediated translational regulation UBA52 +PWCOMMONS 3' -UTR-mediated translational regulation RPL37A +PWCOMMONS 3' -UTR-mediated translational regulation RPL12 +PWCOMMONS 3' -UTR-mediated translational regulation +PWCOMMONS SOS-mediated signalling RAF1 +PWCOMMONS SOS-mediated signalling YWHAB +PWCOMMONS SOS-mediated signalling MAP2K1 +PWCOMMONS SOS-mediated signalling RPS6KA5 +PWCOMMONS SOS-mediated signalling MAPK3 +PWCOMMONS SOS-mediated signalling ATF1 +PWCOMMONS SOS-mediated signalling CREB1 +PWCOMMONS SOS-mediated signalling MAPK1 +PWCOMMONS SOS-mediated signalling SOS1 +PWCOMMONS SOS-mediated signalling SHC1 +PWCOMMONS SOS-mediated signalling +PWCOMMONS Complement cascade C6 +PWCOMMONS Complement cascade C7 +PWCOMMONS Complement cascade C5 +PWCOMMONS Complement cascade C8A +PWCOMMONS Complement cascade C8B +PWCOMMONS Complement cascade C8G +PWCOMMONS Complement cascade C4A +PWCOMMONS Complement cascade C2 +PWCOMMONS Complement cascade C3 +PWCOMMONS Complement cascade C1QC +PWCOMMONS Complement cascade C1QA +PWCOMMONS Complement cascade C1QB +PWCOMMONS Complement cascade C1S +PWCOMMONS Complement cascade C1R +PWCOMMONS Complement cascade MBL2 +PWCOMMONS Complement cascade MASP1 +PWCOMMONS Complement cascade CFD +PWCOMMONS Complement cascade CFB +PWCOMMONS Complement cascade +PWCOMMONS Activation of C3 and C5 C2 +PWCOMMONS Activation of C3 and C5 C3 +PWCOMMONS Activation of C3 and C5 C9 +PWCOMMONS Activation of C3 and C5 C6 +PWCOMMONS Activation of C3 and C5 C7 +PWCOMMONS Activation of C3 and C5 C5 +PWCOMMONS Activation of C3 and C5 C8A +PWCOMMONS Activation of C3 and C5 C8B +PWCOMMONS Activation of C3 and C5 C8G +PWCOMMONS Activation of C3 and C5 +PWCOMMONS Initial triggering of complement C2 +PWCOMMONS Initial triggering of complement C3 +PWCOMMONS Initial triggering of complement C9 +PWCOMMONS Initial triggering of complement C6 +PWCOMMONS Initial triggering of complement C7 +PWCOMMONS Initial triggering of complement C5 +PWCOMMONS Initial triggering of complement C8A +PWCOMMONS Initial triggering of complement C8B +PWCOMMONS Initial triggering of complement C8G +PWCOMMONS Initial triggering of complement C1QC +PWCOMMONS Initial triggering of complement C1QA +PWCOMMONS Initial triggering of complement C1QB +PWCOMMONS Initial triggering of complement C1S +PWCOMMONS Initial triggering of complement C1R +PWCOMMONS Initial triggering of complement MBL2 +PWCOMMONS Initial triggering of complement MASP1 +PWCOMMONS Initial triggering of complement CFD +PWCOMMONS Initial triggering of complement CFB +PWCOMMONS Initial triggering of complement +PWCOMMONS Alternative complement activation C4A +PWCOMMONS Alternative complement activation C2 +PWCOMMONS Alternative complement activation C9 +PWCOMMONS Alternative complement activation C6 +PWCOMMONS Alternative complement activation C7 +PWCOMMONS Alternative complement activation C5 +PWCOMMONS Alternative complement activation C8A +PWCOMMONS Alternative complement activation C8B +PWCOMMONS Alternative complement activation C8G +PWCOMMONS Alternative complement activation CFD +PWCOMMONS Alternative complement activation CFB +PWCOMMONS Alternative complement activation +PWCOMMONS Metabolism of lipids and lipoproteins CROT +PWCOMMONS Metabolism of lipids and lipoproteins SLC27A2 +PWCOMMONS Metabolism of lipids and lipoproteins HSD17B4 +PWCOMMONS Metabolism of lipids and lipoproteins AMACR +PWCOMMONS Metabolism of lipids and lipoproteins ACOX3 +PWCOMMONS Metabolism of lipids and lipoproteins HACL1 +PWCOMMONS Metabolism of lipids and lipoproteins ACOX2 +PWCOMMONS Metabolism of lipids and lipoproteins ACOT8 +PWCOMMONS Metabolism of lipids and lipoproteins PHYH +PWCOMMONS Metabolism of lipids and lipoproteins IDH1 +PWCOMMONS Metabolism of lipids and lipoproteins SLC25A17 +PWCOMMONS Metabolism of lipids and lipoproteins PPAP2C +PWCOMMONS Metabolism of lipids and lipoproteins GNPAT +PWCOMMONS Metabolism of lipids and lipoproteins AGPS +PWCOMMONS Metabolism of lipids and lipoproteins FAR2 +PWCOMMONS Metabolism of lipids and lipoproteins DGAT1 +PWCOMMONS Metabolism of lipids and lipoproteins FAR1 +PWCOMMONS Metabolism of lipids and lipoproteins PPAP2A +PWCOMMONS Metabolism of lipids and lipoproteins AGPAT1 +PWCOMMONS Metabolism of lipids and lipoproteins PPAP2B +PWCOMMONS Metabolism of lipids and lipoproteins ABCD1 +PWCOMMONS Metabolism of lipids and lipoproteins ACAA1 +PWCOMMONS Metabolism of lipids and lipoproteins PNLIPRP2 +PWCOMMONS Metabolism of lipids and lipoproteins CEL +PWCOMMONS Metabolism of lipids and lipoproteins PNLIP +PWCOMMONS Metabolism of lipids and lipoproteins CLPS +PWCOMMONS Metabolism of lipids and lipoproteins ABCG5 +PWCOMMONS Metabolism of lipids and lipoproteins ABCG8 +PWCOMMONS Metabolism of lipids and lipoproteins APOA2 +PWCOMMONS Metabolism of lipids and lipoproteins APOC3 +PWCOMMONS Metabolism of lipids and lipoproteins APOE +PWCOMMONS Metabolism of lipids and lipoproteins APOC2 +PWCOMMONS Metabolism of lipids and lipoproteins APOA4 +PWCOMMONS Metabolism of lipids and lipoproteins APOA1 +PWCOMMONS Metabolism of lipids and lipoproteins APOB +PWCOMMONS Metabolism of lipids and lipoproteins LCAT +PWCOMMONS Metabolism of lipids and lipoproteins LDLR +PWCOMMONS Metabolism of lipids and lipoproteins CUBN +PWCOMMONS Metabolism of lipids and lipoproteins AMN +PWCOMMONS Metabolism of lipids and lipoproteins CETP +PWCOMMONS Metabolism of lipids and lipoproteins APOA5 +PWCOMMONS Metabolism of lipids and lipoproteins LDLRAP1 +PWCOMMONS Metabolism of lipids and lipoproteins ABCA1 +PWCOMMONS Metabolism of lipids and lipoproteins LIPC +PWCOMMONS Metabolism of lipids and lipoproteins ALB +PWCOMMONS Metabolism of lipids and lipoproteins LPL +PWCOMMONS Metabolism of lipids and lipoproteins A2M +PWCOMMONS Metabolism of lipids and lipoproteins P4HB +PWCOMMONS Metabolism of lipids and lipoproteins MTTP +PWCOMMONS Metabolism of lipids and lipoproteins SAR1B +PWCOMMONS Metabolism of lipids and lipoproteins ACADS +PWCOMMONS Metabolism of lipids and lipoproteins ATP5O +PWCOMMONS Metabolism of lipids and lipoproteins ATP5F1 +PWCOMMONS Metabolism of lipids and lipoproteins ATP5J +PWCOMMONS Metabolism of lipids and lipoproteins ATP5G1 +PWCOMMONS Metabolism of lipids and lipoproteins ATP5L +PWCOMMONS Metabolism of lipids and lipoproteins MT-ATP6 +PWCOMMONS Metabolism of lipids and lipoproteins ATP5J2 +PWCOMMONS Metabolism of lipids and lipoproteins MT-ATP8 +PWCOMMONS Metabolism of lipids and lipoproteins ATP5H +PWCOMMONS Metabolism of lipids and lipoproteins ATP5I +PWCOMMONS Metabolism of lipids and lipoproteins ATP5C1 +PWCOMMONS Metabolism of lipids and lipoproteins ATP5D +PWCOMMONS Metabolism of lipids and lipoproteins ATP5A1 +PWCOMMONS Metabolism of lipids and lipoproteins ATP5B +PWCOMMONS Metabolism of lipids and lipoproteins ATP5E +PWCOMMONS Metabolism of lipids and lipoproteins UQCRC1 +PWCOMMONS Metabolism of lipids and lipoproteins UQCRB +PWCOMMONS Metabolism of lipids and lipoproteins UQCR10 +PWCOMMONS Metabolism of lipids and lipoproteins UQCR +PWCOMMONS Metabolism of lipids and lipoproteins UQCRC2 +PWCOMMONS Metabolism of lipids and lipoproteins UQCRH +PWCOMMONS Metabolism of lipids and lipoproteins UQCRQ +PWCOMMONS Metabolism of lipids and lipoproteins UQCRFS1 +PWCOMMONS Metabolism of lipids and lipoproteins MT-CYB +PWCOMMONS Metabolism of lipids and lipoproteins CYC1 +PWCOMMONS Metabolism of lipids and lipoproteins CYCS +PWCOMMONS Metabolism of lipids and lipoproteins MT-CO2 +PWCOMMONS Metabolism of lipids and lipoproteins COX8A +PWCOMMONS Metabolism of lipids and lipoproteins COX7C +PWCOMMONS Metabolism of lipids and lipoproteins MT-CO3 +PWCOMMONS Metabolism of lipids and lipoproteins COX6C +PWCOMMONS Metabolism of lipids and lipoproteins COX5B +PWCOMMONS Metabolism of lipids and lipoproteins MT-CO1 +PWCOMMONS Metabolism of lipids and lipoproteins COX7A2L +PWCOMMONS Metabolism of lipids and lipoproteins COX4I1 +PWCOMMONS Metabolism of lipids and lipoproteins COX6A1 +PWCOMMONS Metabolism of lipids and lipoproteins COX7B +PWCOMMONS Metabolism of lipids and lipoproteins COX6B1 +PWCOMMONS Metabolism of lipids and lipoproteins COX5A +PWCOMMONS Metabolism of lipids and lipoproteins ETFA +PWCOMMONS Metabolism of lipids and lipoproteins ETFB +PWCOMMONS Metabolism of lipids and lipoproteins HADH +PWCOMMONS Metabolism of lipids and lipoproteins NDUFS3 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFS4 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFS6 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA5 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFS5 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFS1 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFS2 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFV2 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFV3 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFV1 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA4 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA11 +PWCOMMONS Metabolism of lipids and lipoproteins MT-ND3 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA13 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFB5 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFC1 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA6 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFC2 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA3 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFB3 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFB1 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFAB1 +PWCOMMONS Metabolism of lipids and lipoproteins MT-ND4 +PWCOMMONS Metabolism of lipids and lipoproteins MT-ND5 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA1 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFB9 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFB6 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFB4 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA8 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFB7 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA12 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFB2 +PWCOMMONS Metabolism of lipids and lipoproteins MT-ND4L +PWCOMMONS Metabolism of lipids and lipoproteins MT-ND2 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFB10 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA7 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA2 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFB8 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFB11 +PWCOMMONS Metabolism of lipids and lipoproteins MT-ND6 +PWCOMMONS Metabolism of lipids and lipoproteins MT-ND1 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFS7 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA10 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFS8 +PWCOMMONS Metabolism of lipids and lipoproteins NDUFA9 +PWCOMMONS Metabolism of lipids and lipoproteins VAMP2 +PWCOMMONS Metabolism of lipids and lipoproteins ECHS1 +PWCOMMONS Metabolism of lipids and lipoproteins HADHB +PWCOMMONS Metabolism of lipids and lipoproteins HADHA +PWCOMMONS Metabolism of lipids and lipoproteins INS +PWCOMMONS Metabolism of lipids and lipoproteins SYT5 +PWCOMMONS Metabolism of lipids and lipoproteins KCNJ11 +PWCOMMONS Metabolism of lipids and lipoproteins ACADM +PWCOMMONS Metabolism of lipids and lipoproteins ACADL +PWCOMMONS Metabolism of lipids and lipoproteins ACADVL +PWCOMMONS Metabolism of lipids and lipoproteins UROD +PWCOMMONS Metabolism of lipids and lipoproteins DCI +PWCOMMONS Metabolism of lipids and lipoproteins CPOX +PWCOMMONS Metabolism of lipids and lipoproteins UROS +PWCOMMONS Metabolism of lipids and lipoproteins DLST +PWCOMMONS Metabolism of lipids and lipoproteins OGDH +PWCOMMONS Metabolism of lipids and lipoproteins DLD +PWCOMMONS Metabolism of lipids and lipoproteins ALAD +PWCOMMONS Metabolism of lipids and lipoproteins CS +PWCOMMONS Metabolism of lipids and lipoproteins PPOX +PWCOMMONS Metabolism of lipids and lipoproteins ACO2 +PWCOMMONS Metabolism of lipids and lipoproteins IDH3G +PWCOMMONS Metabolism of lipids and lipoproteins IDH3A +PWCOMMONS Metabolism of lipids and lipoproteins IDH3B +PWCOMMONS Metabolism of lipids and lipoproteins SUCLG1 +PWCOMMONS Metabolism of lipids and lipoproteins SUCLG2 +PWCOMMONS Metabolism of lipids and lipoproteins SDHC +PWCOMMONS Metabolism of lipids and lipoproteins SDHD +PWCOMMONS Metabolism of lipids and lipoproteins SDHB +PWCOMMONS Metabolism of lipids and lipoproteins SDHA +PWCOMMONS Metabolism of lipids and lipoproteins FECH +PWCOMMONS Metabolism of lipids and lipoproteins DECR1 +PWCOMMONS Metabolism of lipids and lipoproteins SUCLA2 +PWCOMMONS Metabolism of lipids and lipoproteins MDH2 +PWCOMMONS Metabolism of lipids and lipoproteins FH +PWCOMMONS Metabolism of lipids and lipoproteins SLC25A20 +PWCOMMONS Metabolism of lipids and lipoproteins CPT1B +PWCOMMONS Metabolism of lipids and lipoproteins CPT2 +PWCOMMONS Metabolism of lipids and lipoproteins FASN +PWCOMMONS Metabolism of lipids and lipoproteins ACACB +PWCOMMONS Metabolism of lipids and lipoproteins GPAM +PWCOMMONS Metabolism of lipids and lipoproteins GK +PWCOMMONS Metabolism of lipids and lipoproteins GPD1 +PWCOMMONS Metabolism of lipids and lipoproteins AGPAT5 +PWCOMMONS Metabolism of lipids and lipoproteins AGPAT2 +PWCOMMONS Metabolism of lipids and lipoproteins AGPAT4 +PWCOMMONS Metabolism of lipids and lipoproteins AGPAT3 +PWCOMMONS Metabolism of lipids and lipoproteins CYP46A1 +PWCOMMONS Metabolism of lipids and lipoproteins ABCB11 +PWCOMMONS Metabolism of lipids and lipoproteins CYP39A1 +PWCOMMONS Metabolism of lipids and lipoproteins CYP8B1 +PWCOMMONS Metabolism of lipids and lipoproteins BAAT +PWCOMMONS Metabolism of lipids and lipoproteins HSD3B7 +PWCOMMONS Metabolism of lipids and lipoproteins AKR1C4 +PWCOMMONS Metabolism of lipids and lipoproteins SLC27A5 +PWCOMMONS Metabolism of lipids and lipoproteins AKR1D1 +PWCOMMONS Metabolism of lipids and lipoproteins CYP27A1 +PWCOMMONS Metabolism of lipids and lipoproteins CYP7A1 +PWCOMMONS Metabolism of lipids and lipoproteins CH25H +PWCOMMONS Metabolism of lipids and lipoproteins CYP7B1 +PWCOMMONS Metabolism of lipids and lipoproteins SLCO1B1 +PWCOMMONS Metabolism of lipids and lipoproteins SLCO1B3 +PWCOMMONS Metabolism of lipids and lipoproteins FABP6 +PWCOMMONS Metabolism of lipids and lipoproteins ABCC3 +PWCOMMONS Metabolism of lipids and lipoproteins SLC10A1 +PWCOMMONS Metabolism of lipids and lipoproteins SLCO1A2 +PWCOMMONS Metabolism of lipids and lipoproteins SLC10A2 +PWCOMMONS Metabolism of lipids and lipoproteins GGPS1 +PWCOMMONS Metabolism of lipids and lipoproteins EBP +PWCOMMONS Metabolism of lipids and lipoproteins SQLE +PWCOMMONS Metabolism of lipids and lipoproteins CYP11B1 +PWCOMMONS Metabolism of lipids and lipoproteins LBR +PWCOMMONS Metabolism of lipids and lipoproteins MVK +PWCOMMONS Metabolism of lipids and lipoproteins CYP11B2 +PWCOMMONS Metabolism of lipids and lipoproteins FDFT1 +PWCOMMONS Metabolism of lipids and lipoproteins STAR +PWCOMMONS Metabolism of lipids and lipoproteins CYP21A2 +PWCOMMONS Metabolism of lipids and lipoproteins CYP51A1 +PWCOMMONS Metabolism of lipids and lipoproteins NSDHL +PWCOMMONS Metabolism of lipids and lipoproteins CYP11A1 +PWCOMMONS Metabolism of lipids and lipoproteins DHCR24 +PWCOMMONS Metabolism of lipids and lipoproteins CYP19A1 +PWCOMMONS Metabolism of lipids and lipoproteins DHCR7 +PWCOMMONS Metabolism of lipids and lipoproteins HSD17B3 +PWCOMMONS Metabolism of lipids and lipoproteins TM7SF2 +PWCOMMONS Metabolism of lipids and lipoproteins PMVK +PWCOMMONS Metabolism of lipids and lipoproteins SC5DL +PWCOMMONS Metabolism of lipids and lipoproteins SC4MOL +PWCOMMONS Metabolism of lipids and lipoproteins MVD +PWCOMMONS Metabolism of lipids and lipoproteins LSS +PWCOMMONS Metabolism of lipids and lipoproteins CYP17A1 +PWCOMMONS Metabolism of lipids and lipoproteins HMGCS1 +PWCOMMONS Metabolism of lipids and lipoproteins HSD11B1 +PWCOMMONS Metabolism of lipids and lipoproteins FABP4 +PWCOMMONS Metabolism of lipids and lipoproteins LIPE +PWCOMMONS Metabolism of lipids and lipoproteins MGLL +PWCOMMONS Metabolism of lipids and lipoproteins PLIN +PWCOMMONS Metabolism of lipids and lipoproteins CAV1 +PWCOMMONS Metabolism of lipids and lipoproteins ABHD5 +PWCOMMONS Metabolism of lipids and lipoproteins HMGCS2 +PWCOMMONS Metabolism of lipids and lipoproteins HMGCL +PWCOMMONS Metabolism of lipids and lipoproteins ACAT1 +PWCOMMONS Metabolism of lipids and lipoproteins BDH1 +PWCOMMONS Metabolism of lipids and lipoproteins OXCT1 +PWCOMMONS Metabolism of lipids and lipoproteins GPD2 +PWCOMMONS Metabolism of lipids and lipoproteins +PWCOMMONS Hormone-sensitive lipase (HSL)-mediated triacylglycerol hydrolysis LIPE +PWCOMMONS Hormone-sensitive lipase (HSL)-mediated triacylglycerol hydrolysis MGLL +PWCOMMONS Hormone-sensitive lipase (HSL)-mediated triacylglycerol hydrolysis PLIN +PWCOMMONS Hormone-sensitive lipase (HSL)-mediated triacylglycerol hydrolysis CAV1 +PWCOMMONS Hormone-sensitive lipase (HSL)-mediated triacylglycerol hydrolysis ABHD5 +PWCOMMONS Hormone-sensitive lipase (HSL)-mediated triacylglycerol hydrolysis +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5O +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5F1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5J +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5G1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5L +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-ATP6 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5J2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-ATP8 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5H +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5I +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5C1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5D +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5A1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5B +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ATP5E +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation UQCRC1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation UQCRB +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation UQCR10 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation UQCR +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation UQCRC2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation UQCRH +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation UQCRQ +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation UQCRFS1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-CYB +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation CYC1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation CYCS +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-CO2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation COX8A +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation COX7C +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-CO3 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation COX6C +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation COX5B +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-CO1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation COX7A2L +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation COX4I1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation COX6A1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation COX7B +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation COX6B1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation COX5A +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ETFA +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ETFB +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation HADH +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFS3 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFS4 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFS6 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA5 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFS5 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFS1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFS2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFV2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFV3 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFV1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA4 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA11 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-ND3 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA13 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFB5 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFC1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA6 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFC2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA3 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFB3 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFB1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFAB1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-ND4 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-ND5 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFB9 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFB6 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFB4 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA8 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFB7 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA12 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFB2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-ND4L +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-ND2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFB10 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA7 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFB8 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFB11 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-ND6 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MT-ND1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFS7 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA10 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFS8 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation NDUFA9 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation VAMP2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ECHS1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation HADHB +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation HADHA +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation INS +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation SYT5 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation KCNJ11 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ACADM +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ACADL +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ACADVL +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation UROD +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation DCI +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation CPOX +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation UROS +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation DLST +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation OGDH +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation DLD +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ALAD +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation CS +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation PPOX +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation ACO2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation IDH3G +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation IDH3A +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation IDH3B +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation SUCLG1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation SUCLG2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation SDHC +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation SDHD +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation SDHB +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation SDHA +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation FECH +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation DECR1 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation SUCLA2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation MDH2 +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation FH +PWCOMMONS Mitochondrial Fatty Acid Beta-Oxidation +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids UROD +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids DCI +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5O +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5F1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5J +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5G1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5L +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-ATP6 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5J2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-ATP8 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5H +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5I +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5C1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5D +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5A1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5B +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ATP5E +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids UQCRC1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids UQCRB +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids UQCR10 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids UQCR +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids UQCRC2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids UQCRH +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids UQCRQ +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids UQCRFS1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-CYB +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids CYC1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids HADHB +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids HADHA +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids CPOX +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids UROS +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-CO2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids COX8A +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids COX7C +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-CO3 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids COX6C +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids COX5B +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-CO1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids COX7A2L +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids COX4I1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids COX6A1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids COX7B +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids COX6B1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids COX5A +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids DLST +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids OGDH +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids DLD +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids HADH +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ETFA +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ETFB +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ALAD +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids CS +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ECHS1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids PPOX +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ACO2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids IDH3G +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids IDH3A +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids IDH3B +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids SUCLG1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids SUCLG2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids KCNJ11 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids SDHC +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids SDHD +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids SDHB +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids SDHA +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids FECH +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids DECR1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids SUCLA2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids CYCS +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ACADL +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MDH2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFS3 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFS4 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFS6 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA5 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFS5 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFS1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFS2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFV2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFV3 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFV1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA4 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA11 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-ND3 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA13 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFB5 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFC1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA6 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFC2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA3 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFB3 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFB1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFAB1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-ND4 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-ND5 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFB9 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFB6 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFB4 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA8 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFB7 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA12 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFB2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-ND4L +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-ND2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFB10 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA7 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFB8 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFB11 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-ND6 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids MT-ND1 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFS7 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA10 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFS8 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids NDUFA9 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids VAMP2 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids FH +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids INS +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids SYT5 +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids ACADM +PWCOMMONS mitochondrial fatty acid beta-oxidation of unsaturated fatty acids +PWCOMMONS Lipoprotein metabolism APOC3 +PWCOMMONS Lipoprotein metabolism APOE +PWCOMMONS Lipoprotein metabolism APOC2 +PWCOMMONS Lipoprotein metabolism APOA4 +PWCOMMONS Lipoprotein metabolism APOA1 +PWCOMMONS Lipoprotein metabolism APOB +PWCOMMONS Lipoprotein metabolism LCAT +PWCOMMONS Lipoprotein metabolism LDLR +PWCOMMONS Lipoprotein metabolism CUBN +PWCOMMONS Lipoprotein metabolism AMN +PWCOMMONS Lipoprotein metabolism CETP +PWCOMMONS Lipoprotein metabolism APOA5 +PWCOMMONS Lipoprotein metabolism LDLRAP1 +PWCOMMONS Lipoprotein metabolism ABCA1 +PWCOMMONS Lipoprotein metabolism LIPC +PWCOMMONS Lipoprotein metabolism ALB +PWCOMMONS Lipoprotein metabolism LPL +PWCOMMONS Lipoprotein metabolism A2M +PWCOMMONS Lipoprotein metabolism P4HB +PWCOMMONS Lipoprotein metabolism MTTP +PWCOMMONS Lipoprotein metabolism SAR1B +PWCOMMONS Lipoprotein metabolism +PWCOMMONS LDL endocytosis LDLR +PWCOMMONS LDL endocytosis APOB +PWCOMMONS LDL endocytosis APOE +PWCOMMONS LDL endocytosis LIPC +PWCOMMONS LDL endocytosis +PWCOMMONS HDL-mediated lipid transport APOC3 +PWCOMMONS HDL-mediated lipid transport APOE +PWCOMMONS HDL-mediated lipid transport APOC2 +PWCOMMONS HDL-mediated lipid transport APOA4 +PWCOMMONS HDL-mediated lipid transport APOA1 +PWCOMMONS HDL-mediated lipid transport APOB +PWCOMMONS HDL-mediated lipid transport LCAT +PWCOMMONS HDL-mediated lipid transport LDLR +PWCOMMONS HDL-mediated lipid transport CUBN +PWCOMMONS HDL-mediated lipid transport AMN +PWCOMMONS HDL-mediated lipid transport CETP +PWCOMMONS HDL-mediated lipid transport APOA5 +PWCOMMONS HDL-mediated lipid transport LDLRAP1 +PWCOMMONS HDL-mediated lipid transport ABCA1 +PWCOMMONS HDL-mediated lipid transport LIPC +PWCOMMONS HDL-mediated lipid transport ALB +PWCOMMONS HDL-mediated lipid transport LPL +PWCOMMONS HDL-mediated lipid transport A2M +PWCOMMONS HDL-mediated lipid transport +PWCOMMONS Chylomicron-mediated lipid transport APOA2 +PWCOMMONS Chylomicron-mediated lipid transport APOC2 +PWCOMMONS Chylomicron-mediated lipid transport APOA4 +PWCOMMONS Chylomicron-mediated lipid transport APOA1 +PWCOMMONS Chylomicron-mediated lipid transport APOE +PWCOMMONS Chylomicron-mediated lipid transport APOB +PWCOMMONS Chylomicron-mediated lipid transport LDLR +PWCOMMONS Chylomicron-mediated lipid transport P4HB +PWCOMMONS Chylomicron-mediated lipid transport MTTP +PWCOMMONS Chylomicron-mediated lipid transport APOA5 +PWCOMMONS Chylomicron-mediated lipid transport LDLRAP1 +PWCOMMONS Chylomicron-mediated lipid transport LIPC +PWCOMMONS Chylomicron-mediated lipid transport SAR1B +PWCOMMONS Chylomicron-mediated lipid transport LPL +PWCOMMONS Chylomicron-mediated lipid transport +PWCOMMONS Trafficking of dietary sterols ABCG8 +PWCOMMONS Trafficking of dietary sterols +PWCOMMONS Triacylglyceride Biosynthesis ACACB +PWCOMMONS Triacylglyceride Biosynthesis PPAP2C +PWCOMMONS Triacylglyceride Biosynthesis PPAP2A +PWCOMMONS Triacylglyceride Biosynthesis PPAP2B +PWCOMMONS Triacylglyceride Biosynthesis GPAM +PWCOMMONS Triacylglyceride Biosynthesis GK +PWCOMMONS Triacylglyceride Biosynthesis GPD1 +PWCOMMONS Triacylglyceride Biosynthesis AGPAT5 +PWCOMMONS Triacylglyceride Biosynthesis AGPAT2 +PWCOMMONS Triacylglyceride Biosynthesis AGPAT4 +PWCOMMONS Triacylglyceride Biosynthesis AGPAT3 +PWCOMMONS Triacylglyceride Biosynthesis AGPAT1 +PWCOMMONS Triacylglyceride Biosynthesis DGAT1 +PWCOMMONS Triacylglyceride Biosynthesis +PWCOMMONS Fatty Acyl-CoA Biosynthesis PPAP2C +PWCOMMONS Fatty Acyl-CoA Biosynthesis GK +PWCOMMONS Fatty Acyl-CoA Biosynthesis GPD1 +PWCOMMONS Fatty Acyl-CoA Biosynthesis AGPAT5 +PWCOMMONS Fatty Acyl-CoA Biosynthesis DGAT1 +PWCOMMONS Fatty Acyl-CoA Biosynthesis AGPAT2 +PWCOMMONS Fatty Acyl-CoA Biosynthesis AGPAT4 +PWCOMMONS Fatty Acyl-CoA Biosynthesis AGPAT3 +PWCOMMONS Fatty Acyl-CoA Biosynthesis PPAP2A +PWCOMMONS Fatty Acyl-CoA Biosynthesis AGPAT1 +PWCOMMONS Fatty Acyl-CoA Biosynthesis PPAP2B +PWCOMMONS Fatty Acyl-CoA Biosynthesis FASN +PWCOMMONS Fatty Acyl-CoA Biosynthesis ACACB +PWCOMMONS Fatty Acyl-CoA Biosynthesis +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5O +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5F1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5J +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5G1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5L +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-ATP6 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5J2 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-ATP8 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5H +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5I +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5C1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5D +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5A1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5B +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ATP5E +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ETFA +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ETFB +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix UQCRC1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix UQCRB +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix UQCR10 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix UQCR +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix UQCRC2 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix UQCRH +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix UQCRQ +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix UQCRFS1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-CYB +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix CYC1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix CYCS +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ECHS1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-CO2 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix COX8A +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix COX7C +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-CO3 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix COX6C +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix COX5B +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-CO1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix COX7A2L +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix COX4I1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix COX6A1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix COX7B +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix COX6B1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix COX5A +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix HADH +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix VAMP2 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix INS +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix SYT5 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix KCNJ11 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFS3 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFS4 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFS6 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA5 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFS5 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFS1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFS2 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFV2 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFV3 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFV1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA4 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA11 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-ND3 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA13 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFB5 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFC1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA6 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFC2 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA3 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFB3 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFB1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFAB1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-ND4 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-ND5 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFB9 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFB6 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFB4 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA8 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFB7 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA12 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFB2 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-ND4L +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-ND2 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFB10 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA7 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA2 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFB8 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFB11 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-ND6 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix MT-ND1 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFS7 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA10 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFS8 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix NDUFA9 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix SLC25A20 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix HADHB +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix HADHA +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ACADL +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ACADM +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix ACADVL +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix CPT1B +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix CPT2 +PWCOMMONS Import of palmitoyl-CoA into the mitochondrial matrix +PWCOMMONS Peroxisomal lipid metabolism CROT +PWCOMMONS Peroxisomal lipid metabolism SLC27A2 +PWCOMMONS Peroxisomal lipid metabolism HSD17B4 +PWCOMMONS Peroxisomal lipid metabolism AMACR +PWCOMMONS Peroxisomal lipid metabolism ACOX3 +PWCOMMONS Peroxisomal lipid metabolism HACL1 +PWCOMMONS Peroxisomal lipid metabolism ACOX2 +PWCOMMONS Peroxisomal lipid metabolism ACOT8 +PWCOMMONS Peroxisomal lipid metabolism PHYH +PWCOMMONS Peroxisomal lipid metabolism IDH1 +PWCOMMONS Peroxisomal lipid metabolism SLC25A17 +PWCOMMONS Peroxisomal lipid metabolism PPAP2C +PWCOMMONS Peroxisomal lipid metabolism GNPAT +PWCOMMONS Peroxisomal lipid metabolism AGPS +PWCOMMONS Peroxisomal lipid metabolism FAR2 +PWCOMMONS Peroxisomal lipid metabolism DGAT1 +PWCOMMONS Peroxisomal lipid metabolism FAR1 +PWCOMMONS Peroxisomal lipid metabolism PPAP2A +PWCOMMONS Peroxisomal lipid metabolism AGPAT1 +PWCOMMONS Peroxisomal lipid metabolism PPAP2B +PWCOMMONS Peroxisomal lipid metabolism ABCD1 +PWCOMMONS Peroxisomal lipid metabolism ACAA1 +PWCOMMONS Peroxisomal lipid metabolism +PWCOMMONS Beta-oxidation of pristanoyl-CoA CRAT +PWCOMMONS Beta-oxidation of pristanoyl-CoA ACOX2 +PWCOMMONS Beta-oxidation of pristanoyl-CoA CROT +PWCOMMONS Beta-oxidation of pristanoyl-CoA ACOT8 +PWCOMMONS Beta-oxidation of pristanoyl-CoA AMACR +PWCOMMONS Beta-oxidation of pristanoyl-CoA ACOX3 +PWCOMMONS Beta-oxidation of pristanoyl-CoA +PWCOMMONS Alpha-oxidation of phytanate CROT +PWCOMMONS Alpha-oxidation of phytanate SLC27A2 +PWCOMMONS Alpha-oxidation of phytanate HSD17B4 +PWCOMMONS Alpha-oxidation of phytanate AMACR +PWCOMMONS Alpha-oxidation of phytanate ACOX3 +PWCOMMONS Alpha-oxidation of phytanate HACL1 +PWCOMMONS Alpha-oxidation of phytanate ACOX2 +PWCOMMONS Alpha-oxidation of phytanate ACOT8 +PWCOMMONS Alpha-oxidation of phytanate PHYH +PWCOMMONS Alpha-oxidation of phytanate IDH1 +PWCOMMONS Alpha-oxidation of phytanate SLC25A17 +PWCOMMONS Alpha-oxidation of phytanate +PWCOMMONS Beta-oxidation of very long chain fatty acids CRAT +PWCOMMONS Beta-oxidation of very long chain fatty acids ABCD1 +PWCOMMONS Beta-oxidation of very long chain fatty acids ACOT8 +PWCOMMONS Beta-oxidation of very long chain fatty acids ACAA1 +PWCOMMONS Beta-oxidation of very long chain fatty acids +PWCOMMONS Plasmalogen biosynthesis GNPAT +PWCOMMONS Plasmalogen biosynthesis AGPS +PWCOMMONS Plasmalogen biosynthesis FAR2 +PWCOMMONS Plasmalogen biosynthesis DGAT1 +PWCOMMONS Plasmalogen biosynthesis FAR1 +PWCOMMONS Plasmalogen biosynthesis PPAP2A +PWCOMMONS Plasmalogen biosynthesis AGPAT1 +PWCOMMONS Plasmalogen biosynthesis PPAP2B +PWCOMMONS Plasmalogen biosynthesis +PWCOMMONS Ketone body metabolism HMGCL +PWCOMMONS Ketone body metabolism ACAT1 +PWCOMMONS Ketone body metabolism BDH1 +PWCOMMONS Ketone body metabolism OXCT1 +PWCOMMONS Ketone body metabolism +PWCOMMONS Utilization of Ketone Bodies OXCT1 +PWCOMMONS Utilization of Ketone Bodies BDH1 +PWCOMMONS Utilization of Ketone Bodies +PWCOMMONS Synthesis of Ketone Bodies HMGCL +PWCOMMONS Synthesis of Ketone Bodies ACAT1 +PWCOMMONS Synthesis of Ketone Bodies BDH1 +PWCOMMONS Synthesis of Ketone Bodies +PWCOMMONS Transport of gamma-carboxylated protein precursors from the endoplasmic reticulum to the Golgi apparatus F10 +PWCOMMONS Transport of gamma-carboxylated protein precursors from the endoplasmic reticulum to the Golgi apparatus PROC +PWCOMMONS Transport of gamma-carboxylated protein precursors from the endoplasmic reticulum to the Golgi apparatus GAS6 +PWCOMMONS Transport of gamma-carboxylated protein precursors from the endoplasmic reticulum to the Golgi apparatus F2 +PWCOMMONS Transport of gamma-carboxylated protein precursors from the endoplasmic reticulum to the Golgi apparatus F9 +PWCOMMONS Transport of gamma-carboxylated protein precursors from the endoplasmic reticulum to the Golgi apparatus PROS1 +PWCOMMONS Transport of gamma-carboxylated protein precursors from the endoplasmic reticulum to the Golgi apparatus PROZ +PWCOMMONS Transport of gamma-carboxylated protein precursors from the endoplasmic reticulum to the Golgi apparatus FURIN +PWCOMMONS Transport of gamma-carboxylated protein precursors from the endoplasmic reticulum to the Golgi apparatus NOTCH2 +PWCOMMONS Transport of gamma-carboxylated protein precursors from the endoplasmic reticulum to the Golgi apparatus +PWCOMMONS Phosphorylase kinase activates glycogen phosphorylase PYGL +PWCOMMONS Phosphorylase kinase activates glycogen phosphorylase PHKG1 +PWCOMMONS Phosphorylase kinase activates glycogen phosphorylase CALM1 +PWCOMMONS Phosphorylase kinase activates glycogen phosphorylase PHKB +PWCOMMONS Phosphorylase kinase activates glycogen phosphorylase PHKA1 +PWCOMMONS Phosphorylase kinase activates glycogen phosphorylase PHKG2 +PWCOMMONS Phosphorylase kinase activates glycogen phosphorylase PHKA2 +PWCOMMONS Phosphorylase kinase activates glycogen phosphorylase +PWCOMMONS Cell surface interactions at the vascular wall GP6 +PWCOMMONS Cell surface interactions at the vascular wall FCER1G +PWCOMMONS Cell surface interactions at the vascular wall COL1A1 +PWCOMMONS Cell surface interactions at the vascular wall COL1A2 +PWCOMMONS Cell surface interactions at the vascular wall CD47 +PWCOMMONS Cell surface interactions at the vascular wall PROC +PWCOMMONS Cell surface interactions at the vascular wall OLR1 +PWCOMMONS Cell surface interactions at the vascular wall APOB +PWCOMMONS Cell surface interactions at the vascular wall MERTK +PWCOMMONS Cell surface interactions at the vascular wall CXADR +PWCOMMONS Cell surface interactions at the vascular wall JAM3 +PWCOMMONS Cell surface interactions at the vascular wall JAM2 +PWCOMMONS Cell surface interactions at the vascular wall ITGB2 +PWCOMMONS Cell surface interactions at the vascular wall ITGAX +PWCOMMONS Cell surface interactions at the vascular wall FN1 +PWCOMMONS Cell surface interactions at the vascular wall ITGB1 +PWCOMMONS Cell surface interactions at the vascular wall ITGA5 +PWCOMMONS Cell surface interactions at the vascular wall CD58 +PWCOMMONS Cell surface interactions at the vascular wall CD2 +PWCOMMONS Cell surface interactions at the vascular wall THBD +PWCOMMONS Cell surface interactions at the vascular wall F2 +PWCOMMONS Cell surface interactions at the vascular wall F11R +PWCOMMONS Cell surface interactions at the vascular wall ITGAL +PWCOMMONS Cell surface interactions at the vascular wall F5 +PWCOMMONS Cell surface interactions at the vascular wall CD244 +PWCOMMONS Cell surface interactions at the vascular wall CD48 +PWCOMMONS Cell surface interactions at the vascular wall BSG +PWCOMMONS Cell surface interactions at the vascular wall PPIA +PWCOMMONS Cell surface interactions at the vascular wall MMP1 +PWCOMMONS Cell surface interactions at the vascular wall SPN +PWCOMMONS Cell surface interactions at the vascular wall CAV1 +PWCOMMONS Cell surface interactions at the vascular wall PPIL2 +PWCOMMONS Cell surface interactions at the vascular wall ITGA4 +PWCOMMONS Cell surface interactions at the vascular wall PLCG1 +PWCOMMONS Cell surface interactions at the vascular wall PECAM1 +PWCOMMONS Cell surface interactions at the vascular wall PTPN6 +PWCOMMONS Cell surface interactions at the vascular wall INPP5D +PWCOMMONS Cell surface interactions at the vascular wall ITGB3 +PWCOMMONS Cell surface interactions at the vascular wall ITGAV +PWCOMMONS Cell surface interactions at the vascular wall PTPN11 +PWCOMMONS Cell surface interactions at the vascular wall TREM1 +PWCOMMONS Cell surface interactions at the vascular wall PROS1 +PWCOMMONS Cell surface interactions at the vascular wall CD177 +PWCOMMONS Cell surface interactions at the vascular wall SELPLG +PWCOMMONS Cell surface interactions at the vascular wall ITGAM +PWCOMMONS Cell surface interactions at the vascular wall ANGPT1 +PWCOMMONS Cell surface interactions at the vascular wall TEK +PWCOMMONS Cell surface interactions at the vascular wall ANGPT4 +PWCOMMONS Cell surface interactions at the vascular wall GRB14 +PWCOMMONS Cell surface interactions at the vascular wall SOS1 +PWCOMMONS Cell surface interactions at the vascular wall GRB7 +PWCOMMONS Cell surface interactions at the vascular wall DOK2 +PWCOMMONS Cell surface interactions at the vascular wall SHC1 +PWCOMMONS Cell surface interactions at the vascular wall ANGPT2 +PWCOMMONS Cell surface interactions at the vascular wall PLCG2 +PWCOMMONS Cell surface interactions at the vascular wall +PWCOMMONS Tie2 Signaling TEK +PWCOMMONS Tie2 Signaling ANGPT4 +PWCOMMONS Tie2 Signaling GRB14 +PWCOMMONS Tie2 Signaling SOS1 +PWCOMMONS Tie2 Signaling GRB7 +PWCOMMONS Tie2 Signaling PTPN11 +PWCOMMONS Tie2 Signaling DOK2 +PWCOMMONS Tie2 Signaling SHC1 +PWCOMMONS Tie2 Signaling ANGPT2 +PWCOMMONS Tie2 Signaling +PWCOMMONS PECAM1 interactions PECAM1 +PWCOMMONS PECAM1 interactions PTPN6 +PWCOMMONS PECAM1 interactions INPP5D +PWCOMMONS PECAM1 interactions ITGB3 +PWCOMMONS PECAM1 interactions ITGAV +PWCOMMONS PECAM1 interactions PTPN11 +PWCOMMONS PECAM1 interactions +PWCOMMONS Basigin interactions PPIA +PWCOMMONS Basigin interactions MMP1 +PWCOMMONS Basigin interactions SPN +PWCOMMONS Basigin interactions CAV1 +PWCOMMONS Basigin interactions PPIL2 +PWCOMMONS Basigin interactions +PWCOMMONS Digestion of dietary carbohydrate SI +PWCOMMONS Digestion of dietary carbohydrate LCT +PWCOMMONS Digestion of dietary carbohydrate MGAM +PWCOMMONS Digestion of dietary carbohydrate SLC2A2 +PWCOMMONS Digestion of dietary carbohydrate TREH +PWCOMMONS Digestion of dietary carbohydrate SLC2A5 +PWCOMMONS Digestion of dietary carbohydrate +PWCOMMONS De novo synthesis of UMP GLRX +PWCOMMONS De novo synthesis of UMP TXN +PWCOMMONS De novo synthesis of UMP DHODH +PWCOMMONS De novo synthesis of UMP CPS1 +PWCOMMONS De novo synthesis of UMP UPP1 +PWCOMMONS De novo synthesis of UMP ASS1 +PWCOMMONS De novo synthesis of UMP CAD +PWCOMMONS De novo synthesis of UMP CMPK1 +PWCOMMONS De novo synthesis of UMP OAT +PWCOMMONS De novo synthesis of UMP GYS2 +PWCOMMONS De novo synthesis of UMP UMPS +PWCOMMONS De novo synthesis of UMP UGDH +PWCOMMONS De novo synthesis of UMP RRM2 +PWCOMMONS De novo synthesis of UMP RRM1 +PWCOMMONS De novo synthesis of UMP ARG1 +PWCOMMONS De novo synthesis of UMP GBE1 +PWCOMMONS De novo synthesis of UMP TXNRD1 +PWCOMMONS De novo synthesis of UMP DPYD +PWCOMMONS De novo synthesis of UMP DPYS +PWCOMMONS De novo synthesis of UMP PYCR1 +PWCOMMONS De novo synthesis of UMP NT5C1A +PWCOMMONS De novo synthesis of UMP CTPS +PWCOMMONS De novo synthesis of UMP NME2 +PWCOMMONS De novo synthesis of UMP NME1 +PWCOMMONS De novo synthesis of UMP OTC +PWCOMMONS De novo synthesis of UMP SLC35D1 +PWCOMMONS De novo synthesis of UMP ASL +PWCOMMONS De novo synthesis of UMP GSR +PWCOMMONS De novo synthesis of UMP UPB1 +PWCOMMONS De novo synthesis of UMP +PWCOMMONS Vamp8 associated clathrin derived vesicle budding VAMP8 +PWCOMMONS Vamp8 associated clathrin derived vesicle budding AP1G1 +PWCOMMONS Vamp8 associated clathrin derived vesicle budding AP1B1 +PWCOMMONS Vamp8 associated clathrin derived vesicle budding HSPA8 +PWCOMMONS Vamp8 associated clathrin derived vesicle budding DNAJC6 +PWCOMMONS Vamp8 associated clathrin derived vesicle budding STX4 +PWCOMMONS Vamp8 associated clathrin derived vesicle budding VAMP7 +PWCOMMONS Vamp8 associated clathrin derived vesicle budding SNAP23 +PWCOMMONS Vamp8 associated clathrin derived vesicle budding VAMP2 +PWCOMMONS Vamp8 associated clathrin derived vesicle budding SH3GL2 +PWCOMMONS Vamp8 associated clathrin derived vesicle budding ARF1 +PWCOMMONS Vamp8 associated clathrin derived vesicle budding GBF1 +PWCOMMONS Vamp8 associated clathrin derived vesicle budding VTI1B +PWCOMMONS Vamp8 associated clathrin derived vesicle budding +PWCOMMONS Synthesis of GPI-anchored proteins PIGL +PWCOMMONS Synthesis of GPI-anchored proteins PLAUR +PWCOMMONS Synthesis of GPI-anchored proteins PIGG +PWCOMMONS Synthesis of GPI-anchored proteins PIGF +PWCOMMONS Synthesis of GPI-anchored proteins PIGH +PWCOMMONS Synthesis of GPI-anchored proteins DPM2 +PWCOMMONS Synthesis of GPI-anchored proteins PIGC +PWCOMMONS Synthesis of GPI-anchored proteins PIGA +PWCOMMONS Synthesis of GPI-anchored proteins PIGP +PWCOMMONS Synthesis of GPI-anchored proteins PIGO +PWCOMMONS Synthesis of GPI-anchored proteins PIGB +PWCOMMONS Synthesis of GPI-anchored proteins PGAP1 +PWCOMMONS Synthesis of GPI-anchored proteins PIGM +PWCOMMONS Synthesis of GPI-anchored proteins PIGX +PWCOMMONS Synthesis of GPI-anchored proteins PIGU +PWCOMMONS Synthesis of GPI-anchored proteins PIGT +PWCOMMONS Synthesis of GPI-anchored proteins GPAA1 +PWCOMMONS Synthesis of GPI-anchored proteins PIGS +PWCOMMONS Synthesis of GPI-anchored proteins PIGK +PWCOMMONS Synthesis of GPI-anchored proteins PIGV +PWCOMMONS Synthesis of GPI-anchored proteins PIGN +PWCOMMONS Synthesis of GPI-anchored proteins DPM3 +PWCOMMONS Synthesis of GPI-anchored proteins DPM1 +PWCOMMONS Synthesis of GPI-anchored proteins +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGL +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PLAUR +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGG +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGF +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGH +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) DPM2 +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGC +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGA +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGP +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGO +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGB +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PGAP1 +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGM +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGX +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGU +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGT +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) GPAA1 +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGS +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGK +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGV +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) PIGN +PWCOMMONS Synthesis of glycosylphosphatidylinositol (GPI) +PWCOMMONS Synthesis of dolichol-phosphate mannose DPM2 +PWCOMMONS Synthesis of dolichol-phosphate mannose DPM1 +PWCOMMONS Synthesis of dolichol-phosphate mannose PIGB +PWCOMMONS Synthesis of dolichol-phosphate mannose PGAP1 +PWCOMMONS Synthesis of dolichol-phosphate mannose PIGM +PWCOMMONS Synthesis of dolichol-phosphate mannose PIGX +PWCOMMONS Synthesis of dolichol-phosphate mannose PLAUR +PWCOMMONS Synthesis of dolichol-phosphate mannose PIGU +PWCOMMONS Synthesis of dolichol-phosphate mannose PIGT +PWCOMMONS Synthesis of dolichol-phosphate mannose GPAA1 +PWCOMMONS Synthesis of dolichol-phosphate mannose PIGS +PWCOMMONS Synthesis of dolichol-phosphate mannose PIGK +PWCOMMONS Synthesis of dolichol-phosphate mannose PIGV +PWCOMMONS Synthesis of dolichol-phosphate mannose PIGG +PWCOMMONS Synthesis of dolichol-phosphate mannose PIGF +PWCOMMONS Synthesis of dolichol-phosphate mannose PIGN +PWCOMMONS Synthesis of dolichol-phosphate mannose PIGO +PWCOMMONS Synthesis of dolichol-phosphate mannose +PWCOMMONS Attachment of GPI anchor to uPAR PGAP1 +PWCOMMONS Attachment of GPI anchor to uPAR PIGU +PWCOMMONS Attachment of GPI anchor to uPAR PIGT +PWCOMMONS Attachment of GPI anchor to uPAR GPAA1 +PWCOMMONS Attachment of GPI anchor to uPAR PIGS +PWCOMMONS Attachment of GPI anchor to uPAR PIGK +PWCOMMONS Attachment of GPI anchor to uPAR +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase DBT +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase BCKDHA +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase BCKDHB +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase DLD +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UROD +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5O +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5F1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5J +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5G1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5L +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ATP6 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5J2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ATP8 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5H +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5I +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5C1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5D +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5A1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5B +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ATP5E +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCRC1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCRB +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCR10 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCR +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCRC2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCRH +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCRQ +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UQCRFS1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-CYB +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase CYC1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase CPOX +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase UROS +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-CO2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX8A +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX7C +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-CO3 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX6C +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX5B +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-CO1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX7A2L +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX4I1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX6A1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX7B +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX6B1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase COX5A +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase DLST +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase OGDH +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MCEE +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ALAD +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase CS +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase PPOX +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ACO2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase IDH3G +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase IDH3A +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase IDH3B +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SUCLG1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SUCLG2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase KCNJ11 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SDHC +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SDHD +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SDHB +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SDHA +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase FECH +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SUCLA2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase CYCS +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase ACADSB +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase PCCB +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase PCCA +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MDH2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS3 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS4 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS6 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA5 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS5 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFV2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFV3 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFV1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA4 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA11 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND3 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA13 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB5 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFC1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA6 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFC2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA3 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB3 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFAB1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND4 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND5 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB9 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB6 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB4 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA8 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB7 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA12 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND4L +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB10 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA7 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB8 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFB11 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND6 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MT-ND1 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS7 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA10 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFS8 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase NDUFA9 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase VAMP2 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase MUT +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase HSD17B10 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase FH +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase INS +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase SYT5 +PWCOMMONS Oxidative decarboxylation of alpha-keto-beta-methylvalerate to alpha-methylbutyryl-CoA by branched-chain alpha-ketoacid dehydrogenase +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme NT5C2 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5O +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5F1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5J +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5G1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5L +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme MT-ATP6 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5J2 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme MT-ATP8 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5H +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5I +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5C1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5D +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5A1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5B +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATP5E +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme HPRT1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme PGLS +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme GYG1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme UPP1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ADSL +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ATIC +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme OAT +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme NP +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme GYS2 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme TXN +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme PYGM +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ARG1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme KCNJ11 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme AMPD3 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme RPE +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme GLRX +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme DPYD +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme GART +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme DPYS +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme AK1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme PYGL +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme UMPS +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme VAMP2 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme NT5C1A +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme CTPS +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme PRPS1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme GMPS +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme GUK1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme IMPDH2 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme GDA +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme NME1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme IMPDH1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ADSS +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme OTC +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme INS +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme SYT5 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme SLC35D1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme PFAS +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ASL +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme UPB1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme XDH +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme PAICS +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme CPS1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme TALDO1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme ASS1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme AGL +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme CMPK1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme CAT +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme UGDH +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme RRM2 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme RRM1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme G6PD +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme AMPD1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme PPAT +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme TKT +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme PGM1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme GBE1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme TXNRD1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme PYCR1 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme NME2 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme RPIA +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme AMPD2 +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme PGD +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme GSR +PWCOMMONS (1,6)-alpha-glucose residues are removed, as D-glucose, from limit dextrin by debranching enzyme +PWCOMMONS Grb2 events in EGFR signaling RAF1 +PWCOMMONS Grb2 events in EGFR signaling YWHAB +PWCOMMONS Grb2 events in EGFR signaling RPS6KA5 +PWCOMMONS Grb2 events in EGFR signaling MAPK3 +PWCOMMONS Grb2 events in EGFR signaling ATF1 +PWCOMMONS Grb2 events in EGFR signaling CREB1 +PWCOMMONS Grb2 events in EGFR signaling MAPK1 +PWCOMMONS Grb2 events in EGFR signaling SHC1 +PWCOMMONS Grb2 events in EGFR signaling SOS1 +PWCOMMONS Grb2 events in EGFR signaling MAP2K1 +PWCOMMONS Grb2 events in EGFR signaling EGFR +PWCOMMONS Grb2 events in EGFR signaling EGF +PWCOMMONS Grb2 events in EGFR signaling +PWCOMMONS Base-Excision Repair, AP Site Formation XRCC1 +PWCOMMONS Base-Excision Repair, AP Site Formation POLB +PWCOMMONS Base-Excision Repair, AP Site Formation FEN1 +PWCOMMONS Base-Excision Repair, AP Site Formation APEX1 +PWCOMMONS Base-Excision Repair, AP Site Formation POLD4 +PWCOMMONS Base-Excision Repair, AP Site Formation POLD3 +PWCOMMONS Base-Excision Repair, AP Site Formation POLD2 +PWCOMMONS Base-Excision Repair, AP Site Formation POLD1 +PWCOMMONS Base-Excision Repair, AP Site Formation OGG1 +PWCOMMONS Base-Excision Repair, AP Site Formation MPG +PWCOMMONS Base-Excision Repair, AP Site Formation MUTYH +PWCOMMONS Base-Excision Repair, AP Site Formation SMUG1 +PWCOMMONS Base-Excision Repair, AP Site Formation CCNO +PWCOMMONS Base-Excision Repair, AP Site Formation TDG +PWCOMMONS Base-Excision Repair, AP Site Formation NTHL1 +PWCOMMONS Base-Excision Repair, AP Site Formation LIG1 +PWCOMMONS Base-Excision Repair, AP Site Formation PCNA +PWCOMMONS Base-Excision Repair, AP Site Formation +PWCOMMONS Displacement of DNA glycosylase by APE1 OGG1 +PWCOMMONS Displacement of DNA glycosylase by APE1 TDG +PWCOMMONS Displacement of DNA glycosylase by APE1 NTHL1 +PWCOMMONS Displacement of DNA glycosylase by APE1 MPG +PWCOMMONS Displacement of DNA glycosylase by APE1 SMUG1 +PWCOMMONS Displacement of DNA glycosylase by APE1 MUTYH +PWCOMMONS Displacement of DNA glycosylase by APE1 CCNO +PWCOMMONS Displacement of DNA glycosylase by APE1 +PWCOMMONS Removal of DNA patch containing abasic residue PCNA +PWCOMMONS Removal of DNA patch containing abasic residue POLD4 +PWCOMMONS Removal of DNA patch containing abasic residue POLD3 +PWCOMMONS Removal of DNA patch containing abasic residue POLD2 +PWCOMMONS Removal of DNA patch containing abasic residue POLD1 +PWCOMMONS Removal of DNA patch containing abasic residue POLB +PWCOMMONS Removal of DNA patch containing abasic residue LIG3 +PWCOMMONS Removal of DNA patch containing abasic residue XRCC1 +PWCOMMONS Removal of DNA patch containing abasic residue APEX1 +PWCOMMONS Removal of DNA patch containing abasic residue FEN1 +PWCOMMONS Removal of DNA patch containing abasic residue OGG1 +PWCOMMONS Removal of DNA patch containing abasic residue TDG +PWCOMMONS Removal of DNA patch containing abasic residue NTHL1 +PWCOMMONS Removal of DNA patch containing abasic residue MPG +PWCOMMONS Removal of DNA patch containing abasic residue SMUG1 +PWCOMMONS Removal of DNA patch containing abasic residue MUTYH +PWCOMMONS Removal of DNA patch containing abasic residue CCNO +PWCOMMONS Removal of DNA patch containing abasic residue +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway LIG3 +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway XRCC1 +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway LIG1 +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway PCNA +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway POLD4 +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway POLD3 +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway POLD2 +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway POLD1 +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway APEX1 +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway FEN1 +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway OGG1 +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway TDG +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway NTHL1 +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway MPG +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway SMUG1 +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway MUTYH +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway CCNO +PWCOMMONS Resolution of AP sites via the single-nucleotide replacement pathway +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway PCNA +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway POLD4 +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway POLD3 +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway POLD2 +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway POLD1 +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway POLB +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway LIG3 +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway XRCC1 +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway APEX1 +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway FEN1 +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway OGG1 +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway TDG +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway NTHL1 +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway MPG +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway SMUG1 +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway MUTYH +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway CCNO +PWCOMMONS Base-free sugar-phosphate removal via the single-nucleotide replacement pathway +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway PCNA +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway POLD4 +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway POLD3 +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway POLD2 +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway POLD1 +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway POLB +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway LIG3 +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway XRCC1 +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway APEX1 +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway FEN1 +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway OGG1 +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway TDG +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway NTHL1 +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway MPG +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway SMUG1 +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway MUTYH +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway CCNO +PWCOMMONS Resolution of AP sites via the multiple-nucleotide patch replacement pathway +PWCOMMONS Depurination OGG1 +PWCOMMONS Depurination MPG +PWCOMMONS Depurination MUTYH +PWCOMMONS Depurination +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected purine MUTYH +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected purine APEX1 +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected purine OGG1 +PWCOMMONS Recognition and association of DNA glycosylase with site containing an affected purine +PWCOMMONS Vpu mediated degradation of CD4 CD4 +PWCOMMONS Vpu mediated degradation of CD4 SKP1 +PWCOMMONS Vpu mediated degradation of CD4 FZR1 +PWCOMMONS Vpu mediated degradation of CD4 ANAPC5 +PWCOMMONS Vpu mediated degradation of CD4 ANAPC11 +PWCOMMONS Vpu mediated degradation of CD4 CDC23 +PWCOMMONS Vpu mediated degradation of CD4 ANAPC1 +PWCOMMONS Vpu mediated degradation of CD4 ANAPC2 +PWCOMMONS Vpu mediated degradation of CD4 UBE2D1 +PWCOMMONS Vpu mediated degradation of CD4 CDC27 +PWCOMMONS Vpu mediated degradation of CD4 ANAPC4 +PWCOMMONS Vpu mediated degradation of CD4 ANAPC10 +PWCOMMONS Vpu mediated degradation of CD4 ANAPC7 +PWCOMMONS Vpu mediated degradation of CD4 UBE2C +PWCOMMONS Vpu mediated degradation of CD4 CDC26 +PWCOMMONS Vpu mediated degradation of CD4 CDC16 +PWCOMMONS Vpu mediated degradation of CD4 UBE2E1 +PWCOMMONS Vpu mediated degradation of CD4 PSMC6 +PWCOMMONS Vpu mediated degradation of CD4 PSMA3 +PWCOMMONS Vpu mediated degradation of CD4 PSMD8 +PWCOMMONS Vpu mediated degradation of CD4 PSMD10 +PWCOMMONS Vpu mediated degradation of CD4 PSMD1 +PWCOMMONS Vpu mediated degradation of CD4 PSMD6 +PWCOMMONS Vpu mediated degradation of CD4 PSMB5 +PWCOMMONS Vpu mediated degradation of CD4 PSMB4 +PWCOMMONS Vpu mediated degradation of CD4 PSMD4 +PWCOMMONS Vpu mediated degradation of CD4 PSMA2 +PWCOMMONS Vpu mediated degradation of CD4 PSMB8 +PWCOMMONS Vpu mediated degradation of CD4 PSMD5 +PWCOMMONS Vpu mediated degradation of CD4 PSMB6 +PWCOMMONS Vpu mediated degradation of CD4 PSME3 +PWCOMMONS Vpu mediated degradation of CD4 PSMB3 +PWCOMMONS Vpu mediated degradation of CD4 PSMB7 +PWCOMMONS Vpu mediated degradation of CD4 PSME1 +PWCOMMONS Vpu mediated degradation of CD4 PSMD11 +PWCOMMONS Vpu mediated degradation of CD4 PSMA5 +PWCOMMONS Vpu mediated degradation of CD4 PSMC5 +PWCOMMONS Vpu mediated degradation of CD4 PSMC1 +PWCOMMONS Vpu mediated degradation of CD4 PSMD7 +PWCOMMONS Vpu mediated degradation of CD4 PSMD3 +PWCOMMONS Vpu mediated degradation of CD4 PSMB2 +PWCOMMONS Vpu mediated degradation of CD4 PSMD13 +PWCOMMONS Vpu mediated degradation of CD4 PSMD14 +PWCOMMONS Vpu mediated degradation of CD4 PSMB1 +PWCOMMONS Vpu mediated degradation of CD4 PSMA6 +PWCOMMONS Vpu mediated degradation of CD4 PSMB9 +PWCOMMONS Vpu mediated degradation of CD4 PSMB10 +PWCOMMONS Vpu mediated degradation of CD4 PSMD9 +PWCOMMONS Vpu mediated degradation of CD4 PSMC4 +PWCOMMONS Vpu mediated degradation of CD4 PSMA1 +PWCOMMONS Vpu mediated degradation of CD4 PSMA4 +PWCOMMONS Vpu mediated degradation of CD4 PSMA7 +PWCOMMONS Vpu mediated degradation of CD4 PSMF1 +PWCOMMONS Vpu mediated degradation of CD4 PSME2 +PWCOMMONS Vpu mediated degradation of CD4 PSMD12 +PWCOMMONS Vpu mediated degradation of CD4 PSMC3 +PWCOMMONS Vpu mediated degradation of CD4 PSMC2 +PWCOMMONS Vpu mediated degradation of CD4 PSMD2 +PWCOMMONS Vpu mediated degradation of CD4 +PWCOMMONS APOBEC3G mediated resistance to HIV-1 infection BANF1 +PWCOMMONS APOBEC3G mediated resistance to HIV-1 infection +PWCOMMONS APC/C-mediated degradation of cell cycle proteins ANAPC5 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins ANAPC11 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins CDC23 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins ANAPC1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins UBE2D1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins ANAPC2 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins CDC27 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins ANAPC4 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins ANAPC10 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins UBE2C +PWCOMMONS APC/C-mediated degradation of cell cycle proteins ANAPC7 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins CDC26 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins CDC16 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins UBE2E1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins CDC20 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMC6 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMA3 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD8 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD10 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD6 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMB5 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMB4 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD4 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMA2 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMB8 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD5 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMB6 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSME3 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMB3 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMB7 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSME1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD11 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMA5 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMC5 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMC1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD7 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD3 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMB2 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD13 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD14 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMB1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMA6 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMB9 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMB10 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD9 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMC4 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMA1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMA4 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMA7 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMF1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSME2 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD12 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMC3 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMC2 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PSMD2 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins CDC2 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins CCNB1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PTTG1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins BUB3 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins BUB1B +PWCOMMONS APC/C-mediated degradation of cell cycle proteins MAD2L1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins PLK1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins FBXO5 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins CDK2 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins CUL1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins BTRC +PWCOMMONS APC/C-mediated degradation of cell cycle proteins SKP1 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins NEK2 +PWCOMMONS APC/C-mediated degradation of cell cycle proteins +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase ANAPC5 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase ANAPC11 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase CDC23 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase ANAPC1 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase UBE2D1 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase ANAPC2 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase CDC27 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase ANAPC4 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase ANAPC10 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase UBE2C +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase ANAPC7 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase CDC26 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase CDC16 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase UBE2E1 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase CDC20 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMC6 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMA3 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD8 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD10 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD1 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD6 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMB5 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMB4 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD4 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMA2 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMB8 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD5 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMB6 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSME3 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMB3 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMB7 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSME1 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD11 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMA5 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMC5 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMC1 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD7 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD3 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMB2 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD13 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD14 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMB1 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMA6 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMB9 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMB10 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD9 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMC4 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMA1 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMA4 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMA7 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMF1 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSME2 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD12 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMC3 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMC2 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase PSMD2 +PWCOMMONS Conversion from APC/C:Cdc20 to APC/C:Cdh1 in late anaphase +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins CCNB1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins CDC20 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC5 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC11 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins CDC23 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC2 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins UBE2D1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins CDC27 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC4 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC10 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins ANAPC7 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins UBE2C +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins CDC26 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins CDC16 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins UBE2E1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins FZR1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMC6 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMA3 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD8 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD10 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD6 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMB5 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMB4 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD4 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMA2 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMB8 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD5 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMB6 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSME3 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMB3 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMB7 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSME1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD11 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMA5 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMC5 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMC1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD7 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD3 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMB2 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD13 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD14 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMB1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMA6 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMB9 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMB10 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD9 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMC4 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMA1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMA4 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMA7 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMF1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSME2 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD12 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMC3 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMC2 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PSMD2 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PTTG1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins BUB3 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins BUB1B +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins MAD2L1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins PLK1 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins FBXO5 +PWCOMMONS Activation of APC/C and APC/C:Cdc20 mediated degradation of mitotic proteins +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 ANAPC5 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 ANAPC11 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 CDC23 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 ANAPC1 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 UBE2D1 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 ANAPC2 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 CDC27 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 ANAPC4 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 ANAPC10 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 UBE2C +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 ANAPC7 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 CDC26 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 CDC16 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 UBE2E1 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMC6 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMA3 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD8 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD10 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD1 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD6 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMB5 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMB4 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD4 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMA2 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMB8 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD5 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMB6 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSME3 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMB3 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMB7 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSME1 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD11 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMA5 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMC5 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMC1 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD7 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD3 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMB2 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD13 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD14 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMB1 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMA6 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMB9 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMB10 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD9 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMC4 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMA1 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMA4 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMA7 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMF1 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSME2 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD12 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMC3 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMC2 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 PSMD2 +PWCOMMONS APC/C:Cdh1 mediated degradation of Cdc20 and other APC/C:Cdh1 targeted proteins in late mitosis/early G1 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C ANAPC5 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C ANAPC11 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C CDC23 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C ANAPC1 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C UBE2D1 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C ANAPC2 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C CDC27 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C ANAPC4 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C ANAPC10 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C UBE2C +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C ANAPC7 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C CDC26 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C CDC16 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C UBE2E1 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMA3 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMC6 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD8 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD10 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMB5 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD1 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD6 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMB4 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD4 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMB8 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMA2 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD5 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMB6 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSME3 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMB3 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMB7 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSME1 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD11 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMA5 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMC5 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMC1 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD7 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD3 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD13 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMB2 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD14 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMB1 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMA6 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMB10 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMB9 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD9 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMC4 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMA1 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMA4 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMA7 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMF1 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSME2 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD12 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMC3 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMC2 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C PSMD2 +PWCOMMONS Autodegradation of Cdh1 by Cdh1:APC/C +PWCOMMONS Gluconeogenesis NT5C2 +PWCOMMONS Gluconeogenesis ATP5O +PWCOMMONS Gluconeogenesis ATP5F1 +PWCOMMONS Gluconeogenesis ATP5J +PWCOMMONS Gluconeogenesis ATP5G1 +PWCOMMONS Gluconeogenesis ATP5L +PWCOMMONS Gluconeogenesis MT-ATP6 +PWCOMMONS Gluconeogenesis ATP5J2 +PWCOMMONS Gluconeogenesis MT-ATP8 +PWCOMMONS Gluconeogenesis ATP5H +PWCOMMONS Gluconeogenesis ATP5I +PWCOMMONS Gluconeogenesis ATP5C1 +PWCOMMONS Gluconeogenesis ATP5D +PWCOMMONS Gluconeogenesis ATP5A1 +PWCOMMONS Gluconeogenesis ATP5B +PWCOMMONS Gluconeogenesis ATP5E +PWCOMMONS Gluconeogenesis HPRT1 +PWCOMMONS Gluconeogenesis UQCRC1 +PWCOMMONS Gluconeogenesis UQCRB +PWCOMMONS Gluconeogenesis UQCR10 +PWCOMMONS Gluconeogenesis UQCR +PWCOMMONS Gluconeogenesis UQCRC2 +PWCOMMONS Gluconeogenesis UQCRH +PWCOMMONS Gluconeogenesis UQCRQ +PWCOMMONS Gluconeogenesis UQCRFS1 +PWCOMMONS Gluconeogenesis MT-CYB +PWCOMMONS Gluconeogenesis CYC1 +PWCOMMONS Gluconeogenesis MT-CO2 +PWCOMMONS Gluconeogenesis COX8A +PWCOMMONS Gluconeogenesis COX7C +PWCOMMONS Gluconeogenesis MT-CO3 +PWCOMMONS Gluconeogenesis COX6C +PWCOMMONS Gluconeogenesis COX5B +PWCOMMONS Gluconeogenesis MT-CO1 +PWCOMMONS Gluconeogenesis COX7A2L +PWCOMMONS Gluconeogenesis COX4I1 +PWCOMMONS Gluconeogenesis COX6A1 +PWCOMMONS Gluconeogenesis COX7B +PWCOMMONS Gluconeogenesis COX6B1 +PWCOMMONS Gluconeogenesis COX5A +PWCOMMONS Gluconeogenesis GOT2 +PWCOMMONS Gluconeogenesis PGLS +PWCOMMONS Gluconeogenesis HADH +PWCOMMONS Gluconeogenesis UPP1 +PWCOMMONS Gluconeogenesis GOT1 +PWCOMMONS Gluconeogenesis PC +PWCOMMONS Gluconeogenesis PGK1 +PWCOMMONS Gluconeogenesis ADSL +PWCOMMONS Gluconeogenesis GCDH +PWCOMMONS Gluconeogenesis MDH1 +PWCOMMONS Gluconeogenesis PCK1 +PWCOMMONS Gluconeogenesis ATIC +PWCOMMONS Gluconeogenesis OAT +PWCOMMONS Gluconeogenesis NP +PWCOMMONS Gluconeogenesis GYS2 +PWCOMMONS Gluconeogenesis ECHS1 +PWCOMMONS Gluconeogenesis TXN +PWCOMMONS Gluconeogenesis SUCLG1 +PWCOMMONS Gluconeogenesis SUCLG2 +PWCOMMONS Gluconeogenesis ARG1 +PWCOMMONS Gluconeogenesis KCNJ11 +PWCOMMONS Gluconeogenesis AMPD3 +PWCOMMONS Gluconeogenesis RPE +PWCOMMONS Gluconeogenesis GLRX +PWCOMMONS Gluconeogenesis SDHC +PWCOMMONS Gluconeogenesis SDHD +PWCOMMONS Gluconeogenesis SDHB +PWCOMMONS Gluconeogenesis SDHA +PWCOMMONS Gluconeogenesis DPYD +PWCOMMONS Gluconeogenesis GART +PWCOMMONS Gluconeogenesis DPYS +PWCOMMONS Gluconeogenesis AK1 +PWCOMMONS Gluconeogenesis MDH2 +PWCOMMONS Gluconeogenesis UMPS +PWCOMMONS Gluconeogenesis CYCS +PWCOMMONS Gluconeogenesis NDUFS3 +PWCOMMONS Gluconeogenesis NDUFS4 +PWCOMMONS Gluconeogenesis NDUFS6 +PWCOMMONS Gluconeogenesis NDUFA5 +PWCOMMONS Gluconeogenesis NDUFS5 +PWCOMMONS Gluconeogenesis NDUFS1 +PWCOMMONS Gluconeogenesis NDUFS2 +PWCOMMONS Gluconeogenesis NDUFV2 +PWCOMMONS Gluconeogenesis NDUFV3 +PWCOMMONS Gluconeogenesis NDUFV1 +PWCOMMONS Gluconeogenesis NDUFA4 +PWCOMMONS Gluconeogenesis NDUFA11 +PWCOMMONS Gluconeogenesis MT-ND3 +PWCOMMONS Gluconeogenesis NDUFA13 +PWCOMMONS Gluconeogenesis NDUFB5 +PWCOMMONS Gluconeogenesis NDUFC1 +PWCOMMONS Gluconeogenesis NDUFA6 +PWCOMMONS Gluconeogenesis NDUFC2 +PWCOMMONS Gluconeogenesis NDUFA3 +PWCOMMONS Gluconeogenesis NDUFB3 +PWCOMMONS Gluconeogenesis NDUFB1 +PWCOMMONS Gluconeogenesis NDUFAB1 +PWCOMMONS Gluconeogenesis MT-ND4 +PWCOMMONS Gluconeogenesis MT-ND5 +PWCOMMONS Gluconeogenesis NDUFA1 +PWCOMMONS Gluconeogenesis NDUFB9 +PWCOMMONS Gluconeogenesis NDUFB6 +PWCOMMONS Gluconeogenesis NDUFB4 +PWCOMMONS Gluconeogenesis NDUFA8 +PWCOMMONS Gluconeogenesis NDUFB7 +PWCOMMONS Gluconeogenesis NDUFA12 +PWCOMMONS Gluconeogenesis NDUFB2 +PWCOMMONS Gluconeogenesis MT-ND4L +PWCOMMONS Gluconeogenesis MT-ND2 +PWCOMMONS Gluconeogenesis NDUFB10 +PWCOMMONS Gluconeogenesis NDUFA7 +PWCOMMONS Gluconeogenesis NDUFA2 +PWCOMMONS Gluconeogenesis NDUFB8 +PWCOMMONS Gluconeogenesis NDUFB11 +PWCOMMONS Gluconeogenesis MT-ND6 +PWCOMMONS Gluconeogenesis MT-ND1 +PWCOMMONS Gluconeogenesis NDUFS7 +PWCOMMONS Gluconeogenesis NDUFA10 +PWCOMMONS Gluconeogenesis NDUFS8 +PWCOMMONS Gluconeogenesis NDUFA9 +PWCOMMONS Gluconeogenesis VAMP2 +PWCOMMONS Gluconeogenesis NT5C1A +PWCOMMONS Gluconeogenesis CTPS +PWCOMMONS Gluconeogenesis PRPS1 +PWCOMMONS Gluconeogenesis DLST +PWCOMMONS Gluconeogenesis OGDH +PWCOMMONS Gluconeogenesis DLD +PWCOMMONS Gluconeogenesis GMPS +PWCOMMONS Gluconeogenesis GUK1 +PWCOMMONS Gluconeogenesis IMPDH2 +PWCOMMONS Gluconeogenesis GDA +PWCOMMONS Gluconeogenesis NME1 +PWCOMMONS Gluconeogenesis IMPDH1 +PWCOMMONS Gluconeogenesis ADSS +PWCOMMONS Gluconeogenesis OTC +PWCOMMONS Gluconeogenesis FH +PWCOMMONS Gluconeogenesis INS +PWCOMMONS Gluconeogenesis SYT5 +PWCOMMONS Gluconeogenesis PFAS +PWCOMMONS Gluconeogenesis SLC35D1 +PWCOMMONS Gluconeogenesis ASL +PWCOMMONS Gluconeogenesis UPB1 +PWCOMMONS Gluconeogenesis SLC25A21 +PWCOMMONS Gluconeogenesis GPI +PWCOMMONS Gluconeogenesis UROD +PWCOMMONS Gluconeogenesis CPOX +PWCOMMONS Gluconeogenesis UROS +PWCOMMONS Gluconeogenesis XDH +PWCOMMONS Gluconeogenesis PAICS +PWCOMMONS Gluconeogenesis CPS1 +PWCOMMONS Gluconeogenesis TALDO1 +PWCOMMONS Gluconeogenesis ASS1 +PWCOMMONS Gluconeogenesis CMPK1 +PWCOMMONS Gluconeogenesis ALAD +PWCOMMONS Gluconeogenesis CS +PWCOMMONS Gluconeogenesis CAT +PWCOMMONS Gluconeogenesis SLC25A1 +PWCOMMONS Gluconeogenesis PPOX +PWCOMMONS Gluconeogenesis ACO2 +PWCOMMONS Gluconeogenesis IDH3G +PWCOMMONS Gluconeogenesis IDH3A +PWCOMMONS Gluconeogenesis IDH3B +PWCOMMONS Gluconeogenesis UGDH +PWCOMMONS Gluconeogenesis RRM2 +PWCOMMONS Gluconeogenesis RRM1 +PWCOMMONS Gluconeogenesis G6PD +PWCOMMONS Gluconeogenesis AMPD1 +PWCOMMONS Gluconeogenesis SLC25A11 +PWCOMMONS Gluconeogenesis PPAT +PWCOMMONS Gluconeogenesis TKT +PWCOMMONS Gluconeogenesis FECH +PWCOMMONS Gluconeogenesis PCK2 +PWCOMMONS Gluconeogenesis SUCLA2 +PWCOMMONS Gluconeogenesis GBE1 +PWCOMMONS Gluconeogenesis TXNRD1 +PWCOMMONS Gluconeogenesis TPI1 +PWCOMMONS Gluconeogenesis SLC25A10 +PWCOMMONS Gluconeogenesis G6PC +PWCOMMONS Gluconeogenesis PYCR1 +PWCOMMONS Gluconeogenesis NME2 +PWCOMMONS Gluconeogenesis RPIA +PWCOMMONS Gluconeogenesis AMPD2 +PWCOMMONS Gluconeogenesis PGD +PWCOMMONS Gluconeogenesis GSR +PWCOMMONS Gluconeogenesis +PWCOMMONS Peptide ligand-binding receptors GPER +PWCOMMONS Peptide ligand-binding receptors KNG1 +PWCOMMONS Peptide ligand-binding receptors C5AR1 +PWCOMMONS Peptide ligand-binding receptors C5 +PWCOMMONS Peptide ligand-binding receptors PRLHR +PWCOMMONS Peptide ligand-binding receptors DARC +PWCOMMONS Peptide ligand-binding receptors KISS1 +PWCOMMONS Peptide ligand-binding receptors KISS1R +PWCOMMONS Peptide ligand-binding receptors GAL +PWCOMMONS Peptide ligand-binding receptors F2 +PWCOMMONS Peptide ligand-binding receptors TAC3 +PWCOMMONS Peptide ligand-binding receptors TACR3 +PWCOMMONS Peptide ligand-binding receptors TAC1 +PWCOMMONS Peptide ligand-binding receptors TACR2 +PWCOMMONS Peptide ligand-binding receptors TACR1 +PWCOMMONS Peptide ligand-binding receptors POMC +PWCOMMONS Peptide ligand-binding receptors MC2R +PWCOMMONS Peptide ligand-binding receptors XCR1 +PWCOMMONS Peptide ligand-binding receptors IL8RB +PWCOMMONS Peptide ligand-binding receptors CXCL16 +PWCOMMONS Peptide ligand-binding receptors CXCR6 +PWCOMMONS Peptide ligand-binding receptors CX3CL1 +PWCOMMONS Peptide ligand-binding receptors CCL25 +PWCOMMONS Peptide ligand-binding receptors CCL5 +PWCOMMONS Peptide ligand-binding receptors IL8RA +PWCOMMONS Peptide ligand-binding receptors CCR10 +PWCOMMONS Peptide ligand-binding receptors CCR7 +PWCOMMONS Peptide ligand-binding receptors CCL16 +PWCOMMONS Peptide ligand-binding receptors CCL20 +PWCOMMONS Peptide ligand-binding receptors CCR6 +PWCOMMONS Peptide ligand-binding receptors CCK +PWCOMMONS Peptide ligand-binding receptors HCRTR2 +PWCOMMONS Peptide ligand-binding receptors HCRT +PWCOMMONS Peptide ligand-binding receptors NPFF +PWCOMMONS Peptide ligand-binding receptors HCRTR1 +PWCOMMONS Peptide ligand-binding receptors QRFPR +PWCOMMONS Peptide ligand-binding receptors QRFP +PWCOMMONS Peptide ligand-binding receptors AGT +PWCOMMONS Peptide ligand-binding receptors NTS +PWCOMMONS Peptide ligand-binding receptors PNOC +PWCOMMONS Peptide ligand-binding receptors OPRL1 +PWCOMMONS Peptide ligand-binding receptors MGLL +PWCOMMONS Peptide ligand-binding receptors AVP +PWCOMMONS Peptide ligand-binding receptors AVPR2 +PWCOMMONS Peptide ligand-binding receptors PFKFB1 +PWCOMMONS Peptide ligand-binding receptors MLXIPL +PWCOMMONS Peptide ligand-binding receptors CREB1 +PWCOMMONS Peptide ligand-binding receptors LIPE +PWCOMMONS Peptide ligand-binding receptors GNAS +PWCOMMONS Peptide ligand-binding receptors OXTR +PWCOMMONS Peptide ligand-binding receptors OXT +PWCOMMONS Peptide ligand-binding receptors FABP4 +PWCOMMONS Peptide ligand-binding receptors +PWCOMMONS Vasopressin-like receptors AVP +PWCOMMONS Vasopressin-like receptors AVPR2 +PWCOMMONS Vasopressin-like receptors PFKFB1 +PWCOMMONS Vasopressin-like receptors MLXIPL +PWCOMMONS Vasopressin-like receptors CREB1 +PWCOMMONS Vasopressin-like receptors LIPE +PWCOMMONS Vasopressin-like receptors GNAS +PWCOMMONS Vasopressin-like receptors OXTR +PWCOMMONS Vasopressin-like receptors OXT +PWCOMMONS Vasopressin-like receptors FABP4 +PWCOMMONS Vasopressin-like receptors +PWCOMMONS Orexin and neuropeptides FF and QRFP bind to their respective receptors HCRT +PWCOMMONS Orexin and neuropeptides FF and QRFP bind to their respective receptors NPFF +PWCOMMONS Orexin and neuropeptides FF and QRFP bind to their respective receptors HCRTR1 +PWCOMMONS Orexin and neuropeptides FF and QRFP bind to their respective receptors QRFPR +PWCOMMONS Orexin and neuropeptides FF and QRFP bind to their respective receptors QRFP +PWCOMMONS Orexin and neuropeptides FF and QRFP bind to their respective receptors +PWCOMMONS Tachykinin receptors bind tachykinins TACR3 +PWCOMMONS Tachykinin receptors bind tachykinins TAC1 +PWCOMMONS Tachykinin receptors bind tachykinins TACR2 +PWCOMMONS Tachykinin receptors bind tachykinins TACR1 +PWCOMMONS Tachykinin receptors bind tachykinins +PWCOMMONS Chemokine receptors bind chemokines IL8RB +PWCOMMONS Chemokine receptors bind chemokines CXCL16 +PWCOMMONS Chemokine receptors bind chemokines CXCR6 +PWCOMMONS Chemokine receptors bind chemokines CX3CL1 +PWCOMMONS Chemokine receptors bind chemokines CCL25 +PWCOMMONS Chemokine receptors bind chemokines CCL5 +PWCOMMONS Chemokine receptors bind chemokines IL8RA +PWCOMMONS Chemokine receptors bind chemokines CCR10 +PWCOMMONS Chemokine receptors bind chemokines CCR7 +PWCOMMONS Chemokine receptors bind chemokines CCL16 +PWCOMMONS Chemokine receptors bind chemokines CCL20 +PWCOMMONS Chemokine receptors bind chemokines CCR6 +PWCOMMONS Chemokine receptors bind chemokines +PWCOMMONS Tryptophan catabolism AFMID +PWCOMMONS Tryptophan catabolism ACMSD +PWCOMMONS Tryptophan catabolism NMNAT2 +PWCOMMONS Tryptophan catabolism KYNU +PWCOMMONS Tryptophan catabolism HAAO +PWCOMMONS Tryptophan catabolism TDO2 +PWCOMMONS Tryptophan catabolism NMNAT3 +PWCOMMONS Tryptophan catabolism QPRT +PWCOMMONS Tryptophan catabolism KMO +PWCOMMONS Tryptophan catabolism NADK +PWCOMMONS Tryptophan catabolism NMNAT1 +PWCOMMONS Tryptophan catabolism +PWCOMMONS trans-Golgi Network Vesicle Budding VAMP8 +PWCOMMONS trans-Golgi Network Vesicle Budding AP1G1 +PWCOMMONS trans-Golgi Network Vesicle Budding AP1B1 +PWCOMMONS trans-Golgi Network Vesicle Budding HSPA8 +PWCOMMONS trans-Golgi Network Vesicle Budding DNAJC6 +PWCOMMONS trans-Golgi Network Vesicle Budding STX4 +PWCOMMONS trans-Golgi Network Vesicle Budding VAMP7 +PWCOMMONS trans-Golgi Network Vesicle Budding SNAP23 +PWCOMMONS trans-Golgi Network Vesicle Budding VAMP2 +PWCOMMONS trans-Golgi Network Vesicle Budding SH3GL2 +PWCOMMONS trans-Golgi Network Vesicle Budding ARF1 +PWCOMMONS trans-Golgi Network Vesicle Budding GBF1 +PWCOMMONS trans-Golgi Network Vesicle Budding VTI1B +PWCOMMONS trans-Golgi Network Vesicle Budding +PWCOMMONS Vamp7 associated clathrin derived vesicle budding VAMP8 +PWCOMMONS Vamp7 associated clathrin derived vesicle budding AP1G1 +PWCOMMONS Vamp7 associated clathrin derived vesicle budding AP1B1 +PWCOMMONS Vamp7 associated clathrin derived vesicle budding HSPA8 +PWCOMMONS Vamp7 associated clathrin derived vesicle budding DNAJC6 +PWCOMMONS Vamp7 associated clathrin derived vesicle budding STX4 +PWCOMMONS Vamp7 associated clathrin derived vesicle budding VAMP7 +PWCOMMONS Vamp7 associated clathrin derived vesicle budding SNAP23 +PWCOMMONS Vamp7 associated clathrin derived vesicle budding VAMP2 +PWCOMMONS Vamp7 associated clathrin derived vesicle budding SH3GL2 +PWCOMMONS Vamp7 associated clathrin derived vesicle budding ARF1 +PWCOMMONS Vamp7 associated clathrin derived vesicle budding GBF1 +PWCOMMONS Vamp7 associated clathrin derived vesicle budding VTI1B +PWCOMMONS Vamp7 associated clathrin derived vesicle budding +PWCOMMONS Receptor-ligand complexes bind G proteins PFKFB1 +PWCOMMONS Receptor-ligand complexes bind G proteins MLXIPL +PWCOMMONS Receptor-ligand complexes bind G proteins CREB1 +PWCOMMONS Receptor-ligand complexes bind G proteins LIPE +PWCOMMONS Receptor-ligand complexes bind G proteins GNAS +PWCOMMONS Receptor-ligand complexes bind G proteins FABP4 +PWCOMMONS Receptor-ligand complexes bind G proteins +PWCOMMONS RNA Polymerase III Transcription Initiation BDP1 +PWCOMMONS RNA Polymerase III Transcription Initiation TBP +PWCOMMONS RNA Polymerase III Transcription Initiation POU2F1 +PWCOMMONS RNA Polymerase III Transcription Initiation ZNF143 +PWCOMMONS RNA Polymerase III Transcription Initiation SNAPC1 +PWCOMMONS RNA Polymerase III Transcription Initiation SNAPC2 +PWCOMMONS RNA Polymerase III Transcription Initiation SNAPC3 +PWCOMMONS RNA Polymerase III Transcription Initiation SNAPC5 +PWCOMMONS RNA Polymerase III Transcription Initiation SNAPC4 +PWCOMMONS RNA Polymerase III Transcription Initiation POLR3B +PWCOMMONS RNA Polymerase III Transcription Initiation POLR3E +PWCOMMONS RNA Polymerase III Transcription Initiation POLR3D +PWCOMMONS RNA Polymerase III Transcription Initiation LZTS1 +PWCOMMONS RNA Polymerase III Transcription Initiation POLR2L +PWCOMMONS RNA Polymerase III Transcription Initiation POLR2K +PWCOMMONS RNA Polymerase III Transcription Initiation POLR2H +PWCOMMONS RNA Polymerase III Transcription Initiation POLR3H +PWCOMMONS RNA Polymerase III Transcription Initiation POLR2F +PWCOMMONS RNA Polymerase III Transcription Initiation POLR3F +PWCOMMONS RNA Polymerase III Transcription Initiation POLR3A +PWCOMMONS RNA Polymerase III Transcription Initiation POLR2E +PWCOMMONS RNA Polymerase III Transcription Initiation BRF1 +PWCOMMONS RNA Polymerase III Transcription Initiation GTF3C2 +PWCOMMONS RNA Polymerase III Transcription Initiation GTF3C3 +PWCOMMONS RNA Polymerase III Transcription Initiation GTF3C4 +PWCOMMONS RNA Polymerase III Transcription Initiation GTF3C5 +PWCOMMONS RNA Polymerase III Transcription Initiation GTF3C1 +PWCOMMONS RNA Polymerase III Transcription Initiation GTF3A +PWCOMMONS RNA Polymerase III Transcription Initiation +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter BDP1 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter TBP +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter POU2F1 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter ZNF143 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter SNAPC1 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter SNAPC2 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter SNAPC3 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter SNAPC5 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter SNAPC4 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter POLR3B +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter POLR3E +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter POLR3D +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter LZTS1 +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter POLR2L +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter POLR2K +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter POLR2H +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter POLR3H +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter POLR2F +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter POLR3F +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter POLR3A +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter POLR2E +PWCOMMONS RNA Polymerase III Transcription Initiation From Type 3 Promoter +PWCOMMONS RNA Polymerase III Chain Elongation POLR3E +PWCOMMONS RNA Polymerase III Chain Elongation POLR3D +PWCOMMONS RNA Polymerase III Chain Elongation LZTS1 +PWCOMMONS RNA Polymerase III Chain Elongation POLR2L +PWCOMMONS RNA Polymerase III Chain Elongation POLR2K +PWCOMMONS RNA Polymerase III Chain Elongation POLR2H +PWCOMMONS RNA Polymerase III Chain Elongation POLR3H +PWCOMMONS RNA Polymerase III Chain Elongation POLR2F +PWCOMMONS RNA Polymerase III Chain Elongation POLR3F +PWCOMMONS RNA Polymerase III Chain Elongation POLR3A +PWCOMMONS RNA Polymerase III Chain Elongation POLR2E +PWCOMMONS RNA Polymerase III Chain Elongation NFIX +PWCOMMONS RNA Polymerase III Chain Elongation SSB +PWCOMMONS RNA Polymerase III Chain Elongation NFIB +PWCOMMONS RNA Polymerase III Chain Elongation NFIA +PWCOMMONS RNA Polymerase III Chain Elongation NFIC +PWCOMMONS RNA Polymerase III Chain Elongation +PWCOMMONS RNA Polymerase III Transcription Termination POLR3E +PWCOMMONS RNA Polymerase III Transcription Termination POLR3D +PWCOMMONS RNA Polymerase III Transcription Termination LZTS1 +PWCOMMONS RNA Polymerase III Transcription Termination POLR2L +PWCOMMONS RNA Polymerase III Transcription Termination POLR2K +PWCOMMONS RNA Polymerase III Transcription Termination POLR2H +PWCOMMONS RNA Polymerase III Transcription Termination POLR3H +PWCOMMONS RNA Polymerase III Transcription Termination POLR2F +PWCOMMONS RNA Polymerase III Transcription Termination POLR3F +PWCOMMONS RNA Polymerase III Transcription Termination POLR3A +PWCOMMONS RNA Polymerase III Transcription Termination POLR2E +PWCOMMONS RNA Polymerase III Transcription Termination NFIX +PWCOMMONS RNA Polymerase III Transcription Termination SSB +PWCOMMONS RNA Polymerase III Transcription Termination NFIB +PWCOMMONS RNA Polymerase III Transcription Termination NFIA +PWCOMMONS RNA Polymerase III Transcription Termination NFIC +PWCOMMONS RNA Polymerase III Transcription Termination +PWCOMMONS COPI Mediated Transport ARCN1 +PWCOMMONS COPI Mediated Transport COPG +PWCOMMONS COPI Mediated Transport COPB1 +PWCOMMONS COPI Mediated Transport COPZ1 +PWCOMMONS COPI Mediated Transport COPE +PWCOMMONS COPI Mediated Transport COPB2 +PWCOMMONS COPI Mediated Transport COPA +PWCOMMONS COPI Mediated Transport ARF1 +PWCOMMONS COPI Mediated Transport GBF1 +PWCOMMONS COPI Mediated Transport +PWCOMMONS IRS-related events FRAP1 +PWCOMMONS IRS-related events LST8 +PWCOMMONS IRS-related events EIF4B +PWCOMMONS IRS-related events RPS6 +PWCOMMONS IRS-related events RPS6KB1 +PWCOMMONS IRS-related events EIF4EBP1 +PWCOMMONS IRS-related events EIF4E +PWCOMMONS IRS-related events EIF4G1 +PWCOMMONS IRS-related events EEF2K +PWCOMMONS IRS-related events AKT2 +PWCOMMONS IRS-related events PDE3B +PWCOMMONS IRS-related events TSC1 +PWCOMMONS IRS-related events PDPK1 +PWCOMMONS IRS-related events MAP2K2 +PWCOMMONS IRS-related events RAF1 +PWCOMMONS IRS-related events YWHAB +PWCOMMONS IRS-related events MAP2K1 +PWCOMMONS IRS-related events RPS6KA5 +PWCOMMONS IRS-related events MAPK3 +PWCOMMONS IRS-related events ATF1 +PWCOMMONS IRS-related events CREB1 +PWCOMMONS IRS-related events MAPK1 +PWCOMMONS IRS-related events SOS1 +PWCOMMONS IRS-related events SHC1 +PWCOMMONS IRS-related events INSR +PWCOMMONS IRS-related events INS +PWCOMMONS IRS-related events +PWCOMMONS IRS-mediated signalling FRAP1 +PWCOMMONS IRS-mediated signalling LST8 +PWCOMMONS IRS-mediated signalling EIF4B +PWCOMMONS IRS-mediated signalling RPS6 +PWCOMMONS IRS-mediated signalling RPS6KB1 +PWCOMMONS IRS-mediated signalling EIF4EBP1 +PWCOMMONS IRS-mediated signalling EIF4E +PWCOMMONS IRS-mediated signalling EIF4G1 +PWCOMMONS IRS-mediated signalling EEF2K +PWCOMMONS IRS-mediated signalling AKT2 +PWCOMMONS IRS-mediated signalling PDE3B +PWCOMMONS IRS-mediated signalling TSC1 +PWCOMMONS IRS-mediated signalling PDPK1 +PWCOMMONS IRS-mediated signalling MAP2K2 +PWCOMMONS IRS-mediated signalling RAF1 +PWCOMMONS IRS-mediated signalling YWHAB +PWCOMMONS IRS-mediated signalling MAP2K1 +PWCOMMONS IRS-mediated signalling RPS6KA5 +PWCOMMONS IRS-mediated signalling MAPK3 +PWCOMMONS IRS-mediated signalling ATF1 +PWCOMMONS IRS-mediated signalling CREB1 +PWCOMMONS IRS-mediated signalling MAPK1 +PWCOMMONS IRS-mediated signalling SOS1 +PWCOMMONS IRS-mediated signalling SHC1 +PWCOMMONS IRS-mediated signalling +PWCOMMONS NFG and proNGF binds to p75NTR RELA +PWCOMMONS NFG and proNGF binds to p75NTR MAPK8 +PWCOMMONS NFG and proNGF binds to p75NTR SMPD2 +PWCOMMONS NFG and proNGF binds to p75NTR MAGED1 +PWCOMMONS NFG and proNGF binds to p75NTR NGFR +PWCOMMONS NFG and proNGF binds to p75NTR BAD +PWCOMMONS NFG and proNGF binds to p75NTR TRAF6 +PWCOMMONS NFG and proNGF binds to p75NTR MYD88 +PWCOMMONS NFG and proNGF binds to p75NTR NFKBIA +PWCOMMONS NFG and proNGF binds to p75NTR SQSTM1 +PWCOMMONS NFG and proNGF binds to p75NTR IKBKB +PWCOMMONS NFG and proNGF binds to p75NTR PSENEN +PWCOMMONS NFG and proNGF binds to p75NTR NGF +PWCOMMONS NFG and proNGF binds to p75NTR AATF +PWCOMMONS NFG and proNGF binds to p75NTR RIPK2 +PWCOMMONS NFG and proNGF binds to p75NTR +PWCOMMONS Synthesis of deoxyribonucleoside 5'-diphosphates from ribonucleoside 5'-diphosphates TXNRD1 +PWCOMMONS Synthesis of deoxyribonucleoside 5'-diphosphates from ribonucleoside 5'-diphosphates NME2 +PWCOMMONS Synthesis of deoxyribonucleoside 5'-diphosphates from ribonucleoside 5'-diphosphates NME1 +PWCOMMONS Synthesis of deoxyribonucleoside 5'-diphosphates from ribonucleoside 5'-diphosphates GLRX +PWCOMMONS Synthesis of deoxyribonucleoside 5'-diphosphates from ribonucleoside 5'-diphosphates RRM2 +PWCOMMONS Synthesis of deoxyribonucleoside 5'-diphosphates from ribonucleoside 5'-diphosphates RRM1 +PWCOMMONS Synthesis of deoxyribonucleoside 5'-diphosphates from ribonucleoside 5'-diphosphates RRM2B +PWCOMMONS Synthesis of deoxyribonucleoside 5'-diphosphates from ribonucleoside 5'-diphosphates GSR +PWCOMMONS Synthesis of deoxyribonucleoside 5'-diphosphates from ribonucleoside 5'-diphosphates +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin RRM2 +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin RRM1 +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin TXN +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin TXNRD1 +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin NME2 +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin NME1 +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) GLRX +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) RRM2 +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) RRM1 +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) TXNRD1 +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) NME2 +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) NME1 +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and glutaredoxin RRM1 +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and glutaredoxin GLRX +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and glutaredoxin GSR +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and glutaredoxin +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (glutaredoxin) RRM1 +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (glutaredoxin) GLRX +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (glutaredoxin) GSR +PWCOMMONS Reduction of cytosolic ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (glutaredoxin) +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin TXNRD1 +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin NME2 +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin NME1 +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin GLRX +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin RRM2 +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin RRM1 +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin RRM2B +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates by ribonucleotide reductase and thioredoxin +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) RRM1 +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) RRM2B +PWCOMMONS Reduction of nuclear ribonucleoside 5'-diphosphates to deoxyribonucleoside 5'-diphosphates (thioredoxin) +PWCOMMONS Reversible phosphorylation of nucleoside diphosphates GBE1 +PWCOMMONS Reversible phosphorylation of nucleoside diphosphates GYS2 +PWCOMMONS Reversible phosphorylation of nucleoside diphosphates UGDH +PWCOMMONS Reversible phosphorylation of nucleoside diphosphates SLC35D1 +PWCOMMONS Reversible phosphorylation of nucleoside diphosphates NME1 +PWCOMMONS Reversible phosphorylation of nucleoside diphosphates CTPS +PWCOMMONS Reversible phosphorylation of nucleoside diphosphates NME2 +PWCOMMONS Reversible phosphorylation of nucleoside diphosphates NME3 +PWCOMMONS Reversible phosphorylation of nucleoside diphosphates NME4 +PWCOMMONS Reversible phosphorylation of nucleoside diphosphates +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase C hexamer GBE1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase C hexamer GYS2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase C hexamer UGDH +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase C hexamer NME3 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase C hexamer SLC35D1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase C hexamer +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A,B heterohexamer CTPS +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A,B heterohexamer GBE1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A,B heterohexamer GYS2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A,B heterohexamer NME2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A,B heterohexamer NME1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A,B heterohexamer UGDH +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A,B heterohexamer SLC35D1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase A,B heterohexamer +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase B hexamer GBE1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase B hexamer GYS2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase B hexamer UGDH +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase B hexamer NME2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase B hexamer SLC35D1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside diphosphates by nucleoside diphosphate kinase B hexamer +PWCOMMONS Death Receptor Signalling TNFSF10 +PWCOMMONS Death Receptor Signalling FADD +PWCOMMONS Death Receptor Signalling CASP10 +PWCOMMONS Death Receptor Signalling CASP8 +PWCOMMONS Death Receptor Signalling CFLAR +PWCOMMONS Death Receptor Signalling BCL2L1 +PWCOMMONS Death Receptor Signalling BID +PWCOMMONS Death Receptor Signalling MST4 +PWCOMMONS Death Receptor Signalling DSG3 +PWCOMMONS Death Receptor Signalling GSN +PWCOMMONS Death Receptor Signalling DIABLO +PWCOMMONS Death Receptor Signalling XIAP +PWCOMMONS Death Receptor Signalling CASP3 +PWCOMMONS Death Receptor Signalling BAX +PWCOMMONS Death Receptor Signalling BAK1 +PWCOMMONS Death Receptor Signalling TNFRSF1A +PWCOMMONS Death Receptor Signalling TNF +PWCOMMONS Death Receptor Signalling PAK2 +PWCOMMONS Death Receptor Signalling ARHGAP10 +PWCOMMONS Death Receptor Signalling GAS2 +PWCOMMONS Death Receptor Signalling VIM +PWCOMMONS Death Receptor Signalling CASP9 +PWCOMMONS Death Receptor Signalling DSG1 +PWCOMMONS Death Receptor Signalling CYCS +PWCOMMONS Death Receptor Signalling APAF1 +PWCOMMONS Death Receptor Signalling FZR1 +PWCOMMONS Death Receptor Signalling ANAPC5 +PWCOMMONS Death Receptor Signalling ANAPC11 +PWCOMMONS Death Receptor Signalling CDC23 +PWCOMMONS Death Receptor Signalling ANAPC1 +PWCOMMONS Death Receptor Signalling ANAPC2 +PWCOMMONS Death Receptor Signalling UBE2D1 +PWCOMMONS Death Receptor Signalling CDC27 +PWCOMMONS Death Receptor Signalling ANAPC4 +PWCOMMONS Death Receptor Signalling ANAPC10 +PWCOMMONS Death Receptor Signalling ANAPC7 +PWCOMMONS Death Receptor Signalling UBE2C +PWCOMMONS Death Receptor Signalling CDC26 +PWCOMMONS Death Receptor Signalling CDC16 +PWCOMMONS Death Receptor Signalling UBE2E1 +PWCOMMONS Death Receptor Signalling PSMC6 +PWCOMMONS Death Receptor Signalling PSMA3 +PWCOMMONS Death Receptor Signalling PSMD8 +PWCOMMONS Death Receptor Signalling PSMD10 +PWCOMMONS Death Receptor Signalling PSMD1 +PWCOMMONS Death Receptor Signalling PSMD6 +PWCOMMONS Death Receptor Signalling PSMB5 +PWCOMMONS Death Receptor Signalling PSMB4 +PWCOMMONS Death Receptor Signalling PSMD4 +PWCOMMONS Death Receptor Signalling PSMA2 +PWCOMMONS Death Receptor Signalling PSMB8 +PWCOMMONS Death Receptor Signalling PSMD5 +PWCOMMONS Death Receptor Signalling PSMB6 +PWCOMMONS Death Receptor Signalling PSME3 +PWCOMMONS Death Receptor Signalling PSMB3 +PWCOMMONS Death Receptor Signalling PSMB7 +PWCOMMONS Death Receptor Signalling PSME1 +PWCOMMONS Death Receptor Signalling PSMD11 +PWCOMMONS Death Receptor Signalling PSMA5 +PWCOMMONS Death Receptor Signalling PSMC5 +PWCOMMONS Death Receptor Signalling PSMC1 +PWCOMMONS Death Receptor Signalling PSMD7 +PWCOMMONS Death Receptor Signalling PSMD3 +PWCOMMONS Death Receptor Signalling PSMB2 +PWCOMMONS Death Receptor Signalling PSMD13 +PWCOMMONS Death Receptor Signalling PSMD14 +PWCOMMONS Death Receptor Signalling PSMB1 +PWCOMMONS Death Receptor Signalling PSMA6 +PWCOMMONS Death Receptor Signalling PSMB9 +PWCOMMONS Death Receptor Signalling PSMB10 +PWCOMMONS Death Receptor Signalling PSMD9 +PWCOMMONS Death Receptor Signalling PSMC4 +PWCOMMONS Death Receptor Signalling PSMA1 +PWCOMMONS Death Receptor Signalling PSMA4 +PWCOMMONS Death Receptor Signalling PSMA7 +PWCOMMONS Death Receptor Signalling PSMF1 +PWCOMMONS Death Receptor Signalling PSME2 +PWCOMMONS Death Receptor Signalling PSMD12 +PWCOMMONS Death Receptor Signalling PSMC3 +PWCOMMONS Death Receptor Signalling PSMC2 +PWCOMMONS Death Receptor Signalling PSMD2 +PWCOMMONS Death Receptor Signalling NMT1 +PWCOMMONS Death Receptor Signalling ADD1 +PWCOMMONS Death Receptor Signalling BIRC2 +PWCOMMONS Death Receptor Signalling MAPT +PWCOMMONS Death Receptor Signalling DBNL +PWCOMMONS Death Receptor Signalling DSG2 +PWCOMMONS Death Receptor Signalling TRAF2 +PWCOMMONS Death Receptor Signalling RIPK1 +PWCOMMONS Death Receptor Signalling TRADD +PWCOMMONS Death Receptor Signalling BMX +PWCOMMONS Death Receptor Signalling BCL2 +PWCOMMONS Death Receptor Signalling CDH1 +PWCOMMONS Death Receptor Signalling SPTAN1 +PWCOMMONS Death Receptor Signalling CASP7 +PWCOMMONS Death Receptor Signalling CLSPN +PWCOMMONS Death Receptor Signalling DFFA +PWCOMMONS Death Receptor Signalling DFFB +PWCOMMONS Death Receptor Signalling KPNB1 +PWCOMMONS Death Receptor Signalling KPNA1 +PWCOMMONS Death Receptor Signalling OCLN +PWCOMMONS Death Receptor Signalling TJP2 +PWCOMMONS Death Receptor Signalling PKP1 +PWCOMMONS Death Receptor Signalling DSP +PWCOMMONS Death Receptor Signalling CASP6 +PWCOMMONS Death Receptor Signalling ACIN1 +PWCOMMONS Death Receptor Signalling STK24 +PWCOMMONS Death Receptor Signalling PRKCQ +PWCOMMONS Death Receptor Signalling ROCK1 +PWCOMMONS Death Receptor Signalling LMNB1 +PWCOMMONS Death Receptor Signalling BCAP31 +PWCOMMONS Death Receptor Signalling PRKCD +PWCOMMONS Death Receptor Signalling CDC25A +PWCOMMONS Death Receptor Signalling FNTA +PWCOMMONS Death Receptor Signalling PTK2 +PWCOMMONS Death Receptor Signalling BAD +PWCOMMONS Death Receptor Signalling PLEC1 +PWCOMMONS Death Receptor Signalling FASLG +PWCOMMONS Death Receptor Signalling FAS +PWCOMMONS Death Receptor Signalling +PWCOMMONS TNF signaling BID +PWCOMMONS TNF signaling MST4 +PWCOMMONS TNF signaling DSG3 +PWCOMMONS TNF signaling GSN +PWCOMMONS TNF signaling DIABLO +PWCOMMONS TNF signaling XIAP +PWCOMMONS TNF signaling CASP3 +PWCOMMONS TNF signaling BAX +PWCOMMONS TNF signaling BAK1 +PWCOMMONS TNF signaling TNFRSF1A +PWCOMMONS TNF signaling TNF +PWCOMMONS TNF signaling PAK2 +PWCOMMONS TNF signaling ARHGAP10 +PWCOMMONS TNF signaling GAS2 +PWCOMMONS TNF signaling VIM +PWCOMMONS TNF signaling CASP9 +PWCOMMONS TNF signaling DSG1 +PWCOMMONS TNF signaling CYCS +PWCOMMONS TNF signaling APAF1 +PWCOMMONS TNF signaling FZR1 +PWCOMMONS TNF signaling ANAPC5 +PWCOMMONS TNF signaling ANAPC11 +PWCOMMONS TNF signaling CDC23 +PWCOMMONS TNF signaling ANAPC1 +PWCOMMONS TNF signaling ANAPC2 +PWCOMMONS TNF signaling UBE2D1 +PWCOMMONS TNF signaling CDC27 +PWCOMMONS TNF signaling ANAPC4 +PWCOMMONS TNF signaling ANAPC10 +PWCOMMONS TNF signaling ANAPC7 +PWCOMMONS TNF signaling UBE2C +PWCOMMONS TNF signaling CDC26 +PWCOMMONS TNF signaling CDC16 +PWCOMMONS TNF signaling UBE2E1 +PWCOMMONS TNF signaling PSMC6 +PWCOMMONS TNF signaling PSMA3 +PWCOMMONS TNF signaling PSMD8 +PWCOMMONS TNF signaling PSMD10 +PWCOMMONS TNF signaling PSMD1 +PWCOMMONS TNF signaling PSMD6 +PWCOMMONS TNF signaling PSMB5 +PWCOMMONS TNF signaling PSMB4 +PWCOMMONS TNF signaling PSMD4 +PWCOMMONS TNF signaling PSMA2 +PWCOMMONS TNF signaling PSMB8 +PWCOMMONS TNF signaling PSMD5 +PWCOMMONS TNF signaling PSMB6 +PWCOMMONS TNF signaling PSME3 +PWCOMMONS TNF signaling PSMB3 +PWCOMMONS TNF signaling PSMB7 +PWCOMMONS TNF signaling PSME1 +PWCOMMONS TNF signaling PSMD11 +PWCOMMONS TNF signaling PSMA5 +PWCOMMONS TNF signaling PSMC5 +PWCOMMONS TNF signaling PSMC1 +PWCOMMONS TNF signaling PSMD7 +PWCOMMONS TNF signaling PSMD3 +PWCOMMONS TNF signaling PSMB2 +PWCOMMONS TNF signaling PSMD13 +PWCOMMONS TNF signaling PSMD14 +PWCOMMONS TNF signaling PSMB1 +PWCOMMONS TNF signaling PSMA6 +PWCOMMONS TNF signaling PSMB9 +PWCOMMONS TNF signaling PSMB10 +PWCOMMONS TNF signaling PSMD9 +PWCOMMONS TNF signaling PSMC4 +PWCOMMONS TNF signaling PSMA1 +PWCOMMONS TNF signaling PSMA4 +PWCOMMONS TNF signaling PSMA7 +PWCOMMONS TNF signaling PSMF1 +PWCOMMONS TNF signaling PSME2 +PWCOMMONS TNF signaling PSMD12 +PWCOMMONS TNF signaling PSMC3 +PWCOMMONS TNF signaling PSMC2 +PWCOMMONS TNF signaling PSMD2 +PWCOMMONS TNF signaling NMT1 +PWCOMMONS TNF signaling ADD1 +PWCOMMONS TNF signaling BIRC2 +PWCOMMONS TNF signaling MAPT +PWCOMMONS TNF signaling DBNL +PWCOMMONS TNF signaling DSG2 +PWCOMMONS TNF signaling CASP8 +PWCOMMONS TNF signaling FADD +PWCOMMONS TNF signaling TRAF2 +PWCOMMONS TNF signaling RIPK1 +PWCOMMONS TNF signaling TRADD +PWCOMMONS TNF signaling BMX +PWCOMMONS TNF signaling BCL2 +PWCOMMONS TNF signaling CDH1 +PWCOMMONS TNF signaling SPTAN1 +PWCOMMONS TNF signaling CASP7 +PWCOMMONS TNF signaling CLSPN +PWCOMMONS TNF signaling DFFA +PWCOMMONS TNF signaling DFFB +PWCOMMONS TNF signaling KPNB1 +PWCOMMONS TNF signaling KPNA1 +PWCOMMONS TNF signaling OCLN +PWCOMMONS TNF signaling TJP2 +PWCOMMONS TNF signaling PKP1 +PWCOMMONS TNF signaling DSP +PWCOMMONS TNF signaling CASP6 +PWCOMMONS TNF signaling ACIN1 +PWCOMMONS TNF signaling STK24 +PWCOMMONS TNF signaling PRKCQ +PWCOMMONS TNF signaling ROCK1 +PWCOMMONS TNF signaling LMNB1 +PWCOMMONS TNF signaling BCAP31 +PWCOMMONS TNF signaling PRKCD +PWCOMMONS TNF signaling CDC25A +PWCOMMONS TNF signaling FNTA +PWCOMMONS TNF signaling PTK2 +PWCOMMONS TNF signaling BAD +PWCOMMONS TNF signaling PLEC1 +PWCOMMONS TNF signaling +PWCOMMONS TRAIL signaling TNFSF10 +PWCOMMONS TRAIL signaling FADD +PWCOMMONS TRAIL signaling CASP10 +PWCOMMONS TRAIL signaling CASP8 +PWCOMMONS TRAIL signaling CFLAR +PWCOMMONS TRAIL signaling +PWCOMMONS eNOS activation and regulation CAV1 +PWCOMMONS eNOS activation and regulation HSP90AA1 +PWCOMMONS eNOS activation and regulation CALM1 +PWCOMMONS eNOS activation and regulation LYPLA1 +PWCOMMONS eNOS activation and regulation WASL +PWCOMMONS eNOS activation and regulation NOSTRIN +PWCOMMONS eNOS activation and regulation ZDHHC21 +PWCOMMONS eNOS activation and regulation AKT1 +PWCOMMONS eNOS activation and regulation NOSIP +PWCOMMONS eNOS activation and regulation +PWCOMMONS eNOS acylation cycle CAV1 +PWCOMMONS eNOS acylation cycle HSP90AA1 +PWCOMMONS eNOS acylation cycle CALM1 +PWCOMMONS eNOS acylation cycle LYPLA1 +PWCOMMONS eNOS acylation cycle WASL +PWCOMMONS eNOS acylation cycle NOSTRIN +PWCOMMONS eNOS acylation cycle ZDHHC21 +PWCOMMONS eNOS acylation cycle AKT1 +PWCOMMONS eNOS acylation cycle +PWCOMMONS NOSTRIN mediated eNOS trafficking WASL +PWCOMMONS NOSTRIN mediated eNOS trafficking NOS3 +PWCOMMONS NOSTRIN mediated eNOS trafficking NOSTRIN +PWCOMMONS NOSTRIN mediated eNOS trafficking CALM1 +PWCOMMONS NOSTRIN mediated eNOS trafficking HSP90AA1 +PWCOMMONS NOSTRIN mediated eNOS trafficking AKT1 +PWCOMMONS NOSTRIN mediated eNOS trafficking +PWCOMMONS eNOS activation NOS3 +PWCOMMONS eNOS activation CAV1 +PWCOMMONS eNOS activation HSP90AA1 +PWCOMMONS eNOS activation LYPLA1 +PWCOMMONS eNOS activation WASL +PWCOMMONS eNOS activation NOSTRIN +PWCOMMONS eNOS activation ZDHHC21 +PWCOMMONS eNOS activation AKT1 +PWCOMMONS eNOS activation +PWCOMMONS NOSIP mediated eNOS trafficking NOS3 +PWCOMMONS NOSIP mediated eNOS trafficking +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells GLUL +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells RIMS1 +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells CPLX1 +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells SLC18A3 +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells VAMP2 +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells RAB3A +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells SYT1 +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells SLC17A7 +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells SLC38A1 +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells UNC13B +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells DBT +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells BCKDHA +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells BCKDHB +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells DLD +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells BCAT1 +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells MCCC2 +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells MCCC1 +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells AUH +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells IVD +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells BCAT2 +PWCOMMONS Neurotransmitter uptake and Metabolism In Glial Cells +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism GLUL +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism RIMS1 +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism CPLX1 +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism SLC18A3 +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism VAMP2 +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism RAB3A +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism SYT1 +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism SLC17A7 +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism SLC38A1 +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism UNC13B +PWCOMMONS Astrocytic Glutamate-Glutamine Uptake And Metabolism +PWCOMMONS Glutamate Neurotransmitter Release Cycle DBT +PWCOMMONS Glutamate Neurotransmitter Release Cycle BCKDHA +PWCOMMONS Glutamate Neurotransmitter Release Cycle BCKDHB +PWCOMMONS Glutamate Neurotransmitter Release Cycle DLD +PWCOMMONS Glutamate Neurotransmitter Release Cycle RIMS1 +PWCOMMONS Glutamate Neurotransmitter Release Cycle CPLX1 +PWCOMMONS Glutamate Neurotransmitter Release Cycle SLC18A3 +PWCOMMONS Glutamate Neurotransmitter Release Cycle VAMP2 +PWCOMMONS Glutamate Neurotransmitter Release Cycle RAB3A +PWCOMMONS Glutamate Neurotransmitter Release Cycle SYT1 +PWCOMMONS Glutamate Neurotransmitter Release Cycle SLC17A7 +PWCOMMONS Glutamate Neurotransmitter Release Cycle UNC13B +PWCOMMONS Glutamate Neurotransmitter Release Cycle BCAT1 +PWCOMMONS Glutamate Neurotransmitter Release Cycle MCCC2 +PWCOMMONS Glutamate Neurotransmitter Release Cycle MCCC1 +PWCOMMONS Glutamate Neurotransmitter Release Cycle AUH +PWCOMMONS Glutamate Neurotransmitter Release Cycle IVD +PWCOMMONS Glutamate Neurotransmitter Release Cycle BCAT2 +PWCOMMONS Glutamate Neurotransmitter Release Cycle +PWCOMMONS Oxidative decarboxylation of alpha-ketoisocaproate to isovaleryl-CoA by branched-chain alpha-ketoacid dehydrogenase BCKDHA +PWCOMMONS Oxidative decarboxylation of alpha-ketoisocaproate to isovaleryl-CoA by branched-chain alpha-ketoacid dehydrogenase BCKDHB +PWCOMMONS Oxidative decarboxylation of alpha-ketoisocaproate to isovaleryl-CoA by branched-chain alpha-ketoacid dehydrogenase DLD +PWCOMMONS Oxidative decarboxylation of alpha-ketoisocaproate to isovaleryl-CoA by branched-chain alpha-ketoacid dehydrogenase MCCC2 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisocaproate to isovaleryl-CoA by branched-chain alpha-ketoacid dehydrogenase MCCC1 +PWCOMMONS Oxidative decarboxylation of alpha-ketoisocaproate to isovaleryl-CoA by branched-chain alpha-ketoacid dehydrogenase AUH +PWCOMMONS Oxidative decarboxylation of alpha-ketoisocaproate to isovaleryl-CoA by branched-chain alpha-ketoacid dehydrogenase IVD +PWCOMMONS Oxidative decarboxylation of alpha-ketoisocaproate to isovaleryl-CoA by branched-chain alpha-ketoacid dehydrogenase +PWCOMMONS Amine ligand-binding receptors PFKFB1 +PWCOMMONS Amine ligand-binding receptors MLXIPL +PWCOMMONS Amine ligand-binding receptors CREB1 +PWCOMMONS Amine ligand-binding receptors LIPE +PWCOMMONS Amine ligand-binding receptors GNAS +PWCOMMONS Amine ligand-binding receptors FABP4 +PWCOMMONS Amine ligand-binding receptors HRH1 +PWCOMMONS Amine ligand-binding receptors HRH2 +PWCOMMONS Amine ligand-binding receptors +PWCOMMONS Serotonin receptors PFKFB1 +PWCOMMONS Serotonin receptors MLXIPL +PWCOMMONS Serotonin receptors CREB1 +PWCOMMONS Serotonin receptors LIPE +PWCOMMONS Serotonin receptors GNAS +PWCOMMONS Serotonin receptors FABP4 +PWCOMMONS Serotonin receptors +PWCOMMONS Dopamine receptors PFKFB1 +PWCOMMONS Dopamine receptors MLXIPL +PWCOMMONS Dopamine receptors CREB1 +PWCOMMONS Dopamine receptors LIPE +PWCOMMONS Dopamine receptors GNAS +PWCOMMONS Dopamine receptors FABP4 +PWCOMMONS Dopamine receptors +PWCOMMONS Adrenoceptors PFKFB1 +PWCOMMONS Adrenoceptors MLXIPL +PWCOMMONS Adrenoceptors CREB1 +PWCOMMONS Adrenoceptors LIPE +PWCOMMONS Adrenoceptors GNAS +PWCOMMONS Adrenoceptors FABP4 +PWCOMMONS Adrenoceptors +PWCOMMONS G-protein mediated events GNAL +PWCOMMONS G-protein mediated events CALM1 +PWCOMMONS G-protein mediated events CAV1 +PWCOMMONS G-protein mediated events HSP90AA1 +PWCOMMONS G-protein mediated events NOS3 +PWCOMMONS G-protein mediated events VAMP2 +PWCOMMONS G-protein mediated events INS +PWCOMMONS G-protein mediated events SYT5 +PWCOMMONS G-protein mediated events AKT1 +PWCOMMONS G-protein mediated events PLA2G4A +PWCOMMONS G-protein mediated events MGLL +PWCOMMONS G-protein mediated events LIPE +PWCOMMONS G-protein mediated events PFKFB1 +PWCOMMONS G-protein mediated events FABP4 +PWCOMMONS G-protein mediated events MLXIPL +PWCOMMONS G-protein mediated events CREB1 +PWCOMMONS G-protein mediated events ADRBK1 +PWCOMMONS G-protein mediated events CAMK4 +PWCOMMONS G-protein mediated events +PWCOMMONS Adenylate cyclase inhibitory pathway GNAL +PWCOMMONS Adenylate cyclase inhibitory pathway +PWCOMMONS Further platelet releasate PLEK +PWCOMMONS Further platelet releasate PPIA +PWCOMMONS Further platelet releasate PSAP +PWCOMMONS Further platelet releasate CAP1 +PWCOMMONS Further platelet releasate FLNA +PWCOMMONS Further platelet releasate CALU +PWCOMMONS Further platelet releasate SOD1 +PWCOMMONS Further platelet releasate TF +PWCOMMONS Further platelet releasate TUBA4A +PWCOMMONS Further platelet releasate CFL1 +PWCOMMONS Further platelet releasate TTN +PWCOMMONS Further platelet releasate PFN1 +PWCOMMONS Further platelet releasate VCL +PWCOMMONS Further platelet releasate BRPF3 +PWCOMMONS Further platelet releasate ACTBL3 +PWCOMMONS Further platelet releasate WDR1 +PWCOMMONS Further platelet releasate SCG3 +PWCOMMONS Further platelet releasate HSPA5 +PWCOMMONS Further platelet releasate CALM1 +PWCOMMONS Further platelet releasate APOA1 +PWCOMMONS Further platelet releasate +PWCOMMONS HIV-1 elongation arrest and recovery TCEA1 +PWCOMMONS HIV-1 elongation arrest and recovery ELL +PWCOMMONS HIV-1 elongation arrest and recovery TCEB3 +PWCOMMONS HIV-1 elongation arrest and recovery TCEB1 +PWCOMMONS HIV-1 elongation arrest and recovery TCEB2 +PWCOMMONS HIV-1 elongation arrest and recovery SSRP1 +PWCOMMONS HIV-1 elongation arrest and recovery SUPT16H +PWCOMMONS HIV-1 elongation arrest and recovery CCNT2 +PWCOMMONS HIV-1 elongation arrest and recovery CDK9 +PWCOMMONS HIV-1 elongation arrest and recovery CCNT1 +PWCOMMONS HIV-1 elongation arrest and recovery POLR2G +PWCOMMONS HIV-1 elongation arrest and recovery POLR2B +PWCOMMONS HIV-1 elongation arrest and recovery POLR2L +PWCOMMONS HIV-1 elongation arrest and recovery POLR2A +PWCOMMONS HIV-1 elongation arrest and recovery POLR2K +PWCOMMONS HIV-1 elongation arrest and recovery POLR2H +PWCOMMONS HIV-1 elongation arrest and recovery POLR2D +PWCOMMONS HIV-1 elongation arrest and recovery POLR2C +PWCOMMONS HIV-1 elongation arrest and recovery POLR2I +PWCOMMONS HIV-1 elongation arrest and recovery POLR2F +PWCOMMONS HIV-1 elongation arrest and recovery POLR2J +PWCOMMONS HIV-1 elongation arrest and recovery POLR2E +PWCOMMONS HIV-1 elongation arrest and recovery GTF2F1 +PWCOMMONS HIV-1 elongation arrest and recovery GTF2F2 +PWCOMMONS HIV-1 elongation arrest and recovery SUPT4H1 +PWCOMMONS HIV-1 elongation arrest and recovery TH1L +PWCOMMONS HIV-1 elongation arrest and recovery WHSC2 +PWCOMMONS HIV-1 elongation arrest and recovery RDBP +PWCOMMONS HIV-1 elongation arrest and recovery COBRA1 +PWCOMMONS HIV-1 elongation arrest and recovery +PWCOMMONS NRAGE signals death through JNK MAGED1 +PWCOMMONS NRAGE signals death through JNK NGFR +PWCOMMONS NRAGE signals death through JNK BAD +PWCOMMONS NRAGE signals death through JNK AATF +PWCOMMONS NRAGE signals death through JNK +PWCOMMONS Glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer GYS2 +PWCOMMONS Glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer GYG2 +PWCOMMONS Glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer GYS1 +PWCOMMONS Glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer GBE1 +PWCOMMONS Glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer +PWCOMMONS Activation of BAD and translocation to mitochondria YWHAB +PWCOMMONS Activation of BAD and translocation to mitochondria AKT1 +PWCOMMONS Activation of BAD and translocation to mitochondria BCL2 +PWCOMMONS Activation of BAD and translocation to mitochondria BCL2L1 +PWCOMMONS Activation of BAD and translocation to mitochondria PPP3R1 +PWCOMMONS Activation of BAD and translocation to mitochondria PPP3CC +PWCOMMONS Activation of BAD and translocation to mitochondria BID +PWCOMMONS Activation of BAD and translocation to mitochondria +PWCOMMONS Nucleotide Excision Repair PCNA +PWCOMMONS Nucleotide Excision Repair POLD4 +PWCOMMONS Nucleotide Excision Repair POLD3 +PWCOMMONS Nucleotide Excision Repair POLD2 +PWCOMMONS Nucleotide Excision Repair POLD1 +PWCOMMONS Nucleotide Excision Repair POLE2 +PWCOMMONS Nucleotide Excision Repair POLE +PWCOMMONS Nucleotide Excision Repair ERCC5 +PWCOMMONS Nucleotide Excision Repair TCEA1 +PWCOMMONS Nucleotide Excision Repair ERCC8 +PWCOMMONS Nucleotide Excision Repair XAB2 +PWCOMMONS Nucleotide Excision Repair ERCC6 +PWCOMMONS Nucleotide Excision Repair ERCC4 +PWCOMMONS Nucleotide Excision Repair ERCC1 +PWCOMMONS Nucleotide Excision Repair ERCC2 +PWCOMMONS Nucleotide Excision Repair GTF2H3 +PWCOMMONS Nucleotide Excision Repair GTF2H4 +PWCOMMONS Nucleotide Excision Repair GTF2H2 +PWCOMMONS Nucleotide Excision Repair ERCC3 +PWCOMMONS Nucleotide Excision Repair GTF2H1 +PWCOMMONS Nucleotide Excision Repair CCNH +PWCOMMONS Nucleotide Excision Repair CDK7 +PWCOMMONS Nucleotide Excision Repair MNAT1 +PWCOMMONS Nucleotide Excision Repair POLR2G +PWCOMMONS Nucleotide Excision Repair POLR2B +PWCOMMONS Nucleotide Excision Repair POLR2L +PWCOMMONS Nucleotide Excision Repair POLR2A +PWCOMMONS Nucleotide Excision Repair POLR2K +PWCOMMONS Nucleotide Excision Repair POLR2H +PWCOMMONS Nucleotide Excision Repair POLR2D +PWCOMMONS Nucleotide Excision Repair POLR2C +PWCOMMONS Nucleotide Excision Repair POLR2I +PWCOMMONS Nucleotide Excision Repair POLR2F +PWCOMMONS Nucleotide Excision Repair POLR2J +PWCOMMONS Nucleotide Excision Repair POLR2E +PWCOMMONS Nucleotide Excision Repair RFC2 +PWCOMMONS Nucleotide Excision Repair RFC1 +PWCOMMONS Nucleotide Excision Repair RFC3 +PWCOMMONS Nucleotide Excision Repair RFC5 +PWCOMMONS Nucleotide Excision Repair RFC4 +PWCOMMONS Nucleotide Excision Repair RPA1 +PWCOMMONS Nucleotide Excision Repair RPA3 +PWCOMMONS Nucleotide Excision Repair RPA2 +PWCOMMONS Nucleotide Excision Repair XPA +PWCOMMONS Nucleotide Excision Repair DDB2 +PWCOMMONS Nucleotide Excision Repair DDB1 +PWCOMMONS Nucleotide Excision Repair RAD23B +PWCOMMONS Nucleotide Excision Repair XPC +PWCOMMONS Nucleotide Excision Repair +PWCOMMONS Global Genomic NER (GG-NER) PCNA +PWCOMMONS Global Genomic NER (GG-NER) POLD4 +PWCOMMONS Global Genomic NER (GG-NER) POLD3 +PWCOMMONS Global Genomic NER (GG-NER) POLD2 +PWCOMMONS Global Genomic NER (GG-NER) POLD1 +PWCOMMONS Global Genomic NER (GG-NER) ERCC5 +PWCOMMONS Global Genomic NER (GG-NER) XPA +PWCOMMONS Global Genomic NER (GG-NER) DDB2 +PWCOMMONS Global Genomic NER (GG-NER) DDB1 +PWCOMMONS Global Genomic NER (GG-NER) ERCC4 +PWCOMMONS Global Genomic NER (GG-NER) ERCC1 +PWCOMMONS Global Genomic NER (GG-NER) RAD23B +PWCOMMONS Global Genomic NER (GG-NER) XPC +PWCOMMONS Global Genomic NER (GG-NER) ERCC2 +PWCOMMONS Global Genomic NER (GG-NER) GTF2H3 +PWCOMMONS Global Genomic NER (GG-NER) GTF2H4 +PWCOMMONS Global Genomic NER (GG-NER) GTF2H2 +PWCOMMONS Global Genomic NER (GG-NER) ERCC3 +PWCOMMONS Global Genomic NER (GG-NER) GTF2H1 +PWCOMMONS Global Genomic NER (GG-NER) CCNH +PWCOMMONS Global Genomic NER (GG-NER) CDK7 +PWCOMMONS Global Genomic NER (GG-NER) MNAT1 +PWCOMMONS Global Genomic NER (GG-NER) RPA1 +PWCOMMONS Global Genomic NER (GG-NER) RPA3 +PWCOMMONS Global Genomic NER (GG-NER) RPA2 +PWCOMMONS Global Genomic NER (GG-NER) POLE2 +PWCOMMONS Global Genomic NER (GG-NER) POLE +PWCOMMONS Global Genomic NER (GG-NER) RFC2 +PWCOMMONS Global Genomic NER (GG-NER) RFC1 +PWCOMMONS Global Genomic NER (GG-NER) RFC3 +PWCOMMONS Global Genomic NER (GG-NER) RFC5 +PWCOMMONS Global Genomic NER (GG-NER) RFC4 +PWCOMMONS Global Genomic NER (GG-NER) +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER PCNA +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER POLD4 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER POLD3 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER POLD2 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER POLD1 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER POLE2 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER POLE +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER RFC2 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER RFC1 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER RFC3 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER RFC5 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER RFC4 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER RPA1 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER RPA3 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER RPA2 +PWCOMMONS Gap-filling DNA repair synthesis and ligation in GG-NER +PWCOMMONS Formation of incision complex in GG-NER PCNA +PWCOMMONS Formation of incision complex in GG-NER POLD4 +PWCOMMONS Formation of incision complex in GG-NER POLD3 +PWCOMMONS Formation of incision complex in GG-NER POLD2 +PWCOMMONS Formation of incision complex in GG-NER POLD1 +PWCOMMONS Formation of incision complex in GG-NER ERCC5 +PWCOMMONS Formation of incision complex in GG-NER XPA +PWCOMMONS Formation of incision complex in GG-NER DDB2 +PWCOMMONS Formation of incision complex in GG-NER DDB1 +PWCOMMONS Formation of incision complex in GG-NER ERCC2 +PWCOMMONS Formation of incision complex in GG-NER GTF2H3 +PWCOMMONS Formation of incision complex in GG-NER GTF2H4 +PWCOMMONS Formation of incision complex in GG-NER GTF2H2 +PWCOMMONS Formation of incision complex in GG-NER ERCC3 +PWCOMMONS Formation of incision complex in GG-NER GTF2H1 +PWCOMMONS Formation of incision complex in GG-NER CCNH +PWCOMMONS Formation of incision complex in GG-NER CDK7 +PWCOMMONS Formation of incision complex in GG-NER MNAT1 +PWCOMMONS Formation of incision complex in GG-NER RPA1 +PWCOMMONS Formation of incision complex in GG-NER RPA3 +PWCOMMONS Formation of incision complex in GG-NER RPA2 +PWCOMMONS Formation of incision complex in GG-NER RAD23B +PWCOMMONS Formation of incision complex in GG-NER XPC +PWCOMMONS Formation of incision complex in GG-NER ERCC4 +PWCOMMONS Formation of incision complex in GG-NER ERCC1 +PWCOMMONS Formation of incision complex in GG-NER POLE2 +PWCOMMONS Formation of incision complex in GG-NER POLE +PWCOMMONS Formation of incision complex in GG-NER RFC2 +PWCOMMONS Formation of incision complex in GG-NER RFC1 +PWCOMMONS Formation of incision complex in GG-NER RFC3 +PWCOMMONS Formation of incision complex in GG-NER RFC5 +PWCOMMONS Formation of incision complex in GG-NER RFC4 +PWCOMMONS Formation of incision complex in GG-NER +PWCOMMONS DNA Damage Recognition in GG-NER PCNA +PWCOMMONS DNA Damage Recognition in GG-NER POLD4 +PWCOMMONS DNA Damage Recognition in GG-NER POLD3 +PWCOMMONS DNA Damage Recognition in GG-NER POLD2 +PWCOMMONS DNA Damage Recognition in GG-NER POLD1 +PWCOMMONS DNA Damage Recognition in GG-NER ERCC5 +PWCOMMONS DNA Damage Recognition in GG-NER XPA +PWCOMMONS DNA Damage Recognition in GG-NER DDB2 +PWCOMMONS DNA Damage Recognition in GG-NER DDB1 +PWCOMMONS DNA Damage Recognition in GG-NER ERCC2 +PWCOMMONS DNA Damage Recognition in GG-NER GTF2H3 +PWCOMMONS DNA Damage Recognition in GG-NER GTF2H4 +PWCOMMONS DNA Damage Recognition in GG-NER GTF2H2 +PWCOMMONS DNA Damage Recognition in GG-NER ERCC3 +PWCOMMONS DNA Damage Recognition in GG-NER GTF2H1 +PWCOMMONS DNA Damage Recognition in GG-NER CCNH +PWCOMMONS DNA Damage Recognition in GG-NER CDK7 +PWCOMMONS DNA Damage Recognition in GG-NER MNAT1 +PWCOMMONS DNA Damage Recognition in GG-NER RPA1 +PWCOMMONS DNA Damage Recognition in GG-NER RPA3 +PWCOMMONS DNA Damage Recognition in GG-NER RPA2 +PWCOMMONS DNA Damage Recognition in GG-NER RAD23B +PWCOMMONS DNA Damage Recognition in GG-NER XPC +PWCOMMONS DNA Damage Recognition in GG-NER ERCC4 +PWCOMMONS DNA Damage Recognition in GG-NER ERCC1 +PWCOMMONS DNA Damage Recognition in GG-NER POLE2 +PWCOMMONS DNA Damage Recognition in GG-NER POLE +PWCOMMONS DNA Damage Recognition in GG-NER RFC2 +PWCOMMONS DNA Damage Recognition in GG-NER RFC1 +PWCOMMONS DNA Damage Recognition in GG-NER RFC3 +PWCOMMONS DNA Damage Recognition in GG-NER RFC5 +PWCOMMONS DNA Damage Recognition in GG-NER RFC4 +PWCOMMONS DNA Damage Recognition in GG-NER +PWCOMMONS Cell death signalling via NRAGE, NRIF and NADE NGFRAP1 +PWCOMMONS Cell death signalling via NRAGE, NRIF and NADE NGFR +PWCOMMONS Cell death signalling via NRAGE, NRIF and NADE SQSTM1 +PWCOMMONS Cell death signalling via NRAGE, NRIF and NADE MAPK8 +PWCOMMONS Cell death signalling via NRAGE, NRIF and NADE PSENEN +PWCOMMONS Cell death signalling via NRAGE, NRIF and NADE TRAF6 +PWCOMMONS Cell death signalling via NRAGE, NRIF and NADE MAGED1 +PWCOMMONS Cell death signalling via NRAGE, NRIF and NADE BAD +PWCOMMONS Cell death signalling via NRAGE, NRIF and NADE AATF +PWCOMMONS Cell death signalling via NRAGE, NRIF and NADE +PWCOMMONS NRIF signals cell death from the nucleus MAPK8 +PWCOMMONS NRIF signals cell death from the nucleus PSENEN +PWCOMMONS NRIF signals cell death from the nucleus NGFR +PWCOMMONS NRIF signals cell death from the nucleus TRAF6 +PWCOMMONS NRIF signals cell death from the nucleus +PWCOMMONS NADE modulates death signalling NGFRAP1 +PWCOMMONS NADE modulates death signalling NGFR +PWCOMMONS NADE modulates death signalling +PWCOMMONS Activation and oligomerization of BAK protein DSG3 +PWCOMMONS Activation and oligomerization of BAK protein GSN +PWCOMMONS Activation and oligomerization of BAK protein DIABLO +PWCOMMONS Activation and oligomerization of BAK protein XIAP +PWCOMMONS Activation and oligomerization of BAK protein CASP3 +PWCOMMONS Activation and oligomerization of BAK protein BAK1 +PWCOMMONS Activation and oligomerization of BAK protein BID +PWCOMMONS Activation and oligomerization of BAK protein PAK2 +PWCOMMONS Activation and oligomerization of BAK protein ARHGAP10 +PWCOMMONS Activation and oligomerization of BAK protein GAS2 +PWCOMMONS Activation and oligomerization of BAK protein VIM +PWCOMMONS Activation and oligomerization of BAK protein CASP9 +PWCOMMONS Activation and oligomerization of BAK protein DSG1 +PWCOMMONS Activation and oligomerization of BAK protein CYCS +PWCOMMONS Activation and oligomerization of BAK protein APAF1 +PWCOMMONS Activation and oligomerization of BAK protein FZR1 +PWCOMMONS Activation and oligomerization of BAK protein ANAPC5 +PWCOMMONS Activation and oligomerization of BAK protein ANAPC11 +PWCOMMONS Activation and oligomerization of BAK protein CDC23 +PWCOMMONS Activation and oligomerization of BAK protein ANAPC1 +PWCOMMONS Activation and oligomerization of BAK protein ANAPC2 +PWCOMMONS Activation and oligomerization of BAK protein UBE2D1 +PWCOMMONS Activation and oligomerization of BAK protein CDC27 +PWCOMMONS Activation and oligomerization of BAK protein ANAPC4 +PWCOMMONS Activation and oligomerization of BAK protein ANAPC10 +PWCOMMONS Activation and oligomerization of BAK protein ANAPC7 +PWCOMMONS Activation and oligomerization of BAK protein UBE2C +PWCOMMONS Activation and oligomerization of BAK protein CDC26 +PWCOMMONS Activation and oligomerization of BAK protein CDC16 +PWCOMMONS Activation and oligomerization of BAK protein UBE2E1 +PWCOMMONS Activation and oligomerization of BAK protein PSMC6 +PWCOMMONS Activation and oligomerization of BAK protein PSMA3 +PWCOMMONS Activation and oligomerization of BAK protein PSMD8 +PWCOMMONS Activation and oligomerization of BAK protein PSMD10 +PWCOMMONS Activation and oligomerization of BAK protein PSMD1 +PWCOMMONS Activation and oligomerization of BAK protein PSMD6 +PWCOMMONS Activation and oligomerization of BAK protein PSMB5 +PWCOMMONS Activation and oligomerization of BAK protein PSMB4 +PWCOMMONS Activation and oligomerization of BAK protein PSMD4 +PWCOMMONS Activation and oligomerization of BAK protein PSMA2 +PWCOMMONS Activation and oligomerization of BAK protein PSMB8 +PWCOMMONS Activation and oligomerization of BAK protein PSMD5 +PWCOMMONS Activation and oligomerization of BAK protein PSMB6 +PWCOMMONS Activation and oligomerization of BAK protein PSME3 +PWCOMMONS Activation and oligomerization of BAK protein PSMB3 +PWCOMMONS Activation and oligomerization of BAK protein PSMB7 +PWCOMMONS Activation and oligomerization of BAK protein PSME1 +PWCOMMONS Activation and oligomerization of BAK protein PSMD11 +PWCOMMONS Activation and oligomerization of BAK protein PSMA5 +PWCOMMONS Activation and oligomerization of BAK protein PSMC5 +PWCOMMONS Activation and oligomerization of BAK protein PSMC1 +PWCOMMONS Activation and oligomerization of BAK protein PSMD7 +PWCOMMONS Activation and oligomerization of BAK protein PSMD3 +PWCOMMONS Activation and oligomerization of BAK protein PSMB2 +PWCOMMONS Activation and oligomerization of BAK protein PSMD13 +PWCOMMONS Activation and oligomerization of BAK protein PSMD14 +PWCOMMONS Activation and oligomerization of BAK protein PSMB1 +PWCOMMONS Activation and oligomerization of BAK protein PSMA6 +PWCOMMONS Activation and oligomerization of BAK protein PSMB9 +PWCOMMONS Activation and oligomerization of BAK protein PSMB10 +PWCOMMONS Activation and oligomerization of BAK protein PSMD9 +PWCOMMONS Activation and oligomerization of BAK protein PSMC4 +PWCOMMONS Activation and oligomerization of BAK protein PSMA1 +PWCOMMONS Activation and oligomerization of BAK protein PSMA4 +PWCOMMONS Activation and oligomerization of BAK protein PSMA7 +PWCOMMONS Activation and oligomerization of BAK protein PSMF1 +PWCOMMONS Activation and oligomerization of BAK protein PSME2 +PWCOMMONS Activation and oligomerization of BAK protein PSMD12 +PWCOMMONS Activation and oligomerization of BAK protein PSMC3 +PWCOMMONS Activation and oligomerization of BAK protein PSMC2 +PWCOMMONS Activation and oligomerization of BAK protein PSMD2 +PWCOMMONS Activation and oligomerization of BAK protein ADD1 +PWCOMMONS Activation and oligomerization of BAK protein MAPT +PWCOMMONS Activation and oligomerization of BAK protein BIRC2 +PWCOMMONS Activation and oligomerization of BAK protein DBNL +PWCOMMONS Activation and oligomerization of BAK protein DSG2 +PWCOMMONS Activation and oligomerization of BAK protein BMX +PWCOMMONS Activation and oligomerization of BAK protein SPTAN1 +PWCOMMONS Activation and oligomerization of BAK protein CDH1 +PWCOMMONS Activation and oligomerization of BAK protein CASP7 +PWCOMMONS Activation and oligomerization of BAK protein CLSPN +PWCOMMONS Activation and oligomerization of BAK protein DFFA +PWCOMMONS Activation and oligomerization of BAK protein DFFB +PWCOMMONS Activation and oligomerization of BAK protein KPNB1 +PWCOMMONS Activation and oligomerization of BAK protein KPNA1 +PWCOMMONS Activation and oligomerization of BAK protein OCLN +PWCOMMONS Activation and oligomerization of BAK protein TJP2 +PWCOMMONS Activation and oligomerization of BAK protein PKP1 +PWCOMMONS Activation and oligomerization of BAK protein DSP +PWCOMMONS Activation and oligomerization of BAK protein CASP8 +PWCOMMONS Activation and oligomerization of BAK protein PLEC1 +PWCOMMONS Activation and oligomerization of BAK protein CASP6 +PWCOMMONS Activation and oligomerization of BAK protein ACIN1 +PWCOMMONS Activation and oligomerization of BAK protein STK24 +PWCOMMONS Activation and oligomerization of BAK protein PRKCQ +PWCOMMONS Activation and oligomerization of BAK protein ROCK1 +PWCOMMONS Activation and oligomerization of BAK protein LMNB1 +PWCOMMONS Activation and oligomerization of BAK protein BCAP31 +PWCOMMONS Activation and oligomerization of BAK protein PRKCD +PWCOMMONS Activation and oligomerization of BAK protein CDC25A +PWCOMMONS Activation and oligomerization of BAK protein FNTA +PWCOMMONS Activation and oligomerization of BAK protein PTK2 +PWCOMMONS Activation and oligomerization of BAK protein +PWCOMMONS Toll Receptor Cascades MYD88 +PWCOMMONS Toll Receptor Cascades TIRAP +PWCOMMONS Toll Receptor Cascades IRAK3 +PWCOMMONS Toll Receptor Cascades MAP3K1 +PWCOMMONS Toll Receptor Cascades TRAF6 +PWCOMMONS Toll Receptor Cascades ECSIT +PWCOMMONS Toll Receptor Cascades SIGIRR +PWCOMMONS Toll Receptor Cascades TLR6 +PWCOMMONS Toll Receptor Cascades TLR2 +PWCOMMONS Toll Receptor Cascades ATF2 +PWCOMMONS Toll Receptor Cascades IRF3 +PWCOMMONS Toll Receptor Cascades TBK1 +PWCOMMONS Toll Receptor Cascades TICAM1 +PWCOMMONS Toll Receptor Cascades TLR3 +PWCOMMONS Toll Receptor Cascades MAP3K7IP1 +PWCOMMONS Toll Receptor Cascades MAP3K7IP2 +PWCOMMONS Toll Receptor Cascades MAP3K7 +PWCOMMONS Toll Receptor Cascades CHUK +PWCOMMONS Toll Receptor Cascades IKBKB +PWCOMMONS Toll Receptor Cascades IKBKG +PWCOMMONS Toll Receptor Cascades RELA +PWCOMMONS Toll Receptor Cascades RIPK1 +PWCOMMONS Toll Receptor Cascades JUN +PWCOMMONS Toll Receptor Cascades MAPK1 +PWCOMMONS Toll Receptor Cascades MAPK8 +PWCOMMONS Toll Receptor Cascades TLR10 +PWCOMMONS Toll Receptor Cascades LY96 +PWCOMMONS Toll Receptor Cascades TLR4 +PWCOMMONS Toll Receptor Cascades CD180 +PWCOMMONS Toll Receptor Cascades LY86 +PWCOMMONS Toll Receptor Cascades TICAM2 +PWCOMMONS Toll Receptor Cascades LBP +PWCOMMONS Toll Receptor Cascades CD14 +PWCOMMONS Toll Receptor Cascades TLR5 +PWCOMMONS Toll Receptor Cascades ZFYVE20 +PWCOMMONS Toll Receptor Cascades EEA1 +PWCOMMONS Toll Receptor Cascades TLR9 +PWCOMMONS Toll Receptor Cascades PIK3C3 +PWCOMMONS Toll Receptor Cascades PIK3R4 +PWCOMMONS Toll Receptor Cascades +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade MYD88 +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade TIRAP +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade IRAK3 +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade MAP3K1 +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade TRAF6 +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade ZFYVE20 +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade ECSIT +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade SIGIRR +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade EEA1 +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade TLR9 +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade PIK3C3 +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade PIK3R4 +PWCOMMONS Toll Like Receptor 9 (TLR9) Cascade +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade LY96 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade TLR4 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade MYD88 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade IRAK4 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade CD180 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade LY86 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade ECSIT +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade IRF3 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade RIPK1 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade TICAM1 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade TICAM2 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade IRAK3 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade LBP +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade MAP3K1 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade TRAF6 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade SIGIRR +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade TBK1 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade CD14 +PWCOMMONS Toll Like Receptor 4 (TLR4) Cascade +PWCOMMONS Activated TLR4 signalling TICAM1 +PWCOMMONS Activated TLR4 signalling TICAM2 +PWCOMMONS Activated TLR4 signalling LY96 +PWCOMMONS Activated TLR4 signalling TLR4 +PWCOMMONS Activated TLR4 signalling TBK1 +PWCOMMONS Activated TLR4 signalling IRF3 +PWCOMMONS Activated TLR4 signalling IRAK4 +PWCOMMONS Activated TLR4 signalling MYD88 +PWCOMMONS Activated TLR4 signalling TIRAP +PWCOMMONS Activated TLR4 signalling IRAK3 +PWCOMMONS Activated TLR4 signalling MAP3K1 +PWCOMMONS Activated TLR4 signalling TRAF6 +PWCOMMONS Activated TLR4 signalling ECSIT +PWCOMMONS Activated TLR4 signalling SIGIRR +PWCOMMONS Activated TLR4 signalling +PWCOMMONS TRAM Cascade TICAM1 +PWCOMMONS TRAM Cascade TICAM2 +PWCOMMONS TRAM Cascade LY96 +PWCOMMONS TRAM Cascade TLR4 +PWCOMMONS TRAM Cascade TBK1 +PWCOMMONS TRAM Cascade IRF3 +PWCOMMONS TRAM Cascade +PWCOMMONS Toll Like Receptor 10 (TLR10) Cascade MYD88 +PWCOMMONS Toll Like Receptor 10 (TLR10) Cascade TIRAP +PWCOMMONS Toll Like Receptor 10 (TLR10) Cascade IRAK3 +PWCOMMONS Toll Like Receptor 10 (TLR10) Cascade MAP3K1 +PWCOMMONS Toll Like Receptor 10 (TLR10) Cascade TRAF6 +PWCOMMONS Toll Like Receptor 10 (TLR10) Cascade ECSIT +PWCOMMONS Toll Like Receptor 10 (TLR10) Cascade SIGIRR +PWCOMMONS Toll Like Receptor 10 (TLR10) Cascade TLR10 +PWCOMMONS Toll Like Receptor 10 (TLR10) Cascade +PWCOMMONS Toll Like Receptor 5 (TLR5) Cascade MYD88 +PWCOMMONS Toll Like Receptor 5 (TLR5) Cascade TIRAP +PWCOMMONS Toll Like Receptor 5 (TLR5) Cascade IRAK3 +PWCOMMONS Toll Like Receptor 5 (TLR5) Cascade MAP3K1 +PWCOMMONS Toll Like Receptor 5 (TLR5) Cascade TRAF6 +PWCOMMONS Toll Like Receptor 5 (TLR5) Cascade ECSIT +PWCOMMONS Toll Like Receptor 5 (TLR5) Cascade SIGIRR +PWCOMMONS Toll Like Receptor 5 (TLR5) Cascade TLR5 +PWCOMMONS Toll Like Receptor 5 (TLR5) Cascade +PWCOMMONS Toll Like Receptor 7/8 (TLR7/8) Cascade MYD88 +PWCOMMONS Toll Like Receptor 7/8 (TLR7/8) Cascade TIRAP +PWCOMMONS Toll Like Receptor 7/8 (TLR7/8) Cascade IRAK3 +PWCOMMONS Toll Like Receptor 7/8 (TLR7/8) Cascade MAP3K1 +PWCOMMONS Toll Like Receptor 7/8 (TLR7/8) Cascade TRAF6 +PWCOMMONS Toll Like Receptor 7/8 (TLR7/8) Cascade ECSIT +PWCOMMONS Toll Like Receptor 7/8 (TLR7/8) Cascade SIGIRR +PWCOMMONS Toll Like Receptor 7/8 (TLR7/8) Cascade +PWCOMMONS Toll Like Receptor 2 Cascade MYD88 +PWCOMMONS Toll Like Receptor 2 Cascade TIRAP +PWCOMMONS Toll Like Receptor 2 Cascade IRAK3 +PWCOMMONS Toll Like Receptor 2 Cascade MAP3K1 +PWCOMMONS Toll Like Receptor 2 Cascade TRAF6 +PWCOMMONS Toll Like Receptor 2 Cascade ECSIT +PWCOMMONS Toll Like Receptor 2 Cascade SIGIRR +PWCOMMONS Toll Like Receptor 2 Cascade TLR6 +PWCOMMONS Toll Like Receptor 2 Cascade TLR2 +PWCOMMONS Toll Like Receptor 2 Cascade +PWCOMMONS Toll Like Receptor TLR1:TLR2 Cascade MYD88 +PWCOMMONS Toll Like Receptor TLR1:TLR2 Cascade TIRAP +PWCOMMONS Toll Like Receptor TLR1:TLR2 Cascade IRAK3 +PWCOMMONS Toll Like Receptor TLR1:TLR2 Cascade MAP3K1 +PWCOMMONS Toll Like Receptor TLR1:TLR2 Cascade TRAF6 +PWCOMMONS Toll Like Receptor TLR1:TLR2 Cascade ECSIT +PWCOMMONS Toll Like Receptor TLR1:TLR2 Cascade SIGIRR +PWCOMMONS Toll Like Receptor TLR1:TLR2 Cascade TLR2 +PWCOMMONS Toll Like Receptor TLR1:TLR2 Cascade +PWCOMMONS Toll Like Receptor TLR6:TLR2 Cascade MYD88 +PWCOMMONS Toll Like Receptor TLR6:TLR2 Cascade TIRAP +PWCOMMONS Toll Like Receptor TLR6:TLR2 Cascade IRAK3 +PWCOMMONS Toll Like Receptor TLR6:TLR2 Cascade MAP3K1 +PWCOMMONS Toll Like Receptor TLR6:TLR2 Cascade TRAF6 +PWCOMMONS Toll Like Receptor TLR6:TLR2 Cascade ECSIT +PWCOMMONS Toll Like Receptor TLR6:TLR2 Cascade SIGIRR +PWCOMMONS Toll Like Receptor TLR6:TLR2 Cascade TLR6 +PWCOMMONS Toll Like Receptor TLR6:TLR2 Cascade TLR2 +PWCOMMONS Toll Like Receptor TLR6:TLR2 Cascade +PWCOMMONS P450 Dehydrogenation of alkanes to form alkenes CYP3A4 +PWCOMMONS P450 Dehydrogenation of alkanes to form alkenes +PWCOMMONS Activation of Pro-Caspase 8 BID +PWCOMMONS Activation of Pro-Caspase 8 MST4 +PWCOMMONS Activation of Pro-Caspase 8 CASP8 +PWCOMMONS Activation of Pro-Caspase 8 FADD +PWCOMMONS Activation of Pro-Caspase 8 TNFRSF10B +PWCOMMONS Activation of Pro-Caspase 8 TNFSF10 +PWCOMMONS Activation of Pro-Caspase 8 DSG3 +PWCOMMONS Activation of Pro-Caspase 8 GSN +PWCOMMONS Activation of Pro-Caspase 8 DIABLO +PWCOMMONS Activation of Pro-Caspase 8 XIAP +PWCOMMONS Activation of Pro-Caspase 8 CASP3 +PWCOMMONS Activation of Pro-Caspase 8 BAX +PWCOMMONS Activation of Pro-Caspase 8 BAK1 +PWCOMMONS Activation of Pro-Caspase 8 PAK2 +PWCOMMONS Activation of Pro-Caspase 8 ARHGAP10 +PWCOMMONS Activation of Pro-Caspase 8 GAS2 +PWCOMMONS Activation of Pro-Caspase 8 VIM +PWCOMMONS Activation of Pro-Caspase 8 CASP9 +PWCOMMONS Activation of Pro-Caspase 8 DSG1 +PWCOMMONS Activation of Pro-Caspase 8 CYCS +PWCOMMONS Activation of Pro-Caspase 8 APAF1 +PWCOMMONS Activation of Pro-Caspase 8 FZR1 +PWCOMMONS Activation of Pro-Caspase 8 ANAPC5 +PWCOMMONS Activation of Pro-Caspase 8 ANAPC11 +PWCOMMONS Activation of Pro-Caspase 8 CDC23 +PWCOMMONS Activation of Pro-Caspase 8 ANAPC1 +PWCOMMONS Activation of Pro-Caspase 8 ANAPC2 +PWCOMMONS Activation of Pro-Caspase 8 UBE2D1 +PWCOMMONS Activation of Pro-Caspase 8 CDC27 +PWCOMMONS Activation of Pro-Caspase 8 ANAPC4 +PWCOMMONS Activation of Pro-Caspase 8 ANAPC10 +PWCOMMONS Activation of Pro-Caspase 8 ANAPC7 +PWCOMMONS Activation of Pro-Caspase 8 UBE2C +PWCOMMONS Activation of Pro-Caspase 8 CDC26 +PWCOMMONS Activation of Pro-Caspase 8 CDC16 +PWCOMMONS Activation of Pro-Caspase 8 UBE2E1 +PWCOMMONS Activation of Pro-Caspase 8 PSMC6 +PWCOMMONS Activation of Pro-Caspase 8 PSMA3 +PWCOMMONS Activation of Pro-Caspase 8 PSMD8 +PWCOMMONS Activation of Pro-Caspase 8 PSMD10 +PWCOMMONS Activation of Pro-Caspase 8 PSMD1 +PWCOMMONS Activation of Pro-Caspase 8 PSMD6 +PWCOMMONS Activation of Pro-Caspase 8 PSMB5 +PWCOMMONS Activation of Pro-Caspase 8 PSMB4 +PWCOMMONS Activation of Pro-Caspase 8 PSMD4 +PWCOMMONS Activation of Pro-Caspase 8 PSMA2 +PWCOMMONS Activation of Pro-Caspase 8 PSMB8 +PWCOMMONS Activation of Pro-Caspase 8 PSMD5 +PWCOMMONS Activation of Pro-Caspase 8 PSMB6 +PWCOMMONS Activation of Pro-Caspase 8 PSME3 +PWCOMMONS Activation of Pro-Caspase 8 PSMB3 +PWCOMMONS Activation of Pro-Caspase 8 PSMB7 +PWCOMMONS Activation of Pro-Caspase 8 PSME1 +PWCOMMONS Activation of Pro-Caspase 8 PSMD11 +PWCOMMONS Activation of Pro-Caspase 8 PSMA5 +PWCOMMONS Activation of Pro-Caspase 8 PSMC5 +PWCOMMONS Activation of Pro-Caspase 8 PSMC1 +PWCOMMONS Activation of Pro-Caspase 8 PSMD7 +PWCOMMONS Activation of Pro-Caspase 8 PSMD3 +PWCOMMONS Activation of Pro-Caspase 8 PSMB2 +PWCOMMONS Activation of Pro-Caspase 8 PSMD13 +PWCOMMONS Activation of Pro-Caspase 8 PSMD14 +PWCOMMONS Activation of Pro-Caspase 8 PSMB1 +PWCOMMONS Activation of Pro-Caspase 8 PSMA6 +PWCOMMONS Activation of Pro-Caspase 8 PSMB9 +PWCOMMONS Activation of Pro-Caspase 8 PSMB10 +PWCOMMONS Activation of Pro-Caspase 8 PSMD9 +PWCOMMONS Activation of Pro-Caspase 8 PSMC4 +PWCOMMONS Activation of Pro-Caspase 8 PSMA1 +PWCOMMONS Activation of Pro-Caspase 8 PSMA4 +PWCOMMONS Activation of Pro-Caspase 8 PSMA7 +PWCOMMONS Activation of Pro-Caspase 8 PSMF1 +PWCOMMONS Activation of Pro-Caspase 8 PSME2 +PWCOMMONS Activation of Pro-Caspase 8 PSMD12 +PWCOMMONS Activation of Pro-Caspase 8 PSMC3 +PWCOMMONS Activation of Pro-Caspase 8 PSMC2 +PWCOMMONS Activation of Pro-Caspase 8 PSMD2 +PWCOMMONS Activation of Pro-Caspase 8 NMT1 +PWCOMMONS Activation of Pro-Caspase 8 ADD1 +PWCOMMONS Activation of Pro-Caspase 8 BIRC2 +PWCOMMONS Activation of Pro-Caspase 8 MAPT +PWCOMMONS Activation of Pro-Caspase 8 DBNL +PWCOMMONS Activation of Pro-Caspase 8 DSG2 +PWCOMMONS Activation of Pro-Caspase 8 TRAF2 +PWCOMMONS Activation of Pro-Caspase 8 RIPK1 +PWCOMMONS Activation of Pro-Caspase 8 TRADD +PWCOMMONS Activation of Pro-Caspase 8 BMX +PWCOMMONS Activation of Pro-Caspase 8 BCL2 +PWCOMMONS Activation of Pro-Caspase 8 CDH1 +PWCOMMONS Activation of Pro-Caspase 8 FASLG +PWCOMMONS Activation of Pro-Caspase 8 FAS +PWCOMMONS Activation of Pro-Caspase 8 SPTAN1 +PWCOMMONS Activation of Pro-Caspase 8 CASP7 +PWCOMMONS Activation of Pro-Caspase 8 CLSPN +PWCOMMONS Activation of Pro-Caspase 8 DFFA +PWCOMMONS Activation of Pro-Caspase 8 DFFB +PWCOMMONS Activation of Pro-Caspase 8 KPNB1 +PWCOMMONS Activation of Pro-Caspase 8 KPNA1 +PWCOMMONS Activation of Pro-Caspase 8 OCLN +PWCOMMONS Activation of Pro-Caspase 8 TJP2 +PWCOMMONS Activation of Pro-Caspase 8 PKP1 +PWCOMMONS Activation of Pro-Caspase 8 DSP +PWCOMMONS Activation of Pro-Caspase 8 CASP6 +PWCOMMONS Activation of Pro-Caspase 8 ACIN1 +PWCOMMONS Activation of Pro-Caspase 8 STK24 +PWCOMMONS Activation of Pro-Caspase 8 PRKCQ +PWCOMMONS Activation of Pro-Caspase 8 ROCK1 +PWCOMMONS Activation of Pro-Caspase 8 LMNB1 +PWCOMMONS Activation of Pro-Caspase 8 BCAP31 +PWCOMMONS Activation of Pro-Caspase 8 PRKCD +PWCOMMONS Activation of Pro-Caspase 8 CDC25A +PWCOMMONS Activation of Pro-Caspase 8 FNTA +PWCOMMONS Activation of Pro-Caspase 8 PTK2 +PWCOMMONS Activation of Pro-Caspase 8 BAD +PWCOMMONS Activation of Pro-Caspase 8 PLEC1 +PWCOMMONS Activation of Pro-Caspase 8 +PWCOMMONS Lysine catabolism NT5C2 +PWCOMMONS Lysine catabolism ATP5O +PWCOMMONS Lysine catabolism ATP5F1 +PWCOMMONS Lysine catabolism ATP5J +PWCOMMONS Lysine catabolism ATP5G1 +PWCOMMONS Lysine catabolism ATP5L +PWCOMMONS Lysine catabolism MT-ATP6 +PWCOMMONS Lysine catabolism ATP5J2 +PWCOMMONS Lysine catabolism MT-ATP8 +PWCOMMONS Lysine catabolism ATP5H +PWCOMMONS Lysine catabolism ATP5I +PWCOMMONS Lysine catabolism ATP5C1 +PWCOMMONS Lysine catabolism ATP5D +PWCOMMONS Lysine catabolism ATP5A1 +PWCOMMONS Lysine catabolism ATP5B +PWCOMMONS Lysine catabolism ATP5E +PWCOMMONS Lysine catabolism HPRT1 +PWCOMMONS Lysine catabolism UQCRC1 +PWCOMMONS Lysine catabolism UQCRB +PWCOMMONS Lysine catabolism UQCR10 +PWCOMMONS Lysine catabolism UQCR +PWCOMMONS Lysine catabolism UQCRC2 +PWCOMMONS Lysine catabolism UQCRH +PWCOMMONS Lysine catabolism UQCRQ +PWCOMMONS Lysine catabolism UQCRFS1 +PWCOMMONS Lysine catabolism MT-CYB +PWCOMMONS Lysine catabolism CYC1 +PWCOMMONS Lysine catabolism MT-CO2 +PWCOMMONS Lysine catabolism COX8A +PWCOMMONS Lysine catabolism COX7C +PWCOMMONS Lysine catabolism MT-CO3 +PWCOMMONS Lysine catabolism COX6C +PWCOMMONS Lysine catabolism COX5B +PWCOMMONS Lysine catabolism MT-CO1 +PWCOMMONS Lysine catabolism COX7A2L +PWCOMMONS Lysine catabolism COX4I1 +PWCOMMONS Lysine catabolism COX6A1 +PWCOMMONS Lysine catabolism COX7B +PWCOMMONS Lysine catabolism COX6B1 +PWCOMMONS Lysine catabolism COX5A +PWCOMMONS Lysine catabolism AASS +PWCOMMONS Lysine catabolism PGLS +PWCOMMONS Lysine catabolism HADH +PWCOMMONS Lysine catabolism UPP1 +PWCOMMONS Lysine catabolism GOT1 +PWCOMMONS Lysine catabolism PGK1 +PWCOMMONS Lysine catabolism ADSL +PWCOMMONS Lysine catabolism GCDH +PWCOMMONS Lysine catabolism PCK1 +PWCOMMONS Lysine catabolism ATIC +PWCOMMONS Lysine catabolism OAT +PWCOMMONS Lysine catabolism NP +PWCOMMONS Lysine catabolism GYS2 +PWCOMMONS Lysine catabolism ECHS1 +PWCOMMONS Lysine catabolism TXN +PWCOMMONS Lysine catabolism SUCLG1 +PWCOMMONS Lysine catabolism SUCLG2 +PWCOMMONS Lysine catabolism ARG1 +PWCOMMONS Lysine catabolism KCNJ11 +PWCOMMONS Lysine catabolism AMPD3 +PWCOMMONS Lysine catabolism RPE +PWCOMMONS Lysine catabolism GLRX +PWCOMMONS Lysine catabolism SDHC +PWCOMMONS Lysine catabolism SDHD +PWCOMMONS Lysine catabolism SDHB +PWCOMMONS Lysine catabolism SDHA +PWCOMMONS Lysine catabolism DPYD +PWCOMMONS Lysine catabolism GART +PWCOMMONS Lysine catabolism DPYS +PWCOMMONS Lysine catabolism AK1 +PWCOMMONS Lysine catabolism MDH2 +PWCOMMONS Lysine catabolism UMPS +PWCOMMONS Lysine catabolism CYCS +PWCOMMONS Lysine catabolism NDUFS3 +PWCOMMONS Lysine catabolism NDUFS4 +PWCOMMONS Lysine catabolism NDUFS6 +PWCOMMONS Lysine catabolism NDUFA5 +PWCOMMONS Lysine catabolism NDUFS5 +PWCOMMONS Lysine catabolism NDUFS1 +PWCOMMONS Lysine catabolism NDUFS2 +PWCOMMONS Lysine catabolism NDUFV2 +PWCOMMONS Lysine catabolism NDUFV3 +PWCOMMONS Lysine catabolism NDUFV1 +PWCOMMONS Lysine catabolism NDUFA4 +PWCOMMONS Lysine catabolism NDUFA11 +PWCOMMONS Lysine catabolism MT-ND3 +PWCOMMONS Lysine catabolism NDUFA13 +PWCOMMONS Lysine catabolism NDUFB5 +PWCOMMONS Lysine catabolism NDUFC1 +PWCOMMONS Lysine catabolism NDUFA6 +PWCOMMONS Lysine catabolism NDUFC2 +PWCOMMONS Lysine catabolism NDUFA3 +PWCOMMONS Lysine catabolism NDUFB3 +PWCOMMONS Lysine catabolism NDUFB1 +PWCOMMONS Lysine catabolism NDUFAB1 +PWCOMMONS Lysine catabolism MT-ND4 +PWCOMMONS Lysine catabolism MT-ND5 +PWCOMMONS Lysine catabolism NDUFA1 +PWCOMMONS Lysine catabolism NDUFB9 +PWCOMMONS Lysine catabolism NDUFB6 +PWCOMMONS Lysine catabolism NDUFB4 +PWCOMMONS Lysine catabolism NDUFA8 +PWCOMMONS Lysine catabolism NDUFB7 +PWCOMMONS Lysine catabolism NDUFA12 +PWCOMMONS Lysine catabolism NDUFB2 +PWCOMMONS Lysine catabolism MT-ND4L +PWCOMMONS Lysine catabolism MT-ND2 +PWCOMMONS Lysine catabolism NDUFB10 +PWCOMMONS Lysine catabolism NDUFA7 +PWCOMMONS Lysine catabolism NDUFA2 +PWCOMMONS Lysine catabolism NDUFB8 +PWCOMMONS Lysine catabolism NDUFB11 +PWCOMMONS Lysine catabolism MT-ND6 +PWCOMMONS Lysine catabolism MT-ND1 +PWCOMMONS Lysine catabolism NDUFS7 +PWCOMMONS Lysine catabolism NDUFA10 +PWCOMMONS Lysine catabolism NDUFS8 +PWCOMMONS Lysine catabolism NDUFA9 +PWCOMMONS Lysine catabolism VAMP2 +PWCOMMONS Lysine catabolism NT5C1A +PWCOMMONS Lysine catabolism CTPS +PWCOMMONS Lysine catabolism PRPS1 +PWCOMMONS Lysine catabolism DLST +PWCOMMONS Lysine catabolism OGDH +PWCOMMONS Lysine catabolism DLD +PWCOMMONS Lysine catabolism GMPS +PWCOMMONS Lysine catabolism GUK1 +PWCOMMONS Lysine catabolism IMPDH2 +PWCOMMONS Lysine catabolism GDA +PWCOMMONS Lysine catabolism NME1 +PWCOMMONS Lysine catabolism IMPDH1 +PWCOMMONS Lysine catabolism ADSS +PWCOMMONS Lysine catabolism OTC +PWCOMMONS Lysine catabolism FH +PWCOMMONS Lysine catabolism INS +PWCOMMONS Lysine catabolism SYT5 +PWCOMMONS Lysine catabolism PFAS +PWCOMMONS Lysine catabolism SLC35D1 +PWCOMMONS Lysine catabolism ASL +PWCOMMONS Lysine catabolism UPB1 +PWCOMMONS Lysine catabolism SLC25A21 +PWCOMMONS Lysine catabolism GPI +PWCOMMONS Lysine catabolism UROD +PWCOMMONS Lysine catabolism CPOX +PWCOMMONS Lysine catabolism UROS +PWCOMMONS Lysine catabolism XDH +PWCOMMONS Lysine catabolism PAICS +PWCOMMONS Lysine catabolism CPS1 +PWCOMMONS Lysine catabolism TALDO1 +PWCOMMONS Lysine catabolism AADAT +PWCOMMONS Lysine catabolism ASS1 +PWCOMMONS Lysine catabolism CMPK1 +PWCOMMONS Lysine catabolism ALAD +PWCOMMONS Lysine catabolism CS +PWCOMMONS Lysine catabolism CAT +PWCOMMONS Lysine catabolism PPOX +PWCOMMONS Lysine catabolism ACO2 +PWCOMMONS Lysine catabolism IDH3G +PWCOMMONS Lysine catabolism IDH3A +PWCOMMONS Lysine catabolism IDH3B +PWCOMMONS Lysine catabolism UGDH +PWCOMMONS Lysine catabolism RRM2 +PWCOMMONS Lysine catabolism RRM1 +PWCOMMONS Lysine catabolism G6PD +PWCOMMONS Lysine catabolism AMPD1 +PWCOMMONS Lysine catabolism PPAT +PWCOMMONS Lysine catabolism TKT +PWCOMMONS Lysine catabolism FECH +PWCOMMONS Lysine catabolism SUCLA2 +PWCOMMONS Lysine catabolism GBE1 +PWCOMMONS Lysine catabolism TXNRD1 +PWCOMMONS Lysine catabolism TPI1 +PWCOMMONS Lysine catabolism G6PC +PWCOMMONS Lysine catabolism PYCR1 +PWCOMMONS Lysine catabolism NME2 +PWCOMMONS Lysine catabolism RPIA +PWCOMMONS Lysine catabolism AMPD2 +PWCOMMONS Lysine catabolism PGD +PWCOMMONS Lysine catabolism GSR +PWCOMMONS Lysine catabolism +PWCOMMONS Signalling by NGF SH3GL2 +PWCOMMONS Signalling by NGF AP2A2 +PWCOMMONS Signalling by NGF AP2A1 +PWCOMMONS Signalling by NGF NGF +PWCOMMONS Signalling by NGF DNM1 +PWCOMMONS Signalling by NGF RPS6KA5 +PWCOMMONS Signalling by NGF MAPKAPK2 +PWCOMMONS Signalling by NGF ATF1 +PWCOMMONS Signalling by NGF CREB1 +PWCOMMONS Signalling by NGF MAPK7 +PWCOMMONS Signalling by NGF ADCYAP1R1 +PWCOMMONS Signalling by NGF ADORA2A +PWCOMMONS Signalling by NGF ADCYAP1 +PWCOMMONS Signalling by NGF RAF1 +PWCOMMONS Signalling by NGF YWHAB +PWCOMMONS Signalling by NGF SHC1 +PWCOMMONS Signalling by NGF SOS1 +PWCOMMONS Signalling by NGF MAP2K1 +PWCOMMONS Signalling by NGF CALM1 +PWCOMMONS Signalling by NGF HSP90AA1 +PWCOMMONS Signalling by NGF CAV1 +PWCOMMONS Signalling by NGF NOS3 +PWCOMMONS Signalling by NGF FRS2 +PWCOMMONS Signalling by NGF MAPK3 +PWCOMMONS Signalling by NGF MAPK1 +PWCOMMONS Signalling by NGF MAP2K2 +PWCOMMONS Signalling by NGF RAP1A +PWCOMMONS Signalling by NGF BRAF +PWCOMMONS Signalling by NGF PLCG1 +PWCOMMONS Signalling by NGF AKT1 +PWCOMMONS Signalling by NGF PLA2G4A +PWCOMMONS Signalling by NGF MGLL +PWCOMMONS Signalling by NGF LIPE +PWCOMMONS Signalling by NGF PFKFB1 +PWCOMMONS Signalling by NGF FABP4 +PWCOMMONS Signalling by NGF MLXIPL +PWCOMMONS Signalling by NGF ADRBK1 +PWCOMMONS Signalling by NGF CAMK4 +PWCOMMONS Signalling by NGF VAMP2 +PWCOMMONS Signalling by NGF KIDINS220 +PWCOMMONS Signalling by NGF INS +PWCOMMONS Signalling by NGF SYT5 +PWCOMMONS Signalling by NGF MAP2K5 +PWCOMMONS Signalling by NGF RALGDS +PWCOMMONS Signalling by NGF RICTOR +PWCOMMONS Signalling by NGF FRAP1 +PWCOMMONS Signalling by NGF LST8 +PWCOMMONS Signalling by NGF PDPK1 +PWCOMMONS Signalling by NGF NR4A1 +PWCOMMONS Signalling by NGF FOXO1 +PWCOMMONS Signalling by NGF CHUK +PWCOMMONS Signalling by NGF THEM4 +PWCOMMONS Signalling by NGF PTEN +PWCOMMONS Signalling by NGF BAD +PWCOMMONS Signalling by NGF RHOA +PWCOMMONS Signalling by NGF TRIB3 +PWCOMMONS Signalling by NGF PHLPP +PWCOMMONS Signalling by NGF CASP9 +PWCOMMONS Signalling by NGF AKT1S1 +PWCOMMONS Signalling by NGF MDM2 +PWCOMMONS Signalling by NGF RPS6KB2 +PWCOMMONS Signalling by NGF TRAF6 +PWCOMMONS Signalling by NGF NGFR +PWCOMMONS Signalling by NGF NFKB1 +PWCOMMONS Signalling by NGF RELA +PWCOMMONS Signalling by NGF ADAM17 +PWCOMMONS Signalling by NGF PSENEN +PWCOMMONS Signalling by NGF SQSTM1 +PWCOMMONS Signalling by NGF IKBKB +PWCOMMONS Signalling by NGF NFKBIA +PWCOMMONS Signalling by NGF PRKCI +PWCOMMONS Signalling by NGF MYD88 +PWCOMMONS Signalling by NGF RIPK2 +PWCOMMONS Signalling by NGF ARHGEF1 +PWCOMMONS Signalling by NGF ARHGDIA +PWCOMMONS Signalling by NGF SMPD2 +PWCOMMONS Signalling by NGF PRDM4 +PWCOMMONS Signalling by NGF MAPK8 +PWCOMMONS Signalling by NGF MAGED1 +PWCOMMONS Signalling by NGF AATF +PWCOMMONS Signalling by NGF YWHAE +PWCOMMONS Signalling by NGF NGFRAP1 +PWCOMMONS Signalling by NGF +PWCOMMONS TRKA signalling from the plasma membrane MAPK7 +PWCOMMONS TRKA signalling from the plasma membrane CREB1 +PWCOMMONS TRKA signalling from the plasma membrane MAP2K5 +PWCOMMONS TRKA signalling from the plasma membrane CAV1 +PWCOMMONS TRKA signalling from the plasma membrane HSP90AA1 +PWCOMMONS TRKA signalling from the plasma membrane CALM1 +PWCOMMONS TRKA signalling from the plasma membrane NOS3 +PWCOMMONS TRKA signalling from the plasma membrane PLCG1 +PWCOMMONS TRKA signalling from the plasma membrane MGLL +PWCOMMONS TRKA signalling from the plasma membrane LIPE +PWCOMMONS TRKA signalling from the plasma membrane PFKFB1 +PWCOMMONS TRKA signalling from the plasma membrane FABP4 +PWCOMMONS TRKA signalling from the plasma membrane MLXIPL +PWCOMMONS TRKA signalling from the plasma membrane ADRBK1 +PWCOMMONS TRKA signalling from the plasma membrane CAMK4 +PWCOMMONS TRKA signalling from the plasma membrane AKT1 +PWCOMMONS TRKA signalling from the plasma membrane FRS2 +PWCOMMONS TRKA signalling from the plasma membrane KIDINS220 +PWCOMMONS TRKA signalling from the plasma membrane VAMP2 +PWCOMMONS TRKA signalling from the plasma membrane INS +PWCOMMONS TRKA signalling from the plasma membrane SYT5 +PWCOMMONS TRKA signalling from the plasma membrane PLA2G4A +PWCOMMONS TRKA signalling from the plasma membrane MAP2K2 +PWCOMMONS TRKA signalling from the plasma membrane RAF1 +PWCOMMONS TRKA signalling from the plasma membrane YWHAB +PWCOMMONS TRKA signalling from the plasma membrane MAP2K1 +PWCOMMONS TRKA signalling from the plasma membrane MAPK1 +PWCOMMONS TRKA signalling from the plasma membrane MAPK3 +PWCOMMONS TRKA signalling from the plasma membrane RPS6KA5 +PWCOMMONS TRKA signalling from the plasma membrane ATF1 +PWCOMMONS TRKA signalling from the plasma membrane BRAF +PWCOMMONS TRKA signalling from the plasma membrane RAP1A +PWCOMMONS TRKA signalling from the plasma membrane SHC1 +PWCOMMONS TRKA signalling from the plasma membrane SOS1 +PWCOMMONS TRKA signalling from the plasma membrane RALGDS +PWCOMMONS TRKA signalling from the plasma membrane RICTOR +PWCOMMONS TRKA signalling from the plasma membrane FRAP1 +PWCOMMONS TRKA signalling from the plasma membrane LST8 +PWCOMMONS TRKA signalling from the plasma membrane PDPK1 +PWCOMMONS TRKA signalling from the plasma membrane NR4A1 +PWCOMMONS TRKA signalling from the plasma membrane FOXO1 +PWCOMMONS TRKA signalling from the plasma membrane CHUK +PWCOMMONS TRKA signalling from the plasma membrane THEM4 +PWCOMMONS TRKA signalling from the plasma membrane PTEN +PWCOMMONS TRKA signalling from the plasma membrane BAD +PWCOMMONS TRKA signalling from the plasma membrane RHOA +PWCOMMONS TRKA signalling from the plasma membrane TRIB3 +PWCOMMONS TRKA signalling from the plasma membrane PHLPP +PWCOMMONS TRKA signalling from the plasma membrane CASP9 +PWCOMMONS TRKA signalling from the plasma membrane AKT1S1 +PWCOMMONS TRKA signalling from the plasma membrane MDM2 +PWCOMMONS TRKA signalling from the plasma membrane RPS6KB2 +PWCOMMONS TRKA signalling from the plasma membrane +PWCOMMONS Signalling to ERKs NGF +PWCOMMONS Signalling to ERKs MAP2K2 +PWCOMMONS Signalling to ERKs RAF1 +PWCOMMONS Signalling to ERKs YWHAB +PWCOMMONS Signalling to ERKs MAP2K1 +PWCOMMONS Signalling to ERKs MAPK1 +PWCOMMONS Signalling to ERKs MAPK3 +PWCOMMONS Signalling to ERKs RPS6KA5 +PWCOMMONS Signalling to ERKs ATF1 +PWCOMMONS Signalling to ERKs CREB1 +PWCOMMONS Signalling to ERKs FRS2 +PWCOMMONS Signalling to ERKs BRAF +PWCOMMONS Signalling to ERKs RAP1A +PWCOMMONS Signalling to ERKs SHC1 +PWCOMMONS Signalling to ERKs SOS1 +PWCOMMONS Signalling to ERKs RALGDS +PWCOMMONS Signalling to ERKs +PWCOMMONS Signalling to p38 via RIT and RIN RAF1 +PWCOMMONS Signalling to p38 via RIT and RIN YWHAB +PWCOMMONS Signalling to p38 via RIT and RIN MAP2K1 +PWCOMMONS Signalling to p38 via RIT and RIN RPS6KA5 +PWCOMMONS Signalling to p38 via RIT and RIN MAPK3 +PWCOMMONS Signalling to p38 via RIT and RIN ATF1 +PWCOMMONS Signalling to p38 via RIT and RIN CREB1 +PWCOMMONS Signalling to p38 via RIT and RIN MAPK1 +PWCOMMONS Signalling to p38 via RIT and RIN NGF +PWCOMMONS Signalling to p38 via RIT and RIN BRAF +PWCOMMONS Signalling to p38 via RIT and RIN +PWCOMMONS Prolonged ERK activation events NGF +PWCOMMONS Prolonged ERK activation events MAP2K2 +PWCOMMONS Prolonged ERK activation events RAF1 +PWCOMMONS Prolonged ERK activation events YWHAB +PWCOMMONS Prolonged ERK activation events MAP2K1 +PWCOMMONS Prolonged ERK activation events MAPK1 +PWCOMMONS Prolonged ERK activation events MAPK3 +PWCOMMONS Prolonged ERK activation events RPS6KA5 +PWCOMMONS Prolonged ERK activation events ATF1 +PWCOMMONS Prolonged ERK activation events CREB1 +PWCOMMONS Prolonged ERK activation events FRS2 +PWCOMMONS Prolonged ERK activation events BRAF +PWCOMMONS Prolonged ERK activation events RAP1A +PWCOMMONS Prolonged ERK activation events +PWCOMMONS Frs2-mediated activation RAF1 +PWCOMMONS Frs2-mediated activation YWHAB +PWCOMMONS Frs2-mediated activation MAP2K1 +PWCOMMONS Frs2-mediated activation MAPK1 +PWCOMMONS Frs2-mediated activation MAPK3 +PWCOMMONS Frs2-mediated activation RPS6KA5 +PWCOMMONS Frs2-mediated activation ATF1 +PWCOMMONS Frs2-mediated activation CREB1 +PWCOMMONS Frs2-mediated activation FRS2 +PWCOMMONS Frs2-mediated activation NGF +PWCOMMONS Frs2-mediated activation RAP1A +PWCOMMONS Frs2-mediated activation KIDINS220 +PWCOMMONS Frs2-mediated activation BRAF +PWCOMMONS Frs2-mediated activation +PWCOMMONS Signalling to ERK5 CREB1 +PWCOMMONS Signalling to ERK5 MAP2K5 +PWCOMMONS Signalling to ERK5 +PWCOMMONS PLC-gamma1 signalling HSP90AA1 +PWCOMMONS PLC-gamma1 signalling CALM1 +PWCOMMONS PLC-gamma1 signalling NOS3 +PWCOMMONS PLC-gamma1 signalling PLCG1 +PWCOMMONS PLC-gamma1 signalling NGF +PWCOMMONS PLC-gamma1 signalling MGLL +PWCOMMONS PLC-gamma1 signalling LIPE +PWCOMMONS PLC-gamma1 signalling PFKFB1 +PWCOMMONS PLC-gamma1 signalling FABP4 +PWCOMMONS PLC-gamma1 signalling MLXIPL +PWCOMMONS PLC-gamma1 signalling CREB1 +PWCOMMONS PLC-gamma1 signalling ADRBK1 +PWCOMMONS PLC-gamma1 signalling CAMK4 +PWCOMMONS PLC-gamma1 signalling AKT1 +PWCOMMONS PLC-gamma1 signalling FRS2 +PWCOMMONS PLC-gamma1 signalling KIDINS220 +PWCOMMONS PLC-gamma1 signalling VAMP2 +PWCOMMONS PLC-gamma1 signalling INS +PWCOMMONS PLC-gamma1 signalling SYT5 +PWCOMMONS PLC-gamma1 signalling PLA2G4A +PWCOMMONS PLC-gamma1 signalling +PWCOMMONS p75 NTR receptor-mediated signalling NGFR +PWCOMMONS p75 NTR receptor-mediated signalling NFKB1 +PWCOMMONS p75 NTR receptor-mediated signalling RELA +PWCOMMONS p75 NTR receptor-mediated signalling ADAM17 +PWCOMMONS p75 NTR receptor-mediated signalling PSENEN +PWCOMMONS p75 NTR receptor-mediated signalling SQSTM1 +PWCOMMONS p75 NTR receptor-mediated signalling IKBKB +PWCOMMONS p75 NTR receptor-mediated signalling NFKBIA +PWCOMMONS p75 NTR receptor-mediated signalling PRKCI +PWCOMMONS p75 NTR receptor-mediated signalling MYD88 +PWCOMMONS p75 NTR receptor-mediated signalling RIPK2 +PWCOMMONS p75 NTR receptor-mediated signalling ARHGEF1 +PWCOMMONS p75 NTR receptor-mediated signalling RHOA +PWCOMMONS p75 NTR receptor-mediated signalling ARHGDIA +PWCOMMONS p75 NTR receptor-mediated signalling NGF +PWCOMMONS p75 NTR receptor-mediated signalling SMPD2 +PWCOMMONS p75 NTR receptor-mediated signalling PRDM4 +PWCOMMONS p75 NTR receptor-mediated signalling MAPK8 +PWCOMMONS p75 NTR receptor-mediated signalling MAGED1 +PWCOMMONS p75 NTR receptor-mediated signalling BAD +PWCOMMONS p75 NTR receptor-mediated signalling AATF +PWCOMMONS p75 NTR receptor-mediated signalling YWHAE +PWCOMMONS p75 NTR receptor-mediated signalling NGFRAP1 +PWCOMMONS p75 NTR receptor-mediated signalling +PWCOMMONS p75NTR signals via NF-kB RELA +PWCOMMONS p75NTR signals via NF-kB TRAF6 +PWCOMMONS p75NTR signals via NF-kB SQSTM1 +PWCOMMONS p75NTR signals via NF-kB NGFR +PWCOMMONS p75NTR signals via NF-kB IKBKB +PWCOMMONS p75NTR signals via NF-kB NFKBIA +PWCOMMONS p75NTR signals via NF-kB PRKCI +PWCOMMONS p75NTR signals via NF-kB MYD88 +PWCOMMONS p75NTR signals via NF-kB RIPK2 +PWCOMMONS p75NTR signals via NF-kB +PWCOMMONS p75NTR recruits signalling complexes RELA +PWCOMMONS p75NTR recruits signalling complexes PRKCI +PWCOMMONS p75NTR recruits signalling complexes TRAF6 +PWCOMMONS p75NTR recruits signalling complexes SQSTM1 +PWCOMMONS p75NTR recruits signalling complexes NGFR +PWCOMMONS p75NTR recruits signalling complexes MYD88 +PWCOMMONS p75NTR recruits signalling complexes NFKBIA +PWCOMMONS p75NTR recruits signalling complexes RIPK2 +PWCOMMONS p75NTR recruits signalling complexes IKBKB +PWCOMMONS p75NTR recruits signalling complexes +PWCOMMONS p75NTR regulates axonogenesis NGFR +PWCOMMONS p75NTR regulates axonogenesis RHOA +PWCOMMONS p75NTR regulates axonogenesis ARHGDIA +PWCOMMONS p75NTR regulates axonogenesis NGF +PWCOMMONS p75NTR regulates axonogenesis +PWCOMMONS Axonal growth stimulation NGF +PWCOMMONS Axonal growth stimulation ARHGDIA +PWCOMMONS Axonal growth stimulation NGFR +PWCOMMONS Axonal growth stimulation ARHGEF1 +PWCOMMONS Axonal growth stimulation +PWCOMMONS Axonal growth inhibition (RHOA activation) NGFR +PWCOMMONS Axonal growth inhibition (RHOA activation) RHOA +PWCOMMONS Axonal growth inhibition (RHOA activation) ARHGDIA +PWCOMMONS Axonal growth inhibition (RHOA activation) +PWCOMMONS Regulated proteolysis of p75NTR NGFR +PWCOMMONS Regulated proteolysis of p75NTR NFKB1 +PWCOMMONS Regulated proteolysis of p75NTR RELA +PWCOMMONS Regulated proteolysis of p75NTR ADAM17 +PWCOMMONS Regulated proteolysis of p75NTR PSENEN +PWCOMMONS Regulated proteolysis of p75NTR +PWCOMMONS p75NTR negatively regulates cell cycle via SC1 NGFR +PWCOMMONS p75NTR negatively regulates cell cycle via SC1 NGF +PWCOMMONS p75NTR negatively regulates cell cycle via SC1 +PWCOMMONS Retrograde neurotrophin signalling SH3GL2 +PWCOMMONS Retrograde neurotrophin signalling AP2A2 +PWCOMMONS Retrograde neurotrophin signalling AP2A1 +PWCOMMONS Retrograde neurotrophin signalling NGF +PWCOMMONS Retrograde neurotrophin signalling DNM1 +PWCOMMONS Retrograde neurotrophin signalling +PWCOMMONS NGF processing YWHAB +PWCOMMONS NGF processing SHC1 +PWCOMMONS NGF processing SOS1 +PWCOMMONS NGF processing NGF +PWCOMMONS NGF processing MAP2K1 +PWCOMMONS NGF processing CALM1 +PWCOMMONS NGF processing HSP90AA1 +PWCOMMONS NGF processing CAV1 +PWCOMMONS NGF processing NOS3 +PWCOMMONS NGF processing MAPK3 +PWCOMMONS NGF processing MAPK1 +PWCOMMONS NGF processing MAP2K2 +PWCOMMONS NGF processing PLCG1 +PWCOMMONS NGF processing AKT1 +PWCOMMONS NGF processing PLA2G4A +PWCOMMONS NGF processing MGLL +PWCOMMONS NGF processing LIPE +PWCOMMONS NGF processing PFKFB1 +PWCOMMONS NGF processing FABP4 +PWCOMMONS NGF processing MLXIPL +PWCOMMONS NGF processing CREB1 +PWCOMMONS NGF processing ADRBK1 +PWCOMMONS NGF processing CAMK4 +PWCOMMONS NGF processing VAMP2 +PWCOMMONS NGF processing FRS2 +PWCOMMONS NGF processing KIDINS220 +PWCOMMONS NGF processing INS +PWCOMMONS NGF processing SYT5 +PWCOMMONS NGF processing +PWCOMMONS Activation of TRKA receptors ADORA2A +PWCOMMONS Activation of TRKA receptors ADCYAP1 +PWCOMMONS Activation of TRKA receptors RAF1 +PWCOMMONS Activation of TRKA receptors YWHAB +PWCOMMONS Activation of TRKA receptors SHC1 +PWCOMMONS Activation of TRKA receptors SOS1 +PWCOMMONS Activation of TRKA receptors NGF +PWCOMMONS Activation of TRKA receptors MAP2K1 +PWCOMMONS Activation of TRKA receptors CALM1 +PWCOMMONS Activation of TRKA receptors HSP90AA1 +PWCOMMONS Activation of TRKA receptors CAV1 +PWCOMMONS Activation of TRKA receptors NOS3 +PWCOMMONS Activation of TRKA receptors FRS2 +PWCOMMONS Activation of TRKA receptors MAPK3 +PWCOMMONS Activation of TRKA receptors MAPK1 +PWCOMMONS Activation of TRKA receptors MAP2K2 +PWCOMMONS Activation of TRKA receptors RAP1A +PWCOMMONS Activation of TRKA receptors BRAF +PWCOMMONS Activation of TRKA receptors PLCG1 +PWCOMMONS Activation of TRKA receptors AKT1 +PWCOMMONS Activation of TRKA receptors PLA2G4A +PWCOMMONS Activation of TRKA receptors MGLL +PWCOMMONS Activation of TRKA receptors LIPE +PWCOMMONS Activation of TRKA receptors PFKFB1 +PWCOMMONS Activation of TRKA receptors FABP4 +PWCOMMONS Activation of TRKA receptors MLXIPL +PWCOMMONS Activation of TRKA receptors CREB1 +PWCOMMONS Activation of TRKA receptors ADRBK1 +PWCOMMONS Activation of TRKA receptors CAMK4 +PWCOMMONS Activation of TRKA receptors VAMP2 +PWCOMMONS Activation of TRKA receptors KIDINS220 +PWCOMMONS Activation of TRKA receptors INS +PWCOMMONS Activation of TRKA receptors SYT5 +PWCOMMONS Activation of TRKA receptors +PWCOMMONS NGF-independant TRKA activation ADORA2A +PWCOMMONS NGF-independant TRKA activation ADCYAP1 +PWCOMMONS NGF-independant TRKA activation +PWCOMMONS TRKA activation by NGF YWHAB +PWCOMMONS TRKA activation by NGF SHC1 +PWCOMMONS TRKA activation by NGF SOS1 +PWCOMMONS TRKA activation by NGF NGF +PWCOMMONS TRKA activation by NGF MAP2K1 +PWCOMMONS TRKA activation by NGF CALM1 +PWCOMMONS TRKA activation by NGF HSP90AA1 +PWCOMMONS TRKA activation by NGF CAV1 +PWCOMMONS TRKA activation by NGF NOS3 +PWCOMMONS TRKA activation by NGF FRS2 +PWCOMMONS TRKA activation by NGF MAPK3 +PWCOMMONS TRKA activation by NGF MAPK1 +PWCOMMONS TRKA activation by NGF MAP2K2 +PWCOMMONS TRKA activation by NGF RAP1A +PWCOMMONS TRKA activation by NGF BRAF +PWCOMMONS TRKA activation by NGF PLCG1 +PWCOMMONS TRKA activation by NGF AKT1 +PWCOMMONS TRKA activation by NGF PLA2G4A +PWCOMMONS TRKA activation by NGF MGLL +PWCOMMONS TRKA activation by NGF LIPE +PWCOMMONS TRKA activation by NGF PFKFB1 +PWCOMMONS TRKA activation by NGF FABP4 +PWCOMMONS TRKA activation by NGF MLXIPL +PWCOMMONS TRKA activation by NGF CREB1 +PWCOMMONS TRKA activation by NGF ADRBK1 +PWCOMMONS TRKA activation by NGF CAMK4 +PWCOMMONS TRKA activation by NGF VAMP2 +PWCOMMONS TRKA activation by NGF KIDINS220 +PWCOMMONS TRKA activation by NGF INS +PWCOMMONS TRKA activation by NGF SYT5 +PWCOMMONS TRKA activation by NGF +PWCOMMONS Nef mediated downregulation of MHC class I complex cell surface expression AP1G1 +PWCOMMONS Nef mediated downregulation of MHC class I complex cell surface expression AP1B1 +PWCOMMONS Nef mediated downregulation of MHC class I complex cell surface expression B2M +PWCOMMONS Nef mediated downregulation of MHC class I complex cell surface expression HLA-A +PWCOMMONS Nef mediated downregulation of MHC class I complex cell surface expression +PWCOMMONS P450 Prostaglandin isomerizations TBXAS1 +PWCOMMONS P450 Prostaglandin isomerizations +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates TK1 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates NME2 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates NME1 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates DTYMK +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates UCK2 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates GUK1 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates DGUOK +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates GYG2 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates TXN +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates GLRX +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates GBE1 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates TXNRD1 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates UCK1 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates CTPS +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates CMPK1 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates GYS2 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates UGDH +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates RRM2 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates RRM1 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates SLC35D1 +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates GSR +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates ADK +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates DCK +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates TYMS +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates DCTD +PWCOMMONS Phosphorylation of nucleosides to form nucleoside 5'-monophosphates +PWCOMMONS Phosphorylation of cytosolic nucleosides by deoxycytidine kinase DCK +PWCOMMONS Phosphorylation of cytosolic nucleosides by deoxycytidine kinase DTYMK +PWCOMMONS Phosphorylation of cytosolic nucleosides by deoxycytidine kinase TYMS +PWCOMMONS Phosphorylation of cytosolic nucleosides by deoxycytidine kinase NME2 +PWCOMMONS Phosphorylation of cytosolic nucleosides by deoxycytidine kinase NME1 +PWCOMMONS Phosphorylation of cytosolic nucleosides by deoxycytidine kinase DCTD +PWCOMMONS Phosphorylation of cytosolic nucleosides by deoxycytidine kinase +PWCOMMONS Phosphorylation of cytosolic nucleosides by thymidine kinase 1, soluble NME2 +PWCOMMONS Phosphorylation of cytosolic nucleosides by thymidine kinase 1, soluble NME1 +PWCOMMONS Phosphorylation of cytosolic nucleosides by thymidine kinase 1, soluble DTYMK +PWCOMMONS Phosphorylation of cytosolic nucleosides by thymidine kinase 1, soluble +PWCOMMONS Phosphorylation of cytosolic nucleosides by adenosine kinase NME1 +PWCOMMONS Phosphorylation of cytosolic nucleosides by adenosine kinase ADK +PWCOMMONS Phosphorylation of cytosolic nucleosides by adenosine kinase +PWCOMMONS Phosphorylation of mitochondrial nucleosides by deoxyguanosine kinase NME1 +PWCOMMONS Phosphorylation of mitochondrial nucleosides by deoxyguanosine kinase GUK1 +PWCOMMONS Phosphorylation of mitochondrial nucleosides by deoxyguanosine kinase DGUOK +PWCOMMONS Phosphorylation of mitochondrial nucleosides by deoxyguanosine kinase +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 TXN +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 GLRX +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 GBE1 +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 TXNRD1 +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 UCK1 +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 CTPS +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 CMPK1 +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 GYS2 +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 NME2 +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 NME1 +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 UGDH +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 RRM2 +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 RRM1 +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 SLC35D1 +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 GSR +PWCOMMONS Phosphorylation of cytosolic nucleosides by uridine-cytidine kinase 1 +PWCOMMONS Glucagon signaling in metabolic regulation PFKFB1 +PWCOMMONS Glucagon signaling in metabolic regulation MLXIPL +PWCOMMONS Glucagon signaling in metabolic regulation GCG +PWCOMMONS Glucagon signaling in metabolic regulation GCGR +PWCOMMONS Glucagon signaling in metabolic regulation GNAS +PWCOMMONS Glucagon signaling in metabolic regulation CREB1 +PWCOMMONS Glucagon signaling in metabolic regulation LIPE +PWCOMMONS Glucagon signaling in metabolic regulation FABP4 +PWCOMMONS Glucagon signaling in metabolic regulation +PWCOMMONS G(s)-alpha mediated events in glucagon signalling PFKFB1 +PWCOMMONS G(s)-alpha mediated events in glucagon signalling MLXIPL +PWCOMMONS G(s)-alpha mediated events in glucagon signalling GCG +PWCOMMONS G(s)-alpha mediated events in glucagon signalling GCGR +PWCOMMONS G(s)-alpha mediated events in glucagon signalling GNAS +PWCOMMONS G(s)-alpha mediated events in glucagon signalling CREB1 +PWCOMMONS G(s)-alpha mediated events in glucagon signalling LIPE +PWCOMMONS G(s)-alpha mediated events in glucagon signalling FABP4 +PWCOMMONS G(s)-alpha mediated events in glucagon signalling +PWCOMMONS PKA activation in glucagon signalling LIPE +PWCOMMONS PKA activation in glucagon signalling PFKFB1 +PWCOMMONS PKA activation in glucagon signalling MLXIPL +PWCOMMONS PKA activation in glucagon signalling CREB1 +PWCOMMONS PKA activation in glucagon signalling FABP4 +PWCOMMONS PKA activation in glucagon signalling GNAS +PWCOMMONS PKA activation in glucagon signalling +PWCOMMONS Glucose metabolism NT5C2 +PWCOMMONS Glucose metabolism ATP5O +PWCOMMONS Glucose metabolism ATP5F1 +PWCOMMONS Glucose metabolism ATP5J +PWCOMMONS Glucose metabolism ATP5G1 +PWCOMMONS Glucose metabolism ATP5L +PWCOMMONS Glucose metabolism MT-ATP6 +PWCOMMONS Glucose metabolism ATP5J2 +PWCOMMONS Glucose metabolism MT-ATP8 +PWCOMMONS Glucose metabolism ATP5H +PWCOMMONS Glucose metabolism ATP5I +PWCOMMONS Glucose metabolism ATP5C1 +PWCOMMONS Glucose metabolism ATP5D +PWCOMMONS Glucose metabolism ATP5A1 +PWCOMMONS Glucose metabolism ATP5B +PWCOMMONS Glucose metabolism ATP5E +PWCOMMONS Glucose metabolism HPRT1 +PWCOMMONS Glucose metabolism UQCRC1 +PWCOMMONS Glucose metabolism UQCRB +PWCOMMONS Glucose metabolism UQCR10 +PWCOMMONS Glucose metabolism UQCR +PWCOMMONS Glucose metabolism UQCRC2 +PWCOMMONS Glucose metabolism UQCRH +PWCOMMONS Glucose metabolism UQCRQ +PWCOMMONS Glucose metabolism UQCRFS1 +PWCOMMONS Glucose metabolism MT-CYB +PWCOMMONS Glucose metabolism CYC1 +PWCOMMONS Glucose metabolism MT-CO2 +PWCOMMONS Glucose metabolism COX8A +PWCOMMONS Glucose metabolism COX7C +PWCOMMONS Glucose metabolism MT-CO3 +PWCOMMONS Glucose metabolism COX6C +PWCOMMONS Glucose metabolism COX5B +PWCOMMONS Glucose metabolism MT-CO1 +PWCOMMONS Glucose metabolism COX7A2L +PWCOMMONS Glucose metabolism COX4I1 +PWCOMMONS Glucose metabolism COX6A1 +PWCOMMONS Glucose metabolism COX7B +PWCOMMONS Glucose metabolism COX6B1 +PWCOMMONS Glucose metabolism COX5A +PWCOMMONS Glucose metabolism PGLS +PWCOMMONS Glucose metabolism GOT2 +PWCOMMONS Glucose metabolism HADH +PWCOMMONS Glucose metabolism UPP1 +PWCOMMONS Glucose metabolism PDHX +PWCOMMONS Glucose metabolism PDHA1 +PWCOMMONS Glucose metabolism PDHB +PWCOMMONS Glucose metabolism DLAT +PWCOMMONS Glucose metabolism DLD +PWCOMMONS Glucose metabolism GOT1 +PWCOMMONS Glucose metabolism PC +PWCOMMONS Glucose metabolism PGK1 +PWCOMMONS Glucose metabolism ADSL +PWCOMMONS Glucose metabolism GCDH +PWCOMMONS Glucose metabolism MDH1 +PWCOMMONS Glucose metabolism PCK1 +PWCOMMONS Glucose metabolism ATIC +PWCOMMONS Glucose metabolism OAT +PWCOMMONS Glucose metabolism NP +PWCOMMONS Glucose metabolism GYS2 +PWCOMMONS Glucose metabolism ECHS1 +PWCOMMONS Glucose metabolism TXN +PWCOMMONS Glucose metabolism SUCLG1 +PWCOMMONS Glucose metabolism SUCLG2 +PWCOMMONS Glucose metabolism ARG1 +PWCOMMONS Glucose metabolism KCNJ11 +PWCOMMONS Glucose metabolism AMPD3 +PWCOMMONS Glucose metabolism RPE +PWCOMMONS Glucose metabolism GLRX +PWCOMMONS Glucose metabolism SDHC +PWCOMMONS Glucose metabolism SDHD +PWCOMMONS Glucose metabolism SDHB +PWCOMMONS Glucose metabolism SDHA +PWCOMMONS Glucose metabolism DPYD +PWCOMMONS Glucose metabolism GART +PWCOMMONS Glucose metabolism DPYS +PWCOMMONS Glucose metabolism AK1 +PWCOMMONS Glucose metabolism MDH2 +PWCOMMONS Glucose metabolism UMPS +PWCOMMONS Glucose metabolism CYCS +PWCOMMONS Glucose metabolism NDUFS3 +PWCOMMONS Glucose metabolism NDUFS4 +PWCOMMONS Glucose metabolism NDUFS6 +PWCOMMONS Glucose metabolism NDUFA5 +PWCOMMONS Glucose metabolism NDUFS5 +PWCOMMONS Glucose metabolism NDUFS1 +PWCOMMONS Glucose metabolism NDUFS2 +PWCOMMONS Glucose metabolism NDUFV2 +PWCOMMONS Glucose metabolism NDUFV3 +PWCOMMONS Glucose metabolism NDUFV1 +PWCOMMONS Glucose metabolism NDUFA4 +PWCOMMONS Glucose metabolism NDUFA11 +PWCOMMONS Glucose metabolism MT-ND3 +PWCOMMONS Glucose metabolism NDUFA13 +PWCOMMONS Glucose metabolism NDUFB5 +PWCOMMONS Glucose metabolism NDUFC1 +PWCOMMONS Glucose metabolism NDUFA6 +PWCOMMONS Glucose metabolism NDUFC2 +PWCOMMONS Glucose metabolism NDUFA3 +PWCOMMONS Glucose metabolism NDUFB3 +PWCOMMONS Glucose metabolism NDUFB1 +PWCOMMONS Glucose metabolism NDUFAB1 +PWCOMMONS Glucose metabolism MT-ND4 +PWCOMMONS Glucose metabolism MT-ND5 +PWCOMMONS Glucose metabolism NDUFA1 +PWCOMMONS Glucose metabolism NDUFB9 +PWCOMMONS Glucose metabolism NDUFB6 +PWCOMMONS Glucose metabolism NDUFB4 +PWCOMMONS Glucose metabolism NDUFA8 +PWCOMMONS Glucose metabolism NDUFB7 +PWCOMMONS Glucose metabolism NDUFA12 +PWCOMMONS Glucose metabolism NDUFB2 +PWCOMMONS Glucose metabolism MT-ND4L +PWCOMMONS Glucose metabolism MT-ND2 +PWCOMMONS Glucose metabolism NDUFB10 +PWCOMMONS Glucose metabolism NDUFA7 +PWCOMMONS Glucose metabolism NDUFA2 +PWCOMMONS Glucose metabolism NDUFB8 +PWCOMMONS Glucose metabolism NDUFB11 +PWCOMMONS Glucose metabolism MT-ND6 +PWCOMMONS Glucose metabolism MT-ND1 +PWCOMMONS Glucose metabolism NDUFS7 +PWCOMMONS Glucose metabolism NDUFA10 +PWCOMMONS Glucose metabolism NDUFS8 +PWCOMMONS Glucose metabolism NDUFA9 +PWCOMMONS Glucose metabolism VAMP2 +PWCOMMONS Glucose metabolism NT5C1A +PWCOMMONS Glucose metabolism CTPS +PWCOMMONS Glucose metabolism PRPS1 +PWCOMMONS Glucose metabolism DLST +PWCOMMONS Glucose metabolism OGDH +PWCOMMONS Glucose metabolism GMPS +PWCOMMONS Glucose metabolism GUK1 +PWCOMMONS Glucose metabolism IMPDH2 +PWCOMMONS Glucose metabolism GDA +PWCOMMONS Glucose metabolism NME1 +PWCOMMONS Glucose metabolism IMPDH1 +PWCOMMONS Glucose metabolism ADSS +PWCOMMONS Glucose metabolism OTC +PWCOMMONS Glucose metabolism FH +PWCOMMONS Glucose metabolism INS +PWCOMMONS Glucose metabolism SYT5 +PWCOMMONS Glucose metabolism PFAS +PWCOMMONS Glucose metabolism SLC35D1 +PWCOMMONS Glucose metabolism ASL +PWCOMMONS Glucose metabolism UPB1 +PWCOMMONS Glucose metabolism SLC25A21 +PWCOMMONS Glucose metabolism GPI +PWCOMMONS Glucose metabolism UROD +PWCOMMONS Glucose metabolism CPOX +PWCOMMONS Glucose metabolism UROS +PWCOMMONS Glucose metabolism XDH +PWCOMMONS Glucose metabolism PAICS +PWCOMMONS Glucose metabolism CPS1 +PWCOMMONS Glucose metabolism TALDO1 +PWCOMMONS Glucose metabolism ASS1 +PWCOMMONS Glucose metabolism BSG +PWCOMMONS Glucose metabolism CMPK1 +PWCOMMONS Glucose metabolism ALAD +PWCOMMONS Glucose metabolism CS +PWCOMMONS Glucose metabolism CAT +PWCOMMONS Glucose metabolism PPOX +PWCOMMONS Glucose metabolism SLC25A1 +PWCOMMONS Glucose metabolism ACO2 +PWCOMMONS Glucose metabolism IDH3G +PWCOMMONS Glucose metabolism IDH3A +PWCOMMONS Glucose metabolism IDH3B +PWCOMMONS Glucose metabolism UGDH +PWCOMMONS Glucose metabolism RRM2 +PWCOMMONS Glucose metabolism RRM1 +PWCOMMONS Glucose metabolism G6PD +PWCOMMONS Glucose metabolism AMPD1 +PWCOMMONS Glucose metabolism SLC25A11 +PWCOMMONS Glucose metabolism PPAT +PWCOMMONS Glucose metabolism TKT +PWCOMMONS Glucose metabolism FECH +PWCOMMONS Glucose metabolism PCK2 +PWCOMMONS Glucose metabolism SUCLA2 +PWCOMMONS Glucose metabolism GBE1 +PWCOMMONS Glucose metabolism TXNRD1 +PWCOMMONS Glucose metabolism TPI1 +PWCOMMONS Glucose metabolism SLC25A10 +PWCOMMONS Glucose metabolism G6PC +PWCOMMONS Glucose metabolism PYCR1 +PWCOMMONS Glucose metabolism NME2 +PWCOMMONS Glucose metabolism RPIA +PWCOMMONS Glucose metabolism AMPD2 +PWCOMMONS Glucose metabolism PGD +PWCOMMONS Glucose metabolism GSR +PWCOMMONS Glucose metabolism GYG1 +PWCOMMONS Glucose metabolism PYGM +PWCOMMONS Glucose metabolism PYGL +PWCOMMONS Glucose metabolism AGL +PWCOMMONS Glucose metabolism PGM1 +PWCOMMONS Glucose metabolism PHKG1 +PWCOMMONS Glucose metabolism CALM1 +PWCOMMONS Glucose metabolism PHKB +PWCOMMONS Glucose metabolism PHKA1 +PWCOMMONS Glucose metabolism PHKG2 +PWCOMMONS Glucose metabolism PHKA2 +PWCOMMONS Glucose metabolism GYS1 +PWCOMMONS Glucose metabolism PFKFB1 +PWCOMMONS Glucose metabolism PFKFB2 +PWCOMMONS Glucose metabolism PFKFB4 +PWCOMMONS Glucose metabolism PFKFB3 +PWCOMMONS Glucose metabolism MLX +PWCOMMONS Glucose metabolism MLXIPL +PWCOMMONS Glucose metabolism HK1 +PWCOMMONS Glucose metabolism GPT +PWCOMMONS Glucose metabolism PKM2 +PWCOMMONS Glucose metabolism FASN +PWCOMMONS Glucose metabolism AGPAT1 +PWCOMMONS Glucose metabolism PPAP2C +PWCOMMONS Glucose metabolism HK3 +PWCOMMONS Glucose metabolism ACLY +PWCOMMONS Glucose metabolism ACACB +PWCOMMONS Glucose metabolism HK2 +PWCOMMONS Glucose metabolism PPAP2B +PWCOMMONS Glucose metabolism DGAT1 +PWCOMMONS Glucose metabolism PPAP2A +PWCOMMONS Glucose metabolism SLC2A4 +PWCOMMONS Glucose metabolism SLC2A1 +PWCOMMONS Glucose metabolism SLC2A2 +PWCOMMONS Glucose metabolism SLC2A3 +PWCOMMONS Glucose metabolism GCKR +PWCOMMONS Glucose metabolism NUP153 +PWCOMMONS Glucose metabolism NUP85 +PWCOMMONS Glucose metabolism NUP35 +PWCOMMONS Glucose metabolism AAAS +PWCOMMONS Glucose metabolism NUP50 +PWCOMMONS Glucose metabolism NUP43 +PWCOMMONS Glucose metabolism NUP205 +PWCOMMONS Glucose metabolism NUP93 +PWCOMMONS Glucose metabolism NUP88 +PWCOMMONS Glucose metabolism NUPL2 +PWCOMMONS Glucose metabolism NUP210 +PWCOMMONS Glucose metabolism NUP155 +PWCOMMONS Glucose metabolism RANBP2 +PWCOMMONS Glucose metabolism RAE1 +PWCOMMONS Glucose metabolism NUP188 +PWCOMMONS Glucose metabolism NUP214 +PWCOMMONS Glucose metabolism NUP54 +PWCOMMONS Glucose metabolism NUP62 +PWCOMMONS Glucose metabolism NUP107 +PWCOMMONS Glucose metabolism NUP133 +PWCOMMONS Glucose metabolism NUP160 +PWCOMMONS Glucose metabolism NUP37 +PWCOMMONS Glucose metabolism +PWCOMMONS Pyruvate metabolism NT5C2 +PWCOMMONS Pyruvate metabolism ATP5O +PWCOMMONS Pyruvate metabolism ATP5F1 +PWCOMMONS Pyruvate metabolism ATP5J +PWCOMMONS Pyruvate metabolism ATP5G1 +PWCOMMONS Pyruvate metabolism ATP5L +PWCOMMONS Pyruvate metabolism MT-ATP6 +PWCOMMONS Pyruvate metabolism ATP5J2 +PWCOMMONS Pyruvate metabolism MT-ATP8 +PWCOMMONS Pyruvate metabolism ATP5H +PWCOMMONS Pyruvate metabolism ATP5I +PWCOMMONS Pyruvate metabolism ATP5C1 +PWCOMMONS Pyruvate metabolism ATP5D +PWCOMMONS Pyruvate metabolism ATP5A1 +PWCOMMONS Pyruvate metabolism ATP5B +PWCOMMONS Pyruvate metabolism ATP5E +PWCOMMONS Pyruvate metabolism HPRT1 +PWCOMMONS Pyruvate metabolism UQCRC1 +PWCOMMONS Pyruvate metabolism UQCRB +PWCOMMONS Pyruvate metabolism UQCR10 +PWCOMMONS Pyruvate metabolism UQCR +PWCOMMONS Pyruvate metabolism UQCRC2 +PWCOMMONS Pyruvate metabolism UQCRH +PWCOMMONS Pyruvate metabolism UQCRQ +PWCOMMONS Pyruvate metabolism UQCRFS1 +PWCOMMONS Pyruvate metabolism MT-CYB +PWCOMMONS Pyruvate metabolism CYC1 +PWCOMMONS Pyruvate metabolism MT-CO2 +PWCOMMONS Pyruvate metabolism COX8A +PWCOMMONS Pyruvate metabolism COX7C +PWCOMMONS Pyruvate metabolism MT-CO3 +PWCOMMONS Pyruvate metabolism COX6C +PWCOMMONS Pyruvate metabolism COX5B +PWCOMMONS Pyruvate metabolism MT-CO1 +PWCOMMONS Pyruvate metabolism COX7A2L +PWCOMMONS Pyruvate metabolism COX4I1 +PWCOMMONS Pyruvate metabolism COX6A1 +PWCOMMONS Pyruvate metabolism COX7B +PWCOMMONS Pyruvate metabolism COX6B1 +PWCOMMONS Pyruvate metabolism COX5A +PWCOMMONS Pyruvate metabolism PGLS +PWCOMMONS Pyruvate metabolism GOT2 +PWCOMMONS Pyruvate metabolism HADH +PWCOMMONS Pyruvate metabolism UPP1 +PWCOMMONS Pyruvate metabolism PDHX +PWCOMMONS Pyruvate metabolism PDHA1 +PWCOMMONS Pyruvate metabolism PDHB +PWCOMMONS Pyruvate metabolism DLAT +PWCOMMONS Pyruvate metabolism DLD +PWCOMMONS Pyruvate metabolism GOT1 +PWCOMMONS Pyruvate metabolism PC +PWCOMMONS Pyruvate metabolism PGK1 +PWCOMMONS Pyruvate metabolism ADSL +PWCOMMONS Pyruvate metabolism GCDH +PWCOMMONS Pyruvate metabolism MDH1 +PWCOMMONS Pyruvate metabolism PCK1 +PWCOMMONS Pyruvate metabolism ATIC +PWCOMMONS Pyruvate metabolism OAT +PWCOMMONS Pyruvate metabolism NP +PWCOMMONS Pyruvate metabolism GYS2 +PWCOMMONS Pyruvate metabolism ECHS1 +PWCOMMONS Pyruvate metabolism TXN +PWCOMMONS Pyruvate metabolism SUCLG1 +PWCOMMONS Pyruvate metabolism SUCLG2 +PWCOMMONS Pyruvate metabolism ARG1 +PWCOMMONS Pyruvate metabolism KCNJ11 +PWCOMMONS Pyruvate metabolism AMPD3 +PWCOMMONS Pyruvate metabolism RPE +PWCOMMONS Pyruvate metabolism GLRX +PWCOMMONS Pyruvate metabolism SDHC +PWCOMMONS Pyruvate metabolism SDHD +PWCOMMONS Pyruvate metabolism SDHB +PWCOMMONS Pyruvate metabolism SDHA +PWCOMMONS Pyruvate metabolism DPYD +PWCOMMONS Pyruvate metabolism GART +PWCOMMONS Pyruvate metabolism DPYS +PWCOMMONS Pyruvate metabolism AK1 +PWCOMMONS Pyruvate metabolism MDH2 +PWCOMMONS Pyruvate metabolism UMPS +PWCOMMONS Pyruvate metabolism CYCS +PWCOMMONS Pyruvate metabolism NDUFS3 +PWCOMMONS Pyruvate metabolism NDUFS4 +PWCOMMONS Pyruvate metabolism NDUFS6 +PWCOMMONS Pyruvate metabolism NDUFA5 +PWCOMMONS Pyruvate metabolism NDUFS5 +PWCOMMONS Pyruvate metabolism NDUFS1 +PWCOMMONS Pyruvate metabolism NDUFS2 +PWCOMMONS Pyruvate metabolism NDUFV2 +PWCOMMONS Pyruvate metabolism NDUFV3 +PWCOMMONS Pyruvate metabolism NDUFV1 +PWCOMMONS Pyruvate metabolism NDUFA4 +PWCOMMONS Pyruvate metabolism NDUFA11 +PWCOMMONS Pyruvate metabolism MT-ND3 +PWCOMMONS Pyruvate metabolism NDUFA13 +PWCOMMONS Pyruvate metabolism NDUFB5 +PWCOMMONS Pyruvate metabolism NDUFC1 +PWCOMMONS Pyruvate metabolism NDUFA6 +PWCOMMONS Pyruvate metabolism NDUFC2 +PWCOMMONS Pyruvate metabolism NDUFA3 +PWCOMMONS Pyruvate metabolism NDUFB3 +PWCOMMONS Pyruvate metabolism NDUFB1 +PWCOMMONS Pyruvate metabolism NDUFAB1 +PWCOMMONS Pyruvate metabolism MT-ND4 +PWCOMMONS Pyruvate metabolism MT-ND5 +PWCOMMONS Pyruvate metabolism NDUFA1 +PWCOMMONS Pyruvate metabolism NDUFB9 +PWCOMMONS Pyruvate metabolism NDUFB6 +PWCOMMONS Pyruvate metabolism NDUFB4 +PWCOMMONS Pyruvate metabolism NDUFA8 +PWCOMMONS Pyruvate metabolism NDUFB7 +PWCOMMONS Pyruvate metabolism NDUFA12 +PWCOMMONS Pyruvate metabolism NDUFB2 +PWCOMMONS Pyruvate metabolism MT-ND4L +PWCOMMONS Pyruvate metabolism MT-ND2 +PWCOMMONS Pyruvate metabolism NDUFB10 +PWCOMMONS Pyruvate metabolism NDUFA7 +PWCOMMONS Pyruvate metabolism NDUFA2 +PWCOMMONS Pyruvate metabolism NDUFB8 +PWCOMMONS Pyruvate metabolism NDUFB11 +PWCOMMONS Pyruvate metabolism MT-ND6 +PWCOMMONS Pyruvate metabolism MT-ND1 +PWCOMMONS Pyruvate metabolism NDUFS7 +PWCOMMONS Pyruvate metabolism NDUFA10 +PWCOMMONS Pyruvate metabolism NDUFS8 +PWCOMMONS Pyruvate metabolism NDUFA9 +PWCOMMONS Pyruvate metabolism VAMP2 +PWCOMMONS Pyruvate metabolism NT5C1A +PWCOMMONS Pyruvate metabolism CTPS +PWCOMMONS Pyruvate metabolism PRPS1 +PWCOMMONS Pyruvate metabolism DLST +PWCOMMONS Pyruvate metabolism OGDH +PWCOMMONS Pyruvate metabolism GMPS +PWCOMMONS Pyruvate metabolism GUK1 +PWCOMMONS Pyruvate metabolism IMPDH2 +PWCOMMONS Pyruvate metabolism GDA +PWCOMMONS Pyruvate metabolism NME1 +PWCOMMONS Pyruvate metabolism IMPDH1 +PWCOMMONS Pyruvate metabolism ADSS +PWCOMMONS Pyruvate metabolism OTC +PWCOMMONS Pyruvate metabolism FH +PWCOMMONS Pyruvate metabolism INS +PWCOMMONS Pyruvate metabolism SYT5 +PWCOMMONS Pyruvate metabolism PFAS +PWCOMMONS Pyruvate metabolism SLC35D1 +PWCOMMONS Pyruvate metabolism ASL +PWCOMMONS Pyruvate metabolism UPB1 +PWCOMMONS Pyruvate metabolism SLC25A21 +PWCOMMONS Pyruvate metabolism GPI +PWCOMMONS Pyruvate metabolism UROD +PWCOMMONS Pyruvate metabolism CPOX +PWCOMMONS Pyruvate metabolism UROS +PWCOMMONS Pyruvate metabolism XDH +PWCOMMONS Pyruvate metabolism PAICS +PWCOMMONS Pyruvate metabolism CPS1 +PWCOMMONS Pyruvate metabolism TALDO1 +PWCOMMONS Pyruvate metabolism ASS1 +PWCOMMONS Pyruvate metabolism BSG +PWCOMMONS Pyruvate metabolism CMPK1 +PWCOMMONS Pyruvate metabolism ALAD +PWCOMMONS Pyruvate metabolism CS +PWCOMMONS Pyruvate metabolism CAT +PWCOMMONS Pyruvate metabolism PPOX +PWCOMMONS Pyruvate metabolism SLC25A1 +PWCOMMONS Pyruvate metabolism ACO2 +PWCOMMONS Pyruvate metabolism IDH3G +PWCOMMONS Pyruvate metabolism IDH3A +PWCOMMONS Pyruvate metabolism IDH3B +PWCOMMONS Pyruvate metabolism UGDH +PWCOMMONS Pyruvate metabolism RRM2 +PWCOMMONS Pyruvate metabolism RRM1 +PWCOMMONS Pyruvate metabolism G6PD +PWCOMMONS Pyruvate metabolism AMPD1 +PWCOMMONS Pyruvate metabolism SLC25A11 +PWCOMMONS Pyruvate metabolism PPAT +PWCOMMONS Pyruvate metabolism TKT +PWCOMMONS Pyruvate metabolism FECH +PWCOMMONS Pyruvate metabolism PCK2 +PWCOMMONS Pyruvate metabolism SUCLA2 +PWCOMMONS Pyruvate metabolism GBE1 +PWCOMMONS Pyruvate metabolism TXNRD1 +PWCOMMONS Pyruvate metabolism TPI1 +PWCOMMONS Pyruvate metabolism SLC25A10 +PWCOMMONS Pyruvate metabolism G6PC +PWCOMMONS Pyruvate metabolism PYCR1 +PWCOMMONS Pyruvate metabolism NME2 +PWCOMMONS Pyruvate metabolism RPIA +PWCOMMONS Pyruvate metabolism AMPD2 +PWCOMMONS Pyruvate metabolism PGD +PWCOMMONS Pyruvate metabolism GSR +PWCOMMONS Pyruvate metabolism +PWCOMMONS Glucose uptake PFKFB2 +PWCOMMONS Glucose uptake PFKFB4 +PWCOMMONS Glucose uptake PFKFB3 +PWCOMMONS Glucose uptake ATP5O +PWCOMMONS Glucose uptake ATP5F1 +PWCOMMONS Glucose uptake ATP5J +PWCOMMONS Glucose uptake ATP5G1 +PWCOMMONS Glucose uptake ATP5L +PWCOMMONS Glucose uptake MT-ATP6 +PWCOMMONS Glucose uptake ATP5J2 +PWCOMMONS Glucose uptake MT-ATP8 +PWCOMMONS Glucose uptake ATP5H +PWCOMMONS Glucose uptake ATP5I +PWCOMMONS Glucose uptake ATP5C1 +PWCOMMONS Glucose uptake ATP5D +PWCOMMONS Glucose uptake ATP5A1 +PWCOMMONS Glucose uptake ATP5B +PWCOMMONS Glucose uptake ATP5E +PWCOMMONS Glucose uptake MLX +PWCOMMONS Glucose uptake MLXIPL +PWCOMMONS Glucose uptake HPRT1 +PWCOMMONS Glucose uptake UQCRC1 +PWCOMMONS Glucose uptake UQCRB +PWCOMMONS Glucose uptake UQCR10 +PWCOMMONS Glucose uptake UQCR +PWCOMMONS Glucose uptake UQCRC2 +PWCOMMONS Glucose uptake UQCRH +PWCOMMONS Glucose uptake UQCRQ +PWCOMMONS Glucose uptake UQCRFS1 +PWCOMMONS Glucose uptake MT-CYB +PWCOMMONS Glucose uptake CYC1 +PWCOMMONS Glucose uptake GOT2 +PWCOMMONS Glucose uptake GYG2 +PWCOMMONS Glucose uptake UPP1 +PWCOMMONS Glucose uptake PC +PWCOMMONS Glucose uptake ADSL +PWCOMMONS Glucose uptake MDH1 +PWCOMMONS Glucose uptake PCK1 +PWCOMMONS Glucose uptake OAT +PWCOMMONS Glucose uptake GYS2 +PWCOMMONS Glucose uptake ECHS1 +PWCOMMONS Glucose uptake TXN +PWCOMMONS Glucose uptake SUCLG1 +PWCOMMONS Glucose uptake SUCLG2 +PWCOMMONS Glucose uptake ARG1 +PWCOMMONS Glucose uptake KCNJ11 +PWCOMMONS Glucose uptake AMPD3 +PWCOMMONS Glucose uptake HK1 +PWCOMMONS Glucose uptake RPE +PWCOMMONS Glucose uptake GPT +PWCOMMONS Glucose uptake DPYS +PWCOMMONS Glucose uptake AK1 +PWCOMMONS Glucose uptake PKM2 +PWCOMMONS Glucose uptake NDUFS3 +PWCOMMONS Glucose uptake NDUFS4 +PWCOMMONS Glucose uptake NDUFS6 +PWCOMMONS Glucose uptake NDUFA5 +PWCOMMONS Glucose uptake NDUFS5 +PWCOMMONS Glucose uptake NDUFS1 +PWCOMMONS Glucose uptake NDUFS2 +PWCOMMONS Glucose uptake NDUFV2 +PWCOMMONS Glucose uptake NDUFV3 +PWCOMMONS Glucose uptake NDUFV1 +PWCOMMONS Glucose uptake NDUFA4 +PWCOMMONS Glucose uptake NDUFA11 +PWCOMMONS Glucose uptake MT-ND3 +PWCOMMONS Glucose uptake NDUFA13 +PWCOMMONS Glucose uptake NDUFB5 +PWCOMMONS Glucose uptake NDUFC1 +PWCOMMONS Glucose uptake NDUFA6 +PWCOMMONS Glucose uptake NDUFC2 +PWCOMMONS Glucose uptake NDUFA3 +PWCOMMONS Glucose uptake NDUFB3 +PWCOMMONS Glucose uptake NDUFB1 +PWCOMMONS Glucose uptake NDUFAB1 +PWCOMMONS Glucose uptake MT-ND4 +PWCOMMONS Glucose uptake MT-ND5 +PWCOMMONS Glucose uptake NDUFA1 +PWCOMMONS Glucose uptake NDUFB9 +PWCOMMONS Glucose uptake NDUFB6 +PWCOMMONS Glucose uptake NDUFB4 +PWCOMMONS Glucose uptake NDUFA8 +PWCOMMONS Glucose uptake NDUFB7 +PWCOMMONS Glucose uptake NDUFA12 +PWCOMMONS Glucose uptake NDUFB2 +PWCOMMONS Glucose uptake MT-ND4L +PWCOMMONS Glucose uptake MT-ND2 +PWCOMMONS Glucose uptake NDUFB10 +PWCOMMONS Glucose uptake NDUFA7 +PWCOMMONS Glucose uptake NDUFA2 +PWCOMMONS Glucose uptake NDUFB8 +PWCOMMONS Glucose uptake NDUFB11 +PWCOMMONS Glucose uptake MT-ND6 +PWCOMMONS Glucose uptake MT-ND1 +PWCOMMONS Glucose uptake NDUFS7 +PWCOMMONS Glucose uptake NDUFA10 +PWCOMMONS Glucose uptake NDUFS8 +PWCOMMONS Glucose uptake NDUFA9 +PWCOMMONS Glucose uptake VAMP2 +PWCOMMONS Glucose uptake NT5C1A +PWCOMMONS Glucose uptake FASN +PWCOMMONS Glucose uptake DLST +PWCOMMONS Glucose uptake OGDH +PWCOMMONS Glucose uptake DLD +PWCOMMONS Glucose uptake GMPS +PWCOMMONS Glucose uptake GUK1 +PWCOMMONS Glucose uptake IMPDH2 +PWCOMMONS Glucose uptake GDA +PWCOMMONS Glucose uptake NME1 +PWCOMMONS Glucose uptake IMPDH1 +PWCOMMONS Glucose uptake ADSS +PWCOMMONS Glucose uptake ATIC +PWCOMMONS Glucose uptake INS +PWCOMMONS Glucose uptake SYT5 +PWCOMMONS Glucose uptake GART +PWCOMMONS Glucose uptake SLC35D1 +PWCOMMONS Glucose uptake ASL +PWCOMMONS Glucose uptake UPB1 +PWCOMMONS Glucose uptake GLRX +PWCOMMONS Glucose uptake SLC25A21 +PWCOMMONS Glucose uptake AGPAT1 +PWCOMMONS Glucose uptake UROS +PWCOMMONS Glucose uptake TALDO1 +PWCOMMONS Glucose uptake ASS1 +PWCOMMONS Glucose uptake CMPK1 +PWCOMMONS Glucose uptake ALAD +PWCOMMONS Glucose uptake IDH3G +PWCOMMONS Glucose uptake IDH3A +PWCOMMONS Glucose uptake IDH3B +PWCOMMONS Glucose uptake UGDH +PWCOMMONS Glucose uptake RRM2 +PWCOMMONS Glucose uptake RRM1 +PWCOMMONS Glucose uptake G6PD +PWCOMMONS Glucose uptake AMPD1 +PWCOMMONS Glucose uptake SLC25A11 +PWCOMMONS Glucose uptake PPAT +PWCOMMONS Glucose uptake SDHC +PWCOMMONS Glucose uptake SDHD +PWCOMMONS Glucose uptake SDHB +PWCOMMONS Glucose uptake SDHA +PWCOMMONS Glucose uptake FECH +PWCOMMONS Glucose uptake TKT +PWCOMMONS Glucose uptake PDHX +PWCOMMONS Glucose uptake DLAT +PWCOMMONS Glucose uptake PDHA1 +PWCOMMONS Glucose uptake PDHB +PWCOMMONS Glucose uptake PPAP2C +PWCOMMONS Glucose uptake GBE1 +PWCOMMONS Glucose uptake TXNRD1 +PWCOMMONS Glucose uptake TPI1 +PWCOMMONS Glucose uptake SLC25A10 +PWCOMMONS Glucose uptake G6PC +PWCOMMONS Glucose uptake GSR +PWCOMMONS Glucose uptake NT5C2 +PWCOMMONS Glucose uptake HK3 +PWCOMMONS Glucose uptake MT-CO2 +PWCOMMONS Glucose uptake COX8A +PWCOMMONS Glucose uptake COX7C +PWCOMMONS Glucose uptake MT-CO3 +PWCOMMONS Glucose uptake COX6C +PWCOMMONS Glucose uptake COX5B +PWCOMMONS Glucose uptake MT-CO1 +PWCOMMONS Glucose uptake COX7A2L +PWCOMMONS Glucose uptake COX4I1 +PWCOMMONS Glucose uptake COX6A1 +PWCOMMONS Glucose uptake COX7B +PWCOMMONS Glucose uptake COX6B1 +PWCOMMONS Glucose uptake COX5A +PWCOMMONS Glucose uptake PGLS +PWCOMMONS Glucose uptake HADH +PWCOMMONS Glucose uptake GOT1 +PWCOMMONS Glucose uptake PGK1 +PWCOMMONS Glucose uptake GCDH +PWCOMMONS Glucose uptake NP +PWCOMMONS Glucose uptake DPYD +PWCOMMONS Glucose uptake ACLY +PWCOMMONS Glucose uptake MDH2 +PWCOMMONS Glucose uptake UMPS +PWCOMMONS Glucose uptake CYCS +PWCOMMONS Glucose uptake CTPS +PWCOMMONS Glucose uptake PRPS1 +PWCOMMONS Glucose uptake ACACB +PWCOMMONS Glucose uptake OTC +PWCOMMONS Glucose uptake FH +PWCOMMONS Glucose uptake HK2 +PWCOMMONS Glucose uptake PFAS +PWCOMMONS Glucose uptake GPI +PWCOMMONS Glucose uptake UROD +PWCOMMONS Glucose uptake CPOX +PWCOMMONS Glucose uptake XDH +PWCOMMONS Glucose uptake PAICS +PWCOMMONS Glucose uptake CPS1 +PWCOMMONS Glucose uptake CS +PWCOMMONS Glucose uptake CAT +PWCOMMONS Glucose uptake PPOX +PWCOMMONS Glucose uptake SLC25A1 +PWCOMMONS Glucose uptake ACO2 +PWCOMMONS Glucose uptake PGM1 +PWCOMMONS Glucose uptake PCK2 +PWCOMMONS Glucose uptake SUCLA2 +PWCOMMONS Glucose uptake PPAP2B +PWCOMMONS Glucose uptake PYCR1 +PWCOMMONS Glucose uptake DGAT1 +PWCOMMONS Glucose uptake NME2 +PWCOMMONS Glucose uptake RPIA +PWCOMMONS Glucose uptake AMPD2 +PWCOMMONS Glucose uptake PGD +PWCOMMONS Glucose uptake PPAP2A +PWCOMMONS Glucose uptake SLC2A4 +PWCOMMONS Glucose uptake SLC2A1 +PWCOMMONS Glucose uptake SLC2A2 +PWCOMMONS Glucose uptake SLC2A3 +PWCOMMONS Glucose uptake GCKR +PWCOMMONS Glucose uptake NUP153 +PWCOMMONS Glucose uptake NUP85 +PWCOMMONS Glucose uptake NUP35 +PWCOMMONS Glucose uptake AAAS +PWCOMMONS Glucose uptake NUP50 +PWCOMMONS Glucose uptake NUP43 +PWCOMMONS Glucose uptake NUP205 +PWCOMMONS Glucose uptake NUP93 +PWCOMMONS Glucose uptake NUP88 +PWCOMMONS Glucose uptake NUPL2 +PWCOMMONS Glucose uptake NUP210 +PWCOMMONS Glucose uptake NUP155 +PWCOMMONS Glucose uptake RANBP2 +PWCOMMONS Glucose uptake RAE1 +PWCOMMONS Glucose uptake NUP188 +PWCOMMONS Glucose uptake NUP214 +PWCOMMONS Glucose uptake NUP54 +PWCOMMONS Glucose uptake NUP62 +PWCOMMONS Glucose uptake NUP107 +PWCOMMONS Glucose uptake NUP133 +PWCOMMONS Glucose uptake NUP160 +PWCOMMONS Glucose uptake NUP37 +PWCOMMONS Glucose uptake +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5F1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5J +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5G1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5L +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-ATP6 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5J2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-ATP8 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5H +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5I +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5C1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5D +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5A1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5B +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATP5E +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MLX +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MLXIPL +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) HPRT1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UQCRC1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UQCRB +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UQCR10 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UQCR +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UQCRC2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UQCRH +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UQCRQ +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UQCRFS1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-CYB +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) CYC1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GOT2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GYG2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UPP1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PC +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ADSL +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MDH1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PCK1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) OAT +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GYS2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ECHS1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) TXN +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SUCLG1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SUCLG2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ARG1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) KCNJ11 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) AMPD3 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) HK1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) RPE +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SLC2A4 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GPT +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) DPYS +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) AK1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PKM2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFS3 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFS4 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFS6 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA5 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFS5 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFS1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFS2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFV2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFV3 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFV1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA4 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA11 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-ND3 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA13 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFB5 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFC1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA6 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFC2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA3 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFB3 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFB1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFAB1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-ND4 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-ND5 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFB9 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFB6 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFB4 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA8 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFB7 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA12 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFB2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-ND4L +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-ND2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFB10 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA7 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFB8 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFB11 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-ND6 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-ND1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFS7 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA10 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFS8 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NDUFA9 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) VAMP2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NT5C1A +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) FASN +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) DLST +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) OGDH +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) DLD +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GMPS +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GUK1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) IMPDH2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GDA +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NME1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) IMPDH1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ADSS +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ATIC +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PFKFB1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SLC2A1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) INS +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SYT5 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GART +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SLC35D1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ASL +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UPB1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GLRX +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SLC25A21 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) AGPAT1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UROS +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) TALDO1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ASS1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) CMPK1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ALAD +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) IDH3G +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) IDH3A +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) IDH3B +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UGDH +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) RRM2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) RRM1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) G6PD +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) AMPD1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SLC25A11 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PPAT +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SDHC +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SDHD +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SDHB +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SDHA +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) FECH +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) TKT +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PDHX +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) DLAT +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PDHA1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PDHB +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PPAP2C +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GBE1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) TXNRD1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) TPI1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SLC25A10 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) G6PC +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GSR +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NT5C2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-CO2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) COX8A +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) COX7C +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-CO3 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) COX6C +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) COX5B +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MT-CO1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) COX7A2L +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) COX4I1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) COX6A1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) COX7B +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) COX6B1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) COX5A +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PGLS +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) HADH +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PFKFB2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PFKFB4 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PFKFB3 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GOT1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SLC2A2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PGK1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GCDH +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NP +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) DPYD +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ACLY +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) MDH2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UMPS +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) CYCS +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) CTPS +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SLC2A3 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PRPS1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ACACB +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) OTC +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) FH +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) HK2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PFAS +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) GPI +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) UROD +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) CPOX +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) XDH +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PAICS +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) CPS1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) CS +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) CAT +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PPOX +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SLC25A1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) ACO2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PGM1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PCK2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) SUCLA2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PPAP2B +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PYCR1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) DGAT1 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) NME2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) RPIA +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) AMPD2 +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PGD +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) PPAP2A +PWCOMMONS Glucose is carried across the plasma membrane by a glucose transport protein (GLUT) +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5F1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5J +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5G1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5L +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-ATP6 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5J2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-ATP8 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5H +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5I +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5C1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5D +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5A1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5B +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATP5E +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MLX +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MLXIPL +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP HPRT1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UQCRC1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UQCRB +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UQCR10 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UQCR +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UQCRC2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UQCRH +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UQCRQ +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UQCRFS1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-CYB +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP CYC1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GOT2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GYG2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UPP1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PC +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ADSL +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MDH1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PCK1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP OAT +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GYS2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ECHS1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP TXN +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SUCLG1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SUCLG2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ARG1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP KCNJ11 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP AMPD3 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP HK1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP RPE +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GPT +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP DPYS +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP AK1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PKM2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFS3 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFS4 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFS6 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA5 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFS5 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFS1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFS2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFV2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFV3 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFV1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA4 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA11 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-ND3 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA13 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFB5 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFC1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA6 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFC2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA3 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFB3 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFB1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFAB1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-ND4 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-ND5 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFB9 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFB6 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFB4 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA8 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFB7 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA12 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFB2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-ND4L +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-ND2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFB10 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA7 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFB8 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFB11 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-ND6 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-ND1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFS7 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA10 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFS8 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NDUFA9 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP VAMP2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NT5C1A +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP FASN +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP DLST +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP OGDH +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP DLD +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GMPS +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GUK1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP IMPDH2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GDA +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NME1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP IMPDH1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ADSS +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ATIC +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PFKFB1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP INS +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SYT5 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GART +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SLC35D1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ASL +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UPB1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GLRX +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SLC25A21 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP AGPAT1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UROS +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP TALDO1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ASS1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP CMPK1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ALAD +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP IDH3G +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP IDH3A +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP IDH3B +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UGDH +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP RRM2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP RRM1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP G6PD +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP AMPD1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SLC25A11 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PPAT +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SDHC +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SDHD +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SDHB +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SDHA +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP FECH +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP TKT +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PDHX +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP DLAT +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PDHA1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PDHB +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PPAP2C +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GBE1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP TXNRD1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP TPI1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SLC25A10 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP G6PC +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GSR +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NT5C2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP HK3 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-CO2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP COX8A +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP COX7C +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-CO3 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP COX6C +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP COX5B +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MT-CO1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP COX7A2L +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP COX4I1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP COX6A1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP COX7B +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP COX6B1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP COX5A +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PGLS +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP HADH +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PFKFB2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PFKFB4 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PFKFB3 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GOT1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PGK1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GCDH +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NP +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP DPYD +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ACLY +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP MDH2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UMPS +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP CYCS +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP CTPS +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PRPS1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ACACB +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP OTC +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP FH +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP HK2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PFAS +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP GPI +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP UROD +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP CPOX +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP XDH +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PAICS +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP CPS1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP CS +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP CAT +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PPOX +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SLC25A1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP ACO2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PGM1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PCK2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP SUCLA2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PPAP2B +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PYCR1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP DGAT1 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP NME2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP RPIA +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP AMPD2 +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PGD +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP PPAP2A +PWCOMMONS Glucose + ATP => glucose-6-phosphate + ADP +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP153 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP85 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP35 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein AAAS +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP50 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP43 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP205 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP93 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP88 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUPL2 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP210 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP155 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein RANBP2 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein RAE1 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP188 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP214 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP54 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP62 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP107 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP133 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP160 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein NUP37 +PWCOMMONS Negative Regulation of Glucokinase by Glucokinase Regulatory Protein +PWCOMMONS Glycogen synthesis PGM1 +PWCOMMONS Glycogen synthesis GYG1 +PWCOMMONS Glycogen synthesis GBE1 +PWCOMMONS Glycogen synthesis GYS2 +PWCOMMONS Glycogen synthesis GYS1 +PWCOMMONS Glycogen synthesis UGDH +PWCOMMONS Glycogen synthesis SLC35D1 +PWCOMMONS Glycogen synthesis +PWCOMMONS Phosphorylated glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer when activated by glucose-6-phosphate GYS1 +PWCOMMONS Phosphorylated glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer when activated by glucose-6-phosphate GYS2 +PWCOMMONS Phosphorylated glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer when activated by glucose-6-phosphate GYG2 +PWCOMMONS Phosphorylated glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer when activated by glucose-6-phosphate GBE1 +PWCOMMONS Phosphorylated glycogen synthase catalyzes the addition of glucose residues to the non-reducing end of a (1,4)-alpha-D-glucose multimer when activated by glucose-6-phosphate +PWCOMMONS Glycogen branching enzyme transfers terminal alpha(1,4)glucose blocks to form alpha(1,6) branches GYG2 +PWCOMMONS Glycogen branching enzyme transfers terminal alpha(1,4)glucose blocks to form alpha(1,6) branches GBE1 +PWCOMMONS Glycogen branching enzyme transfers terminal alpha(1,4)glucose blocks to form alpha(1,6) branches +PWCOMMONS UTP and glucose 1-phosphate react to form UDP-glucose and pyrophosphate GYG1 +PWCOMMONS UTP and glucose 1-phosphate react to form UDP-glucose and pyrophosphate GBE1 +PWCOMMONS UTP and glucose 1-phosphate react to form UDP-glucose and pyrophosphate GYS2 +PWCOMMONS UTP and glucose 1-phosphate react to form UDP-glucose and pyrophosphate GYS1 +PWCOMMONS UTP and glucose 1-phosphate react to form UDP-glucose and pyrophosphate UGDH +PWCOMMONS UTP and glucose 1-phosphate react to form UDP-glucose and pyrophosphate SLC35D1 +PWCOMMONS UTP and glucose 1-phosphate react to form UDP-glucose and pyrophosphate +PWCOMMONS Glycogen breakdown (glycogenolysis) GART +PWCOMMONS Glycogen breakdown (glycogenolysis) NT5C2 +PWCOMMONS Glycogen breakdown (glycogenolysis) GLRX +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5O +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5F1 +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5J +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5G1 +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5L +PWCOMMONS Glycogen breakdown (glycogenolysis) MT-ATP6 +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5J2 +PWCOMMONS Glycogen breakdown (glycogenolysis) MT-ATP8 +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5H +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5I +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5C1 +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5D +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5A1 +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5B +PWCOMMONS Glycogen breakdown (glycogenolysis) ATP5E +PWCOMMONS Glycogen breakdown (glycogenolysis) HPRT1 +PWCOMMONS Glycogen breakdown (glycogenolysis) TXN +PWCOMMONS Glycogen breakdown (glycogenolysis) PGLS +PWCOMMONS Glycogen breakdown (glycogenolysis) XDH +PWCOMMONS Glycogen breakdown (glycogenolysis) PAICS +PWCOMMONS Glycogen breakdown (glycogenolysis) CPS1 +PWCOMMONS Glycogen breakdown (glycogenolysis) TALDO1 +PWCOMMONS Glycogen breakdown (glycogenolysis) UPP1 +PWCOMMONS Glycogen breakdown (glycogenolysis) ASS1 +PWCOMMONS Glycogen breakdown (glycogenolysis) CMPK1 +PWCOMMONS Glycogen breakdown (glycogenolysis) ADSL +PWCOMMONS Glycogen breakdown (glycogenolysis) ATIC +PWCOMMONS Glycogen breakdown (glycogenolysis) OAT +PWCOMMONS Glycogen breakdown (glycogenolysis) NP +PWCOMMONS Glycogen breakdown (glycogenolysis) GYS2 +PWCOMMONS Glycogen breakdown (glycogenolysis) CAT +PWCOMMONS Glycogen breakdown (glycogenolysis) GYG1 +PWCOMMONS Glycogen breakdown (glycogenolysis) PYGM +PWCOMMONS Glycogen breakdown (glycogenolysis) PYGL +PWCOMMONS Glycogen breakdown (glycogenolysis) UMPS +PWCOMMONS Glycogen breakdown (glycogenolysis) UGDH +PWCOMMONS Glycogen breakdown (glycogenolysis) AGL +PWCOMMONS Glycogen breakdown (glycogenolysis) RRM2 +PWCOMMONS Glycogen breakdown (glycogenolysis) RRM1 +PWCOMMONS Glycogen breakdown (glycogenolysis) G6PD +PWCOMMONS Glycogen breakdown (glycogenolysis) AMPD1 +PWCOMMONS Glycogen breakdown (glycogenolysis) PPAT +PWCOMMONS Glycogen breakdown (glycogenolysis) ARG1 +PWCOMMONS Glycogen breakdown (glycogenolysis) KCNJ11 +PWCOMMONS Glycogen breakdown (glycogenolysis) AMPD3 +PWCOMMONS Glycogen breakdown (glycogenolysis) TKT +PWCOMMONS Glycogen breakdown (glycogenolysis) PGM1 +PWCOMMONS Glycogen breakdown (glycogenolysis) RPE +PWCOMMONS Glycogen breakdown (glycogenolysis) GBE1 +PWCOMMONS Glycogen breakdown (glycogenolysis) TXNRD1 +PWCOMMONS Glycogen breakdown (glycogenolysis) DPYD +PWCOMMONS Glycogen breakdown (glycogenolysis) DPYS +PWCOMMONS Glycogen breakdown (glycogenolysis) AK1 +PWCOMMONS Glycogen breakdown (glycogenolysis) PHKG1 +PWCOMMONS Glycogen breakdown (glycogenolysis) CALM1 +PWCOMMONS Glycogen breakdown (glycogenolysis) PHKB +PWCOMMONS Glycogen breakdown (glycogenolysis) PHKA1 +PWCOMMONS Glycogen breakdown (glycogenolysis) PHKG2 +PWCOMMONS Glycogen breakdown (glycogenolysis) PHKA2 +PWCOMMONS Glycogen breakdown (glycogenolysis) PYCR1 +PWCOMMONS Glycogen breakdown (glycogenolysis) VAMP2 +PWCOMMONS Glycogen breakdown (glycogenolysis) NT5C1A +PWCOMMONS Glycogen breakdown (glycogenolysis) CTPS +PWCOMMONS Glycogen breakdown (glycogenolysis) PRPS1 +PWCOMMONS Glycogen breakdown (glycogenolysis) GMPS +PWCOMMONS Glycogen breakdown (glycogenolysis) GUK1 +PWCOMMONS Glycogen breakdown (glycogenolysis) IMPDH2 +PWCOMMONS Glycogen breakdown (glycogenolysis) GDA +PWCOMMONS Glycogen breakdown (glycogenolysis) NME1 +PWCOMMONS Glycogen breakdown (glycogenolysis) IMPDH1 +PWCOMMONS Glycogen breakdown (glycogenolysis) ADSS +PWCOMMONS Glycogen breakdown (glycogenolysis) NME2 +PWCOMMONS Glycogen breakdown (glycogenolysis) RPIA +PWCOMMONS Glycogen breakdown (glycogenolysis) OTC +PWCOMMONS Glycogen breakdown (glycogenolysis) AMPD2 +PWCOMMONS Glycogen breakdown (glycogenolysis) INS +PWCOMMONS Glycogen breakdown (glycogenolysis) SYT5 +PWCOMMONS Glycogen breakdown (glycogenolysis) PGD +PWCOMMONS Glycogen breakdown (glycogenolysis) PFAS +PWCOMMONS Glycogen breakdown (glycogenolysis) SLC35D1 +PWCOMMONS Glycogen breakdown (glycogenolysis) GSR +PWCOMMONS Glycogen breakdown (glycogenolysis) ASL +PWCOMMONS Glycogen breakdown (glycogenolysis) UPB1 +PWCOMMONS Glycogen breakdown (glycogenolysis) +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin NT5C2 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5O +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5F1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5J +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5G1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5L +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin MT-ATP6 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5J2 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin MT-ATP8 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5H +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5I +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5C1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5D +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5A1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5B +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATP5E +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin HPRT1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin PGLS +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin GYG1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin UPP1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ADSL +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ATIC +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin OAT +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin NP +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin GYS2 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin AGL +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin TXN +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin PYGM +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ARG1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin KCNJ11 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin AMPD3 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin RPE +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin GLRX +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin DPYD +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin GART +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin DPYS +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin AK1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin PYGL +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin UMPS +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin VAMP2 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin NT5C1A +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin CTPS +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin PRPS1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin GMPS +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin GUK1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin IMPDH2 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin GDA +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin NME1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin IMPDH1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ADSS +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin OTC +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin INS +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin SYT5 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin SLC35D1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin PFAS +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ASL +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin UPB1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin XDH +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin PAICS +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin CPS1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin TALDO1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin ASS1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin CMPK1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin CAT +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin UGDH +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin RRM2 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin RRM1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin G6PD +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin AMPD1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin PPAT +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin TKT +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin PGM1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin GBE1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin TXNRD1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin PYCR1 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin NME2 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin RPIA +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin AMPD2 +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin PGD +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin GSR +PWCOMMONS Debranching enzyme transfers 3-glucose blocks from branches in limit dextrin +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates NT5C2 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5O +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5F1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5J +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5G1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5L +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates MT-ATP6 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5J2 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates MT-ATP8 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5H +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5I +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5C1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5D +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5A1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5B +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATP5E +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates HPRT1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates PGLS +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates GYG1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates UPP1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ADSL +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ATIC +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates OAT +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates NP +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates GYS2 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates TXN +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates PYGM +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ARG1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates KCNJ11 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates AMPD3 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates RPE +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates GLRX +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates DPYD +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates GART +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates DPYS +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates AK1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates PYGL +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates UMPS +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates VAMP2 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates NT5C1A +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates CTPS +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates PRPS1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates GMPS +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates GUK1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates IMPDH2 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates GDA +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates NME1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates IMPDH1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ADSS +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates OTC +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates INS +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates SYT5 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates SLC35D1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates PFAS +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ASL +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates UPB1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates XDH +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates PAICS +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates CPS1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates TALDO1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates ASS1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates CMPK1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates CAT +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates UGDH +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates RRM2 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates RRM1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates G6PD +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates AMPD1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates PPAT +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates TKT +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates PGM1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates GBE1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates TXNRD1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates PYCR1 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates NME2 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates RPIA +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates AMPD2 +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates PGD +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates GSR +PWCOMMONS Poly{(1,4)-alpha-glucosyl} glycogenin reacts with n orthophosphates to form glycogenin and n D-glucose 1-phosphates +PWCOMMONS Down-stream signal transduction RAF1 +PWCOMMONS Down-stream signal transduction YWHAB +PWCOMMONS Down-stream signal transduction MAP2K1 +PWCOMMONS Down-stream signal transduction MAPK1 +PWCOMMONS Down-stream signal transduction MAPK3 +PWCOMMONS Down-stream signal transduction RPS6KA5 +PWCOMMONS Down-stream signal transduction ATF1 +PWCOMMONS Down-stream signal transduction CREB1 +PWCOMMONS Down-stream signal transduction RASA1 +PWCOMMONS Down-stream signal transduction PDGFRB +PWCOMMONS Down-stream signal transduction PTPN11 +PWCOMMONS Down-stream signal transduction PLCG1 +PWCOMMONS Down-stream signal transduction SOS1 +PWCOMMONS Down-stream signal transduction BCAR1 +PWCOMMONS Down-stream signal transduction GRB7 +PWCOMMONS Down-stream signal transduction +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by deoxythymidylate kinase (thymidylate kinase) NME1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by deoxythymidylate kinase (thymidylate kinase) DTYMK +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by deoxythymidylate kinase (thymidylate kinase) +PWCOMMONS Urea synthesis NAGS +PWCOMMONS Urea synthesis CPS1 +PWCOMMONS Urea synthesis OAT +PWCOMMONS Urea synthesis ASL +PWCOMMONS Urea synthesis ASS1 +PWCOMMONS Urea synthesis ARG1 +PWCOMMONS Urea synthesis PYCR1 +PWCOMMONS Urea synthesis +PWCOMMONS Vif-mediated degradation of APOBEC3G TCEB1 +PWCOMMONS Vif-mediated degradation of APOBEC3G CUL5 +PWCOMMONS Vif-mediated degradation of APOBEC3G TCEB2 +PWCOMMONS Vif-mediated degradation of APOBEC3G FZR1 +PWCOMMONS Vif-mediated degradation of APOBEC3G ANAPC5 +PWCOMMONS Vif-mediated degradation of APOBEC3G ANAPC11 +PWCOMMONS Vif-mediated degradation of APOBEC3G CDC23 +PWCOMMONS Vif-mediated degradation of APOBEC3G ANAPC1 +PWCOMMONS Vif-mediated degradation of APOBEC3G ANAPC2 +PWCOMMONS Vif-mediated degradation of APOBEC3G UBE2D1 +PWCOMMONS Vif-mediated degradation of APOBEC3G CDC27 +PWCOMMONS Vif-mediated degradation of APOBEC3G ANAPC4 +PWCOMMONS Vif-mediated degradation of APOBEC3G ANAPC10 +PWCOMMONS Vif-mediated degradation of APOBEC3G ANAPC7 +PWCOMMONS Vif-mediated degradation of APOBEC3G UBE2C +PWCOMMONS Vif-mediated degradation of APOBEC3G CDC26 +PWCOMMONS Vif-mediated degradation of APOBEC3G CDC16 +PWCOMMONS Vif-mediated degradation of APOBEC3G UBE2E1 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMC6 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMA3 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD8 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD10 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD1 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD6 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMB5 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMB4 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD4 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMA2 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMB8 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD5 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMB6 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSME3 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMB3 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMB7 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSME1 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD11 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMA5 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMC5 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMC1 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD7 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD3 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMB2 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD13 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD14 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMB1 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMA6 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMB9 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMB10 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD9 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMC4 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMA1 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMA4 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMA7 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMF1 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSME2 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD12 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMC3 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMC2 +PWCOMMONS Vif-mediated degradation of APOBEC3G PSMD2 +PWCOMMONS Vif-mediated degradation of APOBEC3G +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates GLRX +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5O +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5F1 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5J +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5G1 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5L +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates MT-ATP6 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5J2 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates MT-ATP8 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5H +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5I +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5C1 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5D +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5A1 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5B +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates ATP5E +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates TXNRD1 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates AK1 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates VAMP2 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates NME2 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates NME1 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates RRM2 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates RRM1 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates INS +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates SYT5 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates GSR +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates KCNJ11 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates GUK1 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates DTYMK +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates AK5 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates GYG2 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates GBE1 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates CTPS +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates CMPK1 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates GYS2 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates UGDH +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates SLC35D1 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates AK2 +PWCOMMONS Reversible phosphorylation of nucleoside monophosphates +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by guanylate kinase 1 GLRX +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by guanylate kinase 1 TXNRD1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by guanylate kinase 1 NME2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by guanylate kinase 1 NME1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by guanylate kinase 1 RRM2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by guanylate kinase 1 RRM1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by guanylate kinase 1 GUK1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by guanylate kinase 1 GSR +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by guanylate kinase 1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase TXN +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase GLRX +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase GBE1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase TXNRD1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase CTPS +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase CMPK1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase GYS2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase NME2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase NME1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase UGDH +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase RRM2 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase RRM1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase SLC35D1 +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase GSR +PWCOMMONS Reversible phosphorylation of cytosolic nucleoside monophosphates by UMP-CMP kinase +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells ONECUT3 +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells PDX1 +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells NEUROG3 +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells ONECUT1 +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells INSM1 +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells FGF10 +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells HES1 +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells NKX6-1 +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells NKX2-2 +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells PTF1A +PWCOMMONS Regulation of gene expression in early pancreatic precursor cells +PWCOMMONS Regulation of gene expression in late stage (branching morphogenesis) pancreatic bud precursor cells NEUROD1 +PWCOMMONS Regulation of gene expression in late stage (branching morphogenesis) pancreatic bud precursor cells NEUROG3 +PWCOMMONS Regulation of gene expression in late stage (branching morphogenesis) pancreatic bud precursor cells HES1 +PWCOMMONS Regulation of gene expression in late stage (branching morphogenesis) pancreatic bud precursor cells INSM1 +PWCOMMONS Regulation of gene expression in late stage (branching morphogenesis) pancreatic bud precursor cells ONECUT3 +PWCOMMONS Regulation of gene expression in late stage (branching morphogenesis) pancreatic bud precursor cells NKX2-2 +PWCOMMONS Regulation of gene expression in late stage (branching morphogenesis) pancreatic bud precursor cells ONECUT1 +PWCOMMONS Regulation of gene expression in late stage (branching morphogenesis) pancreatic bud precursor cells +PWCOMMONS Nef Mediated CD4 Down-regulation AP2S1 +PWCOMMONS Nef Mediated CD4 Down-regulation AP2B1 +PWCOMMONS Nef Mediated CD4 Down-regulation AP2M1 +PWCOMMONS Nef Mediated CD4 Down-regulation CD4 +PWCOMMONS Nef Mediated CD4 Down-regulation ARF1 +PWCOMMONS Nef Mediated CD4 Down-regulation LCK +PWCOMMONS Nef Mediated CD4 Down-regulation +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization DSG3 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization GSN +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization DIABLO +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization XIAP +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CASP3 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PAK2 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization ARHGAP10 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization GAS2 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization VIM +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CASP9 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization DSG1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CYCS +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization APAF1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization FZR1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization ANAPC5 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization ANAPC11 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CDC23 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization ANAPC1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization ANAPC2 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization UBE2D1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CDC27 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization ANAPC4 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization ANAPC10 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization ANAPC7 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization UBE2C +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CDC26 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CDC16 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization UBE2E1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMC6 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMA3 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD8 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD10 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD6 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMB5 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMB4 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD4 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMA2 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMB8 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD5 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMB6 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSME3 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMB3 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMB7 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSME1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD11 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMA5 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMC5 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMC1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD7 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD3 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMB2 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD13 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD14 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMB1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMA6 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMB9 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMB10 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD9 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMC4 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMA1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMA4 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMA7 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMF1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSME2 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD12 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMC3 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMC2 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PSMD2 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization ADD1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization MAPT +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization BIRC2 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization DBNL +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization DSG2 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization BMX +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization SPTAN1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CDH1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CASP7 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CLSPN +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization DFFA +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization DFFB +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization KPNB1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization KPNA1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization OCLN +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization TJP2 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PKP1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization DSP +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CASP8 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PLEC1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CASP6 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization ACIN1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization STK24 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PRKCQ +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization ROCK1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization LMNB1 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization BCAP31 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PRKCD +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization CDC25A +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization FNTA +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization PTK2 +PWCOMMONS Vpr-mediated induction of apoptosis by mitochondrial outer membrane permeabilization +PWCOMMONS Axon guidance MAP2K2 +PWCOMMONS Axon guidance RAF1 +PWCOMMONS Axon guidance YWHAB +PWCOMMONS Axon guidance MAP2K1 +PWCOMMONS Axon guidance MAPK1 +PWCOMMONS Axon guidance MAPK3 +PWCOMMONS Axon guidance CREB1 +PWCOMMONS Axon guidance FYN +PWCOMMONS Axon guidance NCAM1 +PWCOMMONS Axon guidance PTK2 +PWCOMMONS Axon guidance PTPRA +PWCOMMONS Axon guidance SPTB +PWCOMMONS Axon guidance SOS1 +PWCOMMONS Axon guidance GFRA1 +PWCOMMONS Axon guidance AGRN +PWCOMMONS Axon guidance CNTN2 +PWCOMMONS Axon guidance NCAN +PWCOMMONS Axon guidance PRNP +PWCOMMONS Axon guidance GDNF +PWCOMMONS Axon guidance ATF1 +PWCOMMONS Axon guidance +PWCOMMONS NCAM signaling for neurite out-growth MAP2K2 +PWCOMMONS NCAM signaling for neurite out-growth RAF1 +PWCOMMONS NCAM signaling for neurite out-growth YWHAB +PWCOMMONS NCAM signaling for neurite out-growth MAP2K1 +PWCOMMONS NCAM signaling for neurite out-growth MAPK1 +PWCOMMONS NCAM signaling for neurite out-growth MAPK3 +PWCOMMONS NCAM signaling for neurite out-growth CREB1 +PWCOMMONS NCAM signaling for neurite out-growth FYN +PWCOMMONS NCAM signaling for neurite out-growth NCAM1 +PWCOMMONS NCAM signaling for neurite out-growth PTK2 +PWCOMMONS NCAM signaling for neurite out-growth PTPRA +PWCOMMONS NCAM signaling for neurite out-growth SPTB +PWCOMMONS NCAM signaling for neurite out-growth SOS1 +PWCOMMONS NCAM signaling for neurite out-growth GFRA1 +PWCOMMONS NCAM signaling for neurite out-growth AGRN +PWCOMMONS NCAM signaling for neurite out-growth CNTN2 +PWCOMMONS NCAM signaling for neurite out-growth NCAN +PWCOMMONS NCAM signaling for neurite out-growth PRNP +PWCOMMONS NCAM signaling for neurite out-growth GDNF +PWCOMMONS NCAM signaling for neurite out-growth ATF1 +PWCOMMONS NCAM signaling for neurite out-growth +PWCOMMONS NCAM1 interactions GFRA1 +PWCOMMONS NCAM1 interactions AGRN +PWCOMMONS NCAM1 interactions CNTN2 +PWCOMMONS NCAM1 interactions NCAN +PWCOMMONS NCAM1 interactions PRNP +PWCOMMONS NCAM1 interactions GDNF +PWCOMMONS NCAM1 interactions +PWCOMMONS Isoleucine catabolism DBT +PWCOMMONS Isoleucine catabolism BCKDHA +PWCOMMONS Isoleucine catabolism BCKDHB +PWCOMMONS Isoleucine catabolism DLD +PWCOMMONS Isoleucine catabolism UROD +PWCOMMONS Isoleucine catabolism ATP5O +PWCOMMONS Isoleucine catabolism ATP5F1 +PWCOMMONS Isoleucine catabolism ATP5J +PWCOMMONS Isoleucine catabolism ATP5G1 +PWCOMMONS Isoleucine catabolism ATP5L +PWCOMMONS Isoleucine catabolism MT-ATP6 +PWCOMMONS Isoleucine catabolism ATP5J2 +PWCOMMONS Isoleucine catabolism MT-ATP8 +PWCOMMONS Isoleucine catabolism ATP5H +PWCOMMONS Isoleucine catabolism ATP5I +PWCOMMONS Isoleucine catabolism ATP5C1 +PWCOMMONS Isoleucine catabolism ATP5D +PWCOMMONS Isoleucine catabolism ATP5A1 +PWCOMMONS Isoleucine catabolism ATP5B +PWCOMMONS Isoleucine catabolism ATP5E +PWCOMMONS Isoleucine catabolism UQCRC1 +PWCOMMONS Isoleucine catabolism UQCRB +PWCOMMONS Isoleucine catabolism UQCR10 +PWCOMMONS Isoleucine catabolism UQCR +PWCOMMONS Isoleucine catabolism UQCRC2 +PWCOMMONS Isoleucine catabolism UQCRH +PWCOMMONS Isoleucine catabolism UQCRQ +PWCOMMONS Isoleucine catabolism UQCRFS1 +PWCOMMONS Isoleucine catabolism MT-CYB +PWCOMMONS Isoleucine catabolism CYC1 +PWCOMMONS Isoleucine catabolism CPOX +PWCOMMONS Isoleucine catabolism UROS +PWCOMMONS Isoleucine catabolism MT-CO2 +PWCOMMONS Isoleucine catabolism COX8A +PWCOMMONS Isoleucine catabolism COX7C +PWCOMMONS Isoleucine catabolism MT-CO3 +PWCOMMONS Isoleucine catabolism COX6C +PWCOMMONS Isoleucine catabolism COX5B +PWCOMMONS Isoleucine catabolism MT-CO1 +PWCOMMONS Isoleucine catabolism COX7A2L +PWCOMMONS Isoleucine catabolism COX4I1 +PWCOMMONS Isoleucine catabolism COX6A1 +PWCOMMONS Isoleucine catabolism COX7B +PWCOMMONS Isoleucine catabolism COX6B1 +PWCOMMONS Isoleucine catabolism COX5A +PWCOMMONS Isoleucine catabolism DLST +PWCOMMONS Isoleucine catabolism OGDH +PWCOMMONS Isoleucine catabolism BCAT1 +PWCOMMONS Isoleucine catabolism MCEE +PWCOMMONS Isoleucine catabolism ALAD +PWCOMMONS Isoleucine catabolism CS +PWCOMMONS Isoleucine catabolism PPOX +PWCOMMONS Isoleucine catabolism ACO2 +PWCOMMONS Isoleucine catabolism IDH3G +PWCOMMONS Isoleucine catabolism IDH3A +PWCOMMONS Isoleucine catabolism IDH3B +PWCOMMONS Isoleucine catabolism SUCLG1 +PWCOMMONS Isoleucine catabolism SUCLG2 +PWCOMMONS Isoleucine catabolism BCAT2 +PWCOMMONS Isoleucine catabolism KCNJ11 +PWCOMMONS Isoleucine catabolism SDHC +PWCOMMONS Isoleucine catabolism SDHD +PWCOMMONS Isoleucine catabolism SDHB +PWCOMMONS Isoleucine catabolism SDHA +PWCOMMONS Isoleucine catabolism FECH +PWCOMMONS Isoleucine catabolism SUCLA2 +PWCOMMONS Isoleucine catabolism CYCS +PWCOMMONS Isoleucine catabolism ACADSB +PWCOMMONS Isoleucine catabolism PCCB +PWCOMMONS Isoleucine catabolism PCCA +PWCOMMONS Isoleucine catabolism MDH2 +PWCOMMONS Isoleucine catabolism NDUFS3 +PWCOMMONS Isoleucine catabolism NDUFS4 +PWCOMMONS Isoleucine catabolism NDUFS6 +PWCOMMONS Isoleucine catabolism NDUFA5 +PWCOMMONS Isoleucine catabolism NDUFS5 +PWCOMMONS Isoleucine catabolism NDUFS1 +PWCOMMONS Isoleucine catabolism NDUFS2 +PWCOMMONS Isoleucine catabolism NDUFV2 +PWCOMMONS Isoleucine catabolism NDUFV3 +PWCOMMONS Isoleucine catabolism NDUFV1 +PWCOMMONS Isoleucine catabolism NDUFA4 +PWCOMMONS Isoleucine catabolism NDUFA11 +PWCOMMONS Isoleucine catabolism MT-ND3 +PWCOMMONS Isoleucine catabolism NDUFA13 +PWCOMMONS Isoleucine catabolism NDUFB5 +PWCOMMONS Isoleucine catabolism NDUFC1 +PWCOMMONS Isoleucine catabolism NDUFA6 +PWCOMMONS Isoleucine catabolism NDUFC2 +PWCOMMONS Isoleucine catabolism NDUFA3 +PWCOMMONS Isoleucine catabolism NDUFB3 +PWCOMMONS Isoleucine catabolism NDUFB1 +PWCOMMONS Isoleucine catabolism NDUFAB1 +PWCOMMONS Isoleucine catabolism MT-ND4 +PWCOMMONS Isoleucine catabolism MT-ND5 +PWCOMMONS Isoleucine catabolism NDUFA1 +PWCOMMONS Isoleucine catabolism NDUFB9 +PWCOMMONS Isoleucine catabolism NDUFB6 +PWCOMMONS Isoleucine catabolism NDUFB4 +PWCOMMONS Isoleucine catabolism NDUFA8 +PWCOMMONS Isoleucine catabolism NDUFB7 +PWCOMMONS Isoleucine catabolism NDUFA12 +PWCOMMONS Isoleucine catabolism NDUFB2 +PWCOMMONS Isoleucine catabolism MT-ND4L +PWCOMMONS Isoleucine catabolism MT-ND2 +PWCOMMONS Isoleucine catabolism NDUFB10 +PWCOMMONS Isoleucine catabolism NDUFA7 +PWCOMMONS Isoleucine catabolism NDUFA2 +PWCOMMONS Isoleucine catabolism NDUFB8 +PWCOMMONS Isoleucine catabolism NDUFB11 +PWCOMMONS Isoleucine catabolism MT-ND6 +PWCOMMONS Isoleucine catabolism MT-ND1 +PWCOMMONS Isoleucine catabolism NDUFS7 +PWCOMMONS Isoleucine catabolism NDUFA10 +PWCOMMONS Isoleucine catabolism NDUFS8 +PWCOMMONS Isoleucine catabolism NDUFA9 +PWCOMMONS Isoleucine catabolism VAMP2 +PWCOMMONS Isoleucine catabolism MUT +PWCOMMONS Isoleucine catabolism HSD17B10 +PWCOMMONS Isoleucine catabolism FH +PWCOMMONS Isoleucine catabolism INS +PWCOMMONS Isoleucine catabolism SYT5 +PWCOMMONS Isoleucine catabolism +PWCOMMONS Post-translational protein modification F10 +PWCOMMONS Post-translational protein modification F9 +PWCOMMONS Post-translational protein modification PROS1 +PWCOMMONS Post-translational protein modification PROZ +PWCOMMONS Post-translational protein modification GAS6 +PWCOMMONS Post-translational protein modification PROC +PWCOMMONS Post-translational protein modification F2 +PWCOMMONS Post-translational protein modification GGCX +PWCOMMONS Post-translational protein modification FURIN +PWCOMMONS Post-translational protein modification NOTCH2 +PWCOMMONS Post-translational protein modification DHPS +PWCOMMONS Post-translational protein modification DOHH +PWCOMMONS Post-translational protein modification PIGW +PWCOMMONS Post-translational protein modification PIGL +PWCOMMONS Post-translational protein modification PLAUR +PWCOMMONS Post-translational protein modification PIGG +PWCOMMONS Post-translational protein modification PIGF +PWCOMMONS Post-translational protein modification PIGH +PWCOMMONS Post-translational protein modification DPM2 +PWCOMMONS Post-translational protein modification PIGC +PWCOMMONS Post-translational protein modification PIGA +PWCOMMONS Post-translational protein modification PIGP +PWCOMMONS Post-translational protein modification PIGO +PWCOMMONS Post-translational protein modification PIGB +PWCOMMONS Post-translational protein modification PGAP1 +PWCOMMONS Post-translational protein modification PIGM +PWCOMMONS Post-translational protein modification PIGX +PWCOMMONS Post-translational protein modification PIGU +PWCOMMONS Post-translational protein modification PIGT +PWCOMMONS Post-translational protein modification GPAA1 +PWCOMMONS Post-translational protein modification PIGS +PWCOMMONS Post-translational protein modification PIGK +PWCOMMONS Post-translational protein modification PIGV +PWCOMMONS Post-translational protein modification PIGN +PWCOMMONS Post-translational protein modification DPM3 +PWCOMMONS Post-translational protein modification DPM1 +PWCOMMONS Post-translational protein modification +PWCOMMONS Hypusine synthesis from eIF5A-lysine DOHH +PWCOMMONS Hypusine synthesis from eIF5A-lysine +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins F10 +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins F9 +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins PROS1 +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins PROZ +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins GAS6 +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins PROC +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins F2 +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins GGCX +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins FURIN +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins NOTCH2 +PWCOMMONS Gamma-carboxylation, transport, and amino-terminal cleavage of proteins +PWCOMMONS Removal of aminoterminal propeptides from gamma-carboxylated proteins F7 +PWCOMMONS Removal of aminoterminal propeptides from gamma-carboxylated proteins PROS1 +PWCOMMONS Removal of aminoterminal propeptides from gamma-carboxylated proteins PROZ +PWCOMMONS Removal of aminoterminal propeptides from gamma-carboxylated proteins GAS6 +PWCOMMONS Removal of aminoterminal propeptides from gamma-carboxylated proteins F2 +PWCOMMONS Removal of aminoterminal propeptides from gamma-carboxylated proteins FURIN +PWCOMMONS Removal of aminoterminal propeptides from gamma-carboxylated proteins NOTCH2 +PWCOMMONS Removal of aminoterminal propeptides from gamma-carboxylated proteins F9 +PWCOMMONS Removal of aminoterminal propeptides from gamma-carboxylated proteins PROC +PWCOMMONS Removal of aminoterminal propeptides from gamma-carboxylated proteins +PWCOMMONS Gamma-carboxylation of protein precursors F10 +PWCOMMONS Gamma-carboxylation of protein precursors F9 +PWCOMMONS Gamma-carboxylation of protein precursors PROS1 +PWCOMMONS Gamma-carboxylation of protein precursors PROZ +PWCOMMONS Gamma-carboxylation of protein precursors GAS6 +PWCOMMONS Gamma-carboxylation of protein precursors PROC +PWCOMMONS Gamma-carboxylation of protein precursors F2 +PWCOMMONS Gamma-carboxylation of protein precursors GGCX +PWCOMMONS Gamma-carboxylation of protein precursors FURIN +PWCOMMONS Gamma-carboxylation of protein precursors NOTCH2 +PWCOMMONS Gamma-carboxylation of protein precursors +PWCOMMONS Metabolism of non-coding RNA WDR77 +PWCOMMONS Metabolism of non-coding RNA PRMT5 +PWCOMMONS Metabolism of non-coding RNA SNRPG +PWCOMMONS Metabolism of non-coding RNA SNRPD3 +PWCOMMONS Metabolism of non-coding RNA SNRPF +PWCOMMONS Metabolism of non-coding RNA SNRPB +PWCOMMONS Metabolism of non-coding RNA SNRPD2 +PWCOMMONS Metabolism of non-coding RNA SNRPE +PWCOMMONS Metabolism of non-coding RNA SNRPD1 +PWCOMMONS Metabolism of non-coding RNA GEMIN4 +PWCOMMONS Metabolism of non-coding RNA SIP1 +PWCOMMONS Metabolism of non-coding RNA GEMIN6 +PWCOMMONS Metabolism of non-coding RNA GEMIN5 +PWCOMMONS Metabolism of non-coding RNA DDX20 +PWCOMMONS Metabolism of non-coding RNA SMN1 +PWCOMMONS Metabolism of non-coding RNA GEMIN7 +PWCOMMONS Metabolism of non-coding RNA SNUPN +PWCOMMONS Metabolism of non-coding RNA PHAX +PWCOMMONS Metabolism of non-coding RNA NCBP2 +PWCOMMONS Metabolism of non-coding RNA NCBP1 +PWCOMMONS Metabolism of non-coding RNA TGS1 +PWCOMMONS Metabolism of non-coding RNA NUP153 +PWCOMMONS Metabolism of non-coding RNA NUP85 +PWCOMMONS Metabolism of non-coding RNA NUP35 +PWCOMMONS Metabolism of non-coding RNA AAAS +PWCOMMONS Metabolism of non-coding RNA NUP50 +PWCOMMONS Metabolism of non-coding RNA NUP43 +PWCOMMONS Metabolism of non-coding RNA NUP205 +PWCOMMONS Metabolism of non-coding RNA NUP93 +PWCOMMONS Metabolism of non-coding RNA NUP88 +PWCOMMONS Metabolism of non-coding RNA NUPL2 +PWCOMMONS Metabolism of non-coding RNA NUP210 +PWCOMMONS Metabolism of non-coding RNA NUP155 +PWCOMMONS Metabolism of non-coding RNA RANBP2 +PWCOMMONS Metabolism of non-coding RNA RAE1 +PWCOMMONS Metabolism of non-coding RNA NUP188 +PWCOMMONS Metabolism of non-coding RNA NUP214 +PWCOMMONS Metabolism of non-coding RNA NUP54 +PWCOMMONS Metabolism of non-coding RNA NUP62 +PWCOMMONS Metabolism of non-coding RNA NUP107 +PWCOMMONS Metabolism of non-coding RNA NUP133 +PWCOMMONS Metabolism of non-coding RNA NUP160 +PWCOMMONS Metabolism of non-coding RNA NUP37 +PWCOMMONS Metabolism of non-coding RNA +PWCOMMONS Platelet Adhesion to exposed collagen ITGB1 +PWCOMMONS Platelet Adhesion to exposed collagen COL1A1 +PWCOMMONS Platelet Adhesion to exposed collagen COL1A2 +PWCOMMONS Platelet Adhesion to exposed collagen CD36 +PWCOMMONS Platelet Adhesion to exposed collagen VWF +PWCOMMONS Platelet Adhesion to exposed collagen GP5 +PWCOMMONS Platelet Adhesion to exposed collagen GP9 +PWCOMMONS Platelet Adhesion to exposed collagen GP1BA +PWCOMMONS Platelet Adhesion to exposed collagen GP1BB +PWCOMMONS Platelet Adhesion to exposed collagen +PWCOMMONS Collagen adhesion via Gp IV COL1A1 +PWCOMMONS Collagen adhesion via Gp IV COL1A2 +PWCOMMONS Collagen adhesion via Gp IV +PWCOMMONS ChREBP activates metabolic gene expression NT5C2 +PWCOMMONS ChREBP activates metabolic gene expression ATP5O +PWCOMMONS ChREBP activates metabolic gene expression ATP5F1 +PWCOMMONS ChREBP activates metabolic gene expression ATP5J +PWCOMMONS ChREBP activates metabolic gene expression ATP5G1 +PWCOMMONS ChREBP activates metabolic gene expression ATP5L +PWCOMMONS ChREBP activates metabolic gene expression MT-ATP6 +PWCOMMONS ChREBP activates metabolic gene expression ATP5J2 +PWCOMMONS ChREBP activates metabolic gene expression MT-ATP8 +PWCOMMONS ChREBP activates metabolic gene expression ATP5H +PWCOMMONS ChREBP activates metabolic gene expression ATP5I +PWCOMMONS ChREBP activates metabolic gene expression ATP5C1 +PWCOMMONS ChREBP activates metabolic gene expression ATP5D +PWCOMMONS ChREBP activates metabolic gene expression ATP5A1 +PWCOMMONS ChREBP activates metabolic gene expression ATP5B +PWCOMMONS ChREBP activates metabolic gene expression ATP5E +PWCOMMONS ChREBP activates metabolic gene expression MLX +PWCOMMONS ChREBP activates metabolic gene expression MLXIPL +PWCOMMONS ChREBP activates metabolic gene expression HPRT1 +PWCOMMONS ChREBP activates metabolic gene expression UQCRC1 +PWCOMMONS ChREBP activates metabolic gene expression UQCRB +PWCOMMONS ChREBP activates metabolic gene expression UQCR10 +PWCOMMONS ChREBP activates metabolic gene expression UQCR +PWCOMMONS ChREBP activates metabolic gene expression UQCRC2 +PWCOMMONS ChREBP activates metabolic gene expression UQCRH +PWCOMMONS ChREBP activates metabolic gene expression UQCRQ +PWCOMMONS ChREBP activates metabolic gene expression UQCRFS1 +PWCOMMONS ChREBP activates metabolic gene expression MT-CYB +PWCOMMONS ChREBP activates metabolic gene expression CYC1 +PWCOMMONS ChREBP activates metabolic gene expression MT-CO2 +PWCOMMONS ChREBP activates metabolic gene expression COX8A +PWCOMMONS ChREBP activates metabolic gene expression COX7C +PWCOMMONS ChREBP activates metabolic gene expression MT-CO3 +PWCOMMONS ChREBP activates metabolic gene expression COX6C +PWCOMMONS ChREBP activates metabolic gene expression COX5B +PWCOMMONS ChREBP activates metabolic gene expression MT-CO1 +PWCOMMONS ChREBP activates metabolic gene expression COX7A2L +PWCOMMONS ChREBP activates metabolic gene expression COX4I1 +PWCOMMONS ChREBP activates metabolic gene expression COX6A1 +PWCOMMONS ChREBP activates metabolic gene expression COX7B +PWCOMMONS ChREBP activates metabolic gene expression COX6B1 +PWCOMMONS ChREBP activates metabolic gene expression COX5A +PWCOMMONS ChREBP activates metabolic gene expression PGLS +PWCOMMONS ChREBP activates metabolic gene expression GOT2 +PWCOMMONS ChREBP activates metabolic gene expression HADH +PWCOMMONS ChREBP activates metabolic gene expression UPP1 +PWCOMMONS ChREBP activates metabolic gene expression PDHX +PWCOMMONS ChREBP activates metabolic gene expression PDHA1 +PWCOMMONS ChREBP activates metabolic gene expression PDHB +PWCOMMONS ChREBP activates metabolic gene expression DLAT +PWCOMMONS ChREBP activates metabolic gene expression DLD +PWCOMMONS ChREBP activates metabolic gene expression GOT1 +PWCOMMONS ChREBP activates metabolic gene expression PC +PWCOMMONS ChREBP activates metabolic gene expression PGK1 +PWCOMMONS ChREBP activates metabolic gene expression ADSL +PWCOMMONS ChREBP activates metabolic gene expression GCDH +PWCOMMONS ChREBP activates metabolic gene expression MDH1 +PWCOMMONS ChREBP activates metabolic gene expression PCK1 +PWCOMMONS ChREBP activates metabolic gene expression ATIC +PWCOMMONS ChREBP activates metabolic gene expression OAT +PWCOMMONS ChREBP activates metabolic gene expression NP +PWCOMMONS ChREBP activates metabolic gene expression GYS2 +PWCOMMONS ChREBP activates metabolic gene expression ECHS1 +PWCOMMONS ChREBP activates metabolic gene expression TXN +PWCOMMONS ChREBP activates metabolic gene expression SUCLG1 +PWCOMMONS ChREBP activates metabolic gene expression SUCLG2 +PWCOMMONS ChREBP activates metabolic gene expression ARG1 +PWCOMMONS ChREBP activates metabolic gene expression KCNJ11 +PWCOMMONS ChREBP activates metabolic gene expression AMPD3 +PWCOMMONS ChREBP activates metabolic gene expression RPE +PWCOMMONS ChREBP activates metabolic gene expression GLRX +PWCOMMONS ChREBP activates metabolic gene expression SDHC +PWCOMMONS ChREBP activates metabolic gene expression SDHD +PWCOMMONS ChREBP activates metabolic gene expression SDHB +PWCOMMONS ChREBP activates metabolic gene expression SDHA +PWCOMMONS ChREBP activates metabolic gene expression DPYD +PWCOMMONS ChREBP activates metabolic gene expression GART +PWCOMMONS ChREBP activates metabolic gene expression GPT +PWCOMMONS ChREBP activates metabolic gene expression ACLY +PWCOMMONS ChREBP activates metabolic gene expression DPYS +PWCOMMONS ChREBP activates metabolic gene expression AK1 +PWCOMMONS ChREBP activates metabolic gene expression MDH2 +PWCOMMONS ChREBP activates metabolic gene expression UMPS +PWCOMMONS ChREBP activates metabolic gene expression CYCS +PWCOMMONS ChREBP activates metabolic gene expression NDUFS3 +PWCOMMONS ChREBP activates metabolic gene expression NDUFS4 +PWCOMMONS ChREBP activates metabolic gene expression NDUFS6 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA5 +PWCOMMONS ChREBP activates metabolic gene expression NDUFS5 +PWCOMMONS ChREBP activates metabolic gene expression NDUFS1 +PWCOMMONS ChREBP activates metabolic gene expression NDUFS2 +PWCOMMONS ChREBP activates metabolic gene expression NDUFV2 +PWCOMMONS ChREBP activates metabolic gene expression NDUFV3 +PWCOMMONS ChREBP activates metabolic gene expression NDUFV1 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA4 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA11 +PWCOMMONS ChREBP activates metabolic gene expression MT-ND3 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA13 +PWCOMMONS ChREBP activates metabolic gene expression NDUFB5 +PWCOMMONS ChREBP activates metabolic gene expression NDUFC1 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA6 +PWCOMMONS ChREBP activates metabolic gene expression NDUFC2 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA3 +PWCOMMONS ChREBP activates metabolic gene expression NDUFB3 +PWCOMMONS ChREBP activates metabolic gene expression NDUFB1 +PWCOMMONS ChREBP activates metabolic gene expression NDUFAB1 +PWCOMMONS ChREBP activates metabolic gene expression MT-ND4 +PWCOMMONS ChREBP activates metabolic gene expression MT-ND5 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA1 +PWCOMMONS ChREBP activates metabolic gene expression NDUFB9 +PWCOMMONS ChREBP activates metabolic gene expression NDUFB6 +PWCOMMONS ChREBP activates metabolic gene expression NDUFB4 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA8 +PWCOMMONS ChREBP activates metabolic gene expression NDUFB7 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA12 +PWCOMMONS ChREBP activates metabolic gene expression NDUFB2 +PWCOMMONS ChREBP activates metabolic gene expression MT-ND4L +PWCOMMONS ChREBP activates metabolic gene expression MT-ND2 +PWCOMMONS ChREBP activates metabolic gene expression NDUFB10 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA7 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA2 +PWCOMMONS ChREBP activates metabolic gene expression NDUFB8 +PWCOMMONS ChREBP activates metabolic gene expression NDUFB11 +PWCOMMONS ChREBP activates metabolic gene expression MT-ND6 +PWCOMMONS ChREBP activates metabolic gene expression MT-ND1 +PWCOMMONS ChREBP activates metabolic gene expression NDUFS7 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA10 +PWCOMMONS ChREBP activates metabolic gene expression NDUFS8 +PWCOMMONS ChREBP activates metabolic gene expression NDUFA9 +PWCOMMONS ChREBP activates metabolic gene expression VAMP2 +PWCOMMONS ChREBP activates metabolic gene expression NT5C1A +PWCOMMONS ChREBP activates metabolic gene expression CTPS +PWCOMMONS ChREBP activates metabolic gene expression FASN +PWCOMMONS ChREBP activates metabolic gene expression PRPS1 +PWCOMMONS ChREBP activates metabolic gene expression DLST +PWCOMMONS ChREBP activates metabolic gene expression OGDH +PWCOMMONS ChREBP activates metabolic gene expression ACACB +PWCOMMONS ChREBP activates metabolic gene expression GMPS +PWCOMMONS ChREBP activates metabolic gene expression GUK1 +PWCOMMONS ChREBP activates metabolic gene expression IMPDH2 +PWCOMMONS ChREBP activates metabolic gene expression GDA +PWCOMMONS ChREBP activates metabolic gene expression NME1 +PWCOMMONS ChREBP activates metabolic gene expression IMPDH1 +PWCOMMONS ChREBP activates metabolic gene expression ADSS +PWCOMMONS ChREBP activates metabolic gene expression OTC +PWCOMMONS ChREBP activates metabolic gene expression FH +PWCOMMONS ChREBP activates metabolic gene expression INS +PWCOMMONS ChREBP activates metabolic gene expression SYT5 +PWCOMMONS ChREBP activates metabolic gene expression PFAS +PWCOMMONS ChREBP activates metabolic gene expression SLC35D1 +PWCOMMONS ChREBP activates metabolic gene expression ASL +PWCOMMONS ChREBP activates metabolic gene expression UPB1 +PWCOMMONS ChREBP activates metabolic gene expression AGPAT1 +PWCOMMONS ChREBP activates metabolic gene expression SLC25A21 +PWCOMMONS ChREBP activates metabolic gene expression GPI +PWCOMMONS ChREBP activates metabolic gene expression UROD +PWCOMMONS ChREBP activates metabolic gene expression CPOX +PWCOMMONS ChREBP activates metabolic gene expression UROS +PWCOMMONS ChREBP activates metabolic gene expression XDH +PWCOMMONS ChREBP activates metabolic gene expression PAICS +PWCOMMONS ChREBP activates metabolic gene expression CPS1 +PWCOMMONS ChREBP activates metabolic gene expression TALDO1 +PWCOMMONS ChREBP activates metabolic gene expression ASS1 +PWCOMMONS ChREBP activates metabolic gene expression CMPK1 +PWCOMMONS ChREBP activates metabolic gene expression ALAD +PWCOMMONS ChREBP activates metabolic gene expression CS +PWCOMMONS ChREBP activates metabolic gene expression CAT +PWCOMMONS ChREBP activates metabolic gene expression SLC25A1 +PWCOMMONS ChREBP activates metabolic gene expression PPOX +PWCOMMONS ChREBP activates metabolic gene expression ACO2 +PWCOMMONS ChREBP activates metabolic gene expression IDH3G +PWCOMMONS ChREBP activates metabolic gene expression IDH3A +PWCOMMONS ChREBP activates metabolic gene expression IDH3B +PWCOMMONS ChREBP activates metabolic gene expression UGDH +PWCOMMONS ChREBP activates metabolic gene expression RRM2 +PWCOMMONS ChREBP activates metabolic gene expression RRM1 +PWCOMMONS ChREBP activates metabolic gene expression G6PD +PWCOMMONS ChREBP activates metabolic gene expression AMPD1 +PWCOMMONS ChREBP activates metabolic gene expression SLC25A11 +PWCOMMONS ChREBP activates metabolic gene expression PPAT +PWCOMMONS ChREBP activates metabolic gene expression TKT +PWCOMMONS ChREBP activates metabolic gene expression FECH +PWCOMMONS ChREBP activates metabolic gene expression PPAP2C +PWCOMMONS ChREBP activates metabolic gene expression PCK2 +PWCOMMONS ChREBP activates metabolic gene expression SUCLA2 +PWCOMMONS ChREBP activates metabolic gene expression GBE1 +PWCOMMONS ChREBP activates metabolic gene expression TXNRD1 +PWCOMMONS ChREBP activates metabolic gene expression PPAP2B +PWCOMMONS ChREBP activates metabolic gene expression TPI1 +PWCOMMONS ChREBP activates metabolic gene expression SLC25A10 +PWCOMMONS ChREBP activates metabolic gene expression G6PC +PWCOMMONS ChREBP activates metabolic gene expression PYCR1 +PWCOMMONS ChREBP activates metabolic gene expression DGAT1 +PWCOMMONS ChREBP activates metabolic gene expression NME2 +PWCOMMONS ChREBP activates metabolic gene expression RPIA +PWCOMMONS ChREBP activates metabolic gene expression AMPD2 +PWCOMMONS ChREBP activates metabolic gene expression PGD +PWCOMMONS ChREBP activates metabolic gene expression GSR +PWCOMMONS ChREBP activates metabolic gene expression PPAP2A +PWCOMMONS ChREBP activates metabolic gene expression +PWCOMMONS Dopamine Neurotransmitter Release Cycle DDC +PWCOMMONS Dopamine Neurotransmitter Release Cycle RIMS1 +PWCOMMONS Dopamine Neurotransmitter Release Cycle CPLX1 +PWCOMMONS Dopamine Neurotransmitter Release Cycle SLC18A2 +PWCOMMONS Dopamine Neurotransmitter Release Cycle VAMP2 +PWCOMMONS Dopamine Neurotransmitter Release Cycle RAB3A +PWCOMMONS Dopamine Neurotransmitter Release Cycle SYT1 +PWCOMMONS Dopamine Neurotransmitter Release Cycle DBH +PWCOMMONS Dopamine Neurotransmitter Release Cycle MAOA +PWCOMMONS Dopamine Neurotransmitter Release Cycle SLC22A2 +PWCOMMONS Dopamine Neurotransmitter Release Cycle +PWCOMMONS Synthesis of Dopamine RIMS1 +PWCOMMONS Synthesis of Dopamine CPLX1 +PWCOMMONS Synthesis of Dopamine SLC18A2 +PWCOMMONS Synthesis of Dopamine VAMP2 +PWCOMMONS Synthesis of Dopamine RAB3A +PWCOMMONS Synthesis of Dopamine SYT1 +PWCOMMONS Synthesis of Dopamine DBH +PWCOMMONS Synthesis of Dopamine MAOA +PWCOMMONS Synthesis of Dopamine SLC22A2 +PWCOMMONS Synthesis of Dopamine DDC +PWCOMMONS Synthesis of Dopamine +PWCOMMONS RNA Polymerase II Transcription Termination EIF4H +PWCOMMONS RNA Polymerase II Transcription Termination EIF4B +PWCOMMONS RNA Polymerase II Transcription Termination EIF4E +PWCOMMONS RNA Polymerase II Transcription Termination EIF4G1 +PWCOMMONS RNA Polymerase II Transcription Termination EIF4A2 +PWCOMMONS RNA Polymerase II Transcription Termination EIF2S3 +PWCOMMONS RNA Polymerase II Transcription Termination EIF2S2 +PWCOMMONS RNA Polymerase II Transcription Termination EIF2S1 +PWCOMMONS RNA Polymerase II Transcription Termination EIF3K +PWCOMMONS RNA Polymerase II Transcription Termination EIF3H +PWCOMMONS RNA Polymerase II Transcription Termination EIF3E +PWCOMMONS RNA Polymerase II Transcription Termination EIF3F +PWCOMMONS RNA Polymerase II Transcription Termination EIF3J +PWCOMMONS RNA Polymerase II Transcription Termination EIF3G +PWCOMMONS RNA Polymerase II Transcription Termination EIF3C +PWCOMMONS RNA Polymerase II Transcription Termination EIF3A +PWCOMMONS RNA Polymerase II Transcription Termination EIF3I +PWCOMMONS RNA Polymerase II Transcription Termination EIF3D +PWCOMMONS RNA Polymerase II Transcription Termination EIF3B +PWCOMMONS RNA Polymerase II Transcription Termination RPS23 +PWCOMMONS RNA Polymerase II Transcription Termination RPS16 +PWCOMMONS RNA Polymerase II Transcription Termination RPS12 +PWCOMMONS RNA Polymerase II Transcription Termination RPS29 +PWCOMMONS RNA Polymerase II Transcription Termination RPSA +PWCOMMONS RNA Polymerase II Transcription Termination RPS21 +PWCOMMONS RNA Polymerase II Transcription Termination RPS27A +PWCOMMONS RNA Polymerase II Transcription Termination RPS20 +PWCOMMONS RNA Polymerase II Transcription Termination RPS15 +PWCOMMONS RNA Polymerase II Transcription Termination RPS24 +PWCOMMONS RNA Polymerase II Transcription Termination RPS9 +PWCOMMONS RNA Polymerase II Transcription Termination RPS10 +PWCOMMONS RNA Polymerase II Transcription Termination RPS28 +PWCOMMONS RNA Polymerase II Transcription Termination RPS2 +PWCOMMONS RNA Polymerase II Transcription Termination RPS19 +PWCOMMONS RNA Polymerase II Transcription Termination RPS4X +PWCOMMONS RNA Polymerase II Transcription Termination RPS18 +PWCOMMONS RNA Polymerase II Transcription Termination RPS8 +PWCOMMONS RNA Polymerase II Transcription Termination RPS3 +PWCOMMONS RNA Polymerase II Transcription Termination RPS4Y1 +PWCOMMONS RNA Polymerase II Transcription Termination RPS25 +PWCOMMONS RNA Polymerase II Transcription Termination RPS14 +PWCOMMONS RNA Polymerase II Transcription Termination RPS17 +PWCOMMONS RNA Polymerase II Transcription Termination RPS26 +PWCOMMONS RNA Polymerase II Transcription Termination RPS11 +PWCOMMONS RNA Polymerase II Transcription Termination RPS5 +PWCOMMONS RNA Polymerase II Transcription Termination FAU +PWCOMMONS RNA Polymerase II Transcription Termination RPS15A +PWCOMMONS RNA Polymerase II Transcription Termination RPS13 +PWCOMMONS RNA Polymerase II Transcription Termination RPS6 +PWCOMMONS RNA Polymerase II Transcription Termination RPS3A +PWCOMMONS RNA Polymerase II Transcription Termination RPS7 +PWCOMMONS RNA Polymerase II Transcription Termination RPS27 +PWCOMMONS RNA Polymerase II Transcription Termination NUP153 +PWCOMMONS RNA Polymerase II Transcription Termination NUP85 +PWCOMMONS RNA Polymerase II Transcription Termination NUP35 +PWCOMMONS RNA Polymerase II Transcription Termination AAAS +PWCOMMONS RNA Polymerase II Transcription Termination NUP50 +PWCOMMONS RNA Polymerase II Transcription Termination NUP43 +PWCOMMONS RNA Polymerase II Transcription Termination NUP205 +PWCOMMONS RNA Polymerase II Transcription Termination NUP93 +PWCOMMONS RNA Polymerase II Transcription Termination NUP88 +PWCOMMONS RNA Polymerase II Transcription Termination NUPL2 +PWCOMMONS RNA Polymerase II Transcription Termination NUP210 +PWCOMMONS RNA Polymerase II Transcription Termination NUP155 +PWCOMMONS RNA Polymerase II Transcription Termination RANBP2 +PWCOMMONS RNA Polymerase II Transcription Termination RAE1 +PWCOMMONS RNA Polymerase II Transcription Termination NUP188 +PWCOMMONS RNA Polymerase II Transcription Termination NUP214 +PWCOMMONS RNA Polymerase II Transcription Termination NUP54 +PWCOMMONS RNA Polymerase II Transcription Termination NUP62 +PWCOMMONS RNA Polymerase II Transcription Termination NUP107 +PWCOMMONS RNA Polymerase II Transcription Termination NUP133 +PWCOMMONS RNA Polymerase II Transcription Termination NUP160 +PWCOMMONS RNA Polymerase II Transcription Termination NUP37 +PWCOMMONS RNA Polymerase II Transcription Termination RPL27A +PWCOMMONS RNA Polymerase II Transcription Termination RPL15 +PWCOMMONS RNA Polymerase II Transcription Termination RPL11 +PWCOMMONS RNA Polymerase II Transcription Termination RPL29 +PWCOMMONS RNA Polymerase II Transcription Termination RPL30 +PWCOMMONS RNA Polymerase II Transcription Termination RPL8 +PWCOMMONS RNA Polymerase II Transcription Termination RPL22 +PWCOMMONS RNA Polymerase II Transcription Termination RPL28 +PWCOMMONS RNA Polymerase II Transcription Termination RPL7A +PWCOMMONS RNA Polymerase II Transcription Termination RPL35A +PWCOMMONS RNA Polymerase II Transcription Termination RPL31 +PWCOMMONS RNA Polymerase II Transcription Termination RPL26L1 +PWCOMMONS RNA Polymerase II Transcription Termination RPL26 +PWCOMMONS RNA Polymerase II Transcription Termination RPL18A +PWCOMMONS RNA Polymerase II Transcription Termination RPL14 +PWCOMMONS RNA Polymerase II Transcription Termination RPLP2 +PWCOMMONS RNA Polymerase II Transcription Termination RPL10 +PWCOMMONS RNA Polymerase II Transcription Termination RPL34 +PWCOMMONS RNA Polymerase II Transcription Termination RPL37 +PWCOMMONS RNA Polymerase II Transcription Termination RPL3L +PWCOMMONS RNA Polymerase II Transcription Termination RPL32 +PWCOMMONS RNA Polymerase II Transcription Termination RPL36 +PWCOMMONS RNA Polymerase II Transcription Termination RPLP1 +PWCOMMONS RNA Polymerase II Transcription Termination RPL23A +PWCOMMONS RNA Polymerase II Transcription Termination RPL24 +PWCOMMONS RNA Polymerase II Transcription Termination RPL6 +PWCOMMONS RNA Polymerase II Transcription Termination RPL18 +PWCOMMONS RNA Polymerase II Transcription Termination RPL5 +PWCOMMONS RNA Polymerase II Transcription Termination RPL23 +PWCOMMONS RNA Polymerase II Transcription Termination RPL19 +PWCOMMONS RNA Polymerase II Transcription Termination RPL41 +PWCOMMONS RNA Polymerase II Transcription Termination RPL7 +PWCOMMONS RNA Polymerase II Transcription Termination RPL13A +PWCOMMONS RNA Polymerase II Transcription Termination RPL27 +PWCOMMONS RNA Polymerase II Transcription Termination RPL17 +PWCOMMONS RNA Polymerase II Transcription Termination RPL3 +PWCOMMONS RNA Polymerase II Transcription Termination RPL10A +PWCOMMONS RNA Polymerase II Transcription Termination RPL21 +PWCOMMONS RNA Polymerase II Transcription Termination RPL4 +PWCOMMONS RNA Polymerase II Transcription Termination RPL35 +PWCOMMONS RNA Polymerase II Transcription Termination RPL13 +PWCOMMONS RNA Polymerase II Transcription Termination RPL39 +PWCOMMONS RNA Polymerase II Transcription Termination RPL38 +PWCOMMONS RNA Polymerase II Transcription Termination RPL36A +PWCOMMONS RNA Polymerase II Transcription Termination RPL9 +PWCOMMONS RNA Polymerase II Transcription Termination RPLP0 +PWCOMMONS RNA Polymerase II Transcription Termination UBA52 +PWCOMMONS RNA Polymerase II Transcription Termination RPL37A +PWCOMMONS RNA Polymerase II Transcription Termination RPL12 +PWCOMMONS RNA Polymerase II Transcription Termination EEF1A1 +PWCOMMONS RNA Polymerase II Transcription Termination PCF11 +PWCOMMONS RNA Polymerase II Transcription Termination CLP1 +PWCOMMONS RNA Polymerase II Transcription Termination CPSF7 +PWCOMMONS RNA Polymerase II Transcription Termination NUDT21 +PWCOMMONS RNA Polymerase II Transcription Termination EIF2B5 +PWCOMMONS RNA Polymerase II Transcription Termination EIF2B1 +PWCOMMONS RNA Polymerase II Transcription Termination EIF2B3 +PWCOMMONS RNA Polymerase II Transcription Termination EIF2B4 +PWCOMMONS RNA Polymerase II Transcription Termination EIF2B2 +PWCOMMONS RNA Polymerase II Transcription Termination PABPN1 +PWCOMMONS RNA Polymerase II Transcription Termination PAPOLA +PWCOMMONS RNA Polymerase II Transcription Termination NCBP2 +PWCOMMONS RNA Polymerase II Transcription Termination NCBP1 +PWCOMMONS RNA Polymerase II Transcription Termination CPSF2 +PWCOMMONS RNA Polymerase II Transcription Termination CPSF1 +PWCOMMONS RNA Polymerase II Transcription Termination CPSF3 +PWCOMMONS RNA Polymerase II Transcription Termination CSTF2 +PWCOMMONS RNA Polymerase II Transcription Termination CSTF1 +PWCOMMONS RNA Polymerase II Transcription Termination CSTF3 +PWCOMMONS RNA Polymerase II Transcription Termination ETF1 +PWCOMMONS RNA Polymerase II Transcription Termination GSPT2 +PWCOMMONS RNA Polymerase II Transcription Termination PABPC1 +PWCOMMONS RNA Polymerase II Transcription Termination SFRS2 +PWCOMMONS RNA Polymerase II Transcription Termination CDC40 +PWCOMMONS RNA Polymerase II Transcription Termination SFRS3 +PWCOMMONS RNA Polymerase II Transcription Termination SFRS11 +PWCOMMONS RNA Polymerase II Transcription Termination U2AF2 +PWCOMMONS RNA Polymerase II Transcription Termination SFRS9 +PWCOMMONS RNA Polymerase II Transcription Termination SFRS5 +PWCOMMONS RNA Polymerase II Transcription Termination SFRS7 +PWCOMMONS RNA Polymerase II Transcription Termination SFRS4 +PWCOMMONS RNA Polymerase II Transcription Termination SFRS6 +PWCOMMONS RNA Polymerase II Transcription Termination DHX38 +PWCOMMONS RNA Polymerase II Transcription Termination U2AF1 +PWCOMMONS RNA Polymerase II Transcription Termination SFRS1 +PWCOMMONS RNA Polymerase II Transcription Termination RNPS1 +PWCOMMONS RNA Polymerase II Transcription Termination UPF3B +PWCOMMONS RNA Polymerase II Transcription Termination SRRM1 +PWCOMMONS RNA Polymerase II Transcription Termination THOC4 +PWCOMMONS RNA Polymerase II Transcription Termination RBM8A +PWCOMMONS RNA Polymerase II Transcription Termination MAGOH +PWCOMMONS RNA Polymerase II Transcription Termination EEF1G +PWCOMMONS RNA Polymerase II Transcription Termination EEF1D +PWCOMMONS RNA Polymerase II Transcription Termination EEF1B2 +PWCOMMONS RNA Polymerase II Transcription Termination NXF1 +PWCOMMONS RNA Polymerase II Transcription Termination EIF5 +PWCOMMONS RNA Polymerase II Transcription Termination EIF5B +PWCOMMONS RNA Polymerase II Transcription Termination EEF2 +PWCOMMONS RNA Polymerase II Transcription Termination +PWCOMMONS Electric Transmission Across Gap Junctions GJD2 +PWCOMMONS Electric Transmission Across Gap Junctions PANX2 +PWCOMMONS Electric Transmission Across Gap Junctions PANX1 +PWCOMMONS Electric Transmission Across Gap Junctions GJC1 +PWCOMMONS Electric Transmission Across Gap Junctions +PWCOMMONS RNA Polymerase III Transcription POLR3E +PWCOMMONS RNA Polymerase III Transcription POLR3D +PWCOMMONS RNA Polymerase III Transcription LZTS1 +PWCOMMONS RNA Polymerase III Transcription POLR2L +PWCOMMONS RNA Polymerase III Transcription POLR2K +PWCOMMONS RNA Polymerase III Transcription POLR2H +PWCOMMONS RNA Polymerase III Transcription POLR3H +PWCOMMONS RNA Polymerase III Transcription POLR2F +PWCOMMONS RNA Polymerase III Transcription POLR3F +PWCOMMONS RNA Polymerase III Transcription POLR3A +PWCOMMONS RNA Polymerase III Transcription POLR2E +PWCOMMONS RNA Polymerase III Transcription NFIX +PWCOMMONS RNA Polymerase III Transcription SSB +PWCOMMONS RNA Polymerase III Transcription NFIB +PWCOMMONS RNA Polymerase III Transcription NFIA +PWCOMMONS RNA Polymerase III Transcription NFIC +PWCOMMONS RNA Polymerase III Transcription BRF2 +PWCOMMONS RNA Polymerase III Transcription BDP1 +PWCOMMONS RNA Polymerase III Transcription TBP +PWCOMMONS RNA Polymerase III Transcription POU2F1 +PWCOMMONS RNA Polymerase III Transcription ZNF143 +PWCOMMONS RNA Polymerase III Transcription SNAPC1 +PWCOMMONS RNA Polymerase III Transcription SNAPC2 +PWCOMMONS RNA Polymerase III Transcription SNAPC3 +PWCOMMONS RNA Polymerase III Transcription SNAPC5 +PWCOMMONS RNA Polymerase III Transcription SNAPC4 +PWCOMMONS RNA Polymerase III Transcription BRF1 +PWCOMMONS RNA Polymerase III Transcription GTF3C2 +PWCOMMONS RNA Polymerase III Transcription GTF3C3 +PWCOMMONS RNA Polymerase III Transcription GTF3C4 +PWCOMMONS RNA Polymerase III Transcription GTF3C5 +PWCOMMONS RNA Polymerase III Transcription GTF3C1 +PWCOMMONS RNA Polymerase III Transcription GTF3A +PWCOMMONS RNA Polymerase III Transcription +PWCOMMONS Host Interactions of HIV factors BANF1 +PWCOMMONS Host Interactions of HIV factors NUP153 +PWCOMMONS Host Interactions of HIV factors NUP85 +PWCOMMONS Host Interactions of HIV factors NUP35 +PWCOMMONS Host Interactions of HIV factors AAAS +PWCOMMONS Host Interactions of HIV factors NUP50 +PWCOMMONS Host Interactions of HIV factors NUP43 +PWCOMMONS Host Interactions of HIV factors NUP205 +PWCOMMONS Host Interactions of HIV factors NUP93 +PWCOMMONS Host Interactions of HIV factors NUP88 +PWCOMMONS Host Interactions of HIV factors NUPL2 +PWCOMMONS Host Interactions of HIV factors NUP210 +PWCOMMONS Host Interactions of HIV factors NUP155 +PWCOMMONS Host Interactions of HIV factors RANBP2 +PWCOMMONS Host Interactions of HIV factors RAE1 +PWCOMMONS Host Interactions of HIV factors NUP188 +PWCOMMONS Host Interactions of HIV factors NUP214 +PWCOMMONS Host Interactions of HIV factors NUP54 +PWCOMMONS Host Interactions of HIV factors NUP62 +PWCOMMONS Host Interactions of HIV factors NUP107 +PWCOMMONS Host Interactions of HIV factors NUP133 +PWCOMMONS Host Interactions of HIV factors NUP160 +PWCOMMONS Host Interactions of HIV factors NUP37 +PWCOMMONS Host Interactions of HIV factors MST4 +PWCOMMONS Host Interactions of HIV factors DSG3 +PWCOMMONS Host Interactions of HIV factors GSN +PWCOMMONS Host Interactions of HIV factors DIABLO +PWCOMMONS Host Interactions of HIV factors XIAP +PWCOMMONS Host Interactions of HIV factors CASP3 +PWCOMMONS Host Interactions of HIV factors PAK2 +PWCOMMONS Host Interactions of HIV factors ARHGAP10 +PWCOMMONS Host Interactions of HIV factors GAS2 +PWCOMMONS Host Interactions of HIV factors VIM +PWCOMMONS Host Interactions of HIV factors CASP9 +PWCOMMONS Host Interactions of HIV factors DSG1 +PWCOMMONS Host Interactions of HIV factors CYCS +PWCOMMONS Host Interactions of HIV factors APAF1 +PWCOMMONS Host Interactions of HIV factors FZR1 +PWCOMMONS Host Interactions of HIV factors ANAPC5 +PWCOMMONS Host Interactions of HIV factors ANAPC11 +PWCOMMONS Host Interactions of HIV factors CDC23 +PWCOMMONS Host Interactions of HIV factors ANAPC1 +PWCOMMONS Host Interactions of HIV factors ANAPC2 +PWCOMMONS Host Interactions of HIV factors UBE2D1 +PWCOMMONS Host Interactions of HIV factors CDC27 +PWCOMMONS Host Interactions of HIV factors ANAPC4 +PWCOMMONS Host Interactions of HIV factors ANAPC10 +PWCOMMONS Host Interactions of HIV factors ANAPC7 +PWCOMMONS Host Interactions of HIV factors UBE2C +PWCOMMONS Host Interactions of HIV factors CDC26 +PWCOMMONS Host Interactions of HIV factors CDC16 +PWCOMMONS Host Interactions of HIV factors UBE2E1 +PWCOMMONS Host Interactions of HIV factors PSMC6 +PWCOMMONS Host Interactions of HIV factors PSMA3 +PWCOMMONS Host Interactions of HIV factors PSMD8 +PWCOMMONS Host Interactions of HIV factors PSMD10 +PWCOMMONS Host Interactions of HIV factors PSMD1 +PWCOMMONS Host Interactions of HIV factors PSMD6 +PWCOMMONS Host Interactions of HIV factors PSMB5 +PWCOMMONS Host Interactions of HIV factors PSMB4 +PWCOMMONS Host Interactions of HIV factors PSMD4 +PWCOMMONS Host Interactions of HIV factors PSMA2 +PWCOMMONS Host Interactions of HIV factors PSMB8 +PWCOMMONS Host Interactions of HIV factors PSMD5 +PWCOMMONS Host Interactions of HIV factors PSMB6 +PWCOMMONS Host Interactions of HIV factors PSME3 +PWCOMMONS Host Interactions of HIV factors PSMB3 +PWCOMMONS Host Interactions of HIV factors PSMB7 +PWCOMMONS Host Interactions of HIV factors PSME1 +PWCOMMONS Host Interactions of HIV factors PSMD11 +PWCOMMONS Host Interactions of HIV factors PSMA5 +PWCOMMONS Host Interactions of HIV factors PSMC5 +PWCOMMONS Host Interactions of HIV factors PSMC1 +PWCOMMONS Host Interactions of HIV factors PSMD7 +PWCOMMONS Host Interactions of HIV factors PSMD3 +PWCOMMONS Host Interactions of HIV factors PSMB2 +PWCOMMONS Host Interactions of HIV factors PSMD13 +PWCOMMONS Host Interactions of HIV factors PSMD14 +PWCOMMONS Host Interactions of HIV factors PSMB1 +PWCOMMONS Host Interactions of HIV factors PSMA6 +PWCOMMONS Host Interactions of HIV factors PSMB9 +PWCOMMONS Host Interactions of HIV factors PSMB10 +PWCOMMONS Host Interactions of HIV factors PSMD9 +PWCOMMONS Host Interactions of HIV factors PSMC4 +PWCOMMONS Host Interactions of HIV factors PSMA1 +PWCOMMONS Host Interactions of HIV factors PSMA4 +PWCOMMONS Host Interactions of HIV factors PSMA7 +PWCOMMONS Host Interactions of HIV factors PSMF1 +PWCOMMONS Host Interactions of HIV factors PSME2 +PWCOMMONS Host Interactions of HIV factors PSMD12 +PWCOMMONS Host Interactions of HIV factors PSMC3 +PWCOMMONS Host Interactions of HIV factors PSMC2 +PWCOMMONS Host Interactions of HIV factors PSMD2 +PWCOMMONS Host Interactions of HIV factors ADD1 +PWCOMMONS Host Interactions of HIV factors MAPT +PWCOMMONS Host Interactions of HIV factors BIRC2 +PWCOMMONS Host Interactions of HIV factors DBNL +PWCOMMONS Host Interactions of HIV factors DSG2 +PWCOMMONS Host Interactions of HIV factors BMX +PWCOMMONS Host Interactions of HIV factors SPTAN1 +PWCOMMONS Host Interactions of HIV factors CDH1 +PWCOMMONS Host Interactions of HIV factors CASP7 +PWCOMMONS Host Interactions of HIV factors CLSPN +PWCOMMONS Host Interactions of HIV factors DFFA +PWCOMMONS Host Interactions of HIV factors DFFB +PWCOMMONS Host Interactions of HIV factors KPNB1 +PWCOMMONS Host Interactions of HIV factors OCLN +PWCOMMONS Host Interactions of HIV factors TJP2 +PWCOMMONS Host Interactions of HIV factors PKP1 +PWCOMMONS Host Interactions of HIV factors DSP +PWCOMMONS Host Interactions of HIV factors CASP8 +PWCOMMONS Host Interactions of HIV factors PLEC1 +PWCOMMONS Host Interactions of HIV factors CASP6 +PWCOMMONS Host Interactions of HIV factors ACIN1 +PWCOMMONS Host Interactions of HIV factors STK24 +PWCOMMONS Host Interactions of HIV factors PRKCQ +PWCOMMONS Host Interactions of HIV factors ROCK1 +PWCOMMONS Host Interactions of HIV factors LMNB1 +PWCOMMONS Host Interactions of HIV factors BCAP31 +PWCOMMONS Host Interactions of HIV factors PRKCD +PWCOMMONS Host Interactions of HIV factors CDC25A +PWCOMMONS Host Interactions of HIV factors FNTA +PWCOMMONS Host Interactions of HIV factors PTK2 +PWCOMMONS Host Interactions of HIV factors ATP6V1H +PWCOMMONS Host Interactions of HIV factors AP2S1 +PWCOMMONS Host Interactions of HIV factors AP2B1 +PWCOMMONS Host Interactions of HIV factors AP2M1 +PWCOMMONS Host Interactions of HIV factors CD4 +PWCOMMONS Host Interactions of HIV factors ARF1 +PWCOMMONS Host Interactions of HIV factors LCK +PWCOMMONS Host Interactions of HIV factors CD28 +PWCOMMONS Host Interactions of HIV factors PACS1 +PWCOMMONS Host Interactions of HIV factors AP1G1 +PWCOMMONS Host Interactions of HIV factors AP1B1 +PWCOMMONS Host Interactions of HIV factors B2M +PWCOMMONS Host Interactions of HIV factors HLA-A +PWCOMMONS Host Interactions of HIV factors FYN +PWCOMMONS Host Interactions of HIV factors DOCK2 +PWCOMMONS Host Interactions of HIV factors ELMO1 +PWCOMMONS Host Interactions of HIV factors HCK +PWCOMMONS Host Interactions of HIV factors RAN +PWCOMMONS Host Interactions of HIV factors XPO1 +PWCOMMONS Host Interactions of HIV factors RANBP1 +PWCOMMONS Host Interactions of HIV factors RANGAP1 +PWCOMMONS Host Interactions of HIV factors RBX1 +PWCOMMONS Host Interactions of HIV factors TCEB1 +PWCOMMONS Host Interactions of HIV factors CUL5 +PWCOMMONS Host Interactions of HIV factors TCEB2 +PWCOMMONS Host Interactions of HIV factors PPIA +PWCOMMONS Host Interactions of HIV factors CDK9 +PWCOMMONS Host Interactions of HIV factors CCNT1 +PWCOMMONS Host Interactions of HIV factors BTRC +PWCOMMONS Host Interactions of HIV factors SKP1 +PWCOMMONS Host Interactions of HIV factors +PWCOMMONS Interactions of Vpr with host cellular proteins BANF1 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP153 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP85 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP35 +PWCOMMONS Interactions of Vpr with host cellular proteins AAAS +PWCOMMONS Interactions of Vpr with host cellular proteins NUP50 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP43 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP205 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP93 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP88 +PWCOMMONS Interactions of Vpr with host cellular proteins NUPL2 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP210 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP155 +PWCOMMONS Interactions of Vpr with host cellular proteins RANBP2 +PWCOMMONS Interactions of Vpr with host cellular proteins RAE1 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP188 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP214 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP54 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP62 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP107 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP133 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP160 +PWCOMMONS Interactions of Vpr with host cellular proteins NUP37 +PWCOMMONS Interactions of Vpr with host cellular proteins MST4 +PWCOMMONS Interactions of Vpr with host cellular proteins DSG3 +PWCOMMONS Interactions of Vpr with host cellular proteins GSN +PWCOMMONS Interactions of Vpr with host cellular proteins DIABLO +PWCOMMONS Interactions of Vpr with host cellular proteins XIAP +PWCOMMONS Interactions of Vpr with host cellular proteins CASP3 +PWCOMMONS Interactions of Vpr with host cellular proteins PAK2 +PWCOMMONS Interactions of Vpr with host cellular proteins ARHGAP10 +PWCOMMONS Interactions of Vpr with host cellular proteins GAS2 +PWCOMMONS Interactions of Vpr with host cellular proteins VIM +PWCOMMONS Interactions of Vpr with host cellular proteins CASP9 +PWCOMMONS Interactions of Vpr with host cellular proteins DSG1 +PWCOMMONS Interactions of Vpr with host cellular proteins CYCS +PWCOMMONS Interactions of Vpr with host cellular proteins APAF1 +PWCOMMONS Interactions of Vpr with host cellular proteins FZR1 +PWCOMMONS Interactions of Vpr with host cellular proteins ANAPC5 +PWCOMMONS Interactions of Vpr with host cellular proteins ANAPC11 +PWCOMMONS Interactions of Vpr with host cellular proteins CDC23 +PWCOMMONS Interactions of Vpr with host cellular proteins ANAPC1 +PWCOMMONS Interactions of Vpr with host cellular proteins ANAPC2 +PWCOMMONS Interactions of Vpr with host cellular proteins UBE2D1 +PWCOMMONS Interactions of Vpr with host cellular proteins CDC27 +PWCOMMONS Interactions of Vpr with host cellular proteins ANAPC4 +PWCOMMONS Interactions of Vpr with host cellular proteins ANAPC10 +PWCOMMONS Interactions of Vpr with host cellular proteins ANAPC7 +PWCOMMONS Interactions of Vpr with host cellular proteins UBE2C +PWCOMMONS Interactions of Vpr with host cellular proteins CDC26 +PWCOMMONS Interactions of Vpr with host cellular proteins CDC16 +PWCOMMONS Interactions of Vpr with host cellular proteins UBE2E1 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMC6 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMA3 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD8 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD10 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD1 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD6 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMB5 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMB4 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD4 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMA2 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMB8 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD5 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMB6 +PWCOMMONS Interactions of Vpr with host cellular proteins PSME3 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMB3 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMB7 +PWCOMMONS Interactions of Vpr with host cellular proteins PSME1 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD11 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMA5 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMC5 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMC1 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD7 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD3 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMB2 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD13 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD14 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMB1 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMA6 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMB9 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMB10 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD9 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMC4 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMA1 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMA4 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMA7 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMF1 +PWCOMMONS Interactions of Vpr with host cellular proteins PSME2 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD12 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMC3 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMC2 +PWCOMMONS Interactions of Vpr with host cellular proteins PSMD2 +PWCOMMONS Interactions of Vpr with host cellular proteins ADD1 +PWCOMMONS Interactions of Vpr with host cellular proteins MAPT +PWCOMMONS Interactions of Vpr with host cellular proteins BIRC2 +PWCOMMONS Interactions of Vpr with host cellular proteins DBNL +PWCOMMONS Interactions of Vpr with host cellular proteins DSG2 +PWCOMMONS Interactions of Vpr with host cellular proteins BMX +PWCOMMONS Interactions of Vpr with host cellular proteins SPTAN1 +PWCOMMONS Interactions of Vpr with host cellular proteins CDH1 +PWCOMMONS Interactions of Vpr with host cellular proteins CASP7 +PWCOMMONS Interactions of Vpr with host cellular proteins CLSPN +PWCOMMONS Interactions of Vpr with host cellular proteins DFFA +PWCOMMONS Interactions of Vpr with host cellular proteins DFFB +PWCOMMONS Interactions of Vpr with host cellular proteins KPNB1 +PWCOMMONS Interactions of Vpr with host cellular proteins OCLN +PWCOMMONS Interactions of Vpr with host cellular proteins TJP2 +PWCOMMONS Interactions of Vpr with host cellular proteins PKP1 +PWCOMMONS Interactions of Vpr with host cellular proteins DSP +PWCOMMONS Interactions of Vpr with host cellular proteins CASP8 +PWCOMMONS Interactions of Vpr with host cellular proteins PLEC1 +PWCOMMONS Interactions of Vpr with host cellular proteins CASP6 +PWCOMMONS Interactions of Vpr with host cellular proteins ACIN1 +PWCOMMONS Interactions of Vpr with host cellular proteins STK24 +PWCOMMONS Interactions of Vpr with host cellular proteins PRKCQ +PWCOMMONS Interactions of Vpr with host cellular proteins ROCK1 +PWCOMMONS Interactions of Vpr with host cellular proteins LMNB1 +PWCOMMONS Interactions of Vpr with host cellular proteins BCAP31 +PWCOMMONS Interactions of Vpr with host cellular proteins PRKCD +PWCOMMONS Interactions of Vpr with host cellular proteins CDC25A +PWCOMMONS Interactions of Vpr with host cellular proteins FNTA +PWCOMMONS Interactions of Vpr with host cellular proteins PTK2 +PWCOMMONS Interactions of Vpr with host cellular proteins +PWCOMMONS Vpr-mediated nuclear import of PICs BANF1 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP153 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP85 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP35 +PWCOMMONS Vpr-mediated nuclear import of PICs AAAS +PWCOMMONS Vpr-mediated nuclear import of PICs NUP50 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP43 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP205 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP93 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP88 +PWCOMMONS Vpr-mediated nuclear import of PICs NUPL2 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP210 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP155 +PWCOMMONS Vpr-mediated nuclear import of PICs RANBP2 +PWCOMMONS Vpr-mediated nuclear import of PICs RAE1 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP188 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP214 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP54 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP62 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP107 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP133 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP160 +PWCOMMONS Vpr-mediated nuclear import of PICs NUP37 +PWCOMMONS Vpr-mediated nuclear import of PICs +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis AP2S1 +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis AP2B1 +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis AP2M1 +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis CD4 +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis ARF1 +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis LCK +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis CD28 +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis PACS1 +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis AP1G1 +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis AP1B1 +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis B2M +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis HLA-A +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis FYN +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis PAK2 +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis DOCK2 +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis ELMO1 +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis HCK +PWCOMMONS The role of Nef in HIV-1 replication and disease pathogenesis +PWCOMMONS Nef and signal transduction LCK +PWCOMMONS Nef and signal transduction PAK2 +PWCOMMONS Nef and signal transduction DOCK2 +PWCOMMONS Nef and signal transduction ELMO1 +PWCOMMONS Nef and signal transduction HCK +PWCOMMONS Nef and signal transduction +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters AP2S1 +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters AP2B1 +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters AP2M1 +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters CD4 +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters ARF1 +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters LCK +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters CD28 +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters PACS1 +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters AP1G1 +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters AP1B1 +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters B2M +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters HLA-A +PWCOMMONS Nef-mediates down modulation of cell surface receptors by recruiting them to clathrin adapters +PWCOMMONS Nef Mediated CD8 Down-regulation AP2S1 +PWCOMMONS Nef Mediated CD8 Down-regulation AP2B1 +PWCOMMONS Nef Mediated CD8 Down-regulation AP2M1 +PWCOMMONS Nef Mediated CD8 Down-regulation +PWCOMMONS Nef mediated downregulation of CD28 cell surface expression CD28 +PWCOMMONS Nef mediated downregulation of CD28 cell surface expression +PWCOMMONS NS1 Mediated Effects on Host Pathways PABPN1 +PWCOMMONS NS1 Mediated Effects on Host Pathways CPSF4 +PWCOMMONS NS1 Mediated Effects on Host Pathways +PWCOMMONS Inhibition of Host mRNA Processing and RNA Silencing CPSF4 +PWCOMMONS Inhibition of Host mRNA Processing and RNA Silencing +PWCOMMONS SHC activation RAF1 +PWCOMMONS SHC activation YWHAB +PWCOMMONS SHC activation SHC1 +PWCOMMONS SHC activation SOS1 +PWCOMMONS SHC activation MAP2K1 +PWCOMMONS SHC activation MAPK3 +PWCOMMONS SHC activation INSR +PWCOMMONS SHC activation INS +PWCOMMONS SHC activation MAPK1 +PWCOMMONS SHC activation +PWCOMMONS Nonhomologous End-joining (NHEJ) PRKDC +PWCOMMONS Nonhomologous End-joining (NHEJ) XRCC6 +PWCOMMONS Nonhomologous End-joining (NHEJ) XRCC5 +PWCOMMONS Nonhomologous End-joining (NHEJ) XRCC4 +PWCOMMONS Nonhomologous End-joining (NHEJ) +PWCOMMONS Processing of DNA ends prior to end rejoining XRCC4 +PWCOMMONS Processing of DNA ends prior to end rejoining PRKDC +PWCOMMONS Processing of DNA ends prior to end rejoining XRCC6 +PWCOMMONS Processing of DNA ends prior to end rejoining XRCC5 +PWCOMMONS Processing of DNA ends prior to end rejoining +PWCOMMONS MicroRNA biogenesis POLR2G +PWCOMMONS MicroRNA biogenesis POLR2B +PWCOMMONS MicroRNA biogenesis POLR2L +PWCOMMONS MicroRNA biogenesis POLR2A +PWCOMMONS MicroRNA biogenesis POLR2K +PWCOMMONS MicroRNA biogenesis POLR2H +PWCOMMONS MicroRNA biogenesis POLR2D +PWCOMMONS MicroRNA biogenesis POLR2C +PWCOMMONS MicroRNA biogenesis POLR2F +PWCOMMONS MicroRNA biogenesis POLR2J +PWCOMMONS MicroRNA biogenesis POLR2I +PWCOMMONS MicroRNA biogenesis POLR2E +PWCOMMONS MicroRNA biogenesis TARBP2 +PWCOMMONS MicroRNA biogenesis DICER1 +PWCOMMONS MicroRNA biogenesis +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) DLAT +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) PDHA1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) PDHB +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) DLD +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5O +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5F1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5J +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5G1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5L +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-ATP6 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5J2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-ATP8 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5H +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5I +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5C1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5D +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5A1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5B +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ATP5E +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) UROD +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) UQCRC1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) UQCRB +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) UQCR10 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) UQCR +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) UQCRC2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) UQCRH +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) UQCRQ +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) UQCRFS1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-CYB +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) CYC1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) CPOX +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) UROS +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-CO2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) COX8A +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) COX7C +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-CO3 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) COX6C +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) COX5B +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-CO1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) COX7A2L +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) COX4I1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) COX6A1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) COX7B +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) COX6B1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) COX5A +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) DLST +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) OGDH +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ALAD +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) CS +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) PPOX +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) ACO2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) IDH3G +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) IDH3A +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) IDH3B +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) SUCLG1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) SUCLG2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) KCNJ11 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) SDHC +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) SDHD +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) SDHB +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) SDHA +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) FECH +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) SUCLA2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) CYCS +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MDH2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFS3 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFS4 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFS6 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA5 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFS5 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFS1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFS2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFV2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFV3 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFV1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA4 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA11 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-ND3 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA13 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFB5 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFC1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA6 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFC2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA3 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFB3 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFB1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFAB1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-ND4 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-ND5 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFB9 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFB6 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFB4 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA8 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFB7 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA12 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFB2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-ND4L +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-ND2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFB10 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA7 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFB8 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFB11 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-ND6 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) MT-ND1 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFS7 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA10 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFS8 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) NDUFA9 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) VAMP2 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) FH +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) INS +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) SYT5 +PWCOMMONS Regulation of pyruvate dehydrogenase complex (PDC) +PWCOMMONS DNA Damage Reversal ALKBH3 +PWCOMMONS DNA Damage Reversal MGMT +PWCOMMONS DNA Damage Reversal +PWCOMMONS Golgi to ER Retrograde Transport ARCN1 +PWCOMMONS Golgi to ER Retrograde Transport COPG +PWCOMMONS Golgi to ER Retrograde Transport COPB1 +PWCOMMONS Golgi to ER Retrograde Transport COPZ1 +PWCOMMONS Golgi to ER Retrograde Transport COPE +PWCOMMONS Golgi to ER Retrograde Transport COPB2 +PWCOMMONS Golgi to ER Retrograde Transport COPA +PWCOMMONS Golgi to ER Retrograde Transport ARF1 +PWCOMMONS Golgi to ER Retrograde Transport GBF1 +PWCOMMONS Golgi to ER Retrograde Transport +PWCOMMONS ER to Golgi Transport PREB +PWCOMMONS ER to Golgi Transport SEC23A +PWCOMMONS ER to Golgi Transport SEC13 +PWCOMMONS ER to Golgi Transport SEC31A +PWCOMMONS ER to Golgi Transport +PWCOMMONS COPII (Coat Protein 2) Mediated Vesicle Transport PREB +PWCOMMONS COPII (Coat Protein 2) Mediated Vesicle Transport SEC23A +PWCOMMONS COPII (Coat Protein 2) Mediated Vesicle Transport SEC13 +PWCOMMONS COPII (Coat Protein 2) Mediated Vesicle Transport SEC31A +PWCOMMONS COPII (Coat Protein 2) Mediated Vesicle Transport +PWCOMMONS DNA Replication Pre-Initiation CDC6 +PWCOMMONS DNA Replication Pre-Initiation TFDP1 +PWCOMMONS DNA Replication Pre-Initiation E2F1 +PWCOMMONS DNA Replication Pre-Initiation POLE2 +PWCOMMONS DNA Replication Pre-Initiation POLE +PWCOMMONS DNA Replication Pre-Initiation PRIM2 +PWCOMMONS DNA Replication Pre-Initiation POLA1 +PWCOMMONS DNA Replication Pre-Initiation PRIM1 +PWCOMMONS DNA Replication Pre-Initiation POLA2 +PWCOMMONS DNA Replication Pre-Initiation CDC45L +PWCOMMONS DNA Replication Pre-Initiation MCM7 +PWCOMMONS DNA Replication Pre-Initiation MCM4 +PWCOMMONS DNA Replication Pre-Initiation MCM5 +PWCOMMONS DNA Replication Pre-Initiation MCM3 +PWCOMMONS DNA Replication Pre-Initiation MCM6 +PWCOMMONS DNA Replication Pre-Initiation MCM2 +PWCOMMONS DNA Replication Pre-Initiation GINS4 +PWCOMMONS DNA Replication Pre-Initiation GINS1 +PWCOMMONS DNA Replication Pre-Initiation GINS2 +PWCOMMONS DNA Replication Pre-Initiation LIG1 +PWCOMMONS DNA Replication Pre-Initiation PCNA +PWCOMMONS DNA Replication Pre-Initiation POLD4 +PWCOMMONS DNA Replication Pre-Initiation POLD3 +PWCOMMONS DNA Replication Pre-Initiation POLD2 +PWCOMMONS DNA Replication Pre-Initiation POLD1 +PWCOMMONS DNA Replication Pre-Initiation DNA2 +PWCOMMONS DNA Replication Pre-Initiation RPA1 +PWCOMMONS DNA Replication Pre-Initiation RPA3 +PWCOMMONS DNA Replication Pre-Initiation RPA2 +PWCOMMONS DNA Replication Pre-Initiation FEN1 +PWCOMMONS DNA Replication Pre-Initiation CDK2 +PWCOMMONS DNA Replication Pre-Initiation RFC2 +PWCOMMONS DNA Replication Pre-Initiation RFC1 +PWCOMMONS DNA Replication Pre-Initiation RFC3 +PWCOMMONS DNA Replication Pre-Initiation RFC5 +PWCOMMONS DNA Replication Pre-Initiation RFC4 +PWCOMMONS DNA Replication Pre-Initiation CDT1 +PWCOMMONS DNA Replication Pre-Initiation GMNN +PWCOMMONS DNA Replication Pre-Initiation MCM10 +PWCOMMONS DNA Replication Pre-Initiation ORC6L +PWCOMMONS DNA Replication Pre-Initiation ORC4L +PWCOMMONS DNA Replication Pre-Initiation ORC3L +PWCOMMONS DNA Replication Pre-Initiation ORC5L +PWCOMMONS DNA Replication Pre-Initiation ORC1L +PWCOMMONS DNA Replication Pre-Initiation ORC2L +PWCOMMONS DNA Replication Pre-Initiation RPA4 +PWCOMMONS DNA Replication Pre-Initiation CDC7 +PWCOMMONS DNA Replication Pre-Initiation DBF4 +PWCOMMONS DNA Replication Pre-Initiation CDC2 +PWCOMMONS DNA Replication Pre-Initiation FZR1 +PWCOMMONS DNA Replication Pre-Initiation ANAPC5 +PWCOMMONS DNA Replication Pre-Initiation ANAPC11 +PWCOMMONS DNA Replication Pre-Initiation CDC23 +PWCOMMONS DNA Replication Pre-Initiation ANAPC1 +PWCOMMONS DNA Replication Pre-Initiation ANAPC2 +PWCOMMONS DNA Replication Pre-Initiation UBE2D1 +PWCOMMONS DNA Replication Pre-Initiation CDC27 +PWCOMMONS DNA Replication Pre-Initiation ANAPC4 +PWCOMMONS DNA Replication Pre-Initiation ANAPC10 +PWCOMMONS DNA Replication Pre-Initiation ANAPC7 +PWCOMMONS DNA Replication Pre-Initiation UBE2C +PWCOMMONS DNA Replication Pre-Initiation CDC26 +PWCOMMONS DNA Replication Pre-Initiation CDC16 +PWCOMMONS DNA Replication Pre-Initiation UBE2E1 +PWCOMMONS DNA Replication Pre-Initiation PSMC6 +PWCOMMONS DNA Replication Pre-Initiation PSMA3 +PWCOMMONS DNA Replication Pre-Initiation PSMD8 +PWCOMMONS DNA Replication Pre-Initiation PSMD10 +PWCOMMONS DNA Replication Pre-Initiation PSMD1 +PWCOMMONS DNA Replication Pre-Initiation PSMD6 +PWCOMMONS DNA Replication Pre-Initiation PSMB5 +PWCOMMONS DNA Replication Pre-Initiation PSMB4 +PWCOMMONS DNA Replication Pre-Initiation PSMD4 +PWCOMMONS DNA Replication Pre-Initiation PSMA2 +PWCOMMONS DNA Replication Pre-Initiation PSMB8 +PWCOMMONS DNA Replication Pre-Initiation PSMD5 +PWCOMMONS DNA Replication Pre-Initiation PSMB6 +PWCOMMONS DNA Replication Pre-Initiation PSME3 +PWCOMMONS DNA Replication Pre-Initiation PSMB3 +PWCOMMONS DNA Replication Pre-Initiation PSMB7 +PWCOMMONS DNA Replication Pre-Initiation PSME1 +PWCOMMONS DNA Replication Pre-Initiation PSMD11 +PWCOMMONS DNA Replication Pre-Initiation PSMA5 +PWCOMMONS DNA Replication Pre-Initiation PSMC5 +PWCOMMONS DNA Replication Pre-Initiation PSMC1 +PWCOMMONS DNA Replication Pre-Initiation PSMD7 +PWCOMMONS DNA Replication Pre-Initiation PSMD3 +PWCOMMONS DNA Replication Pre-Initiation PSMB2 +PWCOMMONS DNA Replication Pre-Initiation PSMD13 +PWCOMMONS DNA Replication Pre-Initiation PSMD14 +PWCOMMONS DNA Replication Pre-Initiation PSMB1 +PWCOMMONS DNA Replication Pre-Initiation PSMA6 +PWCOMMONS DNA Replication Pre-Initiation PSMB9 +PWCOMMONS DNA Replication Pre-Initiation PSMB10 +PWCOMMONS DNA Replication Pre-Initiation PSMD9 +PWCOMMONS DNA Replication Pre-Initiation PSMC4 +PWCOMMONS DNA Replication Pre-Initiation PSMA1 +PWCOMMONS DNA Replication Pre-Initiation PSMA4 +PWCOMMONS DNA Replication Pre-Initiation PSMA7 +PWCOMMONS DNA Replication Pre-Initiation PSMF1 +PWCOMMONS DNA Replication Pre-Initiation PSME2 +PWCOMMONS DNA Replication Pre-Initiation PSMD12 +PWCOMMONS DNA Replication Pre-Initiation PSMC3 +PWCOMMONS DNA Replication Pre-Initiation PSMC2 +PWCOMMONS DNA Replication Pre-Initiation PSMD2 +PWCOMMONS DNA Replication Pre-Initiation +PWCOMMONS EGFR downregulation CBL +PWCOMMONS EGFR downregulation EGF +PWCOMMONS EGFR downregulation EPN1 +PWCOMMONS EGFR downregulation EPS15L1 +PWCOMMONS EGFR downregulation SH3KBP1 +PWCOMMONS EGFR downregulation SH3GL2 +PWCOMMONS EGFR downregulation EPS15 +PWCOMMONS EGFR downregulation HGS +PWCOMMONS EGFR downregulation AP2A2 +PWCOMMONS EGFR downregulation AP2A1 +PWCOMMONS EGFR downregulation SPRY2 +PWCOMMONS EGFR downregulation +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF4H +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF4B +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF4E +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF4G1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF4A2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF2S3 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF2S2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF2S1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF3K +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF3H +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF3E +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF3F +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF3J +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF3G +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF3C +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF3A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF3I +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF3D +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF3B +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS23 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS16 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS12 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS29 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPSA +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS21 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS27A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS20 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS15 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS24 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS9 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS10 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS28 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS19 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS4X +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS18 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS8 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS3 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS4Y1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS25 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS14 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS17 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS26 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS11 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS5 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA FAU +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS15A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS13 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS6 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS3A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS7 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPS27 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP153 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP85 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP35 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA AAAS +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP50 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP43 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP205 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP93 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP88 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUPL2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP210 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP155 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RANBP2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RAE1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP188 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP214 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP54 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP62 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP107 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP133 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP160 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUP37 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL27A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL15 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL11 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL29 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL30 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL8 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL22 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL28 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL7A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL35A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL31 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL26L1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL26 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL18A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL14 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPLP2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL10 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL34 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL37 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL3L +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL32 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL36 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPLP1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL23A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL24 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL6 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL18 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL5 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL23 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL19 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL41 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL7 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL13A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL27 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL17 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL3 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL10A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL21 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL4 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL35 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL13 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL39 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL38 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL36A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL9 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPLP0 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA UBA52 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL37A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RPL12 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EEF1A1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EFTUD2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA PRPF6 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA DDX23 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA TXNL4A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA PRPF8 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRNP200 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRNP40 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NHP2L1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA LSM2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRPG +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRPD3 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRPF +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRPB +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRPD2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRPE +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRPD1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SFRS7 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SFRS2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SFRS6 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SFRS1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA GTF2F1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA GTF2F2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA POLR2G +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA POLR2B +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA POLR2L +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA POLR2A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA POLR2K +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA POLR2H +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA POLR2D +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA POLR2C +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA POLR2J +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA POLR2I +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA POLR2F +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA POLR2E +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NCBP2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NCBP1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SF3B14 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SF3B2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SF3B5 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SF3B3 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SF3B1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SF3B4 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF2B5 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF2B1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF2B3 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF2B4 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF2B2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NXF1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA CDC40 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SFRS3 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SFRS11 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA U2AF2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SFRS9 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SFRS5 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SFRS4 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA DHX38 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA U2AF1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RNPS1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA UPF3B +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SRRM1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA THOC4 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RBM8A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA MAGOH +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF5 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA APOBEC1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EEF1G +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EEF1D +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EEF1B2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA METTL3 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA PABPC1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPD +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPA3 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPH2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPM +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA DNAJC8 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPUL1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA CD2BP2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPH1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPA0 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA PCBP1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SF4 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPL +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPA2B1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA YBX1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPA1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPR +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPC +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA PTBP1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA PCBP2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SMC1A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RBM5 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPU +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA DHX9 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA CCAR1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA HNRNPF +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA RBMX +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA PABPN1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA PAPOLA +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA CSTF2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA CSTF1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA CSTF3 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA PCF11 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA CLP1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA CPSF2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA CPSF1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA CPSF3 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA CPSF7 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA NUDT21 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA PRPF4 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA PHF5A +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRPB2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRPA1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SF3A3 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SF3A1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SF3A2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA ETF1 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA GSPT2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRNP70 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SNRPA +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA SLBP +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EIF5B +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA EEF2 +PWCOMMONS Processing of Capped Intron-Containing Pre-mRNA +PWCOMMONS Pyruvate metabolism and TCA cycle NT5C2 +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5O +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5F1 +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5J +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5G1 +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5L +PWCOMMONS Pyruvate metabolism and TCA cycle MT-ATP6 +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5J2 +PWCOMMONS Pyruvate metabolism and TCA cycle MT-ATP8 +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5H +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5I +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5C1 +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5D +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5A1 +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5B +PWCOMMONS Pyruvate metabolism and TCA cycle ATP5E +PWCOMMONS Pyruvate metabolism and TCA cycle HPRT1 +PWCOMMONS Pyruvate metabolism and TCA cycle UQCRC1 +PWCOMMONS Pyruvate metabolism and TCA cycle UQCRB +PWCOMMONS Pyruvate metabolism and TCA cycle UQCR10 +PWCOMMONS Pyruvate metabolism and TCA cycle UQCR +PWCOMMONS Pyruvate metabolism and TCA cycle UQCRC2 +PWCOMMONS Pyruvate metabolism and TCA cycle UQCRH +PWCOMMONS Pyruvate metabolism and TCA cycle UQCRQ +PWCOMMONS Pyruvate metabolism and TCA cycle UQCRFS1 +PWCOMMONS Pyruvate metabolism and TCA cycle MT-CYB +PWCOMMONS Pyruvate metabolism and TCA cycle CYC1 +PWCOMMONS Pyruvate metabolism and TCA cycle MT-CO2 +PWCOMMONS Pyruvate metabolism and TCA cycle COX8A +PWCOMMONS Pyruvate metabolism and TCA cycle COX7C +PWCOMMONS Pyruvate metabolism and TCA cycle MT-CO3 +PWCOMMONS Pyruvate metabolism and TCA cycle COX6C +PWCOMMONS Pyruvate metabolism and TCA cycle COX5B +PWCOMMONS Pyruvate metabolism and TCA cycle MT-CO1 +PWCOMMONS Pyruvate metabolism and TCA cycle COX7A2L +PWCOMMONS Pyruvate metabolism and TCA cycle COX4I1 +PWCOMMONS Pyruvate metabolism and TCA cycle COX6A1 +PWCOMMONS Pyruvate metabolism and TCA cycle COX7B +PWCOMMONS Pyruvate metabolism and TCA cycle COX6B1 +PWCOMMONS Pyruvate metabolism and TCA cycle COX5A +PWCOMMONS Pyruvate metabolism and TCA cycle PGLS +PWCOMMONS Pyruvate metabolism and TCA cycle GOT2 +PWCOMMONS Pyruvate metabolism and TCA cycle HADH +PWCOMMONS Pyruvate metabolism and TCA cycle UPP1 +PWCOMMONS Pyruvate metabolism and TCA cycle PDHX +PWCOMMONS Pyruvate metabolism and TCA cycle PDHA1 +PWCOMMONS Pyruvate metabolism and TCA cycle PDHB +PWCOMMONS Pyruvate metabolism and TCA cycle DLAT +PWCOMMONS Pyruvate metabolism and TCA cycle DLD +PWCOMMONS Pyruvate metabolism and TCA cycle GOT1 +PWCOMMONS Pyruvate metabolism and TCA cycle PC +PWCOMMONS Pyruvate metabolism and TCA cycle PGK1 +PWCOMMONS Pyruvate metabolism and TCA cycle ADSL +PWCOMMONS Pyruvate metabolism and TCA cycle GCDH +PWCOMMONS Pyruvate metabolism and TCA cycle MDH1 +PWCOMMONS Pyruvate metabolism and TCA cycle PCK1 +PWCOMMONS Pyruvate metabolism and TCA cycle ATIC +PWCOMMONS Pyruvate metabolism and TCA cycle OAT +PWCOMMONS Pyruvate metabolism and TCA cycle NP +PWCOMMONS Pyruvate metabolism and TCA cycle GYS2 +PWCOMMONS Pyruvate metabolism and TCA cycle ECHS1 +PWCOMMONS Pyruvate metabolism and TCA cycle TXN +PWCOMMONS Pyruvate metabolism and TCA cycle SUCLG1 +PWCOMMONS Pyruvate metabolism and TCA cycle SUCLG2 +PWCOMMONS Pyruvate metabolism and TCA cycle ARG1 +PWCOMMONS Pyruvate metabolism and TCA cycle KCNJ11 +PWCOMMONS Pyruvate metabolism and TCA cycle AMPD3 +PWCOMMONS Pyruvate metabolism and TCA cycle RPE +PWCOMMONS Pyruvate metabolism and TCA cycle GLRX +PWCOMMONS Pyruvate metabolism and TCA cycle SDHC +PWCOMMONS Pyruvate metabolism and TCA cycle SDHD +PWCOMMONS Pyruvate metabolism and TCA cycle SDHB +PWCOMMONS Pyruvate metabolism and TCA cycle SDHA +PWCOMMONS Pyruvate metabolism and TCA cycle DPYD +PWCOMMONS Pyruvate metabolism and TCA cycle GART +PWCOMMONS Pyruvate metabolism and TCA cycle DPYS +PWCOMMONS Pyruvate metabolism and TCA cycle AK1 +PWCOMMONS Pyruvate metabolism and TCA cycle MDH2 +PWCOMMONS Pyruvate metabolism and TCA cycle UMPS +PWCOMMONS Pyruvate metabolism and TCA cycle CYCS +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFS3 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFS4 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFS6 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA5 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFS5 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFS1 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFS2 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFV2 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFV3 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFV1 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA4 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA11 +PWCOMMONS Pyruvate metabolism and TCA cycle MT-ND3 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA13 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFB5 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFC1 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA6 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFC2 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA3 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFB3 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFB1 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFAB1 +PWCOMMONS Pyruvate metabolism and TCA cycle MT-ND4 +PWCOMMONS Pyruvate metabolism and TCA cycle MT-ND5 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA1 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFB9 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFB6 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFB4 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA8 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFB7 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA12 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFB2 +PWCOMMONS Pyruvate metabolism and TCA cycle MT-ND4L +PWCOMMONS Pyruvate metabolism and TCA cycle MT-ND2 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFB10 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA7 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA2 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFB8 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFB11 +PWCOMMONS Pyruvate metabolism and TCA cycle MT-ND6 +PWCOMMONS Pyruvate metabolism and TCA cycle MT-ND1 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFS7 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA10 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFS8 +PWCOMMONS Pyruvate metabolism and TCA cycle NDUFA9 +PWCOMMONS Pyruvate metabolism and TCA cycle VAMP2 +PWCOMMONS Pyruvate metabolism and TCA cycle NT5C1A +PWCOMMONS Pyruvate metabolism and TCA cycle CTPS +PWCOMMONS Pyruvate metabolism and TCA cycle PRPS1 +PWCOMMONS Pyruvate metabolism and TCA cycle DLST +PWCOMMONS Pyruvate metabolism and TCA cycle OGDH +PWCOMMONS Pyruvate metabolism and TCA cycle GMPS +PWCOMMONS Pyruvate metabolism and TCA cycle GUK1 +PWCOMMONS Pyruvate metabolism and TCA cycle IMPDH2 +PWCOMMONS Pyruvate metabolism and TCA cycle GDA +PWCOMMONS Pyruvate metabolism and TCA cycle NME1 +PWCOMMONS Pyruvate metabolism and TCA cycle IMPDH1 +PWCOMMONS Pyruvate metabolism and TCA cycle ADSS +PWCOMMONS Pyruvate metabolism and TCA cycle OTC +PWCOMMONS Pyruvate metabolism and TCA cycle FH +PWCOMMONS Pyruvate metabolism and TCA cycle INS +PWCOMMONS Pyruvate metabolism and TCA cycle SYT5 +PWCOMMONS Pyruvate metabolism and TCA cycle PFAS +PWCOMMONS Pyruvate metabolism and TCA cycle SLC35D1 +PWCOMMONS Pyruvate metabolism and TCA cycle ASL +PWCOMMONS Pyruvate metabolism and TCA cycle UPB1 +PWCOMMONS Pyruvate metabolism and TCA cycle SLC25A21 +PWCOMMONS Pyruvate metabolism and TCA cycle GPI +PWCOMMONS Pyruvate metabolism and TCA cycle UROD +PWCOMMONS Pyruvate metabolism and TCA cycle CPOX +PWCOMMONS Pyruvate metabolism and TCA cycle UROS +PWCOMMONS Pyruvate metabolism and TCA cycle XDH +PWCOMMONS Pyruvate metabolism and TCA cycle PAICS +PWCOMMONS Pyruvate metabolism and TCA cycle CPS1 +PWCOMMONS Pyruvate metabolism and TCA cycle TALDO1 +PWCOMMONS Pyruvate metabolism and TCA cycle ASS1 +PWCOMMONS Pyruvate metabolism and TCA cycle BSG +PWCOMMONS Pyruvate metabolism and TCA cycle CMPK1 +PWCOMMONS Pyruvate metabolism and TCA cycle ALAD +PWCOMMONS Pyruvate metabolism and TCA cycle CS +PWCOMMONS Pyruvate metabolism and TCA cycle CAT +PWCOMMONS Pyruvate metabolism and TCA cycle PPOX +PWCOMMONS Pyruvate metabolism and TCA cycle SLC25A1 +PWCOMMONS Pyruvate metabolism and TCA cycle ACO2 +PWCOMMONS Pyruvate metabolism and TCA cycle IDH3G +PWCOMMONS Pyruvate metabolism and TCA cycle IDH3A +PWCOMMONS Pyruvate metabolism and TCA cycle IDH3B +PWCOMMONS Pyruvate metabolism and TCA cycle UGDH +PWCOMMONS Pyruvate metabolism and TCA cycle RRM2 +PWCOMMONS Pyruvate metabolism and TCA cycle RRM1 +PWCOMMONS Pyruvate metabolism and TCA cycle G6PD +PWCOMMONS Pyruvate metabolism and TCA cycle AMPD1 +PWCOMMONS Pyruvate metabolism and TCA cycle SLC25A11 +PWCOMMONS Pyruvate metabolism and TCA cycle PPAT +PWCOMMONS Pyruvate metabolism and TCA cycle TKT +PWCOMMONS Pyruvate metabolism and TCA cycle FECH +PWCOMMONS Pyruvate metabolism and TCA cycle PCK2 +PWCOMMONS Pyruvate metabolism and TCA cycle SUCLA2 +PWCOMMONS Pyruvate metabolism and TCA cycle GBE1 +PWCOMMONS Pyruvate metabolism and TCA cycle TXNRD1 +PWCOMMONS Pyruvate metabolism and TCA cycle TPI1 +PWCOMMONS Pyruvate metabolism and TCA cycle SLC25A10 +PWCOMMONS Pyruvate metabolism and TCA cycle G6PC +PWCOMMONS Pyruvate metabolism and TCA cycle PYCR1 +PWCOMMONS Pyruvate metabolism and TCA cycle NME2 +PWCOMMONS Pyruvate metabolism and TCA cycle RPIA +PWCOMMONS Pyruvate metabolism and TCA cycle AMPD2 +PWCOMMONS Pyruvate metabolism and TCA cycle PGD +PWCOMMONS Pyruvate metabolism and TCA cycle GSR +PWCOMMONS Pyruvate metabolism and TCA cycle +PWCOMMONS Metablism of nucleotides DPYD +PWCOMMONS Metablism of nucleotides OTC +PWCOMMONS Metablism of nucleotides DPYS +PWCOMMONS Metablism of nucleotides CPS1 +PWCOMMONS Metablism of nucleotides ASL +PWCOMMONS Metablism of nucleotides ASS1 +PWCOMMONS Metablism of nucleotides ARG1 +PWCOMMONS Metablism of nucleotides UPB1 +PWCOMMONS Metablism of nucleotides PYCR1 +PWCOMMONS Metablism of nucleotides GYG2 +PWCOMMONS Metablism of nucleotides GLRX +PWCOMMONS Metablism of nucleotides TYMS +PWCOMMONS Metablism of nucleotides TXN +PWCOMMONS Metablism of nucleotides UPP1 +PWCOMMONS Metablism of nucleotides CMPK1 +PWCOMMONS Metablism of nucleotides TYMP +PWCOMMONS Metablism of nucleotides GYS2 +PWCOMMONS Metablism of nucleotides DCTD +PWCOMMONS Metablism of nucleotides UGDH +PWCOMMONS Metablism of nucleotides RRM2 +PWCOMMONS Metablism of nucleotides RRM1 +PWCOMMONS Metablism of nucleotides DTYMK +PWCOMMONS Metablism of nucleotides TK1 +PWCOMMONS Metablism of nucleotides GBE1 +PWCOMMONS Metablism of nucleotides TXNRD1 +PWCOMMONS Metablism of nucleotides UCK1 +PWCOMMONS Metablism of nucleotides NT5C1A +PWCOMMONS Metablism of nucleotides CTPS +PWCOMMONS Metablism of nucleotides NME2 +PWCOMMONS Metablism of nucleotides NME1 +PWCOMMONS Metablism of nucleotides CDA +PWCOMMONS Metablism of nucleotides DCK +PWCOMMONS Metablism of nucleotides SLC35D1 +PWCOMMONS Metablism of nucleotides GSR +PWCOMMONS Metablism of nucleotides DHODH +PWCOMMONS Metablism of nucleotides CAD +PWCOMMONS Metablism of nucleotides UMPS +PWCOMMONS Metablism of nucleotides SLC28A3 +PWCOMMONS Metablism of nucleotides SLC29A1 +PWCOMMONS Metablism of nucleotides SLC29A2 +PWCOMMONS Metablism of nucleotides SLC28A2 +PWCOMMONS Metablism of nucleotides SLC28A1 +PWCOMMONS Metablism of nucleotides NT5C2 +PWCOMMONS Metablism of nucleotides XDH +PWCOMMONS Metablism of nucleotides GUK1 +PWCOMMONS Metablism of nucleotides GDA +PWCOMMONS Metablism of nucleotides NP +PWCOMMONS Metablism of nucleotides CAT +PWCOMMONS Metablism of nucleotides ADA +PWCOMMONS Metablism of nucleotides ADK +PWCOMMONS Metablism of nucleotides DGUOK +PWCOMMONS Metablism of nucleotides ATP5O +PWCOMMONS Metablism of nucleotides ATP5F1 +PWCOMMONS Metablism of nucleotides ATP5J +PWCOMMONS Metablism of nucleotides ATP5G1 +PWCOMMONS Metablism of nucleotides ATP5L +PWCOMMONS Metablism of nucleotides MT-ATP6 +PWCOMMONS Metablism of nucleotides ATP5J2 +PWCOMMONS Metablism of nucleotides MT-ATP8 +PWCOMMONS Metablism of nucleotides ATP5H +PWCOMMONS Metablism of nucleotides ATP5I +PWCOMMONS Metablism of nucleotides ATP5C1 +PWCOMMONS Metablism of nucleotides ATP5D +PWCOMMONS Metablism of nucleotides ATP5A1 +PWCOMMONS Metablism of nucleotides ATP5B +PWCOMMONS Metablism of nucleotides ATP5E +PWCOMMONS Metablism of nucleotides HPRT1 +PWCOMMONS Metablism of nucleotides AK1 +PWCOMMONS Metablism of nucleotides VAMP2 +PWCOMMONS Metablism of nucleotides ADSL +PWCOMMONS Metablism of nucleotides APRT +PWCOMMONS Metablism of nucleotides GMPS +PWCOMMONS Metablism of nucleotides IMPDH2 +PWCOMMONS Metablism of nucleotides IMPDH1 +PWCOMMONS Metablism of nucleotides ADSS +PWCOMMONS Metablism of nucleotides AMPD2 +PWCOMMONS Metablism of nucleotides AMPD1 +PWCOMMONS Metablism of nucleotides INS +PWCOMMONS Metablism of nucleotides SYT5 +PWCOMMONS Metablism of nucleotides KCNJ11 +PWCOMMONS Metablism of nucleotides AMPD3 +PWCOMMONS Metablism of nucleotides GART +PWCOMMONS Metablism of nucleotides PAICS +PWCOMMONS Metablism of nucleotides ATIC +PWCOMMONS Metablism of nucleotides PPAT +PWCOMMONS Metablism of nucleotides PFAS +PWCOMMONS Metablism of nucleotides ADSSL1 +PWCOMMONS Metablism of nucleotides AK5 +PWCOMMONS Metablism of nucleotides AK2 +PWCOMMONS Metablism of nucleotides TK2 +PWCOMMONS Metablism of nucleotides UCK2 +PWCOMMONS Metablism of nucleotides RRM2B +PWCOMMONS Metablism of nucleotides NME3 +PWCOMMONS Metablism of nucleotides NME4 +PWCOMMONS Metablism of nucleotides NT5E +PWCOMMONS Metablism of nucleotides NT5C +PWCOMMONS Metablism of nucleotides NT5M +PWCOMMONS Metablism of nucleotides NT5C1B +PWCOMMONS Metablism of nucleotides +PWCOMMONS Pyrimidine metabolism DPYD +PWCOMMONS Pyrimidine metabolism OTC +PWCOMMONS Pyrimidine metabolism DPYS +PWCOMMONS Pyrimidine metabolism CPS1 +PWCOMMONS Pyrimidine metabolism ASL +PWCOMMONS Pyrimidine metabolism ASS1 +PWCOMMONS Pyrimidine metabolism ARG1 +PWCOMMONS Pyrimidine metabolism UPB1 +PWCOMMONS Pyrimidine metabolism PYCR1 +PWCOMMONS Pyrimidine metabolism GYG2 +PWCOMMONS Pyrimidine metabolism GLRX +PWCOMMONS Pyrimidine metabolism TYMS +PWCOMMONS Pyrimidine metabolism TXN +PWCOMMONS Pyrimidine metabolism UPP1 +PWCOMMONS Pyrimidine metabolism CMPK1 +PWCOMMONS Pyrimidine metabolism TYMP +PWCOMMONS Pyrimidine metabolism GYS2 +PWCOMMONS Pyrimidine metabolism DCTD +PWCOMMONS Pyrimidine metabolism UGDH +PWCOMMONS Pyrimidine metabolism RRM2 +PWCOMMONS Pyrimidine metabolism RRM1 +PWCOMMONS Pyrimidine metabolism DTYMK +PWCOMMONS Pyrimidine metabolism TK1 +PWCOMMONS Pyrimidine metabolism GBE1 +PWCOMMONS Pyrimidine metabolism TXNRD1 +PWCOMMONS Pyrimidine metabolism UCK1 +PWCOMMONS Pyrimidine metabolism NT5C1A +PWCOMMONS Pyrimidine metabolism CTPS +PWCOMMONS Pyrimidine metabolism NME2 +PWCOMMONS Pyrimidine metabolism NME1 +PWCOMMONS Pyrimidine metabolism CDA +PWCOMMONS Pyrimidine metabolism DCK +PWCOMMONS Pyrimidine metabolism SLC35D1 +PWCOMMONS Pyrimidine metabolism GSR +PWCOMMONS Pyrimidine metabolism DHODH +PWCOMMONS Pyrimidine metabolism CAD +PWCOMMONS Pyrimidine metabolism UMPS +PWCOMMONS Pyrimidine metabolism +PWCOMMONS Pyrimidine salvage reactions GLRX +PWCOMMONS Pyrimidine salvage reactions TYMS +PWCOMMONS Pyrimidine salvage reactions TXN +PWCOMMONS Pyrimidine salvage reactions CPS1 +PWCOMMONS Pyrimidine salvage reactions UPP1 +PWCOMMONS Pyrimidine salvage reactions ASS1 +PWCOMMONS Pyrimidine salvage reactions CMPK1 +PWCOMMONS Pyrimidine salvage reactions OAT +PWCOMMONS Pyrimidine salvage reactions TYMP +PWCOMMONS Pyrimidine salvage reactions GYS2 +PWCOMMONS Pyrimidine salvage reactions DCTD +PWCOMMONS Pyrimidine salvage reactions UGDH +PWCOMMONS Pyrimidine salvage reactions RRM2 +PWCOMMONS Pyrimidine salvage reactions RRM1 +PWCOMMONS Pyrimidine salvage reactions DTYMK +PWCOMMONS Pyrimidine salvage reactions ARG1 +PWCOMMONS Pyrimidine salvage reactions TK1 +PWCOMMONS Pyrimidine salvage reactions GBE1 +PWCOMMONS Pyrimidine salvage reactions TXNRD1 +PWCOMMONS Pyrimidine salvage reactions DPYD +PWCOMMONS Pyrimidine salvage reactions DPYS +PWCOMMONS Pyrimidine salvage reactions UCK1 +PWCOMMONS Pyrimidine salvage reactions PYCR1 +PWCOMMONS Pyrimidine salvage reactions NT5C1A +PWCOMMONS Pyrimidine salvage reactions CTPS +PWCOMMONS Pyrimidine salvage reactions NME2 +PWCOMMONS Pyrimidine salvage reactions NME1 +PWCOMMONS Pyrimidine salvage reactions CDA +PWCOMMONS Pyrimidine salvage reactions OTC +PWCOMMONS Pyrimidine salvage reactions DCK +PWCOMMONS Pyrimidine salvage reactions SLC35D1 +PWCOMMONS Pyrimidine salvage reactions GSR +PWCOMMONS Pyrimidine salvage reactions ASL +PWCOMMONS Pyrimidine salvage reactions UPB1 +PWCOMMONS Pyrimidine salvage reactions +PWCOMMONS Pyrimidine biosynthesis (interconversion) TXN +PWCOMMONS Pyrimidine biosynthesis (interconversion) GLRX +PWCOMMONS Pyrimidine biosynthesis (interconversion) TYMS +PWCOMMONS Pyrimidine biosynthesis (interconversion) GBE1 +PWCOMMONS Pyrimidine biosynthesis (interconversion) TXNRD1 +PWCOMMONS Pyrimidine biosynthesis (interconversion) CMPK1 +PWCOMMONS Pyrimidine biosynthesis (interconversion) CTPS +PWCOMMONS Pyrimidine biosynthesis (interconversion) GYS2 +PWCOMMONS Pyrimidine biosynthesis (interconversion) NME2 +PWCOMMONS Pyrimidine biosynthesis (interconversion) NME1 +PWCOMMONS Pyrimidine biosynthesis (interconversion) DCTD +PWCOMMONS Pyrimidine biosynthesis (interconversion) UGDH +PWCOMMONS Pyrimidine biosynthesis (interconversion) RRM2 +PWCOMMONS Pyrimidine biosynthesis (interconversion) RRM1 +PWCOMMONS Pyrimidine biosynthesis (interconversion) DTYMK +PWCOMMONS Pyrimidine biosynthesis (interconversion) SLC35D1 +PWCOMMONS Pyrimidine biosynthesis (interconversion) GSR +PWCOMMONS Pyrimidine biosynthesis (interconversion) +PWCOMMONS Pyrimidine catabolism DPYD +PWCOMMONS Pyrimidine catabolism OTC +PWCOMMONS Pyrimidine catabolism DPYS +PWCOMMONS Pyrimidine catabolism CPS1 +PWCOMMONS Pyrimidine catabolism ASL +PWCOMMONS Pyrimidine catabolism ASS1 +PWCOMMONS Pyrimidine catabolism ARG1 +PWCOMMONS Pyrimidine catabolism UPB1 +PWCOMMONS Pyrimidine catabolism PYCR1 +PWCOMMONS Pyrimidine catabolism +PWCOMMONS Synaptic Transmission CPLX1 +PWCOMMONS Synaptic Transmission SLC18A2 +PWCOMMONS Synaptic Transmission VAMP2 +PWCOMMONS Synaptic Transmission RAB3A +PWCOMMONS Synaptic Transmission SYT1 +PWCOMMONS Synaptic Transmission DBH +PWCOMMONS Synaptic Transmission MAOA +PWCOMMONS Synaptic Transmission DDC +PWCOMMONS Synaptic Transmission AANAT +PWCOMMONS Synaptic Transmission SLC22A2 +PWCOMMONS Synaptic Transmission GLS +PWCOMMONS Synaptic Transmission GLUL +PWCOMMONS Synaptic Transmission SLC18A3 +PWCOMMONS Synaptic Transmission SLC17A7 +PWCOMMONS Synaptic Transmission SLC38A1 +PWCOMMONS Synaptic Transmission UNC13B +PWCOMMONS Synaptic Transmission SLC5A7 +PWCOMMONS Synaptic Transmission CHAT +PWCOMMONS Synaptic Transmission PNMT +PWCOMMONS Synaptic Transmission DBT +PWCOMMONS Synaptic Transmission BCKDHA +PWCOMMONS Synaptic Transmission BCKDHB +PWCOMMONS Synaptic Transmission DLD +PWCOMMONS Synaptic Transmission BCAT1 +PWCOMMONS Synaptic Transmission MCCC2 +PWCOMMONS Synaptic Transmission MCCC1 +PWCOMMONS Synaptic Transmission AUH +PWCOMMONS Synaptic Transmission IVD +PWCOMMONS Synaptic Transmission BCAT2 +PWCOMMONS Synaptic Transmission GJA10 +PWCOMMONS Synaptic Transmission GJD2 +PWCOMMONS Synaptic Transmission PANX2 +PWCOMMONS Synaptic Transmission PANX1 +PWCOMMONS Synaptic Transmission GJC1 +PWCOMMONS Synaptic Transmission PICK1 +PWCOMMONS Synaptic Transmission NSF +PWCOMMONS Synaptic Transmission AKAP5 +PWCOMMONS Synaptic Transmission EPB41L1 +PWCOMMONS Synaptic Transmission DLG1 +PWCOMMONS Synaptic Transmission DLG4 +PWCOMMONS Synaptic Transmission MDM2 +PWCOMMONS Synaptic Transmission ALDH2 +PWCOMMONS Synaptic Transmission COMT +PWCOMMONS Synaptic Transmission SLC6A3 +PWCOMMONS Synaptic Transmission BCHE +PWCOMMONS Synaptic Transmission +PWCOMMONS Transmission across Electrical Synapses GJD2 +PWCOMMONS Transmission across Electrical Synapses PANX2 +PWCOMMONS Transmission across Electrical Synapses PANX1 +PWCOMMONS Transmission across Electrical Synapses GJC1 +PWCOMMONS Transmission across Electrical Synapses +PWCOMMONS Transmission across Chemical Synapses CPLX1 +PWCOMMONS Transmission across Chemical Synapses SLC18A2 +PWCOMMONS Transmission across Chemical Synapses VAMP2 +PWCOMMONS Transmission across Chemical Synapses RAB3A +PWCOMMONS Transmission across Chemical Synapses SYT1 +PWCOMMONS Transmission across Chemical Synapses DBH +PWCOMMONS Transmission across Chemical Synapses MAOA +PWCOMMONS Transmission across Chemical Synapses DDC +PWCOMMONS Transmission across Chemical Synapses AANAT +PWCOMMONS Transmission across Chemical Synapses SLC22A2 +PWCOMMONS Transmission across Chemical Synapses GLS +PWCOMMONS Transmission across Chemical Synapses GLUL +PWCOMMONS Transmission across Chemical Synapses SLC18A3 +PWCOMMONS Transmission across Chemical Synapses SLC17A7 +PWCOMMONS Transmission across Chemical Synapses SLC38A1 +PWCOMMONS Transmission across Chemical Synapses UNC13B +PWCOMMONS Transmission across Chemical Synapses SLC5A7 +PWCOMMONS Transmission across Chemical Synapses CHAT +PWCOMMONS Transmission across Chemical Synapses PNMT +PWCOMMONS Transmission across Chemical Synapses DBT +PWCOMMONS Transmission across Chemical Synapses BCKDHA +PWCOMMONS Transmission across Chemical Synapses BCKDHB +PWCOMMONS Transmission across Chemical Synapses DLD +PWCOMMONS Transmission across Chemical Synapses BCAT1 +PWCOMMONS Transmission across Chemical Synapses MCCC2 +PWCOMMONS Transmission across Chemical Synapses MCCC1 +PWCOMMONS Transmission across Chemical Synapses AUH +PWCOMMONS Transmission across Chemical Synapses IVD +PWCOMMONS Transmission across Chemical Synapses BCAT2 +PWCOMMONS Transmission across Chemical Synapses PICK1 +PWCOMMONS Transmission across Chemical Synapses NSF +PWCOMMONS Transmission across Chemical Synapses AKAP5 +PWCOMMONS Transmission across Chemical Synapses EPB41L1 +PWCOMMONS Transmission across Chemical Synapses DLG1 +PWCOMMONS Transmission across Chemical Synapses DLG4 +PWCOMMONS Transmission across Chemical Synapses MDM2 +PWCOMMONS Transmission across Chemical Synapses ALDH2 +PWCOMMONS Transmission across Chemical Synapses COMT +PWCOMMONS Transmission across Chemical Synapses SLC6A3 +PWCOMMONS Transmission across Chemical Synapses BCHE +PWCOMMONS Transmission across Chemical Synapses +PWCOMMONS Neurotransmitter Release Cycle CPLX1 +PWCOMMONS Neurotransmitter Release Cycle SLC18A2 +PWCOMMONS Neurotransmitter Release Cycle VAMP2 +PWCOMMONS Neurotransmitter Release Cycle RAB3A +PWCOMMONS Neurotransmitter Release Cycle SYT1 +PWCOMMONS Neurotransmitter Release Cycle DBH +PWCOMMONS Neurotransmitter Release Cycle MAOA +PWCOMMONS Neurotransmitter Release Cycle DDC +PWCOMMONS Neurotransmitter Release Cycle AANAT +PWCOMMONS Neurotransmitter Release Cycle SLC22A2 +PWCOMMONS Neurotransmitter Release Cycle GLS +PWCOMMONS Neurotransmitter Release Cycle GLUL +PWCOMMONS Neurotransmitter Release Cycle SLC18A3 +PWCOMMONS Neurotransmitter Release Cycle SLC17A7 +PWCOMMONS Neurotransmitter Release Cycle SLC38A1 +PWCOMMONS Neurotransmitter Release Cycle UNC13B +PWCOMMONS Neurotransmitter Release Cycle SLC5A7 +PWCOMMONS Neurotransmitter Release Cycle CHAT +PWCOMMONS Neurotransmitter Release Cycle PNMT +PWCOMMONS Neurotransmitter Release Cycle DBT +PWCOMMONS Neurotransmitter Release Cycle BCKDHA +PWCOMMONS Neurotransmitter Release Cycle BCKDHB +PWCOMMONS Neurotransmitter Release Cycle DLD +PWCOMMONS Neurotransmitter Release Cycle BCAT1 +PWCOMMONS Neurotransmitter Release Cycle MCCC2 +PWCOMMONS Neurotransmitter Release Cycle MCCC1 +PWCOMMONS Neurotransmitter Release Cycle AUH +PWCOMMONS Neurotransmitter Release Cycle IVD +PWCOMMONS Neurotransmitter Release Cycle BCAT2 +PWCOMMONS Neurotransmitter Release Cycle +PWCOMMONS Norepinephrine Neurotransmitter Release Cycle CPLX1 +PWCOMMONS Norepinephrine Neurotransmitter Release Cycle SLC18A2 +PWCOMMONS Norepinephrine Neurotransmitter Release Cycle VAMP2 +PWCOMMONS Norepinephrine Neurotransmitter Release Cycle RAB3A +PWCOMMONS Norepinephrine Neurotransmitter Release Cycle SYT1 +PWCOMMONS Norepinephrine Neurotransmitter Release Cycle DBH +PWCOMMONS Norepinephrine Neurotransmitter Release Cycle MAOA +PWCOMMONS Norepinephrine Neurotransmitter Release Cycle SLC22A2 +PWCOMMONS Norepinephrine Neurotransmitter Release Cycle +PWCOMMONS Neuroransmitter Receptor Binding And Downstream Transmission In The Postsynaptic Cell NSF +PWCOMMONS Neuroransmitter Receptor Binding And Downstream Transmission In The Postsynaptic Cell AKAP5 +PWCOMMONS Neuroransmitter Receptor Binding And Downstream Transmission In The Postsynaptic Cell EPB41L1 +PWCOMMONS Neuroransmitter Receptor Binding And Downstream Transmission In The Postsynaptic Cell DLG1 +PWCOMMONS Neuroransmitter Receptor Binding And Downstream Transmission In The Postsynaptic Cell DLG4 +PWCOMMONS Neuroransmitter Receptor Binding And Downstream Transmission In The Postsynaptic Cell MDM2 +PWCOMMONS Neuroransmitter Receptor Binding And Downstream Transmission In The Postsynaptic Cell +PWCOMMONS Depolarization of the Presynaptic Terminal Triggers the Opening of Calcium Channels CPLX1 +PWCOMMONS Depolarization of the Presynaptic Terminal Triggers the Opening of Calcium Channels VAMP2 +PWCOMMONS Depolarization of the Presynaptic Terminal Triggers the Opening of Calcium Channels SLC17A7 +PWCOMMONS Depolarization of the Presynaptic Terminal Triggers the Opening of Calcium Channels RAB3A +PWCOMMONS Depolarization of the Presynaptic Terminal Triggers the Opening of Calcium Channels SYT1 +PWCOMMONS Depolarization of the Presynaptic Terminal Triggers the Opening of Calcium Channels SLC18A3 +PWCOMMONS Depolarization of the Presynaptic Terminal Triggers the Opening of Calcium Channels +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NT5C2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PFKFB1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5O +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5F1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5J +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5G1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5L +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-ATP6 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5J2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-ATP8 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5H +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5I +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5C1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5D +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5A1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5B +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATP5E +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MLX +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MLXIPL +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate HPRT1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UQCRC1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UQCRB +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UQCR10 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UQCR +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UQCRC2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UQCRH +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UQCRQ +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UQCRFS1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-CYB +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate CYC1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-CO2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate COX8A +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate COX7C +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-CO3 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate COX6C +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate COX5B +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-CO1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate COX7A2L +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate COX4I1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate COX6A1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate COX7B +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate COX6B1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate COX5A +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GOT2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PGLS +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate HADH +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UPP1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PDHX +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PDHA1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PDHB +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate DLAT +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate DLD +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GOT1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PC +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PGK1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ADSL +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GCDH +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MDH1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PCK1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ATIC +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate OAT +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NP +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GYS2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ECHS1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate TXN +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SUCLG1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SUCLG2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ARG1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate KCNJ11 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate AMPD3 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate RPE +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GLRX +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SDHC +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SDHD +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SDHB +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SDHA +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate DPYD +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GART +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GPT +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ACLY +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate DPYS +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate AK1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MDH2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UMPS +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate CYCS +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFS3 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFS4 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFS6 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA5 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFS5 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFS1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFS2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFV2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFV3 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFV1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA4 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA11 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-ND3 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA13 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFB5 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFC1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA6 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFC2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA3 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFB3 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFB1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFAB1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-ND4 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-ND5 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFB9 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFB6 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFB4 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA8 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFB7 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA12 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFB2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-ND4L +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-ND2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFB10 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA7 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFB8 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFB11 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-ND6 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate MT-ND1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFS7 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA10 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFS8 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NDUFA9 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate VAMP2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NT5C1A +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate CTPS +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate FASN +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PRPS1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate DLST +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate OGDH +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ACACB +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GMPS +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GUK1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate IMPDH2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GDA +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NME1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate IMPDH1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ADSS +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate OTC +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate FH +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate INS +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SYT5 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PFAS +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SLC35D1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ASL +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UPB1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate AGPAT1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SLC25A21 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GPI +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UROD +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate CPOX +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UROS +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate XDH +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PAICS +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate CPS1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate TALDO1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ASS1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate CMPK1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ALAD +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate CS +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate CAT +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SLC25A1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PPOX +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate ACO2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate IDH3G +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate IDH3A +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate IDH3B +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate UGDH +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate RRM2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate RRM1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate G6PD +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate AMPD1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SLC25A11 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PPAT +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate TKT +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate FECH +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PPAP2C +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PCK2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SUCLA2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GBE1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate TXNRD1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PPAP2B +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate TPI1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate SLC25A10 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate G6PC +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PYCR1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate DGAT1 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate NME2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate RPIA +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate AMPD2 +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PGD +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate GSR +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate PPAP2A +PWCOMMONS Insulin effects increased synthesis of Xylulose-5-Phosphate +PWCOMMONS Insulin receptor recycling YWHAB +PWCOMMONS Insulin receptor recycling INSR +PWCOMMONS Insulin receptor recycling INS +PWCOMMONS Insulin receptor recycling RHEB +PWCOMMONS Insulin receptor recycling FRAP1 +PWCOMMONS Insulin receptor recycling LST8 +PWCOMMONS Insulin receptor recycling EIF4B +PWCOMMONS Insulin receptor recycling RPS6 +PWCOMMONS Insulin receptor recycling RPS6KB1 +PWCOMMONS Insulin receptor recycling EIF4EBP1 +PWCOMMONS Insulin receptor recycling EIF4E +PWCOMMONS Insulin receptor recycling EIF4G1 +PWCOMMONS Insulin receptor recycling EEF2K +PWCOMMONS Insulin receptor recycling AKT2 +PWCOMMONS Insulin receptor recycling PDE3B +PWCOMMONS Insulin receptor recycling TSC1 +PWCOMMONS Insulin receptor recycling PDPK1 +PWCOMMONS Insulin receptor recycling RPS6KA5 +PWCOMMONS Insulin receptor recycling MAPK3 +PWCOMMONS Insulin receptor recycling ATF1 +PWCOMMONS Insulin receptor recycling CREB1 +PWCOMMONS Insulin receptor recycling MAPK1 +PWCOMMONS Insulin receptor recycling SHC1 +PWCOMMONS Insulin receptor recycling SOS1 +PWCOMMONS Insulin receptor recycling MAP2K1 +PWCOMMONS Insulin receptor recycling MAP2K2 +PWCOMMONS Insulin receptor recycling +PWCOMMONS Insulin receptor signalling cascade RAF1 +PWCOMMONS Insulin receptor signalling cascade YWHAB +PWCOMMONS Insulin receptor signalling cascade SHC1 +PWCOMMONS Insulin receptor signalling cascade SOS1 +PWCOMMONS Insulin receptor signalling cascade MAP2K1 +PWCOMMONS Insulin receptor signalling cascade MAPK3 +PWCOMMONS Insulin receptor signalling cascade INSR +PWCOMMONS Insulin receptor signalling cascade INS +PWCOMMONS Insulin receptor signalling cascade MAPK1 +PWCOMMONS Insulin receptor signalling cascade RPS6KA5 +PWCOMMONS Insulin receptor signalling cascade ATF1 +PWCOMMONS Insulin receptor signalling cascade CREB1 +PWCOMMONS Insulin receptor signalling cascade RHEB +PWCOMMONS Insulin receptor signalling cascade FRAP1 +PWCOMMONS Insulin receptor signalling cascade LST8 +PWCOMMONS Insulin receptor signalling cascade EIF4B +PWCOMMONS Insulin receptor signalling cascade RPS6 +PWCOMMONS Insulin receptor signalling cascade RPS6KB1 +PWCOMMONS Insulin receptor signalling cascade EIF4EBP1 +PWCOMMONS Insulin receptor signalling cascade EIF4E +PWCOMMONS Insulin receptor signalling cascade EIF4G1 +PWCOMMONS Insulin receptor signalling cascade EEF2K +PWCOMMONS Insulin receptor signalling cascade AKT2 +PWCOMMONS Insulin receptor signalling cascade PDE3B +PWCOMMONS Insulin receptor signalling cascade TSC1 +PWCOMMONS Insulin receptor signalling cascade PDPK1 +PWCOMMONS Insulin receptor signalling cascade +PWCOMMONS SHC-related events RAF1 +PWCOMMONS SHC-related events YWHAB +PWCOMMONS SHC-related events SHC1 +PWCOMMONS SHC-related events SOS1 +PWCOMMONS SHC-related events MAP2K1 +PWCOMMONS SHC-related events MAPK3 +PWCOMMONS SHC-related events INSR +PWCOMMONS SHC-related events INS +PWCOMMONS SHC-related events MAPK1 +PWCOMMONS SHC-related events RPS6KA5 +PWCOMMONS SHC-related events ATF1 +PWCOMMONS SHC-related events CREB1 +PWCOMMONS SHC-related events +PWCOMMONS Activation of BH3-only proteins BBC3 +PWCOMMONS Activation of BH3-only proteins BCL2L1 +PWCOMMONS Activation of BH3-only proteins TFDP1 +PWCOMMONS Activation of BH3-only proteins E2F1 +PWCOMMONS Activation of BH3-only proteins PMAIP1 +PWCOMMONS Activation of BH3-only proteins BAD +PWCOMMONS Activation of BH3-only proteins YWHAB +PWCOMMONS Activation of BH3-only proteins AKT1 +PWCOMMONS Activation of BH3-only proteins PPP3R1 +PWCOMMONS Activation of BH3-only proteins PPP3CC +PWCOMMONS Activation of BH3-only proteins BID +PWCOMMONS Activation of BH3-only proteins MAPK8 +PWCOMMONS Activation of BH3-only proteins BMF +PWCOMMONS Activation of BH3-only proteins DYNLL2 +PWCOMMONS Activation of BH3-only proteins DYNLL1 +PWCOMMONS Activation of BH3-only proteins +PWCOMMONS Activation of NOXA and translocation to mitochondria PMAIP1 +PWCOMMONS Activation of NOXA and translocation to mitochondria BCL2 +PWCOMMONS Activation of NOXA and translocation to mitochondria TFDP1 +PWCOMMONS Activation of NOXA and translocation to mitochondria E2F1 +PWCOMMONS Activation of NOXA and translocation to mitochondria +PWCOMMONS Activation of PUMA and translocation to mitochondria BBC3 +PWCOMMONS Activation of PUMA and translocation to mitochondria BCL2L1 +PWCOMMONS Activation of PUMA and translocation to mitochondria TFDP1 +PWCOMMONS Activation of PUMA and translocation to mitochondria E2F1 +PWCOMMONS Activation of PUMA and translocation to mitochondria +PWCOMMONS Activation of BIM and translocation to mitochondria BMF +PWCOMMONS Activation of BIM and translocation to mitochondria DYNLL2 +PWCOMMONS Activation of BIM and translocation to mitochondria DYNLL1 +PWCOMMONS Activation of BIM and translocation to mitochondria BCL2 +PWCOMMONS Activation of BIM and translocation to mitochondria +PWCOMMONS Double-Strand Break Repair RPA3 +PWCOMMONS Double-Strand Break Repair RPA2 +PWCOMMONS Double-Strand Break Repair RAD50 +PWCOMMONS Double-Strand Break Repair MRE11A +PWCOMMONS Double-Strand Break Repair H2AFX +PWCOMMONS Double-Strand Break Repair BRCA1 +PWCOMMONS Double-Strand Break Repair TP53BP1 +PWCOMMONS Double-Strand Break Repair MDC1 +PWCOMMONS Double-Strand Break Repair NBN +PWCOMMONS Double-Strand Break Repair ATM +PWCOMMONS Double-Strand Break Repair LIG1 +PWCOMMONS Double-Strand Break Repair PCNA +PWCOMMONS Double-Strand Break Repair POLD4 +PWCOMMONS Double-Strand Break Repair POLD3 +PWCOMMONS Double-Strand Break Repair POLD2 +PWCOMMONS Double-Strand Break Repair POLD1 +PWCOMMONS Double-Strand Break Repair RAD51 +PWCOMMONS Double-Strand Break Repair RAD52 +PWCOMMONS Double-Strand Break Repair BRCA2 +PWCOMMONS Double-Strand Break Repair PMAIP1 +PWCOMMONS Double-Strand Break Repair BCL2 +PWCOMMONS Double-Strand Break Repair BCL2L1 +PWCOMMONS Double-Strand Break Repair TP53 +PWCOMMONS Double-Strand Break Repair MDM2 +PWCOMMONS Double-Strand Break Repair BBC3 +PWCOMMONS Double-Strand Break Repair LIG4 +PWCOMMONS Double-Strand Break Repair PRKDC +PWCOMMONS Double-Strand Break Repair XRCC6 +PWCOMMONS Double-Strand Break Repair XRCC5 +PWCOMMONS Double-Strand Break Repair XRCC4 +PWCOMMONS Double-Strand Break Repair +PWCOMMONS Ornithine and proline metabolism SMS +PWCOMMONS Ornithine and proline metabolism OAT +PWCOMMONS Ornithine and proline metabolism FZR1 +PWCOMMONS Ornithine and proline metabolism ANAPC5 +PWCOMMONS Ornithine and proline metabolism ANAPC11 +PWCOMMONS Ornithine and proline metabolism CDC23 +PWCOMMONS Ornithine and proline metabolism ANAPC1 +PWCOMMONS Ornithine and proline metabolism ANAPC2 +PWCOMMONS Ornithine and proline metabolism UBE2D1 +PWCOMMONS Ornithine and proline metabolism CDC27 +PWCOMMONS Ornithine and proline metabolism ANAPC4 +PWCOMMONS Ornithine and proline metabolism ANAPC10 +PWCOMMONS Ornithine and proline metabolism ANAPC7 +PWCOMMONS Ornithine and proline metabolism UBE2C +PWCOMMONS Ornithine and proline metabolism CDC26 +PWCOMMONS Ornithine and proline metabolism CDC16 +PWCOMMONS Ornithine and proline metabolism UBE2E1 +PWCOMMONS Ornithine and proline metabolism PSMC6 +PWCOMMONS Ornithine and proline metabolism PSMA3 +PWCOMMONS Ornithine and proline metabolism PSMD8 +PWCOMMONS Ornithine and proline metabolism PSMD10 +PWCOMMONS Ornithine and proline metabolism PSMD1 +PWCOMMONS Ornithine and proline metabolism PSMD6 +PWCOMMONS Ornithine and proline metabolism PSMB5 +PWCOMMONS Ornithine and proline metabolism PSMB4 +PWCOMMONS Ornithine and proline metabolism PSMD4 +PWCOMMONS Ornithine and proline metabolism PSMA2 +PWCOMMONS Ornithine and proline metabolism PSMB8 +PWCOMMONS Ornithine and proline metabolism PSMD5 +PWCOMMONS Ornithine and proline metabolism PSMB6 +PWCOMMONS Ornithine and proline metabolism PSME3 +PWCOMMONS Ornithine and proline metabolism PSMB3 +PWCOMMONS Ornithine and proline metabolism PSMB7 +PWCOMMONS Ornithine and proline metabolism PSME1 +PWCOMMONS Ornithine and proline metabolism PSMD11 +PWCOMMONS Ornithine and proline metabolism PSMA5 +PWCOMMONS Ornithine and proline metabolism PSMC5 +PWCOMMONS Ornithine and proline metabolism PSMC1 +PWCOMMONS Ornithine and proline metabolism PSMD7 +PWCOMMONS Ornithine and proline metabolism PSMD3 +PWCOMMONS Ornithine and proline metabolism PSMB2 +PWCOMMONS Ornithine and proline metabolism PSMD13 +PWCOMMONS Ornithine and proline metabolism PSMD14 +PWCOMMONS Ornithine and proline metabolism PSMB1 +PWCOMMONS Ornithine and proline metabolism PSMA6 +PWCOMMONS Ornithine and proline metabolism PSMB9 +PWCOMMONS Ornithine and proline metabolism PSMB10 +PWCOMMONS Ornithine and proline metabolism PSMD9 +PWCOMMONS Ornithine and proline metabolism PSMC4 +PWCOMMONS Ornithine and proline metabolism PSMA1 +PWCOMMONS Ornithine and proline metabolism PSMA4 +PWCOMMONS Ornithine and proline metabolism PSMA7 +PWCOMMONS Ornithine and proline metabolism PSMF1 +PWCOMMONS Ornithine and proline metabolism PSME2 +PWCOMMONS Ornithine and proline metabolism PSMD12 +PWCOMMONS Ornithine and proline metabolism PSMC3 +PWCOMMONS Ornithine and proline metabolism PSMC2 +PWCOMMONS Ornithine and proline metabolism PSMD2 +PWCOMMONS Ornithine and proline metabolism ODC1 +PWCOMMONS Ornithine and proline metabolism NQO1 +PWCOMMONS Ornithine and proline metabolism AZIN1 +PWCOMMONS Ornithine and proline metabolism ASL +PWCOMMONS Ornithine and proline metabolism ASS1 +PWCOMMONS Ornithine and proline metabolism ARG1 +PWCOMMONS Ornithine and proline metabolism SRM +PWCOMMONS Ornithine and proline metabolism PYCR1 +PWCOMMONS Ornithine and proline metabolism PRODH +PWCOMMONS Ornithine and proline metabolism ALDH4A1 +PWCOMMONS Ornithine and proline metabolism +PWCOMMONS Proline catabolism PRODH +PWCOMMONS Proline catabolism ALDH4A1 +PWCOMMONS Proline catabolism OAT +PWCOMMONS Proline catabolism ASL +PWCOMMONS Proline catabolism ASS1 +PWCOMMONS Proline catabolism ARG1 +PWCOMMONS Proline catabolism PYCR1 +PWCOMMONS Proline catabolism +PWCOMMONS Ornithine metabolism SMS +PWCOMMONS Ornithine metabolism OAT +PWCOMMONS Ornithine metabolism FZR1 +PWCOMMONS Ornithine metabolism ANAPC5 +PWCOMMONS Ornithine metabolism ANAPC11 +PWCOMMONS Ornithine metabolism CDC23 +PWCOMMONS Ornithine metabolism ANAPC1 +PWCOMMONS Ornithine metabolism ANAPC2 +PWCOMMONS Ornithine metabolism UBE2D1 +PWCOMMONS Ornithine metabolism CDC27 +PWCOMMONS Ornithine metabolism ANAPC4 +PWCOMMONS Ornithine metabolism ANAPC10 +PWCOMMONS Ornithine metabolism ANAPC7 +PWCOMMONS Ornithine metabolism UBE2C +PWCOMMONS Ornithine metabolism CDC26 +PWCOMMONS Ornithine metabolism CDC16 +PWCOMMONS Ornithine metabolism UBE2E1 +PWCOMMONS Ornithine metabolism PSMC6 +PWCOMMONS Ornithine metabolism PSMA3 +PWCOMMONS Ornithine metabolism PSMD8 +PWCOMMONS Ornithine metabolism PSMD10 +PWCOMMONS Ornithine metabolism PSMD1 +PWCOMMONS Ornithine metabolism PSMD6 +PWCOMMONS Ornithine metabolism PSMB5 +PWCOMMONS Ornithine metabolism PSMB4 +PWCOMMONS Ornithine metabolism PSMD4 +PWCOMMONS Ornithine metabolism PSMA2 +PWCOMMONS Ornithine metabolism PSMB8 +PWCOMMONS Ornithine metabolism PSMD5 +PWCOMMONS Ornithine metabolism PSMB6 +PWCOMMONS Ornithine metabolism PSME3 +PWCOMMONS Ornithine metabolism PSMB3 +PWCOMMONS Ornithine metabolism PSMB7 +PWCOMMONS Ornithine metabolism PSME1 +PWCOMMONS Ornithine metabolism PSMD11 +PWCOMMONS Ornithine metabolism PSMA5 +PWCOMMONS Ornithine metabolism PSMC5 +PWCOMMONS Ornithine metabolism PSMC1 +PWCOMMONS Ornithine metabolism PSMD7 +PWCOMMONS Ornithine metabolism PSMD3 +PWCOMMONS Ornithine metabolism PSMB2 +PWCOMMONS Ornithine metabolism PSMD13 +PWCOMMONS Ornithine metabolism PSMD14 +PWCOMMONS Ornithine metabolism PSMB1 +PWCOMMONS Ornithine metabolism PSMA6 +PWCOMMONS Ornithine metabolism PSMB9 +PWCOMMONS Ornithine metabolism PSMB10 +PWCOMMONS Ornithine metabolism PSMD9 +PWCOMMONS Ornithine metabolism PSMC4 +PWCOMMONS Ornithine metabolism PSMA1 +PWCOMMONS Ornithine metabolism PSMA4 +PWCOMMONS Ornithine metabolism PSMA7 +PWCOMMONS Ornithine metabolism PSMF1 +PWCOMMONS Ornithine metabolism PSME2 +PWCOMMONS Ornithine metabolism PSMD12 +PWCOMMONS Ornithine metabolism PSMC3 +PWCOMMONS Ornithine metabolism PSMC2 +PWCOMMONS Ornithine metabolism PSMD2 +PWCOMMONS Ornithine metabolism ODC1 +PWCOMMONS Ornithine metabolism NQO1 +PWCOMMONS Ornithine metabolism AZIN1 +PWCOMMONS Ornithine metabolism ASL +PWCOMMONS Ornithine metabolism ASS1 +PWCOMMONS Ornithine metabolism ARG1 +PWCOMMONS Ornithine metabolism SRM +PWCOMMONS Ornithine metabolism PYCR1 +PWCOMMONS Ornithine metabolism +PWCOMMONS Regulation of ornithine decarboxylase (ODC) ANAPC5 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) ANAPC11 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) CDC23 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) ANAPC1 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) ANAPC2 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) UBE2D1 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) CDC27 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) ANAPC4 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) ANAPC10 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) ANAPC7 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) UBE2C +PWCOMMONS Regulation of ornithine decarboxylase (ODC) CDC26 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) CDC16 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) UBE2E1 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMC6 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMA3 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD8 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD10 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD1 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD6 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMB5 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMB4 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD4 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMA2 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMB8 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD5 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMB6 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSME3 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMB3 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMB7 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSME1 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD11 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMA5 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMC5 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMC1 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD7 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD3 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMB2 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD13 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD14 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMB1 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMA6 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMB9 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMB10 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD9 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMC4 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMA1 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMA4 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMA7 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMF1 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSME2 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD12 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMC3 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMC2 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) PSMD2 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) ODC1 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) SRM +PWCOMMONS Regulation of ornithine decarboxylase (ODC) NQO1 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) AZIN1 +PWCOMMONS Regulation of ornithine decarboxylase (ODC) SMS +PWCOMMONS Regulation of ornithine decarboxylase (ODC) +PWCOMMONS Activation of Chaperones by ATF6-alpha MBTPS1 +PWCOMMONS Activation of Chaperones by ATF6-alpha HSPA5 +PWCOMMONS Activation of Chaperones by ATF6-alpha MBTPS2 +PWCOMMONS Activation of Chaperones by ATF6-alpha NFYA +PWCOMMONS Activation of Chaperones by ATF6-alpha +PWCOMMONS Vitamin C (ascorbate) metabolism CYB5A +PWCOMMONS Vitamin C (ascorbate) metabolism GSR +PWCOMMONS Vitamin C (ascorbate) metabolism +PWCOMMONS Conjugation of carboxylic acids GLYAT +PWCOMMONS Conjugation of carboxylic acids +PWCOMMONS Conjugation of salicylate with glycine GLYAT +PWCOMMONS Conjugation of salicylate with glycine +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation ANAPC5 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation ANAPC11 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation CDC23 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation ANAPC1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation ANAPC2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation UBE2D1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation CDC27 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation ANAPC4 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation ANAPC10 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation ANAPC7 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation UBE2C +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation CDC26 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation CDC16 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation UBE2E1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMC6 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMA3 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD8 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD10 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD6 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMB5 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMB4 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD4 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMA2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMB8 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD5 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMB6 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSME3 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMB3 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMB7 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSME1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD11 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMA5 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMC5 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMC1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD7 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD3 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMB2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD13 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD14 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMB1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMA6 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMB9 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMB10 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD9 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMC4 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMA1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMA4 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMA7 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMF1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSME2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD12 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMC3 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMC2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PSMD2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation CDC25A +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation PAK2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation +PWCOMMONS Vitamin B2 (riboflavin) metabolism FLAD1 +PWCOMMONS Vitamin B2 (riboflavin) metabolism ENPP1 +PWCOMMONS Vitamin B2 (riboflavin) metabolism ACP5 +PWCOMMONS Vitamin B2 (riboflavin) metabolism +PWCOMMONS Glucuronidation GYG2 +PWCOMMONS Glucuronidation GBE1 +PWCOMMONS Glucuronidation SLC35D1 +PWCOMMONS Glucuronidation GYS2 +PWCOMMONS Glucuronidation +PWCOMMONS Formation of the active cofactor, UDP-glucuronate GYG2 +PWCOMMONS Formation of the active cofactor, UDP-glucuronate GBE1 +PWCOMMONS Formation of the active cofactor, UDP-glucuronate SLC35D1 +PWCOMMONS Formation of the active cofactor, UDP-glucuronate GYS2 +PWCOMMONS Formation of the active cofactor, UDP-glucuronate +PWCOMMONS P450 Hydroxylations CYP2E1 +PWCOMMONS P450 Hydroxylations CYP2A6 +PWCOMMONS P450 Hydroxylations CYP1A2 +PWCOMMONS P450 Hydroxylations +PWCOMMONS Simple hydroxylation CYP2E1 +PWCOMMONS Simple hydroxylation CYP2A6 +PWCOMMONS Simple hydroxylation +PWCOMMONS Activation, translocation and oligomerization of BAX DSG3 +PWCOMMONS Activation, translocation and oligomerization of BAX GSN +PWCOMMONS Activation, translocation and oligomerization of BAX DIABLO +PWCOMMONS Activation, translocation and oligomerization of BAX XIAP +PWCOMMONS Activation, translocation and oligomerization of BAX CASP3 +PWCOMMONS Activation, translocation and oligomerization of BAX BAX +PWCOMMONS Activation, translocation and oligomerization of BAX PAK2 +PWCOMMONS Activation, translocation and oligomerization of BAX ARHGAP10 +PWCOMMONS Activation, translocation and oligomerization of BAX GAS2 +PWCOMMONS Activation, translocation and oligomerization of BAX VIM +PWCOMMONS Activation, translocation and oligomerization of BAX CASP9 +PWCOMMONS Activation, translocation and oligomerization of BAX DSG1 +PWCOMMONS Activation, translocation and oligomerization of BAX CYCS +PWCOMMONS Activation, translocation and oligomerization of BAX APAF1 +PWCOMMONS Activation, translocation and oligomerization of BAX FZR1 +PWCOMMONS Activation, translocation and oligomerization of BAX ANAPC5 +PWCOMMONS Activation, translocation and oligomerization of BAX ANAPC11 +PWCOMMONS Activation, translocation and oligomerization of BAX CDC23 +PWCOMMONS Activation, translocation and oligomerization of BAX ANAPC1 +PWCOMMONS Activation, translocation and oligomerization of BAX ANAPC2 +PWCOMMONS Activation, translocation and oligomerization of BAX UBE2D1 +PWCOMMONS Activation, translocation and oligomerization of BAX CDC27 +PWCOMMONS Activation, translocation and oligomerization of BAX ANAPC4 +PWCOMMONS Activation, translocation and oligomerization of BAX ANAPC10 +PWCOMMONS Activation, translocation and oligomerization of BAX ANAPC7 +PWCOMMONS Activation, translocation and oligomerization of BAX UBE2C +PWCOMMONS Activation, translocation and oligomerization of BAX CDC26 +PWCOMMONS Activation, translocation and oligomerization of BAX CDC16 +PWCOMMONS Activation, translocation and oligomerization of BAX UBE2E1 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMC6 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMA3 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD8 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD10 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD1 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD6 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMB5 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMB4 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD4 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMA2 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMB8 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD5 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMB6 +PWCOMMONS Activation, translocation and oligomerization of BAX PSME3 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMB3 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMB7 +PWCOMMONS Activation, translocation and oligomerization of BAX PSME1 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD11 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMA5 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMC5 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMC1 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD7 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD3 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMB2 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD13 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD14 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMB1 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMA6 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMB9 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMB10 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD9 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMC4 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMA1 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMA4 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMA7 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMF1 +PWCOMMONS Activation, translocation and oligomerization of BAX PSME2 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD12 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMC3 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMC2 +PWCOMMONS Activation, translocation and oligomerization of BAX PSMD2 +PWCOMMONS Activation, translocation and oligomerization of BAX ADD1 +PWCOMMONS Activation, translocation and oligomerization of BAX MAPT +PWCOMMONS Activation, translocation and oligomerization of BAX BIRC2 +PWCOMMONS Activation, translocation and oligomerization of BAX DBNL +PWCOMMONS Activation, translocation and oligomerization of BAX DSG2 +PWCOMMONS Activation, translocation and oligomerization of BAX BMX +PWCOMMONS Activation, translocation and oligomerization of BAX SPTAN1 +PWCOMMONS Activation, translocation and oligomerization of BAX CDH1 +PWCOMMONS Activation, translocation and oligomerization of BAX CASP7 +PWCOMMONS Activation, translocation and oligomerization of BAX BID +PWCOMMONS Activation, translocation and oligomerization of BAX CLSPN +PWCOMMONS Activation, translocation and oligomerization of BAX DFFA +PWCOMMONS Activation, translocation and oligomerization of BAX DFFB +PWCOMMONS Activation, translocation and oligomerization of BAX KPNB1 +PWCOMMONS Activation, translocation and oligomerization of BAX KPNA1 +PWCOMMONS Activation, translocation and oligomerization of BAX OCLN +PWCOMMONS Activation, translocation and oligomerization of BAX TJP2 +PWCOMMONS Activation, translocation and oligomerization of BAX PKP1 +PWCOMMONS Activation, translocation and oligomerization of BAX DSP +PWCOMMONS Activation, translocation and oligomerization of BAX CASP8 +PWCOMMONS Activation, translocation and oligomerization of BAX PLEC1 +PWCOMMONS Activation, translocation and oligomerization of BAX CASP6 +PWCOMMONS Activation, translocation and oligomerization of BAX ACIN1 +PWCOMMONS Activation, translocation and oligomerization of BAX STK24 +PWCOMMONS Activation, translocation and oligomerization of BAX PRKCQ +PWCOMMONS Activation, translocation and oligomerization of BAX ROCK1 +PWCOMMONS Activation, translocation and oligomerization of BAX LMNB1 +PWCOMMONS Activation, translocation and oligomerization of BAX BCAP31 +PWCOMMONS Activation, translocation and oligomerization of BAX PRKCD +PWCOMMONS Activation, translocation and oligomerization of BAX CDC25A +PWCOMMONS Activation, translocation and oligomerization of BAX FNTA +PWCOMMONS Activation, translocation and oligomerization of BAX PTK2 +PWCOMMONS Activation, translocation and oligomerization of BAX +PWCOMMONS Generation of second messenger molecules MAP3K7 +PWCOMMONS Generation of second messenger molecules TRAF6 +PWCOMMONS Generation of second messenger molecules MALT1 +PWCOMMONS Generation of second messenger molecules BCL10 +PWCOMMONS Generation of second messenger molecules CARD11 +PWCOMMONS Generation of second messenger molecules PDPK1 +PWCOMMONS Generation of second messenger molecules NFKBIA +PWCOMMONS Generation of second messenger molecules NFKB1 +PWCOMMONS Generation of second messenger molecules RELA +PWCOMMONS Generation of second messenger molecules LCP2 +PWCOMMONS Generation of second messenger molecules LAT +PWCOMMONS Generation of second messenger molecules GRAP2 +PWCOMMONS Generation of second messenger molecules ZAP70 +PWCOMMONS Generation of second messenger molecules LCK +PWCOMMONS Generation of second messenger molecules CD4 +PWCOMMONS Generation of second messenger molecules CD3E +PWCOMMONS Generation of second messenger molecules CD3D +PWCOMMONS Generation of second messenger molecules CD3G +PWCOMMONS Generation of second messenger molecules FOXO1 +PWCOMMONS Generation of second messenger molecules THEM4 +PWCOMMONS Generation of second messenger molecules PLCG1 +PWCOMMONS Generation of second messenger molecules CHUK +PWCOMMONS Generation of second messenger molecules IKBKB +PWCOMMONS Generation of second messenger molecules IKBKG +PWCOMMONS Generation of second messenger molecules PRKCQ +PWCOMMONS Generation of second messenger molecules INPP5D +PWCOMMONS Generation of second messenger molecules UBE2V1 +PWCOMMONS Generation of second messenger molecules UBE2N +PWCOMMONS Generation of second messenger molecules CREB1 +PWCOMMONS Generation of second messenger molecules TRAT1 +PWCOMMONS Generation of second messenger molecules ITK +PWCOMMONS Generation of second messenger molecules MDM2 +PWCOMMONS Generation of second messenger molecules RPS6KB2 +PWCOMMONS Generation of second messenger molecules RICTOR +PWCOMMONS Generation of second messenger molecules FRAP1 +PWCOMMONS Generation of second messenger molecules LST8 +PWCOMMONS Generation of second messenger molecules NR4A1 +PWCOMMONS Generation of second messenger molecules RIPK2 +PWCOMMONS Generation of second messenger molecules PTEN +PWCOMMONS Generation of second messenger molecules BAD +PWCOMMONS Generation of second messenger molecules TRIB3 +PWCOMMONS Generation of second messenger molecules CASP9 +PWCOMMONS Generation of second messenger molecules AKT1S1 +PWCOMMONS Generation of second messenger molecules +PWCOMMONS Metabolism of water-soluble vitamins and cofactors AMD1 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors AHCY +PWCOMMONS Metabolism of water-soluble vitamins and cofactors MTHFD1 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors SLC46A1 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors MTHFR +PWCOMMONS Metabolism of water-soluble vitamins and cofactors SRM +PWCOMMONS Metabolism of water-soluble vitamins and cofactors MTR +PWCOMMONS Metabolism of water-soluble vitamins and cofactors SMS +PWCOMMONS Metabolism of water-soluble vitamins and cofactors NNMT +PWCOMMONS Metabolism of water-soluble vitamins and cofactors TPMT +PWCOMMONS Metabolism of water-soluble vitamins and cofactors SLC19A1 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors SHMT1 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors DHFR +PWCOMMONS Metabolism of water-soluble vitamins and cofactors SLC25A32 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors RFK +PWCOMMONS Metabolism of water-soluble vitamins and cofactors FLAD1 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors ENPP1 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors ACP5 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors CYB5R3 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors CYB5A +PWCOMMONS Metabolism of water-soluble vitamins and cofactors GSR +PWCOMMONS Metabolism of water-soluble vitamins and cofactors FASN +PWCOMMONS Metabolism of water-soluble vitamins and cofactors PPCDC +PWCOMMONS Metabolism of water-soluble vitamins and cofactors COASY +PWCOMMONS Metabolism of water-soluble vitamins and cofactors AASDHPPT +PWCOMMONS Metabolism of water-soluble vitamins and cofactors SLC5A6 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors PANK2 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors PPCS +PWCOMMONS Metabolism of water-soluble vitamins and cofactors SLC25A16 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors NADSYN1 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors AFMID +PWCOMMONS Metabolism of water-soluble vitamins and cofactors ACMSD +PWCOMMONS Metabolism of water-soluble vitamins and cofactors NMNAT2 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors NAMPT +PWCOMMONS Metabolism of water-soluble vitamins and cofactors NAPRT1 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors KYNU +PWCOMMONS Metabolism of water-soluble vitamins and cofactors HAAO +PWCOMMONS Metabolism of water-soluble vitamins and cofactors TDO2 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors NMNAT3 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors INDO +PWCOMMONS Metabolism of water-soluble vitamins and cofactors QPRT +PWCOMMONS Metabolism of water-soluble vitamins and cofactors KMO +PWCOMMONS Metabolism of water-soluble vitamins and cofactors NADK +PWCOMMONS Metabolism of water-soluble vitamins and cofactors NMNAT1 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors TPK1 +PWCOMMONS Metabolism of water-soluble vitamins and cofactors +PWCOMMONS Vitamin B5 (pantothenate) metabolism PPCDC +PWCOMMONS Vitamin B5 (pantothenate) metabolism COASY +PWCOMMONS Vitamin B5 (pantothenate) metabolism AASDHPPT +PWCOMMONS Vitamin B5 (pantothenate) metabolism SLC5A6 +PWCOMMONS Vitamin B5 (pantothenate) metabolism PANK2 +PWCOMMONS Vitamin B5 (pantothenate) metabolism PPCS +PWCOMMONS Vitamin B5 (pantothenate) metabolism SLC25A16 +PWCOMMONS Vitamin B5 (pantothenate) metabolism +PWCOMMONS Coenzyme A biosynthesis PPCDC +PWCOMMONS Coenzyme A biosynthesis SLC25A16 +PWCOMMONS Coenzyme A biosynthesis COASY +PWCOMMONS Coenzyme A biosynthesis AASDHPPT +PWCOMMONS Coenzyme A biosynthesis PANK2 +PWCOMMONS Coenzyme A biosynthesis PPCS +PWCOMMONS Coenzyme A biosynthesis +PWCOMMONS Signaling by Wnt CSNK1A1 +PWCOMMONS Signaling by Wnt CUL1 +PWCOMMONS Signaling by Wnt BTRC +PWCOMMONS Signaling by Wnt SKP1 +PWCOMMONS Signaling by Wnt FZR1 +PWCOMMONS Signaling by Wnt ANAPC5 +PWCOMMONS Signaling by Wnt ANAPC11 +PWCOMMONS Signaling by Wnt CDC23 +PWCOMMONS Signaling by Wnt ANAPC1 +PWCOMMONS Signaling by Wnt ANAPC2 +PWCOMMONS Signaling by Wnt UBE2D1 +PWCOMMONS Signaling by Wnt CDC27 +PWCOMMONS Signaling by Wnt ANAPC4 +PWCOMMONS Signaling by Wnt ANAPC10 +PWCOMMONS Signaling by Wnt ANAPC7 +PWCOMMONS Signaling by Wnt UBE2C +PWCOMMONS Signaling by Wnt CDC26 +PWCOMMONS Signaling by Wnt CDC16 +PWCOMMONS Signaling by Wnt UBE2E1 +PWCOMMONS Signaling by Wnt PSMC6 +PWCOMMONS Signaling by Wnt PSMA3 +PWCOMMONS Signaling by Wnt PSMD8 +PWCOMMONS Signaling by Wnt PSMD10 +PWCOMMONS Signaling by Wnt PSMD1 +PWCOMMONS Signaling by Wnt PSMD6 +PWCOMMONS Signaling by Wnt PSMB5 +PWCOMMONS Signaling by Wnt PSMB4 +PWCOMMONS Signaling by Wnt PSMD4 +PWCOMMONS Signaling by Wnt PSMA2 +PWCOMMONS Signaling by Wnt PSMB8 +PWCOMMONS Signaling by Wnt PSMD5 +PWCOMMONS Signaling by Wnt PSMB6 +PWCOMMONS Signaling by Wnt PSME3 +PWCOMMONS Signaling by Wnt PSMB3 +PWCOMMONS Signaling by Wnt PSMB7 +PWCOMMONS Signaling by Wnt PSME1 +PWCOMMONS Signaling by Wnt PSMD11 +PWCOMMONS Signaling by Wnt PSMA5 +PWCOMMONS Signaling by Wnt PSMC5 +PWCOMMONS Signaling by Wnt PSMC1 +PWCOMMONS Signaling by Wnt PSMD7 +PWCOMMONS Signaling by Wnt PSMD3 +PWCOMMONS Signaling by Wnt PSMB2 +PWCOMMONS Signaling by Wnt PSMD13 +PWCOMMONS Signaling by Wnt PSMD14 +PWCOMMONS Signaling by Wnt PSMB1 +PWCOMMONS Signaling by Wnt PSMA6 +PWCOMMONS Signaling by Wnt PSMB9 +PWCOMMONS Signaling by Wnt PSMB10 +PWCOMMONS Signaling by Wnt PSMD9 +PWCOMMONS Signaling by Wnt PSMC4 +PWCOMMONS Signaling by Wnt PSMA1 +PWCOMMONS Signaling by Wnt PSMA4 +PWCOMMONS Signaling by Wnt PSMA7 +PWCOMMONS Signaling by Wnt PSMF1 +PWCOMMONS Signaling by Wnt PSME2 +PWCOMMONS Signaling by Wnt PSMD12 +PWCOMMONS Signaling by Wnt PSMC3 +PWCOMMONS Signaling by Wnt PSMC2 +PWCOMMONS Signaling by Wnt PSMD2 +PWCOMMONS Signaling by Wnt +PWCOMMONS Degradation of beta-catenin by the destruction complex CSNK1A1 +PWCOMMONS Degradation of beta-catenin by the destruction complex CUL1 +PWCOMMONS Degradation of beta-catenin by the destruction complex BTRC +PWCOMMONS Degradation of beta-catenin by the destruction complex SKP1 +PWCOMMONS Degradation of beta-catenin by the destruction complex FZR1 +PWCOMMONS Degradation of beta-catenin by the destruction complex ANAPC5 +PWCOMMONS Degradation of beta-catenin by the destruction complex ANAPC11 +PWCOMMONS Degradation of beta-catenin by the destruction complex CDC23 +PWCOMMONS Degradation of beta-catenin by the destruction complex ANAPC1 +PWCOMMONS Degradation of beta-catenin by the destruction complex ANAPC2 +PWCOMMONS Degradation of beta-catenin by the destruction complex UBE2D1 +PWCOMMONS Degradation of beta-catenin by the destruction complex CDC27 +PWCOMMONS Degradation of beta-catenin by the destruction complex ANAPC4 +PWCOMMONS Degradation of beta-catenin by the destruction complex ANAPC10 +PWCOMMONS Degradation of beta-catenin by the destruction complex ANAPC7 +PWCOMMONS Degradation of beta-catenin by the destruction complex UBE2C +PWCOMMONS Degradation of beta-catenin by the destruction complex CDC26 +PWCOMMONS Degradation of beta-catenin by the destruction complex CDC16 +PWCOMMONS Degradation of beta-catenin by the destruction complex UBE2E1 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMC6 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMA3 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD8 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD10 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD1 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD6 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMB5 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMB4 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD4 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMA2 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMB8 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD5 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMB6 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSME3 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMB3 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMB7 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSME1 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD11 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMA5 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMC5 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMC1 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD7 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD3 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMB2 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD13 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD14 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMB1 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMA6 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMB9 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMB10 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD9 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMC4 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMA1 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMA4 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMA7 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMF1 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSME2 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD12 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMC3 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMC2 +PWCOMMONS Degradation of beta-catenin by the destruction complex PSMD2 +PWCOMMONS Degradation of beta-catenin by the destruction complex +PWCOMMONS Beta-catenin phosphorylation cascade CSNK1A1 +PWCOMMONS Beta-catenin phosphorylation cascade CUL1 +PWCOMMONS Beta-catenin phosphorylation cascade BTRC +PWCOMMONS Beta-catenin phosphorylation cascade SKP1 +PWCOMMONS Beta-catenin phosphorylation cascade FZR1 +PWCOMMONS Beta-catenin phosphorylation cascade ANAPC5 +PWCOMMONS Beta-catenin phosphorylation cascade ANAPC11 +PWCOMMONS Beta-catenin phosphorylation cascade CDC23 +PWCOMMONS Beta-catenin phosphorylation cascade ANAPC1 +PWCOMMONS Beta-catenin phosphorylation cascade ANAPC2 +PWCOMMONS Beta-catenin phosphorylation cascade UBE2D1 +PWCOMMONS Beta-catenin phosphorylation cascade CDC27 +PWCOMMONS Beta-catenin phosphorylation cascade ANAPC4 +PWCOMMONS Beta-catenin phosphorylation cascade ANAPC10 +PWCOMMONS Beta-catenin phosphorylation cascade ANAPC7 +PWCOMMONS Beta-catenin phosphorylation cascade UBE2C +PWCOMMONS Beta-catenin phosphorylation cascade CDC26 +PWCOMMONS Beta-catenin phosphorylation cascade CDC16 +PWCOMMONS Beta-catenin phosphorylation cascade UBE2E1 +PWCOMMONS Beta-catenin phosphorylation cascade PSMC6 +PWCOMMONS Beta-catenin phosphorylation cascade PSMA3 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD8 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD10 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD1 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD6 +PWCOMMONS Beta-catenin phosphorylation cascade PSMB5 +PWCOMMONS Beta-catenin phosphorylation cascade PSMB4 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD4 +PWCOMMONS Beta-catenin phosphorylation cascade PSMA2 +PWCOMMONS Beta-catenin phosphorylation cascade PSMB8 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD5 +PWCOMMONS Beta-catenin phosphorylation cascade PSMB6 +PWCOMMONS Beta-catenin phosphorylation cascade PSME3 +PWCOMMONS Beta-catenin phosphorylation cascade PSMB3 +PWCOMMONS Beta-catenin phosphorylation cascade PSMB7 +PWCOMMONS Beta-catenin phosphorylation cascade PSME1 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD11 +PWCOMMONS Beta-catenin phosphorylation cascade PSMA5 +PWCOMMONS Beta-catenin phosphorylation cascade PSMC5 +PWCOMMONS Beta-catenin phosphorylation cascade PSMC1 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD7 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD3 +PWCOMMONS Beta-catenin phosphorylation cascade PSMB2 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD13 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD14 +PWCOMMONS Beta-catenin phosphorylation cascade PSMB1 +PWCOMMONS Beta-catenin phosphorylation cascade PSMA6 +PWCOMMONS Beta-catenin phosphorylation cascade PSMB9 +PWCOMMONS Beta-catenin phosphorylation cascade PSMB10 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD9 +PWCOMMONS Beta-catenin phosphorylation cascade PSMC4 +PWCOMMONS Beta-catenin phosphorylation cascade PSMA1 +PWCOMMONS Beta-catenin phosphorylation cascade PSMA4 +PWCOMMONS Beta-catenin phosphorylation cascade PSMA7 +PWCOMMONS Beta-catenin phosphorylation cascade PSMF1 +PWCOMMONS Beta-catenin phosphorylation cascade PSME2 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD12 +PWCOMMONS Beta-catenin phosphorylation cascade PSMC3 +PWCOMMONS Beta-catenin phosphorylation cascade PSMC2 +PWCOMMONS Beta-catenin phosphorylation cascade PSMD2 +PWCOMMONS Beta-catenin phosphorylation cascade +PWCOMMONS DNA Repair PCNA +PWCOMMONS DNA Repair POLD4 +PWCOMMONS DNA Repair POLD3 +PWCOMMONS DNA Repair POLD2 +PWCOMMONS DNA Repair POLD1 +PWCOMMONS DNA Repair POLE2 +PWCOMMONS DNA Repair POLE +PWCOMMONS DNA Repair ERCC5 +PWCOMMONS DNA Repair TCEA1 +PWCOMMONS DNA Repair ERCC8 +PWCOMMONS DNA Repair XAB2 +PWCOMMONS DNA Repair ERCC6 +PWCOMMONS DNA Repair ERCC4 +PWCOMMONS DNA Repair ERCC1 +PWCOMMONS DNA Repair ERCC2 +PWCOMMONS DNA Repair GTF2H3 +PWCOMMONS DNA Repair GTF2H4 +PWCOMMONS DNA Repair GTF2H2 +PWCOMMONS DNA Repair ERCC3 +PWCOMMONS DNA Repair GTF2H1 +PWCOMMONS DNA Repair CCNH +PWCOMMONS DNA Repair CDK7 +PWCOMMONS DNA Repair MNAT1 +PWCOMMONS DNA Repair POLR2G +PWCOMMONS DNA Repair POLR2B +PWCOMMONS DNA Repair POLR2L +PWCOMMONS DNA Repair POLR2A +PWCOMMONS DNA Repair POLR2K +PWCOMMONS DNA Repair POLR2H +PWCOMMONS DNA Repair POLR2D +PWCOMMONS DNA Repair POLR2C +PWCOMMONS DNA Repair POLR2I +PWCOMMONS DNA Repair POLR2F +PWCOMMONS DNA Repair POLR2J +PWCOMMONS DNA Repair POLR2E +PWCOMMONS DNA Repair RFC2 +PWCOMMONS DNA Repair RFC1 +PWCOMMONS DNA Repair RFC3 +PWCOMMONS DNA Repair RFC5 +PWCOMMONS DNA Repair RFC4 +PWCOMMONS DNA Repair RPA1 +PWCOMMONS DNA Repair RPA3 +PWCOMMONS DNA Repair RPA2 +PWCOMMONS DNA Repair XPA +PWCOMMONS DNA Repair DDB2 +PWCOMMONS DNA Repair DDB1 +PWCOMMONS DNA Repair RAD23B +PWCOMMONS DNA Repair XPC +PWCOMMONS DNA Repair FANCI +PWCOMMONS DNA Repair ZBTB32 +PWCOMMONS DNA Repair USP1 +PWCOMMONS DNA Repair FANCD2 +PWCOMMONS DNA Repair RAD50 +PWCOMMONS DNA Repair MRE11A +PWCOMMONS DNA Repair H2AFX +PWCOMMONS DNA Repair BRCA1 +PWCOMMONS DNA Repair TP53BP1 +PWCOMMONS DNA Repair MDC1 +PWCOMMONS DNA Repair NBN +PWCOMMONS DNA Repair ATM +PWCOMMONS DNA Repair RAD51 +PWCOMMONS DNA Repair RAD52 +PWCOMMONS DNA Repair BRCA2 +PWCOMMONS DNA Repair PMAIP1 +PWCOMMONS DNA Repair BCL2 +PWCOMMONS DNA Repair BCL2L1 +PWCOMMONS DNA Repair TP53 +PWCOMMONS DNA Repair MDM2 +PWCOMMONS DNA Repair BBC3 +PWCOMMONS DNA Repair LIG4 +PWCOMMONS DNA Repair PRKDC +PWCOMMONS DNA Repair XRCC6 +PWCOMMONS DNA Repair XRCC5 +PWCOMMONS DNA Repair XRCC4 +PWCOMMONS DNA Repair UBE2T +PWCOMMONS DNA Repair FANCF +PWCOMMONS DNA Repair FAAP100 +PWCOMMONS DNA Repair FANCG +PWCOMMONS DNA Repair FANCL +PWCOMMONS DNA Repair FANCA +PWCOMMONS DNA Repair FAAP24 +PWCOMMONS DNA Repair FANCM +PWCOMMONS DNA Repair FANCE +PWCOMMONS DNA Repair FANCB +PWCOMMONS DNA Repair FANCC +PWCOMMONS DNA Repair POLH +PWCOMMONS DNA Repair MAD2L2 +PWCOMMONS DNA Repair ALKBH2 +PWCOMMONS DNA Repair ALKBH3 +PWCOMMONS DNA Repair MGMT +PWCOMMONS DNA Repair POLB +PWCOMMONS DNA Repair LIG3 +PWCOMMONS DNA Repair XRCC1 +PWCOMMONS DNA Repair APEX1 +PWCOMMONS DNA Repair FEN1 +PWCOMMONS DNA Repair OGG1 +PWCOMMONS DNA Repair TDG +PWCOMMONS DNA Repair NTHL1 +PWCOMMONS DNA Repair MPG +PWCOMMONS DNA Repair SMUG1 +PWCOMMONS DNA Repair MUTYH +PWCOMMONS DNA Repair CCNO +PWCOMMONS DNA Repair +PWCOMMONS Regulation of the Fanconi anemia pathway ZBTB32 +PWCOMMONS Regulation of the Fanconi anemia pathway USP1 +PWCOMMONS Regulation of the Fanconi anemia pathway FANCD2 +PWCOMMONS Regulation of the Fanconi anemia pathway +PWCOMMONS DNA Damage Bypass MAD2L2 +PWCOMMONS DNA Damage Bypass +PWCOMMONS Translesion synthesis by DNA polymerases bypassing lesion on DNA template MAD2L2 +PWCOMMONS Translesion synthesis by DNA polymerases bypassing lesion on DNA template +PWCOMMONS Base Excision Repair PCNA +PWCOMMONS Base Excision Repair POLD4 +PWCOMMONS Base Excision Repair POLD3 +PWCOMMONS Base Excision Repair POLD2 +PWCOMMONS Base Excision Repair POLD1 +PWCOMMONS Base Excision Repair POLB +PWCOMMONS Base Excision Repair LIG3 +PWCOMMONS Base Excision Repair XRCC1 +PWCOMMONS Base Excision Repair APEX1 +PWCOMMONS Base Excision Repair FEN1 +PWCOMMONS Base Excision Repair OGG1 +PWCOMMONS Base Excision Repair TDG +PWCOMMONS Base Excision Repair NTHL1 +PWCOMMONS Base Excision Repair MPG +PWCOMMONS Base Excision Repair SMUG1 +PWCOMMONS Base Excision Repair MUTYH +PWCOMMONS Base Excision Repair CCNO +PWCOMMONS Base Excision Repair +PWCOMMONS Resolution of Abasic Sites (AP sites) PCNA +PWCOMMONS Resolution of Abasic Sites (AP sites) POLD4 +PWCOMMONS Resolution of Abasic Sites (AP sites) POLD3 +PWCOMMONS Resolution of Abasic Sites (AP sites) POLD2 +PWCOMMONS Resolution of Abasic Sites (AP sites) POLD1 +PWCOMMONS Resolution of Abasic Sites (AP sites) POLB +PWCOMMONS Resolution of Abasic Sites (AP sites) LIG3 +PWCOMMONS Resolution of Abasic Sites (AP sites) XRCC1 +PWCOMMONS Resolution of Abasic Sites (AP sites) APEX1 +PWCOMMONS Resolution of Abasic Sites (AP sites) FEN1 +PWCOMMONS Resolution of Abasic Sites (AP sites) OGG1 +PWCOMMONS Resolution of Abasic Sites (AP sites) TDG +PWCOMMONS Resolution of Abasic Sites (AP sites) NTHL1 +PWCOMMONS Resolution of Abasic Sites (AP sites) MPG +PWCOMMONS Resolution of Abasic Sites (AP sites) SMUG1 +PWCOMMONS Resolution of Abasic Sites (AP sites) MUTYH +PWCOMMONS Resolution of Abasic Sites (AP sites) CCNO +PWCOMMONS Resolution of Abasic Sites (AP sites) +PWCOMMONS Fanconi Anemia pathway FANCD2 +PWCOMMONS Fanconi Anemia pathway FANCI +PWCOMMONS Fanconi Anemia pathway ZBTB32 +PWCOMMONS Fanconi Anemia pathway USP1 +PWCOMMONS Fanconi Anemia pathway UBE2T +PWCOMMONS Fanconi Anemia pathway FANCF +PWCOMMONS Fanconi Anemia pathway FAAP100 +PWCOMMONS Fanconi Anemia pathway FANCG +PWCOMMONS Fanconi Anemia pathway FANCL +PWCOMMONS Fanconi Anemia pathway FANCA +PWCOMMONS Fanconi Anemia pathway FAAP24 +PWCOMMONS Fanconi Anemia pathway FANCM +PWCOMMONS Fanconi Anemia pathway FANCE +PWCOMMONS Fanconi Anemia pathway FANCB +PWCOMMONS Fanconi Anemia pathway FANCC +PWCOMMONS Fanconi Anemia pathway +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains MAP3K7 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains TRAF6 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains MALT1 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains BCL10 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains CARD11 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains PDPK1 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains NFKBIA +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains NFKB1 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains RELA +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains LCP2 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains LAT +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains GRAP2 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains ZAP70 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains LCK +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains CD4 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains CD3E +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains CD3D +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains CD3G +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains FOXO1 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains THEM4 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains PLCG1 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains CHUK +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains IKBKB +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains IKBKG +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains CSK +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains PAG1 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains PRKCQ +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains INPP5D +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains UBE2V1 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains UBE2N +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains CREB1 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains TRAT1 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains ITK +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains MDM2 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains RPS6KB2 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains RICTOR +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains FRAP1 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains LST8 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains NR4A1 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains RIPK2 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains PTEN +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains PTPRC +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains BAD +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains TRIB3 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains CASP9 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains AKT1S1 +PWCOMMONS Phosphorylation of CD3 and TCR zeta chains +PWCOMMONS p130Cas linkage to MAPK signaling for integrins TLN1 +PWCOMMONS p130Cas linkage to MAPK signaling for integrins APBB1IP +PWCOMMONS p130Cas linkage to MAPK signaling for integrins ITGB3 +PWCOMMONS p130Cas linkage to MAPK signaling for integrins ITGA2B +PWCOMMONS p130Cas linkage to MAPK signaling for integrins BCAR1 +PWCOMMONS p130Cas linkage to MAPK signaling for integrins +PWCOMMONS Innate Immunity Signaling MYD88 +PWCOMMONS Innate Immunity Signaling TIRAP +PWCOMMONS Innate Immunity Signaling IRAK3 +PWCOMMONS Innate Immunity Signaling MAP3K1 +PWCOMMONS Innate Immunity Signaling TRAF6 +PWCOMMONS Innate Immunity Signaling ECSIT +PWCOMMONS Innate Immunity Signaling SIGIRR +PWCOMMONS Innate Immunity Signaling TLR6 +PWCOMMONS Innate Immunity Signaling TLR2 +PWCOMMONS Innate Immunity Signaling ATF2 +PWCOMMONS Innate Immunity Signaling IRF3 +PWCOMMONS Innate Immunity Signaling TBK1 +PWCOMMONS Innate Immunity Signaling TICAM1 +PWCOMMONS Innate Immunity Signaling TLR3 +PWCOMMONS Innate Immunity Signaling MAP3K7IP1 +PWCOMMONS Innate Immunity Signaling MAP3K7IP2 +PWCOMMONS Innate Immunity Signaling MAP3K7 +PWCOMMONS Innate Immunity Signaling CHUK +PWCOMMONS Innate Immunity Signaling IKBKB +PWCOMMONS Innate Immunity Signaling IKBKG +PWCOMMONS Innate Immunity Signaling RELA +PWCOMMONS Innate Immunity Signaling RIPK1 +PWCOMMONS Innate Immunity Signaling JUN +PWCOMMONS Innate Immunity Signaling MAPK1 +PWCOMMONS Innate Immunity Signaling MAPK8 +PWCOMMONS Innate Immunity Signaling TLR10 +PWCOMMONS Innate Immunity Signaling LY96 +PWCOMMONS Innate Immunity Signaling TLR4 +PWCOMMONS Innate Immunity Signaling CD180 +PWCOMMONS Innate Immunity Signaling LY86 +PWCOMMONS Innate Immunity Signaling TICAM2 +PWCOMMONS Innate Immunity Signaling LBP +PWCOMMONS Innate Immunity Signaling CD14 +PWCOMMONS Innate Immunity Signaling TLR5 +PWCOMMONS Innate Immunity Signaling ZFYVE20 +PWCOMMONS Innate Immunity Signaling EEA1 +PWCOMMONS Innate Immunity Signaling TLR9 +PWCOMMONS Innate Immunity Signaling PIK3C3 +PWCOMMONS Innate Immunity Signaling PIK3R4 +PWCOMMONS Innate Immunity Signaling C9 +PWCOMMONS Innate Immunity Signaling C6 +PWCOMMONS Innate Immunity Signaling C7 +PWCOMMONS Innate Immunity Signaling C5 +PWCOMMONS Innate Immunity Signaling C8A +PWCOMMONS Innate Immunity Signaling C8B +PWCOMMONS Innate Immunity Signaling C8G +PWCOMMONS Innate Immunity Signaling C4A +PWCOMMONS Innate Immunity Signaling C2 +PWCOMMONS Innate Immunity Signaling C3 +PWCOMMONS Innate Immunity Signaling C1QC +PWCOMMONS Innate Immunity Signaling C1QA +PWCOMMONS Innate Immunity Signaling C1QB +PWCOMMONS Innate Immunity Signaling C1S +PWCOMMONS Innate Immunity Signaling C1R +PWCOMMONS Innate Immunity Signaling MBL2 +PWCOMMONS Innate Immunity Signaling MASP1 +PWCOMMONS Innate Immunity Signaling CFD +PWCOMMONS Innate Immunity Signaling CFB +PWCOMMONS Innate Immunity Signaling +PWCOMMONS Regulatory RNA pathways POLR2G +PWCOMMONS Regulatory RNA pathways POLR2B +PWCOMMONS Regulatory RNA pathways POLR2L +PWCOMMONS Regulatory RNA pathways POLR2A +PWCOMMONS Regulatory RNA pathways POLR2K +PWCOMMONS Regulatory RNA pathways POLR2H +PWCOMMONS Regulatory RNA pathways POLR2D +PWCOMMONS Regulatory RNA pathways POLR2C +PWCOMMONS Regulatory RNA pathways POLR2F +PWCOMMONS Regulatory RNA pathways POLR2J +PWCOMMONS Regulatory RNA pathways POLR2I +PWCOMMONS Regulatory RNA pathways POLR2E +PWCOMMONS Regulatory RNA pathways TARBP2 +PWCOMMONS Regulatory RNA pathways DICER1 +PWCOMMONS Regulatory RNA pathways +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle PRKAA2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle PRKAB2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ACSL1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ACADS +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5O +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5F1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5J +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5G1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5L +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-ATP6 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5J2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-ATP8 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5H +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5I +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5C1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5D +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5A1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5B +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ATP5E +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ETFA +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ETFB +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle UQCRC1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle UQCRB +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle UQCR10 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle UQCR +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle UQCRC2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle UQCRH +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle UQCRQ +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle UQCRFS1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-CYB +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle CYC1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle CYCS +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ECHS1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-CO2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle COX8A +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle COX7C +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-CO3 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle COX6C +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle COX5B +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-CO1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle COX7A2L +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle COX4I1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle COX6A1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle COX7B +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle COX6B1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle COX5A +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle HADH +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle VAMP2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle INS +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle SYT5 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle KCNJ11 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFS3 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFS4 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFS6 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA5 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFS5 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFS1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFS2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFV2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFV3 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFV1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA4 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA11 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-ND3 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA13 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFB5 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFC1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA6 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFC2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA3 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFB3 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFB1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFAB1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-ND4 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-ND5 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFB9 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFB6 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFB4 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA8 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFB7 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA12 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFB2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-ND4L +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-ND2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFB10 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA7 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFB8 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFB11 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-ND6 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle MT-ND1 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFS7 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA10 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFS8 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle NDUFA9 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle SLC25A20 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle HADHB +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle HADHA +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ACADL +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ACADM +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ACADVL +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle CPT1B +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle CPT2 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle STK11 +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle ACACB +PWCOMMONS Activated AMPK stimulates fatty-acid oxidation in muscle +PWCOMMONS Amino Acid conjugation GLYAT +PWCOMMONS Amino Acid conjugation +PWCOMMONS Metabolism of polyamines TPMT +PWCOMMONS Metabolism of polyamines COMT +PWCOMMONS Metabolism of polyamines AMD1 +PWCOMMONS Metabolism of polyamines NNMT +PWCOMMONS Metabolism of polyamines SMS +PWCOMMONS Metabolism of polyamines AHCY +PWCOMMONS Metabolism of polyamines PAOX +PWCOMMONS Metabolism of polyamines SAT1 +PWCOMMONS Metabolism of polyamines ODC1 +PWCOMMONS Metabolism of polyamines AGMAT +PWCOMMONS Metabolism of polyamines SRM +PWCOMMONS Metabolism of polyamines +PWCOMMONS Interconversion of polyamines SAT1 +PWCOMMONS Interconversion of polyamines +PWCOMMONS Opioid Signalling GNAI1 +PWCOMMONS Opioid Signalling GNAL +PWCOMMONS Opioid Signalling CALM1 +PWCOMMONS Opioid Signalling CAV1 +PWCOMMONS Opioid Signalling HSP90AA1 +PWCOMMONS Opioid Signalling NOS3 +PWCOMMONS Opioid Signalling VAMP2 +PWCOMMONS Opioid Signalling INS +PWCOMMONS Opioid Signalling SYT5 +PWCOMMONS Opioid Signalling AKT1 +PWCOMMONS Opioid Signalling PLA2G4A +PWCOMMONS Opioid Signalling MGLL +PWCOMMONS Opioid Signalling LIPE +PWCOMMONS Opioid Signalling PFKFB1 +PWCOMMONS Opioid Signalling FABP4 +PWCOMMONS Opioid Signalling MLXIPL +PWCOMMONS Opioid Signalling CREB1 +PWCOMMONS Opioid Signalling ADRBK1 +PWCOMMONS Opioid Signalling CAMK4 +PWCOMMONS Opioid Signalling PPP1CA +PWCOMMONS Opioid Signalling PPP3R1 +PWCOMMONS Opioid Signalling PRKACA +PWCOMMONS Opioid Signalling PDE4B +PWCOMMONS Opioid Signalling CDK5 +PWCOMMONS Opioid Signalling +PWCOMMONS DARPP-32 events PFKFB1 +PWCOMMONS DARPP-32 events MLXIPL +PWCOMMONS DARPP-32 events PPP1CA +PWCOMMONS DARPP-32 events PPP3R1 +PWCOMMONS DARPP-32 events CALM1 +PWCOMMONS DARPP-32 events PRKACA +PWCOMMONS DARPP-32 events CREB1 +PWCOMMONS DARPP-32 events LIPE +PWCOMMONS DARPP-32 events PDE4B +PWCOMMONS DARPP-32 events FABP4 +PWCOMMONS DARPP-32 events CDK5 +PWCOMMONS DARPP-32 events +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A CCNB1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A CDC20 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A ANAPC5 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A ANAPC11 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A CDC23 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A ANAPC1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A ANAPC2 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A UBE2D1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A CDC27 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A ANAPC4 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A ANAPC10 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A ANAPC7 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A UBE2C +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A CDC26 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A CDC16 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A UBE2E1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A FZR1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A BUB3 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A BUB1B +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A MAD2L1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMC6 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMA3 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD8 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD10 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD6 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMB5 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMB4 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD4 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMA2 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMB8 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD5 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMB6 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSME3 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMB3 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMB7 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSME1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD11 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMA5 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMC5 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMC1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD7 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD3 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMB2 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD13 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD14 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMB1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMA6 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMB9 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMB10 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD9 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMC4 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMA1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMA4 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMA7 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMF1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSME2 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD12 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMC3 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMC2 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PSMD2 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A PTTG1 +PWCOMMONS Cdc20:Phospho-APC/C mediated degradation of Cyclin A +PWCOMMONS Vitamin D (calciferol) metabolism GC +PWCOMMONS Vitamin D (calciferol) metabolism CUBN +PWCOMMONS Vitamin D (calciferol) metabolism LRP2 +PWCOMMONS Vitamin D (calciferol) metabolism CYP27B1 +PWCOMMONS Vitamin D (calciferol) metabolism CYP2R1 +PWCOMMONS Vitamin D (calciferol) metabolism CYP24A1 +PWCOMMONS Vitamin D (calciferol) metabolism +PWCOMMONS Carnitine synthesis TMLHE +PWCOMMONS Carnitine synthesis ALAD +PWCOMMONS Carnitine synthesis UROD +PWCOMMONS Carnitine synthesis ALDH9A1 +PWCOMMONS Carnitine synthesis CPOX +PWCOMMONS Carnitine synthesis UROS +PWCOMMONS Carnitine synthesis PPOX +PWCOMMONS Carnitine synthesis SHMT1 +PWCOMMONS Carnitine synthesis BBOX1 +PWCOMMONS Carnitine synthesis +PWCOMMONS Regulation of Apoptosis ANAPC5 +PWCOMMONS Regulation of Apoptosis ANAPC11 +PWCOMMONS Regulation of Apoptosis CDC23 +PWCOMMONS Regulation of Apoptosis ANAPC1 +PWCOMMONS Regulation of Apoptosis ANAPC2 +PWCOMMONS Regulation of Apoptosis UBE2D1 +PWCOMMONS Regulation of Apoptosis CDC27 +PWCOMMONS Regulation of Apoptosis ANAPC4 +PWCOMMONS Regulation of Apoptosis ANAPC10 +PWCOMMONS Regulation of Apoptosis ANAPC7 +PWCOMMONS Regulation of Apoptosis UBE2C +PWCOMMONS Regulation of Apoptosis CDC26 +PWCOMMONS Regulation of Apoptosis CDC16 +PWCOMMONS Regulation of Apoptosis UBE2E1 +PWCOMMONS Regulation of Apoptosis PSMC6 +PWCOMMONS Regulation of Apoptosis PSMA3 +PWCOMMONS Regulation of Apoptosis PSMD8 +PWCOMMONS Regulation of Apoptosis PSMD10 +PWCOMMONS Regulation of Apoptosis PSMD1 +PWCOMMONS Regulation of Apoptosis PSMD6 +PWCOMMONS Regulation of Apoptosis PSMB5 +PWCOMMONS Regulation of Apoptosis PSMB4 +PWCOMMONS Regulation of Apoptosis PSMD4 +PWCOMMONS Regulation of Apoptosis PSMA2 +PWCOMMONS Regulation of Apoptosis PSMB8 +PWCOMMONS Regulation of Apoptosis PSMD5 +PWCOMMONS Regulation of Apoptosis PSMB6 +PWCOMMONS Regulation of Apoptosis PSME3 +PWCOMMONS Regulation of Apoptosis PSMB3 +PWCOMMONS Regulation of Apoptosis PSMB7 +PWCOMMONS Regulation of Apoptosis PSME1 +PWCOMMONS Regulation of Apoptosis PSMD11 +PWCOMMONS Regulation of Apoptosis PSMA5 +PWCOMMONS Regulation of Apoptosis PSMC5 +PWCOMMONS Regulation of Apoptosis PSMC1 +PWCOMMONS Regulation of Apoptosis PSMD7 +PWCOMMONS Regulation of Apoptosis PSMD3 +PWCOMMONS Regulation of Apoptosis PSMB2 +PWCOMMONS Regulation of Apoptosis PSMD13 +PWCOMMONS Regulation of Apoptosis PSMD14 +PWCOMMONS Regulation of Apoptosis PSMB1 +PWCOMMONS Regulation of Apoptosis PSMA6 +PWCOMMONS Regulation of Apoptosis PSMB9 +PWCOMMONS Regulation of Apoptosis PSMB10 +PWCOMMONS Regulation of Apoptosis PSMD9 +PWCOMMONS Regulation of Apoptosis PSMC4 +PWCOMMONS Regulation of Apoptosis PSMA1 +PWCOMMONS Regulation of Apoptosis PSMA4 +PWCOMMONS Regulation of Apoptosis PSMA7 +PWCOMMONS Regulation of Apoptosis PSMF1 +PWCOMMONS Regulation of Apoptosis PSME2 +PWCOMMONS Regulation of Apoptosis PSMD12 +PWCOMMONS Regulation of Apoptosis PSMC3 +PWCOMMONS Regulation of Apoptosis PSMC2 +PWCOMMONS Regulation of Apoptosis PSMD2 +PWCOMMONS Regulation of Apoptosis CDC25A +PWCOMMONS Regulation of Apoptosis PAK2 +PWCOMMONS Regulation of Apoptosis ARHGAP10 +PWCOMMONS Regulation of Apoptosis +PWCOMMONS RNA Polymerase I Chain Elongation TAF1C +PWCOMMONS RNA Polymerase I Chain Elongation TAF1B +PWCOMMONS RNA Polymerase I Chain Elongation TAF1A +PWCOMMONS RNA Polymerase I Chain Elongation POLR1D +PWCOMMONS RNA Polymerase I Chain Elongation POLR1C +PWCOMMONS RNA Polymerase I Chain Elongation POLR1A +PWCOMMONS RNA Polymerase I Chain Elongation POLR2K +PWCOMMONS RNA Polymerase I Chain Elongation POLR2H +PWCOMMONS RNA Polymerase I Chain Elongation POLR1B +PWCOMMONS RNA Polymerase I Chain Elongation ERCC2 +PWCOMMONS RNA Polymerase I Chain Elongation GTF2H3 +PWCOMMONS RNA Polymerase I Chain Elongation GTF2H4 +PWCOMMONS RNA Polymerase I Chain Elongation GTF2H2 +PWCOMMONS RNA Polymerase I Chain Elongation ERCC3 +PWCOMMONS RNA Polymerase I Chain Elongation GTF2H1 +PWCOMMONS RNA Polymerase I Chain Elongation CCNH +PWCOMMONS RNA Polymerase I Chain Elongation CDK7 +PWCOMMONS RNA Polymerase I Chain Elongation MNAT1 +PWCOMMONS RNA Polymerase I Chain Elongation +PWCOMMONS RNA Polymerase I Transcription Termination UBTF +PWCOMMONS RNA Polymerase I Transcription Termination TAF1C +PWCOMMONS RNA Polymerase I Transcription Termination TAF1B +PWCOMMONS RNA Polymerase I Transcription Termination TAF1A +PWCOMMONS RNA Polymerase I Transcription Termination POLR1D +PWCOMMONS RNA Polymerase I Transcription Termination POLR1C +PWCOMMONS RNA Polymerase I Transcription Termination POLR1A +PWCOMMONS RNA Polymerase I Transcription Termination POLR2K +PWCOMMONS RNA Polymerase I Transcription Termination POLR2H +PWCOMMONS RNA Polymerase I Transcription Termination POLR1B +PWCOMMONS RNA Polymerase I Transcription Termination ERCC2 +PWCOMMONS RNA Polymerase I Transcription Termination GTF2H3 +PWCOMMONS RNA Polymerase I Transcription Termination GTF2H4 +PWCOMMONS RNA Polymerase I Transcription Termination GTF2H2 +PWCOMMONS RNA Polymerase I Transcription Termination ERCC3 +PWCOMMONS RNA Polymerase I Transcription Termination GTF2H1 +PWCOMMONS RNA Polymerase I Transcription Termination CCNH +PWCOMMONS RNA Polymerase I Transcription Termination CDK7 +PWCOMMONS RNA Polymerase I Transcription Termination MNAT1 +PWCOMMONS RNA Polymerase I Transcription Termination PTRF +PWCOMMONS RNA Polymerase I Transcription Termination +PWCOMMONS Class B/2 (Secretin family receptors) PFKFB1 +PWCOMMONS Class B/2 (Secretin family receptors) MLXIPL +PWCOMMONS Class B/2 (Secretin family receptors) AKAP5 +PWCOMMONS Class B/2 (Secretin family receptors) IQGAP1 +PWCOMMONS Class B/2 (Secretin family receptors) GLP1R +PWCOMMONS Class B/2 (Secretin family receptors) GNAS +PWCOMMONS Class B/2 (Secretin family receptors) GCG +PWCOMMONS Class B/2 (Secretin family receptors) GCGR +PWCOMMONS Class B/2 (Secretin family receptors) ADCY8 +PWCOMMONS Class B/2 (Secretin family receptors) SCTR +PWCOMMONS Class B/2 (Secretin family receptors) SCT +PWCOMMONS Class B/2 (Secretin family receptors) GLP2R +PWCOMMONS Class B/2 (Secretin family receptors) GHRHR +PWCOMMONS Class B/2 (Secretin family receptors) GHRH +PWCOMMONS Class B/2 (Secretin family receptors) GIPR +PWCOMMONS Class B/2 (Secretin family receptors) GIP +PWCOMMONS Class B/2 (Secretin family receptors) VAMP2 +PWCOMMONS Class B/2 (Secretin family receptors) VIP +PWCOMMONS Class B/2 (Secretin family receptors) INS +PWCOMMONS Class B/2 (Secretin family receptors) SYT5 +PWCOMMONS Class B/2 (Secretin family receptors) ADCYAP1R1 +PWCOMMONS Class B/2 (Secretin family receptors) KCNJ11 +PWCOMMONS Class B/2 (Secretin family receptors) CREB1 +PWCOMMONS Class B/2 (Secretin family receptors) CRH +PWCOMMONS Class B/2 (Secretin family receptors) LIPE +PWCOMMONS Class B/2 (Secretin family receptors) FABP4 +PWCOMMONS Class B/2 (Secretin family receptors) IAPP +PWCOMMONS Class B/2 (Secretin family receptors) CALCRL +PWCOMMONS Class B/2 (Secretin family receptors) RAMP1 +PWCOMMONS Class B/2 (Secretin family receptors) CALCR +PWCOMMONS Class B/2 (Secretin family receptors) CALCA +PWCOMMONS Class B/2 (Secretin family receptors) +PWCOMMONS Calcitonin-like ligand receptors PFKFB1 +PWCOMMONS Calcitonin-like ligand receptors MLXIPL +PWCOMMONS Calcitonin-like ligand receptors IAPP +PWCOMMONS Calcitonin-like ligand receptors CREB1 +PWCOMMONS Calcitonin-like ligand receptors LIPE +PWCOMMONS Calcitonin-like ligand receptors GNAS +PWCOMMONS Calcitonin-like ligand receptors CALCRL +PWCOMMONS Calcitonin-like ligand receptors RAMP1 +PWCOMMONS Calcitonin-like ligand receptors FABP4 +PWCOMMONS Calcitonin-like ligand receptors CALCR +PWCOMMONS Calcitonin-like ligand receptors CALCA +PWCOMMONS Calcitonin-like ligand receptors +PWCOMMONS Creatine metabolism GAMT +PWCOMMONS Creatine metabolism +PWCOMMONS Telomere Maintenance POLD4 +PWCOMMONS Telomere Maintenance POLD3 +PWCOMMONS Telomere Maintenance POLD2 +PWCOMMONS Telomere Maintenance POLD1 +PWCOMMONS Telomere Maintenance LIG1 +PWCOMMONS Telomere Maintenance DNA2 +PWCOMMONS Telomere Maintenance RPA1 +PWCOMMONS Telomere Maintenance RPA3 +PWCOMMONS Telomere Maintenance RPA2 +PWCOMMONS Telomere Maintenance PRIM2 +PWCOMMONS Telomere Maintenance POLA1 +PWCOMMONS Telomere Maintenance PRIM1 +PWCOMMONS Telomere Maintenance POLA2 +PWCOMMONS Telomere Maintenance RFC2 +PWCOMMONS Telomere Maintenance RFC1 +PWCOMMONS Telomere Maintenance RFC3 +PWCOMMONS Telomere Maintenance RFC5 +PWCOMMONS Telomere Maintenance RFC4 +PWCOMMONS Telomere Maintenance POLE2 +PWCOMMONS Telomere Maintenance POLE +PWCOMMONS Telomere Maintenance FEN1 +PWCOMMONS Telomere Maintenance POT1 +PWCOMMONS Telomere Maintenance HIST3H3 +PWCOMMONS Telomere Maintenance HIST1H4A +PWCOMMONS Telomere Maintenance TERF2 +PWCOMMONS Telomere Maintenance ACD +PWCOMMONS Telomere Maintenance TINF2 +PWCOMMONS Telomere Maintenance TERF1 +PWCOMMONS Telomere Maintenance TERF2IP +PWCOMMONS Telomere Maintenance TERT +PWCOMMONS Telomere Maintenance DKC1 +PWCOMMONS Telomere Maintenance RUVBL2 +PWCOMMONS Telomere Maintenance NHP2 +PWCOMMONS Telomere Maintenance RUVBL1 +PWCOMMONS Telomere Maintenance WDR79 +PWCOMMONS Telomere Maintenance +PWCOMMONS Leucine catabolism BCKDHA +PWCOMMONS Leucine catabolism BCKDHB +PWCOMMONS Leucine catabolism DLD +PWCOMMONS Leucine catabolism RIMS1 +PWCOMMONS Leucine catabolism CPLX1 +PWCOMMONS Leucine catabolism SLC18A3 +PWCOMMONS Leucine catabolism VAMP2 +PWCOMMONS Leucine catabolism RAB3A +PWCOMMONS Leucine catabolism SYT1 +PWCOMMONS Leucine catabolism SLC17A7 +PWCOMMONS Leucine catabolism UNC13B +PWCOMMONS Leucine catabolism BCAT1 +PWCOMMONS Leucine catabolism MCCC2 +PWCOMMONS Leucine catabolism MCCC1 +PWCOMMONS Leucine catabolism AUH +PWCOMMONS Leucine catabolism IVD +PWCOMMONS Leucine catabolism BCAT2 +PWCOMMONS Leucine catabolism +PWCOMMONS Intrinsic Pathway for Apoptosis MST4 +PWCOMMONS Intrinsic Pathway for Apoptosis DSG3 +PWCOMMONS Intrinsic Pathway for Apoptosis DIABLO +PWCOMMONS Intrinsic Pathway for Apoptosis XIAP +PWCOMMONS Intrinsic Pathway for Apoptosis CASP3 +PWCOMMONS Intrinsic Pathway for Apoptosis SPTAN1 +PWCOMMONS Intrinsic Pathway for Apoptosis CASP9 +PWCOMMONS Intrinsic Pathway for Apoptosis CDH1 +PWCOMMONS Intrinsic Pathway for Apoptosis CASP7 +PWCOMMONS Intrinsic Pathway for Apoptosis GAS2 +PWCOMMONS Intrinsic Pathway for Apoptosis DSG1 +PWCOMMONS Intrinsic Pathway for Apoptosis FNTA +PWCOMMONS Intrinsic Pathway for Apoptosis PTK2 +PWCOMMONS Intrinsic Pathway for Apoptosis ADD1 +PWCOMMONS Intrinsic Pathway for Apoptosis BIRC2 +PWCOMMONS Intrinsic Pathway for Apoptosis DBNL +PWCOMMONS Intrinsic Pathway for Apoptosis DSG2 +PWCOMMONS Intrinsic Pathway for Apoptosis BMX +PWCOMMONS Intrinsic Pathway for Apoptosis DFFA +PWCOMMONS Intrinsic Pathway for Apoptosis DFFB +PWCOMMONS Intrinsic Pathway for Apoptosis KPNB1 +PWCOMMONS Intrinsic Pathway for Apoptosis KPNA1 +PWCOMMONS Intrinsic Pathway for Apoptosis OCLN +PWCOMMONS Intrinsic Pathway for Apoptosis TJP2 +PWCOMMONS Intrinsic Pathway for Apoptosis PKP1 +PWCOMMONS Intrinsic Pathway for Apoptosis DSP +PWCOMMONS Intrinsic Pathway for Apoptosis CASP8 +PWCOMMONS Intrinsic Pathway for Apoptosis GSN +PWCOMMONS Intrinsic Pathway for Apoptosis MAPT +PWCOMMONS Intrinsic Pathway for Apoptosis PLEC1 +PWCOMMONS Intrinsic Pathway for Apoptosis CASP6 +PWCOMMONS Intrinsic Pathway for Apoptosis ACIN1 +PWCOMMONS Intrinsic Pathway for Apoptosis STK24 +PWCOMMONS Intrinsic Pathway for Apoptosis PRKCQ +PWCOMMONS Intrinsic Pathway for Apoptosis ROCK1 +PWCOMMONS Intrinsic Pathway for Apoptosis CLSPN +PWCOMMONS Intrinsic Pathway for Apoptosis LMNB1 +PWCOMMONS Intrinsic Pathway for Apoptosis BCAP31 +PWCOMMONS Intrinsic Pathway for Apoptosis PRKCD +PWCOMMONS Intrinsic Pathway for Apoptosis PAK2 +PWCOMMONS Intrinsic Pathway for Apoptosis ARHGAP10 +PWCOMMONS Intrinsic Pathway for Apoptosis FZR1 +PWCOMMONS Intrinsic Pathway for Apoptosis ANAPC5 +PWCOMMONS Intrinsic Pathway for Apoptosis ANAPC11 +PWCOMMONS Intrinsic Pathway for Apoptosis CDC23 +PWCOMMONS Intrinsic Pathway for Apoptosis ANAPC1 +PWCOMMONS Intrinsic Pathway for Apoptosis ANAPC2 +PWCOMMONS Intrinsic Pathway for Apoptosis UBE2D1 +PWCOMMONS Intrinsic Pathway for Apoptosis CDC27 +PWCOMMONS Intrinsic Pathway for Apoptosis ANAPC4 +PWCOMMONS Intrinsic Pathway for Apoptosis ANAPC10 +PWCOMMONS Intrinsic Pathway for Apoptosis ANAPC7 +PWCOMMONS Intrinsic Pathway for Apoptosis UBE2C +PWCOMMONS Intrinsic Pathway for Apoptosis CDC26 +PWCOMMONS Intrinsic Pathway for Apoptosis CDC16 +PWCOMMONS Intrinsic Pathway for Apoptosis UBE2E1 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMC6 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMA3 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD8 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD10 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD1 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD6 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMB5 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMB4 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD4 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMA2 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMB8 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD5 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMB6 +PWCOMMONS Intrinsic Pathway for Apoptosis PSME3 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMB3 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMB7 +PWCOMMONS Intrinsic Pathway for Apoptosis PSME1 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD11 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMA5 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMC5 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMC1 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD7 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD3 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMB2 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD13 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD14 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMB1 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMA6 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMB9 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMB10 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD9 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMC4 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMA1 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMA4 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMA7 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMF1 +PWCOMMONS Intrinsic Pathway for Apoptosis PSME2 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD12 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMC3 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMC2 +PWCOMMONS Intrinsic Pathway for Apoptosis PSMD2 +PWCOMMONS Intrinsic Pathway for Apoptosis CDC25A +PWCOMMONS Intrinsic Pathway for Apoptosis CYCS +PWCOMMONS Intrinsic Pathway for Apoptosis APAF1 +PWCOMMONS Intrinsic Pathway for Apoptosis BCL2L1 +PWCOMMONS Intrinsic Pathway for Apoptosis PMAIP1 +PWCOMMONS Intrinsic Pathway for Apoptosis BID +PWCOMMONS Intrinsic Pathway for Apoptosis BCL2 +PWCOMMONS Intrinsic Pathway for Apoptosis BAD +PWCOMMONS Intrinsic Pathway for Apoptosis BBC3 +PWCOMMONS Intrinsic Pathway for Apoptosis BAX +PWCOMMONS Intrinsic Pathway for Apoptosis GZMB +PWCOMMONS Intrinsic Pathway for Apoptosis BAK1 +PWCOMMONS Intrinsic Pathway for Apoptosis NMT1 +PWCOMMONS Intrinsic Pathway for Apoptosis TFDP1 +PWCOMMONS Intrinsic Pathway for Apoptosis E2F1 +PWCOMMONS Intrinsic Pathway for Apoptosis YWHAB +PWCOMMONS Intrinsic Pathway for Apoptosis AKT1 +PWCOMMONS Intrinsic Pathway for Apoptosis PPP3R1 +PWCOMMONS Intrinsic Pathway for Apoptosis PPP3CC +PWCOMMONS Intrinsic Pathway for Apoptosis MAPK8 +PWCOMMONS Intrinsic Pathway for Apoptosis BMF +PWCOMMONS Intrinsic Pathway for Apoptosis DYNLL2 +PWCOMMONS Intrinsic Pathway for Apoptosis DYNLL1 +PWCOMMONS Intrinsic Pathway for Apoptosis +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria BID +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria MST4 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria DSG3 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria GZMB +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria GSN +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria DIABLO +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria XIAP +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CASP3 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria BAX +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria BAK1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PAK2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria ARHGAP10 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria GAS2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria VIM +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CASP9 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria DSG1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CYCS +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria APAF1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria FZR1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria ANAPC5 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria ANAPC11 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CDC23 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria ANAPC1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria ANAPC2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria UBE2D1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CDC27 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria ANAPC4 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria ANAPC10 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria ANAPC7 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria UBE2C +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CDC26 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CDC16 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria UBE2E1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMC6 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMA3 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD8 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD10 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD6 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMB5 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMB4 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD4 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMA2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMB8 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD5 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMB6 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSME3 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMB3 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMB7 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSME1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD11 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMA5 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMC5 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMC1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD7 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD3 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMB2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD13 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD14 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMB1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMA6 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMB9 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMB10 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD9 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMC4 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMA1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMA4 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMA7 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMF1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSME2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD12 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMC3 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMC2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PSMD2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria NMT1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria ADD1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria BIRC2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria MAPT +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria DBNL +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria DSG2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria BMX +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria BCL2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CDH1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria SPTAN1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CASP7 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CLSPN +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria DFFA +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria DFFB +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria KPNB1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria KPNA1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria OCLN +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria TJP2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PKP1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria DSP +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CASP8 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PLEC1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CASP6 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria ACIN1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria STK24 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PRKCQ +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria ROCK1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria LMNB1 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria BCAP31 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PRKCD +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria CDC25A +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria FNTA +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria PTK2 +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria BAD +PWCOMMONS Activation, myristolyation of BID and translocation to mitochondria +PWCOMMONS Fructose catabolism ATP5F1 +PWCOMMONS Fructose catabolism ATP5J +PWCOMMONS Fructose catabolism ATP5G1 +PWCOMMONS Fructose catabolism ATP5L +PWCOMMONS Fructose catabolism MT-ATP6 +PWCOMMONS Fructose catabolism ATP5J2 +PWCOMMONS Fructose catabolism MT-ATP8 +PWCOMMONS Fructose catabolism ATP5H +PWCOMMONS Fructose catabolism ATP5I +PWCOMMONS Fructose catabolism ATP5C1 +PWCOMMONS Fructose catabolism ATP5D +PWCOMMONS Fructose catabolism ATP5A1 +PWCOMMONS Fructose catabolism ATP5B +PWCOMMONS Fructose catabolism ATP5E +PWCOMMONS Fructose catabolism MLX +PWCOMMONS Fructose catabolism MLXIPL +PWCOMMONS Fructose catabolism HPRT1 +PWCOMMONS Fructose catabolism UQCRC1 +PWCOMMONS Fructose catabolism UQCRB +PWCOMMONS Fructose catabolism UQCR10 +PWCOMMONS Fructose catabolism UQCR +PWCOMMONS Fructose catabolism UQCRC2 +PWCOMMONS Fructose catabolism UQCRH +PWCOMMONS Fructose catabolism UQCRQ +PWCOMMONS Fructose catabolism UQCRFS1 +PWCOMMONS Fructose catabolism MT-CYB +PWCOMMONS Fructose catabolism CYC1 +PWCOMMONS Fructose catabolism GOT2 +PWCOMMONS Fructose catabolism GYG2 +PWCOMMONS Fructose catabolism UPP1 +PWCOMMONS Fructose catabolism PC +PWCOMMONS Fructose catabolism ADSL +PWCOMMONS Fructose catabolism MDH1 +PWCOMMONS Fructose catabolism PCK1 +PWCOMMONS Fructose catabolism OAT +PWCOMMONS Fructose catabolism GYS2 +PWCOMMONS Fructose catabolism ECHS1 +PWCOMMONS Fructose catabolism TXN +PWCOMMONS Fructose catabolism SUCLG1 +PWCOMMONS Fructose catabolism SUCLG2 +PWCOMMONS Fructose catabolism ARG1 +PWCOMMONS Fructose catabolism KCNJ11 +PWCOMMONS Fructose catabolism AMPD3 +PWCOMMONS Fructose catabolism RPE +PWCOMMONS Fructose catabolism GPT +PWCOMMONS Fructose catabolism DPYS +PWCOMMONS Fructose catabolism AK1 +PWCOMMONS Fructose catabolism PKM2 +PWCOMMONS Fructose catabolism NDUFS3 +PWCOMMONS Fructose catabolism NDUFS4 +PWCOMMONS Fructose catabolism NDUFS6 +PWCOMMONS Fructose catabolism NDUFA5 +PWCOMMONS Fructose catabolism NDUFS5 +PWCOMMONS Fructose catabolism NDUFS1 +PWCOMMONS Fructose catabolism NDUFS2 +PWCOMMONS Fructose catabolism NDUFV2 +PWCOMMONS Fructose catabolism NDUFV3 +PWCOMMONS Fructose catabolism NDUFV1 +PWCOMMONS Fructose catabolism NDUFA4 +PWCOMMONS Fructose catabolism NDUFA11 +PWCOMMONS Fructose catabolism MT-ND3 +PWCOMMONS Fructose catabolism NDUFA13 +PWCOMMONS Fructose catabolism NDUFB5 +PWCOMMONS Fructose catabolism NDUFC1 +PWCOMMONS Fructose catabolism NDUFA6 +PWCOMMONS Fructose catabolism NDUFC2 +PWCOMMONS Fructose catabolism NDUFA3 +PWCOMMONS Fructose catabolism NDUFB3 +PWCOMMONS Fructose catabolism NDUFB1 +PWCOMMONS Fructose catabolism NDUFAB1 +PWCOMMONS Fructose catabolism MT-ND4 +PWCOMMONS Fructose catabolism MT-ND5 +PWCOMMONS Fructose catabolism NDUFA1 +PWCOMMONS Fructose catabolism NDUFB9 +PWCOMMONS Fructose catabolism NDUFB6 +PWCOMMONS Fructose catabolism NDUFB4 +PWCOMMONS Fructose catabolism NDUFA8 +PWCOMMONS Fructose catabolism NDUFB7 +PWCOMMONS Fructose catabolism NDUFA12 +PWCOMMONS Fructose catabolism NDUFB2 +PWCOMMONS Fructose catabolism MT-ND4L +PWCOMMONS Fructose catabolism MT-ND2 +PWCOMMONS Fructose catabolism NDUFB10 +PWCOMMONS Fructose catabolism NDUFA7 +PWCOMMONS Fructose catabolism NDUFA2 +PWCOMMONS Fructose catabolism NDUFB8 +PWCOMMONS Fructose catabolism NDUFB11 +PWCOMMONS Fructose catabolism MT-ND6 +PWCOMMONS Fructose catabolism MT-ND1 +PWCOMMONS Fructose catabolism NDUFS7 +PWCOMMONS Fructose catabolism NDUFA10 +PWCOMMONS Fructose catabolism NDUFS8 +PWCOMMONS Fructose catabolism NDUFA9 +PWCOMMONS Fructose catabolism VAMP2 +PWCOMMONS Fructose catabolism NT5C1A +PWCOMMONS Fructose catabolism FASN +PWCOMMONS Fructose catabolism DLST +PWCOMMONS Fructose catabolism OGDH +PWCOMMONS Fructose catabolism DLD +PWCOMMONS Fructose catabolism GMPS +PWCOMMONS Fructose catabolism GUK1 +PWCOMMONS Fructose catabolism IMPDH2 +PWCOMMONS Fructose catabolism GDA +PWCOMMONS Fructose catabolism NME1 +PWCOMMONS Fructose catabolism IMPDH1 +PWCOMMONS Fructose catabolism ADSS +PWCOMMONS Fructose catabolism ATIC +PWCOMMONS Fructose catabolism PFKFB1 +PWCOMMONS Fructose catabolism INS +PWCOMMONS Fructose catabolism SYT5 +PWCOMMONS Fructose catabolism GART +PWCOMMONS Fructose catabolism SLC35D1 +PWCOMMONS Fructose catabolism ASL +PWCOMMONS Fructose catabolism UPB1 +PWCOMMONS Fructose catabolism SLC25A21 +PWCOMMONS Fructose catabolism GLRX +PWCOMMONS Fructose catabolism AGPAT1 +PWCOMMONS Fructose catabolism UROS +PWCOMMONS Fructose catabolism TALDO1 +PWCOMMONS Fructose catabolism ASS1 +PWCOMMONS Fructose catabolism KHK +PWCOMMONS Fructose catabolism CMPK1 +PWCOMMONS Fructose catabolism ALAD +PWCOMMONS Fructose catabolism IDH3G +PWCOMMONS Fructose catabolism IDH3A +PWCOMMONS Fructose catabolism IDH3B +PWCOMMONS Fructose catabolism UGDH +PWCOMMONS Fructose catabolism RRM2 +PWCOMMONS Fructose catabolism RRM1 +PWCOMMONS Fructose catabolism G6PD +PWCOMMONS Fructose catabolism AMPD1 +PWCOMMONS Fructose catabolism SLC25A11 +PWCOMMONS Fructose catabolism PPAT +PWCOMMONS Fructose catabolism SDHC +PWCOMMONS Fructose catabolism SDHD +PWCOMMONS Fructose catabolism SDHB +PWCOMMONS Fructose catabolism SDHA +PWCOMMONS Fructose catabolism TKT +PWCOMMONS Fructose catabolism FECH +PWCOMMONS Fructose catabolism PDHX +PWCOMMONS Fructose catabolism DLAT +PWCOMMONS Fructose catabolism PDHA1 +PWCOMMONS Fructose catabolism PDHB +PWCOMMONS Fructose catabolism PPAP2C +PWCOMMONS Fructose catabolism GBE1 +PWCOMMONS Fructose catabolism TXNRD1 +PWCOMMONS Fructose catabolism TPI1 +PWCOMMONS Fructose catabolism SLC25A10 +PWCOMMONS Fructose catabolism G6PC +PWCOMMONS Fructose catabolism GSR +PWCOMMONS Fructose catabolism NT5C2 +PWCOMMONS Fructose catabolism MT-CO2 +PWCOMMONS Fructose catabolism COX8A +PWCOMMONS Fructose catabolism COX7C +PWCOMMONS Fructose catabolism MT-CO3 +PWCOMMONS Fructose catabolism COX6C +PWCOMMONS Fructose catabolism COX5B +PWCOMMONS Fructose catabolism MT-CO1 +PWCOMMONS Fructose catabolism COX7A2L +PWCOMMONS Fructose catabolism COX4I1 +PWCOMMONS Fructose catabolism COX6A1 +PWCOMMONS Fructose catabolism COX7B +PWCOMMONS Fructose catabolism COX6B1 +PWCOMMONS Fructose catabolism COX5A +PWCOMMONS Fructose catabolism PGLS +PWCOMMONS Fructose catabolism HADH +PWCOMMONS Fructose catabolism GOT1 +PWCOMMONS Fructose catabolism PGK1 +PWCOMMONS Fructose catabolism GCDH +PWCOMMONS Fructose catabolism NP +PWCOMMONS Fructose catabolism DPYD +PWCOMMONS Fructose catabolism ACLY +PWCOMMONS Fructose catabolism MDH2 +PWCOMMONS Fructose catabolism UMPS +PWCOMMONS Fructose catabolism CYCS +PWCOMMONS Fructose catabolism CTPS +PWCOMMONS Fructose catabolism PRPS1 +PWCOMMONS Fructose catabolism ACACB +PWCOMMONS Fructose catabolism OTC +PWCOMMONS Fructose catabolism FH +PWCOMMONS Fructose catabolism PFAS +PWCOMMONS Fructose catabolism GPI +PWCOMMONS Fructose catabolism UROD +PWCOMMONS Fructose catabolism CPOX +PWCOMMONS Fructose catabolism XDH +PWCOMMONS Fructose catabolism PAICS +PWCOMMONS Fructose catabolism CPS1 +PWCOMMONS Fructose catabolism CS +PWCOMMONS Fructose catabolism CAT +PWCOMMONS Fructose catabolism PPOX +PWCOMMONS Fructose catabolism SLC25A1 +PWCOMMONS Fructose catabolism ACO2 +PWCOMMONS Fructose catabolism PGM1 +PWCOMMONS Fructose catabolism PCK2 +PWCOMMONS Fructose catabolism SUCLA2 +PWCOMMONS Fructose catabolism PPAP2B +PWCOMMONS Fructose catabolism PYCR1 +PWCOMMONS Fructose catabolism DGAT1 +PWCOMMONS Fructose catabolism NME2 +PWCOMMONS Fructose catabolism RPIA +PWCOMMONS Fructose catabolism AMPD2 +PWCOMMONS Fructose catabolism PGD +PWCOMMONS Fructose catabolism PPAP2A +PWCOMMONS Fructose catabolism +PWCOMMONS P2Y receptors P2RY8 +PWCOMMONS P2Y receptors P2RY12 +PWCOMMONS P2Y receptors P2RY4 +PWCOMMONS P2Y receptors P2RY11 +PWCOMMONS P2Y receptors P2RY6 +PWCOMMONS P2Y receptors P2RY10 +PWCOMMONS P2Y receptors P2RY14 +PWCOMMONS P2Y receptors LPAR4 +PWCOMMONS P2Y receptors P2RY13 +PWCOMMONS P2Y receptors P2RY1 +PWCOMMONS P2Y receptors P2RY5 +PWCOMMONS P2Y receptors GPR17 +PWCOMMONS P2Y receptors +PWCOMMONS Transcription from mitochondrial promoters TFAM +PWCOMMONS Transcription from mitochondrial promoters TFB2M +PWCOMMONS Transcription from mitochondrial promoters POLRMT +PWCOMMONS Transcription from mitochondrial promoters +PWCOMMONS Mitochondrial transcription initiation TFB2M +PWCOMMONS Mitochondrial transcription initiation POLRMT +PWCOMMONS Mitochondrial transcription initiation MTERF +PWCOMMONS Mitochondrial transcription initiation +PWCOMMONS Mal Cascade LY96 +PWCOMMONS Mal Cascade TLR4 +PWCOMMONS Mal Cascade +PWCOMMONS Shc events in EGFR signaling RAF1 +PWCOMMONS Shc events in EGFR signaling YWHAB +PWCOMMONS Shc events in EGFR signaling RPS6KA5 +PWCOMMONS Shc events in EGFR signaling MAPK3 +PWCOMMONS Shc events in EGFR signaling ATF1 +PWCOMMONS Shc events in EGFR signaling CREB1 +PWCOMMONS Shc events in EGFR signaling MAPK1 +PWCOMMONS Shc events in EGFR signaling MAP2K1 +PWCOMMONS Shc events in EGFR signaling SOS1 +PWCOMMONS Shc events in EGFR signaling SHC1 +PWCOMMONS Shc events in EGFR signaling EGFR +PWCOMMONS Shc events in EGFR signaling EGF +PWCOMMONS Shc events in EGFR signaling +PWCOMMONS Membrane Trafficking VAMP8 +PWCOMMONS Membrane Trafficking AP1G1 +PWCOMMONS Membrane Trafficking AP1B1 +PWCOMMONS Membrane Trafficking HSPA8 +PWCOMMONS Membrane Trafficking DNAJC6 +PWCOMMONS Membrane Trafficking STX4 +PWCOMMONS Membrane Trafficking VAMP7 +PWCOMMONS Membrane Trafficking SNAP23 +PWCOMMONS Membrane Trafficking VAMP2 +PWCOMMONS Membrane Trafficking SH3GL2 +PWCOMMONS Membrane Trafficking ARF1 +PWCOMMONS Membrane Trafficking GBF1 +PWCOMMONS Membrane Trafficking VTI1B +PWCOMMONS Membrane Trafficking SAR1B +PWCOMMONS Membrane Trafficking PREB +PWCOMMONS Membrane Trafficking SEC23A +PWCOMMONS Membrane Trafficking SEC13 +PWCOMMONS Membrane Trafficking SEC31A +PWCOMMONS Membrane Trafficking ARFGAP1 +PWCOMMONS Membrane Trafficking ARCN1 +PWCOMMONS Membrane Trafficking COPG +PWCOMMONS Membrane Trafficking COPB1 +PWCOMMONS Membrane Trafficking COPZ1 +PWCOMMONS Membrane Trafficking COPE +PWCOMMONS Membrane Trafficking COPB2 +PWCOMMONS Membrane Trafficking COPA +PWCOMMONS Membrane Trafficking +PWCOMMONS Pausing and recovery of elongation TCEA1 +PWCOMMONS Pausing and recovery of elongation ELL +PWCOMMONS Pausing and recovery of elongation TCEB3 +PWCOMMONS Pausing and recovery of elongation TCEB1 +PWCOMMONS Pausing and recovery of elongation TCEB2 +PWCOMMONS Pausing and recovery of elongation SSRP1 +PWCOMMONS Pausing and recovery of elongation SUPT16H +PWCOMMONS Pausing and recovery of elongation CCNT2 +PWCOMMONS Pausing and recovery of elongation CDK9 +PWCOMMONS Pausing and recovery of elongation CCNT1 +PWCOMMONS Pausing and recovery of elongation POLR2G +PWCOMMONS Pausing and recovery of elongation POLR2B +PWCOMMONS Pausing and recovery of elongation POLR2L +PWCOMMONS Pausing and recovery of elongation POLR2A +PWCOMMONS Pausing and recovery of elongation POLR2K +PWCOMMONS Pausing and recovery of elongation POLR2H +PWCOMMONS Pausing and recovery of elongation POLR2D +PWCOMMONS Pausing and recovery of elongation POLR2C +PWCOMMONS Pausing and recovery of elongation POLR2I +PWCOMMONS Pausing and recovery of elongation POLR2F +PWCOMMONS Pausing and recovery of elongation POLR2J +PWCOMMONS Pausing and recovery of elongation POLR2E +PWCOMMONS Pausing and recovery of elongation GTF2F1 +PWCOMMONS Pausing and recovery of elongation GTF2F2 +PWCOMMONS Pausing and recovery of elongation SUPT4H1 +PWCOMMONS Pausing and recovery of elongation TH1L +PWCOMMONS Pausing and recovery of elongation WHSC2 +PWCOMMONS Pausing and recovery of elongation RDBP +PWCOMMONS Pausing and recovery of elongation COBRA1 +PWCOMMONS Pausing and recovery of elongation EIF1AX +PWCOMMONS Pausing and recovery of elongation EIF4H +PWCOMMONS Pausing and recovery of elongation EIF4B +PWCOMMONS Pausing and recovery of elongation EIF4E +PWCOMMONS Pausing and recovery of elongation EIF4G1 +PWCOMMONS Pausing and recovery of elongation EIF4A2 +PWCOMMONS Pausing and recovery of elongation EIF2S3 +PWCOMMONS Pausing and recovery of elongation EIF2S2 +PWCOMMONS Pausing and recovery of elongation EIF2S1 +PWCOMMONS Pausing and recovery of elongation EIF3K +PWCOMMONS Pausing and recovery of elongation EIF3H +PWCOMMONS Pausing and recovery of elongation EIF3E +PWCOMMONS Pausing and recovery of elongation EIF3F +PWCOMMONS Pausing and recovery of elongation EIF3J +PWCOMMONS Pausing and recovery of elongation EIF3G +PWCOMMONS Pausing and recovery of elongation EIF3C +PWCOMMONS Pausing and recovery of elongation EIF3A +PWCOMMONS Pausing and recovery of elongation EIF3I +PWCOMMONS Pausing and recovery of elongation EIF3D +PWCOMMONS Pausing and recovery of elongation EIF3B +PWCOMMONS Pausing and recovery of elongation RPS23 +PWCOMMONS Pausing and recovery of elongation RPS16 +PWCOMMONS Pausing and recovery of elongation RPS12 +PWCOMMONS Pausing and recovery of elongation RPS29 +PWCOMMONS Pausing and recovery of elongation RPSA +PWCOMMONS Pausing and recovery of elongation RPS21 +PWCOMMONS Pausing and recovery of elongation RPS27A +PWCOMMONS Pausing and recovery of elongation RPS20 +PWCOMMONS Pausing and recovery of elongation RPS15 +PWCOMMONS Pausing and recovery of elongation RPS24 +PWCOMMONS Pausing and recovery of elongation RPS9 +PWCOMMONS Pausing and recovery of elongation RPS10 +PWCOMMONS Pausing and recovery of elongation RPS28 +PWCOMMONS Pausing and recovery of elongation RPS2 +PWCOMMONS Pausing and recovery of elongation RPS19 +PWCOMMONS Pausing and recovery of elongation RPS4X +PWCOMMONS Pausing and recovery of elongation RPS18 +PWCOMMONS Pausing and recovery of elongation RPS8 +PWCOMMONS Pausing and recovery of elongation RPS3 +PWCOMMONS Pausing and recovery of elongation RPS4Y1 +PWCOMMONS Pausing and recovery of elongation RPS25 +PWCOMMONS Pausing and recovery of elongation RPS14 +PWCOMMONS Pausing and recovery of elongation RPS17 +PWCOMMONS Pausing and recovery of elongation RPS26 +PWCOMMONS Pausing and recovery of elongation RPS11 +PWCOMMONS Pausing and recovery of elongation RPS5 +PWCOMMONS Pausing and recovery of elongation FAU +PWCOMMONS Pausing and recovery of elongation RPS15A +PWCOMMONS Pausing and recovery of elongation RPS13 +PWCOMMONS Pausing and recovery of elongation RPS6 +PWCOMMONS Pausing and recovery of elongation RPS3A +PWCOMMONS Pausing and recovery of elongation RPS7 +PWCOMMONS Pausing and recovery of elongation RPS27 +PWCOMMONS Pausing and recovery of elongation NUP153 +PWCOMMONS Pausing and recovery of elongation NUP85 +PWCOMMONS Pausing and recovery of elongation NUP35 +PWCOMMONS Pausing and recovery of elongation AAAS +PWCOMMONS Pausing and recovery of elongation NUP50 +PWCOMMONS Pausing and recovery of elongation NUP43 +PWCOMMONS Pausing and recovery of elongation NUP205 +PWCOMMONS Pausing and recovery of elongation NUP93 +PWCOMMONS Pausing and recovery of elongation NUP88 +PWCOMMONS Pausing and recovery of elongation NUPL2 +PWCOMMONS Pausing and recovery of elongation NUP210 +PWCOMMONS Pausing and recovery of elongation NUP155 +PWCOMMONS Pausing and recovery of elongation RANBP2 +PWCOMMONS Pausing and recovery of elongation RAE1 +PWCOMMONS Pausing and recovery of elongation NUP188 +PWCOMMONS Pausing and recovery of elongation NUP214 +PWCOMMONS Pausing and recovery of elongation NUP54 +PWCOMMONS Pausing and recovery of elongation NUP62 +PWCOMMONS Pausing and recovery of elongation NUP107 +PWCOMMONS Pausing and recovery of elongation NUP133 +PWCOMMONS Pausing and recovery of elongation NUP160 +PWCOMMONS Pausing and recovery of elongation NUP37 +PWCOMMONS Pausing and recovery of elongation RPL27A +PWCOMMONS Pausing and recovery of elongation RPL15 +PWCOMMONS Pausing and recovery of elongation RPL11 +PWCOMMONS Pausing and recovery of elongation RPL29 +PWCOMMONS Pausing and recovery of elongation RPL30 +PWCOMMONS Pausing and recovery of elongation RPL8 +PWCOMMONS Pausing and recovery of elongation RPL22 +PWCOMMONS Pausing and recovery of elongation RPL28 +PWCOMMONS Pausing and recovery of elongation RPL7A +PWCOMMONS Pausing and recovery of elongation RPL35A +PWCOMMONS Pausing and recovery of elongation RPL31 +PWCOMMONS Pausing and recovery of elongation RPL26L1 +PWCOMMONS Pausing and recovery of elongation RPL26 +PWCOMMONS Pausing and recovery of elongation RPL18A +PWCOMMONS Pausing and recovery of elongation RPL14 +PWCOMMONS Pausing and recovery of elongation RPLP2 +PWCOMMONS Pausing and recovery of elongation RPL10 +PWCOMMONS Pausing and recovery of elongation RPL34 +PWCOMMONS Pausing and recovery of elongation RPL37 +PWCOMMONS Pausing and recovery of elongation RPL3L +PWCOMMONS Pausing and recovery of elongation RPL32 +PWCOMMONS Pausing and recovery of elongation RPL36 +PWCOMMONS Pausing and recovery of elongation RPLP1 +PWCOMMONS Pausing and recovery of elongation RPL23A +PWCOMMONS Pausing and recovery of elongation RPL24 +PWCOMMONS Pausing and recovery of elongation RPL6 +PWCOMMONS Pausing and recovery of elongation RPL18 +PWCOMMONS Pausing and recovery of elongation RPL5 +PWCOMMONS Pausing and recovery of elongation RPL23 +PWCOMMONS Pausing and recovery of elongation RPL19 +PWCOMMONS Pausing and recovery of elongation RPL41 +PWCOMMONS Pausing and recovery of elongation RPL7 +PWCOMMONS Pausing and recovery of elongation RPL13A +PWCOMMONS Pausing and recovery of elongation RPL27 +PWCOMMONS Pausing and recovery of elongation RPL17 +PWCOMMONS Pausing and recovery of elongation RPL3 +PWCOMMONS Pausing and recovery of elongation RPL10A +PWCOMMONS Pausing and recovery of elongation RPL21 +PWCOMMONS Pausing and recovery of elongation RPL4 +PWCOMMONS Pausing and recovery of elongation RPL35 +PWCOMMONS Pausing and recovery of elongation RPL13 +PWCOMMONS Pausing and recovery of elongation RPL39 +PWCOMMONS Pausing and recovery of elongation RPL38 +PWCOMMONS Pausing and recovery of elongation RPL36A +PWCOMMONS Pausing and recovery of elongation RPL9 +PWCOMMONS Pausing and recovery of elongation RPLP0 +PWCOMMONS Pausing and recovery of elongation UBA52 +PWCOMMONS Pausing and recovery of elongation RPL37A +PWCOMMONS Pausing and recovery of elongation RPL12 +PWCOMMONS Pausing and recovery of elongation EEF1A1 +PWCOMMONS Pausing and recovery of elongation PCF11 +PWCOMMONS Pausing and recovery of elongation CLP1 +PWCOMMONS Pausing and recovery of elongation CPSF7 +PWCOMMONS Pausing and recovery of elongation NUDT21 +PWCOMMONS Pausing and recovery of elongation EIF2B5 +PWCOMMONS Pausing and recovery of elongation EIF2B1 +PWCOMMONS Pausing and recovery of elongation EIF2B3 +PWCOMMONS Pausing and recovery of elongation EIF2B4 +PWCOMMONS Pausing and recovery of elongation EIF2B2 +PWCOMMONS Pausing and recovery of elongation PABPN1 +PWCOMMONS Pausing and recovery of elongation PAPOLA +PWCOMMONS Pausing and recovery of elongation NCBP2 +PWCOMMONS Pausing and recovery of elongation NCBP1 +PWCOMMONS Pausing and recovery of elongation CPSF2 +PWCOMMONS Pausing and recovery of elongation CPSF1 +PWCOMMONS Pausing and recovery of elongation CPSF3 +PWCOMMONS Pausing and recovery of elongation CSTF2 +PWCOMMONS Pausing and recovery of elongation CSTF1 +PWCOMMONS Pausing and recovery of elongation CSTF3 +PWCOMMONS Pausing and recovery of elongation ETF1 +PWCOMMONS Pausing and recovery of elongation GSPT2 +PWCOMMONS Pausing and recovery of elongation PABPC1 +PWCOMMONS Pausing and recovery of elongation SFRS2 +PWCOMMONS Pausing and recovery of elongation CDC40 +PWCOMMONS Pausing and recovery of elongation SFRS3 +PWCOMMONS Pausing and recovery of elongation SFRS11 +PWCOMMONS Pausing and recovery of elongation U2AF2 +PWCOMMONS Pausing and recovery of elongation SFRS9 +PWCOMMONS Pausing and recovery of elongation SFRS5 +PWCOMMONS Pausing and recovery of elongation SFRS7 +PWCOMMONS Pausing and recovery of elongation SFRS4 +PWCOMMONS Pausing and recovery of elongation SFRS6 +PWCOMMONS Pausing and recovery of elongation DHX38 +PWCOMMONS Pausing and recovery of elongation U2AF1 +PWCOMMONS Pausing and recovery of elongation SFRS1 +PWCOMMONS Pausing and recovery of elongation RNPS1 +PWCOMMONS Pausing and recovery of elongation UPF3B +PWCOMMONS Pausing and recovery of elongation SRRM1 +PWCOMMONS Pausing and recovery of elongation THOC4 +PWCOMMONS Pausing and recovery of elongation RBM8A +PWCOMMONS Pausing and recovery of elongation MAGOH +PWCOMMONS Pausing and recovery of elongation EEF1G +PWCOMMONS Pausing and recovery of elongation EEF1D +PWCOMMONS Pausing and recovery of elongation EEF1B2 +PWCOMMONS Pausing and recovery of elongation NXF1 +PWCOMMONS Pausing and recovery of elongation EIF5 +PWCOMMONS Pausing and recovery of elongation EIF5B +PWCOMMONS Pausing and recovery of elongation EEF2 +PWCOMMONS Pausing and recovery of elongation +PWCOMMONS Aldehyde Dehydrogenase ACSS2 +PWCOMMONS Aldehyde Dehydrogenase ALDH2 +PWCOMMONS Aldehyde Dehydrogenase +PWCOMMONS Acetaldehyde is oxidized by NAD+ to form acetate, NADH, and H+ ACSS2 +PWCOMMONS Acetaldehyde is oxidized by NAD+ to form acetate, NADH, and H+ ALDH2 +PWCOMMONS Acetaldehyde is oxidized by NAD+ to form acetate, NADH, and H+ +PWCOMMONS Metabolism of porphyrins ALAD +PWCOMMONS Metabolism of porphyrins UROD +PWCOMMONS Metabolism of porphyrins CPOX +PWCOMMONS Metabolism of porphyrins UROS +PWCOMMONS Metabolism of porphyrins PPOX +PWCOMMONS Metabolism of porphyrins +PWCOMMONS Heme biosynthesis ALAD +PWCOMMONS Heme biosynthesis UROD +PWCOMMONS Heme biosynthesis CPOX +PWCOMMONS Heme biosynthesis UROS +PWCOMMONS Heme biosynthesis PPOX +PWCOMMONS Heme biosynthesis +PWCOMMONS Signaling by TGF beta TGFBR2 +PWCOMMONS Signaling by TGF beta TGFB1 +PWCOMMONS Signaling by TGF beta SMAD4 +PWCOMMONS Signaling by TGF beta FURIN +PWCOMMONS Signaling by TGF beta NOTCH2 +PWCOMMONS Signaling by TGF beta SKI +PWCOMMONS Signaling by TGF beta +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 ANAPC5 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 ANAPC11 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 CDC23 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 ANAPC1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 ANAPC2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 UBE2D1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 CDC27 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 ANAPC4 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 ANAPC10 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 ANAPC7 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 UBE2C +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 CDC26 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 CDC16 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 UBE2E1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMC6 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMA3 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD8 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD10 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD6 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMB5 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMB4 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD4 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMA2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMB8 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD5 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMB6 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSME3 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMB3 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMB7 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSME1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD11 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMA5 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMC5 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMC1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD7 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD3 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMB2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD13 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD14 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMB1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMA6 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMB9 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMB10 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD9 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMC4 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMA1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMA4 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMA7 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMF1 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSME2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD12 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMC3 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMC2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 PSMD2 +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 CDC25A +PWCOMMONS Regulation of activated PAK-2p34 by proteasome mediated degradation - 11 +PWCOMMONS Methylation TPMT +PWCOMMONS Methylation COMT +PWCOMMONS Methylation AMD1 +PWCOMMONS Methylation NNMT +PWCOMMONS Methylation SMS +PWCOMMONS Methylation AHCY +PWCOMMONS Methylation SRM +PWCOMMONS Methylation +PWCOMMONS Olfactory Signaling Pathway GNAL +PWCOMMONS Olfactory Signaling Pathway GNB1 +PWCOMMONS Olfactory Signaling Pathway +PWCOMMONS Metabolism of proteins CCT2 +PWCOMMONS Metabolism of proteins CCT3 +PWCOMMONS Metabolism of proteins CCT6A +PWCOMMONS Metabolism of proteins CCT5 +PWCOMMONS Metabolism of proteins CCT8 +PWCOMMONS Metabolism of proteins CCT1 +PWCOMMONS Metabolism of proteins CCT7 +PWCOMMONS Metabolism of proteins CCT4 +PWCOMMONS Metabolism of proteins TBCE +PWCOMMONS Metabolism of proteins TBCB +PWCOMMONS Metabolism of proteins TBCC +PWCOMMONS Metabolism of proteins TBCD +PWCOMMONS Metabolism of proteins ACTB +PWCOMMONS Metabolism of proteins TBCA +PWCOMMONS Metabolism of proteins VBP1 +PWCOMMONS Metabolism of proteins PFDN1 +PWCOMMONS Metabolism of proteins PFDN5 +PWCOMMONS Metabolism of proteins PFDN2 +PWCOMMONS Metabolism of proteins PFDN4 +PWCOMMONS Metabolism of proteins PFDN6 +PWCOMMONS Metabolism of proteins RPS23 +PWCOMMONS Metabolism of proteins RPS16 +PWCOMMONS Metabolism of proteins RPS12 +PWCOMMONS Metabolism of proteins RPS29 +PWCOMMONS Metabolism of proteins RPSA +PWCOMMONS Metabolism of proteins RPS21 +PWCOMMONS Metabolism of proteins RPS27A +PWCOMMONS Metabolism of proteins RPS20 +PWCOMMONS Metabolism of proteins RPS15 +PWCOMMONS Metabolism of proteins RPS24 +PWCOMMONS Metabolism of proteins RPS9 +PWCOMMONS Metabolism of proteins RPS10 +PWCOMMONS Metabolism of proteins RPS28 +PWCOMMONS Metabolism of proteins RPS2 +PWCOMMONS Metabolism of proteins RPS19 +PWCOMMONS Metabolism of proteins RPS4X +PWCOMMONS Metabolism of proteins RPS18 +PWCOMMONS Metabolism of proteins RPS8 +PWCOMMONS Metabolism of proteins RPS3 +PWCOMMONS Metabolism of proteins RPS4Y1 +PWCOMMONS Metabolism of proteins RPS25 +PWCOMMONS Metabolism of proteins RPS14 +PWCOMMONS Metabolism of proteins RPS17 +PWCOMMONS Metabolism of proteins RPS26 +PWCOMMONS Metabolism of proteins RPS11 +PWCOMMONS Metabolism of proteins RPS5 +PWCOMMONS Metabolism of proteins FAU +PWCOMMONS Metabolism of proteins RPS15A +PWCOMMONS Metabolism of proteins RPS13 +PWCOMMONS Metabolism of proteins RPS6 +PWCOMMONS Metabolism of proteins RPS3A +PWCOMMONS Metabolism of proteins RPS7 +PWCOMMONS Metabolism of proteins RPS27 +PWCOMMONS Metabolism of proteins RPL27A +PWCOMMONS Metabolism of proteins RPL15 +PWCOMMONS Metabolism of proteins RPL11 +PWCOMMONS Metabolism of proteins RPL29 +PWCOMMONS Metabolism of proteins RPL30 +PWCOMMONS Metabolism of proteins RPL8 +PWCOMMONS Metabolism of proteins RPL22 +PWCOMMONS Metabolism of proteins RPL28 +PWCOMMONS Metabolism of proteins RPL7A +PWCOMMONS Metabolism of proteins RPL35A +PWCOMMONS Metabolism of proteins RPL31 +PWCOMMONS Metabolism of proteins RPL26L1 +PWCOMMONS Metabolism of proteins RPL26 +PWCOMMONS Metabolism of proteins RPL18A +PWCOMMONS Metabolism of proteins RPL14 +PWCOMMONS Metabolism of proteins RPLP2 +PWCOMMONS Metabolism of proteins RPL10 +PWCOMMONS Metabolism of proteins RPL34 +PWCOMMONS Metabolism of proteins RPL37 +PWCOMMONS Metabolism of proteins RPL3L +PWCOMMONS Metabolism of proteins RPL32 +PWCOMMONS Metabolism of proteins RPL36 +PWCOMMONS Metabolism of proteins RPLP1 +PWCOMMONS Metabolism of proteins RPL23A +PWCOMMONS Metabolism of proteins RPL24 +PWCOMMONS Metabolism of proteins RPL6 +PWCOMMONS Metabolism of proteins RPL18 +PWCOMMONS Metabolism of proteins RPL5 +PWCOMMONS Metabolism of proteins RPL23 +PWCOMMONS Metabolism of proteins RPL19 +PWCOMMONS Metabolism of proteins RPL41 +PWCOMMONS Metabolism of proteins RPL7 +PWCOMMONS Metabolism of proteins RPL13A +PWCOMMONS Metabolism of proteins RPL27 +PWCOMMONS Metabolism of proteins RPL17 +PWCOMMONS Metabolism of proteins RPL3 +PWCOMMONS Metabolism of proteins RPL10A +PWCOMMONS Metabolism of proteins RPL21 +PWCOMMONS Metabolism of proteins RPL4 +PWCOMMONS Metabolism of proteins RPL35 +PWCOMMONS Metabolism of proteins RPL13 +PWCOMMONS Metabolism of proteins RPL39 +PWCOMMONS Metabolism of proteins RPL38 +PWCOMMONS Metabolism of proteins RPL36A +PWCOMMONS Metabolism of proteins RPL9 +PWCOMMONS Metabolism of proteins RPLP0 +PWCOMMONS Metabolism of proteins UBA52 +PWCOMMONS Metabolism of proteins RPL37A +PWCOMMONS Metabolism of proteins RPL12 +PWCOMMONS Metabolism of proteins EEF1A1 +PWCOMMONS Metabolism of proteins EIF2B5 +PWCOMMONS Metabolism of proteins EIF2B1 +PWCOMMONS Metabolism of proteins EIF2B3 +PWCOMMONS Metabolism of proteins EIF2B4 +PWCOMMONS Metabolism of proteins EIF2B2 +PWCOMMONS Metabolism of proteins ETF1 +PWCOMMONS Metabolism of proteins GSPT2 +PWCOMMONS Metabolism of proteins EEF1G +PWCOMMONS Metabolism of proteins EEF1D +PWCOMMONS Metabolism of proteins EEF1B2 +PWCOMMONS Metabolism of proteins EIF2S3 +PWCOMMONS Metabolism of proteins EIF2S2 +PWCOMMONS Metabolism of proteins EIF2S1 +PWCOMMONS Metabolism of proteins EIF5 +PWCOMMONS Metabolism of proteins EIF1AX +PWCOMMONS Metabolism of proteins EIF3K +PWCOMMONS Metabolism of proteins EIF3H +PWCOMMONS Metabolism of proteins EIF3E +PWCOMMONS Metabolism of proteins EIF3F +PWCOMMONS Metabolism of proteins EIF3J +PWCOMMONS Metabolism of proteins EIF3G +PWCOMMONS Metabolism of proteins EIF3C +PWCOMMONS Metabolism of proteins EIF3A +PWCOMMONS Metabolism of proteins EIF3I +PWCOMMONS Metabolism of proteins EIF3D +PWCOMMONS Metabolism of proteins EIF3B +PWCOMMONS Metabolism of proteins EIF4H +PWCOMMONS Metabolism of proteins EIF4B +PWCOMMONS Metabolism of proteins EIF4E +PWCOMMONS Metabolism of proteins EIF4G1 +PWCOMMONS Metabolism of proteins EIF4A2 +PWCOMMONS Metabolism of proteins EIF5B +PWCOMMONS Metabolism of proteins EEF2 +PWCOMMONS Metabolism of proteins EIF4EBP1 +PWCOMMONS Metabolism of proteins PABPC1 +PWCOMMONS Metabolism of proteins F7 +PWCOMMONS Metabolism of proteins F10 +PWCOMMONS Metabolism of proteins F9 +PWCOMMONS Metabolism of proteins PROS1 +PWCOMMONS Metabolism of proteins PROZ +PWCOMMONS Metabolism of proteins GAS6 +PWCOMMONS Metabolism of proteins PROC +PWCOMMONS Metabolism of proteins F2 +PWCOMMONS Metabolism of proteins GGCX +PWCOMMONS Metabolism of proteins FURIN +PWCOMMONS Metabolism of proteins NOTCH2 +PWCOMMONS Metabolism of proteins DHPS +PWCOMMONS Metabolism of proteins DOHH +PWCOMMONS Metabolism of proteins PIGW +PWCOMMONS Metabolism of proteins PIGL +PWCOMMONS Metabolism of proteins PLAUR +PWCOMMONS Metabolism of proteins PIGG +PWCOMMONS Metabolism of proteins PIGF +PWCOMMONS Metabolism of proteins PIGH +PWCOMMONS Metabolism of proteins DPM2 +PWCOMMONS Metabolism of proteins PIGC +PWCOMMONS Metabolism of proteins PIGA +PWCOMMONS Metabolism of proteins PIGP +PWCOMMONS Metabolism of proteins PIGO +PWCOMMONS Metabolism of proteins PIGB +PWCOMMONS Metabolism of proteins PGAP1 +PWCOMMONS Metabolism of proteins PIGM +PWCOMMONS Metabolism of proteins PIGX +PWCOMMONS Metabolism of proteins PIGU +PWCOMMONS Metabolism of proteins PIGT +PWCOMMONS Metabolism of proteins GPAA1 +PWCOMMONS Metabolism of proteins PIGS +PWCOMMONS Metabolism of proteins PIGK +PWCOMMONS Metabolism of proteins PIGV +PWCOMMONS Metabolism of proteins PIGN +PWCOMMONS Metabolism of proteins DPM3 +PWCOMMONS Metabolism of proteins DPM1 +PWCOMMONS Metabolism of proteins +PWCOMMONS Biological oxidations NAT2 +PWCOMMONS Biological oxidations GSS +PWCOMMONS Biological oxidations GCLC +PWCOMMONS Biological oxidations GCLM +PWCOMMONS Biological oxidations UGDH +PWCOMMONS Biological oxidations GYG2 +PWCOMMONS Biological oxidations GBE1 +PWCOMMONS Biological oxidations SLC35D1 +PWCOMMONS Biological oxidations GYS2 +PWCOMMONS Biological oxidations MTR +PWCOMMONS Biological oxidations TPMT +PWCOMMONS Biological oxidations COMT +PWCOMMONS Biological oxidations AMD1 +PWCOMMONS Biological oxidations NNMT +PWCOMMONS Biological oxidations SMS +PWCOMMONS Biological oxidations AHCY +PWCOMMONS Biological oxidations SRM +PWCOMMONS Biological oxidations ACSM2B +PWCOMMONS Biological oxidations GLYAT +PWCOMMONS Biological oxidations SULT2A1 +PWCOMMONS Biological oxidations SULT1E1 +PWCOMMONS Biological oxidations SULT1A3 +PWCOMMONS Biological oxidations SULT1A1 +PWCOMMONS Biological oxidations ALDH1A1 +PWCOMMONS Biological oxidations ACSS2 +PWCOMMONS Biological oxidations ALDH2 +PWCOMMONS Biological oxidations ADH4 +PWCOMMONS Biological oxidations ADH1C +PWCOMMONS Biological oxidations ADH1A +PWCOMMONS Biological oxidations ADH7 +PWCOMMONS Biological oxidations ADH1B +PWCOMMONS Biological oxidations ADH6 +PWCOMMONS Biological oxidations PTGES3 +PWCOMMONS Biological oxidations PTGS2 +PWCOMMONS Biological oxidations PTGIS +PWCOMMONS Biological oxidations TBXAS1 +PWCOMMONS Biological oxidations CYP4F8 +PWCOMMONS Biological oxidations CYP4F3 +PWCOMMONS Biological oxidations CYP4F2 +PWCOMMONS Biological oxidations CYP4F12 +PWCOMMONS Biological oxidations CYP4A11 +PWCOMMONS Biological oxidations CYP2J2 +PWCOMMONS Biological oxidations CYP4B1 +PWCOMMONS Biological oxidations LGMN +PWCOMMONS Biological oxidations GC +PWCOMMONS Biological oxidations CYP26B1 +PWCOMMONS Biological oxidations CUBN +PWCOMMONS Biological oxidations LRP2 +PWCOMMONS Biological oxidations CYP26A1 +PWCOMMONS Biological oxidations CYP27B1 +PWCOMMONS Biological oxidations CYP24A1 +PWCOMMONS Biological oxidations CYP2R1 +PWCOMMONS Biological oxidations CYP26C1 +PWCOMMONS Biological oxidations CYP46A1 +PWCOMMONS Biological oxidations EBP +PWCOMMONS Biological oxidations ACOT8 +PWCOMMONS Biological oxidations LBR +PWCOMMONS Biological oxidations ABCB11 +PWCOMMONS Biological oxidations CYP39A1 +PWCOMMONS Biological oxidations CYP7A1 +PWCOMMONS Biological oxidations CYP21A2 +PWCOMMONS Biological oxidations CYP51A1 +PWCOMMONS Biological oxidations NSDHL +PWCOMMONS Biological oxidations CYP11B2 +PWCOMMONS Biological oxidations HSD17B4 +PWCOMMONS Biological oxidations AMACR +PWCOMMONS Biological oxidations CYP7B1 +PWCOMMONS Biological oxidations SC5DL +PWCOMMONS Biological oxidations SC4MOL +PWCOMMONS Biological oxidations CYP17A1 +PWCOMMONS Biological oxidations ACOX2 +PWCOMMONS Biological oxidations CYP11B1 +PWCOMMONS Biological oxidations CYP1B1 +PWCOMMONS Biological oxidations CYP8B1 +PWCOMMONS Biological oxidations BAAT +PWCOMMONS Biological oxidations HSD3B7 +PWCOMMONS Biological oxidations AKR1C4 +PWCOMMONS Biological oxidations CYP11A1 +PWCOMMONS Biological oxidations DHCR24 +PWCOMMONS Biological oxidations CYP19A1 +PWCOMMONS Biological oxidations DHCR7 +PWCOMMONS Biological oxidations HSD17B3 +PWCOMMONS Biological oxidations TM7SF2 +PWCOMMONS Biological oxidations SLC27A5 +PWCOMMONS Biological oxidations AKR1D1 +PWCOMMONS Biological oxidations CYP27A1 +PWCOMMONS Biological oxidations SLC27A2 +PWCOMMONS Biological oxidations CYP2C19 +PWCOMMONS Biological oxidations CYP2E1 +PWCOMMONS Biological oxidations CYP3A4 +PWCOMMONS Biological oxidations CYP1A1 +PWCOMMONS Biological oxidations CYP2F1 +PWCOMMONS Biological oxidations CYP2C18 +PWCOMMONS Biological oxidations CYP3A7 +PWCOMMONS Biological oxidations CYP2C9 +PWCOMMONS Biological oxidations CYP1A2 +PWCOMMONS Biological oxidations CYP2A6 +PWCOMMONS Biological oxidations CYP2D6 +PWCOMMONS Biological oxidations CYP2C8 +PWCOMMONS Biological oxidations CYP3A5 +PWCOMMONS Biological oxidations CYP2A13 +PWCOMMONS Biological oxidations CYP2B6 +PWCOMMONS Biological oxidations CYP4F11 +PWCOMMONS Biological oxidations CYP2W1 +PWCOMMONS Biological oxidations MAOB +PWCOMMONS Biological oxidations MAOA +PWCOMMONS Biological oxidations PAOX +PWCOMMONS Biological oxidations FMO2 +PWCOMMONS Biological oxidations FMO3 +PWCOMMONS Biological oxidations FMO1 +PWCOMMONS Biological oxidations +PWCOMMONS Phase 1 - Functionalization of compounds ACSS2 +PWCOMMONS Phase 1 - Functionalization of compounds ALDH2 +PWCOMMONS Phase 1 - Functionalization of compounds ADH4 +PWCOMMONS Phase 1 - Functionalization of compounds ADH1C +PWCOMMONS Phase 1 - Functionalization of compounds ADH1A +PWCOMMONS Phase 1 - Functionalization of compounds ADH7 +PWCOMMONS Phase 1 - Functionalization of compounds ADH1B +PWCOMMONS Phase 1 - Functionalization of compounds ADH6 +PWCOMMONS Phase 1 - Functionalization of compounds PTGES3 +PWCOMMONS Phase 1 - Functionalization of compounds PTGS2 +PWCOMMONS Phase 1 - Functionalization of compounds PTGIS +PWCOMMONS Phase 1 - Functionalization of compounds TBXAS1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP4F8 +PWCOMMONS Phase 1 - Functionalization of compounds CYP4F3 +PWCOMMONS Phase 1 - Functionalization of compounds CYP4F2 +PWCOMMONS Phase 1 - Functionalization of compounds CYP4F12 +PWCOMMONS Phase 1 - Functionalization of compounds CYP4A11 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2J2 +PWCOMMONS Phase 1 - Functionalization of compounds CYP4B1 +PWCOMMONS Phase 1 - Functionalization of compounds LGMN +PWCOMMONS Phase 1 - Functionalization of compounds GC +PWCOMMONS Phase 1 - Functionalization of compounds CYP26B1 +PWCOMMONS Phase 1 - Functionalization of compounds CUBN +PWCOMMONS Phase 1 - Functionalization of compounds LRP2 +PWCOMMONS Phase 1 - Functionalization of compounds CYP26A1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP27B1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP24A1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2R1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP26C1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP46A1 +PWCOMMONS Phase 1 - Functionalization of compounds EBP +PWCOMMONS Phase 1 - Functionalization of compounds ACOT8 +PWCOMMONS Phase 1 - Functionalization of compounds LBR +PWCOMMONS Phase 1 - Functionalization of compounds ABCB11 +PWCOMMONS Phase 1 - Functionalization of compounds CYP39A1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP7A1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP21A2 +PWCOMMONS Phase 1 - Functionalization of compounds CYP51A1 +PWCOMMONS Phase 1 - Functionalization of compounds NSDHL +PWCOMMONS Phase 1 - Functionalization of compounds CYP11B2 +PWCOMMONS Phase 1 - Functionalization of compounds HSD17B4 +PWCOMMONS Phase 1 - Functionalization of compounds AMACR +PWCOMMONS Phase 1 - Functionalization of compounds CYP7B1 +PWCOMMONS Phase 1 - Functionalization of compounds SC5DL +PWCOMMONS Phase 1 - Functionalization of compounds SC4MOL +PWCOMMONS Phase 1 - Functionalization of compounds CYP17A1 +PWCOMMONS Phase 1 - Functionalization of compounds ACOX2 +PWCOMMONS Phase 1 - Functionalization of compounds CYP11B1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP1B1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP8B1 +PWCOMMONS Phase 1 - Functionalization of compounds BAAT +PWCOMMONS Phase 1 - Functionalization of compounds HSD3B7 +PWCOMMONS Phase 1 - Functionalization of compounds AKR1C4 +PWCOMMONS Phase 1 - Functionalization of compounds CYP11A1 +PWCOMMONS Phase 1 - Functionalization of compounds DHCR24 +PWCOMMONS Phase 1 - Functionalization of compounds CYP19A1 +PWCOMMONS Phase 1 - Functionalization of compounds DHCR7 +PWCOMMONS Phase 1 - Functionalization of compounds HSD17B3 +PWCOMMONS Phase 1 - Functionalization of compounds TM7SF2 +PWCOMMONS Phase 1 - Functionalization of compounds SLC27A5 +PWCOMMONS Phase 1 - Functionalization of compounds AKR1D1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP27A1 +PWCOMMONS Phase 1 - Functionalization of compounds SLC27A2 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2C19 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2E1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP3A4 +PWCOMMONS Phase 1 - Functionalization of compounds CYP1A1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2F1 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2C18 +PWCOMMONS Phase 1 - Functionalization of compounds CYP3A7 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2C9 +PWCOMMONS Phase 1 - Functionalization of compounds CYP1A2 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2A6 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2D6 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2C8 +PWCOMMONS Phase 1 - Functionalization of compounds CYP3A5 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2A13 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2B6 +PWCOMMONS Phase 1 - Functionalization of compounds CYP4F11 +PWCOMMONS Phase 1 - Functionalization of compounds CYP2W1 +PWCOMMONS Phase 1 - Functionalization of compounds MAOB +PWCOMMONS Phase 1 - Functionalization of compounds MAOA +PWCOMMONS Phase 1 - Functionalization of compounds PAOX +PWCOMMONS Phase 1 - Functionalization of compounds FMO2 +PWCOMMONS Phase 1 - Functionalization of compounds FMO3 +PWCOMMONS Phase 1 - Functionalization of compounds FMO1 +PWCOMMONS Phase 1 - Functionalization of compounds +PWCOMMONS Amine Oxidase reactions MAOA +PWCOMMONS Amine Oxidase reactions PAOX +PWCOMMONS Amine Oxidase reactions +PWCOMMONS Monoamines are oxidized to aldehydes by MAOA and MAOB, producing NH3 and H2O2 MAOA +PWCOMMONS Monoamines are oxidized to aldehydes by MAOA and MAOB, producing NH3 and H2O2 +PWCOMMONS FMO oxidizes nucleophiles FMO3 +PWCOMMONS FMO oxidizes nucleophiles FMO1 +PWCOMMONS FMO oxidizes nucleophiles +PWCOMMONS Ethanol catabolism ACSS2 +PWCOMMONS Ethanol catabolism ALDH2 +PWCOMMONS Ethanol catabolism ADH4 +PWCOMMONS Ethanol catabolism ADH1C +PWCOMMONS Ethanol catabolism ADH1A +PWCOMMONS Ethanol catabolism ADH7 +PWCOMMONS Ethanol catabolism ADH1B +PWCOMMONS Ethanol catabolism ADH6 +PWCOMMONS Ethanol catabolism +PWCOMMONS COX reactions PTGS2 +PWCOMMONS COX reactions PTGIS +PWCOMMONS COX reactions TBXAS1 +PWCOMMONS COX reactions +PWCOMMONS Phase II conjugation NAT2 +PWCOMMONS Phase II conjugation GSS +PWCOMMONS Phase II conjugation GCLC +PWCOMMONS Phase II conjugation GCLM +PWCOMMONS Phase II conjugation UGDH +PWCOMMONS Phase II conjugation GYG2 +PWCOMMONS Phase II conjugation GBE1 +PWCOMMONS Phase II conjugation SLC35D1 +PWCOMMONS Phase II conjugation GYS2 +PWCOMMONS Phase II conjugation MTR +PWCOMMONS Phase II conjugation TPMT +PWCOMMONS Phase II conjugation COMT +PWCOMMONS Phase II conjugation AMD1 +PWCOMMONS Phase II conjugation NNMT +PWCOMMONS Phase II conjugation SMS +PWCOMMONS Phase II conjugation AHCY +PWCOMMONS Phase II conjugation SRM +PWCOMMONS Phase II conjugation ACSM2B +PWCOMMONS Phase II conjugation GLYAT +PWCOMMONS Phase II conjugation SULT2A1 +PWCOMMONS Phase II conjugation SULT1E1 +PWCOMMONS Phase II conjugation SULT1A3 +PWCOMMONS Phase II conjugation SULT1A1 +PWCOMMONS Phase II conjugation +PWCOMMONS Cytosolic sulfonation of small molecules SULT1E1 +PWCOMMONS Cytosolic sulfonation of small molecules SULT1A3 +PWCOMMONS Cytosolic sulfonation of small molecules SULT1A1 +PWCOMMONS Cytosolic sulfonation of small molecules +PWCOMMONS Class A/1 (Rhodopsin-like receptors) MGLL +PWCOMMONS Class A/1 (Rhodopsin-like receptors) PFKFB1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) MLXIPL +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CREB1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) LIPE +PWCOMMONS Class A/1 (Rhodopsin-like receptors) GNAS +PWCOMMONS Class A/1 (Rhodopsin-like receptors) FSHR +PWCOMMONS Class A/1 (Rhodopsin-like receptors) FSHB +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CGA +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CGB +PWCOMMONS Class A/1 (Rhodopsin-like receptors) LHCGR +PWCOMMONS Class A/1 (Rhodopsin-like receptors) LHB +PWCOMMONS Class A/1 (Rhodopsin-like receptors) FABP4 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) TSHR +PWCOMMONS Class A/1 (Rhodopsin-like receptors) TSHB +PWCOMMONS Class A/1 (Rhodopsin-like receptors) OPN4 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) APLNR +PWCOMMONS Class A/1 (Rhodopsin-like receptors) GPER +PWCOMMONS Class A/1 (Rhodopsin-like receptors) KNG1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) C5AR1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) C5 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) PRLHR +PWCOMMONS Class A/1 (Rhodopsin-like receptors) DARC +PWCOMMONS Class A/1 (Rhodopsin-like receptors) KISS1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) KISS1R +PWCOMMONS Class A/1 (Rhodopsin-like receptors) GAL +PWCOMMONS Class A/1 (Rhodopsin-like receptors) F2 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) TAC3 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) TACR3 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) TAC1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) TACR2 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) TACR1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) POMC +PWCOMMONS Class A/1 (Rhodopsin-like receptors) MC2R +PWCOMMONS Class A/1 (Rhodopsin-like receptors) XCR1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) IL8RB +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CXCL16 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CXCR6 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CX3CL1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CCL25 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CCL5 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) IL8RA +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CCR10 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CCR7 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CCL16 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CCL20 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CCR6 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) CCK +PWCOMMONS Class A/1 (Rhodopsin-like receptors) HCRTR2 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) HCRT +PWCOMMONS Class A/1 (Rhodopsin-like receptors) NPFF +PWCOMMONS Class A/1 (Rhodopsin-like receptors) HCRTR1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) QRFPR +PWCOMMONS Class A/1 (Rhodopsin-like receptors) QRFP +PWCOMMONS Class A/1 (Rhodopsin-like receptors) AGT +PWCOMMONS Class A/1 (Rhodopsin-like receptors) NTS +PWCOMMONS Class A/1 (Rhodopsin-like receptors) PNOC +PWCOMMONS Class A/1 (Rhodopsin-like receptors) OPRL1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) AVP +PWCOMMONS Class A/1 (Rhodopsin-like receptors) AVPR2 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) OXTR +PWCOMMONS Class A/1 (Rhodopsin-like receptors) OXT +PWCOMMONS Class A/1 (Rhodopsin-like receptors) GPR17 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) FPR2 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) OXER1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) TBXA2R +PWCOMMONS Class A/1 (Rhodopsin-like receptors) PTGIR +PWCOMMONS Class A/1 (Rhodopsin-like receptors) PTGER3 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) GPR44 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) PTGDR +PWCOMMONS Class A/1 (Rhodopsin-like receptors) PTGFR +PWCOMMONS Class A/1 (Rhodopsin-like receptors) PTGER1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) P2RY2 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) P2RY8 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) P2RY12 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) P2RY4 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) P2RY11 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) P2RY6 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) P2RY10 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) P2RY14 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) LPAR4 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) P2RY13 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) P2RY1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) P2RY5 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) HRH1 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) HRH2 +PWCOMMONS Class A/1 (Rhodopsin-like receptors) +PWCOMMONS Nucleotide-like (purinergic) receptors PFKFB1 +PWCOMMONS Nucleotide-like (purinergic) receptors MLXIPL +PWCOMMONS Nucleotide-like (purinergic) receptors CREB1 +PWCOMMONS Nucleotide-like (purinergic) receptors LIPE +PWCOMMONS Nucleotide-like (purinergic) receptors GNAS +PWCOMMONS Nucleotide-like (purinergic) receptors FABP4 +PWCOMMONS Nucleotide-like (purinergic) receptors P2RY2 +PWCOMMONS Nucleotide-like (purinergic) receptors P2RY8 +PWCOMMONS Nucleotide-like (purinergic) receptors P2RY12 +PWCOMMONS Nucleotide-like (purinergic) receptors P2RY4 +PWCOMMONS Nucleotide-like (purinergic) receptors P2RY11 +PWCOMMONS Nucleotide-like (purinergic) receptors P2RY6 +PWCOMMONS Nucleotide-like (purinergic) receptors P2RY10 +PWCOMMONS Nucleotide-like (purinergic) receptors P2RY14 +PWCOMMONS Nucleotide-like (purinergic) receptors LPAR4 +PWCOMMONS Nucleotide-like (purinergic) receptors P2RY13 +PWCOMMONS Nucleotide-like (purinergic) receptors P2RY1 +PWCOMMONS Nucleotide-like (purinergic) receptors P2RY5 +PWCOMMONS Nucleotide-like (purinergic) receptors GPR17 +PWCOMMONS Nucleotide-like (purinergic) receptors +PWCOMMONS Adenosine P1 receptors PFKFB1 +PWCOMMONS Adenosine P1 receptors MLXIPL +PWCOMMONS Adenosine P1 receptors CREB1 +PWCOMMONS Adenosine P1 receptors LIPE +PWCOMMONS Adenosine P1 receptors GNAS +PWCOMMONS Adenosine P1 receptors FABP4 +PWCOMMONS Adenosine P1 receptors +PWCOMMONS AMPK inhibits chREBP transcriptional activation activity PRKAB2 +PWCOMMONS AMPK inhibits chREBP transcriptional activation activity PRKAG2 +PWCOMMONS AMPK inhibits chREBP transcriptional activation activity MLXIPL +PWCOMMONS AMPK inhibits chREBP transcriptional activation activity STK11 +PWCOMMONS AMPK inhibits chREBP transcriptional activation activity +PWCOMMONS Integrin cell surface interactions ITGB3 +PWCOMMONS Integrin cell surface interactions ITGAV +PWCOMMONS Integrin cell surface interactions ITGB1 +PWCOMMONS Integrin cell surface interactions FN1 +PWCOMMONS Integrin cell surface interactions ITGA2 +PWCOMMONS Integrin cell surface interactions LAMB2 +PWCOMMONS Integrin cell surface interactions LAMA5 +PWCOMMONS Integrin cell surface interactions LAMC3 +PWCOMMONS Integrin cell surface interactions ITGA8 +PWCOMMONS Integrin cell surface interactions PTK2 +PWCOMMONS Integrin cell surface interactions TLN1 +PWCOMMONS Integrin cell surface interactions APBB1IP +PWCOMMONS Integrin cell surface interactions ITGA2B +PWCOMMONS Integrin cell surface interactions CSK +PWCOMMONS Integrin cell surface interactions PTPN1 +PWCOMMONS Integrin cell surface interactions BCAR1 +PWCOMMONS Integrin cell surface interactions PTPRA +PWCOMMONS Integrin cell surface interactions FYN +PWCOMMONS Integrin cell surface interactions NCAM1 +PWCOMMONS Integrin cell surface interactions SPTB +PWCOMMONS Integrin cell surface interactions SOS1 +PWCOMMONS Integrin cell surface interactions IBSP +PWCOMMONS Integrin cell surface interactions VTN +PWCOMMONS Integrin cell surface interactions ITGB5 +PWCOMMONS Integrin cell surface interactions ITGA1 +PWCOMMONS Integrin cell surface interactions LAMA1 +PWCOMMONS Integrin cell surface interactions LAMB1 +PWCOMMONS Integrin cell surface interactions LAMC1 +PWCOMMONS Integrin cell surface interactions ITGA5 +PWCOMMONS Integrin cell surface interactions ITGA7 +PWCOMMONS Integrin cell surface interactions FGB +PWCOMMONS Integrin cell surface interactions FGG +PWCOMMONS Integrin cell surface interactions FGA +PWCOMMONS Integrin cell surface interactions ITGB2 +PWCOMMONS Integrin cell surface interactions ITGAD +PWCOMMONS Integrin cell surface interactions ITGB8 +PWCOMMONS Integrin cell surface interactions ITGAL +PWCOMMONS Integrin cell surface interactions THBS1 +PWCOMMONS Integrin cell surface interactions BSG +PWCOMMONS Integrin cell surface interactions ITGA4 +PWCOMMONS Integrin cell surface interactions SPP1 +PWCOMMONS Integrin cell surface interactions PECAM1 +PWCOMMONS Integrin cell surface interactions ITGB6 +PWCOMMONS Integrin cell surface interactions ITGA9 +PWCOMMONS Integrin cell surface interactions COL1A1 +PWCOMMONS Integrin cell surface interactions COL1A2 +PWCOMMONS Integrin cell surface interactions LAMA2 +PWCOMMONS Integrin cell surface interactions VCAM1 +PWCOMMONS Integrin cell surface interactions ITGA3 +PWCOMMONS Integrin cell surface interactions CDH1 +PWCOMMONS Integrin cell surface interactions ITGAE +PWCOMMONS Integrin cell surface interactions ITGAX +PWCOMMONS Integrin cell surface interactions ITGA11 +PWCOMMONS Integrin cell surface interactions F11R +PWCOMMONS Integrin cell surface interactions ITGA6 +PWCOMMONS Integrin cell surface interactions ITGB4 +PWCOMMONS Integrin cell surface interactions COL2A1 +PWCOMMONS Integrin cell surface interactions ITGA10 +PWCOMMONS Integrin cell surface interactions JAM2 +PWCOMMONS Integrin cell surface interactions FBN1 +PWCOMMONS Integrin cell surface interactions JAM3 +PWCOMMONS Integrin cell surface interactions ITGAM +PWCOMMONS Integrin cell surface interactions +PWCOMMONS Integrin alphaIIbbeta3 signaling TLN1 +PWCOMMONS Integrin alphaIIbbeta3 signaling APBB1IP +PWCOMMONS Integrin alphaIIbbeta3 signaling ITGB3 +PWCOMMONS Integrin alphaIIbbeta3 signaling ITGA2B +PWCOMMONS Integrin alphaIIbbeta3 signaling CSK +PWCOMMONS Integrin alphaIIbbeta3 signaling PTPN1 +PWCOMMONS Integrin alphaIIbbeta3 signaling BCAR1 +PWCOMMONS Integrin alphaIIbbeta3 signaling PTPRA +PWCOMMONS Integrin alphaIIbbeta3 signaling FYN +PWCOMMONS Integrin alphaIIbbeta3 signaling NCAM1 +PWCOMMONS Integrin alphaIIbbeta3 signaling SPTB +PWCOMMONS Integrin alphaIIbbeta3 signaling SOS1 +PWCOMMONS Integrin alphaIIbbeta3 signaling +PWCOMMONS Grb2:SOS provides linkage to MAPK signaling for Intergrins PTK2 +PWCOMMONS Grb2:SOS provides linkage to MAPK signaling for Intergrins TLN1 +PWCOMMONS Grb2:SOS provides linkage to MAPK signaling for Intergrins APBB1IP +PWCOMMONS Grb2:SOS provides linkage to MAPK signaling for Intergrins ITGB3 +PWCOMMONS Grb2:SOS provides linkage to MAPK signaling for Intergrins ITGA2B +PWCOMMONS Grb2:SOS provides linkage to MAPK signaling for Intergrins +PWCOMMONS Influenza Infection RAN +PWCOMMONS Influenza Infection NUP153 +PWCOMMONS Influenza Infection NUP85 +PWCOMMONS Influenza Infection NUP35 +PWCOMMONS Influenza Infection AAAS +PWCOMMONS Influenza Infection NUP50 +PWCOMMONS Influenza Infection NUP43 +PWCOMMONS Influenza Infection NUP205 +PWCOMMONS Influenza Infection NUP93 +PWCOMMONS Influenza Infection NUP88 +PWCOMMONS Influenza Infection NUPL2 +PWCOMMONS Influenza Infection NUP210 +PWCOMMONS Influenza Infection NUP155 +PWCOMMONS Influenza Infection RANBP2 +PWCOMMONS Influenza Infection RAE1 +PWCOMMONS Influenza Infection NUP188 +PWCOMMONS Influenza Infection NUP214 +PWCOMMONS Influenza Infection NUP54 +PWCOMMONS Influenza Infection NUP62 +PWCOMMONS Influenza Infection NUP107 +PWCOMMONS Influenza Infection NUP133 +PWCOMMONS Influenza Infection NUP160 +PWCOMMONS Influenza Infection NUP37 +PWCOMMONS Influenza Infection HSPA1A +PWCOMMONS Influenza Infection CALR +PWCOMMONS Influenza Infection CANX +PWCOMMONS Influenza Infection KPNA1 +PWCOMMONS Influenza Infection KPNB1 +PWCOMMONS Influenza Infection HNRNPD +PWCOMMONS Influenza Infection HNRNPH2 +PWCOMMONS Influenza Infection HNRNPUL1 +PWCOMMONS Influenza Infection CD2BP2 +PWCOMMONS Influenza Infection HNRNPH1 +PWCOMMONS Influenza Infection SFRS9 +PWCOMMONS Influenza Infection HNRNPA0 +PWCOMMONS Influenza Infection HNRNPL +PWCOMMONS Influenza Infection HNRNPA2B1 +PWCOMMONS Influenza Infection HNRNPA1 +PWCOMMONS Influenza Infection SFRS2 +PWCOMMONS Influenza Infection PCBP2 +PWCOMMONS Influenza Infection RNPS1 +PWCOMMONS Influenza Infection SMC1A +PWCOMMONS Influenza Infection RBM5 +PWCOMMONS Influenza Infection HNRNPU +PWCOMMONS Influenza Infection CCAR1 +PWCOMMONS Influenza Infection U2AF1 +PWCOMMONS Influenza Infection RBMX +PWCOMMONS Influenza Infection HNRNPA3 +PWCOMMONS Influenza Infection HNRNPM +PWCOMMONS Influenza Infection SRRM1 +PWCOMMONS Influenza Infection U2AF2 +PWCOMMONS Influenza Infection THOC4 +PWCOMMONS Influenza Infection PCBP1 +PWCOMMONS Influenza Infection SF4 +PWCOMMONS Influenza Infection YBX1 +PWCOMMONS Influenza Infection HNRNPR +PWCOMMONS Influenza Infection HNRNPC +PWCOMMONS Influenza Infection PTBP1 +PWCOMMONS Influenza Infection SFRS3 +PWCOMMONS Influenza Infection SFRS5 +PWCOMMONS Influenza Infection SFRS7 +PWCOMMONS Influenza Infection SFRS6 +PWCOMMONS Influenza Infection DHX9 +PWCOMMONS Influenza Infection SFRS1 +PWCOMMONS Influenza Infection HNRNPF +PWCOMMONS Influenza Infection SNRNP70 +PWCOMMONS Influenza Infection SNRPA +PWCOMMONS Influenza Infection SNRPG +PWCOMMONS Influenza Infection SNRPD3 +PWCOMMONS Influenza Infection SNRPF +PWCOMMONS Influenza Infection SNRPB +PWCOMMONS Influenza Infection SNRPD2 +PWCOMMONS Influenza Infection SNRPE +PWCOMMONS Influenza Infection SNRPD1 +PWCOMMONS Influenza Infection GTF2F1 +PWCOMMONS Influenza Infection GTF2F2 +PWCOMMONS Influenza Infection POLR2G +PWCOMMONS Influenza Infection POLR2B +PWCOMMONS Influenza Infection POLR2L +PWCOMMONS Influenza Infection POLR2A +PWCOMMONS Influenza Infection POLR2K +PWCOMMONS Influenza Infection POLR2H +PWCOMMONS Influenza Infection POLR2D +PWCOMMONS Influenza Infection POLR2C +PWCOMMONS Influenza Infection POLR2J +PWCOMMONS Influenza Infection POLR2I +PWCOMMONS Influenza Infection POLR2F +PWCOMMONS Influenza Infection POLR2E +PWCOMMONS Influenza Infection NCBP2 +PWCOMMONS Influenza Infection NCBP1 +PWCOMMONS Influenza Infection HSP90AA1 +PWCOMMONS Influenza Infection IPO5 +PWCOMMONS Influenza Infection RPS23 +PWCOMMONS Influenza Infection RPS16 +PWCOMMONS Influenza Infection RPS12 +PWCOMMONS Influenza Infection RPS29 +PWCOMMONS Influenza Infection RPSA +PWCOMMONS Influenza Infection RPS21 +PWCOMMONS Influenza Infection RPS27A +PWCOMMONS Influenza Infection RPS20 +PWCOMMONS Influenza Infection RPS15 +PWCOMMONS Influenza Infection RPS24 +PWCOMMONS Influenza Infection RPS9 +PWCOMMONS Influenza Infection RPS10 +PWCOMMONS Influenza Infection RPS28 +PWCOMMONS Influenza Infection RPS2 +PWCOMMONS Influenza Infection RPS19 +PWCOMMONS Influenza Infection RPS4X +PWCOMMONS Influenza Infection RPS18 +PWCOMMONS Influenza Infection RPS8 +PWCOMMONS Influenza Infection RPS3 +PWCOMMONS Influenza Infection RPS4Y1 +PWCOMMONS Influenza Infection RPS25 +PWCOMMONS Influenza Infection RPS14 +PWCOMMONS Influenza Infection RPS17 +PWCOMMONS Influenza Infection RPS26 +PWCOMMONS Influenza Infection RPS11 +PWCOMMONS Influenza Infection RPS5 +PWCOMMONS Influenza Infection FAU +PWCOMMONS Influenza Infection RPS15A +PWCOMMONS Influenza Infection RPS13 +PWCOMMONS Influenza Infection RPS6 +PWCOMMONS Influenza Infection RPS3A +PWCOMMONS Influenza Infection RPS7 +PWCOMMONS Influenza Infection RPS27 +PWCOMMONS Influenza Infection RPL27A +PWCOMMONS Influenza Infection RPL15 +PWCOMMONS Influenza Infection RPL11 +PWCOMMONS Influenza Infection RPL29 +PWCOMMONS Influenza Infection RPL30 +PWCOMMONS Influenza Infection RPL8 +PWCOMMONS Influenza Infection RPL22 +PWCOMMONS Influenza Infection RPL28 +PWCOMMONS Influenza Infection RPL7A +PWCOMMONS Influenza Infection RPL35A +PWCOMMONS Influenza Infection RPL31 +PWCOMMONS Influenza Infection RPL26L1 +PWCOMMONS Influenza Infection RPL26 +PWCOMMONS Influenza Infection RPL18A +PWCOMMONS Influenza Infection RPL14 +PWCOMMONS Influenza Infection RPLP2 +PWCOMMONS Influenza Infection RPL10 +PWCOMMONS Influenza Infection RPL34 +PWCOMMONS Influenza Infection RPL37 +PWCOMMONS Influenza Infection RPL3L +PWCOMMONS Influenza Infection RPL32 +PWCOMMONS Influenza Infection RPL36 +PWCOMMONS Influenza Infection RPLP1 +PWCOMMONS Influenza Infection RPL23A +PWCOMMONS Influenza Infection RPL24 +PWCOMMONS Influenza Infection RPL6 +PWCOMMONS Influenza Infection RPL18 +PWCOMMONS Influenza Infection RPL5 +PWCOMMONS Influenza Infection RPL23 +PWCOMMONS Influenza Infection RPL19 +PWCOMMONS Influenza Infection RPL41 +PWCOMMONS Influenza Infection RPL7 +PWCOMMONS Influenza Infection RPL13A +PWCOMMONS Influenza Infection RPL27 +PWCOMMONS Influenza Infection RPL17 +PWCOMMONS Influenza Infection RPL3 +PWCOMMONS Influenza Infection RPL10A +PWCOMMONS Influenza Infection RPL21 +PWCOMMONS Influenza Infection RPL4 +PWCOMMONS Influenza Infection RPL35 +PWCOMMONS Influenza Infection RPL13 +PWCOMMONS Influenza Infection RPL39 +PWCOMMONS Influenza Infection RPL38 +PWCOMMONS Influenza Infection RPL36A +PWCOMMONS Influenza Infection RPL9 +PWCOMMONS Influenza Infection RPLP0 +PWCOMMONS Influenza Infection UBA52 +PWCOMMONS Influenza Infection RPL37A +PWCOMMONS Influenza Infection RPL12 +PWCOMMONS Influenza Infection GRSF1 +PWCOMMONS Influenza Infection EIF2AK2 +PWCOMMONS Influenza Infection PABPN1 +PWCOMMONS Influenza Infection CPSF4 +PWCOMMONS Influenza Infection TGFB1 +PWCOMMONS Influenza Infection SLC25A6 +PWCOMMONS Influenza Infection +PWCOMMONS Host Interactions with Influenza Factors PABPN1 +PWCOMMONS Host Interactions with Influenza Factors CPSF4 +PWCOMMONS Host Interactions with Influenza Factors TGFB1 +PWCOMMONS Host Interactions with Influenza Factors SLC25A6 +PWCOMMONS Host Interactions with Influenza Factors +PWCOMMONS Prostanoid hormones PTGS2 +PWCOMMONS Prostanoid hormones PTGIS +PWCOMMONS Prostanoid hormones ABCC1 +PWCOMMONS Prostanoid hormones GGT5 +PWCOMMONS Prostanoid hormones DPEP2 +PWCOMMONS Prostanoid hormones ALOX5 +PWCOMMONS Prostanoid hormones LTC4S +PWCOMMONS Prostanoid hormones LTA4H +PWCOMMONS Prostanoid hormones TBXAS1 +PWCOMMONS Prostanoid hormones +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NT5C2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5O +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5F1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5J +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5G1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5L +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-ATP6 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5J2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-ATP8 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5H +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5I +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5C1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5D +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5A1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5B +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATP5E +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism HPRT1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UQCRC1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UQCRB +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UQCR10 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UQCR +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UQCRC2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UQCRH +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UQCRQ +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UQCRFS1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-CYB +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism CYC1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-CO2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism COX8A +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism COX7C +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-CO3 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism COX6C +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism COX5B +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-CO1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism COX7A2L +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism COX4I1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism COX6A1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism COX7B +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism COX6B1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism COX5A +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism PGLS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GOT2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism HADH +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UPP1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GOT1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism PGK1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ADSL +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GCDH +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism PCK1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ATIC +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism OAT +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NP +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GLS2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GYS2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ECHS1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism TXN +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ASNS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GLUD1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism SUCLG1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism SUCLG2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ARG1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism KCNJ11 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism AMPD3 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism RPE +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GLRX +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism SDHC +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism SDHD +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism SDHB +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism SDHA +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism DPYD +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GART +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GLUL +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism DPYS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism AK1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MDH2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UMPS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism CYCS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFS3 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFS4 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFS6 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA5 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFS5 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFS1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFS2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFV2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFV3 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFV1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA4 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA11 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-ND3 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA13 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFB5 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFC1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA6 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFC2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA3 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFB3 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFB1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFAB1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-ND4 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-ND5 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFB9 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFB6 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFB4 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA8 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFB7 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA12 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFB2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-ND4L +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-ND2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFB10 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA7 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFB8 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFB11 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-ND6 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism MT-ND1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFS7 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA10 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFS8 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NDUFA9 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism VAMP2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NT5C1A +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism CTPS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism PRPS1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism DLST +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism OGDH +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism DLD +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GMPS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GUK1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism IMPDH2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GDA +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NME1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism IMPDH1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ADSS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism OTC +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism FH +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism INS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism SYT5 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism PFAS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism SLC35D1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ASL +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GLS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UPB1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism SLC25A21 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GPI +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UROD +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism CPOX +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UROS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism XDH +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism PAICS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism CPS1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism TALDO1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ASS1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism CMPK1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ALAD +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism CS +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism CAT +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism PPOX +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism ACO2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism IDH3G +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism IDH3A +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism IDH3B +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism UGDH +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism RRM2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism RRM1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism G6PD +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism AMPD1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism PPAT +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism TKT +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism FECH +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism SUCLA2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GBE1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism TXNRD1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism TPI1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism G6PC +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism PYCR1 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism NME2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism RPIA +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism AMPD2 +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism PGD +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism GSR +PWCOMMONS Aspartate, asparagine, glutamate, and glutamine metabolism +PWCOMMONS Translocation of ZAP-70 to Immunological synapse MAP3K7 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse TRAF6 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse MALT1 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse BCL10 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse CARD11 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse PDPK1 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse NFKBIA +PWCOMMONS Translocation of ZAP-70 to Immunological synapse NFKB1 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse RELA +PWCOMMONS Translocation of ZAP-70 to Immunological synapse ZAP70 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse LCK +PWCOMMONS Translocation of ZAP-70 to Immunological synapse CD4 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse CD3E +PWCOMMONS Translocation of ZAP-70 to Immunological synapse CD3D +PWCOMMONS Translocation of ZAP-70 to Immunological synapse CD3G +PWCOMMONS Translocation of ZAP-70 to Immunological synapse LCP2 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse LAT +PWCOMMONS Translocation of ZAP-70 to Immunological synapse GRAP2 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse FOXO1 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse THEM4 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse PLCG1 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse CHUK +PWCOMMONS Translocation of ZAP-70 to Immunological synapse IKBKB +PWCOMMONS Translocation of ZAP-70 to Immunological synapse IKBKG +PWCOMMONS Translocation of ZAP-70 to Immunological synapse PRKCQ +PWCOMMONS Translocation of ZAP-70 to Immunological synapse INPP5D +PWCOMMONS Translocation of ZAP-70 to Immunological synapse UBE2V1 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse UBE2N +PWCOMMONS Translocation of ZAP-70 to Immunological synapse CREB1 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse TRAT1 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse ITK +PWCOMMONS Translocation of ZAP-70 to Immunological synapse MDM2 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse RPS6KB2 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse RICTOR +PWCOMMONS Translocation of ZAP-70 to Immunological synapse FRAP1 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse LST8 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse NR4A1 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse RIPK2 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse PTEN +PWCOMMONS Translocation of ZAP-70 to Immunological synapse BAD +PWCOMMONS Translocation of ZAP-70 to Immunological synapse TRIB3 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse CASP9 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse AKT1S1 +PWCOMMONS Translocation of ZAP-70 to Immunological synapse +PWCOMMONS Hemostasis IGF1 +PWCOMMONS Hemostasis IGF1 +PWCOMMONS Hemostasis CD36 +PWCOMMONS Hemostasis VWF +PWCOMMONS Hemostasis SERPINE1 +PWCOMMONS Hemostasis F5 +PWCOMMONS Hemostasis APP +PWCOMMONS Hemostasis SERPINF2 +PWCOMMONS Hemostasis SELP +PWCOMMONS Hemostasis SERPING1 +PWCOMMONS Hemostasis A2M +PWCOMMONS Hemostasis FN1 +PWCOMMONS Hemostasis ITGB1 +PWCOMMONS Hemostasis ITGA5 +PWCOMMONS Hemostasis ITGB3 +PWCOMMONS Hemostasis ITGA2B +PWCOMMONS Hemostasis CD63 +PWCOMMONS Hemostasis HGF +PWCOMMONS Hemostasis SERPINA1 +PWCOMMONS Hemostasis LAMP2 +PWCOMMONS Hemostasis F8 +PWCOMMONS Hemostasis PF4 +PWCOMMONS Hemostasis PPBP +PWCOMMONS Hemostasis PECAM1 +PWCOMMONS Hemostasis CD9 +PWCOMMONS Hemostasis SPARC +PWCOMMONS Hemostasis PLG +PWCOMMONS Hemostasis STX4 +PWCOMMONS Hemostasis PICK1 +PWCOMMONS Hemostasis STXBP3 +PWCOMMONS Hemostasis ALB +PWCOMMONS Hemostasis CFD +PWCOMMONS Hemostasis SRGN +PWCOMMONS Hemostasis ALDOA +PWCOMMONS Hemostasis PROS1 +PWCOMMONS Hemostasis TMSB4X +PWCOMMONS Hemostasis F13A1 +PWCOMMONS Hemostasis CLU +PWCOMMONS Hemostasis TIMP1 +PWCOMMONS Hemostasis GP5 +PWCOMMONS Hemostasis GP9 +PWCOMMONS Hemostasis GP1BA +PWCOMMONS Hemostasis GP1BB +PWCOMMONS Hemostasis FGB +PWCOMMONS Hemostasis FGG +PWCOMMONS Hemostasis FGA +PWCOMMONS Hemostasis EGF +PWCOMMONS Hemostasis MMRN1 +PWCOMMONS Hemostasis KNG1 +PWCOMMONS Hemostasis HRG +PWCOMMONS Hemostasis COL1A1 +PWCOMMONS Hemostasis COL1A2 +PWCOMMONS Hemostasis GP6 +PWCOMMONS Hemostasis FCER1G +PWCOMMONS Hemostasis SYK +PWCOMMONS Hemostasis F2R +PWCOMMONS Hemostasis F2RL3 +PWCOMMONS Hemostasis F2RL2 +PWCOMMONS Hemostasis F2 +PWCOMMONS Hemostasis GNAQ +PWCOMMONS Hemostasis ARHGEF1 +PWCOMMONS Hemostasis GNA13 +PWCOMMONS Hemostasis PRKCA +PWCOMMONS Hemostasis MARCKS +PWCOMMONS Hemostasis P2RX1 +PWCOMMONS Hemostasis PTK2 +PWCOMMONS Hemostasis TLN1 +PWCOMMONS Hemostasis APBB1IP +PWCOMMONS Hemostasis CSK +PWCOMMONS Hemostasis PTPN1 +PWCOMMONS Hemostasis BCAR1 +PWCOMMONS Hemostasis PTPRA +PWCOMMONS Hemostasis FYN +PWCOMMONS Hemostasis NCAM1 +PWCOMMONS Hemostasis SPTB +PWCOMMONS Hemostasis SOS1 +PWCOMMONS Hemostasis ITGA2 +PWCOMMONS Hemostasis F10 +PWCOMMONS Hemostasis PLAT +PWCOMMONS Hemostasis PROC +PWCOMMONS Hemostasis F9 +PWCOMMONS Hemostasis F13B +PWCOMMONS Hemostasis SERPINC1 +PWCOMMONS Hemostasis F11 +PWCOMMONS Hemostasis THBD +PWCOMMONS Hemostasis C1QBP +PWCOMMONS Hemostasis F12 +PWCOMMONS Hemostasis KLKB1 +PWCOMMONS Hemostasis PRCP +PWCOMMONS Hemostasis F7 +PWCOMMONS Hemostasis F3 +PWCOMMONS Hemostasis TFPI +PWCOMMONS Hemostasis PLEK +PWCOMMONS Hemostasis PPIA +PWCOMMONS Hemostasis PSAP +PWCOMMONS Hemostasis CAP1 +PWCOMMONS Hemostasis FLNA +PWCOMMONS Hemostasis CALU +PWCOMMONS Hemostasis SOD1 +PWCOMMONS Hemostasis TF +PWCOMMONS Hemostasis TUBA4A +PWCOMMONS Hemostasis CFL1 +PWCOMMONS Hemostasis TTN +PWCOMMONS Hemostasis PFN1 +PWCOMMONS Hemostasis VCL +PWCOMMONS Hemostasis BRPF3 +PWCOMMONS Hemostasis ACTBL3 +PWCOMMONS Hemostasis WDR1 +PWCOMMONS Hemostasis SCG3 +PWCOMMONS Hemostasis HSPA5 +PWCOMMONS Hemostasis CALM1 +PWCOMMONS Hemostasis APOA1 +PWCOMMONS Hemostasis CD47 +PWCOMMONS Hemostasis OLR1 +PWCOMMONS Hemostasis APOB +PWCOMMONS Hemostasis MERTK +PWCOMMONS Hemostasis CXADR +PWCOMMONS Hemostasis JAM3 +PWCOMMONS Hemostasis JAM2 +PWCOMMONS Hemostasis ITGB2 +PWCOMMONS Hemostasis ITGAX +PWCOMMONS Hemostasis CD58 +PWCOMMONS Hemostasis CD2 +PWCOMMONS Hemostasis F11R +PWCOMMONS Hemostasis ITGAL +PWCOMMONS Hemostasis CD244 +PWCOMMONS Hemostasis CD48 +PWCOMMONS Hemostasis BSG +PWCOMMONS Hemostasis MMP1 +PWCOMMONS Hemostasis SPN +PWCOMMONS Hemostasis CAV1 +PWCOMMONS Hemostasis PPIL2 +PWCOMMONS Hemostasis ITGA4 +PWCOMMONS Hemostasis PLCG1 +PWCOMMONS Hemostasis PTPN6 +PWCOMMONS Hemostasis INPP5D +PWCOMMONS Hemostasis ITGAV +PWCOMMONS Hemostasis PTPN11 +PWCOMMONS Hemostasis TREM1 +PWCOMMONS Hemostasis CD177 +PWCOMMONS Hemostasis SELPLG +PWCOMMONS Hemostasis ITGAM +PWCOMMONS Hemostasis ANGPT1 +PWCOMMONS Hemostasis TEK +PWCOMMONS Hemostasis ANGPT4 +PWCOMMONS Hemostasis GRB14 +PWCOMMONS Hemostasis GRB7 +PWCOMMONS Hemostasis DOK2 +PWCOMMONS Hemostasis SHC1 +PWCOMMONS Hemostasis ANGPT2 +PWCOMMONS Hemostasis PLAUR +PWCOMMONS Hemostasis PLAU +PWCOMMONS Hemostasis SERPINB2 +PWCOMMONS Hemostasis +PWCOMMONS Dissolution of Fibrin Clot PLAT +PWCOMMONS Dissolution of Fibrin Clot PLAUR +PWCOMMONS Dissolution of Fibrin Clot PLAU +PWCOMMONS Dissolution of Fibrin Clot SERPINE1 +PWCOMMONS Dissolution of Fibrin Clot HRG +PWCOMMONS Dissolution of Fibrin Clot SERPINF2 +PWCOMMONS Dissolution of Fibrin Clot SERPINB2 +PWCOMMONS Dissolution of Fibrin Clot +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F5 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) PLG +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) FGB +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) FGG +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) FGA +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) PLAT +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) PROC +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F8 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F9 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F13B +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F13A1 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) SERPINC1 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F2 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F11 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) GP5 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) GP9 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) GP1BA +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) GP1BB +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) SERPINE1 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F2RL3 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) PROS1 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) THBD +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) VWF +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) SERPINF2 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) KNG1 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) C1QBP +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F12 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) KLKB1 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) SERPING1 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) A2M +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) PRCP +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F7 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) F3 +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) TFPI +PWCOMMONS Formation of Fibrin Clot (Clotting Cascade) +PWCOMMONS Extrinsic Pathway F5 +PWCOMMONS Extrinsic Pathway PLG +PWCOMMONS Extrinsic Pathway FGB +PWCOMMONS Extrinsic Pathway FGG +PWCOMMONS Extrinsic Pathway FGA +PWCOMMONS Extrinsic Pathway PLAT +PWCOMMONS Extrinsic Pathway PROC +PWCOMMONS Extrinsic Pathway F7 +PWCOMMONS Extrinsic Pathway F3 +PWCOMMONS Extrinsic Pathway F8 +PWCOMMONS Extrinsic Pathway F9 +PWCOMMONS Extrinsic Pathway F13B +PWCOMMONS Extrinsic Pathway F13A1 +PWCOMMONS Extrinsic Pathway SERPINC1 +PWCOMMONS Extrinsic Pathway F2 +PWCOMMONS Extrinsic Pathway F11 +PWCOMMONS Extrinsic Pathway GP5 +PWCOMMONS Extrinsic Pathway GP9 +PWCOMMONS Extrinsic Pathway GP1BA +PWCOMMONS Extrinsic Pathway GP1BB +PWCOMMONS Extrinsic Pathway TFPI +PWCOMMONS Extrinsic Pathway SERPINE1 +PWCOMMONS Extrinsic Pathway F2RL3 +PWCOMMONS Extrinsic Pathway PROS1 +PWCOMMONS Extrinsic Pathway THBD +PWCOMMONS Extrinsic Pathway VWF +PWCOMMONS Extrinsic Pathway SERPINF2 +PWCOMMONS Extrinsic Pathway +PWCOMMONS Formation of Platelet plug IGF1 +PWCOMMONS Formation of Platelet plug CD36 +PWCOMMONS Formation of Platelet plug VWF +PWCOMMONS Formation of Platelet plug SERPINE1 +PWCOMMONS Formation of Platelet plug F5 +PWCOMMONS Formation of Platelet plug APP +PWCOMMONS Formation of Platelet plug SERPINF2 +PWCOMMONS Formation of Platelet plug SELP +PWCOMMONS Formation of Platelet plug SERPING1 +PWCOMMONS Formation of Platelet plug A2M +PWCOMMONS Formation of Platelet plug FN1 +PWCOMMONS Formation of Platelet plug ITGB1 +PWCOMMONS Formation of Platelet plug ITGA5 +PWCOMMONS Formation of Platelet plug ITGB3 +PWCOMMONS Formation of Platelet plug ITGA2B +PWCOMMONS Formation of Platelet plug CD63 +PWCOMMONS Formation of Platelet plug HGF +PWCOMMONS Formation of Platelet plug SERPINA1 +PWCOMMONS Formation of Platelet plug LAMP2 +PWCOMMONS Formation of Platelet plug F8 +PWCOMMONS Formation of Platelet plug PF4 +PWCOMMONS Formation of Platelet plug PPBP +PWCOMMONS Formation of Platelet plug PECAM1 +PWCOMMONS Formation of Platelet plug CD9 +PWCOMMONS Formation of Platelet plug SPARC +PWCOMMONS Formation of Platelet plug PLG +PWCOMMONS Formation of Platelet plug STX4 +PWCOMMONS Formation of Platelet plug PICK1 +PWCOMMONS Formation of Platelet plug STXBP3 +PWCOMMONS Formation of Platelet plug ALB +PWCOMMONS Formation of Platelet plug CFD +PWCOMMONS Formation of Platelet plug SRGN +PWCOMMONS Formation of Platelet plug ALDOA +PWCOMMONS Formation of Platelet plug PROS1 +PWCOMMONS Formation of Platelet plug TMSB4X +PWCOMMONS Formation of Platelet plug F13A1 +PWCOMMONS Formation of Platelet plug CLU +PWCOMMONS Formation of Platelet plug TIMP1 +PWCOMMONS Formation of Platelet plug GP5 +PWCOMMONS Formation of Platelet plug GP9 +PWCOMMONS Formation of Platelet plug GP1BA +PWCOMMONS Formation of Platelet plug GP1BB +PWCOMMONS Formation of Platelet plug FGB +PWCOMMONS Formation of Platelet plug FGG +PWCOMMONS Formation of Platelet plug FGA +PWCOMMONS Formation of Platelet plug EGF +PWCOMMONS Formation of Platelet plug MMRN1 +PWCOMMONS Formation of Platelet plug KNG1 +PWCOMMONS Formation of Platelet plug HRG +PWCOMMONS Formation of Platelet plug COL1A1 +PWCOMMONS Formation of Platelet plug COL1A2 +PWCOMMONS Formation of Platelet plug GP6 +PWCOMMONS Formation of Platelet plug FCER1G +PWCOMMONS Formation of Platelet plug SYK +PWCOMMONS Formation of Platelet plug PLCG2 +PWCOMMONS Formation of Platelet plug F2R +PWCOMMONS Formation of Platelet plug F2RL3 +PWCOMMONS Formation of Platelet plug F2RL2 +PWCOMMONS Formation of Platelet plug F2 +PWCOMMONS Formation of Platelet plug GNAQ +PWCOMMONS Formation of Platelet plug ARHGEF1 +PWCOMMONS Formation of Platelet plug GNA13 +PWCOMMONS Formation of Platelet plug PRKCA +PWCOMMONS Formation of Platelet plug MARCKS +PWCOMMONS Formation of Platelet plug P2RX1 +PWCOMMONS Formation of Platelet plug PTK2 +PWCOMMONS Formation of Platelet plug TLN1 +PWCOMMONS Formation of Platelet plug APBB1IP +PWCOMMONS Formation of Platelet plug CSK +PWCOMMONS Formation of Platelet plug PTPN1 +PWCOMMONS Formation of Platelet plug BCAR1 +PWCOMMONS Formation of Platelet plug PTPRA +PWCOMMONS Formation of Platelet plug FYN +PWCOMMONS Formation of Platelet plug NCAM1 +PWCOMMONS Formation of Platelet plug SPTB +PWCOMMONS Formation of Platelet plug SOS1 +PWCOMMONS Formation of Platelet plug ITGA2 +PWCOMMONS Formation of Platelet plug +PWCOMMONS Platelet Activation IGF1 +PWCOMMONS Platelet Activation CD36 +PWCOMMONS Platelet Activation VWF +PWCOMMONS Platelet Activation SERPINE1 +PWCOMMONS Platelet Activation F5 +PWCOMMONS Platelet Activation APP +PWCOMMONS Platelet Activation SERPINF2 +PWCOMMONS Platelet Activation SELP +PWCOMMONS Platelet Activation SERPING1 +PWCOMMONS Platelet Activation A2M +PWCOMMONS Platelet Activation FN1 +PWCOMMONS Platelet Activation ITGB1 +PWCOMMONS Platelet Activation ITGA5 +PWCOMMONS Platelet Activation ITGB3 +PWCOMMONS Platelet Activation ITGA2B +PWCOMMONS Platelet Activation CD63 +PWCOMMONS Platelet Activation HGF +PWCOMMONS Platelet Activation SERPINA1 +PWCOMMONS Platelet Activation LAMP2 +PWCOMMONS Platelet Activation F8 +PWCOMMONS Platelet Activation PF4 +PWCOMMONS Platelet Activation PPBP +PWCOMMONS Platelet Activation PECAM1 +PWCOMMONS Platelet Activation CD9 +PWCOMMONS Platelet Activation SPARC +PWCOMMONS Platelet Activation PLG +PWCOMMONS Platelet Activation STX4 +PWCOMMONS Platelet Activation PICK1 +PWCOMMONS Platelet Activation STXBP3 +PWCOMMONS Platelet Activation ALB +PWCOMMONS Platelet Activation CFD +PWCOMMONS Platelet Activation SRGN +PWCOMMONS Platelet Activation ALDOA +PWCOMMONS Platelet Activation PROS1 +PWCOMMONS Platelet Activation TMSB4X +PWCOMMONS Platelet Activation F13A1 +PWCOMMONS Platelet Activation CLU +PWCOMMONS Platelet Activation TIMP1 +PWCOMMONS Platelet Activation GP5 +PWCOMMONS Platelet Activation GP9 +PWCOMMONS Platelet Activation GP1BA +PWCOMMONS Platelet Activation GP1BB +PWCOMMONS Platelet Activation FGB +PWCOMMONS Platelet Activation FGG +PWCOMMONS Platelet Activation FGA +PWCOMMONS Platelet Activation EGF +PWCOMMONS Platelet Activation MMRN1 +PWCOMMONS Platelet Activation KNG1 +PWCOMMONS Platelet Activation HRG +PWCOMMONS Platelet Activation COL1A1 +PWCOMMONS Platelet Activation COL1A2 +PWCOMMONS Platelet Activation GP6 +PWCOMMONS Platelet Activation FCER1G +PWCOMMONS Platelet Activation SYK +PWCOMMONS Platelet Activation PLCG2 +PWCOMMONS Platelet Activation F2R +PWCOMMONS Platelet Activation F2RL3 +PWCOMMONS Platelet Activation F2RL2 +PWCOMMONS Platelet Activation F2 +PWCOMMONS Platelet Activation GNAQ +PWCOMMONS Platelet Activation ARHGEF1 +PWCOMMONS Platelet Activation GNA13 +PWCOMMONS Platelet Activation PRKCA +PWCOMMONS Platelet Activation MARCKS +PWCOMMONS Platelet Activation P2RX1 +PWCOMMONS Platelet Activation +PWCOMMONS Platelet Aggregation (Plug Formation) TLN1 +PWCOMMONS Platelet Aggregation (Plug Formation) APBB1IP +PWCOMMONS Platelet Aggregation (Plug Formation) ITGB3 +PWCOMMONS Platelet Aggregation (Plug Formation) ITGA2B +PWCOMMONS Platelet Aggregation (Plug Formation) CSK +PWCOMMONS Platelet Aggregation (Plug Formation) PTPN1 +PWCOMMONS Platelet Aggregation (Plug Formation) BCAR1 +PWCOMMONS Platelet Aggregation (Plug Formation) PTPRA +PWCOMMONS Platelet Aggregation (Plug Formation) FYN +PWCOMMONS Platelet Aggregation (Plug Formation) NCAM1 +PWCOMMONS Platelet Aggregation (Plug Formation) SPTB +PWCOMMONS Platelet Aggregation (Plug Formation) SOS1 +PWCOMMONS Platelet Aggregation (Plug Formation) FGB +PWCOMMONS Platelet Aggregation (Plug Formation) FGG +PWCOMMONS Platelet Aggregation (Plug Formation) FGA +PWCOMMONS Platelet Aggregation (Plug Formation) +PWCOMMONS Signaling by PDGF PDGFRB +PWCOMMONS Signaling by PDGF SOS1 +PWCOMMONS Signaling by PDGF PDGFRA +PWCOMMONS Signaling by PDGF BCAR1 +PWCOMMONS Signaling by PDGF PLCG1 +PWCOMMONS Signaling by PDGF MAP2K2 +PWCOMMONS Signaling by PDGF RAF1 +PWCOMMONS Signaling by PDGF YWHAB +PWCOMMONS Signaling by PDGF MAP2K1 +PWCOMMONS Signaling by PDGF MAPK1 +PWCOMMONS Signaling by PDGF MAPK3 +PWCOMMONS Signaling by PDGF RPS6KA5 +PWCOMMONS Signaling by PDGF ATF1 +PWCOMMONS Signaling by PDGF CREB1 +PWCOMMONS Signaling by PDGF PTPN11 +PWCOMMONS Signaling by PDGF GRB7 +PWCOMMONS Signaling by PDGF FURIN +PWCOMMONS Signaling by PDGF NOTCH2 +PWCOMMONS Signaling by PDGF +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation TCEA1 +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation ELL +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation TCEB3 +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation TCEB1 +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation TCEB2 +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation SSRP1 +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation SUPT16H +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation POLR2G +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation POLR2B +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation POLR2L +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation POLR2A +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation POLR2K +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation POLR2H +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation POLR2D +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation POLR2C +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation POLR2I +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation POLR2F +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation POLR2J +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation POLR2E +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation GTF2F1 +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation GTF2F2 +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation SUPT4H1 +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation TH1L +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation WHSC2 +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation RDBP +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation COBRA1 +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation CDK9 +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation CCNT1 +PWCOMMONS Pausing and recovery of Tat-mediated HIV-1 elongation +PWCOMMONS Branched-chain amino acid catabolism DBT +PWCOMMONS Branched-chain amino acid catabolism BCKDHA +PWCOMMONS Branched-chain amino acid catabolism BCKDHB +PWCOMMONS Branched-chain amino acid catabolism DLD +PWCOMMONS Branched-chain amino acid catabolism UROD +PWCOMMONS Branched-chain amino acid catabolism ATP5O +PWCOMMONS Branched-chain amino acid catabolism ATP5F1 +PWCOMMONS Branched-chain amino acid catabolism ATP5J +PWCOMMONS Branched-chain amino acid catabolism ATP5G1 +PWCOMMONS Branched-chain amino acid catabolism ATP5L +PWCOMMONS Branched-chain amino acid catabolism MT-ATP6 +PWCOMMONS Branched-chain amino acid catabolism ATP5J2 +PWCOMMONS Branched-chain amino acid catabolism MT-ATP8 +PWCOMMONS Branched-chain amino acid catabolism ATP5H +PWCOMMONS Branched-chain amino acid catabolism ATP5I +PWCOMMONS Branched-chain amino acid catabolism ATP5C1 +PWCOMMONS Branched-chain amino acid catabolism ATP5D +PWCOMMONS Branched-chain amino acid catabolism ATP5A1 +PWCOMMONS Branched-chain amino acid catabolism ATP5B +PWCOMMONS Branched-chain amino acid catabolism ATP5E +PWCOMMONS Branched-chain amino acid catabolism UQCRC1 +PWCOMMONS Branched-chain amino acid catabolism UQCRB +PWCOMMONS Branched-chain amino acid catabolism UQCR10 +PWCOMMONS Branched-chain amino acid catabolism UQCR +PWCOMMONS Branched-chain amino acid catabolism UQCRC2 +PWCOMMONS Branched-chain amino acid catabolism UQCRH +PWCOMMONS Branched-chain amino acid catabolism UQCRQ +PWCOMMONS Branched-chain amino acid catabolism UQCRFS1 +PWCOMMONS Branched-chain amino acid catabolism MT-CYB +PWCOMMONS Branched-chain amino acid catabolism CYC1 +PWCOMMONS Branched-chain amino acid catabolism CPOX +PWCOMMONS Branched-chain amino acid catabolism UROS +PWCOMMONS Branched-chain amino acid catabolism MT-CO2 +PWCOMMONS Branched-chain amino acid catabolism COX8A +PWCOMMONS Branched-chain amino acid catabolism COX7C +PWCOMMONS Branched-chain amino acid catabolism MT-CO3 +PWCOMMONS Branched-chain amino acid catabolism COX6C +PWCOMMONS Branched-chain amino acid catabolism COX5B +PWCOMMONS Branched-chain amino acid catabolism MT-CO1 +PWCOMMONS Branched-chain amino acid catabolism COX7A2L +PWCOMMONS Branched-chain amino acid catabolism COX4I1 +PWCOMMONS Branched-chain amino acid catabolism COX6A1 +PWCOMMONS Branched-chain amino acid catabolism COX7B +PWCOMMONS Branched-chain amino acid catabolism COX6B1 +PWCOMMONS Branched-chain amino acid catabolism COX5A +PWCOMMONS Branched-chain amino acid catabolism DLST +PWCOMMONS Branched-chain amino acid catabolism OGDH +PWCOMMONS Branched-chain amino acid catabolism BCAT1 +PWCOMMONS Branched-chain amino acid catabolism MCEE +PWCOMMONS Branched-chain amino acid catabolism ALAD +PWCOMMONS Branched-chain amino acid catabolism CS +PWCOMMONS Branched-chain amino acid catabolism PPOX +PWCOMMONS Branched-chain amino acid catabolism ACO2 +PWCOMMONS Branched-chain amino acid catabolism IDH3G +PWCOMMONS Branched-chain amino acid catabolism IDH3A +PWCOMMONS Branched-chain amino acid catabolism IDH3B +PWCOMMONS Branched-chain amino acid catabolism SUCLG1 +PWCOMMONS Branched-chain amino acid catabolism SUCLG2 +PWCOMMONS Branched-chain amino acid catabolism BCAT2 +PWCOMMONS Branched-chain amino acid catabolism KCNJ11 +PWCOMMONS Branched-chain amino acid catabolism SDHC +PWCOMMONS Branched-chain amino acid catabolism SDHD +PWCOMMONS Branched-chain amino acid catabolism SDHB +PWCOMMONS Branched-chain amino acid catabolism SDHA +PWCOMMONS Branched-chain amino acid catabolism FECH +PWCOMMONS Branched-chain amino acid catabolism SUCLA2 +PWCOMMONS Branched-chain amino acid catabolism CYCS +PWCOMMONS Branched-chain amino acid catabolism ACADSB +PWCOMMONS Branched-chain amino acid catabolism PCCB +PWCOMMONS Branched-chain amino acid catabolism PCCA +PWCOMMONS Branched-chain amino acid catabolism MDH2 +PWCOMMONS Branched-chain amino acid catabolism NDUFS3 +PWCOMMONS Branched-chain amino acid catabolism NDUFS4 +PWCOMMONS Branched-chain amino acid catabolism NDUFS6 +PWCOMMONS Branched-chain amino acid catabolism NDUFA5 +PWCOMMONS Branched-chain amino acid catabolism NDUFS5 +PWCOMMONS Branched-chain amino acid catabolism NDUFS1 +PWCOMMONS Branched-chain amino acid catabolism NDUFS2 +PWCOMMONS Branched-chain amino acid catabolism NDUFV2 +PWCOMMONS Branched-chain amino acid catabolism NDUFV3 +PWCOMMONS Branched-chain amino acid catabolism NDUFV1 +PWCOMMONS Branched-chain amino acid catabolism NDUFA4 +PWCOMMONS Branched-chain amino acid catabolism NDUFA11 +PWCOMMONS Branched-chain amino acid catabolism MT-ND3 +PWCOMMONS Branched-chain amino acid catabolism NDUFA13 +PWCOMMONS Branched-chain amino acid catabolism NDUFB5 +PWCOMMONS Branched-chain amino acid catabolism NDUFC1 +PWCOMMONS Branched-chain amino acid catabolism NDUFA6 +PWCOMMONS Branched-chain amino acid catabolism NDUFC2 +PWCOMMONS Branched-chain amino acid catabolism NDUFA3 +PWCOMMONS Branched-chain amino acid catabolism NDUFB3 +PWCOMMONS Branched-chain amino acid catabolism NDUFB1 +PWCOMMONS Branched-chain amino acid catabolism NDUFAB1 +PWCOMMONS Branched-chain amino acid catabolism MT-ND4 +PWCOMMONS Branched-chain amino acid catabolism MT-ND5 +PWCOMMONS Branched-chain amino acid catabolism NDUFA1 +PWCOMMONS Branched-chain amino acid catabolism NDUFB9 +PWCOMMONS Branched-chain amino acid catabolism NDUFB6 +PWCOMMONS Branched-chain amino acid catabolism NDUFB4 +PWCOMMONS Branched-chain amino acid catabolism NDUFA8 +PWCOMMONS Branched-chain amino acid catabolism NDUFB7 +PWCOMMONS Branched-chain amino acid catabolism NDUFA12 +PWCOMMONS Branched-chain amino acid catabolism NDUFB2 +PWCOMMONS Branched-chain amino acid catabolism MT-ND4L +PWCOMMONS Branched-chain amino acid catabolism MT-ND2 +PWCOMMONS Branched-chain amino acid catabolism NDUFB10 +PWCOMMONS Branched-chain amino acid catabolism NDUFA7 +PWCOMMONS Branched-chain amino acid catabolism NDUFA2 +PWCOMMONS Branched-chain amino acid catabolism NDUFB8 +PWCOMMONS Branched-chain amino acid catabolism NDUFB11 +PWCOMMONS Branched-chain amino acid catabolism MT-ND6 +PWCOMMONS Branched-chain amino acid catabolism MT-ND1 +PWCOMMONS Branched-chain amino acid catabolism NDUFS7 +PWCOMMONS Branched-chain amino acid catabolism NDUFA10 +PWCOMMONS Branched-chain amino acid catabolism NDUFS8 +PWCOMMONS Branched-chain amino acid catabolism NDUFA9 +PWCOMMONS Branched-chain amino acid catabolism VAMP2 +PWCOMMONS Branched-chain amino acid catabolism MUT +PWCOMMONS Branched-chain amino acid catabolism HSD17B10 +PWCOMMONS Branched-chain amino acid catabolism FH +PWCOMMONS Branched-chain amino acid catabolism INS +PWCOMMONS Branched-chain amino acid catabolism SYT5 +PWCOMMONS Branched-chain amino acid catabolism RIMS1 +PWCOMMONS Branched-chain amino acid catabolism CPLX1 +PWCOMMONS Branched-chain amino acid catabolism SLC18A3 +PWCOMMONS Branched-chain amino acid catabolism RAB3A +PWCOMMONS Branched-chain amino acid catabolism SYT1 +PWCOMMONS Branched-chain amino acid catabolism SLC17A7 +PWCOMMONS Branched-chain amino acid catabolism UNC13B +PWCOMMONS Branched-chain amino acid catabolism MCCC2 +PWCOMMONS Branched-chain amino acid catabolism MCCC1 +PWCOMMONS Branched-chain amino acid catabolism AUH +PWCOMMONS Branched-chain amino acid catabolism IVD +PWCOMMONS Branched-chain amino acid catabolism ACAD8 +PWCOMMONS Branched-chain amino acid catabolism HIBCH +PWCOMMONS Branched-chain amino acid catabolism ALDH6A1 +PWCOMMONS Branched-chain amino acid catabolism HIBADH +PWCOMMONS Branched-chain amino acid catabolism +PWCOMMONS Alanine metabolism NT5C2 +PWCOMMONS Alanine metabolism ATP5O +PWCOMMONS Alanine metabolism ATP5F1 +PWCOMMONS Alanine metabolism ATP5J +PWCOMMONS Alanine metabolism ATP5G1 +PWCOMMONS Alanine metabolism ATP5L +PWCOMMONS Alanine metabolism MT-ATP6 +PWCOMMONS Alanine metabolism ATP5J2 +PWCOMMONS Alanine metabolism MT-ATP8 +PWCOMMONS Alanine metabolism ATP5H +PWCOMMONS Alanine metabolism ATP5I +PWCOMMONS Alanine metabolism ATP5C1 +PWCOMMONS Alanine metabolism ATP5D +PWCOMMONS Alanine metabolism ATP5A1 +PWCOMMONS Alanine metabolism ATP5B +PWCOMMONS Alanine metabolism ATP5E +PWCOMMONS Alanine metabolism HPRT1 +PWCOMMONS Alanine metabolism UQCRC1 +PWCOMMONS Alanine metabolism UQCRB +PWCOMMONS Alanine metabolism UQCR10 +PWCOMMONS Alanine metabolism UQCR +PWCOMMONS Alanine metabolism UQCRC2 +PWCOMMONS Alanine metabolism UQCRH +PWCOMMONS Alanine metabolism UQCRQ +PWCOMMONS Alanine metabolism UQCRFS1 +PWCOMMONS Alanine metabolism MT-CYB +PWCOMMONS Alanine metabolism CYC1 +PWCOMMONS Alanine metabolism MT-CO2 +PWCOMMONS Alanine metabolism COX8A +PWCOMMONS Alanine metabolism COX7C +PWCOMMONS Alanine metabolism MT-CO3 +PWCOMMONS Alanine metabolism COX6C +PWCOMMONS Alanine metabolism COX5B +PWCOMMONS Alanine metabolism MT-CO1 +PWCOMMONS Alanine metabolism COX7A2L +PWCOMMONS Alanine metabolism COX4I1 +PWCOMMONS Alanine metabolism COX6A1 +PWCOMMONS Alanine metabolism COX7B +PWCOMMONS Alanine metabolism COX6B1 +PWCOMMONS Alanine metabolism COX5A +PWCOMMONS Alanine metabolism PGLS +PWCOMMONS Alanine metabolism GOT2 +PWCOMMONS Alanine metabolism HADH +PWCOMMONS Alanine metabolism UPP1 +PWCOMMONS Alanine metabolism PDHX +PWCOMMONS Alanine metabolism PDHA1 +PWCOMMONS Alanine metabolism PDHB +PWCOMMONS Alanine metabolism DLAT +PWCOMMONS Alanine metabolism DLD +PWCOMMONS Alanine metabolism GOT1 +PWCOMMONS Alanine metabolism PC +PWCOMMONS Alanine metabolism PGK1 +PWCOMMONS Alanine metabolism ADSL +PWCOMMONS Alanine metabolism GCDH +PWCOMMONS Alanine metabolism PCK1 +PWCOMMONS Alanine metabolism MDH1 +PWCOMMONS Alanine metabolism ATIC +PWCOMMONS Alanine metabolism OAT +PWCOMMONS Alanine metabolism NP +PWCOMMONS Alanine metabolism GYS2 +PWCOMMONS Alanine metabolism ECHS1 +PWCOMMONS Alanine metabolism TXN +PWCOMMONS Alanine metabolism SUCLG1 +PWCOMMONS Alanine metabolism SUCLG2 +PWCOMMONS Alanine metabolism ARG1 +PWCOMMONS Alanine metabolism KCNJ11 +PWCOMMONS Alanine metabolism AMPD3 +PWCOMMONS Alanine metabolism RPE +PWCOMMONS Alanine metabolism GLRX +PWCOMMONS Alanine metabolism SDHC +PWCOMMONS Alanine metabolism SDHD +PWCOMMONS Alanine metabolism SDHB +PWCOMMONS Alanine metabolism SDHA +PWCOMMONS Alanine metabolism DPYD +PWCOMMONS Alanine metabolism GART +PWCOMMONS Alanine metabolism GPT +PWCOMMONS Alanine metabolism DPYS +PWCOMMONS Alanine metabolism AK1 +PWCOMMONS Alanine metabolism MDH2 +PWCOMMONS Alanine metabolism UMPS +PWCOMMONS Alanine metabolism CYCS +PWCOMMONS Alanine metabolism NDUFS3 +PWCOMMONS Alanine metabolism NDUFS4 +PWCOMMONS Alanine metabolism NDUFS6 +PWCOMMONS Alanine metabolism NDUFA5 +PWCOMMONS Alanine metabolism NDUFS5 +PWCOMMONS Alanine metabolism NDUFS1 +PWCOMMONS Alanine metabolism NDUFS2 +PWCOMMONS Alanine metabolism NDUFV2 +PWCOMMONS Alanine metabolism NDUFV3 +PWCOMMONS Alanine metabolism NDUFV1 +PWCOMMONS Alanine metabolism NDUFA4 +PWCOMMONS Alanine metabolism NDUFA11 +PWCOMMONS Alanine metabolism MT-ND3 +PWCOMMONS Alanine metabolism NDUFA13 +PWCOMMONS Alanine metabolism NDUFB5 +PWCOMMONS Alanine metabolism NDUFC1 +PWCOMMONS Alanine metabolism NDUFA6 +PWCOMMONS Alanine metabolism NDUFC2 +PWCOMMONS Alanine metabolism NDUFA3 +PWCOMMONS Alanine metabolism NDUFB3 +PWCOMMONS Alanine metabolism NDUFB1 +PWCOMMONS Alanine metabolism NDUFAB1 +PWCOMMONS Alanine metabolism MT-ND4 +PWCOMMONS Alanine metabolism MT-ND5 +PWCOMMONS Alanine metabolism NDUFA1 +PWCOMMONS Alanine metabolism NDUFB9 +PWCOMMONS Alanine metabolism NDUFB6 +PWCOMMONS Alanine metabolism NDUFB4 +PWCOMMONS Alanine metabolism NDUFA8 +PWCOMMONS Alanine metabolism NDUFB7 +PWCOMMONS Alanine metabolism NDUFA12 +PWCOMMONS Alanine metabolism NDUFB2 +PWCOMMONS Alanine metabolism MT-ND4L +PWCOMMONS Alanine metabolism MT-ND2 +PWCOMMONS Alanine metabolism NDUFB10 +PWCOMMONS Alanine metabolism NDUFA7 +PWCOMMONS Alanine metabolism NDUFA2 +PWCOMMONS Alanine metabolism NDUFB8 +PWCOMMONS Alanine metabolism NDUFB11 +PWCOMMONS Alanine metabolism MT-ND6 +PWCOMMONS Alanine metabolism MT-ND1 +PWCOMMONS Alanine metabolism NDUFS7 +PWCOMMONS Alanine metabolism NDUFA10 +PWCOMMONS Alanine metabolism NDUFS8 +PWCOMMONS Alanine metabolism NDUFA9 +PWCOMMONS Alanine metabolism VAMP2 +PWCOMMONS Alanine metabolism NT5C1A +PWCOMMONS Alanine metabolism CTPS +PWCOMMONS Alanine metabolism PRPS1 +PWCOMMONS Alanine metabolism DLST +PWCOMMONS Alanine metabolism OGDH +PWCOMMONS Alanine metabolism GMPS +PWCOMMONS Alanine metabolism GUK1 +PWCOMMONS Alanine metabolism IMPDH2 +PWCOMMONS Alanine metabolism GDA +PWCOMMONS Alanine metabolism NME1 +PWCOMMONS Alanine metabolism IMPDH1 +PWCOMMONS Alanine metabolism ADSS +PWCOMMONS Alanine metabolism OTC +PWCOMMONS Alanine metabolism FH +PWCOMMONS Alanine metabolism INS +PWCOMMONS Alanine metabolism SYT5 +PWCOMMONS Alanine metabolism PFAS +PWCOMMONS Alanine metabolism SLC35D1 +PWCOMMONS Alanine metabolism ASL +PWCOMMONS Alanine metabolism UPB1 +PWCOMMONS Alanine metabolism SLC25A21 +PWCOMMONS Alanine metabolism GPI +PWCOMMONS Alanine metabolism UROD +PWCOMMONS Alanine metabolism CPOX +PWCOMMONS Alanine metabolism UROS +PWCOMMONS Alanine metabolism XDH +PWCOMMONS Alanine metabolism PAICS +PWCOMMONS Alanine metabolism CPS1 +PWCOMMONS Alanine metabolism TALDO1 +PWCOMMONS Alanine metabolism ASS1 +PWCOMMONS Alanine metabolism CMPK1 +PWCOMMONS Alanine metabolism ALAD +PWCOMMONS Alanine metabolism CS +PWCOMMONS Alanine metabolism CAT +PWCOMMONS Alanine metabolism PPOX +PWCOMMONS Alanine metabolism SLC25A1 +PWCOMMONS Alanine metabolism ACO2 +PWCOMMONS Alanine metabolism IDH3G +PWCOMMONS Alanine metabolism IDH3A +PWCOMMONS Alanine metabolism IDH3B +PWCOMMONS Alanine metabolism UGDH +PWCOMMONS Alanine metabolism RRM2 +PWCOMMONS Alanine metabolism RRM1 +PWCOMMONS Alanine metabolism G6PD +PWCOMMONS Alanine metabolism AMPD1 +PWCOMMONS Alanine metabolism SLC25A11 +PWCOMMONS Alanine metabolism PPAT +PWCOMMONS Alanine metabolism TKT +PWCOMMONS Alanine metabolism FECH +PWCOMMONS Alanine metabolism PCK2 +PWCOMMONS Alanine metabolism SUCLA2 +PWCOMMONS Alanine metabolism GBE1 +PWCOMMONS Alanine metabolism TXNRD1 +PWCOMMONS Alanine metabolism TPI1 +PWCOMMONS Alanine metabolism SLC25A10 +PWCOMMONS Alanine metabolism G6PC +PWCOMMONS Alanine metabolism PYCR1 +PWCOMMONS Alanine metabolism NME2 +PWCOMMONS Alanine metabolism RPIA +PWCOMMONS Alanine metabolism AMPD2 +PWCOMMONS Alanine metabolism PGD +PWCOMMONS Alanine metabolism GSR +PWCOMMONS Alanine metabolism +PWCOMMONS Caspase-8 is formed from procaspase-8 BID +PWCOMMONS Caspase-8 is formed from procaspase-8 MST4 +PWCOMMONS Caspase-8 is formed from procaspase-8 DSG3 +PWCOMMONS Caspase-8 is formed from procaspase-8 GSN +PWCOMMONS Caspase-8 is formed from procaspase-8 DIABLO +PWCOMMONS Caspase-8 is formed from procaspase-8 XIAP +PWCOMMONS Caspase-8 is formed from procaspase-8 CASP3 +PWCOMMONS Caspase-8 is formed from procaspase-8 BAX +PWCOMMONS Caspase-8 is formed from procaspase-8 BAK1 +PWCOMMONS Caspase-8 is formed from procaspase-8 PAK2 +PWCOMMONS Caspase-8 is formed from procaspase-8 ARHGAP10 +PWCOMMONS Caspase-8 is formed from procaspase-8 GAS2 +PWCOMMONS Caspase-8 is formed from procaspase-8 VIM +PWCOMMONS Caspase-8 is formed from procaspase-8 CASP9 +PWCOMMONS Caspase-8 is formed from procaspase-8 DSG1 +PWCOMMONS Caspase-8 is formed from procaspase-8 CYCS +PWCOMMONS Caspase-8 is formed from procaspase-8 APAF1 +PWCOMMONS Caspase-8 is formed from procaspase-8 FZR1 +PWCOMMONS Caspase-8 is formed from procaspase-8 ANAPC5 +PWCOMMONS Caspase-8 is formed from procaspase-8 ANAPC11 +PWCOMMONS Caspase-8 is formed from procaspase-8 CDC23 +PWCOMMONS Caspase-8 is formed from procaspase-8 ANAPC1 +PWCOMMONS Caspase-8 is formed from procaspase-8 ANAPC2 +PWCOMMONS Caspase-8 is formed from procaspase-8 UBE2D1 +PWCOMMONS Caspase-8 is formed from procaspase-8 CDC27 +PWCOMMONS Caspase-8 is formed from procaspase-8 ANAPC4 +PWCOMMONS Caspase-8 is formed from procaspase-8 ANAPC10 +PWCOMMONS Caspase-8 is formed from procaspase-8 ANAPC7 +PWCOMMONS Caspase-8 is formed from procaspase-8 UBE2C +PWCOMMONS Caspase-8 is formed from procaspase-8 CDC26 +PWCOMMONS Caspase-8 is formed from procaspase-8 CDC16 +PWCOMMONS Caspase-8 is formed from procaspase-8 UBE2E1 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMC6 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMA3 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD8 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD10 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD1 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD6 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMB5 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMB4 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD4 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMA2 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMB8 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD5 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMB6 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSME3 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMB3 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMB7 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSME1 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD11 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMA5 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMC5 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMC1 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD7 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD3 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMB2 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD13 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD14 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMB1 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMA6 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMB9 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMB10 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD9 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMC4 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMA1 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMA4 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMA7 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMF1 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSME2 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD12 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMC3 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMC2 +PWCOMMONS Caspase-8 is formed from procaspase-8 PSMD2 +PWCOMMONS Caspase-8 is formed from procaspase-8 NMT1 +PWCOMMONS Caspase-8 is formed from procaspase-8 ADD1 +PWCOMMONS Caspase-8 is formed from procaspase-8 BIRC2 +PWCOMMONS Caspase-8 is formed from procaspase-8 MAPT +PWCOMMONS Caspase-8 is formed from procaspase-8 DBNL +PWCOMMONS Caspase-8 is formed from procaspase-8 DSG2 +PWCOMMONS Caspase-8 is formed from procaspase-8 BMX +PWCOMMONS Caspase-8 is formed from procaspase-8 CASP8 +PWCOMMONS Caspase-8 is formed from procaspase-8 BCL2 +PWCOMMONS Caspase-8 is formed from procaspase-8 CDH1 +PWCOMMONS Caspase-8 is formed from procaspase-8 SPTAN1 +PWCOMMONS Caspase-8 is formed from procaspase-8 CASP7 +PWCOMMONS Caspase-8 is formed from procaspase-8 CLSPN +PWCOMMONS Caspase-8 is formed from procaspase-8 DFFA +PWCOMMONS Caspase-8 is formed from procaspase-8 DFFB +PWCOMMONS Caspase-8 is formed from procaspase-8 KPNB1 +PWCOMMONS Caspase-8 is formed from procaspase-8 KPNA1 +PWCOMMONS Caspase-8 is formed from procaspase-8 OCLN +PWCOMMONS Caspase-8 is formed from procaspase-8 TJP2 +PWCOMMONS Caspase-8 is formed from procaspase-8 PKP1 +PWCOMMONS Caspase-8 is formed from procaspase-8 DSP +PWCOMMONS Caspase-8 is formed from procaspase-8 CASP6 +PWCOMMONS Caspase-8 is formed from procaspase-8 ACIN1 +PWCOMMONS Caspase-8 is formed from procaspase-8 STK24 +PWCOMMONS Caspase-8 is formed from procaspase-8 PRKCQ +PWCOMMONS Caspase-8 is formed from procaspase-8 ROCK1 +PWCOMMONS Caspase-8 is formed from procaspase-8 LMNB1 +PWCOMMONS Caspase-8 is formed from procaspase-8 BCAP31 +PWCOMMONS Caspase-8 is formed from procaspase-8 PRKCD +PWCOMMONS Caspase-8 is formed from procaspase-8 CDC25A +PWCOMMONS Caspase-8 is formed from procaspase-8 FADD +PWCOMMONS Caspase-8 is formed from procaspase-8 TNFRSF10B +PWCOMMONS Caspase-8 is formed from procaspase-8 TNFSF10 +PWCOMMONS Caspase-8 is formed from procaspase-8 TRAF2 +PWCOMMONS Caspase-8 is formed from procaspase-8 RIPK1 +PWCOMMONS Caspase-8 is formed from procaspase-8 TRADD +PWCOMMONS Caspase-8 is formed from procaspase-8 FASLG +PWCOMMONS Caspase-8 is formed from procaspase-8 FAS +PWCOMMONS Caspase-8 is formed from procaspase-8 FNTA +PWCOMMONS Caspase-8 is formed from procaspase-8 PTK2 +PWCOMMONS Caspase-8 is formed from procaspase-8 BAD +PWCOMMONS Caspase-8 is formed from procaspase-8 PLEC1 +PWCOMMONS Caspase-8 is formed from procaspase-8 +PWCOMMONS RNA Polymerase I Transcription UBTF +PWCOMMONS RNA Polymerase I Transcription TAF1C +PWCOMMONS RNA Polymerase I Transcription TAF1B +PWCOMMONS RNA Polymerase I Transcription TAF1A +PWCOMMONS RNA Polymerase I Transcription POLR1D +PWCOMMONS RNA Polymerase I Transcription POLR1C +PWCOMMONS RNA Polymerase I Transcription POLR1A +PWCOMMONS RNA Polymerase I Transcription POLR2K +PWCOMMONS RNA Polymerase I Transcription POLR2H +PWCOMMONS RNA Polymerase I Transcription POLR1B +PWCOMMONS RNA Polymerase I Transcription ERCC2 +PWCOMMONS RNA Polymerase I Transcription GTF2H3 +PWCOMMONS RNA Polymerase I Transcription GTF2H4 +PWCOMMONS RNA Polymerase I Transcription GTF2H2 +PWCOMMONS RNA Polymerase I Transcription ERCC3 +PWCOMMONS RNA Polymerase I Transcription GTF2H1 +PWCOMMONS RNA Polymerase I Transcription CCNH +PWCOMMONS RNA Polymerase I Transcription CDK7 +PWCOMMONS RNA Polymerase I Transcription MNAT1 +PWCOMMONS RNA Polymerase I Transcription PTRF +PWCOMMONS RNA Polymerase I Transcription RRN3 +PWCOMMONS RNA Polymerase I Transcription MAPK3 +PWCOMMONS RNA Polymerase I Transcription PCAF +PWCOMMONS RNA Polymerase I Transcription +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell HLA-C +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell B2M +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell TYROBP +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell KIR2DS2 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell KIR2DL4 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell HLA-G +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CD19 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell IFITM1 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CD81 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell C3 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CXADR +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CRTAM +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CD200R1 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CD200 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell VCAM1 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell ITGB1 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell ITGA4 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CD160 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell KIR3DL2 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell HLA-A +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell HLA-E +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CD96 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell KLRK1 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell HCST +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell ITGAL +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell ITGB2 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell SELL +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CD3E +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CD3D +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CD3G +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CD8A +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CDH1 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell KLRG1 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell CD226 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell KIR3DL1 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell HLA-B +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell KIR2DS1 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell HLA-C +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell KIR2DL1 +PWCOMMONS Immunoregulatory interactions between a Lymphoid and a non-Lymphoid cell +PWCOMMONS PKA-mediated phosphorylation of key metabolic factors MLXIPL +PWCOMMONS PKA-mediated phosphorylation of key metabolic factors CREB1 +PWCOMMONS PKA-mediated phosphorylation of key metabolic factors +PWCOMMONS Signaling in Immune system MYD88 +PWCOMMONS Signaling in Immune system TIRAP +PWCOMMONS Signaling in Immune system IRAK3 +PWCOMMONS Signaling in Immune system MAP3K1 +PWCOMMONS Signaling in Immune system TRAF6 +PWCOMMONS Signaling in Immune system ECSIT +PWCOMMONS Signaling in Immune system SIGIRR +PWCOMMONS Signaling in Immune system TLR6 +PWCOMMONS Signaling in Immune system TLR2 +PWCOMMONS Signaling in Immune system ATF2 +PWCOMMONS Signaling in Immune system IRF3 +PWCOMMONS Signaling in Immune system TBK1 +PWCOMMONS Signaling in Immune system TICAM1 +PWCOMMONS Signaling in Immune system TLR3 +PWCOMMONS Signaling in Immune system MAP3K7IP1 +PWCOMMONS Signaling in Immune system MAP3K7IP2 +PWCOMMONS Signaling in Immune system MAP3K7 +PWCOMMONS Signaling in Immune system CHUK +PWCOMMONS Signaling in Immune system IKBKB +PWCOMMONS Signaling in Immune system IKBKG +PWCOMMONS Signaling in Immune system RELA +PWCOMMONS Signaling in Immune system RIPK1 +PWCOMMONS Signaling in Immune system JUN +PWCOMMONS Signaling in Immune system MAPK1 +PWCOMMONS Signaling in Immune system MAPK8 +PWCOMMONS Signaling in Immune system TLR10 +PWCOMMONS Signaling in Immune system LY96 +PWCOMMONS Signaling in Immune system TLR4 +PWCOMMONS Signaling in Immune system CD180 +PWCOMMONS Signaling in Immune system LY86 +PWCOMMONS Signaling in Immune system TICAM2 +PWCOMMONS Signaling in Immune system LBP +PWCOMMONS Signaling in Immune system CD14 +PWCOMMONS Signaling in Immune system TLR5 +PWCOMMONS Signaling in Immune system ZFYVE20 +PWCOMMONS Signaling in Immune system EEA1 +PWCOMMONS Signaling in Immune system TLR9 +PWCOMMONS Signaling in Immune system PIK3C3 +PWCOMMONS Signaling in Immune system PIK3R4 +PWCOMMONS Signaling in Immune system C9 +PWCOMMONS Signaling in Immune system C6 +PWCOMMONS Signaling in Immune system C7 +PWCOMMONS Signaling in Immune system C5 +PWCOMMONS Signaling in Immune system C8A +PWCOMMONS Signaling in Immune system C8B +PWCOMMONS Signaling in Immune system C8G +PWCOMMONS Signaling in Immune system C4A +PWCOMMONS Signaling in Immune system C2 +PWCOMMONS Signaling in Immune system C3 +PWCOMMONS Signaling in Immune system C1QC +PWCOMMONS Signaling in Immune system C1QA +PWCOMMONS Signaling in Immune system C1QB +PWCOMMONS Signaling in Immune system C1S +PWCOMMONS Signaling in Immune system C1R +PWCOMMONS Signaling in Immune system MBL2 +PWCOMMONS Signaling in Immune system MASP1 +PWCOMMONS Signaling in Immune system CFD +PWCOMMONS Signaling in Immune system CFB +PWCOMMONS Signaling in Immune system SYK +PWCOMMONS Signaling in Immune system GP6 +PWCOMMONS Signaling in Immune system FCER1G +PWCOMMONS Signaling in Immune system COL1A1 +PWCOMMONS Signaling in Immune system COL1A2 +PWCOMMONS Signaling in Immune system CD47 +PWCOMMONS Signaling in Immune system PROC +PWCOMMONS Signaling in Immune system OLR1 +PWCOMMONS Signaling in Immune system APOB +PWCOMMONS Signaling in Immune system MERTK +PWCOMMONS Signaling in Immune system CXADR +PWCOMMONS Signaling in Immune system JAM3 +PWCOMMONS Signaling in Immune system JAM2 +PWCOMMONS Signaling in Immune system ITGB2 +PWCOMMONS Signaling in Immune system ITGAX +PWCOMMONS Signaling in Immune system FN1 +PWCOMMONS Signaling in Immune system ITGB1 +PWCOMMONS Signaling in Immune system ITGA5 +PWCOMMONS Signaling in Immune system CD58 +PWCOMMONS Signaling in Immune system CD2 +PWCOMMONS Signaling in Immune system THBD +PWCOMMONS Signaling in Immune system F2 +PWCOMMONS Signaling in Immune system F11R +PWCOMMONS Signaling in Immune system ITGAL +PWCOMMONS Signaling in Immune system F5 +PWCOMMONS Signaling in Immune system CD244 +PWCOMMONS Signaling in Immune system CD48 +PWCOMMONS Signaling in Immune system BSG +PWCOMMONS Signaling in Immune system PPIA +PWCOMMONS Signaling in Immune system MMP1 +PWCOMMONS Signaling in Immune system SPN +PWCOMMONS Signaling in Immune system CAV1 +PWCOMMONS Signaling in Immune system PPIL2 +PWCOMMONS Signaling in Immune system ITGA4 +PWCOMMONS Signaling in Immune system PLCG1 +PWCOMMONS Signaling in Immune system PECAM1 +PWCOMMONS Signaling in Immune system PTPN6 +PWCOMMONS Signaling in Immune system INPP5D +PWCOMMONS Signaling in Immune system ITGB3 +PWCOMMONS Signaling in Immune system ITGAV +PWCOMMONS Signaling in Immune system PTPN11 +PWCOMMONS Signaling in Immune system TREM1 +PWCOMMONS Signaling in Immune system PROS1 +PWCOMMONS Signaling in Immune system CD177 +PWCOMMONS Signaling in Immune system SELPLG +PWCOMMONS Signaling in Immune system ITGAM +PWCOMMONS Signaling in Immune system ANGPT1 +PWCOMMONS Signaling in Immune system TEK +PWCOMMONS Signaling in Immune system ANGPT4 +PWCOMMONS Signaling in Immune system GRB14 +PWCOMMONS Signaling in Immune system SOS1 +PWCOMMONS Signaling in Immune system GRB7 +PWCOMMONS Signaling in Immune system DOK2 +PWCOMMONS Signaling in Immune system SHC1 +PWCOMMONS Signaling in Immune system ANGPT2 +PWCOMMONS Signaling in Immune system PLCG2 +PWCOMMONS Signaling in Immune system CD40LG +PWCOMMONS Signaling in Immune system HLA-C +PWCOMMONS Signaling in Immune system B2M +PWCOMMONS Signaling in Immune system TYROBP +PWCOMMONS Signaling in Immune system KIR2DS2 +PWCOMMONS Signaling in Immune system KIR2DL4 +PWCOMMONS Signaling in Immune system HLA-G +PWCOMMONS Signaling in Immune system CD19 +PWCOMMONS Signaling in Immune system IFITM1 +PWCOMMONS Signaling in Immune system CD81 +PWCOMMONS Signaling in Immune system CRTAM +PWCOMMONS Signaling in Immune system CD200R1 +PWCOMMONS Signaling in Immune system CD200 +PWCOMMONS Signaling in Immune system VCAM1 +PWCOMMONS Signaling in Immune system CD160 +PWCOMMONS Signaling in Immune system KIR3DL2 +PWCOMMONS Signaling in Immune system HLA-A +PWCOMMONS Signaling in Immune system HLA-E +PWCOMMONS Signaling in Immune system CD96 +PWCOMMONS Signaling in Immune system KLRK1 +PWCOMMONS Signaling in Immune system HCST +PWCOMMONS Signaling in Immune system SELL +PWCOMMONS Signaling in Immune system CD3E +PWCOMMONS Signaling in Immune system CD3D +PWCOMMONS Signaling in Immune system CD3G +PWCOMMONS Signaling in Immune system CD8A +PWCOMMONS Signaling in Immune system CDH1 +PWCOMMONS Signaling in Immune system KLRG1 +PWCOMMONS Signaling in Immune system CD226 +PWCOMMONS Signaling in Immune system KIR3DL1 +PWCOMMONS Signaling in Immune system HLA-B +PWCOMMONS Signaling in Immune system KIR2DS1 +PWCOMMONS Signaling in Immune system HLA-C +PWCOMMONS Signaling in Immune system KIR2DL1 +PWCOMMONS Signaling in Immune system MALT1 +PWCOMMONS Signaling in Immune system BCL10 +PWCOMMONS Signaling in Immune system CARD11 +PWCOMMONS Signaling in Immune system PDPK1 +PWCOMMONS Signaling in Immune system NFKBIA +PWCOMMONS Signaling in Immune system NFKB1 +PWCOMMONS Signaling in Immune system FOXO1 +PWCOMMONS Signaling in Immune system THEM4 +PWCOMMONS Signaling in Immune system PRKCQ +PWCOMMONS Signaling in Immune system UBE2V1 +PWCOMMONS Signaling in Immune system UBE2N +PWCOMMONS Signaling in Immune system CREB1 +PWCOMMONS Signaling in Immune system TRAT1 +PWCOMMONS Signaling in Immune system MDM2 +PWCOMMONS Signaling in Immune system RPS6KB2 +PWCOMMONS Signaling in Immune system RICTOR +PWCOMMONS Signaling in Immune system FRAP1 +PWCOMMONS Signaling in Immune system LST8 +PWCOMMONS Signaling in Immune system NR4A1 +PWCOMMONS Signaling in Immune system RIPK2 +PWCOMMONS Signaling in Immune system ZAP70 +PWCOMMONS Signaling in Immune system LCK +PWCOMMONS Signaling in Immune system CD4 +PWCOMMONS Signaling in Immune system PTEN +PWCOMMONS Signaling in Immune system BAD +PWCOMMONS Signaling in Immune system TRIB3 +PWCOMMONS Signaling in Immune system CASP9 +PWCOMMONS Signaling in Immune system AKT1S1 +PWCOMMONS Signaling in Immune system LCP2 +PWCOMMONS Signaling in Immune system LAT +PWCOMMONS Signaling in Immune system GRAP2 +PWCOMMONS Signaling in Immune system ITK +PWCOMMONS Signaling in Immune system CSK +PWCOMMONS Signaling in Immune system PAG1 +PWCOMMONS Signaling in Immune system PTPRC +PWCOMMONS Signaling in Immune system +PWCOMMONS TCR signaling MAP3K7 +PWCOMMONS TCR signaling TRAF6 +PWCOMMONS TCR signaling MALT1 +PWCOMMONS TCR signaling BCL10 +PWCOMMONS TCR signaling CARD11 +PWCOMMONS TCR signaling PDPK1 +PWCOMMONS TCR signaling NFKBIA +PWCOMMONS TCR signaling NFKB1 +PWCOMMONS TCR signaling RELA +PWCOMMONS TCR signaling FOXO1 +PWCOMMONS TCR signaling THEM4 +PWCOMMONS TCR signaling CHUK +PWCOMMONS TCR signaling IKBKB +PWCOMMONS TCR signaling IKBKG +PWCOMMONS TCR signaling PRKCQ +PWCOMMONS TCR signaling INPP5D +PWCOMMONS TCR signaling UBE2V1 +PWCOMMONS TCR signaling UBE2N +PWCOMMONS TCR signaling CREB1 +PWCOMMONS TCR signaling TRAT1 +PWCOMMONS TCR signaling MDM2 +PWCOMMONS TCR signaling RPS6KB2 +PWCOMMONS TCR signaling RICTOR +PWCOMMONS TCR signaling FRAP1 +PWCOMMONS TCR signaling LST8 +PWCOMMONS TCR signaling NR4A1 +PWCOMMONS TCR signaling RIPK2 +PWCOMMONS TCR signaling ZAP70 +PWCOMMONS TCR signaling LCK +PWCOMMONS TCR signaling CD4 +PWCOMMONS TCR signaling CD3E +PWCOMMONS TCR signaling CD3D +PWCOMMONS TCR signaling CD3G +PWCOMMONS TCR signaling PTEN +PWCOMMONS TCR signaling BAD +PWCOMMONS TCR signaling TRIB3 +PWCOMMONS TCR signaling CASP9 +PWCOMMONS TCR signaling AKT1S1 +PWCOMMONS TCR signaling LCP2 +PWCOMMONS TCR signaling LAT +PWCOMMONS TCR signaling GRAP2 +PWCOMMONS TCR signaling PLCG1 +PWCOMMONS TCR signaling ITK +PWCOMMONS TCR signaling CSK +PWCOMMONS TCR signaling PAG1 +PWCOMMONS TCR signaling PTPRC +PWCOMMONS TCR signaling +PWCOMMONS Steroid hormones GC +PWCOMMONS Steroid hormones CUBN +PWCOMMONS Steroid hormones LRP2 +PWCOMMONS Steroid hormones CYP27B1 +PWCOMMONS Steroid hormones CYP2R1 +PWCOMMONS Steroid hormones CYP24A1 +PWCOMMONS Steroid hormones CYP19A1 +PWCOMMONS Steroid hormones HSD11B1 +PWCOMMONS Steroid hormones CYP17A1 +PWCOMMONS Steroid hormones HSD17B3 +PWCOMMONS Steroid hormones CYP21A2 +PWCOMMONS Steroid hormones CYP11B1 +PWCOMMONS Steroid hormones CYP11A1 +PWCOMMONS Steroid hormones CYP11B2 +PWCOMMONS Steroid hormones STAR +PWCOMMONS Steroid hormones +PWCOMMONS Extrinsic Pathway for Apoptosis BID +PWCOMMONS Extrinsic Pathway for Apoptosis MST4 +PWCOMMONS Extrinsic Pathway for Apoptosis DSG3 +PWCOMMONS Extrinsic Pathway for Apoptosis GSN +PWCOMMONS Extrinsic Pathway for Apoptosis DIABLO +PWCOMMONS Extrinsic Pathway for Apoptosis XIAP +PWCOMMONS Extrinsic Pathway for Apoptosis CASP3 +PWCOMMONS Extrinsic Pathway for Apoptosis BAX +PWCOMMONS Extrinsic Pathway for Apoptosis BAK1 +PWCOMMONS Extrinsic Pathway for Apoptosis PAK2 +PWCOMMONS Extrinsic Pathway for Apoptosis ARHGAP10 +PWCOMMONS Extrinsic Pathway for Apoptosis GAS2 +PWCOMMONS Extrinsic Pathway for Apoptosis VIM +PWCOMMONS Extrinsic Pathway for Apoptosis CASP9 +PWCOMMONS Extrinsic Pathway for Apoptosis DSG1 +PWCOMMONS Extrinsic Pathway for Apoptosis CYCS +PWCOMMONS Extrinsic Pathway for Apoptosis APAF1 +PWCOMMONS Extrinsic Pathway for Apoptosis FZR1 +PWCOMMONS Extrinsic Pathway for Apoptosis ANAPC5 +PWCOMMONS Extrinsic Pathway for Apoptosis ANAPC11 +PWCOMMONS Extrinsic Pathway for Apoptosis CDC23 +PWCOMMONS Extrinsic Pathway for Apoptosis ANAPC1 +PWCOMMONS Extrinsic Pathway for Apoptosis ANAPC2 +PWCOMMONS Extrinsic Pathway for Apoptosis UBE2D1 +PWCOMMONS Extrinsic Pathway for Apoptosis CDC27 +PWCOMMONS Extrinsic Pathway for Apoptosis ANAPC4 +PWCOMMONS Extrinsic Pathway for Apoptosis ANAPC10 +PWCOMMONS Extrinsic Pathway for Apoptosis ANAPC7 +PWCOMMONS Extrinsic Pathway for Apoptosis UBE2C +PWCOMMONS Extrinsic Pathway for Apoptosis CDC26 +PWCOMMONS Extrinsic Pathway for Apoptosis CDC16 +PWCOMMONS Extrinsic Pathway for Apoptosis UBE2E1 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMC6 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMA3 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD8 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD10 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD1 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD6 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMB5 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMB4 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD4 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMA2 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMB8 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD5 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMB6 +PWCOMMONS Extrinsic Pathway for Apoptosis PSME3 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMB3 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMB7 +PWCOMMONS Extrinsic Pathway for Apoptosis PSME1 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD11 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMA5 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMC5 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMC1 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD7 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD3 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMB2 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD13 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD14 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMB1 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMA6 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMB9 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMB10 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD9 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMC4 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMA1 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMA4 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMA7 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMF1 +PWCOMMONS Extrinsic Pathway for Apoptosis PSME2 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD12 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMC3 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMC2 +PWCOMMONS Extrinsic Pathway for Apoptosis PSMD2 +PWCOMMONS Extrinsic Pathway for Apoptosis NMT1 +PWCOMMONS Extrinsic Pathway for Apoptosis ADD1 +PWCOMMONS Extrinsic Pathway for Apoptosis BIRC2 +PWCOMMONS Extrinsic Pathway for Apoptosis MAPT +PWCOMMONS Extrinsic Pathway for Apoptosis DBNL +PWCOMMONS Extrinsic Pathway for Apoptosis DSG2 +PWCOMMONS Extrinsic Pathway for Apoptosis BMX +PWCOMMONS Extrinsic Pathway for Apoptosis CASP8 +PWCOMMONS Extrinsic Pathway for Apoptosis BCL2 +PWCOMMONS Extrinsic Pathway for Apoptosis CDH1 +PWCOMMONS Extrinsic Pathway for Apoptosis SPTAN1 +PWCOMMONS Extrinsic Pathway for Apoptosis CASP7 +PWCOMMONS Extrinsic Pathway for Apoptosis CLSPN +PWCOMMONS Extrinsic Pathway for Apoptosis DFFA +PWCOMMONS Extrinsic Pathway for Apoptosis DFFB +PWCOMMONS Extrinsic Pathway for Apoptosis KPNB1 +PWCOMMONS Extrinsic Pathway for Apoptosis KPNA1 +PWCOMMONS Extrinsic Pathway for Apoptosis OCLN +PWCOMMONS Extrinsic Pathway for Apoptosis TJP2 +PWCOMMONS Extrinsic Pathway for Apoptosis PKP1 +PWCOMMONS Extrinsic Pathway for Apoptosis DSP +PWCOMMONS Extrinsic Pathway for Apoptosis CASP6 +PWCOMMONS Extrinsic Pathway for Apoptosis ACIN1 +PWCOMMONS Extrinsic Pathway for Apoptosis STK24 +PWCOMMONS Extrinsic Pathway for Apoptosis PRKCQ +PWCOMMONS Extrinsic Pathway for Apoptosis ROCK1 +PWCOMMONS Extrinsic Pathway for Apoptosis LMNB1 +PWCOMMONS Extrinsic Pathway for Apoptosis BCAP31 +PWCOMMONS Extrinsic Pathway for Apoptosis PRKCD +PWCOMMONS Extrinsic Pathway for Apoptosis CDC25A +PWCOMMONS Extrinsic Pathway for Apoptosis FADD +PWCOMMONS Extrinsic Pathway for Apoptosis TNFRSF10B +PWCOMMONS Extrinsic Pathway for Apoptosis TNFSF10 +PWCOMMONS Extrinsic Pathway for Apoptosis TRAF2 +PWCOMMONS Extrinsic Pathway for Apoptosis RIPK1 +PWCOMMONS Extrinsic Pathway for Apoptosis TRADD +PWCOMMONS Extrinsic Pathway for Apoptosis FASLG +PWCOMMONS Extrinsic Pathway for Apoptosis FAS +PWCOMMONS Extrinsic Pathway for Apoptosis FNTA +PWCOMMONS Extrinsic Pathway for Apoptosis PTK2 +PWCOMMONS Extrinsic Pathway for Apoptosis BAD +PWCOMMONS Extrinsic Pathway for Apoptosis PLEC1 +PWCOMMONS Extrinsic Pathway for Apoptosis CASP10 +PWCOMMONS Extrinsic Pathway for Apoptosis CFLAR +PWCOMMONS Extrinsic Pathway for Apoptosis TNFRSF1A +PWCOMMONS Extrinsic Pathway for Apoptosis TNF +PWCOMMONS Extrinsic Pathway for Apoptosis +PWCOMMONS Pausing and recovery of HIV-1 elongation TCEA1 +PWCOMMONS Pausing and recovery of HIV-1 elongation ELL +PWCOMMONS Pausing and recovery of HIV-1 elongation TCEB3 +PWCOMMONS Pausing and recovery of HIV-1 elongation TCEB1 +PWCOMMONS Pausing and recovery of HIV-1 elongation TCEB2 +PWCOMMONS Pausing and recovery of HIV-1 elongation SSRP1 +PWCOMMONS Pausing and recovery of HIV-1 elongation SUPT16H +PWCOMMONS Pausing and recovery of HIV-1 elongation CCNT2 +PWCOMMONS Pausing and recovery of HIV-1 elongation CDK9 +PWCOMMONS Pausing and recovery of HIV-1 elongation CCNT1 +PWCOMMONS Pausing and recovery of HIV-1 elongation POLR2G +PWCOMMONS Pausing and recovery of HIV-1 elongation POLR2B +PWCOMMONS Pausing and recovery of HIV-1 elongation POLR2L +PWCOMMONS Pausing and recovery of HIV-1 elongation POLR2A +PWCOMMONS Pausing and recovery of HIV-1 elongation POLR2K +PWCOMMONS Pausing and recovery of HIV-1 elongation POLR2H +PWCOMMONS Pausing and recovery of HIV-1 elongation POLR2D +PWCOMMONS Pausing and recovery of HIV-1 elongation POLR2C +PWCOMMONS Pausing and recovery of HIV-1 elongation POLR2I +PWCOMMONS Pausing and recovery of HIV-1 elongation POLR2F +PWCOMMONS Pausing and recovery of HIV-1 elongation POLR2J +PWCOMMONS Pausing and recovery of HIV-1 elongation POLR2E +PWCOMMONS Pausing and recovery of HIV-1 elongation GTF2F1 +PWCOMMONS Pausing and recovery of HIV-1 elongation GTF2F2 +PWCOMMONS Pausing and recovery of HIV-1 elongation SUPT4H1 +PWCOMMONS Pausing and recovery of HIV-1 elongation TH1L +PWCOMMONS Pausing and recovery of HIV-1 elongation WHSC2 +PWCOMMONS Pausing and recovery of HIV-1 elongation RDBP +PWCOMMONS Pausing and recovery of HIV-1 elongation COBRA1 +PWCOMMONS Pausing and recovery of HIV-1 elongation +PWCOMMONS Integration of energy metabolism NT5C2 +PWCOMMONS Integration of energy metabolism PFKFB1 +PWCOMMONS Integration of energy metabolism ATP5O +PWCOMMONS Integration of energy metabolism ATP5F1 +PWCOMMONS Integration of energy metabolism ATP5J +PWCOMMONS Integration of energy metabolism ATP5G1 +PWCOMMONS Integration of energy metabolism ATP5L +PWCOMMONS Integration of energy metabolism MT-ATP6 +PWCOMMONS Integration of energy metabolism ATP5J2 +PWCOMMONS Integration of energy metabolism MT-ATP8 +PWCOMMONS Integration of energy metabolism ATP5H +PWCOMMONS Integration of energy metabolism ATP5I +PWCOMMONS Integration of energy metabolism ATP5C1 +PWCOMMONS Integration of energy metabolism ATP5D +PWCOMMONS Integration of energy metabolism ATP5A1 +PWCOMMONS Integration of energy metabolism ATP5B +PWCOMMONS Integration of energy metabolism ATP5E +PWCOMMONS Integration of energy metabolism MLX +PWCOMMONS Integration of energy metabolism MLXIPL +PWCOMMONS Integration of energy metabolism HPRT1 +PWCOMMONS Integration of energy metabolism UQCRC1 +PWCOMMONS Integration of energy metabolism UQCRB +PWCOMMONS Integration of energy metabolism UQCR10 +PWCOMMONS Integration of energy metabolism UQCR +PWCOMMONS Integration of energy metabolism UQCRC2 +PWCOMMONS Integration of energy metabolism UQCRH +PWCOMMONS Integration of energy metabolism UQCRQ +PWCOMMONS Integration of energy metabolism UQCRFS1 +PWCOMMONS Integration of energy metabolism MT-CYB +PWCOMMONS Integration of energy metabolism CYC1 +PWCOMMONS Integration of energy metabolism PRKAG2 +PWCOMMONS Integration of energy metabolism PRKAA2 +PWCOMMONS Integration of energy metabolism PRKAB2 +PWCOMMONS Integration of energy metabolism ACSL1 +PWCOMMONS Integration of energy metabolism ACADS +PWCOMMONS Integration of energy metabolism ETFA +PWCOMMONS Integration of energy metabolism ETFB +PWCOMMONS Integration of energy metabolism SLC25A20 +PWCOMMONS Integration of energy metabolism HADHB +PWCOMMONS Integration of energy metabolism HADHA +PWCOMMONS Integration of energy metabolism ACADL +PWCOMMONS Integration of energy metabolism ACADM +PWCOMMONS Integration of energy metabolism ACADVL +PWCOMMONS Integration of energy metabolism CPT1B +PWCOMMONS Integration of energy metabolism CPT2 +PWCOMMONS Integration of energy metabolism STK11 +PWCOMMONS Integration of energy metabolism ACACB +PWCOMMONS Integration of energy metabolism MT-CO2 +PWCOMMONS Integration of energy metabolism COX8A +PWCOMMONS Integration of energy metabolism COX7C +PWCOMMONS Integration of energy metabolism MT-CO3 +PWCOMMONS Integration of energy metabolism COX6C +PWCOMMONS Integration of energy metabolism COX5B +PWCOMMONS Integration of energy metabolism MT-CO1 +PWCOMMONS Integration of energy metabolism COX7A2L +PWCOMMONS Integration of energy metabolism COX4I1 +PWCOMMONS Integration of energy metabolism COX6A1 +PWCOMMONS Integration of energy metabolism COX7B +PWCOMMONS Integration of energy metabolism COX6B1 +PWCOMMONS Integration of energy metabolism COX5A +PWCOMMONS Integration of energy metabolism GOT2 +PWCOMMONS Integration of energy metabolism PGLS +PWCOMMONS Integration of energy metabolism HADH +PWCOMMONS Integration of energy metabolism UPP1 +PWCOMMONS Integration of energy metabolism PDHX +PWCOMMONS Integration of energy metabolism PDHA1 +PWCOMMONS Integration of energy metabolism PDHB +PWCOMMONS Integration of energy metabolism DLAT +PWCOMMONS Integration of energy metabolism DLD +PWCOMMONS Integration of energy metabolism GOT1 +PWCOMMONS Integration of energy metabolism PC +PWCOMMONS Integration of energy metabolism PGK1 +PWCOMMONS Integration of energy metabolism ADSL +PWCOMMONS Integration of energy metabolism GCDH +PWCOMMONS Integration of energy metabolism PCK1 +PWCOMMONS Integration of energy metabolism MDH1 +PWCOMMONS Integration of energy metabolism ATIC +PWCOMMONS Integration of energy metabolism OAT +PWCOMMONS Integration of energy metabolism NP +PWCOMMONS Integration of energy metabolism GYS2 +PWCOMMONS Integration of energy metabolism ECHS1 +PWCOMMONS Integration of energy metabolism TXN +PWCOMMONS Integration of energy metabolism CREB1 +PWCOMMONS Integration of energy metabolism SUCLG1 +PWCOMMONS Integration of energy metabolism SUCLG2 +PWCOMMONS Integration of energy metabolism ARG1 +PWCOMMONS Integration of energy metabolism KCNJ11 +PWCOMMONS Integration of energy metabolism AMPD3 +PWCOMMONS Integration of energy metabolism PKM2 +PWCOMMONS Integration of energy metabolism PFKFB2 +PWCOMMONS Integration of energy metabolism PFKFB4 +PWCOMMONS Integration of energy metabolism PFKFB3 +PWCOMMONS Integration of energy metabolism SLC2A2 +PWCOMMONS Integration of energy metabolism PGM1 +PWCOMMONS Integration of energy metabolism RPE +PWCOMMONS Integration of energy metabolism GLRX +PWCOMMONS Integration of energy metabolism SDHC +PWCOMMONS Integration of energy metabolism SDHD +PWCOMMONS Integration of energy metabolism SDHB +PWCOMMONS Integration of energy metabolism SDHA +PWCOMMONS Integration of energy metabolism DPYD +PWCOMMONS Integration of energy metabolism GART +PWCOMMONS Integration of energy metabolism GPT +PWCOMMONS Integration of energy metabolism ACLY +PWCOMMONS Integration of energy metabolism DPYS +PWCOMMONS Integration of energy metabolism AK1 +PWCOMMONS Integration of energy metabolism MDH2 +PWCOMMONS Integration of energy metabolism UMPS +PWCOMMONS Integration of energy metabolism CYCS +PWCOMMONS Integration of energy metabolism NDUFS3 +PWCOMMONS Integration of energy metabolism NDUFS4 +PWCOMMONS Integration of energy metabolism NDUFS6 +PWCOMMONS Integration of energy metabolism NDUFA5 +PWCOMMONS Integration of energy metabolism NDUFS5 +PWCOMMONS Integration of energy metabolism NDUFS1 +PWCOMMONS Integration of energy metabolism NDUFS2 +PWCOMMONS Integration of energy metabolism NDUFV2 +PWCOMMONS Integration of energy metabolism NDUFV3 +PWCOMMONS Integration of energy metabolism NDUFV1 +PWCOMMONS Integration of energy metabolism NDUFA4 +PWCOMMONS Integration of energy metabolism NDUFA11 +PWCOMMONS Integration of energy metabolism MT-ND3 +PWCOMMONS Integration of energy metabolism NDUFA13 +PWCOMMONS Integration of energy metabolism NDUFB5 +PWCOMMONS Integration of energy metabolism NDUFC1 +PWCOMMONS Integration of energy metabolism NDUFA6 +PWCOMMONS Integration of energy metabolism NDUFC2 +PWCOMMONS Integration of energy metabolism NDUFA3 +PWCOMMONS Integration of energy metabolism NDUFB3 +PWCOMMONS Integration of energy metabolism NDUFB1 +PWCOMMONS Integration of energy metabolism NDUFAB1 +PWCOMMONS Integration of energy metabolism MT-ND4 +PWCOMMONS Integration of energy metabolism MT-ND5 +PWCOMMONS Integration of energy metabolism NDUFA1 +PWCOMMONS Integration of energy metabolism NDUFB9 +PWCOMMONS Integration of energy metabolism NDUFB6 +PWCOMMONS Integration of energy metabolism NDUFB4 +PWCOMMONS Integration of energy metabolism NDUFA8 +PWCOMMONS Integration of energy metabolism NDUFB7 +PWCOMMONS Integration of energy metabolism NDUFA12 +PWCOMMONS Integration of energy metabolism NDUFB2 +PWCOMMONS Integration of energy metabolism MT-ND4L +PWCOMMONS Integration of energy metabolism MT-ND2 +PWCOMMONS Integration of energy metabolism NDUFB10 +PWCOMMONS Integration of energy metabolism NDUFA7 +PWCOMMONS Integration of energy metabolism NDUFA2 +PWCOMMONS Integration of energy metabolism NDUFB8 +PWCOMMONS Integration of energy metabolism NDUFB11 +PWCOMMONS Integration of energy metabolism MT-ND6 +PWCOMMONS Integration of energy metabolism MT-ND1 +PWCOMMONS Integration of energy metabolism NDUFS7 +PWCOMMONS Integration of energy metabolism NDUFA10 +PWCOMMONS Integration of energy metabolism NDUFS8 +PWCOMMONS Integration of energy metabolism NDUFA9 +PWCOMMONS Integration of energy metabolism VAMP2 +PWCOMMONS Integration of energy metabolism NT5C1A +PWCOMMONS Integration of energy metabolism CTPS +PWCOMMONS Integration of energy metabolism FASN +PWCOMMONS Integration of energy metabolism PRPS1 +PWCOMMONS Integration of energy metabolism DLST +PWCOMMONS Integration of energy metabolism OGDH +PWCOMMONS Integration of energy metabolism GMPS +PWCOMMONS Integration of energy metabolism GUK1 +PWCOMMONS Integration of energy metabolism IMPDH2 +PWCOMMONS Integration of energy metabolism GDA +PWCOMMONS Integration of energy metabolism NME1 +PWCOMMONS Integration of energy metabolism IMPDH1 +PWCOMMONS Integration of energy metabolism ADSS +PWCOMMONS Integration of energy metabolism OTC +PWCOMMONS Integration of energy metabolism FH +PWCOMMONS Integration of energy metabolism INS +PWCOMMONS Integration of energy metabolism SYT5 +PWCOMMONS Integration of energy metabolism PFAS +PWCOMMONS Integration of energy metabolism SLC35D1 +PWCOMMONS Integration of energy metabolism ASL +PWCOMMONS Integration of energy metabolism UPB1 +PWCOMMONS Integration of energy metabolism AGPAT1 +PWCOMMONS Integration of energy metabolism SLC25A21 +PWCOMMONS Integration of energy metabolism GPI +PWCOMMONS Integration of energy metabolism UROD +PWCOMMONS Integration of energy metabolism CPOX +PWCOMMONS Integration of energy metabolism UROS +PWCOMMONS Integration of energy metabolism XDH +PWCOMMONS Integration of energy metabolism PAICS +PWCOMMONS Integration of energy metabolism CPS1 +PWCOMMONS Integration of energy metabolism TALDO1 +PWCOMMONS Integration of energy metabolism ASS1 +PWCOMMONS Integration of energy metabolism CMPK1 +PWCOMMONS Integration of energy metabolism ALAD +PWCOMMONS Integration of energy metabolism CS +PWCOMMONS Integration of energy metabolism CAT +PWCOMMONS Integration of energy metabolism SLC25A1 +PWCOMMONS Integration of energy metabolism PPOX +PWCOMMONS Integration of energy metabolism ACO2 +PWCOMMONS Integration of energy metabolism IDH3G +PWCOMMONS Integration of energy metabolism IDH3A +PWCOMMONS Integration of energy metabolism IDH3B +PWCOMMONS Integration of energy metabolism UGDH +PWCOMMONS Integration of energy metabolism RRM2 +PWCOMMONS Integration of energy metabolism RRM1 +PWCOMMONS Integration of energy metabolism G6PD +PWCOMMONS Integration of energy metabolism AMPD1 +PWCOMMONS Integration of energy metabolism MGLL +PWCOMMONS Integration of energy metabolism GCG +PWCOMMONS Integration of energy metabolism GCGR +PWCOMMONS Integration of energy metabolism GNAS +PWCOMMONS Integration of energy metabolism LIPE +PWCOMMONS Integration of energy metabolism FABP4 +PWCOMMONS Integration of energy metabolism SLC25A11 +PWCOMMONS Integration of energy metabolism PPAT +PWCOMMONS Integration of energy metabolism TKT +PWCOMMONS Integration of energy metabolism FECH +PWCOMMONS Integration of energy metabolism PPAP2C +PWCOMMONS Integration of energy metabolism PCK2 +PWCOMMONS Integration of energy metabolism SUCLA2 +PWCOMMONS Integration of energy metabolism GBE1 +PWCOMMONS Integration of energy metabolism TXNRD1 +PWCOMMONS Integration of energy metabolism PPAP2B +PWCOMMONS Integration of energy metabolism TPI1 +PWCOMMONS Integration of energy metabolism SLC25A10 +PWCOMMONS Integration of energy metabolism G6PC +PWCOMMONS Integration of energy metabolism PYCR1 +PWCOMMONS Integration of energy metabolism DGAT1 +PWCOMMONS Integration of energy metabolism NME2 +PWCOMMONS Integration of energy metabolism RPIA +PWCOMMONS Integration of energy metabolism AMPD2 +PWCOMMONS Integration of energy metabolism PGD +PWCOMMONS Integration of energy metabolism GSR +PWCOMMONS Integration of energy metabolism PPAP2A +PWCOMMONS Integration of energy metabolism +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NT5C2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PFKFB1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5O +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5F1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5J +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5G1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5L +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-ATP6 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5J2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-ATP8 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5H +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5I +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5C1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5D +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5A1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5B +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATP5E +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MLX +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MLXIPL +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors HPRT1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UQCRC1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UQCRB +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UQCR10 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UQCR +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UQCRC2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UQCRH +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UQCRQ +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UQCRFS1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-CYB +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors CYC1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-CO2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors COX8A +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors COX7C +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-CO3 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors COX6C +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors COX5B +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-CO1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors COX7A2L +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors COX4I1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors COX6A1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors COX7B +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors COX6B1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors COX5A +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PGLS +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GOT2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors HADH +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UPP1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PDHX +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PDHA1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PDHB +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors DLAT +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors DLD +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GOT1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PC +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PGK1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ADSL +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GCDH +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MDH1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PCK1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ATIC +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors OAT +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NP +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GYS2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ECHS1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors TXN +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SUCLG1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SUCLG2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ARG1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors KCNJ11 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors AMPD3 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors RPE +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GLRX +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SDHC +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SDHD +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SDHB +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SDHA +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors DPYD +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GART +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GPT +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ACLY +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors DPYS +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors AK1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MDH2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UMPS +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors CYCS +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFS3 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFS4 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFS6 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA5 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFS5 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFS1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFS2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFV2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFV3 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFV1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA4 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA11 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-ND3 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA13 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFB5 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFC1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA6 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFC2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA3 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFB3 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFB1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFAB1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-ND4 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-ND5 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFB9 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFB6 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFB4 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA8 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFB7 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA12 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFB2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-ND4L +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-ND2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFB10 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA7 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFB8 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFB11 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-ND6 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors MT-ND1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFS7 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA10 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFS8 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NDUFA9 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors VAMP2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NT5C1A +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors CTPS +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors FASN +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PRPS1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors DLST +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors OGDH +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ACACB +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GMPS +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GUK1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors IMPDH2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GDA +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NME1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors IMPDH1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ADSS +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors OTC +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors FH +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors INS +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SYT5 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PFAS +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SLC35D1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ASL +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UPB1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors AGPAT1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SLC25A21 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GPI +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UROD +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors CPOX +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UROS +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors XDH +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PAICS +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors CPS1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors TALDO1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ASS1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors CMPK1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ALAD +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors CS +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors CAT +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SLC25A1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PPOX +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors ACO2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors IDH3G +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors IDH3A +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors IDH3B +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors UGDH +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors RRM2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors RRM1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors G6PD +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors AMPD1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SLC25A11 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PPAT +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors TKT +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors FECH +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PPAP2C +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PCK2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SUCLA2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GBE1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors TXNRD1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PPAP2B +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors TPI1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors SLC25A10 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors G6PC +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PYCR1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors DGAT1 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors NME2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors RPIA +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors AMPD2 +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PGD +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors GSR +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors PPAP2A +PWCOMMONS PP2A-mediated dephosphorylation of key metabolic factors +PWCOMMONS Glyoxylate metabolism DAO +PWCOMMONS Glyoxylate metabolism CAT +PWCOMMONS Glyoxylate metabolism GRHPR +PWCOMMONS Glyoxylate metabolism AGXT +PWCOMMONS Glyoxylate metabolism +PWCOMMONS Phenylalanine and tyrosine catabolism GSTZ1 +PWCOMMONS Phenylalanine and tyrosine catabolism TAT +PWCOMMONS Phenylalanine and tyrosine catabolism HGD +PWCOMMONS Phenylalanine and tyrosine catabolism FAH +PWCOMMONS Phenylalanine and tyrosine catabolism PAH +PWCOMMONS Phenylalanine and tyrosine catabolism PCBD1 +PWCOMMONS Phenylalanine and tyrosine catabolism HPD +PWCOMMONS Phenylalanine and tyrosine catabolism +PWCOMMONS Unfolded Protein Response MBTPS1 +PWCOMMONS Unfolded Protein Response HSPA5 +PWCOMMONS Unfolded Protein Response MBTPS2 +PWCOMMONS Unfolded Protein Response NFYA +PWCOMMONS Unfolded Protein Response ERN1 +PWCOMMONS Unfolded Protein Response EIF2S1 +PWCOMMONS Unfolded Protein Response ATF4 +PWCOMMONS Unfolded Protein Response EIF2AK3 +PWCOMMONS Unfolded Protein Response +PWCOMMONS Signaling by Insulin receptor YWHAB +PWCOMMONS Signaling by Insulin receptor INSR +PWCOMMONS Signaling by Insulin receptor INS +PWCOMMONS Signaling by Insulin receptor RHEB +PWCOMMONS Signaling by Insulin receptor FRAP1 +PWCOMMONS Signaling by Insulin receptor LST8 +PWCOMMONS Signaling by Insulin receptor EIF4B +PWCOMMONS Signaling by Insulin receptor RPS6 +PWCOMMONS Signaling by Insulin receptor RPS6KB1 +PWCOMMONS Signaling by Insulin receptor EIF4EBP1 +PWCOMMONS Signaling by Insulin receptor EIF4E +PWCOMMONS Signaling by Insulin receptor EIF4G1 +PWCOMMONS Signaling by Insulin receptor EEF2K +PWCOMMONS Signaling by Insulin receptor AKT2 +PWCOMMONS Signaling by Insulin receptor PDE3B +PWCOMMONS Signaling by Insulin receptor TSC1 +PWCOMMONS Signaling by Insulin receptor PDPK1 +PWCOMMONS Signaling by Insulin receptor RPS6KA5 +PWCOMMONS Signaling by Insulin receptor MAPK3 +PWCOMMONS Signaling by Insulin receptor ATF1 +PWCOMMONS Signaling by Insulin receptor CREB1 +PWCOMMONS Signaling by Insulin receptor MAPK1 +PWCOMMONS Signaling by Insulin receptor SHC1 +PWCOMMONS Signaling by Insulin receptor SOS1 +PWCOMMONS Signaling by Insulin receptor MAP2K1 +PWCOMMONS Signaling by Insulin receptor MAP2K2 +PWCOMMONS Signaling by Insulin receptor +PWCOMMONS Regulation of IGF Activity by IGFBP IGFALS +PWCOMMONS Regulation of IGF Activity by IGFBP IGFBP3 +PWCOMMONS Regulation of IGF Activity by IGFBP IGFBP5 +PWCOMMONS Regulation of IGF Activity by IGFBP CTSL1 +PWCOMMONS Regulation of IGF Activity by IGFBP IGFBP6 +PWCOMMONS Regulation of IGF Activity by IGFBP IGFBP2 +PWCOMMONS Regulation of IGF Activity by IGFBP IGFBP1 +PWCOMMONS Regulation of IGF Activity by IGFBP PAPPA +PWCOMMONS Regulation of IGF Activity by IGFBP IGFBP4 +PWCOMMONS Regulation of IGF Activity by IGFBP F2RL3 +PWCOMMONS Regulation of IGF Activity by IGFBP F2 +PWCOMMONS Regulation of IGF Activity by IGFBP KLK3 +PWCOMMONS Regulation of IGF Activity by IGFBP +PWCOMMONS Signaling by GPCR MGLL +PWCOMMONS Signaling by GPCR PFKFB1 +PWCOMMONS Signaling by GPCR MLXIPL +PWCOMMONS Signaling by GPCR CREB1 +PWCOMMONS Signaling by GPCR LIPE +PWCOMMONS Signaling by GPCR GNAS +PWCOMMONS Signaling by GPCR FSHR +PWCOMMONS Signaling by GPCR FSHB +PWCOMMONS Signaling by GPCR CGA +PWCOMMONS Signaling by GPCR CGB +PWCOMMONS Signaling by GPCR LHCGR +PWCOMMONS Signaling by GPCR LHB +PWCOMMONS Signaling by GPCR FABP4 +PWCOMMONS Signaling by GPCR TSHR +PWCOMMONS Signaling by GPCR TSHB +PWCOMMONS Signaling by GPCR OPN4 +PWCOMMONS Signaling by GPCR APLNR +PWCOMMONS Signaling by GPCR GPER +PWCOMMONS Signaling by GPCR KNG1 +PWCOMMONS Signaling by GPCR C5AR1 +PWCOMMONS Signaling by GPCR C5 +PWCOMMONS Signaling by GPCR PRLHR +PWCOMMONS Signaling by GPCR DARC +PWCOMMONS Signaling by GPCR KISS1 +PWCOMMONS Signaling by GPCR KISS1R +PWCOMMONS Signaling by GPCR GAL +PWCOMMONS Signaling by GPCR F2 +PWCOMMONS Signaling by GPCR TAC3 +PWCOMMONS Signaling by GPCR TACR3 +PWCOMMONS Signaling by GPCR TAC1 +PWCOMMONS Signaling by GPCR TACR2 +PWCOMMONS Signaling by GPCR TACR1 +PWCOMMONS Signaling by GPCR POMC +PWCOMMONS Signaling by GPCR MC2R +PWCOMMONS Signaling by GPCR XCR1 +PWCOMMONS Signaling by GPCR IL8RB +PWCOMMONS Signaling by GPCR CXCL16 +PWCOMMONS Signaling by GPCR CXCR6 +PWCOMMONS Signaling by GPCR CX3CL1 +PWCOMMONS Signaling by GPCR CCL25 +PWCOMMONS Signaling by GPCR CCL5 +PWCOMMONS Signaling by GPCR IL8RA +PWCOMMONS Signaling by GPCR CCR10 +PWCOMMONS Signaling by GPCR CCR7 +PWCOMMONS Signaling by GPCR CCL16 +PWCOMMONS Signaling by GPCR CCL20 +PWCOMMONS Signaling by GPCR CCR6 +PWCOMMONS Signaling by GPCR CCK +PWCOMMONS Signaling by GPCR HCRTR2 +PWCOMMONS Signaling by GPCR HCRT +PWCOMMONS Signaling by GPCR NPFF +PWCOMMONS Signaling by GPCR HCRTR1 +PWCOMMONS Signaling by GPCR QRFPR +PWCOMMONS Signaling by GPCR QRFP +PWCOMMONS Signaling by GPCR AGT +PWCOMMONS Signaling by GPCR NTS +PWCOMMONS Signaling by GPCR PNOC +PWCOMMONS Signaling by GPCR OPRL1 +PWCOMMONS Signaling by GPCR AVP +PWCOMMONS Signaling by GPCR AVPR2 +PWCOMMONS Signaling by GPCR OXTR +PWCOMMONS Signaling by GPCR OXT +PWCOMMONS Signaling by GPCR GPR17 +PWCOMMONS Signaling by GPCR FPR2 +PWCOMMONS Signaling by GPCR OXER1 +PWCOMMONS Signaling by GPCR TBXA2R +PWCOMMONS Signaling by GPCR PTGIR +PWCOMMONS Signaling by GPCR PTGER3 +PWCOMMONS Signaling by GPCR GPR44 +PWCOMMONS Signaling by GPCR PTGDR +PWCOMMONS Signaling by GPCR PTGFR +PWCOMMONS Signaling by GPCR PTGER1 +PWCOMMONS Signaling by GPCR P2RY2 +PWCOMMONS Signaling by GPCR P2RY8 +PWCOMMONS Signaling by GPCR P2RY12 +PWCOMMONS Signaling by GPCR P2RY4 +PWCOMMONS Signaling by GPCR P2RY11 +PWCOMMONS Signaling by GPCR P2RY6 +PWCOMMONS Signaling by GPCR P2RY10 +PWCOMMONS Signaling by GPCR P2RY14 +PWCOMMONS Signaling by GPCR LPAR4 +PWCOMMONS Signaling by GPCR P2RY13 +PWCOMMONS Signaling by GPCR P2RY1 +PWCOMMONS Signaling by GPCR P2RY5 +PWCOMMONS Signaling by GPCR HRH1 +PWCOMMONS Signaling by GPCR HRH2 +PWCOMMONS Signaling by GPCR CASR +PWCOMMONS Signaling by GPCR GABBR1 +PWCOMMONS Signaling by GPCR GABBR2 +PWCOMMONS Signaling by GPCR GPRC6A +PWCOMMONS Signaling by GPCR GNGT1 +PWCOMMONS Signaling by GPCR GNAL +PWCOMMONS Signaling by GPCR GNB1 +PWCOMMONS Signaling by GPCR AKAP5 +PWCOMMONS Signaling by GPCR IQGAP1 +PWCOMMONS Signaling by GPCR GLP1R +PWCOMMONS Signaling by GPCR GCG +PWCOMMONS Signaling by GPCR GCGR +PWCOMMONS Signaling by GPCR ADCY8 +PWCOMMONS Signaling by GPCR SCTR +PWCOMMONS Signaling by GPCR SCT +PWCOMMONS Signaling by GPCR GLP2R +PWCOMMONS Signaling by GPCR GHRHR +PWCOMMONS Signaling by GPCR GHRH +PWCOMMONS Signaling by GPCR GIPR +PWCOMMONS Signaling by GPCR GIP +PWCOMMONS Signaling by GPCR VAMP2 +PWCOMMONS Signaling by GPCR VIP +PWCOMMONS Signaling by GPCR INS +PWCOMMONS Signaling by GPCR SYT5 +PWCOMMONS Signaling by GPCR ADCYAP1R1 +PWCOMMONS Signaling by GPCR KCNJ11 +PWCOMMONS Signaling by GPCR CRH +PWCOMMONS Signaling by GPCR IAPP +PWCOMMONS Signaling by GPCR CALCRL +PWCOMMONS Signaling by GPCR RAMP1 +PWCOMMONS Signaling by GPCR CALCR +PWCOMMONS Signaling by GPCR CALCA +PWCOMMONS Signaling by GPCR +PWCOMMONS Class C/3 (Metabotropic glutamate/pheromone receptors) GABBR1 +PWCOMMONS Class C/3 (Metabotropic glutamate/pheromone receptors) GABBR2 +PWCOMMONS Class C/3 (Metabotropic glutamate/pheromone receptors) GPRC6A +PWCOMMONS Class C/3 (Metabotropic glutamate/pheromone receptors) +PWCOMMONS Signaling by Notch NOTCH3 +PWCOMMONS Signaling by Notch NOTCH2 +PWCOMMONS Signaling by Notch NOTCH1 +PWCOMMONS Signaling by Notch ADAM10 +PWCOMMONS Signaling by Notch PSENEN +PWCOMMONS Signaling by Notch HES1 +PWCOMMONS Signaling by Notch FURIN +PWCOMMONS Signaling by Notch +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery TCEA1 +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery ELL +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery TCEB3 +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery TCEB1 +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery TCEB2 +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery SSRP1 +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery SUPT16H +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery POLR2G +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery POLR2B +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery POLR2L +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery POLR2A +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery POLR2K +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery POLR2H +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery POLR2D +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery POLR2C +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery POLR2I +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery POLR2F +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery POLR2J +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery POLR2E +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery GTF2F1 +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery GTF2F2 +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery SUPT4H1 +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery CDK9 +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery CCNT1 +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery TH1L +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery WHSC2 +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery RDBP +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery COBRA1 +PWCOMMONS Tat-mediated HIV-1 elongation arrest and recovery +PWCOMMONS Phase 1 functionalization PTGS2 +PWCOMMONS Phase 1 functionalization PTGIS +PWCOMMONS Phase 1 functionalization TBXAS1 +PWCOMMONS Phase 1 functionalization CYP3A4 +PWCOMMONS Phase 1 functionalization CYP1A1 +PWCOMMONS Phase 1 functionalization CYP2D6 +PWCOMMONS Phase 1 functionalization CYP4A11 +PWCOMMONS Phase 1 functionalization CYP2A6 +PWCOMMONS Phase 1 functionalization CYP1A2 +PWCOMMONS Phase 1 functionalization CYP2E1 +PWCOMMONS Phase 1 functionalization MAOB +PWCOMMONS Phase 1 functionalization MAOA +PWCOMMONS Phase 1 functionalization PAOX +PWCOMMONS Phase 1 functionalization FMO3 +PWCOMMONS Phase 1 functionalization +PWCOMMONS Cytochrome p450 CYP1A1 +PWCOMMONS Cytochrome p450 CYP2D6 +PWCOMMONS Cytochrome p450 CYP4A11 +PWCOMMONS Cytochrome p450 CYP2A6 +PWCOMMONS Cytochrome p450 CYP1A2 +PWCOMMONS Cytochrome p450 CYP2E1 +PWCOMMONS Cytochrome p450 PTGIS +PWCOMMONS Cytochrome p450 TBXAS1 +PWCOMMONS Cytochrome p450 +PWCOMMONS P450 Epoxidations CYP3A4 +PWCOMMONS P450 Epoxidations CYP1A1 +PWCOMMONS P450 Epoxidations +PWCOMMONS Signaling by VEGF FLT4 +PWCOMMONS Signaling by VEGF +PWCOMMONS Signaling by EGFR YWHAB +PWCOMMONS Signaling by EGFR GAB1 +PWCOMMONS Signaling by EGFR EGFR +PWCOMMONS Signaling by EGFR EGF +PWCOMMONS Signaling by EGFR MAP2K1 +PWCOMMONS Signaling by EGFR PTPN11 +PWCOMMONS Signaling by EGFR MAPK1 +PWCOMMONS Signaling by EGFR MAP2K2 +PWCOMMONS Signaling by EGFR SOS1 +PWCOMMONS Signaling by EGFR SHC1 +PWCOMMONS Signaling by EGFR RPS6KA5 +PWCOMMONS Signaling by EGFR MAPK3 +PWCOMMONS Signaling by EGFR ATF1 +PWCOMMONS Signaling by EGFR CREB1 +PWCOMMONS Signaling by EGFR PIK3CA +PWCOMMONS Signaling by EGFR PIK3R1 +PWCOMMONS Signaling by EGFR CALM1 +PWCOMMONS Signaling by EGFR CAV1 +PWCOMMONS Signaling by EGFR HSP90AA1 +PWCOMMONS Signaling by EGFR NOS3 +PWCOMMONS Signaling by EGFR PLCG1 +PWCOMMONS Signaling by EGFR VAMP2 +PWCOMMONS Signaling by EGFR INS +PWCOMMONS Signaling by EGFR SYT5 +PWCOMMONS Signaling by EGFR AKT1 +PWCOMMONS Signaling by EGFR PLA2G4A +PWCOMMONS Signaling by EGFR MGLL +PWCOMMONS Signaling by EGFR LIPE +PWCOMMONS Signaling by EGFR PFKFB1 +PWCOMMONS Signaling by EGFR FABP4 +PWCOMMONS Signaling by EGFR MLXIPL +PWCOMMONS Signaling by EGFR ADRBK1 +PWCOMMONS Signaling by EGFR CAMK4 +PWCOMMONS Signaling by EGFR CBL +PWCOMMONS Signaling by EGFR EPN1 +PWCOMMONS Signaling by EGFR EPS15L1 +PWCOMMONS Signaling by EGFR SH3KBP1 +PWCOMMONS Signaling by EGFR SH3GL2 +PWCOMMONS Signaling by EGFR EPS15 +PWCOMMONS Signaling by EGFR HGS +PWCOMMONS Signaling by EGFR AP2A2 +PWCOMMONS Signaling by EGFR AP2A1 +PWCOMMONS Signaling by EGFR SPRY2 +PWCOMMONS Signaling by EGFR PAG1 +PWCOMMONS Signaling by EGFR LRIG1 +PWCOMMONS Signaling by EGFR CSK +PWCOMMONS Signaling by EGFR PXN +PWCOMMONS Signaling by EGFR +PWCOMMONS EGFR interacts with phospholipase C-gamma CAV1 +PWCOMMONS EGFR interacts with phospholipase C-gamma HSP90AA1 +PWCOMMONS EGFR interacts with phospholipase C-gamma NOS3 +PWCOMMONS EGFR interacts with phospholipase C-gamma PLCG1 +PWCOMMONS EGFR interacts with phospholipase C-gamma EGFR +PWCOMMONS EGFR interacts with phospholipase C-gamma EGF +PWCOMMONS EGFR interacts with phospholipase C-gamma VAMP2 +PWCOMMONS EGFR interacts with phospholipase C-gamma INS +PWCOMMONS EGFR interacts with phospholipase C-gamma SYT5 +PWCOMMONS EGFR interacts with phospholipase C-gamma AKT1 +PWCOMMONS EGFR interacts with phospholipase C-gamma PLA2G4A +PWCOMMONS EGFR interacts with phospholipase C-gamma MGLL +PWCOMMONS EGFR interacts with phospholipase C-gamma LIPE +PWCOMMONS EGFR interacts with phospholipase C-gamma PFKFB1 +PWCOMMONS EGFR interacts with phospholipase C-gamma FABP4 +PWCOMMONS EGFR interacts with phospholipase C-gamma MLXIPL +PWCOMMONS EGFR interacts with phospholipase C-gamma CREB1 +PWCOMMONS EGFR interacts with phospholipase C-gamma ADRBK1 +PWCOMMONS EGFR interacts with phospholipase C-gamma CAMK4 +PWCOMMONS EGFR interacts with phospholipase C-gamma +PWCOMMONS Elongation arrest and recovery TCEA1 +PWCOMMONS Elongation arrest and recovery ELL +PWCOMMONS Elongation arrest and recovery TCEB3 +PWCOMMONS Elongation arrest and recovery TCEB1 +PWCOMMONS Elongation arrest and recovery TCEB2 +PWCOMMONS Elongation arrest and recovery SSRP1 +PWCOMMONS Elongation arrest and recovery SUPT16H +PWCOMMONS Elongation arrest and recovery CCNT2 +PWCOMMONS Elongation arrest and recovery CDK9 +PWCOMMONS Elongation arrest and recovery CCNT1 +PWCOMMONS Elongation arrest and recovery POLR2G +PWCOMMONS Elongation arrest and recovery POLR2B +PWCOMMONS Elongation arrest and recovery POLR2L +PWCOMMONS Elongation arrest and recovery POLR2A +PWCOMMONS Elongation arrest and recovery POLR2K +PWCOMMONS Elongation arrest and recovery POLR2H +PWCOMMONS Elongation arrest and recovery POLR2D +PWCOMMONS Elongation arrest and recovery POLR2C +PWCOMMONS Elongation arrest and recovery POLR2I +PWCOMMONS Elongation arrest and recovery POLR2F +PWCOMMONS Elongation arrest and recovery POLR2J +PWCOMMONS Elongation arrest and recovery POLR2E +PWCOMMONS Elongation arrest and recovery GTF2F1 +PWCOMMONS Elongation arrest and recovery GTF2F2 +PWCOMMONS Elongation arrest and recovery SUPT4H1 +PWCOMMONS Elongation arrest and recovery TH1L +PWCOMMONS Elongation arrest and recovery WHSC2 +PWCOMMONS Elongation arrest and recovery RDBP +PWCOMMONS Elongation arrest and recovery COBRA1 +PWCOMMONS Elongation arrest and recovery EIF1AX +PWCOMMONS Elongation arrest and recovery EIF4H +PWCOMMONS Elongation arrest and recovery EIF4B +PWCOMMONS Elongation arrest and recovery EIF4E +PWCOMMONS Elongation arrest and recovery EIF4G1 +PWCOMMONS Elongation arrest and recovery EIF4A2 +PWCOMMONS Elongation arrest and recovery EIF2S3 +PWCOMMONS Elongation arrest and recovery EIF2S2 +PWCOMMONS Elongation arrest and recovery EIF2S1 +PWCOMMONS Elongation arrest and recovery EIF3K +PWCOMMONS Elongation arrest and recovery EIF3H +PWCOMMONS Elongation arrest and recovery EIF3E +PWCOMMONS Elongation arrest and recovery EIF3F +PWCOMMONS Elongation arrest and recovery EIF3J +PWCOMMONS Elongation arrest and recovery EIF3G +PWCOMMONS Elongation arrest and recovery EIF3C +PWCOMMONS Elongation arrest and recovery EIF3A +PWCOMMONS Elongation arrest and recovery EIF3I +PWCOMMONS Elongation arrest and recovery EIF3D +PWCOMMONS Elongation arrest and recovery EIF3B +PWCOMMONS Elongation arrest and recovery RPS23 +PWCOMMONS Elongation arrest and recovery RPS16 +PWCOMMONS Elongation arrest and recovery RPS12 +PWCOMMONS Elongation arrest and recovery RPS29 +PWCOMMONS Elongation arrest and recovery RPSA +PWCOMMONS Elongation arrest and recovery RPS21 +PWCOMMONS Elongation arrest and recovery RPS27A +PWCOMMONS Elongation arrest and recovery RPS20 +PWCOMMONS Elongation arrest and recovery RPS15 +PWCOMMONS Elongation arrest and recovery RPS24 +PWCOMMONS Elongation arrest and recovery RPS9 +PWCOMMONS Elongation arrest and recovery RPS10 +PWCOMMONS Elongation arrest and recovery RPS28 +PWCOMMONS Elongation arrest and recovery RPS2 +PWCOMMONS Elongation arrest and recovery RPS19 +PWCOMMONS Elongation arrest and recovery RPS4X +PWCOMMONS Elongation arrest and recovery RPS18 +PWCOMMONS Elongation arrest and recovery RPS8 +PWCOMMONS Elongation arrest and recovery RPS3 +PWCOMMONS Elongation arrest and recovery RPS4Y1 +PWCOMMONS Elongation arrest and recovery RPS25 +PWCOMMONS Elongation arrest and recovery RPS14 +PWCOMMONS Elongation arrest and recovery RPS17 +PWCOMMONS Elongation arrest and recovery RPS26 +PWCOMMONS Elongation arrest and recovery RPS11 +PWCOMMONS Elongation arrest and recovery RPS5 +PWCOMMONS Elongation arrest and recovery FAU +PWCOMMONS Elongation arrest and recovery RPS15A +PWCOMMONS Elongation arrest and recovery RPS13 +PWCOMMONS Elongation arrest and recovery RPS6 +PWCOMMONS Elongation arrest and recovery RPS3A +PWCOMMONS Elongation arrest and recovery RPS7 +PWCOMMONS Elongation arrest and recovery RPS27 +PWCOMMONS Elongation arrest and recovery NUP153 +PWCOMMONS Elongation arrest and recovery NUP85 +PWCOMMONS Elongation arrest and recovery NUP35 +PWCOMMONS Elongation arrest and recovery AAAS +PWCOMMONS Elongation arrest and recovery NUP50 +PWCOMMONS Elongation arrest and recovery NUP43 +PWCOMMONS Elongation arrest and recovery NUP205 +PWCOMMONS Elongation arrest and recovery NUP93 +PWCOMMONS Elongation arrest and recovery NUP88 +PWCOMMONS Elongation arrest and recovery NUPL2 +PWCOMMONS Elongation arrest and recovery NUP210 +PWCOMMONS Elongation arrest and recovery NUP155 +PWCOMMONS Elongation arrest and recovery RANBP2 +PWCOMMONS Elongation arrest and recovery RAE1 +PWCOMMONS Elongation arrest and recovery NUP188 +PWCOMMONS Elongation arrest and recovery NUP214 +PWCOMMONS Elongation arrest and recovery NUP54 +PWCOMMONS Elongation arrest and recovery NUP62 +PWCOMMONS Elongation arrest and recovery NUP107 +PWCOMMONS Elongation arrest and recovery NUP133 +PWCOMMONS Elongation arrest and recovery NUP160 +PWCOMMONS Elongation arrest and recovery NUP37 +PWCOMMONS Elongation arrest and recovery RPL27A +PWCOMMONS Elongation arrest and recovery RPL15 +PWCOMMONS Elongation arrest and recovery RPL11 +PWCOMMONS Elongation arrest and recovery RPL29 +PWCOMMONS Elongation arrest and recovery RPL30 +PWCOMMONS Elongation arrest and recovery RPL8 +PWCOMMONS Elongation arrest and recovery RPL22 +PWCOMMONS Elongation arrest and recovery RPL28 +PWCOMMONS Elongation arrest and recovery RPL7A +PWCOMMONS Elongation arrest and recovery RPL35A +PWCOMMONS Elongation arrest and recovery RPL31 +PWCOMMONS Elongation arrest and recovery RPL26L1 +PWCOMMONS Elongation arrest and recovery RPL26 +PWCOMMONS Elongation arrest and recovery RPL18A +PWCOMMONS Elongation arrest and recovery RPL14 +PWCOMMONS Elongation arrest and recovery RPLP2 +PWCOMMONS Elongation arrest and recovery RPL10 +PWCOMMONS Elongation arrest and recovery RPL34 +PWCOMMONS Elongation arrest and recovery RPL37 +PWCOMMONS Elongation arrest and recovery RPL3L +PWCOMMONS Elongation arrest and recovery RPL32 +PWCOMMONS Elongation arrest and recovery RPL36 +PWCOMMONS Elongation arrest and recovery RPLP1 +PWCOMMONS Elongation arrest and recovery RPL23A +PWCOMMONS Elongation arrest and recovery RPL24 +PWCOMMONS Elongation arrest and recovery RPL6 +PWCOMMONS Elongation arrest and recovery RPL18 +PWCOMMONS Elongation arrest and recovery RPL5 +PWCOMMONS Elongation arrest and recovery RPL23 +PWCOMMONS Elongation arrest and recovery RPL19 +PWCOMMONS Elongation arrest and recovery RPL41 +PWCOMMONS Elongation arrest and recovery RPL7 +PWCOMMONS Elongation arrest and recovery RPL13A +PWCOMMONS Elongation arrest and recovery RPL27 +PWCOMMONS Elongation arrest and recovery RPL17 +PWCOMMONS Elongation arrest and recovery RPL3 +PWCOMMONS Elongation arrest and recovery RPL10A +PWCOMMONS Elongation arrest and recovery RPL21 +PWCOMMONS Elongation arrest and recovery RPL4 +PWCOMMONS Elongation arrest and recovery RPL35 +PWCOMMONS Elongation arrest and recovery RPL13 +PWCOMMONS Elongation arrest and recovery RPL39 +PWCOMMONS Elongation arrest and recovery RPL38 +PWCOMMONS Elongation arrest and recovery RPL36A +PWCOMMONS Elongation arrest and recovery RPL9 +PWCOMMONS Elongation arrest and recovery RPLP0 +PWCOMMONS Elongation arrest and recovery UBA52 +PWCOMMONS Elongation arrest and recovery RPL37A +PWCOMMONS Elongation arrest and recovery RPL12 +PWCOMMONS Elongation arrest and recovery EEF1A1 +PWCOMMONS Elongation arrest and recovery PCF11 +PWCOMMONS Elongation arrest and recovery CLP1 +PWCOMMONS Elongation arrest and recovery CPSF7 +PWCOMMONS Elongation arrest and recovery NUDT21 +PWCOMMONS Elongation arrest and recovery EIF2B5 +PWCOMMONS Elongation arrest and recovery EIF2B1 +PWCOMMONS Elongation arrest and recovery EIF2B3 +PWCOMMONS Elongation arrest and recovery EIF2B4 +PWCOMMONS Elongation arrest and recovery EIF2B2 +PWCOMMONS Elongation arrest and recovery PABPN1 +PWCOMMONS Elongation arrest and recovery PAPOLA +PWCOMMONS Elongation arrest and recovery NCBP2 +PWCOMMONS Elongation arrest and recovery NCBP1 +PWCOMMONS Elongation arrest and recovery CPSF2 +PWCOMMONS Elongation arrest and recovery CPSF1 +PWCOMMONS Elongation arrest and recovery CPSF3 +PWCOMMONS Elongation arrest and recovery CSTF2 +PWCOMMONS Elongation arrest and recovery CSTF1 +PWCOMMONS Elongation arrest and recovery CSTF3 +PWCOMMONS Elongation arrest and recovery ETF1 +PWCOMMONS Elongation arrest and recovery GSPT2 +PWCOMMONS Elongation arrest and recovery PABPC1 +PWCOMMONS Elongation arrest and recovery SFRS2 +PWCOMMONS Elongation arrest and recovery CDC40 +PWCOMMONS Elongation arrest and recovery SFRS3 +PWCOMMONS Elongation arrest and recovery SFRS11 +PWCOMMONS Elongation arrest and recovery U2AF2 +PWCOMMONS Elongation arrest and recovery SFRS9 +PWCOMMONS Elongation arrest and recovery SFRS5 +PWCOMMONS Elongation arrest and recovery SFRS7 +PWCOMMONS Elongation arrest and recovery SFRS4 +PWCOMMONS Elongation arrest and recovery SFRS6 +PWCOMMONS Elongation arrest and recovery DHX38 +PWCOMMONS Elongation arrest and recovery U2AF1 +PWCOMMONS Elongation arrest and recovery SFRS1 +PWCOMMONS Elongation arrest and recovery RNPS1 +PWCOMMONS Elongation arrest and recovery UPF3B +PWCOMMONS Elongation arrest and recovery SRRM1 +PWCOMMONS Elongation arrest and recovery THOC4 +PWCOMMONS Elongation arrest and recovery RBM8A +PWCOMMONS Elongation arrest and recovery MAGOH +PWCOMMONS Elongation arrest and recovery EEF1G +PWCOMMONS Elongation arrest and recovery EEF1D +PWCOMMONS Elongation arrest and recovery EEF1B2 +PWCOMMONS Elongation arrest and recovery NXF1 +PWCOMMONS Elongation arrest and recovery EIF5 +PWCOMMONS Elongation arrest and recovery EIF5B +PWCOMMONS Elongation arrest and recovery EEF2 +PWCOMMONS Elongation arrest and recovery +PWCOMMONS Signal attenuation SHC1 +PWCOMMONS Signal attenuation GRB10 +PWCOMMONS Signal attenuation INSR +PWCOMMONS Signal attenuation INS +PWCOMMONS Signal attenuation MAPK3 +PWCOMMONS Signal attenuation +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A BUB1B +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A MAD2L1 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A CDC20 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A ANAPC5 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A ANAPC11 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A CDC23 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A ANAPC1 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A ANAPC2 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A UBE2D1 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A CDC27 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A ANAPC4 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A ANAPC10 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A ANAPC7 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A UBE2C +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A CDC26 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A CDC16 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A UBE2E1 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A NEK2 +PWCOMMONS APC-Cdc20 mediated degradation of Nek2A +PWCOMMONS Apoptosis MST4 +PWCOMMONS Apoptosis DSG3 +PWCOMMONS Apoptosis DIABLO +PWCOMMONS Apoptosis XIAP +PWCOMMONS Apoptosis CASP3 +PWCOMMONS Apoptosis SPTAN1 +PWCOMMONS Apoptosis CASP9 +PWCOMMONS Apoptosis CDH1 +PWCOMMONS Apoptosis CASP7 +PWCOMMONS Apoptosis GAS2 +PWCOMMONS Apoptosis DSG1 +PWCOMMONS Apoptosis FNTA +PWCOMMONS Apoptosis PTK2 +PWCOMMONS Apoptosis ADD1 +PWCOMMONS Apoptosis BIRC2 +PWCOMMONS Apoptosis DBNL +PWCOMMONS Apoptosis DSG2 +PWCOMMONS Apoptosis BMX +PWCOMMONS Apoptosis GSN +PWCOMMONS Apoptosis PAK2 +PWCOMMONS Apoptosis ARHGAP10 +PWCOMMONS Apoptosis CLSPN +PWCOMMONS Apoptosis CDC25A +PWCOMMONS Apoptosis CYCS +PWCOMMONS Apoptosis APAF1 +PWCOMMONS Apoptosis FZR1 +PWCOMMONS Apoptosis ANAPC5 +PWCOMMONS Apoptosis ANAPC11 +PWCOMMONS Apoptosis CDC23 +PWCOMMONS Apoptosis ANAPC1 +PWCOMMONS Apoptosis ANAPC2 +PWCOMMONS Apoptosis UBE2D1 +PWCOMMONS Apoptosis CDC27 +PWCOMMONS Apoptosis ANAPC4 +PWCOMMONS Apoptosis ANAPC10 +PWCOMMONS Apoptosis ANAPC7 +PWCOMMONS Apoptosis UBE2C +PWCOMMONS Apoptosis CDC26 +PWCOMMONS Apoptosis CDC16 +PWCOMMONS Apoptosis UBE2E1 +PWCOMMONS Apoptosis PSMC6 +PWCOMMONS Apoptosis PSMA3 +PWCOMMONS Apoptosis PSMD8 +PWCOMMONS Apoptosis PSMD10 +PWCOMMONS Apoptosis PSMD1 +PWCOMMONS Apoptosis PSMD6 +PWCOMMONS Apoptosis PSMB5 +PWCOMMONS Apoptosis PSMB4 +PWCOMMONS Apoptosis PSMD4 +PWCOMMONS Apoptosis PSMA2 +PWCOMMONS Apoptosis PSMB8 +PWCOMMONS Apoptosis PSMD5 +PWCOMMONS Apoptosis PSMB6 +PWCOMMONS Apoptosis PSME3 +PWCOMMONS Apoptosis PSMB3 +PWCOMMONS Apoptosis PSMB7 +PWCOMMONS Apoptosis PSME1 +PWCOMMONS Apoptosis PSMD11 +PWCOMMONS Apoptosis PSMA5 +PWCOMMONS Apoptosis PSMC5 +PWCOMMONS Apoptosis PSMC1 +PWCOMMONS Apoptosis PSMD7 +PWCOMMONS Apoptosis PSMD3 +PWCOMMONS Apoptosis PSMB2 +PWCOMMONS Apoptosis PSMD13 +PWCOMMONS Apoptosis PSMD14 +PWCOMMONS Apoptosis PSMB1 +PWCOMMONS Apoptosis PSMA6 +PWCOMMONS Apoptosis PSMB9 +PWCOMMONS Apoptosis PSMB10 +PWCOMMONS Apoptosis PSMD9 +PWCOMMONS Apoptosis PSMC4 +PWCOMMONS Apoptosis PSMA1 +PWCOMMONS Apoptosis PSMA4 +PWCOMMONS Apoptosis PSMA7 +PWCOMMONS Apoptosis PSMF1 +PWCOMMONS Apoptosis PSME2 +PWCOMMONS Apoptosis PSMD12 +PWCOMMONS Apoptosis PSMC3 +PWCOMMONS Apoptosis PSMC2 +PWCOMMONS Apoptosis PSMD2 +PWCOMMONS Apoptosis MAPT +PWCOMMONS Apoptosis BCL2L1 +PWCOMMONS Apoptosis PMAIP1 +PWCOMMONS Apoptosis BID +PWCOMMONS Apoptosis BCL2 +PWCOMMONS Apoptosis BAD +PWCOMMONS Apoptosis BBC3 +PWCOMMONS Apoptosis BAX +PWCOMMONS Apoptosis GZMB +PWCOMMONS Apoptosis BAK1 +PWCOMMONS Apoptosis NMT1 +PWCOMMONS Apoptosis PLEC1 +PWCOMMONS Apoptosis CASP8 +PWCOMMONS Apoptosis TFDP1 +PWCOMMONS Apoptosis E2F1 +PWCOMMONS Apoptosis YWHAB +PWCOMMONS Apoptosis AKT1 +PWCOMMONS Apoptosis PPP3R1 +PWCOMMONS Apoptosis PPP3CC +PWCOMMONS Apoptosis MAPK8 +PWCOMMONS Apoptosis BMF +PWCOMMONS Apoptosis DYNLL2 +PWCOMMONS Apoptosis DYNLL1 +PWCOMMONS Apoptosis DFFA +PWCOMMONS Apoptosis DFFB +PWCOMMONS Apoptosis KPNB1 +PWCOMMONS Apoptosis KPNA1 +PWCOMMONS Apoptosis OCLN +PWCOMMONS Apoptosis TJP2 +PWCOMMONS Apoptosis PKP1 +PWCOMMONS Apoptosis DSP +PWCOMMONS Apoptosis CASP6 +PWCOMMONS Apoptosis ACIN1 +PWCOMMONS Apoptosis STK24 +PWCOMMONS Apoptosis PRKCQ +PWCOMMONS Apoptosis ROCK1 +PWCOMMONS Apoptosis LMNB1 +PWCOMMONS Apoptosis BCAP31 +PWCOMMONS Apoptosis PRKCD +PWCOMMONS Apoptosis FADD +PWCOMMONS Apoptosis TNFRSF10B +PWCOMMONS Apoptosis TNFSF10 +PWCOMMONS Apoptosis TRAF2 +PWCOMMONS Apoptosis RIPK1 +PWCOMMONS Apoptosis TRADD +PWCOMMONS Apoptosis FASLG +PWCOMMONS Apoptosis FAS +PWCOMMONS Apoptosis CASP10 +PWCOMMONS Apoptosis CFLAR +PWCOMMONS Apoptosis TNFRSF1A +PWCOMMONS Apoptosis TNF +PWCOMMONS Apoptosis +PWCOMMONS Hormone biosynthesis LHB +PWCOMMONS Hormone biosynthesis FSHB +PWCOMMONS Hormone biosynthesis TSHB +PWCOMMONS Hormone biosynthesis CGB +PWCOMMONS Hormone biosynthesis PCSK1 +PWCOMMONS Hormone biosynthesis POMC +PWCOMMONS Hormone biosynthesis LGMN +PWCOMMONS Hormone biosynthesis GC +PWCOMMONS Hormone biosynthesis CUBN +PWCOMMONS Hormone biosynthesis LRP2 +PWCOMMONS Hormone biosynthesis CYP27B1 +PWCOMMONS Hormone biosynthesis CYP2R1 +PWCOMMONS Hormone biosynthesis CYP24A1 +PWCOMMONS Hormone biosynthesis CYP19A1 +PWCOMMONS Hormone biosynthesis HSD11B1 +PWCOMMONS Hormone biosynthesis CYP17A1 +PWCOMMONS Hormone biosynthesis HSD17B3 +PWCOMMONS Hormone biosynthesis CYP21A2 +PWCOMMONS Hormone biosynthesis CYP11B1 +PWCOMMONS Hormone biosynthesis CYP11A1 +PWCOMMONS Hormone biosynthesis CYP11B2 +PWCOMMONS Hormone biosynthesis STAR +PWCOMMONS Hormone biosynthesis PTGES3 +PWCOMMONS Hormone biosynthesis PTGS2 +PWCOMMONS Hormone biosynthesis PTGIS +PWCOMMONS Hormone biosynthesis ABCC1 +PWCOMMONS Hormone biosynthesis GGT5 +PWCOMMONS Hormone biosynthesis DPEP2 +PWCOMMONS Hormone biosynthesis ALOX5 +PWCOMMONS Hormone biosynthesis LTC4S +PWCOMMONS Hormone biosynthesis LTA4H +PWCOMMONS Hormone biosynthesis TBXAS1 +PWCOMMONS Hormone biosynthesis DDC +PWCOMMONS Hormone biosynthesis AANAT +PWCOMMONS Hormone biosynthesis SLC5A5 +PWCOMMONS Hormone biosynthesis DIO3 +PWCOMMONS Hormone biosynthesis PNMT +PWCOMMONS Hormone biosynthesis SLC18A2 +PWCOMMONS Hormone biosynthesis VAMP2 +PWCOMMONS Hormone biosynthesis RAB3A +PWCOMMONS Hormone biosynthesis SYT1 +PWCOMMONS Hormone biosynthesis RIMS1 +PWCOMMONS Hormone biosynthesis CPLX1 +PWCOMMONS Hormone biosynthesis DBH +PWCOMMONS Hormone biosynthesis MAOA +PWCOMMONS Hormone biosynthesis SLC22A2 +PWCOMMONS Hormone biosynthesis +PWCOMMONS Formation of PAPS SULT1E1 +PWCOMMONS Formation of PAPS SULT1A3 +PWCOMMONS Formation of PAPS SULT1A1 +PWCOMMONS Formation of PAPS +PWCOMMONS Cell Cycle Checkpoints ANAPC5 +PWCOMMONS Cell Cycle Checkpoints ANAPC11 +PWCOMMONS Cell Cycle Checkpoints CDC23 +PWCOMMONS Cell Cycle Checkpoints ANAPC1 +PWCOMMONS Cell Cycle Checkpoints UBE2D1 +PWCOMMONS Cell Cycle Checkpoints ANAPC2 +PWCOMMONS Cell Cycle Checkpoints CDC27 +PWCOMMONS Cell Cycle Checkpoints ANAPC4 +PWCOMMONS Cell Cycle Checkpoints ANAPC10 +PWCOMMONS Cell Cycle Checkpoints UBE2C +PWCOMMONS Cell Cycle Checkpoints ANAPC7 +PWCOMMONS Cell Cycle Checkpoints CDC26 +PWCOMMONS Cell Cycle Checkpoints CDC16 +PWCOMMONS Cell Cycle Checkpoints UBE2E1 +PWCOMMONS Cell Cycle Checkpoints CDC2 +PWCOMMONS Cell Cycle Checkpoints CCNB1 +PWCOMMONS Cell Cycle Checkpoints CDC20 +PWCOMMONS Cell Cycle Checkpoints WEE1 +PWCOMMONS Cell Cycle Checkpoints CDK2 +PWCOMMONS Cell Cycle Checkpoints CCNB2 +PWCOMMONS Cell Cycle Checkpoints CUL1 +PWCOMMONS Cell Cycle Checkpoints BTRC +PWCOMMONS Cell Cycle Checkpoints SKP1 +PWCOMMONS Cell Cycle Checkpoints XPO1 +PWCOMMONS Cell Cycle Checkpoints FBXO5 +PWCOMMONS Cell Cycle Checkpoints CCNH +PWCOMMONS Cell Cycle Checkpoints CDK7 +PWCOMMONS Cell Cycle Checkpoints MNAT1 +PWCOMMONS Cell Cycle Checkpoints PSMC6 +PWCOMMONS Cell Cycle Checkpoints PSMA3 +PWCOMMONS Cell Cycle Checkpoints PSMD8 +PWCOMMONS Cell Cycle Checkpoints PSMD10 +PWCOMMONS Cell Cycle Checkpoints PSMD1 +PWCOMMONS Cell Cycle Checkpoints PSMD6 +PWCOMMONS Cell Cycle Checkpoints PSMB5 +PWCOMMONS Cell Cycle Checkpoints PSMB4 +PWCOMMONS Cell Cycle Checkpoints PSMD4 +PWCOMMONS Cell Cycle Checkpoints PSMA2 +PWCOMMONS Cell Cycle Checkpoints PSMB8 +PWCOMMONS Cell Cycle Checkpoints PSMD5 +PWCOMMONS Cell Cycle Checkpoints PSMB6 +PWCOMMONS Cell Cycle Checkpoints PSME3 +PWCOMMONS Cell Cycle Checkpoints PSMB3 +PWCOMMONS Cell Cycle Checkpoints PSMB7 +PWCOMMONS Cell Cycle Checkpoints PSME1 +PWCOMMONS Cell Cycle Checkpoints PSMD11 +PWCOMMONS Cell Cycle Checkpoints PSMA5 +PWCOMMONS Cell Cycle Checkpoints PSMC5 +PWCOMMONS Cell Cycle Checkpoints PSMC1 +PWCOMMONS Cell Cycle Checkpoints PSMD7 +PWCOMMONS Cell Cycle Checkpoints PSMD3 +PWCOMMONS Cell Cycle Checkpoints PSMB2 +PWCOMMONS Cell Cycle Checkpoints PSMD13 +PWCOMMONS Cell Cycle Checkpoints PSMD14 +PWCOMMONS Cell Cycle Checkpoints PSMB1 +PWCOMMONS Cell Cycle Checkpoints PSMA6 +PWCOMMONS Cell Cycle Checkpoints PSMB9 +PWCOMMONS Cell Cycle Checkpoints PSMB10 +PWCOMMONS Cell Cycle Checkpoints PSMD9 +PWCOMMONS Cell Cycle Checkpoints PSMC4 +PWCOMMONS Cell Cycle Checkpoints PSMA1 +PWCOMMONS Cell Cycle Checkpoints PSMA4 +PWCOMMONS Cell Cycle Checkpoints PSMA7 +PWCOMMONS Cell Cycle Checkpoints PSMF1 +PWCOMMONS Cell Cycle Checkpoints PSME2 +PWCOMMONS Cell Cycle Checkpoints PSMD12 +PWCOMMONS Cell Cycle Checkpoints PSMC3 +PWCOMMONS Cell Cycle Checkpoints PSMC2 +PWCOMMONS Cell Cycle Checkpoints PSMD2 +PWCOMMONS Cell Cycle Checkpoints CDC25A +PWCOMMONS Cell Cycle Checkpoints CDC25C +PWCOMMONS Cell Cycle Checkpoints CHEK1 +PWCOMMONS Cell Cycle Checkpoints ATM +PWCOMMONS Cell Cycle Checkpoints TP53 +PWCOMMONS Cell Cycle Checkpoints CKS1B +PWCOMMONS Cell Cycle Checkpoints RB1 +PWCOMMONS Cell Cycle Checkpoints BCL2L1 +PWCOMMONS Cell Cycle Checkpoints PMAIP1 +PWCOMMONS Cell Cycle Checkpoints BCL2 +PWCOMMONS Cell Cycle Checkpoints BBC3 +PWCOMMONS Cell Cycle Checkpoints MDM2 +PWCOMMONS Cell Cycle Checkpoints CDKN1A +PWCOMMONS Cell Cycle Checkpoints ATRIP +PWCOMMONS Cell Cycle Checkpoints RPA1 +PWCOMMONS Cell Cycle Checkpoints RPA3 +PWCOMMONS Cell Cycle Checkpoints RPA2 +PWCOMMONS Cell Cycle Checkpoints CLSPN +PWCOMMONS Cell Cycle Checkpoints CDC45L +PWCOMMONS Cell Cycle Checkpoints MCM10 +PWCOMMONS Cell Cycle Checkpoints MCM7 +PWCOMMONS Cell Cycle Checkpoints MCM4 +PWCOMMONS Cell Cycle Checkpoints MCM5 +PWCOMMONS Cell Cycle Checkpoints MCM3 +PWCOMMONS Cell Cycle Checkpoints MCM6 +PWCOMMONS Cell Cycle Checkpoints MCM2 +PWCOMMONS Cell Cycle Checkpoints CDC6 +PWCOMMONS Cell Cycle Checkpoints ORC6L +PWCOMMONS Cell Cycle Checkpoints ORC4L +PWCOMMONS Cell Cycle Checkpoints ORC3L +PWCOMMONS Cell Cycle Checkpoints ORC5L +PWCOMMONS Cell Cycle Checkpoints ORC1L +PWCOMMONS Cell Cycle Checkpoints ORC2L +PWCOMMONS Cell Cycle Checkpoints CDC7 +PWCOMMONS Cell Cycle Checkpoints DBF4 +PWCOMMONS Cell Cycle Checkpoints RFC2 +PWCOMMONS Cell Cycle Checkpoints RFC3 +PWCOMMONS Cell Cycle Checkpoints RFC5 +PWCOMMONS Cell Cycle Checkpoints RFC4 +PWCOMMONS Cell Cycle Checkpoints HUS1 +PWCOMMONS Cell Cycle Checkpoints RAD1 +PWCOMMONS Cell Cycle Checkpoints BUB3 +PWCOMMONS Cell Cycle Checkpoints BUB1B +PWCOMMONS Cell Cycle Checkpoints MAD2L1 +PWCOMMONS Cell Cycle Checkpoints NEK2 +PWCOMMONS Cell Cycle Checkpoints MAD1L1 +PWCOMMONS Cell Cycle Checkpoints PTTG1 +PWCOMMONS Cell Cycle Checkpoints PLK1 +PWCOMMONS Cell Cycle Checkpoints NUDC +PWCOMMONS Cell Cycle Checkpoints KIF20A +PWCOMMONS Cell Cycle Checkpoints KIF23 +PWCOMMONS Cell Cycle Checkpoints REC8 +PWCOMMONS Cell Cycle Checkpoints STAG2 +PWCOMMONS Cell Cycle Checkpoints SMC3 +PWCOMMONS Cell Cycle Checkpoints SMC1A +PWCOMMONS Cell Cycle Checkpoints RAD21 +PWCOMMONS Cell Cycle Checkpoints STAG1 +PWCOMMONS Cell Cycle Checkpoints +PWCOMMONS DNA Replication ORC1L +PWCOMMONS DNA Replication CDT1 +PWCOMMONS DNA Replication ORC6L +PWCOMMONS DNA Replication ORC4L +PWCOMMONS DNA Replication ORC3L +PWCOMMONS DNA Replication ORC5L +PWCOMMONS DNA Replication ORC2L +PWCOMMONS DNA Replication MCM7 +PWCOMMONS DNA Replication MCM4 +PWCOMMONS DNA Replication MCM5 +PWCOMMONS DNA Replication MCM3 +PWCOMMONS DNA Replication MCM6 +PWCOMMONS DNA Replication MCM2 +PWCOMMONS DNA Replication CDK2 +PWCOMMONS DNA Replication FZR1 +PWCOMMONS DNA Replication ANAPC5 +PWCOMMONS DNA Replication ANAPC11 +PWCOMMONS DNA Replication CDC23 +PWCOMMONS DNA Replication ANAPC1 +PWCOMMONS DNA Replication ANAPC2 +PWCOMMONS DNA Replication UBE2D1 +PWCOMMONS DNA Replication CDC27 +PWCOMMONS DNA Replication ANAPC4 +PWCOMMONS DNA Replication ANAPC10 +PWCOMMONS DNA Replication ANAPC7 +PWCOMMONS DNA Replication UBE2C +PWCOMMONS DNA Replication CDC26 +PWCOMMONS DNA Replication CDC16 +PWCOMMONS DNA Replication UBE2E1 +PWCOMMONS DNA Replication PSMC6 +PWCOMMONS DNA Replication PSMA3 +PWCOMMONS DNA Replication PSMD8 +PWCOMMONS DNA Replication PSMD10 +PWCOMMONS DNA Replication PSMD1 +PWCOMMONS DNA Replication PSMD6 +PWCOMMONS DNA Replication PSMB5 +PWCOMMONS DNA Replication PSMB4 +PWCOMMONS DNA Replication PSMD4 +PWCOMMONS DNA Replication PSMA2 +PWCOMMONS DNA Replication PSMB8 +PWCOMMONS DNA Replication PSMD5 +PWCOMMONS DNA Replication PSMB6 +PWCOMMONS DNA Replication PSME3 +PWCOMMONS DNA Replication PSMB3 +PWCOMMONS DNA Replication PSMB7 +PWCOMMONS DNA Replication PSME1 +PWCOMMONS DNA Replication PSMD11 +PWCOMMONS DNA Replication PSMA5 +PWCOMMONS DNA Replication PSMC5 +PWCOMMONS DNA Replication PSMC1 +PWCOMMONS DNA Replication PSMD7 +PWCOMMONS DNA Replication PSMD3 +PWCOMMONS DNA Replication PSMB2 +PWCOMMONS DNA Replication PSMD13 +PWCOMMONS DNA Replication PSMD14 +PWCOMMONS DNA Replication PSMB1 +PWCOMMONS DNA Replication PSMA6 +PWCOMMONS DNA Replication PSMB9 +PWCOMMONS DNA Replication PSMB10 +PWCOMMONS DNA Replication PSMD9 +PWCOMMONS DNA Replication PSMC4 +PWCOMMONS DNA Replication PSMA1 +PWCOMMONS DNA Replication PSMA4 +PWCOMMONS DNA Replication PSMA7 +PWCOMMONS DNA Replication PSMF1 +PWCOMMONS DNA Replication PSME2 +PWCOMMONS DNA Replication PSMD12 +PWCOMMONS DNA Replication PSMC3 +PWCOMMONS DNA Replication PSMC2 +PWCOMMONS DNA Replication PSMD2 +PWCOMMONS DNA Replication CDC45L +PWCOMMONS DNA Replication GINS4 +PWCOMMONS DNA Replication GINS1 +PWCOMMONS DNA Replication GINS2 +PWCOMMONS DNA Replication POLD4 +PWCOMMONS DNA Replication POLD3 +PWCOMMONS DNA Replication POLD2 +PWCOMMONS DNA Replication POLD1 +PWCOMMONS DNA Replication PCNA +PWCOMMONS DNA Replication PRIM2 +PWCOMMONS DNA Replication POLA1 +PWCOMMONS DNA Replication PRIM1 +PWCOMMONS DNA Replication POLA2 +PWCOMMONS DNA Replication RFC2 +PWCOMMONS DNA Replication RFC1 +PWCOMMONS DNA Replication RFC3 +PWCOMMONS DNA Replication RFC5 +PWCOMMONS DNA Replication RFC4 +PWCOMMONS DNA Replication LIG1 +PWCOMMONS DNA Replication DNA2 +PWCOMMONS DNA Replication RPA1 +PWCOMMONS DNA Replication RPA3 +PWCOMMONS DNA Replication RPA2 +PWCOMMONS DNA Replication FEN1 +PWCOMMONS DNA Replication GMNN +PWCOMMONS DNA Replication CDC2 +PWCOMMONS DNA Replication MCM10 +PWCOMMONS DNA Replication RB1 +PWCOMMONS DNA Replication TFDP1 +PWCOMMONS DNA Replication E2F1 +PWCOMMONS DNA Replication POLE2 +PWCOMMONS DNA Replication POLE +PWCOMMONS DNA Replication RPA4 +PWCOMMONS DNA Replication CDC7 +PWCOMMONS DNA Replication DBF4 +PWCOMMONS DNA Replication +PWCOMMONS HIV Infection BANF1 +PWCOMMONS HIV Infection NUP153 +PWCOMMONS HIV Infection NUP85 +PWCOMMONS HIV Infection NUP35 +PWCOMMONS HIV Infection AAAS +PWCOMMONS HIV Infection NUP50 +PWCOMMONS HIV Infection NUP43 +PWCOMMONS HIV Infection NUP205 +PWCOMMONS HIV Infection NUP93 +PWCOMMONS HIV Infection NUP88 +PWCOMMONS HIV Infection NUPL2 +PWCOMMONS HIV Infection NUP210 +PWCOMMONS HIV Infection NUP155 +PWCOMMONS HIV Infection RANBP2 +PWCOMMONS HIV Infection RAE1 +PWCOMMONS HIV Infection NUP188 +PWCOMMONS HIV Infection NUP214 +PWCOMMONS HIV Infection NUP54 +PWCOMMONS HIV Infection NUP62 +PWCOMMONS HIV Infection NUP107 +PWCOMMONS HIV Infection NUP133 +PWCOMMONS HIV Infection NUP160 +PWCOMMONS HIV Infection NUP37 +PWCOMMONS HIV Infection MST4 +PWCOMMONS HIV Infection DSG3 +PWCOMMONS HIV Infection GSN +PWCOMMONS HIV Infection DIABLO +PWCOMMONS HIV Infection XIAP +PWCOMMONS HIV Infection CASP3 +PWCOMMONS HIV Infection PAK2 +PWCOMMONS HIV Infection ARHGAP10 +PWCOMMONS HIV Infection GAS2 +PWCOMMONS HIV Infection VIM +PWCOMMONS HIV Infection CASP9 +PWCOMMONS HIV Infection DSG1 +PWCOMMONS HIV Infection CYCS +PWCOMMONS HIV Infection APAF1 +PWCOMMONS HIV Infection FZR1 +PWCOMMONS HIV Infection ANAPC5 +PWCOMMONS HIV Infection ANAPC11 +PWCOMMONS HIV Infection CDC23 +PWCOMMONS HIV Infection ANAPC1 +PWCOMMONS HIV Infection ANAPC2 +PWCOMMONS HIV Infection UBE2D1 +PWCOMMONS HIV Infection CDC27 +PWCOMMONS HIV Infection ANAPC4 +PWCOMMONS HIV Infection ANAPC10 +PWCOMMONS HIV Infection ANAPC7 +PWCOMMONS HIV Infection UBE2C +PWCOMMONS HIV Infection CDC26 +PWCOMMONS HIV Infection CDC16 +PWCOMMONS HIV Infection UBE2E1 +PWCOMMONS HIV Infection PSMC6 +PWCOMMONS HIV Infection PSMA3 +PWCOMMONS HIV Infection PSMD8 +PWCOMMONS HIV Infection PSMD10 +PWCOMMONS HIV Infection PSMD1 +PWCOMMONS HIV Infection PSMD6 +PWCOMMONS HIV Infection PSMB5 +PWCOMMONS HIV Infection PSMB4 +PWCOMMONS HIV Infection PSMD4 +PWCOMMONS HIV Infection PSMA2 +PWCOMMONS HIV Infection PSMB8 +PWCOMMONS HIV Infection PSMD5 +PWCOMMONS HIV Infection PSMB6 +PWCOMMONS HIV Infection PSME3 +PWCOMMONS HIV Infection PSMB3 +PWCOMMONS HIV Infection PSMB7 +PWCOMMONS HIV Infection PSME1 +PWCOMMONS HIV Infection PSMD11 +PWCOMMONS HIV Infection PSMA5 +PWCOMMONS HIV Infection PSMC5 +PWCOMMONS HIV Infection PSMC1 +PWCOMMONS HIV Infection PSMD7 +PWCOMMONS HIV Infection PSMD3 +PWCOMMONS HIV Infection PSMB2 +PWCOMMONS HIV Infection PSMD13 +PWCOMMONS HIV Infection PSMD14 +PWCOMMONS HIV Infection PSMB1 +PWCOMMONS HIV Infection PSMA6 +PWCOMMONS HIV Infection PSMB9 +PWCOMMONS HIV Infection PSMB10 +PWCOMMONS HIV Infection PSMD9 +PWCOMMONS HIV Infection PSMC4 +PWCOMMONS HIV Infection PSMA1 +PWCOMMONS HIV Infection PSMA4 +PWCOMMONS HIV Infection PSMA7 +PWCOMMONS HIV Infection PSMF1 +PWCOMMONS HIV Infection PSME2 +PWCOMMONS HIV Infection PSMD12 +PWCOMMONS HIV Infection PSMC3 +PWCOMMONS HIV Infection PSMC2 +PWCOMMONS HIV Infection PSMD2 +PWCOMMONS HIV Infection ADD1 +PWCOMMONS HIV Infection MAPT +PWCOMMONS HIV Infection BIRC2 +PWCOMMONS HIV Infection DBNL +PWCOMMONS HIV Infection DSG2 +PWCOMMONS HIV Infection BMX +PWCOMMONS HIV Infection SPTAN1 +PWCOMMONS HIV Infection CDH1 +PWCOMMONS HIV Infection CASP7 +PWCOMMONS HIV Infection CLSPN +PWCOMMONS HIV Infection DFFA +PWCOMMONS HIV Infection DFFB +PWCOMMONS HIV Infection KPNB1 +PWCOMMONS HIV Infection OCLN +PWCOMMONS HIV Infection TJP2 +PWCOMMONS HIV Infection PKP1 +PWCOMMONS HIV Infection DSP +PWCOMMONS HIV Infection CASP8 +PWCOMMONS HIV Infection PLEC1 +PWCOMMONS HIV Infection CASP6 +PWCOMMONS HIV Infection ACIN1 +PWCOMMONS HIV Infection STK24 +PWCOMMONS HIV Infection PRKCQ +PWCOMMONS HIV Infection ROCK1 +PWCOMMONS HIV Infection LMNB1 +PWCOMMONS HIV Infection BCAP31 +PWCOMMONS HIV Infection PRKCD +PWCOMMONS HIV Infection CDC25A +PWCOMMONS HIV Infection FNTA +PWCOMMONS HIV Infection PTK2 +PWCOMMONS HIV Infection ATP6V1H +PWCOMMONS HIV Infection AP2S1 +PWCOMMONS HIV Infection AP2B1 +PWCOMMONS HIV Infection AP2M1 +PWCOMMONS HIV Infection CD4 +PWCOMMONS HIV Infection ARF1 +PWCOMMONS HIV Infection LCK +PWCOMMONS HIV Infection CD28 +PWCOMMONS HIV Infection PACS1 +PWCOMMONS HIV Infection AP1G1 +PWCOMMONS HIV Infection AP1B1 +PWCOMMONS HIV Infection B2M +PWCOMMONS HIV Infection HLA-A +PWCOMMONS HIV Infection FYN +PWCOMMONS HIV Infection DOCK2 +PWCOMMONS HIV Infection ELMO1 +PWCOMMONS HIV Infection HCK +PWCOMMONS HIV Infection RAN +PWCOMMONS HIV Infection XPO1 +PWCOMMONS HIV Infection RANBP1 +PWCOMMONS HIV Infection RANGAP1 +PWCOMMONS HIV Infection RBX1 +PWCOMMONS HIV Infection TCEB1 +PWCOMMONS HIV Infection CUL5 +PWCOMMONS HIV Infection TCEB2 +PWCOMMONS HIV Infection PPIA +PWCOMMONS HIV Infection CDK9 +PWCOMMONS HIV Infection CCNT1 +PWCOMMONS HIV Infection BTRC +PWCOMMONS HIV Infection SKP1 +PWCOMMONS HIV Infection LIG1 +PWCOMMONS HIV Infection XRCC6 +PWCOMMONS HIV Infection XRCC5 +PWCOMMONS HIV Infection FEN1 +PWCOMMONS HIV Infection LIG4 +PWCOMMONS HIV Infection XRCC4 +PWCOMMONS HIV Infection GTF2B +PWCOMMONS HIV Infection GTF2A1 +PWCOMMONS HIV Infection GTF2A2 +PWCOMMONS HIV Infection GTF2E2 +PWCOMMONS HIV Infection GTF2E1 +PWCOMMONS HIV Infection GTF2F1 +PWCOMMONS HIV Infection GTF2F2 +PWCOMMONS HIV Infection POLR2G +PWCOMMONS HIV Infection POLR2B +PWCOMMONS HIV Infection POLR2L +PWCOMMONS HIV Infection POLR2A +PWCOMMONS HIV Infection POLR2K +PWCOMMONS HIV Infection POLR2H +PWCOMMONS HIV Infection POLR2D +PWCOMMONS HIV Infection POLR2C +PWCOMMONS HIV Infection POLR2J +PWCOMMONS HIV Infection POLR2I +PWCOMMONS HIV Infection POLR2F +PWCOMMONS HIV Infection POLR2E +PWCOMMONS HIV Infection TAF9 +PWCOMMONS HIV Infection TAF4 +PWCOMMONS HIV Infection TAF13 +PWCOMMONS HIV Infection TAF10 +PWCOMMONS HIV Infection TAF1 +PWCOMMONS HIV Infection TAF6 +PWCOMMONS HIV Infection TAF12 +PWCOMMONS HIV Infection TAF4B +PWCOMMONS HIV Infection TAF5 +PWCOMMONS HIV Infection TAF11 +PWCOMMONS HIV Infection TBP +PWCOMMONS HIV Infection ERCC2 +PWCOMMONS HIV Infection GTF2H3 +PWCOMMONS HIV Infection GTF2H4 +PWCOMMONS HIV Infection GTF2H2 +PWCOMMONS HIV Infection ERCC3 +PWCOMMONS HIV Infection GTF2H1 +PWCOMMONS HIV Infection CCNH +PWCOMMONS HIV Infection CDK7 +PWCOMMONS HIV Infection MNAT1 +PWCOMMONS HIV Infection RNGTT +PWCOMMONS HIV Infection CTDP1 +PWCOMMONS HIV Infection TCEA1 +PWCOMMONS HIV Infection ELL +PWCOMMONS HIV Infection TCEB3 +PWCOMMONS HIV Infection SSRP1 +PWCOMMONS HIV Infection SUPT16H +PWCOMMONS HIV Infection CCNT2 +PWCOMMONS HIV Infection SUPT4H1 +PWCOMMONS HIV Infection TH1L +PWCOMMONS HIV Infection WHSC2 +PWCOMMONS HIV Infection RDBP +PWCOMMONS HIV Infection COBRA1 +PWCOMMONS HIV Infection NCBP2 +PWCOMMONS HIV Infection NCBP1 +PWCOMMONS HIV Infection RNMT +PWCOMMONS HIV Infection +PWCOMMONS Metabolism of nitric oxide CAV1 +PWCOMMONS Metabolism of nitric oxide HSP90AA1 +PWCOMMONS Metabolism of nitric oxide CALM1 +PWCOMMONS Metabolism of nitric oxide LYPLA1 +PWCOMMONS Metabolism of nitric oxide WASL +PWCOMMONS Metabolism of nitric oxide NOSTRIN +PWCOMMONS Metabolism of nitric oxide ZDHHC21 +PWCOMMONS Metabolism of nitric oxide AKT1 +PWCOMMONS Metabolism of nitric oxide NOSIP +PWCOMMONS Metabolism of nitric oxide +PWCOMMONS Signaling by BMP ZFYVE16 +PWCOMMONS Signaling by BMP BMP2 +PWCOMMONS Signaling by BMP SKI +PWCOMMONS Signaling by BMP +PWCOMMONS Metabolism of vitamins and cofactors AMD1 +PWCOMMONS Metabolism of vitamins and cofactors AHCY +PWCOMMONS Metabolism of vitamins and cofactors MTHFD1 +PWCOMMONS Metabolism of vitamins and cofactors SLC46A1 +PWCOMMONS Metabolism of vitamins and cofactors MTHFR +PWCOMMONS Metabolism of vitamins and cofactors SRM +PWCOMMONS Metabolism of vitamins and cofactors MTR +PWCOMMONS Metabolism of vitamins and cofactors SMS +PWCOMMONS Metabolism of vitamins and cofactors NNMT +PWCOMMONS Metabolism of vitamins and cofactors TPMT +PWCOMMONS Metabolism of vitamins and cofactors SLC19A1 +PWCOMMONS Metabolism of vitamins and cofactors SHMT1 +PWCOMMONS Metabolism of vitamins and cofactors DHFR +PWCOMMONS Metabolism of vitamins and cofactors SLC25A32 +PWCOMMONS Metabolism of vitamins and cofactors RFK +PWCOMMONS Metabolism of vitamins and cofactors FLAD1 +PWCOMMONS Metabolism of vitamins and cofactors ENPP1 +PWCOMMONS Metabolism of vitamins and cofactors ACP5 +PWCOMMONS Metabolism of vitamins and cofactors CYB5R3 +PWCOMMONS Metabolism of vitamins and cofactors CYB5A +PWCOMMONS Metabolism of vitamins and cofactors GSR +PWCOMMONS Metabolism of vitamins and cofactors FASN +PWCOMMONS Metabolism of vitamins and cofactors PPCDC +PWCOMMONS Metabolism of vitamins and cofactors COASY +PWCOMMONS Metabolism of vitamins and cofactors AASDHPPT +PWCOMMONS Metabolism of vitamins and cofactors SLC5A6 +PWCOMMONS Metabolism of vitamins and cofactors PANK2 +PWCOMMONS Metabolism of vitamins and cofactors PPCS +PWCOMMONS Metabolism of vitamins and cofactors SLC25A16 +PWCOMMONS Metabolism of vitamins and cofactors NADSYN1 +PWCOMMONS Metabolism of vitamins and cofactors AFMID +PWCOMMONS Metabolism of vitamins and cofactors ACMSD +PWCOMMONS Metabolism of vitamins and cofactors NMNAT2 +PWCOMMONS Metabolism of vitamins and cofactors NAMPT +PWCOMMONS Metabolism of vitamins and cofactors NAPRT1 +PWCOMMONS Metabolism of vitamins and cofactors KYNU +PWCOMMONS Metabolism of vitamins and cofactors HAAO +PWCOMMONS Metabolism of vitamins and cofactors TDO2 +PWCOMMONS Metabolism of vitamins and cofactors NMNAT3 +PWCOMMONS Metabolism of vitamins and cofactors INDO +PWCOMMONS Metabolism of vitamins and cofactors QPRT +PWCOMMONS Metabolism of vitamins and cofactors KMO +PWCOMMONS Metabolism of vitamins and cofactors NADK +PWCOMMONS Metabolism of vitamins and cofactors NMNAT1 +PWCOMMONS Metabolism of vitamins and cofactors TPK1 +PWCOMMONS Metabolism of vitamins and cofactors +PWCOMMONS Ceramide signaling pathway RELA +PWCOMMONS Ceramide signaling pathway SMPD1 +PWCOMMONS Ceramide signaling pathway CTSD +PWCOMMONS Ceramide signaling pathway MAP4K4 +PWCOMMONS Ceramide signaling pathway EGF +PWCOMMONS Ceramide signaling pathway PAWR +PWCOMMONS Ceramide signaling pathway PRKCZ +PWCOMMONS Ceramide signaling pathway KSR1 +PWCOMMONS Ceramide signaling pathway AKT1 +PWCOMMONS Ceramide signaling pathway CRADD +PWCOMMONS Ceramide signaling pathway TRAF2 +PWCOMMONS Ceramide signaling pathway RIPK1 +PWCOMMONS Ceramide signaling pathway TNFRSF1A +PWCOMMONS Ceramide signaling pathway TRADD +PWCOMMONS Ceramide signaling pathway TNF +PWCOMMONS Ceramide signaling pathway MADD +PWCOMMONS Ceramide signaling pathway BIRC3 +PWCOMMONS Ceramide signaling pathway BID +PWCOMMONS Ceramide signaling pathway BCL2 +PWCOMMONS Ceramide signaling pathway PRKCD +PWCOMMONS Ceramide signaling pathway MAPK3 +PWCOMMONS Ceramide signaling pathway IGF1 +PWCOMMONS Ceramide signaling pathway MYC +PWCOMMONS Ceramide signaling pathway BAG4 +PWCOMMONS Ceramide signaling pathway MAP3K1 +PWCOMMONS Ceramide signaling pathway BAD +PWCOMMONS Ceramide signaling pathway CASP8 +PWCOMMONS Ceramide signaling pathway MAPK8 +PWCOMMONS Ceramide signaling pathway AIFM1 +PWCOMMONS Ceramide signaling pathway MAP2K1 +PWCOMMONS Ceramide signaling pathway MAP2K2 +PWCOMMONS Ceramide signaling pathway NFKBIA +PWCOMMONS Ceramide signaling pathway RAF1 +PWCOMMONS Ceramide signaling pathway RB1 +PWCOMMONS Ceramide signaling pathway BAX +PWCOMMONS Ceramide signaling pathway CYCS +PWCOMMONS Ceramide signaling pathway PRKRA +PWCOMMONS Ceramide signaling pathway SMPD3 +PWCOMMONS Ceramide signaling pathway EIF2A +PWCOMMONS Ceramide signaling pathway FADD +PWCOMMONS Ceramide signaling pathway PDGFA +PWCOMMONS Ceramide signaling pathway NSMAF +PWCOMMONS Ceramide signaling pathway SPHK2 +PWCOMMONS Ceramide signaling pathway ASAH1 +PWCOMMONS Ceramide signaling pathway MAP2K4 +PWCOMMONS Ceramide signaling pathway MAPK1 +PWCOMMONS Ceramide signaling pathway +PWCOMMONS Visual signal transduction: Cones CNGA3 +PWCOMMONS Visual signal transduction: Cones GNGT2 +PWCOMMONS Visual signal transduction: Cones GNAT2 +PWCOMMONS Visual signal transduction: Cones GNB3 +PWCOMMONS Visual signal transduction: Cones GUCY2D +PWCOMMONS Visual signal transduction: Cones RDH12 +PWCOMMONS Visual signal transduction: Cones SLC24A2 +PWCOMMONS Visual signal transduction: Cones GRK7 +PWCOMMONS Visual signal transduction: Cones PDE6C +PWCOMMONS Visual signal transduction: Cones PDE6H +PWCOMMONS Visual signal transduction: Cones ARR3 +PWCOMMONS Visual signal transduction: Cones GRK1 +PWCOMMONS Visual signal transduction: Cones GUCY2F +PWCOMMONS Visual signal transduction: Cones LRAT +PWCOMMONS Visual signal transduction: Cones RGS9 +PWCOMMONS Visual signal transduction: Cones GNB5 +PWCOMMONS Visual signal transduction: Cones +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor VDR +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor RPS6KB1 +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor RXRA +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor FAM120B +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor TGFB1 +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor BCL2 +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor NCOR2 +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor TNF +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor NCOA1 +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor ABCA1 +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor MED1 +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor NR1H4 +PWCOMMONS RXR and RAR hetrodimerization with other nuclear receptor +PWCOMMONS Aurora B signaling PEBP1 +PWCOMMONS Aurora B signaling RHOA +PWCOMMONS Aurora B signaling RACGAP1 +PWCOMMONS Aurora B signaling KIF23 +PWCOMMONS Aurora B signaling CBX5 +PWCOMMONS Aurora B signaling AURKB +PWCOMMONS Aurora B signaling INCENP +PWCOMMONS Aurora B signaling CDCA8 +PWCOMMONS Aurora B signaling BIRC5 +PWCOMMONS Aurora B signaling CENPA +PWCOMMONS Aurora B signaling SGOL1 +PWCOMMONS Aurora B signaling AURKC +PWCOMMONS Aurora B signaling H3F3A +PWCOMMONS Aurora B signaling SMC4 +PWCOMMONS Aurora B signaling SMC2 +PWCOMMONS Aurora B signaling NCAPG +PWCOMMONS Aurora B signaling NCAPD2 +PWCOMMONS Aurora B signaling NCAPH +PWCOMMONS Aurora B signaling PPP2R5D +PWCOMMONS Aurora B signaling PPP1CC +PWCOMMONS Aurora B signaling SEPT1 +PWCOMMONS Aurora B signaling MYLK +PWCOMMONS Aurora B signaling KIF20A +PWCOMMONS Aurora B signaling RASA1 +PWCOMMONS Aurora B signaling STMN1 +PWCOMMONS Aurora B signaling EVI5 +PWCOMMONS Aurora B signaling NSUN2 +PWCOMMONS Aurora B signaling NPM1 +PWCOMMONS Aurora B signaling NCL +PWCOMMONS Aurora B signaling CUL3 +PWCOMMONS Aurora B signaling KLHL9 +PWCOMMONS Aurora B signaling KLHL13 +PWCOMMONS Aurora B signaling VIM +PWCOMMONS Aurora B signaling PSMA3 +PWCOMMONS Aurora B signaling BUB1 +PWCOMMONS Aurora B signaling KIF2C +PWCOMMONS Aurora B signaling NDC80 +PWCOMMONS Aurora B signaling AURKA +PWCOMMONS Aurora B signaling TACC1 +PWCOMMONS Aurora B signaling +PWCOMMONS IL2 signaling events mediated by PI3K PIK3CA +PWCOMMONS IL2 signaling events mediated by PI3K JAK1 +PWCOMMONS IL2 signaling events mediated by PI3K GAB2 +PWCOMMONS IL2 signaling events mediated by PI3K LCK +PWCOMMONS IL2 signaling events mediated by PI3K IL2RG +PWCOMMONS IL2 signaling events mediated by PI3K PIK3R1 +PWCOMMONS IL2 signaling events mediated by PI3K JAK3 +PWCOMMONS IL2 signaling events mediated by PI3K PTPN11 +PWCOMMONS IL2 signaling events mediated by PI3K IL2RA +PWCOMMONS IL2 signaling events mediated by PI3K IL2 +PWCOMMONS IL2 signaling events mediated by PI3K IL2RB +PWCOMMONS IL2 signaling events mediated by PI3K SOS1 +PWCOMMONS IL2 signaling events mediated by PI3K SHC1 +PWCOMMONS IL2 signaling events mediated by PI3K GRB2 +PWCOMMONS IL2 signaling events mediated by PI3K IKBKB +PWCOMMONS IL2 signaling events mediated by PI3K CHUK +PWCOMMONS IL2 signaling events mediated by PI3K IKBKG +PWCOMMONS IL2 signaling events mediated by PI3K TNFAIP3 +PWCOMMONS IL2 signaling events mediated by PI3K ATM +PWCOMMONS IL2 signaling events mediated by PI3K NFKB1 +PWCOMMONS IL2 signaling events mediated by PI3K NFKBIA +PWCOMMONS IL2 signaling events mediated by PI3K RELA +PWCOMMONS IL2 signaling events mediated by PI3K CYLD +PWCOMMONS IL2 signaling events mediated by PI3K NOD2 +PWCOMMONS IL2 signaling events mediated by PI3K RIPK2 +PWCOMMONS IL2 signaling events mediated by PI3K BCL10 +PWCOMMONS IL2 signaling events mediated by PI3K TRAF6 +PWCOMMONS IL2 signaling events mediated by PI3K MALT1 +PWCOMMONS IL2 signaling events mediated by PI3K PRKCA +PWCOMMONS IL2 signaling events mediated by PI3K ERC1 +PWCOMMONS IL2 signaling events mediated by PI3K FBXW11 +PWCOMMONS IL2 signaling events mediated by PI3K TNFRSF1A +PWCOMMONS IL2 signaling events mediated by PI3K TNF +PWCOMMONS IL2 signaling events mediated by PI3K ARRB2 +PWCOMMONS IL2 signaling events mediated by PI3K REL +PWCOMMONS IL2 signaling events mediated by PI3K SYK +PWCOMMONS IL2 signaling events mediated by PI3K BCL3 +PWCOMMONS IL2 signaling events mediated by PI3K MAPK14 +PWCOMMONS IL2 signaling events mediated by PI3K SRC +PWCOMMONS IL2 signaling events mediated by PI3K XPO1 +PWCOMMONS IL2 signaling events mediated by PI3K RAN +PWCOMMONS IL2 signaling events mediated by PI3K NFKB2 +PWCOMMONS IL2 signaling events mediated by PI3K RELB +PWCOMMONS IL2 signaling events mediated by PI3K MAP3K14 +PWCOMMONS IL2 signaling events mediated by PI3K BIRC2 +PWCOMMONS IL2 signaling events mediated by PI3K UBE2D3 +PWCOMMONS IL2 signaling events mediated by PI3K E2F1 +PWCOMMONS IL2 signaling events mediated by PI3K AKT1 +PWCOMMONS IL2 signaling events mediated by PI3K BCL2L1 +PWCOMMONS IL2 signaling events mediated by PI3K CALM1 +PWCOMMONS IL2 signaling events mediated by PI3K TERT +PWCOMMONS IL2 signaling events mediated by PI3K RPS6KB1 +PWCOMMONS IL2 signaling events mediated by PI3K HSP90AA1 +PWCOMMONS IL2 signaling events mediated by PI3K RAC1 +PWCOMMONS IL2 signaling events mediated by PI3K BCL2 +PWCOMMONS IL2 signaling events mediated by PI3K PRKCZ +PWCOMMONS IL2 signaling events mediated by PI3K UGCG +PWCOMMONS IL2 signaling events mediated by PI3K FOXO3 +PWCOMMONS IL2 signaling events mediated by PI3K MYC +PWCOMMONS IL2 signaling events mediated by PI3K MYB +PWCOMMONS IL2 signaling events mediated by PI3K SMPD1 +PWCOMMONS IL2 signaling events mediated by PI3K SGMS1 +PWCOMMONS IL2 signaling events mediated by PI3K EIF3A +PWCOMMONS IL2 signaling events mediated by PI3K RPS6 +PWCOMMONS IL2 signaling events mediated by PI3K +PWCOMMONS Syndecan-4-mediated signaling events ADAM12 +PWCOMMONS Syndecan-4-mediated signaling events THBS1 +PWCOMMONS Syndecan-4-mediated signaling events FN1 +PWCOMMONS Syndecan-4-mediated signaling events GIPC1 +PWCOMMONS Syndecan-4-mediated signaling events PRKCA +PWCOMMONS Syndecan-4-mediated signaling events TNFRSF13B +PWCOMMONS Syndecan-4-mediated signaling events CXCR4 +PWCOMMONS Syndecan-4-mediated signaling events CXCL12 +PWCOMMONS Syndecan-4-mediated signaling events NLK +PWCOMMONS Syndecan-4-mediated signaling events GNG2 +PWCOMMONS Syndecan-4-mediated signaling events GNB1 +PWCOMMONS Syndecan-4-mediated signaling events CDC42 +PWCOMMONS Syndecan-4-mediated signaling events GNAS +PWCOMMONS Syndecan-4-mediated signaling events PLCG1 +PWCOMMONS Syndecan-4-mediated signaling events YES1 +PWCOMMONS Syndecan-4-mediated signaling events MAP3K7 +PWCOMMONS Syndecan-4-mediated signaling events NFATC2 +PWCOMMONS Syndecan-4-mediated signaling events CSNK1A1 +PWCOMMONS Syndecan-4-mediated signaling events CAMK2A +PWCOMMONS Syndecan-4-mediated signaling events MAP3K7IP1 +PWCOMMONS Syndecan-4-mediated signaling events NUDT16L1 +PWCOMMONS Syndecan-4-mediated signaling events RAC1 +PWCOMMONS Syndecan-4-mediated signaling events SDCBP +PWCOMMONS Syndecan-4-mediated signaling events CCL5 +PWCOMMONS Syndecan-4-mediated signaling events FGFR1 +PWCOMMONS Syndecan-4-mediated signaling events FGF2 +PWCOMMONS Syndecan-4-mediated signaling events TFPI +PWCOMMONS Syndecan-4-mediated signaling events LAMA1 +PWCOMMONS Syndecan-4-mediated signaling events PLG +PWCOMMONS Syndecan-4-mediated signaling events F2 +PWCOMMONS Syndecan-4-mediated signaling events TNC +PWCOMMONS Syndecan-4-mediated signaling events ACTN1 +PWCOMMONS Syndecan-4-mediated signaling events LAMA3 +PWCOMMONS Syndecan-4-mediated signaling events PTK2 +PWCOMMONS Syndecan-4-mediated signaling events RHOA +PWCOMMONS Syndecan-4-mediated signaling events MDK +PWCOMMONS Syndecan-4-mediated signaling events FZD7 +PWCOMMONS Syndecan-4-mediated signaling events ITGB1 +PWCOMMONS Syndecan-4-mediated signaling events ITGA5 +PWCOMMONS Syndecan-4-mediated signaling events PRKCD +PWCOMMONS Syndecan-4-mediated signaling events DNM2 +PWCOMMONS Syndecan-4-mediated signaling events MMP9 +PWCOMMONS Syndecan-4-mediated signaling events +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway MAPK7 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway MAP2K5 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway MAPK14 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway FOS +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway RIT1 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway SRF +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway BRAF +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway RPS6KA5 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway CDK5R1 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway CDK5 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway MAP3K2 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway MAP2K1 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway RPS6KA1 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway MEF2C +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway RUSC1 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway MAPKAPK2 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway RIT2 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway CREB1 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway NTF3 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway RAF1 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway EHD4 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway TRPV1 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway ELK1 +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway PRKCD +PWCOMMONS Trk receptor signaling mediated by the MAPK pathway +PWCOMMONS Presenilin action in Notch and Wnt signaling CSNK1A1 +PWCOMMONS Presenilin action in Notch and Wnt signaling MAPK1 +PWCOMMONS Presenilin action in Notch and Wnt signaling AXIN1 +PWCOMMONS Presenilin action in Notch and Wnt signaling CTNNB1 +PWCOMMONS Presenilin action in Notch and Wnt signaling APC +PWCOMMONS Presenilin action in Notch and Wnt signaling MYC +PWCOMMONS Presenilin action in Notch and Wnt signaling CCND1 +PWCOMMONS Presenilin action in Notch and Wnt signaling PPARD +PWCOMMONS Presenilin action in Notch and Wnt signaling FOS +PWCOMMONS Presenilin action in Notch and Wnt signaling JUN +PWCOMMONS Presenilin action in Notch and Wnt signaling CTBP1 +PWCOMMONS Presenilin action in Notch and Wnt signaling CREBBP +PWCOMMONS Presenilin action in Notch and Wnt signaling HNF1A +PWCOMMONS Presenilin action in Notch and Wnt signaling TLE1 +PWCOMMONS Presenilin action in Notch and Wnt signaling DVL1 +PWCOMMONS Presenilin action in Notch and Wnt signaling FBXW11 +PWCOMMONS Presenilin action in Notch and Wnt signaling ADAM10 +PWCOMMONS Presenilin action in Notch and Wnt signaling DTX1 +PWCOMMONS Presenilin action in Notch and Wnt signaling DLL1 +PWCOMMONS Presenilin action in Notch and Wnt signaling HDAC1 +PWCOMMONS Presenilin action in Notch and Wnt signaling NLK +PWCOMMONS Presenilin action in Notch and Wnt signaling NEDD4 +PWCOMMONS Presenilin action in Notch and Wnt signaling PPP2R5D +PWCOMMONS Presenilin action in Notch and Wnt signaling MAP3K7 +PWCOMMONS Presenilin action in Notch and Wnt signaling WNT1 +PWCOMMONS Presenilin action in Notch and Wnt signaling WIF1 +PWCOMMONS Presenilin action in Notch and Wnt signaling LRP6 +PWCOMMONS Presenilin action in Notch and Wnt signaling FZD1 +PWCOMMONS Presenilin action in Notch and Wnt signaling MAPK3 +PWCOMMONS Presenilin action in Notch and Wnt signaling FRAT1 +PWCOMMONS Presenilin action in Notch and Wnt signaling MAP3K7IP1 +PWCOMMONS Presenilin action in Notch and Wnt signaling RBPJ +PWCOMMONS Presenilin action in Notch and Wnt signaling GSK3B +PWCOMMONS Presenilin action in Notch and Wnt signaling DKK2 +PWCOMMONS Presenilin action in Notch and Wnt signaling KREMEN2 +PWCOMMONS Presenilin action in Notch and Wnt signaling DKK1 +PWCOMMONS Presenilin action in Notch and Wnt signaling APH1B +PWCOMMONS Presenilin action in Notch and Wnt signaling PSENEN +PWCOMMONS Presenilin action in Notch and Wnt signaling NCSTN +PWCOMMONS Presenilin action in Notch and Wnt signaling PSEN1 +PWCOMMONS Presenilin action in Notch and Wnt signaling APH1A +PWCOMMONS Presenilin action in Notch and Wnt signaling CSNK2A1 +PWCOMMONS Presenilin action in Notch and Wnt signaling +PWCOMMONS IL1-mediated signaling events RELA +PWCOMMONS IL1-mediated signaling events IL1RN +PWCOMMONS IL1-mediated signaling events IL1R1 +PWCOMMONS IL1-mediated signaling events IKBKB +PWCOMMONS IL1-mediated signaling events CHUK +PWCOMMONS IL1-mediated signaling events IKBKG +PWCOMMONS IL1-mediated signaling events TNFAIP3 +PWCOMMONS IL1-mediated signaling events ATM +PWCOMMONS IL1-mediated signaling events NFKBIA +PWCOMMONS IL1-mediated signaling events CYLD +PWCOMMONS IL1-mediated signaling events NOD2 +PWCOMMONS IL1-mediated signaling events RIPK2 +PWCOMMONS IL1-mediated signaling events BCL10 +PWCOMMONS IL1-mediated signaling events TRAF6 +PWCOMMONS IL1-mediated signaling events MALT1 +PWCOMMONS IL1-mediated signaling events PRKCA +PWCOMMONS IL1-mediated signaling events ERC1 +PWCOMMONS IL1-mediated signaling events FBXW11 +PWCOMMONS IL1-mediated signaling events TNFRSF1A +PWCOMMONS IL1-mediated signaling events TNF +PWCOMMONS IL1-mediated signaling events LCK +PWCOMMONS IL1-mediated signaling events ARRB2 +PWCOMMONS IL1-mediated signaling events REL +PWCOMMONS IL1-mediated signaling events SYK +PWCOMMONS IL1-mediated signaling events PIK3CA +PWCOMMONS IL1-mediated signaling events PIK3R1 +PWCOMMONS IL1-mediated signaling events BCL3 +PWCOMMONS IL1-mediated signaling events MAPK14 +PWCOMMONS IL1-mediated signaling events SRC +PWCOMMONS IL1-mediated signaling events XPO1 +PWCOMMONS IL1-mediated signaling events RAN +PWCOMMONS IL1-mediated signaling events NFKB2 +PWCOMMONS IL1-mediated signaling events RELB +PWCOMMONS IL1-mediated signaling events MAP3K14 +PWCOMMONS IL1-mediated signaling events BIRC2 +PWCOMMONS IL1-mediated signaling events UBE2D3 +PWCOMMONS IL1-mediated signaling events MAP3K3 +PWCOMMONS IL1-mediated signaling events IRAK1 +PWCOMMONS IL1-mediated signaling events MAP3K7IP1 +PWCOMMONS IL1-mediated signaling events MAP3K7IP2 +PWCOMMONS IL1-mediated signaling events MAP3K7 +PWCOMMONS IL1-mediated signaling events IL1B +PWCOMMONS IL1-mediated signaling events SQSTM1 +PWCOMMONS IL1-mediated signaling events IL1R2 +PWCOMMONS IL1-mediated signaling events MAPKAPK3 +PWCOMMONS IL1-mediated signaling events KRT8 +PWCOMMONS IL1-mediated signaling events CEBPB +PWCOMMONS IL1-mediated signaling events PTGS2 +PWCOMMONS IL1-mediated signaling events SLC9A1 +PWCOMMONS IL1-mediated signaling events PPARGC1A +PWCOMMONS IL1-mediated signaling events MAPKAPK2 +PWCOMMONS IL1-mediated signaling events USF1 +PWCOMMONS IL1-mediated signaling events MAPKAPK5 +PWCOMMONS IL1-mediated signaling events HSPB1 +PWCOMMONS IL1-mediated signaling events LSP1 +PWCOMMONS IL1-mediated signaling events CDC25B +PWCOMMONS IL1-mediated signaling events TSC2 +PWCOMMONS IL1-mediated signaling events TCF3 +PWCOMMONS IL1-mediated signaling events RAF1 +PWCOMMONS IL1-mediated signaling events YWHAZ +PWCOMMONS IL1-mediated signaling events SRF +PWCOMMONS IL1-mediated signaling events CREB1 +PWCOMMONS IL1-mediated signaling events TH +PWCOMMONS IL1-mediated signaling events ETV1 +PWCOMMONS IL1-mediated signaling events ATF1 +PWCOMMONS IL1-mediated signaling events MEF2C +PWCOMMONS IL1-mediated signaling events MKNK1 +PWCOMMONS IL1-mediated signaling events MITF +PWCOMMONS IL1-mediated signaling events NOS2 +PWCOMMONS IL1-mediated signaling events JUN +PWCOMMONS IL1-mediated signaling events GDI1 +PWCOMMONS IL1-mediated signaling events RAB5A +PWCOMMONS IL1-mediated signaling events ATF2 +PWCOMMONS IL1-mediated signaling events EIF4EBP1 +PWCOMMONS IL1-mediated signaling events MEF2A +PWCOMMONS IL1-mediated signaling events PLA2G4A +PWCOMMONS IL1-mediated signaling events EIF4E +PWCOMMONS IL1-mediated signaling events ESR1 +PWCOMMONS IL1-mediated signaling events HBP1 +PWCOMMONS IL1-mediated signaling events TP53 +PWCOMMONS IL1-mediated signaling events DDIT3 +PWCOMMONS IL1-mediated signaling events KRT19 +PWCOMMONS IL1-mediated signaling events ELK4 +PWCOMMONS IL1-mediated signaling events ATF6 +PWCOMMONS IL1-mediated signaling events MAP2K6 +PWCOMMONS IL1-mediated signaling events DUSP1 +PWCOMMONS IL1-mediated signaling events MAP2K4 +PWCOMMONS IL1-mediated signaling events GSK3B +PWCOMMONS IL1-mediated signaling events BCL2 +PWCOMMONS IL1-mediated signaling events FKBP8 +PWCOMMONS IL1-mediated signaling events CALM1 +PWCOMMONS IL1-mediated signaling events RCAN2 +PWCOMMONS IL1-mediated signaling events YWHAQ +PWCOMMONS IL1-mediated signaling events BAX +PWCOMMONS IL1-mediated signaling events MAPK9 +PWCOMMONS IL1-mediated signaling events NFATC3 +PWCOMMONS IL1-mediated signaling events PRKACA +PWCOMMONS IL1-mediated signaling events NFATC1 +PWCOMMONS IL1-mediated signaling events KPNB1 +PWCOMMONS IL1-mediated signaling events KPNA2 +PWCOMMONS IL1-mediated signaling events CABIN1 +PWCOMMONS IL1-mediated signaling events NFATC2 +PWCOMMONS IL1-mediated signaling events CSNK1A1 +PWCOMMONS IL1-mediated signaling events MEF2D +PWCOMMONS IL1-mediated signaling events MAPK8 +PWCOMMONS IL1-mediated signaling events MAP3K1 +PWCOMMONS IL1-mediated signaling events CAMK4 +PWCOMMONS IL1-mediated signaling events BAD +PWCOMMONS IL1-mediated signaling events AKAP5 +PWCOMMONS IL1-mediated signaling events NR4A1 +PWCOMMONS IL1-mediated signaling events RCAN1 +PWCOMMONS IL1-mediated signaling events CHP +PWCOMMONS IL1-mediated signaling events PRKCZ +PWCOMMONS IL1-mediated signaling events CSNK2A1 +PWCOMMONS IL1-mediated signaling events MAPK3 +PWCOMMONS IL1-mediated signaling events NUP214 +PWCOMMONS IL1-mediated signaling events MAP3K8 +PWCOMMONS IL1-mediated signaling events E2F1 +PWCOMMONS IL1-mediated signaling events EGR3 +PWCOMMONS IL1-mediated signaling events FOS +PWCOMMONS IL1-mediated signaling events CREM +PWCOMMONS IL1-mediated signaling events CTLA4 +PWCOMMONS IL1-mediated signaling events IL2RA +PWCOMMONS IL1-mediated signaling events FOXP3 +PWCOMMONS IL1-mediated signaling events PPARG +PWCOMMONS IL1-mediated signaling events EGR4 +PWCOMMONS IL1-mediated signaling events CD40LG +PWCOMMONS IL1-mediated signaling events FASLG +PWCOMMONS IL1-mediated signaling events GATA3 +PWCOMMONS IL1-mediated signaling events IL8 +PWCOMMONS IL1-mediated signaling events FOSL1 +PWCOMMONS IL1-mediated signaling events JUNB +PWCOMMONS IL1-mediated signaling events IL5 +PWCOMMONS IL1-mediated signaling events IKZF1 +PWCOMMONS IL1-mediated signaling events GBP3 +PWCOMMONS IL1-mediated signaling events CSF2 +PWCOMMONS IL1-mediated signaling events IL2 +PWCOMMONS IL1-mediated signaling events PRKCQ +PWCOMMONS IL1-mediated signaling events IRF4 +PWCOMMONS IL1-mediated signaling events MAF +PWCOMMONS IL1-mediated signaling events POU2F1 +PWCOMMONS IL1-mediated signaling events CBLB +PWCOMMONS IL1-mediated signaling events EGR1 +PWCOMMONS IL1-mediated signaling events PTPN1 +PWCOMMONS IL1-mediated signaling events SLC3A2 +PWCOMMONS IL1-mediated signaling events IFNG +PWCOMMONS IL1-mediated signaling events ITCH +PWCOMMONS IL1-mediated signaling events IL4 +PWCOMMONS IL1-mediated signaling events EGR2 +PWCOMMONS IL1-mediated signaling events RNF128 +PWCOMMONS IL1-mediated signaling events DGKA +PWCOMMONS IL1-mediated signaling events IL3 +PWCOMMONS IL1-mediated signaling events BATF3 +PWCOMMONS IL1-mediated signaling events TBX21 +PWCOMMONS IL1-mediated signaling events BCE1 +PWCOMMONS IL1-mediated signaling events CDK4 +PWCOMMONS IL1-mediated signaling events CASP3 +PWCOMMONS IL1-mediated signaling events PTPRK +PWCOMMONS IL1-mediated signaling events PIM1 +PWCOMMONS IL1-mediated signaling events FKBP1A +PWCOMMONS IL1-mediated signaling events RIPK1 +PWCOMMONS IL1-mediated signaling events MAPK11 +PWCOMMONS IL1-mediated signaling events MAP3K12 +PWCOMMONS IL1-mediated signaling events PRKG1 +PWCOMMONS IL1-mediated signaling events CCM2 +PWCOMMONS IL1-mediated signaling events RAC1 +PWCOMMONS IL1-mediated signaling events MAP2K3 +PWCOMMONS IL1-mediated signaling events DUSP16 +PWCOMMONS IL1-mediated signaling events DUSP8 +PWCOMMONS IL1-mediated signaling events DUSP10 +PWCOMMONS IL1-mediated signaling events TOLLIP +PWCOMMONS IL1-mediated signaling events IRAK4 +PWCOMMONS IL1-mediated signaling events MYD88 +PWCOMMONS IL1-mediated signaling events IRAK3 +PWCOMMONS IL1-mediated signaling events IL1A +PWCOMMONS IL1-mediated signaling events TICAM2 +PWCOMMONS IL1-mediated signaling events UBE2V1 +PWCOMMONS IL1-mediated signaling events UBE2N +PWCOMMONS IL1-mediated signaling events +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression XPO1 +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression HDAC1 +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression RAN +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression MDM2 +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression SUMO1 +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression PIAS2 +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression RANGAP1 +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression UBE2I +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression HDAC4 +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression PIAS1 +PWCOMMONS Sumoylation by RanBP2 regulates transcriptional repression +PWCOMMONS Canonical NF-kappaB pathway CHUK +PWCOMMONS Canonical NF-kappaB pathway IKBKG +PWCOMMONS Canonical NF-kappaB pathway TNFAIP3 +PWCOMMONS Canonical NF-kappaB pathway ATM +PWCOMMONS Canonical NF-kappaB pathway NFKB1 +PWCOMMONS Canonical NF-kappaB pathway NFKBIA +PWCOMMONS Canonical NF-kappaB pathway RELA +PWCOMMONS Canonical NF-kappaB pathway CYLD +PWCOMMONS Canonical NF-kappaB pathway NOD2 +PWCOMMONS Canonical NF-kappaB pathway RIPK2 +PWCOMMONS Canonical NF-kappaB pathway BCL10 +PWCOMMONS Canonical NF-kappaB pathway TRAF6 +PWCOMMONS Canonical NF-kappaB pathway MALT1 +PWCOMMONS Canonical NF-kappaB pathway PRKCA +PWCOMMONS Canonical NF-kappaB pathway ERC1 +PWCOMMONS Canonical NF-kappaB pathway FBXW11 +PWCOMMONS Canonical NF-kappaB pathway TNFRSF1A +PWCOMMONS Canonical NF-kappaB pathway TNF +PWCOMMONS Canonical NF-kappaB pathway LCK +PWCOMMONS Canonical NF-kappaB pathway ARRB2 +PWCOMMONS Canonical NF-kappaB pathway REL +PWCOMMONS Canonical NF-kappaB pathway SYK +PWCOMMONS Canonical NF-kappaB pathway PIK3CA +PWCOMMONS Canonical NF-kappaB pathway PIK3R1 +PWCOMMONS Canonical NF-kappaB pathway BCL3 +PWCOMMONS Canonical NF-kappaB pathway MAPK14 +PWCOMMONS Canonical NF-kappaB pathway SRC +PWCOMMONS Canonical NF-kappaB pathway XPO1 +PWCOMMONS Canonical NF-kappaB pathway RAN +PWCOMMONS Canonical NF-kappaB pathway NFKB2 +PWCOMMONS Canonical NF-kappaB pathway RELB +PWCOMMONS Canonical NF-kappaB pathway MAP3K14 +PWCOMMONS Canonical NF-kappaB pathway BIRC2 +PWCOMMONS Canonical NF-kappaB pathway UBE2D3 +PWCOMMONS Canonical NF-kappaB pathway +PWCOMMONS Thromboxane A2 receptor signaling ROCK1 +PWCOMMONS Thromboxane A2 receptor signaling PRKACA +PWCOMMONS Thromboxane A2 receptor signaling PLCB2 +PWCOMMONS Thromboxane A2 receptor signaling SYK +PWCOMMONS Thromboxane A2 receptor signaling PRKG1 +PWCOMMONS Thromboxane A2 receptor signaling DNM1 +PWCOMMONS Thromboxane A2 receptor signaling PTGDR +PWCOMMONS Thromboxane A2 receptor signaling PRKCZ +PWCOMMONS Thromboxane A2 receptor signaling RAC1 +PWCOMMONS Thromboxane A2 receptor signaling GNG2 +PWCOMMONS Thromboxane A2 receptor signaling GNB1 +PWCOMMONS Thromboxane A2 receptor signaling ARR3 +PWCOMMONS Thromboxane A2 receptor signaling TBXA2R +PWCOMMONS Thromboxane A2 receptor signaling SLC9A3R1 +PWCOMMONS Thromboxane A2 receptor signaling GNB5 +PWCOMMONS Thromboxane A2 receptor signaling NOS3 +PWCOMMONS Thromboxane A2 receptor signaling GNAI2 +PWCOMMONS Thromboxane A2 receptor signaling ARRB2 +PWCOMMONS Thromboxane A2 receptor signaling AKT1 +PWCOMMONS Thromboxane A2 receptor signaling ARHGEF1 +PWCOMMONS Thromboxane A2 receptor signaling RAB11A +PWCOMMONS Thromboxane A2 receptor signaling EGFR +PWCOMMONS Thromboxane A2 receptor signaling EGF +PWCOMMONS Thromboxane A2 receptor signaling ICAM1 +PWCOMMONS Thromboxane A2 receptor signaling PTGIR +PWCOMMONS Thromboxane A2 receptor signaling TGM2 +PWCOMMONS Thromboxane A2 receptor signaling SELE +PWCOMMONS Thromboxane A2 receptor signaling VCAM1 +PWCOMMONS Thromboxane A2 receptor signaling +PWCOMMONS VEGFR1 specific signals PLCG1 +PWCOMMONS VEGFR1 specific signals PDPK1 +PWCOMMONS VEGFR1 specific signals FLT1 +PWCOMMONS VEGFR1 specific signals VEGFB +PWCOMMONS VEGFR1 specific signals PGF +PWCOMMONS VEGFR1 specific signals PIK3CA +PWCOMMONS VEGFR1 specific signals PIK3R1 +PWCOMMONS VEGFR1 specific signals VEGFA +PWCOMMONS VEGFR1 specific signals CD2AP +PWCOMMONS VEGFR1 specific signals CBL +PWCOMMONS VEGFR1 specific signals AKT1 +PWCOMMONS VEGFR1 specific signals CALM1 +PWCOMMONS VEGFR1 specific signals NRP1 +PWCOMMONS VEGFR1 specific signals HIF1A +PWCOMMONS VEGFR1 specific signals NOS3 +PWCOMMONS VEGFR1 specific signals PRKACA +PWCOMMONS VEGFR1 specific signals NCK1 +PWCOMMONS VEGFR1 specific signals RASA1 +PWCOMMONS VEGFR1 specific signals PTPN11 +PWCOMMONS VEGFR1 specific signals NRP2 +PWCOMMONS VEGFR1 specific signals HSP90AA1 +PWCOMMONS VEGFR1 specific signals SHC2 +PWCOMMONS VEGFR1 specific signals CAV1 +PWCOMMONS VEGFR1 specific signals GAB1 +PWCOMMONS VEGFR1 specific signals +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 JAK2 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 ITGB1 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 GIT1 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 PXN +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 ITGA4 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 ARF6 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 CD44 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 ITGB7 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 PTK2 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 MADCAM1 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 BCAR1 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 CRK +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 DOCK1 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 PIK3CA +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 PIK3R1 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 RHOA +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 SRC +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 EPO +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 EPOR +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 VCAM1 +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 CRKL +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 CBL +PWCOMMONS Paxillin-independent events mediated by a4b1 and a4b7 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes BCL2 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes FKBP8 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CALM1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes RCAN2 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes YWHAQ +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes BAX +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes MAPK9 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes NFATC3 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes PRKACA +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes NFATC1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes KPNB1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes KPNA2 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CABIN1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes NFATC2 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CSNK1A1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes MEF2D +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes MAPK8 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes MAP3K1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CAMK4 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes BAD +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes AKAP5 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes NR4A1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes RCAN1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes MAPK14 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CHP +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes PRKCZ +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CSNK2A1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes MAPK3 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes XPO1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes RAN +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes NUP214 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes MAP3K8 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes E2F1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes EGR3 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes FOS +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CREM +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes JUN +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CTLA4 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes TNF +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes IL2RA +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes FOXP3 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes PPARG +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes EGR4 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CD40LG +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes FASLG +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes GATA3 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes IL8 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes FOSL1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes JUNB +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes IL5 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes IKZF1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes GBP3 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CSF2 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes IL2 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes PRKCQ +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes IRF4 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes MAF +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes POU2F1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CBLB +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes EGR1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes PTPN1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes SLC3A2 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes PTGS2 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes IFNG +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes ITCH +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes IL4 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes EGR2 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes RNF128 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes DGKA +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes IL3 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes BATF3 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes TBX21 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes BCE1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CDK4 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes CASP3 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes PTPRK +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes PIM1 +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes FKBP1A +PWCOMMONS Role of Calcineurin-dependent NFAT signaling in lymphocytes +PWCOMMONS Class I PI3K signaling events mediated by Akt MAP3K5 +PWCOMMONS Class I PI3K signaling events mediated by Akt AKT1 +PWCOMMONS Class I PI3K signaling events mediated by Akt CHUK +PWCOMMONS Class I PI3K signaling events mediated by Akt IKBKB +PWCOMMONS Class I PI3K signaling events mediated by Akt IKBKG +PWCOMMONS Class I PI3K signaling events mediated by Akt TNFAIP3 +PWCOMMONS Class I PI3K signaling events mediated by Akt ATM +PWCOMMONS Class I PI3K signaling events mediated by Akt NFKB1 +PWCOMMONS Class I PI3K signaling events mediated by Akt NFKBIA +PWCOMMONS Class I PI3K signaling events mediated by Akt RELA +PWCOMMONS Class I PI3K signaling events mediated by Akt CYLD +PWCOMMONS Class I PI3K signaling events mediated by Akt NOD2 +PWCOMMONS Class I PI3K signaling events mediated by Akt RIPK2 +PWCOMMONS Class I PI3K signaling events mediated by Akt BCL10 +PWCOMMONS Class I PI3K signaling events mediated by Akt TRAF6 +PWCOMMONS Class I PI3K signaling events mediated by Akt MALT1 +PWCOMMONS Class I PI3K signaling events mediated by Akt PRKCA +PWCOMMONS Class I PI3K signaling events mediated by Akt ERC1 +PWCOMMONS Class I PI3K signaling events mediated by Akt FBXW11 +PWCOMMONS Class I PI3K signaling events mediated by Akt TNFRSF1A +PWCOMMONS Class I PI3K signaling events mediated by Akt TNF +PWCOMMONS Class I PI3K signaling events mediated by Akt LCK +PWCOMMONS Class I PI3K signaling events mediated by Akt ARRB2 +PWCOMMONS Class I PI3K signaling events mediated by Akt REL +PWCOMMONS Class I PI3K signaling events mediated by Akt SYK +PWCOMMONS Class I PI3K signaling events mediated by Akt PIK3CA +PWCOMMONS Class I PI3K signaling events mediated by Akt PIK3R1 +PWCOMMONS Class I PI3K signaling events mediated by Akt BCL3 +PWCOMMONS Class I PI3K signaling events mediated by Akt MAPK14 +PWCOMMONS Class I PI3K signaling events mediated by Akt SRC +PWCOMMONS Class I PI3K signaling events mediated by Akt XPO1 +PWCOMMONS Class I PI3K signaling events mediated by Akt RAN +PWCOMMONS Class I PI3K signaling events mediated by Akt NFKB2 +PWCOMMONS Class I PI3K signaling events mediated by Akt RELB +PWCOMMONS Class I PI3K signaling events mediated by Akt MAP3K14 +PWCOMMONS Class I PI3K signaling events mediated by Akt BIRC2 +PWCOMMONS Class I PI3K signaling events mediated by Akt UBE2D3 +PWCOMMONS Class I PI3K signaling events mediated by Akt CDKN1A +PWCOMMONS Class I PI3K signaling events mediated by Akt AKT2 +PWCOMMONS Class I PI3K signaling events mediated by Akt HSP90AA1 +PWCOMMONS Class I PI3K signaling events mediated by Akt PDPK1 +PWCOMMONS Class I PI3K signaling events mediated by Akt RAF1 +PWCOMMONS Class I PI3K signaling events mediated by Akt TP53 +PWCOMMONS Class I PI3K signaling events mediated by Akt CASP9 +PWCOMMONS Class I PI3K signaling events mediated by Akt KPNA1 +PWCOMMONS Class I PI3K signaling events mediated by Akt CDKN1B +PWCOMMONS Class I PI3K signaling events mediated by Akt MDM2 +PWCOMMONS Class I PI3K signaling events mediated by Akt TSC2 +PWCOMMONS Class I PI3K signaling events mediated by Akt TBC1D4 +PWCOMMONS Class I PI3K signaling events mediated by Akt PRKACA +PWCOMMONS Class I PI3K signaling events mediated by Akt AKT1S1 +PWCOMMONS Class I PI3K signaling events mediated by Akt TSC1 +PWCOMMONS Class I PI3K signaling events mediated by Akt FRAP1 +PWCOMMONS Class I PI3K signaling events mediated by Akt RHEB +PWCOMMONS Class I PI3K signaling events mediated by Akt LST8 +PWCOMMONS Class I PI3K signaling events mediated by Akt RAPTOR +PWCOMMONS Class I PI3K signaling events mediated by Akt BAD +PWCOMMONS Class I PI3K signaling events mediated by Akt YWHAZ +PWCOMMONS Class I PI3K signaling events mediated by Akt INSR +PWCOMMONS Class I PI3K signaling events mediated by Akt INS +PWCOMMONS Class I PI3K signaling events mediated by Akt PPP2R5D +PWCOMMONS Class I PI3K signaling events mediated by Akt FKBP1A +PWCOMMONS Class I PI3K signaling events mediated by Akt IRS1 +PWCOMMONS Class I PI3K signaling events mediated by Akt EIF4B +PWCOMMONS Class I PI3K signaling events mediated by Akt EIF4E +PWCOMMONS Class I PI3K signaling events mediated by Akt EIF4G1 +PWCOMMONS Class I PI3K signaling events mediated by Akt RPS6KB1 +PWCOMMONS Class I PI3K signaling events mediated by Akt EIF3A +PWCOMMONS Class I PI3K signaling events mediated by Akt RPS6 +PWCOMMONS Class I PI3K signaling events mediated by Akt EEF2 +PWCOMMONS Class I PI3K signaling events mediated by Akt EIF4EBP1 +PWCOMMONS Class I PI3K signaling events mediated by Akt PTEN +PWCOMMONS Class I PI3K signaling events mediated by Akt MKNK1 +PWCOMMONS Class I PI3K signaling events mediated by Akt PRKAB1 +PWCOMMONS Class I PI3K signaling events mediated by Akt AKT3 +PWCOMMONS Class I PI3K signaling events mediated by Akt CDKN2A +PWCOMMONS Class I PI3K signaling events mediated by Akt PRKDC +PWCOMMONS Class I PI3K signaling events mediated by Akt RICTOR +PWCOMMONS Class I PI3K signaling events mediated by Akt MAPKAP1 +PWCOMMONS Class I PI3K signaling events mediated by Akt +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling PTK2 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling BMX +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling ANGPT1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling TEK +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling ITGB1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling ITGA5 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling RAC1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling PTPN11 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling FES +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling PIK3CA +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling PIK3R1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling FN1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling PAK1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling DOK2 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling NCK1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling CRK +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling MAPK14 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling RELA +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling F2 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling FGF2 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling ELF2 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling ANGPT2 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling FOXO1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling STAT5A +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling ELF1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling AKT1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling MAPK8 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling FYN +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling PLD2 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling GRB7 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling SHC1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling TNIP2 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling ETS1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling TNF +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling CDKN1A +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling ELK1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling NOS3 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling RPS6KB1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling GRB2 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling AGTR1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling RASA1 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling GRB14 +PWCOMMONS Angiopoietin receptor Tie2-mediated signaling +PWCOMMONS Ras signaling in the CD4+ TCR pathway RCAN1 +PWCOMMONS Ras signaling in the CD4+ TCR pathway IL2 +PWCOMMONS Ras signaling in the CD4+ TCR pathway FOS +PWCOMMONS Ras signaling in the CD4+ TCR pathway CREM +PWCOMMONS Ras signaling in the CD4+ TCR pathway JUN +PWCOMMONS Ras signaling in the CD4+ TCR pathway IL2RA +PWCOMMONS Ras signaling in the CD4+ TCR pathway CHP +PWCOMMONS Ras signaling in the CD4+ TCR pathway CALM1 +PWCOMMONS Ras signaling in the CD4+ TCR pathway PTGS2 +PWCOMMONS Ras signaling in the CD4+ TCR pathway FKBP1A +PWCOMMONS Ras signaling in the CD4+ TCR pathway CABIN1 +PWCOMMONS Ras signaling in the CD4+ TCR pathway IL3 +PWCOMMONS Ras signaling in the CD4+ TCR pathway CD40LG +PWCOMMONS Ras signaling in the CD4+ TCR pathway CSF2 +PWCOMMONS Ras signaling in the CD4+ TCR pathway BATF3 +PWCOMMONS Ras signaling in the CD4+ TCR pathway IL4 +PWCOMMONS Ras signaling in the CD4+ TCR pathway RCAN2 +PWCOMMONS Ras signaling in the CD4+ TCR pathway FOSL1 +PWCOMMONS Ras signaling in the CD4+ TCR pathway JUNB +PWCOMMONS Ras signaling in the CD4+ TCR pathway FASLG +PWCOMMONS Ras signaling in the CD4+ TCR pathway POU2F1 +PWCOMMONS Ras signaling in the CD4+ TCR pathway IFNG +PWCOMMONS Ras signaling in the CD4+ TCR pathway PRKACA +PWCOMMONS Ras signaling in the CD4+ TCR pathway AKAP5 +PWCOMMONS Ras signaling in the CD4+ TCR pathway MAP3K8 +PWCOMMONS Ras signaling in the CD4+ TCR pathway ELK1 +PWCOMMONS Ras signaling in the CD4+ TCR pathway BRAF +PWCOMMONS Ras signaling in the CD4+ TCR pathway RAF1 +PWCOMMONS Ras signaling in the CD4+ TCR pathway PRKCA +PWCOMMONS Ras signaling in the CD4+ TCR pathway PRKCB +PWCOMMONS Ras signaling in the CD4+ TCR pathway PTPN7 +PWCOMMONS Ras signaling in the CD4+ TCR pathway +PWCOMMONS Aurora C signaling AURKB +PWCOMMONS Aurora C signaling AURKC +PWCOMMONS Aurora C signaling H3F3A +PWCOMMONS Aurora C signaling +PWCOMMONS Effects of Botulinum toxin STXBP1 +PWCOMMONS Effects of Botulinum toxin STX1A +PWCOMMONS Effects of Botulinum toxin VAMP2 +PWCOMMONS Effects of Botulinum toxin RAB3GAP2 +PWCOMMONS Effects of Botulinum toxin RIMS1 +PWCOMMONS Effects of Botulinum toxin UNC13B +PWCOMMONS Effects of Botulinum toxin +PWCOMMONS Hedgehog signaling events mediated by Gli proteins GLI1 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins GLI3 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins GLI2 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins IFT172 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins MAP2K1 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins SPOP +PWCOMMONS Hedgehog signaling events mediated by Gli proteins SMO +PWCOMMONS Hedgehog signaling events mediated by Gli proteins ARRB2 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins SUFU +PWCOMMONS Hedgehog signaling events mediated by Gli proteins LGALS3 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins MTSS1 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins PRKCD +PWCOMMONS Hedgehog signaling events mediated by Gli proteins KIF3A +PWCOMMONS Hedgehog signaling events mediated by Gli proteins SHH +PWCOMMONS Hedgehog signaling events mediated by Gli proteins PRKACA +PWCOMMONS Hedgehog signaling events mediated by Gli proteins PTCH1 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins AKT1 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins PIAS1 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins XPO1 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins STK36 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins FBXW11 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins SAP18 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins SIN3A +PWCOMMONS Hedgehog signaling events mediated by Gli proteins HDAC2 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins RBBP7 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins HDAC1 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins SAP30 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins RBBP4 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins SIN3B +PWCOMMONS Hedgehog signaling events mediated by Gli proteins RAB23 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins GNG2 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins GNB1 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins CREBBP +PWCOMMONS Hedgehog signaling events mediated by Gli proteins FOXA2 +PWCOMMONS Hedgehog signaling events mediated by Gli proteins +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha TFF3 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha ARNT +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha SP1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha AKT1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha SMAD3 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha SMAD4 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha PKM2 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha PGM1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha HK1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha NCOA2 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha TERT +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha TF +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha FECH +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha PFKFB3 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha HK2 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha NT5E +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha ID2 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha MCL1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha ALDOA +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha PGK1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha EGLN1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha LDHA +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha SERPINE1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha ENG +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha CITED2 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha BNIP3 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha ADM +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha BHLHE40 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha HDAC7 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha COPS5 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha CREB1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha CA9 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha CXCR4 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha SLC2A1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha EGLN3 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha ITGB2 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha NOS2 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha NCOA1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha EPO +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha LEP +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha ABCB1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha CP +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha HNF4A +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha HMOX1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha GATA2 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha IGFBP1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha GCK +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha ETS1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha ABCG2 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha CXCL12 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha NDRG1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha FURIN +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha EDN1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha ENO1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha BHLHE41 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha NPM1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha FOS +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha JUN +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha TFRC +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha ADFP +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha VEGFA +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha PFKL +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha ARD1A +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha TP53 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha HIF3A +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha HSP90AA1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha TCEB1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha GNB2L1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha TCEB2 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha CUL2 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha RBX1 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha VHL +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha HIF1AN +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha CDKN2A +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha OS9 +PWCOMMONS Hypoxic and oxygen homeostasis regulation of HIF-1-alpha +PWCOMMONS FOXA2 and FOXA3 transcription factor networks ALDOB +PWCOMMONS FOXA2 and FOXA3 transcription factor networks NKX2-1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks HNF4A +PWCOMMONS FOXA2 and FOXA3 transcription factor networks GCK +PWCOMMONS FOXA2 and FOXA3 transcription factor networks FOXA3 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks HMGCS1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks FOXA1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks TTR +PWCOMMONS FOXA2 and FOXA3 transcription factor networks PCK1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks F2 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks G6PC +PWCOMMONS FOXA2 and FOXA3 transcription factor networks NF1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks HNF1A +PWCOMMONS FOXA2 and FOXA3 transcription factor networks PKLR +PWCOMMONS FOXA2 and FOXA3 transcription factor networks AFP +PWCOMMONS FOXA2 and FOXA3 transcription factor networks ABCC8 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks SLC2A2 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks ALAS1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks HADH +PWCOMMONS FOXA2 and FOXA3 transcription factor networks FOXF1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks CREB1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks ACADVL +PWCOMMONS FOXA2 and FOXA3 transcription factor networks PDX1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks TAT +PWCOMMONS FOXA2 and FOXA3 transcription factor networks ACADM +PWCOMMONS FOXA2 and FOXA3 transcription factor networks APOA1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks INS +PWCOMMONS FOXA2 and FOXA3 transcription factor networks KCNJ11 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks TFRC +PWCOMMONS FOXA2 and FOXA3 transcription factor networks NR3C1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks ALB +PWCOMMONS FOXA2 and FOXA3 transcription factor networks AKT1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks IGFBP1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks UCP2 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks SP1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks BDH1 +PWCOMMONS FOXA2 and FOXA3 transcription factor networks +PWCOMMONS Signaling events mediated by PTP1B INSR +PWCOMMONS Signaling events mediated by PTP1B INS +PWCOMMONS Signaling events mediated by PTP1B CSN2 +PWCOMMONS Signaling events mediated by PTP1B SRC +PWCOMMONS Signaling events mediated by PTP1B LEP +PWCOMMONS Signaling events mediated by PTP1B LEPR +PWCOMMONS Signaling events mediated by PTP1B JAK2 +PWCOMMONS Signaling events mediated by PTP1B PRL +PWCOMMONS Signaling events mediated by PTP1B PRLR +PWCOMMONS Signaling events mediated by PTP1B PDGFRB +PWCOMMONS Signaling events mediated by PTP1B PTPN1 +PWCOMMONS Signaling events mediated by PTP1B CSF1R +PWCOMMONS Signaling events mediated by PTP1B CSF1 +PWCOMMONS Signaling events mediated by PTP1B EGFR +PWCOMMONS Signaling events mediated by PTP1B EGF +PWCOMMONS Signaling events mediated by PTP1B STAT5B +PWCOMMONS Signaling events mediated by PTP1B CAV1 +PWCOMMONS Signaling events mediated by PTP1B RHOA +PWCOMMONS Signaling events mediated by PTP1B ITGB3 +PWCOMMONS Signaling events mediated by PTP1B ITGA2B +PWCOMMONS Signaling events mediated by PTP1B STAT3 +PWCOMMONS Signaling events mediated by PTP1B FCGR2A +PWCOMMONS Signaling events mediated by PTP1B CAPN1 +PWCOMMONS Signaling events mediated by PTP1B STAT5A +PWCOMMONS Signaling events mediated by PTP1B LAT +PWCOMMONS Signaling events mediated by PTP1B NOX4 +PWCOMMONS Signaling events mediated by PTP1B BCAR1 +PWCOMMONS Signaling events mediated by PTP1B CRK +PWCOMMONS Signaling events mediated by PTP1B SOCS3 +PWCOMMONS Signaling events mediated by PTP1B AKT1 +PWCOMMONS Signaling events mediated by PTP1B TXN +PWCOMMONS Signaling events mediated by PTP1B IRS1 +PWCOMMONS Signaling events mediated by PTP1B SHC1 +PWCOMMONS Signaling events mediated by PTP1B PIK3CA +PWCOMMONS Signaling events mediated by PTP1B PIK3R1 +PWCOMMONS Signaling events mediated by PTP1B CDH2 +PWCOMMONS Signaling events mediated by PTP1B GRB2 +PWCOMMONS Signaling events mediated by PTP1B FER +PWCOMMONS Signaling events mediated by PTP1B TRPV6 +PWCOMMONS Signaling events mediated by PTP1B YBX1 +PWCOMMONS Signaling events mediated by PTP1B TYK2 +PWCOMMONS Signaling events mediated by PTP1B CSK +PWCOMMONS Signaling events mediated by PTP1B +PWCOMMONS BMP receptor signaling SMAD1 +PWCOMMONS BMP receptor signaling BMP7 +PWCOMMONS BMP receptor signaling SMURF1 +PWCOMMONS BMP receptor signaling BMPR2 +PWCOMMONS BMP receptor signaling XIAP +PWCOMMONS BMP receptor signaling NUP214 +PWCOMMONS BMP receptor signaling SMAD9 +PWCOMMONS BMP receptor signaling SMURF2 +PWCOMMONS BMP receptor signaling SMAD5 +PWCOMMONS BMP receptor signaling MAPK1 +PWCOMMONS BMP receptor signaling MAP3K7IP2 +PWCOMMONS BMP receptor signaling CALM1 +PWCOMMONS BMP receptor signaling MAP3K5 +PWCOMMONS BMP receptor signaling CAMK2B +PWCOMMONS BMP receptor signaling MAP3K6 +PWCOMMONS BMP receptor signaling MAP3K10 +PWCOMMONS BMP receptor signaling TRAF2 +PWCOMMONS BMP receptor signaling MAP3K4 +PWCOMMONS BMP receptor signaling MAP2K3 +PWCOMMONS BMP receptor signaling MAP3K7 +PWCOMMONS BMP receptor signaling MAP2K6 +PWCOMMONS BMP receptor signaling TRAF6 +PWCOMMONS BMP receptor signaling TXN +PWCOMMONS BMP receptor signaling MAPKAPK3 +PWCOMMONS BMP receptor signaling KRT8 +PWCOMMONS BMP receptor signaling CEBPB +PWCOMMONS BMP receptor signaling PTGS2 +PWCOMMONS BMP receptor signaling SLC9A1 +PWCOMMONS BMP receptor signaling PPARGC1A +PWCOMMONS BMP receptor signaling MAPKAPK2 +PWCOMMONS BMP receptor signaling USF1 +PWCOMMONS BMP receptor signaling MAPKAPK5 +PWCOMMONS BMP receptor signaling HSPB1 +PWCOMMONS BMP receptor signaling LSP1 +PWCOMMONS BMP receptor signaling CDC25B +PWCOMMONS BMP receptor signaling TSC2 +PWCOMMONS BMP receptor signaling TCF3 +PWCOMMONS BMP receptor signaling RAF1 +PWCOMMONS BMP receptor signaling YWHAZ +PWCOMMONS BMP receptor signaling SRF +PWCOMMONS BMP receptor signaling CREB1 +PWCOMMONS BMP receptor signaling MAPK14 +PWCOMMONS BMP receptor signaling TH +PWCOMMONS BMP receptor signaling ETV1 +PWCOMMONS BMP receptor signaling ATF1 +PWCOMMONS BMP receptor signaling MEF2C +PWCOMMONS BMP receptor signaling MKNK1 +PWCOMMONS BMP receptor signaling MITF +PWCOMMONS BMP receptor signaling NOS2 +PWCOMMONS BMP receptor signaling JUN +PWCOMMONS BMP receptor signaling GDI1 +PWCOMMONS BMP receptor signaling RAB5A +PWCOMMONS BMP receptor signaling ATF2 +PWCOMMONS BMP receptor signaling EIF4EBP1 +PWCOMMONS BMP receptor signaling MEF2A +PWCOMMONS BMP receptor signaling PLA2G4A +PWCOMMONS BMP receptor signaling EIF4E +PWCOMMONS BMP receptor signaling ESR1 +PWCOMMONS BMP receptor signaling HBP1 +PWCOMMONS BMP receptor signaling TP53 +PWCOMMONS BMP receptor signaling DDIT3 +PWCOMMONS BMP receptor signaling KRT19 +PWCOMMONS BMP receptor signaling ELK4 +PWCOMMONS BMP receptor signaling ATF6 +PWCOMMONS BMP receptor signaling DUSP1 +PWCOMMONS BMP receptor signaling MAP2K4 +PWCOMMONS BMP receptor signaling GSK3B +PWCOMMONS BMP receptor signaling BCL2 +PWCOMMONS BMP receptor signaling FKBP8 +PWCOMMONS BMP receptor signaling RCAN2 +PWCOMMONS BMP receptor signaling YWHAQ +PWCOMMONS BMP receptor signaling BAX +PWCOMMONS BMP receptor signaling MAPK9 +PWCOMMONS BMP receptor signaling NFATC3 +PWCOMMONS BMP receptor signaling PRKACA +PWCOMMONS BMP receptor signaling NFATC1 +PWCOMMONS BMP receptor signaling KPNB1 +PWCOMMONS BMP receptor signaling KPNA2 +PWCOMMONS BMP receptor signaling CABIN1 +PWCOMMONS BMP receptor signaling NFATC2 +PWCOMMONS BMP receptor signaling CSNK1A1 +PWCOMMONS BMP receptor signaling MEF2D +PWCOMMONS BMP receptor signaling MAPK8 +PWCOMMONS BMP receptor signaling MAP3K1 +PWCOMMONS BMP receptor signaling CAMK4 +PWCOMMONS BMP receptor signaling BAD +PWCOMMONS BMP receptor signaling AKAP5 +PWCOMMONS BMP receptor signaling NR4A1 +PWCOMMONS BMP receptor signaling RCAN1 +PWCOMMONS BMP receptor signaling CHP +PWCOMMONS BMP receptor signaling PRKCZ +PWCOMMONS BMP receptor signaling CSNK2A1 +PWCOMMONS BMP receptor signaling MAPK3 +PWCOMMONS BMP receptor signaling XPO1 +PWCOMMONS BMP receptor signaling RAN +PWCOMMONS BMP receptor signaling MAP3K8 +PWCOMMONS BMP receptor signaling E2F1 +PWCOMMONS BMP receptor signaling EGR3 +PWCOMMONS BMP receptor signaling FOS +PWCOMMONS BMP receptor signaling CREM +PWCOMMONS BMP receptor signaling CTLA4 +PWCOMMONS BMP receptor signaling TNF +PWCOMMONS BMP receptor signaling IL2RA +PWCOMMONS BMP receptor signaling FOXP3 +PWCOMMONS BMP receptor signaling PPARG +PWCOMMONS BMP receptor signaling EGR4 +PWCOMMONS BMP receptor signaling CD40LG +PWCOMMONS BMP receptor signaling FASLG +PWCOMMONS BMP receptor signaling GATA3 +PWCOMMONS BMP receptor signaling IL8 +PWCOMMONS BMP receptor signaling FOSL1 +PWCOMMONS BMP receptor signaling JUNB +PWCOMMONS BMP receptor signaling IL5 +PWCOMMONS BMP receptor signaling IKZF1 +PWCOMMONS BMP receptor signaling GBP3 +PWCOMMONS BMP receptor signaling CSF2 +PWCOMMONS BMP receptor signaling IL2 +PWCOMMONS BMP receptor signaling PRKCQ +PWCOMMONS BMP receptor signaling IRF4 +PWCOMMONS BMP receptor signaling MAF +PWCOMMONS BMP receptor signaling POU2F1 +PWCOMMONS BMP receptor signaling CBLB +PWCOMMONS BMP receptor signaling EGR1 +PWCOMMONS BMP receptor signaling PTPN1 +PWCOMMONS BMP receptor signaling SLC3A2 +PWCOMMONS BMP receptor signaling IFNG +PWCOMMONS BMP receptor signaling ITCH +PWCOMMONS BMP receptor signaling IL4 +PWCOMMONS BMP receptor signaling EGR2 +PWCOMMONS BMP receptor signaling RNF128 +PWCOMMONS BMP receptor signaling DGKA +PWCOMMONS BMP receptor signaling IL3 +PWCOMMONS BMP receptor signaling BATF3 +PWCOMMONS BMP receptor signaling TBX21 +PWCOMMONS BMP receptor signaling BCE1 +PWCOMMONS BMP receptor signaling CDK4 +PWCOMMONS BMP receptor signaling CASP3 +PWCOMMONS BMP receptor signaling PTPRK +PWCOMMONS BMP receptor signaling PIM1 +PWCOMMONS BMP receptor signaling FKBP1A +PWCOMMONS BMP receptor signaling RIPK1 +PWCOMMONS BMP receptor signaling MAP3K3 +PWCOMMONS BMP receptor signaling MAPK11 +PWCOMMONS BMP receptor signaling MAP3K12 +PWCOMMONS BMP receptor signaling MAP3K7IP1 +PWCOMMONS BMP receptor signaling PRKG1 +PWCOMMONS BMP receptor signaling CCM2 +PWCOMMONS BMP receptor signaling RAC1 +PWCOMMONS BMP receptor signaling DUSP16 +PWCOMMONS BMP receptor signaling DUSP8 +PWCOMMONS BMP receptor signaling DUSP10 +PWCOMMONS BMP receptor signaling MAPK13 +PWCOMMONS BMP receptor signaling MLTK +PWCOMMONS BMP receptor signaling STMN1 +PWCOMMONS BMP receptor signaling MAPK12 +PWCOMMONS BMP receptor signaling SNTA1 +PWCOMMONS BMP receptor signaling PKN1 +PWCOMMONS BMP receptor signaling CCND1 +PWCOMMONS BMP receptor signaling EEF2K +PWCOMMONS BMP receptor signaling ATM +PWCOMMONS BMP receptor signaling BAMBI +PWCOMMONS BMP receptor signaling AHSG +PWCOMMONS BMP receptor signaling SMAD7 +PWCOMMONS BMP receptor signaling SKI +PWCOMMONS BMP receptor signaling CHRDL1 +PWCOMMONS BMP receptor signaling SOSTDC1 +PWCOMMONS BMP receptor signaling BMP6 +PWCOMMONS BMP receptor signaling PPM1A +PWCOMMONS BMP receptor signaling GREM1 +PWCOMMONS BMP receptor signaling CHRD +PWCOMMONS BMP receptor signaling ZFYVE16 +PWCOMMONS BMP receptor signaling PPP1CA +PWCOMMONS BMP receptor signaling PPP1R15A +PWCOMMONS BMP receptor signaling FST +PWCOMMONS BMP receptor signaling NOG +PWCOMMONS BMP receptor signaling CER1 +PWCOMMONS BMP receptor signaling +PWCOMMONS EPHB forward signaling EPHB3 +PWCOMMONS EPHB forward signaling EPHB2 +PWCOMMONS EPHB forward signaling KALRN +PWCOMMONS EPHB forward signaling RAC1 +PWCOMMONS EPHB forward signaling PXN +PWCOMMONS EPHB forward signaling EPHB1 +PWCOMMONS EPHB forward signaling SRC +PWCOMMONS EPHB forward signaling RASA1 +PWCOMMONS EPHB forward signaling PIK3CA +PWCOMMONS EPHB forward signaling PIK3R1 +PWCOMMONS EPHB forward signaling GRB2 +PWCOMMONS EPHB forward signaling PTK2 +PWCOMMONS EPHB forward signaling NCK1 +PWCOMMONS EPHB forward signaling RRAS +PWCOMMONS EPHB forward signaling WASL +PWCOMMONS EPHB forward signaling ITSN1 +PWCOMMONS EPHB forward signaling GRB7 +PWCOMMONS EPHB forward signaling MAP2K1 +PWCOMMONS EPHB forward signaling SYNJ1 +PWCOMMONS EPHB forward signaling TF +PWCOMMONS EPHB forward signaling RHOA +PWCOMMONS EPHB forward signaling EPHB4 +PWCOMMONS EPHB forward signaling EFNB2 +PWCOMMONS EPHB forward signaling MAP4K4 +PWCOMMONS EPHB forward signaling HRAS +PWCOMMONS EPHB forward signaling ROCK1 +PWCOMMONS EPHB forward signaling GRIA1 +PWCOMMONS EPHB forward signaling EFNA5 +PWCOMMONS EPHB forward signaling PAK1 +PWCOMMONS EPHB forward signaling DNM1 +PWCOMMONS EPHB forward signaling +PWCOMMONS PDGFR-beta signaling pathway S1PR1 +PWCOMMONS PDGFR-beta signaling pathway GRB10 +PWCOMMONS PDGFR-beta signaling pathway PLCG1 +PWCOMMONS PDGFR-beta signaling pathway SPHK1 +PWCOMMONS PDGFR-beta signaling pathway HRAS +PWCOMMONS PDGFR-beta signaling pathway ABL1 +PWCOMMONS PDGFR-beta signaling pathway AKT1 +PWCOMMONS PDGFR-beta signaling pathway MYC +PWCOMMONS PDGFR-beta signaling pathway BCAR1 +PWCOMMONS PDGFR-beta signaling pathway HIF1A +PWCOMMONS PDGFR-beta signaling pathway RAC1 +PWCOMMONS PDGFR-beta signaling pathway PTPN11 +PWCOMMONS PDGFR-beta signaling pathway PTPN1 +PWCOMMONS PDGFR-beta signaling pathway PTEN +PWCOMMONS PDGFR-beta signaling pathway VAV2 +PWCOMMONS PDGFR-beta signaling pathway PIK3CA +PWCOMMONS PDGFR-beta signaling pathway PIK3R1 +PWCOMMONS PDGFR-beta signaling pathway CBL +PWCOMMONS PDGFR-beta signaling pathway SNX15 +PWCOMMONS PDGFR-beta signaling pathway DNM2 +PWCOMMONS PDGFR-beta signaling pathway GAB1 +PWCOMMONS PDGFR-beta signaling pathway GRB7 +PWCOMMONS PDGFR-beta signaling pathway ACP1 +PWCOMMONS PDGFR-beta signaling pathway FER +PWCOMMONS PDGFR-beta signaling pathway PDGFB +PWCOMMONS PDGFR-beta signaling pathway LRP1 +PWCOMMONS PDGFR-beta signaling pathway PTPN2 +PWCOMMONS PDGFR-beta signaling pathway SOS1 +PWCOMMONS PDGFR-beta signaling pathway SHC1 +PWCOMMONS PDGFR-beta signaling pathway GRB2 +PWCOMMONS PDGFR-beta signaling pathway CSK +PWCOMMONS PDGFR-beta signaling pathway DOK1 +PWCOMMONS PDGFR-beta signaling pathway SHB +PWCOMMONS PDGFR-beta signaling pathway SH2B2 +PWCOMMONS PDGFR-beta signaling pathway PTPRJ +PWCOMMONS PDGFR-beta signaling pathway PRKCD +PWCOMMONS PDGFR-beta signaling pathway RASA1 +PWCOMMONS PDGFR-beta signaling pathway +PWCOMMONS VEGFR3 signaling in lymphatic endothelium SOS1 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium GRB2 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium FLT4 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium ITGB1 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium COL1A1 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium COL1A2 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium ITGA1 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium FIGF +PWCOMMONS VEGFR3 signaling in lymphatic endothelium ITGA4 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium FN1 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium ITGA2 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium PIK3CA +PWCOMMONS VEGFR3 signaling in lymphatic endothelium PIK3R1 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium MAP2K4 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium CRK +PWCOMMONS VEGFR3 signaling in lymphatic endothelium AKT1 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium ITGA5 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium RPS6KA1 +PWCOMMONS VEGFR3 signaling in lymphatic endothelium +PWCOMMONS IL27-mediated signaling events IL6ST +PWCOMMONS IL27-mediated signaling events JAK2 +PWCOMMONS IL27-mediated signaling events EBI3 +PWCOMMONS IL27-mediated signaling events TYK2 +PWCOMMONS IL27-mediated signaling events IL27 +PWCOMMONS IL27-mediated signaling events IL27RA +PWCOMMONS IL27-mediated signaling events STAT1 +PWCOMMONS IL27-mediated signaling events IL2 +PWCOMMONS IL27-mediated signaling events IL18 +PWCOMMONS IL27-mediated signaling events IL12B +PWCOMMONS IL27-mediated signaling events IL12A +PWCOMMONS IL27-mediated signaling events IL12RB1 +PWCOMMONS IL27-mediated signaling events IL12RB2 +PWCOMMONS IL27-mediated signaling events TNF +PWCOMMONS IL27-mediated signaling events STAT2 +PWCOMMONS IL27-mediated signaling events GATA3 +PWCOMMONS IL27-mediated signaling events JAK1 +PWCOMMONS IL27-mediated signaling events IL6 +PWCOMMONS IL27-mediated signaling events IFNG +PWCOMMONS IL27-mediated signaling events TBX21 +PWCOMMONS IL27-mediated signaling events STAT5A +PWCOMMONS IL27-mediated signaling events IL1B +PWCOMMONS IL27-mediated signaling events IL17A +PWCOMMONS IL27-mediated signaling events STAT3 +PWCOMMONS IL27-mediated signaling events TGFB1 +PWCOMMONS IL27-mediated signaling events +PWCOMMONS IL12-mediated signaling events RELB +PWCOMMONS IL12-mediated signaling events STAT4 +PWCOMMONS IL12-mediated signaling events IL12B +PWCOMMONS IL12-mediated signaling events IL12A +PWCOMMONS IL12-mediated signaling events IL12RB1 +PWCOMMONS IL12-mediated signaling events JAK2 +PWCOMMONS IL12-mediated signaling events IL12RB2 +PWCOMMONS IL12-mediated signaling events TYK2 +PWCOMMONS IL12-mediated signaling events GADD45G +PWCOMMONS IL12-mediated signaling events STAT3 +PWCOMMONS IL12-mediated signaling events SOCS1 +PWCOMMONS IL12-mediated signaling events NFKB1 +PWCOMMONS IL12-mediated signaling events RELA +PWCOMMONS IL12-mediated signaling events CD8A +PWCOMMONS IL12-mediated signaling events CD3E +PWCOMMONS IL12-mediated signaling events CD3D +PWCOMMONS IL12-mediated signaling events HLA-A +PWCOMMONS IL12-mediated signaling events CD3G +PWCOMMONS IL12-mediated signaling events B2M +PWCOMMONS IL12-mediated signaling events CD247 +PWCOMMONS IL12-mediated signaling events CD8B +PWCOMMONS IL12-mediated signaling events MAPK14 +PWCOMMONS IL12-mediated signaling events HLX +PWCOMMONS IL12-mediated signaling events EOMES +PWCOMMONS IL12-mediated signaling events IL1B +PWCOMMONS IL12-mediated signaling events HLA-DRA +PWCOMMONS IL12-mediated signaling events HLA-DRB1 +PWCOMMONS IL12-mediated signaling events CD4 +PWCOMMONS IL12-mediated signaling events GZMA +PWCOMMONS IL12-mediated signaling events STAT1 +PWCOMMONS IL12-mediated signaling events IL18R1 +PWCOMMONS IL12-mediated signaling events IL18 +PWCOMMONS IL12-mediated signaling events IL18RAP +PWCOMMONS IL12-mediated signaling events STAT6 +PWCOMMONS IL12-mediated signaling events NOS2 +PWCOMMONS IL12-mediated signaling events IL2 +PWCOMMONS IL12-mediated signaling events IL2RB +PWCOMMONS IL12-mediated signaling events IL2RG +PWCOMMONS IL12-mediated signaling events IL2RA +PWCOMMONS IL12-mediated signaling events IL1R1 +PWCOMMONS IL12-mediated signaling events RAB7A +PWCOMMONS IL12-mediated signaling events SPHK2 +PWCOMMONS IL12-mediated signaling events FASLG +PWCOMMONS IL12-mediated signaling events FOS +PWCOMMONS IL12-mediated signaling events IKBKB +PWCOMMONS IL12-mediated signaling events CHUK +PWCOMMONS IL12-mediated signaling events IKBKG +PWCOMMONS IL12-mediated signaling events TNFAIP3 +PWCOMMONS IL12-mediated signaling events ATM +PWCOMMONS IL12-mediated signaling events NFKBIA +PWCOMMONS IL12-mediated signaling events CYLD +PWCOMMONS IL12-mediated signaling events NOD2 +PWCOMMONS IL12-mediated signaling events RIPK2 +PWCOMMONS IL12-mediated signaling events BCL10 +PWCOMMONS IL12-mediated signaling events TRAF6 +PWCOMMONS IL12-mediated signaling events MALT1 +PWCOMMONS IL12-mediated signaling events PRKCA +PWCOMMONS IL12-mediated signaling events ERC1 +PWCOMMONS IL12-mediated signaling events FBXW11 +PWCOMMONS IL12-mediated signaling events TNFRSF1A +PWCOMMONS IL12-mediated signaling events TNF +PWCOMMONS IL12-mediated signaling events LCK +PWCOMMONS IL12-mediated signaling events ARRB2 +PWCOMMONS IL12-mediated signaling events REL +PWCOMMONS IL12-mediated signaling events SYK +PWCOMMONS IL12-mediated signaling events PIK3CA +PWCOMMONS IL12-mediated signaling events PIK3R1 +PWCOMMONS IL12-mediated signaling events BCL3 +PWCOMMONS IL12-mediated signaling events SRC +PWCOMMONS IL12-mediated signaling events XPO1 +PWCOMMONS IL12-mediated signaling events RAN +PWCOMMONS IL12-mediated signaling events BIRC2 +PWCOMMONS IL12-mediated signaling events UBE2D3 +PWCOMMONS IL12-mediated signaling events ATF2 +PWCOMMONS IL12-mediated signaling events IL6ST +PWCOMMONS IL12-mediated signaling events EBI3 +PWCOMMONS IL12-mediated signaling events IL27 +PWCOMMONS IL12-mediated signaling events IL27RA +PWCOMMONS IL12-mediated signaling events STAT2 +PWCOMMONS IL12-mediated signaling events GATA3 +PWCOMMONS IL12-mediated signaling events JAK1 +PWCOMMONS IL12-mediated signaling events IL6 +PWCOMMONS IL12-mediated signaling events IFNG +PWCOMMONS IL12-mediated signaling events TBX21 +PWCOMMONS IL12-mediated signaling events STAT5A +PWCOMMONS IL12-mediated signaling events IL17A +PWCOMMONS IL12-mediated signaling events TGFB1 +PWCOMMONS IL12-mediated signaling events CCR5 +PWCOMMONS IL12-mediated signaling events IL4 +PWCOMMONS IL12-mediated signaling events CCL4 +PWCOMMONS IL12-mediated signaling events GADD45B +PWCOMMONS IL12-mediated signaling events IRF1 +PWCOMMONS IL12-mediated signaling events CREBBP +PWCOMMONS IL12-mediated signaling events JUN +PWCOMMONS IL12-mediated signaling events PIAS2 +PWCOMMONS IL12-mediated signaling events CD28 +PWCOMMONS IL12-mediated signaling events IL13 +PWCOMMONS IL12-mediated signaling events ETV5 +PWCOMMONS IL12-mediated signaling events PRF1 +PWCOMMONS IL12-mediated signaling events CCL3 +PWCOMMONS IL12-mediated signaling events GZMB +PWCOMMONS IL12-mediated signaling events FRAP1 +PWCOMMONS IL12-mediated signaling events MAP3K14 +PWCOMMONS IL12-mediated signaling events +PWCOMMONS amb2 Integrin signaling AKT1 +PWCOMMONS amb2 Integrin signaling ITGAM +PWCOMMONS amb2 Integrin signaling ITGB2 +PWCOMMONS amb2 Integrin signaling ICAM1 +PWCOMMONS amb2 Integrin signaling ROCK1 +PWCOMMONS amb2 Integrin signaling MYH2 +PWCOMMONS amb2 Integrin signaling PLAU +PWCOMMONS amb2 Integrin signaling AGER +PWCOMMONS amb2 Integrin signaling HMGB1 +PWCOMMONS amb2 Integrin signaling TLN1 +PWCOMMONS amb2 Integrin signaling MMP2 +PWCOMMONS amb2 Integrin signaling SELPLG +PWCOMMONS amb2 Integrin signaling SELP +PWCOMMONS amb2 Integrin signaling MMP9 +PWCOMMONS amb2 Integrin signaling HCK +PWCOMMONS amb2 Integrin signaling RHOA +PWCOMMONS amb2 Integrin signaling PLAUR +PWCOMMONS amb2 Integrin signaling LRP1 +PWCOMMONS amb2 Integrin signaling PLAT +PWCOMMONS amb2 Integrin signaling APOB +PWCOMMONS amb2 Integrin signaling LPA +PWCOMMONS amb2 Integrin signaling NFKB1 +PWCOMMONS amb2 Integrin signaling GP1BA +PWCOMMONS amb2 Integrin signaling JAM3 +PWCOMMONS amb2 Integrin signaling JAM2 +PWCOMMONS amb2 Integrin signaling PLG +PWCOMMONS amb2 Integrin signaling CYR61 +PWCOMMONS amb2 Integrin signaling MST1R +PWCOMMONS amb2 Integrin signaling MST1 +PWCOMMONS amb2 Integrin signaling TNF +PWCOMMONS amb2 Integrin signaling IL6 +PWCOMMONS amb2 Integrin signaling VTN +PWCOMMONS amb2 Integrin signaling CTGF +PWCOMMONS amb2 Integrin signaling THY1 +PWCOMMONS amb2 Integrin signaling +PWCOMMONS Insulin Pathway TRIP10 +PWCOMMONS Insulin Pathway RHOQ +PWCOMMONS Insulin Pathway PTPN1 +PWCOMMONS Insulin Pathway FOXO3 +PWCOMMONS Insulin Pathway PIK3CA +PWCOMMONS Insulin Pathway PIK3R1 +PWCOMMONS Insulin Pathway AKT2 +PWCOMMONS Insulin Pathway INSR +PWCOMMONS Insulin Pathway INS +PWCOMMONS Insulin Pathway IRS1 +PWCOMMONS Insulin Pathway GRB2 +PWCOMMONS Insulin Pathway EXOC6 +PWCOMMONS Insulin Pathway EXOC4 +PWCOMMONS Insulin Pathway EXOC5 +PWCOMMONS Insulin Pathway EXOC2 +PWCOMMONS Insulin Pathway EXOC1 +PWCOMMONS Insulin Pathway EXOC7 +PWCOMMONS Insulin Pathway EXOC3 +PWCOMMONS Insulin Pathway SOS1 +PWCOMMONS Insulin Pathway SHC1 +PWCOMMONS Insulin Pathway CAV1 +PWCOMMONS Insulin Pathway AKT1 +PWCOMMONS Insulin Pathway PDPK1 +PWCOMMONS Insulin Pathway GRB14 +PWCOMMONS Insulin Pathway SH2B2 +PWCOMMONS Insulin Pathway SORBS1 +PWCOMMONS Insulin Pathway RAPGEF1 +PWCOMMONS Insulin Pathway CBL +PWCOMMONS Insulin Pathway GRB10 +PWCOMMONS Insulin Pathway INPP5D +PWCOMMONS Insulin Pathway SGK1 +PWCOMMONS Insulin Pathway DOK1 +PWCOMMONS Insulin Pathway RASA1 +PWCOMMONS Insulin Pathway NCK1 +PWCOMMONS Insulin Pathway HRAS +PWCOMMONS Insulin Pathway PPP1R3A +PWCOMMONS Insulin Pathway PPP1CC +PWCOMMONS Insulin Pathway STXBP4 +PWCOMMONS Insulin Pathway STX4 +PWCOMMONS Insulin Pathway VAMP2 +PWCOMMONS Insulin Pathway ASIP +PWCOMMONS Insulin Pathway SLC2A4 +PWCOMMONS Insulin Pathway TBC1D4 +PWCOMMONS Insulin Pathway GSK3B +PWCOMMONS Insulin Pathway LNPEP +PWCOMMONS Insulin Pathway GYS1 +PWCOMMONS Insulin Pathway NCK2 +PWCOMMONS Insulin Pathway EIF4EBP1 +PWCOMMONS Insulin Pathway PTPN11 +PWCOMMONS Insulin Pathway PTPRA +PWCOMMONS Insulin Pathway +PWCOMMONS Glypican 2 network GPC2 +PWCOMMONS Glypican 2 network +PWCOMMONS Alpha-synuclein signaling SNCAIP +PWCOMMONS Alpha-synuclein signaling GRK5 +PWCOMMONS Alpha-synuclein signaling SLC6A3 +PWCOMMONS Alpha-synuclein signaling PLCB2 +PWCOMMONS Alpha-synuclein signaling PARK2 +PWCOMMONS Alpha-synuclein signaling PLD2 +PWCOMMONS Alpha-synuclein signaling SYK +PWCOMMONS Alpha-synuclein signaling PRKCD +PWCOMMONS Alpha-synuclein signaling BAD +PWCOMMONS Alpha-synuclein signaling STUB1 +PWCOMMONS Alpha-synuclein signaling UCHL1 +PWCOMMONS Alpha-synuclein signaling MAOB +PWCOMMONS Alpha-synuclein signaling TOR1A +PWCOMMONS Alpha-synuclein signaling CSNK2A1 +PWCOMMONS Alpha-synuclein signaling TH +PWCOMMONS Alpha-synuclein signaling UBE2L3 +PWCOMMONS Alpha-synuclein signaling KLK6 +PWCOMMONS Alpha-synuclein signaling PPP2R5D +PWCOMMONS Alpha-synuclein signaling PARK7 +PWCOMMONS Alpha-synuclein signaling PTK2B +PWCOMMONS Alpha-synuclein signaling PLD1 +PWCOMMONS Alpha-synuclein signaling FKBP1A +PWCOMMONS Alpha-synuclein signaling +PWCOMMONS Osteopontin-mediated events PIK3CA +PWCOMMONS Osteopontin-mediated events PIK3R1 +PWCOMMONS Osteopontin-mediated events CHUK +PWCOMMONS Osteopontin-mediated events MAP3K1 +PWCOMMONS Osteopontin-mediated events CD44 +PWCOMMONS Osteopontin-mediated events ROCK2 +PWCOMMONS Osteopontin-mediated events SYK +PWCOMMONS Osteopontin-mediated events MMP2 +PWCOMMONS Osteopontin-mediated events BCAR1 +PWCOMMONS Osteopontin-mediated events PTK2B +PWCOMMONS Osteopontin-mediated events ITGB3 +PWCOMMONS Osteopontin-mediated events SPP1 +PWCOMMONS Osteopontin-mediated events ITGAV +PWCOMMONS Osteopontin-mediated events MAP3K14 +PWCOMMONS Osteopontin-mediated events GSN +PWCOMMONS Osteopontin-mediated events MAPK8 +PWCOMMONS Osteopontin-mediated events RAC1 +PWCOMMONS Osteopontin-mediated events NFKBIA +PWCOMMONS Osteopontin-mediated events NFKB1 +PWCOMMONS Osteopontin-mediated events RELA +PWCOMMONS Osteopontin-mediated events PIP5K1A +PWCOMMONS Osteopontin-mediated events VAV3 +PWCOMMONS Osteopontin-mediated events FOS +PWCOMMONS Osteopontin-mediated events JUN +PWCOMMONS Osteopontin-mediated events MMP9 +PWCOMMONS Osteopontin-mediated events ILK +PWCOMMONS Osteopontin-mediated events +PWCOMMONS Retinoic acid receptors-mediated signaling CCNH +PWCOMMONS Retinoic acid receptors-mediated signaling RXRA +PWCOMMONS Retinoic acid receptors-mediated signaling PRKACA +PWCOMMONS Retinoic acid receptors-mediated signaling MAPK8 +PWCOMMONS Retinoic acid receptors-mediated signaling MAPK14 +PWCOMMONS Retinoic acid receptors-mediated signaling PRKCA +PWCOMMONS Retinoic acid receptors-mediated signaling NCOA2 +PWCOMMONS Retinoic acid receptors-mediated signaling PCAF +PWCOMMONS Retinoic acid receptors-mediated signaling AKT1 +PWCOMMONS Retinoic acid receptors-mediated signaling NCOR2 +PWCOMMONS Retinoic acid receptors-mediated signaling NRIP1 +PWCOMMONS Retinoic acid receptors-mediated signaling NCOA1 +PWCOMMONS Retinoic acid receptors-mediated signaling CDK7 +PWCOMMONS Retinoic acid receptors-mediated signaling MNAT1 +PWCOMMONS Retinoic acid receptors-mediated signaling NCOA3 +PWCOMMONS Retinoic acid receptors-mediated signaling NR4A1 +PWCOMMONS Retinoic acid receptors-mediated signaling RPS6KB1 +PWCOMMONS Retinoic acid receptors-mediated signaling FAM120B +PWCOMMONS Retinoic acid receptors-mediated signaling TGFB1 +PWCOMMONS Retinoic acid receptors-mediated signaling BCL2 +PWCOMMONS Retinoic acid receptors-mediated signaling TNF +PWCOMMONS Retinoic acid receptors-mediated signaling ABCA1 +PWCOMMONS Retinoic acid receptors-mediated signaling MED1 +PWCOMMONS Retinoic acid receptors-mediated signaling NR1H4 +PWCOMMONS Retinoic acid receptors-mediated signaling HDAC1 +PWCOMMONS Retinoic acid receptors-mediated signaling HDAC3 +PWCOMMONS Retinoic acid receptors-mediated signaling CDC2 +PWCOMMONS Retinoic acid receptors-mediated signaling MAPK3 +PWCOMMONS Retinoic acid receptors-mediated signaling PRKCG +PWCOMMONS Retinoic acid receptors-mediated signaling RBP1 +PWCOMMONS Retinoic acid receptors-mediated signaling +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 NOS3 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 CAV1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 GAB1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 MAPK11 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 VEGFA +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 FLT1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 GRB10 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 HSPB1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 AKT1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 KDR +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 RHOA +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 ROCK1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 ITGB3 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 ITGAV +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 CDC42 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 FRS2 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 VCL +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PTK2 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PDPK1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PRKCA +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 MAP3K13 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 SHB +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 SRC +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PLCG1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 MAP2K3 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 NEDD4 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PIK3CA +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PIK3R1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 FYN +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 EPAS1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 IQGAP1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 RAC1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 VEGFB +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PGF +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 CD2AP +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 CBL +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 CALM1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 NRP1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 HIF1A +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PRKACA +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 NCK1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 RASA1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PTPN11 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 NRP2 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 SHC2 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 HRAS +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 FLT4 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PTPN6 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PTK2B +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 SH2D2A +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PXN +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 SOS1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 SHC1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 GRB2 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 FES +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 CDH5 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 CTNNB1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 VEGFC +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 VHL +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 ARNT +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 S1PR1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 YES1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 PAK1 +PWCOMMONS Signaling events mediated by VEGFR1 and VEGFR2 +PWCOMMONS Alternative NF-kappaB pathway FBXW11 +PWCOMMONS Alternative NF-kappaB pathway NFKB2 +PWCOMMONS Alternative NF-kappaB pathway RELB +PWCOMMONS Alternative NF-kappaB pathway MAP3K14 +PWCOMMONS Alternative NF-kappaB pathway NFKB1 +PWCOMMONS Alternative NF-kappaB pathway +PWCOMMONS Signaling events mediated by the Hedgehog family SMO +PWCOMMONS Signaling events mediated by the Hedgehog family PTCH1 +PWCOMMONS Signaling events mediated by the Hedgehog family ARRB2 +PWCOMMONS Signaling events mediated by the Hedgehog family GAS1 +PWCOMMONS Signaling events mediated by the Hedgehog family ADRBK1 +PWCOMMONS Signaling events mediated by the Hedgehog family GLI2 +PWCOMMONS Signaling events mediated by the Hedgehog family HHAT +PWCOMMONS Signaling events mediated by the Hedgehog family DHH +PWCOMMONS Signaling events mediated by the Hedgehog family HHIP +PWCOMMONS Signaling events mediated by the Hedgehog family IHH +PWCOMMONS Signaling events mediated by the Hedgehog family AKT1 +PWCOMMONS Signaling events mediated by the Hedgehog family PTCH2 +PWCOMMONS Signaling events mediated by the Hedgehog family STIL +PWCOMMONS Signaling events mediated by the Hedgehog family TGFB2 +PWCOMMONS Signaling events mediated by the Hedgehog family BOC +PWCOMMONS Signaling events mediated by the Hedgehog family PTHLH +PWCOMMONS Signaling events mediated by the Hedgehog family LRP2 +PWCOMMONS Signaling events mediated by the Hedgehog family LRPAP1 +PWCOMMONS Signaling events mediated by the Hedgehog family CDON +PWCOMMONS Signaling events mediated by the Hedgehog family PIK3CA +PWCOMMONS Signaling events mediated by the Hedgehog family PIK3R1 +PWCOMMONS Signaling events mediated by the Hedgehog family GSK3B +PWCOMMONS Signaling events mediated by the Hedgehog family GLI1 +PWCOMMONS Signaling events mediated by the Hedgehog family GLI3 +PWCOMMONS Signaling events mediated by the Hedgehog family IFT172 +PWCOMMONS Signaling events mediated by the Hedgehog family MAP2K1 +PWCOMMONS Signaling events mediated by the Hedgehog family SPOP +PWCOMMONS Signaling events mediated by the Hedgehog family SUFU +PWCOMMONS Signaling events mediated by the Hedgehog family LGALS3 +PWCOMMONS Signaling events mediated by the Hedgehog family MTSS1 +PWCOMMONS Signaling events mediated by the Hedgehog family PRKCD +PWCOMMONS Signaling events mediated by the Hedgehog family KIF3A +PWCOMMONS Signaling events mediated by the Hedgehog family PRKACA +PWCOMMONS Signaling events mediated by the Hedgehog family PIAS1 +PWCOMMONS Signaling events mediated by the Hedgehog family XPO1 +PWCOMMONS Signaling events mediated by the Hedgehog family STK36 +PWCOMMONS Signaling events mediated by the Hedgehog family FBXW11 +PWCOMMONS Signaling events mediated by the Hedgehog family SAP18 +PWCOMMONS Signaling events mediated by the Hedgehog family SIN3A +PWCOMMONS Signaling events mediated by the Hedgehog family HDAC2 +PWCOMMONS Signaling events mediated by the Hedgehog family RBBP7 +PWCOMMONS Signaling events mediated by the Hedgehog family HDAC1 +PWCOMMONS Signaling events mediated by the Hedgehog family SAP30 +PWCOMMONS Signaling events mediated by the Hedgehog family RBBP4 +PWCOMMONS Signaling events mediated by the Hedgehog family SIN3B +PWCOMMONS Signaling events mediated by the Hedgehog family RAB23 +PWCOMMONS Signaling events mediated by the Hedgehog family GNG2 +PWCOMMONS Signaling events mediated by the Hedgehog family GNB1 +PWCOMMONS Signaling events mediated by the Hedgehog family CREBBP +PWCOMMONS Signaling events mediated by the Hedgehog family FOXA2 +PWCOMMONS Signaling events mediated by the Hedgehog family +PWCOMMONS Aurora A signaling TACC3 +PWCOMMONS Aurora A signaling NDEL1 +PWCOMMONS Aurora A signaling AURKA +PWCOMMONS Aurora A signaling IKBKB +PWCOMMONS Aurora A signaling CHUK +PWCOMMONS Aurora A signaling IKBKG +PWCOMMONS Aurora A signaling TNFAIP3 +PWCOMMONS Aurora A signaling ATM +PWCOMMONS Aurora A signaling NFKB1 +PWCOMMONS Aurora A signaling NFKBIA +PWCOMMONS Aurora A signaling RELA +PWCOMMONS Aurora A signaling CYLD +PWCOMMONS Aurora A signaling NOD2 +PWCOMMONS Aurora A signaling RIPK2 +PWCOMMONS Aurora A signaling BCL10 +PWCOMMONS Aurora A signaling TRAF6 +PWCOMMONS Aurora A signaling MALT1 +PWCOMMONS Aurora A signaling PRKCA +PWCOMMONS Aurora A signaling ERC1 +PWCOMMONS Aurora A signaling FBXW11 +PWCOMMONS Aurora A signaling TNFRSF1A +PWCOMMONS Aurora A signaling TNF +PWCOMMONS Aurora A signaling LCK +PWCOMMONS Aurora A signaling ARRB2 +PWCOMMONS Aurora A signaling REL +PWCOMMONS Aurora A signaling SYK +PWCOMMONS Aurora A signaling PIK3CA +PWCOMMONS Aurora A signaling PIK3R1 +PWCOMMONS Aurora A signaling BCL3 +PWCOMMONS Aurora A signaling MAPK14 +PWCOMMONS Aurora A signaling SRC +PWCOMMONS Aurora A signaling XPO1 +PWCOMMONS Aurora A signaling RAN +PWCOMMONS Aurora A signaling NFKB2 +PWCOMMONS Aurora A signaling RELB +PWCOMMONS Aurora A signaling MAP3K14 +PWCOMMONS Aurora A signaling BIRC2 +PWCOMMONS Aurora A signaling UBE2D3 +PWCOMMONS Aurora A signaling GIT1 +PWCOMMONS Aurora A signaling PAK1 +PWCOMMONS Aurora A signaling ARHGEF7 +PWCOMMONS Aurora A signaling AKT1 +PWCOMMONS Aurora A signaling JUB +PWCOMMONS Aurora A signaling MDM2 +PWCOMMONS Aurora A signaling DLGAP5 +PWCOMMONS Aurora A signaling TPX2 +PWCOMMONS Aurora A signaling CENPA +PWCOMMONS Aurora A signaling RASA1 +PWCOMMONS Aurora A signaling GSK3B +PWCOMMONS Aurora A signaling GADD45A +PWCOMMONS Aurora A signaling BRCA1 +PWCOMMONS Aurora A signaling CKAP5 +PWCOMMONS Aurora A signaling TDRD7 +PWCOMMONS Aurora A signaling TACC1 +PWCOMMONS Aurora A signaling PRKACA +PWCOMMONS Aurora A signaling CDC25B +PWCOMMONS Aurora A signaling OAZ1 +PWCOMMONS Aurora A signaling CPEB1 +PWCOMMONS Aurora A signaling BIRC5 +PWCOMMONS Aurora A signaling PPP2R5D +PWCOMMONS Aurora A signaling AURKAIP1 +PWCOMMONS Aurora A signaling TP53 +PWCOMMONS Aurora A signaling +PWCOMMONS PDGFR-alpha signaling pathway PLCG1 +PWCOMMONS PDGFR-alpha signaling pathway SHB +PWCOMMONS PDGFR-alpha signaling pathway PDGFRA +PWCOMMONS PDGFR-alpha signaling pathway CRK +PWCOMMONS PDGFR-alpha signaling pathway FOS +PWCOMMONS PDGFR-alpha signaling pathway JUN +PWCOMMONS PDGFR-alpha signaling pathway ELK1 +PWCOMMONS PDGFR-alpha signaling pathway SRF +PWCOMMONS PDGFR-alpha signaling pathway ITGAV +PWCOMMONS PDGFR-alpha signaling pathway PIK3CA +PWCOMMONS PDGFR-alpha signaling pathway PIK3R1 +PWCOMMONS PDGFR-alpha signaling pathway CSNK2A1 +PWCOMMONS PDGFR-alpha signaling pathway CRKL +PWCOMMONS PDGFR-alpha signaling pathway SOS1 +PWCOMMONS PDGFR-alpha signaling pathway SHC1 +PWCOMMONS PDGFR-alpha signaling pathway GRB2 +PWCOMMONS PDGFR-alpha signaling pathway CAV1 +PWCOMMONS PDGFR-alpha signaling pathway RAPGEF1 +PWCOMMONS PDGFR-alpha signaling pathway IFNG +PWCOMMONS PDGFR-alpha signaling pathway IRF1 +PWCOMMONS PDGFR-alpha signaling pathway CAV3 +PWCOMMONS PDGFR-alpha signaling pathway +PWCOMMONS Signaling events mediated by HDAC Class II HDAC5 +PWCOMMONS Signaling events mediated by HDAC Class II HDAC4 +PWCOMMONS Signaling events mediated by HDAC Class II YWHAE +PWCOMMONS Signaling events mediated by HDAC Class II HDAC10 +PWCOMMONS Signaling events mediated by HDAC Class II RANGAP1 +PWCOMMONS Signaling events mediated by HDAC Class II UBE2I +PWCOMMONS Signaling events mediated by HDAC Class II RANBP2 +PWCOMMONS Signaling events mediated by HDAC Class II SUMO1 +PWCOMMONS Signaling events mediated by HDAC Class II HDAC7 +PWCOMMONS Signaling events mediated by HDAC Class II HDAC3 +PWCOMMONS Signaling events mediated by HDAC Class II XPO1 +PWCOMMONS Signaling events mediated by HDAC Class II RAN +PWCOMMONS Signaling events mediated by HDAC Class II SRF +PWCOMMONS Signaling events mediated by HDAC Class II NCOR2 +PWCOMMONS Signaling events mediated by HDAC Class II HDAC11 +PWCOMMONS Signaling events mediated by HDAC Class II HDAC6 +PWCOMMONS Signaling events mediated by HDAC Class II RFXANK +PWCOMMONS Signaling events mediated by HDAC Class II ESR1 +PWCOMMONS Signaling events mediated by HDAC Class II NR3C1 +PWCOMMONS Signaling events mediated by HDAC Class II HSP90AA1 +PWCOMMONS Signaling events mediated by HDAC Class II CAMK4 +PWCOMMONS Signaling events mediated by HDAC Class II TUBB2A +PWCOMMONS Signaling events mediated by HDAC Class II HDAC9 +PWCOMMONS Signaling events mediated by HDAC Class II ANKRA2 +PWCOMMONS Signaling events mediated by HDAC Class II MEF2C +PWCOMMONS Signaling events mediated by HDAC Class II GATA1 +PWCOMMONS Signaling events mediated by HDAC Class II ADRBK1 +PWCOMMONS Signaling events mediated by HDAC Class II GATA2 +PWCOMMONS Signaling events mediated by HDAC Class II GNG2 +PWCOMMONS Signaling events mediated by HDAC Class II GNB1 +PWCOMMONS Signaling events mediated by HDAC Class II BCL6 +PWCOMMONS Signaling events mediated by HDAC Class II BCOR +PWCOMMONS Signaling events mediated by HDAC Class II +PWCOMMONS a6b1 and a6b4 Integrin signaling ITGA6 +PWCOMMONS a6b1 and a6b4 Integrin signaling ITGB4 +PWCOMMONS a6b1 and a6b4 Integrin signaling PIK3CA +PWCOMMONS a6b1 and a6b4 Integrin signaling PIK3R1 +PWCOMMONS a6b1 and a6b4 Integrin signaling PRKCA +PWCOMMONS a6b1 and a6b4 Integrin signaling ITGB1 +PWCOMMONS a6b1 and a6b4 Integrin signaling SHC1 +PWCOMMONS a6b1 and a6b4 Integrin signaling AKT1 +PWCOMMONS a6b1 and a6b4 Integrin signaling CD9 +PWCOMMONS a6b1 and a6b4 Integrin signaling PMP22 +PWCOMMONS a6b1 and a6b4 Integrin signaling HRAS +PWCOMMONS a6b1 and a6b4 Integrin signaling RPS6KB1 +PWCOMMONS a6b1 and a6b4 Integrin signaling ERBB3 +PWCOMMONS a6b1 and a6b4 Integrin signaling COL17A1 +PWCOMMONS a6b1 and a6b4 Integrin signaling ERBB2 +PWCOMMONS a6b1 and a6b4 Integrin signaling MET +PWCOMMONS a6b1 and a6b4 Integrin signaling GRB2 +PWCOMMONS a6b1 and a6b4 Integrin signaling EGFR +PWCOMMONS a6b1 and a6b4 Integrin signaling EGF +PWCOMMONS a6b1 and a6b4 Integrin signaling MST1R +PWCOMMONS a6b1 and a6b4 Integrin signaling MST1 +PWCOMMONS a6b1 and a6b4 Integrin signaling IL1A +PWCOMMONS a6b1 and a6b4 Integrin signaling +PWCOMMONS Noncanonical Wnt signaling pathway GNG2 +PWCOMMONS Noncanonical Wnt signaling pathway GNB1 +PWCOMMONS Noncanonical Wnt signaling pathway CDC42 +PWCOMMONS Noncanonical Wnt signaling pathway GNAS +PWCOMMONS Noncanonical Wnt signaling pathway PLCG1 +PWCOMMONS Noncanonical Wnt signaling pathway YES1 +PWCOMMONS Noncanonical Wnt signaling pathway MAP3K7 +PWCOMMONS Noncanonical Wnt signaling pathway NFATC2 +PWCOMMONS Noncanonical Wnt signaling pathway CSNK1A1 +PWCOMMONS Noncanonical Wnt signaling pathway CAMK2A +PWCOMMONS Noncanonical Wnt signaling pathway MAP3K7IP1 +PWCOMMONS Noncanonical Wnt signaling pathway +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes EGR3 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes FOS +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes CREM +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes JUN +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes CTLA4 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes TNF +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes IL2RA +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes NFATC2 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes FOXP3 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes PPARG +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes EGR4 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes CD40LG +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes FASLG +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes GATA3 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes CALM1 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes IL8 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes FOSL1 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes JUNB +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes IL5 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes IKZF1 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes GBP3 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes CSF2 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes IL2 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes PRKCQ +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes IRF4 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes MAF +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes POU2F1 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes CBLB +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes EGR1 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes PTPN1 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes SLC3A2 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes PTGS2 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes IFNG +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes ITCH +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes IL4 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes EGR2 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes RNF128 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes DGKA +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes IL3 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes BATF3 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes TBX21 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes BCE1 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes CDK4 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes CASP3 +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes PTPRK +PWCOMMONS Calcineurin-regulated NFAT-dependent transcription in lymphocytes +PWCOMMONS Class I PI3K signaling events PTEN +PWCOMMONS Class I PI3K signaling events RAP1A +PWCOMMONS Class I PI3K signaling events SGK1 +PWCOMMONS Class I PI3K signaling events CD4 +PWCOMMONS Class I PI3K signaling events AP2M1 +PWCOMMONS Class I PI3K signaling events AP2A1 +PWCOMMONS Class I PI3K signaling events ARFGAP1 +PWCOMMONS Class I PI3K signaling events GGA3 +PWCOMMONS Class I PI3K signaling events ARF1 +PWCOMMONS Class I PI3K signaling events GOSR2 +PWCOMMONS Class I PI3K signaling events PLD2 +PWCOMMONS Class I PI3K signaling events ARFIP2 +PWCOMMONS Class I PI3K signaling events RAC1 +PWCOMMONS Class I PI3K signaling events USO1 +PWCOMMONS Class I PI3K signaling events GBF1 +PWCOMMONS Class I PI3K signaling events CLTB +PWCOMMONS Class I PI3K signaling events COPA +PWCOMMONS Class I PI3K signaling events CLTA +PWCOMMONS Class I PI3K signaling events ASAP1 +PWCOMMONS Class I PI3K signaling events CYTH2 +PWCOMMONS Class I PI3K signaling events ARF6 +PWCOMMONS Class I PI3K signaling events GSK3B +PWCOMMONS Class I PI3K signaling events BCL2 +PWCOMMONS Class I PI3K signaling events FKBP8 +PWCOMMONS Class I PI3K signaling events CALM1 +PWCOMMONS Class I PI3K signaling events RCAN2 +PWCOMMONS Class I PI3K signaling events YWHAQ +PWCOMMONS Class I PI3K signaling events BAX +PWCOMMONS Class I PI3K signaling events MAPK9 +PWCOMMONS Class I PI3K signaling events NFATC3 +PWCOMMONS Class I PI3K signaling events PRKACA +PWCOMMONS Class I PI3K signaling events NFATC1 +PWCOMMONS Class I PI3K signaling events KPNB1 +PWCOMMONS Class I PI3K signaling events KPNA2 +PWCOMMONS Class I PI3K signaling events CABIN1 +PWCOMMONS Class I PI3K signaling events NFATC2 +PWCOMMONS Class I PI3K signaling events CSNK1A1 +PWCOMMONS Class I PI3K signaling events MEF2D +PWCOMMONS Class I PI3K signaling events MAPK8 +PWCOMMONS Class I PI3K signaling events MAP3K1 +PWCOMMONS Class I PI3K signaling events CAMK4 +PWCOMMONS Class I PI3K signaling events BAD +PWCOMMONS Class I PI3K signaling events AKAP5 +PWCOMMONS Class I PI3K signaling events NR4A1 +PWCOMMONS Class I PI3K signaling events RCAN1 +PWCOMMONS Class I PI3K signaling events MAPK14 +PWCOMMONS Class I PI3K signaling events CHP +PWCOMMONS Class I PI3K signaling events PRKCZ +PWCOMMONS Class I PI3K signaling events CSNK2A1 +PWCOMMONS Class I PI3K signaling events MAPK3 +PWCOMMONS Class I PI3K signaling events XPO1 +PWCOMMONS Class I PI3K signaling events RAN +PWCOMMONS Class I PI3K signaling events NUP214 +PWCOMMONS Class I PI3K signaling events MAP3K8 +PWCOMMONS Class I PI3K signaling events E2F1 +PWCOMMONS Class I PI3K signaling events EGR3 +PWCOMMONS Class I PI3K signaling events FOS +PWCOMMONS Class I PI3K signaling events CREM +PWCOMMONS Class I PI3K signaling events JUN +PWCOMMONS Class I PI3K signaling events CTLA4 +PWCOMMONS Class I PI3K signaling events TNF +PWCOMMONS Class I PI3K signaling events IL2RA +PWCOMMONS Class I PI3K signaling events FOXP3 +PWCOMMONS Class I PI3K signaling events PPARG +PWCOMMONS Class I PI3K signaling events EGR4 +PWCOMMONS Class I PI3K signaling events CD40LG +PWCOMMONS Class I PI3K signaling events FASLG +PWCOMMONS Class I PI3K signaling events GATA3 +PWCOMMONS Class I PI3K signaling events IL8 +PWCOMMONS Class I PI3K signaling events FOSL1 +PWCOMMONS Class I PI3K signaling events JUNB +PWCOMMONS Class I PI3K signaling events IL5 +PWCOMMONS Class I PI3K signaling events IKZF1 +PWCOMMONS Class I PI3K signaling events GBP3 +PWCOMMONS Class I PI3K signaling events CSF2 +PWCOMMONS Class I PI3K signaling events IL2 +PWCOMMONS Class I PI3K signaling events PRKCQ +PWCOMMONS Class I PI3K signaling events IRF4 +PWCOMMONS Class I PI3K signaling events MAF +PWCOMMONS Class I PI3K signaling events POU2F1 +PWCOMMONS Class I PI3K signaling events CBLB +PWCOMMONS Class I PI3K signaling events EGR1 +PWCOMMONS Class I PI3K signaling events PTPN1 +PWCOMMONS Class I PI3K signaling events SLC3A2 +PWCOMMONS Class I PI3K signaling events PTGS2 +PWCOMMONS Class I PI3K signaling events IFNG +PWCOMMONS Class I PI3K signaling events ITCH +PWCOMMONS Class I PI3K signaling events IL4 +PWCOMMONS Class I PI3K signaling events EGR2 +PWCOMMONS Class I PI3K signaling events RNF128 +PWCOMMONS Class I PI3K signaling events DGKA +PWCOMMONS Class I PI3K signaling events IL3 +PWCOMMONS Class I PI3K signaling events BATF3 +PWCOMMONS Class I PI3K signaling events TBX21 +PWCOMMONS Class I PI3K signaling events BCE1 +PWCOMMONS Class I PI3K signaling events CDK4 +PWCOMMONS Class I PI3K signaling events CASP3 +PWCOMMONS Class I PI3K signaling events PTPRK +PWCOMMONS Class I PI3K signaling events PIM1 +PWCOMMONS Class I PI3K signaling events FKBP1A +PWCOMMONS Class I PI3K signaling events CD19 +PWCOMMONS Class I PI3K signaling events PIK3CA +PWCOMMONS Class I PI3K signaling events PIK3R1 +PWCOMMONS Class I PI3K signaling events IKBKB +PWCOMMONS Class I PI3K signaling events AKT1 +PWCOMMONS Class I PI3K signaling events NFKBIB +PWCOMMONS Class I PI3K signaling events SYK +PWCOMMONS Class I PI3K signaling events CD79B +PWCOMMONS Class I PI3K signaling events LYN +PWCOMMONS Class I PI3K signaling events CD79A +PWCOMMONS Class I PI3K signaling events PDPK1 +PWCOMMONS Class I PI3K signaling events CHUK +PWCOMMONS Class I PI3K signaling events IKBKG +PWCOMMONS Class I PI3K signaling events NFKB1 +PWCOMMONS Class I PI3K signaling events RELA +PWCOMMONS Class I PI3K signaling events FCGR2B +PWCOMMONS Class I PI3K signaling events PTPRC +PWCOMMONS Class I PI3K signaling events POU2F2 +PWCOMMONS Class I PI3K signaling events BCL2A1 +PWCOMMONS Class I PI3K signaling events NFKBIA +PWCOMMONS Class I PI3K signaling events CSK +PWCOMMONS Class I PI3K signaling events PAG1 +PWCOMMONS Class I PI3K signaling events DAPP1 +PWCOMMONS Class I PI3K signaling events MAP4K1 +PWCOMMONS Class I PI3K signaling events BCL10 +PWCOMMONS Class I PI3K signaling events CARD11 +PWCOMMONS Class I PI3K signaling events MAP3K7 +PWCOMMONS Class I PI3K signaling events MALT1 +PWCOMMONS Class I PI3K signaling events BLNK +PWCOMMONS Class I PI3K signaling events CD72 +PWCOMMONS Class I PI3K signaling events BTK +PWCOMMONS Class I PI3K signaling events PLCG2 +PWCOMMONS Class I PI3K signaling events DOK1 +PWCOMMONS Class I PI3K signaling events INPP5D +PWCOMMONS Class I PI3K signaling events RASA1 +PWCOMMONS Class I PI3K signaling events ETS1 +PWCOMMONS Class I PI3K signaling events ELK1 +PWCOMMONS Class I PI3K signaling events SOS1 +PWCOMMONS Class I PI3K signaling events SHC1 +PWCOMMONS Class I PI3K signaling events GRB2 +PWCOMMONS Class I PI3K signaling events VAV2 +PWCOMMONS Class I PI3K signaling events CAMK2G +PWCOMMONS Class I PI3K signaling events PPP3CA +PWCOMMONS Class I PI3K signaling events PPP3CB +PWCOMMONS Class I PI3K signaling events PPP3CC +PWCOMMONS Class I PI3K signaling events IBTK +PWCOMMONS Class I PI3K signaling events MAP2K1 +PWCOMMONS Class I PI3K signaling events TRAF6 +PWCOMMONS Class I PI3K signaling events PTPN6 +PWCOMMONS Class I PI3K signaling events HRAS +PWCOMMONS Class I PI3K signaling events RAF1 +PWCOMMONS Class I PI3K signaling events CD22 +PWCOMMONS Class I PI3K signaling events SH3BP5 +PWCOMMONS Class I PI3K signaling events RHOA +PWCOMMONS Class I PI3K signaling events FOXO3 +PWCOMMONS Class I PI3K signaling events SLC2A4 +PWCOMMONS Class I PI3K signaling events MAP3K5 +PWCOMMONS Class I PI3K signaling events TNFAIP3 +PWCOMMONS Class I PI3K signaling events ATM +PWCOMMONS Class I PI3K signaling events CYLD +PWCOMMONS Class I PI3K signaling events NOD2 +PWCOMMONS Class I PI3K signaling events RIPK2 +PWCOMMONS Class I PI3K signaling events PRKCA +PWCOMMONS Class I PI3K signaling events ERC1 +PWCOMMONS Class I PI3K signaling events FBXW11 +PWCOMMONS Class I PI3K signaling events TNFRSF1A +PWCOMMONS Class I PI3K signaling events LCK +PWCOMMONS Class I PI3K signaling events ARRB2 +PWCOMMONS Class I PI3K signaling events REL +PWCOMMONS Class I PI3K signaling events BCL3 +PWCOMMONS Class I PI3K signaling events SRC +PWCOMMONS Class I PI3K signaling events NFKB2 +PWCOMMONS Class I PI3K signaling events RELB +PWCOMMONS Class I PI3K signaling events MAP3K14 +PWCOMMONS Class I PI3K signaling events BIRC2 +PWCOMMONS Class I PI3K signaling events UBE2D3 +PWCOMMONS Class I PI3K signaling events CDKN1A +PWCOMMONS Class I PI3K signaling events AKT2 +PWCOMMONS Class I PI3K signaling events HSP90AA1 +PWCOMMONS Class I PI3K signaling events TP53 +PWCOMMONS Class I PI3K signaling events CASP9 +PWCOMMONS Class I PI3K signaling events KPNA1 +PWCOMMONS Class I PI3K signaling events CDKN1B +PWCOMMONS Class I PI3K signaling events MDM2 +PWCOMMONS Class I PI3K signaling events TSC2 +PWCOMMONS Class I PI3K signaling events TBC1D4 +PWCOMMONS Class I PI3K signaling events AKT1S1 +PWCOMMONS Class I PI3K signaling events TSC1 +PWCOMMONS Class I PI3K signaling events FRAP1 +PWCOMMONS Class I PI3K signaling events RHEB +PWCOMMONS Class I PI3K signaling events LST8 +PWCOMMONS Class I PI3K signaling events RAPTOR +PWCOMMONS Class I PI3K signaling events YWHAZ +PWCOMMONS Class I PI3K signaling events INSR +PWCOMMONS Class I PI3K signaling events INS +PWCOMMONS Class I PI3K signaling events PPP2R5D +PWCOMMONS Class I PI3K signaling events IRS1 +PWCOMMONS Class I PI3K signaling events EIF4B +PWCOMMONS Class I PI3K signaling events EIF4E +PWCOMMONS Class I PI3K signaling events EIF4G1 +PWCOMMONS Class I PI3K signaling events RPS6KB1 +PWCOMMONS Class I PI3K signaling events EIF3A +PWCOMMONS Class I PI3K signaling events RPS6 +PWCOMMONS Class I PI3K signaling events EEF2 +PWCOMMONS Class I PI3K signaling events EIF4EBP1 +PWCOMMONS Class I PI3K signaling events MKNK1 +PWCOMMONS Class I PI3K signaling events PRKAB1 +PWCOMMONS Class I PI3K signaling events AKT3 +PWCOMMONS Class I PI3K signaling events CDKN2A +PWCOMMONS Class I PI3K signaling events PRKDC +PWCOMMONS Class I PI3K signaling events RICTOR +PWCOMMONS Class I PI3K signaling events MAPKAP1 +PWCOMMONS Class I PI3K signaling events ARF5 +PWCOMMONS Class I PI3K signaling events PDE3B +PWCOMMONS Class I PI3K signaling events MAPK1 +PWCOMMONS Class I PI3K signaling events ADAP1 +PWCOMMONS Class I PI3K signaling events CYTH3 +PWCOMMONS Class I PI3K signaling events +PWCOMMONS Signaling mediated by p38-gamma and p38-delta MLTK +PWCOMMONS Signaling mediated by p38-gamma and p38-delta STMN1 +PWCOMMONS Signaling mediated by p38-gamma and p38-delta MAPK12 +PWCOMMONS Signaling mediated by p38-gamma and p38-delta SNTA1 +PWCOMMONS Signaling mediated by p38-gamma and p38-delta PKN1 +PWCOMMONS Signaling mediated by p38-gamma and p38-delta MAP2K6 +PWCOMMONS Signaling mediated by p38-gamma and p38-delta CCND1 +PWCOMMONS Signaling mediated by p38-gamma and p38-delta EEF2K +PWCOMMONS Signaling mediated by p38-gamma and p38-delta MAP2K3 +PWCOMMONS Signaling mediated by p38-gamma and p38-delta +PWCOMMONS p38 MAPK signaling pathway CALM1 +PWCOMMONS p38 MAPK signaling pathway MAP3K5 +PWCOMMONS p38 MAPK signaling pathway CAMK2B +PWCOMMONS p38 MAPK signaling pathway MAP3K6 +PWCOMMONS p38 MAPK signaling pathway MAP3K10 +PWCOMMONS p38 MAPK signaling pathway TRAF2 +PWCOMMONS p38 MAPK signaling pathway MAP3K4 +PWCOMMONS p38 MAPK signaling pathway MAP2K3 +PWCOMMONS p38 MAPK signaling pathway MAP3K7 +PWCOMMONS p38 MAPK signaling pathway MAP2K6 +PWCOMMONS p38 MAPK signaling pathway TRAF6 +PWCOMMONS p38 MAPK signaling pathway TXN +PWCOMMONS p38 MAPK signaling pathway MAPKAPK3 +PWCOMMONS p38 MAPK signaling pathway KRT8 +PWCOMMONS p38 MAPK signaling pathway CEBPB +PWCOMMONS p38 MAPK signaling pathway PTGS2 +PWCOMMONS p38 MAPK signaling pathway SLC9A1 +PWCOMMONS p38 MAPK signaling pathway PPARGC1A +PWCOMMONS p38 MAPK signaling pathway MAPKAPK2 +PWCOMMONS p38 MAPK signaling pathway USF1 +PWCOMMONS p38 MAPK signaling pathway MAPKAPK5 +PWCOMMONS p38 MAPK signaling pathway HSPB1 +PWCOMMONS p38 MAPK signaling pathway LSP1 +PWCOMMONS p38 MAPK signaling pathway CDC25B +PWCOMMONS p38 MAPK signaling pathway TSC2 +PWCOMMONS p38 MAPK signaling pathway TCF3 +PWCOMMONS p38 MAPK signaling pathway RAF1 +PWCOMMONS p38 MAPK signaling pathway YWHAZ +PWCOMMONS p38 MAPK signaling pathway SRF +PWCOMMONS p38 MAPK signaling pathway CREB1 +PWCOMMONS p38 MAPK signaling pathway MAPK14 +PWCOMMONS p38 MAPK signaling pathway TH +PWCOMMONS p38 MAPK signaling pathway ETV1 +PWCOMMONS p38 MAPK signaling pathway ATF1 +PWCOMMONS p38 MAPK signaling pathway MEF2C +PWCOMMONS p38 MAPK signaling pathway MKNK1 +PWCOMMONS p38 MAPK signaling pathway MITF +PWCOMMONS p38 MAPK signaling pathway NOS2 +PWCOMMONS p38 MAPK signaling pathway JUN +PWCOMMONS p38 MAPK signaling pathway GDI1 +PWCOMMONS p38 MAPK signaling pathway RAB5A +PWCOMMONS p38 MAPK signaling pathway ATF2 +PWCOMMONS p38 MAPK signaling pathway EIF4EBP1 +PWCOMMONS p38 MAPK signaling pathway MEF2A +PWCOMMONS p38 MAPK signaling pathway PLA2G4A +PWCOMMONS p38 MAPK signaling pathway EIF4E +PWCOMMONS p38 MAPK signaling pathway ESR1 +PWCOMMONS p38 MAPK signaling pathway HBP1 +PWCOMMONS p38 MAPK signaling pathway TP53 +PWCOMMONS p38 MAPK signaling pathway DDIT3 +PWCOMMONS p38 MAPK signaling pathway KRT19 +PWCOMMONS p38 MAPK signaling pathway ELK4 +PWCOMMONS p38 MAPK signaling pathway ATF6 +PWCOMMONS p38 MAPK signaling pathway DUSP1 +PWCOMMONS p38 MAPK signaling pathway MAP2K4 +PWCOMMONS p38 MAPK signaling pathway GSK3B +PWCOMMONS p38 MAPK signaling pathway BCL2 +PWCOMMONS p38 MAPK signaling pathway FKBP8 +PWCOMMONS p38 MAPK signaling pathway RCAN2 +PWCOMMONS p38 MAPK signaling pathway YWHAQ +PWCOMMONS p38 MAPK signaling pathway BAX +PWCOMMONS p38 MAPK signaling pathway MAPK9 +PWCOMMONS p38 MAPK signaling pathway NFATC3 +PWCOMMONS p38 MAPK signaling pathway PRKACA +PWCOMMONS p38 MAPK signaling pathway NFATC1 +PWCOMMONS p38 MAPK signaling pathway KPNB1 +PWCOMMONS p38 MAPK signaling pathway KPNA2 +PWCOMMONS p38 MAPK signaling pathway CABIN1 +PWCOMMONS p38 MAPK signaling pathway NFATC2 +PWCOMMONS p38 MAPK signaling pathway CSNK1A1 +PWCOMMONS p38 MAPK signaling pathway MEF2D +PWCOMMONS p38 MAPK signaling pathway MAPK8 +PWCOMMONS p38 MAPK signaling pathway MAP3K1 +PWCOMMONS p38 MAPK signaling pathway CAMK4 +PWCOMMONS p38 MAPK signaling pathway BAD +PWCOMMONS p38 MAPK signaling pathway AKAP5 +PWCOMMONS p38 MAPK signaling pathway NR4A1 +PWCOMMONS p38 MAPK signaling pathway RCAN1 +PWCOMMONS p38 MAPK signaling pathway CHP +PWCOMMONS p38 MAPK signaling pathway PRKCZ +PWCOMMONS p38 MAPK signaling pathway CSNK2A1 +PWCOMMONS p38 MAPK signaling pathway MAPK3 +PWCOMMONS p38 MAPK signaling pathway XPO1 +PWCOMMONS p38 MAPK signaling pathway RAN +PWCOMMONS p38 MAPK signaling pathway NUP214 +PWCOMMONS p38 MAPK signaling pathway MAP3K8 +PWCOMMONS p38 MAPK signaling pathway E2F1 +PWCOMMONS p38 MAPK signaling pathway EGR3 +PWCOMMONS p38 MAPK signaling pathway FOS +PWCOMMONS p38 MAPK signaling pathway CREM +PWCOMMONS p38 MAPK signaling pathway CTLA4 +PWCOMMONS p38 MAPK signaling pathway TNF +PWCOMMONS p38 MAPK signaling pathway IL2RA +PWCOMMONS p38 MAPK signaling pathway FOXP3 +PWCOMMONS p38 MAPK signaling pathway PPARG +PWCOMMONS p38 MAPK signaling pathway EGR4 +PWCOMMONS p38 MAPK signaling pathway CD40LG +PWCOMMONS p38 MAPK signaling pathway FASLG +PWCOMMONS p38 MAPK signaling pathway GATA3 +PWCOMMONS p38 MAPK signaling pathway IL8 +PWCOMMONS p38 MAPK signaling pathway FOSL1 +PWCOMMONS p38 MAPK signaling pathway JUNB +PWCOMMONS p38 MAPK signaling pathway IL5 +PWCOMMONS p38 MAPK signaling pathway IKZF1 +PWCOMMONS p38 MAPK signaling pathway GBP3 +PWCOMMONS p38 MAPK signaling pathway CSF2 +PWCOMMONS p38 MAPK signaling pathway IL2 +PWCOMMONS p38 MAPK signaling pathway PRKCQ +PWCOMMONS p38 MAPK signaling pathway IRF4 +PWCOMMONS p38 MAPK signaling pathway MAF +PWCOMMONS p38 MAPK signaling pathway POU2F1 +PWCOMMONS p38 MAPK signaling pathway CBLB +PWCOMMONS p38 MAPK signaling pathway EGR1 +PWCOMMONS p38 MAPK signaling pathway PTPN1 +PWCOMMONS p38 MAPK signaling pathway SLC3A2 +PWCOMMONS p38 MAPK signaling pathway IFNG +PWCOMMONS p38 MAPK signaling pathway ITCH +PWCOMMONS p38 MAPK signaling pathway IL4 +PWCOMMONS p38 MAPK signaling pathway EGR2 +PWCOMMONS p38 MAPK signaling pathway RNF128 +PWCOMMONS p38 MAPK signaling pathway DGKA +PWCOMMONS p38 MAPK signaling pathway IL3 +PWCOMMONS p38 MAPK signaling pathway BATF3 +PWCOMMONS p38 MAPK signaling pathway TBX21 +PWCOMMONS p38 MAPK signaling pathway BCE1 +PWCOMMONS p38 MAPK signaling pathway CDK4 +PWCOMMONS p38 MAPK signaling pathway CASP3 +PWCOMMONS p38 MAPK signaling pathway PTPRK +PWCOMMONS p38 MAPK signaling pathway PIM1 +PWCOMMONS p38 MAPK signaling pathway FKBP1A +PWCOMMONS p38 MAPK signaling pathway RIPK1 +PWCOMMONS p38 MAPK signaling pathway MAP3K3 +PWCOMMONS p38 MAPK signaling pathway MAPK11 +PWCOMMONS p38 MAPK signaling pathway MAP3K12 +PWCOMMONS p38 MAPK signaling pathway MAP3K7IP1 +PWCOMMONS p38 MAPK signaling pathway PRKG1 +PWCOMMONS p38 MAPK signaling pathway CCM2 +PWCOMMONS p38 MAPK signaling pathway RAC1 +PWCOMMONS p38 MAPK signaling pathway DUSP16 +PWCOMMONS p38 MAPK signaling pathway DUSP8 +PWCOMMONS p38 MAPK signaling pathway DUSP10 +PWCOMMONS p38 MAPK signaling pathway MAPK13 +PWCOMMONS p38 MAPK signaling pathway MLTK +PWCOMMONS p38 MAPK signaling pathway STMN1 +PWCOMMONS p38 MAPK signaling pathway MAPK12 +PWCOMMONS p38 MAPK signaling pathway SNTA1 +PWCOMMONS p38 MAPK signaling pathway PKN1 +PWCOMMONS p38 MAPK signaling pathway CCND1 +PWCOMMONS p38 MAPK signaling pathway EEF2K +PWCOMMONS p38 MAPK signaling pathway ATM +PWCOMMONS p38 MAPK signaling pathway +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PIK3CA +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PIK3R1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) BAG1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) MET +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) HGF +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) ELK1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) HRAS +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) MAPK3 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) RAF1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) SRC +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) MAP2K2 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) INPP5D +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) INPPL1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) CRKL +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) GAB1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PTPN11 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) MAP2K1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PXN +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PTK2B +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) RASA1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PTK2 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) STAT3 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PAK1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) SOS1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) GRB2 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) RAP1B +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) RAP1A +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) RAPGEF1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) SHC1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) RANBP9 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) MAP4K1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) HGS +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) RANBP10 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) FOS +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) JUN +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PDPK1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PLCG1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) MAPK8 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) DOCK1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) AKT1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) MAP3K5 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) MAP2K4 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PTPRJ +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) PTEN +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) GLMN +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) CRK +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) CBL +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) RPS6KB1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) SH3KBP1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) CTNNB1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) BAD +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) NCK1 +PWCOMMONS Signaling events activated by Hepatocyte Growth Factor Receptor (c-Met) +PWCOMMONS Syndecan-1-mediated signaling events SDC1 +PWCOMMONS Syndecan-1-mediated signaling events MET +PWCOMMONS Syndecan-1-mediated signaling events HGF +PWCOMMONS Syndecan-1-mediated signaling events BSG +PWCOMMONS Syndecan-1-mediated signaling events LAMA5 +PWCOMMONS Syndecan-1-mediated signaling events SDCBP +PWCOMMONS Syndecan-1-mediated signaling events HPSE +PWCOMMONS Syndecan-1-mediated signaling events PRKACA +PWCOMMONS Syndecan-1-mediated signaling events PPIB +PWCOMMONS Syndecan-1-mediated signaling events MAPK1 +PWCOMMONS Syndecan-1-mediated signaling events PIK3CA +PWCOMMONS Syndecan-1-mediated signaling events PIK3R1 +PWCOMMONS Syndecan-1-mediated signaling events BAG1 +PWCOMMONS Syndecan-1-mediated signaling events ELK1 +PWCOMMONS Syndecan-1-mediated signaling events HRAS +PWCOMMONS Syndecan-1-mediated signaling events MAPK3 +PWCOMMONS Syndecan-1-mediated signaling events RAF1 +PWCOMMONS Syndecan-1-mediated signaling events SRC +PWCOMMONS Syndecan-1-mediated signaling events MAP2K2 +PWCOMMONS Syndecan-1-mediated signaling events INPP5D +PWCOMMONS Syndecan-1-mediated signaling events INPPL1 +PWCOMMONS Syndecan-1-mediated signaling events CRKL +PWCOMMONS Syndecan-1-mediated signaling events GAB1 +PWCOMMONS Syndecan-1-mediated signaling events PTPN11 +PWCOMMONS Syndecan-1-mediated signaling events MAP2K1 +PWCOMMONS Syndecan-1-mediated signaling events PXN +PWCOMMONS Syndecan-1-mediated signaling events PTK2B +PWCOMMONS Syndecan-1-mediated signaling events RASA1 +PWCOMMONS Syndecan-1-mediated signaling events PTK2 +PWCOMMONS Syndecan-1-mediated signaling events STAT3 +PWCOMMONS Syndecan-1-mediated signaling events PAK1 +PWCOMMONS Syndecan-1-mediated signaling events SOS1 +PWCOMMONS Syndecan-1-mediated signaling events GRB2 +PWCOMMONS Syndecan-1-mediated signaling events RAP1B +PWCOMMONS Syndecan-1-mediated signaling events RAP1A +PWCOMMONS Syndecan-1-mediated signaling events RAPGEF1 +PWCOMMONS Syndecan-1-mediated signaling events SHC1 +PWCOMMONS Syndecan-1-mediated signaling events RANBP9 +PWCOMMONS Syndecan-1-mediated signaling events MAP4K1 +PWCOMMONS Syndecan-1-mediated signaling events HGS +PWCOMMONS Syndecan-1-mediated signaling events RANBP10 +PWCOMMONS Syndecan-1-mediated signaling events FOS +PWCOMMONS Syndecan-1-mediated signaling events JUN +PWCOMMONS Syndecan-1-mediated signaling events PDPK1 +PWCOMMONS Syndecan-1-mediated signaling events PLCG1 +PWCOMMONS Syndecan-1-mediated signaling events MAPK8 +PWCOMMONS Syndecan-1-mediated signaling events DOCK1 +PWCOMMONS Syndecan-1-mediated signaling events AKT1 +PWCOMMONS Syndecan-1-mediated signaling events MAP3K5 +PWCOMMONS Syndecan-1-mediated signaling events MAP2K4 +PWCOMMONS Syndecan-1-mediated signaling events PTPRJ +PWCOMMONS Syndecan-1-mediated signaling events PTEN +PWCOMMONS Syndecan-1-mediated signaling events GLMN +PWCOMMONS Syndecan-1-mediated signaling events CRK +PWCOMMONS Syndecan-1-mediated signaling events CBL +PWCOMMONS Syndecan-1-mediated signaling events RPS6KB1 +PWCOMMONS Syndecan-1-mediated signaling events SH3KBP1 +PWCOMMONS Syndecan-1-mediated signaling events CTNNB1 +PWCOMMONS Syndecan-1-mediated signaling events BAD +PWCOMMONS Syndecan-1-mediated signaling events NCK1 +PWCOMMONS Syndecan-1-mediated signaling events CCL5 +PWCOMMONS Syndecan-1-mediated signaling events +PWCOMMONS Visual signal transduction: Rods GNAT1 +PWCOMMONS Visual signal transduction: Rods PDE6A +PWCOMMONS Visual signal transduction: Rods PDE6G +PWCOMMONS Visual signal transduction: Rods PDE6B +PWCOMMONS Visual signal transduction: Rods CNGB1 +PWCOMMONS Visual signal transduction: Rods CNGA1 +PWCOMMONS Visual signal transduction: Rods GUCY2D +PWCOMMONS Visual signal transduction: Rods GUCY2F +PWCOMMONS Visual signal transduction: Rods RGS9 +PWCOMMONS Visual signal transduction: Rods GNB5 +PWCOMMONS Visual signal transduction: Rods SAG +PWCOMMONS Visual signal transduction: Rods GNGT1 +PWCOMMONS Visual signal transduction: Rods GNB1 +PWCOMMONS Visual signal transduction: Rods SLC24A1 +PWCOMMONS Visual signal transduction: Rods LRAT +PWCOMMONS Visual signal transduction: Rods GRK1 +PWCOMMONS Visual signal transduction: Rods RDH12 +PWCOMMONS Visual signal transduction: Rods +PWCOMMONS EphrinB-EPHB pathway DNM1 +PWCOMMONS EphrinB-EPHB pathway NCK2 +PWCOMMONS EphrinB-EPHB pathway ITGB3 +PWCOMMONS EphrinB-EPHB pathway ITGA2B +PWCOMMONS EphrinB-EPHB pathway PIK3CA +PWCOMMONS EphrinB-EPHB pathway PIK3R1 +PWCOMMONS EphrinB-EPHB pathway RGS3 +PWCOMMONS EphrinB-EPHB pathway MAP2K4 +PWCOMMONS EphrinB-EPHB pathway EPHB4 +PWCOMMONS EphrinB-EPHB pathway EFNB2 +PWCOMMONS EphrinB-EPHB pathway RAC1 +PWCOMMONS EphrinB-EPHB pathway TIAM1 +PWCOMMONS EphrinB-EPHB pathway MAP3K7 +PWCOMMONS EphrinB-EPHB pathway MAPK8 +PWCOMMONS EphrinB-EPHB pathway PTPN13 +PWCOMMONS EphrinB-EPHB pathway CXCR4 +PWCOMMONS EphrinB-EPHB pathway EPHB3 +PWCOMMONS EphrinB-EPHB pathway EPHB2 +PWCOMMONS EphrinB-EPHB pathway KALRN +PWCOMMONS EphrinB-EPHB pathway PXN +PWCOMMONS EphrinB-EPHB pathway EPHB1 +PWCOMMONS EphrinB-EPHB pathway SRC +PWCOMMONS EphrinB-EPHB pathway RASA1 +PWCOMMONS EphrinB-EPHB pathway GRB2 +PWCOMMONS EphrinB-EPHB pathway PTK2 +PWCOMMONS EphrinB-EPHB pathway NCK1 +PWCOMMONS EphrinB-EPHB pathway RRAS +PWCOMMONS EphrinB-EPHB pathway WASL +PWCOMMONS EphrinB-EPHB pathway ITSN1 +PWCOMMONS EphrinB-EPHB pathway GRB7 +PWCOMMONS EphrinB-EPHB pathway MAP2K1 +PWCOMMONS EphrinB-EPHB pathway SYNJ1 +PWCOMMONS EphrinB-EPHB pathway TF +PWCOMMONS EphrinB-EPHB pathway RHOA +PWCOMMONS EphrinB-EPHB pathway MAP4K4 +PWCOMMONS EphrinB-EPHB pathway HRAS +PWCOMMONS EphrinB-EPHB pathway ROCK1 +PWCOMMONS EphrinB-EPHB pathway GRIA1 +PWCOMMONS EphrinB-EPHB pathway EFNA5 +PWCOMMONS EphrinB-EPHB pathway PAK1 +PWCOMMONS EphrinB-EPHB pathway +PWCOMMONS TNF receptor signaling pathway RIPK1 +PWCOMMONS TNF receptor signaling pathway TNFRSF1A +PWCOMMONS TNF receptor signaling pathway TRADD +PWCOMMONS TNF receptor signaling pathway TNF +PWCOMMONS TNF receptor signaling pathway BIRC2 +PWCOMMONS TNF receptor signaling pathway BIRC3 +PWCOMMONS TNF receptor signaling pathway CAV1 +PWCOMMONS TNF receptor signaling pathway MAP3K1 +PWCOMMONS TNF receptor signaling pathway IKBKB +PWCOMMONS TNF receptor signaling pathway CHUK +PWCOMMONS TNF receptor signaling pathway IKBKG +PWCOMMONS TNF receptor signaling pathway TNFAIP3 +PWCOMMONS TNF receptor signaling pathway ATM +PWCOMMONS TNF receptor signaling pathway NFKB1 +PWCOMMONS TNF receptor signaling pathway NFKBIA +PWCOMMONS TNF receptor signaling pathway RELA +PWCOMMONS TNF receptor signaling pathway CYLD +PWCOMMONS TNF receptor signaling pathway NOD2 +PWCOMMONS TNF receptor signaling pathway RIPK2 +PWCOMMONS TNF receptor signaling pathway BCL10 +PWCOMMONS TNF receptor signaling pathway TRAF6 +PWCOMMONS TNF receptor signaling pathway MALT1 +PWCOMMONS TNF receptor signaling pathway PRKCA +PWCOMMONS TNF receptor signaling pathway ERC1 +PWCOMMONS TNF receptor signaling pathway FBXW11 +PWCOMMONS TNF receptor signaling pathway LCK +PWCOMMONS TNF receptor signaling pathway ARRB2 +PWCOMMONS TNF receptor signaling pathway REL +PWCOMMONS TNF receptor signaling pathway SYK +PWCOMMONS TNF receptor signaling pathway PIK3CA +PWCOMMONS TNF receptor signaling pathway PIK3R1 +PWCOMMONS TNF receptor signaling pathway BCL3 +PWCOMMONS TNF receptor signaling pathway MAPK14 +PWCOMMONS TNF receptor signaling pathway SRC +PWCOMMONS TNF receptor signaling pathway XPO1 +PWCOMMONS TNF receptor signaling pathway RAN +PWCOMMONS TNF receptor signaling pathway NFKB2 +PWCOMMONS TNF receptor signaling pathway RELB +PWCOMMONS TNF receptor signaling pathway MAP3K14 +PWCOMMONS TNF receptor signaling pathway UBE2D3 +PWCOMMONS TNF receptor signaling pathway RFFL +PWCOMMONS TNF receptor signaling pathway FADD +PWCOMMONS TNF receptor signaling pathway MAP3K5 +PWCOMMONS TNF receptor signaling pathway SMPD1 +PWCOMMONS TNF receptor signaling pathway TNFRSF1B +PWCOMMONS TNF receptor signaling pathway NUMA1 +PWCOMMONS TNF receptor signaling pathway SLK +PWCOMMONS TNF receptor signaling pathway GAS2 +PWCOMMONS TNF receptor signaling pathway LIMK1 +PWCOMMONS TNF receptor signaling pathway VIM +PWCOMMONS TNF receptor signaling pathway PRF1 +PWCOMMONS TNF receptor signaling pathway SREBF1 +PWCOMMONS TNF receptor signaling pathway CFL2 +PWCOMMONS TNF receptor signaling pathway CASP9 +PWCOMMONS TNF receptor signaling pathway APAF1 +PWCOMMONS TNF receptor signaling pathway TOP1 +PWCOMMONS TNF receptor signaling pathway PTK2 +PWCOMMONS TNF receptor signaling pathway PARP1 +PWCOMMONS TNF receptor signaling pathway CASP3 +PWCOMMONS TNF receptor signaling pathway CYCS +PWCOMMONS TNF receptor signaling pathway CASP6 +PWCOMMONS TNF receptor signaling pathway APP +PWCOMMONS TNF receptor signaling pathway CASP7 +PWCOMMONS TNF receptor signaling pathway GZMB +PWCOMMONS TNF receptor signaling pathway GSN +PWCOMMONS TNF receptor signaling pathway CASP10 +PWCOMMONS TNF receptor signaling pathway DFFB +PWCOMMONS TNF receptor signaling pathway ARHGDIB +PWCOMMONS TNF receptor signaling pathway BCL2 +PWCOMMONS TNF receptor signaling pathway BID +PWCOMMONS TNF receptor signaling pathway CASP2 +PWCOMMONS TNF receptor signaling pathway KRT18 +PWCOMMONS TNF receptor signaling pathway CRADD +PWCOMMONS TNF receptor signaling pathway LRDD +PWCOMMONS TNF receptor signaling pathway MADD +PWCOMMONS TNF receptor signaling pathway CASP1 +PWCOMMONS TNF receptor signaling pathway DIABLO +PWCOMMONS TNF receptor signaling pathway CASP8 +PWCOMMONS TNF receptor signaling pathway ACTA1 +PWCOMMONS TNF receptor signaling pathway SATB1 +PWCOMMONS TNF receptor signaling pathway BAX +PWCOMMONS TNF receptor signaling pathway SPTAN1 +PWCOMMONS TNF receptor signaling pathway DFFA +PWCOMMONS TNF receptor signaling pathway TFAP2A +PWCOMMONS TNF receptor signaling pathway MAP2K3 +PWCOMMONS TNF receptor signaling pathway MAPKAPK3 +PWCOMMONS TNF receptor signaling pathway KRT8 +PWCOMMONS TNF receptor signaling pathway CEBPB +PWCOMMONS TNF receptor signaling pathway PTGS2 +PWCOMMONS TNF receptor signaling pathway SLC9A1 +PWCOMMONS TNF receptor signaling pathway PPARGC1A +PWCOMMONS TNF receptor signaling pathway MAPKAPK2 +PWCOMMONS TNF receptor signaling pathway USF1 +PWCOMMONS TNF receptor signaling pathway MAPKAPK5 +PWCOMMONS TNF receptor signaling pathway HSPB1 +PWCOMMONS TNF receptor signaling pathway LSP1 +PWCOMMONS TNF receptor signaling pathway CDC25B +PWCOMMONS TNF receptor signaling pathway TSC2 +PWCOMMONS TNF receptor signaling pathway TCF3 +PWCOMMONS TNF receptor signaling pathway RAF1 +PWCOMMONS TNF receptor signaling pathway YWHAZ +PWCOMMONS TNF receptor signaling pathway SRF +PWCOMMONS TNF receptor signaling pathway CREB1 +PWCOMMONS TNF receptor signaling pathway TH +PWCOMMONS TNF receptor signaling pathway ETV1 +PWCOMMONS TNF receptor signaling pathway ATF1 +PWCOMMONS TNF receptor signaling pathway MEF2C +PWCOMMONS TNF receptor signaling pathway MKNK1 +PWCOMMONS TNF receptor signaling pathway MITF +PWCOMMONS TNF receptor signaling pathway NOS2 +PWCOMMONS TNF receptor signaling pathway JUN +PWCOMMONS TNF receptor signaling pathway GDI1 +PWCOMMONS TNF receptor signaling pathway RAB5A +PWCOMMONS TNF receptor signaling pathway ATF2 +PWCOMMONS TNF receptor signaling pathway EIF4EBP1 +PWCOMMONS TNF receptor signaling pathway MEF2A +PWCOMMONS TNF receptor signaling pathway PLA2G4A +PWCOMMONS TNF receptor signaling pathway EIF4E +PWCOMMONS TNF receptor signaling pathway ESR1 +PWCOMMONS TNF receptor signaling pathway HBP1 +PWCOMMONS TNF receptor signaling pathway TP53 +PWCOMMONS TNF receptor signaling pathway DDIT3 +PWCOMMONS TNF receptor signaling pathway KRT19 +PWCOMMONS TNF receptor signaling pathway ELK4 +PWCOMMONS TNF receptor signaling pathway ATF6 +PWCOMMONS TNF receptor signaling pathway MAP2K6 +PWCOMMONS TNF receptor signaling pathway DUSP1 +PWCOMMONS TNF receptor signaling pathway MAP2K4 +PWCOMMONS TNF receptor signaling pathway GSK3B +PWCOMMONS TNF receptor signaling pathway FKBP8 +PWCOMMONS TNF receptor signaling pathway CALM1 +PWCOMMONS TNF receptor signaling pathway RCAN2 +PWCOMMONS TNF receptor signaling pathway YWHAQ +PWCOMMONS TNF receptor signaling pathway MAPK9 +PWCOMMONS TNF receptor signaling pathway NFATC3 +PWCOMMONS TNF receptor signaling pathway PRKACA +PWCOMMONS TNF receptor signaling pathway NFATC1 +PWCOMMONS TNF receptor signaling pathway KPNB1 +PWCOMMONS TNF receptor signaling pathway KPNA2 +PWCOMMONS TNF receptor signaling pathway CABIN1 +PWCOMMONS TNF receptor signaling pathway NFATC2 +PWCOMMONS TNF receptor signaling pathway CSNK1A1 +PWCOMMONS TNF receptor signaling pathway MEF2D +PWCOMMONS TNF receptor signaling pathway MAPK8 +PWCOMMONS TNF receptor signaling pathway CAMK4 +PWCOMMONS TNF receptor signaling pathway BAD +PWCOMMONS TNF receptor signaling pathway AKAP5 +PWCOMMONS TNF receptor signaling pathway NR4A1 +PWCOMMONS TNF receptor signaling pathway RCAN1 +PWCOMMONS TNF receptor signaling pathway CHP +PWCOMMONS TNF receptor signaling pathway PRKCZ +PWCOMMONS TNF receptor signaling pathway CSNK2A1 +PWCOMMONS TNF receptor signaling pathway MAPK3 +PWCOMMONS TNF receptor signaling pathway NUP214 +PWCOMMONS TNF receptor signaling pathway MAP3K8 +PWCOMMONS TNF receptor signaling pathway E2F1 +PWCOMMONS TNF receptor signaling pathway EGR3 +PWCOMMONS TNF receptor signaling pathway FOS +PWCOMMONS TNF receptor signaling pathway CREM +PWCOMMONS TNF receptor signaling pathway CTLA4 +PWCOMMONS TNF receptor signaling pathway IL2RA +PWCOMMONS TNF receptor signaling pathway FOXP3 +PWCOMMONS TNF receptor signaling pathway PPARG +PWCOMMONS TNF receptor signaling pathway EGR4 +PWCOMMONS TNF receptor signaling pathway CD40LG +PWCOMMONS TNF receptor signaling pathway FASLG +PWCOMMONS TNF receptor signaling pathway GATA3 +PWCOMMONS TNF receptor signaling pathway IL8 +PWCOMMONS TNF receptor signaling pathway FOSL1 +PWCOMMONS TNF receptor signaling pathway JUNB +PWCOMMONS TNF receptor signaling pathway IL5 +PWCOMMONS TNF receptor signaling pathway IKZF1 +PWCOMMONS TNF receptor signaling pathway GBP3 +PWCOMMONS TNF receptor signaling pathway CSF2 +PWCOMMONS TNF receptor signaling pathway IL2 +PWCOMMONS TNF receptor signaling pathway PRKCQ +PWCOMMONS TNF receptor signaling pathway IRF4 +PWCOMMONS TNF receptor signaling pathway MAF +PWCOMMONS TNF receptor signaling pathway POU2F1 +PWCOMMONS TNF receptor signaling pathway CBLB +PWCOMMONS TNF receptor signaling pathway EGR1 +PWCOMMONS TNF receptor signaling pathway PTPN1 +PWCOMMONS TNF receptor signaling pathway SLC3A2 +PWCOMMONS TNF receptor signaling pathway IFNG +PWCOMMONS TNF receptor signaling pathway ITCH +PWCOMMONS TNF receptor signaling pathway IL4 +PWCOMMONS TNF receptor signaling pathway EGR2 +PWCOMMONS TNF receptor signaling pathway RNF128 +PWCOMMONS TNF receptor signaling pathway DGKA +PWCOMMONS TNF receptor signaling pathway IL3 +PWCOMMONS TNF receptor signaling pathway BATF3 +PWCOMMONS TNF receptor signaling pathway TBX21 +PWCOMMONS TNF receptor signaling pathway BCE1 +PWCOMMONS TNF receptor signaling pathway CDK4 +PWCOMMONS TNF receptor signaling pathway PTPRK +PWCOMMONS TNF receptor signaling pathway PIM1 +PWCOMMONS TNF receptor signaling pathway FKBP1A +PWCOMMONS TNF receptor signaling pathway MAP3K3 +PWCOMMONS TNF receptor signaling pathway MAPK11 +PWCOMMONS TNF receptor signaling pathway MAP3K12 +PWCOMMONS TNF receptor signaling pathway MAP3K7IP1 +PWCOMMONS TNF receptor signaling pathway PRKG1 +PWCOMMONS TNF receptor signaling pathway CCM2 +PWCOMMONS TNF receptor signaling pathway RAC1 +PWCOMMONS TNF receptor signaling pathway DUSP16 +PWCOMMONS TNF receptor signaling pathway DUSP8 +PWCOMMONS TNF receptor signaling pathway DUSP10 +PWCOMMONS TNF receptor signaling pathway MAP2K7 +PWCOMMONS TNF receptor signaling pathway ADAM17 +PWCOMMONS TNF receptor signaling pathway STAT1 +PWCOMMONS TNF receptor signaling pathway SQSTM1 +PWCOMMONS TNF receptor signaling pathway CTSD +PWCOMMONS TNF receptor signaling pathway MAP4K4 +PWCOMMONS TNF receptor signaling pathway EGF +PWCOMMONS TNF receptor signaling pathway PAWR +PWCOMMONS TNF receptor signaling pathway KSR1 +PWCOMMONS TNF receptor signaling pathway AKT1 +PWCOMMONS TNF receptor signaling pathway PRKCD +PWCOMMONS TNF receptor signaling pathway IGF1 +PWCOMMONS TNF receptor signaling pathway MYC +PWCOMMONS TNF receptor signaling pathway BAG4 +PWCOMMONS TNF receptor signaling pathway AIFM1 +PWCOMMONS TNF receptor signaling pathway MAP2K1 +PWCOMMONS TNF receptor signaling pathway MAP2K2 +PWCOMMONS TNF receptor signaling pathway RB1 +PWCOMMONS TNF receptor signaling pathway PRKRA +PWCOMMONS TNF receptor signaling pathway SMPD3 +PWCOMMONS TNF receptor signaling pathway EIF2A +PWCOMMONS TNF receptor signaling pathway PDGFA +PWCOMMONS TNF receptor signaling pathway NSMAF +PWCOMMONS TNF receptor signaling pathway SPHK2 +PWCOMMONS TNF receptor signaling pathway ASAH1 +PWCOMMONS TNF receptor signaling pathway MAPK1 +PWCOMMONS TNF receptor signaling pathway MAP3K7 +PWCOMMONS TNF receptor signaling pathway TXN +PWCOMMONS TNF receptor signaling pathway GNB2L1 +PWCOMMONS TNF receptor signaling pathway SMPD2 +PWCOMMONS TNF receptor signaling pathway TRAF1 +PWCOMMONS TNF receptor signaling pathway +PWCOMMONS p75(NTR)-mediated signaling PSENEN +PWCOMMONS p75(NTR)-mediated signaling NCSTN +PWCOMMONS p75(NTR)-mediated signaling PSEN1 +PWCOMMONS p75(NTR)-mediated signaling APH1A +PWCOMMONS p75(NTR)-mediated signaling SORT1 +PWCOMMONS p75(NTR)-mediated signaling NGFR +PWCOMMONS p75(NTR)-mediated signaling NGF +PWCOMMONS p75(NTR)-mediated signaling ZNF274 +PWCOMMONS p75(NTR)-mediated signaling TRAF6 +PWCOMMONS p75(NTR)-mediated signaling CASP3 +PWCOMMONS p75(NTR)-mediated signaling RAC1 +PWCOMMONS p75(NTR)-mediated signaling RAPGEF1 +PWCOMMONS p75(NTR)-mediated signaling CRKL +PWCOMMONS p75(NTR)-mediated signaling NTF3 +PWCOMMONS p75(NTR)-mediated signaling GRB2 +PWCOMMONS p75(NTR)-mediated signaling MCF2L +PWCOMMONS p75(NTR)-mediated signaling MAGED1 +PWCOMMONS p75(NTR)-mediated signaling CCND1 +PWCOMMONS p75(NTR)-mediated signaling DYNLT1 +PWCOMMONS p75(NTR)-mediated signaling RGS19 +PWCOMMONS p75(NTR)-mediated signaling GIPC1 +PWCOMMONS p75(NTR)-mediated signaling RHOA +PWCOMMONS p75(NTR)-mediated signaling NTRK2 +PWCOMMONS p75(NTR)-mediated signaling BDNF +PWCOMMONS p75(NTR)-mediated signaling RICS +PWCOMMONS p75(NTR)-mediated signaling SOS1 +PWCOMMONS p75(NTR)-mediated signaling RIT2 +PWCOMMONS p75(NTR)-mediated signaling RASGRF1 +PWCOMMONS p75(NTR)-mediated signaling NTRK1 +PWCOMMONS p75(NTR)-mediated signaling RASA1 +PWCOMMONS p75(NTR)-mediated signaling SHC1 +PWCOMMONS p75(NTR)-mediated signaling ELMO1 +PWCOMMONS p75(NTR)-mediated signaling MATK +PWCOMMONS p75(NTR)-mediated signaling GAB1 +PWCOMMONS p75(NTR)-mediated signaling GAB2 +PWCOMMONS p75(NTR)-mediated signaling PTPN11 +PWCOMMONS p75(NTR)-mediated signaling FAIM +PWCOMMONS p75(NTR)-mediated signaling DNM1 +PWCOMMONS p75(NTR)-mediated signaling NTF4 +PWCOMMONS p75(NTR)-mediated signaling MAP2K1 +PWCOMMONS p75(NTR)-mediated signaling PIK3CA +PWCOMMONS p75(NTR)-mediated signaling PIK3R1 +PWCOMMONS p75(NTR)-mediated signaling SH2B1 +PWCOMMONS p75(NTR)-mediated signaling EHD4 +PWCOMMONS p75(NTR)-mediated signaling STAT3 +PWCOMMONS p75(NTR)-mediated signaling DOCK1 +PWCOMMONS p75(NTR)-mediated signaling NEDD4L +PWCOMMONS p75(NTR)-mediated signaling SQSTM1 +PWCOMMONS p75(NTR)-mediated signaling DNAJA3 +PWCOMMONS p75(NTR)-mediated signaling ABL1 +PWCOMMONS p75(NTR)-mediated signaling RIT1 +PWCOMMONS p75(NTR)-mediated signaling TIAM1 +PWCOMMONS p75(NTR)-mediated signaling PLCG1 +PWCOMMONS p75(NTR)-mediated signaling EGR1 +PWCOMMONS p75(NTR)-mediated signaling TRPC3 +PWCOMMONS p75(NTR)-mediated signaling TRPV1 +PWCOMMONS p75(NTR)-mediated signaling CAMK4 +PWCOMMONS p75(NTR)-mediated signaling GSK3B +PWCOMMONS p75(NTR)-mediated signaling AKT1 +PWCOMMONS p75(NTR)-mediated signaling BAD +PWCOMMONS p75(NTR)-mediated signaling FOXO3 +PWCOMMONS p75(NTR)-mediated signaling CREB1 +PWCOMMONS p75(NTR)-mediated signaling PRKCD +PWCOMMONS p75(NTR)-mediated signaling SRC +PWCOMMONS p75(NTR)-mediated signaling PDPK1 +PWCOMMONS p75(NTR)-mediated signaling STAT5A +PWCOMMONS p75(NTR)-mediated signaling CAMK2A +PWCOMMONS p75(NTR)-mediated signaling AGAP2 +PWCOMMONS p75(NTR)-mediated signaling EPB41L1 +PWCOMMONS p75(NTR)-mediated signaling NTRK3 +PWCOMMONS p75(NTR)-mediated signaling MAPK7 +PWCOMMONS p75(NTR)-mediated signaling MAP2K5 +PWCOMMONS p75(NTR)-mediated signaling MAPK14 +PWCOMMONS p75(NTR)-mediated signaling FOS +PWCOMMONS p75(NTR)-mediated signaling SRF +PWCOMMONS p75(NTR)-mediated signaling BRAF +PWCOMMONS p75(NTR)-mediated signaling RPS6KA5 +PWCOMMONS p75(NTR)-mediated signaling CDK5R1 +PWCOMMONS p75(NTR)-mediated signaling CDK5 +PWCOMMONS p75(NTR)-mediated signaling MAP3K2 +PWCOMMONS p75(NTR)-mediated signaling RPS6KA1 +PWCOMMONS p75(NTR)-mediated signaling MEF2C +PWCOMMONS p75(NTR)-mediated signaling RUSC1 +PWCOMMONS p75(NTR)-mediated signaling MAPKAPK2 +PWCOMMONS p75(NTR)-mediated signaling RAF1 +PWCOMMONS p75(NTR)-mediated signaling ELK1 +PWCOMMONS p75(NTR)-mediated signaling BCL2L11 +PWCOMMONS p75(NTR)-mediated signaling PRDM4 +PWCOMMONS p75(NTR)-mediated signaling TP53 +PWCOMMONS p75(NTR)-mediated signaling NGFRAP1 +PWCOMMONS p75(NTR)-mediated signaling YWHAE +PWCOMMONS p75(NTR)-mediated signaling SMPD2 +PWCOMMONS p75(NTR)-mediated signaling PLG +PWCOMMONS p75(NTR)-mediated signaling DIABLO +PWCOMMONS p75(NTR)-mediated signaling MMP3 +PWCOMMONS p75(NTR)-mediated signaling RIPK2 +PWCOMMONS p75(NTR)-mediated signaling IRAK1 +PWCOMMONS p75(NTR)-mediated signaling E2F1 +PWCOMMONS p75(NTR)-mediated signaling NDNL2 +PWCOMMONS p75(NTR)-mediated signaling NDN +PWCOMMONS p75(NTR)-mediated signaling CASP9 +PWCOMMONS p75(NTR)-mediated signaling APAF1 +PWCOMMONS p75(NTR)-mediated signaling CASP6 +PWCOMMONS p75(NTR)-mediated signaling CYCS +PWCOMMONS p75(NTR)-mediated signaling APP +PWCOMMONS p75(NTR)-mediated signaling MMP7 +PWCOMMONS p75(NTR)-mediated signaling ADAM17 +PWCOMMONS p75(NTR)-mediated signaling BEX1 +PWCOMMONS p75(NTR)-mediated signaling IKBKB +PWCOMMONS p75(NTR)-mediated signaling CHUK +PWCOMMONS p75(NTR)-mediated signaling IKBKG +PWCOMMONS p75(NTR)-mediated signaling TNFAIP3 +PWCOMMONS p75(NTR)-mediated signaling ATM +PWCOMMONS p75(NTR)-mediated signaling NFKB1 +PWCOMMONS p75(NTR)-mediated signaling NFKBIA +PWCOMMONS p75(NTR)-mediated signaling RELA +PWCOMMONS p75(NTR)-mediated signaling CYLD +PWCOMMONS p75(NTR)-mediated signaling NOD2 +PWCOMMONS p75(NTR)-mediated signaling BCL10 +PWCOMMONS p75(NTR)-mediated signaling MALT1 +PWCOMMONS p75(NTR)-mediated signaling PRKCA +PWCOMMONS p75(NTR)-mediated signaling ERC1 +PWCOMMONS p75(NTR)-mediated signaling FBXW11 +PWCOMMONS p75(NTR)-mediated signaling TNFRSF1A +PWCOMMONS p75(NTR)-mediated signaling TNF +PWCOMMONS p75(NTR)-mediated signaling LCK +PWCOMMONS p75(NTR)-mediated signaling ARRB2 +PWCOMMONS p75(NTR)-mediated signaling REL +PWCOMMONS p75(NTR)-mediated signaling SYK +PWCOMMONS p75(NTR)-mediated signaling BCL3 +PWCOMMONS p75(NTR)-mediated signaling XPO1 +PWCOMMONS p75(NTR)-mediated signaling RAN +PWCOMMONS p75(NTR)-mediated signaling NFKB2 +PWCOMMONS p75(NTR)-mediated signaling RELB +PWCOMMONS p75(NTR)-mediated signaling MAP3K14 +PWCOMMONS p75(NTR)-mediated signaling BIRC2 +PWCOMMONS p75(NTR)-mediated signaling UBE2D3 +PWCOMMONS p75(NTR)-mediated signaling MYD88 +PWCOMMONS p75(NTR)-mediated signaling MAGEH1 +PWCOMMONS p75(NTR)-mediated signaling FURIN +PWCOMMONS p75(NTR)-mediated signaling ARHGDIA +PWCOMMONS p75(NTR)-mediated signaling LINGO1 +PWCOMMONS p75(NTR)-mediated signaling RTN4R +PWCOMMONS p75(NTR)-mediated signaling +PWCOMMONS Atypical NF-kappaB pathway NFKB1 +PWCOMMONS Atypical NF-kappaB pathway NFKBIA +PWCOMMONS Atypical NF-kappaB pathway RELA +PWCOMMONS Atypical NF-kappaB pathway IKBKB +PWCOMMONS Atypical NF-kappaB pathway FBXW11 +PWCOMMONS Atypical NF-kappaB pathway ARRB2 +PWCOMMONS Atypical NF-kappaB pathway REL +PWCOMMONS Atypical NF-kappaB pathway SYK +PWCOMMONS Atypical NF-kappaB pathway PIK3CA +PWCOMMONS Atypical NF-kappaB pathway PIK3R1 +PWCOMMONS Atypical NF-kappaB pathway BCL3 +PWCOMMONS Atypical NF-kappaB pathway MAPK14 +PWCOMMONS Atypical NF-kappaB pathway SRC +PWCOMMONS Atypical NF-kappaB pathway +PWCOMMONS Regulation of p38-alpha and p38-beta KRT8 +PWCOMMONS Regulation of p38-alpha and p38-beta CEBPB +PWCOMMONS Regulation of p38-alpha and p38-beta PTGS2 +PWCOMMONS Regulation of p38-alpha and p38-beta SLC9A1 +PWCOMMONS Regulation of p38-alpha and p38-beta PPARGC1A +PWCOMMONS Regulation of p38-alpha and p38-beta MAPKAPK2 +PWCOMMONS Regulation of p38-alpha and p38-beta USF1 +PWCOMMONS Regulation of p38-alpha and p38-beta MAPKAPK5 +PWCOMMONS Regulation of p38-alpha and p38-beta HSPB1 +PWCOMMONS Regulation of p38-alpha and p38-beta LSP1 +PWCOMMONS Regulation of p38-alpha and p38-beta CDC25B +PWCOMMONS Regulation of p38-alpha and p38-beta TSC2 +PWCOMMONS Regulation of p38-alpha and p38-beta TCF3 +PWCOMMONS Regulation of p38-alpha and p38-beta RAF1 +PWCOMMONS Regulation of p38-alpha and p38-beta YWHAZ +PWCOMMONS Regulation of p38-alpha and p38-beta SRF +PWCOMMONS Regulation of p38-alpha and p38-beta CREB1 +PWCOMMONS Regulation of p38-alpha and p38-beta MAPK14 +PWCOMMONS Regulation of p38-alpha and p38-beta TH +PWCOMMONS Regulation of p38-alpha and p38-beta ETV1 +PWCOMMONS Regulation of p38-alpha and p38-beta ATF1 +PWCOMMONS Regulation of p38-alpha and p38-beta MEF2C +PWCOMMONS Regulation of p38-alpha and p38-beta MKNK1 +PWCOMMONS Regulation of p38-alpha and p38-beta MITF +PWCOMMONS Regulation of p38-alpha and p38-beta NOS2 +PWCOMMONS Regulation of p38-alpha and p38-beta JUN +PWCOMMONS Regulation of p38-alpha and p38-beta GDI1 +PWCOMMONS Regulation of p38-alpha and p38-beta RAB5A +PWCOMMONS Regulation of p38-alpha and p38-beta ATF2 +PWCOMMONS Regulation of p38-alpha and p38-beta EIF4EBP1 +PWCOMMONS Regulation of p38-alpha and p38-beta MEF2A +PWCOMMONS Regulation of p38-alpha and p38-beta PLA2G4A +PWCOMMONS Regulation of p38-alpha and p38-beta EIF4E +PWCOMMONS Regulation of p38-alpha and p38-beta ESR1 +PWCOMMONS Regulation of p38-alpha and p38-beta HBP1 +PWCOMMONS Regulation of p38-alpha and p38-beta TP53 +PWCOMMONS Regulation of p38-alpha and p38-beta DDIT3 +PWCOMMONS Regulation of p38-alpha and p38-beta KRT19 +PWCOMMONS Regulation of p38-alpha and p38-beta ELK4 +PWCOMMONS Regulation of p38-alpha and p38-beta ATF6 +PWCOMMONS Regulation of p38-alpha and p38-beta MAP2K6 +PWCOMMONS Regulation of p38-alpha and p38-beta DUSP1 +PWCOMMONS Regulation of p38-alpha and p38-beta MAP2K4 +PWCOMMONS Regulation of p38-alpha and p38-beta GSK3B +PWCOMMONS Regulation of p38-alpha and p38-beta BCL2 +PWCOMMONS Regulation of p38-alpha and p38-beta FKBP8 +PWCOMMONS Regulation of p38-alpha and p38-beta CALM1 +PWCOMMONS Regulation of p38-alpha and p38-beta RCAN2 +PWCOMMONS Regulation of p38-alpha and p38-beta YWHAQ +PWCOMMONS Regulation of p38-alpha and p38-beta BAX +PWCOMMONS Regulation of p38-alpha and p38-beta MAPK9 +PWCOMMONS Regulation of p38-alpha and p38-beta NFATC3 +PWCOMMONS Regulation of p38-alpha and p38-beta PRKACA +PWCOMMONS Regulation of p38-alpha and p38-beta NFATC1 +PWCOMMONS Regulation of p38-alpha and p38-beta KPNB1 +PWCOMMONS Regulation of p38-alpha and p38-beta KPNA2 +PWCOMMONS Regulation of p38-alpha and p38-beta CABIN1 +PWCOMMONS Regulation of p38-alpha and p38-beta NFATC2 +PWCOMMONS Regulation of p38-alpha and p38-beta CSNK1A1 +PWCOMMONS Regulation of p38-alpha and p38-beta MEF2D +PWCOMMONS Regulation of p38-alpha and p38-beta MAPK8 +PWCOMMONS Regulation of p38-alpha and p38-beta MAP3K1 +PWCOMMONS Regulation of p38-alpha and p38-beta CAMK4 +PWCOMMONS Regulation of p38-alpha and p38-beta BAD +PWCOMMONS Regulation of p38-alpha and p38-beta AKAP5 +PWCOMMONS Regulation of p38-alpha and p38-beta NR4A1 +PWCOMMONS Regulation of p38-alpha and p38-beta RCAN1 +PWCOMMONS Regulation of p38-alpha and p38-beta CHP +PWCOMMONS Regulation of p38-alpha and p38-beta PRKCZ +PWCOMMONS Regulation of p38-alpha and p38-beta CSNK2A1 +PWCOMMONS Regulation of p38-alpha and p38-beta MAPK3 +PWCOMMONS Regulation of p38-alpha and p38-beta XPO1 +PWCOMMONS Regulation of p38-alpha and p38-beta RAN +PWCOMMONS Regulation of p38-alpha and p38-beta NUP214 +PWCOMMONS Regulation of p38-alpha and p38-beta MAP3K8 +PWCOMMONS Regulation of p38-alpha and p38-beta E2F1 +PWCOMMONS Regulation of p38-alpha and p38-beta EGR3 +PWCOMMONS Regulation of p38-alpha and p38-beta FOS +PWCOMMONS Regulation of p38-alpha and p38-beta CREM +PWCOMMONS Regulation of p38-alpha and p38-beta CTLA4 +PWCOMMONS Regulation of p38-alpha and p38-beta TNF +PWCOMMONS Regulation of p38-alpha and p38-beta IL2RA +PWCOMMONS Regulation of p38-alpha and p38-beta FOXP3 +PWCOMMONS Regulation of p38-alpha and p38-beta PPARG +PWCOMMONS Regulation of p38-alpha and p38-beta EGR4 +PWCOMMONS Regulation of p38-alpha and p38-beta CD40LG +PWCOMMONS Regulation of p38-alpha and p38-beta FASLG +PWCOMMONS Regulation of p38-alpha and p38-beta GATA3 +PWCOMMONS Regulation of p38-alpha and p38-beta IL8 +PWCOMMONS Regulation of p38-alpha and p38-beta FOSL1 +PWCOMMONS Regulation of p38-alpha and p38-beta JUNB +PWCOMMONS Regulation of p38-alpha and p38-beta IL5 +PWCOMMONS Regulation of p38-alpha and p38-beta IKZF1 +PWCOMMONS Regulation of p38-alpha and p38-beta GBP3 +PWCOMMONS Regulation of p38-alpha and p38-beta CSF2 +PWCOMMONS Regulation of p38-alpha and p38-beta IL2 +PWCOMMONS Regulation of p38-alpha and p38-beta PRKCQ +PWCOMMONS Regulation of p38-alpha and p38-beta IRF4 +PWCOMMONS Regulation of p38-alpha and p38-beta MAF +PWCOMMONS Regulation of p38-alpha and p38-beta POU2F1 +PWCOMMONS Regulation of p38-alpha and p38-beta CBLB +PWCOMMONS Regulation of p38-alpha and p38-beta EGR1 +PWCOMMONS Regulation of p38-alpha and p38-beta PTPN1 +PWCOMMONS Regulation of p38-alpha and p38-beta SLC3A2 +PWCOMMONS Regulation of p38-alpha and p38-beta IFNG +PWCOMMONS Regulation of p38-alpha and p38-beta ITCH +PWCOMMONS Regulation of p38-alpha and p38-beta IL4 +PWCOMMONS Regulation of p38-alpha and p38-beta EGR2 +PWCOMMONS Regulation of p38-alpha and p38-beta RNF128 +PWCOMMONS Regulation of p38-alpha and p38-beta DGKA +PWCOMMONS Regulation of p38-alpha and p38-beta IL3 +PWCOMMONS Regulation of p38-alpha and p38-beta BATF3 +PWCOMMONS Regulation of p38-alpha and p38-beta TBX21 +PWCOMMONS Regulation of p38-alpha and p38-beta BCE1 +PWCOMMONS Regulation of p38-alpha and p38-beta CDK4 +PWCOMMONS Regulation of p38-alpha and p38-beta CASP3 +PWCOMMONS Regulation of p38-alpha and p38-beta PTPRK +PWCOMMONS Regulation of p38-alpha and p38-beta PIM1 +PWCOMMONS Regulation of p38-alpha and p38-beta FKBP1A +PWCOMMONS Regulation of p38-alpha and p38-beta RIPK1 +PWCOMMONS Regulation of p38-alpha and p38-beta MAP3K3 +PWCOMMONS Regulation of p38-alpha and p38-beta TRAF6 +PWCOMMONS Regulation of p38-alpha and p38-beta MAPK11 +PWCOMMONS Regulation of p38-alpha and p38-beta MAP3K12 +PWCOMMONS Regulation of p38-alpha and p38-beta MAP3K7IP1 +PWCOMMONS Regulation of p38-alpha and p38-beta PRKG1 +PWCOMMONS Regulation of p38-alpha and p38-beta CCM2 +PWCOMMONS Regulation of p38-alpha and p38-beta RAC1 +PWCOMMONS Regulation of p38-alpha and p38-beta MAP2K3 +PWCOMMONS Regulation of p38-alpha and p38-beta DUSP16 +PWCOMMONS Regulation of p38-alpha and p38-beta DUSP8 +PWCOMMONS Regulation of p38-alpha and p38-beta DUSP10 +PWCOMMONS Regulation of p38-alpha and p38-beta +PWCOMMONS IL4-mediated signaling events JAK1 +PWCOMMONS IL4-mediated signaling events IL2RG +PWCOMMONS IL4-mediated signaling events IL4R +PWCOMMONS IL4-mediated signaling events IL4 +PWCOMMONS IL4-mediated signaling events FES +PWCOMMONS IL4-mediated signaling events JAK3 +PWCOMMONS IL4-mediated signaling events STAT6 +PWCOMMONS IL4-mediated signaling events PTPN6 +PWCOMMONS IL4-mediated signaling events SOCS5 +PWCOMMONS IL4-mediated signaling events SELP +PWCOMMONS IL4-mediated signaling events TFF3 +PWCOMMONS IL4-mediated signaling events IL10 +PWCOMMONS IL4-mediated signaling events CEBPB +PWCOMMONS IL4-mediated signaling events FRAP1 +PWCOMMONS IL4-mediated signaling events SP1 +PWCOMMONS IL4-mediated signaling events BCL6 +PWCOMMONS IL4-mediated signaling events IL5 +PWCOMMONS IL4-mediated signaling events IRS1 +PWCOMMONS IL4-mediated signaling events INPP5D +PWCOMMONS IL4-mediated signaling events SHC1 +PWCOMMONS IL4-mediated signaling events IGHG3 +PWCOMMONS IL4-mediated signaling events ETS1 +PWCOMMONS IL4-mediated signaling events OPRM1 +PWCOMMONS IL4-mediated signaling events AICDA +PWCOMMONS IL4-mediated signaling events IRF4 +PWCOMMONS IL4-mediated signaling events CD40LG +PWCOMMONS IL4-mediated signaling events JAK2 +PWCOMMONS IL4-mediated signaling events IL13RA1 +PWCOMMONS IL4-mediated signaling events THY1 +PWCOMMONS IL4-mediated signaling events CCL26 +PWCOMMONS IL4-mediated signaling events SOCS3 +PWCOMMONS IL4-mediated signaling events SOCS1 +PWCOMMONS IL4-mediated signaling events AKT1 +PWCOMMONS IL4-mediated signaling events GRB2 +PWCOMMONS IL4-mediated signaling events COL1A2 +PWCOMMONS IL4-mediated signaling events HMGA1 +PWCOMMONS IL4-mediated signaling events CCL17 +PWCOMMONS IL4-mediated signaling events PIK3CA +PWCOMMONS IL4-mediated signaling events PIK3R1 +PWCOMMONS IL4-mediated signaling events SPI1 +PWCOMMONS IL4-mediated signaling events PIGR +PWCOMMONS IL4-mediated signaling events CBL +PWCOMMONS IL4-mediated signaling events PARP14 +PWCOMMONS IL4-mediated signaling events LTA +PWCOMMONS IL4-mediated signaling events GTF3A +PWCOMMONS IL4-mediated signaling events DOK2 +PWCOMMONS IL4-mediated signaling events EGR2 +PWCOMMONS IL4-mediated signaling events IGHG1 +PWCOMMONS IL4-mediated signaling events CCL11 +PWCOMMONS IL4-mediated signaling events RETNLB +PWCOMMONS IL4-mediated signaling events IL13RA2 +PWCOMMONS IL4-mediated signaling events COL1A1 +PWCOMMONS IL4-mediated signaling events RPS6KB1 +PWCOMMONS IL4-mediated signaling events ARG1 +PWCOMMONS IL4-mediated signaling events MAPK14 +PWCOMMONS IL4-mediated signaling events FCER2 +PWCOMMONS IL4-mediated signaling events IGHE +PWCOMMONS IL4-mediated signaling events ALOX15 +PWCOMMONS IL4-mediated signaling events ITGB3 +PWCOMMONS IL4-mediated signaling events +PWCOMMONS S1P5 pathway GNA12 +PWCOMMONS S1P5 pathway RHOA +PWCOMMONS S1P5 pathway +PWCOMMONS mTOR signaling pathway LST8 +PWCOMMONS mTOR signaling pathway RAPTOR +PWCOMMONS mTOR signaling pathway RHEB +PWCOMMONS mTOR signaling pathway INSR +PWCOMMONS mTOR signaling pathway INS +PWCOMMONS mTOR signaling pathway PPP2R5D +PWCOMMONS mTOR signaling pathway FKBP1A +PWCOMMONS mTOR signaling pathway IRS1 +PWCOMMONS mTOR signaling pathway EIF4B +PWCOMMONS mTOR signaling pathway EIF4E +PWCOMMONS mTOR signaling pathway EIF4G1 +PWCOMMONS mTOR signaling pathway PIK3CA +PWCOMMONS mTOR signaling pathway PIK3R1 +PWCOMMONS mTOR signaling pathway AKT1 +PWCOMMONS mTOR signaling pathway TSC2 +PWCOMMONS mTOR signaling pathway RPS6KB1 +PWCOMMONS mTOR signaling pathway PDPK1 +PWCOMMONS mTOR signaling pathway EIF3A +PWCOMMONS mTOR signaling pathway RPS6 +PWCOMMONS mTOR signaling pathway MAP3K5 +PWCOMMONS mTOR signaling pathway TSC1 +PWCOMMONS mTOR signaling pathway EEF2 +PWCOMMONS mTOR signaling pathway EIF4EBP1 +PWCOMMONS mTOR signaling pathway PTEN +PWCOMMONS mTOR signaling pathway MKNK1 +PWCOMMONS mTOR signaling pathway PRKAB1 +PWCOMMONS mTOR signaling pathway +PWCOMMONS Caspase cascade in apoptosis SLK +PWCOMMONS Caspase cascade in apoptosis GAS2 +PWCOMMONS Caspase cascade in apoptosis LIMK1 +PWCOMMONS Caspase cascade in apoptosis VIM +PWCOMMONS Caspase cascade in apoptosis PRF1 +PWCOMMONS Caspase cascade in apoptosis SREBF1 +PWCOMMONS Caspase cascade in apoptosis CFL2 +PWCOMMONS Caspase cascade in apoptosis MAP3K1 +PWCOMMONS Caspase cascade in apoptosis CASP9 +PWCOMMONS Caspase cascade in apoptosis APAF1 +PWCOMMONS Caspase cascade in apoptosis TOP1 +PWCOMMONS Caspase cascade in apoptosis PTK2 +PWCOMMONS Caspase cascade in apoptosis PARP1 +PWCOMMONS Caspase cascade in apoptosis CASP3 +PWCOMMONS Caspase cascade in apoptosis CYCS +PWCOMMONS Caspase cascade in apoptosis CASP6 +PWCOMMONS Caspase cascade in apoptosis APP +PWCOMMONS Caspase cascade in apoptosis CASP7 +PWCOMMONS Caspase cascade in apoptosis GZMB +PWCOMMONS Caspase cascade in apoptosis GSN +PWCOMMONS Caspase cascade in apoptosis CASP10 +PWCOMMONS Caspase cascade in apoptosis DFFB +PWCOMMONS Caspase cascade in apoptosis ARHGDIB +PWCOMMONS Caspase cascade in apoptosis BCL2 +PWCOMMONS Caspase cascade in apoptosis BID +PWCOMMONS Caspase cascade in apoptosis CASP2 +PWCOMMONS Caspase cascade in apoptosis KRT18 +PWCOMMONS Caspase cascade in apoptosis CRADD +PWCOMMONS Caspase cascade in apoptosis TRAF2 +PWCOMMONS Caspase cascade in apoptosis RIPK1 +PWCOMMONS Caspase cascade in apoptosis LRDD +PWCOMMONS Caspase cascade in apoptosis TNFRSF1A +PWCOMMONS Caspase cascade in apoptosis TRADD +PWCOMMONS Caspase cascade in apoptosis TNF +PWCOMMONS Caspase cascade in apoptosis MADD +PWCOMMONS Caspase cascade in apoptosis BIRC3 +PWCOMMONS Caspase cascade in apoptosis CASP1 +PWCOMMONS Caspase cascade in apoptosis DIABLO +PWCOMMONS Caspase cascade in apoptosis CASP8 +PWCOMMONS Caspase cascade in apoptosis ACTA1 +PWCOMMONS Caspase cascade in apoptosis SATB1 +PWCOMMONS Caspase cascade in apoptosis BAX +PWCOMMONS Caspase cascade in apoptosis SPTAN1 +PWCOMMONS Caspase cascade in apoptosis DFFA +PWCOMMONS Caspase cascade in apoptosis TFAP2A +PWCOMMONS Caspase cascade in apoptosis +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling CRKL +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling NTF3 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling GRB2 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling MCF2L +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling NGF +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling MAGED1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling CCND1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling DYNLT1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling RGS19 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling GIPC1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling RHOA +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling NTRK2 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling BDNF +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling RICS +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling NGFR +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling SOS1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling RIT2 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling RASGRF1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling NTRK1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling RASA1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling SHC1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling ELMO1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling MATK +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling GAB1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling GAB2 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling PTPN11 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling FAIM +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling DNM1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling NTF4 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling MAP2K1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling PIK3CA +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling PIK3R1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling RAC1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling SH2B1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling EHD4 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling STAT3 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling DOCK1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling NEDD4L +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling SQSTM1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling DNAJA3 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling ABL1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling RIT1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling TIAM1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling PLCG1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling EGR1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling TRPC3 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling TRPV1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling CAMK4 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling GSK3B +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling AKT1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling BAD +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling FOXO3 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling CREB1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling PRKCD +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling SRC +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling PDPK1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling STAT5A +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling CAMK2A +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling AGAP2 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling EPB41L1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling NTRK3 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling MAPK7 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling MAP2K5 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling MAPK14 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling FOS +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling SRF +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling BRAF +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling RPS6KA5 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling CDK5R1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling CDK5 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling MAP3K2 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling RPS6KA1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling MEF2C +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling RUSC1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling MAPKAPK2 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling RAF1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling ELK1 +PWCOMMONS Neurotrophic factor-mediated Trk receptor signaling +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CASP8 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha MAP3K5 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha FADD +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha FASLG +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha FAS +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CD247 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha MAP3K14 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CASP3 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha BIRC3 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha DFFA +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha DFFB +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CASP7 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CASP9 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha APAF1 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CYCS +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha MAP2K7 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CHUK +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CRADD +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha TRAF2 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha RIPK1 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha TRAF1 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha TNFRSF1A +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha TRADD +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha TNF +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CASP2 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha BAG4 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CASP6 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha MAPK8 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha BID +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha NFKB1 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha NFKBIA +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha RELA +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha BCL2 +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha CFLAR +PWCOMMONS HIV-1 Nef: Negative effector of Fas and TNF-alpha +PWCOMMONS Signaling by Aurora kinases PEBP1 +PWCOMMONS Signaling by Aurora kinases RHOA +PWCOMMONS Signaling by Aurora kinases RACGAP1 +PWCOMMONS Signaling by Aurora kinases KIF23 +PWCOMMONS Signaling by Aurora kinases CBX5 +PWCOMMONS Signaling by Aurora kinases AURKB +PWCOMMONS Signaling by Aurora kinases INCENP +PWCOMMONS Signaling by Aurora kinases CDCA8 +PWCOMMONS Signaling by Aurora kinases BIRC5 +PWCOMMONS Signaling by Aurora kinases CENPA +PWCOMMONS Signaling by Aurora kinases SGOL1 +PWCOMMONS Signaling by Aurora kinases AURKC +PWCOMMONS Signaling by Aurora kinases SMC4 +PWCOMMONS Signaling by Aurora kinases SMC2 +PWCOMMONS Signaling by Aurora kinases NCAPG +PWCOMMONS Signaling by Aurora kinases NCAPD2 +PWCOMMONS Signaling by Aurora kinases NCAPH +PWCOMMONS Signaling by Aurora kinases PPP2R5D +PWCOMMONS Signaling by Aurora kinases PPP1CC +PWCOMMONS Signaling by Aurora kinases SEPT1 +PWCOMMONS Signaling by Aurora kinases MYLK +PWCOMMONS Signaling by Aurora kinases KIF20A +PWCOMMONS Signaling by Aurora kinases RASA1 +PWCOMMONS Signaling by Aurora kinases STMN1 +PWCOMMONS Signaling by Aurora kinases H3F3A +PWCOMMONS Signaling by Aurora kinases EVI5 +PWCOMMONS Signaling by Aurora kinases NSUN2 +PWCOMMONS Signaling by Aurora kinases NPM1 +PWCOMMONS Signaling by Aurora kinases NCL +PWCOMMONS Signaling by Aurora kinases CUL3 +PWCOMMONS Signaling by Aurora kinases KLHL9 +PWCOMMONS Signaling by Aurora kinases KLHL13 +PWCOMMONS Signaling by Aurora kinases VIM +PWCOMMONS Signaling by Aurora kinases PSMA3 +PWCOMMONS Signaling by Aurora kinases BUB1 +PWCOMMONS Signaling by Aurora kinases KIF2C +PWCOMMONS Signaling by Aurora kinases NDC80 +PWCOMMONS Signaling by Aurora kinases AURKA +PWCOMMONS Signaling by Aurora kinases TACC1 +PWCOMMONS Signaling by Aurora kinases TACC3 +PWCOMMONS Signaling by Aurora kinases NDEL1 +PWCOMMONS Signaling by Aurora kinases IKBKB +PWCOMMONS Signaling by Aurora kinases CHUK +PWCOMMONS Signaling by Aurora kinases IKBKG +PWCOMMONS Signaling by Aurora kinases TNFAIP3 +PWCOMMONS Signaling by Aurora kinases ATM +PWCOMMONS Signaling by Aurora kinases NFKB1 +PWCOMMONS Signaling by Aurora kinases NFKBIA +PWCOMMONS Signaling by Aurora kinases RELA +PWCOMMONS Signaling by Aurora kinases CYLD +PWCOMMONS Signaling by Aurora kinases NOD2 +PWCOMMONS Signaling by Aurora kinases RIPK2 +PWCOMMONS Signaling by Aurora kinases BCL10 +PWCOMMONS Signaling by Aurora kinases TRAF6 +PWCOMMONS Signaling by Aurora kinases MALT1 +PWCOMMONS Signaling by Aurora kinases PRKCA +PWCOMMONS Signaling by Aurora kinases ERC1 +PWCOMMONS Signaling by Aurora kinases FBXW11 +PWCOMMONS Signaling by Aurora kinases TNFRSF1A +PWCOMMONS Signaling by Aurora kinases TNF +PWCOMMONS Signaling by Aurora kinases LCK +PWCOMMONS Signaling by Aurora kinases ARRB2 +PWCOMMONS Signaling by Aurora kinases REL +PWCOMMONS Signaling by Aurora kinases SYK +PWCOMMONS Signaling by Aurora kinases PIK3CA +PWCOMMONS Signaling by Aurora kinases PIK3R1 +PWCOMMONS Signaling by Aurora kinases BCL3 +PWCOMMONS Signaling by Aurora kinases MAPK14 +PWCOMMONS Signaling by Aurora kinases SRC +PWCOMMONS Signaling by Aurora kinases XPO1 +PWCOMMONS Signaling by Aurora kinases RAN +PWCOMMONS Signaling by Aurora kinases NFKB2 +PWCOMMONS Signaling by Aurora kinases RELB +PWCOMMONS Signaling by Aurora kinases MAP3K14 +PWCOMMONS Signaling by Aurora kinases BIRC2 +PWCOMMONS Signaling by Aurora kinases UBE2D3 +PWCOMMONS Signaling by Aurora kinases GIT1 +PWCOMMONS Signaling by Aurora kinases PAK1 +PWCOMMONS Signaling by Aurora kinases ARHGEF7 +PWCOMMONS Signaling by Aurora kinases AKT1 +PWCOMMONS Signaling by Aurora kinases JUB +PWCOMMONS Signaling by Aurora kinases MDM2 +PWCOMMONS Signaling by Aurora kinases DLGAP5 +PWCOMMONS Signaling by Aurora kinases TPX2 +PWCOMMONS Signaling by Aurora kinases GSK3B +PWCOMMONS Signaling by Aurora kinases GADD45A +PWCOMMONS Signaling by Aurora kinases BRCA1 +PWCOMMONS Signaling by Aurora kinases CKAP5 +PWCOMMONS Signaling by Aurora kinases TDRD7 +PWCOMMONS Signaling by Aurora kinases PRKACA +PWCOMMONS Signaling by Aurora kinases CDC25B +PWCOMMONS Signaling by Aurora kinases OAZ1 +PWCOMMONS Signaling by Aurora kinases CPEB1 +PWCOMMONS Signaling by Aurora kinases AURKAIP1 +PWCOMMONS Signaling by Aurora kinases TP53 +PWCOMMONS Signaling by Aurora kinases +PWCOMMONS Integrins in angiogenesis ITGB3 +PWCOMMONS Integrins in angiogenesis ITGAV +PWCOMMONS Integrins in angiogenesis VEGFA +PWCOMMONS Integrins in angiogenesis KDR +PWCOMMONS Integrins in angiogenesis SPP1 +PWCOMMONS Integrins in angiogenesis PIK3C2A +PWCOMMONS Integrins in angiogenesis PTK2 +PWCOMMONS Integrins in angiogenesis VCL +PWCOMMONS Integrins in angiogenesis SDC1 +PWCOMMONS Integrins in angiogenesis F11R +PWCOMMONS Integrins in angiogenesis FGF2 +PWCOMMONS Integrins in angiogenesis COL4A3 +PWCOMMONS Integrins in angiogenesis CDKN1B +PWCOMMONS Integrins in angiogenesis AKT1 +PWCOMMONS Integrins in angiogenesis RAC1 +PWCOMMONS Integrins in angiogenesis GPR124 +PWCOMMONS Integrins in angiogenesis PIK3CA +PWCOMMONS Integrins in angiogenesis PIK3R1 +PWCOMMONS Integrins in angiogenesis ILK +PWCOMMONS Integrins in angiogenesis RHOA +PWCOMMONS Integrins in angiogenesis ROCK1 +PWCOMMONS Integrins in angiogenesis HSP90AA1 +PWCOMMONS Integrins in angiogenesis TLN1 +PWCOMMONS Integrins in angiogenesis VTN +PWCOMMONS Integrins in angiogenesis CD47 +PWCOMMONS Integrins in angiogenesis BCAR1 +PWCOMMONS Integrins in angiogenesis CSF1R +PWCOMMONS Integrins in angiogenesis CBL +PWCOMMONS Integrins in angiogenesis EDIL3 +PWCOMMONS Integrins in angiogenesis IGF1 +PWCOMMONS Integrins in angiogenesis IRS1 +PWCOMMONS Integrins in angiogenesis IGF1R +PWCOMMONS Integrins in angiogenesis ANGPTL3 +PWCOMMONS Integrins in angiogenesis PXN +PWCOMMONS Integrins in angiogenesis VAV3 +PWCOMMONS Integrins in angiogenesis PI4KA +PWCOMMONS Integrins in angiogenesis PI4KB +PWCOMMONS Integrins in angiogenesis CSF1 +PWCOMMONS Integrins in angiogenesis TGFBR2 +PWCOMMONS Integrins in angiogenesis SRC +PWCOMMONS Integrins in angiogenesis FN1 +PWCOMMONS Integrins in angiogenesis PTPN11 +PWCOMMONS Integrins in angiogenesis RPS6KB1 +PWCOMMONS Integrins in angiogenesis MFGE8 +PWCOMMONS Integrins in angiogenesis CASP8 +PWCOMMONS Integrins in angiogenesis PLAU +PWCOMMONS Integrins in angiogenesis CHUK +PWCOMMONS Integrins in angiogenesis MAP3K1 +PWCOMMONS Integrins in angiogenesis CD44 +PWCOMMONS Integrins in angiogenesis ROCK2 +PWCOMMONS Integrins in angiogenesis SYK +PWCOMMONS Integrins in angiogenesis MMP2 +PWCOMMONS Integrins in angiogenesis MAP3K14 +PWCOMMONS Integrins in angiogenesis GSN +PWCOMMONS Integrins in angiogenesis MAPK8 +PWCOMMONS Integrins in angiogenesis NFKBIA +PWCOMMONS Integrins in angiogenesis NFKB1 +PWCOMMONS Integrins in angiogenesis RELA +PWCOMMONS Integrins in angiogenesis PIP5K1A +PWCOMMONS Integrins in angiogenesis FOS +PWCOMMONS Integrins in angiogenesis JUN +PWCOMMONS Integrins in angiogenesis MMP9 +PWCOMMONS Integrins in angiogenesis +PWCOMMONS IL12 signaling mediated by STAT4 IL18RAP +PWCOMMONS IL12 signaling mediated by STAT4 STAT4 +PWCOMMONS IL12 signaling mediated by STAT4 IFNG +PWCOMMONS IL12 signaling mediated by STAT4 IRF1 +PWCOMMONS IL12 signaling mediated by STAT4 TBX21 +PWCOMMONS IL12 signaling mediated by STAT4 CREBBP +PWCOMMONS IL12 signaling mediated by STAT4 JUN +PWCOMMONS IL12 signaling mediated by STAT4 TGFB1 +PWCOMMONS IL12 signaling mediated by STAT4 IL18 +PWCOMMONS IL12 signaling mediated by STAT4 IL2RA +PWCOMMONS IL12 signaling mediated by STAT4 PIAS2 +PWCOMMONS IL12 signaling mediated by STAT4 IL2 +PWCOMMONS IL12 signaling mediated by STAT4 CD28 +PWCOMMONS IL12 signaling mediated by STAT4 IL13 +PWCOMMONS IL12 signaling mediated by STAT4 STAT3 +PWCOMMONS IL12 signaling mediated by STAT4 FOS +PWCOMMONS IL12 signaling mediated by STAT4 ETV5 +PWCOMMONS IL12 signaling mediated by STAT4 CD3E +PWCOMMONS IL12 signaling mediated by STAT4 HLA-DRA +PWCOMMONS IL12 signaling mediated by STAT4 CD3D +PWCOMMONS IL12 signaling mediated by STAT4 HLA-DRB1 +PWCOMMONS IL12 signaling mediated by STAT4 CD3G +PWCOMMONS IL12 signaling mediated by STAT4 CD4 +PWCOMMONS IL12 signaling mediated by STAT4 CD247 +PWCOMMONS IL12 signaling mediated by STAT4 PRF1 +PWCOMMONS IL12 signaling mediated by STAT4 +PWCOMMONS ADP-ribosylation factor 1 pathway AP2M1 +PWCOMMONS ADP-ribosylation factor 1 pathway AP2A1 +PWCOMMONS ADP-ribosylation factor 1 pathway ARFGAP1 +PWCOMMONS ADP-ribosylation factor 1 pathway GGA3 +PWCOMMONS ADP-ribosylation factor 1 pathway ARF1 +PWCOMMONS ADP-ribosylation factor 1 pathway GOSR2 +PWCOMMONS ADP-ribosylation factor 1 pathway PLD2 +PWCOMMONS ADP-ribosylation factor 1 pathway ARFIP2 +PWCOMMONS ADP-ribosylation factor 1 pathway RAC1 +PWCOMMONS ADP-ribosylation factor 1 pathway USO1 +PWCOMMONS ADP-ribosylation factor 1 pathway GBF1 +PWCOMMONS ADP-ribosylation factor 1 pathway CLTB +PWCOMMONS ADP-ribosylation factor 1 pathway COPA +PWCOMMONS ADP-ribosylation factor 1 pathway CLTA +PWCOMMONS ADP-ribosylation factor 1 pathway ASAP1 +PWCOMMONS ADP-ribosylation factor 1 pathway CYTH2 +PWCOMMONS ADP-ribosylation factor 1 pathway +PWCOMMONS Signaling mediated by p38-alpha and p38-beta KRT8 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta CEBPB +PWCOMMONS Signaling mediated by p38-alpha and p38-beta PTGS2 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta SLC9A1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta PPARGC1A +PWCOMMONS Signaling mediated by p38-alpha and p38-beta MAPKAPK2 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta USF1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta MAPKAPK5 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta HSPB1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta LSP1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta CDC25B +PWCOMMONS Signaling mediated by p38-alpha and p38-beta TSC2 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta TCF3 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta RAF1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta YWHAZ +PWCOMMONS Signaling mediated by p38-alpha and p38-beta SRF +PWCOMMONS Signaling mediated by p38-alpha and p38-beta CREB1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta MAPK14 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta TH +PWCOMMONS Signaling mediated by p38-alpha and p38-beta ETV1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta ATF1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta MEF2C +PWCOMMONS Signaling mediated by p38-alpha and p38-beta MKNK1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta MITF +PWCOMMONS Signaling mediated by p38-alpha and p38-beta NOS2 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta JUN +PWCOMMONS Signaling mediated by p38-alpha and p38-beta GDI1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta RAB5A +PWCOMMONS Signaling mediated by p38-alpha and p38-beta ATF2 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta EIF4EBP1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta MEF2A +PWCOMMONS Signaling mediated by p38-alpha and p38-beta PLA2G4A +PWCOMMONS Signaling mediated by p38-alpha and p38-beta EIF4E +PWCOMMONS Signaling mediated by p38-alpha and p38-beta ESR1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta HBP1 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta TP53 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta DDIT3 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta KRT19 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta ELK4 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta ATF6 +PWCOMMONS Signaling mediated by p38-alpha and p38-beta +PWCOMMONS Syndecan-2-mediated signaling events SDC2 +PWCOMMONS Syndecan-2-mediated signaling events RASA1 +PWCOMMONS Syndecan-2-mediated signaling events BAX +PWCOMMONS Syndecan-2-mediated signaling events LAMA3 +PWCOMMONS Syndecan-2-mediated signaling events CASK +PWCOMMONS Syndecan-2-mediated signaling events KNG1 +PWCOMMONS Syndecan-2-mediated signaling events HRAS +PWCOMMONS Syndecan-2-mediated signaling events TGFB1 +PWCOMMONS Syndecan-2-mediated signaling events CAV2 +PWCOMMONS Syndecan-2-mediated signaling events FN1 +PWCOMMONS Syndecan-2-mediated signaling events IL8 +PWCOMMONS Syndecan-2-mediated signaling events SDCBP +PWCOMMONS Syndecan-2-mediated signaling events ITGB1 +PWCOMMONS Syndecan-2-mediated signaling events ITGA5 +PWCOMMONS Syndecan-2-mediated signaling events NF1 +PWCOMMONS Syndecan-2-mediated signaling events PRKCD +PWCOMMONS Syndecan-2-mediated signaling events ITGA2 +PWCOMMONS Syndecan-2-mediated signaling events MMP2 +PWCOMMONS Syndecan-2-mediated signaling events CDH1 +PWCOMMONS Syndecan-2-mediated signaling events BGLAP +PWCOMMONS Syndecan-2-mediated signaling events CDH2 +PWCOMMONS Syndecan-2-mediated signaling events KLB +PWCOMMONS Syndecan-2-mediated signaling events FGF23 +PWCOMMONS Syndecan-2-mediated signaling events CTTN +PWCOMMONS Syndecan-2-mediated signaling events CAMK2A +PWCOMMONS Syndecan-2-mediated signaling events PIK3CA +PWCOMMONS Syndecan-2-mediated signaling events PIK3R1 +PWCOMMONS Syndecan-2-mediated signaling events SPP1 +PWCOMMONS Syndecan-2-mediated signaling events AKT1 +PWCOMMONS Syndecan-2-mediated signaling events MMP9 +PWCOMMONS Syndecan-2-mediated signaling events IL17RD +PWCOMMONS Syndecan-2-mediated signaling events FRS2 +PWCOMMONS Syndecan-2-mediated signaling events PLAU +PWCOMMONS Syndecan-2-mediated signaling events CBL +PWCOMMONS Syndecan-2-mediated signaling events SOS1 +PWCOMMONS Syndecan-2-mediated signaling events SHC1 +PWCOMMONS Syndecan-2-mediated signaling events GRB2 +PWCOMMONS Syndecan-2-mediated signaling events CTNND1 +PWCOMMONS Syndecan-2-mediated signaling events NCAM1 +PWCOMMONS Syndecan-2-mediated signaling events SSH1 +PWCOMMONS Syndecan-2-mediated signaling events FGF1 +PWCOMMONS Syndecan-2-mediated signaling events PTK2B +PWCOMMONS Syndecan-2-mediated signaling events PTPN11 +PWCOMMONS Syndecan-2-mediated signaling events GAB1 +PWCOMMONS Syndecan-2-mediated signaling events PAK4 +PWCOMMONS Syndecan-2-mediated signaling events PDPK1 +PWCOMMONS Syndecan-2-mediated signaling events FGFR1 +PWCOMMONS Syndecan-2-mediated signaling events PLCG1 +PWCOMMONS Syndecan-2-mediated signaling events STAT1 +PWCOMMONS Syndecan-2-mediated signaling events RUNX2 +PWCOMMONS Syndecan-2-mediated signaling events PLAUR +PWCOMMONS Syndecan-2-mediated signaling events FGFR4 +PWCOMMONS Syndecan-2-mediated signaling events FGF19 +PWCOMMONS Syndecan-2-mediated signaling events FGFR2 +PWCOMMONS Syndecan-2-mediated signaling events FOS +PWCOMMONS Syndecan-2-mediated signaling events JUN +PWCOMMONS Syndecan-2-mediated signaling events STAT5B +PWCOMMONS Syndecan-2-mediated signaling events RPS6KA1 +PWCOMMONS Syndecan-2-mediated signaling events MET +PWCOMMONS Syndecan-2-mediated signaling events HGF +PWCOMMONS Syndecan-2-mediated signaling events LAMA1 +PWCOMMONS Syndecan-2-mediated signaling events EPB41 +PWCOMMONS Syndecan-2-mediated signaling events TNFRSF13B +PWCOMMONS Syndecan-2-mediated signaling events PRKACA +PWCOMMONS Syndecan-2-mediated signaling events GNB2L1 +PWCOMMONS Syndecan-2-mediated signaling events TRAPPC4 +PWCOMMONS Syndecan-2-mediated signaling events MAPK8 +PWCOMMONS Syndecan-2-mediated signaling events CSF2 +PWCOMMONS Syndecan-2-mediated signaling events EZR +PWCOMMONS Syndecan-2-mediated signaling events CASP3 +PWCOMMONS Syndecan-2-mediated signaling events EPHB2 +PWCOMMONS Syndecan-2-mediated signaling events RHOA +PWCOMMONS Syndecan-2-mediated signaling events +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway GNA12 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway RHOA +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway NFKB1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway RELA +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway SMPD1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway CTSD +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway MAP4K4 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway EGF +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PAWR +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PRKCZ +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway KSR1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway AKT1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway CRADD +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway TRAF2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway RIPK1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway TNFRSF1A +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway TRADD +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway TNF +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway MADD +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway BIRC3 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway BID +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway BCL2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PRKCD +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway MAPK3 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway IGF1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway MYC +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway BAG4 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway MAP3K1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway BAD +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway CASP8 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway MAPK8 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway AIFM1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway MAP2K1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway MAP2K2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway NFKBIA +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway RAF1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway RB1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway BAX +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway CYCS +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PRKRA +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway SMPD3 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway EIF2A +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway FADD +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PDGFA +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway NSMAF +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway SPHK2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway ASAH1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway MAP2K4 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway MAPK1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway S1PR4 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway SGPP1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway S1PR2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway ELK1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PAK1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway CDH5 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway FOS +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway JUN +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway RAC1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway GNA13 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway IRS1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway MAPK14 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway SGPL1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway S1PR3 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway S1PR1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway SPHK1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PLCB2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway ITGB3 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway ITGAV +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PLCG1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PTGS2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PDGFRB +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway GRB10 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway HRAS +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway ABL1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway BCAR1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway HIF1A +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PTPN11 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PTPN1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PTEN +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway VAV2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PIK3CA +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PIK3R1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway CBL +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway SNX15 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway DNM2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway GAB1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway GRB7 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway ACP1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway FER +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PDGFB +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway LRP1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PTPN2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway SOS1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway SHC1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway GRB2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway CSK +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway DOK1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway SHB +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway SH2B2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway PTPRJ +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway RASA1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway VEGFA +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway KDR +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway AKT3 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway CXCR4 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway FLT1 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway SRC +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway JAK2 +PWCOMMONS Sphingosine 1-phosphate (S1P) pathway +PWCOMMONS FOXA transcription factor networks FOS +PWCOMMONS FOXA transcription factor networks JUN +PWCOMMONS FOXA transcription factor networks CYP2C18 +PWCOMMONS FOXA transcription factor networks FOXA1 +PWCOMMONS FOXA transcription factor networks AR +PWCOMMONS FOXA transcription factor networks SP1 +PWCOMMONS FOXA transcription factor networks PISD +PWCOMMONS FOXA transcription factor networks SCGB1A1 +PWCOMMONS FOXA transcription factor networks GCG +PWCOMMONS FOXA transcription factor networks SOD1 +PWCOMMONS FOXA transcription factor networks ATP5J +PWCOMMONS FOXA transcription factor networks INS +PWCOMMONS FOXA transcription factor networks VTN +PWCOMMONS FOXA transcription factor networks CEBPB +PWCOMMONS FOXA transcription factor networks XBP1 +PWCOMMONS FOXA transcription factor networks KLK3 +PWCOMMONS FOXA transcription factor networks SHH +PWCOMMONS FOXA transcription factor networks NDUFV3 +PWCOMMONS FOXA transcription factor networks FOXA2 +PWCOMMONS FOXA transcription factor networks APOB +PWCOMMONS FOXA transcription factor networks NCOA3 +PWCOMMONS FOXA transcription factor networks AP1B1 +PWCOMMONS FOXA transcription factor networks NR2F2 +PWCOMMONS FOXA transcription factor networks COL18A1 +PWCOMMONS FOXA transcription factor networks BRCA1 +PWCOMMONS FOXA transcription factor networks SERPINA1 +PWCOMMONS FOXA transcription factor networks C4BPB +PWCOMMONS FOXA transcription factor networks SFTPD +PWCOMMONS FOXA transcription factor networks TFF1 +PWCOMMONS FOXA transcription factor networks POU2F1 +PWCOMMONS FOXA transcription factor networks NKX3-1 +PWCOMMONS FOXA transcription factor networks CDKN1B +PWCOMMONS FOXA transcription factor networks NRIP1 +PWCOMMONS FOXA transcription factor networks DSCAM +PWCOMMONS FOXA transcription factor networks ALDOB +PWCOMMONS FOXA transcription factor networks NKX2-1 +PWCOMMONS FOXA transcription factor networks HNF4A +PWCOMMONS FOXA transcription factor networks GCK +PWCOMMONS FOXA transcription factor networks FOXA3 +PWCOMMONS FOXA transcription factor networks HMGCS1 +PWCOMMONS FOXA transcription factor networks TTR +PWCOMMONS FOXA transcription factor networks PCK1 +PWCOMMONS FOXA transcription factor networks F2 +PWCOMMONS FOXA transcription factor networks G6PC +PWCOMMONS FOXA transcription factor networks NF1 +PWCOMMONS FOXA transcription factor networks HNF1A +PWCOMMONS FOXA transcription factor networks PKLR +PWCOMMONS FOXA transcription factor networks AFP +PWCOMMONS FOXA transcription factor networks ABCC8 +PWCOMMONS FOXA transcription factor networks SLC2A2 +PWCOMMONS FOXA transcription factor networks ALAS1 +PWCOMMONS FOXA transcription factor networks HADH +PWCOMMONS FOXA transcription factor networks FOXF1 +PWCOMMONS FOXA transcription factor networks CREB1 +PWCOMMONS FOXA transcription factor networks ACADVL +PWCOMMONS FOXA transcription factor networks PDX1 +PWCOMMONS FOXA transcription factor networks TAT +PWCOMMONS FOXA transcription factor networks ACADM +PWCOMMONS FOXA transcription factor networks APOA1 +PWCOMMONS FOXA transcription factor networks KCNJ11 +PWCOMMONS FOXA transcription factor networks TFRC +PWCOMMONS FOXA transcription factor networks NR3C1 +PWCOMMONS FOXA transcription factor networks ALB +PWCOMMONS FOXA transcription factor networks AKT1 +PWCOMMONS FOXA transcription factor networks IGFBP1 +PWCOMMONS FOXA transcription factor networks UCP2 +PWCOMMONS FOXA transcription factor networks BDH1 +PWCOMMONS FOXA transcription factor networks +PWCOMMONS TCR signaling in nave CD8+ T cells CHUK +PWCOMMONS TCR signaling in nave CD8+ T cells IKBKG +PWCOMMONS TCR signaling in nave CD8+ T cells BCL10 +PWCOMMONS TCR signaling in nave CD8+ T cells CARD11 +PWCOMMONS TCR signaling in nave CD8+ T cells TRAF6 +PWCOMMONS TCR signaling in nave CD8+ T cells PDPK1 +PWCOMMONS TCR signaling in nave CD8+ T cells MALT1 +PWCOMMONS TCR signaling in nave CD8+ T cells TRPV6 +PWCOMMONS TCR signaling in nave CD8+ T cells STIM1 +PWCOMMONS TCR signaling in nave CD8+ T cells VAV1 +PWCOMMONS TCR signaling in nave CD8+ T cells LCP2 +PWCOMMONS TCR signaling in nave CD8+ T cells GRAP2 +PWCOMMONS TCR signaling in nave CD8+ T cells CD28 +PWCOMMONS TCR signaling in nave CD8+ T cells CSK +PWCOMMONS TCR signaling in nave CD8+ T cells PAG1 +PWCOMMONS TCR signaling in nave CD8+ T cells RASGRP2 +PWCOMMONS TCR signaling in nave CD8+ T cells PRKCB +PWCOMMONS TCR signaling in nave CD8+ T cells PTPRC +PWCOMMONS TCR signaling in nave CD8+ T cells PRKCQ +PWCOMMONS TCR signaling in nave CD8+ T cells LCK +PWCOMMONS TCR signaling in nave CD8+ T cells AKT1 +PWCOMMONS TCR signaling in nave CD8+ T cells PRKCE +PWCOMMONS TCR signaling in nave CD8+ T cells RAP1A +PWCOMMONS TCR signaling in nave CD8+ T cells RASGRP1 +PWCOMMONS TCR signaling in nave CD8+ T cells FYN +PWCOMMONS TCR signaling in nave CD8+ T cells CD8A +PWCOMMONS TCR signaling in nave CD8+ T cells CD3E +PWCOMMONS TCR signaling in nave CD8+ T cells CD3D +PWCOMMONS TCR signaling in nave CD8+ T cells HLA-A +PWCOMMONS TCR signaling in nave CD8+ T cells CD3G +PWCOMMONS TCR signaling in nave CD8+ T cells B2M +PWCOMMONS TCR signaling in nave CD8+ T cells CD247 +PWCOMMONS TCR signaling in nave CD8+ T cells CD8B +PWCOMMONS TCR signaling in nave CD8+ T cells SOS1 +PWCOMMONS TCR signaling in nave CD8+ T cells GRB2 +PWCOMMONS TCR signaling in nave CD8+ T cells PTPN6 +PWCOMMONS TCR signaling in nave CD8+ T cells RASSF5 +PWCOMMONS TCR signaling in nave CD8+ T cells MAP3K8 +PWCOMMONS TCR signaling in nave CD8+ T cells PRKCA +PWCOMMONS TCR signaling in nave CD8+ T cells PLCG1 +PWCOMMONS TCR signaling in nave CD8+ T cells TNFAIP3 +PWCOMMONS TCR signaling in nave CD8+ T cells ATM +PWCOMMONS TCR signaling in nave CD8+ T cells NFKB1 +PWCOMMONS TCR signaling in nave CD8+ T cells NFKBIA +PWCOMMONS TCR signaling in nave CD8+ T cells RELA +PWCOMMONS TCR signaling in nave CD8+ T cells CYLD +PWCOMMONS TCR signaling in nave CD8+ T cells NOD2 +PWCOMMONS TCR signaling in nave CD8+ T cells RIPK2 +PWCOMMONS TCR signaling in nave CD8+ T cells ERC1 +PWCOMMONS TCR signaling in nave CD8+ T cells FBXW11 +PWCOMMONS TCR signaling in nave CD8+ T cells TNFRSF1A +PWCOMMONS TCR signaling in nave CD8+ T cells TNF +PWCOMMONS TCR signaling in nave CD8+ T cells ARRB2 +PWCOMMONS TCR signaling in nave CD8+ T cells REL +PWCOMMONS TCR signaling in nave CD8+ T cells SYK +PWCOMMONS TCR signaling in nave CD8+ T cells PIK3CA +PWCOMMONS TCR signaling in nave CD8+ T cells PIK3R1 +PWCOMMONS TCR signaling in nave CD8+ T cells BCL3 +PWCOMMONS TCR signaling in nave CD8+ T cells MAPK14 +PWCOMMONS TCR signaling in nave CD8+ T cells SRC +PWCOMMONS TCR signaling in nave CD8+ T cells XPO1 +PWCOMMONS TCR signaling in nave CD8+ T cells RAN +PWCOMMONS TCR signaling in nave CD8+ T cells BIRC2 +PWCOMMONS TCR signaling in nave CD8+ T cells UBE2D3 +PWCOMMONS TCR signaling in nave CD8+ T cells ZAP70 +PWCOMMONS TCR signaling in nave CD8+ T cells PRF1 +PWCOMMONS TCR signaling in nave CD8+ T cells CBL +PWCOMMONS TCR signaling in nave CD8+ T cells LAT +PWCOMMONS TCR signaling in nave CD8+ T cells ORAI1 +PWCOMMONS TCR signaling in nave CD8+ T cells MAPK9 +PWCOMMONS TCR signaling in nave CD8+ T cells FOS +PWCOMMONS TCR signaling in nave CD8+ T cells JUN +PWCOMMONS TCR signaling in nave CD8+ T cells ELK1 +PWCOMMONS TCR signaling in nave CD8+ T cells MAPK8 +PWCOMMONS TCR signaling in nave CD8+ T cells FASLG +PWCOMMONS TCR signaling in nave CD8+ T cells IL2 +PWCOMMONS TCR signaling in nave CD8+ T cells IL2RB +PWCOMMONS TCR signaling in nave CD8+ T cells IL2RG +PWCOMMONS TCR signaling in nave CD8+ T cells IL2RA +PWCOMMONS TCR signaling in nave CD8+ T cells EOMES +PWCOMMONS TCR signaling in nave CD8+ T cells RAF1 +PWCOMMONS TCR signaling in nave CD8+ T cells IFNG +PWCOMMONS TCR signaling in nave CD8+ T cells CALM1 +PWCOMMONS TCR signaling in nave CD8+ T cells EGR4 +PWCOMMONS TCR signaling in nave CD8+ T cells STAT4 +PWCOMMONS TCR signaling in nave CD8+ T cells TNFRSF4 +PWCOMMONS TCR signaling in nave CD8+ T cells GZMB +PWCOMMONS TCR signaling in nave CD8+ T cells NFATC2 +PWCOMMONS TCR signaling in nave CD8+ T cells FOSL1 +PWCOMMONS TCR signaling in nave CD8+ T cells JUNB +PWCOMMONS TCR signaling in nave CD8+ T cells TNFRSF18 +PWCOMMONS TCR signaling in nave CD8+ T cells NFATC1 +PWCOMMONS TCR signaling in nave CD8+ T cells IFNAR1 +PWCOMMONS TCR signaling in nave CD8+ T cells IFNAR2 +PWCOMMONS TCR signaling in nave CD8+ T cells BRAF +PWCOMMONS TCR signaling in nave CD8+ T cells TNFRSF9 +PWCOMMONS TCR signaling in nave CD8+ T cells EGR1 +PWCOMMONS TCR signaling in nave CD8+ T cells PTPN7 +PWCOMMONS TCR signaling in nave CD8+ T cells MAP3K14 +PWCOMMONS TCR signaling in nave CD8+ T cells NFKB2 +PWCOMMONS TCR signaling in nave CD8+ T cells RELB +PWCOMMONS TCR signaling in nave CD8+ T cells +PWCOMMONS S1P3 pathway AKT3 +PWCOMMONS S1P3 pathway RHOA +PWCOMMONS S1P3 pathway ITGB3 +PWCOMMONS S1P3 pathway ITGAV +PWCOMMONS S1P3 pathway RAC1 +PWCOMMONS S1P3 pathway S1PR3 +PWCOMMONS S1P3 pathway S1PR2 +PWCOMMONS S1P3 pathway S1PR1 +PWCOMMONS S1P3 pathway CXCR4 +PWCOMMONS S1P3 pathway VEGFA +PWCOMMONS S1P3 pathway FLT1 +PWCOMMONS S1P3 pathway PDGFRB +PWCOMMONS S1P3 pathway GNA13 +PWCOMMONS S1P3 pathway GNA12 +PWCOMMONS S1P3 pathway SRC +PWCOMMONS S1P3 pathway JAK2 +PWCOMMONS S1P3 pathway +PWCOMMONS Class IB PI3K non-lipid kinase events MAPK1 +PWCOMMONS Class IB PI3K non-lipid kinase events MAP2K1 +PWCOMMONS Class IB PI3K non-lipid kinase events +PWCOMMONS Downstream signaling in nave CD8+ T cells FOS +PWCOMMONS Downstream signaling in nave CD8+ T cells JUN +PWCOMMONS Downstream signaling in nave CD8+ T cells ELK1 +PWCOMMONS Downstream signaling in nave CD8+ T cells MAPK8 +PWCOMMONS Downstream signaling in nave CD8+ T cells PRKCQ +PWCOMMONS Downstream signaling in nave CD8+ T cells CD8A +PWCOMMONS Downstream signaling in nave CD8+ T cells CD3E +PWCOMMONS Downstream signaling in nave CD8+ T cells CD3D +PWCOMMONS Downstream signaling in nave CD8+ T cells HLA-A +PWCOMMONS Downstream signaling in nave CD8+ T cells CD3G +PWCOMMONS Downstream signaling in nave CD8+ T cells B2M +PWCOMMONS Downstream signaling in nave CD8+ T cells CD247 +PWCOMMONS Downstream signaling in nave CD8+ T cells CD8B +PWCOMMONS Downstream signaling in nave CD8+ T cells PRF1 +PWCOMMONS Downstream signaling in nave CD8+ T cells FASLG +PWCOMMONS Downstream signaling in nave CD8+ T cells IL2 +PWCOMMONS Downstream signaling in nave CD8+ T cells IL2RB +PWCOMMONS Downstream signaling in nave CD8+ T cells IL2RG +PWCOMMONS Downstream signaling in nave CD8+ T cells IL2RA +PWCOMMONS Downstream signaling in nave CD8+ T cells PRKCA +PWCOMMONS Downstream signaling in nave CD8+ T cells EOMES +PWCOMMONS Downstream signaling in nave CD8+ T cells RAF1 +PWCOMMONS Downstream signaling in nave CD8+ T cells IFNG +PWCOMMONS Downstream signaling in nave CD8+ T cells CALM1 +PWCOMMONS Downstream signaling in nave CD8+ T cells EGR4 +PWCOMMONS Downstream signaling in nave CD8+ T cells STAT4 +PWCOMMONS Downstream signaling in nave CD8+ T cells TNFRSF4 +PWCOMMONS Downstream signaling in nave CD8+ T cells GZMB +PWCOMMONS Downstream signaling in nave CD8+ T cells TNF +PWCOMMONS Downstream signaling in nave CD8+ T cells PRKCB +PWCOMMONS Downstream signaling in nave CD8+ T cells PRKCE +PWCOMMONS Downstream signaling in nave CD8+ T cells NFATC2 +PWCOMMONS Downstream signaling in nave CD8+ T cells FOSL1 +PWCOMMONS Downstream signaling in nave CD8+ T cells JUNB +PWCOMMONS Downstream signaling in nave CD8+ T cells TNFRSF18 +PWCOMMONS Downstream signaling in nave CD8+ T cells NFATC1 +PWCOMMONS Downstream signaling in nave CD8+ T cells IFNAR1 +PWCOMMONS Downstream signaling in nave CD8+ T cells IFNAR2 +PWCOMMONS Downstream signaling in nave CD8+ T cells BRAF +PWCOMMONS Downstream signaling in nave CD8+ T cells TNFRSF9 +PWCOMMONS Downstream signaling in nave CD8+ T cells EGR1 +PWCOMMONS Downstream signaling in nave CD8+ T cells PTPN7 +PWCOMMONS Downstream signaling in nave CD8+ T cells +PWCOMMONS Endothelins BCAR1 +PWCOMMONS Endothelins PTK2B +PWCOMMONS Endothelins CRK +PWCOMMONS Endothelins SRC +PWCOMMONS Endothelins RAF1 +PWCOMMONS Endothelins EDNRA +PWCOMMONS Endothelins EDN1 +PWCOMMONS Endothelins JUN +PWCOMMONS Endothelins MAPK8 +PWCOMMONS Endothelins HRAS +PWCOMMONS Endothelins EDNRB +PWCOMMONS Endothelins GNA12 +PWCOMMONS Endothelins COL1A2 +PWCOMMONS Endothelins FOS +PWCOMMONS Endothelins CYSLTR2 +PWCOMMONS Endothelins GSK3B +PWCOMMONS Endothelins BCL2 +PWCOMMONS Endothelins FKBP8 +PWCOMMONS Endothelins CALM1 +PWCOMMONS Endothelins RCAN2 +PWCOMMONS Endothelins YWHAQ +PWCOMMONS Endothelins BAX +PWCOMMONS Endothelins MAPK9 +PWCOMMONS Endothelins NFATC3 +PWCOMMONS Endothelins PRKACA +PWCOMMONS Endothelins NFATC1 +PWCOMMONS Endothelins KPNB1 +PWCOMMONS Endothelins KPNA2 +PWCOMMONS Endothelins CABIN1 +PWCOMMONS Endothelins NFATC2 +PWCOMMONS Endothelins CSNK1A1 +PWCOMMONS Endothelins MEF2D +PWCOMMONS Endothelins MAP3K1 +PWCOMMONS Endothelins CAMK4 +PWCOMMONS Endothelins BAD +PWCOMMONS Endothelins AKAP5 +PWCOMMONS Endothelins NR4A1 +PWCOMMONS Endothelins RCAN1 +PWCOMMONS Endothelins MAPK14 +PWCOMMONS Endothelins CHP +PWCOMMONS Endothelins PRKCZ +PWCOMMONS Endothelins CSNK2A1 +PWCOMMONS Endothelins MAPK3 +PWCOMMONS Endothelins XPO1 +PWCOMMONS Endothelins RAN +PWCOMMONS Endothelins NUP214 +PWCOMMONS Endothelins MAP3K8 +PWCOMMONS Endothelins E2F1 +PWCOMMONS Endothelins EGR3 +PWCOMMONS Endothelins CREM +PWCOMMONS Endothelins CTLA4 +PWCOMMONS Endothelins TNF +PWCOMMONS Endothelins IL2RA +PWCOMMONS Endothelins FOXP3 +PWCOMMONS Endothelins PPARG +PWCOMMONS Endothelins EGR4 +PWCOMMONS Endothelins CD40LG +PWCOMMONS Endothelins FASLG +PWCOMMONS Endothelins GATA3 +PWCOMMONS Endothelins IL8 +PWCOMMONS Endothelins FOSL1 +PWCOMMONS Endothelins JUNB +PWCOMMONS Endothelins IL5 +PWCOMMONS Endothelins IKZF1 +PWCOMMONS Endothelins GBP3 +PWCOMMONS Endothelins CSF2 +PWCOMMONS Endothelins IL2 +PWCOMMONS Endothelins PRKCQ +PWCOMMONS Endothelins IRF4 +PWCOMMONS Endothelins MAF +PWCOMMONS Endothelins POU2F1 +PWCOMMONS Endothelins CBLB +PWCOMMONS Endothelins EGR1 +PWCOMMONS Endothelins PTPN1 +PWCOMMONS Endothelins SLC3A2 +PWCOMMONS Endothelins PTGS2 +PWCOMMONS Endothelins IFNG +PWCOMMONS Endothelins ITCH +PWCOMMONS Endothelins IL4 +PWCOMMONS Endothelins EGR2 +PWCOMMONS Endothelins RNF128 +PWCOMMONS Endothelins DGKA +PWCOMMONS Endothelins IL3 +PWCOMMONS Endothelins BATF3 +PWCOMMONS Endothelins TBX21 +PWCOMMONS Endothelins BCE1 +PWCOMMONS Endothelins CDK4 +PWCOMMONS Endothelins CASP3 +PWCOMMONS Endothelins PTPRK +PWCOMMONS Endothelins PIM1 +PWCOMMONS Endothelins FKBP1A +PWCOMMONS Endothelins EDN2 +PWCOMMONS Endothelins EGFR +PWCOMMONS Endothelins SOS1 +PWCOMMONS Endothelins EGF +PWCOMMONS Endothelins GRB2 +PWCOMMONS Endothelins EDN3 +PWCOMMONS Endothelins JAK2 +PWCOMMONS Endothelins PLA2G4A +PWCOMMONS Endothelins TRPC6 +PWCOMMONS Endothelins FRAP1 +PWCOMMONS Endothelins MMP1 +PWCOMMONS Endothelins SLC9A3 +PWCOMMONS Endothelins COL3A1 +PWCOMMONS Endothelins AKT1 +PWCOMMONS Endothelins LST8 +PWCOMMONS Endothelins RAPTOR +PWCOMMONS Endothelins RHEB +PWCOMMONS Endothelins INSR +PWCOMMONS Endothelins INS +PWCOMMONS Endothelins PPP2R5D +PWCOMMONS Endothelins IRS1 +PWCOMMONS Endothelins EIF4B +PWCOMMONS Endothelins EIF4E +PWCOMMONS Endothelins EIF4G1 +PWCOMMONS Endothelins PIK3CA +PWCOMMONS Endothelins PIK3R1 +PWCOMMONS Endothelins TSC2 +PWCOMMONS Endothelins RPS6KB1 +PWCOMMONS Endothelins PDPK1 +PWCOMMONS Endothelins EIF3A +PWCOMMONS Endothelins RPS6 +PWCOMMONS Endothelins MAP3K5 +PWCOMMONS Endothelins TSC1 +PWCOMMONS Endothelins EEF2 +PWCOMMONS Endothelins EIF4EBP1 +PWCOMMONS Endothelins PTEN +PWCOMMONS Endothelins MKNK1 +PWCOMMONS Endothelins PRKAB1 +PWCOMMONS Endothelins CYSLTR1 +PWCOMMONS Endothelins +PWCOMMONS Wnt signaling GNG2 +PWCOMMONS Wnt signaling GNB1 +PWCOMMONS Wnt signaling CDC42 +PWCOMMONS Wnt signaling GNAS +PWCOMMONS Wnt signaling PLCG1 +PWCOMMONS Wnt signaling YES1 +PWCOMMONS Wnt signaling MAP3K7 +PWCOMMONS Wnt signaling NFATC2 +PWCOMMONS Wnt signaling CSNK1A1 +PWCOMMONS Wnt signaling CAMK2A +PWCOMMONS Wnt signaling MAP3K7IP1 +PWCOMMONS Wnt signaling LRP6 +PWCOMMONS Wnt signaling FZD1 +PWCOMMONS Wnt signaling CTNNB1 +PWCOMMONS Wnt signaling CTBP1 +PWCOMMONS Wnt signaling AES +PWCOMMONS Wnt signaling CREBBP +PWCOMMONS Wnt signaling TLE1 +PWCOMMONS Wnt signaling KREMEN2 +PWCOMMONS Wnt signaling DKK1 +PWCOMMONS Wnt signaling WNT1 +PWCOMMONS Wnt signaling FBXW11 +PWCOMMONS Wnt signaling HDAC1 +PWCOMMONS Wnt signaling AXIN1 +PWCOMMONS Wnt signaling APC +PWCOMMONS Wnt signaling MACF1 +PWCOMMONS Wnt signaling WIF1 +PWCOMMONS Wnt signaling PPP2R5D +PWCOMMONS Wnt signaling RANBP3 +PWCOMMONS Wnt signaling DKK2 +PWCOMMONS Wnt signaling DVL1 +PWCOMMONS Wnt signaling SMAD4 +PWCOMMONS Wnt signaling MYC +PWCOMMONS Wnt signaling AXIN2 +PWCOMMONS Wnt signaling CCND1 +PWCOMMONS Wnt signaling RAN +PWCOMMONS Wnt signaling FRAT1 +PWCOMMONS Wnt signaling NKD1 +PWCOMMONS Wnt signaling CSNK2A1 +PWCOMMONS Wnt signaling +PWCOMMONS Fc-epsilon receptor I signaling in mast cells MS4A2 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells FCER1A +PWCOMMONS Fc-epsilon receptor I signaling in mast cells FCER1G +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PLCG1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells LAT2 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells LCP2 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells GRB2 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PIK3CA +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PIK3R1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells IGHE +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PLA2G1B +PWCOMMONS Fc-epsilon receptor I signaling in mast cells S1PR1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells SYK +PWCOMMONS Fc-epsilon receptor I signaling in mast cells WIPF1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells LYN +PWCOMMONS Fc-epsilon receptor I signaling in mast cells FOS +PWCOMMONS Fc-epsilon receptor I signaling in mast cells JUN +PWCOMMONS Fc-epsilon receptor I signaling in mast cells KLRG1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PTPN11 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells MAPK1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PLA2G4A +PWCOMMONS Fc-epsilon receptor I signaling in mast cells AKT1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells MAPK3 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells MAP3K1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells BTK +PWCOMMONS Fc-epsilon receptor I signaling in mast cells SOS1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells SHC1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells IKBKB +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PRKCB +PWCOMMONS Fc-epsilon receptor I signaling in mast cells MAP2K4 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells ITK +PWCOMMONS Fc-epsilon receptor I signaling in mast cells NFKB1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells RELA +PWCOMMONS Fc-epsilon receptor I signaling in mast cells HRAS +PWCOMMONS Fc-epsilon receptor I signaling in mast cells SPHK1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PPAP2A +PWCOMMONS Fc-epsilon receptor I signaling in mast cells VAV1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells HCLS1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells CBL +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PTK2 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells DOK1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells INPP5D +PWCOMMONS Fc-epsilon receptor I signaling in mast cells RASA1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells NFATC2 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells MAP2K7 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells DUSP1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells CBLB +PWCOMMONS Fc-epsilon receptor I signaling in mast cells MAPK8 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PXN +PWCOMMONS Fc-epsilon receptor I signaling in mast cells CHUK +PWCOMMONS Fc-epsilon receptor I signaling in mast cells IKBKG +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PAK2 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells GAB2 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PLD2 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells LAT +PWCOMMONS Fc-epsilon receptor I signaling in mast cells MAP2K1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells MAP2K2 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells RAF1 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells PTPN13 +PWCOMMONS Fc-epsilon receptor I signaling in mast cells FYN +PWCOMMONS Fc-epsilon receptor I signaling in mast cells FER +PWCOMMONS Fc-epsilon receptor I signaling in mast cells +PWCOMMONS FOXA1 transcription factor network FOS +PWCOMMONS FOXA1 transcription factor network JUN +PWCOMMONS FOXA1 transcription factor network CYP2C18 +PWCOMMONS FOXA1 transcription factor network FOXA1 +PWCOMMONS FOXA1 transcription factor network AR +PWCOMMONS FOXA1 transcription factor network SP1 +PWCOMMONS FOXA1 transcription factor network PISD +PWCOMMONS FOXA1 transcription factor network SCGB1A1 +PWCOMMONS FOXA1 transcription factor network GCG +PWCOMMONS FOXA1 transcription factor network SOD1 +PWCOMMONS FOXA1 transcription factor network ATP5J +PWCOMMONS FOXA1 transcription factor network INS +PWCOMMONS FOXA1 transcription factor network VTN +PWCOMMONS FOXA1 transcription factor network CEBPB +PWCOMMONS FOXA1 transcription factor network XBP1 +PWCOMMONS FOXA1 transcription factor network KLK3 +PWCOMMONS FOXA1 transcription factor network SHH +PWCOMMONS FOXA1 transcription factor network NDUFV3 +PWCOMMONS FOXA1 transcription factor network FOXA2 +PWCOMMONS FOXA1 transcription factor network APOB +PWCOMMONS FOXA1 transcription factor network NCOA3 +PWCOMMONS FOXA1 transcription factor network AP1B1 +PWCOMMONS FOXA1 transcription factor network NR2F2 +PWCOMMONS FOXA1 transcription factor network COL18A1 +PWCOMMONS FOXA1 transcription factor network BRCA1 +PWCOMMONS FOXA1 transcription factor network SERPINA1 +PWCOMMONS FOXA1 transcription factor network C4BPB +PWCOMMONS FOXA1 transcription factor network SFTPD +PWCOMMONS FOXA1 transcription factor network TFF1 +PWCOMMONS FOXA1 transcription factor network POU2F1 +PWCOMMONS FOXA1 transcription factor network NKX3-1 +PWCOMMONS FOXA1 transcription factor network CDKN1B +PWCOMMONS FOXA1 transcription factor network NRIP1 +PWCOMMONS FOXA1 transcription factor network DSCAM +PWCOMMONS FOXA1 transcription factor network +PWCOMMONS p38 signaling mediated by MAPKAP kinases HSPB1 +PWCOMMONS p38 signaling mediated by MAPKAP kinases LSP1 +PWCOMMONS p38 signaling mediated by MAPKAP kinases CDC25B +PWCOMMONS p38 signaling mediated by MAPKAP kinases MAPKAPK3 +PWCOMMONS p38 signaling mediated by MAPKAP kinases TSC2 +PWCOMMONS p38 signaling mediated by MAPKAP kinases TCF3 +PWCOMMONS p38 signaling mediated by MAPKAP kinases RAF1 +PWCOMMONS p38 signaling mediated by MAPKAP kinases YWHAZ +PWCOMMONS p38 signaling mediated by MAPKAP kinases SRF +PWCOMMONS p38 signaling mediated by MAPKAP kinases CREB1 +PWCOMMONS p38 signaling mediated by MAPKAP kinases MAPK14 +PWCOMMONS p38 signaling mediated by MAPKAP kinases TH +PWCOMMONS p38 signaling mediated by MAPKAP kinases ETV1 +PWCOMMONS p38 signaling mediated by MAPKAP kinases +PWCOMMONS Regulation of Telomerase HUS1 +PWCOMMONS Regulation of Telomerase PTGES3 +PWCOMMONS Regulation of Telomerase DKC1 +PWCOMMONS Regulation of Telomerase TERT +PWCOMMONS Regulation of Telomerase HSP90AA1 +PWCOMMONS Regulation of Telomerase RAD9A +PWCOMMONS Regulation of Telomerase RAD1 +PWCOMMONS Regulation of Telomerase ABL1 +PWCOMMONS Regulation of Telomerase AKT1 +PWCOMMONS Regulation of Telomerase IFNG +PWCOMMONS Regulation of Telomerase IRF1 +PWCOMMONS Regulation of Telomerase TNKS +PWCOMMONS Regulation of Telomerase TERF1 +PWCOMMONS Regulation of Telomerase ESR1 +PWCOMMONS Regulation of Telomerase CCND1 +PWCOMMONS Regulation of Telomerase IL2 +PWCOMMONS Regulation of Telomerase XRCC6 +PWCOMMONS Regulation of Telomerase XRCC5 +PWCOMMONS Regulation of Telomerase TERF2 +PWCOMMONS Regulation of Telomerase MAX +PWCOMMONS Regulation of Telomerase MXD1 +PWCOMMONS Regulation of Telomerase SMG5 +PWCOMMONS Regulation of Telomerase BLM +PWCOMMONS Regulation of Telomerase ATM +PWCOMMONS Regulation of Telomerase CDKN1B +PWCOMMONS Regulation of Telomerase NR2F2 +PWCOMMONS Regulation of Telomerase TERF2IP +PWCOMMONS Regulation of Telomerase NBN +PWCOMMONS Regulation of Telomerase RAD50 +PWCOMMONS Regulation of Telomerase MRE11A +PWCOMMONS Regulation of Telomerase HNRNPC +PWCOMMONS Regulation of Telomerase SAP18 +PWCOMMONS Regulation of Telomerase SIN3A +PWCOMMONS Regulation of Telomerase HDAC2 +PWCOMMONS Regulation of Telomerase RBBP7 +PWCOMMONS Regulation of Telomerase HDAC1 +PWCOMMONS Regulation of Telomerase SAP30 +PWCOMMONS Regulation of Telomerase RBBP4 +PWCOMMONS Regulation of Telomerase SIN3B +PWCOMMONS Regulation of Telomerase SMAD3 +PWCOMMONS Regulation of Telomerase MYC +PWCOMMONS Regulation of Telomerase E2F1 +PWCOMMONS Regulation of Telomerase SMG6 +PWCOMMONS Regulation of Telomerase WRN +PWCOMMONS Regulation of Telomerase SP3 +PWCOMMONS Regulation of Telomerase PINX1 +PWCOMMONS Regulation of Telomerase TINF2 +PWCOMMONS Regulation of Telomerase UBE3A +PWCOMMONS Regulation of Telomerase FOS +PWCOMMONS Regulation of Telomerase JUN +PWCOMMONS Regulation of Telomerase PIF1 +PWCOMMONS Regulation of Telomerase PARP2 +PWCOMMONS Regulation of Telomerase ACD +PWCOMMONS Regulation of Telomerase POT1 +PWCOMMONS Regulation of Telomerase FRAP1 +PWCOMMONS Regulation of Telomerase RPS6KB1 +PWCOMMONS Regulation of Telomerase NFKB1 +PWCOMMONS Regulation of Telomerase YWHAE +PWCOMMONS Regulation of Telomerase SP1 +PWCOMMONS Regulation of Telomerase IFNAR2 +PWCOMMONS Regulation of Telomerase EGFR +PWCOMMONS Regulation of Telomerase EGF +PWCOMMONS Regulation of Telomerase NCL +PWCOMMONS Regulation of Telomerase +PWCOMMONS Signaling events mediated by HDAC Class I RELA +PWCOMMONS Signaling events mediated by HDAC Class I PRKACA +PWCOMMONS Signaling events mediated by HDAC Class I NCOR1 +PWCOMMONS Signaling events mediated by HDAC Class I SAP18 +PWCOMMONS Signaling events mediated by HDAC Class I SIN3A +PWCOMMONS Signaling events mediated by HDAC Class I HDAC2 +PWCOMMONS Signaling events mediated by HDAC Class I RBBP7 +PWCOMMONS Signaling events mediated by HDAC Class I HDAC1 +PWCOMMONS Signaling events mediated by HDAC Class I SAP30 +PWCOMMONS Signaling events mediated by HDAC Class I RBBP4 +PWCOMMONS Signaling events mediated by HDAC Class I SIN3B +PWCOMMONS Signaling events mediated by HDAC Class I GATAD2A +PWCOMMONS Signaling events mediated by HDAC Class I GATAD2B +PWCOMMONS Signaling events mediated by HDAC Class I MBD2 +PWCOMMONS Signaling events mediated by HDAC Class I CHD3 +PWCOMMONS Signaling events mediated by HDAC Class I CHD4 +PWCOMMONS Signaling events mediated by HDAC Class I MTA2 +PWCOMMONS Signaling events mediated by HDAC Class I YY1 +PWCOMMONS Signaling events mediated by HDAC Class I HDAC3 +PWCOMMONS Signaling events mediated by HDAC Class I NFKBIA +PWCOMMONS Signaling events mediated by HDAC Class I SMG5 +PWCOMMONS Signaling events mediated by HDAC Class I HDAC8 +PWCOMMONS Signaling events mediated by HDAC Class I NCOR2 +PWCOMMONS Signaling events mediated by HDAC Class I STAT3 +PWCOMMONS Signaling events mediated by HDAC Class I SMAD7 +PWCOMMONS Signaling events mediated by HDAC Class I YWHAB +PWCOMMONS Signaling events mediated by HDAC Class I HDAC5 +PWCOMMONS Signaling events mediated by HDAC Class I HDAC4 +PWCOMMONS Signaling events mediated by HDAC Class I YWHAE +PWCOMMONS Signaling events mediated by HDAC Class I HDAC10 +PWCOMMONS Signaling events mediated by HDAC Class I RANGAP1 +PWCOMMONS Signaling events mediated by HDAC Class I UBE2I +PWCOMMONS Signaling events mediated by HDAC Class I RANBP2 +PWCOMMONS Signaling events mediated by HDAC Class I SUMO1 +PWCOMMONS Signaling events mediated by HDAC Class I HDAC7 +PWCOMMONS Signaling events mediated by HDAC Class I XPO1 +PWCOMMONS Signaling events mediated by HDAC Class I RAN +PWCOMMONS Signaling events mediated by HDAC Class I SRF +PWCOMMONS Signaling events mediated by HDAC Class I HDAC11 +PWCOMMONS Signaling events mediated by HDAC Class I HDAC6 +PWCOMMONS Signaling events mediated by HDAC Class I RFXANK +PWCOMMONS Signaling events mediated by HDAC Class I ESR1 +PWCOMMONS Signaling events mediated by HDAC Class I NR3C1 +PWCOMMONS Signaling events mediated by HDAC Class I HSP90AA1 +PWCOMMONS Signaling events mediated by HDAC Class I CAMK4 +PWCOMMONS Signaling events mediated by HDAC Class I TUBB2A +PWCOMMONS Signaling events mediated by HDAC Class I HDAC9 +PWCOMMONS Signaling events mediated by HDAC Class I ANKRA2 +PWCOMMONS Signaling events mediated by HDAC Class I MEF2C +PWCOMMONS Signaling events mediated by HDAC Class I GATA1 +PWCOMMONS Signaling events mediated by HDAC Class I ADRBK1 +PWCOMMONS Signaling events mediated by HDAC Class I GATA2 +PWCOMMONS Signaling events mediated by HDAC Class I GNG2 +PWCOMMONS Signaling events mediated by HDAC Class I GNB1 +PWCOMMONS Signaling events mediated by HDAC Class I BCL6 +PWCOMMONS Signaling events mediated by HDAC Class I BCOR +PWCOMMONS Signaling events mediated by HDAC Class I TNFRSF1A +PWCOMMONS Signaling events mediated by HDAC Class I TNF +PWCOMMONS Signaling events mediated by HDAC Class I SMURF1 +PWCOMMONS Signaling events mediated by HDAC Class I FBXW11 +PWCOMMONS Signaling events mediated by HDAC Class I MAX +PWCOMMONS Signaling events mediated by HDAC Class I MXD1 +PWCOMMONS Signaling events mediated by HDAC Class I FKBP3 +PWCOMMONS Signaling events mediated by HDAC Class I PCAF +PWCOMMONS Signaling events mediated by HDAC Class I SIRT2 +PWCOMMONS Signaling events mediated by HDAC Class I FOXO1 +PWCOMMONS Signaling events mediated by HDAC Class I FHL2 +PWCOMMONS Signaling events mediated by HDAC Class I SIRT1 +PWCOMMONS Signaling events mediated by HDAC Class I HIST1H1E +PWCOMMONS Signaling events mediated by HDAC Class I MEF2D +PWCOMMONS Signaling events mediated by HDAC Class I HIST1H4A +PWCOMMONS Signaling events mediated by HDAC Class I BAX +PWCOMMONS Signaling events mediated by HDAC Class I XRCC6 +PWCOMMONS Signaling events mediated by HDAC Class I PPARGC1A +PWCOMMONS Signaling events mediated by HDAC Class I TP53 +PWCOMMONS Signaling events mediated by HDAC Class I FOXO3 +PWCOMMONS Signaling events mediated by HDAC Class I SIRT7 +PWCOMMONS Signaling events mediated by HDAC Class I MYOD1 +PWCOMMONS Signaling events mediated by HDAC Class I CDKN1A +PWCOMMONS Signaling events mediated by HDAC Class I EP300 +PWCOMMONS Signaling events mediated by HDAC Class I FOXO4 +PWCOMMONS Signaling events mediated by HDAC Class I HOXA10 +PWCOMMONS Signaling events mediated by HDAC Class I ACSS2 +PWCOMMONS Signaling events mediated by HDAC Class I SIRT3 +PWCOMMONS Signaling events mediated by HDAC Class I MBD3L2 +PWCOMMONS Signaling events mediated by HDAC Class I MBD3 +PWCOMMONS Signaling events mediated by HDAC Class I WDR77 +PWCOMMONS Signaling events mediated by HDAC Class I PRMT5 +PWCOMMONS Signaling events mediated by HDAC Class I TFCP2 +PWCOMMONS Signaling events mediated by HDAC Class I ZFPM1 +PWCOMMONS Signaling events mediated by HDAC Class I NR2C1 +PWCOMMONS Signaling events mediated by HDAC Class I +PWCOMMONS IL2-mediated signaling events JAK1 +PWCOMMONS IL2-mediated signaling events IL2 +PWCOMMONS IL2-mediated signaling events LCK +PWCOMMONS IL2-mediated signaling events IL2RB +PWCOMMONS IL2-mediated signaling events IL2RG +PWCOMMONS IL2-mediated signaling events JAK3 +PWCOMMONS IL2-mediated signaling events IL2RA +PWCOMMONS IL2-mediated signaling events PIK3CA +PWCOMMONS IL2-mediated signaling events GAB2 +PWCOMMONS IL2-mediated signaling events PIK3R1 +PWCOMMONS IL2-mediated signaling events PTPN11 +PWCOMMONS IL2-mediated signaling events SOS1 +PWCOMMONS IL2-mediated signaling events SHC1 +PWCOMMONS IL2-mediated signaling events GRB2 +PWCOMMONS IL2-mediated signaling events RASA1 +PWCOMMONS IL2-mediated signaling events DOK2 +PWCOMMONS IL2-mediated signaling events PTK2B +PWCOMMONS IL2-mediated signaling events BCL2 +PWCOMMONS IL2-mediated signaling events SOCS3 +PWCOMMONS IL2-mediated signaling events SOCS2 +PWCOMMONS IL2-mediated signaling events FRAP1 +PWCOMMONS IL2-mediated signaling events IKBKB +PWCOMMONS IL2-mediated signaling events CHUK +PWCOMMONS IL2-mediated signaling events IKBKG +PWCOMMONS IL2-mediated signaling events TNFAIP3 +PWCOMMONS IL2-mediated signaling events ATM +PWCOMMONS IL2-mediated signaling events NFKB1 +PWCOMMONS IL2-mediated signaling events NFKBIA +PWCOMMONS IL2-mediated signaling events RELA +PWCOMMONS IL2-mediated signaling events CYLD +PWCOMMONS IL2-mediated signaling events NOD2 +PWCOMMONS IL2-mediated signaling events RIPK2 +PWCOMMONS IL2-mediated signaling events BCL10 +PWCOMMONS IL2-mediated signaling events TRAF6 +PWCOMMONS IL2-mediated signaling events MALT1 +PWCOMMONS IL2-mediated signaling events PRKCA +PWCOMMONS IL2-mediated signaling events ERC1 +PWCOMMONS IL2-mediated signaling events FBXW11 +PWCOMMONS IL2-mediated signaling events TNFRSF1A +PWCOMMONS IL2-mediated signaling events TNF +PWCOMMONS IL2-mediated signaling events ARRB2 +PWCOMMONS IL2-mediated signaling events REL +PWCOMMONS IL2-mediated signaling events BCL3 +PWCOMMONS IL2-mediated signaling events MAPK14 +PWCOMMONS IL2-mediated signaling events SRC +PWCOMMONS IL2-mediated signaling events XPO1 +PWCOMMONS IL2-mediated signaling events RAN +PWCOMMONS IL2-mediated signaling events NFKB2 +PWCOMMONS IL2-mediated signaling events RELB +PWCOMMONS IL2-mediated signaling events MAP3K14 +PWCOMMONS IL2-mediated signaling events BIRC2 +PWCOMMONS IL2-mediated signaling events UBE2D3 +PWCOMMONS IL2-mediated signaling events E2F1 +PWCOMMONS IL2-mediated signaling events AKT1 +PWCOMMONS IL2-mediated signaling events BCL2L1 +PWCOMMONS IL2-mediated signaling events CALM1 +PWCOMMONS IL2-mediated signaling events TERT +PWCOMMONS IL2-mediated signaling events RPS6KB1 +PWCOMMONS IL2-mediated signaling events HSP90AA1 +PWCOMMONS IL2-mediated signaling events RAC1 +PWCOMMONS IL2-mediated signaling events PRKCZ +PWCOMMONS IL2-mediated signaling events UGCG +PWCOMMONS IL2-mediated signaling events FOXO3 +PWCOMMONS IL2-mediated signaling events MYC +PWCOMMONS IL2-mediated signaling events MYB +PWCOMMONS IL2-mediated signaling events SMPD1 +PWCOMMONS IL2-mediated signaling events SGMS1 +PWCOMMONS IL2-mediated signaling events EIF3A +PWCOMMONS IL2-mediated signaling events RPS6 +PWCOMMONS IL2-mediated signaling events RHOA +PWCOMMONS IL2-mediated signaling events FYN +PWCOMMONS IL2-mediated signaling events PRKCB +PWCOMMONS IL2-mediated signaling events RAF1 +PWCOMMONS IL2-mediated signaling events FOS +PWCOMMONS IL2-mediated signaling events MAPKAPK2 +PWCOMMONS IL2-mediated signaling events CDK2 +PWCOMMONS IL2-mediated signaling events PPP2R5D +PWCOMMONS IL2-mediated signaling events STAT3 +PWCOMMONS IL2-mediated signaling events CISH +PWCOMMONS IL2-mediated signaling events PRKCE +PWCOMMONS IL2-mediated signaling events FOXP3 +PWCOMMONS IL2-mediated signaling events CCNA2 +PWCOMMONS IL2-mediated signaling events CCND2 +PWCOMMONS IL2-mediated signaling events PRF1 +PWCOMMONS IL2-mediated signaling events CDK6 +PWCOMMONS IL2-mediated signaling events SP1 +PWCOMMONS IL2-mediated signaling events ELF1 +PWCOMMONS IL2-mediated signaling events FASLG +PWCOMMONS IL2-mediated signaling events LTA +PWCOMMONS IL2-mediated signaling events IL4 +PWCOMMONS IL2-mediated signaling events CCND3 +PWCOMMONS IL2-mediated signaling events SOCS1 +PWCOMMONS IL2-mediated signaling events IKZF3 +PWCOMMONS IL2-mediated signaling events JUN +PWCOMMONS IL2-mediated signaling events IFNG +PWCOMMONS IL2-mediated signaling events STAT1 +PWCOMMONS IL2-mediated signaling events +PWCOMMONS FOXM1 transcription factor network FOXM1 +PWCOMMONS FOXM1 transcription factor network AURKB +PWCOMMONS FOXM1 transcription factor network SP1 +PWCOMMONS FOXM1 transcription factor network XRCC1 +PWCOMMONS FOXM1 transcription factor network MAP2K1 +PWCOMMONS FOXM1 transcription factor network CCNB1 +PWCOMMONS FOXM1 transcription factor network CDC25B +PWCOMMONS FOXM1 transcription factor network ONECUT1 +PWCOMMONS FOXM1 transcription factor network MYC +PWCOMMONS FOXM1 transcription factor network CKS1B +PWCOMMONS FOXM1 transcription factor network MMP2 +PWCOMMONS FOXM1 transcription factor network CDC2 +PWCOMMONS FOXM1 transcription factor network CCNE1 +PWCOMMONS FOXM1 transcription factor network CDK2 +PWCOMMONS FOXM1 transcription factor network CDKN2A +PWCOMMONS FOXM1 transcription factor network LAMA4 +PWCOMMONS FOXM1 transcription factor network CENPF +PWCOMMONS FOXM1 transcription factor network CHEK2 +PWCOMMONS FOXM1 transcription factor network SKP2 +PWCOMMONS FOXM1 transcription factor network HSPA1A +PWCOMMONS FOXM1 transcription factor network RB1 +PWCOMMONS FOXM1 transcription factor network CENPB +PWCOMMONS FOXM1 transcription factor network BRCA2 +PWCOMMONS FOXM1 transcription factor network PLK1 +PWCOMMONS FOXM1 transcription factor network CDK4 +PWCOMMONS FOXM1 transcription factor network CCND1 +PWCOMMONS FOXM1 transcription factor network ETV5 +PWCOMMONS FOXM1 transcription factor network CCNB2 +PWCOMMONS FOXM1 transcription factor network TGFA +PWCOMMONS FOXM1 transcription factor network CENPA +PWCOMMONS FOXM1 transcription factor network NEK2 +PWCOMMONS FOXM1 transcription factor network ESR1 +PWCOMMONS FOXM1 transcription factor network FOS +PWCOMMONS FOXM1 transcription factor network HIST1H2BA +PWCOMMONS FOXM1 transcription factor network GSK3A +PWCOMMONS FOXM1 transcription factor network BIRC5 +PWCOMMONS FOXM1 transcription factor network +PWCOMMONS Insulin-mediated glucose transport PPP1CC +PWCOMMONS Insulin-mediated glucose transport STXBP4 +PWCOMMONS Insulin-mediated glucose transport STX4 +PWCOMMONS Insulin-mediated glucose transport VAMP2 +PWCOMMONS Insulin-mediated glucose transport ASIP +PWCOMMONS Insulin-mediated glucose transport INSR +PWCOMMONS Insulin-mediated glucose transport INS +PWCOMMONS Insulin-mediated glucose transport SLC2A4 +PWCOMMONS Insulin-mediated glucose transport AKT1 +PWCOMMONS Insulin-mediated glucose transport TBC1D4 +PWCOMMONS Insulin-mediated glucose transport GSK3B +PWCOMMONS Insulin-mediated glucose transport LNPEP +PWCOMMONS Insulin-mediated glucose transport TRIP10 +PWCOMMONS Insulin-mediated glucose transport RHOQ +PWCOMMONS Insulin-mediated glucose transport AKT2 +PWCOMMONS Insulin-mediated glucose transport GYS1 +PWCOMMONS Insulin-mediated glucose transport +PWCOMMONS EPO signaling pathway EPO +PWCOMMONS EPO signaling pathway LYN +PWCOMMONS EPO signaling pathway EPOR +PWCOMMONS EPO signaling pathway JAK2 +PWCOMMONS EPO signaling pathway VAV2 +PWCOMMONS EPO signaling pathway INPP5D +PWCOMMONS EPO signaling pathway PIK3R1 +PWCOMMONS EPO signaling pathway GAB1 +PWCOMMONS EPO signaling pathway PTPN11 +PWCOMMONS EPO signaling pathway SHC1 +PWCOMMONS EPO signaling pathway SOS1 +PWCOMMONS EPO signaling pathway GRB2 +PWCOMMONS EPO signaling pathway IRS2 +PWCOMMONS EPO signaling pathway STAT1 +PWCOMMONS EPO signaling pathway SH2B3 +PWCOMMONS EPO signaling pathway SOCS3 +PWCOMMONS EPO signaling pathway BTK +PWCOMMONS EPO signaling pathway TEC +PWCOMMONS EPO signaling pathway BCL2 +PWCOMMONS EPO signaling pathway BCL2L1 +PWCOMMONS EPO signaling pathway PLCG1 +PWCOMMONS EPO signaling pathway MAPK8 +PWCOMMONS EPO signaling pathway PTPN6 +PWCOMMONS EPO signaling pathway PLCG2 +PWCOMMONS EPO signaling pathway CRKL +PWCOMMONS EPO signaling pathway RAPGEF1 +PWCOMMONS EPO signaling pathway CBL +PWCOMMONS EPO signaling pathway TRPC6 +PWCOMMONS EPO signaling pathway MAPK14 +PWCOMMONS EPO signaling pathway HRAS +PWCOMMONS EPO signaling pathway NFKB1 +PWCOMMONS EPO signaling pathway +PWCOMMONS S1P1 pathway SPHK1 +PWCOMMONS S1P1 pathway PLCB2 +PWCOMMONS S1P1 pathway RHOA +PWCOMMONS S1P1 pathway ITGB3 +PWCOMMONS S1P1 pathway ITGAV +PWCOMMONS S1P1 pathway RAC1 +PWCOMMONS S1P1 pathway PLCG1 +PWCOMMONS S1P1 pathway PTGS2 +PWCOMMONS S1P1 pathway PDGFRB +PWCOMMONS S1P1 pathway GRB10 +PWCOMMONS S1P1 pathway HRAS +PWCOMMONS S1P1 pathway ABL1 +PWCOMMONS S1P1 pathway AKT1 +PWCOMMONS S1P1 pathway MYC +PWCOMMONS S1P1 pathway BCAR1 +PWCOMMONS S1P1 pathway HIF1A +PWCOMMONS S1P1 pathway PTPN11 +PWCOMMONS S1P1 pathway PTPN1 +PWCOMMONS S1P1 pathway PTEN +PWCOMMONS S1P1 pathway VAV2 +PWCOMMONS S1P1 pathway PIK3CA +PWCOMMONS S1P1 pathway PIK3R1 +PWCOMMONS S1P1 pathway CBL +PWCOMMONS S1P1 pathway SNX15 +PWCOMMONS S1P1 pathway DNM2 +PWCOMMONS S1P1 pathway GAB1 +PWCOMMONS S1P1 pathway GRB7 +PWCOMMONS S1P1 pathway ACP1 +PWCOMMONS S1P1 pathway FER +PWCOMMONS S1P1 pathway PDGFB +PWCOMMONS S1P1 pathway LRP1 +PWCOMMONS S1P1 pathway PTPN2 +PWCOMMONS S1P1 pathway SOS1 +PWCOMMONS S1P1 pathway SHC1 +PWCOMMONS S1P1 pathway GRB2 +PWCOMMONS S1P1 pathway CSK +PWCOMMONS S1P1 pathway DOK1 +PWCOMMONS S1P1 pathway SHB +PWCOMMONS S1P1 pathway SH2B2 +PWCOMMONS S1P1 pathway PTPRJ +PWCOMMONS S1P1 pathway PRKCD +PWCOMMONS S1P1 pathway RASA1 +PWCOMMONS S1P1 pathway VEGFA +PWCOMMONS S1P1 pathway KDR +PWCOMMONS S1P1 pathway +PWCOMMONS BCR signaling pathway CD19 +PWCOMMONS BCR signaling pathway PIK3CA +PWCOMMONS BCR signaling pathway PIK3R1 +PWCOMMONS BCR signaling pathway IKBKB +PWCOMMONS BCR signaling pathway AKT1 +PWCOMMONS BCR signaling pathway NFKBIB +PWCOMMONS BCR signaling pathway SYK +PWCOMMONS BCR signaling pathway CD79B +PWCOMMONS BCR signaling pathway LYN +PWCOMMONS BCR signaling pathway CD79A +PWCOMMONS BCR signaling pathway PDPK1 +PWCOMMONS BCR signaling pathway CHUK +PWCOMMONS BCR signaling pathway IKBKG +PWCOMMONS BCR signaling pathway NFKB1 +PWCOMMONS BCR signaling pathway RELA +PWCOMMONS BCR signaling pathway FCGR2B +PWCOMMONS BCR signaling pathway PTPRC +PWCOMMONS BCR signaling pathway POU2F2 +PWCOMMONS BCR signaling pathway BCL2A1 +PWCOMMONS BCR signaling pathway NFATC1 +PWCOMMONS BCR signaling pathway NFKBIA +PWCOMMONS BCR signaling pathway CSK +PWCOMMONS BCR signaling pathway PAG1 +PWCOMMONS BCR signaling pathway DAPP1 +PWCOMMONS BCR signaling pathway MAP4K1 +PWCOMMONS BCR signaling pathway BCL10 +PWCOMMONS BCR signaling pathway CARD11 +PWCOMMONS BCR signaling pathway MAP3K7 +PWCOMMONS BCR signaling pathway MALT1 +PWCOMMONS BCR signaling pathway CALM1 +PWCOMMONS BCR signaling pathway MAP3K1 +PWCOMMONS BCR signaling pathway BLNK +PWCOMMONS BCR signaling pathway CD72 +PWCOMMONS BCR signaling pathway BTK +PWCOMMONS BCR signaling pathway PLCG2 +PWCOMMONS BCR signaling pathway DOK1 +PWCOMMONS BCR signaling pathway INPP5D +PWCOMMONS BCR signaling pathway RASA1 +PWCOMMONS BCR signaling pathway FOS +PWCOMMONS BCR signaling pathway JUN +PWCOMMONS BCR signaling pathway ETS1 +PWCOMMONS BCR signaling pathway ELK1 +PWCOMMONS BCR signaling pathway MAPK14 +PWCOMMONS BCR signaling pathway SOS1 +PWCOMMONS BCR signaling pathway SHC1 +PWCOMMONS BCR signaling pathway GRB2 +PWCOMMONS BCR signaling pathway VAV2 +PWCOMMONS BCR signaling pathway CAMK2G +PWCOMMONS BCR signaling pathway PTEN +PWCOMMONS BCR signaling pathway PPP3CA +PWCOMMONS BCR signaling pathway PPP3CB +PWCOMMONS BCR signaling pathway PPP3CC +PWCOMMONS BCR signaling pathway IBTK +PWCOMMONS BCR signaling pathway MAP2K1 +PWCOMMONS BCR signaling pathway TRAF6 +PWCOMMONS BCR signaling pathway CSNK2A1 +PWCOMMONS BCR signaling pathway MAPK3 +PWCOMMONS BCR signaling pathway PTPN6 +PWCOMMONS BCR signaling pathway HRAS +PWCOMMONS BCR signaling pathway RAF1 +PWCOMMONS BCR signaling pathway RAC1 +PWCOMMONS BCR signaling pathway CD22 +PWCOMMONS BCR signaling pathway SH3BP5 +PWCOMMONS BCR signaling pathway +PWCOMMONS LPA4-mediated signaling events PRKCE +PWCOMMONS LPA4-mediated signaling events LPAR4 +PWCOMMONS LPA4-mediated signaling events PRKACA +PWCOMMONS LPA4-mediated signaling events CREB1 +PWCOMMONS LPA4-mediated signaling events +PWCOMMONS Signaling events mediated by HDAC Class III TUBB2A +PWCOMMONS Signaling events mediated by HDAC Class III FOXO1 +PWCOMMONS Signaling events mediated by HDAC Class III FHL2 +PWCOMMONS Signaling events mediated by HDAC Class III SIRT1 +PWCOMMONS Signaling events mediated by HDAC Class III HIST1H1E +PWCOMMONS Signaling events mediated by HDAC Class III HDAC4 +PWCOMMONS Signaling events mediated by HDAC Class III MEF2D +PWCOMMONS Signaling events mediated by HDAC Class III HIST1H4A +PWCOMMONS Signaling events mediated by HDAC Class III BAX +PWCOMMONS Signaling events mediated by HDAC Class III XRCC6 +PWCOMMONS Signaling events mediated by HDAC Class III PPARGC1A +PWCOMMONS Signaling events mediated by HDAC Class III TP53 +PWCOMMONS Signaling events mediated by HDAC Class III FOXO3 +PWCOMMONS Signaling events mediated by HDAC Class III SIRT7 +PWCOMMONS Signaling events mediated by HDAC Class III MYOD1 +PWCOMMONS Signaling events mediated by HDAC Class III PCAF +PWCOMMONS Signaling events mediated by HDAC Class III CDKN1A +PWCOMMONS Signaling events mediated by HDAC Class III EP300 +PWCOMMONS Signaling events mediated by HDAC Class III FOXO4 +PWCOMMONS Signaling events mediated by HDAC Class III HOXA10 +PWCOMMONS Signaling events mediated by HDAC Class III ACSS2 +PWCOMMONS Signaling events mediated by HDAC Class III SIRT3 +PWCOMMONS Signaling events mediated by HDAC Class III +PWCOMMONS S1P4 pathway RHOA +PWCOMMONS S1P4 pathway GNA13 +PWCOMMONS S1P4 pathway GNA12 +PWCOMMONS S1P4 pathway S1PR5 +PWCOMMONS S1P4 pathway PLCG1 +PWCOMMONS S1P4 pathway +PWCOMMONS Calcium signaling in the CD4+ TCR pathway IL2 +PWCOMMONS Calcium signaling in the CD4+ TCR pathway FOS +PWCOMMONS Calcium signaling in the CD4+ TCR pathway CREM +PWCOMMONS Calcium signaling in the CD4+ TCR pathway JUN +PWCOMMONS Calcium signaling in the CD4+ TCR pathway IL2RA +PWCOMMONS Calcium signaling in the CD4+ TCR pathway CHP +PWCOMMONS Calcium signaling in the CD4+ TCR pathway CALM1 +PWCOMMONS Calcium signaling in the CD4+ TCR pathway PTGS2 +PWCOMMONS Calcium signaling in the CD4+ TCR pathway FKBP1A +PWCOMMONS Calcium signaling in the CD4+ TCR pathway CABIN1 +PWCOMMONS Calcium signaling in the CD4+ TCR pathway IL3 +PWCOMMONS Calcium signaling in the CD4+ TCR pathway CD40LG +PWCOMMONS Calcium signaling in the CD4+ TCR pathway CSF2 +PWCOMMONS Calcium signaling in the CD4+ TCR pathway BATF3 +PWCOMMONS Calcium signaling in the CD4+ TCR pathway IL4 +PWCOMMONS Calcium signaling in the CD4+ TCR pathway RCAN2 +PWCOMMONS Calcium signaling in the CD4+ TCR pathway FOSL1 +PWCOMMONS Calcium signaling in the CD4+ TCR pathway JUNB +PWCOMMONS Calcium signaling in the CD4+ TCR pathway FASLG +PWCOMMONS Calcium signaling in the CD4+ TCR pathway POU2F1 +PWCOMMONS Calcium signaling in the CD4+ TCR pathway IFNG +PWCOMMONS Calcium signaling in the CD4+ TCR pathway PRKACA +PWCOMMONS Calcium signaling in the CD4+ TCR pathway AKAP5 +PWCOMMONS Calcium signaling in the CD4+ TCR pathway +PWCOMMONS IL23-mediated signaling events IKBKB +PWCOMMONS IL23-mediated signaling events CHUK +PWCOMMONS IL23-mediated signaling events IKBKG +PWCOMMONS IL23-mediated signaling events TNFAIP3 +PWCOMMONS IL23-mediated signaling events ATM +PWCOMMONS IL23-mediated signaling events NFKB1 +PWCOMMONS IL23-mediated signaling events NFKBIA +PWCOMMONS IL23-mediated signaling events RELA +PWCOMMONS IL23-mediated signaling events CYLD +PWCOMMONS IL23-mediated signaling events NOD2 +PWCOMMONS IL23-mediated signaling events RIPK2 +PWCOMMONS IL23-mediated signaling events BCL10 +PWCOMMONS IL23-mediated signaling events TRAF6 +PWCOMMONS IL23-mediated signaling events MALT1 +PWCOMMONS IL23-mediated signaling events PRKCA +PWCOMMONS IL23-mediated signaling events ERC1 +PWCOMMONS IL23-mediated signaling events FBXW11 +PWCOMMONS IL23-mediated signaling events TNFRSF1A +PWCOMMONS IL23-mediated signaling events TNF +PWCOMMONS IL23-mediated signaling events LCK +PWCOMMONS IL23-mediated signaling events ARRB2 +PWCOMMONS IL23-mediated signaling events REL +PWCOMMONS IL23-mediated signaling events SYK +PWCOMMONS IL23-mediated signaling events PIK3CA +PWCOMMONS IL23-mediated signaling events PIK3R1 +PWCOMMONS IL23-mediated signaling events BCL3 +PWCOMMONS IL23-mediated signaling events MAPK14 +PWCOMMONS IL23-mediated signaling events SRC +PWCOMMONS IL23-mediated signaling events XPO1 +PWCOMMONS IL23-mediated signaling events RAN +PWCOMMONS IL23-mediated signaling events NFKB2 +PWCOMMONS IL23-mediated signaling events RELB +PWCOMMONS IL23-mediated signaling events MAP3K14 +PWCOMMONS IL23-mediated signaling events BIRC2 +PWCOMMONS IL23-mediated signaling events UBE2D3 +PWCOMMONS IL23-mediated signaling events IL12B +PWCOMMONS IL23-mediated signaling events IL12RB1 +PWCOMMONS IL23-mediated signaling events JAK2 +PWCOMMONS IL23-mediated signaling events IL23A +PWCOMMONS IL23-mediated signaling events IL23R +PWCOMMONS IL23-mediated signaling events TYK2 +PWCOMMONS IL23-mediated signaling events STAT5A +PWCOMMONS IL23-mediated signaling events SOCS3 +PWCOMMONS IL23-mediated signaling events IFNG +PWCOMMONS IL23-mediated signaling events IL6 +PWCOMMONS IL23-mediated signaling events STAT3 +PWCOMMONS IL23-mediated signaling events STAT4 +PWCOMMONS IL23-mediated signaling events CCL2 +PWCOMMONS IL23-mediated signaling events ALOX12B +PWCOMMONS IL23-mediated signaling events IL24 +PWCOMMONS IL23-mediated signaling events CD4 +PWCOMMONS IL23-mediated signaling events IL2 +PWCOMMONS IL23-mediated signaling events NOS2 +PWCOMMONS IL23-mediated signaling events IL18R1 +PWCOMMONS IL23-mediated signaling events IL18 +PWCOMMONS IL23-mediated signaling events IL18RAP +PWCOMMONS IL23-mediated signaling events STAT1 +PWCOMMONS IL23-mediated signaling events IL17F +PWCOMMONS IL23-mediated signaling events ITGA3 +PWCOMMONS IL23-mediated signaling events MPO +PWCOMMONS IL23-mediated signaling events IL1B +PWCOMMONS IL23-mediated signaling events CD3E +PWCOMMONS IL23-mediated signaling events CXCL9 +PWCOMMONS IL23-mediated signaling events IL17A +PWCOMMONS IL23-mediated signaling events IL19 +PWCOMMONS IL23-mediated signaling events +PWCOMMONS BARD1 signaling events FANCD2 +PWCOMMONS BARD1 signaling events TOPBP1 +PWCOMMONS BARD1 signaling events BARD1 +PWCOMMONS BARD1 signaling events BRCA1 +PWCOMMONS BARD1 signaling events FANCF +PWCOMMONS BARD1 signaling events FANCG +PWCOMMONS BARD1 signaling events FANCL +PWCOMMONS BARD1 signaling events FANCA +PWCOMMONS BARD1 signaling events FANCE +PWCOMMONS BARD1 signaling events FANCC +PWCOMMONS BARD1 signaling events PCNA +PWCOMMONS BARD1 signaling events RAD51 +PWCOMMONS BARD1 signaling events RBBP8 +PWCOMMONS BARD1 signaling events NBN +PWCOMMONS BARD1 signaling events RAD50 +PWCOMMONS BARD1 signaling events MRE11A +PWCOMMONS BARD1 signaling events EWSR1 +PWCOMMONS BARD1 signaling events UBE2D3 +PWCOMMONS BARD1 signaling events ATM +PWCOMMONS BARD1 signaling events ATR +PWCOMMONS BARD1 signaling events CSTF1 +PWCOMMONS BARD1 signaling events UBE2L3 +PWCOMMONS BARD1 signaling events TP53 +PWCOMMONS BARD1 signaling events XRCC6 +PWCOMMONS BARD1 signaling events XRCC5 +PWCOMMONS BARD1 signaling events PRKDC +PWCOMMONS BARD1 signaling events CCNE1 +PWCOMMONS BARD1 signaling events CDK2 +PWCOMMONS BARD1 signaling events +PWCOMMONS JNK signaling in the CD4+ TCR pathway RCAN1 +PWCOMMONS JNK signaling in the CD4+ TCR pathway IL2 +PWCOMMONS JNK signaling in the CD4+ TCR pathway FOS +PWCOMMONS JNK signaling in the CD4+ TCR pathway CREM +PWCOMMONS JNK signaling in the CD4+ TCR pathway JUN +PWCOMMONS JNK signaling in the CD4+ TCR pathway IL2RA +PWCOMMONS JNK signaling in the CD4+ TCR pathway CHP +PWCOMMONS JNK signaling in the CD4+ TCR pathway CALM1 +PWCOMMONS JNK signaling in the CD4+ TCR pathway PTGS2 +PWCOMMONS JNK signaling in the CD4+ TCR pathway FKBP1A +PWCOMMONS JNK signaling in the CD4+ TCR pathway CABIN1 +PWCOMMONS JNK signaling in the CD4+ TCR pathway IL3 +PWCOMMONS JNK signaling in the CD4+ TCR pathway CD40LG +PWCOMMONS JNK signaling in the CD4+ TCR pathway CSF2 +PWCOMMONS JNK signaling in the CD4+ TCR pathway BATF3 +PWCOMMONS JNK signaling in the CD4+ TCR pathway IL4 +PWCOMMONS JNK signaling in the CD4+ TCR pathway RCAN2 +PWCOMMONS JNK signaling in the CD4+ TCR pathway FOSL1 +PWCOMMONS JNK signaling in the CD4+ TCR pathway JUNB +PWCOMMONS JNK signaling in the CD4+ TCR pathway FASLG +PWCOMMONS JNK signaling in the CD4+ TCR pathway POU2F1 +PWCOMMONS JNK signaling in the CD4+ TCR pathway IFNG +PWCOMMONS JNK signaling in the CD4+ TCR pathway PRKACA +PWCOMMONS JNK signaling in the CD4+ TCR pathway AKAP5 +PWCOMMONS JNK signaling in the CD4+ TCR pathway MAP3K1 +PWCOMMONS JNK signaling in the CD4+ TCR pathway MAP2K4 +PWCOMMONS JNK signaling in the CD4+ TCR pathway DBNL +PWCOMMONS JNK signaling in the CD4+ TCR pathway LCP2 +PWCOMMONS JNK signaling in the CD4+ TCR pathway MAP4K1 +PWCOMMONS JNK signaling in the CD4+ TCR pathway GRAP2 +PWCOMMONS JNK signaling in the CD4+ TCR pathway PRKCB +PWCOMMONS JNK signaling in the CD4+ TCR pathway MAP3K7 +PWCOMMONS JNK signaling in the CD4+ TCR pathway MAP3K8 +PWCOMMONS JNK signaling in the CD4+ TCR pathway +PWCOMMONS Syndecan-3-mediated signaling events IL8 +PWCOMMONS Syndecan-3-mediated signaling events PTN +PWCOMMONS Syndecan-3-mediated signaling events AGRP +PWCOMMONS Syndecan-3-mediated signaling events NCAN +PWCOMMONS Syndecan-3-mediated signaling events MC4R +PWCOMMONS Syndecan-3-mediated signaling events POMC +PWCOMMONS Syndecan-3-mediated signaling events CASK +PWCOMMONS Syndecan-3-mediated signaling events FYN +PWCOMMONS Syndecan-3-mediated signaling events CTTN +PWCOMMONS Syndecan-3-mediated signaling events SRC +PWCOMMONS Syndecan-3-mediated signaling events EGFR +PWCOMMONS Syndecan-3-mediated signaling events APH1B +PWCOMMONS Syndecan-3-mediated signaling events PSENEN +PWCOMMONS Syndecan-3-mediated signaling events NCSTN +PWCOMMONS Syndecan-3-mediated signaling events PSEN1 +PWCOMMONS Syndecan-3-mediated signaling events APH1A +PWCOMMONS Syndecan-3-mediated signaling events +PWCOMMONS Signaling events regulated by Ret tyrosine kinase GFRA1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase GDNF +PWCOMMONS Signaling events regulated by Ret tyrosine kinase GAB1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase GRB2 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase SHC1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase PIK3CA +PWCOMMONS Signaling events regulated by Ret tyrosine kinase PIK3R1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase IKBKB +PWCOMMONS Signaling events regulated by Ret tyrosine kinase CHUK +PWCOMMONS Signaling events regulated by Ret tyrosine kinase IKBKG +PWCOMMONS Signaling events regulated by Ret tyrosine kinase TNFAIP3 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase ATM +PWCOMMONS Signaling events regulated by Ret tyrosine kinase NFKB1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase NFKBIA +PWCOMMONS Signaling events regulated by Ret tyrosine kinase RELA +PWCOMMONS Signaling events regulated by Ret tyrosine kinase CYLD +PWCOMMONS Signaling events regulated by Ret tyrosine kinase NOD2 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase RIPK2 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase BCL10 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase TRAF6 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase MALT1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase ERC1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase FBXW11 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase TNFRSF1A +PWCOMMONS Signaling events regulated by Ret tyrosine kinase TNF +PWCOMMONS Signaling events regulated by Ret tyrosine kinase LCK +PWCOMMONS Signaling events regulated by Ret tyrosine kinase ARRB2 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase REL +PWCOMMONS Signaling events regulated by Ret tyrosine kinase SYK +PWCOMMONS Signaling events regulated by Ret tyrosine kinase BCL3 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase MAPK14 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase SRC +PWCOMMONS Signaling events regulated by Ret tyrosine kinase XPO1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase RAN +PWCOMMONS Signaling events regulated by Ret tyrosine kinase NFKB2 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase RELB +PWCOMMONS Signaling events regulated by Ret tyrosine kinase MAP3K14 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase BIRC2 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase UBE2D3 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase SOS1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase CREB1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase RAP1A +PWCOMMONS Signaling events regulated by Ret tyrosine kinase PTPN11 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase FRS2 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase BCAR1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase PXN +PWCOMMONS Signaling events regulated by Ret tyrosine kinase CRK +PWCOMMONS Signaling events regulated by Ret tyrosine kinase DOK1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase RASA1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase NCK1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase DOK6 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase JUN +PWCOMMONS Signaling events regulated by Ret tyrosine kinase MAPK8 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase GRB10 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase GRB7 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase PTK2 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase SHANK3 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase HRAS +PWCOMMONS Signaling events regulated by Ret tyrosine kinase IRS1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase RHOA +PWCOMMONS Signaling events regulated by Ret tyrosine kinase DOK5 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase IRS2 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase DOK4 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase RAC1 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase PDLIM7 +PWCOMMONS Signaling events regulated by Ret tyrosine kinase +PWCOMMONS Signaling events mediated by PRL PTP4A2 +PWCOMMONS Signaling events mediated by PRL RABGGTB +PWCOMMONS Signaling events mediated by PRL ITGB1 +PWCOMMONS Signaling events mediated by PRL PTP4A1 +PWCOMMONS Signaling events mediated by PRL RHOA +PWCOMMONS Signaling events mediated by PRL PTP4A3 +PWCOMMONS Signaling events mediated by PRL CCNA2 +PWCOMMONS Signaling events mediated by PRL CCNE1 +PWCOMMONS Signaling events mediated by PRL CDK2 +PWCOMMONS Signaling events mediated by PRL RAC1 +PWCOMMONS Signaling events mediated by PRL CDKN1A +PWCOMMONS Signaling events mediated by PRL BCAR1 +PWCOMMONS Signaling events mediated by PRL ITGA1 +PWCOMMONS Signaling events mediated by PRL EGR1 +PWCOMMONS Signaling events mediated by PRL SRC +PWCOMMONS Signaling events mediated by PRL ROCK1 +PWCOMMONS Signaling events mediated by PRL RHOC +PWCOMMONS Signaling events mediated by PRL ATF5 +PWCOMMONS Signaling events mediated by PRL AGT +PWCOMMONS Signaling events mediated by PRL +PWCOMMONS Circadian rhythm pathway TIMELESS +PWCOMMONS Circadian rhythm pathway NR1D1 +PWCOMMONS Circadian rhythm pathway NONO +PWCOMMONS Circadian rhythm pathway PER1 +PWCOMMONS Circadian rhythm pathway CLOCK +PWCOMMONS Circadian rhythm pathway ARNTL +PWCOMMONS Circadian rhythm pathway ATR +PWCOMMONS Circadian rhythm pathway CHEK1 +PWCOMMONS Circadian rhythm pathway NPAS2 +PWCOMMONS Circadian rhythm pathway WDR5 +PWCOMMONS Circadian rhythm pathway BHLHE40 +PWCOMMONS Circadian rhythm pathway DEC1 +PWCOMMONS Circadian rhythm pathway CRY2 +PWCOMMONS Circadian rhythm pathway +PWCOMMONS Paxillin-dependent events mediated by a4b1 ITGB1 +PWCOMMONS Paxillin-dependent events mediated by a4b1 PXN +PWCOMMONS Paxillin-dependent events mediated by a4b1 ITGA4 +PWCOMMONS Paxillin-dependent events mediated by a4b1 ARF6 +PWCOMMONS Paxillin-dependent events mediated by a4b1 ITGAL +PWCOMMONS Paxillin-dependent events mediated by a4b1 ITGB2 +PWCOMMONS Paxillin-dependent events mediated by a4b1 VCAM1 +PWCOMMONS Paxillin-dependent events mediated by a4b1 PIK3CA +PWCOMMONS Paxillin-dependent events mediated by a4b1 PIK3R1 +PWCOMMONS Paxillin-dependent events mediated by a4b1 PRKACA +PWCOMMONS Paxillin-dependent events mediated by a4b1 RAC1 +PWCOMMONS Paxillin-dependent events mediated by a4b1 CRKL +PWCOMMONS Paxillin-dependent events mediated by a4b1 CBL +PWCOMMONS Paxillin-dependent events mediated by a4b1 GIT1 +PWCOMMONS Paxillin-dependent events mediated by a4b1 ITGB7 +PWCOMMONS Paxillin-dependent events mediated by a4b1 BCAR1 +PWCOMMONS Paxillin-dependent events mediated by a4b1 CRK +PWCOMMONS Paxillin-dependent events mediated by a4b1 DOCK1 +PWCOMMONS Paxillin-dependent events mediated by a4b1 +PWCOMMONS HIF-1-alpha transcription factor network HIF1A +PWCOMMONS HIF-1-alpha transcription factor network ARNT +PWCOMMONS HIF-1-alpha transcription factor network SP1 +PWCOMMONS HIF-1-alpha transcription factor network AKT1 +PWCOMMONS HIF-1-alpha transcription factor network SMAD3 +PWCOMMONS HIF-1-alpha transcription factor network SMAD4 +PWCOMMONS HIF-1-alpha transcription factor network PKM2 +PWCOMMONS HIF-1-alpha transcription factor network PGM1 +PWCOMMONS HIF-1-alpha transcription factor network HK1 +PWCOMMONS HIF-1-alpha transcription factor network NCOA2 +PWCOMMONS HIF-1-alpha transcription factor network TERT +PWCOMMONS HIF-1-alpha transcription factor network TF +PWCOMMONS HIF-1-alpha transcription factor network FECH +PWCOMMONS HIF-1-alpha transcription factor network PFKFB3 +PWCOMMONS HIF-1-alpha transcription factor network HK2 +PWCOMMONS HIF-1-alpha transcription factor network NT5E +PWCOMMONS HIF-1-alpha transcription factor network ID2 +PWCOMMONS HIF-1-alpha transcription factor network MCL1 +PWCOMMONS HIF-1-alpha transcription factor network ALDOA +PWCOMMONS HIF-1-alpha transcription factor network PGK1 +PWCOMMONS HIF-1-alpha transcription factor network EGLN1 +PWCOMMONS HIF-1-alpha transcription factor network LDHA +PWCOMMONS HIF-1-alpha transcription factor network SERPINE1 +PWCOMMONS HIF-1-alpha transcription factor network ENG +PWCOMMONS HIF-1-alpha transcription factor network CITED2 +PWCOMMONS HIF-1-alpha transcription factor network BNIP3 +PWCOMMONS HIF-1-alpha transcription factor network ADM +PWCOMMONS HIF-1-alpha transcription factor network BHLHE40 +PWCOMMONS HIF-1-alpha transcription factor network HDAC7 +PWCOMMONS HIF-1-alpha transcription factor network COPS5 +PWCOMMONS HIF-1-alpha transcription factor network CREB1 +PWCOMMONS HIF-1-alpha transcription factor network CA9 +PWCOMMONS HIF-1-alpha transcription factor network CXCR4 +PWCOMMONS HIF-1-alpha transcription factor network SLC2A1 +PWCOMMONS HIF-1-alpha transcription factor network EGLN3 +PWCOMMONS HIF-1-alpha transcription factor network ITGB2 +PWCOMMONS HIF-1-alpha transcription factor network NOS2 +PWCOMMONS HIF-1-alpha transcription factor network NCOA1 +PWCOMMONS HIF-1-alpha transcription factor network EPO +PWCOMMONS HIF-1-alpha transcription factor network LEP +PWCOMMONS HIF-1-alpha transcription factor network ABCB1 +PWCOMMONS HIF-1-alpha transcription factor network CP +PWCOMMONS HIF-1-alpha transcription factor network HNF4A +PWCOMMONS HIF-1-alpha transcription factor network HMOX1 +PWCOMMONS HIF-1-alpha transcription factor network GATA2 +PWCOMMONS HIF-1-alpha transcription factor network IGFBP1 +PWCOMMONS HIF-1-alpha transcription factor network GCK +PWCOMMONS HIF-1-alpha transcription factor network ETS1 +PWCOMMONS HIF-1-alpha transcription factor network ABCG2 +PWCOMMONS HIF-1-alpha transcription factor network CXCL12 +PWCOMMONS HIF-1-alpha transcription factor network NDRG1 +PWCOMMONS HIF-1-alpha transcription factor network FURIN +PWCOMMONS HIF-1-alpha transcription factor network EDN1 +PWCOMMONS HIF-1-alpha transcription factor network ENO1 +PWCOMMONS HIF-1-alpha transcription factor network BHLHE41 +PWCOMMONS HIF-1-alpha transcription factor network NPM1 +PWCOMMONS HIF-1-alpha transcription factor network FOS +PWCOMMONS HIF-1-alpha transcription factor network JUN +PWCOMMONS HIF-1-alpha transcription factor network TFRC +PWCOMMONS HIF-1-alpha transcription factor network ADFP +PWCOMMONS HIF-1-alpha transcription factor network VEGFA +PWCOMMONS HIF-1-alpha transcription factor network PFKL +PWCOMMONS HIF-1-alpha transcription factor network +PWCOMMONS Cellular roles of Anthrax toxin VCAM1 +PWCOMMONS Cellular roles of Anthrax toxin MAP2K3 +PWCOMMONS Cellular roles of Anthrax toxin MAP2K2 +PWCOMMONS Cellular roles of Anthrax toxin MAP2K4 +PWCOMMONS Cellular roles of Anthrax toxin MAP2K6 +PWCOMMONS Cellular roles of Anthrax toxin MAP2K1 +PWCOMMONS Cellular roles of Anthrax toxin NLRP1 +PWCOMMONS Cellular roles of Anthrax toxin MAP2K7 +PWCOMMONS Cellular roles of Anthrax toxin IL1B +PWCOMMONS Cellular roles of Anthrax toxin DEFA1 +PWCOMMONS Cellular roles of Anthrax toxin IL18 +PWCOMMONS Cellular roles of Anthrax toxin CASP1 +PWCOMMONS Cellular roles of Anthrax toxin +PWCOMMONS S1P2 pathway ELK1 +PWCOMMONS S1P2 pathway PAK1 +PWCOMMONS S1P2 pathway CDH5 +PWCOMMONS S1P2 pathway FOS +PWCOMMONS S1P2 pathway JUN +PWCOMMONS S1P2 pathway RAC1 +PWCOMMONS S1P2 pathway RHOA +PWCOMMONS S1P2 pathway GNA13 +PWCOMMONS S1P2 pathway GNA12 +PWCOMMONS S1P2 pathway IRS1 +PWCOMMONS S1P2 pathway MAPK14 +PWCOMMONS S1P2 pathway MAPK8 +PWCOMMONS S1P2 pathway +PWCOMMONS TCR signaling in nave CD4+ T cells FYN +PWCOMMONS TCR signaling in nave CD4+ T cells CD3E +PWCOMMONS TCR signaling in nave CD4+ T cells HLA-DRA +PWCOMMONS TCR signaling in nave CD4+ T cells CD3D +PWCOMMONS TCR signaling in nave CD4+ T cells HLA-DRB1 +PWCOMMONS TCR signaling in nave CD4+ T cells CD3G +PWCOMMONS TCR signaling in nave CD4+ T cells CD4 +PWCOMMONS TCR signaling in nave CD4+ T cells CD247 +PWCOMMONS TCR signaling in nave CD4+ T cells SHC1 +PWCOMMONS TCR signaling in nave CD4+ T cells SOS1 +PWCOMMONS TCR signaling in nave CD4+ T cells GRB2 +PWCOMMONS TCR signaling in nave CD4+ T cells FYB +PWCOMMONS TCR signaling in nave CD4+ T cells LCP2 +PWCOMMONS TCR signaling in nave CD4+ T cells GRAP2 +PWCOMMONS TCR signaling in nave CD4+ T cells ZAP70 +PWCOMMONS TCR signaling in nave CD4+ T cells LCK +PWCOMMONS TCR signaling in nave CD4+ T cells CBL +PWCOMMONS TCR signaling in nave CD4+ T cells CD28 +PWCOMMONS TCR signaling in nave CD4+ T cells DBNL +PWCOMMONS TCR signaling in nave CD4+ T cells SH3BP2 +PWCOMMONS TCR signaling in nave CD4+ T cells TRAF6 +PWCOMMONS TCR signaling in nave CD4+ T cells BCL10 +PWCOMMONS TCR signaling in nave CD4+ T cells CARD11 +PWCOMMONS TCR signaling in nave CD4+ T cells MALT1 +PWCOMMONS TCR signaling in nave CD4+ T cells GAB2 +PWCOMMONS TCR signaling in nave CD4+ T cells ITK +PWCOMMONS TCR signaling in nave CD4+ T cells VAV1 +PWCOMMONS TCR signaling in nave CD4+ T cells IKBKB +PWCOMMONS TCR signaling in nave CD4+ T cells CHUK +PWCOMMONS TCR signaling in nave CD4+ T cells IKBKG +PWCOMMONS TCR signaling in nave CD4+ T cells ORAI1 +PWCOMMONS TCR signaling in nave CD4+ T cells CSK +PWCOMMONS TCR signaling in nave CD4+ T cells PAG1 +PWCOMMONS TCR signaling in nave CD4+ T cells TRPV6 +PWCOMMONS TCR signaling in nave CD4+ T cells PRKCB +PWCOMMONS TCR signaling in nave CD4+ T cells STIM1 +PWCOMMONS TCR signaling in nave CD4+ T cells RASGRP1 +PWCOMMONS TCR signaling in nave CD4+ T cells PRKCQ +PWCOMMONS TCR signaling in nave CD4+ T cells FLNA +PWCOMMONS TCR signaling in nave CD4+ T cells RHOA +PWCOMMONS TCR signaling in nave CD4+ T cells WAS +PWCOMMONS TCR signaling in nave CD4+ T cells CDC42 +PWCOMMONS TCR signaling in nave CD4+ T cells STK39 +PWCOMMONS TCR signaling in nave CD4+ T cells RAP1A +PWCOMMONS TCR signaling in nave CD4+ T cells RASSF5 +PWCOMMONS TCR signaling in nave CD4+ T cells RASGRP2 +PWCOMMONS TCR signaling in nave CD4+ T cells PTPN6 +PWCOMMONS TCR signaling in nave CD4+ T cells PTPN11 +PWCOMMONS TCR signaling in nave CD4+ T cells MAPK8 +PWCOMMONS TCR signaling in nave CD4+ T cells MAP3K1 +PWCOMMONS TCR signaling in nave CD4+ T cells MAP2K4 +PWCOMMONS TCR signaling in nave CD4+ T cells MAP4K1 +PWCOMMONS TCR signaling in nave CD4+ T cells JUN +PWCOMMONS TCR signaling in nave CD4+ T cells MAP3K7 +PWCOMMONS TCR signaling in nave CD4+ T cells MAP3K8 +PWCOMMONS TCR signaling in nave CD4+ T cells INPP5D +PWCOMMONS TCR signaling in nave CD4+ T cells MAP2K1 +PWCOMMONS TCR signaling in nave CD4+ T cells ELK1 +PWCOMMONS TCR signaling in nave CD4+ T cells FOS +PWCOMMONS TCR signaling in nave CD4+ T cells BRAF +PWCOMMONS TCR signaling in nave CD4+ T cells RAF1 +PWCOMMONS TCR signaling in nave CD4+ T cells PRKCA +PWCOMMONS TCR signaling in nave CD4+ T cells PTPN7 +PWCOMMONS TCR signaling in nave CD4+ T cells AKT1 +PWCOMMONS TCR signaling in nave CD4+ T cells MAP3K14 +PWCOMMONS TCR signaling in nave CD4+ T cells PTEN +PWCOMMONS TCR signaling in nave CD4+ T cells NCK1 +PWCOMMONS TCR signaling in nave CD4+ T cells PLCG1 +PWCOMMONS TCR signaling in nave CD4+ T cells PTPRC +PWCOMMONS TCR signaling in nave CD4+ T cells TNFAIP3 +PWCOMMONS TCR signaling in nave CD4+ T cells ATM +PWCOMMONS TCR signaling in nave CD4+ T cells NFKB1 +PWCOMMONS TCR signaling in nave CD4+ T cells NFKBIA +PWCOMMONS TCR signaling in nave CD4+ T cells RELA +PWCOMMONS TCR signaling in nave CD4+ T cells CYLD +PWCOMMONS TCR signaling in nave CD4+ T cells NOD2 +PWCOMMONS TCR signaling in nave CD4+ T cells RIPK2 +PWCOMMONS TCR signaling in nave CD4+ T cells ERC1 +PWCOMMONS TCR signaling in nave CD4+ T cells FBXW11 +PWCOMMONS TCR signaling in nave CD4+ T cells TNFRSF1A +PWCOMMONS TCR signaling in nave CD4+ T cells TNF +PWCOMMONS TCR signaling in nave CD4+ T cells ARRB2 +PWCOMMONS TCR signaling in nave CD4+ T cells REL +PWCOMMONS TCR signaling in nave CD4+ T cells SYK +PWCOMMONS TCR signaling in nave CD4+ T cells PIK3CA +PWCOMMONS TCR signaling in nave CD4+ T cells PIK3R1 +PWCOMMONS TCR signaling in nave CD4+ T cells BCL3 +PWCOMMONS TCR signaling in nave CD4+ T cells MAPK14 +PWCOMMONS TCR signaling in nave CD4+ T cells SRC +PWCOMMONS TCR signaling in nave CD4+ T cells XPO1 +PWCOMMONS TCR signaling in nave CD4+ T cells RAN +PWCOMMONS TCR signaling in nave CD4+ T cells BIRC2 +PWCOMMONS TCR signaling in nave CD4+ T cells UBE2D3 +PWCOMMONS TCR signaling in nave CD4+ T cells RCAN1 +PWCOMMONS TCR signaling in nave CD4+ T cells IL2 +PWCOMMONS TCR signaling in nave CD4+ T cells CREM +PWCOMMONS TCR signaling in nave CD4+ T cells IL2RA +PWCOMMONS TCR signaling in nave CD4+ T cells CHP +PWCOMMONS TCR signaling in nave CD4+ T cells CALM1 +PWCOMMONS TCR signaling in nave CD4+ T cells PTGS2 +PWCOMMONS TCR signaling in nave CD4+ T cells FKBP1A +PWCOMMONS TCR signaling in nave CD4+ T cells CABIN1 +PWCOMMONS TCR signaling in nave CD4+ T cells IL3 +PWCOMMONS TCR signaling in nave CD4+ T cells CD40LG +PWCOMMONS TCR signaling in nave CD4+ T cells CSF2 +PWCOMMONS TCR signaling in nave CD4+ T cells BATF3 +PWCOMMONS TCR signaling in nave CD4+ T cells IL4 +PWCOMMONS TCR signaling in nave CD4+ T cells RCAN2 +PWCOMMONS TCR signaling in nave CD4+ T cells FOSL1 +PWCOMMONS TCR signaling in nave CD4+ T cells JUNB +PWCOMMONS TCR signaling in nave CD4+ T cells FASLG +PWCOMMONS TCR signaling in nave CD4+ T cells POU2F1 +PWCOMMONS TCR signaling in nave CD4+ T cells IFNG +PWCOMMONS TCR signaling in nave CD4+ T cells PRKACA +PWCOMMONS TCR signaling in nave CD4+ T cells AKAP5 +PWCOMMONS TCR signaling in nave CD4+ T cells SLA2 +PWCOMMONS TCR signaling in nave CD4+ T cells PRKCE +PWCOMMONS TCR signaling in nave CD4+ T cells NFKB2 +PWCOMMONS TCR signaling in nave CD4+ T cells RELB +PWCOMMONS TCR signaling in nave CD4+ T cells +PWCOMMONS Glypican 3 network GPC3 +PWCOMMONS Glypican 3 network NLK +PWCOMMONS Glypican 3 network GNG2 +PWCOMMONS Glypican 3 network GNB1 +PWCOMMONS Glypican 3 network CDC42 +PWCOMMONS Glypican 3 network GNAS +PWCOMMONS Glypican 3 network PLCG1 +PWCOMMONS Glypican 3 network YES1 +PWCOMMONS Glypican 3 network MAP3K7 +PWCOMMONS Glypican 3 network NFATC2 +PWCOMMONS Glypican 3 network CSNK1A1 +PWCOMMONS Glypican 3 network CAMK2A +PWCOMMONS Glypican 3 network MAP3K7IP1 +PWCOMMONS Glypican 3 network LRP6 +PWCOMMONS Glypican 3 network FZD1 +PWCOMMONS Glypican 3 network CTNNB1 +PWCOMMONS Glypican 3 network CTBP1 +PWCOMMONS Glypican 3 network AES +PWCOMMONS Glypican 3 network CREBBP +PWCOMMONS Glypican 3 network TLE1 +PWCOMMONS Glypican 3 network KREMEN2 +PWCOMMONS Glypican 3 network DKK1 +PWCOMMONS Glypican 3 network WNT1 +PWCOMMONS Glypican 3 network FBXW11 +PWCOMMONS Glypican 3 network HDAC1 +PWCOMMONS Glypican 3 network AXIN1 +PWCOMMONS Glypican 3 network APC +PWCOMMONS Glypican 3 network MACF1 +PWCOMMONS Glypican 3 network WIF1 +PWCOMMONS Glypican 3 network PPP2R5D +PWCOMMONS Glypican 3 network RANBP3 +PWCOMMONS Glypican 3 network DKK2 +PWCOMMONS Glypican 3 network DVL1 +PWCOMMONS Glypican 3 network SMAD4 +PWCOMMONS Glypican 3 network MYC +PWCOMMONS Glypican 3 network AXIN2 +PWCOMMONS Glypican 3 network CCND1 +PWCOMMONS Glypican 3 network RAN +PWCOMMONS Glypican 3 network FRAT1 +PWCOMMONS Glypican 3 network NKD1 +PWCOMMONS Glypican 3 network CSNK2A1 +PWCOMMONS Glypican 3 network PTCH1 +PWCOMMONS Glypican 3 network BMP4 +PWCOMMONS Glypican 3 network FURIN +PWCOMMONS Glypican 3 network FGF7 +PWCOMMONS Glypican 3 network +PWCOMMONS IL6-mediated signaling events STAT3 +PWCOMMONS IL6-mediated signaling events AKT1 +PWCOMMONS IL6-mediated signaling events SOS1 +PWCOMMONS IL6-mediated signaling events GRB2 +PWCOMMONS IL6-mediated signaling events MAP2K4 +PWCOMMONS IL6-mediated signaling events VAV1 +PWCOMMONS IL6-mediated signaling events MITF +PWCOMMONS IL6-mediated signaling events PIAS3 +PWCOMMONS IL6-mediated signaling events IL6R +PWCOMMONS IL6-mediated signaling events IL6 +PWCOMMONS IL6-mediated signaling events IL6ST +PWCOMMONS IL6-mediated signaling events JAK1 +PWCOMMONS IL6-mediated signaling events MCL1 +PWCOMMONS IL6-mediated signaling events CEBPB +PWCOMMONS IL6-mediated signaling events HCK +PWCOMMONS IL6-mediated signaling events SOCS3 +PWCOMMONS IL6-mediated signaling events FOS +PWCOMMONS IL6-mediated signaling events JUN +PWCOMMONS IL6-mediated signaling events STAT1 +PWCOMMONS IL6-mediated signaling events FGG +PWCOMMONS IL6-mediated signaling events PIK3CA +PWCOMMONS IL6-mediated signaling events PIK3R1 +PWCOMMONS IL6-mediated signaling events PTPN11 +PWCOMMONS IL6-mediated signaling events JAK2 +PWCOMMONS IL6-mediated signaling events HSP90B1 +PWCOMMONS IL6-mediated signaling events PRKCD +PWCOMMONS IL6-mediated signaling events RAC1 +PWCOMMONS IL6-mediated signaling events JUNB +PWCOMMONS IL6-mediated signaling events TNFSF11 +PWCOMMONS IL6-mediated signaling events TYK2 +PWCOMMONS IL6-mediated signaling events CRP +PWCOMMONS IL6-mediated signaling events A2M +PWCOMMONS IL6-mediated signaling events IRF1 +PWCOMMONS IL6-mediated signaling events MAP2K6 +PWCOMMONS IL6-mediated signaling events PIAS1 +PWCOMMONS IL6-mediated signaling events MYC +PWCOMMONS IL6-mediated signaling events CEBPD +PWCOMMONS IL6-mediated signaling events LBP +PWCOMMONS IL6-mediated signaling events TIMP1 +PWCOMMONS IL6-mediated signaling events +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) KITLG +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) KIT +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) MAPK8 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) STAT5A +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) STAP1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) SPRED1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) HRAS +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) JAK2 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) MAP2K2 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) STAT1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) FER +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) EPO +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) EPOR +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) PDPK1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) SH2B3 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) SNAI2 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) GAB1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) MAP2K1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) DOK1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) TEC +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) LYN +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) CRKL +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) CBL +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) GRB2 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) PTEN +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) BAD +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) AKT1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) SPRED2 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) PIK3CA +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) PIK3R1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) STAT3 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) FOXO3 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) SOS1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) SHC1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) MITF +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) RPS6KB1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) GRB10 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) PTPRO +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) SH2B2 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) MAP4K1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) GRAP2 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) MAPK3 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) BCL2 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) PTPN6 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) CREBBP +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) GSK3B +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) RAF1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) SOCS1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) VAV1 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) PTPN11 +PWCOMMONS Signaling events mediated by Stem cell factor receptor (c-Kit) +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development CDC42 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development KATNA1 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development NDEL1 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development DYNC1H1 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development PAFAH1B1 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development MAP1B +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development CLIP1 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development DCX +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development DYNLT1 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development CDK5R2 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development CDK5 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development LRP8 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development RELN +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development PAFAH1B2 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development PAFAH1B3 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development DAB1 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development VLDLR +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development CDK5R1 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development ABL1 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development CSNK2A1 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development IQGAP1 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development YWHAE +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development PLA2G7 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development PPP2R5D +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development LRPAP1 +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development NUDC +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development RHOA +PWCOMMONS Lissencephaly gene (LIS1) in neuronal migration and development +PWCOMMONS EphrinB reverse signaling DNM1 +PWCOMMONS EphrinB reverse signaling NCK2 +PWCOMMONS EphrinB reverse signaling ITGB3 +PWCOMMONS EphrinB reverse signaling ITGA2B +PWCOMMONS EphrinB reverse signaling PIK3CA +PWCOMMONS EphrinB reverse signaling PIK3R1 +PWCOMMONS EphrinB reverse signaling RGS3 +PWCOMMONS EphrinB reverse signaling MAP2K4 +PWCOMMONS EphrinB reverse signaling EPHB4 +PWCOMMONS EphrinB reverse signaling EFNB2 +PWCOMMONS EphrinB reverse signaling RAC1 +PWCOMMONS EphrinB reverse signaling TIAM1 +PWCOMMONS EphrinB reverse signaling MAP3K7 +PWCOMMONS EphrinB reverse signaling MAPK8 +PWCOMMONS EphrinB reverse signaling PTPN13 +PWCOMMONS EphrinB reverse signaling CXCR4 +PWCOMMONS EphrinB reverse signaling +PWCOMMONS FoxO family signaling FOXO3 +PWCOMMONS FoxO family signaling CTNNB1 +PWCOMMONS FoxO family signaling FASLG +PWCOMMONS FoxO family signaling FOXO1 +PWCOMMONS FoxO family signaling GADD45A +PWCOMMONS FoxO family signaling BCL6 +PWCOMMONS FoxO family signaling RAN +PWCOMMONS FoxO family signaling PLK1 +PWCOMMONS FoxO family signaling IKBKB +PWCOMMONS FoxO family signaling CDKN1B +PWCOMMONS FoxO family signaling FOXO4 +PWCOMMONS FoxO family signaling G6PC +PWCOMMONS FoxO family signaling ZFAND5 +PWCOMMONS FoxO family signaling SOD2 +PWCOMMONS FoxO family signaling MST1 +PWCOMMONS FoxO family signaling FBXO32 +PWCOMMONS FoxO family signaling CCNB1 +PWCOMMONS FoxO family signaling SKP2 +PWCOMMONS FoxO family signaling AKT1 +PWCOMMONS FoxO family signaling CDK2 +PWCOMMONS FoxO family signaling SGK1 +PWCOMMONS FoxO family signaling CHUK +PWCOMMONS FoxO family signaling BCL2L11 +PWCOMMONS FoxO family signaling XPO1 +PWCOMMONS FoxO family signaling CAT +PWCOMMONS FoxO family signaling PCAF +PWCOMMONS FoxO family signaling USP7 +PWCOMMONS FoxO family signaling RBL2 +PWCOMMONS FoxO family signaling +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma PLCG1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma NGF +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma TRPC3 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma TRPV1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma CAMK4 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma GSK3B +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma AKT1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma BAD +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma FOXO3 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma CREB1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma CCND1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma PRKCD +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma SRC +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma PIK3CA +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma PIK3R1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma GAB1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma SOS1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma GRB2 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma SHC1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma PDPK1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma STAT5A +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma CAMK2A +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma AGAP2 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma MAPK7 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma MAP2K5 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma MAPK14 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma FOS +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma RIT1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma SRF +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma BRAF +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma RPS6KA5 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma CDK5R1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma CDK5 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma MAP3K2 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma MAP2K1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma RPS6KA1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma MEF2C +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma RUSC1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma MAPKAPK2 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma RIT2 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma NTF3 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma RAF1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma EHD4 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma ELK1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma EPB41L1 +PWCOMMONS Trk receptor signaling mediated by PI3K and PLC-gamma +PWCOMMONS FAS signaling pathway (CD95) MAP3K1 +PWCOMMONS FAS signaling pathway (CD95) BID +PWCOMMONS FAS signaling pathway (CD95) MAPK8 +PWCOMMONS FAS signaling pathway (CD95) NFKB1 +PWCOMMONS FAS signaling pathway (CD95) CASP10 +PWCOMMONS FAS signaling pathway (CD95) FADD +PWCOMMONS FAS signaling pathway (CD95) FASLG +PWCOMMONS FAS signaling pathway (CD95) FAF1 +PWCOMMONS FAS signaling pathway (CD95) FAS +PWCOMMONS FAS signaling pathway (CD95) RIPK1 +PWCOMMONS FAS signaling pathway (CD95) CFLAR +PWCOMMONS FAS signaling pathway (CD95) DFFA +PWCOMMONS FAS signaling pathway (CD95) DFFB +PWCOMMONS FAS signaling pathway (CD95) MAP2K4 +PWCOMMONS FAS signaling pathway (CD95) CASP3 +PWCOMMONS FAS signaling pathway (CD95) CASP7 +PWCOMMONS FAS signaling pathway (CD95) ARHGDIB +PWCOMMONS FAS signaling pathway (CD95) HGF +PWCOMMONS FAS signaling pathway (CD95) MET +PWCOMMONS FAS signaling pathway (CD95) CASP6 +PWCOMMONS FAS signaling pathway (CD95) CASP8 +PWCOMMONS FAS signaling pathway (CD95) PARP1 +PWCOMMONS FAS signaling pathway (CD95) RFC1 +PWCOMMONS FAS signaling pathway (CD95) RB1 +PWCOMMONS FAS signaling pathway (CD95) GSN +PWCOMMONS FAS signaling pathway (CD95) BCL2 +PWCOMMONS FAS signaling pathway (CD95) PTPN13 +PWCOMMONS FAS signaling pathway (CD95) CHUK +PWCOMMONS FAS signaling pathway (CD95) LMNA +PWCOMMONS FAS signaling pathway (CD95) FAIM3 +PWCOMMONS FAS signaling pathway (CD95) SPTAN1 +PWCOMMONS FAS signaling pathway (CD95) PAK2 +PWCOMMONS FAS signaling pathway (CD95) PRKDC +PWCOMMONS FAS signaling pathway (CD95) IL6 +PWCOMMONS FAS signaling pathway (CD95) +PWCOMMONS IGF1 pathway IGF1R +PWCOMMONS IGF1 pathway NCK2 +PWCOMMONS IGF1 pathway IRS1 +PWCOMMONS IGF1 pathway BAD +PWCOMMONS IGF1 pathway YWHAZ +PWCOMMONS IGF1 pathway YWHAE +PWCOMMONS IGF1 pathway RAF1 +PWCOMMONS IGF1 pathway PRKD1 +PWCOMMONS IGF1 pathway PDPK1 +PWCOMMONS IGF1 pathway HRAS +PWCOMMONS IGF1 pathway GNB2L1 +PWCOMMONS IGF1 pathway SOS1 +PWCOMMONS IGF1 pathway SHC1 +PWCOMMONS IGF1 pathway GRB2 +PWCOMMONS IGF1 pathway RPS6KB1 +PWCOMMONS IGF1 pathway PRKCD +PWCOMMONS IGF1 pathway AKT1 +PWCOMMONS IGF1 pathway PIK3CA +PWCOMMONS IGF1 pathway PIK3R1 +PWCOMMONS IGF1 pathway GRB10 +PWCOMMONS IGF1 pathway PTPN1 +PWCOMMONS IGF1 pathway PTK2 +PWCOMMONS IGF1 pathway BCAR1 +PWCOMMONS IGF1 pathway PXN +PWCOMMONS IGF1 pathway CRK +PWCOMMONS IGF1 pathway PTPN11 +PWCOMMONS IGF1 pathway PRKCZ +PWCOMMONS IGF1 pathway IRS2 +PWCOMMONS IGF1 pathway CRKL +PWCOMMONS IGF1 pathway +PWCOMMONS LPA receptor mediated events ARHGEF1 +PWCOMMONS LPA receptor mediated events PLCB3 +PWCOMMONS LPA receptor mediated events RAC1 +PWCOMMONS LPA receptor mediated events EGFR +PWCOMMONS LPA receptor mediated events GAB1 +PWCOMMONS LPA receptor mediated events PIK3R1 +PWCOMMONS LPA receptor mediated events PIK3CB +PWCOMMONS LPA receptor mediated events PTK2B +PWCOMMONS LPA receptor mediated events GSK3B +PWCOMMONS LPA receptor mediated events MMP2 +PWCOMMONS LPA receptor mediated events SLC9A3R2 +PWCOMMONS LPA receptor mediated events LPAR2 +PWCOMMONS LPA receptor mediated events GNA13 +PWCOMMONS LPA receptor mediated events GNA12 +PWCOMMONS LPA receptor mediated events TIAM1 +PWCOMMONS LPA receptor mediated events LPAR1 +PWCOMMONS LPA receptor mediated events NFKBIA +PWCOMMONS LPA receptor mediated events NFKB1 +PWCOMMONS LPA receptor mediated events RELA +PWCOMMONS LPA receptor mediated events HBEGF +PWCOMMONS LPA receptor mediated events TRIP6 +PWCOMMONS LPA receptor mediated events IL6 +PWCOMMONS LPA receptor mediated events BCAR1 +PWCOMMONS LPA receptor mediated events PXN +PWCOMMONS LPA receptor mediated events CRK +PWCOMMONS LPA receptor mediated events PTK2 +PWCOMMONS LPA receptor mediated events CASP3 +PWCOMMONS LPA receptor mediated events IL8 +PWCOMMONS LPA receptor mediated events PRKD1 +PWCOMMONS LPA receptor mediated events RHOA +PWCOMMONS LPA receptor mediated events PRKCE +PWCOMMONS LPA receptor mediated events HRAS +PWCOMMONS LPA receptor mediated events GNG2 +PWCOMMONS LPA receptor mediated events GNB1 +PWCOMMONS LPA receptor mediated events SRC +PWCOMMONS LPA receptor mediated events AKT1 +PWCOMMONS LPA receptor mediated events IKBKB +PWCOMMONS LPA receptor mediated events CHUK +PWCOMMONS LPA receptor mediated events IKBKG +PWCOMMONS LPA receptor mediated events TNFAIP3 +PWCOMMONS LPA receptor mediated events ATM +PWCOMMONS LPA receptor mediated events CYLD +PWCOMMONS LPA receptor mediated events NOD2 +PWCOMMONS LPA receptor mediated events RIPK2 +PWCOMMONS LPA receptor mediated events BCL10 +PWCOMMONS LPA receptor mediated events TRAF6 +PWCOMMONS LPA receptor mediated events MALT1 +PWCOMMONS LPA receptor mediated events PRKCA +PWCOMMONS LPA receptor mediated events ERC1 +PWCOMMONS LPA receptor mediated events FBXW11 +PWCOMMONS LPA receptor mediated events TNFRSF1A +PWCOMMONS LPA receptor mediated events TNF +PWCOMMONS LPA receptor mediated events LCK +PWCOMMONS LPA receptor mediated events ARRB2 +PWCOMMONS LPA receptor mediated events REL +PWCOMMONS LPA receptor mediated events SYK +PWCOMMONS LPA receptor mediated events PIK3CA +PWCOMMONS LPA receptor mediated events BCL3 +PWCOMMONS LPA receptor mediated events MAPK14 +PWCOMMONS LPA receptor mediated events XPO1 +PWCOMMONS LPA receptor mediated events RAN +PWCOMMONS LPA receptor mediated events NFKB2 +PWCOMMONS LPA receptor mediated events RELB +PWCOMMONS LPA receptor mediated events MAP3K14 +PWCOMMONS LPA receptor mediated events BIRC2 +PWCOMMONS LPA receptor mediated events UBE2D3 +PWCOMMONS LPA receptor mediated events PRKCD +PWCOMMONS LPA receptor mediated events PLCG1 +PWCOMMONS LPA receptor mediated events FOS +PWCOMMONS LPA receptor mediated events JUN +PWCOMMONS LPA receptor mediated events LPAR3 +PWCOMMONS LPA receptor mediated events PLD2 +PWCOMMONS LPA receptor mediated events MMP9 +PWCOMMONS LPA receptor mediated events RPS6KA5 +PWCOMMONS LPA receptor mediated events LPAR4 +PWCOMMONS LPA receptor mediated events PRKACA +PWCOMMONS LPA receptor mediated events CREB1 +PWCOMMONS LPA receptor mediated events LYN +PWCOMMONS LPA receptor mediated events ADRA1B +PWCOMMONS LPA receptor mediated events +PWCOMMONS FGF signaling pathway BGLAP +PWCOMMONS FGF signaling pathway SDC2 +PWCOMMONS FGF signaling pathway CDH2 +PWCOMMONS FGF signaling pathway KLB +PWCOMMONS FGF signaling pathway FGF23 +PWCOMMONS FGF signaling pathway SRC +PWCOMMONS FGF signaling pathway CTTN +PWCOMMONS FGF signaling pathway CAMK2A +PWCOMMONS FGF signaling pathway PIK3CA +PWCOMMONS FGF signaling pathway PIK3R1 +PWCOMMONS FGF signaling pathway SPP1 +PWCOMMONS FGF signaling pathway AKT1 +PWCOMMONS FGF signaling pathway MMP9 +PWCOMMONS FGF signaling pathway IL17RD +PWCOMMONS FGF signaling pathway FRS2 +PWCOMMONS FGF signaling pathway PLAU +PWCOMMONS FGF signaling pathway CBL +PWCOMMONS FGF signaling pathway SOS1 +PWCOMMONS FGF signaling pathway SHC1 +PWCOMMONS FGF signaling pathway GRB2 +PWCOMMONS FGF signaling pathway CTNND1 +PWCOMMONS FGF signaling pathway NCAM1 +PWCOMMONS FGF signaling pathway SSH1 +PWCOMMONS FGF signaling pathway FGF1 +PWCOMMONS FGF signaling pathway PTK2B +PWCOMMONS FGF signaling pathway PTPN11 +PWCOMMONS FGF signaling pathway GAB1 +PWCOMMONS FGF signaling pathway PAK4 +PWCOMMONS FGF signaling pathway PDPK1 +PWCOMMONS FGF signaling pathway FGFR1 +PWCOMMONS FGF signaling pathway PLCG1 +PWCOMMONS FGF signaling pathway STAT1 +PWCOMMONS FGF signaling pathway RUNX2 +PWCOMMONS FGF signaling pathway PLAUR +PWCOMMONS FGF signaling pathway FGFR4 +PWCOMMONS FGF signaling pathway FGF19 +PWCOMMONS FGF signaling pathway FGFR2 +PWCOMMONS FGF signaling pathway FOS +PWCOMMONS FGF signaling pathway JUN +PWCOMMONS FGF signaling pathway STAT5B +PWCOMMONS FGF signaling pathway RPS6KA1 +PWCOMMONS FGF signaling pathway MET +PWCOMMONS FGF signaling pathway HGF +PWCOMMONS FGF signaling pathway +PWCOMMONS a4b1 and a4b7 Integrin signaling ITGA4 +PWCOMMONS a4b1 and a4b7 Integrin signaling ITGB7 +PWCOMMONS a4b1 and a4b7 Integrin signaling TLN1 +PWCOMMONS a4b1 and a4b7 Integrin signaling PXN +PWCOMMONS a4b1 and a4b7 Integrin signaling ARF6 +PWCOMMONS a4b1 and a4b7 Integrin signaling ITGAL +PWCOMMONS a4b1 and a4b7 Integrin signaling ITGB2 +PWCOMMONS a4b1 and a4b7 Integrin signaling VCAM1 +PWCOMMONS a4b1 and a4b7 Integrin signaling PIK3CA +PWCOMMONS a4b1 and a4b7 Integrin signaling PIK3R1 +PWCOMMONS a4b1 and a4b7 Integrin signaling PRKACA +PWCOMMONS a4b1 and a4b7 Integrin signaling RAC1 +PWCOMMONS a4b1 and a4b7 Integrin signaling CRKL +PWCOMMONS a4b1 and a4b7 Integrin signaling CBL +PWCOMMONS a4b1 and a4b7 Integrin signaling GIT1 +PWCOMMONS a4b1 and a4b7 Integrin signaling BCAR1 +PWCOMMONS a4b1 and a4b7 Integrin signaling CRK +PWCOMMONS a4b1 and a4b7 Integrin signaling DOCK1 +PWCOMMONS a4b1 and a4b7 Integrin signaling JAK2 +PWCOMMONS a4b1 and a4b7 Integrin signaling CD44 +PWCOMMONS a4b1 and a4b7 Integrin signaling PTK2 +PWCOMMONS a4b1 and a4b7 Integrin signaling MADCAM1 +PWCOMMONS a4b1 and a4b7 Integrin signaling RHOA +PWCOMMONS a4b1 and a4b7 Integrin signaling SRC +PWCOMMONS a4b1 and a4b7 Integrin signaling EPO +PWCOMMONS a4b1 and a4b7 Integrin signaling EPOR +PWCOMMONS a4b1 and a4b7 Integrin signaling +PWCOMMONS Proteogylcan syndecan-mediated signaling events ADAM12 +PWCOMMONS Proteogylcan syndecan-mediated signaling events THBS1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events FN1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events GIPC1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PRKCA +PWCOMMONS Proteogylcan syndecan-mediated signaling events TNFRSF13B +PWCOMMONS Proteogylcan syndecan-mediated signaling events CXCR4 +PWCOMMONS Proteogylcan syndecan-mediated signaling events CXCL12 +PWCOMMONS Proteogylcan syndecan-mediated signaling events NLK +PWCOMMONS Proteogylcan syndecan-mediated signaling events GNG2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events GNB1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events CDC42 +PWCOMMONS Proteogylcan syndecan-mediated signaling events GNAS +PWCOMMONS Proteogylcan syndecan-mediated signaling events PLCG1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events YES1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events MAP3K7 +PWCOMMONS Proteogylcan syndecan-mediated signaling events NFATC2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events CSNK1A1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events CAMK2A +PWCOMMONS Proteogylcan syndecan-mediated signaling events MAP3K7IP1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events NUDT16L1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events RAC1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events SDCBP +PWCOMMONS Proteogylcan syndecan-mediated signaling events CCL5 +PWCOMMONS Proteogylcan syndecan-mediated signaling events FGFR1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events FGF2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events TFPI +PWCOMMONS Proteogylcan syndecan-mediated signaling events LAMA1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PLG +PWCOMMONS Proteogylcan syndecan-mediated signaling events F2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events TNC +PWCOMMONS Proteogylcan syndecan-mediated signaling events ACTN1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events LAMA3 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PTK2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events RHOA +PWCOMMONS Proteogylcan syndecan-mediated signaling events MDK +PWCOMMONS Proteogylcan syndecan-mediated signaling events FZD7 +PWCOMMONS Proteogylcan syndecan-mediated signaling events ITGB1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events ITGA5 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PRKCD +PWCOMMONS Proteogylcan syndecan-mediated signaling events DNM2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events MMP9 +PWCOMMONS Proteogylcan syndecan-mediated signaling events SDC3 +PWCOMMONS Proteogylcan syndecan-mediated signaling events SDC2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events SDC1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events SRC +PWCOMMONS Proteogylcan syndecan-mediated signaling events RASA1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events BAX +PWCOMMONS Proteogylcan syndecan-mediated signaling events CASK +PWCOMMONS Proteogylcan syndecan-mediated signaling events KNG1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events HRAS +PWCOMMONS Proteogylcan syndecan-mediated signaling events TGFB1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events CAV2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events IL8 +PWCOMMONS Proteogylcan syndecan-mediated signaling events NF1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events ITGA2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events MMP2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events CDH1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events BGLAP +PWCOMMONS Proteogylcan syndecan-mediated signaling events CDH2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events KLB +PWCOMMONS Proteogylcan syndecan-mediated signaling events FGF23 +PWCOMMONS Proteogylcan syndecan-mediated signaling events CTTN +PWCOMMONS Proteogylcan syndecan-mediated signaling events PIK3CA +PWCOMMONS Proteogylcan syndecan-mediated signaling events PIK3R1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events SPP1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events AKT1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events IL17RD +PWCOMMONS Proteogylcan syndecan-mediated signaling events FRS2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PLAU +PWCOMMONS Proteogylcan syndecan-mediated signaling events CBL +PWCOMMONS Proteogylcan syndecan-mediated signaling events SOS1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events SHC1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events GRB2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events CTNND1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events NCAM1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events SSH1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events FGF1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PTK2B +PWCOMMONS Proteogylcan syndecan-mediated signaling events PTPN11 +PWCOMMONS Proteogylcan syndecan-mediated signaling events GAB1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PAK4 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PDPK1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events STAT1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events RUNX2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PLAUR +PWCOMMONS Proteogylcan syndecan-mediated signaling events FGFR4 +PWCOMMONS Proteogylcan syndecan-mediated signaling events FGF19 +PWCOMMONS Proteogylcan syndecan-mediated signaling events FGFR2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events FOS +PWCOMMONS Proteogylcan syndecan-mediated signaling events JUN +PWCOMMONS Proteogylcan syndecan-mediated signaling events STAT5B +PWCOMMONS Proteogylcan syndecan-mediated signaling events RPS6KA1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events MET +PWCOMMONS Proteogylcan syndecan-mediated signaling events HGF +PWCOMMONS Proteogylcan syndecan-mediated signaling events EPB41 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PRKACA +PWCOMMONS Proteogylcan syndecan-mediated signaling events GNB2L1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events TRAPPC4 +PWCOMMONS Proteogylcan syndecan-mediated signaling events MAPK8 +PWCOMMONS Proteogylcan syndecan-mediated signaling events CSF2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events EZR +PWCOMMONS Proteogylcan syndecan-mediated signaling events CASP3 +PWCOMMONS Proteogylcan syndecan-mediated signaling events EPHB2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events BSG +PWCOMMONS Proteogylcan syndecan-mediated signaling events LAMA5 +PWCOMMONS Proteogylcan syndecan-mediated signaling events HPSE +PWCOMMONS Proteogylcan syndecan-mediated signaling events PPIB +PWCOMMONS Proteogylcan syndecan-mediated signaling events MAPK1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events BAG1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events ELK1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events MAPK3 +PWCOMMONS Proteogylcan syndecan-mediated signaling events RAF1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events MAP2K2 +PWCOMMONS Proteogylcan syndecan-mediated signaling events INPP5D +PWCOMMONS Proteogylcan syndecan-mediated signaling events INPPL1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events CRKL +PWCOMMONS Proteogylcan syndecan-mediated signaling events MAP2K1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PXN +PWCOMMONS Proteogylcan syndecan-mediated signaling events STAT3 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PAK1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events RAP1B +PWCOMMONS Proteogylcan syndecan-mediated signaling events RAP1A +PWCOMMONS Proteogylcan syndecan-mediated signaling events RAPGEF1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events RANBP9 +PWCOMMONS Proteogylcan syndecan-mediated signaling events MAP4K1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events HGS +PWCOMMONS Proteogylcan syndecan-mediated signaling events RANBP10 +PWCOMMONS Proteogylcan syndecan-mediated signaling events DOCK1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events MAP3K5 +PWCOMMONS Proteogylcan syndecan-mediated signaling events MAP2K4 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PTPRJ +PWCOMMONS Proteogylcan syndecan-mediated signaling events PTEN +PWCOMMONS Proteogylcan syndecan-mediated signaling events GLMN +PWCOMMONS Proteogylcan syndecan-mediated signaling events CRK +PWCOMMONS Proteogylcan syndecan-mediated signaling events RPS6KB1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events SH3KBP1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events CTNNB1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events BAD +PWCOMMONS Proteogylcan syndecan-mediated signaling events NCK1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events PTN +PWCOMMONS Proteogylcan syndecan-mediated signaling events AGRP +PWCOMMONS Proteogylcan syndecan-mediated signaling events NCAN +PWCOMMONS Proteogylcan syndecan-mediated signaling events MC4R +PWCOMMONS Proteogylcan syndecan-mediated signaling events POMC +PWCOMMONS Proteogylcan syndecan-mediated signaling events FYN +PWCOMMONS Proteogylcan syndecan-mediated signaling events EGFR +PWCOMMONS Proteogylcan syndecan-mediated signaling events APH1B +PWCOMMONS Proteogylcan syndecan-mediated signaling events PSENEN +PWCOMMONS Proteogylcan syndecan-mediated signaling events NCSTN +PWCOMMONS Proteogylcan syndecan-mediated signaling events PSEN1 +PWCOMMONS Proteogylcan syndecan-mediated signaling events APH1A +PWCOMMONS Proteogylcan syndecan-mediated signaling events +PWCOMMONS IL2 signaling events mediated by STAT5 CCNA2 +PWCOMMONS IL2 signaling events mediated by STAT5 MYC +PWCOMMONS IL2 signaling events mediated by STAT5 CCND2 +PWCOMMONS IL2 signaling events mediated by STAT5 PRF1 +PWCOMMONS IL2 signaling events mediated by STAT5 BCL2L1 +PWCOMMONS IL2 signaling events mediated by STAT5 CDK6 +PWCOMMONS IL2 signaling events mediated by STAT5 SP1 +PWCOMMONS IL2 signaling events mediated by STAT5 ELF1 +PWCOMMONS IL2 signaling events mediated by STAT5 PIK3CA +PWCOMMONS IL2 signaling events mediated by STAT5 JAK1 +PWCOMMONS IL2 signaling events mediated by STAT5 GAB2 +PWCOMMONS IL2 signaling events mediated by STAT5 LCK +PWCOMMONS IL2 signaling events mediated by STAT5 IL2RG +PWCOMMONS IL2 signaling events mediated by STAT5 PIK3R1 +PWCOMMONS IL2 signaling events mediated by STAT5 JAK3 +PWCOMMONS IL2 signaling events mediated by STAT5 PTPN11 +PWCOMMONS IL2 signaling events mediated by STAT5 IL2RA +PWCOMMONS IL2 signaling events mediated by STAT5 IL2 +PWCOMMONS IL2 signaling events mediated by STAT5 IL2RB +PWCOMMONS IL2 signaling events mediated by STAT5 SOS1 +PWCOMMONS IL2 signaling events mediated by STAT5 SHC1 +PWCOMMONS IL2 signaling events mediated by STAT5 GRB2 +PWCOMMONS IL2 signaling events mediated by STAT5 FASLG +PWCOMMONS IL2 signaling events mediated by STAT5 BCL2 +PWCOMMONS IL2 signaling events mediated by STAT5 LTA +PWCOMMONS IL2 signaling events mediated by STAT5 IL4 +PWCOMMONS IL2 signaling events mediated by STAT5 CCND3 +PWCOMMONS IL2 signaling events mediated by STAT5 +PWCOMMONS Plasma membrane estrogen receptor signaling AKT1 +PWCOMMONS Plasma membrane estrogen receptor signaling MSN +PWCOMMONS Plasma membrane estrogen receptor signaling MMP2 +PWCOMMONS Plasma membrane estrogen receptor signaling BCAR1 +PWCOMMONS Plasma membrane estrogen receptor signaling ESR1 +PWCOMMONS Plasma membrane estrogen receptor signaling SRC +PWCOMMONS Plasma membrane estrogen receptor signaling PIK3CA +PWCOMMONS Plasma membrane estrogen receptor signaling PIK3R1 +PWCOMMONS Plasma membrane estrogen receptor signaling IGF1 +PWCOMMONS Plasma membrane estrogen receptor signaling IGF1R +PWCOMMONS Plasma membrane estrogen receptor signaling NCK2 +PWCOMMONS Plasma membrane estrogen receptor signaling IRS1 +PWCOMMONS Plasma membrane estrogen receptor signaling BAD +PWCOMMONS Plasma membrane estrogen receptor signaling YWHAZ +PWCOMMONS Plasma membrane estrogen receptor signaling YWHAE +PWCOMMONS Plasma membrane estrogen receptor signaling RAF1 +PWCOMMONS Plasma membrane estrogen receptor signaling PRKD1 +PWCOMMONS Plasma membrane estrogen receptor signaling PDPK1 +PWCOMMONS Plasma membrane estrogen receptor signaling HRAS +PWCOMMONS Plasma membrane estrogen receptor signaling GNB2L1 +PWCOMMONS Plasma membrane estrogen receptor signaling SOS1 +PWCOMMONS Plasma membrane estrogen receptor signaling SHC1 +PWCOMMONS Plasma membrane estrogen receptor signaling GRB2 +PWCOMMONS Plasma membrane estrogen receptor signaling RPS6KB1 +PWCOMMONS Plasma membrane estrogen receptor signaling PRKCD +PWCOMMONS Plasma membrane estrogen receptor signaling GRB10 +PWCOMMONS Plasma membrane estrogen receptor signaling PTPN1 +PWCOMMONS Plasma membrane estrogen receptor signaling PTK2 +PWCOMMONS Plasma membrane estrogen receptor signaling PXN +PWCOMMONS Plasma membrane estrogen receptor signaling CRK +PWCOMMONS Plasma membrane estrogen receptor signaling PTPN11 +PWCOMMONS Plasma membrane estrogen receptor signaling PRKCZ +PWCOMMONS Plasma membrane estrogen receptor signaling IRS2 +PWCOMMONS Plasma membrane estrogen receptor signaling CRKL +PWCOMMONS Plasma membrane estrogen receptor signaling GNG2 +PWCOMMONS Plasma membrane estrogen receptor signaling GNB1 +PWCOMMONS Plasma membrane estrogen receptor signaling MAPKAPK3 +PWCOMMONS Plasma membrane estrogen receptor signaling KRT8 +PWCOMMONS Plasma membrane estrogen receptor signaling CEBPB +PWCOMMONS Plasma membrane estrogen receptor signaling PTGS2 +PWCOMMONS Plasma membrane estrogen receptor signaling SLC9A1 +PWCOMMONS Plasma membrane estrogen receptor signaling PPARGC1A +PWCOMMONS Plasma membrane estrogen receptor signaling MAPKAPK2 +PWCOMMONS Plasma membrane estrogen receptor signaling USF1 +PWCOMMONS Plasma membrane estrogen receptor signaling MAPKAPK5 +PWCOMMONS Plasma membrane estrogen receptor signaling HSPB1 +PWCOMMONS Plasma membrane estrogen receptor signaling LSP1 +PWCOMMONS Plasma membrane estrogen receptor signaling CDC25B +PWCOMMONS Plasma membrane estrogen receptor signaling TSC2 +PWCOMMONS Plasma membrane estrogen receptor signaling TCF3 +PWCOMMONS Plasma membrane estrogen receptor signaling SRF +PWCOMMONS Plasma membrane estrogen receptor signaling CREB1 +PWCOMMONS Plasma membrane estrogen receptor signaling MAPK14 +PWCOMMONS Plasma membrane estrogen receptor signaling TH +PWCOMMONS Plasma membrane estrogen receptor signaling ETV1 +PWCOMMONS Plasma membrane estrogen receptor signaling ATF1 +PWCOMMONS Plasma membrane estrogen receptor signaling MEF2C +PWCOMMONS Plasma membrane estrogen receptor signaling MKNK1 +PWCOMMONS Plasma membrane estrogen receptor signaling MITF +PWCOMMONS Plasma membrane estrogen receptor signaling NOS2 +PWCOMMONS Plasma membrane estrogen receptor signaling JUN +PWCOMMONS Plasma membrane estrogen receptor signaling GDI1 +PWCOMMONS Plasma membrane estrogen receptor signaling RAB5A +PWCOMMONS Plasma membrane estrogen receptor signaling ATF2 +PWCOMMONS Plasma membrane estrogen receptor signaling EIF4EBP1 +PWCOMMONS Plasma membrane estrogen receptor signaling MEF2A +PWCOMMONS Plasma membrane estrogen receptor signaling PLA2G4A +PWCOMMONS Plasma membrane estrogen receptor signaling EIF4E +PWCOMMONS Plasma membrane estrogen receptor signaling HBP1 +PWCOMMONS Plasma membrane estrogen receptor signaling TP53 +PWCOMMONS Plasma membrane estrogen receptor signaling DDIT3 +PWCOMMONS Plasma membrane estrogen receptor signaling KRT19 +PWCOMMONS Plasma membrane estrogen receptor signaling ELK4 +PWCOMMONS Plasma membrane estrogen receptor signaling ATF6 +PWCOMMONS Plasma membrane estrogen receptor signaling MAP2K6 +PWCOMMONS Plasma membrane estrogen receptor signaling DUSP1 +PWCOMMONS Plasma membrane estrogen receptor signaling MAP2K4 +PWCOMMONS Plasma membrane estrogen receptor signaling GSK3B +PWCOMMONS Plasma membrane estrogen receptor signaling BCL2 +PWCOMMONS Plasma membrane estrogen receptor signaling FKBP8 +PWCOMMONS Plasma membrane estrogen receptor signaling CALM1 +PWCOMMONS Plasma membrane estrogen receptor signaling RCAN2 +PWCOMMONS Plasma membrane estrogen receptor signaling YWHAQ +PWCOMMONS Plasma membrane estrogen receptor signaling BAX +PWCOMMONS Plasma membrane estrogen receptor signaling MAPK9 +PWCOMMONS Plasma membrane estrogen receptor signaling NFATC3 +PWCOMMONS Plasma membrane estrogen receptor signaling PRKACA +PWCOMMONS Plasma membrane estrogen receptor signaling NFATC1 +PWCOMMONS Plasma membrane estrogen receptor signaling KPNB1 +PWCOMMONS Plasma membrane estrogen receptor signaling KPNA2 +PWCOMMONS Plasma membrane estrogen receptor signaling CABIN1 +PWCOMMONS Plasma membrane estrogen receptor signaling NFATC2 +PWCOMMONS Plasma membrane estrogen receptor signaling CSNK1A1 +PWCOMMONS Plasma membrane estrogen receptor signaling MEF2D +PWCOMMONS Plasma membrane estrogen receptor signaling MAPK8 +PWCOMMONS Plasma membrane estrogen receptor signaling MAP3K1 +PWCOMMONS Plasma membrane estrogen receptor signaling CAMK4 +PWCOMMONS Plasma membrane estrogen receptor signaling AKAP5 +PWCOMMONS Plasma membrane estrogen receptor signaling NR4A1 +PWCOMMONS Plasma membrane estrogen receptor signaling RCAN1 +PWCOMMONS Plasma membrane estrogen receptor signaling CHP +PWCOMMONS Plasma membrane estrogen receptor signaling CSNK2A1 +PWCOMMONS Plasma membrane estrogen receptor signaling MAPK3 +PWCOMMONS Plasma membrane estrogen receptor signaling XPO1 +PWCOMMONS Plasma membrane estrogen receptor signaling RAN +PWCOMMONS Plasma membrane estrogen receptor signaling NUP214 +PWCOMMONS Plasma membrane estrogen receptor signaling MAP3K8 +PWCOMMONS Plasma membrane estrogen receptor signaling E2F1 +PWCOMMONS Plasma membrane estrogen receptor signaling EGR3 +PWCOMMONS Plasma membrane estrogen receptor signaling FOS +PWCOMMONS Plasma membrane estrogen receptor signaling CREM +PWCOMMONS Plasma membrane estrogen receptor signaling CTLA4 +PWCOMMONS Plasma membrane estrogen receptor signaling TNF +PWCOMMONS Plasma membrane estrogen receptor signaling IL2RA +PWCOMMONS Plasma membrane estrogen receptor signaling FOXP3 +PWCOMMONS Plasma membrane estrogen receptor signaling PPARG +PWCOMMONS Plasma membrane estrogen receptor signaling EGR4 +PWCOMMONS Plasma membrane estrogen receptor signaling CD40LG +PWCOMMONS Plasma membrane estrogen receptor signaling FASLG +PWCOMMONS Plasma membrane estrogen receptor signaling GATA3 +PWCOMMONS Plasma membrane estrogen receptor signaling IL8 +PWCOMMONS Plasma membrane estrogen receptor signaling FOSL1 +PWCOMMONS Plasma membrane estrogen receptor signaling JUNB +PWCOMMONS Plasma membrane estrogen receptor signaling IL5 +PWCOMMONS Plasma membrane estrogen receptor signaling IKZF1 +PWCOMMONS Plasma membrane estrogen receptor signaling GBP3 +PWCOMMONS Plasma membrane estrogen receptor signaling CSF2 +PWCOMMONS Plasma membrane estrogen receptor signaling IL2 +PWCOMMONS Plasma membrane estrogen receptor signaling PRKCQ +PWCOMMONS Plasma membrane estrogen receptor signaling IRF4 +PWCOMMONS Plasma membrane estrogen receptor signaling MAF +PWCOMMONS Plasma membrane estrogen receptor signaling POU2F1 +PWCOMMONS Plasma membrane estrogen receptor signaling CBLB +PWCOMMONS Plasma membrane estrogen receptor signaling EGR1 +PWCOMMONS Plasma membrane estrogen receptor signaling SLC3A2 +PWCOMMONS Plasma membrane estrogen receptor signaling IFNG +PWCOMMONS Plasma membrane estrogen receptor signaling ITCH +PWCOMMONS Plasma membrane estrogen receptor signaling IL4 +PWCOMMONS Plasma membrane estrogen receptor signaling EGR2 +PWCOMMONS Plasma membrane estrogen receptor signaling RNF128 +PWCOMMONS Plasma membrane estrogen receptor signaling DGKA +PWCOMMONS Plasma membrane estrogen receptor signaling IL3 +PWCOMMONS Plasma membrane estrogen receptor signaling BATF3 +PWCOMMONS Plasma membrane estrogen receptor signaling TBX21 +PWCOMMONS Plasma membrane estrogen receptor signaling BCE1 +PWCOMMONS Plasma membrane estrogen receptor signaling CDK4 +PWCOMMONS Plasma membrane estrogen receptor signaling CASP3 +PWCOMMONS Plasma membrane estrogen receptor signaling PTPRK +PWCOMMONS Plasma membrane estrogen receptor signaling PIM1 +PWCOMMONS Plasma membrane estrogen receptor signaling FKBP1A +PWCOMMONS Plasma membrane estrogen receptor signaling RIPK1 +PWCOMMONS Plasma membrane estrogen receptor signaling MAP3K3 +PWCOMMONS Plasma membrane estrogen receptor signaling TRAF6 +PWCOMMONS Plasma membrane estrogen receptor signaling MAPK11 +PWCOMMONS Plasma membrane estrogen receptor signaling MAP3K12 +PWCOMMONS Plasma membrane estrogen receptor signaling MAP3K7IP1 +PWCOMMONS Plasma membrane estrogen receptor signaling PRKG1 +PWCOMMONS Plasma membrane estrogen receptor signaling CCM2 +PWCOMMONS Plasma membrane estrogen receptor signaling RAC1 +PWCOMMONS Plasma membrane estrogen receptor signaling MAP2K3 +PWCOMMONS Plasma membrane estrogen receptor signaling DUSP16 +PWCOMMONS Plasma membrane estrogen receptor signaling DUSP8 +PWCOMMONS Plasma membrane estrogen receptor signaling DUSP10 +PWCOMMONS Plasma membrane estrogen receptor signaling MMP9 +PWCOMMONS Plasma membrane estrogen receptor signaling ESR2 +PWCOMMONS Plasma membrane estrogen receptor signaling HBEGF +PWCOMMONS Plasma membrane estrogen receptor signaling NOS3 +PWCOMMONS Plasma membrane estrogen receptor signaling STRN +PWCOMMONS Plasma membrane estrogen receptor signaling RHOA +PWCOMMONS Plasma membrane estrogen receptor signaling ROCK2 +PWCOMMONS Plasma membrane estrogen receptor signaling +PWCOMMONS Canonical Wnt signaling pathway CTBP1 +PWCOMMONS Canonical Wnt signaling pathway AES +PWCOMMONS Canonical Wnt signaling pathway CREBBP +PWCOMMONS Canonical Wnt signaling pathway TLE1 +PWCOMMONS Canonical Wnt signaling pathway LRP6 +PWCOMMONS Canonical Wnt signaling pathway KREMEN2 +PWCOMMONS Canonical Wnt signaling pathway DKK1 +PWCOMMONS Canonical Wnt signaling pathway FZD1 +PWCOMMONS Canonical Wnt signaling pathway WNT1 +PWCOMMONS Canonical Wnt signaling pathway NLK +PWCOMMONS Canonical Wnt signaling pathway GNG2 +PWCOMMONS Canonical Wnt signaling pathway GNB1 +PWCOMMONS Canonical Wnt signaling pathway CDC42 +PWCOMMONS Canonical Wnt signaling pathway GNAS +PWCOMMONS Canonical Wnt signaling pathway PLCG1 +PWCOMMONS Canonical Wnt signaling pathway YES1 +PWCOMMONS Canonical Wnt signaling pathway MAP3K7 +PWCOMMONS Canonical Wnt signaling pathway NFATC2 +PWCOMMONS Canonical Wnt signaling pathway CSNK1A1 +PWCOMMONS Canonical Wnt signaling pathway CAMK2A +PWCOMMONS Canonical Wnt signaling pathway MAP3K7IP1 +PWCOMMONS Canonical Wnt signaling pathway FBXW11 +PWCOMMONS Canonical Wnt signaling pathway HDAC1 +PWCOMMONS Canonical Wnt signaling pathway AXIN1 +PWCOMMONS Canonical Wnt signaling pathway APC +PWCOMMONS Canonical Wnt signaling pathway MACF1 +PWCOMMONS Canonical Wnt signaling pathway WIF1 +PWCOMMONS Canonical Wnt signaling pathway PPP2R5D +PWCOMMONS Canonical Wnt signaling pathway RANBP3 +PWCOMMONS Canonical Wnt signaling pathway DKK2 +PWCOMMONS Canonical Wnt signaling pathway DVL1 +PWCOMMONS Canonical Wnt signaling pathway SMAD4 +PWCOMMONS Canonical Wnt signaling pathway MYC +PWCOMMONS Canonical Wnt signaling pathway AXIN2 +PWCOMMONS Canonical Wnt signaling pathway CCND1 +PWCOMMONS Canonical Wnt signaling pathway RAN +PWCOMMONS Canonical Wnt signaling pathway FRAT1 +PWCOMMONS Canonical Wnt signaling pathway NKD1 +PWCOMMONS Canonical Wnt signaling pathway CSNK2A1 +PWCOMMONS Canonical Wnt signaling pathway +PWCOMMONS Reelin signaling pathway RELN +PWCOMMONS Reelin signaling pathway DAB1 +PWCOMMONS Reelin signaling pathway CRKL +PWCOMMONS Reelin signaling pathway RAPGEF1 +PWCOMMONS Reelin signaling pathway ITGA3 +PWCOMMONS Reelin signaling pathway ITGB1 +PWCOMMONS Reelin signaling pathway LRPAP1 +PWCOMMONS Reelin signaling pathway VLDLR +PWCOMMONS Reelin signaling pathway FYN +PWCOMMONS Reelin signaling pathway PIK3CA +PWCOMMONS Reelin signaling pathway PIK3R1 +PWCOMMONS Reelin signaling pathway CBL +PWCOMMONS Reelin signaling pathway PAFAH1B1 +PWCOMMONS Reelin signaling pathway AKT1 +PWCOMMONS Reelin signaling pathway MAP1B +PWCOMMONS Reelin signaling pathway MAP3K11 +PWCOMMONS Reelin signaling pathway MAPK8 +PWCOMMONS Reelin signaling pathway ARHGEF2 +PWCOMMONS Reelin signaling pathway MAP2K7 +PWCOMMONS Reelin signaling pathway GSK3B +PWCOMMONS Reelin signaling pathway RAP1A +PWCOMMONS Reelin signaling pathway NCK2 +PWCOMMONS Reelin signaling pathway GRIN2B +PWCOMMONS Reelin signaling pathway CDK5 +PWCOMMONS Reelin signaling pathway CDK5R1 +PWCOMMONS Reelin signaling pathway MAPT +PWCOMMONS Reelin signaling pathway +PWCOMMONS Alpha6Beta4Integrin YES1 +PWCOMMONS Alpha6Beta4Integrin YWHAB +PWCOMMONS Alpha6Beta4Integrin PTK2 +PWCOMMONS Alpha6Beta4Integrin ERBB2 +PWCOMMONS Alpha6Beta4Integrin BAD +PWCOMMONS Alpha6Beta4Integrin DST +PWCOMMONS Alpha6Beta4Integrin AKT1 +PWCOMMONS Alpha6Beta4Integrin SMAD3 +PWCOMMONS Alpha6Beta4Integrin RHOA +PWCOMMONS Alpha6Beta4Integrin MST1R +PWCOMMONS Alpha6Beta4Integrin ITGA6 +PWCOMMONS Alpha6Beta4Integrin SHC1 +PWCOMMONS Alpha6Beta4Integrin GRB2 +PWCOMMONS Alpha6Beta4Integrin EIF4EBP1 +PWCOMMONS Alpha6Beta4Integrin SMAD2 +PWCOMMONS Alpha6Beta4Integrin CD151 +PWCOMMONS Alpha6Beta4Integrin FYN +PWCOMMONS Alpha6Beta4Integrin FRAP1 +PWCOMMONS Alpha6Beta4Integrin PRKCA +PWCOMMONS Alpha6Beta4Integrin PIK3CA +PWCOMMONS Alpha6Beta4Integrin PIK3R2 +PWCOMMONS Alpha6Beta4Integrin PIK3CG +PWCOMMONS Alpha6Beta4Integrin PIK3CB +PWCOMMONS Alpha6Beta4Integrin SRC +PWCOMMONS Alpha6Beta4Integrin EIF6 +PWCOMMONS Alpha6Beta4Integrin VIM +PWCOMMONS Alpha6Beta4Integrin COL17A1 +PWCOMMONS Alpha6Beta4Integrin PAK1 +PWCOMMONS Alpha6Beta4Integrin MBP +PWCOMMONS Alpha6Beta4Integrin TP73 +PWCOMMONS Alpha6Beta4Integrin ABL1 +PWCOMMONS Alpha6Beta4Integrin YWHAZ +PWCOMMONS Alpha6Beta4Integrin PRKCD +PWCOMMONS Alpha6Beta4Integrin MET +PWCOMMONS Alpha6Beta4Integrin PLEC1 +PWCOMMONS Alpha6Beta4Integrin SFN +PWCOMMONS Alpha6Beta4Integrin DSP +PWCOMMONS Alpha6Beta4Integrin YWHAE +PWCOMMONS Alpha6Beta4Integrin YWHAQ +PWCOMMONS Alpha6Beta4Integrin EGFR +PWCOMMONS Alpha6Beta4Integrin AR +PWCOMMONS Alpha6Beta4Integrin MMP7 +PWCOMMONS Alpha6Beta4Integrin YWHAH +PWCOMMONS Alpha6Beta4Integrin RPSA +PWCOMMONS Alpha6Beta4Integrin CASP3 +PWCOMMONS Alpha6Beta4Integrin EIF4E +PWCOMMONS Alpha6Beta4Integrin +PWCOMMONS AndrogenReceptor CCNE1 +PWCOMMONS AndrogenReceptor AR +PWCOMMONS AndrogenReceptor RAN +PWCOMMONS AndrogenReceptor CCND1 +PWCOMMONS AndrogenReceptor CDC2 +PWCOMMONS AndrogenReceptor GTF2H1 +PWCOMMONS AndrogenReceptor CAV1 +PWCOMMONS AndrogenReceptor HDAC1 +PWCOMMONS AndrogenReceptor PNRC1 +PWCOMMONS AndrogenReceptor SPDEF +PWCOMMONS AndrogenReceptor NR5A1 +PWCOMMONS AndrogenReceptor SRY +PWCOMMONS AndrogenReceptor STUB1 +PWCOMMONS AndrogenReceptor RCHY1 +PWCOMMONS AndrogenReceptor CCNH +PWCOMMONS AndrogenReceptor RELA +PWCOMMONS AndrogenReceptor STAT3 +PWCOMMONS AndrogenReceptor PIAS3 +PWCOMMONS AndrogenReceptor NSD1 +PWCOMMONS AndrogenReceptor SP1 +PWCOMMONS AndrogenReceptor PSMC3IP +PWCOMMONS AndrogenReceptor PRPF6 +PWCOMMONS AndrogenReceptor COX5B +PWCOMMONS AndrogenReceptor RAC3 +PWCOMMONS AndrogenReceptor NR0B2 +PWCOMMONS AndrogenReceptor RUNX2 +PWCOMMONS AndrogenReceptor RANBP9 +PWCOMMONS AndrogenReceptor SMAD3 +PWCOMMONS AndrogenReceptor SENP1 +PWCOMMONS AndrogenReceptor MYST2 +PWCOMMONS AndrogenReceptor UBE2I +PWCOMMONS AndrogenReceptor TMF1 +PWCOMMONS AndrogenReceptor NCOA2 +PWCOMMONS AndrogenReceptor IL6ST +PWCOMMONS AndrogenReceptor CTNNB1 +PWCOMMONS AndrogenReceptor FHL2 +PWCOMMONS AndrogenReceptor ATF2 +PWCOMMONS AndrogenReceptor APPL1 +PWCOMMONS AndrogenReceptor PRMT1 +PWCOMMONS AndrogenReceptor PCAF +PWCOMMONS AndrogenReceptor POU2F2 +PWCOMMONS AndrogenReceptor SVIL +PWCOMMONS AndrogenReceptor RNF14 +PWCOMMONS AndrogenReceptor SIN3A +PWCOMMONS AndrogenReceptor TGIF1 +PWCOMMONS AndrogenReceptor CDK9 +PWCOMMONS AndrogenReceptor ESR1 +PWCOMMONS AndrogenReceptor PIAS1 +PWCOMMONS AndrogenReceptor JUN +PWCOMMONS AndrogenReceptor ETV5 +PWCOMMONS AndrogenReceptor NR2C2 +PWCOMMONS AndrogenReceptor AES +PWCOMMONS AndrogenReceptor MNAT1 +PWCOMMONS AndrogenReceptor GTF2F1 +PWCOMMONS AndrogenReceptor PA2G4 +PWCOMMONS AndrogenReceptor UBE3A +PWCOMMONS AndrogenReceptor SMAD4 +PWCOMMONS AndrogenReceptor RNF4 +PWCOMMONS AndrogenReceptor GTF2F2 +PWCOMMONS AndrogenReceptor FLNA +PWCOMMONS AndrogenReceptor UXT +PWCOMMONS AndrogenReceptor BRCA1 +PWCOMMONS AndrogenReceptor NRIP1 +PWCOMMONS AndrogenReceptor CDC37 +PWCOMMONS AndrogenReceptor PTEN +PWCOMMONS AndrogenReceptor RB1 +PWCOMMONS AndrogenReceptor NCOA4 +PWCOMMONS AndrogenReceptor NCOA3 +PWCOMMONS AndrogenReceptor PIAS4 +PWCOMMONS AndrogenReceptor NCOR2 +PWCOMMONS AndrogenReceptor CREBBP +PWCOMMONS AndrogenReceptor PAK6 +PWCOMMONS AndrogenReceptor NCOA1 +PWCOMMONS AndrogenReceptor EP300 +PWCOMMONS AndrogenReceptor CALR +PWCOMMONS AndrogenReceptor PATZ1 +PWCOMMONS AndrogenReceptor +PWCOMMONS EGFR1 PTPN11 +PWCOMMONS EGFR1 SMAD2 +PWCOMMONS EGFR1 EGFR +PWCOMMONS EGFR1 PLSCR1 +PWCOMMONS EGFR1 MYC +PWCOMMONS EGFR1 CEBPA +PWCOMMONS EGFR1 PTPRR +PWCOMMONS EGFR1 MAPK3 +PWCOMMONS EGFR1 JUN +PWCOMMONS EGFR1 SNCA +PWCOMMONS EGFR1 EPN1 +PWCOMMONS EGFR1 RASA1 +PWCOMMONS EGFR1 MAPK1 +PWCOMMONS EGFR1 GRB2 +PWCOMMONS EGFR1 ELK1 +PWCOMMONS EGFR1 SRC +PWCOMMONS EGFR1 CBLB +PWCOMMONS EGFR1 MCF2 +PWCOMMONS EGFR1 SMAD3 +PWCOMMONS EGFR1 SH3GL3 +PWCOMMONS EGFR1 DNM1 +PWCOMMONS EGFR1 MAP2K2 +PWCOMMONS EGFR1 CAV2 +PWCOMMONS EGFR1 CBL +PWCOMMONS EGFR1 SHOC2 +PWCOMMONS EGFR1 RAF1 +PWCOMMONS EGFR1 PRKCZ +PWCOMMONS EGFR1 PITPNA +PWCOMMONS EGFR1 ATF1 +PWCOMMONS EGFR1 MAP2K1 +PWCOMMONS EGFR1 PRKCA +PWCOMMONS EGFR1 SOCS1 +PWCOMMONS EGFR1 SHC1 +PWCOMMONS EGFR1 EPS8 +PWCOMMONS EGFR1 NCK2 +PWCOMMONS EGFR1 PKN2 +PWCOMMONS EGFR1 NCK1 +PWCOMMONS EGFR1 PLD2 +PWCOMMONS EGFR1 KLF11 +PWCOMMONS EGFR1 APPL2 +PWCOMMONS EGFR1 RAB5A +PWCOMMONS EGFR1 STAT5A +PWCOMMONS EGFR1 CAV1 +PWCOMMONS EGFR1 MAP3K14 +PWCOMMONS EGFR1 CRK +PWCOMMONS EGFR1 SOS1 +PWCOMMONS EGFR1 JAK2 +PWCOMMONS EGFR1 GJA1 +PWCOMMONS EGFR1 RBBP7 +PWCOMMONS EGFR1 EGF +PWCOMMONS EGFR1 ABI1 +PWCOMMONS EGFR1 BCAR1 +PWCOMMONS EGFR1 STAT3 +PWCOMMONS EGFR1 PTK2B +PWCOMMONS EGFR1 SOCS3 +PWCOMMONS EGFR1 PTPN6 +PWCOMMONS EGFR1 KRT8 +PWCOMMONS EGFR1 CASP9 +PWCOMMONS EGFR1 PRKD1 +PWCOMMONS EGFR1 HIST3H3 +PWCOMMONS EGFR1 RPS6KA1 +PWCOMMONS EGFR1 MAPK14 +PWCOMMONS EGFR1 TGIF1 +PWCOMMONS EGFR1 MAP3K3 +PWCOMMONS EGFR1 STAT1 +PWCOMMONS EGFR1 PIK3R2 +PWCOMMONS EGFR1 MAPK7 +PWCOMMONS EGFR1 PEBP1 +PWCOMMONS EGFR1 RALGDS +PWCOMMONS EGFR1 HRAS +PWCOMMONS EGFR1 HDAC1 +PWCOMMONS EGFR1 PLD1 +PWCOMMONS EGFR1 MAP3K4 +PWCOMMONS EGFR1 RIPK1 +PWCOMMONS EGFR1 ASAP1 +PWCOMMONS EGFR1 FOXO1 +PWCOMMONS EGFR1 EEF1A1 +PWCOMMONS EGFR1 FOS +PWCOMMONS EGFR1 JUND +PWCOMMONS EGFR1 STAT5B +PWCOMMONS EGFR1 ARAF +PWCOMMONS EGFR1 MAPK8 +PWCOMMONS EGFR1 JAK1 +PWCOMMONS EGFR1 PRKCB +PWCOMMONS EGFR1 PIK3C2B +PWCOMMONS EGFR1 VAV3 +PWCOMMONS EGFR1 CTNND1 +PWCOMMONS EGFR1 NRAS +PWCOMMONS EGFR1 PXN +PWCOMMONS EGFR1 VAV1 +PWCOMMONS EGFR1 MAP3K2 +PWCOMMONS EGFR1 HTT +PWCOMMONS EGFR1 CREB1 +PWCOMMONS EGFR1 GRB7 +PWCOMMONS EGFR1 CRKL +PWCOMMONS EGFR1 PIK3CA +PWCOMMONS EGFR1 PIK3CG +PWCOMMONS EGFR1 PIK3CB +PWCOMMONS EGFR1 STAT2 +PWCOMMONS EGFR1 TNK2 +PWCOMMONS EGFR1 CDC42 +PWCOMMONS EGFR1 CEBPB +PWCOMMONS EGFR1 ELF3 +PWCOMMONS EGFR1 PTPN12 +PWCOMMONS EGFR1 GIT1 +PWCOMMONS EGFR1 EPS15L1 +PWCOMMONS EGFR1 EPS15 +PWCOMMONS EGFR1 RPS6KA3 +PWCOMMONS EGFR1 PRKAR1A +PWCOMMONS EGFR1 ERRFI1 +PWCOMMONS EGFR1 CBLC +PWCOMMONS EGFR1 PRKCI +PWCOMMONS EGFR1 SH3KBP1 +PWCOMMONS EGFR1 SPRY2 +PWCOMMONS EGFR1 PLEC1 +PWCOMMONS EGFR1 MTA2 +PWCOMMONS EGFR1 RGS16 +PWCOMMONS EGFR1 RALBP1 +PWCOMMONS EGFR1 TNIP1 +PWCOMMONS EGFR1 YWHAB +PWCOMMONS EGFR1 CSK +PWCOMMONS EGFR1 WASL +PWCOMMONS EGFR1 SH3BGRL +PWCOMMONS EGFR1 ELK4 +PWCOMMONS EGFR1 HAT1 +PWCOMMONS EGFR1 ARF4 +PWCOMMONS EGFR1 KRAS +PWCOMMONS EGFR1 HIP1 +PWCOMMONS EGFR1 KRT7 +PWCOMMONS EGFR1 PTK6 +PWCOMMONS EGFR1 RPS6KA2 +PWCOMMONS EGFR1 GRB14 +PWCOMMONS EGFR1 SP1 +PWCOMMONS EGFR1 RALB +PWCOMMONS EGFR1 SNRPD2 +PWCOMMONS EGFR1 KRT18 +PWCOMMONS EGFR1 KRT17 +PWCOMMONS EGFR1 PRKCG +PWCOMMONS EGFR1 +PWCOMMONS Hedgehog DHH +PWCOMMONS Hedgehog IHH +PWCOMMONS Hedgehog PTCH1 +PWCOMMONS Hedgehog CCNB1 +PWCOMMONS Hedgehog SUFU +PWCOMMONS Hedgehog GLI3 +PWCOMMONS Hedgehog SMO +PWCOMMONS Hedgehog GLI1 +PWCOMMONS Hedgehog CDC2 +PWCOMMONS Hedgehog DYRK1A +PWCOMMONS Hedgehog SAP18 +PWCOMMONS Hedgehog HHIP +PWCOMMONS Hedgehog GAS1 +PWCOMMONS Hedgehog STK36 +PWCOMMONS Hedgehog SIN3A +PWCOMMONS Hedgehog +PWCOMMONS ID RB1 +PWCOMMONS ID ID3 +PWCOMMONS ID CDK2 +PWCOMMONS ID MYOD1 +PWCOMMONS ID ID4 +PWCOMMONS ID TCF3 +PWCOMMONS ID ELK1 +PWCOMMONS ID IFI16 +PWCOMMONS ID ELK4 +PWCOMMONS ID MSC +PWCOMMONS ID CCNA2 +PWCOMMONS ID ELK3 +PWCOMMONS ID SMAD3 +PWCOMMONS ID ATF3 +PWCOMMONS ID +PWCOMMONS KitReceptor KIT +PWCOMMONS KitReceptor CRKL +PWCOMMONS KitReceptor CBL +PWCOMMONS KitReceptor PTPRU +PWCOMMONS KitReceptor SOCS5 +PWCOMMONS KitReceptor HCK +PWCOMMONS KitReceptor PRKCA +PWCOMMONS KitReceptor DOK1 +PWCOMMONS KitReceptor KITLG +PWCOMMONS KitReceptor SOS1 +PWCOMMONS KitReceptor SHC1 +PWCOMMONS KitReceptor GRB2 +PWCOMMONS KitReceptor GRAP +PWCOMMONS KitReceptor KHDRBS1 +PWCOMMONS KitReceptor PIK3R2 +PWCOMMONS KitReceptor SPRED2 +PWCOMMONS KitReceptor SRC +PWCOMMONS KitReceptor FYN +PWCOMMONS KitReceptor GRB7 +PWCOMMONS KitReceptor FGR +PWCOMMONS KitReceptor PIK3R1 +PWCOMMONS KitReceptor SPRED1 +PWCOMMONS KitReceptor SH3KBP1 +PWCOMMONS KitReceptor PTPN6 +PWCOMMONS KitReceptor STAT1 +PWCOMMONS KitReceptor STAT5B +PWCOMMONS KitReceptor CISH +PWCOMMONS KitReceptor CRK +PWCOMMONS KitReceptor JAK2 +PWCOMMONS KitReceptor PRKCB +PWCOMMONS KitReceptor STAT5A +PWCOMMONS KitReceptor LYN +PWCOMMONS KitReceptor EPOR +PWCOMMONS KitReceptor SOCS6 +PWCOMMONS KitReceptor RASA1 +PWCOMMONS KitReceptor MITF +PWCOMMONS KitReceptor RAF1 +PWCOMMONS KitReceptor HRAS +PWCOMMONS KitReceptor PIK3CG +PWCOMMONS KitReceptor INPP5D +PWCOMMONS KitReceptor CLTC +PWCOMMONS KitReceptor TNFRSF10A +PWCOMMONS KitReceptor MAPK1 +PWCOMMONS KitReceptor YES1 +PWCOMMONS KitReceptor EP300 +PWCOMMONS KitReceptor PTPN11 +PWCOMMONS KitReceptor CSF2RB +PWCOMMONS KitReceptor PLCE1 +PWCOMMONS KitReceptor FES +PWCOMMONS KitReceptor RPS6KA1 +PWCOMMONS KitReceptor +PWCOMMONS NOTCH MAGEA1 +PWCOMMONS NOTCH MAML1 +PWCOMMONS NOTCH CUL1 +PWCOMMONS NOTCH FBXW7 +PWCOMMONS NOTCH MAML2 +PWCOMMONS NOTCH RBPJ +PWCOMMONS NOTCH APP +PWCOMMONS NOTCH DLL1 +PWCOMMONS NOTCH JAK2 +PWCOMMONS NOTCH PSEN1 +PWCOMMONS NOTCH HDAC1 +PWCOMMONS NOTCH FHL1 +PWCOMMONS NOTCH NOTCH2 +PWCOMMONS NOTCH STAT3 +PWCOMMONS NOTCH RELA +PWCOMMONS NOTCH DTX1 +PWCOMMONS NOTCH EP300 +PWCOMMONS NOTCH APH1B +PWCOMMONS NOTCH NCSTN +PWCOMMONS NOTCH PSENEN +PWCOMMONS NOTCH PSEN2 +PWCOMMONS NOTCH APH1A +PWCOMMONS NOTCH TCF3 +PWCOMMONS NOTCH SKP1 +PWCOMMONS NOTCH SAP30 +PWCOMMONS NOTCH FURIN +PWCOMMONS NOTCH MAML3 +PWCOMMONS NOTCH GATA1 +PWCOMMONS NOTCH HEY1 +PWCOMMONS NOTCH NCOR2 +PWCOMMONS NOTCH LEF1 +PWCOMMONS NOTCH TLE1 +PWCOMMONS NOTCH JAG1 +PWCOMMONS NOTCH NOTCH3 +PWCOMMONS NOTCH HES6 +PWCOMMONS NOTCH NOV +PWCOMMONS NOTCH SPEN +PWCOMMONS NOTCH NFKB1 +PWCOMMONS NOTCH RBX1 +PWCOMMONS NOTCH SKP2 +PWCOMMONS NOTCH NFKBIA +PWCOMMONS NOTCH NCOR1 +PWCOMMONS NOTCH HDAC2 +PWCOMMONS NOTCH PCAF +PWCOMMONS NOTCH MAPK3 +PWCOMMONS NOTCH MFNG +PWCOMMONS NOTCH POFUT1 +PWCOMMONS NOTCH JAG2 +PWCOMMONS NOTCH DLL4 +PWCOMMONS NOTCH SMAD3 +PWCOMMONS NOTCH NUMB +PWCOMMONS NOTCH RING1 +PWCOMMONS NOTCH MAPK1 +PWCOMMONS NOTCH SMAD4 +PWCOMMONS NOTCH PIK3R2 +PWCOMMONS NOTCH YY1 +PWCOMMONS NOTCH +PWCOMMONS TGFBR CTNNB1 +PWCOMMONS TGFBR FOXO3 +PWCOMMONS TGFBR SMAD3 +PWCOMMONS TGFBR SMAD2 +PWCOMMONS TGFBR NFYB +PWCOMMONS TGFBR NFYC +PWCOMMONS TGFBR UBE2D2 +PWCOMMONS TGFBR UBE2D3 +PWCOMMONS TGFBR MAPK14 +PWCOMMONS TGFBR DAB2 +PWCOMMONS TGFBR CD44 +PWCOMMONS TGFBR JUN +PWCOMMONS TGFBR ATF3 +PWCOMMONS TGFBR LEF1 +PWCOMMONS TGFBR ZEB2 +PWCOMMONS TGFBR TGFBR2 +PWCOMMONS TGFBR EIF3I +PWCOMMONS TGFBR SKIL +PWCOMMONS TGFBR CDC16 +PWCOMMONS TGFBR RBL1 +PWCOMMONS TGFBR CDK2 +PWCOMMONS TGFBR FOS +PWCOMMONS TGFBR XPO1 +PWCOMMONS TGFBR SMURF1 +PWCOMMONS TGFBR PRKCD +PWCOMMONS TGFBR TGFBR3 +PWCOMMONS TGFBR ARRB2 +PWCOMMONS TGFBR UBE2L3 +PWCOMMONS TGFBR UBE2E1 +PWCOMMONS TGFBR STRAP +PWCOMMONS TGFBR PPP2R2A +PWCOMMONS TGFBR TGFBR1 +PWCOMMONS TGFBR CDK6 +PWCOMMONS TGFBR CDK4 +PWCOMMONS TGFBR CCND1 +PWCOMMONS TGFBR CITED1 +PWCOMMONS TGFBR CREBBP +PWCOMMONS TGFBR JUND +PWCOMMONS TGFBR ANAPC5 +PWCOMMONS TGFBR ANAPC10 +PWCOMMONS TGFBR CDC23 +PWCOMMONS TGFBR ANAPC1 +PWCOMMONS TGFBR ANAPC2 +PWCOMMONS TGFBR CDC27 +PWCOMMONS TGFBR ANAPC4 +PWCOMMONS TGFBR SMAD7 +PWCOMMONS TGFBR EP300 +PWCOMMONS TGFBR ETS1 +PWCOMMONS TGFBR CDC25A +PWCOMMONS TGFBR SMAD6 +PWCOMMONS TGFBR SP1 +PWCOMMONS TGFBR EID2 +PWCOMMONS TGFBR E2F4 +PWCOMMONS TGFBR SNX6 +PWCOMMONS TGFBR PIK3R2 +PWCOMMONS TGFBR SNIP1 +PWCOMMONS TGFBR NFYA +PWCOMMONS TGFBR ESR1 +PWCOMMONS TGFBR BTRC +PWCOMMONS TGFBR MAP2K6 +PWCOMMONS TGFBR VDR +PWCOMMONS TGFBR MYC +PWCOMMONS TGFBR RBL2 +PWCOMMONS TGFBR TP53 +PWCOMMONS TGFBR MAPK8 +PWCOMMONS TGFBR NUP153 +PWCOMMONS TGFBR NCOA1 +PWCOMMONS TGFBR SNX1 +PWCOMMONS TGFBR SKI +PWCOMMONS TGFBR MAP3K7IP1 +PWCOMMONS TGFBR MAP3K7 +PWCOMMONS TGFBR PRKAR2A +PWCOMMONS TGFBR ZFYVE9 +PWCOMMONS TGFBR TFDP2 +PWCOMMONS TGFBR CAV1 +PWCOMMONS TGFBR RB1 +PWCOMMONS TGFBR HSPA8 +PWCOMMONS TGFBR RBX1 +PWCOMMONS TGFBR CUL1 +PWCOMMONS TGFBR SKP1 +PWCOMMONS TGFBR TGFBRAP1 +PWCOMMONS TGFBR NUP214 +PWCOMMONS TGFBR STAMBPL1 +PWCOMMONS TGFBR SNX4 +PWCOMMONS TGFBR TGFB1 +PWCOMMONS TGFBR TGFB3 +PWCOMMONS TGFBR FZR1 +PWCOMMONS TGFBR HOXA9 +PWCOMMONS TGFBR ATF2 +PWCOMMONS TGFBR SDC2 +PWCOMMONS TGFBR PRKAR1B +PWCOMMONS TGFBR ENG +PWCOMMONS TGFBR PCAF +PWCOMMONS TGFBR FNTA +PWCOMMONS TGFBR ZEB1 +PWCOMMONS TGFBR HDAC1 +PWCOMMONS TGFBR TGIF1 +PWCOMMONS TGFBR COPS5 +PWCOMMONS TGFBR RUNX2 +PWCOMMONS TGFBR TP73 +PWCOMMONS TGFBR KPNB1 +PWCOMMONS TGFBR FOXH1 +PWCOMMONS TGFBR JUNB +PWCOMMONS TGFBR PRKCB +PWCOMMONS TGFBR SNX2 +PWCOMMONS TGFBR FKBP1A +PWCOMMONS TGFBR CTCF +PWCOMMONS TGFBR TFDP1 +PWCOMMONS TGFBR SNW1 +PWCOMMONS TGFBR FOXO1 +PWCOMMONS TGFBR SMURF2 +PWCOMMONS TGFBR CCNB2 +PWCOMMONS TGFBR FOXO4 +PWCOMMONS TGFBR ROCK1 +PWCOMMONS TGFBR CDC2 +PWCOMMONS TGFBR MEF2A +PWCOMMONS TGFBR PRKCG +PWCOMMONS TGFBR FOSB +PWCOMMONS TGFBR DAXX +PWCOMMONS TGFBR AR +PWCOMMONS TGFBR SUMO1 +PWCOMMONS TGFBR YAP1 +PWCOMMONS TGFBR CDKN1A +PWCOMMONS TGFBR UBE2D1 +PWCOMMONS TGFBR +PWCOMMONS TNF alpha/NF-kB TNFRSF1B +PWCOMMONS TNF alpha/NF-kB TRAF2 +PWCOMMONS TNF alpha/NF-kB BIRC3 +PWCOMMONS TNF alpha/NF-kB KPNA2 +PWCOMMONS TNF alpha/NF-kB NFKBIB +PWCOMMONS TNF alpha/NF-kB NFKBIA +PWCOMMONS TNF alpha/NF-kB RPS6KB2 +PWCOMMONS TNF alpha/NF-kB TRAF4 +PWCOMMONS TNF alpha/NF-kB TNFAIP3 +PWCOMMONS TNF alpha/NF-kB CASP8 +PWCOMMONS TNF alpha/NF-kB MAP3K7IP1 +PWCOMMONS TNF alpha/NF-kB MAP3K7IP2 +PWCOMMONS TNF alpha/NF-kB SKP1 +PWCOMMONS TNF alpha/NF-kB BTRC +PWCOMMONS TNF alpha/NF-kB TBK1 +PWCOMMONS TNF alpha/NF-kB TNFRSF11A +PWCOMMONS TNF alpha/NF-kB RIPK1 +PWCOMMONS TNF alpha/NF-kB CYLD +PWCOMMONS TNF alpha/NF-kB IKBKG +PWCOMMONS TNF alpha/NF-kB NFKB1 +PWCOMMONS TNF alpha/NF-kB POLR2H +PWCOMMONS TNF alpha/NF-kB RASAL2 +PWCOMMONS TNF alpha/NF-kB TRIB3 +PWCOMMONS TNF alpha/NF-kB RELB +PWCOMMONS TNF alpha/NF-kB KPNA3 +PWCOMMONS TNF alpha/NF-kB NFKBIE +PWCOMMONS TNF alpha/NF-kB NKIRAS1 +PWCOMMONS TNF alpha/NF-kB HIST3H3 +PWCOMMONS TNF alpha/NF-kB NFKB2 +PWCOMMONS TNF alpha/NF-kB RPL6 +PWCOMMONS TNF alpha/NF-kB MAP3K14 +PWCOMMONS TNF alpha/NF-kB RIPK2 +PWCOMMONS TNF alpha/NF-kB CAV1 +PWCOMMONS TNF alpha/NF-kB PEBP1 +PWCOMMONS TNF alpha/NF-kB AZI2 +PWCOMMONS TNF alpha/NF-kB TNFRSF1A +PWCOMMONS TNF alpha/NF-kB TNF +PWCOMMONS TNF alpha/NF-kB HSP90AA1 +PWCOMMONS TNF alpha/NF-kB MAP3K3 +PWCOMMONS TNF alpha/NF-kB TNIP2 +PWCOMMONS TNF alpha/NF-kB NFKBIZ +PWCOMMONS TNF alpha/NF-kB PML +PWCOMMONS TNF alpha/NF-kB CASP8AP2 +PWCOMMONS TNF alpha/NF-kB REL +PWCOMMONS TNF alpha/NF-kB MAP3K8 +PWCOMMONS TNF alpha/NF-kB HDAC2 +PWCOMMONS TNF alpha/NF-kB HDAC1 +PWCOMMONS TNF alpha/NF-kB CSNK2A2 +PWCOMMONS TNF alpha/NF-kB CSNK2A1 +PWCOMMONS TNF alpha/NF-kB CSNK2B +PWCOMMONS TNF alpha/NF-kB IKBKE +PWCOMMONS TNF alpha/NF-kB CHUK +PWCOMMONS TNF alpha/NF-kB HSP90AB1 +PWCOMMONS TNF alpha/NF-kB FANCD2 +PWCOMMONS TNF alpha/NF-kB PFDN2 +PWCOMMONS TNF alpha/NF-kB SRC +PWCOMMONS TNF alpha/NF-kB STAT1 +PWCOMMONS TNF alpha/NF-kB NR2C2 +PWCOMMONS TNF alpha/NF-kB POLR1A +PWCOMMONS TNF alpha/NF-kB RPL30 +PWCOMMONS TNF alpha/NF-kB USP2 +PWCOMMONS TNF alpha/NF-kB GAB1 +PWCOMMONS TNF alpha/NF-kB BAG4 +PWCOMMONS TNF alpha/NF-kB ZFAND5 +PWCOMMONS TNF alpha/NF-kB FKBP5 +PWCOMMONS TNF alpha/NF-kB CASP10 +PWCOMMONS TNF alpha/NF-kB FADD +PWCOMMONS TNF alpha/NF-kB TRADD +PWCOMMONS TNF alpha/NF-kB CFLAR +PWCOMMONS TNF alpha/NF-kB AKAP8 +PWCOMMONS TNF alpha/NF-kB COMMD1 +PWCOMMONS TNF alpha/NF-kB UBE2D3 +PWCOMMONS TNF alpha/NF-kB RNF25 +PWCOMMONS TNF alpha/NF-kB YWHAH +PWCOMMONS TNF alpha/NF-kB AKT2 +PWCOMMONS TNF alpha/NF-kB RIPK3 +PWCOMMONS TNF alpha/NF-kB CRADD +PWCOMMONS TNF alpha/NF-kB TRAF6 +PWCOMMONS TNF alpha/NF-kB PSMC2 +PWCOMMONS TNF alpha/NF-kB KPNA6 +PWCOMMONS TNF alpha/NF-kB BIRC2 +PWCOMMONS TNF alpha/NF-kB CDC37 +PWCOMMONS TNF alpha/NF-kB PSMD13 +PWCOMMONS TNF alpha/NF-kB YWHAZ +PWCOMMONS TNF alpha/NF-kB NSMAF +PWCOMMONS TNF alpha/NF-kB GNB2L1 +PWCOMMONS TNF alpha/NF-kB UBE2I +PWCOMMONS TNF alpha/NF-kB PRKACA +PWCOMMONS TNF alpha/NF-kB KIAA1967 +PWCOMMONS TNF alpha/NF-kB SUMO1 +PWCOMMONS TNF alpha/NF-kB SMARCE1 +PWCOMMONS TNF alpha/NF-kB TRAF3 +PWCOMMONS TNF alpha/NF-kB SMARCA4 +PWCOMMONS TNF alpha/NF-kB PSMD1 +PWCOMMONS TNF alpha/NF-kB MAP3K7IP3 +PWCOMMONS TNF alpha/NF-kB MCM5 +PWCOMMONS TNF alpha/NF-kB PSMC1 +PWCOMMONS TNF alpha/NF-kB SMARCC1 +PWCOMMONS TNF alpha/NF-kB POLR1C +PWCOMMONS TNF alpha/NF-kB G3BP2 +PWCOMMONS TNF alpha/NF-kB CASP2 +PWCOMMONS TNF alpha/NF-kB RPL4 +PWCOMMONS TNF alpha/NF-kB RPS13 +PWCOMMONS TNF alpha/NF-kB PTPN11 +PWCOMMONS TNF alpha/NF-kB CD3EAP +PWCOMMONS TNF alpha/NF-kB NKIRAS2 +PWCOMMONS TNF alpha/NF-kB POLR1E +PWCOMMONS TNF alpha/NF-kB HDAC6 +PWCOMMONS TNF alpha/NF-kB PSMD6 +PWCOMMONS TNF alpha/NF-kB CASP3 +PWCOMMONS TNF alpha/NF-kB PEG3 +PWCOMMONS TNF alpha/NF-kB KTN1 +PWCOMMONS TNF alpha/NF-kB CUL1 +PWCOMMONS TNF alpha/NF-kB PSMD7 +PWCOMMONS TNF alpha/NF-kB NLRP4 +PWCOMMONS TNF alpha/NF-kB PSMD12 +PWCOMMONS TNF alpha/NF-kB GTF2I +PWCOMMONS TNF alpha/NF-kB FLNA +PWCOMMONS TNF alpha/NF-kB PSMC3 +PWCOMMONS TNF alpha/NF-kB COPS3 +PWCOMMONS TNF alpha/NF-kB RPL8 +PWCOMMONS TNF alpha/NF-kB DAP +PWCOMMONS TNF alpha/NF-kB MAP3K2 +PWCOMMONS TNF alpha/NF-kB FBL +PWCOMMONS TNF alpha/NF-kB UNC5CL +PWCOMMONS TNF alpha/NF-kB POLR2L +PWCOMMONS TNF alpha/NF-kB ACTL6A +PWCOMMONS TNF alpha/NF-kB YWHAG +PWCOMMONS TNF alpha/NF-kB PAPOLA +PWCOMMONS TNF alpha/NF-kB TIFA +PWCOMMONS TNF alpha/NF-kB CASP7 +PWCOMMONS TNF alpha/NF-kB HSPB1 +PWCOMMONS TNF alpha/NF-kB TRAF5 +PWCOMMONS TNF alpha/NF-kB WDR68 +PWCOMMONS TNF alpha/NF-kB POLR1D +PWCOMMONS TNF alpha/NF-kB ALPL +PWCOMMONS TNF alpha/NF-kB CDC34 +PWCOMMONS TNF alpha/NF-kB TANK +PWCOMMONS TNF alpha/NF-kB POLR1B +PWCOMMONS TNF alpha/NF-kB TRAIP +PWCOMMONS TNF alpha/NF-kB DDX3X +PWCOMMONS TNF alpha/NF-kB PKN1 +PWCOMMONS TNF alpha/NF-kB PPP2CA +PWCOMMONS TNF alpha/NF-kB PDCD2 +PWCOMMONS TNF alpha/NF-kB RPS11 +PWCOMMONS TNF alpha/NF-kB MCC +PWCOMMONS TNF alpha/NF-kB CREBBP +PWCOMMONS TNF alpha/NF-kB KCNQ1 +PWCOMMONS TNF alpha/NF-kB CAPN3 +PWCOMMONS TNF alpha/NF-kB MTIF2 +PWCOMMONS TNF alpha/NF-kB FBXW11 +PWCOMMONS TNF alpha/NF-kB BCL7A +PWCOMMONS TNF alpha/NF-kB LRPPRC +PWCOMMONS TNF alpha/NF-kB PRKCZ +PWCOMMONS TNF alpha/NF-kB MARK2 +PWCOMMONS TNF alpha/NF-kB YWHAB +PWCOMMONS TNF alpha/NF-kB PPP1R13L +PWCOMMONS TNF alpha/NF-kB UBE2D2 +PWCOMMONS TNF alpha/NF-kB PPP6C +PWCOMMONS TNF alpha/NF-kB IKBKAP +PWCOMMONS TNF alpha/NF-kB PSMB5 +PWCOMMONS TNF alpha/NF-kB SMARCB1 +PWCOMMONS TNF alpha/NF-kB TXLNA +PWCOMMONS TNF alpha/NF-kB DPF2 +PWCOMMONS TNF alpha/NF-kB MCM7 +PWCOMMONS TNF alpha/NF-kB YWHAQ +PWCOMMONS TNF alpha/NF-kB FAF1 +PWCOMMONS TNF alpha/NF-kB PSMD3 +PWCOMMONS TNF alpha/NF-kB YWHAE +PWCOMMONS TNF alpha/NF-kB +PWCOMMONS Wnt AXIN1 +PWCOMMONS Wnt DVL3 +PWCOMMONS Wnt CUL1 +PWCOMMONS Wnt SKP1 +PWCOMMONS Wnt BTRC +PWCOMMONS Wnt APC +PWCOMMONS Wnt SFRP2 +PWCOMMONS Wnt RUVBL1 +PWCOMMONS Wnt TBP +PWCOMMONS Wnt LEF1 +PWCOMMONS Wnt HIPK2 +PWCOMMONS Wnt DVL2 +PWCOMMONS Wnt CSNK1D +PWCOMMONS Wnt PIN1 +PWCOMMONS Wnt MAPK8IP1 +PWCOMMONS Wnt MAPK8 +PWCOMMONS Wnt PIAS4 +PWCOMMONS Wnt CSNK1E +PWCOMMONS Wnt SMAD3 +PWCOMMONS Wnt LRP6 +PWCOMMONS Wnt ARRB2 +PWCOMMONS Wnt FZD4 +PWCOMMONS Wnt CSNK2A2 +PWCOMMONS Wnt CSNK2A1 +PWCOMMONS Wnt CDC2 +PWCOMMONS Wnt MAP3K7 +PWCOMMONS Wnt FZD5 +PWCOMMONS Wnt RUNX2 +PWCOMMONS Wnt CSNK2B +PWCOMMONS Wnt WNT1 +PWCOMMONS Wnt FZD1 +PWCOMMONS Wnt PRKCB +PWCOMMONS Wnt MAGI3 +PWCOMMONS Wnt WNT3 +PWCOMMONS Wnt TFAP2A +PWCOMMONS Wnt DAB2 +PWCOMMONS Wnt PRKCA +PWCOMMONS Wnt DLG1 +PWCOMMONS Wnt DLG2 +PWCOMMONS Wnt LRP5 +PWCOMMONS Wnt WNT3A +PWCOMMONS Wnt PAX2 +PWCOMMONS Wnt SENP2 +PWCOMMONS Wnt SOX1 +PWCOMMONS Wnt CAMK2D +PWCOMMONS Wnt CAMK2B +PWCOMMONS Wnt MARK2 +PWCOMMONS Wnt DAAM1 +PWCOMMONS Wnt PPP2R5B +PWCOMMONS Wnt MAP3K4 +PWCOMMONS Wnt EP300 +PWCOMMONS Wnt DKK1 +PWCOMMONS Wnt CDH1 +PWCOMMONS Wnt CDX1 +PWCOMMONS Wnt RHOA +PWCOMMONS Wnt CTBP1 +PWCOMMONS Wnt WNT2 +PWCOMMONS Wnt JUP +PWCOMMONS Wnt SUMO1 +PWCOMMONS Wnt SFRP1 +PWCOMMONS Wnt LRP1 +PWCOMMONS Wnt WNT4 +PWCOMMONS Wnt PRKCG +PWCOMMONS Wnt FZD7 +PWCOMMONS Wnt BCL9 +PWCOMMONS Wnt CDC25C +PWCOMMONS Wnt FHL2 +PWCOMMONS Wnt BRD7 +PWCOMMONS Wnt WNT7A +PWCOMMONS Wnt TAX1BP3 +PWCOMMONS Wnt NR5A1 +PWCOMMONS Wnt +PWCOMMONS TRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_PROCESSING.html TRNT1 +PWCOMMONS TRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_PROCESSING.html ADAT1 +PWCOMMONS TRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_PROCESSING.html SARS +PWCOMMONS TRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_PROCESSING.html METTL1 +PWCOMMONS TRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_PROCESSING.html FARS2 +PWCOMMONS TRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_PROCESSING.html AARS +PWCOMMONS TRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_PROCESSING.html THG1L +PWCOMMONS TRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_PROCESSING.html SSB +PWCOMMONS TRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_PROCESSING.html POP4 +PWCOMMONS TRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_PROCESSING.html NSUN2 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html UAP1 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html CHIA +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html GNPDA1 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html GNE +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html CHST2 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html CHST4 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html CHST5 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html NAGK +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html EXTL2 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html SLC35A3 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html CHIT1 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html ST3GAL2 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html CHST7 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html LARGE +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html CHST6 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html ST3GAL6 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html B4GALNT2 +PWCOMMONS AMINO SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_SUGAR_METABOLIC_PROCESS.html NANP +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html BTRC +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html USE1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html RNF217 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html RNASEH1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ISG20 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html CDKN2A +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html CPA2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html FBXO22 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ANAPC2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ANAPC5 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html DFFA +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html DFFB +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ANAPC4 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBR3 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html CECR2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html RNASEH2A +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UHRF2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBR5 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html MGAM +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html FBXL4 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html AMFR +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html XRN2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html FZR1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html DERL2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html DERL1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html SYVN1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html PABPC4 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ANAPC10 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html PPT1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html NEDD8 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2V2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html HSPA1B +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html CHIT1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ARIH1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2D3 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2D2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html INS +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html RNF11 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2D1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html NTHL1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html FBXO7 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html NPLOC4 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html SMG6 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html SMG5 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html SMG7 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html SMG1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html CDC23 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html CIDEA +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html PCNP +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html CDC20 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html TPD52L1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2L3 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html PSMC5 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html VCP +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html POP1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html HGS +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html SMURF2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html SMURF1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2E1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html KIAA0368 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html TSG101 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2G1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2G2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html BNIP3 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html AUH +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ZFP36 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ABCE1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2A +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html AIFM1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UFD1L +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html CYCS +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2I +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html PRKCG +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2H +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2C +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2B +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2N +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE2K +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html GAA +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ERN2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html MDM2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html SIAH1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBB +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html SIAH2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html MDM4 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE3A +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html EGLN2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html STUB1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html EDEM1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ERCC5 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html SQSTM1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html RNASET2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html PRSS2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ERCC3 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ERCC4 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html USP33 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ERCC1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html ERCC2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html RNF144B +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UPF2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html FOXL2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html RNASE2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html RNASE3 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE4A +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html UBE4B +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html RNASE6 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html PARK2 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html SOD1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html SELS +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html PSMD14 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html GSPT1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html PPP1R8 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html BAX +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html FAF1 +PWCOMMONS BIOPOLYMER CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_CATABOLIC_PROCESS.html PYGB +PWCOMMONS GLUCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCAN_METABOLIC_PROCESS.html PYGM +PWCOMMONS GLUCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCAN_METABOLIC_PROCESS.html GCK +PWCOMMONS GLUCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCAN_METABOLIC_PROCESS.html GSK3B +PWCOMMONS GLUCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCAN_METABOLIC_PROCESS.html MGAM +PWCOMMONS GLUCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCAN_METABOLIC_PROCESS.html EPM2A +PWCOMMONS GLUCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCAN_METABOLIC_PROCESS.html GAA +PWCOMMONS GLUCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCAN_METABOLIC_PROCESS.html GYS2 +PWCOMMONS GLUCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCAN_METABOLIC_PROCESS.html GYG2 +PWCOMMONS GLUCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCAN_METABOLIC_PROCESS.html DYRK2 +PWCOMMONS GLUCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCAN_METABOLIC_PROCESS.html PYGB +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html ERCC8 +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html DZIP3 +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html HUWE1 +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html DDB2 +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html UBE2V1 +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html UBE2V2 +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html UBE3C +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html AMFR +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html TRAF6 +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html UBE2D1 +PWCOMMONS PROTEIN POLYUBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYUBIQUITINATION.html STUB1 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html SYT1 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html TP63 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html AASS +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html HPRT1 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html IGF1R +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html NOD2 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html NOD1 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html DGKD +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html APOE +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html UPK1A +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html GPX3 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html GOPC +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html TRPV5 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html PEX14 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html CDA +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html TGM3 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html INSR +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html AKR1C1 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html BCL10 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html IRAK1 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html SCUBE3 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html ALDH5A1 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html CCDC88C +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html SCUBE1 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html MUC20 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html TP53 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html MALT1 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html ACTN2 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html NLRP3 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html SEPT11 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html RAD51 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html STOM +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html VWF +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html BAX +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html ATPIF1 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html AMFR +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html EIF2AK3 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html SEPT7 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html MAP3K11 +PWCOMMONS PROTEIN OLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_OLIGOMERIZATION.html SEPT9 +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html EID2 +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html SNX6 +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html SMAD4 +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html CIDEA +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html SMAD3 +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html SMAD2 +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html TGFB1 +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html CITED2 +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html CDKN1C +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html PEG10 +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html CDKN2B +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html HIPK2 +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html IL17F +PWCOMMONS REGULATION OF TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html ENG +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html MMS19 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD51C +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html XRCC4 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html XRCC3 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html XRCC2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html XRCC6 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html SETX +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html IGHMBP2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html MUTYH +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD21 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html CDKN2D +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html PMS2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html PMS1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html CIB1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html POLL +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html POLI +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html POLH +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html POLG +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html LIG1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html POLE +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html LIG3 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD9A +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html LIG4 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html PNKP +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RFC3 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RPAIN +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD17 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD23B +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html HMGB1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html HMGB2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html BLM +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD23A +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html MRE11A +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html HUS1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html UBE2V1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html UBE2V2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html XAB2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html POLE2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD51L1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html POLQ +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ASF1A +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html NTHL1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RECQL4 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RECQL5 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html TREX2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html BRCA2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ATR +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD54L +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ATM +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html BRCA1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html VCP +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html POLD1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html TDG +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD54B +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html PARP3 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html SMC1A +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ABL1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html PARP1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html NBN +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html UVRAG +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html MLH1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html PMS2L1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html FANCG +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html CCNO +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html FANCA +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html FANCC +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html UBE2A +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html REV1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html DDB1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html GTF2H4 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html TP53 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html APTX +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html PRKCG +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD52 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html UBE2B +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD50 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html XRCC6BP1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RAD51 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html GTF2H1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RBBP8 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html UBE2N +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RECQL +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html XPC +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html BTG2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html GADD45G +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html DDB2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RUVBL2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html NHEJ1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html GADD45A +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html WRNIP1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html UNG +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html POLA1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html SMUG1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html RPA1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ERCC8 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ERCC5 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html SUMO1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ERCC6 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ERCC3 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html APEX1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ERCC4 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ERCC1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html FEN1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ERCC2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html EXO1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html MSH6 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html UPF1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html MSH3 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html MSH2 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html CEBPG +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html MSH5 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html TNP1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html SOD1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html TP73 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ATRX +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html MPG +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html MNAT1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ATXN3 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html CSNK1D +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html CSNK1E +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html ALKBH1 +PWCOMMONS DNA REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPAIR.html OGG1 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html TLR1 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html EIF5A +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html TNFRSF8 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html TLR3 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html TLR4 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html TLR6 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html TLR7 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html TLR8 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html TLR9 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html AZU1 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html APOA2 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html BCL3 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html DAZL +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html LTB +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html EBI3 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html SPN +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html SAMD4A +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html CD28 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html EIF2B5 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html IL4 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html BCL10 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html IL6 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html DAZ1 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html IL29 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html PRG3 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html IL27 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html CEBPG +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html IL9 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html CD276 +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html BOLL +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html EREG +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html GLMN +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html IL12B +PWCOMMONS POSITIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSLATION.html IRF4 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IL28RA +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html DUOX2 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html BNIP3 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html APOBEC3G +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html TLR7 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html CXCL12 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html APOBEC3F +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html TLR8 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html ISG20 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html CXCR4 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IFNK +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IFNGR2 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html FOSL1 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IFNGR1 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html ABCE1 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html SPACA3 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IL29 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IFI44 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html HBXIP +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IFNAR1 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html LILRB1 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html TARBP2 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IFNAR2 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html CCDC130 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html C19ORF2 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html TNF +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html FGR +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html POLA1 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html RSAD2 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IFNW1 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html CCL8 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IVNS1ABP +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html CCL5 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html CCL4 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html BANF1 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html CCL22 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IFNA7 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html BCL2 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html PRKRA +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IFNA4 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html BCL3 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html PTPRC +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html CREBZF +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html CCL19 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html TRIM22 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html CCL11 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IRF7 +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html BNIP3L +PWCOMMONS RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_VIRUS.html IFNA17 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MEF2C +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html KCNH1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html POU6F1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MEF2B +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MYOD1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html AEBP1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MEF2A +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MYBPC3 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html UTRN +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html TTN +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html TGFB1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html CXCL10 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html GATA6 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MKX +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MKL2 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html CHRNA1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html IFRD1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html BOC +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html EGR3 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html ACTA1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MYH3 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html TAZ +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html NRD1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MYH7 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MBNL1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MYH6 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html KRT19 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html GYLTL1B +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html SMTN +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html TAGLN +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html SGCG +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html ITGB1BP2 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html SIX1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html VAMP5 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html GAA +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html SGCD +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html SGCE +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html UBB +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html ADAM12 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html SGCA +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html SGCB +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MYL6 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html SRI +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html ACHE +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html CTF1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MRAS +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html FHL3 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html ITGA11 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MYEF2 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html CACNB2 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MTM1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MUSK +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html SPEG +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MYL6B +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html TEAD4 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html COL6A3 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html EMD +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html COL4A4 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MYF6 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html BMP4 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html FKTN +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html FOXL2 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html EVC +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html TBX3 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html NF1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MYF5 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MSTN +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html IGF1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html CENPF +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MYOZ1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html CBY1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html TNNI3 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html COL5A3 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html SOD1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html CSRP3 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html CAPN3 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html SIRT2 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html LAMA2 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html HDAC5 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MEF2D +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html HDAC4 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html NOTCH1 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html LARGE +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MAPK12 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html SVIL +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html ITGA7 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html MYH11 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html CACNA1H +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html HBEGF +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html HDAC9 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html TCF12 +PWCOMMONS MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_DEVELOPMENT.html IGFBP3 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html PPARG +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html FOXO3 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html SART1 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html TGFB2 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html CALCA +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html ACVR1B +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html ADIG +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html ZAP70 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html VWC2 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html ACIN1 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html RUNX1 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html BOC +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html BMP4 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html IL7 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html TBX5 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html SOCS5 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html IL20 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html ACVR2A +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html INHBA +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html NME2 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html BTG1 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html ETS1 +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html SCIN +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html BMPR1B +PWCOMMONS POSITIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_DIFFERENTIATION.html IGFBP3 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html NBN +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html RINT1 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html PML +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html KNTC1 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html TTK +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html BRSK1 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html TGFB1 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html ATM +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html TRIAP1 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html MAD2L1 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html CDKN2B +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html PCBP4 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html ZWINT +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html BUB1 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html BUB1B +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html GML +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html MAD2L2 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html CHFR +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html CCNA2 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html RAD17 +PWCOMMONS MITOTIC CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE_CHECKPOINT.html ZW10 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html SHROOM1 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html SHROOM2 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html ARHGEF2 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html LIMA1 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html ACTA1 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html FSCN2 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html NF2 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html BCAR1 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html FSCN1 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html EVL +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html EPB49 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html SORBS3 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html EZR +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html RND1 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html SORBS1 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html TSC1 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html PLA2G1B +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html KPTN +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html SPTA1 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html DBN1 +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html RHOF +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html ARHGEF10L +PWCOMMONS ACTIN FILAMENT ORGANIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_ORGANIZATION.html DLG1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html PDIA2 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html RP2 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html PDIA6 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html PDIA5 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html CCT3 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html AIP +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html BAG5 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html BAG4 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html PIGK +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html APOA2 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html BAG2 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html SEP15 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html DNAJC7 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html MKKS +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html ARL2 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html CLN3 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html APCS +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html HSP90AA1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html ERP29 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html TBCE +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html CCT6A +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html CLPX +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html LRPAP1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html ST13 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html TBCA +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html TBCD +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html PFDN4 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html TBCC +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html RUVBL2 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html FKBP9 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html FKBP6 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html FKBP5 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html FKBP4 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html NFYC +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html LMAN1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html PIN4 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html STUB1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html GLRX2 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html TTC1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html CCT6B +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html TOR1A +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html DNAJA1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html HSPE1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html ERO1L +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html QSOX1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html DNAJA3 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html HSPBP1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html CCT7 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html ATF6 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html PPIH +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html CCT4 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html PPIA +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html HSPA4L +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html DNAJB2 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html AHSA1 +PWCOMMONS PROTEIN FOLDING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_FOLDING.html DNAJB6 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD2 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ALS2 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD1 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html RALBP1 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP27 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ARF6 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html TSC1 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html RAC1 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ABRA +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD5 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD6 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD3 +PWCOMMONS REGULATION OF RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD4 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html NRP2 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html CDK5R1 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html NRP1 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html NRXN3 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html OTX2 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html DPYSL5 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html NRXN1 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html GLI2 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html SLIT1 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html SLIT2 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html SHH +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html SEMA4F +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html KAL1 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html OPHN1 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html CNTN4 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html SIAH1 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html SEMA3B +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html UNC5C +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html UBB +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html SPON2 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html FEZ2 +PWCOMMONS AXON GUIDANCE http://www.broadinstitute.org/gsea/msigdb/cards/AXON_GUIDANCE.html FEZ1 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html HSD17B11 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html HACL1 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html PPARA +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html PPARD +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html ECH1 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html HSD17B14 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html ECHS1 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html PPT1 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html HADHB +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html APOA4 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html APOA5 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html HSD17B6 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html BDH2 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html ANGPTL3 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html CPT1B +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html STS +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html ACADM +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html CYP46A1 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html ACADS +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html CIDEA +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html PNPLA3 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html CPT1A +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html HAO1 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html ACADVL +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html CEL +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html YWHAH +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html GLA +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html PRDX6 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html HAO2 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html UGT2B4 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html NEU3 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html PLA2G4C +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html PLA2G4B +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html AKR1D1 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html SMPD4 +PWCOMMONS LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_CATABOLIC_PROCESS.html SMPD3 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PGS1 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html IMPA1 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html SGMS2 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html GPAA1 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html SGMS1 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGK +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html APOA1 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html LPCAT1 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGF +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html DGKE +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGG +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGH +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html LCAT +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGB +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PEMT +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGC +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html ETNK1 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PCYT1B +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PCYT2 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html AGPAT2 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html AGPAT1 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGA +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGZ +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGY +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIK3C2A +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html FADS1 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGV +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PI4KA +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGU +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGT +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGS +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PI4KB +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html CHPT1 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGO +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html CD81 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PI4K2A +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html DPM1 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html DPM2 +PWCOMMONS PHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html DPM3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FST +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF254 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html EPC1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SIN3A +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html WWP1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF396 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SUPT5H +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TWIST2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TWIST1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GTPBP4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZHX1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MECP2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZHX2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZHX3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RAD9A +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF238 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PIAS4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TGIF1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PRDM1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SUDS3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ENPP7 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html VPS72 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NR1H2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HEXIM2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html DRAP1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HEXIM1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CDA +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html BCOR +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NKX2-5 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TCF25 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NKRF +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html DMBX1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MDFI +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html BMP2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html KLF12 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PHB +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html KLF10 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html KLF11 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SMAD4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RYBP +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html S100A11 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SMAD3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SMAD2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ATR +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html UBP1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NR1I2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html JAZF1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RBPJ +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html KLF4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZBTB32 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PPARD +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SPI1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TP63 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZEB1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TERF2IP +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HSBP1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GLI2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html DAXX +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF345 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CDT1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF350 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GFI1B +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF148 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF281 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ATF7IP +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CDC6 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NDUFA13 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TLE1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FOSB +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MXD4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CHMP1A +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html EREG +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GRM8 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF136 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RIPPLY1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NSD1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZMYND11 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PML +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZBTB16 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF177 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF174 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SUMO1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SET +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html LANCL2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GATAD2A +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PER1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html BCL3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PEX14 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html BCL6 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SUPT4H1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FOXD3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TBX3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TBX2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GMNN +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF24 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TRIM27 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TNP1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ILF3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PHF12 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SNAI2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html STAT3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF157 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html YAF2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PHF21A +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RBM9 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TCEAL1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TGFB1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MYST1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MYST4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MYST3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF593 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF189 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NR0B2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CSDA +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NR0B1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FOXN3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PA2G4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SMARCE1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TIMELESS +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RAD17 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html EID1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HMGB1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html EID2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GCLC +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SNX6 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TIPIN +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ELK3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html VDR +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MEIS2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RUNX2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HELLS +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF423 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CREBZF +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SNW1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html UIMC1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HDAC5 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SMARCC2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html DNMT1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RFX3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HDAC8 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PDZD3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html E2F1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RSF1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ARID4A +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html E2F6 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html DEDD +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NR6A1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF202 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CTCF +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PAWR +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PDCD4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MEN1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PCGF6 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ATP8B1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html POU4F2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NRG1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NFX1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html KHDRBS1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html LDB1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ARID5B +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SLA2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ARID5A +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RB1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NRIP1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html BPTF +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MDM2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ERN2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MDM4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CUX1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html COMMD7 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZFP161 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GLIS3 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ING4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html BCLAF1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TNF +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GLIS2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GLIS1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CALCA +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ORC2L +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TSPYL2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html POU2F1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ERCC4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ERCC1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TERF2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ENO1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NF2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html VHL +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SIRT4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CENPF +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SIRT5 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CBY1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SIRT1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SIRT2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ATXN1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ID2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ID1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html DR1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html IRF7 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html IRF8 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GRLF1 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html IRF2 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ID4 +PWCOMMONS NEGATIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ID3 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html SEPT5 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html SEPT4 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html PRC1 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html DIAPH2 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html AURKC +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html NUSAP1 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html BRCA2 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html ANLN +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html BIRC5 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html RACGAP1 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html MYH9 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html DCTN3 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html INCENP +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html RAB35 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html CNTROB +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html SEPT6 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html SEPT7 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html RASA1 +PWCOMMONS CYTOKINESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINESIS.html MYH10 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SRPK2 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html CRNKL1 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SNRPD1 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SF1 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SNRPD2 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SF3A2 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SFRS1 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SF3A1 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SF3A3 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SFRS6 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SFRS5 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SFRS8 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SFRS9 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html USP39 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SLU7 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SFRS2IP +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html SIP1 +PWCOMMONS SPLICEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/SPLICEOSOME_ASSEMBLY.html TXNL4A +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html IMPA1 +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html GPAA1 +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGK +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html APOA1 +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGF +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGG +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGH +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html LCAT +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PEMT +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGB +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGC +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PCYT1B +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html AGPAT2 +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html AGPAT1 +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGA +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGZ +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGY +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIK3C2A +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGV +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGU +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PI4KA +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGT +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGS +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PI4KB +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PIGO +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html CD81 +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html PI4K2A +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html DPM1 +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html DPM2 +PWCOMMONS GLYCEROPHOSPHOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_BIOSYNTHETIC_PROCESS.html DPM3 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html FHIT +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html ADCY7 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html CTPS +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html FIGNL1 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html PGD +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html OXER1 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html NT5M +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html NDUFS1 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html NT5C +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html ALDH6A1 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html NUDT4 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html NUDT3 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html NUDT5 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html OLA1 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html DGUOK +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html GMPS +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html PTHLH +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html NME4 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html PNKP +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html NME5 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html PGLS +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html UMPS +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html UCN2 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html ADM +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html GRM8 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html ADK +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html PRPS1 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html ME1 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html ADSS +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html ADORA2A +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html DCK +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html ABCA1 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html PPAT +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html TYMS +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html TYMP +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html PTH +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html REXO2 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html CDA +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html C16ORF7 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html ENTPD4 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html DCTD +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html ERH +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html AK5 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html ACLY +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html AMPD3 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html CTNS +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html FPGS +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html GUK1 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html PDZD3 +PWCOMMONS NUCLEOBASENUCLEOSIDE AND NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDE_AND_NUCLEOTIDE_METABOLIC_PROCESS.html PAICS +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html HTATIP2 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html TNF +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html PDIA3 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html NFKBIE +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html TNFSF14 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html CDH1 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html MXI1 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html GLI3 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html TGFB1 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html AKT1 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html CEP57 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html ZFYVE9 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html BCL3 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html BCL6 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html NCKIPSD +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html RANBP2 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html TPR +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html TNPO1 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html KPNB1 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html MDFI +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html FYB +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html MCM3AP +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html NF1 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html PPP1R10 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html SMAD3 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html NLRP3 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html HNRNPA1 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html NFKBIL1 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html FLNA +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html NFKBIL2 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html PPIH +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html CBLB +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html RPAIN +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html TRPS1 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html NUP205 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html F2 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html PTTG1IP +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html NLRP12 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html KPNA6 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html KPNA5 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html FAF1 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html KPNA4 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html TRIP6 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html KPNA3 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html KPNA2 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html RERE +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html KPNA1 +PWCOMMONS NUCLEAR IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_IMPORT.html F2R +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html ITLN1 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html IL31RA +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CLCF1 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html ANG +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html EGF +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html EGFR +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html BMP4 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html BCL10 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html IL3 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html IL5 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html IL29 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html LYN +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html HCLS1 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html IL20 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CCND1 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CARD14 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html EREG +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CCND3 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CD80 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html AKTIP +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CCND2 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CD81 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html IL12A +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html GLMN +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html PPP2R4 +PWCOMMONS POSITIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html TNK2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html ALS2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html RAB3GAP2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html GNA15 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html RAB3GAP1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html TNFSF15 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html PMAIP1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html EDNRA +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html GPX1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html NLRC4 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html APOA2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html CDKN2A +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html CASP9 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html CASP8AP2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html NMUR1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html ANG +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html CDKN2D +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html NMUR2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html APOA5 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html RGN +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html PLCB2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html DHCR24 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html EGFR +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html C5AR1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html AIFM3 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html CCKBR +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html RALBP1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html CYCS +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html TP53 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html ARHGAP27 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html NLRP3 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html HBXIP +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html NLRP2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html BCL2L10 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html THY1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html TNNT2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html GNAQ +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html IFNB1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html SAPS3 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html LCK +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html F2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html ERN1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html ATPIF1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html FGD2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html FGD1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html APOC2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html SFN +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html MOAP1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html MTCH1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html DIABLO +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html FGD5 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html ANGPTL3 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html FGD6 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html FGD3 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html FGD4 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html ANGPTL4 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html HIP1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html COL4A3 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html CARD8 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html FOXL2 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html NF1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html SMAD3 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html BIRC5 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html STAT1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html TSC1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html VCP +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html BBC3 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html IFT57 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html BAX +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html AVPR1B +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html AVPR1A +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html PPP2R4 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html APAF1 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html DNAJB6 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html IFI6 +PWCOMMONS REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HYDROLASE_ACTIVITY.html F2R +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html TTN +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html UHMK1 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html CAMKK2 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html AKT1 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html IGF1R +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html PAK2 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html MAP3K3 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html MAP3K9 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html LMTK2 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html PCSK9 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html PAK1 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html INSR +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html TAF1 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html MYO3A +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html KIAA1804 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html MEX3B +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html TAOK3 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html MOBKL1A +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html SMG1 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html STK4 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html CDKL5 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html EIF2AK1 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html MAPK15 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html DYRK1A +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html NLRP12 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html MAP3K10 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html TNK1 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html EIF2AK3 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html MAP3K13 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html MAP3K12 +PWCOMMONS PROTEIN AUTOPROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AUTOPROCESSING.html MAP3K11 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html TRAF2 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html MBL2 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html CADM1 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html BCAR1 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html CX3CL1 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html TLR8 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html TGFB2 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html MAP3K7 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html CFHR1 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html TNFRSF1A +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html KRT1 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html IFNK +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html C2 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html TRAF6 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html SCG2 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html PTPRC +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html CRTAM +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html IL8 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html IL29 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html SLA2 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html CEBPG +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html MALT1 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html PRKCG +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html NFAM1 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html SLIT2 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html TRAT1 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html THY1 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html CD1D +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html UBE2N +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html CDH13 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html LAT2 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html NPY +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html EREG +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html FYN +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html EEF1E1 +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html IKBKG +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html IL12A +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html GHRL +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html CD79A +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html IL12B +PWCOMMONS POSITIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html GHSR +PWCOMMONS REGULATION OF CELLULAR PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PH.html CLN3 +PWCOMMONS REGULATION OF CELLULAR PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PH.html CLCN3 +PWCOMMONS REGULATION OF CELLULAR PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PH.html BCL2 +PWCOMMONS REGULATION OF CELLULAR PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PH.html ATP1A3 +PWCOMMONS REGULATION OF CELLULAR PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PH.html ATP1A4 +PWCOMMONS REGULATION OF CELLULAR PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PH.html ATP1A1 +PWCOMMONS REGULATION OF CELLULAR PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PH.html PPT1 +PWCOMMONS REGULATION OF CELLULAR PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PH.html ATP1A2 +PWCOMMONS REGULATION OF CELLULAR PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PH.html CLN5 +PWCOMMONS REGULATION OF CELLULAR PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PH.html CLN6 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html LST1 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html HS3ST5 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SPINK5 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html AHSG +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PR47 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TGFB2 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CALCA +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SERPINE1 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SFTPD +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html GP1BA +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CHRNA7 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD24 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SRGN +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KNG1 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PTPRC +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SLA2 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CIDEA +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html INHA +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SOCS5 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SOD1 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TMPRSS6 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html THY1 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PROC +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html INHBA +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TARBP2 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html LAX1 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html F2 +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CARTPT +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html GHRL +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html GLMN +PWCOMMONS NEGATIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html GHSR +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html KCNMB4 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html ACHE +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html SNCAIP +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html CADM1 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html FAM3D +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html DPH3 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html PYDC1 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html IL11 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html LIF +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html APOA2 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html NOD2 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html APOA1 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html INS +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html ANG +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html PYCARD +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html SCG5 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html SNAP25 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html DNAJC1 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html SRGN +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html SERGEF +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html CRTAM +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html CARD8 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html STX1A +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html MYO6 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html CIDEA +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html ARFIP1 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html INHA +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html NLRP3 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html FOXP3 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html NLRP2 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html INHBB +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html OSM +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html INHBA +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html GCK +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html GHRH +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html SCIN +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html NLRP12 +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html CARTPT +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html GLMN +PWCOMMONS REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SECRETION.html GHRL +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html SNCAIP +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html PRG3 +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html BBOX1 +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html TGFB2 +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html OAZ2 +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html OAZ1 +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html COLQ +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html DIO2 +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html SULT1B1 +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html ASMTL +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html ETNK1 +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html DHPS +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html SLC5A7 +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html DIO1 +PWCOMMONS BIOGENIC AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOGENIC_AMINE_METABOLIC_PROCESS.html SMS +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html RPL17 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html SLC44A2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html VAPA +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TBK1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TSPAN6 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TLR6 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html IL31RA +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CITED2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TMEM9B +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html MYD88 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CDKN2B +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html MIER1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ABRA +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html GPR89A +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html BCL10 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html BST2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html IL29 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html GOLT1B +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html RELA +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html FADD +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CD40 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TRAT1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html IL20 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TRIM38 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ATP2C1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html MIB2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html RIPK2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html NEK6 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html PPP5C +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html LITAF +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html UBE2V1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html AFAP1L2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CXXC5 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ADRB3 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html RAC1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TRAF7 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TRAF6 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html EGF +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TRAF5 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CFLAR +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CARD9 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TAOK2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html LGALS1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TAOK3 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html NDFIP1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html NDFIP2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html MALT1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TPD52L1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ECM1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html LGALS9 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TRADD +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CDKN1C +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TRAF3IP2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html APOL3 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html NOTCH2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html IKBKE +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TNFSF10 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html PLK2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html NUP62 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CDKN2AIP +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html SLC20A1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html FASLG +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html GJA1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TP63 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CANT1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ACVR1B +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html NOD2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html NOD1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CLCF1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html HMOX1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CASP8 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TICAM1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TICAM2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html RHOA +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TGFA +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TMEM101 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html RHOC +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CASP1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html LTBR +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html LYN +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html NFAM1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ECT2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html FLNA +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html UBE2N +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ACVR2A +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html GRM4 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ZDHHC17 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ADRB2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ACVR2B +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TNFRSF10B +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html EREG +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ZDHHC13 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html RIPK1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html HIPK2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html IL12A +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html EEF1D +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html PPM1A +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TRIM13 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TFG +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html FKBP1A +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TNFRSF1A +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TMED4 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html MAP3K3 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html REL +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html RASGRP4 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html SLC35B2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html PLEKHG5 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CC2D1A +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CD27 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html SECTM1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html PTPRC +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html HCLS1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html EDA2R +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html BIRC2 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CDH13 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html EPGN +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html EEF1E1 +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html HTR2B +PWCOMMONS POSITIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html F2R +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html RAB3GAP2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TSPO +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html XPO6 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CADM1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html LTBP2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html AP1G1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html LMAN2L +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TNFSF14 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html EIF5A +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html MIPEP +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html MXI1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html AGXT +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html KLHL2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TGFB1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html AIP +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html SSR1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html APOA2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NLRC4 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html APOA1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html HOMER3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TRAK1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CEP290 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TLK1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html RPL11 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html DNAJC1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html KIF13B +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html EGFR +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html MCM3AP +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CRTAM +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CD3G +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html MYO6 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html STAP1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html VPS45 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html LRP1B +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ERP29 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html OPTN +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NUPL2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html MYH9 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html RPAIN +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html BACE2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html F2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PEX26 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html RTP3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html RTP2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html DERL2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ACHE +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PPY +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ARFGAP3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html RTP4 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html DERL1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NFKBIE +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html RTP1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CTSA +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PPT1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ABCA1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PYDC1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CALR +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CDC37 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html UHMK1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CD74 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html INS +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NPM1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html DUSP16 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ANGPTL3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TRAM1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html SEC23IP +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html SRGN +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html MDFI +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CARD8 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CIDEA +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html SMAD3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html SNAPIN +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ICMT +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ARFIP1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html REEP1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html FOXP3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ABCG1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NFKBIL1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TRNT1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NFKBIL2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PPIH +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CBLB +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html VCP +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TRPS1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PTTG1IP +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html GLMN +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html LGTN +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TRIP6 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html XPO7 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html RERE +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PDIA3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TIMM17A +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html HPS4 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TIMM17B +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PEX6 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html AP3S2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PEX3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PDIA4 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html DPH3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CANX +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html GLI3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PEX7 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html AKT1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NOD2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PEX1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ANG +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ZFYVE9 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ZFYVE16 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html RANBP2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NCKIPSD +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TPR +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html COX18 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html KDELR1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html KPNB1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TOMM34 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html AP3B1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html KDELR2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html RPGR +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NLRP3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TIMM23 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TIMM44 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NLRP2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html FLNA +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html MFN2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ZDHHC17 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ATG4D +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ATG4C +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ATG4B +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NUP205 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ATG4A +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ARCN1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html C3ORF31 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TOMM20 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html KPNA6 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TOMM22 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html KPNA5 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html KPNA4 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html KPNA3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html ARL4D +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html KPNA2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html KPNA1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TNF +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html AP1M2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CDH1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html SEC63 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NUP214 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NAGPA +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CEP57 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PEX19 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html AP3M1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TAP2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PEX16 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PYCARD +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PEX14 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html BCL3 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html AP3D1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html BCL6 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html SCG5 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PEX13 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html CD24 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html APPBP2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PEX12 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PEX10 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TNPO1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html APBA1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html SCG2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html FYB +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html SERGEF +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NF1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NLGN1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html PPP1R10 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html SELS +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html GABARAP +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html YWHAH +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html COG7 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html GSK3B +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html NLRP12 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html TRPC4AP +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html FAF1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html GGA1 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html SSR2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html F2R +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html COG2 +PWCOMMONS ESTABLISHMENT OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_PROTEIN_LOCALIZATION.html BARD1 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F2RL2 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html GGCX +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html AVPR2 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F2RL3 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html ADORA2A +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F13A1 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html GNA12 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html PABPC4 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html HPS4 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html PF4 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html ITGB3 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html MMRN1 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html LMAN1 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html PR47 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html GP9 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F13B +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html FLI1 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html SERPINE1 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html GP1BA +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html ENTPD1 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html PLAT +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html KNG1 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F12 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html L3MBTL4 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html NFE2 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F10 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F8 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html ITGA2 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F9 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html C4BPB +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F7 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html TMPRSS6 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html WAS +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html PLG +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html PROC +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html VWF +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html GPI +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html THBD +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html CD36 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F5 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html GNAQ +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html HNF4A +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html CD40LG +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html CD59 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F2 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html TFPI +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html PROS1 +PWCOMMONS HEMOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOSTASIS.html F2R +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE INHIBITING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_INHIBITING_PATHWAY.html MCHR1 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE INHIBITING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_INHIBITING_PATHWAY.html GRM4 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE INHIBITING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_INHIBITING_PATHWAY.html CHRM5 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE INHIBITING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_INHIBITING_PATHWAY.html RGS1 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE INHIBITING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_INHIBITING_PATHWAY.html OPRL1 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE INHIBITING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_INHIBITING_PATHWAY.html DRD2 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE INHIBITING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_INHIBITING_PATHWAY.html NPY2R +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE INHIBITING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_INHIBITING_PATHWAY.html OPRK1 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE INHIBITING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_INHIBITING_PATHWAY.html NPY1R +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE INHIBITING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_INHIBITING_PATHWAY.html CORT +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html MTSS1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html MPZL1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html NRTN +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html LTBP2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html EDN2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GDF5 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FOXO4 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html TGFB1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html CITED2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html MAP3K7 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GP6 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FNTA +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html CDKN2B +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html TDGF1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GAB1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GDF9 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FRS3 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RAPGEF1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html INSR +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FRS2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html EGFR +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PTPRJ +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html EFNB3 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PTPRF +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html CD3E +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PTPRG +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html BAIAP2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SOCS1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PICK1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PTPRT +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PTPRU +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html IRS1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GRB10 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ROR1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html TGFBRAP1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html EID2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FGFR4 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FGFR3 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SNX6 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ERBB3 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GRB2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ERBB2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html BMPR2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html AFAP1L2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html BDKRB2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SRC +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PXN +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FOXH1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html MUSK +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PEG10 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html IL17F +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html TEK +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html AGRN +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html EGF +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html CNKSR1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GUCY2F +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FIBP +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SMAD7 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html TGFBR1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html KLF10 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SMAD5 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SMAD4 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html TRIO +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SMAD3 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html CIDEA +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SMAD2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SMAD1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GUCY2C +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GUCY2D +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html KDR +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html NTRK3 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html EPS15 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html CDKN1C +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html CBLC +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html EPS8 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html NTRK1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html NTRK2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html TGFBR3 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SMURF1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GRB7 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ENG +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FGF5 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ACVRL1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html BCAR1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html AP3S1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html AKT1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ACVR1B +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PDPK1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ZFYVE9 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html TGFA +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SHC1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SHC3 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html OTX2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html LEFTY1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html CD3EAP +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ACVR2A +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html NCK2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html INHBA +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html DOK1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ACVR2B +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ADRB2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html EREG +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html HIPK2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FOXC2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html LCP2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ACVR1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FMOD +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html REPS2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ABI1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html STUB1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html IGF1R +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html UTP11L +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RGMB +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SORBS1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html CEP57 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PTK2B +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html LEFTY2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html VWC2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PTN +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PIK3R3 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PIK3R1 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GUCA1B +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PTPRD +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FLT3 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html FLT4 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html CBL +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html IGF2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RPS6KA5 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html CDH13 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html SOST +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PRLR +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ERBB2IP +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html EPGN +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html MAPK8IP2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GDF10 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GDF15 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html HPGD +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GFRA2 +PWCOMMONS ENZYME LINKED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ENZYME_LINKED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html BMPR1A +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html ALDOA +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html ALDOB +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html PFKFB1 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html PGD +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html UGDH +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html HK1 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html TKTL1 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html ACN9 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html AKR1A1 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html INS +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html ECD +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html PDK1 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html PDK2 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html IRS2 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html PFKL +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html PDK3 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html PDK4 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html BRS3 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html PFKM +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html GAPDHS +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html PGLS +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html ATF4 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html G6PD +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html GCK +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html SLC25A10 +PWCOMMONS GLUCOSE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_METABOLIC_PROCESS.html UGP2 +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html CRTAM +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html CADM1 +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html IL28RA +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html APOBEC3G +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html CX3CL1 +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html APOBEC3F +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html NCR1 +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html TLR8 +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html AHSG +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html IL20 +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html CD1D +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html TNFRSF1A +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html TARBP2 +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html EREG +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html IL12A +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html GHRL +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html CHRNA7 +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html IL12B +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html IFNK +PWCOMMONS REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DEFENSE_RESPONSE.html GHSR +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html ARSB +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html CLN3 +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html NAGPA +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html MYO7A +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html HPS4 +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html GAA +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html HPS1 +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html PPT1 +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html ABCA1 +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html CLN5 +PWCOMMONS LYSOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOME_ORGANIZATION_AND_BIOGENESIS.html CLN6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MMS19 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html XRCC6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html FOXO1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html RORB +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html FOXO3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MED21 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html CITED2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html EPC1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MDFIC +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SMARCD3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html FOXF1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html GATA4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html FOXF2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SMARCD1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SUPT5H +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html BCL10 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MYO6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html PCBD2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html RXRA +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MED12 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MED14 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ARID1A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MED13 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ARNTL +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ELL3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html TRERF1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html PPARGC1B +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html HIF1A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html HNF4A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MED17 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html TFAP2B +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SMARCA1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html CRTC1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ELK1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html AFAP1L2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html PLAGL1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html FOXH1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MAML3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html RUNX1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html TCF4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html TCF3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ARHGEF10L +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html UTF1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html EPAS1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MAML1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html TAF8 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MAP2K3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MAML2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ESRRG +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SMAD3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SMAD2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ATF6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ATF4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SMARCC1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html DYRK1B +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html NOTCH4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SMARCC2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html BMP6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ELF1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html HNF1B +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html HNF1A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html RSF1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ELF4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SPI1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html TP63 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html CTCF +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html GLI2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ZBTB38 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html GLI1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html PAX8 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MKL2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ATF7IP +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html CCNH +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html TP53 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html CDK7 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html HMGA1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SCAP +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html PRPF6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html NRIP1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html GTF2H1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ARHGEF11 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MED6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html INHBA +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html BPTF +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ZMIZ2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html NCOA6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html NSD1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html CLOCK +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MED1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html GLIS3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html GLIS1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html NUFIP1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html EHF +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html TNFRSF1A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html NPAS2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MRPL12 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SQSTM1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SUPT4H1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ERCC3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ERCC2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html FOXD3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html IL4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html TBX5 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html TRIM28 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html CREB5 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ILF3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html TP73 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html MNAT1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html ILF2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html SP1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html THRAP3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html FOXE1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html PHF5A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTIONDNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTIONDNA_DEPENDENT.html RBM14 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html TBX3 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html SMAD2 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html TRIM15 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html SPINK5 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html SLIT2 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html TGFB2 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html IL20 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html GLI1 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html EYA2 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html TGM3 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html KRT2 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html ERCC3 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html KLF4 +PWCOMMONS TISSUE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_MORPHOGENESIS.html ERCC2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html CCKAR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html F2RL3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html DRD1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html PARD3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html GNA15 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html DRD2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html EDN2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html TACR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html CALCA +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html EDNRA +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html AZU1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html EDNRB +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html AGTR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html HRH1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html P2RY6 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html P2RY4 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html NMUR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html ANG +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html LTB4R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html NMUR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html P2RY2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html P2RY1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html MC3R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html PPAP2A +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html PLCB2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html EGFR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html C5AR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html CCKBR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html PICK1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html HOMER1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html GRM5 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html P2RY11 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html GNAQ +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html CHRM2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html CHRM1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html AVPR1B +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html AVPR1A +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html NMBR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html HTR2B +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html GAP43 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO IP3 SECOND MESSENGERPHOSPHOLIPASE C ACTIVATING http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_IP3_SECOND_MESSENGERPHOSPHOLIPASE_C_ACTIVATING.html PRKD3 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html DMAP1 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html FOS +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html PRMT1 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html PRMT2 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html PRMT7 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html PRMT8 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html PRMT5 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html GATAD2A +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html PCMT1 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html DNMT3B +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html NSUN2 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html HELLS +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html ATF7IP +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html DNMT3A +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html LCMT1 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html EHMT1 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html PICK1 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html ICMT +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html TST +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html ATRX +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html WHSC1L1 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html DNMT1 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html MAT2B +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html CARM1 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html NSD1 +PWCOMMONS ONE CARBON COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ONE_CARBON_COMPOUND_METABOLIC_PROCESS.html MPST +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html CDC6 +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html GTPBP4 +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html ENPP7 +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html NF2 +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html GMNN +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html S100A11 +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html TIPIN +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html RAD9A +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html ATR +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html TERF2IP +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html CDT1 +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html TSPYL2 +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html SET +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html ERCC4 +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html RAD17 +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html TERF2 +PWCOMMONS NEGATIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html ERCC1 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html CLN3 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html GBGT1 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html PSAP +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html UGCG +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html ST8SIA1 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html ST8SIA3 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html ST6GALNAC6 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html ST6GALNAC4 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html B3GNT5 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html GLA +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html LARGE +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html ST8SIA5 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html ST3GAL6 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html NEU3 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html CLN6 +PWCOMMONS GLYCOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOLIPID_METABOLIC_PROCESS.html B4GALNT1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CHIA +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html VAPB +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html S100A7 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CRHBP +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PGLYRP1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TLR3 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PSG10 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html APOBEC3G +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TLR6 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TLR7 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html APOBEC3F +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CXCL12 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TGFB1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TLR8 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IL10 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PSG11 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html ISG20 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CFP +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html NLRC4 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PGLYRP4 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html WWP2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PGLYRP2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html WWP1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html RLN2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PGLYRP3 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html ITCH +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IFNK +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SPN +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html BCL10 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IL29 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html BYSL +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html UBR3 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IFI44 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html HBXIP +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CLEC4M +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CRHR1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PTHLH +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html LILRB1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html WFDC12 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CCDC130 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html LALBA +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PRLHR +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html DERL1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html FGR +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TFCP2L1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html ITLN1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html RRAGA +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CCL8 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html FCGRT +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html DEFB127 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CCL5 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html BANF1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CCL4 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CHIT1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html ADCYAP1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SLC11A1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IFNA7 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html ALB +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TRO +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IFNA4 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PRKRA +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html HLA-DRB4 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html HLA-DPB1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html MAFF +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html OVGP1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CREBZF +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html HTT +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SMAD3 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TEAD3 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html COL16A1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html S100A12 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CD209 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SFRP4 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html GHSR +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html MTNR1A +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html INSL4 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PPARD +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PZP +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CSH2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CLDN4 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html DUOX2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IL28RA +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html BNIP3 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SCGB1A1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html LNPEP +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html NOD2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html NOD1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CXCR4 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html FOSL1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TNIP1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IFNGR2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IFNGR1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html ABCE1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SPACA3 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CAMP +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PSG3 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PSG1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IFNAR1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TARBP2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IFNAR2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PSG9 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PSG8 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html ADM +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PSG7 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PSG6 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PSG5 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CLIC5 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PSG4 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CD81 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IL12A +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html C19ORF2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html GHRL +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html FSHB +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html EPYC +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PRF1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html HS3ST6 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TNF +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html HS3ST5 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html C9 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html POLA1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IFNW1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SPRR2G +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html RSAD2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html OXTR +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SPRR2F +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SPRR2E +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IVNS1ABP +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TAC3 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html AZU1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CCL22 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SPRR2C +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SPRR2D +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html BCL2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SPRR2A +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html AGT +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SPRR2B +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html DEFB118 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html BCL3 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CD4 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CD24 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PTPRC +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html FLT1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html DEFB103A +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CCL19 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html STAB2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SOD1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PTGFR +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html TRIM22 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html SMC3 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CD1D +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html RPL29 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CCL11 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html PRLR +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html STAB1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IRF7 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html BNIP3L +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html ACE2 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html CRH +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html HPGD +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html LIPE +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html DMBT1 +PWCOMMONS MULTI ORGANISM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MULTI_ORGANISM_PROCESS.html IFNA17 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html FXYD1 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html FXYD3 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html GLRA1 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html SLC34A1 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html CLIC1 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html SLC26A2 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html SLC34A3 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html SLC34A2 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html SLC17A7 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html SLC26A4 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html SLC4A11 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html BEST1 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html CLIC3 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html NMUR1 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html CLIC5 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html SLC17A1 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html SLC13A4 +PWCOMMONS INORGANIC ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INORGANIC_ANION_TRANSPORT.html CLCN4 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FGF18 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html PDGFA +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html PGF +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL18 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html EDN1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html BTC +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TTK +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FGF10 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TNFSF13 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TNFSF12 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL15 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html VIPR1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL31RA +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL11 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TGFB2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CXCL10 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html SSR1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CUL3 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CD47 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html HTR1A +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html DDX11 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CHRNA7 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html GLP2R +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html EBI3 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html MATK +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html EGFR +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CAPNS1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CD3E +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TBRG4 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL21 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html MARK4 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html PTHLH +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html VEGFB +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html SIRPG +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html NME2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html NME1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FGFR1OP +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html VEGFA +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html LAMC1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html MST1R +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html MCTS1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html DERL2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html ERBB2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TIPIN +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TIMP1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL12RB2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html LIF +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html REG1A +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL12RB1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html AGGF1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CDC123 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html ADRA2A +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html LAMB1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html DNAJA2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TGFBR1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TGFBR2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html SPHK1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CD276 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html SLAMF1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html LAMA1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CDKN1A +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html ADRA1D +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html BMI1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FGF7 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html NRP1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html NAP1L1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html GLI1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FLT3LG +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TNFRSF11A +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html NDUFS4 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html ANG +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TGFA +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FOSL1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html MYC +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html RHOG +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html SERTAD1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FGF4 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CDC7 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html LYN +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CCKBR +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html EGR4 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CDK6 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CDK4 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CDK2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html HOXC10 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html SPDYA +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CIAO1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html NCK2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CD86 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html EREG +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TNFSF13B +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html NCK1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CHRM1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CD81 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html DHPS +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL12B +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TSHR +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html ICOSLG +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html ALOX12 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html VIP +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CSF3 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TBC1D8 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CXCL5 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html PRTN3 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CSF1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CTF1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IGF1R +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html PTK2B +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TSPAN31 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html PTN +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html POU3F2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CD24 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FIGF +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html SCG2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CD28 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL4 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html STAMBP +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TCIRG1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL3 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html PTPRC +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL6 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TNFSF4 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FLT1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html PDF +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TBX3 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FLT3 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL7 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html TBX2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html HCLS1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html FLT4 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL9 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IGF1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CLEC11A +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CDC25B +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CAPN1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CDH13 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html CCL14 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html EPGN +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html BNC1 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html IL2 +PWCOMMONS POSITIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_PROLIFERATION.html LRP5 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html RSF1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html TNF +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html STK36 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html UBE2V1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html EGLN1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html PRDX3 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html PYDC1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html TGFB1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html SUMO1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html NOD2 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html CDKN2A +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html NLRC3 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html NPM1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html PYCARD +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html BCL3 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html PEX14 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html ABRA +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html CAMK2A +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html APEX1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html MDFI +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html BCL10 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html CREBZF +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html RELA +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html CEBPG +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html EDA2R +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html NFAM1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html NLRP3 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html FOXP3 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html FLNA +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html SIGIRR +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html JMY +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html UBE2N +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html PRKCQ +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html CARD11 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html EP300 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html ID2 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html ID1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html NME1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html NARFL +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html EDF1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html ID3 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html IKBKB +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html ERC1 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html EDA +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html TSSK4 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html COMMD7 +PWCOMMONS REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_BINDING.html MAP3K13 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html RSF1 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html RBBP4 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html NASP +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html SIRT4 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html BNIP3 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html SIRT5 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html TNP1 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html ARID1A +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html TAF6L +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html SIRT1 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html HMGA1 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html SUV39H2 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html HDAC5 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html BPTF +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html SYCP3 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html SMARCC1 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html NPM2 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html SMARCC2 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html SMARCD1 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html PBRM1 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html ACTL6A +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html SUPT4H1 +PWCOMMONS CHROMATIN REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_REMODELING.html HELLS +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html COL4A4 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html PCDHB9 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html ACHE +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html PCDHB5 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html PCDHB6 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html PCDHB3 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html PCDHB4 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html NLGN1 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html PCDHB14 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html PCDHB2 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html PCDHB13 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html PCDHB11 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html PCDHB10 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html NRCAM +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html PCDHB16 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html GHRL +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html POU4F1 +PWCOMMONS SYNAPTOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTOGENESIS.html UBB +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html FGFR3 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html CCL2 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html NMI +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html STAT5A +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html STAT5B +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html IL31RA +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html STAT4 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html CLCF1 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html STAMBP +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html SOCS2 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html LYN +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html NF2 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html IL29 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html SOCS3 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html HCLS1 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html SOCS1 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html SOCS6 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html PIGU +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html STAT1 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html STAT3 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html STAT2 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html IL20 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html IFNAR1 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html IFNAR2 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html CCR2 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html F2 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html IL12A +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html HGS +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html PIAS1 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html IL22RA2 +PWCOMMONS JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JAK_STAT_CASCADE.html F2R +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html GYPC +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html TUSC3 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html LDLR +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html B3GALT5 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ALG1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ALG2 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html B3GALT4 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html TSPAN7 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ALG5 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ALG6 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html TSPAN8 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ALG8 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html APOA4 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html POMGNT1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html POMT1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html B3GALNT1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html TRAK1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html RPN1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html PSENEN +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html OGT +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html MAN2B1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html TNIP1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html CLN3 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html MAN1A2 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html FUT10 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ALK +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html CD37 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html MAGT1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ADAMTS9 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html PSEN1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html BACE2 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html BACE1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html PSEN2 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html MGEA5 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html DOLPP1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html TM4SF4 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html TM4SF5 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html SERP1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html GCNT4 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html GALNT2 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html GALNT1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ACHE +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html GCNT3 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html FUT9 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html APH1A +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html GALNT7 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html FUT8 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html FUT7 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html GALNT6 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html FUT6 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html KEL +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html FUT5 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ST8SIA3 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ST8SIA2 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html NECAB3 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html NGLY1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html STT3B +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html IL17A +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html STT3A +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html B3GNT5 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html MPDU1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html FUT4 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html FUT1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html A4GNT +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html FUT2 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html GCNT1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html GAL3ST1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html SDF2 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html MGAT4B +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html AGA +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html MGAT4A +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html LIPA +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html B3GALT2 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html MAN1C1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ABCG1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html COG3 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html NCSTN +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html COG7 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html LARGE +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ST8SIA4 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html DPM1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html DPM2 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html DPM3 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html LRP2 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html LIPC +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html ALG12 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html POFUT1 +PWCOMMONS GLYCOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_METABOLIC_PROCESS.html COG2 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html GRB2 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html BAIAP2 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html BCAR1 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html SOCS1 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html AP3S1 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html IGF2 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html FOXO4 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html IRS1 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html AKT1 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html IGF1R +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html PDPK1 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html GRB10 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html SORBS1 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html GAB1 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html FOXC2 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html PIK3R3 +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html INSR +PWCOMMONS INSULIN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INSULIN_RECEPTOR_SIGNALING_PATHWAY.html PIK3R1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html LIMA1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html KATNB1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL10 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PAIP2B +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TIMP1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html APOA2 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SET +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html GSN +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SFTPD +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BCL3 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CLASP1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html DNAJC1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html APC +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html ARHGEF2 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL6 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html GTPBP4 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html NF2 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PRG3 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PAIP2 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SOCS1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html NDUFA13 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PRKCG +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html INHA +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html MID1IP1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html FURIN +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TRAT1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SIGIRR +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html INHBB +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html INHBA +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF4A3 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF2AK1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TSC1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BACE2 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CAPG +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html NLRP12 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html GHRL +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PPP2R4 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TMSB4Y +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html MAPRE1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html GHSR +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF2AK3 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IGFBP3 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html APBB1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SNCA +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CBX4 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html FOXO1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CIAPIN1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html GDNF +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TNFSF18 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CDKN2D +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TDGF1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TPT1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html FAS +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html DDAH2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html IL1A +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html API5 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BCL10 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html OPA1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BRAF +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SOCS2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CRYAA +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html DFFA +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SOCS3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CRYAB +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html RELA +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BCL2A1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html PIM1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html HRK +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html HBXIP +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BCL2L10 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html NME5 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html NME2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html KRT18 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CD40LG +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TXNDC5 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TNFAIP8 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html VEGFA +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html HSPB1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html MAPK8 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html ERC1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html MYO18A +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TNFRSF6B +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html HMGB1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CCL2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html GCLC +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html MCL1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html PPT1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BCL2L2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BCL2L1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html HSPA1B +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CD74 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html PEA15 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html AKT1S1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html ALB +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html NPM1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html GLO1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html ARHGDIA +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html ANGPTL4 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CFLAR +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BECN1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SPHK1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CIDEA +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TAX1BP1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html NOTCH2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BFAR +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html HDAC3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html RNF7 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html NUP62 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html HDAC1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SFRP1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html IFI6 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html RTN4 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html IER3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html HTATIP2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html NUAK2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BNIP3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html PRDX2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html NFKB1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TRIAP1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html GPX1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BAG4 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CASP3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BAG1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CLCF1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html PAX7 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html DHCR24 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CLN3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html NOL3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html PROC +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SERPINB9 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html PROK2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BNIP1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html PSEN1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TNFRSF10D +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BNIP2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html HIPK3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CFL1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SERPINB2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html GHRL +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html FAIM3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html AVEN +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html NAIP +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SEMA4D +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html GSTP1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html ALOX12 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html ACVR1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html PRKCZ +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html YWHAZ +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TNF +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html RTKN +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html ASNS +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html MIF +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html IGF1R +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html ERCC5 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SH3GLB1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BCL2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html DAD1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TNFRSF18 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BCL3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html AATF +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CD27 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html RASA1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html PIK3R2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html HSPA9 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CD28 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SCG2 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html IL4 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html IL3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html IL2RB +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html IL6 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TBX3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html IL7 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html ANXA1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BIRC6 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BIRC5 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html ANXA5 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BIRC3 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SOD1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html ANXA4 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html CDH13 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html SON +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html HSP90B1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html GSK3B +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BAX +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BNIP3L +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BRE +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html MPO +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html TIAF1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html BARD1 +PWCOMMONS NEGATIVE REGULATION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_APOPTOSIS.html IL2 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html CCL3 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html CTBP1 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html CCL2 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html CTBP2 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html IL8 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html VAPB +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html OPRK1 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html EIF5A +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html DEK +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html APOBEC3G +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html HBXIP +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html UBP1 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html CCL4 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html APOBEC3F +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html TARBP2 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html PPIA +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html SMARCB1 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html HTATSF1 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html CXCR6 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html TNIP1 +PWCOMMONS VIRAL GENOME REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_GENOME_REPLICATION.html TOP2A +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html ALS2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html ZAK +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html EDN2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TNFSF15 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PKMYT1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MBIP +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TLR6 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MAP3K7 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MAP3K6 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MAP3K5 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDKN2A +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MAP3K4 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDKN2B +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html DIRAS3 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MDFIC +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDKN2C +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDKN2D +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MAP3K9 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TDGF1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html SPRED2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CHRNA7 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html SPRED1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html GNG3 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html EGFR +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html DBNL +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html ANAPC2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html GTPBP4 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html C5AR1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html RBL2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PIK3CB +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MADD +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html KIAA1804 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PICK1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html RBL1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html THY1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MAP4K5 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PLCE1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CARTPT +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TRAF2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDK5R1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDK5R2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html ADORA2B +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html ERBB2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PTPLAD1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MAP4K1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CHEK1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CCNG1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PYDC1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDC37 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html HEXIM2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html HEXIM1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html DUSP16 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html ADRA2A +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html ADRA2C +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TRAF7 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html EGF +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TRAF6 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MDFI +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TAOK2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MAP2K3 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html DUSP22 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TPD52L1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MALT1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDKN1C +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CBLC +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html RGS3 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html RGS4 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CCNT2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html C13ORF15 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CCNT1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PTEN +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html LATS1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html DAXX +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PDCD4 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html LATS2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CAMKK2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CCNE2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PAK2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CXCR4 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html ANG +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TGFA +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDK5RAP3 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html SHC1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PAK1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDK5RAP1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html FGF2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html SERTAD1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDC6 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html IRAK1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CCNK +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CCDC88A +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html HERC5 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PKN1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html RB1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDK7 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html GTF2H1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CARD10 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html GRM4 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TARBP2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PROK2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html NCK2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html ADRB2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CCND1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html EREG +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CCND3 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html LAX1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CCND2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html HIPK3 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CHRM1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CD81 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html GADD45G +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html ERN1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MAP3K10 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html GHRL +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html GADD45B +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MAP3K13 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html GADD45A +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PRKD3 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html GAP43 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MAP3K11 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CKS1B +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PARD3 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html C5 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html FPR1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TRIB3 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html BCCIP +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html SFN +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TRIB2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TRIB1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html AZU1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html TSPYL2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MAP3K2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CD4 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CD24 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PPAP2A +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html APC +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html GPS1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PTPRC +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html NF1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CRIPAK +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html SOD1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDC25C +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDKN3 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CDC25A +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html GPS2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html MNAT1 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html DUSP2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html PRLR +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html EPGN +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html CKS2 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html DUSP9 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html DUSP8 +PWCOMMONS REGULATION OF KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_KINASE_ACTIVITY.html DUSP6 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CADM1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html ELF4 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html IL18 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html PREX1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html JAG2 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html TNFSF13 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html TLR4 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html TPD52 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html SPINK5 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html TGFB1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html SART1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CD47 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html NLRC3 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html EBI3 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html L3MBTL4 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CRTAM +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html SPACA3 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html SIT1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CD3D +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html PRG3 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CD3E +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html IL27 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html SLA2 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html NFAM1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html SOCS5 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html INHA +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html IL21 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html THY1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html NCK2 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html INHBA +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html LAT2 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html SIRPG +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html WBP2NL +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CD40LG +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html LAX1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html NCK1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html LCK +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html F2 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html IL12A +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html IL12B +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html NHEJ1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html ICOSLG +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html LST1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html PF4 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CX3CL1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html PR47 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html AZU1 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html INS +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html SFTPD +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CD2 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html ZAP70 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html KRT2 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CD4 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html GP1BA +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CD24 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html HELLS +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CD7 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CD28 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html IL4 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html PTPRC +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html IL8 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html IL7 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CEBPG +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CD276 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html FOXP3 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CD1D +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html HDAC5 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html HDAC4 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html VWF +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html LAT +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html GLMN +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CD79A +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html CLEC7A +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html HDAC9 +PWCOMMONS CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_ACTIVATION.html IL2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html RTN4 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html NRP2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html ALS2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html NRTN +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html NRP1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html LRRC4C +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html PAX2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html GLI2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html GDNF +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html SHH +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html ROBO1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html APOE +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html MAPT +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html SEMA3B +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html ROBO2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html POU4F1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html UNC5C +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html SPON2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html NRXN3 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html BAIAP2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html OTX2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html NRXN1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html SLIT1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html CDK5 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html SLIT2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html THY1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html AMIGO1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html SEMA4F +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html OPHN1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html GHRL +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html TRAPPC4 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html CNTN4 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html SIAH1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html UBB +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html CDK5R1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html PARD3 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html LST1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html RTN4RL1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html KAL1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html BAI1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html RTN4RL2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html LAMB1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html PARD6B +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html KLK8 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html NTNG1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html DPYSL5 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html NTNG2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html YWHAH +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html S100B +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html MAP1S +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html CYFIP1 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html FEZ2 +PWCOMMONS NEURITE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURITE_DEVELOPMENT.html FEZ1 +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html STX1A +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html TBX3 +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html FAM3D +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html FAM3B +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html INHA +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html IL11 +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html INHBB +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html LIF +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html OSM +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html INHBA +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html GCK +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html GHRH +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html GHRL +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html CARTPT +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html SCG5 +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html GHSR +PWCOMMONS HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_SECRETION.html SNAP25 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html ALS2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html ZAK +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html EDN2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TNFSF15 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PKMYT1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MBIP +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TLR6 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP3K7 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP3K6 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP3K5 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDKN2A +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP3K4 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html DIRAS3 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDKN2B +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MDFIC +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDKN2C +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP3K9 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDKN2D +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TDGF1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html SPRED2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CHRNA7 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html SPRED1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html GNG3 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html EGFR +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html DBNL +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html ANAPC2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html GTPBP4 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html C5AR1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PIK3CB +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MADD +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html KIAA1804 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PICK1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html THY1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PLCE1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP4K5 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CARTPT +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TRAF2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDK5R1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDK5R2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html ADORA2B +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html ERBB2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PTPLAD1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP4K1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CHEK1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CCNG1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PYDC1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDC37 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html HEXIM2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html HEXIM1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html DUSP16 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html ADRA2A +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html ADRA2C +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TRAF7 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TRAF6 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html EGF +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MDFI +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TAOK2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP2K3 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html DUSP22 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MALT1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TPD52L1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDKN1C +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CBLC +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html RGS3 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html RGS4 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CCNT2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html C13ORF15 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CCNT1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PDCD4 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html LATS1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PTEN +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html DAXX +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html LATS2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CAMKK2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CCNE2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PAK2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CXCR4 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html ANG +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TGFA +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html SHC1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDK5RAP3 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PAK1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDK5RAP1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html FGF2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html SERTAD1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html IRAK1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDC6 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CCNK +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CCDC88A +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html HERC5 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PKN1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDK7 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html RB1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html GTF2H1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CARD10 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html NCK2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html GRM4 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PROK2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TARBP2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html ADRB2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CCND1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CCND3 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html EREG +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html LAX1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CCND2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CHRM1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html HIPK3 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html GADD45G +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CD81 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP3K10 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html ERN1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html GHRL +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html GADD45B +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP3K13 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html GADD45A +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PRKD3 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html GAP43 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP3K11 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CKS1B +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PARD3 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html C5 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html FPR1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TRIB3 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html BCCIP +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html SFN +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TRIB2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TRIB1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html AZU1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html TSPYL2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP3K2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CD4 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CD24 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PPAP2A +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html APC +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html GPS1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PTPRC +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html NF1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CRIPAK +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDKN3 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDC25C +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html SOD1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CDC25A +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html GPS2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html MNAT1 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html DUSP2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html PRLR +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html EPGN +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html CKS2 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html DUSP9 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html DUSP8 +PWCOMMONS REGULATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_KINASE_ACTIVITY.html DUSP6 +PWCOMMONS N TERMINAL PROTEIN AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/N_TERMINAL_PROTEIN_AMINO_ACID_MODIFICATION.html METAP1 +PWCOMMONS N TERMINAL PROTEIN AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/N_TERMINAL_PROTEIN_AMINO_ACID_MODIFICATION.html METAP2 +PWCOMMONS N TERMINAL PROTEIN AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/N_TERMINAL_PROTEIN_AMINO_ACID_MODIFICATION.html EP300 +PWCOMMONS N TERMINAL PROTEIN AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/N_TERMINAL_PROTEIN_AMINO_ACID_MODIFICATION.html PDF +PWCOMMONS N TERMINAL PROTEIN AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/N_TERMINAL_PROTEIN_AMINO_ACID_MODIFICATION.html MAP1D +PWCOMMONS N TERMINAL PROTEIN AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/N_TERMINAL_PROTEIN_AMINO_ACID_MODIFICATION.html CREBBP +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html GYPC +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html TUSC3 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html FUT8 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html ALG2 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html KEL +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html TSPAN7 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html ST8SIA3 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html ALG6 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html ST8SIA2 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html ALG8 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html STT3B +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html STT3A +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html MPDU1 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html RPN1 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html GAL3ST1 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html MGAT4B +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html MGAT4A +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html LIPA +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html MAN1A2 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html ALK +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html MAN1C1 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html CD37 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html MAGT1 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html ST8SIA4 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html LIPC +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html DOLPP1 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html ALG12 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html TM4SF4 +PWCOMMONS PROTEIN AMINO ACID N LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_N_LINKED_GLYCOSYLATION.html TM4SF5 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC38A3 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC16A10 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC7A8 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC7A9 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC7A5 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC1A4 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC1A5 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC1A2 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC1A3 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SERINC1 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC1A6 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC25A22 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html ARL6IP5 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC43A1 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC1A1 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html CLN3 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html PRAF2 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html PDPN +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC3A2 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC7A10 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC3A1 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC25A12 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC25A13 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC6A7 +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html CTNS +PWCOMMONS AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_TRANSPORT.html SLC25A15 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html INSL4 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PPARD +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html CSH2 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PZP +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html CRHBP +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PSG10 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html SCGB1A1 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PSG11 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html LNPEP +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html RLN2 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html BYSL +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PSG3 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PSG1 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PTHLH +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PSG9 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PSG8 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html ADM +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PSG7 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PSG6 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PSG5 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html CLIC5 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PSG4 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html GHRL +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html FSHB +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html EPYC +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PRLHR +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html TFCP2L1 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html OXTR +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html SPRR2G +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html SPRR2F +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html FCGRT +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html SPRR2E +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html TAC3 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html ADCYAP1 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html SPRR2C +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html SPRR2D +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html TRO +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html SPRR2A +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html AGT +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html SPRR2B +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html OVGP1 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html FLT1 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html TEAD3 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html SOD1 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html COL16A1 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html RPL29 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html PRLR +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html SFRP4 +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html CRH +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html GHSR +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html HPGD +PWCOMMONS FEMALE PREGNANCY http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_PREGNANCY.html LIPE +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html LEPR +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html EPM2A +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html GYG2 +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html LEP +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html ADRB3 +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html PYGM +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html GCK +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html GSK3B +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html GFPT1 +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html GFPT2 +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html GAA +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html GYS2 +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html DYRK2 +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html TREH +PWCOMMONS ENERGY RESERVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_RESERVE_METABOLIC_PROCESS.html PYGB +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html RSF1 +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html NAP1L1 +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html SIRT4 +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html SIRT5 +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html TNP1 +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html NAP1L3 +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html NAP1L2 +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html NAP1L4 +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html SIRT1 +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html HDAC5 +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html SET +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html SMARCA5 +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html CHAF1A +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html ASF1A +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html CHAF1B +PWCOMMONS CHROMATIN ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY.html HELLS +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html MDFI +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html FAM3D +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html CRYAA +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html NFKBIE +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html CRYAB +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html NF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html STIM2 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html ARF6 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html NLRP3 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html MXI1 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html NFKBIL1 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html TRAT1 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html PEA15 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html NFKBIL2 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html PACSIN3 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html RAC1 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html YRDC +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html FAF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html RSC1A1 +PWCOMMONS NEGATIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSPORT.html BARD1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ELF1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ELF4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html FOXO1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html FOXO3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html GLI2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED21 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZBTB38 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html GLI1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html EPC1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MKL2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html SUPT5H +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MYO6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html CCNH +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html RXRA +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html TP53 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED12 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED14 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html CDK7 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ARNTL +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED13 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ELL3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html PPARGC1B +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html GTF2H1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html PRPF6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html NRIP1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html INHBA +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html HIF1A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html HNF4A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZMIZ2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED17 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html NCOA6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html TFAP2B +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html CLOCK +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html GLIS3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html CRTC1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html GLIS1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html NUFIP1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ELK1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html PLAGL1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html FOXH1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html TNFRSF1A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html NPAS2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html SQSTM1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html SUPT4H1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MAML3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ERCC3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html RUNX1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ERCC2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html FOXD3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html IL4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html UTF1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html EPAS1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MAML1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MAML2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html SMAD3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html SMAD2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ATF6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MNAT1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ATF4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html SP1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html THRAP3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html RBM14 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html BMP6 +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html RDH12 +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html ALDH8A1 +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html RDH11 +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html RARRES2 +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html DHRS3 +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html NPC2 +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html MVK +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html IDI1 +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html PDSS1 +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html PDSS2 +PWCOMMONS ISOPRENOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ISOPRENOID_METABOLIC_PROCESS.html RETSAT +PWCOMMONS SPERMATID DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DEVELOPMENT.html CSNK2A2 +PWCOMMONS SPERMATID DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DEVELOPMENT.html NME5 +PWCOMMONS SPERMATID DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DEVELOPMENT.html H1FNT +PWCOMMONS SPERMATID DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DEVELOPMENT.html HSPA2 +PWCOMMONS SPERMATID DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DEVELOPMENT.html CEP57 +PWCOMMONS SPERMATID DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DEVELOPMENT.html SYCP3 +PWCOMMONS SPERMATID DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DEVELOPMENT.html SPAG6 +PWCOMMONS SPERMATID DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DEVELOPMENT.html DDX25 +PWCOMMONS SPERMATID DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DEVELOPMENT.html TNP1 +PWCOMMONS SPERMATID DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DEVELOPMENT.html TSSK6 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html CDK5R1 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRIK1 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRIK2 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRIK3 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRIK4 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRIN2A +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRIA3 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRIA4 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html HOMER1 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html HOMER2 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRM5 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRM4 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRIN2B +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html HOMER3 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRIN2C +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRM6 +PWCOMMONS GLUTAMATE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMATE_SIGNALING_PATHWAY.html GRID2 +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html TRNT1 +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html MFN2 +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html TSPO +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html TIMM17A +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html TIMM17B +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html C3ORF31 +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html TOMM22 +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html MIPEP +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html TIMM23 +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html TIMM44 +PWCOMMONS PROTEIN TARGETING TO MITOCHONDRION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MITOCHONDRION.html TOMM34 +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html KCNMB4 +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html BCL10 +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html GCLC +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html LMO4 +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html KEL +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html VANGL2 +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html CELSR1 +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html GLI2 +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html SOD1 +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html TINAG +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html GCLM +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html SHH +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html KCNMB2 +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html CALCA +PWCOMMONS TUBE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_MORPHOGENESIS.html NOTCH4 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html CARD8 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html CRTAM +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html CADM1 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html CIDEA +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html NLRP3 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html PYDC1 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html FOXP3 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html NLRP2 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html APOA2 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html NOD2 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html APOA1 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html INS +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html PYCARD +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html NLRP12 +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html GLMN +PWCOMMONS REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_SECRETION.html SRGN +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html ORAI1 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html CCL8 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html HFE +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html CACNB3 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html CACNB4 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html SLC11A2 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html SLN +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html NMUR1 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html NMUR2 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html TRPV5 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html SLC30A5 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html CHRNA7 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html SLC39A1 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html TRPC1 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html CACNA2D1 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html TRPC4 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html SLC8A1 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html TRPC3 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html TRPC5 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html STIM2 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html STIM1 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html TRPM2 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html NPY +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html ATP2C1 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html ATP2A3 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html RYR3 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html PLN +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html ATP2A1 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html RYR1 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html CACNA1D +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html SLC40A1 +PWCOMMONS DI TRI VALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/DI___TRI_VALENT_INORGANIC_CATION_TRANSPORT.html CSN2 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html RP1 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html UNC119 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html TRPC3 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html TACR1 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html TAC1 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html OPN1SW +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html NR2E3 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html ABCA4 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html SAG +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html PITPNM1 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html PDE6B +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html TIMELESS +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html GRM6 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html NPFFR2 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html PDC +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html CACNA1F +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html OPN4 +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html RHO +PWCOMMONS DETECTION OF ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_ABIOTIC_STIMULUS.html GRK1 +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html KLK8 +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html IL8 +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html CX3CL1 +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html SLIT2 +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html AHSG +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html IL20 +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html LEP +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html CDH13 +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html TNFRSF1A +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html NPY +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html CARTPT +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html GHRL +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html CHRNA7 +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html GHSR +PWCOMMONS REGULATION OF RESPONSE TO EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_EXTERNAL_STIMULUS.html SCG2 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html MOCOS +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html TSPO +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ALAD +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ALDH1L1 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html COX10 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html PGD +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ACOT2 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ACOT1 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html PPOX +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ACOT4 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html PDHB +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ACOT9 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html GPX1 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html MTHFD2 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ALAS1 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ALAS2 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html CPOX +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ACOT12 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html COX15 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html FECH +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ACO2 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html COQ7 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html UGT1A1 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html COQ3 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ISCU +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html PGLS +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html COQ2 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html NNT +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html NFE2L1 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ME1 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html COASY +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html GCLC +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html NFS1 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html UROS +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html PPT1 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html GCLM +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html PDSS1 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html PDSS2 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html GLRX2 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html C16ORF7 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html GSTA1 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html MOCS2 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html FTCD +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html ACLY +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html SOD1 +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html OXSM +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html SDHA +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html BLVRA +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html SDHB +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html GLYAT +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html MLYCD +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html SDHC +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html SDHD +PWCOMMONS COFACTOR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_METABOLIC_PROCESS.html CTNS +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html STX1A +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html FAM3D +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html INHA +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html IL11 +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html OSM +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html LIF +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html INHBB +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html INHBA +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html GCK +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html GHRH +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html CARTPT +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html GHRL +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html SCG5 +PWCOMMONS REGULATION OF HORMONE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HORMONE_SECRETION.html SNAP25 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC38A3 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html AQP9 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC22A12 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC16A10 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC7A8 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC7A9 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC7A5 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC1A4 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC1A5 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC1A2 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC16A1 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC1A3 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html AKR1C4 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC1A6 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SERINC1 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC25A22 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC1A7 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC25A1 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC22A6 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC43A1 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC1A1 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html ARL6IP5 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html AKR1C1 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html CLN3 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html PRAF2 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html PDPN +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC3A2 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC7A10 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC3A1 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC16A3 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC25A12 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC16A2 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC16A5 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC16A4 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC25A13 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC16A7 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC6A7 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC16A6 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC25A10 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC16A8 +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html CTNS +PWCOMMONS ORGANIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_TRANSPORT.html SLC25A15 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html ITLN1 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html IL31RA +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html ANG +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html CLCF1 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html EGF +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html EGFR +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html BMP4 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html BCL10 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html IL3 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html IL5 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html IL29 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html LYN +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html HCLS1 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html IL20 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html CARD14 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html CCND1 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html EREG +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html CD80 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html CCND3 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html AKTIP +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html CCND2 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html CD81 +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html IL12A +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html GLMN +PWCOMMONS POSITIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PHOSPHORYLATION.html TNK2 +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html KHDRBS1 +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html ANAPC5 +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html ANAPC4 +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html BIRC5 +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html ANAPC10 +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html TPD52L1 +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html LATS1 +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDK2 +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDKN1A +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDKN2A +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html DDX11 +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDKN2B +PWCOMMONS G2 M TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G2_M_TRANSITION_OF_MITOTIC_CELL_CYCLE.html USH1C +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html IL4 +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html PTPRC +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html CRTAM +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html CADM1 +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html ELF4 +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html CD3E +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html IL18 +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html IL27 +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html CD276 +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html IL21 +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html NCK2 +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html NCK1 +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html SFTPD +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html GLMN +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html CD24 +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html IL12B +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html ICOSLG +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html EBI3 +PWCOMMONS T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_PROLIFERATION.html CD28 +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html CGB +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html USP9X +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html SPO11 +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html BMP15 +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html FSHR +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html BCL2L10 +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html PARN +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html EREG +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html DYNLL1 +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html NPM2 +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html LEFTY2 +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html GDF9 +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html BMPR1B +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html DMC1 +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html FSHB +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html TOB2 +PWCOMMONS FEMALE GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/FEMALE_GAMETE_GENERATION.html AXIN1 +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html ALDH5A1 +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html TP53 +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html TP63 +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html AASS +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html ACTN2 +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html HPRT1 +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html IGF1R +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html APOE +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html GPX3 +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html TRPV5 +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html TGM3 +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html CDA +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html ATPIF1 +PWCOMMONS PROTEIN TETRAMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TETRAMERIZATION.html INSR +PWCOMMONS REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html LYN +PWCOMMONS REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html NF2 +PWCOMMONS REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html IL29 +PWCOMMONS REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html CLCF1 +PWCOMMONS REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html HCLS1 +PWCOMMONS REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html SOCS1 +PWCOMMONS REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html IL12A +PWCOMMONS REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html IL31RA +PWCOMMONS REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html IL22RA2 +PWCOMMONS REGULATION OF TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html IL20 +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html ACADVL +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html PPARA +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html CPT1B +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html PPARD +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html ECH1 +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html ACADM +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html ACADS +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html ECHS1 +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html BDH2 +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html CPT1A +PWCOMMONS FATTY ACID BETA OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BETA_OXIDATION.html HADHB +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CADM1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html BCAR1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL18 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TNFSF13 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SART1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TLR8 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TGFB2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html MAP3K7 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CFHR1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD47 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IFNK +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html EBI3 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CRTAM +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SPACA3 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL29 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD3E +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SLA2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html NFAM1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SOCS5 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL21 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TRAT1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html THY1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html UBE2N +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html NCK2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SIRPG +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html LAT2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html EREG +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html NCK1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html LCK +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL12A +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL12B +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html ICOSLG +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html MBL2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TRAF2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html MIA3 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html KRT1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html ZAP70 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD24 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html C2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TRAF6 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD28 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL4 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html PTPRC +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL7 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD276 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html MALT1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD1D +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html FYN +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IKBKG +PWCOMMONS POSITIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD79A +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html RTN4 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html FGD2 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html FGD1 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html KLK8 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html TAOK2 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html LRRC4C +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html MYH9 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html SLIT2 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html THY1 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html AMIGO1 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html CDC42 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html CDC42EP2 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html YWHAH +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html CDC42EP1 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html ROBO1 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html APOE +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html MAPT +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html ROBO2 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html FGD5 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html CDC42EP4 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html FGD6 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html FGD3 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html CDC42EP5 +PWCOMMONS REGULATION OF ANATOMICAL STRUCTURE MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANATOMICAL_STRUCTURE_MORPHOGENESIS.html FGD4 +PWCOMMONS FOCAL ADHESION FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/FOCAL_ADHESION_FORMATION.html ACVRL1 +PWCOMMONS FOCAL ADHESION FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/FOCAL_ADHESION_FORMATION.html TSC1 +PWCOMMONS FOCAL ADHESION FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/FOCAL_ADHESION_FORMATION.html TAOK2 +PWCOMMONS FOCAL ADHESION FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/FOCAL_ADHESION_FORMATION.html SORBS1 +PWCOMMONS FOCAL ADHESION FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/FOCAL_ADHESION_FORMATION.html ACTN1 +PWCOMMONS FOCAL ADHESION FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/FOCAL_ADHESION_FORMATION.html TESK2 +PWCOMMONS FOCAL ADHESION FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/FOCAL_ADHESION_FORMATION.html ACTN2 +PWCOMMONS FOCAL ADHESION FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/FOCAL_ADHESION_FORMATION.html ACTN3 +PWCOMMONS FOCAL ADHESION FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/FOCAL_ADHESION_FORMATION.html PTEN +PWCOMMONS FOCAL ADHESION FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/FOCAL_ADHESION_FORMATION.html THY1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SEPT5 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SYT1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SNCAIP +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html NRBP1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html LMAN2L +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html USE1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html COPB2 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html GBF1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html NMUR1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html COPB1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html NMUR2 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html AP3B2 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html RAB26 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html ZW10 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SCAMP1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SCAMP3 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SCAMP2 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html BAIAP3 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html RPH3AL +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html VTI1B +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html OPTN +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html ERGIC1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html ERGIC2 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html ERGIC3 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html KIF1C +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html GRM4 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html COPG2 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html KRT18 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SCIN +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html RAB14 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html CARTPT +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html VAMP3 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html STEAP2 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html COPE +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html PKDREJ +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html AKAP3 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SNAP29 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html RAB3A +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html KCNMB4 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html CPLX2 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html CCL3 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html CPLX1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html STX7 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html NAPG +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html COPZ1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html BET1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html RER1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html RABEPK +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html CCL8 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html NAPA +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html ARFGEF2 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html LMAN1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html CCL5 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html RIMS1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html ARFGEF1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html HRH3 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html STX18 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SYN3 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html CKLF +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html STX16 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SEC22A +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html TMED10 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SEC22B +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html DOPEY2 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SEC22C +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html EXOC5 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SNAP23 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html DOPEY1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html RAB2A +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SCRN1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html NLGN1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SNAPIN +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html MON2 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html LIN7A +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html COG3 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html CADPS +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html COG7 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html SYTL4 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html GOSR2 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html GOSR1 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html YKT6 +PWCOMMONS SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/SECRETORY_PATHWAY.html COG2 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX6 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX3 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html AGXT +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX7 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html FIS1 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX1 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX19 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX16 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX26 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html VPS4B +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX14 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html ABCD3 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX13 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX12 +PWCOMMONS PEROXISOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/PEROXISOME_ORGANIZATION_AND_BIOGENESIS.html PEX10 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html MSH5 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html MRE11A +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html MSH4 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html LIG3 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html CHEK1 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html SPO11 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html RAD52 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html SYCP1 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html RAD50 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html SC65 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html ATM +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html RAD51 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html RAD1 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html REC8 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html RAD21 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html RAD51L1 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html STAG3 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html RAD54B +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html RAD51L3 +PWCOMMONS MEIOSIS I http://www.broadinstitute.org/gsea/msigdb/cards/MEIOSIS_I.html DMC1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SGMS2 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html GBGT1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SGMS1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html LASS5 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html APOA1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html LCAT +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html ST3GAL6 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PLA1A +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html NSMAF +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html APOM +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SGPL1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SPTLC1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html UGCG +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html TAZ +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html CHPT1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PITPNM3 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PI4K2A +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html NEU3 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PLA2G2E +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PLA2G2D +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html ENPP7 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html ST8SIA1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html APOC2 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html ST8SIA3 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PPT1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PLAA +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SERINC2 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SERINC5 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html LPCAT1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html B3GNT5 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SERINC1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PEMT +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PCYT1B +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html B4GALT4 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html LPL +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SPHK1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SMG1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html ST8SIA5 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html LASS1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PLA2G4C +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PLA2G4B +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html IMPA1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIP5K1A +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PTEN +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html ASAH1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html ASAH2 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGK +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html ST6GALNAC6 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html ST6GALNAC4 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGF +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGG +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html GPX4 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGH +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGB +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGC +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html CETP +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PCYT2 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PLCB2 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html AGPAT2 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html AGPAT1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGA +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html CLN3 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGZ +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGY +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIK3C2A +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGV +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PI4KA +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGU +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGT +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html LGALS13 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGS +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PI4KB +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIGO +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PRDX6 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html CD81 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PLA2G6 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PLA2G3 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html CLN8 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PLA2G5 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html CLN6 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PGS1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html GPAA1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html DGKE +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html ETNK1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PLCD1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html CERK +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PIK3R1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html B4GALNT1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html PSAP +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html FADS1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html LARGE +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html GLA +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html DPM1 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html DPM2 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html DPM3 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SMPD4 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SMPD3 +PWCOMMONS MEMBRANE LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_METABOLIC_PROCESS.html SMPD2 +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html PPARA +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html NPC2 +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html APOA5 +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html EDF1 +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html CIDEA +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html ANGPTL3 +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html SOD1 +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html STUB1 +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html NR5A1 +PWCOMMONS REGULATION OF LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LIPID_METABOLIC_PROCESS.html BMP6 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html CDC6 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html NBN +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html GTPBP4 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html ENPP7 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html CCDC88A +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html NF2 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html GMNN +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html WRNIP1 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html TIPIN +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html S100A11 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html RAD9A +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html ATR +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html GLI2 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html CDK2 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html CDT1 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html GLI1 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html TSPYL2 +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html EREG +PWCOMMONS REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_REPLICATION.html RAD17 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html IL10 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html PAIP2B +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html SFTPD +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html BCL3 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html IL6 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html PRG3 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html PAIP2 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html NDUFA13 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html INHA +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html SOD1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html FURIN +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html BRCA1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html SIGIRR +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html INHBB +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html EIF4A3 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html INHBA +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html EIF2AK1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html GLA +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html TSC1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html GCK +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html GRM8 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html NLRP12 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html GHRL +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html GHSR +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html EIF2AK3 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html APBB1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_BIOSYNTHETIC_PROCESS.html PDZD3 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html KCNH1 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html ACTA1 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html PICK1 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html MYOZ1 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html TTN +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html KCNIP2 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html IL21 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html SPINK5 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html FARP2 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html TGFB2 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html NRCAM +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html KRT19 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html RND1 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html EREG +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html MYH11 +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html CACNA1H +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html AGRN +PWCOMMONS DEVELOPMENTAL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_MATURATION.html ADAM12 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html ITLN1 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html ITGB2 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL31RA +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html NDUFS4 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CLCF1 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html TDGF1 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html EGFR +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html BMP4 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL3 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CCDC88A +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL5 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html NF2 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html LYN +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL29 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CCDC88C +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html HCLS1 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html SOCS1 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL20 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CARD14 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CCND1 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CD80 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html AKTIP +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CCND3 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CCND2 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CD81 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL12A +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html NLRP12 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html TNK2 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IGFBP3 +PWCOMMONS REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL22RA2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html XRCC4 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD51C +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html XRCC3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html XRCC2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html XRCC6 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html EIF2B2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CCNA2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html EIF2B3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MAP2K6 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html EIF2B4 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html EIF2B5 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html POLL +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html POLI +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html POLH +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html POLG +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html LIG1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RINT1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html POLE +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html LIG3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD9A +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html LIG4 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html PNKP +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RFC3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html KRT19 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html UBR5 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD23B +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD23A +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MRE11A +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html HUS1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CHEK1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CHEK2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html XAB2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html GYS2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html C16ORF5 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html POLQ +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html NTHL1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RECQL4 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RECQL5 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CIDEB +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html TREX2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CIDEA +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ATR +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD54L +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ATM +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RERG +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html PARP3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD54B +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CLEC7A +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html PARP1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html GHSR +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html UVRAG +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MLH1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html PMS2L1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html LATS1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html LATS2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html TRIAP1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html FANCG +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html FANCA +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CCNO +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html FANCC +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html LYN +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html AIFM1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html GTF2H4 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html TP53 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html APTX +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD52 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD50 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RBBP8 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html GTF2H1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD51 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html GADD45G +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html FOXC2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RUVBL2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html STEAP2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html NHEJ1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html GADD45A +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html UNG +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html WRNIP1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html POLA1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html PML +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html SFN +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html SUMO1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html PCSK9 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html BCL3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html BCL6 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CD24 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html FEN1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html UPF1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html HCLS1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html TNP1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CRIPAK +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html SOD1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html EIF2B1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html SELS +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html TP73 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html NAE1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ATRX +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MNAT1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CDH13 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MAPK12 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CSNK1D +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CSNK1E +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html EEF1E1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RBM14 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html OGG1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MMS19 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ZAK +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html SETX +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html IGHMBP2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html APOA2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MUTYH +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html GSTM3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD21 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html GATA3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CDKN2D +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html PMS2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html PMS1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CIB1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MYO6 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html DDIT3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html FOXN3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RPAIN +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD17 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ME1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html HMGB1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html HMGB2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html GCLC +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html BLM +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html UBE2V1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html UBE2V2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ABCA2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html SESN1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html POLE2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RAD51L1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html DYRK2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html GML +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ASF1A +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ATRIP +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html BRCA2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html BRCA1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html TSC1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html VCP +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html POLD1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html TDG +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MAFA +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ABL1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html SMC1A +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html PDCD7 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html NBN +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MCM7 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ANG +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html PCBP4 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html UBE2A +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html BRCC3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html REV1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html DDB1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ADIPOR2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ADIPOR1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html PRKCG +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html TOPORS +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html IFI16 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html UBE2B +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html NEK11 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html XRCC6BP1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html UBE2N +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html SPDYA +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RECQL +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html XPC +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html BTG2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html NCOA6 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html DDB2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html GHRL +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html PPP1R15A +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CALCR +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html BRSK1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html SMUG1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html RPA1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ERCC8 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ERCC5 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ERCC6 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ERCC3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ERCC4 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html APEX1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ERCC1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ERCC2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html APC +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html EXO1 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MSH6 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MSH3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MSH2 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MSH5 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html CEBPG +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html MPG +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ATXN3 +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html GCK +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html BRE +PWCOMMONS RESPONSE TO ENDOGENOUS STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ENDOGENOUS_STIMULUS.html ALKBH1 +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html NGLY1 +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html NCSTN +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html AGA +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html CLN3 +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html ADAMTS9 +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html APH1A +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html PSEN1 +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html PSEN2 +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html MGEA5 +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html PSENEN +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html MAN2B1 +PWCOMMONS GLYCOPROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_CATABOLIC_PROCESS.html ABCG1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SLC22A16 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html GNPDA1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html HMGCR +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html VAPB +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CRHBP +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html LHCGR +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html IDE +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PSG10 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html EIF5A +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html APOBEC3G +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html APOBEC3F +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html ANKRD7 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html TGFB1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SHH +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PSG11 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PRKACG +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html MDFIC +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html WWP2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html ADAM2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html WWP1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html RLN2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html IZUMO1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html ITCH +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html EIF2B2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html EIF2B4 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html EIF2B5 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SEMG1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html BYSL +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CRISP1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SPAG1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html HBXIP +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html NR0B1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SPA17 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CDKL2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CLEC4M +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PTHLH +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CRHR1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html WBP2NL +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html BPY2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html MST1R +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html AKAP3 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html AKAP4 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html ACR +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CCL3 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html DERL1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PRLHR +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CCL2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html TFCP2L1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html RRAGA +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html FCGRT +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CCL4 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html ADCYAP1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SMARCB1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html TRO +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html NPM2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html HTATSF1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SPAM1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html MAFF +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html OVGP1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html MEA1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SMAD3 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html TEAD3 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html COL16A1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html UBP1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CYP17A1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CLGN +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PPIA +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CD209 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SFRP4 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html ADAM20 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html ADAM21 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html GHSR +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html LHB +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html MTNR1A +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PPARD +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html INSL4 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PZP +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CSH2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html RSF1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SMCP +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html DEK +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SCGB1A1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html LNPEP +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html AGPAT6 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CXCR6 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SOX15 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html MKKS +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SRD5A2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html APLN +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html TNIP1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html TOP2A +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html DNAJC19 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CTBP1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CTBP2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html ZP2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html DMRT1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PSG3 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html DMRT2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PSG1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html FSHR +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html OR10J1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html AMH +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html TARBP2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PSG9 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PSG8 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PSG7 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html OR2H2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html EREG +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html ADM +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PSG6 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html NCOA4 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CLIC5 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PSG5 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CD81 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PSG4 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html GHRL +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html FSHB +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html EPYC +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PKDREJ +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html HS3ST6 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html HS3ST5 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html TSPY1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html OPRK1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html TAC1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SPRR2G +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html XKRY +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html OXTR +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SPRR2F +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SPRR2E +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html TAC3 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CD9 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html DNALI1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SPRR2C +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SPRR2D +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SPRR2A +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html AGT +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SPRR2B +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CSDE1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html RQCD1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html HSD17B3 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html AMHR2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html FOXL2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html DAZ2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html FLT1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html IL8 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html TBX3 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html TNP1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PTGFR +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html SOD1 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CENPI +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html RPL29 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html PRLR +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html CRH +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html ACE2 +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html BMPR1B +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html WNT7A +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html HPGD +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html LIPE +PWCOMMONS REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REPRODUCTIVE_PROCESS.html NR5A1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SEPT5 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SYT1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html NRBP1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SNCAIP +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html LTBP2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CADM1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html LMAN2L +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html USE1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html NLRC4 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html APOA2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html APOA1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html GBF1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html RAB26 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html DNAJC1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SCAMP1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CRTAM +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SCAMP3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SCAMP2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html BAIAP3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html VTI1B +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html OPTN +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html ERGIC1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html ERGIC2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html ERGIC3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html COPG2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html KRT18 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html BACE2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html RAB14 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CARTPT +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html VAMP3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html AKAP3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html KCNMB4 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html ARFGAP3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html ACHE +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html PPY +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CCL3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html STX7 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html NAPG +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html COPZ1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CCL8 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html RER1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html RABEPK +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html NAPA +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html ABCA1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CCL5 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html ARFGEF2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html LMAN1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html PYDC1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html RIMS1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html ARFGEF1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html STX18 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html INS +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CKLF +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html STX16 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html TMED10 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html DOPEY2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html DOPEY1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SRGN +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CARD8 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CIDEA +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SNAPIN +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html ARFIP1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html FOXP3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html LIN7A +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SYTL4 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html GLMN +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html GOSR2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html GOSR1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html PDIA4 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html DPH3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CANX +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html COPB2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html NOD2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html NMUR1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html ANG +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html COPB1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html NMUR2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html AP3B2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html ZW10 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html RPH3AL +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html NLRP3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html NLRP2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html KIF1C +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html GRM4 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SCIN +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html STEAP2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html ARL4D +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html COPE +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html PKDREJ +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SNAP29 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html RAB3A +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CPLX2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CPLX1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html BET1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html HRH3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SYN3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SEC22A +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html PYCARD +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SEC22B +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SEC22C +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SNAP23 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html EXOC5 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SCG2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html RAB2A +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SERGEF +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html NLGN1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html SCRN1 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html MON2 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html COG3 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html CADPS +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html COG7 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html NLRP12 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html YKT6 +PWCOMMONS SECRETION BY CELL http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION_BY_CELL.html COG2 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html BMI1 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html MFNG +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html SHROOM3 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html TRIM14 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html ZIC1 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html GLI2 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html SHH +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html ZIC3 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html CITED2 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html T +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html TDGF1 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html LEFTY2 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html PITX2 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html AXIN1 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html DVL2 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html MDFI +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html KIF3B +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html LMX1B +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html TBX3 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html FTO +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html SMAD5 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html SMAD2 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html SMAD1 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html MID1 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html ACVR2B +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html HOXB1 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html NOTCH4 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html RIPPLY1 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html PTCH1 +PWCOMMONS PATTERN SPECIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PATTERN_SPECIFICATION_PROCESS.html PBX3 +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html EDNRA +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html EGFR +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html GNA15 +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html C5AR1 +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html GNAQ +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html CCKBR +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html ANG +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html NMUR1 +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html AVPR1B +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html AVPR1A +PWCOMMONS PHOSPHOLIPASE C ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPASE_C_ACTIVATION.html PLCB2 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html JAG2 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html TPD52 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html SPINK5 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html SART1 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html ZAP70 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html CD4 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html IL4 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html PTPRC +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html CD3D +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html IL7 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html CEBPG +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html IL27 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html NFAM1 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html INHA +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html SOCS5 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html CD1D +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html HDAC5 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html INHBA +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html HDAC4 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html LCK +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html IL12B +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html CD79A +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html HDAC9 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html NHEJ1 +PWCOMMONS LYMPHOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_DIFFERENTIATION.html IL2 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html FOXL2 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html DFFA +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html GZMA +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html AIFM1 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html DFFB +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html CYCS +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html CECR2 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html CIDEA +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html BNIP3 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html TPD52L1 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html PPT1 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html GZMB +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html PMAIP1 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html SOD1 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html MOAP1 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html CASP3 +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html CDKN2A +PWCOMMONS CELL STRUCTURE DISASSEMBLY DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_STRUCTURE_DISASSEMBLY_DURING_APOPTOSIS.html BAX +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html NCBP2 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html AQP9 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html NUP160 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html EIF5A +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html SLC29A1 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html SLC23A1 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html SLC29A2 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html SLC23A2 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html SLC35B2 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html RAE1 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html DDX25 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html DDX19B +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html SLC28A2 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html SLC28A1 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html KHDRBS1 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html NUP133 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html UPF2 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html UPF1 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html NUDT4 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html SMG6 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html SMG5 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html CKAP5 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html HNRNPA2B1 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html SMG7 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html NXF5 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html SMG1 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html VDAC3 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html DDX39 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html TSC1 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html NUP107 +PWCOMMONS NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_TRANSPORT.html BAT1 +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html PTHLH +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html UCN2 +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html ADCY7 +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html NUDT4 +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html ADM +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html ADORA2A +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html GRM8 +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html OXER1 +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html PTH +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html ABCA1 +PWCOMMONS CYCLIC NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_METABOLIC_PROCESS.html PDZD3 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html RTP3 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html UNC119 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html RP1 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html RTP4 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html TRPC3 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html TAS1R3 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html OPN1SW +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html NR2E3 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html ABCA4 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html TAS1R2 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html SAG +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html PDE6B +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html PITPNM1 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html TAS2R16 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html TAS2R14 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html PDC +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html TAS2R43 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html CACNA1F +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html RHO +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html GRK1 +PWCOMMONS DETECTION OF STIMULUS INVOLVED IN SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS_INVOLVED_IN_SENSORY_PERCEPTION.html OPN4 +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html CCKAR +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html GNAI2 +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html ENPP1 +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html STC2 +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html PPARG +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html ENSA +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html GCGR +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html TULP4 +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html SSTR2 +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html CHMP1A +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html CDKN2B +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html SSTR1 +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html CDKN2D +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html GIPR +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html STC1 +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html OGT +PWCOMMONS RESPONSE TO NUTRIENT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT.html SST +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html MDFI +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html DBNL +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html ZAK +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html PTPLAD1 +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html KIAA1804 +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html MAP4K1 +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html PKN1 +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html DAXX +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html MAP3K6 +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html MAP4K5 +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html MAP3K5 +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html MDFIC +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html MAP3K2 +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html MAP3K9 +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html MAP3K10 +PWCOMMONS ACTIVATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_JNK_ACTIVITY.html MAP3K11 +PWCOMMONS REGULATION OF SYNAPSE STRUCTURE AND ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SYNAPSE_STRUCTURE_AND_ACTIVITY.html COL4A4 +PWCOMMONS REGULATION OF SYNAPSE STRUCTURE AND ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SYNAPSE_STRUCTURE_AND_ACTIVITY.html KLK8 +PWCOMMONS REGULATION OF SYNAPSE STRUCTURE AND ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SYNAPSE_STRUCTURE_AND_ACTIVITY.html YWHAG +PWCOMMONS REGULATION OF SYNAPSE STRUCTURE AND ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SYNAPSE_STRUCTURE_AND_ACTIVITY.html YWHAH +PWCOMMONS REGULATION OF SYNAPSE STRUCTURE AND ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SYNAPSE_STRUCTURE_AND_ACTIVITY.html APOE +PWCOMMONS REGULATION OF SYNAPSE STRUCTURE AND ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SYNAPSE_STRUCTURE_AND_ACTIVITY.html GRIK2 +PWCOMMONS REGULATION OF SYNAPSE STRUCTURE AND ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SYNAPSE_STRUCTURE_AND_ACTIVITY.html NPTN +PWCOMMONS REGULATION OF SYNAPSE STRUCTURE AND ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SYNAPSE_STRUCTURE_AND_ACTIVITY.html GHRL +PWCOMMONS REGULATION OF SYNAPSE STRUCTURE AND ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SYNAPSE_STRUCTURE_AND_ACTIVITY.html CNTN4 +PWCOMMONS REGULATION OF SYNAPSE STRUCTURE AND ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SYNAPSE_STRUCTURE_AND_ACTIVITY.html UBB +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html TPST1 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html TPST2 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html HS3ST5 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html GCLC +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html NDST1 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html NFS1 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html GCLM +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html GLRX2 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html GPX1 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html MSRA +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST12 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST11 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST14 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST13 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html HS6ST1 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html GSTA1 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html UST +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST2 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST3 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST4 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST5 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html SOD1 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CDO1 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html GLCE +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST1 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html ADI1 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST7 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST6 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST9 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CHST8 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html MAT2B +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html EXT1 +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html CTNS +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html SMS +PWCOMMONS SULFUR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_METABOLIC_PROCESS.html HS3ST3B1 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html BIRC5 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html SFN +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html HBXIP +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html TNNT2 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html GPX1 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html APOA2 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html CDKN2D +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html ATPIF1 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html PPP2R4 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html ANGPTL3 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html DNAJB6 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html IFI6 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html ANGPTL4 +PWCOMMONS NEGATIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html DHCR24 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MYL6 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html KCNH1 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MYOD1 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MYEF2 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html CACNB2 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html TTN +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html TGFB1 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MYL6B +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MKL2 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html CHRNA1 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html IFRD1 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html BOC +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html BMP4 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MYF6 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html COL4A4 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html FOXL2 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html TBX3 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html ACTA1 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MYF5 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html TAZ +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html CENPF +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html NRD1 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MYOZ1 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html CBY1 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MBNL1 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html CSRP3 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html SIRT2 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html HDAC5 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html HDAC4 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html KRT19 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html NOTCH1 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MAPK12 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html SVIL +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html MYH11 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html CACNA1H +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html UBB +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html HDAC9 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html ADAM12 +PWCOMMONS STRIATED MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_DEVELOPMENT.html IGFBP3 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html XRCC2 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html KNTC1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html TTK +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html PKMYT1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html AURKA +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CDC16 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html TTN +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html TGFB1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RAD21 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html DDX11 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CDKN2B +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html TARDBP +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html STAG3 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CCNA1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CCNA2 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CDCA5 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html ANAPC5 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RAN +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RINT1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html ANAPC4 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html LIG3 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html ESPL1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html PIM2 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html DCTN3 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html BOLL +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html DCTN2 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RAD1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html REC8 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html MAD2L1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html ZWINT +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CLIP1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html AKAP8 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html MAD2L2 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html NEK6 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RAD17 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html PPP5C +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html PAM +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html NEK2 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html MRE11A +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html ANLN +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html ANAPC10 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CHEK1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html ANAPC11 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RCC1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html SYCP1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html PIN1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html DUSP13 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RAD51L1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html NPM2 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html PBRM1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RAD51L3 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html EGF +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html GML +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html SSSCA1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CDC23 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html NDC80 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html SUGT1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RAD54L +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CDC27 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html ATM +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html NOLC1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html PLK1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RAD54B +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html SMC1A +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html KIF22 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html NBN +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html KIF25 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html KIF2C +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html TRIAP1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html PCBP4 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html PRMT5 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html TGFA +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html ZW10 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html TAF1L +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html KIF11 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html KIF15 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html TPX2 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html NUSAP1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RAD52 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html UBE2C +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RAD50 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html RAD51 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CHMP1A +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html EREG +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html TOP3A +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html BUB1B +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CHFR +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html DMC1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html KPNA2 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html PML +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CETN1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html SPO11 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html BRSK1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html NUMA1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html NCAPH +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html HSPA2 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html BUB1 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CD28 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html PDS5B +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html MSH5 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html MSH4 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CENPE +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html BIRC5 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CDC25C +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html SMC3 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html SC65 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html SMC4 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CDC25B +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html MPHOSPH9 +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html EPGN +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html CIT +PWCOMMONS M PHASE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE.html MPHOSPH6 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html RTN4 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html BMP10 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html ACVRL1 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html BCAR1 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html ABI3 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html PTEN +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html SHH +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html VCL +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html MIA3 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html TDGF1 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html ANGPTL3 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html LAMB1 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html EGFR +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html PARD6B +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html GTPBP4 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html NF2 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html TBX5 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html SPHK1 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html NF1 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html NEXN +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html PLG +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html THY1 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html CDH13 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html ALOX15B +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html CLIC4 +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html AMOT +PWCOMMONS REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MIGRATION.html TRIP6 +PWCOMMONS PROTEIN MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MATURATION.html NCSTN +PWCOMMONS PROTEIN MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MATURATION.html APH1A +PWCOMMONS PROTEIN MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MATURATION.html PSEN1 +PWCOMMONS PROTEIN MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MATURATION.html ATP6AP2 +PWCOMMONS PROTEIN MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MATURATION.html REN +PWCOMMONS PROTEIN MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MATURATION.html PSEN2 +PWCOMMONS PROTEIN MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MATURATION.html PSENEN +PWCOMMONS PROTEIN MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MATURATION.html STUB1 +PWCOMMONS PROTEIN MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MATURATION.html SRGN +PWCOMMONS PROTEIN MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MATURATION.html AIP +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html MOCOS +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html ME1 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html COASY +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html GCLC +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html ALDH1L1 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html PGD +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html ACOT2 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html ACOT1 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html GCLM +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html PDSS1 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html PDHB +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html ACOT4 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html PDSS2 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html GLRX2 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html ACOT9 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html GPX1 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html MTHFD2 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html ACOT12 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html C16ORF7 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html GSTA1 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html MOCS2 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html ACO2 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html FTCD +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html ACLY +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html COQ7 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html SOD1 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html OXSM +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html SDHA +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html COQ3 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html SDHB +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html COQ2 +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html GLYAT +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html PGLS +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html NNT +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html MLYCD +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html SDHC +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html SDHD +PWCOMMONS COENZYME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_METABOLIC_PROCESS.html CTNS +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html PARD6A +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html PARD6B +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html TLN1 +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html GJD3 +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html TLN2 +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html PRKCI +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html GJA1 +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html GJA4 +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html GJA5 +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html VCL +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html GJC1 +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html CD9 +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html TJP1 +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html ITGA6 +PWCOMMONS CYTOPLASM ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOPLASM_ORGANIZATION_AND_BIOGENESIS.html LAMC1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html ALS2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html ZAK +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html EDN2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TNFSF15 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PKMYT1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MBIP +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TLR6 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K7 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K6 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K5 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDKN2A +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K4 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html DIRAS3 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDKN2B +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDKN2C +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MDFIC +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDKN2D +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K9 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TDGF1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html SPRED2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CHRNA7 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html GNG3 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html SPRED1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html EGFR +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html ANAPC2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html DBNL +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html GTPBP4 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html C5AR1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html RBL2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MADD +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PIK3CB +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html KIAA1804 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html RBL1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PICK1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html THY1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP4K5 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PLCE1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CARTPT +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TRAF2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDK5R1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDK5R2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html ADORA2B +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PTPLAD1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html ERBB2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP4K1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CHEK1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PYDC1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CCNG1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDC37 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html SERINC2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html SERINC5 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html HEXIM2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html HEXIM1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html SERINC1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html DUSP16 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html ADRA2A +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html ADRA2C +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TRAF7 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TRAF6 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html EGF +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MDFI +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TAOK2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP2K3 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PIF1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html DUSP22 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TPD52L1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MALT1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDKN1C +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CBLC +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html RGS3 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html RGS4 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CCNT2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html C13ORF15 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CCNT1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PTEN +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PDCD4 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html LATS1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html DAXX +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html LATS2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CAMKK2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CCNE2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PAK2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html ANG +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CXCR4 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TGFA +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html SHC1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDK5RAP3 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PAK1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDK5RAP1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html FGF2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html SERTAD1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDC6 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html IRAK1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CCNK +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CCDC88A +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html HERC5 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PKN1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html RB1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDK7 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html GTF2H1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CARD10 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html GRM4 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TARBP2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PROK2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html NCK2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CCND1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html ADRB2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html EREG +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CCND3 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CCND2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html LAX1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CHRM1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html HIPK3 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CD81 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html GADD45G +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K10 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html ERN1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html GHRL +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html GADD45B +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html GADD45A +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K13 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PRKD3 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html GAP43 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K11 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CKS1B +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PARD3 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html C5 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html FPR1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TRIB3 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html BCCIP +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html SFN +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TRIB2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TRIB1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html AZU1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html TSPYL2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CD4 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CD24 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PPAP2A +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html APC +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html GPS1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PTPRC +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html NF1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CRIPAK +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDKN3 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html SOD1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDC25C +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CDC25A +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html GPS2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html MNAT1 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html DUSP2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html PRLR +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html EPGN +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html CKS2 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html DUSP9 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html DUSP8 +PWCOMMONS REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSFERASE_ACTIVITY.html DUSP6 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html KCNH1 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html BMP4 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html TBX3 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html ACTA1 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html MYEF2 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html MYOZ1 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html MBNL1 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html TTN +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html KRT19 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html NOTCH1 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html MAPK12 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html MYH11 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html CACNA1H +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html ADAM12 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html BOC +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html IGFBP3 +PWCOMMONS MYOBLAST DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYOBLAST_DIFFERENTIATION.html IFRD1 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html RTP3 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html TAS2R16 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html TAS2R14 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html RTP4 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html TAS2R4 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html TAS2R5 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html TAS2R3 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html TAS2R43 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html TAS1R3 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html TAS1R1 +PWCOMMONS SENSORY PERCEPTION OF TASTE http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_TASTE.html TAS1R2 +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html ALDOA +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html GAPDHS +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html PGLS +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html PFKL +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html ECD +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html PGD +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html ALDOB +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html PFKFB1 +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html HK1 +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html TKTL1 +PWCOMMONS GLUCOSE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSE_CATABOLIC_PROCESS.html PFKM +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html RAB3GAP2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TSPO +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html XPO6 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html LTBP2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html AP1G1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TNFSF14 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html EIF5A +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html MIPEP +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html MXI1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html AGXT +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html KLHL2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TGFB1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html SSR1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html HOMER3 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TRAK1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TLK1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html RPL11 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html KIF13B +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html MCM3AP +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html MYO6 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html STAP1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html VPS45 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html ERP29 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html OPTN +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NUPL2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html RPAIN +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html F2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PEX26 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html RTP3 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html DERL2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html RTP4 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html DERL1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NFKBIE +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html CTSA +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html CALR +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html CD74 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html UHMK1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html CDC37 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NPM1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html DUSP16 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TRAM1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html SEC23IP +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html MDFI +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html SMAD3 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html SNAPIN +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html ICMT +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html ARFIP1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NFKBIL1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TRNT1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NFKBIL2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PPIH +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html CBLB +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html VCP +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TRPS1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PTTG1IP +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html LGTN +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html XPO7 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TRIP6 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html RERE +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PDIA3 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TIMM17A +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html HPS4 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TIMM17B +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html AP3S2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PEX6 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PEX3 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html GLI3 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PEX7 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html AKT1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PEX1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html ZFYVE16 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html ZFYVE9 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NCKIPSD +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html RANBP2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TPR +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html KPNB1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html KDELR1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TOMM34 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html AP3B1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html KDELR2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html RPGR +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TIMM23 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NLRP3 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TIMM44 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html FLNA +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html MFN2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html ATG4D +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html ATG4C +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html ATG4B +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NUP205 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html ATG4A +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html C3ORF31 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html ARCN1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html KPNA6 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TOMM22 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html KPNA5 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html KPNA4 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html KPNA3 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html KPNA2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html KPNA1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TNF +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html AP1M2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html CDH1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html SEC63 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NAGPA +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NUP214 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PEX19 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html CEP57 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html AP3M1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TAP2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PEX16 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html BCL3 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PEX14 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html AP3D1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html SCG5 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html BCL6 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PEX13 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PEX12 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html APPBP2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PEX10 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TNPO1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html APBA1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html FYB +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NF1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NLGN1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html PPP1R10 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html GABARAP +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html SELS +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html YWHAH +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html COG7 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html GSK3B +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html NLRP12 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html TRPC4AP +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html FAF1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html GGA1 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html SSR2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html F2R +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html COG2 +PWCOMMONS INTRACELLULAR PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_PROTEIN_TRANSPORT.html BARD1 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html BBS4 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html CROCC +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html CKAP5 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html CETN3 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html BRCA2 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html CETN1 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html CP110 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html UXT +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html SASS6 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html NDE1 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html CEP250 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html SAC3D1 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html CNTROB +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html NPM1 +PWCOMMONS CENTROSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_ORGANIZATION_AND_BIOGENESIS.html TUBE1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html TM7SF4 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html MMP9 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html SPI1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html JAG2 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html ZNF675 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html FOXO3 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html TPD52 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html SPINK5 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html IL10 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html SART1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html IL31RA +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html TGFB2 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html ACVR1B +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html CDC42 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html ALAS2 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html ACIN1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html MYST1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html PRL +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html MYST3 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html KIRREL3 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html LYN +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html CD3D +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html IL27 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html LDB1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html TAZ +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html CDK6 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html IFI16 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html INHA +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html NFAM1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html SOCS5 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html MYH9 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html INHBA +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html ACVR2A +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html RPS19 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html LCK +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html SCIN +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html NCOA6 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html LRMP +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html CARTPT +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html IL12B +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html NHEJ1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html RAB3D +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html CSF1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html RAG1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html MAP4K2 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html MAP4K1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html PF4 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html ZBTB16 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html MLF1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html CALCA +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html SNRK +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html RASGRP4 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html ZAP70 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html CD4 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html DYRK3 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html RUNX1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html BLNK +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html IL4 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html PTPRC +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html MLL +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html MAFB +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html IL7 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html CEBPG +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html HCLS1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html MAL +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html CD1D +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html HDAC5 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html NOTCH2 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html HDAC4 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html ETS1 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html NOTCH4 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html CD79A +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html HDAC9 +PWCOMMONS HEMOPOIESIS http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIESIS.html IL2 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIF23 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html SEPT5 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html LIMA1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html PRC1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html TTK +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html LATS1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html CXCL12 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html HOOK3 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIF2C +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html PEX1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html GSN +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIFAP3 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html MAPT +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html TUBG1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIF13B +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html DYNC1I1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html STX5 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html ARHGEF2 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html CCDC88A +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIF11 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html OPA1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIF5B +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html RAN +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIF5A +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html NUSAP1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html MID1IP1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html MARK4 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html NEBL +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html NCK2 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html UXT +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIF1A +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIF1B +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html TPPP +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html NCK1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html CNTROB +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html LRMP +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html TMSB4Y +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html MAPRE1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html STMN1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KPNA2 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html LRPPRC +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html MAP3K11 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html SNAP29 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIF4A +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html AP1M2 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KATNB1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html ARF6 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html RCC1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html CDC42EP2 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html TUBGCP6 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html SORBS3 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html TUBGCP5 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html TMED10 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html CLASP1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html PAFAH1B1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html SNAP23 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html CLASP2 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html NEFL +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html RASA1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html APBA1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html ARHGEF10L +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html APC +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html CDC42EP5 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html KIF3B +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html NF2 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html RNF19A +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html CKAP5 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html NLGN1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html MID1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html TUBGCP2 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html CENPJ +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html SMC3 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html TSC1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html MAP1S +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html CAPG +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html RHOT1 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html RHOT2 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html MAP7 +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html SMC1A +PWCOMMONS MICROTUBULE BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_PROCESS.html YKT6 +PWCOMMONS REGULATION OF AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_AXONOGENESIS.html RTN4 +PWCOMMONS REGULATION OF AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_AXONOGENESIS.html AMIGO1 +PWCOMMONS REGULATION OF AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_AXONOGENESIS.html KLK8 +PWCOMMONS REGULATION OF AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_AXONOGENESIS.html ROBO1 +PWCOMMONS REGULATION OF AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_AXONOGENESIS.html APOE +PWCOMMONS REGULATION OF AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_AXONOGENESIS.html MAPT +PWCOMMONS REGULATION OF AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_AXONOGENESIS.html ROBO2 +PWCOMMONS REGULATION OF AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_AXONOGENESIS.html LRRC4C +PWCOMMONS REGULATION OF AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_AXONOGENESIS.html SLIT2 +PWCOMMONS REGULATION OF AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_AXONOGENESIS.html THY1 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html CCKAR +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html ENPP1 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html GNAI2 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html NUAK2 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html PPARG +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html ASNS +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html ENSA +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html GCGR +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html CDKN2B +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html RASGRP4 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html ALB +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html CDKN2D +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html PCSK9 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html OGT +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html SREBF1 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html STC2 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html FADS1 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html TP53 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html LEP +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html PPP1R9B +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html CDKN1A +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html SSTR2 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html CHMP1A +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html TULP4 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html RPS19 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html NPY +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html SSTR1 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html GIPR +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html CARTPT +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html GHRL +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html STC1 +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html GHSR +PWCOMMONS RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_EXTRACELLULAR_STIMULUS.html SST +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html FOXL2 +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html AIFM1 +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html DFFA +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html DFFB +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html CYCS +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html CIDEA +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html NDUFA13 +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html BNIP3 +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html CECR2 +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html TPD52L1 +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html PPT1 +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html SOD1 +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html MOAP1 +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html CASP3 +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html CDKN2A +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html BAX +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html ACIN1 +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html TOP2A +PWCOMMONS APOPTOTIC NUCLEAR CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_NUCLEAR_CHANGES.html DEDD2 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html DPF2 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html BID +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html TNFRSF25 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html DEDD +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html FASTK +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html DAXX +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html ADORA1 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html CRADD +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html BTK +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html MAP3K5 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html CASP8AP2 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html PTH +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html DIABLO +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html DAP +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html DEDD2 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html PRKCA +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html CFLAR +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html NDUFA13 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html FADD +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html DAPK1 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html CD38 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html SSTR3 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html BAX +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html RIPK3 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html PDCD6 +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html SST +PWCOMMONS INDUCTION OF APOPTOSIS BY EXTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_EXTRACELLULAR_SIGNALS.html DAP3 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html GCLC +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html HS3ST5 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html NDST1 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html CHST3 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html CDO1 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html GCLM +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html GLCE +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html CHST7 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html CHST6 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html CHST12 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html CHST11 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html CHST13 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html MAT2B +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html HS6ST1 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html EXT1 +PWCOMMONS SULFUR COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SULFUR_COMPOUND_BIOSYNTHETIC_PROCESS.html HS3ST3B1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html CGB +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html HMGCR +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html JAG2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html DNAJB13 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html PTTG1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html BMP15 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html CSNK2A2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html PRKACG +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html DDX25 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html OR7C1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html GDF9 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html CCNA1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html PICK1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html LIG3 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SPA17 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html BCL2L10 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SPAG9 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html NME5 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html REC8 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SYCP3 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html TCFL5 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SPAG6 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SPAG4 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html TESK1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html TESK2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html BPY2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html WFDC2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html XRN2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html PNMA1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html DEAF1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html CHEK1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html BCL2L2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SYCP1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html DAZAP1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html RPL10L +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html OAZ3 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html DUSP13 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html NPM2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html HOXA10 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html AXIN1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html ADAM28 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html ABCB9 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html ADAM29 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html MEA1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html GGN +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html RBMY1A1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html CDY2B +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html TSGA10 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html VCX +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html INSL3 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html PRKAG1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html DEDD +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html NR6A1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html MOV10L1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html YBX2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html PARN +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html DYNLL1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SERPINA5 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html RPL39L +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html KHDRBS3 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html FOXJ1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html HIST1H1A +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html MORC1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html FSHR +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html THEG +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html VCX3A +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html PROK2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html HIST1H1T +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html VCX3B +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html MAST2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html EREG +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html ADAM18 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html IFT81 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html RUVBL1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html DMC1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html FSHB +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html DNAH9 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html H1FNT +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html TSPY1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html USP9Y +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html USP9X +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html GPR64 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SPO11 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html CCT6B +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html CDYL +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SPANXA1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html HSPA2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html CEP57 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SPAG11B +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html LEFTY2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html HSF2BP +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SPATA4 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html DAZL +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html PPAP2A +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html PPAP2B +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html BRD2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SOX30 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html TRIM27 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html TNP1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html MTL5 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html RACGAP1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html SOD1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html BAX +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html MYCBPAP +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html PRM1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html NLRP14 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html PTCH2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html PRM2 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html BMPR1B +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html CDY1 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html TSSK3 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html TSSK6 +PWCOMMONS GAMETE GENERATION http://www.broadinstitute.org/gsea/msigdb/cards/GAMETE_GENERATION.html TOB2 +PWCOMMONS RESPONSE TO TOXIN http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TOXIN.html GLYAT +PWCOMMONS RESPONSE TO TOXIN http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TOXIN.html CES1 +PWCOMMONS RESPONSE TO TOXIN http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TOXIN.html BCL2 +PWCOMMONS RESPONSE TO TOXIN http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TOXIN.html BAX +PWCOMMONS RESPONSE TO TOXIN http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TOXIN.html AS3MT +PWCOMMONS RESPONSE TO TOXIN http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TOXIN.html DPYS +PWCOMMONS RESPONSE TO TOXIN http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TOXIN.html BPHL +PWCOMMONS RESPONSE TO TOXIN http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TOXIN.html NQO1 +PWCOMMONS RESPONSE TO TOXIN http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TOXIN.html PDZD3 +PWCOMMONS RESPONSE TO TOXIN http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TOXIN.html MPST +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html TNF +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html UBE2V1 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html PRDX3 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html DPH3 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html NOD2 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html NLRC3 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html NPM1 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html PYCARD +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html ABRA +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html CAMK2A +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html BCL10 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html CEBPG +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html RELA +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html EDA2R +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html NFAM1 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html JMY +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html UBE2N +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html PRKCQ +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html CARD11 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html EP300 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html AKTIP +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html NME1 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html EDF1 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html TSSK4 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html IKBKB +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html ERC1 +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html EDA +PWCOMMONS POSITIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_BINDING.html MAP3K13 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html BNIP3 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html PPT1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html PMAIP1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html MTIF3 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html IRAK3 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html CASP3 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html MOAP1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html CDKN2A +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html MAZ +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html SET +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html HRSP12 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html NRG1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html FOXL2 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html UPF1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html MTERF +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html DFFA +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html GZMA +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html AIFM1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html DFFB +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html CYCS +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html TNP1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html CIDEA +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html CECR2 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html GZMB +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html TPD52L1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html SOD1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html ETF1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html HMGA1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html TTF2 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html SMARCE1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html BAX +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html MTRF1 +PWCOMMONS CELLULAR COMPONENT DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_COMPONENT_DISASSEMBLY.html SUPT16H +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html TM7SF4 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html MMP9 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html SPI1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html JAG2 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html ZNF675 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html TNFSF13 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html FOXO3 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html TPD52 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html SPINK5 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html SART1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html TGFB1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html IL10 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html IL31RA +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html TGFB2 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html CDC42 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html ACVR1B +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html ALAS2 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html ACIN1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html MYST1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html PRL +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html MYST3 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html KIRREL3 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html LYN +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html CD3D +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html IL27 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html LIG1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html LDB1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html TAZ +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html LIG3 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html CDK6 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html INHA +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html NFAM1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html SOCS5 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html IFI16 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html MYH9 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html ACVR2A +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html INHBA +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html RPS19 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html CD40LG +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html LCK +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html SCIN +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html NCOA6 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html CARTPT +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html LRMP +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html IL12B +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html NHEJ1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html RAB3D +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html CSF1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html MAP4K2 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html RAG1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html MAP4K1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html PF4 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html ZBTB16 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html MLF1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html CALCA +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html SNRK +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html RASGRP4 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html ZAP70 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html CD4 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html DYRK3 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html RUNX1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html BLNK +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html IL4 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html PTPRC +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html MLL +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html MAFB +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html IL7 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html HCLS1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html CEBPG +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html MAL +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html TBX1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html CD1D +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html HDAC5 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html NOTCH2 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html HDAC4 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html ETS1 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html NOTCH4 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html CD79A +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html HDAC9 +PWCOMMONS IMMUNE SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_SYSTEM_DEVELOPMENT.html IL2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ALS2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html XRCC4 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GNA15 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ADORA3 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ZAK +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ADCY7 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html EDN2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TNFSF15 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PMAIP1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TLR6 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GHRHR +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MAP3K7 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MAP3K6 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html NLRC4 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MAP3K5 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CDKN2A +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MAP3K4 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CASP8AP2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MDFIC +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MAP3K9 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html APOA5 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html RGN +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CHRNA7 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PSENEN +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GNG3 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html EGFR +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DBNL +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html C5AR1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PIK3CB +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MADD +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html KIAA1804 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PICK1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html THY1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html BCL2L10 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TNNT2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CRHR1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PLCE1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MAP4K5 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html IFNB1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html F2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CARTPT +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GLP1R +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ACR +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TRAF2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ADORA2B +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DRD5 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ERBB2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PTPLAD1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html APOC2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MAP4K1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ADCYAP1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ADRB3 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html SERINC2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html SERINC5 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html SERINC1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MTCH1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ADRA2A +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DIABLO +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ADRA2C +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TRAF7 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html EGF +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TRAF6 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html HIP1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MDFI +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CARD8 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TAOK2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MAP2K3 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html SMAD3 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MALT1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TPD52L1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ATP7A +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html VCP +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html BBC3 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html AVPR1B +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html AVPR1A +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ABL1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ABL2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DAXX +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html EDNRA +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CASP9 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ANG +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CXCR4 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html NMUR1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html NMUR2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TGFA +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html SHC1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CAP1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PAK1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PLCB2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html FGF2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html IRAK1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CCDC88A +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html AIFM3 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CCKBR +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html RALBP1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CYCS +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TP53 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PKN1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ARHGAP27 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html NLRP3 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html NLRP2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CARD10 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html UBE2N +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PROK2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GRM4 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ADRB2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CCND1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ADRB1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html EREG +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PSEN1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GNAQ +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CCND3 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CCND2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CHRM1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CD81 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GADD45G +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GIPR +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html LCK +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PSEN2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ERN1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MAP3K10 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GHRL +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GNAS +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GADD45B +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MAP3K13 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GAP43 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PRKD3 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MAP3K11 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CALCR +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html AVPR2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PARD3 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html APH1A +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html C5 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html FPR1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html AZU1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CALCA +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MOAP1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MAP3K2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CD4 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CD24 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PPAP2A +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html COL4A3 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html FOXL2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CAP2 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html NF1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html SOD1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html STAT1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html NCSTN +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html P2RY11 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PRLR +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html EPGN +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html BAX +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html IFT57 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PPP2R4 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html APAF1 +PWCOMMONS POSITIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html F2R +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF2C1 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF5 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF5A +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html MTIF2 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html MTIF3 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html PAIP2B +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF3C +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF3D +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF3A +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF3B +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF3G +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF3H +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html RPS3A +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF3E +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF1AX +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF3F +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF1 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html DAZL +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF3I +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF3J +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF2B2 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF2B3 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF2B4 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF2B5 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html DAZ1 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html PAIP2 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html PAIP1 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF2S3 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF1B +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF2B1 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html BOLL +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF4B +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF4G2 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF4G3 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF4A2 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF4H +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html HSPB1 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF2AK3 +PWCOMMONS TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATIONAL_INITIATION.html EIF2AK4 +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html UNC119 +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html RP1 +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html TRPC3 +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html OPN1SW +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html NR2E3 +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html ABCA4 +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html SAG +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html PITPNM1 +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html PDE6B +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html PDC +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html GRK1 +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html OPN4 +PWCOMMONS PHOTOTRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/PHOTOTRANSDUCTION.html RHO +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html BMI1 +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html MDFI +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html DVL2 +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html TBX3 +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html LMX1B +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html TRIM14 +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html SMAD2 +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html GLI2 +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html T +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html ACVR2B +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html TDGF1 +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html RIPPLY1 +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html PTCH1 +PWCOMMONS REGIONALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGIONALIZATION.html PBX3 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html NBN +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html ZAK +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html AIF1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html RPRM +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html FOXO4 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html LATS1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html TGFB1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html LATS2 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CUL3 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CUL2 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CUL5 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CDKN2A +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CDKN2B +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html PCBP4 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CDKN2C +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CDKN2D +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html RHOB +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CDK5RAP1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html MYC +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html MAP2K6 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CUL1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html DLG1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html KHDRBS1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html TP53 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html TBRG4 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html INHA +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html JMY +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html MFN2 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html PPM1G +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html INHBA +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html DHRS2 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html EIF4G2 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html PA2G4 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CHMP1A +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html ALOX15B +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html BTG4 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html TBRG1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html BTG3 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html ERN1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html FOXC1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html GADD45A +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html PPP1R15A +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html ING4 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html PPP2R3B +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html STK11 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html IFNW1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html ZBTB17 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html SESN1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html UHMK1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html MLF1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html PLAGL1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html HEXIM2 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html HEXIM1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CDC123 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html RUNX3 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html APC +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html BMP4 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html BMP2 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html IL8 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html TP53BP2 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html GMNN +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html SMAD3 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html GAS1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CDKN3 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html GAS7 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CDKN1C +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html PPP1R9B +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html NOTCH2 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CDKN1B +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html CUL4A +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html MAPK12 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html RASSF1 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html MYO16 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html PPP1R13B +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html BMP7 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html APBB2 +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html HPGD +PWCOMMONS NEGATIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_CYCLE.html APBB1 +PWCOMMONS HETEROPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HETEROPHILIC_CELL_ADHESION.html AMIGO1 +PWCOMMONS HETEROPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HETEROPHILIC_CELL_ADHESION.html AMIGO2 +PWCOMMONS HETEROPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HETEROPHILIC_CELL_ADHESION.html REG3A +PWCOMMONS HETEROPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HETEROPHILIC_CELL_ADHESION.html AMIGO3 +PWCOMMONS HETEROPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HETEROPHILIC_CELL_ADHESION.html CADM3 +PWCOMMONS HETEROPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HETEROPHILIC_CELL_ADHESION.html PVRL1 +PWCOMMONS HETEROPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HETEROPHILIC_CELL_ADHESION.html CADM1 +PWCOMMONS HETEROPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HETEROPHILIC_CELL_ADHESION.html CD209 +PWCOMMONS HETEROPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HETEROPHILIC_CELL_ADHESION.html LGALS7 +PWCOMMONS HETEROPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HETEROPHILIC_CELL_ADHESION.html CD164 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html CDC6 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html NBN +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html ZAK +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html HUS1 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html RINT1 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html PML +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html TIPIN +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html RAD9A +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html CHEK1 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html CHEK2 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html ATR +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html BRSK1 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html FOXN3 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html NEK11 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html NAE1 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html CDT1 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html RAD1 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html TRIAP1 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html PCBP4 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html GML +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html ATRIP +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html CCNA2 +PWCOMMONS DNA INTEGRITY CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_INTEGRITY_CHECKPOINT.html RAD17 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html ACOX2 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html CYP3A5 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html TSPO +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html PPARD +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html CYP11B2 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html SULT2B1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html SHH +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html ACOX3 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html STARD3 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html AKR1C2 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html AKR1C4 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html CYP39A1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html APOF +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html NPC1L1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html WWOX +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html AKR1C1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html DHCR24 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html STS +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html SULT2A1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html CYP11A1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html DHRS9 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html NR0B2 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html NR0B1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html UGT1A1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html DHRS2 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html NPC1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html UGT2B17 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html ADM +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html AKR1B10 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html UGT2B11 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html HSD11B2 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html UGT2B15 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html CLN8 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html AKR1D1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html CLN6 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html HSD17B11 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html HDLBP +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html CNBP +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html HSD3B1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html HSD3B7 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html HSD17B14 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html TFCP2L1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html STUB1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html DHCR7 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html HSD17B6 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html SCARB1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html NR1H4 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html CYP19A1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html NSDHL +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html IL4 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html SOAT1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html SOAT2 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html MBTPS2 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html CYP46A1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html FDXR +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html FDPS +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html SOD1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html ABCG1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html APOL2 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html CEL +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html CYP7B1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html GBA2 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html YWHAH +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html NR1I2 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html BAAT +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html UGT2B4 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html SCP2 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html NR5A1 +PWCOMMONS STEROID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_METABOLIC_PROCESS.html BMP6 +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html UQCRC2 +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html OXA1L +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html ME3 +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html UQCRC1 +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html ACO2 +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html PDHB +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html SDHA +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html SDHB +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html SLC25A14 +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html NNT +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html UQCRH +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html SDHC +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html SDHD +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html SURF1 +PWCOMMONS AEROBIC RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/AEROBIC_RESPIRATION.html UQCRB +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html CASR +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html HOXD13 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html POSTN +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html GHRHR +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html TGFB1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html DSPP +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html COL12A1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html TWIST2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html COL10A1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html TWIST1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html MATN3 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html DLL3 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html MGP +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html MEPE +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html PRELP +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html COL1A2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html SHOX +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html EXT1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html EXT2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html ADAMTS4 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html TRAPPC2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html FGFR1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html ACHE +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html OSTF1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html FGFR3 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html HOXA13 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html DSCAML1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html ATP6V1B1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html EXTL1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html AHSG +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html TEAD4 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html IL17F +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html SMA4 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html RUNX2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html SPP2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html SRGN +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html BMP4 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html BMP1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html EVC +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html KLF10 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html DMP1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html EN1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html ANKH +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html SHOX2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html DLX6 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html ETS2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html DLX5 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html TRPS1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html CHRD +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html TLL1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html AEBP1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html ARSE +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html TCOF1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html ZNF675 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html GLI2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html PAX1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html PRDX1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html GLI1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html TNFRSF11B +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html COL11A1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html ALX1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html GHR +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html UFD1L +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html CMKLR1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html CDK6 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html INHA +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html INHBA +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html KIAA1217 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html ACVR1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html STATH +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html COL2A1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html SUFU +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html MSX2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html COL9A2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html COMP +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html PTH +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html LECT2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html PAPSS1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html PAPSS2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html EBP +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html TBX3 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html COL13A1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html KL +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html NF1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html FBN1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html TBX4 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html IGF1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html TBX1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html IGF2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html NPR3 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html SPARC +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html FRZB +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html ANXA2 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html RPS6KA3 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html COL19A1 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html CLEC3B +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html CLEC3A +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html GDF11 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html GDF10 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html ATP6V0A4 +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html BMPR1B +PWCOMMONS SKELETAL DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_DEVELOPMENT.html IGFBP4 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MMS19 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NCBP1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html XRCC6 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ARNT2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FOXO1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RORB +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TNFSF13 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FOXO3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MED21 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CITED2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html EPC1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MDFIC +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SMARCD3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FOXF1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GATA4 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FOXF2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SMARCD1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SUPT5H +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MYST1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MYST4 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MYST3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html BCL10 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MYO6 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PCBD2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html IL29 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RXRA +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MED12 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MED14 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ARID1A +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MED13 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ARNTL +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ELL3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TRERF1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PPARGC1B +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HIF1A +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HNF4A +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MED17 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TFAP2B +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SMARCA1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CRTC1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ELK1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html AFAP1L2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ABCA1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FOXH1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PLAGL1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MAML3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TCF4 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RUNX1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TCF3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ARHGEF10L +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZNF423 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html UTF1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html EPAS1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MAML1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TAF8 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MAP2K3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MAML2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CREBBP +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ESRRG +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MSTN +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SMAD3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SMAD2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FOXP3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ATF6 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ATF4 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NUP62 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SMARCC1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html DYRK1B +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SMARCC2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NOTCH4 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HIVEP3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html BMP7 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html BMP6 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HNF1B +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ELF1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HNF1A +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RSF1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ACVRL1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ELF4 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SPI1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TP63 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CTCF +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GLI2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZBTB38 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GLI1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CAMKK2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PAX8 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MKL2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html EGR1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ATF7IP +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CCNH +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TP53 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PRKCG +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CDK7 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html HMGA1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ARHGEF11 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RAD51 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PRPF6 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SCAP +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NRIP1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GTF2H1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html UBE2N +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MED6 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html INHBA +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html BPTF +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html EREG +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ZMIZ2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NCOA6 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html UBB +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NSD1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CLOCK +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MED1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ACVR1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GLIS3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GLIS2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html GLIS1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NUFIP1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html EHF +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TNFRSF1A +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RGMB +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NPAS2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MRPL12 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ERCC6 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SQSTM1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html BCL3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SUPT4H1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html NFATC2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ERCC3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ERCC2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FOXD3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html IL4 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CEBPG +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TBX5 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TRIM28 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html CREB5 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ILF3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html TP73 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html MNAT1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html YWHAH +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html ILF2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html SP1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html YAF2 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html THRAP3 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html FOXE1 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html IRF4 +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html PHF5A +PWCOMMONS POSITIVE REGULATION OF NUCLEOBASENUCLEOSIDENUCLEOTIDE AND NUCLEIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_NUCLEOBASENUCLEOSIDENUCLEOTIDE_AND_NUCLEIC_ACID_METABOLIC_PROCESS.html RBM14 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html DLC1 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html BMP10 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html BCAR1 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html OSGIN1 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html TGFB1 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html TGFB2 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html BNIPL +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html ACVR1B +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html CDKN2A +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html CDKN2C +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html CDKN2D +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html SERTAD3 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html NDUFS3 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html SERTAD2 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html NOL8 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html TP53 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html NDUFA13 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html RB1 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html INHBA +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html PLCE1 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html GHRH +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html ALOX15B +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html UBB +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html ALOX12 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html ING5 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html DCBLD2 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html ING4 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html DERL2 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html PML +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html PPT1 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html TSPYL2 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html FAM107A +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html PRSS2 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html CDA +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html BCL6 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html ENO1 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html COL4A4 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html KLK8 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html SPHK1 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html SMAD4 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html SMAD3 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html SOD1 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html CAPRIN2 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html RERG +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html PPP1R9B +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html CDKN1A +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html CDKN1B +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html BBC3 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html CDKN2AIP +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html PTCH1 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html GHSR +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html APBB2 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html APBB1 +PWCOMMONS REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GROWTH.html IL2 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NCBP2 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html HTATIP2 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html XPO6 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html PDIA3 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html TNFSF14 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html EIF5A +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html MXI1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html GLI3 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html TGFB1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html AKT1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html RAE1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html DDX25 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html ZFYVE9 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html ANP32A +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html RANBP2 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NCKIPSD +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html TPR +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html KPNB1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html KHDRBS1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html MCM3AP +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NUP133 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NUDT4 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NLRP3 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NUPL2 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html FLNA +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html DDX39 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html RPAIN +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NUP205 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html F2 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html TBRG1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html KPNA6 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html KPNA5 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NUP107 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html KPNA4 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html KPNA3 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html KPNA2 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html MYBBP1A +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html KPNA1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html BAT1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NUP98 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html TNF +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NUP160 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NFKBIE +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html CDH1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html CALR +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html UHMK1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NUP214 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html CEP57 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html DDX19B +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NPM1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html DUSP16 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html BCL3 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html BCL6 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html TNPO1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html MDFI +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html FYB +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html UPF2 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html UPF1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html SMG6 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html SMG5 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NXF5 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NF1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html SMG7 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html PPP1R10 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html SMG1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html SMAD3 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html MALT1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html HNRNPA1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NFKBIL1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html ATXN1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NFKBIL2 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html PPIH +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html CBLB +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html TSC1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html TRPS1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html GSK3B +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html PTTG1IP +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html NLRP12 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html FAF1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html XPO7 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html TRIP6 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html RERE +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html BARD1 +PWCOMMONS NUCLEAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_TRANSPORT.html F2R +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html PTPRC +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html LST1 +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SLA2 +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html INHA +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SOCS5 +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SPINK5 +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html THY1 +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TGFB2 +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html INHBA +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TARBP2 +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html LAX1 +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SFTPD +PWCOMMONS NEGATIVE REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html GLMN +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html NCK2 +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html CDC42EP2 +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html MAPT +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html TPPP +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html NCK1 +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html ARF6 +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html TMSB4Y +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html MAPRE1 +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html LATS1 +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html RASA1 +PWCOMMONS REGULATION OF PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_POLYMERIZATION.html CDC42EP5 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html CHKA +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html PPARA +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html CAV1 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html TSPO +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html PPARD +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html LDLR +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html ABCA2 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html ABCA1 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html SLCO2A1 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html APOA4 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html GOT2 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html APOA2 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html STX12 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html APOA1 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html APOE +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html LCAT +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html APOF +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html APOC3 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html ABCD3 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html NPC1L1 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html CETP +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html ANGPTL3 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html PSAP +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html ATP11B +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html ABCG1 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html GLTP +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html NPC2 +PWCOMMONS LIPID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_TRANSPORT.html SLC27A4 +PWCOMMONS CELLULAR RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STRESS.html SREBF1 +PWCOMMONS CELLULAR RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STRESS.html NUAK2 +PWCOMMONS CELLULAR RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STRESS.html ALB +PWCOMMONS CELLULAR RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STRESS.html FADS1 +PWCOMMONS CELLULAR RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STRESS.html GSK3B +PWCOMMONS CELLULAR RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STRESS.html TP53 +PWCOMMONS CELLULAR RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STRESS.html PCSK9 +PWCOMMONS CELLULAR RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STRESS.html CARTPT +PWCOMMONS CELLULAR RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STRESS.html ASNS +PWCOMMONS CELLULAR RESPONSE TO STRESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STRESS.html EIF2AK3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MMS19 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NCBP1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html XRCC6 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FOXO1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html RORB +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FOXO3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MED21 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html CITED2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html EPC1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MDFIC +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SMARCD3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FOXF1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SMARCD1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html GATA4 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FOXF2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SUPT5H +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html BCL10 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MYO6 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PCBD2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html RXRA +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MED12 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ARID1A +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MED14 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ARNTL +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MED13 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ELL3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TRERF1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PPARGC1B +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html HIF1A +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html HNF4A +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MED17 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TFAP2B +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SMARCA1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html CRTC1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ELK1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html AFAP1L2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FOXH1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PLAGL1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MAML3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html RUNX1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TCF4 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TCF3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ARHGEF10L +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html UTF1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html EPAS1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TAF8 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MAML1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MAP2K3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MAML2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ESRRG +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SMAD3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SMAD2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ATF6 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ATF4 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SMARCC1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html DYRK1B +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SMARCC2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NOTCH4 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html BMP6 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ELF1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html HNF1B +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html HNF1A +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html RSF1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ELF4 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SPI1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TP63 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html CTCF +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html GLI2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZBTB38 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html GLI1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PAX8 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MKL2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ATF7IP +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html CCNH +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TP53 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html CDK7 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html HMGA1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ARHGEF11 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NRIP1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PRPF6 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html GTF2H1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SCAP +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MED6 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html INHBA +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html BPTF +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZMIZ2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NCOA6 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NSD1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html CLOCK +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MED1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html GLIS3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html GLIS1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NUFIP1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html EHF +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TNFRSF1A +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NPAS2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ERCC6 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MRPL12 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SQSTM1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SUPT4H1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ERCC3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ERCC2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FOXD3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html IL4 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TBX5 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TRIM28 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html CREB5 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ILF3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TP73 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MNAT1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ILF2 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SP1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html THRAP3 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FOXE1 +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PHF5A +PWCOMMONS POSITIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html RBM14 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html KIAA0368 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html TSG101 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2G1 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html BTRC +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2G2 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html RNF217 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html CPA2 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html FBXO22 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html ANAPC2 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2A +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html ANAPC5 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UFD1L +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html ANAPC4 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBR3 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2I +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2H +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2C +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2B +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UHRF2 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2K +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBR5 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html FBXL4 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html AMFR +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html SIAH2 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBB +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html DERL2 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html FZR1 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html DERL1 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html SYVN1 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE3A +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html ANAPC10 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html NEDD8 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html EDEM1 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html STUB1 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html ARIH1 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2D3 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2D2 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html SQSTM1 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html RNF11 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2D1 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html USP33 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html FBXO7 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html RNF144B +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html NPLOC4 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE4A +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE4B +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html CDC23 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html PCNP +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html CDC20 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html PARK2 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2L3 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html SELS +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html PSMD14 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html PSMC5 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html VCP +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html SMURF2 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html SMURF1 +PWCOMMONS CELLULAR PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_CATABOLIC_PROCESS.html UBE2E1 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html SRI +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html MYL5 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html MYL2 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html TNNC2 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html TNNC1 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html KCNB2 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html PPP1R12B +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html SPHK1 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html MYBPC3 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html SOD1 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html TPM1 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html MYL9 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html PROK2 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html PLCE1 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html TNNT1 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html ATP2A1 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html MYBPH +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html CNN1 +PWCOMMONS REGULATION OF MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MUSCLE_CONTRACTION.html NMU +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html RP1 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html COPS3 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html OPN1SW +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html NR2E3 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html BRSK1 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html ABCA4 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html ERCC8 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html PDE6B +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html GPX1 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html ERCC5 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html ERCC6 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html MC1R +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html CDKN2D +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html BCL3 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html SERPINB13 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html ERCC3 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html ERCC4 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html IVL +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html FEN1 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html ERCC2 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html UNC119 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html REV1 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html TRPC3 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html FECH +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html RELA +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html NF1 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html UBE4B +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html GTF2H2 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html SAG +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html PITPNM1 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html RPAIN +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html POLD1 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html GRM6 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html DDB2 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html PDC +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html IL12A +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html MAPK8 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html SCARA3 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html IL12B +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html CACNA1F +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html DYNLRB1 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html CLOCK +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html GRK1 +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html RHO +PWCOMMONS RESPONSE TO LIGHT STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_LIGHT_STIMULUS.html OPN4 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html BCL10 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html PRG3 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html CEBPG +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html IL27 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html IL9 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR1 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html CD276 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR3 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TNFRSF8 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR4 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR6 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR7 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR8 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR9 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html AZU1 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html APOA2 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html EREG +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html GLMN +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html IRF4 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html IL12B +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html LTB +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html SPN +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html EBI3 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html CD28 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF2C1 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF5 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF5A +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html MTIF2 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html MTIF3 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html PAIP2B +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF3C +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF3D +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF3A +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF3G +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF3H +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF3E +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF3F +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html DAZL +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF1 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF3I +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF3J +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF2B2 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF2B5 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html DAZ1 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html PAIP2 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF1B +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html BOLL +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF4B +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF4G2 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF4G3 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF4H +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF4A2 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html HSPB1 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF2AK3 +PWCOMMONS REGULATION OF TRANSLATIONAL INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATIONAL_INITIATION.html EIF2AK4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html FST +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF254 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html TCEAL1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html EPC1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SIN3A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF396 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SUPT5H +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html TWIST2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html TWIST1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF593 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZHX1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZHX2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html MECP2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF189 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZHX3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html NR0B2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html NR0B1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html CSDA +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html FOXN3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html PA2G4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF238 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SMARCE1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html TGIF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html PRDM1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html EID1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html HMGB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html VPS72 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html MEIS2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html HEXIM2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html HEXIM1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html DRAP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html BCOR +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html TCF25 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html NKX2-5 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html HELLS +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html MDFI +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html BMP2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html KLF12 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html KLF10 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html KLF11 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html RYBP +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SMAD4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SMAD3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SMAD2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html HDAC5 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SMARCC2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html JAZF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html DNMT1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html RBPJ +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html HDAC8 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html KLF4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html E2F1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZBTB32 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html PPARD +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html RSF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ARID4A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html E2F6 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html NR6A1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SPI1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html TP63 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF202 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html CTCF +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZEB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html PAWR +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html GLI2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html HSBP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html DAXX +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF345 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html MEN1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html GFI1B +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF148 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html POU4F2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html NFX1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ATF7IP +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF281 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SLA2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ARID5B +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html LDB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ARID5A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html NDUFA13 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html FOSB +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html RB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html MXD4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html NRIP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html CHMP1A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html BPTF +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF136 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html MDM2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html RIPPLY1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html MDM4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html CUX1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html NSD1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZFP161 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html GLIS3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZMYND11 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ING4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html GLIS1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZBTB16 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF177 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF174 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ORC2L +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html GATAD2A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html PEX14 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html BCL6 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SUPT4H1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ENO1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html FOXD3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html TBX3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html TBX2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html VHL +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SIRT4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html TRIM27 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html TNP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SIRT5 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ILF3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html PHF12 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html CBY1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SNAI2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html SIRT1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html STAT3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html ZNF157 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html IRF7 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html DR1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html IRF8 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html PHF21A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION DNA DEPENDENT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_DNA_DEPENDENT.html IRF2 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TSPO +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html XPO6 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html LTBP2 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html EIF5A +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TNFSF14 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html MIPEP +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html MXI1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html AGXT +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TGFB1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html SSR1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html HOMER3 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TRAK1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html RPL11 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html KIF13B +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html MCM3AP +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html OPTN +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html NUPL2 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html RPAIN +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html F2 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PEX26 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html RTP3 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html RTP4 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html NFKBIE +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html CALR +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html UHMK1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html CDC37 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html DUSP16 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TRAM1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html MDFI +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html SMAD3 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html ICMT +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html NFKBIL1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TRNT1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html NFKBIL2 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PPIH +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html CBLB +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TRPS1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PTTG1IP +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TRIP6 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html XPO7 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html RERE +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PDIA3 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TIMM17A +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TIMM17B +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html HPS4 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PEX6 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PEX3 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html GLI3 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PEX7 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html AKT1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PEX1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html ZFYVE9 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html ZFYVE16 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html NCKIPSD +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html RANBP2 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TPR +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html KPNB1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TOMM34 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TIMM23 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html NLRP3 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TIMM44 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html FLNA +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html MFN2 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html ATG4D +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html ATG4C +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html ATG4B +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html ATG4A +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html NUP205 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html C3ORF31 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html KPNA6 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html KPNA5 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TOMM22 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html KPNA4 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html KPNA3 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html KPNA2 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html KPNA1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TNF +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html AP1M2 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html CDH1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html SEC63 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html NUP214 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html NAGPA +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html CEP57 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PEX19 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html AP3M1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PEX16 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html BCL3 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PEX14 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PEX13 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html BCL6 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PEX12 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html TNPO1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PEX10 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html FYB +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html NF1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html NLGN1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html PPP1R10 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html GABARAP +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html GSK3B +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html NLRP12 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html FAF1 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html SSR2 +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html F2R +PWCOMMONS PROTEIN TARGETING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING.html BARD1 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html CLN3 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html SLC9A7 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html CLCN3 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html ATP1A3 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html ATP1A4 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html PPT1 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html ATP1A1 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html ATP1A2 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html ATP6V1B1 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html TMPRSS3 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html BCL2 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html CLN5 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html SLC9A1 +PWCOMMONS MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html CLN6 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html HS3ST6 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html CCL3 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html RSF1 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html HS3ST5 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html CCL2 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html VAPB +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html OPRK1 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html EIF5A +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html DEK +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html APOBEC3G +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html CCL4 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html APOBEC3F +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html SMARCB1 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html WWP2 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html MDFIC +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html HTATSF1 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html WWP1 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html CXCR6 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html ITCH +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html TNIP1 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html TOP2A +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html CTBP1 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html CTBP2 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html IL8 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html HBXIP +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html UBP1 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html CLEC4M +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html TARBP2 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html PPIA +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html CD209 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html CD81 +PWCOMMONS VIRAL INFECTIOUS CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_INFECTIOUS_CYCLE.html ACE2 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html ITLN1 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html ITGB2 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html STUB1 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html TGFB1 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL31RA +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html SET +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html NDUFS4 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CLCF1 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html ATG7 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html TDGF1 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html UBE2D1 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html BMP4 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html EGFR +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL3 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html BCL10 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html GTPBP4 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CCDC88A +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL5 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html NF2 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html LYN +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL29 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CCDC88C +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html HCLS1 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html SOCS1 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html PRKCG +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html PPARGC1A +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html BRCA1 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL20 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html UBE2N +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CARD14 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CCND1 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CD80 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html AKTIP +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html TSC1 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CCND3 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CCND2 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CD81 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL12A +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html RNF139 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html NLRP12 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html PPP2R4 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html TNK2 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IGFBP3 +PWCOMMONS REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL22RA2 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html HS3ST6 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html CCL3 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html HS3ST5 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html DERL1 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html CCL2 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html RSF1 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html VAPB +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html OPRK1 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html EIF5A +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html RRAGA +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html APOBEC3G +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html DEK +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html CCL4 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html APOBEC3F +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html TGFB1 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html MDFIC +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html SMARCB1 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html WWP2 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html HTATSF1 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html WWP1 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html CXCR6 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html ITCH +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html TNIP1 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html TOP2A +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html CTBP1 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html CTBP2 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html IL8 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html SMAD3 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html HBXIP +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html UBP1 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html CLEC4M +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html TARBP2 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html PPIA +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html CD209 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html CD81 +PWCOMMONS VIRAL REPRODUCTIVE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTIVE_PROCESS.html ACE2 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html NBN +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html NEK2 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html PML +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html KNTC1 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html TTK +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html PKMYT1 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html ANLN +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html BRSK1 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html CDC16 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html RCC1 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html TGFB1 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html PIN1 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html TRIAP1 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html CDKN2B +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html PCBP4 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html PRMT5 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html NPM2 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html BUB1 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html TGFA +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html EGF +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html GML +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html CCNA2 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html CD28 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html ZW10 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html RINT1 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html NUSAP1 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html CDC23 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html BIRC5 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html CDC25C +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html UBE2C +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html ATM +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html MAD2L1 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html EREG +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html EPGN +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html ZWINT +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html BUB1B +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html CHFR +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html MAD2L2 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html NEK6 +PWCOMMONS REGULATION OF MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOSIS.html RAD17 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ALDH1L1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PTGS1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC7A8 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC7A9 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GGT1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC7A4 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC7A5 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html AGXT +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html BBOX1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC7A6 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html FAH +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GLDC +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC7A7 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GOT2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ASPA +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GOT1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PLOD1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SCLY +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html MAT1A +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html DDAH2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html DDAH1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html NANP +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ALDH6A1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html YARS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GATM +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html DARS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html AARS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html QDPR +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html CDO1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PECI +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SARS2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PNPLA8 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PYCR1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html NPC1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ALOX15B +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html RARS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html CROT +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ME1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html HACL1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ME3 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACADSB +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GCLC +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GNE +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GLUD2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html FARS2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GLUD1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PFKFB1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PAH +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ASL +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GCLM +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html CD74 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html KARS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html HADHB +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ARG1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GAD2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html IDH1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GCSH +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ASRGL1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ALDH4A1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GAD1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html NR1H4 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html FH +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html MCAT +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC6A14 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html HGD +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html IDH3B +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP7B1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ATF4 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html BAAT +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC7A2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html MLYCD +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html FAAH +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC25A10 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html FPGS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC25A15 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOX2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PTGES3 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PPARA +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PPARD +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html BCKDK +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP2J2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html AMT +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOT2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOT1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACN9 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOT4 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SC4MOL +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOX3 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GSS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOT9 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html AKR1C3 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html MCCC2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html AKR1C2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html MTHFD2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html WARS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html TYR +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html MSRA +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP39A1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PTGES +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html HDC +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOT12 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GNPAT +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GSTZ1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html AKR1C1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html AGPAT2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html AGPAT1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html HPD +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACADM +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PEPD +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PRG3 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACO2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACO1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACADS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ADIPOR2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ADIPOR1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC3A1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html DDO +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACADVL +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html HAO1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PTGDS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SDS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html AS3MT +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html HAO2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC27A6 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SMS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html AKR1D1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC27A2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC27A5 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html DEGS1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ALOX12 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html BCAT1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ALDH18A1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ECH1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html HSD3B7 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html UGDH +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html NFS1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ECHS1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html MIF +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html DCT +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GLS2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html TNFRSF1A +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html MTHFR +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ABCD2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html MARS2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html BDH2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html PTS +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html BCKDHA +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html CPT1B +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html FADS1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html BCKDHB +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html FTCD +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html FADS2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html IGF1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ACLY +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html CPT1A +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html OXSM +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html ADI1 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP4A11 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GBA2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP4F8 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GLYAT +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GCK +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC6A6 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html LTA4H +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP4F3 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html GAMT +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html MAT2B +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP4F2 +PWCOMMONS CARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_METABOLIC_PROCESS.html HPGD +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html RTN4 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html NRP2 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html PARD3 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html CDK5R1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html NRP1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html RTN4RL1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html LRRC4C +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html GLI2 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html PAX2 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html SHH +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html APOE +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html ROBO1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html MAPT +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html KAL1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html BAI1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html POU4F1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html ROBO2 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html RTN4RL2 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html SEMA3B +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html UNC5C +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html SPON2 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html PARD6B +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html KLK8 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html NRXN3 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html BAIAP2 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html OTX2 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html NTNG1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html DPYSL5 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html NTNG2 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html NRXN1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html SLIT1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html SLIT2 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html THY1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html AMIGO1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html S100B +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html SEMA4F +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html CYFIP1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html OPHN1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html SIAH1 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html CNTN4 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html UBB +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html FEZ2 +PWCOMMONS AXONOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/AXONOGENESIS.html FEZ1 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html CADM3 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html MPZL2 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html CADM1 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html ITGB1 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html CDH5 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html CD84 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html AMIGO1 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html AMIGO2 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html PVRL1 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html ROBO1 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html TRO +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html PVRL3 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html PVRL2 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html NPTN +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html PKD1 +PWCOMMONS HOMOPHILIC CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/HOMOPHILIC_CELL_ADHESION.html ROBO2 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html CARD9 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html TAOK2 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html ATP6AP2 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html TAOK3 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html NF1 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html EDA2R +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html ZNF675 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html TPD52L1 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html AMBP +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html ADRB3 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html GRM4 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html ADRB2 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html REN +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html HIPK2 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html MAPK8IP2 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html MAPK8IP3 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html MAPK8IP1 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html TRAF7 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html CD24 +PWCOMMONS REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAPKKK_CASCADE.html CD27 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html TTN +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html UHMK1 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html CAMKK2 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html AKT1 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html IGF1R +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html PAK2 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html MAP3K3 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html MAP3K9 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html LMTK2 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html PAK1 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html INSR +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html TAF1 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html MYO3A +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html MEX3B +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html KIAA1804 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html TAOK3 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html MOBKL1A +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html SMG1 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html STK4 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html CDKL5 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html EIF2AK1 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html DYRK1A +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html MAPK15 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html MAP3K10 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html NLRP12 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html TNK1 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html EIF2AK3 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html MAP3K13 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html MAP3K12 +PWCOMMONS PROTEIN AMINO ACID AUTOPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_AUTOPHOSPHORYLATION.html MAP3K11 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html CD9 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html PARD6B +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html TJP1 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html TLN1 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html GJD3 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html TLN2 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html GJA1 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html GJA4 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html GJA5 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html VCL +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY.html GJC1 +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html MDFI +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html NFKBIL2 +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html TAF3 +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html PDIA3 +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html NFKBIE +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html ALB +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html PDIA2 +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html SUPT7L +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html TOPORS +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html FAF1 +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html MXI1 +PWCOMMONS MAINTENANCE OF CELLULAR LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_LOCALIZATION.html NFKBIL1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF23 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PRC1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KATNB1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TTK +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RCC1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html HOOK3 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF2C +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TUBGCP6 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TUBGCP5 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAPT +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PAFAH1B1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CLASP1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TUBG1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CLASP2 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html APC +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGEF2 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF11 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RAN +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RNF19A +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CKAP5 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NUSAP1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MID1IP1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MID1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TUBGCP2 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MARK4 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CENPJ +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SMC3 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html UXT +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAP1S +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TPPP +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAP7 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAPRE1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html STMN1 +PWCOMMONS MICROTUBULE CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SMC1A +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html H1FNT +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html PML +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html BNIP3 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html PPT1 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html MOAP1 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html CASP3 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html NUMA1 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html CDKN2A +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html DULLARD +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html ACIN1 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html TOP2A +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html DEDD2 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html FOXL2 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html AIFM1 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html DFFA +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html DFFB +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html CYCS +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html CIDEA +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html CECR2 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html NDUFA13 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html TNP1 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html TPD52L1 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html SOD1 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html TMEM48 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html WBP2NL +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html SYCP3 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html BAX +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html ATXN7 +PWCOMMONS NUCLEAR ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_ORGANIZATION_AND_BIOGENESIS.html TSSK6 +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html ADSS +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html FIGNL1 +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html OLA1 +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html ACLY +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html AK5 +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html C16ORF7 +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html CTNS +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html GUK1 +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html AMPD3 +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html NDUFS1 +PWCOMMONS PURINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_NUCLEOTIDE_METABOLIC_PROCESS.html PPAT +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PDIA3 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PEX6 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html TNFSF14 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PEX3 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html MXI1 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html GLI3 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html TGFB1 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PEX7 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html AIP +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html AKT1 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PEX1 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html ZFYVE9 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html RANBP2 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html NCKIPSD +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html TPR +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html KPNB1 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html MCM3AP +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html NLRP3 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html FLNA +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html RPAIN +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html NUP205 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html F2 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PEX26 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html C3ORF31 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html TOMM20 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html KPNA6 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html KPNA5 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html TOMM22 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html KPNA4 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html KPNA3 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html KPNA2 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html KPNA1 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html TNF +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html NFKBIE +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html CDH1 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html CEP57 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PEX16 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html BCL3 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PEX14 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PEX13 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html BCL6 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PEX12 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html TNPO1 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PEX10 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html FYB +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html MDFI +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html NF1 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PPP1R10 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html SMAD3 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html NFKBIL1 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html NFKBIL2 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PPIH +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html CBLB +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html TRPS1 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html PTTG1IP +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html NLRP12 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html FAF1 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html TRIP6 +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html RERE +PWCOMMONS PROTEIN IMPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT.html F2R +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html SCAMP1 +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html SCAMP3 +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html SCAMP2 +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html STX7 +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html OPTN +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html MON2 +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html KRT18 +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html RAB14 +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html AP3B2 +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html DOPEY2 +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html EXOC5 +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html SNAP23 +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html DOPEY1 +PWCOMMONS POST GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POST_GOLGI_VESICLE_MEDIATED_TRANSPORT.html STEAP2 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html GCLC +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html ALDH18A1 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html GLUD2 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html GLUD1 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html ASL +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html GCLM +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html ARG1 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html PYCR1 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html GAD2 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html ALDH4A1 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html ASRGL1 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html DDAH2 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html GAD1 +PWCOMMONS GLUTAMINE FAMILY AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUTAMINE_FAMILY_AMINO_ACID_METABOLIC_PROCESS.html DDAH1 +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html INHBA +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html IL27 +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html CEBPG +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html CD276 +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html TLR3 +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html INHA +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html IL12B +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html TLR7 +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html TLR8 +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html EBI3 +PWCOMMONS REGULATION OF INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html TLR9 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SLC22A16 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CGB +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html GNPDA1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html HMGCR +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html JAG2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html DNAJB13 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PTTG1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html BMP15 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PRKACG +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CSNK2A2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html ADAM2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html DDX25 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html OR7C1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html GDF9 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html IZUMO1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CCNA1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PICK1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CRISP1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SPAG1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html LIG3 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SPA17 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html BCL2L10 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html NME5 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SPAG9 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html REC8 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html WBP2NL +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html TCFL5 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SPAG6 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SYCP3 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SPAG4 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html TESK1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html TESK2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html BPY2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html MST1R +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html AKAP3 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html XRN2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html WFDC2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html AKAP4 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PNMA1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html ACR +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html DEAF1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CHEK1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html BCL2L2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SYCP1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html DAZAP1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html RPL10L +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html OAZ3 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html DUSP13 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html NPM2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html HOXA10 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SPAM1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html AXIN1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html ADAM28 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html ABCB9 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html ADAM29 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html MEA1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html GGN +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html RBMY1A1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CLGN +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CDY2B +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html TSGA10 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html ADAM20 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html ADAM21 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html VCX +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html INSL3 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SMCP +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html DEDD +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PRKAG1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html NR6A1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html MOV10L1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html YBX2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PARN +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html DYNLL1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SERPINA5 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html RPL39L +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html KHDRBS3 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html ZP2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html FOXJ1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html HIST1H1A +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html MORC1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html FSHR +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html OR10J1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html THEG +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html VCX3A +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PROK2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html HIST1H1T +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html VCX3B +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html MAST2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html EREG +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html ADAM18 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html IFT81 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html RUVBL1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html DMC1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html FSHB +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PKDREJ +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html H1FNT +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html DNAH9 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html TSPY1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html USP9Y +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html USP9X +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html GPR64 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html XKRY +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SPO11 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CD9 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html DNALI1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CCT6B +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CDYL +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SPANXA1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html HSPA2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CEP57 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SPAG11B +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html LEFTY2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html HSF2BP +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html DAZL +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SPATA4 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CD4 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PPAP2A +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PPAP2B +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html BRD2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html DAZ2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SOX30 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html TRIM27 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html MTL5 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html TNP1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html SOD1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html RACGAP1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html BAX +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html MYCBPAP +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html NLRP14 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PRM1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PTCH2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html PRM2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html CDY1 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html BMPR1B +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html TSSK3 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html TOB2 +PWCOMMONS SEXUAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SEXUAL_REPRODUCTION.html TSSK6 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html E2F1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html DBF4 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html FOXO4 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html LATS1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html LATS2 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CUL3 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CUL2 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html ACVR1B +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CUL5 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDKN2A +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html GFI1B +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html DDX11 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDKN2B +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDKN2C +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDKN2D +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDK10 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDCA5 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CUL1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDC7 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html KHDRBS1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDC6 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html ANAPC5 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html ANAPC4 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html POLE +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html SKP2 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html TBRG4 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDK6 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html RB1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDK4 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html FOXN3 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDK2 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html SPDYA +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html INHBA +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CHMP1A +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html TIMELESS +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDK2AP1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html USH1C +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html KPNA2 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html MAP3K11 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html ACVR1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html BCAT1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html PPP6C +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html TIPIN +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html POLA1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html ANAPC10 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html RCC1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html PRUNE2 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html KRT7 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html KATNA1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html GFI1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html TAF1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html PTPRC +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDC23 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CENPF +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html TPD52L1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html BIRC5 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDC25C +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDKN3 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDKN1C +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDKN1A +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CDKN1B +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html CUL4A +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html GSPT1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html POLD1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html MYO16 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html ABL1 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html APBB2 +PWCOMMONS INTERPHASE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE.html APBB1 +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html COL4A3 +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html COL4A2 +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html PML +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html NPR1 +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html PF4 +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html TNNI3 +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html FOXO4 +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html SPINK5 +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html PLG +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html SERPINF1 +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html STAB1 +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html IL17F +PWCOMMONS NEGATIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_ANGIOGENESIS.html NPPB +PWCOMMONS MONOCARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_TRANSPORT.html SLC16A3 +PWCOMMONS MONOCARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_TRANSPORT.html SLC16A2 +PWCOMMONS MONOCARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_TRANSPORT.html SLC16A1 +PWCOMMONS MONOCARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_TRANSPORT.html SLC16A5 +PWCOMMONS MONOCARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_TRANSPORT.html SLC16A4 +PWCOMMONS MONOCARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_TRANSPORT.html AKR1C4 +PWCOMMONS MONOCARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_TRANSPORT.html SLC16A7 +PWCOMMONS MONOCARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_TRANSPORT.html SLC16A6 +PWCOMMONS MONOCARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_TRANSPORT.html SLC16A8 +PWCOMMONS MONOCARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_TRANSPORT.html AKR1C1 +PWCOMMONS EPITHELIAL CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_CELL_DIFFERENTIATION.html ELF3 +PWCOMMONS EPITHELIAL CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_CELL_DIFFERENTIATION.html UPK1A +PWCOMMONS EPITHELIAL CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_CELL_DIFFERENTIATION.html UPK1B +PWCOMMONS EPITHELIAL CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_CELL_DIFFERENTIATION.html KRT3 +PWCOMMONS EPITHELIAL CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_CELL_DIFFERENTIATION.html EHF +PWCOMMONS EPITHELIAL CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_CELL_DIFFERENTIATION.html UPK3A +PWCOMMONS EPITHELIAL CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_CELL_DIFFERENTIATION.html KRT4 +PWCOMMONS EPITHELIAL CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_CELL_DIFFERENTIATION.html SPINK5 +PWCOMMONS EPITHELIAL CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_CELL_DIFFERENTIATION.html UPK2 +PWCOMMONS EPITHELIAL CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_CELL_DIFFERENTIATION.html DMBT1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html CASR +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html BTD +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html S100A7 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html CRABP2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html FST +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html TGFB2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html BTK +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html DSPP +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html PLOD1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html CTGF +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html APOA5 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT85 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html TWIST2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT83 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html MATK +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html UGCG +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html FOXN1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html MGP +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT13 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html VAX2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT10 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html PROX1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html SCEL +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html IL20 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html PTHLH +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html NME2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT17 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT16 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ATP2C1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT15 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT14 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html DSP +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html TFAP2A +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html LAMC2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html LAMC1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html COL1A1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html EDA +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html EMP1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html OSTF1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ACHE +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html RBP2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html HOXB13 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ATP6V1B1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html AHSG +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html T +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html TCF21 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html LAMB3 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html IL17F +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html RUNX2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html SRGN +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html MEST +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html BMP4 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html IKZF3 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html BMP1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html IKZF1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html DMP1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html BMX +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT31 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html SMAD2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT34 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ANKH +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT32 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html LAMA3 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ATP2A2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html SMURF1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html GHSR +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html FABP5 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html TCF15 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KLF4 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html PPARD +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html FGF7 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ZNF675 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html GLI2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html CDSN +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html SPINK5 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html GLI1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ALOX12B +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html TIE1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html COL11A1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ALX1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html DHCR24 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html STS +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html STX2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html FLOT2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html PTF1A +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html CDK6 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html WAS +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html SLIT2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html EVPL +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html EYA2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html HOXC11 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRTAP5-9 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html GHRL +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ACVR1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT6A +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT6B +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html RTN4RL1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html STATH +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html TRIM15 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ALDH3A2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html DCT +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT9 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html COL17A1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html COL7A1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT5 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html POU2F3 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html TGM3 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KRT2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html RTN4RL2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html CALML5 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html TGM5 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ERCC3 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ERCC2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ZBTB7B +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html SECTM1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html TBX6 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KLK7 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KLK8 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html TBX3 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KL +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html COL13A1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html HCK +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html NF1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html KLK5 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html GJB5 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html SPARC +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html SNAI2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html COL5A2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html CASP14 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html SPRR1A +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html SPRR1B +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html BNC1 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html GDF11 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html JAK2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html PTCH2 +PWCOMMONS TISSUE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_DEVELOPMENT.html ATP6V0A4 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC5A1 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html ITLN1 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC37A4 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC35A1 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC35A2 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC35A3 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html EDNRA +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC2A8 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html GH1 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html PEA15 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC2A5 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC2A4 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SORBS1 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html PPBP +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html INS +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC2A3 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC2A2 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC35B4 +PWCOMMONS CARBOHYDRATE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_TRANSPORT.html SLC2A1 +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html CALCR +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html GSTM3 +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html KRT19 +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html GATA3 +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html GHRL +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html BRCA2 +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html CRIPAK +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html ABCA2 +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html CD24 +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html PDCD7 +PWCOMMONS RESPONSE TO STEROID HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_STEROID_HORMONE_STIMULUS.html BRCA1 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html KCNH1 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html BMP4 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html ACTA1 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html TBX3 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html MYEF2 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html MYOZ1 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html CBY1 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html MBNL1 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html TTN +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html FOXO4 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html NOTCH1 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html SYNE1 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html KRT19 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html MAPK12 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html EREG +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html MYH11 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html CACNA1H +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html GLMN +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html ADAM12 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html IGFBP3 +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html BOC +PWCOMMONS MUSCLE CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MUSCLE_CELL_DIFFERENTIATION.html IFRD1 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html IL18 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html TLR1 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html TNFSF15 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html TNFRSF8 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html TLR3 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html TLR4 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html TLR6 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html TLR7 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html TLR8 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html TLR9 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html AZU1 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html APOA2 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html NOD1 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html IL17F +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html SFTPD +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html BCL3 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html LTB +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html EBI3 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html SPN +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html CD28 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html IL4 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html BCL10 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html IL6 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html PRG3 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html CEBPG +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html IL27 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html IL9 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html CD276 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html INHA +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html FOXP3 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html SIGIRR +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html INHBB +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html INHBA +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html MAST2 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html EREG +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html NLRP12 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html GHRL +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html GLMN +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html IL12B +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html IRF4 +PWCOMMONS CYTOKINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_METABOLIC_PROCESS.html GHSR +PWCOMMONS SUPEROXIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SUPEROXIDE_METABOLIC_PROCESS.html APOA4 +PWCOMMONS SUPEROXIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SUPEROXIDE_METABOLIC_PROCESS.html NOX4 +PWCOMMONS SUPEROXIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SUPEROXIDE_METABOLIC_PROCESS.html NOX5 +PWCOMMONS SUPEROXIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SUPEROXIDE_METABOLIC_PROCESS.html PRG3 +PWCOMMONS SUPEROXIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SUPEROXIDE_METABOLIC_PROCESS.html PREX1 +PWCOMMONS SUPEROXIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SUPEROXIDE_METABOLIC_PROCESS.html CCS +PWCOMMONS SUPEROXIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SUPEROXIDE_METABOLIC_PROCESS.html SOD1 +PWCOMMONS SUPEROXIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SUPEROXIDE_METABOLIC_PROCESS.html MT3 +PWCOMMONS SUPEROXIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SUPEROXIDE_METABOLIC_PROCESS.html SOD2 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GIT1 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RIC8B +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RGS16 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RGS14 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ADRB3 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html PLCE1 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RGS20 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html ADRB2 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RGS11 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RGS12 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RGS2 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RGS3 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RGS4 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RGS5 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GIT2 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GRK6 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GRK4 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GRK5 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RGS9 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GNG4 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html RAMP1 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GRK1 +PWCOMMONS REGULATION OF G PROTEIN COUPLED RECEPTOR PROTEIN SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_G_PROTEIN_COUPLED_RECEPTOR_PROTEIN_SIGNALING_PATHWAY.html GNG7 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html METAP1 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF2C1 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html TLR1 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF5 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF5A +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html TLR3 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF2A +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html TLR4 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html TLR6 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html TLR7 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html IL10 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html TLR8 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html YBX2 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html TLR9 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html APOA2 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html DDX25 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html HRSP12 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF1 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF2B2 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html LTB +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html SPN +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EBI3 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html SAMD4A +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF2B5 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html BCL10 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html PRG3 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html IL29 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html IL27 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html NDUFA13 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF1B +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html INHA +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html BOLL +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html SIGIRR +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html INHBB +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html INHBA +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF4A3 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF4G2 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF4G3 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF2AK1 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html MAST2 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EREG +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html MTRF1 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF4A2 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html BACE2 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html HSPB1 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html GHRL +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html IL12B +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF2AK3 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF2AK4 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html TNFRSF8 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html IGF2BP2 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html MTIF2 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html NECAB3 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html MTIF3 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html PAIP2B +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF3C +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html AZU1 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF3D +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF3A +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF3G +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF3H +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html KRT7 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF3E +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html IL17F +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF3F +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html SFTPD +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html SEPSECS +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html BCL3 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF3I +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html DAZL +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF3J +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html CD28 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html IL4 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html IL6 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html DAZ1 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html UPF1 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html PAIP2 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html CEBPG +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html IL9 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html CD276 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html FOXP3 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html ETF1 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html FURIN +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF4B +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html TSC1 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html EIF4H +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html NLRP12 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html GLMN +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html IRF4 +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html GHSR +PWCOMMONS REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSLATION.html APBB1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html BCKDK +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html AMT +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SLC7A8 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SLC7A9 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GGT1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SLC7A4 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SLC7A5 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SLC7A6 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GLDC +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SLC7A7 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html FAH +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GOT2 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GSS +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html WARS +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html MCCC2 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html TYR +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html ASPA +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html MSRA +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GOT1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html PLOD1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SCLY +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html MAT1A +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html HDC +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GSTZ1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html DDAH2 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html DDAH1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html HPD +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html ALDH6A1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html YARS +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html PEPD +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html DARS +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html AARS +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html QDPR +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SLC3A1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html CDO1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html DDO +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SARS2 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html PYCR1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SDS +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html RARS +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SMS +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html BCAT1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GCLC +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html ALDH18A1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GLUD2 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html FARS2 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GLUD1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html NFS1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html PAH +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html ASL +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GCLM +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html KARS +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html DCT +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GLS2 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html ARG1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html MTHFR +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GAD2 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html MARS2 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GCSH +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html ASRGL1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html ALDH4A1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html PTS +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html GAD1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html BCKDHA +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html BCKDHB +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SLC6A14 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html HGD +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html ADI1 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html ATF4 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html BAAT +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SLC7A2 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SLC6A6 +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html MAT2B +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html FPGS +PWCOMMONS AMINO ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_METABOLIC_PROCESS.html SLC25A15 +PWCOMMONS PHOTORECEPTOR CELL MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/PHOTORECEPTOR_CELL_MAINTENANCE.html RDH12 +PWCOMMONS PHOTORECEPTOR CELL MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/PHOTORECEPTOR_CELL_MAINTENANCE.html IQCB1 +PWCOMMONS PHOTORECEPTOR CELL MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/PHOTORECEPTOR_CELL_MAINTENANCE.html NPHP3 +PWCOMMONS PHOTORECEPTOR CELL MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/PHOTORECEPTOR_CELL_MAINTENANCE.html CLRN1 +PWCOMMONS PHOTORECEPTOR CELL MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/PHOTORECEPTOR_CELL_MAINTENANCE.html USH1G +PWCOMMONS PHOTORECEPTOR CELL MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/PHOTORECEPTOR_CELL_MAINTENANCE.html USH1C +PWCOMMONS PHOTORECEPTOR CELL MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/PHOTORECEPTOR_CELL_MAINTENANCE.html PCDH15 +PWCOMMONS PHOTORECEPTOR CELL MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/PHOTORECEPTOR_CELL_MAINTENANCE.html GPR98 +PWCOMMONS PHOTORECEPTOR CELL MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/PHOTORECEPTOR_CELL_MAINTENANCE.html USH2A +PWCOMMONS PHOTORECEPTOR CELL MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/PHOTORECEPTOR_CELL_MAINTENANCE.html CDH23 +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html CYP3A4 +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html UGT1A6 +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html UGT1A9 +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html NR1I2 +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html AS3MT +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html UGT2B11 +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html UGT2B4 +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html NQO1 +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html UGT2B15 +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html UGT2B28 +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html AHR +PWCOMMONS RESPONSE TO XENOBIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_XENOBIOTIC_STIMULUS.html S100A12 +PWCOMMONS INTERLEUKIN 8 BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_BIOSYNTHETIC_PROCESS.html BCL10 +PWCOMMONS INTERLEUKIN 8 BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_BIOSYNTHETIC_PROCESS.html APOA2 +PWCOMMONS INTERLEUKIN 8 BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_BIOSYNTHETIC_PROCESS.html NOD1 +PWCOMMONS INTERLEUKIN 8 BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_BIOSYNTHETIC_PROCESS.html PRG3 +PWCOMMONS INTERLEUKIN 8 BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_BIOSYNTHETIC_PROCESS.html IL17F +PWCOMMONS INTERLEUKIN 8 BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_BIOSYNTHETIC_PROCESS.html BCL3 +PWCOMMONS INTERLEUKIN 8 BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_BIOSYNTHETIC_PROCESS.html TLR4 +PWCOMMONS INTERLEUKIN 8 BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_BIOSYNTHETIC_PROCESS.html TLR7 +PWCOMMONS INTERLEUKIN 8 BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_BIOSYNTHETIC_PROCESS.html TLR8 +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html PTGES3 +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html PRG3 +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html FADS1 +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html PTGS1 +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html MCAT +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html FADS2 +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html CD74 +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html BRCA1 +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html MIF +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html OXSM +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html PTGDS +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html LTA4H +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html HPGD +PWCOMMONS FATTY ACID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_BIOSYNTHETIC_PROCESS.html DEGS1 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html EGFR +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html NUDT4 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html IL8 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html SLA2 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html SPHK1 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html TRAT1 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html BTK +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html CAMKK2 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html LAT +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html CDH13 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html LAT2 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html PLCE1 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html NMUR1 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html NMUR2 +PWCOMMONS CALCIUM MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_MEDIATED_SIGNALING.html RGN +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RPL17 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SLC44A2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html VAPA +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TBK1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFSF15 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TSPAN6 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFSF14 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TLR6 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MAP3K7 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MYD88 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TMEM9B +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NLRC3 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MIER1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html GPR89A +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html EDARADD +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html BCL10 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html BST2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html GOLT1B +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RELA +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FADD +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CD40 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRIM38 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ATP2C1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MIB2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RIPK2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFAIP3 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ERC1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html IRAK1BP1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NEK6 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PPP5C +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRAF2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html LITAF +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PTPLAD1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html UBE2V1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CXXC5 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html OTUD7B +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRAF6 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRAF5 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CFLAR +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CARD8 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CARD9 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html LGALS1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NDFIP1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NDFIP2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MALT1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ECM1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html LGALS9 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRADD +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRAF3IP2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html IKBKE +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html APOL3 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFSF10 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NUP62 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PLK2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html IKBKG +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRIP6 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SLC20A1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PRDX4 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FASLG +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html GJA1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ZNF675 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CANT1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NOD2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NOD1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html HMOX1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CASP8 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TICAM1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TICAM2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RHOA +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TMEM101 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RHOC +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CASP1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CHUK +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RHOH +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html IRAK2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html IRAK1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html LTBR +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ECT2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FLNA +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CARD10 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html UBE2N +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ZDHHC17 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFRSF10B +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RIPK1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ZDHHC13 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html EEF1D +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PPM1A +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TFG +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRIM13 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FKBP1A +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFRSF1A +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TMED4 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html REL +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MAP3K3 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SLC35B2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SQSTM1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PLEKHG5 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html BCL3 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CC2D1A +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SECTM1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html STAT1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html BIRC2 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NLRP12 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FAF1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html HTR2B +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TIAF1 +PWCOMMONS I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html F2R +PWCOMMONS NUCLEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOSOME_ASSEMBLY.html SET +PWCOMMONS NUCLEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOSOME_ASSEMBLY.html RSF1 +PWCOMMONS NUCLEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOSOME_ASSEMBLY.html NAP1L1 +PWCOMMONS NUCLEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOSOME_ASSEMBLY.html SMARCA5 +PWCOMMONS NUCLEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOSOME_ASSEMBLY.html NAP1L3 +PWCOMMONS NUCLEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOSOME_ASSEMBLY.html NAP1L2 +PWCOMMONS NUCLEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOSOME_ASSEMBLY.html CHAF1A +PWCOMMONS NUCLEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOSOME_ASSEMBLY.html ASF1A +PWCOMMONS NUCLEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOSOME_ASSEMBLY.html CHAF1B +PWCOMMONS NUCLEOSOME ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOSOME_ASSEMBLY.html NAP1L4 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MTSS1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html TTN +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html PRKG1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html CXCL12 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html PACSIN2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html PLA2G1B +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MYO6 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ROCK1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MYH7 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MYH6 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MYH9 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html NEBL +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ARPC1A +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html TNNT2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html RND3 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html KRT19 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html RND1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ATP2C1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html TESK2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html DBN1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html DST +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html FGD2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MYL6 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html FGD1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html SSH1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MRAS +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html SSH2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MYO9B +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ARPC4 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ARF6 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ARPC5 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html LLGL1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html CDC42EP2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html DOCK2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html RAC3 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html RAC1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ADRA2A +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html FGD5 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html FGD6 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ARHGEF10L +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html FGD3 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ARHGDIB +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html FGD4 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html CDC42EP5 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html FSCN2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html TAOK2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MYO1E +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html FSCN1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ARFIP2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MYOZ1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html EVL +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html EPB49 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html CDC42BPG +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html TSC1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MYH11 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html CDC42BPA +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html SPTA1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html GHSR +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ABL1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MYH10 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html CDC42BPB +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html RHOJ +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html LIMA1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html WASF3 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html NUAK2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html PREX1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html WASF1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html BCAR1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html WASF2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html LATS1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html DSTN +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html CDC42 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html PDPK1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html DYNLL1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ANG +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html GSN +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html RHOA +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html RHOF +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html DLG1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ARHGEF2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html CCDC88A +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ACTA1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html LIMK1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html VIL1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ARHGEF17 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html FLNB +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html FLNA +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html ELMO1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html NCK2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html NCK1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html SCIN +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html CFL1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html GHRL +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html TMSB4Y +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html WASL +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html CXCL1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html SHROOM1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html SHROOM2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html PLEK2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html SORBS3 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html EZR +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html SORBS1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html MYL6B +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html WIPF1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html RASA1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html TNXB +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html NF2 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html NF1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html RICTOR +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html RACGAP1 +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html CAPG +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html AMOT +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html KPTN +PWCOMMONS ACTIN FILAMENT BASED PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_PROCESS.html CRK +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html KCNMB4 +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html BCL10 +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html GCLC +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html PDPN +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html NKX2-6 +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html LMO4 +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html KEL +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html VANGL2 +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html CELSR1 +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html SOD1 +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html GLI2 +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html GCLM +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html TINAG +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html SHH +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html KCNMB2 +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html CALCA +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html NOTCH4 +PWCOMMONS TUBE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/TUBE_DEVELOPMENT.html SFTPD +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html XRCC2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PRC1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html DBF4 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html KNTC1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TTK +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PKMYT1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html AURKA +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDC16 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TTN +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html FOXO4 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TGFB1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CUL3 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CUL2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CUL5 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDKN2A +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RAD21 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDKN2B +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html DDX11 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDKN2C +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TARDBP +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDKN2D +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html STAG3 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TUBG1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CCNA1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CCNA2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDCA5 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CUL1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html ANAPC5 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RAN +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RINT1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html ANAPC4 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html POLE +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html LIG3 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html SKP2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TBRG4 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html ESPL1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PIM2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html DCTN3 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html FOXN3 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html BOLL +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html DCTN2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RAD1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html REC8 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html MAD2L1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TIMELESS +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html ZWINT +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CNTROB +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CLIP1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html STMN1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html AKAP8 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html MAD2L2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RAD17 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html NEK6 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PPP5C +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PAM +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html NEK2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html MRE11A +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TIPIN +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html ANLN +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html ANAPC10 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CHEK1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html ANAPC11 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RCC1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html SYCP1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PIN1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PRUNE2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html DUSP13 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RAD51L1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html SAC3D1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html KATNA1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html NPM2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html NPM1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TUBE1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PBRM1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html FBXO5 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RAD51L3 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html EGF +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html GML +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html SSSCA1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TAF1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CKAP5 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html BRCA2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDC23 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html NDC80 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TPD52L1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html SUGT1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RAD54L +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDC27 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html ATM +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDKN1C +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDKN1A +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDKN1B +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html NOLC1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PLK1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html POLD1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html MYO16 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RAD54B +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html ABL1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html SMC1A +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html MYH10 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html KIF23 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html E2F1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html KIF22 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html NBN +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html KIF25 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html LATS1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html LATS2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html ACVR1B +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html KIF2C +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TRIAP1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html NDE1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html GFI1B +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CEP250 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PCBP4 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PRMT5 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TGFA +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDK10 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html ZW10 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TAF1L +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html KHDRBS1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDC7 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDC6 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html KIF11 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html KIF15 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TPX2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html NUSAP1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDK6 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RB1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html UBE2C +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDK4 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RAD52 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDK2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RAD50 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RAD51 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html SPDYA +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html INHBA +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html SASS6 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CHMP1A +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html EREG +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDK2AP1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html TOP3A +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html BUB1B +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html USH1C +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html MDM4 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CHFR +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html DMC1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html KPNA2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html ACVR1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html MAP3K11 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html BCAT1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PPP6C +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html POLA1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PML +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CETN3 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CETN1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html BRSK1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html SPO11 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html NUMA1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html NCAPH +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html HSPA2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html KRT7 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html BUB1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PAFAH1B1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html GFI1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CD28 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PTPRC +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html PDS5B +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html MSH5 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html MSH4 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CENPF +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CENPE +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html BIRC5 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CP110 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDC25C +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html RACGAP1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDKN3 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html SC65 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html SMC3 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CDC25B +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html SMC4 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html MPHOSPH9 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html GSPT1 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CUL4A +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html EPGN +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html CIT +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html APBB2 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html MPHOSPH6 +PWCOMMONS CELL CYCLE PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PROCESS.html APBB1 +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html CPT1B +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html PPARA +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html HACL1 +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html PPARD +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html ACADM +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html ECH1 +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html ACADS +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html ADIPOR2 +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html ECHS1 +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html ADIPOR1 +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html PPARGC1A +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html CPT1A +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html HADHB +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html HAO1 +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html ACADVL +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html HAO2 +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html BDH2 +PWCOMMONS FATTY ACID OXIDATION http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_OXIDATION.html ALOX12 +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html IL4 +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html TRAF2 +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html PTPRC +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html DEFB103A +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html MALT1 +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html TNFSF13 +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html FOXP3 +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html TGFB1 +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html MAP3K7 +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html APOA2 +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html APOA1 +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html CD40LG +PWCOMMONS PRODUCTION OF MOLECULAR MEDIATOR OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/PRODUCTION_OF_MOLECULAR_MEDIATOR_OF_IMMUNE_RESPONSE.html TRAF6 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html ENPP7 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html SGMS2 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html ST8SIA1 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html ST8SIA3 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html PPT1 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html SGMS1 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html LASS5 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html ASAH1 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html ASAH2 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html ST6GALNAC6 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html SERINC1 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html CERK +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html NSMAF +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html B4GALNT1 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html CLN3 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html SGPL1 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html SPTLC1 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html PSAP +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html UGCG +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html SPHK1 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html LARGE +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html GLA +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html LASS1 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html ST8SIA5 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html NEU3 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html SMPD4 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html SMPD3 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html CLN6 +PWCOMMONS SPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_METABOLIC_PROCESS.html SMPD2 +PWCOMMONS NEGATIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LIMA1 +PWCOMMONS NEGATIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGEF2 +PWCOMMONS NEGATIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html GSN +PWCOMMONS NEGATIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CAPG +PWCOMMONS NEGATIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KATNB1 +PWCOMMONS NEGATIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CLASP1 +PWCOMMONS NEGATIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MID1IP1 +PWCOMMONS NEGATIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TMSB4Y +PWCOMMONS NEGATIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAPRE1 +PWCOMMONS NEGATIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html APC +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html COG3 +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html COPB2 +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html COPG2 +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html NAPG +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html COPB1 +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html STX16 +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html COPZ1 +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html NAPA +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html GOSR1 +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html OPTN +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html COPE +PWCOMMONS INTRA GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/INTRA_GOLGI_VESICLE_MEDIATED_TRANSPORT.html COG2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html HRAS +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CASR +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html ADCY8 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CRHBP +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html OBP2B +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html ZIC1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CXCL11 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CXCL12 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html IL10 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CXCL10 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html TGFB2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html AGTR2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html HTR1A +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html APOE +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html GALR3 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html GALR2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html RALA +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html SPN +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html SYK +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html PLD1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html C5AR1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html PIK3CB +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html PMCH +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html UBR3 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html PLAUR +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCR9 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCR8 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html MAPK1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCR7 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCR6 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCR5 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCR4 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCR3 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCR2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CX3CR1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CARTPT +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html ABAT +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html DEFA1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html DYNLRB1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL3 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html DRD3 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html PPYR1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL8 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html ITGB2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CX3CL1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL5 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL7 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html HCRTR2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html HCRTR1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html DOCK2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html KAL1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CNR1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CKLF +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CNR2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html SFTPD +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html AGRP +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html IL1RAPL1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html DEFB1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html NOVA1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html MAP2K1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html HTT +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html MAOA +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html S100B +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CXCL14 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html NPY +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CXCL13 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html NPW +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html LTB4R2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html PYY +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html GHSR +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html XCL1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html PLAU +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html MTNR1A +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html OPRM1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html TAS2R1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html MCHR1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCKAR +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html TAS2R5 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html TRPV1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html TACR1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CXCR3 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCRL2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CXCR4 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html SAA1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html NMUR2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html DLG4 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html XCR1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html FGF2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html FOSL1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCRL1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCKBR +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html RALBP1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CMKLR1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html FOSB +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html SLIT2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html PROK2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html PTGDS +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html GHRL +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html PTAFR +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CXCL1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CXCL5 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html NPY2R +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html OPRK1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html C5 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CXCL2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html FPR1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CXCL9 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html PF4 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CXCL6 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html HPRT1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL28 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL27 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL26 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL24 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL25 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL22 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL23 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL20 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL21 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCBP2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html LECT2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html ACSL4 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html SCG2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html IL4 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html KLK8 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html RNASE2 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html IL8 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html NF1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL19 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html BRS3 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html SOD1 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL16 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL15 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL18 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL17 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL11 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html GCG +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html LEP +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CDH13 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CCL13 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html FYN +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html MAPK14 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html C7ORF16 +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html CRH +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html MC4R +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html HTR2C +PWCOMMONS BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/BEHAVIOR.html VLDLR +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF2C1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html AURKAIP1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html ATP6AP2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html LTBP4 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF5 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF5A +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR4 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR6 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR7 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CXCL12 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SHH +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TGFB1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL10 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR8 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL31RA +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR9 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html APOA2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html ATG7 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html DDX25 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TDGF1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html HRSP12 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF2B2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html DNAJC1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EBI3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SPN +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SAMD4A +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF2B5 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EGFR +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BCL10 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html GTPBP4 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL29 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL27 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SOCS1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TRAT1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BOLL +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL20 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF2AK1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BACE2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html RNF139 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html HSPB1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF2AK3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF2AK4 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html ITLN1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html KATNB1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IGF2BP2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html ITGB2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html ARF6 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MTIF2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MTIF3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TIMP1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF3C +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IRAK3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF3D +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CDC42EP2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF3A +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF3G +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html INS +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF3H +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF3E +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL17F +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF3F +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SFTPD +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CLASP1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF3I +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF3J +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html ANGPTL3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html UBE2D1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CDC42EP5 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BMP4 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PAIP2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CD276 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html FOXP3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html FURIN +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF4B +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html AKTIP +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TSC1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF4H +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html GLMN +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html HGS +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TNK2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html GHSR +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL22RA2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html LIMA1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html METAP1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF2A +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html LATS1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html YBX2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CDC42 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html NDUFS4 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TPP1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html GSN +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CLCF1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MAPT +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html LTB +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html ARHGEF2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CCDC88A +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html LYN +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PRG3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CCDC88C +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html NDUFA13 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PRKCG +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF1B +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MID1IP1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html INHA +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SIGIRR +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html UBE2N +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html INHBB +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF4A3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html INHBA +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF4G2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html NCK2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CARD14 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF4G3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CCND1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MAST2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CCND3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EREG +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CD80 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CCND2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MTRF1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF4A2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TPPP +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html NCK1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CD81 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL12A +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html GHRL +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MDM2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TMSB4Y +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MDM4 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MAPRE1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL12B +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CLN6 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html HCFC1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TNFRSF8 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EGLN2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html STUB1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html NECAB3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PAIP2B +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html AZU1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SET +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html KRT7 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html REN +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SEPSECS +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BCL3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html DAZL +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html RASA1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CD28 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html APC +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL4 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL3 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL6 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html DAZ1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL5 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html UPF1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html NF2 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CEBPG +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html HCLS1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL9 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html ETF1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CAPG +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html NLRP12 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PPP2R4 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IRF4 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html FAF1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html APBB1 +PWCOMMONS REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IGFBP3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ALS2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RPL17 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html VAPA +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CITED2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html MYD88 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GIT2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ABRA +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GNG4 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GNG7 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CD40 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RIC8B +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html BRAP +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html THY1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ATP2C1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NEK6 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html AFAP1L2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ARF6 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ADRB3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html IL17F +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RAC1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GIT1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html MDFI +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TAOK2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html LGALS1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TAOK3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NDFIP1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SMAD4 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CIDEA +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NDFIP2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SMAD3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SMAD2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TPD52L1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TAX1BP3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ECM1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html LGALS9 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html APOL3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NOTCH2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CBLC +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CDC42BPG +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NUP62 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RGS2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RGS3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RGS4 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RGS5 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CDC42BPA +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GRK6 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html HGS +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GRK4 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RGS9 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SMURF1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GRK5 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ENG +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CDC42BPB +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GRK1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SLC20A1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TP63 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GJA1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ZNF675 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html PTEN +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GLI1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CANT1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NOD2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NOD1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TICAM1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TICAM2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TGFA +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TMEM101 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html LTBR +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html LYN +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NFAM1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html FLNA +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SIGIRR +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html AMBP +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NCK2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html INHBA +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GRM4 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ZDHHC17 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TNFRSF10B +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html EREG +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ZDHHC13 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RIPK1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html IL12A +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html EEF1D +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TFG +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TRIM13 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html FKBP1A +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SQSTM1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html PLEKHG5 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html VWC2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CC2D1A +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CD24 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CD27 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html HCLS1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NLK +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html IGF1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RICTOR +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html BIRC2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CDH13 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SOST +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html EPGN +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html EEF1E1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NLRP12 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html HTR2B +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SLC44A2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ATP6AP2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TBK1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TSPAN6 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ZIC1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TLR6 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TGFB1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html IL31RA +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html DMPK +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TMEM9B +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CDKN2B +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html MIER1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html MDFIC +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TDGF1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RGN +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GPR89A +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html BCL10 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html BST2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html IL29 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html GOLT1B +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RELA +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SOCS1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html FADD +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TRAT1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html IL20 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TRIM38 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html PLCE1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html MIB2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RIPK2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TNFAIP3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html PPP5C +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html FGD2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html FGD1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html EID2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html LITAF +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SNX6 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html UBE2V1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CXXC5 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html PEG10 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html OTUD7B +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TRAF7 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TRAF6 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html FGD5 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html EGF +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html FGD6 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TRAF5 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html FGD3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html FGD4 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CFLAR +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CARD8 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CARD9 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html MALT1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TRADD +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TRAF3IP2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CDKN1C +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html IKBKE +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TNFSF10 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html PLK2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TSC1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CDKN2AIP +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html IL22RA2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html FASLG +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ACVR1B +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CLCF1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html HMOX1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CASP8 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RHOA +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RHOC +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SHC1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CASP1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RAMP1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RHOH +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RALBP1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SLA2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html OTX2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html PIGU +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ARHGAP27 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ECT2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html UBE2N +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html MFN2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ACVR2A +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ACVR2B +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ADRB2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html HIPK2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html ACVR1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html PPM1A +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TNFRSF1A +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html TMED4 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RGS11 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RGS12 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html REL +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html MAP3K3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SLC35B2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RASGRP4 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html REN +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html SECTM1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html PTPRC +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NF2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html DTX1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html NF1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html EDA2R +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html CBY1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RGS16 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html FRZB +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RGS14 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html RGS20 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html MAPK8IP2 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html MAPK8IP3 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html MAPK8IP1 +PWCOMMONS REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SIGNAL_TRANSDUCTION.html F2R +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html PAM +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html KIF25 +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html PDS5B +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html CDC23 +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html NUSAP1 +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html ESPL1 +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html CENPE +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html NDC80 +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html SMC4 +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html CHMP1A +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html NCAPH +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html DDX11 +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html ZWINT +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html SMC1A +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html CDCA5 +PWCOMMONS MITOTIC SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SISTER_CHROMATID_SEGREGATION.html ZW10 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html MBL2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html TRAF2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html CADM1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html BCAR1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html TLR8 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html TGFB2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html MAP3K7 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html CFHR1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html KRT1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html IFNK +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html C2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html TRAF6 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html PTPRC +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html CRTAM +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html IL29 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html SLA2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html MALT1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html NFAM1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html TRAT1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html CD1D +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html THY1 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html UBE2N +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html LAT2 +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html EREG +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html FYN +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html IKBKG +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html IL12A +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html CD79A +PWCOMMONS POSITIVE REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_IMMUNE_RESPONSE.html IL12B +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html LIMA1 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html KATNB1 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL10 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TIMP1 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PAIP2B +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CDC42 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html APOA2 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SET +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html GSN +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html INS +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SFTPD +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BCL3 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CLASP1 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html DNAJC1 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html APC +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html GTPBP4 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html ARHGEF2 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL6 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html NF2 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PRG3 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PAIP2 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SOCS1 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html NDUFA13 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PRKCG +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MID1IP1 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html INHA +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html FURIN +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TRAT1 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SIGIRR +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html INHBB +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF4A3 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html INHBA +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF2AK1 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TSC1 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BACE2 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CAPG +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html NLRP12 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html GHRL +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PPP2R4 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MAPRE1 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TMSB4Y +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MDM4 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html GHSR +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF2AK3 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html APBB1 +PWCOMMONS NEGATIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IGFBP3 +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html GC +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html SLC22A16 +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html CUBN +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html PDPN +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html TCN2 +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html SLC19A1 +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html TCN1 +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html FOLR3 +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html FOLR2 +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html FOLR1 +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html SLC22A4 +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html SLC22A5 +PWCOMMONS VITAMIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_TRANSPORT.html SLC46A1 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html EGFR +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL3 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL5 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html NF2 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html LYN +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL29 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html HCLS1 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html SOCS1 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html ITGB2 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL20 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL31RA +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html CD80 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html CLCF1 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html TDGF1 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html CD81 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL12A +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html TNK2 +PWCOMMONS REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL22RA2 +PWCOMMONS REGULATION OF GENE SPECIFIC TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_SPECIFIC_TRANSCRIPTION.html ATF6 +PWCOMMONS REGULATION OF GENE SPECIFIC TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_SPECIFIC_TRANSCRIPTION.html BMP2 +PWCOMMONS REGULATION OF GENE SPECIFIC TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_SPECIFIC_TRANSCRIPTION.html BPTF +PWCOMMONS REGULATION OF GENE SPECIFIC TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_SPECIFIC_TRANSCRIPTION.html TRIM28 +PWCOMMONS REGULATION OF GENE SPECIFIC TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_SPECIFIC_TRANSCRIPTION.html SPI1 +PWCOMMONS REGULATION OF GENE SPECIFIC TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_SPECIFIC_TRANSCRIPTION.html PEX14 +PWCOMMONS REGULATION OF GENE SPECIFIC TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_SPECIFIC_TRANSCRIPTION.html RORB +PWCOMMONS REGULATION OF GENE SPECIFIC TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_SPECIFIC_TRANSCRIPTION.html SMARCA1 +PWCOMMONS REGULATION OF GENE SPECIFIC TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_SPECIFIC_TRANSCRIPTION.html ARHGEF10L +PWCOMMONS REGULATION OF GENE SPECIFIC TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_SPECIFIC_TRANSCRIPTION.html SCAP +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html NCBP2 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html ORAI1 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html SPACA3 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html ITLN1 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html CBL +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html TNFSF14 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html SMAD3 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html STIM1 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html PPT1 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html CDH1 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html LDLRAP1 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html FLNA +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html AHSG +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html AZU1 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html GATA2 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html GCK +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html GHRH +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html GSK3B +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html SFTPD +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html NLRP12 +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html GHRL +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html CARTPT +PWCOMMONS POSITIVE REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSPORT.html TRIP6 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html E2F2 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html E2F3 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html RSF1 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED24 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html TBP +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED23 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html GTF2E1 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html GTF2E2 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MAZ +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED26 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED27 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html GTF3C4 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html TAF2 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html SNAPC5 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html BRF1 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html TAF5 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED12 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html CDK9 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED14 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED13 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html CDK7 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html PPARGC1A +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED7 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED4 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED30 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html PTRF +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html GTF2I +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED16 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED17 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html GTF2F1 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html GTF2F2 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html THRAP3 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html NCOA6 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html SMARCA5 +PWCOMMONS TRANSCRIPTION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION.html MED1 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html P4HB +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html CCBL1 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html SNCAIP +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html PRG3 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html GATM +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html CDO1 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html BBOX1 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html TGFB2 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html OAZ2 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html OAZ1 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html COLQ +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html DIO2 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html SULT1B1 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html ASMTL +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html ETNK1 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html DHPS +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html MAT2B +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html GAMT +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html SLC5A7 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html DIO1 +PWCOMMONS AMINO ACID DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_METABOLIC_PROCESS.html SMS +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html SPACA3 +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html ADORA2A +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html GULP1 +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html COLEC12 +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html ADORA1 +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html ELMO1 +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html AHSG +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html AZU1 +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html CORO1C +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html GATA2 +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html DOCK1 +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html FCN2 +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html FCGR1A +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html FCN1 +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html SFTPD +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html CLEC7A +PWCOMMONS PHAGOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/PHAGOCYTOSIS.html CD14 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html HS3ST5 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html NDST1 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html CHST3 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html GLCE +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html CHST7 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html CHST9 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html CHST12 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html CHST8 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html CHST11 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html CHST13 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html HS6ST1 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html EXT1 +PWCOMMONS PROTEOGLYCAN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_BIOSYNTHETIC_PROCESS.html HS3ST3B1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html SMARCAD1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html ENPP7 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html NBN +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html WRNIP1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html MRE11A +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html TIPIN +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html UBE2V1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html TNFSF13 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html UBE2V2 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html TERF2IP +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html GLI2 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html IL7R +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html TGFB1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html CDT1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html GLI1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html SET +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html TSPYL2 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html TLK1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html TLK2 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html ERCC4 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html TERF2 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html ERCC1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html IL4 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html CDC6 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html GTPBP4 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html CCDC88A +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html POLH +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html NF2 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html PIF1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html GMNN +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html CEBPG +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html S100A11 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html PRKCG +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html RAD9A +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html ATR +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html CDK2 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html RAD50 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html RAD51 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html UBE2N +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html EREG +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html KPNA2 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html KPNA1 +PWCOMMONS REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_DNA_METABOLIC_PROCESS.html RAD17 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html HRAS +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CXCR3 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CXCL11 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CXCL12 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html IL10 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html TGFB2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CXCL10 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCRL2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CXCR4 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html SAA1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html RALA +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html XCR1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html FGF2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html FOSL1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html SPN +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCRL1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html SYK +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html PLD1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html C5AR1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html RALBP1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CMKLR1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html PIK3CB +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html SLIT2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html PLAUR +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCR9 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html PROK2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCR8 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html MAPK1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCR7 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCR6 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCR5 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCR4 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCR3 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CX3CR1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCR2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html DEFA1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html PTAFR +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CXCL1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL3 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CXCL5 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html NPY2R +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html C5 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CXCL2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CXCL9 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html FPR1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL8 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html PF4 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html ITGB2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CXCL6 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CX3CL1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL5 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL28 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL27 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL7 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL26 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL24 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL25 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL22 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html DOCK2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL23 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL20 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL21 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html KAL1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CKLF +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html SFTPD +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCBP2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html LECT2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html DEFB1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html NOVA1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html SCG2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html IL4 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html RNASE2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html IL8 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html MAP2K1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL19 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html SOD1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL16 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL15 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL18 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL17 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL11 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CDH13 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CCL13 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CXCL14 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html CXCL13 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html MAPK14 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html LTB4R2 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html XCL1 +PWCOMMONS LOCOMOTORY BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/LOCOMOTORY_BEHAVIOR.html PLAU +PWCOMMONS RNA ELONGATION http://www.broadinstitute.org/gsea/msigdb/cards/RNA_ELONGATION.html ADRM1 +PWCOMMONS RNA ELONGATION http://www.broadinstitute.org/gsea/msigdb/cards/RNA_ELONGATION.html ERCC6 +PWCOMMONS RNA ELONGATION http://www.broadinstitute.org/gsea/msigdb/cards/RNA_ELONGATION.html ELL +PWCOMMONS RNA ELONGATION http://www.broadinstitute.org/gsea/msigdb/cards/RNA_ELONGATION.html GTF2F2 +PWCOMMONS RNA ELONGATION http://www.broadinstitute.org/gsea/msigdb/cards/RNA_ELONGATION.html TCEB2 +PWCOMMONS RNA ELONGATION http://www.broadinstitute.org/gsea/msigdb/cards/RNA_ELONGATION.html CDK9 +PWCOMMONS RNA ELONGATION http://www.broadinstitute.org/gsea/msigdb/cards/RNA_ELONGATION.html SUPT4H1 +PWCOMMONS RNA ELONGATION http://www.broadinstitute.org/gsea/msigdb/cards/RNA_ELONGATION.html ELL3 +PWCOMMONS RNA ELONGATION http://www.broadinstitute.org/gsea/msigdb/cards/RNA_ELONGATION.html SUPT5H +PWCOMMONS RNA ELONGATION http://www.broadinstitute.org/gsea/msigdb/cards/RNA_ELONGATION.html ELL2 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html ARHGDIG +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html EMCN +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html ACVRL1 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html IL18 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html CX3CL1 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html PTEN +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html PR47 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html AZU1 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html CD47 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html MIA3 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html CDKN2A +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html SAA1 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html PRSS2 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html TGFBI +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html TGM2 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html B4GALNT2 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html RASA1 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html SPN +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html ARHGDIA +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html ARHGDIB +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html KNG1 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html GTPBP4 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html ADAM10 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html NF2 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html IL8 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html NF1 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html CDK6 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html DLL1 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html CDH13 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html SIRPG +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html RND1 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html TSC1 +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html IL12A +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html IL12B +PWCOMMONS REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_ADHESION.html ALOX12 +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html PTPRC +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html CD3D +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html IL7 +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html IL27 +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html JAG2 +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html SOCS5 +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html SPINK5 +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html SART1 +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html CD1D +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html LCK +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html ZAP70 +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html CD4 +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html IL12B +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html NHEJ1 +PWCOMMONS T CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_DIFFERENTIATION.html IL2 +PWCOMMONS RESPONSE TO HEAT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HEAT.html AKT1 +PWCOMMONS RESPONSE TO HEAT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HEAT.html GCLC +PWCOMMONS RESPONSE TO HEAT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HEAT.html CRNN +PWCOMMONS RESPONSE TO HEAT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HEAT.html EIF2B2 +PWCOMMONS RESPONSE TO HEAT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HEAT.html SOD1 +PWCOMMONS RESPONSE TO HEAT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HEAT.html DNAJB4 +PWCOMMONS RESPONSE TO HEAT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HEAT.html EIF2B3 +PWCOMMONS RESPONSE TO HEAT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HEAT.html EIF2B1 +PWCOMMONS RESPONSE TO HEAT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HEAT.html EIF2B4 +PWCOMMONS RESPONSE TO HEAT http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HEAT.html EIF2B5 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html ADORA2B +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html ZAK +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html PTPLAD1 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html C5 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html FPR1 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html MAP4K1 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html DAXX +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html MAP3K6 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html MAP3K5 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html MDFIC +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html MAP3K2 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html CXCR4 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html MAP3K9 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html TDGF1 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html ADRA2A +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html TGFA +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html SHC1 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html CHRNA7 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html ADRA2C +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html GNG3 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html EGF +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html FGF2 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html MDFI +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html DBNL +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html C5AR1 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html MADD +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html PIK3CB +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html KIAA1804 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html PKN1 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html SOD1 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html GRM4 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html PROK2 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html MAP4K5 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html PLCE1 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html ADRB2 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html EPGN +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html CD81 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html MAP3K10 +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html GHRL +PWCOMMONS ACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_MAPK_ACTIVITY.html MAP3K11 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html HCCS +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html CYP24A1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html OXA1L +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GNPDA1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html WFS1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PGD +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html AQP7 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PDX1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html OGDH +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PDHB +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PLOD1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SLC25A27 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SPR +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html APOM +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html INSR +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html WWOX +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html TXNL1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html FECH +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html NCF4 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html CDO1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PPARGC1A +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html POR +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html NNT +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ATPIF1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SURF1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html CROT +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ACAA1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PHKA2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ME3 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html CYP1B1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ENPP1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GLUD2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PHKA1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html POMC +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ADRB3 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html INS +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GYS2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html C16ORF7 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html DYRK2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html EPM2A +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html FDXR +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html CRAT +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SLC25A12 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html NRF1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SLC25A14 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GBE1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SLC25A13 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html AVPR1A +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html QPRT +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ASIP +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html UQCRC2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html MCHR1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PPARD +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html UQCRC1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html CYB5R2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ENOX2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PHKB +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html LEPR +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html DUOX2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PPARG +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html DUOX1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PPOX +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PDIA5 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html AKR1C3 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html NDUFS4 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html FXN +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GPX4 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SLC25A3 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html TREH +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html LOXL1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html COX17 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html AKR1C1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html NDUFS1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html AVP +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ACO2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SLC25A4 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ALDH5A1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PHKG2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html CYCS +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html RUNX1T1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GRHPR +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html DDO +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html MTRR +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ACADVL +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html DHRS2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html DHRS4 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html UQCRH +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GIPR +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GAA +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html AKR1D1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ALDH9A1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html UQCRB +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html AOC3 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html XYLB +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ECH1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ADH7 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GCGR +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ALDH3A1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SCO2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html NOX4 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html CEBPA +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html DLST +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html NOX5 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html BCS1L +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html CYP4F11 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GYG2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ISL1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html ADIPOQ +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html BLVRA +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html LEP +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SDHA +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html NDOR1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SDHB +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PPP1R2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PYGM +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GCK +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SDHC +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GFPT1 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GSK3B +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html SDHD +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html GFPT2 +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html RETSAT +PWCOMMONS GENERATION OF PRECURSOR METABOLITES AND ENERGY http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_PRECURSOR_METABOLITES_AND_ENERGY.html PYGB +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN22 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html TIMM50 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN21 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTEN +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html TGFB1 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html NT5C +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPRJ +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPP2R1A +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPRM +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPRN2 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPRH +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPRR +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPRT +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPRO +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html TPTE +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPM1G +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PNKP +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPM1D +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPP1CA +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html SBF1 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPEF2 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPEF1 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPM1M +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html CTDP1 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPP2R2A +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPP5C +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPP6C +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPP2R3B +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPP2R3A +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html SSH1 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html SSH2 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html DUSP10 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPM1B +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html MTMR3 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html THTPA +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html DUSP13 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPP2CA +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPLA +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPP2CB +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPAP2A +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html MTMR7 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN7 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPRB +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPRC +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN6 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPRD +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN9 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPRE +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html SMG6 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN18 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN3 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPRZ1 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html SMG5 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN2 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN5 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html EPM2A +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html SMG7 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN4 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN14 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html DUSP22 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN13 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PTPN12 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html DUSP5 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html DUSP4 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html DUSP3 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html DUSP2 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html PPP2R4 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html DUSP9 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html DUSP8 +PWCOMMONS DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/DEPHOSPHORYLATION.html DUSP6 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html IMPA1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html SGMS2 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html GBGT1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html SGMS1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html LASS5 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGK +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html ST6GALNAC6 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html APOA1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGF +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGG +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html LCAT +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGH +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGB +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGC +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PCYT2 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html AGPAT2 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html AGPAT1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGA +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGZ +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGY +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIK3C2A +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGV +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html UGCG +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGU +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PI4KA +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGT +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGS +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PI4KB +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html CHPT1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PIGO +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PI4K2A +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html CD81 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PGS1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html GPAA1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html ST8SIA1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html ST8SIA3 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html DGKE +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html LPCAT1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html B3GNT5 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PEMT +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html ETNK1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html PCYT1B +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html FADS1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html LARGE +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html ST8SIA5 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html LASS1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html DPM1 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html DPM2 +PWCOMMONS MEMBRANE LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_LIPID_BIOSYNTHETIC_PROCESS.html DPM3 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html HMGB1 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html E2F2 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html E2F3 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html RSF1 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html NAP1L1 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED24 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED23 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html TBP +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html NAP1L3 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html NAP1L2 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html NAP1L4 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html GTF2E1 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html GTF2E2 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html SET +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MAZ +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED26 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED27 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html ASF1A +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html GTF3C4 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html TAF2 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html ATF7IP +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html SNAPC5 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html BRF1 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html TAF5 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED12 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html CDK9 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED14 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED13 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html CDK7 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html PPARGC1A +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED7 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED4 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED30 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html PTRF +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED16 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html GTF2I +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html GTF2F1 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED17 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html THRAP3 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html GTF2F2 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html NCOA6 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html SMARCA5 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html PBX1 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html CHAF1A +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html PBX3 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html CHAF1B +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html PBX4 +PWCOMMONS PROTEIN DNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_DNA_COMPLEX_ASSEMBLY.html MED1 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html ORAI1 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html CCL8 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html CACNB3 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html CACNB4 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html SLN +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html NMUR1 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html NMUR2 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html TRPV5 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html CHRNA7 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html TRPC1 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html SLC8A1 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html TRPC4 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html CACNA2D1 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html TRPC3 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html TRPC5 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html STIM2 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html STIM1 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html TRPM2 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html NPY +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html ATP2C1 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html ATP2A3 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html PLN +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html RYR3 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html ATP2A1 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html RYR1 +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html CACNA1D +PWCOMMONS CALCIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_ION_TRANSPORT.html CSN2 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html IL18 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html SPINK5 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html SART1 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html CD47 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html ZAP70 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html SFTPD +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html CD24 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html EBI3 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html CD28 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html IL4 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html PTPRC +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html SIT1 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html CD3E +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html IL7 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html IL27 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html CD276 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html SOCS5 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html IL21 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html THY1 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html NCK2 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html LAT +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html SIRPG +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html LAX1 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html NCK1 +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html LCK +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html GLMN +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html IL12B +PWCOMMONS REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_ACTIVATION.html ICOSLG +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html ALS2 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html NRP2 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html RTN4 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html NRP1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html RORB +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html LRRC4C +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html PAX2 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html GLI2 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html SHH +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html ROBO1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html APOE +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html MAPT +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html CEP290 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html SEMA3B +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html ROBO2 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html POU4F1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html UNC5C +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html SPON2 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html NRXN3 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html BAIAP2 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html OTX2 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html NRXN1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html SLIT1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html SLIT2 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html THY1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html AMIGO1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html NRL +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html SEMA4F +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html OPHN1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html SIAH1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html CNTN4 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html UBB +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html PARD3 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html CDK5R1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html RTN4RL1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html KAL1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html BAI1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html RTN4RL2 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html PARD6B +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html KLK8 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html DPYSL5 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html NTNG1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html NTNG2 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html YWHAH +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html S100B +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html MAP1S +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html CYFIP1 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html FEZ2 +PWCOMMONS CELLULAR MORPHOGENESIS DURING DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MORPHOGENESIS_DURING_DIFFERENTIATION.html FEZ1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F2RL2 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html COPA +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F2RL3 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F13A1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html HPS4 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html GNA12 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html MMRN1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html GP9 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html FLI1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html SERPINE1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html SLC22A4 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html SLC22A2 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html KNG1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F12 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html L3MBTL4 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F10 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F8 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html SLC34A1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F9 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F7 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html WAS +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html PROC +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html THBD +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html CD36 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html GNAQ +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html HNF4A +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F5 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html CD40LG +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F2 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html TFPI +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html NPPB +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html PROS1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html VIP +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html GGCX +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html AVPR2 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html ADORA2A +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html PABPC4 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html PF4 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html ITGB3 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html LMAN1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html PR47 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F13B +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html GP1BA +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html ENTPD1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html PLAT +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html GUCA1B +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html NFE2 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html NPR1 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html ITGA2 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html C4BPB +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html TMPRSS6 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html PLG +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html CEL +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html GPI +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html VWF +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html CD59 +PWCOMMONS REGULATION OF BODY FLUID LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BODY_FLUID_LEVELS.html F2R +PWCOMMONS COENZYME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_BIOSYNTHETIC_PROCESS.html ME1 +PWCOMMONS COENZYME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_BIOSYNTHETIC_PROCESS.html COASY +PWCOMMONS COENZYME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_BIOSYNTHETIC_PROCESS.html COQ3 +PWCOMMONS COENZYME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_BIOSYNTHETIC_PROCESS.html COQ2 +PWCOMMONS COENZYME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_BIOSYNTHETIC_PROCESS.html MOCS2 +PWCOMMONS COENZYME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_BIOSYNTHETIC_PROCESS.html GCLC +PWCOMMONS COENZYME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_BIOSYNTHETIC_PROCESS.html COQ7 +PWCOMMONS COENZYME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_BIOSYNTHETIC_PROCESS.html GCLM +PWCOMMONS COENZYME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_BIOSYNTHETIC_PROCESS.html PDSS1 +PWCOMMONS COENZYME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COENZYME_BIOSYNTHETIC_PROCESS.html PDSS2 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html ING5 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html DCBLD2 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html DLC1 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html BMP10 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html ING4 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html PML +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html PPT1 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html OSGIN1 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html TGFB1 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html ACVR1B +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html CDKN2A +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html TSPYL2 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html CDKN2C +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html CDKN2D +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html SERTAD3 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html CDA +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html BCL6 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html NDUFS3 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html SERTAD2 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html ENO1 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html KLK8 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html SMAD4 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html TP53 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html SMAD3 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html NDUFA13 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html RB1 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html CAPRIN2 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html RERG +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html PPP1R9B +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html INHBA +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html CDKN1A +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html CDKN1B +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html ALOX15B +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html BBC3 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html CDKN2AIP +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html PTCH1 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html APBB2 +PWCOMMONS NEGATIVE REGULATION OF GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_GROWTH.html APBB1 +PWCOMMONS EPITHELIAL TO MESENCHYMAL TRANSITION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_TO_MESENCHYMAL_TRANSITION.html S100A4 +PWCOMMONS EPITHELIAL TO MESENCHYMAL TRANSITION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_TO_MESENCHYMAL_TRANSITION.html BMP2 +PWCOMMONS EPITHELIAL TO MESENCHYMAL TRANSITION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_TO_MESENCHYMAL_TRANSITION.html TRIM28 +PWCOMMONS EPITHELIAL TO MESENCHYMAL TRANSITION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_TO_MESENCHYMAL_TRANSITION.html TGFB3 +PWCOMMONS EPITHELIAL TO MESENCHYMAL TRANSITION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_TO_MESENCHYMAL_TRANSITION.html HGF +PWCOMMONS EPITHELIAL TO MESENCHYMAL TRANSITION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_TO_MESENCHYMAL_TRANSITION.html BMP7 +PWCOMMONS EPITHELIAL TO MESENCHYMAL TRANSITION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_TO_MESENCHYMAL_TRANSITION.html TGFB1 +PWCOMMONS EPITHELIAL TO MESENCHYMAL TRANSITION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_TO_MESENCHYMAL_TRANSITION.html CTNNB1 +PWCOMMONS EPITHELIAL TO MESENCHYMAL TRANSITION http://www.broadinstitute.org/gsea/msigdb/cards/EPITHELIAL_TO_MESENCHYMAL_TRANSITION.html TGFB2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html ALS2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html RTN4 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html NRP2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html NRTN +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html NRP1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html POU6F2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html LRRC4C +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html KCNIP2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html PAX2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html GLI2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html GDNF +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html RTN1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html SHH +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html TGFB2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html NRCAM +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html ATP2B2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html APOE +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html ROBO1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html MAPT +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html ROBO2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html POU4F1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html SEMA3B +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html UNC5C +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html SPON2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html NRXN3 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html LDB1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html BAIAP2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html MDGA1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html OTX2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html PICK1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html MDGA2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html ARTN +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html NRXN1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html CDK5 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html SLIT1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html SLIT2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html THY1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html FARP2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html AMIGO1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html RND1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html SERPINF1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html SEMA4F +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html BTG4 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html NPTN +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html OPHN1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html TRAPPC4 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html GHRL +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html CNTN4 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html SIAH1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html UBB +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html SMARCA1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html PARD3 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html CDK5R1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html LST1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html RTN4RL1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html BRSK2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html PPT1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html KAL1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html BAI1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html VWC2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html PCSK9 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html KRT2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html RTN4RL2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html AGRN +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html LAMB1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html PARD6B +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html KLK8 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html LMX1B +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html DTX1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html NF1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html NLGN1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html DPYSL5 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html NTNG1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html NTNG2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html RACGAP1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html YWHAG +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html YWHAH +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html S100B +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html MAP1S +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html CYFIP1 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html CIT +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html FEZ2 +PWCOMMONS GENERATION OF NEURONS http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_NEURONS.html FEZ1 +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html UAP1 +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html CHIA +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html LARGE +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html CHST7 +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html CHST6 +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html CHST2 +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html CHST4 +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html CHST5 +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html NAGK +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html EXTL2 +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html SLC35A3 +PWCOMMONS N ACETYLGLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/N_ACETYLGLUCOSAMINE_METABOLIC_PROCESS.html CHIT1 +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html ME1 +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html APOA2 +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html GCK +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html GYS2 +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html MAFA +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html CLEC7A +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html EIF2B2 +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html EIF2B1 +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html EIF2B3 +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html SELS +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html EIF2B4 +PWCOMMONS RESPONSE TO CARBOHYDRATE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_CARBOHYDRATE_STIMULUS.html EIF2B5 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html XRCC2 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html MRE11A +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html CHEK1 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html SPO11 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html SYCP1 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html RAD21 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html HSPA2 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html DUSP13 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html RAD51L1 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html NPM2 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html STAG3 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html RAD51L3 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html TUBG1 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html CCNA1 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html TAF1L +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html ZW10 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html MSH5 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html MSH4 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html LIG3 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html PIM2 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html RAD52 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html RAD54L +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html BOLL +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html SMC3 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html SC65 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html ATM +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html RAD50 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html RAD51 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html RAD1 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html REC8 +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html EREG +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html TOP3A +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html RAD54B +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html SMC1A +PWCOMMONS MEIOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_CELL_CYCLE.html DMC1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html RTP3 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html KCNMB3 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html SYT1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html RP1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html KCNMB4 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html CASR +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html RTP4 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html CADM1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html TACR1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html PGLYRP1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html TAC1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html TAS1R3 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html NR2E3 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html OPN1SW +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html ABCA4 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html KCNIP2 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html KCNIP1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html TAS1R2 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html KCNMB2 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html PDE6B +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html NLRC4 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html NOD2 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html NOD1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html PGLYRP4 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html PGLYRP2 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html PGLYRP3 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html NPFFR2 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html UGT2A1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html TAS2R43 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html UNC119 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html CRTAM +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html TRPC3 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html STIM1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html NLRP3 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html SAG +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html CD1D +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html TAS2R16 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html PITPNM1 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html TAS2R14 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html TIMELESS +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html GCK +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html GRM6 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html PDC +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html CACNA1F +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html OPN4 +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html RHO +PWCOMMONS DETECTION OF STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_STIMULUS.html GRK1 +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html GAPDHS +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html SLC22A16 +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html ROPN1B +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html SMCP +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html ATP1A3 +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html TNP1 +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html ATP1A4 +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html ATP1A1 +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html ATP1A2 +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html GAS8 +PWCOMMONS SPERM MOTILITY http://www.broadinstitute.org/gsea/msigdb/cards/SPERM_MOTILITY.html AKAP4 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CADM1 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html ATP6AP2 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html IL18 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html TLR1 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html TLR3 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html TLR4 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html TLR6 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html TLR7 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html TLR8 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html TGFB2 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html TLR9 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html MAP3K7 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html NLRC4 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html APOA2 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html NOD2 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html NOD1 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html APOA1 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html IFNG +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CHRNA7 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html LTB +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html EBI3 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html SPN +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html BCL10 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CRTAM +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html PRG3 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html IL27 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html INHA +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html NLRP3 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html NLRP2 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html SIGIRR +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html INHBB +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CARD11 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html INHBA +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html MAST2 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html HIF1A +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html EREG +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CD40LG +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html IL12A +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html GHRL +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html IL12B +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html TRAF2 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html TNFRSF8 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html AFAP1L2 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html ABCA1 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html PYDC1 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CALCA +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html AZU1 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html INS +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html IL17F +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html PYCARD +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html SFTPD +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html BCL3 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CD24 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html TRAF6 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html SRGN +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CD28 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html IL4 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CARD8 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html IL6 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CEBPG +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html IL9 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CD276 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html SMAD4 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html SMAD3 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html CIDEA +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html MALT1 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html SOD1 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html FOXP3 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html NLRP12 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html GLMN +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html IRF4 +PWCOMMONS CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_PRODUCTION.html GHSR +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html FMOD +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html EID2 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html COX11 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html COX10 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html ANLN +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html PXN +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html SRC +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html NDUFS7 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html NDUFS5 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html NDUFS4 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html NUBP1 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html PTK2B +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html ZFYVE9 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html NDUFS8 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html PEX13 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html AGRN +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html COX18 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html SCO1 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html COX15 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html CD3E +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html TGFBR1 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html TAZ +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html PICK1 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html SMAD4 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html SMAD3 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html MIS12 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html ADRM1 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html ADRB2 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html TMEM48 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html PRLR +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html NUP205 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html MAPK8IP2 +PWCOMMONS CELLULAR PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_ASSEMBLY.html SURF1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PGD +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html RNASEH1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html RNF217 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GLDC +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ISG20 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html FAH +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GOT2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GOT1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html DDAH2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html DDAH1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ANAPC2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ANAPC5 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ANAPC4 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBR3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html OLA1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PGLS +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UHRF2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html NNT +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html COLQ +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBR5 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html MGAM +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html FBXL4 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html AMFR +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html MPST +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html HSD17B11 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ALDOA +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html HACL1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html HSD17B14 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PFKFB1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PABPC4 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ALDOB +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PPT1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html HSPA1B +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ASL +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html HADHB +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ARG1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ARIH1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GAD2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CDA +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GCSH +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ALDH4A1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html NTHL1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GAD1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html FBXO7 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html NPLOC4 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CYP46A1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GUSB +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html HGD +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CDC23 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CIDEA +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PCNP +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html TPD52L1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CDC20 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2L3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CEL +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html POP1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SMURF2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SMURF1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PLA2G4C +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PLA2G4B +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PPARA +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html BCKDK +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PPARD +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html KIAA0368 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html TSG101 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2G1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2G2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html BNIP3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html AUH +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html MCCC2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html NT5M +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GPX3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GSTZ1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html NT5C +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ZFP36 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ABCE1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SPACA3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html STS +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ACO2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UFD1L +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html AIFM1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html HYAL4 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html HAO1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html HAO2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SIAH2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ECH1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html HK1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html EDEM1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SQSTM1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html RNASET2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html HSD17B6 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html USP33 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html BCKDHA +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CPT1B +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UPF2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html BCKDHB +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ACLY +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SOD1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CPT1A +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SELS +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GAPDHS +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html BLVRA +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SDHA +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GBA3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GBA2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SDHB +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PSMD14 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html YWHAH +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GLA +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PPP1R8 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SDHC +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SDHD +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PYGB +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GNPDA1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ALDH1L1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html BTRC +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PDHB +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html APOA4 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ASPA +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CDKN2A +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html APOA5 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html MIOX +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CPA2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html FBXO22 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html DFFA +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html NUDT3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html DFFB +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html NUDT5 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CECR2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html RNASEH2A +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PNPLA3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GNS +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html NEU3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html XRN2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html DERL2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html FZR1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SYVN1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html DERL1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GLUD1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html NEDD8 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2V2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ANAPC10 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CHIT1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2D3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2D2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ASRGL1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html RNF11 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ENTPD4 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2D1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SMG6 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SMG5 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SMG7 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SMG1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html TST +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PSMC5 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html VCP +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2E1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html AMT +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html TPP1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html TREH +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html HPD +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2A +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ACADM +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PFKL +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ACADS +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html CYCS +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2I +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PFKM +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2H +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2C +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html DDO +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UGT1A1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2B +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ACADVL +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2N +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE2K +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PRDX6 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GAA +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ERN2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html DHPS +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBB +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html AKR1D1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ADAMTS13 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE3A +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ECHS1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html TKTL1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html STUB1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ERCC5 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ECD +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html BDH2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ERCC3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ERCC4 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ERCC1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html ERCC2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html RNF144B +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html FOXL2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html RNASE2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html RNASE3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE4A +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html RNASE6 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UBE4B +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html PARK2 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html AMPD3 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html GSPT1 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html BAX +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html UGT2B4 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SMPD4 +PWCOMMONS CELLULAR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATABOLIC_PROCESS.html SMPD3 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PRC1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html DBF4 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html KNTC1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PKMYT1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html TTK +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html AURKA +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDC16 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html TTN +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html FOXO4 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html TGFB1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CUL3 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CUL2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CUL5 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDKN2A +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html DDX11 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDKN2B +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDKN2C +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html TARDBP +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDKN2D +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CCNA2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDCA5 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CUL1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ANAPC5 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html RAN +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html RINT1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ANAPC4 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html POLE +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html SKP2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html TBRG4 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ESPL1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html DCTN3 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html FOXN3 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html DCTN2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html MAD2L1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ZWINT +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CLIP1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html STMN1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html AKAP8 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html MAD2L2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html NEK6 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html RAD17 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PPP5C +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PAM +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html NEK2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html AFAP1L2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ANAPC10 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ANLN +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ANAPC11 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html RCC1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PIN1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html KATNA1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html NPM2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDC123 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PBRM1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html FBXO5 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html EGF +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html GML +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html SSSCA1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html TAF1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html SPHK1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDC23 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html SMAD3 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html TPD52L1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html NDC80 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html SUGT1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDC27 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ATM +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDKN1C +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDKN1A +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDKN1B +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html NOLC1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PLK1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html POLD1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html MYO16 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ABL1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html SMC1A +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html E2F1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html KIF23 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html KIF22 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html NBN +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html KIF25 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html LATS1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html LATS2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html TRIAP1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ACVR1B +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html KIF2C +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html GFI1B +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CEP250 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PCBP4 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PRMT5 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html TGFA +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDK10 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html DLG1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ZW10 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html KHDRBS1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDC7 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDC6 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html KIF11 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html KIF15 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html TPX2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html NUSAP1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDK6 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDK4 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html UBE2C +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDK2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html SPDYA +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html INHBA +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CHMP1A +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html EREG +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html BTG3 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDK2AP1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html USH1C +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html BUB1B +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html FOXC1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CHFR +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html KPNA2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html MAP3K11 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ACVR1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html BCAT1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PPP6C +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PML +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html POLA1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CETN1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html ASNS +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html BRSK1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html NUMA1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html NCAPH +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html BUB1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PAFAH1B1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html GFI1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CD28 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html PDS5B +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CENPF +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CENPE +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html BIRC5 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDC25C +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDKN3 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html SMC3 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html SMC4 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CDC25B +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html MPHOSPH9 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CUL4A +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html GSPT1 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html EPGN +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html MPHOSPH6 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html APBB2 +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html CIT +PWCOMMONS MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_CELL_CYCLE.html APBB1 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html IL31RA +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html NDUFS4 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html MCM7 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CDKN2A +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CDKN2B +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html ANG +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CDKN2C +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CLCF1 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CDKN2D +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html TDGF1 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html EGFR +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html BCL10 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CCDC88A +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html IL29 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html LYN +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CCDC88C +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html SOCS1 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html INHA +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html IL20 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html INHBA +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CCND1 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CARD14 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CCND3 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html EREG +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html PSEN1 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CD80 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CCND2 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CD81 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html IL12A +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html RAD17 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html ITLN1 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html ITGB2 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CD24 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html EGF +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html BMP4 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html IL4 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html IL3 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html IL5 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html NF2 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html HCLS1 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CDKN1A +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html CDKN1B +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html AKTIP +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html NLRP12 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html GLMN +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html TNK2 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html IGFBP3 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html BARD1 +PWCOMMONS REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PHOSPHORYLATION.html IL22RA2 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html LDLR +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html GPAA1 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PPT1 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html SCARF1 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html APOA4 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html FNTB +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGK +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html APOA2 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html FNTA +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html APOA1 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGF +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGG +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGH +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html ATG7 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGB +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html CHM +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGC +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html NPC1L1 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html CETP +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html ANGPTL3 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PGGT1B +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGA +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html AIPL1 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGZ +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGY +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGV +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGU +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGT +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGS +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html PIGO +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html DPM1 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html DPM2 +PWCOMMONS LIPOPROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_METABOLIC_PROCESS.html DPM3 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html TBX6 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html SECTM1 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html IKZF3 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html TBX3 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html IKZF1 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html HCK +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html BMX +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html SMAD2 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html TRIM15 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html SNAI2 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html SLIT2 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html BTK +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html TCF21 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html T +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html EYA2 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html GDF11 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html JAK2 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html TIE1 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html KLF4 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html TCF15 +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html MEST +PWCOMMONS MESODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MESODERM_DEVELOPMENT.html MATK +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ALDH1L1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PTGS1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC7A8 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC7A9 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GGT1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC7A4 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC7A5 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html AGXT +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC7A6 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html BBOX1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html FAH +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC7A7 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GLDC +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GOT2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ASPA +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GOT1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SCLY +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PLOD1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html MAT1A +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html DDAH2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html DDAH1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html NANP +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ALDH6A1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html YARS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GATM +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html DARS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html AARS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html QDPR +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html CDO1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PECI +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SARS2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PNPLA8 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PYCR1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html NPC1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ALOX15B +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html RARS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html CROT +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html MPST +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ME1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html HACL1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ME3 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACADSB +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GCLC +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GLUD2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GNE +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GLUD1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html FARS2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PFKFB1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PAH +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ASL +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GCLM +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html CD74 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html KARS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html HADHB +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ARG1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GAD2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ALDH4A1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ASRGL1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html IDH1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GCSH +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GAD1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html NR1H4 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html FH +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html MCAT +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC6A14 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html HGD +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html IDH3B +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html TST +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html CYP7B1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ATF4 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html BAAT +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html MLYCD +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC7A2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC25A10 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html FAAH +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html FPGS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC25A15 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PTGES3 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACOX2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PPARA +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html BCKDK +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PPARD +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html CYP2J2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html AMT +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACOT2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACOT1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACOT4 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACN9 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACOX3 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SC4MOL +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACOT9 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GSS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html AKR1C3 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html MTHFD2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html MCCC2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html AKR1C2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html WARS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html TYR +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html MSRA +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html CYP39A1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PTGES +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html HDC +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACOT12 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GNPAT +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GSTZ1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html AGPAT2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html AKR1C1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html AGPAT1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html HPD +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACADM +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PEPD +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PRG3 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACO2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACADS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACO1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ADIPOR2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ADIPOR1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC3A1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html DDO +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html HAO1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACADVL +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PTGDS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SDS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html AS3MT +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html HAO2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC27A6 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SMS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html AKR1D1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC27A2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC27A5 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ALOX12 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html DEGS1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html BCAT1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ALDH18A1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ECH1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html HSD3B7 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html NFS1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html UGDH +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ECHS1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html MIF +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GLS2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html DCT +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html TNFRSF1A +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html MTHFR +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ABCD2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html MARS2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html BDH2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html PTS +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html BCKDHA +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html CPT1B +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html FADS1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html BCKDHB +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html FTCD +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html IGF1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html FADS2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ACLY +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html CPT1A +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html OXSM +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html ADI1 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GBA2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html CYP4F8 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html CYP4A11 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GLYAT +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GCK +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html SLC6A6 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html LTA4H +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html MAT2B +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html CYP4F3 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html GAMT +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html CYP4F2 +PWCOMMONS ORGANIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ORGANIC_ACID_METABOLIC_PROCESS.html HPGD +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CADM1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ATP6AP2 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html BCAR1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL18 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html FST +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TNFSF13 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TLR8 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SART1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TGFB2 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MAP3K7 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CFHR1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD47 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html NOD2 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IFNG +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IFNK +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html EBI3 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CRTAM +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SPACA3 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL29 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD3E +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SLA2 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SOCS5 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html NFAM1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL21 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TRAT1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html THY1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html UBE2N +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CARD11 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PROK2 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html NCK2 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html LAT2 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SIRPG +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html EREG +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD40LG +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html NCK1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html LCK +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL12A +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL12B +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ICOSLG +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MBL2 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TRAF2 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html AFAP1L2 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CALCA +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MIA3 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ZAP70 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KRT1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD24 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html C2 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TRAF6 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD28 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL4 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html BMP4 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PTPRC +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KL +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL7 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SPHK1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD276 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MALT1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SOD1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD1D +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html FYN +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IKBKG +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ATP2A1 +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MC4R +PWCOMMONS POSITIVE REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD79A +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html BCL10 +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html TNF +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html RELA +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html UBE2V1 +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html EDA2R +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html PRDX3 +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html UBE2N +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html PRKCQ +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html CARD11 +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html NOD2 +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html NLRC3 +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html NPM1 +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html PYCARD +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html ERC1 +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html IKBKB +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html EDA +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html MAP3K13 +PWCOMMONS ACTIVATION OF NF KAPPAB TRANSCRIPTION FACTOR http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_NF_KAPPAB_TRANSCRIPTION_FACTOR.html CAMK2A +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F2RL2 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html GGCX +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F2RL3 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html ADORA2A +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F13A1 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html PABPC4 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html GNA12 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html PF4 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html ITGB3 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html LMAN1 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html MMRN1 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html GP9 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html PR47 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F13B +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html SERPINE1 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html GP1BA +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html ENTPD1 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html KNG1 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html PLAT +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F12 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html L3MBTL4 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F10 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F8 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F9 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html ITGA2 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html C4BPB +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F7 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html TMPRSS6 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html WAS +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html PLG +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html PROC +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html VWF +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html CD36 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html THBD +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html GNAQ +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F5 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html HNF4A +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html CD40LG +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html CD59 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F2 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html TFPI +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html PROS1 +PWCOMMONS BLOOD COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/BLOOD_COAGULATION.html F2R +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF2C1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF5 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF5A +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html LRRC4C +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CXCL12 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html GATA2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PACSIN3 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ROBO1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html APOE +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html HRSP12 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ROBO2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html TLK1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html TLK2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF2B2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF2B5 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html MYH9 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PPARGC1A +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html BOLL +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html NEBL +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html THY1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html HSPB1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF2AK3 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF2AK4 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html FGD2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html HMGB1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html FGD1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html KATNB1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PPT1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ARF6 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html MTIF2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html MTIF3 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html AHSG +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF3C +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html IRAK3 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF3D +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CDC42EP2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF3A +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CDC42EP1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF3G +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF3H +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF3E +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html RAC1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF3F +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html SFTPD +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CLASP1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF3I +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF3J +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CLASP2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html FGD5 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CDC42EP4 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html FGD6 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html STK38L +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ARHGEF10L +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html FGD3 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html FGD4 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CDC42EP5 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html TAOK2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PAIP2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PIF1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF4B +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html TSC1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF4H +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html RTN4 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html LIMA1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html AP2S1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html TERF2IP +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html LATS1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CDC42 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CEP250 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html GSN +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ZFYVE16 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html MAPT +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ATF7IP +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ARHGEF2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html SPACA3 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CCDC88A +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF1B +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html MID1IP1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html NEXN +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html LDLRAP1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html SLIT2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html UBE2N +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html AMIGO1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html NCK2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF4G2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF4G3 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html MTRF1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html NCK1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html TPPP +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF4A2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html GHRL +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html TMSB4Y +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html MAPRE1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html UBB +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html STON2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html STON1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html HCFC1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PAIP2B +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html AZU1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html SORBS3 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html SET +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html DAZL +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ERCC4 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ERCC1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html TERF2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html RASA1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html APC +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html COL4A4 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html DAZ1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html KLK8 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html UPF1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html NF2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CBL +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CRIPAK +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ETF1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CDH13 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html YWHAH +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CAPG +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PBX1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html FAF1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PBX3 +PWCOMMONS REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PBX4 +PWCOMMONS PURINE RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_RIBONUCLEOTIDE_METABOLIC_PROCESS.html ADSS +PWCOMMONS PURINE RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_RIBONUCLEOTIDE_METABOLIC_PROCESS.html FIGNL1 +PWCOMMONS PURINE RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_RIBONUCLEOTIDE_METABOLIC_PROCESS.html OLA1 +PWCOMMONS PURINE RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_RIBONUCLEOTIDE_METABOLIC_PROCESS.html AK5 +PWCOMMONS PURINE RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_RIBONUCLEOTIDE_METABOLIC_PROCESS.html ACLY +PWCOMMONS PURINE RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_RIBONUCLEOTIDE_METABOLIC_PROCESS.html C16ORF7 +PWCOMMONS PURINE RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_RIBONUCLEOTIDE_METABOLIC_PROCESS.html CTNS +PWCOMMONS PURINE RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_RIBONUCLEOTIDE_METABOLIC_PROCESS.html AMPD3 +PWCOMMONS PURINE RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_RIBONUCLEOTIDE_METABOLIC_PROCESS.html GUK1 +PWCOMMONS PURINE RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PURINE_RIBONUCLEOTIDE_METABOLIC_PROCESS.html NDUFS1 +PWCOMMONS COFACTOR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_CATABOLIC_PROCESS.html BLVRA +PWCOMMONS COFACTOR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_CATABOLIC_PROCESS.html SDHA +PWCOMMONS COFACTOR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_CATABOLIC_PROCESS.html SDHB +PWCOMMONS COFACTOR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_CATABOLIC_PROCESS.html ALDH1L1 +PWCOMMONS COFACTOR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_CATABOLIC_PROCESS.html NNT +PWCOMMONS COFACTOR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_CATABOLIC_PROCESS.html ACO2 +PWCOMMONS COFACTOR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_CATABOLIC_PROCESS.html SDHC +PWCOMMONS COFACTOR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_CATABOLIC_PROCESS.html SDHD +PWCOMMONS COFACTOR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_CATABOLIC_PROCESS.html UGT1A1 +PWCOMMONS COFACTOR CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_CATABOLIC_PROCESS.html PDHB +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ALS2 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP4 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP5 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html APOA1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html APOE +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RHOA +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RRAS +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RHOB +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ABRA +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RHOD +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGF2 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RHOG +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html DBNL +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html PLD1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ROCK1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RREB1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RALBP1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html LIMK1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html G3BP1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP27 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP29 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FARP2 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ELMO1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html MFN2 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html PLCE1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html CRKL +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html SGSM3 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html GNB1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html CFL1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html LCK +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html GRAP2 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD2 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGDIG +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html GRAP +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html GRB2 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html MRAS +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RTKN +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html MYO9B +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ARF6 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ABCA1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ROPN1B +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RASGRP4 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html SOS1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RASGRP1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RAC1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html APOC3 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ADRA2A +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD5 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD6 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGDIA +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD3 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGDIB +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD4 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html CNKSR1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html NF1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html IGF1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html TAX1BP3 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html PARK7 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html NOTCH2 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html CDH13 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html LAT +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html TSC1 +PWCOMMONS RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RASSF1 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html TM7SF4 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html MMP9 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html CSF1 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html SPI1 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html ZNF675 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html PF4 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html ZBTB16 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html FOXO3 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html IL31RA +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html CALCA +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html ACVR1B +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html CDC42 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html ALAS2 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html SNRK +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html RASGRP4 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html DYRK3 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html ACIN1 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html RUNX1 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html MYST1 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html MYST3 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html IL4 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html LYN +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html MAFB +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html CEBPG +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html HCLS1 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html LDB1 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html CDK6 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html INHA +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html IFI16 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html MYH9 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html ACVR2A +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html INHBA +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html RPS19 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html ETS1 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html NCOA6 +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html SCIN +PWCOMMONS MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_CELL_DIFFERENTIATION.html CARTPT +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html XRCC2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html DBF4 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html KNTC1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TTK +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PKMYT1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html AURKA +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDC16 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TTN +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html FOXO4 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TGFB1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CUL3 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CUL2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CUL5 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RAD21 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDKN2A +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html DDX11 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDKN2B +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDKN2C +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDKN2D +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TARDBP +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html STAG3 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CCNA1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDCA5 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CCNA2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CUL1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html ANAPC5 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RAN +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html ANAPC4 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html POLE +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RINT1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html SKP2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html LIG3 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TBRG4 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html ESPL1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PIM2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html DCTN3 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html BOLL +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html FOXN3 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html DCTN2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RAD1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html REC8 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html MAD2L1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TIMELESS +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html ZWINT +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CLIP1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html AKAP8 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html MAD2L2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RAD17 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html NEK6 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PPP5C +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PAM +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html NEK2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html MRE11A +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TIPIN +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CHEK1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html ANAPC10 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html ANLN +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html ANAPC11 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RCC1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html SYCP1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PIN1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PRUNE2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html DUSP13 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RAD51L1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html NPM2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html KATNA1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PBRM1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RAD51L3 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html EGF +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html GML +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html SSSCA1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TAF1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDC23 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html NDC80 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TPD52L1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html SUGT1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDC27 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RAD54L +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html ATM +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDKN1C +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDKN1A +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDKN1B +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html NOLC1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PLK1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html POLD1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html MYO16 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RAD54B +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html ABL1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html SMC1A +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html E2F1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html KIF22 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html NBN +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html KIF25 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html LATS1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html LATS2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TRIAP1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html ACVR1B +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html KIF2C +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html GFI1B +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PCBP4 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PRMT5 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TGFA +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDK10 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html ZW10 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TAF1L +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html KHDRBS1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDC7 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDC6 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html KIF11 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html KIF15 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TPX2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html NUSAP1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDK6 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RB1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RAD52 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html UBE2C +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDK4 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RAD50 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDK2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html RAD51 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html SPDYA +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html INHBA +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CHMP1A +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html EREG +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDK2AP1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html TOP3A +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html BUB1B +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html USH1C +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CHFR +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html DMC1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html KPNA2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html MAP3K11 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html ACVR1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html BCAT1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PPP6C +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PML +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html POLA1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CETN1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html SPO11 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html BRSK1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html NCAPH +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html NUMA1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html HSPA2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html KRT7 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html BUB1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html GFI1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CD28 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PTPRC +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html PDS5B +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html MSH5 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html MSH4 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CENPF +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CENPE +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html BIRC5 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDKN3 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDC25C +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html SC65 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html SMC3 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CDC25B +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html SMC4 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html MPHOSPH9 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html GSPT1 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CUL4A +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html EPGN +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html APBB2 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html MPHOSPH6 +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html CIT +PWCOMMONS CELL CYCLE PHASE http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_PHASE.html APBB1 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html TM7SF4 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html CSF1 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html MMP9 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html JAG2 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html ZNF675 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html TPD52 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html SPINK5 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html SART1 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html IL31RA +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html CALCA +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html CDC42 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html ZAP70 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html CD4 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html ACIN1 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html RUNX1 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html IL4 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html PTPRC +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html CD3D +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html IL7 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html CEBPG +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html IL27 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html INHA +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html IFI16 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html SOCS5 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html NFAM1 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html MYH9 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html CD1D +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html HDAC5 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html INHBA +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html HDAC4 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html LCK +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html CARTPT +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html IL12B +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html CD79A +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html HDAC9 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html NHEJ1 +PWCOMMONS LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_DIFFERENTIATION.html IL2 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html ADORA2B +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html ZAK +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html PTPLAD1 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html DUSP10 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP4K2 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html ZNF675 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP4K1 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html DAXX +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP3K6 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP3K5 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP3K4 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MDFIC +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP3K2 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP3K9 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html CD27 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MDFI +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html GPS1 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html DBNL +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html CARD9 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html TNIK +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html TAOK2 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html KIAA1804 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html TAOK3 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP2K4 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MINK1 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html PKN1 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html EDA2R +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html TPD52L1 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAPK10 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html GPS2 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html AMBP +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP4K3 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html SH2D3C +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP4K5 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html SH2D3A +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html CRKL +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html HIPK2 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAPK8IP2 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP3K10 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAPK8IP3 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAPK9 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAPK8 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAPK8IP1 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html DUSP9 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP3K13 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP3K12 +PWCOMMONS JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/JNK_CASCADE.html MAP3K11 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RPL17 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SLC44A2 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SLC20A1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html VAPA +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TBK1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TSPAN6 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html GJA1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FASLG +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TLR6 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CANT1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NOD2 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TMEM9B +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NOD1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MYD88 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MIER1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html HMOX1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CASP8 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TICAM1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TICAM2 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RHOA +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TMEM101 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RHOC +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CASP1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html GPR89A +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html BCL10 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html LTBR +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html BST2 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html GOLT1B +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RELA +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FADD +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CD40 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ECT2 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FLNA +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html UBE2N +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRIM38 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ZDHHC17 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFRSF10B +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ATP2C1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MIB2 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RIPK1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ZDHHC13 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RIPK2 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html EEF1D +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NEK6 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PPP5C +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html LITAF +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PPM1A +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TFG +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRIM13 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html UBE2V1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FKBP1A +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CXXC5 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFRSF1A +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TMED4 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html REL +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MAP3K3 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SLC35B2 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PLEKHG5 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CC2D1A +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRAF6 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRAF5 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SECTM1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CFLAR +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CARD9 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html LGALS1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NDFIP1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NDFIP2 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MALT1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ECM1 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html BIRC2 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html LGALS9 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRADD +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRAF3IP2 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html APOL3 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html IKBKE +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFSF10 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PLK2 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NUP62 +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html HTR2B +PWCOMMONS POSITIVE REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html F2R +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html UPF1 +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html MTERF +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html TNP1 +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html ETF1 +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html HMGA1 +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html TTF2 +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html MAZ +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html SET +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html SMARCE1 +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html MTRF1 +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html HRSP12 +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html SUPT16H +PWCOMMONS CELLULAR PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_PROTEIN_COMPLEX_DISASSEMBLY.html NRG1 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD2 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ALS2 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD1 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RALBP1 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html NF1 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP27 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ARF6 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html MFN2 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html NOTCH2 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html PLCE1 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html TSC1 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RASGRP4 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html RAC1 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html ABRA +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD5 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD6 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD3 +PWCOMMONS REGULATION OF RAS PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_PROTEIN_SIGNAL_TRANSDUCTION.html FGD4 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html ENOX2 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html SPRR2G +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html SPRR2F +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html SPRR2E +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html SPRR2C +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html SPRR2D +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html SPRR2A +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html SPRR2B +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html PER2 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html PER1 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html AANAT +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html CRY1 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html EIF2B2 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html EIF2B4 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html EIF2B5 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html FOXL2 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html EGR3 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html ARNTL +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html SOD1 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html PTGDS +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html EREG +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html TIMELESS +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html HTR7 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html HEBP1 +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html CARTPT +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html BMPR1B +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html CLOCK +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html MTNR1A +PWCOMMONS RHYTHMIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RHYTHMIC_PROCESS.html OPN4 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHIA +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SNCAIP +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GNPDA1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html B3GALT6 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC7A8 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC7A9 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GGT1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC7A4 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC7A5 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC35A3 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC7A6 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html BBOX1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html FAH +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GLDC +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC7A7 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html TGFB2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GOT2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ASPA +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ST3GAL2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GOT1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SCLY +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html PLOD1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html MAT1A +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SULT1A1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ASMTL +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ST3GAL6 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SULT1A2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SPR +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html NQO1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html DDAH2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html DDAH1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html NANP +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html EGFR +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ALDH6A1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html YARS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GATM +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html DARS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html AARS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html QDPR +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CDO1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SARS2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GLCE +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GNS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html PYCR1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ISCU +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html COLQ +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html HAS1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SULT1B1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html RARS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html EXT1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html EXT2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html MPST +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GCLC +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GCNT2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ASS1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GLUD2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GNE +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html FARS2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GLUD1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html PAH +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ASL +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html NAGK +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html EXTL2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GCLM +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html KARS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHIT1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html OAZ2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ARG1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html B3GNT8 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GAD2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html OAZ1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GCSH +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ASRGL1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ALDH4A1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GAD1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html B4GALT7 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html P4HB +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html UAP1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GUSB +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SPHK1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC6A14 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html HGD +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html TST +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ATF4 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html BAAT +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html DIO2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC7A2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html DIO1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html FPGS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC25A15 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html HSP90AB1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html BCKDK +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html AMT +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html AKT1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GSS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html MCCC2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html WARS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html TYR +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html MSRA +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html XYLT1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html HDC +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHST12 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHST11 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GSTZ1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHST13 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html HPD +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html HSP90AA1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html PEPD +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html PRG3 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHST2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHST3 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHST4 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHST5 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC3A1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html HYAL4 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html DDO +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHST1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHST7 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SDS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CHST6 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html DHPS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SMS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html AOC3 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html CLN6 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html BCAT1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ALDH18A1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GALNT5 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html NFS1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html UGDH +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GCH1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html DCT +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GLS2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html MTHFR +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html B4GALNT2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ETNK1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html MARS2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SULT1C2 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html PTS +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GCHFR +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html BCKDHA +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html BCKDHB +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html ADI1 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html LARGE +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GLA +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC6A6 +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html MAT2B +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html GAMT +PWCOMMONS NITROGEN COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_METABOLIC_PROCESS.html SLC5A7 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CCL1 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CCL3 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html HS3ST6 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html DERL1 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html RSF1 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CCL2 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html HS3ST5 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html VAPB +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html OPRK1 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html RRAGA +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html EIF5A +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CALCOCO2 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html DEK +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html HCFC2 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html APOBEC3G +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html APOBEC3F +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CCL4 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html TGFB1 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html SMARCB1 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html WWP2 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html MDFIC +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html WWP1 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html HTATSF1 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CXCR6 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html GFI1 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html ITCH +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html TOP2A +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html TNIP1 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html PARD6A +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CTBP1 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CTBP2 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html IL8 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html SMAD3 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html HBXIP +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html UBP1 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CLEC4M +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html TARBP2 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html PPIA +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CD209 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html CD81 +PWCOMMONS VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/VIRAL_REPRODUCTION.html ACE2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PTGES3 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOX2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PPARA +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PPARD +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP2J2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ALDH1L1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PTGS1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOT2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOT1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html AGXT +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOT4 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html BBOX1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ACN9 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOX3 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html SC4MOL +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html AKR1C3 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOT9 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html MTHFD2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html AKR1C2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP39A1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PTGES +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ACOT12 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html GNPAT +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html AKR1C1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ACADM +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PRG3 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ACADS +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ADIPOR2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ADIPOR1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PECI +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ACADVL +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html HAO1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PNPLA8 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html NPC1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PTGDS +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ALOX15B +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html HAO2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC27A6 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html AKR1D1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC27A2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC27A5 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html CROT +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ALOX12 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html DEGS1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html HACL1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ME3 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ACADSB +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ECH1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html HSD3B7 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html PFKFB1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html UGDH +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ECHS1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html CD74 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html MIF +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html HADHB +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html TNFRSF1A +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ABCD2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html BDH2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html NR1H4 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html CPT1B +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html FADS1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html MCAT +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html FTCD +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html FADS2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html IGF1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html CPT1A +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html OXSM +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP4F8 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP7B1 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html GBA2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP4A11 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html GLYAT +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html ATF4 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html BAAT +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html GCK +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html MLYCD +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html SLC25A10 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html FAAH +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html LTA4H +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP4F3 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html CYP4F2 +PWCOMMONS MONOCARBOXYLIC ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MONOCARBOXYLIC_ACID_METABOLIC_PROCESS.html HPGD +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html LIMA1 +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html ARF6 +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html CXCL12 +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html LATS1 +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html NEBL +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html NCK2 +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html CDC42EP2 +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html GSN +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html NCK1 +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html CAPG +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html TMSB4Y +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html RASA1 +PWCOMMONS REGULATION OF ACTIN FILAMENT LENGTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_FILAMENT_LENGTH.html CDC42EP5 +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html DOCK2 +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html IL8 +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html SAA1 +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html CKLF +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html SFTPD +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html PF4 +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html ITGB2 +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html CX3CL1 +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html IL10 +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html SYK +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html SCG2 +PWCOMMONS LEUKOCYTE CHEMOTAXIS http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_CHEMOTAXIS.html TGFB2 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html KHDRBS1 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html NCBP2 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html MDFI +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html NUDT4 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html NFKBIE +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html NF1 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html SMAD3 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html TNFSF14 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html CDH1 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html NLRP3 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html MXI1 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html NFKBIL1 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html UHMK1 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html TGFB1 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html FLNA +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html NFKBIL2 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html GSK3B +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html NLRP12 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html BCL3 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html FAF1 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html TRIP6 +PWCOMMONS REGULATION OF NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NUCLEOCYTOPLASMIC_TRANSPORT.html BARD1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html POU6F1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html GLI2 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html ZIC1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html SHH +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html ZIC2 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html NDUFS4 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html CEP290 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html ROBO2 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html UNC5C +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html ALX1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html EGR2 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html MDGA1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html OTX2 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html SIX3 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html ALK +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html SLIT1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html TBR1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html VCX3A +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html PITPNM1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html BPTF +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html GPR56 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html FOXG1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html NCOA6 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html CNTN4 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html SMARCA1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html CLN5 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html UTP3 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html SHROOM2 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html CDK5R1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html SHROOM4 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html UBE3A +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html NNAT +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html DSCAML1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html PPT1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html HESX1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html ECE2 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html LHX6 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html NKX2-2 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html DMBX1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html NF1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html AFF2 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html FOXP2 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html PCDH18 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html DLX2 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html MAP1S +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html PHGDH +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html MYO16 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html PBX1 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html CTNS +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html PBX3 +PWCOMMONS BRAIN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/BRAIN_DEVELOPMENT.html PBX4 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html ACVRL1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html HTATIP2 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html IL18 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html TNFSF12 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html GLI2 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html FOXO4 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html SPINK5 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html CANX +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html SHH +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html TGFB2 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html ANG +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html ROBO4 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html CEP290 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html ERAP1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html RHOB +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html CHRNA7 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html MYH9 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html NCL +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html SLIT2 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html THY1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html PROK2 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html EYA2 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html SERPINF1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html BTG1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html VEGFA +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html NPPB +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html ATPIF1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html EMCN +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html RNH1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html PML +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html PF4 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html TRIM15 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html CD9 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html AGGF1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html IL17F +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html RUNX1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html EGF +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html ANGPTL3 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html C1GALT1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html SCG2 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html ANGPTL4 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html COL4A3 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html COL4A2 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html IL8 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html NF1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html SPHK1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html NPR1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html SMAD2 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html TNNI3 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html PLG +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html CDH13 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html STAB1 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html EPGN +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html NOTCH4 +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html AMOT +PWCOMMONS ANATOMICAL STRUCTURE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ANATOMICAL_STRUCTURE_FORMATION.html KLF4 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html TRAF2 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html MBL2 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html CADM1 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html IL28RA +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html RSAD2 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html BNIP3 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html TNFSF13 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html APOBEC3G +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html APOBEC3F +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html TLR7 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html TLR8 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html TGFB1 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html CD74 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html MAP3K7 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html CFHR1 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html APOA2 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html APOA1 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html FCN2 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html BCL2 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html FCN1 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html KRT1 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html C2 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html TRAF6 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html IL4 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html PTPRC +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html CRTAM +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html IL29 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html CEBPG +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html DEFB103A +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html SLA2 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html MALT1 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html FOXP3 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html NCR1 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html TARBP2 +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html CD40LG +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html BNIP3L +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html IL12A +PWCOMMONS IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_EFFECTOR_PROCESS.html IL12B +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html CCKAR +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html NUAK2 +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html GNAI2 +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html ENPP1 +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html PPARG +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html ASNS +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html ENSA +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html GCGR +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html CDKN2B +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html ALB +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html CDKN2D +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html PCSK9 +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html OGT +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html SREBF1 +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html STC2 +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html FADS1 +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html TP53 +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html LEP +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html SSTR2 +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html CHMP1A +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html TULP4 +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html NPY +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html SSTR1 +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html GIPR +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html GHRL +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html CARTPT +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html STC1 +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html GHSR +PWCOMMONS RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_NUTRIENT_LEVELS.html SST +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html SGMS2 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html GBGT1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PTGS1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html SGMS1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html LASS5 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html APOA1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html AGPS +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html LCAT +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html UGCG +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html NR0B1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PNPLA3 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html CHPT1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PLCE1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PI4K2A +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html HSD11B2 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html MVK +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html CNBP +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html TFCP2L1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html ST8SIA1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html ST8SIA3 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PDSS1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html CD74 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PDSS2 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html B3GNT5 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html LPCAT1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PEMT +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PCYT1B +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html CYP19A1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html MCAT +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html FDXR +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html FDPS +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html BRCA1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html CYP7B1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html LASS1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html ST8SIA5 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html IDI1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html BMP6 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PTGES3 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html IMPA1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html ALG1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html CYP11B2 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PEX7 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGK +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html ST6GALNAC6 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html AGPAT6 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html CYP39A1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGF +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html ANG +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGG +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGH +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGB +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html NPC1L1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGC +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PCYT2 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html AGPAT2 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html AGPAT1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html DHCR24 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGA +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGZ +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGY +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html CYP11A1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PRG3 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIK3C2A +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGV +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PI4KA +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGU +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGT +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGS +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PI4KB +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PIGO +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html DGAT2 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PTGDS +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html ADM +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html CD81 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html AKR1D1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html DEGS1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html PGS1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html HSD3B1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html HSD3B7 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html GPAA1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html MIF +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html DGKE +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html DHCR7 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html ETNK1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html NSDHL +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html FADS1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html FADS2 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html SOD1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html OXSM +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html LARGE +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html DPM1 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html DPM2 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html DPM3 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html LTA4H +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html SCP2 +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html HPGD +PWCOMMONS LIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_BIOSYNTHETIC_PROCESS.html NR5A1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html HCCS +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html CDX1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html HRAS +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html IL18 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html FGF16 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TGFB3 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html FGF10 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html RORB +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PDX1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TNFSF12 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html FOXO4 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ZIC1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TGFB1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html SHH +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TGFB2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html FLI1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html CUL7 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ROBO4 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html CEP290 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ERAP1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html CHRNA7 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PITX3 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PITX2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html SYK +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html BRAF +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html VANGL2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html FOXN1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html MYH7 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html MYH6 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html MYH9 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PROX1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html SIX6 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html THY1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html MSX1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html SERPINF1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html VEGFA +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ATPIF1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ODAM +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html FGD1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html EMCN +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html CCL2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html AMTN +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ONECUT2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ELN +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html DSCAML1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html EPHB4 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html AGGF1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ITGAX +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html LHX1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html LHX3 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html IL17F +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html RUNX1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html EGF +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html LAMB1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ANGPTL3 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html SFTPB +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ANGPTL4 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html COL18A1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html CCM2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html HTT +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html SPHK1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ITGA2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TNNI3 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TINAG +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html NKX6-1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html NOTCH2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html NOTCH4 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html GLMN +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html FABP1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ENG +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html GYPC +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ACVRL1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html HTATIP2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html NRP1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html MYBPC3 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PAX6 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PAX5 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PAX4 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PAX3 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html GLI2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html LSR +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html CANX +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html SPINK5 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html CRX +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html SPRY2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html DGCR2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html AES +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html HEY1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ANG +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html DGCR6 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html HEY2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html RHOB +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html GNPAT +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html FGF2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html STX2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html EGFL7 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TLE3 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TLE1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TLE2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html NCL +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PROK2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html EREG +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html BTG1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html GAA +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html NPPB +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html FOXC1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ABLIM1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html ETV7 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html SHROOM2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PML +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html RNH1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PF4 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html DCN +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html POU1F1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html APLP1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html COL9A1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html COMP +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html LY6H +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PKD2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PCSK9 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html C1GALT1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html RASA1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html SCG2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html COL4A3 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html COL4A2 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html IL8 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TBX3 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html IL7 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PLAC1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html CEBPG +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TBX4 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html NF1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html NPR1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TBX1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html COL5A3 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html SOD1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PLG +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html CDH13 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html STAB1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html EPGN +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html BAX +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html AMOT +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html PTCH1 +PWCOMMONS ORGAN MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ORGAN_MORPHOGENESIS.html TMEM176B +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html KCNMB3 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html RTP3 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html KCNMB4 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html SYT1 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html CASR +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html RTP4 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html STIM1 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html TAS1R3 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html KCNIP2 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html KCNIP1 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html TAS1R2 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html KCNMB2 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html TAS2R16 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html NOD2 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html TAS2R14 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html GCK +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html TAS2R43 +PWCOMMONS DETECTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_CHEMICAL_STIMULUS.html UGT2A1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html GNA15 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html TNFSF15 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html PMAIP1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html EDNRA +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html NLRC4 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html CDKN2A +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html CASP8AP2 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html CASP9 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html ANG +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html NMUR1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html NMUR2 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html APOA5 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html RGN +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html PLCB2 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html EGFR +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html C5AR1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html AIFM3 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html CCKBR +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html RALBP1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html CYCS +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html TP53 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html ARHGAP27 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html NLRP3 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html NLRP2 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html BCL2L10 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html THY1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html TNNT2 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html GNAQ +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html IFNB1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html F2 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html LCK +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html ERN1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html APOC2 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html MOAP1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html MTCH1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html DIABLO +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html HIP1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html COL4A3 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html FOXL2 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html CARD8 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html SMAD3 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html STAT1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html VCP +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html BBC3 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html IFT57 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html BAX +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html AVPR1B +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html AVPR1A +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html PPP2R4 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html APAF1 +PWCOMMONS POSITIVE REGULATION OF HYDROLASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_HYDROLASE_ACTIVITY.html F2R +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html CDC7 +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html PTPRC +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html POLA1 +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html TIPIN +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html RCC1 +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html CHMP1A +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html DDX11 +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html TIMELESS +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html POLD1 +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html CDK2AP1 +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html MYO16 +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html ABL1 +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html APBB2 +PWCOMMONS S PHASE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE.html APBB1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html ADORA2B +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html ZAK +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html ERBB2 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html PTPLAD1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html C5 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html FPR1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP4K1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html TLR6 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html DAXX +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP3K6 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP3K5 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html CXCR4 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html MDFIC +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP3K2 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP3K9 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html ADRA2A +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html TGFA +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html CHRNA7 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html ADRA2C +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html SHC1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html CD24 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html PAK1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html GNG3 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html EGF +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html FGF2 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html MDFI +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html EGFR +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html DBNL +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html C5AR1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html PIK3CB +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html MADD +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html KIAA1804 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html PKN1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html TPD52L1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html SOD1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html GRM4 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html PROK2 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP4K5 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html PLCE1 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html ADRB2 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html EPGN +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html CD81 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP3K10 +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html GHRL +PWCOMMONS POSITIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP3K11 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html BCKDHA +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html BCKDK +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html AMT +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html GLUD1 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html BCKDHB +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html HGD +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html ASL +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html DDO +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html FAH +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html GLDC +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html GOT2 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html ARG1 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html MCCC2 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html ASPA +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html GAD2 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html GOT1 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html GSTZ1 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html ASRGL1 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html ALDH4A1 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html GCSH +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html DDAH2 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html DDAH1 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html GAD1 +PWCOMMONS AMINO ACID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_CATABOLIC_PROCESS.html HPD +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html NBN +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html ZAK +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html HUS1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html KNTC1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html TIPIN +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html PML +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html TTK +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html CHEK1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html BRSK1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html CHEK2 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html CCNG2 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html TGFB1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html CDT1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html CCNE2 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html TRIAP1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html CDKN2A +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html CDKN2B +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html PCBP4 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html BUB1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html FANCG +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html ERCC3 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html GML +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html ATRIP +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html CCNA2 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html ZW10 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html ERCC2 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html CDC6 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html DDB1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html RINT1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html RAD9A +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html BIRC5 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html RB1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html ATR +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html NEK11 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html FOXN3 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html ATM +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html NAE1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html RBBP8 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html RAD1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html XPC +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html MAD2L1 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html ZWINT +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html BUB1B +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html SMC1A +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html MAD2L2 +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html CHFR +GO CELL CYCLE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_CHECKPOINT_GO_0000075.html RAD17 +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html MFN2 +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html BAK1 +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html OPA1 +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html DNM1L +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html BCL2 +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html TAZ +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html TP53 +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html BNIP3 +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html TIMM50 +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html BCL2L1 +PWCOMMONS MITOCHONDRIAL MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html COX18 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html TNFSF15 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html PMAIP1 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html NLRC4 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html MOAP1 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html CDKN2A +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html CASP9 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html CASP8AP2 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html MTCH1 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html DIABLO +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html HIP1 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html COL4A3 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html FOXL2 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html CARD8 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html AIFM3 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html CYCS +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html TP53 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html SMAD3 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html STAT1 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html NLRP3 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html NLRP2 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html BCL2L10 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html VCP +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html BBC3 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html IFNB1 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html IFT57 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html BAX +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html F2 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html LCK +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html APAF1 +PWCOMMONS POSITIVE REGULATION OF CASPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CASPASE_ACTIVITY.html F2R +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html IL4 +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html PTPRC +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html CD3E +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html IL18 +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html CD276 +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html IL21 +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html NCK2 +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html NCK1 +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html CD24 +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html IL12B +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html EBI3 +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html ICOSLG +PWCOMMONS POSITIVE REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_PROLIFERATION.html CD28 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html AURKAIP1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF5A +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR7 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR8 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR9 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL31RA +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html APOA2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CLCF1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TPP1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html ATG7 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html MAPT +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html LTB +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EBI3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SPN +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SAMD4A +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF2B5 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BCL10 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PRG3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL29 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html LYN +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL27 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BOLL +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL20 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html UBE2N +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html NCK2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CARD14 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CCND1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CCND3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EREG +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CD80 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CCND2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TPPP +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html NCK1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CD81 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL12A +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL12B +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CLN6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html ITLN1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html KATNB1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TNFRSF8 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html ARF6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html STUB1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html AZU1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CDC42EP2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BCL3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html DAZL +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html UBE2D1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CDC42EP5 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CD28 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BMP4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html DAZ1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL5 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html HCLS1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CEBPG +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL9 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CD276 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html AKTIP +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html GLMN +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PPP2R4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TNK2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IRF4 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GNPDA1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHIA +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html B3GALT6 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PGD +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html SLC35A2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html SLC35A3 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PDHB +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ST3GAL2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html MIOX +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ST3GAL6 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html NANP +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html IDUA +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html IRS2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html FBP1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html FBP2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GLCE +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GNS +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PGLS +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html NNT +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html HAS1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html MGAM +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html EXT1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html EXT2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html HS3ST3B1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ALDOA +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ME1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html LALBA +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ME3 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GCNT2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GNE +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ALDOC +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PFKFB1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ALDOB +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html NAGK +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html EXTL2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHIT1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html B3GNT8 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GAD2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html INS +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html IL17F +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GYS2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html IDH1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html DYRK2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GAD1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html B4GALT7 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html FH +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html UAP1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GUSB +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html EPM2A +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GALT +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html IDH3B +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ATF4 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html SLC25A10 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html FPGT +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html SGSH +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html NDST1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ALG1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PTEN +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ACN9 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ACOT4 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html HPSE +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html XYLT1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST12 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST11 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST14 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST13 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html TREH +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PFKL +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ACO2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ACO1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST3 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST4 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST5 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PFKM +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html HYAL4 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PMM2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html G6PD +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST7 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST6 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST9 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CHST8 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GAA +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html UGP2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html CLN6 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html HS3ST5 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GALNT5 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html UGDH +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html HK1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html TKTL1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GALK1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html LECT1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html AKR1A1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ECD +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html B4GALNT2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html HS6ST1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html TSTA3 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PDK1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PDK2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GMDS +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PDK3 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PDK4 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GYG2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html BRS3 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html ACLY +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GAPDHS +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GBA3 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html SDHA +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html SDHB +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GBA2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PYGM +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html LARGE +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GCK +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html SDHC +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GSK3B +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GFPT1 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html SDHD +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html GFPT2 +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html IPPK +PWCOMMONS CELLULAR CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_METABOLIC_PROCESS.html PYGB +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html TNF +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html STK36 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html UBE2V1 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html EGLN1 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html PRDX3 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html PYDC1 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html NOD2 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html SUMO1 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html CDKN2A +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html NLRC3 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html NPM1 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html PYCARD +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html PEX14 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html ABRA +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html CAMK2A +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html BCL10 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html CREBZF +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html RELA +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html CEBPG +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html EDA2R +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html NFAM1 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html FOXP3 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html NLRP3 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html FLNA +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html JMY +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html SIGIRR +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html UBE2N +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html PRKCQ +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html CARD11 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html EP300 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html ID2 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html ID1 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html NARFL +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html ID3 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html EDA +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html COMMD7 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html ERC1 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html TSSK4 +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html IKBKB +PWCOMMONS REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html MAP3K13 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html MICB +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html CRTAM +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html CDK5R1 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html MICA +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html ZP2 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html OPCML +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html CADM1 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html PCDH12 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html COLEC12 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html SLIT2 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html CLEC4M +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html AMIGO1 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html CD209 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html PECAM1 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html CNTN4 +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html VCAN +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html CLEC7A +PWCOMMONS CELL RECOGNITION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_RECOGNITION.html SPAM1 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html SGSH +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html HS3ST5 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html NDST1 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html CHST3 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html GLCE +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html LECT1 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html CHST7 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html HPSE +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html CHST9 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html CHST12 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html IL17F +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html CHST11 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html CHST8 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html CHST14 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html CHST13 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html HS6ST1 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html EXT1 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html B4GALT7 +PWCOMMONS PROTEOGLYCAN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOGLYCAN_METABOLIC_PROCESS.html HS3ST3B1 +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html CDC6 +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html NBN +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html WRNIP1 +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html POLA1 +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html TIPIN +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html RAD9A +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html MCM3 +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html RPA4 +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html ORC1L +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html PURA +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html CDT1 +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html ORC2L +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html ORC4L +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html ORC5L +PWCOMMONS DNA REPLICATION INITIATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION_INITIATION.html RAD17 +PWCOMMONS PEPTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDE_METABOLIC_PROCESS.html PAM +PWCOMMONS PEPTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDE_METABOLIC_PROCESS.html TPP1 +PWCOMMONS PEPTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDE_METABOLIC_PROCESS.html ADAMTS13 +PWCOMMONS PEPTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDE_METABOLIC_PROCESS.html DMD +PWCOMMONS PEPTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDE_METABOLIC_PROCESS.html DEFB103A +PWCOMMONS PEPTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDE_METABOLIC_PROCESS.html PGCP +PWCOMMONS PEPTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDE_METABOLIC_PROCESS.html FURIN +PWCOMMONS PEPTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDE_METABOLIC_PROCESS.html PCSK5 +PWCOMMONS PEPTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDE_METABOLIC_PROCESS.html TAPBP +PWCOMMONS PEPTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDE_METABOLIC_PROCESS.html DNPEP +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html IL4 +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html MAFB +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html LDB1 +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html SPI1 +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html ZNF675 +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html CDK6 +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html PF4 +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html FOXO3 +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html ZBTB16 +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html INHA +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html CALCA +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html ACVR1B +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html ACVR2A +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html INHBA +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html ETS1 +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html SCIN +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html CARTPT +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html ACIN1 +PWCOMMONS REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html RUNX1 +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html TARBP2 +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html PTPRC +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html IL29 +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html BCL2 +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html IL28RA +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html BNIP3L +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html BNIP3 +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html RSAD2 +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html APOBEC3G +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html TLR7 +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html APOBEC3F +PWCOMMONS DEFENSE RESPONSE TO VIRUS http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_VIRUS.html TLR8 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html CLN3 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html CLCN3 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html SLC9A7 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html ATP1A3 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html ATP1A4 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html PPT1 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html ATP1A1 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html ATP1A2 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html ATP6V1B1 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html BCL2 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html CLN5 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html CLN6 +PWCOMMONS REGULATION OF PH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PH.html SLC9A1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html PPFIA2 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ACVRL1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html PPFIA1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ITGA11 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ITGA10 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html PTEN +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html COL17A1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html CDKN2A +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html SORBS1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html FXC1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html PKD2 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html PKD1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ANGPTL3 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html THBS3 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html RASA1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html PARVG +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html NF2 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html TAOK2 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html COL13A1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html NF1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ACTN1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ITGA2 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ITGA3 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ACTN2 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html CDK6 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ACTN3 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ECM2 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html THY1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html VWF +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html CDH13 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html LYVE1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html TSC1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ITGB1BP1 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html FBLN5 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ITGA7 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html TESK2 +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html SGCE +PWCOMMONS CELL SUBSTRATE ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_SUBSTRATE_ADHESION.html ADAM15 +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html IL4 +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html TM7SF4 +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html MMP9 +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html CSF1 +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html ZNF675 +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html IFI16 +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html INHA +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html MYH9 +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html IL31RA +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html CALCA +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html INHBA +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html CDC42 +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html CARTPT +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html ACIN1 +PWCOMMONS MYELOID LEUKOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/MYELOID_LEUKOCYTE_DIFFERENTIATION.html RUNX1 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html PAM +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html KIF25 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html LATS1 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html NCAPH +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html DDX11 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html INCENP +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html CDCA5 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html TOP2A +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html ZW10 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html PDS5B +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html CDC23 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html CENPF +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html NUSAP1 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html CENPE +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html ESPL1 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html NDC80 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html PMF1 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html SRPK1 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html MIS12 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html BRCA1 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html SMC4 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html CHMP1A +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html REC8 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html PSEN1 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html RIOK3 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html ZWINT +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html PSEN2 +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html ARL8A +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html ARL8B +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html SMC1A +PWCOMMONS CHROMOSOME SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_SEGREGATION.html NEK6 +PWCOMMONS REGULATION OF CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html UBE2N +PWCOMMONS REGULATION OF CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SET +PWCOMMONS REGULATION OF CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html PIF1 +PWCOMMONS REGULATION OF CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TLK1 +PWCOMMONS REGULATION OF CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TERF2IP +PWCOMMONS REGULATION OF CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TLK2 +PWCOMMONS REGULATION OF CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html ERCC4 +PWCOMMONS REGULATION OF CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html PPARGC1A +PWCOMMONS REGULATION OF CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html ERCC1 +PWCOMMONS REGULATION OF CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TERF2 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html FXYD1 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html FXYD3 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html TSPO +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html GLRA1 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC26A2 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html BEST1 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLCO1A2 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html NMUR1 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC22A6 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC4A2 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC4A1 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC22A7 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC22A8 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC34A1 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html CLIC1 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html VDAC2 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC34A3 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html VDAC1 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC34A2 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC17A7 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC26A4 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLCO1B3 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC26A3 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC17A5 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC4A11 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html CLIC3 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC17A1 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html CLIC5 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLCO1B1 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html SLC13A4 +PWCOMMONS ANION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ANION_TRANSPORT.html CLCN4 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html WASF3 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html PREX1 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html WASF1 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html ARF6 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html LATS1 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html CENPJ +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html NCK2 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html CDC42EP2 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html SPRR2C +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html GSN +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html ANG +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html TPPP +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html MAPT +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html NCK1 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html RAC1 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html TMSB4Y +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html MAPRE1 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html RASA1 +PWCOMMONS PROTEIN POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_POLYMERIZATION.html CDC42EP5 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CADM1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html ELF4 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html PREX1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html IL18 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html JAG2 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html TLR4 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html TNFSF13 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html TPD52 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html SPINK5 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html TGFB1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html SART1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CD47 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html NLRC3 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html EBI3 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CRTAM +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html SPACA3 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html SIT1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CD3D +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html PRG3 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CD3E +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html SLA2 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html IL27 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html INHA +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html NFAM1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html SOCS5 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html IL21 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html THY1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html INHBA +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html NCK2 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html SIRPG +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html LAT2 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html LAX1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CD40LG +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html NCK1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html LCK +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html IL12A +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html IL12B +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html NHEJ1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html ICOSLG +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html LST1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CX3CL1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html AZU1 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html INS +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html SFTPD +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CD2 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html ZAP70 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CD4 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CD24 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html HELLS +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CD7 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CD28 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html IL4 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html PTPRC +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html IL8 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html IL7 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CEBPG +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CD276 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html FOXP3 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CD1D +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html HDAC5 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html LAT +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html HDAC4 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html GLMN +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CD79A +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html CLEC7A +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html HDAC9 +PWCOMMONS LEUKOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_ACTIVATION.html IL2 +PWCOMMONS INTERLEUKIN 1 SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_1_SECRETION.html NLRC4 +PWCOMMONS INTERLEUKIN 1 SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_1_SECRETION.html NOD2 +PWCOMMONS INTERLEUKIN 1 SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_1_SECRETION.html CARD8 +PWCOMMONS INTERLEUKIN 1 SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_1_SECRETION.html APOA1 +PWCOMMONS INTERLEUKIN 1 SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_1_SECRETION.html PYCARD +PWCOMMONS INTERLEUKIN 1 SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_1_SECRETION.html NLRP12 +PWCOMMONS INTERLEUKIN 1 SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_1_SECRETION.html ABCA1 +PWCOMMONS INTERLEUKIN 1 SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_1_SECRETION.html NLRP3 +PWCOMMONS INTERLEUKIN 1 SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_1_SECRETION.html PYDC1 +PWCOMMONS INTERLEUKIN 1 SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_1_SECRETION.html NLRP2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PPARD +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html SNCAIP +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PGD +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ADH1B +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PTEN +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html SLC35A2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ACN9 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html TGFB2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html STARD3 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html APOF +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html MIOX +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html NPC1L1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html DHCR24 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html IRS2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PFKL +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html FBP1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ALDH3B2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PFKM +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html NR0B2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html FBP2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PMM2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ALDH3B1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html CHST1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html COQ3 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html COQ2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PGLS +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html G6PD +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html SULT1B1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html AKR1D1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html CLN8 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html UGP2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html CLN6 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ALDOA +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html CNBP +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html HDLBP +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ALDOC +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PFKFB1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ALDOB +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ADH5 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html UGDH +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ADH6 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html HK1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ADH7 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html TKTL1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html GALK1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html AKR1A1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html INS +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ADH4 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html DHCR7 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ALDH1A3 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ECD +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ETNK1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html SCARB1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html TSTA3 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html NSDHL +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html IL4 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html SOAT1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PDK1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html SOAT2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PDK2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html MBTPS2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html CYP46A1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html GMDS +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PDK3 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html SPHK1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html PDK4 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html GALT +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html FDPS +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html BRS3 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html SOD1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ABCG1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html GAPDHS +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html APOL2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html CEL +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ATF4 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html GCK +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html GFPT1 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html SLC25A10 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html GFPT2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html ALDH2 +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html IPPK +PWCOMMONS ALCOHOL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ALCOHOL_METABOLIC_PROCESS.html FPGT +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html MCHR1 +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html CCKAR +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html CCKBR +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html PMCH +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html PPYR1 +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html UBR3 +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html BRS3 +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html LEP +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html GCG +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html HCRTR2 +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html HCRTR1 +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html NPY +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html FYN +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html GALR3 +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html NMUR2 +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html NPW +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html GALR2 +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html MC4R +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html GHRL +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html CARTPT +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html PYY +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html GHSR +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html HTR2C +PWCOMMONS FEEDING BEHAVIOR http://www.broadinstitute.org/gsea/msigdb/cards/FEEDING_BEHAVIOR.html AGRP +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html YARS +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html DARS +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html FARS2 +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html SARS +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html AARS +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html SSB +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html KARS +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html SARS2 +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html ADAT1 +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html TRNT1 +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html WARS +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html METTL1 +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html RARS +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html POP1 +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html THG1L +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html MARS2 +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html POP4 +PWCOMMONS TRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRNA_METABOLIC_PROCESS.html NSUN2 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html HCCS +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html CYP24A1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html OXA1L +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html UQCRC1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html CYB5R2 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html ENOX2 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html PGD +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html DUOX2 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html DUOX1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html PDIA5 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html PPOX +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html AKR1C3 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html FXN +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html PLOD1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html GPX4 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html SPR +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html LOXL1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html AKR1C1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html WWOX +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html TXNL1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html ALDH5A1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html NCF4 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html GRHPR +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html CDO1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html DDO +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html POR +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html MTRR +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html DHRS2 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html DHRS4 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html NNT +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html SURF1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html AKR1D1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html ALDH9A1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html AOC3 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html ME3 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html CYP1B1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html GLUD2 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html ADH7 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html ALDH3A1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html SCO2 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html NOX4 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html NOX5 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html FDXR +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html CYP4F11 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html BLVRA +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html SLC25A12 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html SDHA +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html NDOR1 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html SLC25A13 +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html SDHC +GO ELECTRON TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ELECTRON_TRANSPORT_GO_0006118.html RETSAT +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html IL4 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html TRAF2 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html PTPRC +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html CRTAM +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html CADM1 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html IL27 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html SLA2 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html IL18 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html TNFSF13 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html MALT1 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html SOCS5 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html FOXP3 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html IL10 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html TGFB1 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html CD74 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html TLR8 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html MAP3K7 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html IL18BP +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html CD40LG +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html IL12A +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html IL12B +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html C2 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html TRAF6 +GO ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE_GO_0002460.html EBI3 +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html MAP3K7 +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html TRAF2 +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html IL18 +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html IL17F +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html SFTPD +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html GLMN +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html MALT1 +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html IRF4 +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html FOXP3 +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html TRAF6 +PWCOMMONS INTERLEUKIN 2 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_2_PRODUCTION.html CD28 +PWCOMMONS POSITIVE REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEFENSE_RESPONSE.html TNFRSF1A +PWCOMMONS POSITIVE REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEFENSE_RESPONSE.html CRTAM +PWCOMMONS POSITIVE REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEFENSE_RESPONSE.html CADM1 +PWCOMMONS POSITIVE REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEFENSE_RESPONSE.html EREG +PWCOMMONS POSITIVE REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEFENSE_RESPONSE.html IL12A +PWCOMMONS POSITIVE REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEFENSE_RESPONSE.html CX3CL1 +PWCOMMONS POSITIVE REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEFENSE_RESPONSE.html IL12B +PWCOMMONS POSITIVE REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEFENSE_RESPONSE.html IFNK +PWCOMMONS POSITIVE REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEFENSE_RESPONSE.html TLR8 +PWCOMMONS POSITIVE REGULATION OF DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEFENSE_RESPONSE.html CD1D +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html IL4 +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html HDAC5 +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html INHBA +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html HDAC4 +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html CEBPG +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html NFAM1 +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html CD79A +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html INHA +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html HDAC9 +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html TPD52 +PWCOMMONS B CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_DIFFERENTIATION.html NHEJ1 +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html GCLC +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html NF1 +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html EGLN2 +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html SELS +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html DDIT3 +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html THY1 +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html GLRX2 +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html CALCA +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html GPX1 +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html BCL2 +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html MC4R +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html CARTPT +PWCOMMONS REGULATION OF HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HOMEOSTATIC_PROCESS.html IFI6 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNC1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNC4 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNC3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html ATOX1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNK7 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNK6 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNK5 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html CHRNA7 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCND3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCN2B +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCN2A +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html STIM2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html STIM1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLC34A3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html ATP2C1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html RYR3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html RYR1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLC40A1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNMB3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html ORAI1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNMB4 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCN1B +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNA2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNA1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNA4 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNA3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html CCL8 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html HFE +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html CACNB3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNA6 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNA5 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html CACNB4 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNJ2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNJ3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNMB1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNJ1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNMB2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLC11A2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNS3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNS1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCN9A +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLC30A5 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLC31A2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLC31A1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html TRPC1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html TRPC4 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html CACNA2D1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html TRPC3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html TRPC5 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNB2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNK1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNK3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNK4 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html ATP7A +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNJ5 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNJ4 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLC4A11 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNJ6 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html NPY +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html ATP2A3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html ATP2A1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html CACNA1D +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html ATP7B +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNH1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNK17 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNJ15 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNAB3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNAB1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNJ10 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNJ12 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNIP2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNJ11 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNQ4 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNQ3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLN +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html NMUR1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html NMUR2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html TRPV5 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCN7A +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNQ2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html COX17 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNQ1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCN10A +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNG2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SGK1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html TRPM2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNA10 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCN11A +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNH2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNH3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNH4 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNE1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNE2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html CCS +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html CHP +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCNN1G +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCNN1A +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCN5A +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLC39A2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCNN1D +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLC8A1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html ATP1A4 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNV1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNN4 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html ABCC9 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLC17A3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNN1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLC17A4 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html PLN +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNN3 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SLC17A2 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html KCNF1 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCN4B +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html ABCC8 +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html SCN4A +PWCOMMONS METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/METAL_ION_TRANSPORT.html CSN2 +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html CALCA +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html CDH13 +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html AGGF1 +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html ANG +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html NF1 +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html TNFSF15 +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html GHRL +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html ATPIF1 +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html TNFSF12 +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html SCG2 +PWCOMMONS ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_PROLIFERATION.html DLG1 +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html GLRB +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html ECEL1 +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html GLRA1 +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html GLRA2 +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html GRP +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html HCRTR2 +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html HCRTR1 +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html GALR1 +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html NMUR1 +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html GALR3 +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html NMUR2 +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html QRFP +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html AGRP +PWCOMMONS NEUROPEPTIDE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NEUROPEPTIDE_SIGNALING_PATHWAY.html NPFF +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html LIMA1 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html WASF3 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html WASF1 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html PREX1 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html ARF6 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html EVL +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html LATS1 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html CXCL12 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html DSTN +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html NCK2 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html CDC42EP2 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html ANG +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html GSN +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html NCK1 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html CAPG +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html RAC1 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html GHRL +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html WIPF1 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html TMSB4Y +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html WASL +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html GHSR +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html RASA1 +PWCOMMONS ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html CDC42EP5 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html ADORA3 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html S100A8 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html AIF1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html S100A9 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html IL13 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CXCL11 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html ADORA1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html TGFB1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CXCL10 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html LTB4R +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CHRNA7 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html IL1A +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html F11R +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html VPS45 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html RELA +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CD40 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CDO1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html IL20 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html TNFAIP6 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCR7 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCR5 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CD40LG +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCR4 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCR3 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCR2 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html RIPK2 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html NFE2L1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html PLA2G2E +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html PLA2G2D +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html TPST1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html C3AR1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCL3 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html ADORA2A +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html AFAP1L2 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CX3CL1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCL5 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCL4 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html AHSG +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html IL17C +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html IFNA2 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html RAC1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html BLNK +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html AGER +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html S100A12 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html HDAC5 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html APOL3 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html HDAC4 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html PARP4 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html GHSR +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html HDAC9 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html ABCF1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html ELF3 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html TACR1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CRP +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html PRDX5 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html NFKB1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CD97 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CFHR1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html FOS +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html NOD1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CXCR4 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html AOAH +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCL3L3 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html IL1RAP +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html MGLL +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html LBP +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html XCR1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html NFX1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html IRAK2 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html KNG1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html APCS +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html IL18RAP +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html LYZ +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CHST2 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html NLRP3 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html SIGIRR +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html ALOX15 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html KLRG1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html PLA2G7 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html GHRL +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html PTAFR +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html AOC3 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CXCL1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html MBL2 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html NMI +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCR1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html C5 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CXCL2 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CXCL9 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CXCL6 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html GPR68 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCL26 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCL24 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html TNFRSF1A +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCL22 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html HRH1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCL23 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCL20 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html MEFV +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html IL10RB +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCL21 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html ALOX5AP +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html KRT1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html NFATC4 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html C2 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html PTX3 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html NFATC3 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html SCG2 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html NOX4 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html LY75 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html IL5 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CEBPB +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html IL8 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html NFRKB +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html IL9 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html ANXA1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CYP4F11 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCL11 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html ORM1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CYBB +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html CCL13 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html AOX1 +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html SELE +PWCOMMONS INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INFLAMMATORY_RESPONSE.html ORM2 +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html MDFI +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html NFKBIL2 +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html CRYAA +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html CRYAB +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html NFKBIE +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html NF1 +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html FAF1 +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html NLRP3 +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html MXI1 +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html NFKBIL1 +PWCOMMONS NEGATIVE REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_INTRACELLULAR_TRANSPORT.html BARD1 +PWCOMMONS PROTEIN EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_EXPORT_FROM_NUCLEUS.html NUP214 +PWCOMMONS PROTEIN EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_EXPORT_FROM_NUCLEUS.html XPO6 +PWCOMMONS PROTEIN EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_EXPORT_FROM_NUCLEUS.html GSK3B +PWCOMMONS PROTEIN EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_EXPORT_FROM_NUCLEUS.html DUSP16 +PWCOMMONS PROTEIN EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_EXPORT_FROM_NUCLEUS.html EIF5A +PWCOMMONS PROTEIN EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_EXPORT_FROM_NUCLEUS.html NUPL2 +PWCOMMONS PROTEIN EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_EXPORT_FROM_NUCLEUS.html CALR +PWCOMMONS PROTEIN EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_EXPORT_FROM_NUCLEUS.html XPO7 +PWCOMMONS PROTEIN EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_EXPORT_FROM_NUCLEUS.html UHMK1 +PWCOMMONS PROTEIN EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_EXPORT_FROM_NUCLEUS.html BARD1 +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html COG3 +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html GTPBP4 +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html STX12 +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html APOA1 +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html A1CF +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html COG7 +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html HPS4 +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html TBRG1 +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html PEX6 +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html MDM4 +PWCOMMONS PROTEIN STABILIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_STABILIZATION.html PPARGC1A +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html PTPRC +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html MBL2 +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html BCAR1 +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html SLA2 +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html MALT1 +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html NFAM1 +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html TRAT1 +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html THY1 +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html CFHR1 +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html UBE2N +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html LAT2 +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html FYN +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html IKBKG +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html KRT1 +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html C2 +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html CD79A +PWCOMMONS ACTIVATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_IMMUNE_RESPONSE.html TRAF6 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF2C1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html CRNKL1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF5 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html DICER1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SNRPD1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF5A +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SNRPD2 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF2A +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SFRS6 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SFRS5 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html DKC1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html RPS3A +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SFRS8 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF1AX +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SFRS9 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html DDX20 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF2B2 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF2B3 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF2B4 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF2B5 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SRPK2 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html PRPF31 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EXOSC7 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EXOSC2 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SF1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF2S3 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EXOSC3 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF1B +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html RRP9 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SFRS1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html BOLL +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF4G2 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF4G3 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html RPS14 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF4A2 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SLU7 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html HSPB1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SIP1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF2AK3 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF2AK4 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SDAD1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html MTIF2 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html MTIF3 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html PAIP2B +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF3C +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF3D +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF3A +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF3B +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF3G +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF3H +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF3E +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html NPM1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF3F +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html USP39 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF3I +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html DAZL +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html GEMIN8 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF3J +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SFRS2IP +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html GEMIN6 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html GEMIN7 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html GEMIN4 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html GEMIN5 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html DAZ1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html PAIP2 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html PAIP1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SF3A2 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SF3A1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF2B1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html FBL +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html SF3A3 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF4B +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html DIS3 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html ATXN2 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html NOLC1 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html EIF4H +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html POP4 +PWCOMMONS RIBONUCLEOPROTEIN COMPLEX BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOPROTEIN_COMPLEX_BIOGENESIS_AND_ASSEMBLY.html TXNL4A +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CASR +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html GNA15 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html ATOX1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html F2RL1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CD52 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CXCL12 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html AGTR1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html APP +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html GALR2 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html RGN +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CHRNA7 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html FTL +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html C5AR1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html THY1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCR9 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCR8 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html PLCE1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCR7 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCR6 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCR5 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCR4 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html ATP2C1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCR3 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCR2 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html STC1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html SLC40A1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html GLP1R +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCL1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html SRI +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html C3AR1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CLCN3 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html DRD1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCL3 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCL2 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CYSLTR1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html HFE +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html PPT1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html BDKRB1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html BDKRB2 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CALR +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCL5 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCL7 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html FTH1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html P2RY4 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html SLC30A5 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html ATP7A +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CD55 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html GCM2 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html SLC4A11 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CXCL13 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html AVPR1B +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html AVPR1A +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html XCL1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CACNA1C +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CACNA1A +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html ATP7B +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html MCHR1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCKAR +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CXCR3 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html EDNRA +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html FXN +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html SAA1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CXCR4 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html NMUR2 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html TRPV4 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html XCR1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html MYC +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html KNG1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CLN3 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCKBR +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html PROK2 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html LCK +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html GHRL +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CLN5 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CLN6 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CLDN16 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html TFR2 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCR1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html TAC1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CALCA +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CALCB +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCL23 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html BCL2 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CD24 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html PTPRC +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html OPRL1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html ATP1A3 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCL19 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html MTL5 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html ATP1A4 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html ATP1A1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html ATP1A2 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html SOD1 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCL15 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html TMPRSS3 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCL11 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCL13 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CCL14 +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html HPX +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html MT2A +PWCOMMONS CELLULAR CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CATION_HOMEOSTASIS.html CP +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html MTERF +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html UPF1 +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html TNP1 +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html ETF1 +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html HMGA1 +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html TTF2 +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html IRAK3 +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html SET +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html MAZ +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html SMARCE1 +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html MTRF1 +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html HRSP12 +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html SUPT16H +PWCOMMONS PROTEIN COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_DISASSEMBLY.html NRG1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html BID +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TSPO +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html MTX2 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TIMM17A +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TIMM17B +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html BNIP3 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html MPV17 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TIMM50 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html SFN +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html PMAIP1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html MIPEP +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html BCL2L1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html STARD3 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html NDUFS7 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html FIS1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TFAM +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html BAK1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html GPX1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html NDUFS5 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TYMP +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html NDUFS4 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html MRPL12 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html CDKN2A +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html BCL2 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html NDUFS8 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TFB2M +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html SLC25A1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html COX18 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TOMM34 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html MTERF +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html HSP90AA1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html MSTO1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html DNM1L +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html OPA1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html SLC25A4 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TAZ +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TP53 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TIMM23 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TIMM44 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html MFN2 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TRNT1 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html POLRMT +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html BBC3 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html BAX +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html C3ORF31 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html TOMM22 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html SLC25A15 +PWCOMMONS MITOCHONDRION ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRION_ORGANIZATION_AND_BIOGENESIS.html IFI6 +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html EGR3 +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html ARNTL +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html TIMELESS +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html PTGDS +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html HTR7 +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html HEBP1 +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html PER2 +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html AANAT +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html CARTPT +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html PER1 +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html CRY1 +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html CLOCK +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html OPN4 +PWCOMMONS CIRCADIAN RHYTHM http://www.broadinstitute.org/gsea/msigdb/cards/CIRCADIAN_RHYTHM.html MTNR1A +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html NCBP2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html NCBP1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RNMT +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html PRPF4B +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html LSM6 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RBM3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SNRPD3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SNRPD1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RBM5 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RP9 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RBM6 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html INTS1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SNRPD2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SYNCRIP +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html INTS2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html ZNF638 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html INTS3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SMNDC1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SETX +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SFRS6 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html INTS9 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html NONO +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SFRS7 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html INTS8 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DDX17 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SFRS4 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SFRS5 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DHX38 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DDX23 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html INTS5 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html INTS4 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html INTS7 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SFRS8 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SFRS9 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html INTS6 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html LSM5 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html U2AF1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RBMS2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SRRM1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html LSM4 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html LSM3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DDX20 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html LSM1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RBMS1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SNRPA1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SNRPN +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html EFTUD2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html PTBP1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html AARS +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RRP9 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SFRS1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html PPARGC1A +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html HNRNPR +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html BICD1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SFRS2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DDX39 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RBPMS +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RPS14 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SNRPB +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SLU7 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RBMY2BP +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SNRPC +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SNRPF +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SIP1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html BAT1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SNRPG +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html CPSF3L +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html FARS2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html PABPC4 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SNRPB2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html IGF2BP3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DUSP11 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html PPAN +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html AGGF1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html METTL1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html CDC40 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html HNRNPC +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html PABPC1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SFRS11 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html NOVA1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SPOP +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DHX8 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html CSTF3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html CSTF2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html INTS12 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SNW1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SSB +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RNPS1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html INTS10 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html HNRNPA0 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html TRNT1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RBMY1A1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html PPIG +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html NOLC1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html POP4 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DDX54 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html CSTF1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html CRNKL1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html CWC15 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html ZNF346 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html RNGTT +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DGCR8 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DKC1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DBR1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html KHDRBS1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html PRPF31 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SRPK2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html NOL3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html EXOSC7 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SARS +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SF1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html EXOSC2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html EXOSC3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html PRPF3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SRPK1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html HNRPDL +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html KHSRP +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html CPSF6 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html CPSF3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html CPSF1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html TRA2A +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html NUFIP1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html IVNS1ABP +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html KIN +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SF3B4 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SF3B3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SF3B2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html ADAT1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html PRPF8 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html NUDT21 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html USP39 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DHX15 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html THG1L +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DHX16 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html GEMIN8 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SFRS2IP +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html GEMIN6 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html GEMIN7 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html NSUN2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html GEMIN4 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html GEMIN5 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html BCAS2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html UPF1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html GRSF1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html ELAVL4 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SF3A2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html PRPF18 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SF3A1 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html FBL +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SLBP +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SF3A3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html DIS3 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html SFPQ +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html ZRANB2 +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html PHF5A +PWCOMMONS RNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_PROCESSING.html TXNL4A +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html IL4 +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html PTPRC +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html IL7 +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html CEBPG +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html SLA2 +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html TNFSF13 +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html NFAM1 +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html INHA +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html TPD52 +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html TGFB1 +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html HDAC5 +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html HDAC4 +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html INHBA +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html LAT2 +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html CD40LG +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html LAX1 +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html CD79A +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html HDAC9 +PWCOMMONS B CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/B_CELL_ACTIVATION.html NHEJ1 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html ACHE +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html PCDHB14 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html CACNB2 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html PCDHB13 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html PCDHB11 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html PCDHB10 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html SPINK5 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html NRCAM +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html PCDHB16 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html ACAN +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html POU4F1 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html AGRN +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html CHRNA1 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html B4GALT7 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html PCDHB9 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html COL4A4 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html KLK8 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html TNXB +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html PCDHB5 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html PCDHB6 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html PCDHB3 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html PCDHB4 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html NF1 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html NLGN1 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html NRD1 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html PCDHB2 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html COL5A2 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html MYH11 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html GHRL +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html LAMC1 +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html UBB +PWCOMMONS EXTRACELLULAR STRUCTURE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EXTRACELLULAR_STRUCTURE_ORGANIZATION_AND_BIOGENESIS.html MUC5AC +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html CALCA +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html BCL10 +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html APOA2 +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html NOD1 +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html PRG3 +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html IL17F +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html BCL3 +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html TLR4 +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html AFAP1L2 +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html TLR7 +PWCOMMONS INTERLEUKIN 8 PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERLEUKIN_8_PRODUCTION.html TLR8 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html FOXL2 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html DFFA +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html AIFM1 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html DFFB +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html CYCS +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html CECR2 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html CIDEA +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html BNIP3 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html TPD52L1 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html UBE2V2 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html PPT1 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html SOD1 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html ISG20 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html UBE2N +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html ERCC5 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html CDKN2A +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html BAX +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html ERCC3 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html NTHL1 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html ERCC4 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html XRN2 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html ERCC1 +PWCOMMONS DNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_CATABOLIC_PROCESS.html ERCC2 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html TNF +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html PDIA3 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html NFKBIE +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html TNFSF14 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html CDH1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html MXI1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html GLI3 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html TGFB1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html AKT1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html CEP57 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html ZFYVE9 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html BCL3 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html BCL6 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html NCKIPSD +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html RANBP2 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html TPR +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html TNPO1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html KPNB1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html FYB +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html MDFI +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html MCM3AP +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html NF1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html SMAD3 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html PPP1R10 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html NLRP3 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html FLNA +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html NFKBIL1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html NFKBIL2 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html CBLB +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html PPIH +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html RPAIN +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html TRPS1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html NUP205 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html F2 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html PTTG1IP +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html NLRP12 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html KPNA6 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html KPNA5 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html KPNA4 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html FAF1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html KPNA3 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html TRIP6 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html KPNA2 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html KPNA1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html RERE +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS.html F2R +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html SEPT5 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html KCNMB4 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html RAB3A +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html SYT1 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html SNCAIP +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html PRG3 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html BAIAP3 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html SLC6A4 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html NLGN1 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html SNAPIN +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html HPRT1 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html GDNF +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html RIMS1 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html GCH1 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html TGFB2 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html GRM4 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html SLC1A3 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html HRH3 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html COLQ +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html SYN3 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html CARTPT +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html SLC5A7 +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html GCHFR +PWCOMMONS REGULATION OF NEUROTRANSMITTER LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROTRANSMITTER_LEVELS.html ALDH9A1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html PPARG +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html SPI1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html ZNF675 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html FOXO3 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html FOXO4 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html SPINK5 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html SART1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html SHH +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html TGFB2 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html ACVR1B +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html ADIG +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html ACIN1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html BOC +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html USH2A +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html TWIST2 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html NANOG +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html IL27 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html LDB1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html CDK6 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html INHA +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html SOCS5 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html GPR98 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html IL20 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html ACVR2A +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html INHBA +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html NME2 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html TCFL5 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html EREG +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html BTG1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html SCIN +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html CARTPT +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html CNTN4 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html IQCB1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html MAP4K1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html PF4 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html ZBTB16 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html CALCA +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html NPHP3 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html ZAP70 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html VWC2 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html RUNX1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html IL4 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html BMP4 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html TBX3 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html DTX1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html IL7 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html MAFB +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html TAF8 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html TBX5 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html NF1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html NLGN1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html NOTCH2 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html YWHAG +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html NOTCH1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html YWHAH +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html ETS1 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html NOTCH4 +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html BMPR1B +PWCOMMONS REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_DIFFERENTIATION.html IGFBP3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OCLM +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RP1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html WFS1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PITPNA +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RP2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RPE65 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RCVRN +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CNGB1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html NR2E3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CNGB3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html KIFC3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CRYGA +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html ATP2B2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CRYGD +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TIMM9 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TGFBI +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RGR +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CDH23 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html COCH +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OPA3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CLRN1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OPA1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html C5AR1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html MYO6 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CRYAA +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html MYO3A +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html KRT12 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html SIX3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html UBR3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html VAX2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CNGA3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html NTSR2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OR1D2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html SIX6 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OR1D5 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TIMM8B +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CNGA1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html SAG +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PITPNM1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TACSTD2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html IQCB1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RTP3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RTP4 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CYP1B1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html DIAPH1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html ADORA2A +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RBP3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OPN1SW +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html ATP6V1B1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GPR143 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OTOR +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html ABCA4 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html MYO9A +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RABGGTB +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RABGGTA +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PDE6A +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PDE6B +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html NPHP3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PDE6C +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PDE6D +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PRR4 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html MYO15A +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html IMPG1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html IMPG2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RLBP1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GNAT1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TECTA +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html COL18A1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html UNC119 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html AIPL1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GUCY2F +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html MYO1A +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TRPC3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html FSCN2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html EFEMP1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OMP +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PCDH15 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PDE6H +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CRYZ +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PDE6G +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GUCY2D +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html SFRP5 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TULP2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TULP1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CACNA1F +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html WDR1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CRYM +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RHO +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GRK1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OPRM1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GJA8 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CYB5R4 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OR52A1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TAS2R4 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TAS2R5 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TRPV2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html USH1G +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RRH +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html MYO7A +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html POU6F2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TAS2R3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PAX6 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TAS1R3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PAX3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PAX2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TAS1R1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TAS1R2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CRX +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GJA3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CRYBB1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html DFNB31 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RDH8 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TYR +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html KCNQ4 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html POU4F3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html COL11A1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html KCNQ1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CRYBB3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html USH2A +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html DNAJC19 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CRYBB2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html SCN10A +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RS1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RPGR +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RAX +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CCKBR +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html ZNF354A +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CDS1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GPR98 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html SLIT2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RDH5 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html EML2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html EYA3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html SLC26A4 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html EYA4 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PROK2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TAS2R16 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html ALDH7A1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html DHRS3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html EYA1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TAS2R14 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html SLC26A5 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GRM8 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html NRL +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OTOF +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html USH1C +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GNAS +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html AOC2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CRYBA1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OAT +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CRYBA4 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html ROM1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html ABLIM1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html SORD +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OPN1LW +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html LUM +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html NDP +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OPRK1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html NDUFB9 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TIMM10 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CABP4 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TIMM13 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html BEST1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html ARR3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html POU3F4 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html KCNE1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CHM +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TAS2R43 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GUCA1A +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html COL4A3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html DFNA5 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GUCA1C +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OPRL1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OPN1MW +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GJB6 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RGS16 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html SOD1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html VSX1 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PRPH2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html GJB2 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RDH12 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html RDH10 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html ACCN3 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PNOC +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html CHML +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html ATXN7 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html PDC +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html TBL1X +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html ATP6V0A4 +PWCOMMONS SENSORY PERCEPTION http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION.html OPN4 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html MDFI +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html RSF1 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html CEBPG +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html EGLN1 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html NLRP3 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html PYDC1 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html FLNA +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html SIGIRR +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html SUMO1 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html CDKN2A +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html ID2 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html ID1 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html NARFL +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html PEX14 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html ID3 +PWCOMMONS NEGATIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_BINDING.html COMMD7 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CADM1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html FST +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ADORA1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SART1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BTK +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CUL3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CUL2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BAK1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CUL5 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MAP3K5 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html APOE +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CHRNA7 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html FAS +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CUL1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CRTAM +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BCL2L11 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CD38 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MAPK1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NME2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NME3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SSTR3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SERPINF1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IFNB1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ALOX15B +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NPTN +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html UNC13B +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html LALBA +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SIVA1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDK5R1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html STK17B +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CD70 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CHEK2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html STK17A +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PLAGL1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IFNA2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDC42EP2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDC42EP1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html AGGF1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ZAP70 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DIABLO +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html C16ORF5 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDC42EP4 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDC42EP5 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BMP4 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TP53BP2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SPHK1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CIDEB +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SMAD3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CIDEA +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TPD52L1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CIDEC +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NOTCH2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html EI24 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html RNF7 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ETS1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HTATIP2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html FASTK +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PPARG +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BNIP3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TP63 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PTEN +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DAXX +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MAPT +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TOP2A +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DEDD2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html AIFM3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html AIFM2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html AIFM1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TP53 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html LGALS12 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NDUFA13 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SLIT2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html JMY +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html AMIGO1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html INHBA +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BNIP1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IL12A +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MAP3K10 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IL12B +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BID +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PML +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SFN +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PPP2CA +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PCSK9 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BCL3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html VWC2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BCL6 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CD27 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IL7 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TBX5 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TP73 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PLG +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html EEF1E1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BNIP3L +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html AMOT +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BIK +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BARD1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ZAK +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TLR2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html EIF5A +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNFSF14 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html FOXO3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNFSF12 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PMAIP1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CRADD +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TGFB2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SMNDC1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NLRC4 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDKN2A +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CASP8AP2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDKN2C +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ROBO1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ADIG +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TIA1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ZNF443 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ROBO2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ACIN1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DAP +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MX1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NUDT2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HRK +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html FADD +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SOCS5 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html STK4 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html STK3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IL20 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TIAL1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html RIPK3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ADAMTSL4 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html RRAGA +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PRUNE2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MTCH1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DYRK2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ANGPTL3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html RUNX1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html RUNX3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ANGPTL4 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TRAF3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CFLAR +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HTT +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BRCA1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TRADD +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDKN1A +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNFSF10 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDKN1B +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BBC3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IKBKG +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PDCD5 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ABL1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SST +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PDCD6 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PDCD7 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DAP3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DEDD +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HPS4 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html FASLG +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CASP6 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDC42 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ACVR1B +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CASP3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CASP4 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BOK +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html RPS3A +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PCBP4 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html RHOB +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MKL2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NDUFS3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BOC +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html LTA +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PRKCA +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PPP2R1A +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html INHA +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IFI16 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PRKCE +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DAPK2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDK5 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DAPK3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NCR1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DAPK1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ACVR2A +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNFRSF9 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BTG1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SCIN +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html LCK +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ERN1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html GHRL +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ERN2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DCC +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DPF2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BCLAF1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNFRSF25 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNFRSF8 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TRAIP +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DPF1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CALCA +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html UTP11L +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PTH +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CD2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PYCARD +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ERCC3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ERCC2 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html COL4A3 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PTPRC +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html KL +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CEBPG +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NF1 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SAP30BP +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNFSF8 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CASP10 +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CUL4A +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BAX +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PPP1R13B +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BMPR1B +PWCOMMONS POSITIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IGFBP3 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF2C1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html CRNKL1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html DICER1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF5 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SNRPD1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF5A +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SNRPD2 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF2A +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SFRS6 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SFRS5 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html RPS3A +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SFRS8 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF1AX +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SFRS9 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html DDX20 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF2B2 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF2B3 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF2B4 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF2B5 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SRPK2 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html PRPF31 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SF1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF2S3 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF1B +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SFRS1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html BOLL +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF4G2 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF4G3 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF4A2 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html RPS14 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html HSPB1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SLU7 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SIP1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF2AK3 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF2AK4 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html MTIF2 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html MTIF3 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html PAIP2B +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF3C +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF3D +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF3A +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF3B +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF3G +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF3H +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF3E +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html USP39 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html NPM1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF3F +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html DAZL +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF3I +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SFRS2IP +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF3J +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html DAZ1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html PAIP2 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html PAIP1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SF3A2 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF2B1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SF3A1 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html SF3A3 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF4B +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html ATXN2 +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html EIF4H +PWCOMMONS PROTEIN RNA COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_RNA_COMPLEX_ASSEMBLY.html TXNL4A +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html ARSB +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html CLN3 +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html NAGPA +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html NDP +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html MYO7A +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html HPS4 +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html GAA +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html HPS1 +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html PPT1 +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html ABCA1 +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html CLN5 +PWCOMMONS VACUOLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLE_ORGANIZATION_AND_BIOGENESIS.html CLN6 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_SECRETION.html CRTAM +PWCOMMONS POSITIVE REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_SECRETION.html NOD2 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_SECRETION.html CARD8 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_SECRETION.html CADM1 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_SECRETION.html INS +PWCOMMONS POSITIVE REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_SECRETION.html PYCARD +PWCOMMONS POSITIVE REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_SECRETION.html GLMN +PWCOMMONS POSITIVE REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_SECRETION.html PYDC1 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_SECRETION.html NLRP3 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_SECRETION.html NLRP2 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html SNAP29 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html SEPT5 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html STX5 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html SHROOM2 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html AP1M2 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html NLGN1 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html CDC23 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html NUSAP1 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html CENPF +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html BIRC5 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html CENPE +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html TMED10 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html LRMP +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html PAFAH1B1 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html SNAP23 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html YKT6 +PWCOMMONS ESTABLISHMENT OF ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_ORGANELLE_LOCALIZATION.html CDCA5 +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html ARSB +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html USE1 +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html M6PR +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html ADRB2 +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html NAGPA +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html NPC1 +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html ATG4D +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html ATG4C +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html AP3M1 +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html ZFYVE16 +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html ATG4A +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html LYST +PWCOMMONS VACUOLAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VACUOLAR_TRANSPORT.html RHOB +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN8 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN16 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN7 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN17 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN18 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN9 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN19 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN4 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN3 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN6 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN5 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN22 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN10 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN11 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN20 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CX3CL1 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN12 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN14 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN23 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN15 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN1 +PWCOMMONS CALCIUM INDEPENDENT CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CALCIUM_INDEPENDENT_CELL_CELL_ADHESION.html CLDN2 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html F2RL3 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html CCKAR +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html PARD3 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html GNA15 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html DRD1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html DRD2 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html EDN2 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html TACR1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html AZU1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html CALCA +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html EDNRA +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html EDNRB +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html AGTR1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html HRH1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html P2RY6 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html P2RY4 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html LTB4R +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html ANG +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html NMUR1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html NMUR2 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html P2RY2 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html PLCH1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html P2RY1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html MC3R +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html PPAP2A +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html PLCB2 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html EGFR +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html C5AR1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html CCKBR +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html PICK1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html HOMER1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html GRM5 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html PLCE1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html P2RY11 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html GNAQ +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html CHRM2 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html CHRM1 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html AVPR1B +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html AVPR1A +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html NMBR +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html HTR2B +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html GAP43 +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html PTAFR +PWCOMMONS PHOSPHOINOSITIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_MEDIATED_SIGNALING.html PRKD3 +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html RTP3 +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html RTP4 +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html ATG4D +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html ATG4C +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html ATG4B +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html ATG4A +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html ICMT +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html TRAM1 +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html SSR2 +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html SEC63 +PWCOMMONS PROTEIN TARGETING TO MEMBRANE http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TARGETING_TO_MEMBRANE.html SSR1 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html NCBP2 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html NUP160 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html XPO6 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html EIF5A +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html CALR +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html UHMK1 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html NUP214 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html RAE1 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html DDX19B +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html DDX25 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html DUSP16 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html KHDRBS1 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html NUP133 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html UPF2 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html UPF1 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html SMG6 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html NUDT4 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html SMG5 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html NXF5 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html SMG7 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html SMG1 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html MALT1 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html NUPL2 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html ATXN1 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html DDX39 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html TSC1 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html GSK3B +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html NUP107 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html XPO7 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html BARD1 +PWCOMMONS NUCLEAR EXPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEAR_EXPORT.html BAT1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html LIMA1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html KATNB1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html ARF6 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html TERF2IP +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html LATS1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html CXCL12 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html SORBS3 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html CDC42EP2 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html SET +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html CEP250 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html GSN +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html MAPT +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html CLASP1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html TLK1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html TLK2 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html CLASP2 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html ERCC4 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html ARHGEF10L +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html RASA1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html TERF2 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html ERCC1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html CDC42EP5 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html APC +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html ARHGEF2 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html CCDC88A +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html NF2 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html PIF1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html CRIPAK +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html MID1IP1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html NEXN +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html PPARGC1A +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html NEBL +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html UBE2N +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html NCK2 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html TSC1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html NCK1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html CAPG +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html MAPRE1 +PWCOMMONS REGULATION OF ORGANELLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ORGANELLE_ORGANIZATION_AND_BIOGENESIS.html TMSB4Y +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html BCL10 +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html ELF3 +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html LMO4 +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html VANGL2 +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html EHF +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html UPK3A +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html CELSR1 +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html GLI2 +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html SPINK5 +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html TIMELESS +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html UPK1A +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html UPK1B +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html KRT3 +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html KRT4 +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html UPK2 +PWCOMMONS MORPHOGENESIS OF AN EPITHELIUM http://www.broadinstitute.org/gsea/msigdb/cards/MORPHOGENESIS_OF_AN_EPITHELIUM.html DMBT1 +PWCOMMONS NEUTRAL AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEUTRAL_AMINO_ACID_TRANSPORT.html SLC1A4 +PWCOMMONS NEUTRAL AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEUTRAL_AMINO_ACID_TRANSPORT.html SLC1A5 +PWCOMMONS NEUTRAL AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEUTRAL_AMINO_ACID_TRANSPORT.html SLC38A3 +PWCOMMONS NEUTRAL AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEUTRAL_AMINO_ACID_TRANSPORT.html SLC6A7 +PWCOMMONS NEUTRAL AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEUTRAL_AMINO_ACID_TRANSPORT.html SERINC1 +PWCOMMONS NEUTRAL AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEUTRAL_AMINO_ACID_TRANSPORT.html SLC7A8 +PWCOMMONS NEUTRAL AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEUTRAL_AMINO_ACID_TRANSPORT.html SLC7A9 +PWCOMMONS NEUTRAL AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEUTRAL_AMINO_ACID_TRANSPORT.html SLC7A10 +PWCOMMONS NEUTRAL AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEUTRAL_AMINO_ACID_TRANSPORT.html SLC43A1 +PWCOMMONS NEUTRAL AMINO ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NEUTRAL_AMINO_ACID_TRANSPORT.html SLC7A5 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html BCKDK +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html GLUD1 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html AMT +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html ASL +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html GLDC +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html FAH +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html GOT2 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html MCCC2 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html ARG1 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html GAD2 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html ASPA +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html GOT1 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html GCSH +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html ASRGL1 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html ALDH4A1 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html GSTZ1 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html DDAH2 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html GAD1 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html DDAH1 +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html HPD +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html BCKDHA +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html BCKDHB +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html HGD +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html DDO +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html COLQ +PWCOMMONS AMINE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_CATABOLIC_PROCESS.html DHPS +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html CLN3 +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html CLCN3 +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html BCL2 +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html ATP1A3 +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html ATP1A4 +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html ATP1A1 +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html PPT1 +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html ATP1A2 +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html CLN5 +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html TMPRSS3 +PWCOMMONS CELLULAR MONOVALENT INORGANIC CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MONOVALENT_INORGANIC_CATION_HOMEOSTASIS.html CLN6 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html LALBA +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html S100A7 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html PGLYRP1 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html TLR3 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html DEFB127 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html TLR6 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html IL10 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html CHIT1 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html CFP +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html AZU1 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html SLC11A1 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html NLRC4 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html NOD2 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html NOD1 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html PGLYRP4 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html PGLYRP2 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html PGLYRP3 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html DEFB118 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html CD24 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html SPN +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html BCL10 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html SPACA3 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html CAMP +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html DEFB103A +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html STAB2 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html CD1D +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html WFDC12 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html STAB1 +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html IL12A +PWCOMMONS RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BACTERIUM.html DMBT1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CADM1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html AQP9 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL6ST +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html MAP3K7 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html LTB4R +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html SEMA7A +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IFNK +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IKBKAP +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html GTPBP1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CRTAM +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html C5AR1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html NCF4 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html COLEC12 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html GEM +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html THY1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CRHR1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCR9 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html LILRB2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCR8 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCR6 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCR5 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCR4 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD40LG +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCR2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html MADCAM1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL1R2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CNIH +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html HLA-DRB3 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html FCGRT +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD74 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL17A +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL17B +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html ZAP70 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html BLNK +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html ST6GAL1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TCF7 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html RGS1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html ETS1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TCF12 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL27RA +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html BCAR1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html LY86 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL28RA +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html BNIP3 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html ZEB1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html SPINK5 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CFHR1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html HAMP +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL4R +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CEACAM8 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html SEMA3C +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html DPP8 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html FCGR3A +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html FCGR3B +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html DPP4 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CMKLR1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html GZMA +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL6R +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html NFAM1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD164 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html WAS +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL18BP +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html EREG +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html LAX1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL12A +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL12B +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html SEMA4D +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html OPRK1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCR1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html GPR65 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL7R +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL27 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL26 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL24 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL25 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL22 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL23 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL20 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL10RB +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL21 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html XBP1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html FCGR1A +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html BCL2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html DEFB118 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD22 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCBP2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html C2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD28 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html FYB +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html LY75 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL4 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL6 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL7 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CTLA4 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL19 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TRIM22 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL18 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD1D +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html PRELID1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html FCGR2B +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html FYN +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html BNIP3L +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html ATP6V0A2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL16 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL18 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html APOBEC3G +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html VTN +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TNFSF13 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL15 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html VIPR1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TLR7 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CXCL12 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html APOBEC3F +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TLR8 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TGFB1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL10 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TAPBP +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TGFB2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html APOA4 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html APOA2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html APOA1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html GPR44 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html MS4A1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html MS4A2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html ODZ1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html EBI3 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CIITA +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html BCL10 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html POU2AF1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html BST2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL29 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html BST1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL27 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TNFRSF14 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html YTHDF2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html SOCS5 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TRAT1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IGSF6 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html LAT2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CST7 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html MNX1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html KIR2DL1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html DEFA1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html KIR2DL3 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html GBP2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TNFAIP1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TRAF2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IFITM2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IFITM3 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html MAP4K2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL32 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html DEFB127 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CX3CL1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL5 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html PYDC1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCL4 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html FTH1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html PRKRA +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CNR2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html SFTPD +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TRAF6 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html DEFB1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html ARHGDIB +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html MALT1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html FOXP3 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html AIM2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html LAT +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html FCAR +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CXCL13 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IKBKG +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD274 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html RFX1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD79B +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD79A +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IFI6 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html PAX5 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html SKAP1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html PDCD1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html MBP +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD97 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD96 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CXCR4 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html LTF +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html NFIL3 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html APLN +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CHUK +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CCRL1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IK +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html PTGER4 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html SLA2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CHST4 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CTSS +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html NCR1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CTSW +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html UBE2N +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TARBP2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD83 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD86 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html C1QBP +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CTSC +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TREM1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TREM2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html PTAFR +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CTSG +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html LCP2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html PSMB10 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html MBL2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html RAG1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html RSAD2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html TNFRSF4 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html HRH2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html FCN2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html POU2F2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html FCN1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html KRT1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL2RG +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html MR1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CD7 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html PTPRC +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html SECTM1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IL2RA +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CEBPB +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html DEFB103A +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html CEBPG +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html GPI +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html SP2 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html IRF8 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html ANXA11 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html OPRD1 +PWCOMMONS IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/IMMUNE_RESPONSE.html DMBT1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html TM7SF4 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html MMP9 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html SPI1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html JAG2 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html ZNF675 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html FOXO3 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html TPD52 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html SPINK5 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html SART1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html TGFB1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html IL10 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html IL31RA +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html TGFB2 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html CDC42 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html ACVR1B +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html ALAS2 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html ACIN1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html MYST1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html PRL +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html MYST3 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html KIRREL3 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html LYN +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html CD3D +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html LDB1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html IL27 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html TAZ +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html CDK6 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html IFI16 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html INHA +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html NFAM1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html SOCS5 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html MYH9 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html INHBA +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html ACVR2A +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html RPS19 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html LCK +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html SCIN +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html NCOA6 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html LRMP +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html CARTPT +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html IL12B +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html NHEJ1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html RAB3D +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html CSF1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html RAG1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html MAP4K2 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html MAP4K1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html PF4 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html ZBTB16 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html MLF1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html CALCA +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html SNRK +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html RASGRP4 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html ZAP70 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html DYRK3 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html CD4 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html RUNX1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html BLNK +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html IL4 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html PTPRC +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html MLL +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html MAFB +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html IL7 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html CEBPG +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html HCLS1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html MAL +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html TBX1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html CD1D +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html HDAC5 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html NOTCH2 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html HDAC4 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html ETS1 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html NOTCH4 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html CD79A +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html HDAC9 +PWCOMMONS HEMOPOIETIC OR LYMPHOID ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEMOPOIETIC_OR_LYMPHOID_ORGAN_DEVELOPMENT.html IL2 +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html AMBP +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html CARD9 +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html TAOK2 +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html HIPK2 +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html TAOK3 +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html MAPK8IP2 +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html EDA2R +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html ZNF675 +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html MAPK8IP3 +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html TPD52L1 +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html MAPK8IP1 +PWCOMMONS REGULATION OF JNK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_CASCADE.html CD27 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html DZIP3 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html RNF217 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html UBE2V1 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html UBE2V2 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html SAE1 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html ANAPC11 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html MYLIP +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html UBE3C +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html STUB1 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html SENP7 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html ERCC8 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html FBXW7 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html SUMO1 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html WWP1 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html RNF11 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html TRAF7 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html UBE2D1 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html TRAF6 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html RNF144B +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html BCL10 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html GTPBP4 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html VHL +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html UBE4B +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html CBL +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html PCNP +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html PRKCG +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html PARK2 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html TRIM23 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html UBE2C +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html ATG3 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html BRCA1 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html NAE1 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html UBE2N +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html UHRF2 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html HUWE1 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html TSC1 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html DDB2 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html RNF139 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html MDM2 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html CAND1 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html SMURF1 +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html AMFR +PWCOMMONS PROTEIN MODIFICATION BY SMALL PROTEIN CONJUGATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_MODIFICATION_BY_SMALL_PROTEIN_CONJUGATION.html UBB +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html PPARA +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html PFKL +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html CIDEA +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html EGLN2 +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html PRKCG +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html PFKM +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html STUB1 +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html GAPDHS +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html INS +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html APOA5 +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html ECD +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html MDM2 +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html HGS +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html MDM4 +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html FAF1 +PWCOMMONS REGULATION OF CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CATABOLIC_PROCESS.html ANGPTL3 +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html TUFM +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html B3GNT8 +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html EEF1A1 +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html GCK +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html ALG1 +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html TSFM +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html SEPSECS +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html EEF2K +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html GYS2 +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html GYG2 +PWCOMMONS BIOPOLYMER BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BIOPOLYMER_BIOSYNTHETIC_PROCESS.html DYRK2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html DLC1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html BMP10 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html BCAR1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html OSGIN1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html SGMS1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html GLI2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html SPINK5 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html TGFB1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html TGFB2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html BNIPL +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html ACVR1B +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html CDKN2A +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html CDKN2C +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html CDKN2D +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html APOA5 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html SERTAD3 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html NDUFS3 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html GHR +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html SERTAD2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html NOL8 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html TP53 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html NDUFA13 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html RB1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html FGF20 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html INHBA +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html PLCE1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html EREG +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html GHRH +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html ALOX15B +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html BIN3 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html UBB +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html XRN2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html ALOX12 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html ING5 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html DCBLD2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html ING4 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html DERL2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html RTN4RL1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html PML +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html PPT1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html TSPYL2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html FAM107A +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html RASGRP4 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html PRSS2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html CDA +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html BCL6 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html TNN +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html RTN4RL2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html ENO1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html DMBX1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html COL4A4 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html KLK8 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html SPHK1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html SMAD4 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html SMAD3 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html SOD1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html CAPRIN2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html RERG +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html PPP1R9B +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html NOTCH2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html CDKN1A +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html CDKN1B +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html NUPR1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html BBC3 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html CDKN2AIP +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html PTCH1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html GHSR +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html BMPR1B +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html APBB2 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html APBB1 +PWCOMMONS GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/GROWTH.html IL2 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html CLDN16 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html AVPR2 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html SLC22A18 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html AQP9 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html ADORA2B +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html TACR2 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html AQP5 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html CLCNKA +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html AQP4 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html CLCNKB +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html AQP7 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html AQP6 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html AQP1 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html ATP6V1B1 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html AQP3 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html AQP2 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html KCNJ1 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html SCTR +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html KCNK5 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html NFAT5 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html SCNN1G +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html SCNN1B +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html GUCA2B +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html SCNN1A +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html NPHP1 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html KNG1 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html NPR1 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html GRHPR +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html SLC26A3 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html NPHS2 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html NPHS1 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html NPPB +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html ATP6V0A4 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html UNC13B +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html IFT88 +PWCOMMONS EXCRETION http://www.broadinstitute.org/gsea/msigdb/cards/EXCRETION.html CLCN5 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html EMCN +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html ACVRL1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html HTATIP2 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html IL18 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html PML +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html RNH1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html PF4 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html TNFSF12 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html FOXO4 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html SPINK5 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html CANX +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html SHH +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html TGFB2 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html AGGF1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html ANG +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html IL17F +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html ROBO4 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html RHOB +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html ERAP1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html CHRNA7 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html RUNX1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html EGF +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html ANGPTL3 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html C1GALT1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html SCG2 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html ANGPTL4 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html COL4A3 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html COL4A2 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html IL8 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html NF1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html SPHK1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html NPR1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html TNNI3 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html MYH9 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html NCL +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html PLG +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html THY1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html CDH13 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html PROK2 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html SERPINF1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html BTG1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html STAB1 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html EPGN +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html VEGFA +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html NOTCH4 +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html NPPB +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html AMOT +PWCOMMONS ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ANGIOGENESIS.html ATPIF1 +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html INHBA +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html CDKN1A +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html CDKN2A +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html CDKN1B +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html NF2 +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html CDKN2B +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html CDKN2C +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html CDKN2D +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html SOCS1 +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html NLRP12 +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html INHA +PWCOMMONS NEGATIVE REGULATION OF PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHORYLATION.html IGFBP3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html BCL10 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html TNF +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html CEBPG +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html RELA +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html EDA2R +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html UBE2V1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html NFAM1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html PRDX3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html JMY +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html UBE2N +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html CARD11 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html PRKCQ +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html NOD2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html NLRC3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html EP300 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html NPM1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html PYCARD +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html ABRA +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html IKBKB +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html EDA +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html TSSK4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html ERC1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html MAP3K13 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html CAMK2A +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html DZIP3 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html RNF217 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html UBE2V1 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html UBE2V2 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html SAE1 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html UBE3C +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html ANAPC11 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html MYLIP +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html STUB1 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html ERCC8 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html FBXW7 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html WWP1 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html RNF11 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html TRAF7 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html UBE2D1 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html TRAF6 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html RNF144B +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html BCL10 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html GTPBP4 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html VHL +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html CBL +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html UBE4B +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html PRKCG +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html PCNP +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html PARK2 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html TRIM23 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html UBE2C +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html ATG3 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html BRCA1 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html UBE2N +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html UHRF2 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html TSC1 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html HUWE1 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html RNF139 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html DDB2 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html MDM2 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html CAND1 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html AMFR +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html SMURF1 +PWCOMMONS PROTEIN UBIQUITINATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_UBIQUITINATION.html UBB +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC38A3 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html AQP9 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC16A10 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC7A8 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC7A9 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC7A5 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC1A4 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC1A5 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC16A1 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC1A2 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html AKR1C4 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC1A3 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SERINC1 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC1A6 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC25A22 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC1A7 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC22A6 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC25A1 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC43A1 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html ARL6IP5 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC1A1 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html AKR1C1 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html CLN3 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html PRAF2 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html PDPN +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC3A2 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC7A10 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC3A1 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC25A12 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC16A3 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC16A2 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC16A5 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC16A4 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC25A13 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC16A7 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC6A7 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC16A6 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC25A10 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC16A8 +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html CTNS +PWCOMMONS CARBOXYLIC ACID TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CARBOXYLIC_ACID_TRANSPORT.html SLC25A15 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html RTN4 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html HMGB1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html LIMA1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html KATNB1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ARF6 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html TERF2IP +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PAIP2B +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CDC42 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html SET +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PACSIN3 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html GSN +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html RAC1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CLASP1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ERCC4 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ERCC1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html TERF2 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html APC +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html KLK8 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ARHGEF2 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PAIP2 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html MID1IP1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html THY1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html YWHAH +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CAPG +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html MAPRE1 +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html TMSB4Y +PWCOMMONS NEGATIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF2AK3 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html HMGCR +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html LHCGR +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html ANKRD7 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html SHH +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html PRKACG +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html CSDE1 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html SOX15 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html MKKS +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html HSD17B3 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html SRD5A2 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html EIF2B2 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html EIF2B4 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html EIF2B5 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html FOXL2 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html TBX3 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html MEA1 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html DMRT1 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html DMRT2 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html NR0B1 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html SOD1 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html FSHR +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html EREG +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html NCOA4 +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html BMPR1B +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html LHB +PWCOMMONS DEVELOPMENT OF PRIMARY SEXUAL CHARACTERISTICS http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENT_OF_PRIMARY_SEXUAL_CHARACTERISTICS.html NR5A1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html KIAA0368 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html TSG101 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html BTRC +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2G1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2G2 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html USE1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html RNF217 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html CPA2 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html FBXO22 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html ANAPC2 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2A +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html ANAPC5 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UFD1L +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html ANAPC4 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBR3 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2I +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html PRKCG +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2H +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2C +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2B +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UHRF2 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2K +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBR5 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html MDM2 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html FBXL4 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html SIAH1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html MDM4 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html AMFR +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBB +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html SIAH2 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html FZR1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html DERL2 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html SYVN1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html DERL1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE3A +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html EGLN2 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html NEDD8 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html ANAPC10 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html STUB1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html EDEM1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html ARIH1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2D3 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2D2 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html SQSTM1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html INS +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html PRSS2 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html RNF11 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2D1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html USP33 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html FBXO7 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html RNF144B +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html NPLOC4 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE4A +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE4B +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html CDC23 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html PCNP +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html CDC20 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html PARK2 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2L3 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html SELS +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html PSMD14 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html PSMC5 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html VCP +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html HGS +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html SMURF2 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html SMURF1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html FAF1 +PWCOMMONS PROTEIN CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_CATABOLIC_PROCESS.html UBE2E1 +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html NOX4 +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html LIMS1 +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html CDKN2A +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html TBX3 +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html TBX2 +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html KL +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html NPM1 +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html MORF4 +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html TP53 +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html LOXL2 +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html SOD1 +PWCOMMONS AGING http://www.broadinstitute.org/gsea/msigdb/cards/AGING.html PDCD4 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html KNG1 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html ARHGDIG +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html GTPBP4 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html ADAM10 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html ACVRL1 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html NF2 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html PTEN +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html PR47 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html CDH13 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html MIA3 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html CDKN2A +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html RND1 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html TGFBI +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html B4GALNT2 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html ARHGDIA +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html SPN +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html RASA1 +PWCOMMONS NEGATIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_ADHESION.html ARHGDIB +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html PPARD +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html SPRR2G +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html SPRR2F +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html SPRR2E +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html SOD1 +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html SCGB1A1 +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html RPL29 +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html PRLR +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html SPRR2C +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html SPRR2D +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html TRO +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html SPRR2A +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html SFRP4 +PWCOMMONS EMBRYO IMPLANTATION http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYO_IMPLANTATION.html SPRR2B +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html AURKAIP1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ATP6AP2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html BTRC +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html LTBP4 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PGC +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP9 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html IDE +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP8 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP7 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html RNF217 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html RCE1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP3 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SHH +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html HTRA2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ERAP1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CPA3 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PSENEN +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CPA1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CFD +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html FBXO22 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html DNAJC1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ANAPC2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ANAPC5 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ANAPC4 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBR3 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html NAPSA +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MYH9 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html NAPSB +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ADAMTS9 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UHRF2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html BACE2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBR5 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html TMPRSS11E +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html BACE1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html F2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ST14 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html FBXL4 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html AMFR +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html FBXL6 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PGCP +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html WFDC2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ADAMTS5 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ADAMTS4 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html FBXL2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html DERL2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html FZR1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SYVN1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html DERL1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MME +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html NEDD8 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ANAPC10 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html TIMP1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ARIH1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2D3 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ACE +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2D2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html KLKB1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CTRC +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html FBXO6 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html RNF11 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html FBXW2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ZMPSTE24 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html FBXO3 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2D1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SRGN +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CTRL +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html FBXO7 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PLAT +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html NPLOC4 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html BMP1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html FBXO2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CDC23 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PCNP +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CDC20 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2L3 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html FURIN +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html LCN1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PSMC5 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PSMC4 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html VCP +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBA3 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PAPPA2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SPCS1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SMURF2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SMURF1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PHEX +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CPB2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PLAU +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2E1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html DPP3 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SPG7 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html KIAA0368 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CORIN +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html TSG101 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2G1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2G2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP24 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CFHR1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CASP5 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html LNPEP +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CASP6 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP20 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CASP3 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CASP4 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html TPP1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CASP7 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html TPP2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CASP8 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CASP1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CASP2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CTSZ +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2A +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PEPD +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ADAM10 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ASTL +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UFD1L +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2I +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CTSS +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2H +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP14 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2C +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP13 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2B +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP12 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP11 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2N +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP10 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CTSK +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html BLMH +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ATG4D +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SENP1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ATG4C +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PSEN1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE2K +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ATG4B +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ATG4A +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CTSO +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PSEN2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SIAH1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SIAH2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CTSB +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBB +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html USP25 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CTSH +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PMPCA +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CTSG +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CTSF +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CLN6 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MBL2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PREP +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html APH1A +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE3A +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html ADAMTS13 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SHFM1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html STUB1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html EDEM1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SUFU +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CPZ +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PCSK2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PCSK1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SQSTM1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html REN +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PRSS2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PRSS3 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PITRM1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html KRT1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html C2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PCSK6 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html HGFAC +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html USP33 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PCSK5 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html RNF144B +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html OLR1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE4A +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html VHL +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html UBE4B +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PARK2 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html TMPRSS6 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html CAPN3 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html SELS +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html XPNPEP1 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html C9ORF3 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html NCSTN +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html PSMD14 +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MMP23B +PWCOMMONS PROTEOLYSIS http://www.broadinstitute.org/gsea/msigdb/cards/PROTEOLYSIS.html MBTPS1 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html ALDH8A1 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html RARRES2 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html ALAD +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html TSPO +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html COX10 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html PPOX +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html GPR143 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html DCT +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html ALAS1 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html TYR +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html ALAS2 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html CPOX +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html AP3D1 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html OCA2 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html COX15 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html FECH +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html GMPS +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html BLVRA +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html RDH12 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html RDH11 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html DHRS3 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html AS3MT +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html NFE2L1 +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html PAICS +PWCOMMONS SECONDARY METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SECONDARY_METABOLIC_PROCESS.html RETSAT +PWCOMMONS PYRIMIDINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PYRIMIDINE_NUCLEOTIDE_METABOLIC_PROCESS.html DCTD +PWCOMMONS PYRIMIDINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PYRIMIDINE_NUCLEOTIDE_METABOLIC_PROCESS.html UMPS +PWCOMMONS PYRIMIDINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PYRIMIDINE_NUCLEOTIDE_METABOLIC_PROCESS.html TYMP +PWCOMMONS PYRIMIDINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PYRIMIDINE_NUCLEOTIDE_METABOLIC_PROCESS.html NT5M +PWCOMMONS PYRIMIDINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PYRIMIDINE_NUCLEOTIDE_METABOLIC_PROCESS.html CTPS +PWCOMMONS PYRIMIDINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PYRIMIDINE_NUCLEOTIDE_METABOLIC_PROCESS.html DCK +PWCOMMONS PYRIMIDINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PYRIMIDINE_NUCLEOTIDE_METABOLIC_PROCESS.html AK5 +PWCOMMONS PYRIMIDINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PYRIMIDINE_NUCLEOTIDE_METABOLIC_PROCESS.html ENTPD4 +PWCOMMONS PYRIMIDINE NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PYRIMIDINE_NUCLEOTIDE_METABOLIC_PROCESS.html NT5C +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html ALDH8A1 +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html ME1 +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html RXRA +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html PGD +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html RBP2 +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html DHRS9 +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html TKTL1 +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html BBOX1 +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html RDH12 +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html RDH11 +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html ALDH1A2 +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html DHRS3 +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html THTPA +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html PGLS +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html CYP27B1 +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html RLBP1 +PWCOMMONS VITAMIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/VITAMIN_METABOLIC_PROCESS.html RETSAT +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html VAPA +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html PDLIM7 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ITSN1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ADORA1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html NRCAM +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html HOOK2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html GATA2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html BAK1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html PICALM +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html PACSIN3 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ADAM2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ATG7 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html VPS4B +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html IZUMO1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html EGFR +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html MYO6 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html OPA1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html STAP1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html PICK1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CRISP1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html TAZ +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html LRP1B +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html VTI1B +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html COLEC12 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html VAMP3 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html RAB7A +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html RTP2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html NAPG +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ADORA2A +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html RTP1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SNX2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html RABEPK +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html HFE +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SNX1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ARF6 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html PPT1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SNX4 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html NAPA +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SNX3 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html BCL2L1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html AHSG +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ADRB3 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html DOCK1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html FOLR1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html RAC1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SFTPD +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html DULLARD +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html AGRN +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html STX11 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html HIP1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html MRC1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html NPLOC4 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html RABIF +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html REEP1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CORO1C +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html RABEP1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html TSC2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CACNA1H +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html GOSR2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CLEC7A +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CLTCL1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html KCNH1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html MSR1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html LDLR +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html AP2S1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SORL1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SYNJ1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html BNIP3 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html TIMM50 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html KCNIP2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ASGR1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html AP1S1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ZFYVE16 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html NECAP2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html COX18 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html STX6 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html RAMP3 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CLN3 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html RAMP2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SPACA3 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CCDC88A +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html TP53 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ARHGAP27 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ATP6V1H +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html PI4KB +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html LDLRAP1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html M6PR +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ELMO1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html MFN2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ADRB2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html BNIP1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html IGF2R +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html OTOF +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html RAB5A +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html LRMP +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html STEAP2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html ADAM12 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html EPN1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SERP1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html STON2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SNAP29 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html STON1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html GULP1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html EEA1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SCARF1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html AMPH +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html AZU1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CD9 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html BCL2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html FCN2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html FCGR1A +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html PEX16 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html FCN1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CD2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CD24 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SNAP23 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html A4GALT +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html DNM1L +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CBL +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html MAL +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html STAB2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SOD1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html SH3BP4 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CDH13 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html PLSCR1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html STAB1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html RAB22A +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html LRP8 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html LRP2 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html LRP3 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html CD14 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html DNM1 +PWCOMMONS MEMBRANE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_ORGANIZATION_AND_BIOGENESIS.html GCA +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html SRI +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html MDFI +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html PTPRC +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html TAF3 +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html PDIA3 +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html S100A7 +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html PDIA2 +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html NFKBIE +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html TOPORS +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html MXI1 +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html FTH1 +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html NFKBIL1 +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html THY1 +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html NFKBIL2 +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html ALB +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html LCK +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html GAA +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html SUPT7L +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html FAF1 +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html TMSB4Y +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html SRGN +PWCOMMONS MAINTENANCE OF LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_LOCALIZATION.html ATP7B +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html HTATIP2 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html RNH1 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html PML +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html PF4 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html TNFSF12 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html FOXO4 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html SPINK5 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html AGGF1 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html IL17F +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html RHOB +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html CHRNA7 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html RUNX1 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html ANGPTL3 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html ANGPTL4 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html COL4A3 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html COL4A2 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html NF1 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html SPHK1 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html NPR1 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html TNNI3 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html PLG +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html SERPINF1 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html BTG1 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html STAB1 +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html NPPB +PWCOMMONS REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ANGIOGENESIS.html AMOT +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html PARD6A +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html PARD6B +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html TLN1 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html GJD3 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html TLN2 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html PRKCI +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html GJA1 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html GJA4 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html GJA5 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html GJC1 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html VCL +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html CD9 +PWCOMMONS INTERCELLULAR JUNCTION ASSEMBLY AND MAINTENANCE http://www.broadinstitute.org/gsea/msigdb/cards/INTERCELLULAR_JUNCTION_ASSEMBLY_AND_MAINTENANCE.html TJP1 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html UQCRC2 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html ME3 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html OXA1L +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html UQCRC1 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html LEPR +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html PDHB +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html ADRB3 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html NDUFS4 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html GYS2 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html TREH +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html DYRK2 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html NDUFS1 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html ACO2 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html CYCS +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html EPM2A +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html BCS1L +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html GYG2 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html CRAT +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html PPARGC1A +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html ACADVL +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html LEP +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html SDHA +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html SDHB +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html SLC25A14 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html NNT +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html GCK +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html PYGM +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html UQCRH +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html GSK3B +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html SDHC +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html GFPT1 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html GFPT2 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html SDHD +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html GAA +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html SURF1 +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html PYGB +PWCOMMONS ENERGY DERIVATION BY OXIDATION OF ORGANIC COMPOUNDS http://www.broadinstitute.org/gsea/msigdb/cards/ENERGY_DERIVATION_BY_OXIDATION_OF_ORGANIC_COMPOUNDS.html UQCRB +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SEPT5 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SYT1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html UTS2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCNC4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SNCAIP +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRIK1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SLC6A1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRIK2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SYT5 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SLC6A2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GABRB2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRIK4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SLC6A4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CNP +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html VIPR1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GDNF +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html TGFB2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HTR1B +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRIN2B +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html APOE +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GALR3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GALR2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CHRNA5 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CHRNA4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CHRNA6 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HTR1D +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html NQO1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CHRNA1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HTR1F +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HTR1E +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCND2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SCN2B +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KIF5A +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html BAIAP3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html STRN4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRIN2A +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html BSN +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html NTSR1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GABRR2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html MAPK1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CBLN1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html DOC2A +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GABRR1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html COLQ +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HTR7 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HTR6 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html AKAP5 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html NPTN +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CARTPT +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PMP22 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCNMB4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html DRD1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SCN1B +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CALY +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html DRD2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCNA1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html DRD4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PXK +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html RIMS1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCNMB1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HCRTR2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HCRTR1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GAD2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SYPL1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GAD1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html NOVA1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HAP1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html UNC119 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CPNE6 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html OMP +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SNAPIN +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HOMER1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCNK3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PDE7B +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html NPY +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html RAPSN +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CHRNB4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html MTNR1B +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CHRNB3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CACNA1E +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html QPRT +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CHRNB1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html RIT2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CORT +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SST +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CHRNE +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CACNA1B +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GABBR2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCNIP1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html MBP +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCNQ5 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SLC1A2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SLC1A3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCNQ3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html FXN +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SLC1A6 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html DLG4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCNQ2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SLC1A1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html TAAR5 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html NPFF +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCNMA1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PCDHB9 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GPR176 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PRG3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PCDHB5 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PCDHB6 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html NPBWR1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PCDHB3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html NPBWR2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PCDHB4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PI4KA +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PCDHB2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRM1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html STX1B +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRM5 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRM4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRM3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KIF1B +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRM2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRM7 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GHRL +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CNTN4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html UBB +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html ALDH9A1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HCRT +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html RAB3A +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CPLX1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html OPRK1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PCDHB14 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html AKAP9 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PCDHB13 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HPRT1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PCDHB11 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PCDHB10 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GCH1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html AMPH +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html NPTX1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HRH3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SYN1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SYN3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PCDHB16 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SYN2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CD24 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HTR3A +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HTR3B +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GCHFR +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html APBA1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html DTNA +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html COL4A4 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KLK8 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GLRB +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html PLP1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html MPZ +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html NLGN1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html DBH +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GABARAP +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html ACCN1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html YWHAG +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html ATXN3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html YWHAH +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRIA2 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCNN1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html GRIA1 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SLC6A5 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html KCNN3 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CRH +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html MYCBPAP +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html SLC5A7 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HTR2C +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html CHRNA10 +PWCOMMONS SYNAPTIC TRANSMISSION http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPTIC_TRANSMISSION.html HTR2A +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html WASF3 +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html WASF1 +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html PREX1 +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html ARF6 +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html LATS1 +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html NCK2 +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html CDC42EP2 +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html ANG +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html GSN +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html NCK1 +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html RAC1 +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html TMSB4Y +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html RASA1 +PWCOMMONS ACTIN FILAMENT POLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_POLYMERIZATION.html CDC42EP5 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MTSS1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TTN +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PRKG1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CXCL12 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PACSIN2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PLA2G1B +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ROCK1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYH9 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NEBL +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARPC1A +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RND3 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KRT19 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RND1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ATP2C1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TESK2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DST +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DBN1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FGD2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FGD1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SSH1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MRAS +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SSH2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARF6 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARPC4 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARPC5 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LLGL1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DOCK2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42EP2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RAC3 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RAC1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ADRA2A +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FGD5 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FGD6 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGEF10L +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FGD3 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGDIB +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42EP5 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FGD4 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FSCN2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TAOK2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FSCN1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARFIP2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYOZ1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html EVL +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html EPB49 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42BPG +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TSC1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42BPA +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYH11 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SPTA1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html GHSR +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ABL1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42BPB +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RHOJ +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LIMA1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NUAK2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html WASF3 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html WASF1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PREX1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html BCAR1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html WASF2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LATS1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DSTN +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PDPK1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DYNLL1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html GSN +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ANG +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RHOA +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RHOF +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DLG1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGEF2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CCDC88A +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ACTA1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LIMK1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGEF17 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FLNB +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FLNA +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ELMO1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NCK2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NCK1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SCIN +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CFL1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html GHRL +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html WASL +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TMSB4Y +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CXCL1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SHROOM1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SHROOM2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PLEK2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SORBS3 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html EZR +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SORBS1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html WIPF1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RASA1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TNXB +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NF2 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NF1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RICTOR +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RACGAP1 +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CAPG +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html AMOT +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KPTN +PWCOMMONS ACTIN CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CRK +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html NDUFB4 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html GCLC +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html ATOX1 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html S100A7 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html PRDX5 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html PRDX2 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html PDLIM1 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html CCL5 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html GCLM +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html GLRX2 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html ANGPTL7 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html APOA4 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html GSS +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html ERCC8 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html MSRA +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html ERCC6 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html GPX3 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html NDUFS8 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html CYGB +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html SEPP1 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html ERCC3 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html NDUFS2 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html ERCC1 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html ERCC2 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html DHCR24 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html SGK2 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html NUDT1 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html STK25 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html NDUFA6 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html APTX +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html DGKK +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html OXSR1 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html SOD1 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html SELS +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html NDUFA12 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html SOD2 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html PNKP +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html RNF7 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html DUSP1 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html PRDX6 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html TXNRD2 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html MPO +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html SCARA3 +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html PRNP +PWCOMMONS RESPONSE TO OXIDATIVE STRESS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OXIDATIVE_STRESS.html SRXN1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html AURKAIP1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html XRCC6 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html RORB +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MED21 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CITED2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html EPC1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html FOXF1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html FOXF2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SUPT5H +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html EIF2B5 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PCBD2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html RXRA +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MED12 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MED14 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MED13 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html BOLL +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PPARGC1B +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html HNF4A +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MED17 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CRTC1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ARF6 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html AFAP1L2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PLAGL1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html FOXH1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CDC42EP2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MAML3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TCF4 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TCF3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ARHGEF10L +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CDC42EP5 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html BMP4 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html UTF1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MAML1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MAP2K3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CREBBP +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MAML2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ESRRG +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SMAD3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MSTN +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SMAD2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html NUP62 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html NOTCH4 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TNK2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html BMP7 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html BMP6 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PPARA +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html HNF1B +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ELF1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html HNF1A +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ACVRL1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ELF4 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SPI1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TP63 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html GLI2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CAMKK2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ZBTB38 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html GLI1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MAPT +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ATF7IP +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html LYN +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PRG3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CCNH +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TP53 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ARHGEF11 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SCAP +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html RAD51 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html GTF2H1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MED6 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html INHBA +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html NCK2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CCND1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CARD14 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html EREG +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CCND3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CCND2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html NCK1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html IL12A +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html IL12B +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html NSD1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CLOCK +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MED1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CLN6 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html NUFIP1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html EHF +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html AZU1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MRPL12 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SQSTM1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html BCL3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html DAZL +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SUPT4H1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CD24 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CD28 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html FOXD3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html IL4 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html IL3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html DAZ1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html IL6 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html IL5 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html HCLS1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TBX5 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html IL9 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TRIM28 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ILF3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TP73 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html GAPDHS +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MNAT1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html YWHAH +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ILF2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html YAF2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html FOXE1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PPP2R4 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PHF5A +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html RBM14 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MMS19 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html NCBP1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TLR1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ARNT2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html EIF5A +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html FOXO1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TLR3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TNFSF13 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TLR4 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html FOXO3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TLR6 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TLR7 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TLR8 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TLR9 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html IL31RA +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html APOA2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MDFIC +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SMARCD3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ATG7 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html APOA5 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SMARCD1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html GATA4 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MYST1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MYST4 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html EBI3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SAMD4A +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SPN +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MYST3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html EGFR +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html BCL10 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MYO6 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html IL29 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html IL27 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ARID1A +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ARNTL +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ELL3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TRERF1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html IL20 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html HIF1A +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TFAP2B +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SMARCA1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ITLN1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html KATNB1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ELK1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ABCA1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html DYRK2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html UBE2D1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html RUNX1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html EGF +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ANGPTL3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ZNF423 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html EPAS1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TAF8 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CD276 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html FOXP3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ATF6 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ATF4 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html AKTIP +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SMARCC1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html DYRK1B +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SMARCC2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html HIVEP3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html GLMN +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html HSP90AB1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html RSF1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CTCF +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ANG +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CLCF1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TPP1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PAX8 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html MKL2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html LTB +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PIGA +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html EGR1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html HSP90AA1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PIGY +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PRKCG +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CDK7 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html HMGA1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html PRPF6 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html NRIP1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html UBE2N +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html BPTF +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CD80 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ZMIZ2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TPPP +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CD81 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html NCOA6 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html UBB +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ACVR1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html GLIS3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html GLIS2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html GLIS1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html EGLN2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TNFRSF8 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html STUB1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html TNFRSF1A +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html RGMB +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html NPAS2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ERCC6 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html NFATC2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ERCC3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html ERCC2 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html DEFB103A +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CEBPG +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html CREB5 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html SP1 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html GCK +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html THRAP3 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html IRF4 +PWCOMMONS POSITIVE REGULATION OF METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_METABOLIC_PROCESS.html FAF1 +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html LOR +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html TXNIP +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html ANXA1 +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html SCEL +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html IL20 +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html NME2 +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html EVPL +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html EREG +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html SPRR1A +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html SPRR1B +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html TGM1 +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html TGM3 +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html DSP +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html CSTA +PWCOMMONS KERATINOCYTE DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/KERATINOCYTE_DIFFERENTIATION.html IVL +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SNCAIP +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SLC7A8 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SLC7A9 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html BPHL +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GGT1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SLC7A4 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SLC7A5 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html OTUB2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html BBOX1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SLC7A6 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SLC7A7 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GLDC +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html FAH +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html TGFB2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GOT2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html ASPA +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GOT1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html PLOD1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SCLY +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html MAT1A +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html ASMTL +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html DDAH2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html DDAH1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html ALDH6A1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html YARS +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html DARS +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GATM +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html AARS +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html QDPR +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html CDO1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SARS2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html PYCR1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html COLQ +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SULT1B1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html RARS +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html CCBL1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GCLC +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GLUD2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GLUD1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html FARS2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html PAH +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html ASL +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GCLM +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html KARS +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html OAZ2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html ARG1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GAD2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html OAZ1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html ALDH4A1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GCSH +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html ASRGL1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GAD1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html P4HB +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SLC6A14 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html HGD +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html ATF4 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html BAAT +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html DIO2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SLC7A2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html DIO1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html FPGS +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SLC25A15 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html BCKDK +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html AMT +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GSS +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html WARS +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html MCCC2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html MSRA +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html TYR +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html HDC +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GSTZ1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html YOD1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html HPD +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html PEPD +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html PRG3 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SLC3A1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html DDO +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SDS +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html DHPS +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SMS +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html BCAT1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html ALDH18A1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html NFS1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html DCT +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GLS2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html MTHFR +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html ETNK1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html MARS2 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html PTS +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html BCKDHA +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html BCKDHB +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html ADI1 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SLC6A6 +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html MAT2B +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html GAMT +PWCOMMONS AMINO ACID AND DERIVATIVE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_AND_DERIVATIVE_METABOLIC_PROCESS.html SLC5A7 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB9 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html COL4A4 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html ACHE +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html KLK8 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB5 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB6 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB3 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB4 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html NLGN1 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB2 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html CACNB2 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html NRD1 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB14 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB13 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB11 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB10 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html NRCAM +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html PCDHB16 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html GHRL +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html POU4F1 +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html UBB +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html AGRN +PWCOMMONS SYNAPSE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SYNAPSE_ORGANIZATION_AND_BIOGENESIS.html CHRNA1 +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html ACOX2 +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html GBA2 +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html CYP7B1 +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html NPC1 +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html CYP39A1 +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html BAAT +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html HSD3B7 +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html AKR1D1 +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html AKR1C1 +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html NR1H4 +PWCOMMONS BILE ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/BILE_ACID_METABOLIC_PROCESS.html ACOX3 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html TRAF2 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html ATP6AP2 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html AFAP1L2 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html TGFB2 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html MAP3K7 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html CALCA +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html NOD2 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html IFNG +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html CHRNA7 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html CD24 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html TRAF6 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html SMAD4 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html CIDEA +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html SMAD3 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html MALT1 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html SOD1 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html FOXP3 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html CARD11 +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html HIF1A +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html EREG +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html CD40LG +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html IL12A +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html GHRL +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html IL12B +PWCOMMONS REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_PRODUCTION.html GHSR +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html GCLC +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html FGF16 +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html CRNN +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html SOD1 +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html GMPR +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html CSDA +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html EIF2B1 +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html AKT1 +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html ACOT11 +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html CIRBP +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html ERO1L +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html EIF2B2 +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html DNAJB4 +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html EIF2B3 +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html EIF2B4 +PWCOMMONS RESPONSE TO TEMPERATURE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_TEMPERATURE_STIMULUS.html EIF2B5 +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html NCK2 +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html LIMA1 +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html CDC42EP2 +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html GSN +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html NCK1 +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html CAPG +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html ARF6 +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html TMSB4Y +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html CXCL12 +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html LATS1 +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html RASA1 +PWCOMMONS REGULATION OF ACTIN POLYMERIZATION AND OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTIN_POLYMERIZATION_AND_OR_DEPOLYMERIZATION.html CDC42EP5 +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html B4GALT1 +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html ST6GAL1 +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html ST6GAL2 +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html FUT8 +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html GLA +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html ST8SIA4 +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html MPDU1 +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html MAN1B1 +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html ST8SIA3 +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html ST8SIA2 +PWCOMMONS OLIGOSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OLIGOSACCHARIDE_METABOLIC_PROCESS.html COG2 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html KCNE1L +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html SRI +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html ACTC1 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html ADORA3 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html CYP2J2 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html MYH7 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html MYH6 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html KCNJ12 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html KCNIP2 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html TPM1 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html TGFB2 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html DMPK +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html TNNT2 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html DES +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html CHRM2 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html HSPB7 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html KCNE1 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html RYR2 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html CACNA1H +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html KCNE2 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html KCNH2 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html KCNQ1 +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html SCN5A +PWCOMMONS REGULATION OF HEART CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_HEART_CONTRACTION.html KCNG2 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html EHMT1 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html PHB +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html CREBBP +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html HDAC10 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html HDAC11 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html PPARGC1A +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html SIRT2 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html UBE2N +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html RPS6KA5 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html SET +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html HUWE1 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html PRMT7 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html PRMT8 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html WHSC1L1 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html RBM14 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html CARM1 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html NSD1 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html MYST1 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html MAP3K12 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html MYST4 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html HELLS +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html HDAC6 +PWCOMMONS COVALENT CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/COVALENT_CHROMATIN_MODIFICATION.html MYST3 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html KCNMB3 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html SRI +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html KCNMB4 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html PPARD +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html PLP1 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html KLK8 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html KCND2 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html NF1 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html MAL +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html SOD1 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html KCNMB2 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html MBP +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html AMIGO1 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html CD9 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html EIF2B2 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html EIF2B4 +PWCOMMONS REGULATION OF ACTION POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ACTION_POTENTIAL.html EIF2B5 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html CAV1 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html ABCA2 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html ABCA1 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html ABCG1 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html APOA4 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html APOA2 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html NPC1 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html NPC2 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html APOA1 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html APOE +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html LCAT +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html PCSK9 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html CETP +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html CD24 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html ANGPTL3 +PWCOMMONS LIPID HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/LIPID_HOMEOSTASIS.html AKR1C1 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html DIS3 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html NOLC1 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html DKC1 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html EXOSC7 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html RPS14 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html EXOSC2 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html EXOSC3 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html POP4 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html RRP9 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html GEMIN4 +PWCOMMONS RRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_PROCESSING.html FBL +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html CYP3A4 +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html UGT1A6 +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html UGT1A9 +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html NR1I2 +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html AS3MT +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html UGT2B11 +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html UGT2B4 +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html NQO1 +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html UGT2B15 +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html UGT2B28 +PWCOMMONS XENOBIOTIC METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/XENOBIOTIC_METABOLIC_PROCESS.html S100A12 +PWCOMMONS ESTABLISHMENT OF VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_VESICLE_LOCALIZATION.html SEPT5 +PWCOMMONS ESTABLISHMENT OF VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_VESICLE_LOCALIZATION.html SNAP29 +PWCOMMONS ESTABLISHMENT OF VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_VESICLE_LOCALIZATION.html STX5 +PWCOMMONS ESTABLISHMENT OF VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_VESICLE_LOCALIZATION.html SHROOM2 +PWCOMMONS ESTABLISHMENT OF VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_VESICLE_LOCALIZATION.html AP1M2 +PWCOMMONS ESTABLISHMENT OF VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_VESICLE_LOCALIZATION.html NLGN1 +PWCOMMONS ESTABLISHMENT OF VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_VESICLE_LOCALIZATION.html TMED10 +PWCOMMONS ESTABLISHMENT OF VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_VESICLE_LOCALIZATION.html LRMP +PWCOMMONS ESTABLISHMENT OF VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_VESICLE_LOCALIZATION.html SNAP23 +PWCOMMONS ESTABLISHMENT OF VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_OF_VESICLE_LOCALIZATION.html YKT6 +PWCOMMONS HEME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_BIOSYNTHETIC_PROCESS.html ALAS1 +PWCOMMONS HEME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_BIOSYNTHETIC_PROCESS.html TSPO +PWCOMMONS HEME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_BIOSYNTHETIC_PROCESS.html ALAD +PWCOMMONS HEME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_BIOSYNTHETIC_PROCESS.html ALAS2 +PWCOMMONS HEME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_BIOSYNTHETIC_PROCESS.html FECH +PWCOMMONS HEME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_BIOSYNTHETIC_PROCESS.html COX10 +PWCOMMONS HEME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_BIOSYNTHETIC_PROCESS.html CPOX +PWCOMMONS HEME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_BIOSYNTHETIC_PROCESS.html NFE2L1 +PWCOMMONS HEME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_BIOSYNTHETIC_PROCESS.html PPOX +PWCOMMONS HEME BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_BIOSYNTHETIC_PROCESS.html COX15 +PWCOMMONS UNFOLDED PROTEIN RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/UNFOLDED_PROTEIN_RESPONSE.html ATF6 +PWCOMMONS UNFOLDED PROTEIN RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/UNFOLDED_PROTEIN_RESPONSE.html DERL2 +PWCOMMONS UNFOLDED PROTEIN RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/UNFOLDED_PROTEIN_RESPONSE.html DERL1 +PWCOMMONS UNFOLDED PROTEIN RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/UNFOLDED_PROTEIN_RESPONSE.html VCP +PWCOMMONS UNFOLDED PROTEIN RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/UNFOLDED_PROTEIN_RESPONSE.html VAPB +PWCOMMONS UNFOLDED PROTEIN RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/UNFOLDED_PROTEIN_RESPONSE.html ERN1 +PWCOMMONS UNFOLDED PROTEIN RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/UNFOLDED_PROTEIN_RESPONSE.html AMFR +PWCOMMONS UNFOLDED PROTEIN RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/UNFOLDED_PROTEIN_RESPONSE.html EIF2AK3 +PWCOMMONS UNFOLDED PROTEIN RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/UNFOLDED_PROTEIN_RESPONSE.html DERL3 +PWCOMMONS UNFOLDED PROTEIN RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/UNFOLDED_PROTEIN_RESPONSE.html SELS +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html SEPT5 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html SEPT4 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html PARD3 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html PRC1 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html DIAPH2 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html AURKC +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html NUSAP1 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html BRCA2 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html BIRC5 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html ANLN +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html MYH9 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html DCTN3 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html RACGAP1 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html TGFB2 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html INCENP +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html RAB35 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html CNTROB +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html SEPT6 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html SEPT7 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html RASA1 +PWCOMMONS CELL DIVISION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_DIVISION.html MYH10 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html XRCC4 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html RP1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html AQP9 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ZAK +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html TACR1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html COPS3 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html FGF16 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html MBIP +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html NR2E3 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html HVCN1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html AKT1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html GPX1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html MC1R +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html CDKN2D +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ACOT11 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html TRPV4 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html EIF2B2 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html EIF2B3 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html EIF2B4 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html EIF2B5 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html BRCC3 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html FECH +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html REV1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html RELA +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html TOPBP1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html LIG4 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html GMPR +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html CSDA +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html XRRA1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html GTF2H2 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html SAG +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html PITPNM1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html PNKP +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html PPM1D +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html RPAIN +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html TIMELESS +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html GRM6 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html DDB2 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html IL12A +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html MAPK8 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ATPIF1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html IL12B +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html NHEJ1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html DYNLRB1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html CLOCK +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html GCLC +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html POLA1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html PML +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html TAC1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html BRSK1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html OPN1SW +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html CRNN +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ABCA4 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html GLRX2 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html PDE6B +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ERCC8 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html SNN +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ERCC5 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ERCC6 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html NPFFR2 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html BCL3 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html SERPINB13 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ERO1L +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ERCC3 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html IVL +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ERCC4 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html FEN1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ERCC2 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html UNC119 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html TRPC3 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html NF1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html UBE4B +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html SOD1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html EIF2B1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ATM +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html CCL11 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html ACCN2 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html POLD1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html PDC +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html CIRBP +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html SCARA3 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html CACNA1F +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html DNAJB4 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html SMC1A +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html GRK1 +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html RHO +PWCOMMONS RESPONSE TO ABIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ABIOTIC_STIMULUS.html OPN4 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html BCL10 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html IL6 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html LYN +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html MAFB +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html HCLS1 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html LDB1 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html CEBPG +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html SPI1 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html CDK6 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html FOXO3 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html SOD1 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html AKT1 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html INHBA +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html ACVR2A +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html ACVR1B +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html RPS19 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html ALAS2 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html ETS1 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html DYRK3 +PWCOMMONS HOMEOSTASIS OF NUMBER OF CELLS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTASIS_OF_NUMBER_OF_CELLS.html ACIN1 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html SEPT5 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html RAB3A +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html SYT1 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html KCNMB4 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html SNCAIP +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html BAIAP3 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html NLGN1 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html SNAPIN +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html RIMS1 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html GRM4 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html HRH3 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html SYN3 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html CARTPT +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html TMED10 +PWCOMMONS REGULATED SECRETORY PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATED_SECRETORY_PATHWAY.html STEAP2 +PWCOMMONS RNA 3END PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_3END_PROCESSING.html TRNT1 +PWCOMMONS RNA 3END PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_3END_PROCESSING.html NCBP1 +PWCOMMONS RNA 3END PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_3END_PROCESSING.html CSTF3 +PWCOMMONS RNA 3END PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_3END_PROCESSING.html CSTF2 +PWCOMMONS RNA 3END PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_3END_PROCESSING.html GRSF1 +PWCOMMONS RNA 3END PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_3END_PROCESSING.html PABPC1 +PWCOMMONS RNA 3END PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_3END_PROCESSING.html CPSF3 +PWCOMMONS RNA 3END PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_3END_PROCESSING.html CSTF1 +PWCOMMONS RNA 3END PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_3END_PROCESSING.html CPSF1 +PWCOMMONS RNA 3END PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_3END_PROCESSING.html SLBP +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CHIA +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html S100A7 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html VAPB +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html PGLYRP1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html TLR3 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html APOBEC3G +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html TLR6 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CXCL12 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html TLR7 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html APOBEC3F +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IL10 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html TLR8 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html ISG20 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CFP +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html NLRC4 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html PGLYRP4 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html PGLYRP2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html PGLYRP3 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IFNK +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DNAJC4 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html SPN +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html BCL10 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CRTAM +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IL29 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IFI44 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html HBXIP +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html LILRB1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html WFDC12 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CCDC130 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html HSPB7 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html HSPB1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html AMFR +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html HSPB3 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html EIF2AK3 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html LALBA +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DERL2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DERL1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html FGR +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html ITLN1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CCL8 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html HSPA1B +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DEFB127 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CCL5 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html BANF1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html SERPINH1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CCL4 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DERL3 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CHIT1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html HSPA1L +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html SLC11A1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IFNA7 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IFNA4 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html PRKRA +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DNAJA1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html HSPE1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html HERPUD1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CREBZF +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html S100A12 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html ATF6 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html VCP +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DNAJB2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DNAJB1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DNAJB4 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DNAJB5 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IL28RA +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DUOX2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html BNIP3 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html HSPH1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html NOD2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html NOD1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CXCR4 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html FOSL1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IFNGR2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IFNGR1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html ABCE1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html SPACA3 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CAMP +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html TP53 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html NLRP3 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IFNAR1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IFNAR2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html TARBP2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html C19ORF2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IL12A +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html ERN1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IL12B +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html TNF +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html POLA1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IFNW1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html RSAD2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IVNS1ABP +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html AZU1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CCL22 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html HSPA2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html BCL2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html TOR1A +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html TOR1B +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html HSPA6 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DEFB118 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html BCL3 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CD24 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html PTPRC +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DEFB103A +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CCL19 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html STAB2 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html TRIM22 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CCL18 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html SELS +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CD1D +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html CCL11 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html STAB1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IRF7 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html GSK3B +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html BNIP3L +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html HSPA4L +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html DMBT1 +PWCOMMONS RESPONSE TO BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_BIOTIC_STIMULUS.html IFNA17 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html MCHR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html ADORA3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html ADCY7 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html WASF2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GABBR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GABBR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GHRHR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html EDNRA +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html EDNRB +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GALR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GALR3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GALR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html CAP1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html PRKACB +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GLP2R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html PTGER4 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html CRHR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html PTHLH +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GRM4 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html CRHR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html ADRB2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GRM3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html CHRM5 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html ADRB1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GRM2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GRM8 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html CHRM2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GHRH +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html CCR3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GRM7 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GIPR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html CCR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GNAS +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GLP1R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html ACR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html CALCR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html AVPR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html DRD1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GNAI3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GNAI2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html ADORA2B +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html DRD2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html OPRK1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html DRD5 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html NPY2R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html FPR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GCGR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html ADCYAP1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GPR3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html CALCA +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html ADRB3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html ADRA2A +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html CAP2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html OPRL1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html NF1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html NPY1R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html P2RY11 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html RGS1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html LTB4R2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html MC4R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html ADRA1B +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html GRK5 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html CORT +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CAMP NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CAMP_NUCLEOTIDE_SECOND_MESSENGER.html ADRA1D +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html ARFGAP3 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html ACHE +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html PPY +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html LTBP2 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html CADM1 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html ABCA1 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html DPH3 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html PDIA4 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html PYDC1 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html CANX +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html APOA2 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html NOD2 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html NLRC4 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html APOA1 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html ANG +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html INS +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html PYCARD +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html SRGN +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html DNAJC1 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html SCG2 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html SERGEF +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html CRTAM +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html CARD8 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html CIDEA +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html ARFIP1 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html NLRP3 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html FOXP3 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html NLRP2 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html BACE2 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html NLRP12 +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html GLMN +PWCOMMONS PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_SECRETION.html ARL4D +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html AIPL1 +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGZ +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGY +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGV +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html GPAA1 +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGU +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGT +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGS +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGO +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html FNTB +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGK +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html FNTA +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGF +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGG +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html ATG7 +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGH +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html CHM +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGB +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html DPM1 +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGC +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html DPM2 +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html DPM3 +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PGGT1B +PWCOMMONS PROTEIN AMINO ACID LIPIDATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_LIPIDATION.html PIGA +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html IQCB1 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html ZNF675 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html PF4 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html ZBTB16 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html FOXO4 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html SHH +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html CALCA +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html NPHP3 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html TWIST2 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html USH2A +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html BMP4 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html IL4 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html TBX3 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html MAFB +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html DTX1 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html LDB1 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html NF1 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html CDK6 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html SOCS5 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html INHA +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html GPR98 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html NOTCH2 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html INHBA +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html NOTCH1 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html EREG +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html NOTCH4 +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html CARTPT +PWCOMMONS NEGATIVE REGULATION OF CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_DIFFERENTIATION.html CNTN4 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RAB3GAP2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html LTBP2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CADM1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html MXI1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SSR1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RAE1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html HOMER3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TRAK1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CEP290 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TLK1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RPL11 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html KIF13B +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CRTAM +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CD3G +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html VPS45 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html VANGL2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html OPTN +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html MYH9 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html COLQ +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html BACE2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PEX26 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html F2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html BIN3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RTP3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RTP2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RTP4 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NFKBIE +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RTP1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PPT1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html AKAP10 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CALR +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CDC37 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html UHMK1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CD74 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html INS +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html DUSP16 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SUPT7L +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SEC23IP +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TRAM1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html MDFI +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NXF5 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CIDEA +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SMAD3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ARFIP1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ABCG1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html GGN +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NFKBIL2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CBLB +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TRPS1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html LGTN +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RERE +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PDIA3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PDIA2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TIMM17A +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TIMM17B +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html AP3S2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PDIA4 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html GLI3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CANX +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NOD2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ZFYVE9 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html COX18 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html KDELR1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html AP3B1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TOMM34 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html KDELR2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RPGR +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TP53 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html FLNA +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ZDHHC17 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NUP205 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TOMM20 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TOMM22 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TMSB4Y +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NUP107 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ARL4D +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SHROOM2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SHROOM3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NAGPA +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NUP214 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PEX19 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SQSTM1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html DDX19B +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PEX16 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html AP3D1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html BCL3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PEX14 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PEX13 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html BCL6 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CD24 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PEX12 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PEX10 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html APBA1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html FYB +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SERGEF +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html UPF2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html UPF1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NLGN1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PPP1R10 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html BIRC5 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SELS +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html GABARAP +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html COG3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html YWHAH +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html COG7 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html GSK3B +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RAB35 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NLRP12 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SSR2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html BARD1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html COG2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NCBP2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TSPO +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html XPO6 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html AP1G1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html LMAN2L +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TNFSF14 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html EIF5A +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html MIPEP +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html AGXT +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TGFB1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html KLHL2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html AIP +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NLRC4 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html APOA2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html APOA1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html DDX25 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html DNAJC1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CUTA +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html EGFR +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NUP133 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html MCM3AP +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html MYO6 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html STAP1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NUDT4 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html HNRNPA2B1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html LRP1B +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ERP29 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NUPL2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html DDX39 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RPAIN +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html BAT1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SNX9 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ACHE +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ARFGAP3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html DERL2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PPY +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html DERL1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CTSA +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ABCA1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PYDC1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NPM1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ANGPTL3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SRGN +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CARD8 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TAF3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SMG6 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SMG5 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CKAP5 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SMG7 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SMG1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SNAPIN +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ICMT +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html REEP1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html FOXP3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NFKBIL1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TRNT1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PPIH +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html VCP +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TSC1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PTTG1IP +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html GLMN +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TRIP6 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html XPO7 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html HPS4 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PEX6 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PEX3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html DPH3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PEX7 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html AKT1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PEX1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ANG +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ZFYVE16 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NCKIPSD +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html RANBP2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TPR +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html KPNB1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html KHDRBS1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TOPORS +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TIMM23 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NLRP3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TIMM44 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NLRP2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html MFN2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ATG4D +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ATG4C +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ATG4B +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ATG4A +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CD81 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ARCN1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html C3ORF31 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html KPNA6 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html KPNA5 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html KPNA4 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html KPNA3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html KPNA2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html KPNA1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TNF +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html AP1M2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NUP160 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CDH1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SEC63 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CEP57 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html AP3M1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TAP2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html PYCARD +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SCG5 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html APPBP2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html ERCC3 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TNPO1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html SCG2 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html NF1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html MAL +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html CBY1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TMEM48 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html TRPC4AP +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html FAF1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html GGA1 +PWCOMMONS MACROMOLECULE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_LOCALIZATION.html F2R +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html RTP3 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html CYB5R4 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html OR52A1 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html C5AR1 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html RTP4 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html TAS2R4 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html TAS2R5 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html OMP +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html TAS2R3 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html UBR3 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html TAS1R3 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html TAS1R1 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html TAS1R2 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html OR1D2 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html SLIT2 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html OR1D5 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html TAS2R16 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html TAS2R14 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html TAS2R43 +PWCOMMONS SENSORY PERCEPTION OF CHEMICAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_PERCEPTION_OF_CHEMICAL_STIMULUS.html GNAS +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html SREBF1 +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html NUAK2 +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html FADS1 +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html TP53 +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html ASNS +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html EIF2B1 +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html PPP1R9B +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html CHMP1A +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html CDKN1A +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html CDKN2B +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html ALB +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html GSK3B +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html PCSK9 +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html CARTPT +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html EIF2B2 +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html EIF2AK3 +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html EIF2B3 +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html EIF2B4 +PWCOMMONS CELLULAR RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_STIMULUS.html EIF2B5 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html BBS4 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html KIF11 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html CROCC +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html CKAP5 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html CETN3 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html BRCA2 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html CETN1 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html CP110 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html UXT +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html SASS6 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html NDE1 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html CEP250 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html SAC3D1 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html CNTROB +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html NPM1 +PWCOMMONS MICROTUBULE ORGANIZING CENTER ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_ORGANIZING_CENTER_ORGANIZATION_AND_BIOGENESIS.html TUBE1 +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html E2F1 +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html TAF1 +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html CDC6 +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html TBRG4 +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html CDC23 +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html CDK6 +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html CDC25C +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html FOXO4 +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html CDK2 +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html CDKN1C +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html GFI1B +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html CDK10 +PWCOMMONS G1 PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE_OF_MITOTIC_CELL_CYCLE.html MAP3K11 +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html ST6GALNAC6 +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html CLN3 +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html LARGE +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html GLA +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html PSAP +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html UGCG +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html ST8SIA5 +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html ST8SIA1 +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html ST8SIA3 +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html NEU3 +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html CLN6 +PWCOMMONS GLYCOSPHINGOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOSPHINGOLIPID_METABOLIC_PROCESS.html B4GALNT1 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html HS3ST6 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html C9 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html HS3ST5 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html DERL1 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html VAPB +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html SMAD3 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html RRAGA +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html TGFB1 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html CLEC4M +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html TARBP2 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html WWP2 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html ALB +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html CD209 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html WWP1 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html CD81 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html ACE2 +PWCOMMONS INTERACTION WITH HOST http://www.broadinstitute.org/gsea/msigdb/cards/INTERACTION_WITH_HOST.html ITCH +PWCOMMONS REGULATION OF RHO GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_GTPASE_ACTIVITY.html FGD2 +PWCOMMONS REGULATION OF RHO GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_GTPASE_ACTIVITY.html ALS2 +PWCOMMONS REGULATION OF RHO GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_GTPASE_ACTIVITY.html FGD1 +PWCOMMONS REGULATION OF RHO GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_GTPASE_ACTIVITY.html TSC1 +PWCOMMONS REGULATION OF RHO GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_GTPASE_ACTIVITY.html RALBP1 +PWCOMMONS REGULATION OF RHO GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_GTPASE_ACTIVITY.html ARHGAP27 +PWCOMMONS REGULATION OF RHO GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_GTPASE_ACTIVITY.html FGD5 +PWCOMMONS REGULATION OF RHO GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_GTPASE_ACTIVITY.html FGD6 +PWCOMMONS REGULATION OF RHO GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_GTPASE_ACTIVITY.html FGD3 +PWCOMMONS REGULATION OF RHO GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RHO_GTPASE_ACTIVITY.html FGD4 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html NCBP1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html RNMT +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html CRNKL1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html CWC15 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SNRPD1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SNRPD2 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SMNDC1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html RNGTT +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html NONO +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SFRS6 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SFRS7 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SFRS4 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SFRS5 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html DHX38 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SFRS8 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SFRS9 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html LSM5 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html LSM3 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html DDX20 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html LSM1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html KHDRBS1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SRPK2 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html PRPF31 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html EFTUD2 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html PTBP1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SF1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SFRS1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html HNRNPR +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html PPARGC1A +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SRPK1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SFRS2 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html DDX39 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html KHSRP +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html CPSF6 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SLU7 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html CPSF3 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SIP1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html CPSF1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html BAT1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html TRA2A +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html KIN +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SF3B3 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html USP39 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html NUDT21 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html DHX15 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html GEMIN8 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html PABPC1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SFRS2IP +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html GEMIN6 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html GEMIN7 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SFRS11 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SPOP +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html GEMIN5 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html CSTF3 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html CSTF2 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html GRSF1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SNW1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html ELAVL4 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html PRPF18 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SF3A2 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SF3A1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html HNRNPA0 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SLBP +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SF3A3 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html SFPQ +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html PHF5A +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html CSTF1 +GO MRNA PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_PROCESSING_GO_0006397.html TXNL4A +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html ACR +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html CALCR +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html AVPR2 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html DRD1 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html ADORA3 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html ADORA2B +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html ADCY7 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html DRD5 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html GHRHR +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html ADCYAP1 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html GPR3 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html EDNRA +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html CALCA +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html ADRB3 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html CAP1 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html CAP2 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html CRHR1 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html PTHLH +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html ADRB2 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html P2RY11 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html ADRB1 +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html GHRH +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html GIPR +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html GNAS +PWCOMMONS G PROTEIN SIGNALING ADENYLATE CYCLASE ACTIVATING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_ADENYLATE_CYCLASE_ACTIVATING_PATHWAY.html GLP1R +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CHIA +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html S100A7 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IL28RA +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html DUOX2 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html PGLYRP1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html BNIP3 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html TLR3 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html APOBEC3G +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html TLR6 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html APOBEC3F +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CXCL12 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html TLR7 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html TLR8 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IL10 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html ISG20 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CFP +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html NOD2 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html NLRC4 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html NOD1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html PGLYRP4 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CXCR4 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html PGLYRP2 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html PGLYRP3 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IFNK +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IFNGR2 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html FOSL1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IFNGR1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html SPN +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html BCL10 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html ABCE1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html SPACA3 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IL29 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CAMP +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IFI44 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html HBXIP +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IFNAR1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html LILRB1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html TARBP2 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html WFDC12 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IFNAR2 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CCDC130 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html C19ORF2 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IL12A +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html LALBA +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html TNF +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html FGR +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html ITLN1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html POLA1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CCL8 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IFNW1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html RSAD2 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html DEFB127 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IVNS1ABP +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CCL5 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html BANF1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CCL4 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CHIT1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html AZU1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html SLC11A1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CCL22 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IFNA7 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html BCL2 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html PRKRA +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IFNA4 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html DEFB118 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html BCL3 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CD24 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html PTPRC +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CREBZF +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html DEFB103A +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CCL19 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html STAB2 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html TRIM22 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html S100A12 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CD1D +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html CCL11 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html STAB1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IRF7 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html BNIP3L +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html DMBT1 +PWCOMMONS RESPONSE TO OTHER ORGANISM http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_OTHER_ORGANISM.html IFNA17 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html KHDRBS1 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html NCBP2 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html NUP133 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html UPF2 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html UPF1 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html SMG6 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html NUDT4 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html NUP160 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html SMG5 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html NXF5 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html SMG7 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html SMG1 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html EIF5A +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html DDX39 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html TSC1 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html RAE1 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html DDX25 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html DDX19B +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html NUP107 +PWCOMMONS RNA EXPORT FROM NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_EXPORT_FROM_NUCLEUS.html BAT1 +PWCOMMONS LYSOSOMAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOMAL_TRANSPORT.html ARSB +PWCOMMONS LYSOSOMAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOMAL_TRANSPORT.html NPC1 +PWCOMMONS LYSOSOMAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOMAL_TRANSPORT.html NAGPA +PWCOMMONS LYSOSOMAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOMAL_TRANSPORT.html ADRB2 +PWCOMMONS LYSOSOMAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOMAL_TRANSPORT.html AP3M1 +PWCOMMONS LYSOSOMAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOMAL_TRANSPORT.html LYST +PWCOMMONS LYSOSOMAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOMAL_TRANSPORT.html ZFYVE16 +PWCOMMONS LYSOSOMAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOMAL_TRANSPORT.html USE1 +PWCOMMONS LYSOSOMAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOMAL_TRANSPORT.html RHOB +PWCOMMONS LYSOSOMAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/LYSOSOMAL_TRANSPORT.html M6PR +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html GNPDA1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html BTRC +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PGD +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html USE1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html RNASEH1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html RNF217 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ISG20 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html CDKN2A +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html MIOX +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html CPA2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html FBXO22 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ANAPC2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ANAPC5 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html DFFA +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html DFFB +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ANAPC4 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html CECR2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBR3 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html RNASEH2A +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html GNS +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PGLS +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UHRF2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBR5 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html MGAM +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html FBXL4 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html AMFR +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html XRN2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ALDOA +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html DERL2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html FZR1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SYVN1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html DERL1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ALDOB +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PFKFB1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PABPC4 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PPT1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2V2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html NEDD8 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ANAPC10 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html HSPA1B +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html CHIT1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ARIH1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2D3 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2D2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html INS +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html RNF11 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2D1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html NTHL1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html FBXO7 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html NPLOC4 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SMG6 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SMG5 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html GUSB +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SMG7 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SMG1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html CIDEA +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html CDC23 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html TPD52L1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PCNP +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html CDC20 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2L3 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PSMC5 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html VCP +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html POP1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html HGS +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SMURF2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SMURF1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2E1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html KIAA0368 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html TSG101 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2G1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2G2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html BNIP3 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html AUH +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html TREH +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ZFP36 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ABCE1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SPACA3 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2A +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PFKL +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UFD1L +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html AIFM1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html CYCS +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2I +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PRKCG +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2H +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PFKM +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2C +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html HYAL4 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2B +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2N +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE2K +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html GAA +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ERN2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html MDM2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SIAH1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html MDM4 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SIAH2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBB +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE3A +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html EGLN2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html HK1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html TKTL1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html STUB1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html EDEM1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ERCC5 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SQSTM1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html RNASET2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PRSS2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ECD +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ERCC3 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ERCC4 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html USP33 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ERCC1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html ERCC2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html RNF144B +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html FOXL2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UPF2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html RNASE2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html RNASE3 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE4A +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html UBE4B +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html RNASE6 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PARK2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SOD1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html SELS +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html GBA3 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html GAPDHS +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html GBA2 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PSMD14 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html GSPT1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PPP1R8 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html BAX +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html FAF1 +PWCOMMONS MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULE_CATABOLIC_PROCESS.html PYGB +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html BCAT1 +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html ALDH18A1 +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html PRG3 +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html PAH +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html CDO1 +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html BBOX1 +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html TGFB2 +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html PYCR1 +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html OAZ1 +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html PLOD1 +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html ASMTL +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html ETNK1 +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html SULT1A2 +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html MAT2B +PWCOMMONS AMINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_BIOSYNTHETIC_PROCESS.html SLC5A7 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html IL4 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html PTPRC +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html CD3E +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html IL7 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html IL18 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html CD276 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html SOCS5 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html IL21 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html SART1 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html THY1 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html CD47 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html NCK2 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html SIRPG +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html NCK1 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html LCK +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html ZAP70 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html CD24 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html IL12B +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html ICOSLG +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html EBI3 +PWCOMMONS POSITIVE REGULATION OF T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_T_CELL_ACTIVATION.html CD28 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html FGD2 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html FGD1 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html CDC42EP2 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html CDC42EP1 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html TAOK2 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html CDC42EP4 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html FGD5 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html MYH9 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html FGD6 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html FGD3 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html FGD4 +PWCOMMONS REGULATION OF CELL SHAPE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_SHAPE.html CDC42EP5 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html EGFR +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html REPS2 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html GRB2 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html BCAR1 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html CBL +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html AFAP1L2 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html RPS6KA5 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html EPS15 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html NCK2 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html CDH13 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html CBLC +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html EREG +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html EPS8 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html ERBB2IP +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html EPGN +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html GAB1 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html TDGF1 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html TGFA +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html SHC1 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html SHC3 +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html EGF +PWCOMMONS EPIDERMAL GROWTH FACTOR RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMAL_GROWTH_FACTOR_RECEPTOR_SIGNALING_PATHWAY.html GRB7 +PWCOMMONS AMINO ACID DERIVATIVE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_BIOSYNTHETIC_PROCESS.html OAZ1 +PWCOMMONS AMINO ACID DERIVATIVE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_BIOSYNTHETIC_PROCESS.html GATM +PWCOMMONS AMINO ACID DERIVATIVE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_BIOSYNTHETIC_PROCESS.html PRG3 +PWCOMMONS AMINO ACID DERIVATIVE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_BIOSYNTHETIC_PROCESS.html ASMTL +PWCOMMONS AMINO ACID DERIVATIVE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_BIOSYNTHETIC_PROCESS.html ETNK1 +PWCOMMONS AMINO ACID DERIVATIVE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_BIOSYNTHETIC_PROCESS.html GAMT +PWCOMMONS AMINO ACID DERIVATIVE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_BIOSYNTHETIC_PROCESS.html SLC5A7 +PWCOMMONS AMINO ACID DERIVATIVE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_BIOSYNTHETIC_PROCESS.html CDO1 +PWCOMMONS AMINO ACID DERIVATIVE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_BIOSYNTHETIC_PROCESS.html BBOX1 +PWCOMMONS AMINO ACID DERIVATIVE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINO_ACID_DERIVATIVE_BIOSYNTHETIC_PROCESS.html TGFB2 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html MED12 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html MED24 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html IGF1 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html MED14 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html ARID1A +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html MED13 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html ESR2 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html RBM9 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html DAXX +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html CALCOCO1 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html PPARGC1B +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html MED4 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html YWHAH +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html MED30 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html MED16 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html UBR5 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html MED17 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html THRAP3 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html DDX54 +PWCOMMONS STEROID HORMONE RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_HORMONE_RECEPTOR_SIGNALING_PATHWAY.html MED1 +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html SREBF1 +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html PPP1R9B +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html CDKN1A +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html CHMP1A +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html NUAK2 +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html CDKN2B +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html ALB +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html FADS1 +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html TP53 +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html CARTPT +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html PCSK9 +PWCOMMONS CELLULAR RESPONSE TO EXTRACELLULAR STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_EXTRACELLULAR_STIMULUS.html ASNS +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html NOD2 +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html CARD8 +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html ACHE +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html CRTAM +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html CADM1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html ANG +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html INS +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html PYCARD +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html GLMN +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html NLRP3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html PYDC1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_SECRETION.html NLRP2 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html CDC6 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html SPHK1 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html SMAD3 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html AFAP1L2 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html ASNS +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html BIRC5 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html RCC1 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html CDC25C +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html CDK2 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html TGFB1 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html CHMP1A +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html CDKN2A +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html CDC123 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html BTG3 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html MYO16 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html FBXO5 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html CDK10 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html FOXC1 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html APBB2 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html APBB1 +PWCOMMONS REGULATION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MITOTIC_CELL_CYCLE.html DLG1 +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html ADSS +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html CTPS +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html FIGNL1 +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html NUDT5 +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html OLA1 +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html ACLY +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html AK5 +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html AMPD3 +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html UMPS +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html ADK +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html C16ORF7 +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html ENTPD4 +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html CTNS +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html GUK1 +PWCOMMONS RIBONUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RIBONUCLEOTIDE_METABOLIC_PROCESS.html NDUFS1 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html HSD17B11 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html PPARA +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html HACL1 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html PPARD +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html ECH1 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html HSD17B14 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html ECHS1 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html PPT1 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html HADHB +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html APOA5 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html HSD17B6 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html BDH2 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html CPT1B +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html STS +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html ACADM +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html CYP46A1 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html ACADS +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html PNPLA3 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html CPT1A +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html HAO1 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html ACADVL +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html CEL +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html YWHAH +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html GLA +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html PRDX6 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html HAO2 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html UGT2B4 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html NEU3 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html PLA2G4C +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html SMPD4 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html AKR1D1 +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html PLA2G4B +PWCOMMONS CELLULAR LIPID CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_CATABOLIC_PROCESS.html SMPD3 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html PPARD +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html FGF7 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html BTD +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html S100A7 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html FST +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html CRABP2 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html CDSN +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html SPINK5 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html TGFB2 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html GLI1 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html PLOD1 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html CTGF +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html ALOX12B +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT85 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT83 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html DHCR24 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html STS +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html FLOT2 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html UGCG +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html FOXN1 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT13 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT10 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html WAS +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html SCEL +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html IL20 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html PTHLH +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html NME2 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html EVPL +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT17 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRTAP5-9 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html ATP2C1 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT16 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT15 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT14 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html DSP +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html LAMC2 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html COL1A1 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html EMP1 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html RBP2 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html HOXB13 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html ALDH3A2 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT9 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html DCT +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html LAMB3 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html COL17A1 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html COL7A1 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT5 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html POU2F3 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT1 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html TGM3 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT2 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html TGM5 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html CALML5 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html ERCC3 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html ERCC2 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KLK7 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KLK5 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT31 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html GJB5 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT34 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html COL5A2 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html KRT32 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html LAMA3 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html ATP2A2 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html SPRR1A +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html CASP14 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html SPRR1B +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html BNC1 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html PTCH2 +PWCOMMONS EPIDERMIS DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EPIDERMIS_DEVELOPMENT.html FABP5 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html CADM1 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html BCAR1 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html IL28RA +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html APOBEC3G +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html SPINK5 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html APOBEC3F +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html TLR8 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html TGFB2 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html CFHR1 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html MAP3K7 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html CHRNA7 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html IFNK +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html CRTAM +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html IL29 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html POLH +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html SLA2 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html PRKCG +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html NFAM1 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html NCR1 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html SLIT2 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html TRAT1 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html IL20 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html THY1 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html UBE2N +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html TARBP2 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html LAT2 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html EREG +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html PTGDS +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html IL12A +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html CARTPT +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html GHRL +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html IL12B +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html TRAF2 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html MBL2 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html UBE2V1 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html UBE2V2 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html CX3CL1 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html AHSG +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html TNFRSF1A +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html KRT1 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html C2 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html TRAF6 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html SCG2 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html IL4 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html PTPRC +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html KLK8 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html IL8 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html CEBPG +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html MALT1 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html FOXP3 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html CD1D +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html LEP +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html CDH13 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html NPY +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html FYN +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html EEF1E1 +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html IKBKG +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html CD79A +PWCOMMONS REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RESPONSE_TO_STIMULUS.html GHSR +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html ZAK +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html MBIP +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html TLR6 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html DAXX +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html PDCD4 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP3K6 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP3K5 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html MDFIC +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html CXCR4 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP3K9 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html TDGF1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html SPRED2 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html TGFA +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html SHC1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html CHRNA7 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html SPRED1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html GNG3 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html PAK1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html FGF2 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html EGFR +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html DBNL +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html C5AR1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html MADD +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html PIK3CB +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html KIAA1804 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html PKN1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html PROK2 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html GRM4 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html ADRB2 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP4K5 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html PLCE1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html LAX1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html HIPK3 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html CD81 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP3K10 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html GHRL +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP3K11 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html ADORA2B +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html PTPLAD1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html ERBB2 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html C5 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html FPR1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP4K1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html TRIB3 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html TRIB2 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html TRIB1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html MAP3K2 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html DUSP16 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html ADRA2A +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html ADRA2C +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html CD24 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html EGF +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html GPS1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html MDFI +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html NF1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html DUSP22 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html TPD52L1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html SOD1 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html GPS2 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html DUSP2 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html EPGN +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html RGS3 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html RGS4 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html DUSP9 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html DUSP8 +PWCOMMONS REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MAP_KINASE_ACTIVITY.html DUSP6 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html FST +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html RBM9 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TCEAL1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF254 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TGFB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html EPC1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SIN3A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html WWP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF396 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SUPT5H +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html MYST1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html MYST4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TWIST2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TWIST1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html MYST3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF593 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZHX1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html MECP2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZHX2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF189 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZHX3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html NR0B2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html NR0B1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html CSDA +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html FOXN3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PA2G4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PIAS4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SMARCE1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF238 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TIMELESS +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TGIF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PRDM1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SUDS3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html HMGB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html EID1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html EID2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html GCLC +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SNX6 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ELK3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html VPS72 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html NR1H2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html VDR +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html MEIS2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html HEXIM2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html DRAP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html HEXIM1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html BCOR +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TCF25 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html RUNX2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html NKX2-5 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html HELLS +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF423 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html NKRF +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html MDFI +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html DMBX1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html BMP2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html CREBZF +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html KLF12 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html KLF10 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PHB +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html KLF11 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SMAD4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html RYBP +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SMAD3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SMAD2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SNW1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html UBP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html UIMC1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html BRCA1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html HDAC5 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html NR1I2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SMARCC2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html JAZF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html DNMT1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html RFX3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html RBPJ +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html HDAC8 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html KLF4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html E2F1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZBTB32 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PPARD +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html RSF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ARID4A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html E2F6 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html DEDD +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html NR6A1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SPI1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TP63 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF202 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html CTCF +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PAWR +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZEB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html GLI2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html HSBP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PDCD4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html DAXX +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF345 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html MEN1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF350 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html GFI1B +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF148 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PCGF6 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ATP8B1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html POU4F2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html NRG1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html NFX1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html KHDRBS1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ATF7IP +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF281 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SLA2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ARID5B +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html LDB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ARID5A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html NDUFA13 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TLE1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html FOSB +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html RB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html MXD4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html NRIP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html CHMP1A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html BPTF +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html EREG +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF136 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html MDM2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html RIPPLY1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ERN2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html MDM4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html COMMD7 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html CUX1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html NSD1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZFP161 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZMYND11 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html GLIS3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ING4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html BCLAF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TNF +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html GLIS2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html GLIS1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PML +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZBTB16 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF177 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF174 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html CALCA +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SUMO1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ORC2L +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html LANCL2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html GATAD2A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html POU2F1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PER1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html BCL3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PEX14 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html BCL6 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SUPT4H1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html FOXD3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ENO1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TBX3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TBX2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html VHL +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SIRT4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TRIM27 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF24 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SIRT5 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html TNP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html CENPF +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ILF3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html CBY1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PHF12 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SNAI2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SIRT1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html STAT3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html SIRT2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ATXN1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ZNF157 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ID2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html YAF2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ID1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html IRF7 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html DR1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html IRF8 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html GRLF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html PHF21A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html IRF2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ID4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION.html ID3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SLC9A7 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html MPV17 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CD52 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html BAK1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html AGTR1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html APP +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html APOE +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html LCAT +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CHRNA7 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CHRNA1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CDH23 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html FTL +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CLRN1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html C5AR1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html PPARGC1A +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html THY1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCR9 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCR8 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCR7 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html NPC1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html NPC2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCR6 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html RPS19 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html RHCG +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCR5 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ATP2C1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCR4 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCR3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCR2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html STC1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html IQCB1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html KCNMB3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html KCNMB4 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CLCN3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html HFE +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html PPT1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html BDKRB1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html BCL2L1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html BDKRB2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CALR +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html KCNMB2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html NPHP3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html PCDH15 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html RPS6 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ABCG1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CD55 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ETS1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html AVPR1B +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html AVPR1A +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SLC9A1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GRK1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html MCHR1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCKAR +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html HNF1A +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GLRA1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html USH1G +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SPI1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html BNIP3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ZNF675 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html EDNRA +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html DFNB31 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GPX1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html FXN +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SAA1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html NMUR2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html TRPV4 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CETP +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html XCR1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html MYC +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html USH2A +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CLN3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html AIFM3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html LYN +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCKBR +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GPR98 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html PROK2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html INHBA +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html USH1C +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html NPPB +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CLN5 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CLN6 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CLDN16 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCR1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html TFR2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCL23 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html BCL2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html PCSK9 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CD24 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html IL6 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html IL7 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html OPRL1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html HCLS1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ATP1A3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCL19 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html NPR1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ATP1A4 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ATP1A1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ATP1A2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SOD1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCL15 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SELS +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html TMPRSS3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCL11 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCL13 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCL14 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html LARGE +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html MT2A +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html NARFL +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html MC4R +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CP +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html BARD1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GNA15 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CASR +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ATOX1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html F2RL1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html FOXO3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CXCL12 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html APOA4 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html APOA2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html APOA1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SLC2A4 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GALR2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html APOA5 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html RGN +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SLC4A1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ACIN1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html BCL10 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html DDIT3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SLC34A3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html PLCE1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html EP300 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html HIF1A +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GYLTL1B +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CARTPT +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SLC40A1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GLP1R +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SRI +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCL1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html C3AR1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html DRD1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCL3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CAV1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCL2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html DERL1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GCLC +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CYSLTR1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ABCA2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ABCA1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ATP6V1B1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCL5 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html FTH1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CCL7 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html P2RY4 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html P2RY2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SFTPD +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SLC30A5 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html DYRK3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ANGPTL3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html MAFB +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ATP7A +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GCM2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SLC4A11 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CXCL13 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html RHOT1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html RHOT2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CACNA1C +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html XCL1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CACNA1A +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html IFI6 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ATP7B +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CXCR3 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html AKT1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ACVR1B +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ALAS2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html TPP1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CXCR4 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html NDUFS1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html AKR1C1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html KNG1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html LDB1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CDK6 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html ACVR2A +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html TARBP2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html LCK +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GHRL +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html TAC1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html EGLN2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html EGLN1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GLRX2 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CALCA +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CALCB +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html PTPRC +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html CEBPG +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html SLC12A4 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html NF1 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html MTL5 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html RHAG +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html RDH12 +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html GCK +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html HPX +PWCOMMONS HOMEOSTATIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HOMEOSTATIC_PROCESS.html BAX +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SLC8A1 +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SGK1 +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCN1B +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCN2B +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCN2A +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html ATP1A4 +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SLC34A3 +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SLC4A11 +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SLC17A3 +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SLC17A4 +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SLC17A2 +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCN9A +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCN4B +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCN11A +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCNN1G +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCN7A +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCNN1A +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCN5A +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCN4A +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCNN1D +PWCOMMONS SODIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/SODIUM_ION_TRANSPORT.html SCN10A +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html UBE2N +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html IL4 +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html EREG +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html CEBPG +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html PRKCG +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html TNFSF13 +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html GLI2 +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html RAD51 +PWCOMMONS POSITIVE REGULATION OF DNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_METABOLIC_PROCESS.html GLI1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html ACVRL1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html HTATIP2 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html IL18 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html TNFSF12 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html FOXO4 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html SPINK5 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html CANX +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html SHH +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html TGFB2 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html CUL7 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html ANG +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html ROBO4 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html RHOB +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html ERAP1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html CHRNA7 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html EGFL7 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html PDPN +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html MYH9 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html NCL +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html THY1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html PROK2 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html SERPINF1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html BTG1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html VEGFA +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html FOXC2 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html NPPB +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html ATPIF1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html EMCN +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html RNH1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html PML +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html PF4 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html AGGF1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html IL17F +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html EGF +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html ANGPTL3 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html RUNX1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html RASA1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html C1GALT1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html ANGPTL4 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html SCG2 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html COL4A3 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html COL4A2 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html CCM2 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html IL8 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html SPHK1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html NF1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html NPR1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html TNNI3 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html PLG +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html CDH13 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html STAB1 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html EPGN +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html NOTCH4 +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html AMOT +PWCOMMONS VASCULATURE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/VASCULATURE_DEVELOPMENT.html GLMN +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CASR +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html GNA15 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html ATOX1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html F2RL1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CD52 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CXCL12 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html BAK1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html AGTR1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html APP +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html GALR2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html RGN +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CHRNA7 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html SLC4A1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CHRNA1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html FTL +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CDH23 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CLRN1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html C5AR1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html DDIT3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html SLC34A3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html THY1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCR9 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCR8 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCR7 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html PLCE1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html GYLTL1B +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCR6 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html RHCG +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCR5 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCR4 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html ATP2C1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCR3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCR2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CARTPT +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html STC1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html SLC40A1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html GLP1R +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html KCNMB3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html IQCB1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html SRI +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCL1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html KCNMB4 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html C3AR1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html DRD1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CLCN3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCL3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCL2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html GCLC +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CYSLTR1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html HFE +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html PPT1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html BDKRB1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html BCL2L1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html BDKRB2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CALR +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCL5 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCL7 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html FTH1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html KCNMB2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html NPHP3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html P2RY4 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html P2RY2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html SLC30A5 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html PCDH15 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html ATP7A +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CD55 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html GCM2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html SLC4A11 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CXCL13 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html AVPR1B +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html AVPR1A +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html RHOT1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html RHOT2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html XCL1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CACNA1C +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CACNA1A +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html IFI6 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html ATP7B +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html GRK1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html MCHR1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCKAR +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html GLRA1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html USH1G +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html BNIP3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CXCR3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html EDNRA +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html GPX1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html FXN +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CXCR4 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html SAA1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html NMUR2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html TRPV4 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html XCR1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html MYC +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html NDUFS1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html USH2A +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html KNG1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CLN3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html AIFM3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCKBR +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html GPR98 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html PROK2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html LCK +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html USH1C +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html GHRL +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CLN5 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CLN6 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CLDN16 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCR1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html TFR2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html TAC1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html EGLN2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html GLRX2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CALCA +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CALCB +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCL23 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html BCL2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CD24 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html PTPRC +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html OPRL1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html SLC12A4 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html ATP1A3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html ATP1A4 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html MTL5 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCL19 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html ATP1A1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html ATP1A2 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html SOD1 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html RHAG +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCL15 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html TMPRSS3 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html SELS +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html RDH12 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCL11 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCL13 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CCL14 +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html LARGE +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html HPX +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html BAX +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html MT2A +PWCOMMONS CELLULAR HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_HOMEOSTASIS.html CP +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html ALDOA +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html SRI +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html MYL2 +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html MYBPC3 +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html PGAM2 +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html TTN +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html MYBPH +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html ATP2A1 +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html GAA +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html SMPX +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html MYOM1 +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html KBTBD10 +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html CASQ2 +GO STRIATED MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/STRIATED_MUSCLE_CONTRACTION_GO_0006941.html DTNA +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html GYPC +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html TUSC3 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html LDLR +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html ALG1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html B3GALT5 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html ALG2 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html B3GALT4 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html ALG5 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html TSPAN7 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html ALG6 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html TSPAN8 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html ALG8 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html POMGNT1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html POMT1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html B3GALNT1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html TRAK1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html RPN1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html OGT +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html TNIP1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html MAN1A2 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html FUT10 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html ALK +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html MAGT1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html CD37 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html BACE2 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html DOLPP1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html TM4SF4 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html SERP1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html TM4SF5 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html GCNT4 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html GALNT2 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html GCNT3 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html GALNT1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html FUT9 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html FUT8 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html GALNT7 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html FUT7 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html GALNT6 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html KEL +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html FUT6 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html FUT5 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html ST8SIA3 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html ST8SIA2 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html NECAB3 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html STT3B +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html IL17A +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html STT3A +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html B3GNT5 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html MPDU1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html FUT4 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html FUT1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html A4GNT +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html FUT2 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html GCNT1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html GAL3ST1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html SDF2 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html MGAT4B +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html MGAT4A +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html LIPA +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html B3GALT2 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html MAN1C1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html COG3 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html LARGE +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html COG7 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html ST8SIA4 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html DPM1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html DPM2 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html DPM3 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html LIPC +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html LRP2 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html ALG12 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html POFUT1 +PWCOMMONS GLYCOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCOPROTEIN_BIOSYNTHETIC_PROCESS.html COG2 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html PTGES3 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html CYP2J2 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html PRG3 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html FADS1 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html PTGS1 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html CD74 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html MIF +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html AKR1C3 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html CYP4F8 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html TNFRSF1A +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html AKR1C2 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html PTGDS +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html PTGES +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html LTA4H +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html CYP4F3 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html CYP4F2 +PWCOMMONS ICOSANOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/ICOSANOID_METABOLIC_PROCESS.html HPGD +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGZ +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html IMPA1 +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGY +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIK3C2A +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGV +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PI4KA +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html GPAA1 +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGU +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGT +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGS +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PI4KB +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGO +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGK +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGF +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGG +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGH +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PI4K2A +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html CD81 +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGB +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html DPM1 +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGC +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html DPM2 +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html DPM3 +PWCOMMONS PHOSPHOINOSITIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_BIOSYNTHETIC_PROCESS.html PIGA +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SEPT5 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SLC22A16 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SYT1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SNCAIP +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SLC22A18 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NRBP1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CADM1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html LTBP2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html AQP9 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html LMAN2L +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html USE1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html AQP5 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html AQP4 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html AQP7 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html AQP6 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html AQP1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html TPD52 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html AQP3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html IL11 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SCTR +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html AQP2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NLRC4 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html APOA2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html APOA1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html GBF1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html KCNK5 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html RAB26 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html GUCA2B +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html DNAJC1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SCAMP1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SCAMP3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CRTAM +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SCAMP2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html MYO6 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html BAIAP3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SLC34A1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html VTI1B +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html OPTN +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ERGIC1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ERGIC2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ERGIC3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html COPG2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html KRT18 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html BACE2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html RAB14 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CARTPT +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html VAMP3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html UNC13B +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html AKAP3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html KCNMB4 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ACHE +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CCL3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ARFGAP3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html PPY +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html STX7 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NAPG +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ADORA2B +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html COPZ1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html RER1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CCL8 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html RABEPK +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NAPA +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ABCA1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html PYDC1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ATP6V1B1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CCL5 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ARFGEF2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html LMAN1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html RIMS1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ARFGEF1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html KCNJ1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html LIF +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html STX18 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html INS +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html STX16 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CKLF +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html TMED10 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html DOPEY2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html DOPEY1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SRGN +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NPHP1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CARD8 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CIDEA +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SNAPIN +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ARFIP1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html FOXP3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html LIN7A +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CEL +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SYTL4 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html GLMN +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html GOSR2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html GOSR1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html GHSR +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CLCN5 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html COPA +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html FAM3D +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html TACR2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html FAM3B +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html PDIA4 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html DPH3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CANX +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html COPB2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NOD2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ANG +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NMUR1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NMUR2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html COPB1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SLC22A4 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html AP3B2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SLC22A2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ZW10 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html KNG1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html STX1A +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html RPH3AL +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html INHA +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html GRHPR +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NLRP3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NLRP2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html KIF1C +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html OSM +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html INHBB +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html GRM4 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html INHBA +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SLC26A3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html GHRH +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SCIN +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NPPB +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html GHRL +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html STEAP2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ARL4D +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html IFT88 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html PKDREJ +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html COPE +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html VIP +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CLDN16 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SNAP29 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html RAB3A +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html AVPR2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CPLX2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CPLX1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html BET1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CLCNKA +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CLCNKB +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html HRH3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SYN3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NFAT5 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SEC22A +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html PYCARD +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SEC22B +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SCG5 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SEC22C +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html EXOC5 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SNAP23 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SCNN1G +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SCNN1B +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SCNN1A +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SNAP25 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SCG2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html GUCA1B +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html RAB2A +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SERGEF +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html TBX3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html SCRN1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NLGN1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NPR1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html MON2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html COG3 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html CADPS +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html COG7 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html GCK +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NPHS2 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NPHS1 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html NLRP12 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html ATP6V0A4 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html YKT6 +PWCOMMONS SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/SECRETION.html COG2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html DBF4 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html IGHMBP2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html PRIM1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MUTYH +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html CDKN2D +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html PRIM2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html PMS2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MYST2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html PMS1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RBMS1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MCM3AP +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html GTPBP4 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html POLE +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RAD9A +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html POLB +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RNASEH2A +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html ORC1L +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RFC3 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RPAIN +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RFC4 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RFC1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html TBRG1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RAD17 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html HMGB2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html ENPP7 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html ACHE +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MRE11A +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html TIPIN +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html POLE2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html POLE3 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html EGF +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html S100A11 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html ATR +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html POLD4 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html POLD1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html POLD2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html KCTD13 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html ABL1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html DUT +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html NBN +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html NAP1L1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MLH1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html TERF2IP +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html GLI2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html PMS2L1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html GLI1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html CDT1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MCM7 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html ORC4L +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html DKC1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html NT5M +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html POLG2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html CDC6 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html CCDC88A +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html REV1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html NOL8 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html PRKCG +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MCM2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MCM3 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MCM5 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RAD50 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html CDK2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html PURA +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RAD51 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html EREG +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html CDK2AP1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html ORC5L +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html PTMS +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html REV3L +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html NUP98 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html WRNIP1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html POLA1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html KIN +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html POT1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RPA4 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RPA3 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RPA1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html TFAM +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html RPA2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html TYMP +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html ORC2L +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html SET +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html TSPYL2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html KRT7 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html TINF2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html TERF2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html EXO1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MSH6 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html UPF1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MSH3 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html NF2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MSH2 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html MSH5 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html GMNN +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html NASP +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html IGF1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html SPHAR +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html TP73 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html NAE1 +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html ORC3L +PWCOMMONS DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_REPLICATION.html REPIN1 +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html BID +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html GPX1 +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html BAK1 +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html CDKN2A +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html DNM1L +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html BBC3 +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html BAX +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html BCL2L1 +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html SFN +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html PMAIP1 +PWCOMMONS APOPTOTIC MITOCHONDRIAL CHANGES http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_MITOCHONDRIAL_CHANGES.html IFI6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html KATNB1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF5A +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PPT1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ARF6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html AHSG +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html AZU1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CDC42 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html GATA2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CDC42EP2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html SORBS3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CDC42EP1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ROBO1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html MAPT +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html SFTPD +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html DAZL +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ROBO2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CDC42EP4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html ARHGEF10L +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html EIF2B5 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CDC42EP5 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html SPACA3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html DAZ1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html NF2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html CBL +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html PPARGC1A +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html LDLRAP1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html SLIT2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html BOLL +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html AMIGO1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html UBE2N +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html NCK2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html NCK1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html TPPP +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html GHRL +PWCOMMONS POSITIVE REGULATION OF CELLULAR COMPONENT ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_COMPONENT_ORGANIZATION_AND_BIOGENESIS.html FAF1 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html SEPT5 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html KCNMB4 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html SYT1 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html RAB3A +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html SNCAIP +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html FAM3D +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html FAM3B +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html RIMS1 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html IL11 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html LIF +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html HRH3 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html SYN3 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html SCG5 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html SNAP25 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html STX1A +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html TBX3 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html BAIAP3 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html NLGN1 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html SNAPIN +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html INHA +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html INHBB +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html OSM +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html GRM4 +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html INHBA +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html GCK +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html GHRH +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html GHRL +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html CARTPT +PWCOMMONS GENERATION OF A SIGNAL INVOLVED IN CELL CELL SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/GENERATION_OF_A_SIGNAL_INVOLVED_IN_CELL_CELL_SIGNALING.html GHSR +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN8 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN7 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CADM3 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html MPZL2 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN9 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html ACVRL1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CADM1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN4 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN3 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN6 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html LMO4 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN5 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html PTEN +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CDSN +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html APOA4 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CD47 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html REG3A +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CDKN2A +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CD93 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html ROBO1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html ROBO2 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html COL11A1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html SYK +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html DLG1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html ALX1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html EGFR +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html BCL10 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html GTPBP4 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html VANGL2 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html MGP +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CD164 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CERCAM +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CTNNA3 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html THY1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html AMIGO1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CD84 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html AMIGO2 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html NCAM2 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html AMIGO3 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html SIRPG +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CD34 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html ATP2C1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html NPTN +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN2 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CNTN4 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN16 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN17 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CDK5R1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html EMCN +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN18 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN19 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html TNF +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html PKHD1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html NINJ2 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html ITGB2 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN10 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CX3CL1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN11 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CRNN +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN12 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html ITGB1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN14 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CDH5 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN15 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CALCA +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html ANXA9 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html PVRL1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html PVRL3 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html TRO +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html PVRL2 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html B4GALNT2 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html PKD1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html RASA1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html BMP1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html NF2 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html COL13A1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html LGALS7 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html NLGN1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN22 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN20 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CELSR1 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CLDN23 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CDH13 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CD209 +PWCOMMONS CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CELL_ADHESION.html CYFIP2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html RARRES3 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CNOT8 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html RARRES1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html AIF1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html TNFSF15 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html MXI1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html FOXO4 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html TGFB2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html MAGED1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CUL2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CUL5 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CDKN2A +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CDKN2B +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CDKN2C +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CDKN2D +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html IL1B +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ODZ1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CUL1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html IL1A +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html GTPBP4 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CGRRF1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html IL29 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html SSTR4 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html PTHLH +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html SSTR5 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html SIRPG +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html NME2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html SSTR2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ADAMTS8 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html SSTR3 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ALOX15B +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html SSTR1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html NME1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CD33 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html TBRG1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html MNT +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ATPIF1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ADAMTS1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html TGFB1I1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html EIF2AK2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html EMP3 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ENPP7 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html LST1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html IFITM1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CHEK1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html UMOD +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html SESN1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html FTH1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html NPM1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html PRKRA +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html BAI1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html SFTPD +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html GML +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html B4GALT7 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html RUNX3 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html COL18A1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html TP53I11 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html GNRH1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html KLF10 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html KLF11 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html S100A11 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html BRCA2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html GAS8 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html RERG +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CDKN1C +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html NOTCH2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html TSC1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html NUP62 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ETS1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html FABP3 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html MYO16 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html HGS +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html GLMN +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ADRA1A +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html UTP20 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html LDOC1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html FABP7 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html SST +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html PRKRIR +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html KLF4 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html FABP6 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html OPRM1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html DLEC1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ACVRL1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html IGFBP7 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html IGFBP6 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html BAP1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html PAWR +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html PTEN +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html WARS +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html BNIPL +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CGREF1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ANG +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CCL3L3 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CDK10 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html DLG5 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CDC6 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CTBP1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html RBBP4 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CTBP2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CDK6 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CD164 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html MXD4 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html MFN2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html OSM +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html TNFRSF9 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html NCK2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html PPM1D +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html EREG +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html BTG2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html BTG1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html BTG4 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html BTG3 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html SCIN +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html GHRL +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html MDM2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html MDM4 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html TM4SF4 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ING5 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CXCL1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html FRK +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ING4 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html NDN +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html TNFRSF8 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ABI1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html DEC1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html POU1F1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CCL23 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html SPEG +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html KRT4 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html GPNMB +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ING1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html FGFBP1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html QSOX1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html SCG2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html APC +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html NOX4 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html COL4A3 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html IL6 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html PDS5B +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html IL8 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html NF2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html VHL +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html TBX5 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html NF1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CDKN3 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html PLG +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CDH13 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html CUL4A +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html EEF1E1 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html ATP8A2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html TOB2 +PWCOMMONS NEGATIVE REGULATION OF CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_PROLIFERATION.html TOB1 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL4 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html PTPRC +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL7 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html CD3E +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL18 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html CD276 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html TNFSF13 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html SOCS5 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL21 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html SART1 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html THY1 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html NCK2 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html CD47 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html SIRPG +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html NCK1 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html LCK +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html ZAP70 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL12A +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html CD24 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL12B +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html ICOSLG +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html EBI3 +PWCOMMONS POSITIVE REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_LYMPHOCYTE_ACTIVATION.html CD28 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html NBN +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html ZAK +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html HUS1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html PML +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html CHEK1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html CHEK2 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html BRSK1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html SFN +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html TRIAP1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html PCBP4 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html BCL3 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html DYRK2 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html C16ORF5 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html GML +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html CCNA2 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html ATRIP +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html MYO6 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html AIFM1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html RINT1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html CIDEB +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html TP53 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html CIDEA +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html RAD9A +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html IFI16 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html ATR +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html BRCA1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html NEK11 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html TP73 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html FOXN3 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html NAE1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html RAD1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html EEF1E1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html ABL1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html SMC1A +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION.html RAD17 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html BCL10 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html TBX3 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html TBX5 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html LMO4 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html VANGL2 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html FTO +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html DSCAML1 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html TBX1 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html MBNL1 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html CELSR1 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html SOD1 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html GLI2 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html ZIC1 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html TINAG +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html SHH +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html CEP290 +PWCOMMONS EMBRYONIC MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_MORPHOGENESIS.html PTCH1 +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html FYB +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html CBLB +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html TRPS1 +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html KPNA6 +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html KPNA5 +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html NCKIPSD +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html KPNA4 +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html KPNA3 +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html KPNB1 +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html KPNA2 +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html KPNA1 +PWCOMMONS NLS BEARING SUBSTRATE IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/NLS_BEARING_SUBSTRATE_IMPORT_INTO_NUCLEUS.html RERE +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html CCKAR +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html COPA +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html PPY +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html SLC15A1 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html LDLR +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html PGC +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html PPYR1 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html VIPR1 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html SCTR +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html APOA4 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html AKR1C2 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html CYP39A1 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html ACSL1 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html GALR1 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html PRSS2 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html PRSS3 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html GALR2 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html TFF2 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html NPC1L1 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html TFF3 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html AMY2B +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html HTR3A +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html NMU +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html AKR1C1 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html CTRL +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html MUC2 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html CCKBR +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html CAPN9 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html PPARGC1A +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html CEL +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html SSTR2 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html BAAT +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html SSTR1 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html MLNR +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html AKR1B10 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html MEP1A +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html CTSE +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html MEP1B +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html FABP2 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html PYY +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html AKR1D1 +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html SST +PWCOMMONS DIGESTION http://www.broadinstitute.org/gsea/msigdb/cards/DIGESTION.html AMY1B +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html SLC22A16 +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html FOLR3 +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html FOLR2 +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html FOLR1 +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html HPX +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html PDPN +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html SLC22A4 +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html PPT1 +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html SLC22A5 +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html SLC19A1 +PWCOMMONS COFACTOR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_TRANSPORT.html SLC46A1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html E2F1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZBTB32 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html PPARD +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html E2F6 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html FST +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html NR6A1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html SPI1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZNF202 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html CTCF +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZEB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html PAWR +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html HSBP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html GLI2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZNF254 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html TCEAL1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZNF345 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MEN1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html EPC1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html GFI1B +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZNF148 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html POU4F2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html SUPT5H +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html TWIST1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html NFX1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZNF281 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZNF593 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html SLA2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MECP2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZNF189 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html RB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html NR0B2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html FOSB +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html CSDA +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MXD4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html NRIP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZNF238 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html BPTF +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZNF136 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MDM2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html TGIF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MDM4 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html PRDM1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html CUX1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html NSD1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZFP161 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html HMGB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZMYND11 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html EID1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html GLIS3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html GLIS1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZNF177 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html VPS72 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZNF174 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ORC2L +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MEIS2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html HEXIM2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html DRAP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html HEXIM1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html BCL6 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html SUPT4H1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html TCF25 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html NKX2-5 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html FOXD3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ENO1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html MDFI +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html KLF12 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html VHL +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html KLF10 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html KLF11 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html TRIM27 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html RYBP +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html SMAD3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html SNAI2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html STAT3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html ZNF157 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html DR1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html IRF7 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html IRF8 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html JAZF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html DNMT1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html PHF21A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html IRF2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FROM_RNA_POLYMERASE_II_PROMOTER.html HDAC8 +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html ME1 +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html ADSS +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html ADCY7 +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html CTPS +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html ADORA2A +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html AK5 +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html ABCA1 +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html HPRT1 +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html PPAT +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html TYMS +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html UMPS +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html UCN2 +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html ADM +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html OXER1 +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html GRM8 +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html ADK +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html C16ORF7 +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html GUK1 +PWCOMMONS NUCLEOTIDE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_BIOSYNTHETIC_PROCESS.html PDZD3 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html AZU1 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html NF2 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html NF1 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html CDK6 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html SOD1 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html EIF2B2 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html EIF2B3 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html EIF2B1 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html SLIT2 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html EIF2B4 +PWCOMMONS GLIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/GLIOGENESIS.html EIF2B5 +PWCOMMONS NUCLEOTIDE SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_SUGAR_METABOLIC_PROCESS.html UAP1 +PWCOMMONS NUCLEOTIDE SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_SUGAR_METABOLIC_PROCESS.html GMDS +PWCOMMONS NUCLEOTIDE SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_SUGAR_METABOLIC_PROCESS.html UGDH +PWCOMMONS NUCLEOTIDE SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_SUGAR_METABOLIC_PROCESS.html B4GALNT2 +PWCOMMONS NUCLEOTIDE SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_SUGAR_METABOLIC_PROCESS.html TSTA3 +PWCOMMONS NUCLEOTIDE SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_SUGAR_METABOLIC_PROCESS.html EXTL2 +PWCOMMONS NUCLEOTIDE SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_SUGAR_METABOLIC_PROCESS.html PMM2 +PWCOMMONS NUCLEOTIDE SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_SUGAR_METABOLIC_PROCESS.html UGP2 +PWCOMMONS NUCLEOTIDE SUGAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_SUGAR_METABOLIC_PROCESS.html SLC35A3 +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html GPAA1 +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html FNTB +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGK +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html APOA2 +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html APOA1 +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html FNTA +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGF +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGG +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html ATG7 +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGH +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGB +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html CHM +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGC +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PGGT1B +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGA +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html AIPL1 +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGZ +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGY +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGV +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGU +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGT +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGS +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html PIGO +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html DPM1 +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html DPM2 +PWCOMMONS LIPOPROTEIN BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/LIPOPROTEIN_BIOSYNTHETIC_PROCESS.html DPM3 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html AIFM1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html PML +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html CIDEB +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html TP53 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html CIDEA +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html IFI16 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html SFN +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html CHEK2 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html BRCA1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html TP73 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html PCBP4 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html BCL3 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html DYRK2 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html ABL1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION RESULTING IN INDUCTION OF APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_RESULTING_IN_INDUCTION_OF_APOPTOSIS.html C16ORF5 +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html SEPT5 +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html SNAP29 +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html STX5 +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html SHROOM2 +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html MYO1A +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html AP1M2 +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html NLGN1 +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html TMED10 +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html LRMP +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html SNAP23 +PWCOMMONS VESICLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_LOCALIZATION.html YKT6 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html TRAF2 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html CADM1 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html IL18 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html TNFSF13 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html TGFB1 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html CD74 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html IL10 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html TLR8 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html MAP3K7 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html C2 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html TRAF6 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html EBI3 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html IL4 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html PTPRC +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html BCL10 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html CRTAM +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html SLA2 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html IL27 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html MALT1 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html SOCS5 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html FOXP3 +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html IL18BP +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html CD40LG +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html IL12A +PWCOMMONS ADAPTIVE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ADAPTIVE_IMMUNE_RESPONSE.html IL12B +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html SNCA +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html CBX4 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html FOXO1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html GDNF +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html CIAPIN1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html TNFSF18 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html CDKN2D +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html TPT1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html FAS +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html DDAH2 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html IL1A +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html API5 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html OPA1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BRAF +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html CRYAA +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html SOCS2 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html CRYAB +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html SOCS3 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html RELA +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BCL2A1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html HRK +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html HBXIP +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BCL2L10 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html NME5 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html CD40LG +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html TXNDC5 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html TNFAIP8 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html HSPB1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html ERC1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html MYO18A +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html TNFRSF6B +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html HMGB1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html GCLC +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html CCL2 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html MCL1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BCL2L2 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BCL2L1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html HSPA1B +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html PEA15 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html AKT1S1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html NPM1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html GLO1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html ARHGDIA +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html CFLAR +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BECN1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html SPHK1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html TAX1BP1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html NOTCH2 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BFAR +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html HDAC3 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html RNF7 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html HDAC1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html SFRP1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html IFI6 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html RTN4 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html IER3 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html HTATIP2 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BNIP3 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html NFKB1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html PRDX2 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html TRIAP1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html GPX1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BAG4 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BAG1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html PAX7 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html DHCR24 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html NOL3 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html PROK2 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html SERPINB9 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BNIP1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html PSEN1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BNIP2 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html TNFRSF10D +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html HIPK3 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html CFL1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html SERPINB2 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html AVEN +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html FAIM3 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html NAIP +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html SEMA4D +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html GSTP1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html ALOX12 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html PRKCZ +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html YWHAZ +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html TNF +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html RTKN +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html IGF1R +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html SH3GLB1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BCL2 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html TNFRSF18 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html DAD1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html AATF +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html CD27 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html RASA1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html CD28 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html HSPA9 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html PIK3R2 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html IL3 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html IL2RB +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html TBX3 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html ANXA1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BIRC6 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BIRC5 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html ANXA5 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BIRC3 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html ANXA4 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html CDH13 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html HSP90B1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html SON +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BAX +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BNIP3L +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html BRE +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html MPO +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html TIAF1 +PWCOMMONS ANTI APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/ANTI_APOPTOSIS.html IL2 +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html MDFI +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html NFKBIL2 +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html TAF3 +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html PDIA3 +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html NFKBIE +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html PDIA2 +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html SUPT7L +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html FAF1 +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html TOPORS +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html MXI1 +PWCOMMONS MAINTENANCE OF CELLULAR PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_CELLULAR_PROTEIN_LOCALIZATION.html NFKBIL1 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html SLA2 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html MED12 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html IGF1 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html MED24 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html MED14 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html ARID1A +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html MED13 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html ESR2 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html RBM9 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html DAXX +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html CALCOCO1 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html PPARGC1B +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html MED4 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html MED30 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html YWHAH +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html MED16 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html MED17 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html UBR5 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html THRAP3 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html DDX54 +PWCOMMONS INTRACELLULAR RECEPTOR MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/INTRACELLULAR_RECEPTOR_MEDIATED_SIGNALING_PATHWAY.html MED1 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html GPS1 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html NF1 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html DUSP22 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html MBIP +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html PDCD4 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html GPS2 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html DUSP2 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html LAX1 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html RGS3 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html HIPK3 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html RGS4 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html DUSP16 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html SPRED2 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html SPRED1 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html DUSP9 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html DUSP8 +PWCOMMONS NEGATIVE REGULATION OF MAP KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MAP_KINASE_ACTIVITY.html DUSP6 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html NBN +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html ZAK +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html HUS1 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html RINT1 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html PML +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html RAD9A +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html CHEK1 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html CHEK2 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html ATR +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html BRSK1 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html NEK11 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html FOXN3 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html NAE1 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html RAD1 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html TRIAP1 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html PCBP4 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html GML +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html ATRIP +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html CCNA2 +PWCOMMONS DNA DAMAGE CHECKPOINT http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_CHECKPOINT.html RAD17 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CCNT2 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CKS1B +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDK5R1 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDK5R2 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html C13ORF15 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CCNT1 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html PKMYT1 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CHEK1 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html BCCIP +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CCNG1 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html PTEN +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html LATS1 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDC37 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html LATS2 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CCNE2 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDKN2A +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDKN2B +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html DIRAS3 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html HEXIM2 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html HEXIM1 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDKN2C +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDKN2D +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDK5RAP3 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDK5RAP1 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html SERTAD1 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html APC +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html ANAPC2 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDC6 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html GTPBP4 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CCNK +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html HERC5 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDK7 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDKN3 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDC25C +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDC25A +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html GTF2H1 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CDKN1C +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html MNAT1 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CCND1 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CCND3 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CCND2 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html CKS2 +PWCOMMONS REGULATION OF CYCLIN DEPENDENT PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYCLIN_DEPENDENT_PROTEIN_KINASE_ACTIVITY.html GADD45A +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html STX7 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html NRBP1 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html NAPG +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html LMAN2L +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html COPZ1 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html BET1 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html USE1 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html RER1 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html NAPA +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html LMAN1 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html COPB2 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html GBF1 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html STX18 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html COPB1 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html STX16 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html SEC22A +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html AP3B2 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html SEC22B +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html TMED10 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html SEC22C +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html DOPEY2 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html SNAP23 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html EXOC5 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html DOPEY1 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html GOLGA5 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html ZW10 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html RAB2A +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html SCAMP1 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html SCAMP3 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html SCAMP2 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html OPTN +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html ERGIC1 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html MON2 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html ERGIC2 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html ERGIC3 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html KIF1C +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html COG3 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html COPG2 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html KRT18 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html COG7 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html RAB14 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html GOSR2 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html GOSR1 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html STEAP2 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html YKT6 +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html COPE +PWCOMMONS GOLGI VESICLE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/GOLGI_VESICLE_TRANSPORT.html COG2 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html ABI3 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html ABI2 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html ITGB2 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html ABI1 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL31RA +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html CLCF1 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html TDGF1 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html EGFR +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL3 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL5 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html NF2 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html LYN +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL29 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html HCLS1 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html SOCS1 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html STAT1 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL20 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html CD80 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html DYRK1A +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html F2 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html CD81 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL12A +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html TNK2 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html ABL1 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html ABL2 +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html F2R +PWCOMMONS PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL22RA2 +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html SERGEF +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html FAM3D +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html CIDEA +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html DPH3 +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html IL11 +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html OSM +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html LIF +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html INHBB +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html APOA2 +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html APOA1 +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html NLRP12 +PWCOMMONS NEGATIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SECRETION.html SRGN +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html METAP2 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html APH1A +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html ADAMTS13 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html APH1B +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html PPP2R5C +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html CUZD1 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html MIPEP +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html TTN +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html UHMK1 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html CAMKK2 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html AKT1 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html IGF1R +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html ECE2 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html MAP3K3 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html PAK2 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html MAP3K9 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html PRSS3 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html LMTK2 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html PCSK9 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html SCG5 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html PSENEN +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html PAK1 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html PCSK5 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html INSR +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html TAF1 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html MYO3A +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html MEX3B +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html KIAA1804 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html TAOK3 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html MOBKL1A +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html SMG1 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html FURIN +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html STK4 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html CDKL5 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html NCSTN +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html EIF2AK1 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html PSEN1 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html DYRK1A +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html MAPK15 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html PSEN2 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html NLRP12 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html MAP3K10 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html PTCH1 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html TNK1 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html EIF2AK3 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html MAP3K13 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html MAP3K12 +PWCOMMONS PROTEIN PROCESSING http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_PROCESSING.html MAP3K11 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html NOX4 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html ME3 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html NOX5 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html PRG3 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html DRD5 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html PREX1 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html BNIP3 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html NDUFA13 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html SOD1 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html SOD2 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html APOA4 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html NDUFS4 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html AOX1 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html GPX3 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html SFTPD +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html CCS +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html NDUFS3 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html NDUFS1 +PWCOMMONS OXYGEN AND REACTIVE OXYGEN SPECIES METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/OXYGEN_AND_REACTIVE_OXYGEN_SPECIES_METABOLIC_PROCESS.html MT3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SYT1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html OXA1L +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html OCLN +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TSPAN4 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CAPZA2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CAPZA1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SLC7A9 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CD2AP +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SLC7A6 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SLC7A7 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TAPBP +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html VCL +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PICALM +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html APOE +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html KIFAP3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SH3BGR +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html FAS +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html INSR +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SYK +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html BCL10 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html IKBKAP +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html GJD3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html DARS +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SCUBE3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CD3E +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SCUBE1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PICK1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html MATN1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TAZ +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html ACTN2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CD40 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PPARGC1A +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html ADRM1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html VAMP3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html ATPIF1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html AMFR +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html LAMC1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SURF1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html EIF2AK3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SEPT7 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SEPT9 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TRAF1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html STK16 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TRAF2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html EID2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html DAG1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html HFE +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html ANLN +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html RIMS1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SRC +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html LLGL1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CD74 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PXN +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CDC42EP2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html UPK1A +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CDA +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html AGRN +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PARD6B +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html MLL +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TGFBR1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CREBBP +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SMAD4 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html EPRS +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SMAD3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html MALT1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SEPT11 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html LIN7A +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PPIH +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html MYH11 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CHAF1A +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CHAF1B +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TLN1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html COX11 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html WASF3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TLN2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html COX10 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html GJA1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TP63 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SKAP2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html GJA4 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html GJA5 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html NDUFS7 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CDC42 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html NDUFS5 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html RANBP9 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html NOD2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html NOD1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html NDUFS4 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html NUBP1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html ZFYVE9 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html GPX3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html GOPC +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html NDUFS8 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html IL1RAP +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TRPV5 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html DLG4 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html COX18 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html FANCA +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html AKR1C1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html COX15 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html FANCC +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html ZW10 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html IRAK1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PPP2R1A +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html APCS +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CCDC88C +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html ALDH5A1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html VIL1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TP53 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html NLRP3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SLC9A3R1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html WAS +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html HMGA1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SLC9A3R2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html THEG +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html RAD51 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html STOM +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html ADRB2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TPPP +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html NUP205 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html MDM2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html MDM4 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html WASL +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html KPNA3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html MAP3K11 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html FMOD +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html REPS2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PARD3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TCAP +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html APC2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PML +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html NFS1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html HCFC1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html AASS +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html HPRT1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SF3B3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CLDN14 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html GJC1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html IGF1R +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CD9 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html LPXN +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html CCT6B +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PTK2B +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html DGKD +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PEX14 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TGM3 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PEX13 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html WIPF1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html APBA1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html GEMIN5 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html SCO1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html APC +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html IL2RB +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html MUC20 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html BCS1L +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TUBGCP2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html MIS12 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html MNAT1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html VWF +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TJP1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TMEM48 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PRLR +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html BAX +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html TCEB2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html MAPK8IP2 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html FAF1 +PWCOMMONS PROTEIN COMPLEX ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_COMPLEX_ASSEMBLY.html PTCH2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ALDH8A1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CYP3A5 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html RARRES2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SGMS2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html GBGT1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PTGS1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SGMS1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SHH +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html AGPS +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html LCAT +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html APOF +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PLA1A +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html NSMAF +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html APOM +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html WWOX +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SGPL1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html UGCG +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html NPC1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PITPNM3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html NPC2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ALOX15B +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html HSD11B2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PLA2G2E +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PLA2G2D +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html HSD17B11 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html HACL1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ENPP7 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ACADSB +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html HSD17B14 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html TFCP2L1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PPT1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PDSS1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CD74 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PDSS2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html HADHB +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PLAA +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SERINC2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SERINC5 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html LPCAT1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SERINC1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PEMT +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html NR1H4 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CYP46A1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SPHK1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html MCAT +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html FDXR +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ABCG1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html APOL2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CEL +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CYP7B1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html NR1I2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html MLYCD +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PLA2G4C +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html IDI1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PLA2G4B +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html BMP6 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PPARA +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PPARD +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CYP2J2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PTEN +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ASAH1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ASAH2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ST6GALNAC6 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html AGPAT6 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ST6GALNAC4 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CYP39A1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PTGES +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html GPX4 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html GNPAT +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CETP +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html AGPAT2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DHCR24 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html AGPAT1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CLN3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html STS +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PRG3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIK3C2A +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PI4KA +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html LGALS13 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PI4KB +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html HAO1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PTGDS +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ADM +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html HAO2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SLC27A6 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PLA2G6 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PLA2G3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SLC27A2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CLN8 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PLA2G5 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SLC27A5 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DEGS1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ALOX12 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CLN6 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ECH1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html HSD3B1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html HSD3B7 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html GPAA1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html MIF +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DGKE +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DHCR7 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ABCD2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html HSD17B6 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CERK +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html NSDHL +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SOAT1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html IL4 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CPT1B +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SOAT2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PNLIPRP2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html FADS1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html FADS2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DGKK +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SOD1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CPT1A +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html GBA2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html YWHAH +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html GLA +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html LARGE +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DPM1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DPM2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DPM3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html HPGD +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html NR5A1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html TSPO +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html LASS5 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html STARD3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html APOA1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html APOA5 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ST3GAL6 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SPTLC1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html TAZ +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html NR0B2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html NR0B1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PNPLA3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PECI +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CHPT1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PNPLA8 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PLCE1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html AKR1B10 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PI4K2A +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html MVK +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html NEU3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CROT +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CNBP +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html HDLBP +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ST8SIA1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html APOC2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ST8SIA3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html B3GNT5 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html APOC3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SCARB1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PCYT1B +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html B4GALT4 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CYP19A1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html LPL +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html FDPS +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SMG1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html BAAT +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html FAAH +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html LASS1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ST8SIA5 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ACOX2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PTGES3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html IMPA1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ALG1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CYP11B2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ACOT2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SULT2B1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ACOT1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIP5K1A +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ACOT4 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SC4MOL +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PEX7 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ACOX3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ACOT9 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html AKR1C3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGK +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html AKR1C2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html AKR1C4 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGF +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ANG +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGG +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGH +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGB +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ACOT12 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGC +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html NPC1L1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PCYT2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PLCB2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html AKR1C1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGA +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGZ +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ACADM +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CYP11A1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SULT2A1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGY +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ACADS +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGV +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGU +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ADIPOR2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGT +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ADIPOR1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DHRS9 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGS +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html UGT1A1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIGO +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ACADVL +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DHRS2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DHRS3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html UGT2B17 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DGAT1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html DGAT2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PRDX6 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CD81 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html UGT2B11 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html UGT2B15 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html AKR1D1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PGS1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ECHS1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html STUB1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html TNFRSF1A +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html ETNK1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PLCD1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html BDH2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PPAP2A +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PIK3R1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html B4GALNT1 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html MBTPS2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html PSAP +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html OXSM +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html RDH12 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html RDH11 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CYP4A11 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CYP4F8 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html GLYAT +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html UGT2B4 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html LTA4H +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CYP4F3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html CYP4F2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SCP2 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SMPD4 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SMPD3 +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html RETSAT +PWCOMMONS CELLULAR LIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_LIPID_METABOLIC_PROCESS.html SMPD2 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html FGD2 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html FGD1 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html TAOK2 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html MYH9 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html CDC42 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html CDC42EP2 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html CDC42EP1 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html FGD5 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html CDC42EP4 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html FGD6 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html FGD3 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html FGD4 +PWCOMMONS REGULATION OF CELL MORPHOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_MORPHOGENESIS.html CDC42EP5 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html LALBA +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html SPACA3 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html S100A7 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html CAMP +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html DEFB103A +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html PGLYRP1 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html TLR3 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html STAB2 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html DEFB127 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html TLR6 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html AZU1 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html CFP +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html WFDC12 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html NLRC4 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html NOD2 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html NOD1 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html PGLYRP4 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html STAB1 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html PGLYRP2 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html PGLYRP3 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html IL12A +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html DEFB118 +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html SPN +PWCOMMONS DEFENSE RESPONSE TO BACTERIUM http://www.broadinstitute.org/gsea/msigdb/cards/DEFENSE_RESPONSE_TO_BACTERIUM.html DMBT1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SEPT5 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SYT1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html NRBP1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html PDLIM7 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html LMAN2L +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html USE1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html VPS33B +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ITSN1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ADORA1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RAB1A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html GATA2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html HOOK2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html PICALM +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html PACSIN3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html GBF1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html VPS4B +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html VPS4A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RAB26 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SCAMP1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SCAMP3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SCAMP2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html MYO6 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html LRP1B +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html VTI1B +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html COLEC12 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html AP4M1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html OPTN +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ERGIC1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ERGIC2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html VTI1A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ERGIC3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html COPG2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html KRT18 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html LYST +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RAB14 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html VAMP3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RAB13 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html AKAP3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html KALRN +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RAB7A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CCL3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html STX7 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html NAPG +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ADORA2A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html COPZ1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SNX2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SNX1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CCL8 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RER1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html HFE +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RABEPK +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html NAPA +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SNX4 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html PPT1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ARF6 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SNX3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ABCA1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CCL5 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html LMAN1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ARFGEF2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ARFGEF1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RIMS1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html AHSG +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ADRB3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html DOCK1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html FOLR1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html STX18 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RAC1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html STX16 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SFTPD +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html TMED10 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html DOPEY2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html DOPEY1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html HIP1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html MRC1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CPNE6 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SPTBN4 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html TINAGL1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html LIN7A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CORO1C +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RABEP1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html TSC2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CPNE1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SPTBN2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SYTL4 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html BET1L +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CPNE3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SYTL2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html GOSR2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html GOSR1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CLEC7A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CLTCL1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SYTL1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SEC24B +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html MSR1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html LDLR +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html AP2S1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SORL1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SYNJ1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ASGR1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html COPB2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html AP1S1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html FXN +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ZFYVE16 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ACTR1A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html COPB1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html NECAP2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html AP3B2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RHOB +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html GOLGA5 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html GOLGA4 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ZW10 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SEC23A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RAMP3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html STX6 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RAMP2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html STX5 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CLN3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SPACA3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html PRKCI +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RPH3AL +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ARHGAP27 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ATP6V1H +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html PI4KB +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html M6PR +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html LDLRAP1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html LRPAP1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ELMO1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html KIF1C +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ANKRD27 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html ADRB2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CHMP1A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html IGF2R +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SCIN +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RAB5A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html TOM1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html LRMP +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html STEAP2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html EPN1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html PKDREJ +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html COPE +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SEC23B +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html STON2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SNAP29 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CPLX2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html AP1M2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html STON1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CPLX1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html GULP1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html BET1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html EEA1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SCARF1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html AMPH +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html AZU1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SQSTM1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html FCN2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html FCGR1A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html FCN1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SEC22A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SEC22B +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SEC22C +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SNAP23 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CD24 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html EXOC5 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RAB2A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CBL +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SCRN1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html NLGN1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html STAB2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html MON2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CADPS +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html COG3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html SH3BP4 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CDH13 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html COG7 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html STAB1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RAB35 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html RAB22A +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html MAPK8IP3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html LRP8 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html MAPK8IP1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html LRP2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html YKT6 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html LRP3 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html DNM1 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html CD14 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html COG2 +PWCOMMONS VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/VESICLE_MEDIATED_TRANSPORT.html KIF20A +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html XRCC4 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html NBN +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html MRE11A +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html XRCC6 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html POLA1 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html UBE2V2 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html LIG4 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html RAD52 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html SOD1 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html BRCA1 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html RAD50 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html XRCC6BP1 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html SETX +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html RAD51 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html UBE2N +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html RAD21 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html VCP +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html RAD54B +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html ERCC4 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html NHEJ1 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html FEN1 +PWCOMMONS DOUBLE STRAND BREAK REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/DOUBLE_STRAND_BREAK_REPAIR.html CIB1 +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html INHBB +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html INHBA +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html IL6 +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html NLRP12 +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html SFTPD +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html GHRL +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html BCL3 +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html INHA +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html GHSR +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html SIGIRR +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html IMPA1 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html GPAA1 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIP5K1A +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PTEN +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html SERINC2 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGK +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html SERINC5 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html APOA1 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGF +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGG +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html SERINC1 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html LCAT +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGH +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PEMT +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGB +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PLA1A +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGC +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html CETP +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PCYT1B +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html AGPAT2 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIK3R1 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGA +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html AGPAT1 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGZ +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGY +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIK3C2A +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html TAZ +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGV +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PI4KA +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGU +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGT +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html SMG1 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGS +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PI4KB +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PIGO +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PITPNM3 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PI4K2A +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html CD81 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html DPM1 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html DPM2 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html DPM3 +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PLA2G4C +PWCOMMONS GLYCEROPHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLYCEROPHOSPHOLIPID_METABOLIC_PROCESS.html PLA2G4B +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html GNPDA1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html BTRC +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html PGD +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html RNF217 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html RNASEH1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html ISG20 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html MIOX +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html CPA2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html FBXO22 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html ANAPC2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html ANAPC5 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html ANAPC4 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBR3 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html RNASEH2A +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html GNS +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html PGLS +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UHRF2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBR5 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html MGAM +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html FBXL4 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html AMFR +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html XRN2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html ALDOA +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html FZR1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html DERL2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html SYVN1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html DERL1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html PABPC4 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html PFKFB1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html ALDOB +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html NEDD8 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html ANAPC10 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html HSPA1B +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html CHIT1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html ARIH1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2D3 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2D2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html RNF11 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2D1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html FBXO7 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html NPLOC4 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html SMG6 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html SMG5 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html GUSB +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html SMG7 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html SMG1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html CDC23 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html PCNP +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html CDC20 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2L3 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html PSMC5 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html VCP +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html POP1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html SMURF2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html SMURF1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2E1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html KIAA0368 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html TSG101 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2G1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2G2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html AUH +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html TREH +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html ZFP36 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html ABCE1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2A +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html PFKL +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UFD1L +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2I +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html PFKM +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2H +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html HYAL4 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2C +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2B +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE2K +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html GAA +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html ERN2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBB +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html SIAH2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE3A +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html HK1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html TKTL1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html EDEM1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html STUB1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html SQSTM1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html RNASET2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html ECD +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html USP33 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html RNF144B +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UPF2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html RNASE2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html RNASE3 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE4A +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html UBE4B +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html RNASE6 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html PARK2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html SELS +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html GBA3 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html GAPDHS +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html GBA2 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html PSMD14 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html GSPT1 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html PPP1R8 +PWCOMMONS CELLULAR MACROMOLECULE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_MACROMOLECULE_CATABOLIC_PROCESS.html PYGB +PWCOMMONS MRNA SPLICE SITE SELECTION http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_SPLICE_SITE_SELECTION.html SFRS6 +PWCOMMONS MRNA SPLICE SITE SELECTION http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_SPLICE_SITE_SELECTION.html SFRS5 +PWCOMMONS MRNA SPLICE SITE SELECTION http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_SPLICE_SITE_SELECTION.html SFRS8 +PWCOMMONS MRNA SPLICE SITE SELECTION http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_SPLICE_SITE_SELECTION.html SFRS9 +PWCOMMONS MRNA SPLICE SITE SELECTION http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_SPLICE_SITE_SELECTION.html SF1 +PWCOMMONS MRNA SPLICE SITE SELECTION http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_SPLICE_SITE_SELECTION.html SLU7 +PWCOMMONS MRNA SPLICE SITE SELECTION http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_SPLICE_SITE_SELECTION.html SF3A2 +PWCOMMONS MRNA SPLICE SITE SELECTION http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_SPLICE_SITE_SELECTION.html SFRS1 +PWCOMMONS MRNA SPLICE SITE SELECTION http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_SPLICE_SITE_SELECTION.html SF3A1 +PWCOMMONS MRNA SPLICE SITE SELECTION http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_SPLICE_SITE_SELECTION.html SF3A3 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html SEPT5 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html SNAP29 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html SYT1 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html CPLX2 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html CCL3 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html CPLX1 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html CCL8 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html RABEPK +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html CCL5 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html ARFGEF2 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html ARFGEF1 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html RIMS1 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html RAB26 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html NLGN1 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html SCRN1 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html RPH3AL +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html VTI1B +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html LIN7A +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html CADPS +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html SCIN +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html SYTL4 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html VAMP3 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html YKT6 +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html PKDREJ +PWCOMMONS EXOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/EXOCYTOSIS.html AKAP3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html F2RL3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GNA15 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html ADORA3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html ADCY7 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html EDN2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html LHCGR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html VIPR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GHRHR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html BTK +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html AGTR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html PTGIR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html HTR1B +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GALR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html MC1R +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html LTB4R +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GALR3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GALR2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html RGN +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html PRKACB +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GLP2R +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html HTR1D +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html HTR1F +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html HTR1E +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html EGFR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html C5AR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html NUDT4 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html PICK1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html HTR4 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html TRAT1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html PTHLH +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CRHR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html SSTR4 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CRHR2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html SSTR5 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html PLCE1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html LAT2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html SSTR2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html SSTR3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html SSTR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CCR3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html HTR7 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html HTR6 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html MC2R +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CCR2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GLP1R +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html ACR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html DRD1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GNAI3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CCL2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html ADORA2B +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GNAI2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html DRD2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html DRD5 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html ADCYAP1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html ADRB3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html P2RY6 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html P2RY4 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CNR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html P2RY2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html PLCH1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CNR2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html P2RY1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html ADRA2A +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html TBL3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html SPHK1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html HOMER1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html LAT +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html RGS1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html NPY +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html AVPR1B +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html LTB4R2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html MTNR1B +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html ADRA1B +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html AVPR1A +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GRK5 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CORT +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html ADRA1D +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html MTNR1A +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html OPRM1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html MCHR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CCKAR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html TACR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html WASF2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GABBR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GABBR2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CAMKK2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html EDNRA +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html EDNRB +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html NDUFS4 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html ANG +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html NMUR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html NMUR2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html MC5R +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CAP1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CALCRL +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html XCR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html PLCB2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CCKBR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html PTGER4 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html SLA2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GRM5 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GRM4 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html ADRB2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CHRM5 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GRM3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html ADRB1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GRM2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GNAQ +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GHRH +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CHRM2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GRM8 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GRM7 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CHRM1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GIPR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GNAS +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html TSHR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html PRKD3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GAP43 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html PTAFR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CALCR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html AVPR2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html PARD3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CCR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html NPY2R +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html OPRK1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html FPR1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GCGR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html GPR3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html AZU1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CALCA +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html HRH1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html HRH3 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html HRH2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html MC3R +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html PPAP2A +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CAP2 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html IL8 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html OPRL1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html NF1 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html NPY1R +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html CDH13 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html P2RY11 +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html MC4R +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html NMBR +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html HTR2B +PWCOMMONS SECOND MESSENGER MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/SECOND_MESSENGER_MEDIATED_SIGNALING.html OPRD1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ADORA3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ADCY7 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html LHCGR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html VIPR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GHRHR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html HTR1B +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html PTGIR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html MC1R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GALR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GALR3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GALR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html PRKACB +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GLP2R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html HTR1D +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html HTR1F +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html HTR1E +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html HTR4 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CRHR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html PTHLH +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html SSTR4 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CRHR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html SSTR5 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html SSTR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html SSTR3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html SSTR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CCR3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html HTR7 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html MC2R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html HTR6 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CCR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GLP1R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ACR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html DRD1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CCL2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GNAI3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ADORA2B +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GNAI2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html DRD2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html DRD5 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ADCYAP1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ADRB3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CNR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CNR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ADRA2A +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html TBL3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html RGS1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html NPY +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html LTB4R2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ADRA1B +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html MTNR1B +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GRK5 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CORT +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ADRA1D +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html MTNR1A +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html OPRM1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html MCHR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html WASF2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GABBR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GABBR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html EDNRA +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html EDNRB +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html MC5R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CALCRL +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CAP1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html XCR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html PTGER4 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GRM4 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CHRM5 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GRM3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ADRB2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GRM2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html ADRB1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GRM8 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GHRH +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CHRM2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GRM7 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GIPR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GNAS +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html TSHR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CALCR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html AVPR2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html NPY2R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html OPRK1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CCR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html FPR1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GCGR +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html GPR3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CALCA +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html HRH3 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html HRH2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html MC3R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html CAP2 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html OPRL1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html NF1 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html NPY1R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html P2RY11 +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html MC4R +PWCOMMONS G PROTEIN SIGNALING COUPLED TO CYCLIC NUCLEOTIDE SECOND MESSENGER http://www.broadinstitute.org/gsea/msigdb/cards/G_PROTEIN_SIGNALING_COUPLED_TO_CYCLIC_NUCLEOTIDE_SECOND_MESSENGER.html OPRD1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html RAG1AP1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html DICER1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html DMAP1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html FOS +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html EPC1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html GPX1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html DIRAS3 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html DGCR8 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html SMARCD1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html GATAD2A +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html H2AFY +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html DNMT3B +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html HELLS +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html ATF7IP +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html DNMT3A +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html CREBZF +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html PICK1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html TRIM27 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html SIRT4 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html SIRT5 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html TNP1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html ARID1A +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html IGF2 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html HMGA1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html SIRT1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html HDAC5 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html ATRX +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html H2AFY2 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html DNMT1 +PWCOMMONS REGULATION OF GENE EXPRESSION EPIGENETIC http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GENE_EXPRESSION_EPIGENETIC.html GLMN +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html NCBP2 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html NFKBIE +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html TNFSF14 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html ABCA2 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html CDH1 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html MXI1 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html TGFB1 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html UHMK1 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html BCL3 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html KHDRBS1 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html MDFI +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html CRYAA +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html NUDT4 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html CRYAB +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html NF1 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html SMAD3 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html NLRP3 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html NFKBIL1 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html FLNA +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html NFKBIL2 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html GSK3B +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html NLRP12 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html FAF1 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html TRIP6 +PWCOMMONS REGULATION OF INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_INTRACELLULAR_TRANSPORT.html BARD1 +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html KNG1 +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html PROK2 +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html PLCE1 +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html SMTN +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html KCNB2 +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html NMUR1 +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html SPHK1 +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html MYH11 +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html ADRA1A +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html CNN1 +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html SOD1 +GO SMOOTH MUSCLE CONTRACTION http://www.broadinstitute.org/gsea/msigdb/cards/SMOOTH_MUSCLE_CONTRACTION_GO_0006939.html NMU +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html KCNH1 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html MYL6 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html MYOD1 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html CACNB2 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html MYEF2 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html TTN +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html MYL6B +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html CHRNA1 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html IFRD1 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html BOC +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html MYF6 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html BMP4 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html COL4A4 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html FOXL2 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html TBX3 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html ACTA1 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html TAZ +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html MYF5 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html NRD1 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html MYOZ1 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html MBNL1 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html CSRP3 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html KRT19 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html NOTCH1 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html MAPK12 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html SVIL +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html MYH11 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html CACNA1H +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html UBB +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html ADAM12 +PWCOMMONS SKELETAL MUSCLE DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SKELETAL_MUSCLE_DEVELOPMENT.html IGFBP3 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html STX5 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html EEA1 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html ABCA1 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html TINAGL1 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html M6PR +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html VTI1A +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html MON2 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html ANKRD27 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html ADRB2 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html SQSTM1 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html ZFYVE16 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html RAB35 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html LYST +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html STX16 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html RAB14 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html VPS4B +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html BET1L +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html RHOB +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html TOM1 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html DOPEY2 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html GOSR1 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html DOPEY1 +PWCOMMONS ENDOSOME TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ENDOSOME_TRANSPORT.html YKT6 +PWCOMMONS PROTEIN AMINO ACID ADP RIBOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_ADP_RIBOSYLATION.html ART3 +PWCOMMONS PROTEIN AMINO ACID ADP RIBOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_ADP_RIBOSYLATION.html SIRT4 +PWCOMMONS PROTEIN AMINO ACID ADP RIBOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_ADP_RIBOSYLATION.html SIRT5 +PWCOMMONS PROTEIN AMINO ACID ADP RIBOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_ADP_RIBOSYLATION.html PARP3 +PWCOMMONS PROTEIN AMINO ACID ADP RIBOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_ADP_RIBOSYLATION.html SIRT6 +PWCOMMONS PROTEIN AMINO ACID ADP RIBOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_ADP_RIBOSYLATION.html PARP1 +PWCOMMONS PROTEIN AMINO ACID ADP RIBOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_ADP_RIBOSYLATION.html PARP2 +PWCOMMONS PROTEIN AMINO ACID ADP RIBOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_ADP_RIBOSYLATION.html SIRT1 +PWCOMMONS PROTEIN AMINO ACID ADP RIBOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_ADP_RIBOSYLATION.html ART1 +PWCOMMONS PROTEIN AMINO ACID ADP RIBOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_ADP_RIBOSYLATION.html SIRT3 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html CASR +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html ACHE +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html OSTF1 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html STATH +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html ZNF675 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html GLI2 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html ATP6V1B1 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html AHSG +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html GLI1 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html CALCA +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html DSPP +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html TPP1 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html RUNX2 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html TWIST2 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html SRGN +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html BMP4 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html KL +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html IL7 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html COL13A1 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html DMP1 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html NF1 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html MGP +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html CDK6 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html SPARC +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html ANKH +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html MC4R +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html CARTPT +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html ATP6V0A4 +PWCOMMONS BONE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/BONE_REMODELING.html ACVR1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html ALS2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html LIMA1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html ARF6 +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html CXCL12 +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html LATS1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html NEBL +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html NCK2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html CDC42EP2 +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html GSN +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html NCK1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html CAPG +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html TMSB4Y +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html RASA1 +PWCOMMONS REGULATION OF CELLULAR COMPONENT SIZE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_COMPONENT_SIZE.html CDC42EP5 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html METAP1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html TUSC3 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html METAP2 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html DPH3 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html IL31RA +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html AKT1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html PRMT7 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html PRMT8 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html CLCF1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html PRMT5 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html TDGF1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html RPN1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html EGFR +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html IL29 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html LYN +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html SOCS1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html STK4 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html IL20 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html MAGT1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html EP300 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html CD80 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html HIPK3 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html F2 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html CD81 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html IL12A +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html MAP3K12 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html TPST1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html TPST2 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html ABI3 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html MAP4K1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html ABI2 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html ITGB2 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html ABI1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html UHMK1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html STT3B +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html STT3A +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html TNKS +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html IVL +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html IL3 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html P4HB +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html IL5 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html NF2 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html PDF +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html MAP1D +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html HCLS1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html CREBBP +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html SMG1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html STAT1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html GSK3B +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html DYRK1A +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html DPM1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html DPM2 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html DPM3 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html TNK2 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html ABL1 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html ABL2 +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html F2R +PWCOMMONS PEPTIDYL AMINO ACID MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_AMINO_ACID_MODIFICATION.html IL22RA2 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html BMI1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html FGF8 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html LMO4 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html ARNT2 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html GLI2 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html ZIC1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html LSR +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html SHH +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html TGFB2 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html TDGF1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html CEP290 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html BCL10 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html NANOG +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html ADAM10 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html NKX2-6 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html VANGL2 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html PTPRR +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html UBR3 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html MBNL1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html CDK5 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html SCEL +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html SLIT2 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html EYA2 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html NCOA6 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html RIPPLY1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html EGFL8 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html KIAA1217 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html TNFAIP1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html CDK5R1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html DSCAML1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html TRIM15 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html T +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html NPM2 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html RASA1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html MDFI +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html NAT8 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html MLL +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html TBX3 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html NASP +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html TBX5 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html SMAD5 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html FTO +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html SMAD2 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html TBX1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html SMAD1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html CELSR1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html RICTOR +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html SOD1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html RACGAP1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html TINAG +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html NOTCH4 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html PTCH1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html PBX1 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html NR5A2 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html PBX3 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html KLF4 +PWCOMMONS EMBRYONIC DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/EMBRYONIC_DEVELOPMENT.html PBX4 +PWCOMMONS POSITIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NCK2 +PWCOMMONS POSITIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42EP2 +PWCOMMONS POSITIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SORBS3 +PWCOMMONS POSITIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NF2 +PWCOMMONS POSITIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAPT +PWCOMMONS POSITIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NCK1 +PWCOMMONS POSITIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KATNB1 +PWCOMMONS POSITIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARF6 +PWCOMMONS POSITIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGEF10L +PWCOMMONS POSITIVE REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42EP5 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html GALNT2 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html GYPC +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html GCNT4 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html GCNT3 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html GALNT1 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html LDLR +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html GALNT7 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html GALNT6 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html POMGNT1 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html POMT1 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html TRAK1 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html DPM1 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html DPM2 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html DPM3 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html A4GNT +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html OGT +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html GCNT1 +PWCOMMONS PROTEIN AMINO ACID O LINKED GLYCOSYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_O_LINKED_GLYCOSYLATION.html POFUT1 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD2 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ALS2 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD1 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RALBP1 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html NF1 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ARHGAP27 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ARF6 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html DMPK +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html MFN2 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html NOTCH2 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html PLCE1 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html CDC42BPG +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html TSC1 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RASGRP4 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RAC1 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html CDC42BPA +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ABRA +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD5 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD6 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD3 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD4 +PWCOMMONS REGULATION OF SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html CDC42BPB +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html UTS2 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html ACVRL1 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html PTGS2 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html CORIN +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html ATP6AP2 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html CYP11B2 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html PTGS1 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html BRS3 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html NPR2 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html SOD1 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html GCGR +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html CALCA +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html AGTR2 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html ACE +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html RENBP +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html CHGA +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html AGT +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html REN +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html CARTPT +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html ERAP2 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html GNB3 +PWCOMMONS REGULATION OF BLOOD PRESSURE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BLOOD_PRESSURE.html NPPA +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html PARD6B +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html PARD3 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html CD3G +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html CAP2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html BRSK2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html PRKCI +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html CCL4 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html MARK2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html SFRP5 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html CDC42 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html WNT1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html ANK1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html CRB1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html MAP7 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html CLASP2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html CAP1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html SPN +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html DLG1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CELL POLARITY http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CELL_POLARITY.html CDC42BPB +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html POLL +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html MMS19 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html RAD23B +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html DDB1 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html RAD23A +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html TP53 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html BRCA2 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html LIG4 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html XAB2 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html ERCC8 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html ATXN3 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html ERCC5 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html XPC +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html ERCC6 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html DDB2 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html ERCC3 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html ERCC4 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html NTHL1 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html ERCC1 +PWCOMMONS NUCLEOTIDE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_EXCISION_REPAIR.html ERCC2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FST +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF254 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TCEAL1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html EPC1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SIN3A +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF396 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SUPT5H +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TWIST2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TWIST1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF593 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZHX1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MECP2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZHX2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF189 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZHX3 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NR0B2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html CSDA +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NR0B1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FOXN3 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PA2G4 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF238 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SMARCE1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TGIF1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PRDM1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html HMGB1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html EID1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html VPS72 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MEIS2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html HEXIM2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html HEXIM1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html DRAP1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html BCOR +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TCF25 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NKX2-5 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html HELLS +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MDFI +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html BMP2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html KLF12 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html KLF10 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html KLF11 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SMAD4 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html RYBP +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SMAD3 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SMAD2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html HDAC5 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SMARCC2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html JAZF1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html DNMT1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html RBPJ +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html HDAC8 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html KLF4 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html E2F1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZBTB32 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PPARD +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html RSF1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ARID4A +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html E2F6 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NR6A1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SPI1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TP63 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF202 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html CTCF +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZEB1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PAWR +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html GLI2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html HSBP1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html DAXX +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF345 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MEN1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html GFI1B +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF148 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html POU4F2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NFX1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF281 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ATF7IP +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html LDB1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ARID5B +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SLA2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ARID5A +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NDUFA13 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html RB1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FOSB +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MXD4 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NRIP1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html CHMP1A +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html BPTF +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF136 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html RIPPLY1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MDM2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html MDM4 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html CUX1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html NSD1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZFP161 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html GLIS3 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZMYND11 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ING4 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html GLIS1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZBTB16 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF177 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF174 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ORC2L +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html GATAD2A +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PEX14 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html BCL6 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SUPT4H1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ENO1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html FOXD3 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TBX3 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TBX2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html VHL +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SIRT4 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TRIM27 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SIRT5 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html TNP1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ILF3 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PHF12 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html CBY1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SNAI2 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html SIRT1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html STAT3 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html ZNF157 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html DR1 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html IRF7 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html IRF8 +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html PHF21A +PWCOMMONS NEGATIVE REGULATION OF RNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RNA_METABOLIC_PROCESS.html IRF2 +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html CDC6 +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html ENPP7 +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html GTPBP4 +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html TSPYL2 +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html NF2 +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html GMNN +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html TIPIN +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html S100A11 +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html RAD9A +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html ATR +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html RAD17 +PWCOMMONS NEGATIVE REGULATION OF DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DNA_REPLICATION.html CDT1 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html STON2 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html SPACA3 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html STON1 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html AP2S1 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html CBL +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html ARF6 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html PPT1 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html LDLRAP1 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html AHSG +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html AZU1 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html CDH13 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html GATA2 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html PACSIN3 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html ZFYVE16 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html RAC1 +PWCOMMONS REGULATION OF ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOCYTOSIS.html SFTPD +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html FMOD +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html EID2 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html ACVRL1 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html SNX6 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html LTBP2 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html GDF5 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html STUB1 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html TGFB1 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html CITED2 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html MAP3K7 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html FOXH1 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html PEG10 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html FNTA +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html CDKN2B +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html ZFYVE9 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html LEFTY2 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html IL17F +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html GDF9 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html SMAD7 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html TGFBR1 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html KLF10 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html SMAD4 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html CIDEA +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html SMAD3 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html SMAD2 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html LEFTY1 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html CDKN1C +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html HIPK2 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html TGFBR3 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html GDF10 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html TGFBRAP1 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html GDF15 +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html HPGD +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html ENG +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html BMPR1A +PWCOMMONS TRANSFORMING GROWTH FACTOR BETA RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSFORMING_GROWTH_FACTOR_BETA_RECEPTOR_SIGNALING_PATHWAY.html ACVR1 +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html IL4 +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html PTPRC +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html CD3E +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html IL18 +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html IL27 +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html CD276 +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html IL21 +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html NCK2 +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html NCK1 +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html SFTPD +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html GLMN +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html IL12B +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html CD24 +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html ICOSLG +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html EBI3 +PWCOMMONS REGULATION OF T CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_T_CELL_PROLIFERATION.html CD28 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html CRNKL1 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html CWC15 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html TRA2A +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SNRPD1 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SNRPD2 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SFRS6 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SFRS5 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html DHX38 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SFRS8 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html USP39 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SFRS9 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html DBR1 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html GEMIN8 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SFRS2IP +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html DDX20 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html GEMIN6 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html GEMIN7 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html GEMIN5 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html PRPF31 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SRPK2 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SF1 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SNW1 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SF3A2 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SFRS1 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SF3A1 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SF3A3 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html DDX39 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SLU7 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html PHF5A +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html SIP1 +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html TXNL4A +PWCOMMONS RNA SPLICINGVIA TRANSESTERIFICATION REACTIONS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICINGVIA_TRANSESTERIFICATION_REACTIONS.html BAT1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html SMARCAD1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html XRCC5 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RAD51C +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html HMGB1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html XRCC3 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html BLM +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html MRE11A +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RAG1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html UBE2V2 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html CHEK1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html TNFSF13 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html SPO11 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html IL7R +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html SYCP1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html TGFB1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RPA1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html IGHMBP2 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RAD21 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RAD51L1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html SETMAR +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RAD51L3 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html ERCC4 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html ERCC1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html IL4 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html EXO1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html LIG1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html MSH5 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html MSH4 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html LIG3 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html TSN +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RAD52 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RAD54L +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html ATM +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html BRCA1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RAD50 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RAD51 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html UBE2N +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html ATRX +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html REC8 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RPAIN +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html CD40LG +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html TEP1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RAD54B +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html RUVBL2 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html DMC1 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html KPNA2 +PWCOMMONS DNA RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_RECOMBINATION.html KPNA1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html PPFIA2 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ACVRL1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html PPFIA1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ITGA11 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ITGA10 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html PTEN +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html COL17A1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html CDKN2A +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html SORBS1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html FXC1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html PKD2 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html PKD1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ANGPTL3 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html THBS3 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html RASA1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html PARVG +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html NF2 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html TAOK2 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html COL13A1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html NF1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ACTN1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ITGA2 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ACTN2 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html CDK6 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ITGA3 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ACTN3 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ECM2 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html THY1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html CDH13 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html LYVE1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html TSC1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ITGB1BP1 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html FBLN5 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ITGA7 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html TESK2 +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html SGCE +PWCOMMONS CELL MATRIX ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATRIX_ADHESION.html ADAM15 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html TPST1 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html TPST2 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html ABI3 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html ABI2 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html ITGB2 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html ABI1 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html IL31RA +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html CLCF1 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html TDGF1 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html EGFR +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html IL3 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html IL5 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html IL29 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html LYN +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html NF2 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html HCLS1 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html SOCS1 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html STAT1 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html IL20 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html CD80 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html CD81 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html DYRK1A +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html F2 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html IL12A +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html TNK2 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html ABL1 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html ABL2 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html IL22RA2 +PWCOMMONS PEPTIDYL TYROSINE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/PEPTIDYL_TYROSINE_MODIFICATION.html F2R +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CADM1 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html ELF4 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html IL18 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html JAG2 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html SPINK5 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html SART1 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CD47 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html NLRC3 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html INS +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html SFTPD +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html ZAP70 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CD2 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CD4 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CD24 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html EBI3 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CD28 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CD7 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html IL4 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html PTPRC +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CRTAM +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html SIT1 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CD3D +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CD3E +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html IL7 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html IL27 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html SLA2 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CD276 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html SOCS5 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html IL21 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html FOXP3 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CD1D +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html THY1 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html NCK2 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html LAT +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html SIRPG +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html LAX1 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html NCK1 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html LCK +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html GLMN +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html CLEC7A +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html IL12B +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html NHEJ1 +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html ICOSLG +PWCOMMONS T CELL ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/T_CELL_ACTIVATION.html IL2 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html E2F1 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html TAF1 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html CDC6 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html CDC23 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html TBRG4 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html CDK6 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html RB1 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html FOXO4 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html CDC25C +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html CDK2 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html CDKN1C +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html PRUNE2 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html GFI1B +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html CDK10 +PWCOMMONS G1 PHASE http://www.broadinstitute.org/gsea/msigdb/cards/G1_PHASE.html MAP3K11 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html IL18 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR1 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html TNFRSF8 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR3 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR4 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR6 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR7 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR8 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR9 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html AZU1 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html APOA2 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html NOD1 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html IL17F +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html SFTPD +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html BCL3 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html LTB +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html EBI3 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html SPN +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html CD28 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html IL4 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html BCL10 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html IL6 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html PRG3 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html IL27 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html CEBPG +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html IL9 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html CD276 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html INHA +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html FOXP3 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html SIGIRR +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html INHBB +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html INHBA +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html MAST2 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html EREG +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html NLRP12 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html GHRL +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html GLMN +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html IRF4 +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html IL12B +PWCOMMONS CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_BIOSYNTHETIC_PROCESS.html GHSR +PWCOMMONS POSITIVE REGULATION OF EPITHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION.html EGFR +PWCOMMONS POSITIVE REGULATION OF EPITHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION.html LAMA1 +PWCOMMONS POSITIVE REGULATION OF EPITHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION.html NME2 +PWCOMMONS POSITIVE REGULATION OF EPITHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION.html EPGN +PWCOMMONS POSITIVE REGULATION OF EPITHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION.html NME1 +PWCOMMONS POSITIVE REGULATION OF EPITHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION.html ERBB2 +PWCOMMONS POSITIVE REGULATION OF EPITHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION.html FGF10 +PWCOMMONS POSITIVE REGULATION OF EPITHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION.html TGFA +PWCOMMONS POSITIVE REGULATION OF EPITHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION.html LAMC1 +PWCOMMONS POSITIVE REGULATION OF EPITHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_EPITHELIAL_CELL_PROLIFERATION.html LAMB1 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html RAB2A +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html NRBP1 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html LMAN2L +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html BET1 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html USE1 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html LMAN1 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html ERGIC1 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html ERGIC2 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html ERGIC3 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html COG3 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html STX18 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html SEC22A +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html SEC22B +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html SEC22C +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html GOSR2 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html YKT6 +PWCOMMONS ER TO GOLGI VESICLE MEDIATED TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ER_TO_GOLGI_VESICLE_MEDIATED_TRANSPORT.html ZW10 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html EHMT1 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html PHB +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html CREBBP +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html HDAC10 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html HDAC11 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html PPARGC1A +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html SIRT2 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html RPS6KA5 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html UBE2N +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html SET +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html HUWE1 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html PRMT7 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html PRMT8 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html WHSC1L1 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html RBM14 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html CARM1 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html MYST1 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html NSD1 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html MAP3K12 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html MYST4 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html HDAC6 +PWCOMMONS HISTONE MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/HISTONE_MODIFICATION.html MYST3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html AURKAIP1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html XRCC6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html RORB +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MED21 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CITED2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html EPC1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html FOXF1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html FOXF2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SUPT5H +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html EIF2B5 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html PCBD2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html RXRA +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MED12 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MED14 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MED13 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html PPARGC1B +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html BOLL +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html HNF4A +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MED17 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CRTC1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html AFAP1L2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ARF6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html PLAGL1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html FOXH1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CDC42EP2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MAML3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TCF4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TCF3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ARHGEF10L +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CDC42EP5 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html BMP4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html UTF1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MAML1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MAP2K3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MAML2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CREBBP +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ESRRG +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MSTN +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SMAD3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SMAD2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html NUP62 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html NOTCH4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TNK2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html BMP7 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html BMP6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html PPARA +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html HNF1B +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ELF1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html HNF1A +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ACVRL1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ELF4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SPI1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TP63 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html GLI2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ZBTB38 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CAMKK2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html GLI1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MAPT +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ATF7IP +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html LYN +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html PRG3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CCNH +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TP53 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ARHGEF11 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html RAD51 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html GTF2H1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SCAP +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MED6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html INHBA +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html NCK2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CCND1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CARD14 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CCND3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html EREG +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CCND2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html NCK1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html IL12A +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html IL12B +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html NSD1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CLOCK +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CLN6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MED1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html NUFIP1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html EHF +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html AZU1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MRPL12 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SQSTM1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html BCL3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html DAZL +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SUPT4H1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CD28 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html FOXD3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html IL4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html IL3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html DAZ1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html IL6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html IL5 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TBX5 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html HCLS1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html IL9 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TRIM28 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ILF3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TP73 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html GAPDHS +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MNAT1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html YWHAH +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ILF2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html YAF2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html FOXE1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html PPP2R4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html PHF5A +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html RBM14 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MMS19 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html NCBP1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TLR1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ARNT2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html FOXO1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html EIF5A +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TLR3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TNFSF13 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TLR4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html FOXO3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TLR6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TLR7 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TLR8 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TLR9 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html IL31RA +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html APOA2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MDFIC +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SMARCD3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ATG7 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SMARCD1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html GATA4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MYST1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SAMD4A +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SPN +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html EBI3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MYST4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MYST3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html EGFR +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html BCL10 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MYO6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html IL29 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html IL27 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ARID1A +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ARNTL +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ELL3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TRERF1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html IL20 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html HIF1A +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TFAP2B +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SMARCA1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ITLN1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html KATNB1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ELK1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ABCA1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html DYRK2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html EGF +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html RUNX1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html UBE2D1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ZNF423 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html EPAS1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TAF8 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CD276 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html FOXP3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ATF6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ATF4 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html AKTIP +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SMARCC1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html DYRK1B +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SMARCC2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html HIVEP3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html GLMN +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html HSP90AB1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html RSF1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CTCF +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CLCF1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ANG +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TPP1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html PAX8 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html MKL2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html LTB +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html EGR1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html HSP90AA1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html PRKCG +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CDK7 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html HMGA1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html NRIP1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html PRPF6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html UBE2N +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CD80 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html BPTF +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ZMIZ2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TPPP +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CD81 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html NCOA6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html UBB +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ACVR1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html GLIS3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html GLIS2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html GLIS1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TNFRSF8 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html STUB1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html TNFRSF1A +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html NPAS2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html RGMB +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ERCC6 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ERCC3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html NFATC2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html ERCC2 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CEBPG +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html DEFB103A +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html CREB5 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html GCK +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html SP1 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html THRAP3 +PWCOMMONS POSITIVE REGULATION OF CELLULAR METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELLULAR_METABOLIC_PROCESS.html IRF4 +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html KLK8 +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html ADCY8 +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html CRHBP +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html NF1 +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html S100B +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html APOE +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html FYN +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html GALR3 +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html GALR2 +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html CRH +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html DLG4 +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html ACSL4 +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html IL1RAPL1 +PWCOMMONS LEARNING AND OR MEMORY http://www.broadinstitute.org/gsea/msigdb/cards/LEARNING_AND_OR_MEMORY.html VLDLR +PWCOMMONS S PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE_OF_MITOTIC_CELL_CYCLE.html CHMP1A +PWCOMMONS S PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE_OF_MITOTIC_CELL_CYCLE.html DDX11 +PWCOMMONS S PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE_OF_MITOTIC_CELL_CYCLE.html POLD1 +PWCOMMONS S PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE_OF_MITOTIC_CELL_CYCLE.html MYO16 +PWCOMMONS S PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE_OF_MITOTIC_CELL_CYCLE.html POLA1 +PWCOMMONS S PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE_OF_MITOTIC_CELL_CYCLE.html CDK2AP1 +PWCOMMONS S PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE_OF_MITOTIC_CELL_CYCLE.html ABL1 +PWCOMMONS S PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE_OF_MITOTIC_CELL_CYCLE.html RCC1 +PWCOMMONS S PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE_OF_MITOTIC_CELL_CYCLE.html APBB2 +PWCOMMONS S PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/S_PHASE_OF_MITOTIC_CELL_CYCLE.html APBB1 +PWCOMMONS MITOTIC SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SPINDLE_ORGANIZATION_AND_BIOGENESIS.html KIF23 +PWCOMMONS MITOTIC SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SPINDLE_ORGANIZATION_AND_BIOGENESIS.html KIF11 +PWCOMMONS MITOTIC SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SPINDLE_ORGANIZATION_AND_BIOGENESIS.html PRC1 +PWCOMMONS MITOTIC SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SPINDLE_ORGANIZATION_AND_BIOGENESIS.html RAN +PWCOMMONS MITOTIC SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SPINDLE_ORGANIZATION_AND_BIOGENESIS.html TTK +PWCOMMONS MITOTIC SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SPINDLE_ORGANIZATION_AND_BIOGENESIS.html STMN1 +PWCOMMONS MITOTIC SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SPINDLE_ORGANIZATION_AND_BIOGENESIS.html RCC1 +PWCOMMONS MITOTIC SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SPINDLE_ORGANIZATION_AND_BIOGENESIS.html SMC1A +PWCOMMONS MITOTIC SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOTIC_SPINDLE_ORGANIZATION_AND_BIOGENESIS.html SMC3 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SNCAIP +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CHIA +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GNPDA1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html B3GALT6 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC7A8 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC7A9 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GGT1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC7A4 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC7A5 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html BBOX1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC35A3 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC7A6 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GLDC +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC7A7 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html TGFB2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html FAH +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GOT2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ASPA +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GOT1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ST3GAL2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html PLOD1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SCLY +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html MAT1A +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ASMTL +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SULT1A1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ST3GAL6 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SULT1A2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html DDAH2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html DDAH1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html NANP +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ALDH6A1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html YARS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html DARS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GATM +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html AARS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html QDPR +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CDO1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SARS2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GLCE +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GNS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html PYCR1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html COLQ +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html HAS1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SULT1B1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html RARS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html EXT1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html EXT2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GCLC +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GCNT2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GNE +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GLUD2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html FARS2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GLUD1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html PAH +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ASL +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html NAGK +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GCLM +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html EXTL2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html KARS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CHIT1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html OAZ2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html B3GNT8 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ARG1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GAD2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html OAZ1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ASRGL1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ALDH4A1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GCSH +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GAD1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html B4GALT7 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html P4HB +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html UAP1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GUSB +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SPHK1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC6A14 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html HGD +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ATF4 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html BAAT +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html DIO2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC7A2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html DIO1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html FPGS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC25A15 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html BCKDK +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html AMT +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GSS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html WARS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html MCCC2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html MSRA +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html TYR +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html XYLT1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html HDC +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CHST12 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CHST11 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GSTZ1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CHST13 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html HPD +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html PEPD +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html PRG3 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CHST2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CHST3 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CHST4 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC3A1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CHST5 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html HYAL4 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html DDO +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CHST1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CHST7 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CHST6 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SDS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html DHPS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SMS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html CLN6 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html AOC3 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html BCAT1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ALDH18A1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GALNT5 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html NFS1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html UGDH +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GLS2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html DCT +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html MTHFR +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html B4GALNT2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html MARS2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ETNK1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SULT1C2 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html PTS +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html BCKDHA +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html BCKDHB +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html ADI1 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html LARGE +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC6A6 +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html GAMT +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html MAT2B +PWCOMMONS AMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_METABOLIC_PROCESS.html SLC5A7 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html GPS1 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html DUSP22 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html MBIP +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html GPS2 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html DUSP2 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html RGS3 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html LAX1 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html RGS4 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html DUSP16 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html SPRED2 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html SPRED1 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html DUSP9 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html DUSP8 +PWCOMMONS INACTIVATION OF MAPK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/INACTIVATION_OF_MAPK_ACTIVITY.html DUSP6 +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html SGPL1 +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html CLN3 +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html UGCG +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html LASS1 +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html CERK +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html NEU3 +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html LASS5 +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html NSMAF +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html ASAH1 +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html ASAH2 +PWCOMMONS CERAMIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CERAMIDE_METABOLIC_PROCESS.html CLN6 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F2RL2 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F2RL3 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html ACVRL1 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F13A1 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html GNA12 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html MMRN1 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html TGFB2 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html GP9 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html SERPINE1 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html APOA5 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html KNG1 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F12 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html L3MBTL4 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F10 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F8 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F9 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F7 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html WAS +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html PROC +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html THBD +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html CD36 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html GNAQ +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F5 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html HNF4A +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html EREG +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html CD40LG +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F2 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html TFPI +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html SPRR3 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html PROS1 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html GGCX +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html DCBLD2 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html RTN4RL1 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html ADORA2A +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html PABPC4 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html PF4 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html ITGB3 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html LMAN1 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html PR47 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F13B +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html MIA3 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html GP1BA +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html RTN4RL2 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html ENTPD1 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html PLAT +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html KLK8 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html NF1 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html ITGA2 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html C4BPB +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html TMPRSS6 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html PLG +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html VWF +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html CD59 +PWCOMMONS WOUND HEALING http://www.broadinstitute.org/gsea/msigdb/cards/WOUND_HEALING.html F2R +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html RTN4 +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html KLK8 +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html NF1 +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html LRRC4C +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html SLIT2 +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html THY1 +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html AMIGO1 +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html YWHAH +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html SERPINF1 +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html ROBO1 +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html APOE +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html MAPT +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html NPTN +PWCOMMONS REGULATION OF NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEUROGENESIS.html ROBO2 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html E2F2 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html E2F3 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED24 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED23 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html TBP +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html GTF2E1 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html GTF2E2 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MAZ +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED26 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED27 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html TAF2 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html TAF5 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED12 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html CDK9 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED14 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED13 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html CDK7 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html PPARGC1A +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED7 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED4 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED30 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED16 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html GTF2I +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html GTF2F1 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED17 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html NCOA6 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html THRAP3 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html GTF2F2 +PWCOMMONS TRANSCRIPTION INITIATION FROM RNA POLYMERASE II PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_INITIATION_FROM_RNA_POLYMERASE_II_PROMOTER.html MED1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GNPDA1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHIA +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html B3GALT6 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PGD +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CNOT7 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SLC35A1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SLC35A2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SLC35A3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PDHB +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SLC2A8 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ST3GAL2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SLC2A5 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SLC2A4 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ST3GAL5 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SLC2A2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html MIOX +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ST3GAL6 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html AKR7A2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html INSR +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html NANP +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html IDUA +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html IRS2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html FBP1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html FBP2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html DHDH +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GLCE +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html MGAT1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GNS +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PGLS +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html NNT +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html HAS1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html MGAM +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html HAS3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html EXT1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html NEU3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html EXT2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html HS3ST3B1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html LALBA +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ME1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PHKA2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ALDOA +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GCNT4 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ME3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html TALDO1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GCNT2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GNE +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ALDOC +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ALDOB +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PFKFB1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ST8SIA1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ST8SIA3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ST8SIA2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html NAGK +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html EXTL2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHIT1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ADRB3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html B3GNT8 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GAD2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html INS +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html IL17F +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html IDH1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GYS2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html DYRK2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html TFF1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SPAM1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html B4GALT7 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GAD1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html FH +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html B4GALT1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ST6GAL1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html UAP1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ST6GAL2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GUSB +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html EPM2A +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GALT +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html IDH3B +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html B3GAT2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html B3GAT1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ATF4 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SLC25A10 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ST8SIA4 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ST8SIA5 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ALDH2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html FPGT +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SGSH +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SLC5A2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html NDST1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ALG1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html MAN1B1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PTEN +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ACOT4 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ACN9 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ST6GALNAC6 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html XYLT1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html HPSE +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html POMT1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST12 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST11 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST14 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST13 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html TREH +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SPACA3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PFKL +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ACO2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ACO1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST4 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST5 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PFKM +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PIGQ +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html HYAL4 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PMM2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html G6PD +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST7 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST6 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST9 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CHST8 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GAA +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html AMY1B +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html UGP2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html CLN6 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html XYLB +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html FUT9 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html HS3ST5 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GALNT7 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html FUT8 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GALNT5 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html FUT5 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html UGDH +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html HK1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html TKTL1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GALK1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html NAGPA +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html LECT1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html AKR1A1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ECD +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html MPDU1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html B4GALNT2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html FUT3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html FUT4 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html FUT1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html HS6ST1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html A4GNT +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html FUT2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html TSTA3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html B4GALNT1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PDK1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PDK2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GMDS +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PDK3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PDK4 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GYG2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html ACLY +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html BRS3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SDHA +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GBA3 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GAPDHS +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GBA2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SDHB +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html LARGE +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GLA +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GCK +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PYGM +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SDHC +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GSK3B +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GFPT1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html SDHD +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html GFPT2 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html AKR1B1 +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html IPPK +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html PYGB +PWCOMMONS CARBOHYDRATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_METABOLIC_PROCESS.html COG2 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html GGCX +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html F2RL2 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html F2RL3 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html HS3ST5 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html ADORA2A +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html F13A1 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html PABPC4 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html GNA12 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html PF4 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html ITGB3 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html LMAN1 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html MMRN1 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html PR47 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html GP9 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html F13B +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html SERPINE1 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html GP1BA +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html ENTPD1 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html KNG1 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html PLAT +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html F12 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html L3MBTL4 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html F10 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html F8 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html F9 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html ITGA2 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html C4BPB +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html F7 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html WAS +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html TMPRSS6 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html PLG +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html PROC +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html VWF +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html THBD +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html CD36 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html HNF4A +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html F5 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html GNAQ +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html CD40LG +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html CD59 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html F2 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html TFPI +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html PROS1 +PWCOMMONS COAGULATION http://www.broadinstitute.org/gsea/msigdb/cards/COAGULATION.html F2R +PWCOMMONS BODY FLUID SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/BODY_FLUID_SECRETION.html VIP +PWCOMMONS BODY FLUID SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/BODY_FLUID_SECRETION.html KNG1 +PWCOMMONS BODY FLUID SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/BODY_FLUID_SECRETION.html GUCA1B +PWCOMMONS BODY FLUID SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/BODY_FLUID_SECRETION.html CEL +PWCOMMONS BODY FLUID SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/BODY_FLUID_SECRETION.html COPA +PWCOMMONS BODY FLUID SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/BODY_FLUID_SECRETION.html SLC34A1 +PWCOMMONS BODY FLUID SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/BODY_FLUID_SECRETION.html SLC22A4 +PWCOMMONS BODY FLUID SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/BODY_FLUID_SECRETION.html NPPB +PWCOMMONS BODY FLUID SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/BODY_FLUID_SECRETION.html NPR1 +PWCOMMONS BODY FLUID SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/BODY_FLUID_SECRETION.html SLC22A2 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html UPF1 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html MTERF +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html TNP1 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html ETF1 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html MTIF3 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html HMGA1 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html TTF2 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html IRAK3 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html SET +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html MAZ +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html SMARCE1 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html MTRF1 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html HRSP12 +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html SUPT16H +PWCOMMONS MACROMOLECULAR COMPLEX DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/MACROMOLECULAR_COMPLEX_DISASSEMBLY.html NRG1 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html BRSK1 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html GPX1 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html ERCC8 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html ERCC5 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html ERCC6 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html MC1R +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html CDKN2D +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html BCL3 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html SERPINB13 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html ERCC3 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html IVL +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html ERCC4 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html FEN1 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html ERCC2 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html REV1 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html RELA +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html UBE4B +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html GTF2H2 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html RPAIN +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html POLD1 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html DDB2 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html IL12A +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html MAPK8 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html SCARA3 +PWCOMMONS RESPONSE TO UV http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_UV.html IL12B +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html COX11 +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html CYSLTR1 +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html ELN +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html CFTR +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html BPGM +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html COX5B +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html EDNRA +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html UCP3 +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html PPBPL2 +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html HNMT +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html TMPRSS11D +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html CSF2RB +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html SFTPB +PWCOMMONS RESPIRATORY GASEOUS EXCHANGE http://www.broadinstitute.org/gsea/msigdb/cards/RESPIRATORY_GASEOUS_EXCHANGE.html COX15 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html MDFI +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html GTPBP4 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html RSF1 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html CEBPG +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html EGLN1 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html NLRP3 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html PYDC1 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html FLNA +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html SIGIRR +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html SUMO1 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html CDKN2A +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html ID2 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html ID1 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html NARFL +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html PEX14 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html ID3 +PWCOMMONS NEGATIVE REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BINDING.html COMMD7 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html IMPA1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html SGMS2 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html SGMS1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIP5K1A +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PTEN +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGK +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html APOA1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGF +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGG +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html LCAT +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html GPX4 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGH +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGB +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PLA1A +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGC +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html CETP +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PCYT2 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PLCB2 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html AGPAT2 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGA +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html AGPAT1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html CLN3 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGZ +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGY +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIK3C2A +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html TAZ +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGV +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PI4KA +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGU +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html LGALS13 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGT +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGS +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PI4KB +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html CHPT1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIGO +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PITPNM3 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PRDX6 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html CD81 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PI4K2A +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PLA2G6 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PLA2G2E +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PLA2G3 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PLA2G2D +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html CLN8 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PLA2G5 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PGS1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html ENPP7 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html GPAA1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html APOC2 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PLAA +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html SERINC2 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html SERINC5 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html DGKE +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html LPCAT1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html SERINC1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PEMT +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html ETNK1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PLCD1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PCYT1B +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PIK3R1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html LPL +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html FADS1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html SMG1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html DPM1 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html DPM2 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html DPM3 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PLA2G4C +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html SMPD4 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html PLA2G4B +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html SMPD3 +PWCOMMONS PHOSPHOLIPID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOLIPID_METABOLIC_PROCESS.html SMPD2 +PWCOMMONS RESPONSE TO IONIZING RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_IONIZING_RADIATION.html XRCC4 +PWCOMMONS RESPONSE TO IONIZING RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_IONIZING_RADIATION.html BRCC3 +PWCOMMONS RESPONSE TO IONIZING RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_IONIZING_RADIATION.html PML +PWCOMMONS RESPONSE TO IONIZING RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_IONIZING_RADIATION.html TOPBP1 +PWCOMMONS RESPONSE TO IONIZING RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_IONIZING_RADIATION.html LIG4 +PWCOMMONS RESPONSE TO IONIZING RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_IONIZING_RADIATION.html BRSK1 +PWCOMMONS RESPONSE TO IONIZING RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_IONIZING_RADIATION.html XRRA1 +PWCOMMONS RESPONSE TO IONIZING RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_IONIZING_RADIATION.html NHEJ1 +PWCOMMONS RESPONSE TO IONIZING RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_IONIZING_RADIATION.html ATM +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html MDFI +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html DBNL +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html ZAK +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html KIAA1804 +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html PTPLAD1 +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html MAP4K1 +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html PKN1 +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html TLR6 +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html DAXX +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html MAP3K6 +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html MAP4K5 +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html MAP3K5 +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html MDFIC +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html MAP3K2 +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html MAP3K9 +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html MAP3K10 +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html PAK1 +PWCOMMONS POSITIVE REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_JNK_ACTIVITY.html MAP3K11 +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html NF2 +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html IL29 +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html LYN +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html CLCF1 +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html HCLS1 +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html SOCS1 +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html PIGU +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html IL12A +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html HGS +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html IL20 +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html IL31RA +PWCOMMONS REGULATION OF JAK STAT CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JAK_STAT_CASCADE.html IL22RA2 +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html SLC11A2 +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html ATP7A +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html ATOX1 +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html HFE +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html SLC30A5 +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html CCS +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html SLC31A2 +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html COX17 +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html SLC31A1 +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html SLC40A1 +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html SLC39A2 +PWCOMMONS TRANSITION METAL ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/TRANSITION_METAL_ION_TRANSPORT.html ATP7B +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html RTN4 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html ALS2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html NRP2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html NRTN +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html NRP1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html POU6F2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html LRRC4C +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html GLI2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html PAX2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html KCNIP2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html RTN1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html GDNF +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html SHH +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html TGFB2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html NRCAM +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html ATP2B2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html APOE +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html ROBO1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html MAPT +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html POU4F1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html ROBO2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html SEMA3B +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html UNC5C +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html EIF2B2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html SPON2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html EIF2B3 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html EIF2B4 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html EIF2B5 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html NRXN3 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html BAIAP2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html LDB1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html MDGA1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html OTX2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html PICK1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html MDGA2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html ARTN +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html CDK6 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html NRXN1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html SLIT1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html CDK5 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html SLIT2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html THY1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html FARP2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html AMIGO1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html RND1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html SERPINF1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html SEMA4F +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html BTG4 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html NPTN +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html GHRL +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html OPHN1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html TRAPPC4 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html SIAH1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html CNTN4 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html UBB +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html SMARCA1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html CLN5 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html PARD3 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html CDK5R1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html LST1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html RTN4RL1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html BRSK2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html PPT1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html AZU1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html KAL1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html BAI1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html PCSK9 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html VWC2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html KRT2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html RTN4RL2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html AGRN +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html LAMB1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html PARD6B +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html KLK8 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html NF2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html LMX1B +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html DTX1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html NF1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html NLGN1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html NTNG1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html DPYSL5 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html NTNG2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html RACGAP1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html SOD1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html EIF2B1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html YWHAG +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html YWHAH +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html S100B +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html MAP1S +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html CYFIP1 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html CIT +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html FEZ2 +PWCOMMONS NEUROGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/NEUROGENESIS.html FEZ1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html XRCC4 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html RP1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html ZAK +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html COPS3 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html NR2E3 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html GPX1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html MC1R +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html CDKN2D +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html BRCC3 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html REV1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html FECH +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html RELA +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html TOPBP1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html LIG4 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html XRRA1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html GTF2H2 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html SAG +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html PNKP +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html PITPNM1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html PPM1D +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html RPAIN +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html GRM6 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html DDB2 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html IL12A +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html MAPK8 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html IL12B +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html DYNLRB1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html NHEJ1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html CLOCK +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html PML +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html OPN1SW +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html BRSK1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html ABCA4 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html PDE6B +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html ERCC8 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html ERCC5 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html ERCC6 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html BCL3 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html SERPINB13 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html ERCC3 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html ERCC4 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html IVL +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html FEN1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html ERCC2 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html UNC119 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html TRPC3 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html NF1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html UBE4B +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html ATM +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html CCL11 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html POLD1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html PDC +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html CACNA1F +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html SCARA3 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html SMC1A +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html RHO +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html GRK1 +PWCOMMONS RESPONSE TO RADIATION http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_RADIATION.html OPN4 +PWCOMMONS REGULATION OF CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CELL_ADHESION.html CD47 +PWCOMMONS REGULATION OF CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CELL_ADHESION.html GTPBP4 +PWCOMMONS REGULATION OF CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CELL_ADHESION.html SIRPG +PWCOMMONS REGULATION OF CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CELL_ADHESION.html ACVRL1 +PWCOMMONS REGULATION OF CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CELL_ADHESION.html CDKN2A +PWCOMMONS REGULATION OF CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CELL_ADHESION.html NF2 +PWCOMMONS REGULATION OF CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CELL_ADHESION.html B4GALNT2 +PWCOMMONS REGULATION OF CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CELL_ADHESION.html CX3CL1 +PWCOMMONS REGULATION OF CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CELL_ADHESION.html PTEN +PWCOMMONS REGULATION OF CELL CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CELL_ADHESION.html RASA1 +PWCOMMONS POSITIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_MIGRATION.html EGFR +PWCOMMONS POSITIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_MIGRATION.html CDH13 +PWCOMMONS POSITIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_MIGRATION.html MIA3 +PWCOMMONS POSITIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_MIGRATION.html BCAR1 +PWCOMMONS POSITIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_MIGRATION.html SPHK1 +PWCOMMONS POSITIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_MIGRATION.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_MIGRATION.html AMOT +PWCOMMONS POSITIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_MIGRATION.html ANGPTL3 +PWCOMMONS POSITIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_MIGRATION.html LAMB1 +PWCOMMONS POSITIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_MIGRATION.html TRIP6 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html TBX3 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html ELF3 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html ERBB2 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html NF1 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html TBX1 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html NR0B1 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html GLI2 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html MDK +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html SHH +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html GCM2 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html NOTCH4 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html TDGF1 +PWCOMMONS GLAND DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/GLAND_DEVELOPMENT.html FOXE1 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LIMA1 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KATNB1 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARF6 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LATS1 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CXCL12 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SORBS3 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42EP2 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CEP250 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html GSN +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAPT +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CLASP1 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CLASP2 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RASA1 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGEF10L +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42EP5 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html APC +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGEF2 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CCDC88A +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NF2 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CRIPAK +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MID1IP1 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NEXN +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NEBL +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NCK2 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TSC1 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NCK1 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CAPG +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAPRE1 +PWCOMMONS REGULATION OF CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TMSB4Y +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CASR +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html SLC9A7 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html GNA15 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ATOX1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html F2RL1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CD52 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CXCL12 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html APOA4 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html BAK1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html AGTR1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html APP +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html APOA2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html APOA1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html SLC2A4 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html APOE +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html LCAT +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html GALR2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html APOA5 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html RGN +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CHRNA7 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html SLC4A1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CHRNA1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html FTL +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html C5AR1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html SLC34A3 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html THY1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCR9 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCR8 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCR7 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html PLCE1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html NPC1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCR6 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html HIF1A +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html NPC2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html RHCG +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCR5 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ATP2C1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCR4 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCR3 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCR2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CARTPT +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html STC1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html SLC40A1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html GLP1R +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html KCNMB3 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCL1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html SRI +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html KCNMB4 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html C3AR1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CAV1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCL3 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html DRD1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CLCN3 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCL2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html DERL1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CYSLTR1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html HFE +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html PPT1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ABCA2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html BDKRB1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html BCL2L1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html BDKRB2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ABCA1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ATP6V1B1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CALR +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCL5 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html FTH1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCL7 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html KCNMB2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html P2RY4 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html P2RY2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html SLC30A5 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ANGPTL3 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html RPS6 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ABCG1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ATP7A +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CD55 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html GCM2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html SLC4A11 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CXCL13 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html AVPR1B +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html AVPR1A +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html XCL1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CACNA1C +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CACNA1A +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html IFI6 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html GRK1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html SLC9A1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ATP7B +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCKAR +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html MCHR1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html HNF1A +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html GLRA1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html BNIP3 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CXCR3 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html EDNRA +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html FXN +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CXCR4 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html SAA1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html NMUR2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html TRPV4 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CETP +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html XCR1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html MYC +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html AKR1C1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html NDUFS1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html KNG1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CLN3 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html AIFM3 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCKBR +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html PROK2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html TARBP2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html LCK +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html GHRL +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html NPPB +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CLN5 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CLN6 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CLDN16 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCR1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html TFR2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html TAC1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html EGLN1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CALCA +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CALCB +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCL23 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html BCL2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html PCSK9 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CD24 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html PTPRC +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html OPRL1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ATP1A3 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html NPR1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ATP1A4 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCL19 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html MTL5 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ATP1A1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html ATP1A2 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html SOD1 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCL15 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html RHAG +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html TMPRSS3 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCL11 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCL13 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CCL14 +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html GCK +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html HPX +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html BAX +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html MT2A +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html NARFL +PWCOMMONS CHEMICAL HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CHEMICAL_HOMEOSTASIS.html CP +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html FOXL2 +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html SPRR2G +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html SPRR2F +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html SPRR2E +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html SOD1 +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html EREG +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html SPRR2C +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html SPRR2D +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html SPRR2A +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html SPRR2B +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html EIF2B2 +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html BMPR1B +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html EIF2B4 +PWCOMMONS OVULATION CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/OVULATION_CYCLE.html EIF2B5 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html MSH5 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html MRE11A +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html MSH4 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html LIG3 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html CHEK1 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html SPO11 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html RAD52 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html SYCP1 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html RAD50 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html ATM +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html RAD51 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html REC8 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html RAD21 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html RAD51L1 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html RAD54B +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html RAD51L3 +PWCOMMONS MEIOTIC RECOMBINATION http://www.broadinstitute.org/gsea/msigdb/cards/MEIOTIC_RECOMBINATION.html DMC1 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html BCL10 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html SYT1 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html SCUBE3 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html CCDC88C +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html ALDH5A1 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html SCUBE1 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html MUC20 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html TP63 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html ACTN2 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html HPRT1 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html RAD51 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html STOM +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html VWF +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html DGKD +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html BAX +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html GOPC +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html GPX3 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html CDA +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html PEX14 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html ATPIF1 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html EIF2AK3 +PWCOMMONS PROTEIN HOMOOLIGOMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_HOMOOLIGOMERIZATION.html AKR1C1 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html PTPRC +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html IL2RB +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html RELA +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html DUOX2 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html SOCS1 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html DUOX1 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html ZNF675 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html NUP85 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html PF4 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html SOCS5 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html CX3CL1 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html PYDC1 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html SIGIRR +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html IL31RA +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html TNFRSF1A +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html IRAK3 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html EREG +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html CCR2 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html PYCARD +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html CD24 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html IFNK +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html COMMD7 +PWCOMMONS CYTOKINE AND CHEMOKINE MEDIATED SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_AND_CHEMOKINE_MEDIATED_SIGNALING_PATHWAY.html C16ORF5 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html IRX4 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html SRI +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html POU6F1 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html BMP10 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html ERBB2 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html MYBPC3 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html FGF12 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html GLI2 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html SHH +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html CITED2 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html TGFB2 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html ECE2 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html HAND1 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html HAND2 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html TDGF1 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html GATA4 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html MKKS +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html DVL3 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html BMP2 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html ALPK3 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html NKX2-6 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html TBX5 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html VANGL2 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html TAZ +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html NF1 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html FBN1 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html TBX1 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html MYH7 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html CBY1 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html MYH6 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html DVL1 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html SHOX2 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html PLCE1 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html NCOA6 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html MYH11 +PWCOMMONS HEART DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/HEART_DEVELOPMENT.html CASQ2 +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html DMBX1 +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html COL4A4 +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html KLK8 +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html EREG +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html RTN4RL1 +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html APOA5 +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html RTN4RL2 +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html UBB +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html GLI2 +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html BMPR1B +PWCOMMONS DEVELOPMENTAL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/DEVELOPMENTAL_GROWTH.html SPINK5 +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html CDK6 +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html CX3CL1 +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html AZU1 +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html CDH13 +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html CD47 +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html SIRPG +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html TSC1 +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html SAA1 +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html PRSS2 +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html TGM2 +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html IL12A +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html IL12B +PWCOMMONS POSITIVE REGULATION OF CELL ADHESION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_ADHESION.html ALOX12 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html ALS2 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html ZAK +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html EDN2 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TNFSF15 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TLR6 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html DAXX +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K7 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K6 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K5 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K4 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html ANG +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CXCR4 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MDFIC +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K9 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TGFA +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html SHC1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CHRNA7 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html GNG3 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PAK1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html FGF2 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html EGFR +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html IRAK1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html DBNL +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CCDC88A +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html C5AR1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PIK3CB +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MADD +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html KIAA1804 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PICK1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PKN1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CARD10 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PROK2 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html GRM4 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PLCE1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CCND1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP4K5 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html ADRB2 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CCND3 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html EREG +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CCND2 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CHRM1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CD81 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html GADD45G +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html ERN1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K10 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CARTPT +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html GHRL +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html GADD45B +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K13 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PRKD3 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html GAP43 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K11 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TRAF2 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PARD3 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html ADORA2B +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PTPLAD1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html ERBB2 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html C5 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html FPR1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP4K1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html AZU1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html SERINC2 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html SERINC5 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP3K2 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html SERINC1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html ADRA2A +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CD4 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html ADRA2C +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TRAF7 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CD24 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TRAF6 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PPAP2A +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html EGF +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MDFI +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TAOK2 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MAP2K3 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MALT1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TPD52L1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html SOD1 +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PRLR +PWCOMMONS POSITIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html EPGN +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html SGPL1 +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html CLN3 +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html LASS1 +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html SPHK1 +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html UGCG +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html CERK +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html NSMAF +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html LASS5 +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html NEU3 +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html ASAH1 +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html CLN6 +PWCOMMONS SPHINGOID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOID_METABOLIC_PROCESS.html ASAH2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html NRTN +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html ZAK +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html ATP6AP2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html FGF13 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MBIP +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP3K6 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP3K5 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP3K4 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MDFIC +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP3K9 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html TDGF1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html SPRED2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html CHRNA7 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html SPRED1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html GNG3 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP2K7 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html DBNL +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html C5AR1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html TNIK +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html PIK3CB +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MADD +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html KIAA1804 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP4K3 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html PLCE1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP4K5 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAPK9 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html CARTPT +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAPK8 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html FGFR1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html FGFR3 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html ADORA2B +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html PTPLAD1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html DUSP10 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP4K2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP4K1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAPKAPK2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html ADRB3 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html DUSP16 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html ADRA2A +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html ADRA2C +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html TRAF7 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html EGF +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MDFI +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html CCM2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html CARD9 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html TAOK2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP2K4 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html TAOK3 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html DUSP22 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html TPD52L1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html RGS3 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html RGS4 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html ZNF675 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html DAXX +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html CAMKK2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html CXCR4 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html TGFA +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html SHC1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html PAK1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html FGF2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MINK1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html PKN1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html AMBP +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html GRM4 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html SH2D3C +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html PROK2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html ADRB2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html SH2D3A +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html CRKL +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html LAX1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html HIPK2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html GADD45G +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html CD81 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP3K10 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html GHRL +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html GADD45B +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP3K13 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP3K12 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP3K11 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html C5 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html FPR1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP3K3 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAP3K2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html REN +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html CD24 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html CD27 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html SCG2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html GPS1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html NF1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html EDA2R +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAPK10 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html SOD1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html GPS2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html DUSP4 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html DUSP2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html EPGN +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAPK8IP2 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAPK8IP3 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html MAPK8IP1 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html DUSP9 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html DUSP8 +GO MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/MAPKKK_CASCADE_GO_0000165.html DUSP6 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html NBN +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html ZAK +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html AIF1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html RPRM +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html FOXO4 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html TGFB1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CUL3 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CUL2 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CUL5 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CDKN2A +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CDKN2B +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html PCBP4 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CDKN2C +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CDKN2D +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html MYC +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html MAP2K6 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CUL1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html KHDRBS1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html TP53 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html TBRG4 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html INHA +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html JMY +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html MFN2 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html INHBA +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html EIF4G2 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html PPM1G +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html PA2G4 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html BTG4 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html TBRG1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html ERN1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html GADD45A +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html PPP1R15A +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html ING4 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html PPP2R3B +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html STK11 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html IFNW1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html SESN1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html UHMK1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html MLF1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html PLAGL1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CDC123 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html APC +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html IL8 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html SMAD3 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html GAS1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CDKN3 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html GAS7 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CDKN1C +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html NOTCH2 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html PPP1R9B +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CDKN1B +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html MAPK12 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html CUL4A +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html RASSF1 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html APBB2 +GO CELL CYCLE ARREST http://www.broadinstitute.org/gsea/msigdb/cards/CELL_CYCLE_ARREST_GO_0007050.html APBB1 +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html MED4 +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html MED30 +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html MED16 +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html MED17 +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html THRAP3 +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html MED12 +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html MED24 +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html MED14 +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html ARID1A +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html MED13 +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html DAXX +PWCOMMONS ANDROGEN RECEPTOR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ANDROGEN_RECEPTOR_SIGNALING_PATHWAY.html MED1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html KIF22 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html KIF25 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html NBN +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html KNTC1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html PKMYT1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html TTK +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html AURKA +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CDC16 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html TTN +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html TGFB1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html KIF2C +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html TRIAP1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CDKN2B +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html DDX11 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html PCBP4 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html PRMT5 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html TARDBP +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html TGFA +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CDCA5 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CCNA2 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html ZW10 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html KIF11 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html ANAPC5 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html RAN +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html KIF15 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html RINT1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html ANAPC4 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html TPX2 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html NUSAP1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html ESPL1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html UBE2C +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html DCTN3 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html DCTN2 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CHMP1A +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html MAD2L1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html EREG +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html ZWINT +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html BUB1B +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CLIP1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html AKAP8 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html MAD2L2 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CHFR +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html NEK6 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html RAD17 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html PPP5C +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html PAM +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html NEK2 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html PML +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html ANAPC10 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html ANLN +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CETN1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html BRSK1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html ANAPC11 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html RCC1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html PIN1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html NCAPH +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html NUMA1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html NPM2 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html BUB1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html PBRM1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html GML +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html EGF +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CD28 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html SSSCA1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html PDS5B +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CDC23 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html BIRC5 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html NDC80 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CENPE +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CDC25C +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html SUGT1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CDC27 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html ATM +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html SMC3 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html SMC4 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CDC25B +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html NOLC1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html EPGN +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html PLK1 +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html CIT +PWCOMMONS MITOSIS http://www.broadinstitute.org/gsea/msigdb/cards/MITOSIS.html SMC1A +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html TSPO +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html ALAD +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html FECH +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html COX10 +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html PPOX +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html GPR143 +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html GMPS +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html DCT +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html TYR +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html ALAS1 +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html ALAS2 +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html CPOX +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html AP3D1 +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html NFE2L1 +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html PAICS +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html OCA2 +PWCOMMONS PIGMENT BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_BIOSYNTHETIC_PROCESS.html COX15 +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html ALAD +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html TSPO +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html FECH +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html COX10 +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html PPOX +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html GPR143 +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html GMPS +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html BLVRA +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html DCT +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html ALAS1 +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html TYR +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html ALAS2 +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html CPOX +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html AP3D1 +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html NFE2L1 +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html PAICS +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html OCA2 +PWCOMMONS PIGMENT METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PIGMENT_METABOLIC_PROCESS.html COX15 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html MDFI +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html DBNL +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html ZAK +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html KIAA1804 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html PTPLAD1 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html PKN1 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html MAP4K1 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html TLR6 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html DAXX +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html PDCD4 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html MAP3K6 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html MAP3K5 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html MAP4K5 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html MDFIC +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html MAP3K2 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html MAP3K9 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html HIPK3 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html MAP3K10 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html PAK1 +PWCOMMONS REGULATION OF JNK ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_JNK_ACTIVITY.html MAP3K11 +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html DERL2 +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html DERL1 +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html VAPB +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html TP53 +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html CRIPAK +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html DERL3 +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html SELS +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html SCAP +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html ATF6 +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html VCP +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html GSK3B +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html ERN1 +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html PAK1 +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html AMFR +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html EIF2AK3 +PWCOMMONS ER NUCLEAR SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/ER_NUCLEAR_SIGNALING_PATHWAY.html ARHGEF10L +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CASR +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html GNA15 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html SLC9A7 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html ATOX1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html F2RL1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CD52 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CXCL12 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html AGTR1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html BAK1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html APP +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html GALR2 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html RGN +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CHRNA7 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html SLC4A1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CHRNA1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html FTL +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html C5AR1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html SLC34A3 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html THY1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCR9 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCR8 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html PLCE1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCR7 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCR6 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html RHCG +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCR5 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html ATP2C1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCR4 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCR3 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCR2 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html STC1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html SLC40A1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html GLP1R +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCL1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html SRI +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html KCNMB3 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html C3AR1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html KCNMB4 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CLCN3 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCL3 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html DRD1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCL2 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CYSLTR1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html HFE +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html BDKRB1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html PPT1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html BCL2L1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html BDKRB2 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCL5 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CALR +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html ATP6V1B1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCL7 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html FTH1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html KCNMB2 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html P2RY4 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html P2RY2 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html SLC30A5 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html ATP7A +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html GCM2 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CD55 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html SLC4A11 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CXCL13 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html AVPR1B +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html AVPR1A +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html XCL1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CACNA1C +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CACNA1A +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html IFI6 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html SLC9A1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html GRK1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html ATP7B +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html MCHR1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCKAR +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html GLRA1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html BNIP3 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CXCR3 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html EDNRA +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html FXN +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html SAA1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CXCR4 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html NMUR2 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html TRPV4 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html XCR1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html MYC +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html NDUFS1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html KNG1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CLN3 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html AIFM3 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCKBR +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html PROK2 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html LCK +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html GHRL +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html NPPB +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CLN5 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CLN6 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CLDN16 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCR1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html TFR2 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html TAC1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CALCA +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CALCB +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCL23 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html BCL2 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CD24 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html PTPRC +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html OPRL1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html ATP1A3 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html ATP1A4 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html MTL5 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html NPR1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCL19 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html ATP1A1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html ATP1A2 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html SOD1 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCL15 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html RHAG +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html TMPRSS3 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCL11 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCL13 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CCL14 +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html HPX +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html BAX +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html MT2A +PWCOMMONS ION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/ION_HOMEOSTASIS.html CP +PWCOMMONS DNA MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_MODIFICATION.html ATRX +PWCOMMONS DNA MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_MODIFICATION.html ATF7IP +PWCOMMONS DNA MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_MODIFICATION.html DNMT3A +PWCOMMONS DNA MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_MODIFICATION.html FOS +PWCOMMONS DNA MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_MODIFICATION.html PICK1 +PWCOMMONS DNA MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_MODIFICATION.html GATAD2A +PWCOMMONS DNA MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_MODIFICATION.html DNMT1 +PWCOMMONS DNA MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_MODIFICATION.html DMAP1 +PWCOMMONS DNA MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_MODIFICATION.html DNMT3B +PWCOMMONS DNA MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_MODIFICATION.html HELLS +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html SEPT5 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html NCBP2 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html SYT1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html TSPO +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html SNCAIP +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html FAM3D +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html AP2S1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html TNFSF14 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html MXI1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html GDNF +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html TGFB1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html APOA4 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html GATA2 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html SLN +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html PACSIN3 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html ZFYVE16 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html YRDC +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html RAB26 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html KHDRBS1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html STX1A +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html SPACA3 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html NUDT4 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html CRYAA +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html CRYAB +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html STIM2 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html STIM1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html NLRP3 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html LDLRAP1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html TRAT1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html FLNA +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html GHRH +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html CARTPT +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html GHRL +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html STON2 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html KCNMB4 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html ORAI1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html STON1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html NFKBIE +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html ITLN1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html ABCA2 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html PPT1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html CDH1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html ARF6 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html CACNB4 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html UHMK1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html AHSG +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html AZU1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html PEA15 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html RAC1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html SFTPD +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html BCL3 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html SNAP25 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html MDFI +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html CBL +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html NF1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html SMAD3 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html NFKBIL1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html NFKBIL2 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html CDH13 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html GCK +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html PLN +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html GSK3B +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html NLRP12 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html FAF1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html TRIP6 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html RSC1A1 +PWCOMMONS REGULATION OF TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_TRANSPORT.html BARD1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html MSR1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html PDLIM7 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html SORL1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html RABEPK +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html HFE +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html ARF6 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html PPT1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html SCARF1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html ASGR1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html ADRB3 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html AP1S1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html PICALM +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html FOLR1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html RAC1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html SFTPD +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html RAMP3 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html MRC1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html RAMP2 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html CLN3 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html CBL +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html LRP1B +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html ARHGAP27 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html STAB2 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html PI4KB +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html LDLRAP1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html M6PR +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html ADRB2 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html STAB1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html IGF2R +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html LRP2 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html LRP3 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html CLTCL1 +PWCOMMONS RECEPTOR MEDIATED ENDOCYTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/RECEPTOR_MEDIATED_ENDOCYTOSIS.html DNM1 +PWCOMMONS POSITIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_ANGIOGENESIS.html AGGF1 +PWCOMMONS POSITIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_ANGIOGENESIS.html BTG1 +PWCOMMONS POSITIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_ANGIOGENESIS.html SPHK1 +PWCOMMONS POSITIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_ANGIOGENESIS.html RHOB +PWCOMMONS POSITIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_ANGIOGENESIS.html AMOT +PWCOMMONS POSITIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_ANGIOGENESIS.html CHRNA7 +PWCOMMONS POSITIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_ANGIOGENESIS.html TNFSF12 +PWCOMMONS POSITIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_ANGIOGENESIS.html RUNX1 +PWCOMMONS POSITIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_ANGIOGENESIS.html ANGPTL3 +PWCOMMONS POSITIVE REGULATION OF ANGIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_ANGIOGENESIS.html ANGPTL4 +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html NCSTN +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html NOTCH1 +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html ADAM10 +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html PSEN1 +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html APH1A +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html DTX1 +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html MAML1 +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html PSEN2 +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html MAML2 +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html TP63 +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html PSENEN +PWCOMMONS NOTCH SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/NOTCH_SIGNALING_PATHWAY.html MAML3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNC1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC22A16 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNC4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNC3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATOX1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP6AP1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNK7 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNK6 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNK5 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html CHRNA7 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCND3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCN2B +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCN2A +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html STIM2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html STIM1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html PKD2L1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC34A3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html NNT +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html RHCG +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP2C1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html RYR3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html RYR1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC40A1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNMB3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ORAI1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNMB4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCN1B +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNA2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNA1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNA4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html HFE +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNA3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html CCL8 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html CACNB3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNA6 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNA5 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html CACNB4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNJ2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNJ3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP6V0B +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNMB1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNMB2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNJ1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC11A2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNS3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP6V0C +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNS1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCN9A +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC30A5 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html C16ORF7 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC31A2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html HCN4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC31A1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html TRPC1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html HCN2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html CACNA2D1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html TRPC4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html TRPC3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html TRPC6 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNB2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html TRPC5 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html UCP1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNK1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNK3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNK4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNJ5 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP7A +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNJ4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC4A11 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNJ6 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html NPY +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html UCP3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP2A3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html UCP2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP2A1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html CHRNB1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html CACNA1D +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP7B +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNH1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNK17 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNJ15 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP6V0E1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNAB3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNAB1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNJ10 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNJ12 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html HVCN1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNIP2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNJ11 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNQ4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLN +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNQ3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html NMUR1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html NMUR2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC22A4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html TRPV5 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC22A3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCN7A +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNQ2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNQ1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html COX17 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC22A2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNG2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC22A1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCN10A +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html TRPM3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SGK1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html TRPM2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP6V1F +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNA10 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP6V1C1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCN11A +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNH2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNH3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNH4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNE1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html PKD2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNE2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html CCS +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCNN1G +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html CHP +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCN5A +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCNN1A +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC39A2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCNN1D +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC39A1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html TCIRG1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC8A1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html NOX1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP1A4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html RHAG +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNV1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNN4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ABCC9 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNN1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC17A3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC17A4 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ATP6V1E1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html PLN +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNN3 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SLC17A2 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCN4B +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html KCNF1 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html ABCC8 +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html SCN4A +PWCOMMONS CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CATION_TRANSPORT.html CSN2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html ALS2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html NRP2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html RTN4 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html NRTN +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html NRP1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html POU6F2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html LRRC4C +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html KCNIP2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html GLI2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html PAX2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html GDNF +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html RTN1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html SHH +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html TGFB2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html NRCAM +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html ATP2B2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html APOE +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html ROBO1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html MAPT +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html ROBO2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html SEMA3B +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html POU4F1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html UNC5C +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html SPON2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html NRXN3 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html MDGA1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html LDB1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html BAIAP2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html PICK1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html MDGA2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html OTX2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html NRXN1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html CDK5 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html SLIT1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html SLIT2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html THY1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html FARP2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html AMIGO1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html RND1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html SEMA4F +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html BTG4 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html GHRL +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html OPHN1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html TRAPPC4 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html CNTN4 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html SIAH1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html UBB +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html SMARCA1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html PARD3 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html CDK5R1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html LST1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html RTN4RL1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html BRSK2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html PPT1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html KAL1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html BAI1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html VWC2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html PCSK9 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html RTN4RL2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html AGRN +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html LAMB1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html PARD6B +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html KLK8 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html LMX1B +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html DTX1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html NLGN1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html DPYSL5 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html NTNG1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html NTNG2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html YWHAG +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html YWHAH +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html S100B +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html MAP1S +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html CYFIP1 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html FEZ2 +PWCOMMONS NEURON DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DIFFERENTIATION.html FEZ1 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html LST1 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL18 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html TNFSF13 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html SPINK5 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html TGFB1 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html SART1 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html CD47 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html ZAP70 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html SFTPD +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html CD24 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html EBI3 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html CD28 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL4 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html PTPRC +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html SIT1 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html CD3E +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL7 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL27 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html SLA2 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html CD276 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html INHA +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html SOCS5 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL21 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html THY1 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html INHBA +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html NCK2 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html LAT +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html SIRPG +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html LAX1 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html NCK1 +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html LCK +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL12A +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html GLMN +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html IL12B +PWCOMMONS REGULATION OF LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_LYMPHOCYTE_ACTIVATION.html ICOSLG +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html CALCA +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html CDH13 +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html S100P +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html NF1 +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html PRSS3 +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html AMOT +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html TNFSF12 +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html MYH9 +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html PLG +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html SCG2 +PWCOMMONS ENDOTHELIAL CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/ENDOTHELIAL_CELL_MIGRATION.html S100A2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html ALS2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html RTN4 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html NRP2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html NRTN +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html NRP1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html LRRC4C +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html KCNIP2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html PAX2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html GLI2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html GDNF +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html SHH +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html TGFB2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html NRCAM +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html ROBO1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html APOE +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html MAPT +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html POU4F1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html SEMA3B +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html ROBO2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html UNC5C +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html SPON2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html NRXN3 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html BAIAP2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html PICK1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html OTX2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html NRXN1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html SLIT1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html CDK5 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html SLIT2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html THY1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html FARP2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html AMIGO1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html RND1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html SEMA4F +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html TRAPPC4 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html GHRL +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html OPHN1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html SIAH1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html CNTN4 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html UBB +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html CDK5R1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html PARD3 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html LST1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html RTN4RL1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html PPT1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html KAL1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html BAI1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html RTN4RL2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html AGRN +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html LAMB1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html PARD6B +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html KLK8 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html DPYSL5 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html NTNG1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html NTNG2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html YWHAH +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html S100B +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html MAP1S +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html CYFIP1 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html FEZ2 +PWCOMMONS NEURON DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_DEVELOPMENT.html FEZ1 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html SHROOM1 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html SORBS3 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html SHROOM2 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html LIMA1 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html EZR +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html SORBS1 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html TSC1 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html NF2 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html FSCN2 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html FSCN1 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html EPB49 +PWCOMMONS ACTIN FILAMENT BUNDLE FORMATION http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BUNDLE_FORMATION.html ARHGEF10L +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html MOCOS +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html SNCAIP +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html ALDH1L1 +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html FAH +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html TGFB2 +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html DCT +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html MTHFD2 +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html TYR +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html ASMTL +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html CDA +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html GSTZ1 +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html SPR +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html PTS +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html HPD +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html ALDH6A1 +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html MOCS2 +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html QDPR +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html FTCD +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html HGD +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html GMPS +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html SULT1B1 +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html MAT2B +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html PAICS +PWCOMMONS AROMATIC COMPOUND METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AROMATIC_COMPOUND_METABOLIC_PROCESS.html PRPS1 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html IL6 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html PRG3 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html PAIP2 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html NDUFA13 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html INHA +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html FURIN +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html IL10 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html PAIP2B +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html SIGIRR +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html INHBB +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html INHBA +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html EIF4A3 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html EIF2AK1 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html TSC1 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html NLRP12 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html SFTPD +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html BCL3 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html GHRL +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html GHSR +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html EIF2AK3 +PWCOMMONS NEGATIVE REGULATION OF TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSLATION.html APBB1 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html ACCN1 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html GSTM3 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html EGR2 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html NF1 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html BAI1 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html UGT8 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html NEUROG3 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html SOD1 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html PMP22 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html SERPINI1 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html ALDH3A2 +PWCOMMONS PERIPHERAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/PERIPHERAL_NERVOUS_SYSTEM_DEVELOPMENT.html GFRA3 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html FGD2 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html ALS2 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html FGD1 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html RAB3GAP2 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html RALBP1 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html RAB3GAP1 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html NF1 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html ARHGAP27 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html THY1 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html TSC1 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html FGD5 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html FGD6 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html FGD3 +PWCOMMONS REGULATION OF GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_GTPASE_ACTIVITY.html FGD4 +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html PAM +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html KIF25 +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html PDS5B +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html CDC23 +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html NUSAP1 +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html CENPE +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html NDC80 +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html ESPL1 +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html LATS1 +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html SMC4 +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html NCAPH +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html CHMP1A +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html DDX11 +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html ZWINT +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html SMC1A +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html CDCA5 +PWCOMMONS SISTER CHROMATID SEGREGATION http://www.broadinstitute.org/gsea/msigdb/cards/SISTER_CHROMATID_SEGREGATION.html ZW10 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html PTGES3 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html PPARA +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html PPARD +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html CYP2J2 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html PTGS1 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ACOT2 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ACOT1 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ACOT4 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ACOX3 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html SC4MOL +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ACOT9 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html AKR1C3 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html AKR1C2 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html PTGES +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ACOT12 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html GNPAT +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ACADM +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html PRG3 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ACADS +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ADIPOR2 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ADIPOR1 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html PECI +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html HAO1 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ACADVL +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html PNPLA8 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html PTGDS +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ALOX15B +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html HAO2 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html SLC27A6 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html SLC27A2 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html CROT +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html SLC27A5 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html DEGS1 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ALOX12 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html HACL1 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ACADSB +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ECH1 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ECHS1 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html CD74 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html MIF +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html HADHB +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html TNFRSF1A +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html ABCD2 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html BDH2 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html CPT1B +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html FADS1 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html MCAT +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html FADS2 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html CPT1A +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html OXSM +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html CYP4A11 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html CYP4F8 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html GLYAT +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html MLYCD +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html FAAH +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html LTA4H +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html CYP4F3 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html CYP4F2 +PWCOMMONS FATTY ACID METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/FATTY_ACID_METABOLIC_PROCESS.html HPGD +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html SEPT5 +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html RAB3A +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html SYT1 +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html KCNMB4 +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html SNCAIP +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html BAIAP3 +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html NLGN1 +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html SNAPIN +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html RIMS1 +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html GRM4 +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html HRH3 +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html SYN3 +PWCOMMONS NEUROTRANSMITTER SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/NEUROTRANSMITTER_SECRETION.html CARTPT +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html ME1 +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html ME3 +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html GAD2 +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html ACO2 +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html ACO1 +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html IDH3B +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html IDH1 +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html ACLY +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html GAD1 +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html ACOT4 +PWCOMMONS TRICARBOXYLIC ACID CYCLE INTERMEDIATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRICARBOXYLIC_ACID_CYCLE_INTERMEDIATE_METABOLIC_PROCESS.html FH +PWCOMMONS NEGATIVE REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html CALCA +PWCOMMONS NEGATIVE REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html IL4 +PWCOMMONS NEGATIVE REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html INHBA +PWCOMMONS NEGATIVE REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html MAFB +PWCOMMONS NEGATIVE REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html LDB1 +PWCOMMONS NEGATIVE REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html ZNF675 +PWCOMMONS NEGATIVE REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html CARTPT +PWCOMMONS NEGATIVE REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html PF4 +PWCOMMONS NEGATIVE REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html INHA +PWCOMMONS NEGATIVE REGULATION OF MYELOID CELL DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_MYELOID_CELL_DIFFERENTIATION.html ZBTB16 +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html SASS6 +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html NDE1 +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html CEP250 +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html SAC3D1 +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html NPM1 +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html CNTROB +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html CETN3 +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html TUBE1 +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html BRCA2 +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html CETN1 +PWCOMMONS CENTROSOME CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/CENTROSOME_CYCLE.html CP110 +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html CHIA +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html ALG1 +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html EPM2A +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html GYG2 +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html CHIT1 +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html CHST1 +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html B3GNT8 +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html GCK +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html CHST7 +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html PYGM +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html GSK3B +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html MGAM +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html GAA +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html GYS2 +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html DYRK2 +PWCOMMONS POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POLYSACCHARIDE_METABOLIC_PROCESS.html PYGB +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html SEPT5 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html SNAP29 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html STX5 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html SHROOM2 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html MYO1A +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html MSTO1 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html AP1M2 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html NIN +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html NLGN1 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html NUSAP1 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html CENPF +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html CDC23 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html BIRC5 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html CENPE +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html HOOK3 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html MFN2 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html PEX1 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html ALB +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html LRMP +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html TMED10 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html PAFAH1B1 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html SNAP23 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html YKT6 +PWCOMMONS ORGANELLE LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/ORGANELLE_LOCALIZATION.html CDCA5 +PWCOMMONS ACTIN FILAMENT BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_MOVEMENT.html MYL6 +PWCOMMONS ACTIN FILAMENT BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_MOVEMENT.html TNNT2 +PWCOMMONS ACTIN FILAMENT BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_MOVEMENT.html MYO6 +PWCOMMONS ACTIN FILAMENT BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_MOVEMENT.html MYL6B +PWCOMMONS ACTIN FILAMENT BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_MOVEMENT.html MYO1E +PWCOMMONS ACTIN FILAMENT BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_MOVEMENT.html MYH7 +PWCOMMONS ACTIN FILAMENT BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_MOVEMENT.html MYO9B +PWCOMMONS ACTIN FILAMENT BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_MOVEMENT.html MYH6 +PWCOMMONS ACTIN FILAMENT BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_MOVEMENT.html MYH9 +PWCOMMONS ACTIN FILAMENT BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/ACTIN_FILAMENT_BASED_MOVEMENT.html MYH10 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html CEBPG +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html EGLN1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html PYDC1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html NLRP3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html FLNA +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html SIGIRR +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html SUMO1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html CDKN2A +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html ID2 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html ID1 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html NARFL +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html PEX14 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html ID3 +PWCOMMONS NEGATIVE REGULATION OF TRANSCRIPTION FACTOR ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSCRIPTION_FACTOR_ACTIVITY.html COMMD7 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html ALAD +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html TSPO +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html ALDH1L1 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html COX10 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html UROS +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html PPOX +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html MTHFD2 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html ALAS1 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html ALAS2 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html ASMTL +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html CPOX +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html CDA +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html COX15 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html P4HB +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html ALDH6A1 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html FECH +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html PRG3 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html FTCD +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html GMPS +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html UGT1A1 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html BLVRA +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html MAT2B +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html NFE2L1 +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html PAICS +PWCOMMONS HETEROCYCLE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HETEROCYCLE_METABOLIC_PROCESS.html PRPS1 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html SDAD1 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html EXOSC7 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html EXOSC2 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html EXOSC3 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html EIF2A +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html RRP9 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html FBL +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html DIS3 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html NOLC1 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html DKC1 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html RPS14 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html NPM1 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html POP4 +PWCOMMONS RIBOSOME BIOGENESIS AND ASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/RIBOSOME_BIOGENESIS_AND_ASSEMBLY.html GEMIN4 +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html CFHR1 +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html ORM1 +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html MBL2 +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html APCS +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html CEBPB +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html KRT1 +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html LBP +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html C2 +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html ORM2 +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html AHSG +PWCOMMONS ACUTE INFLAMMATORY RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/ACUTE_INFLAMMATORY_RESPONSE.html SIGIRR +PWCOMMONS TRIACYLGLYCEROL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRIACYLGLYCEROL_METABOLIC_PROCESS.html LPL +PWCOMMONS TRIACYLGLYCEROL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRIACYLGLYCEROL_METABOLIC_PROCESS.html AGPAT6 +PWCOMMONS TRIACYLGLYCEROL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRIACYLGLYCEROL_METABOLIC_PROCESS.html PNLIPRP2 +PWCOMMONS TRIACYLGLYCEROL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRIACYLGLYCEROL_METABOLIC_PROCESS.html DGAT1 +PWCOMMONS TRIACYLGLYCEROL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRIACYLGLYCEROL_METABOLIC_PROCESS.html DGAT2 +PWCOMMONS TRIACYLGLYCEROL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRIACYLGLYCEROL_METABOLIC_PROCESS.html APOA5 +PWCOMMONS TRIACYLGLYCEROL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRIACYLGLYCEROL_METABOLIC_PROCESS.html APOC3 +PWCOMMONS TRIACYLGLYCEROL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRIACYLGLYCEROL_METABOLIC_PROCESS.html APOC2 +PWCOMMONS TRIACYLGLYCEROL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRIACYLGLYCEROL_METABOLIC_PROCESS.html CETP +PWCOMMONS TRIACYLGLYCEROL METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/TRIACYLGLYCEROL_METABOLIC_PROCESS.html PNPLA3 +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html IMPA1 +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html GPAA1 +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PTEN +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGK +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGF +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGG +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGH +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGB +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGC +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIK3R1 +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGA +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGZ +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGY +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIK3C2A +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGV +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGU +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PI4KA +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html SMG1 +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGT +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGS +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PI4KB +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PIGO +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PITPNM3 +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html PI4K2A +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html CD81 +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html DPM1 +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html DPM2 +PWCOMMONS PHOSPHOINOSITIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/PHOSPHOINOSITIDE_METABOLIC_PROCESS.html DPM3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html AURKAIP1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF5A +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR4 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR6 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR7 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR8 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL31RA +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TLR9 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html APOA2 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CLCF1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TPP1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html MAPT +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html ATG7 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html LTB +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SPN +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EBI3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html SAMD4A +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EIF2B5 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BCL10 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL29 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PRG3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html LYN +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL27 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BOLL +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL20 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html UBE2N +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html NCK2 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CCND1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CARD14 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CD80 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EREG +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CCND3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CCND2 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html NCK1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TPPP +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CD81 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL12A +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL12B +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CLN6 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html ITLN1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html KATNB1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html EGLN2 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TNFRSF8 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html ARF6 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html STUB1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html AZU1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CDC42EP2 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BCL3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html DAZL +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html UBE2D1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CDC42EP5 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CD28 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL4 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BMP4 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html DAZ1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL6 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL5 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CEBPG +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html HCLS1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IL9 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html CD276 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html AKTIP +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html GLMN +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html PPP2R4 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html TNK2 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html FAF1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_METABOLIC_PROCESS.html IRF4 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PRKG1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html HOOK3 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html APOE +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIFAP3 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PLA2G1B +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF13B +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PLD2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html OPA1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ROCK1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF5B +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF5A +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RAN +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYH7 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYH6 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYH9 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MARK4 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PCLO +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MARK1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html THY1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RND3 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html UXT +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KRT19 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RND1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ATP2C1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CNTROB +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DBN1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF4A +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYO9B +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARF6 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KRT20 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RCC1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42EP2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RAC3 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DMD +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RAC1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TMED10 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGEF10L +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42EP5 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF3B +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TAOK2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARFIP2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYOZ1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42BPG +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LASP1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42BPA +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAP7 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PYY +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html GHSR +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42BPB +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LIMA1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html WASF3 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NUAK2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html WASF1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html BCAR1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html WASF2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LATS1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KISS1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PDPK1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DYNLL1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NUBP1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CEP250 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAPT +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DYNC1I1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html STX5 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGEF2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ACTA1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html VIL1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGEF17 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FLNB +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FLNA +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ELMO1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NCK2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAST1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NCK1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LRMP +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TMSB4Y +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAP3K11 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CXCL1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SNAP29 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SHROOM1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SHROOM2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PLEK2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ABI2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SORBS3 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html EZR +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SORBS1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SNAP23 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html WIPF1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RASA1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html APBA1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RNF19A +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NLGN1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CRIPAK +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RICTOR +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SOD1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MID1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CAPG +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html AMOT +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KPTN +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html YKT6 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SEPT5 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MTSS1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PRC1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TTK +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TTN +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CXCL12 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ANK3 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PACSIN2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TUBG1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYO6 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NEBL +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARPC1A +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TNNT2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TESK2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html STMN1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DST +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LRPPRC +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FGD2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYL6 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FGD1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CCL3 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SSH1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MRAS +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SSH2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KATNB1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARPC4 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ANLN +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARPC5 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LLGL1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DOCK2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ADRA2A +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CLASP1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CLASP2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FGD5 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FGD6 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FGD3 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FGD4 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGDIB +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FSCN2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CKAP5 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYO1E +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SPTBN4 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html FSCN1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html EVL +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html EPB49 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TSC1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYH11 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RHOT1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RHOT2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SPTA1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ABL1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SMC1A +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DNAJB6 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGAP10 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYH10 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF23 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RHOJ +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PREX1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DSTN +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ARHGAP4 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF2C +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CDC42 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DES +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PEX1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html ANG +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html GSN +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RHOA +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PAK1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RHOF +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KLHL20 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html DLG1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CCDC88A +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF11 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html LIMK1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NUSAP1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MID1IP1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NEXN +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF1A +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KIF1B +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TPPP +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CFL1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SCIN +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html GHRL +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html WASL +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAPRE1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KPNA2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html AP1M2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KRT9 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TUBGCP6 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TUBGCP5 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MYL6B +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html KRT3 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html PAFAH1B1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CNN2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NEFL +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html APC +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TNXB +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NF2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html NF1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html RACGAP1 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html TUBGCP2 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CENPJ +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html SMC3 +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html MAP1S +PWCOMMONS CYTOSKELETON ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_ORGANIZATION_AND_BIOGENESIS.html CRK +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html FGD2 +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html FGD1 +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html APOA1 +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html APOE +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html RALBP1 +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html APOC3 +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP27 +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html ABCA1 +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html FGD5 +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html FGD6 +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html FGD3 +PWCOMMONS CDC42 PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/CDC42_PROTEIN_SIGNAL_TRANSDUCTION.html FGD4 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html ME1 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html CALCR +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html GCLC +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html ABCA2 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html LATS1 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html LATS2 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html GSTM3 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html ANG +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html GATA3 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html PCSK9 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html CD24 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html EIF2B2 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html EIF2B3 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html EIF2B4 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html EIF2B5 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html LYN +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html HCLS1 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html ADIPOR2 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html ADIPOR1 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html BRCA2 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html CRIPAK +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html EIF2B1 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html BRCA1 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html RERG +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html KRT19 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html TSC1 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html NCOA6 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html FOXC2 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html GHRL +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html RBM14 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html STEAP2 +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html GHSR +PWCOMMONS RESPONSE TO HORMONE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HORMONE_STIMULUS.html PDCD7 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html NCBP1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html RNMT +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html CRNKL1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html CWC15 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SNRPD1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SNRPD2 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html AUH +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SMNDC1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html RNGTT +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SFRS6 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html NONO +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SFRS7 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SFRS4 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SFRS5 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html DHX38 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SFRS8 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SFRS9 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html LSM5 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html LSM3 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html DDX20 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html LSM1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html KHDRBS1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html ZFP36 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html PRPF31 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SRPK2 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html EFTUD2 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html PTBP1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SF1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SFRS1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html HNRNPR +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SRPK1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SFRS2 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html DDX39 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html KHSRP +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html CPSF6 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SLU7 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SIP1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html CPSF3 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html CPSF1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html BAT1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html TRA2A +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html HSPA1B +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html KIN +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SF3B3 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html NUDT21 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html USP39 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html DHX15 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html GEMIN8 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html PABPC1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SFRS2IP +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html GEMIN6 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html GEMIN7 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SFRS11 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SPOP +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html GEMIN5 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html UPF2 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html CSTF3 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html CSTF2 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SMG6 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SMG5 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html PAIP1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SMG7 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html GRSF1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SMG1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SSB +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SNW1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SF3A2 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html ELAVL4 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html PRPF18 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SF3A1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html HNRNPA0 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SF3A3 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SLBP +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html GSPT1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html SFPQ +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html PHF5A +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html CSTF1 +PWCOMMONS MRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/MRNA_METABOLIC_PROCESS.html TXNL4A +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TRIB3 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html SFN +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html MBIP +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PYDC1 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html LATS1 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PDCD4 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html LATS2 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CDKN2A +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html HEXIM2 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PAK2 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html HEXIM1 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html DUSP16 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html SPRED2 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html SPRED1 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CDK5RAP1 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html APC +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html GPS1 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PTPRC +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html PIF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html NF1 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html DUSP22 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CRIPAK +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html RB1 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html THY1 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html GPS2 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html TARBP2 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html CBLC +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html DUSP2 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html RGS3 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html LAX1 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html RGS4 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html HIPK3 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html DUSP9 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html DUSP8 +PWCOMMONS NEGATIVE REGULATION OF TRANSFERASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_TRANSFERASE_ACTIVITY.html DUSP6 +PWCOMMONS AMYLOID PRECURSOR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMYLOID_PRECURSOR_PROTEIN_METABOLIC_PROCESS.html NCSTN +PWCOMMONS AMYLOID PRECURSOR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMYLOID_PRECURSOR_PROTEIN_METABOLIC_PROCESS.html CLN3 +PWCOMMONS AMYLOID PRECURSOR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMYLOID_PRECURSOR_PROTEIN_METABOLIC_PROCESS.html ACHE +PWCOMMONS AMYLOID PRECURSOR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMYLOID_PRECURSOR_PROTEIN_METABOLIC_PROCESS.html APH1A +PWCOMMONS AMYLOID PRECURSOR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMYLOID_PRECURSOR_PROTEIN_METABOLIC_PROCESS.html PSEN1 +PWCOMMONS AMYLOID PRECURSOR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMYLOID_PRECURSOR_PROTEIN_METABOLIC_PROCESS.html BACE2 +PWCOMMONS AMYLOID PRECURSOR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMYLOID_PRECURSOR_PROTEIN_METABOLIC_PROCESS.html PSEN2 +PWCOMMONS AMYLOID PRECURSOR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMYLOID_PRECURSOR_PROTEIN_METABOLIC_PROCESS.html PSENEN +PWCOMMONS AMYLOID PRECURSOR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMYLOID_PRECURSOR_PROTEIN_METABOLIC_PROCESS.html NECAB3 +PWCOMMONS AMYLOID PRECURSOR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/AMYLOID_PRECURSOR_PROTEIN_METABOLIC_PROCESS.html ABCG1 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html KCNH1 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html SNAP29 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html VAPA +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html NAPG +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html EEA1 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html NAPA +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html CD9 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html ADAM2 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html ATG7 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html VPS4B +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html IZUMO1 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html SNAP23 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html STX11 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html STX6 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html NPLOC4 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html RABIF +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html STAP1 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html CRISP1 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html VTI1B +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html BNIP1 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html RABEP1 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html OTOF +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html CACNA1H +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html LRMP +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html GOSR2 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html VAMP3 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html ADAM12 +PWCOMMONS MEMBRANE FUSION http://www.broadinstitute.org/gsea/msigdb/cards/MEMBRANE_FUSION.html GCA +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html BCAT1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html HSP90AB1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html ALDH18A1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html PAH +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html BBOX1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html GCH1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html TGFB2 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html AKT1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html OAZ1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html PLOD1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html ASMTL +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html SULT1A2 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html ETNK1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html SPR +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html DDAH2 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html NQO1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html GCHFR +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html EGFR +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html HSP90AA1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html PRG3 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html CDO1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html PYCR1 +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html GLA +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html MAT2B +PWCOMMONS NITROGEN COMPOUND BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_BIOSYNTHETIC_PROCESS.html SLC5A7 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html PDIA2 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html TNFSF15 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html BNIP3 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html PMAIP1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html BAK1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html GPX1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html NLRC4 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html CASP3 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html CDKN2A +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html CASP8AP2 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html CASP9 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html CASP7 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html CASP8 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html ACIN1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html CASP2 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html TOP2A +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html DEDD2 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html AIFM3 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html DFFA +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html GZMA +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html AIFM1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html DFFB +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html CYCS +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html TP53 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html NDUFA13 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html CECR2 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html GZMB +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html BCL2L10 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html IFNB1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html LCK +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html PSEN2 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html F2 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html BID +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html MCL1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html PPT1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html BCL2L1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html SFN +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html MOAP1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html MTCH1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html DIABLO +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html C16ORF5 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html HIP1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html COL4A3 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html FOXL2 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html DNM1L +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html SMAD3 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html CIDEA +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html TPD52L1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html BAD +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html SOD1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html STAT1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html VDAC1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html VCP +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html BBC3 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html BAX +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html IFT57 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html BIK +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html APAF1 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html IFI6 +PWCOMMONS APOPTOTIC PROGRAM http://www.broadinstitute.org/gsea/msigdb/cards/APOPTOTIC_PROGRAM.html F2R +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html MBL2 +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html BCL10 +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html CRTAM +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html CADM1 +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html CEBPG +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html APOBEC3G +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html COLEC12 +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html DEFB127 +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html PYDC1 +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html APOBEC3F +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html NCR1 +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html TLR8 +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html CD1D +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html APOA4 +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html EREG +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html DEFB118 +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html IL12A +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html SFTPD +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html KRT1 +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html IL12B +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html IFNK +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html DEFB1 +PWCOMMONS INNATE IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/INNATE_IMMUNE_RESPONSE.html DMBT1 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html TBX3 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html SPHK1 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html NUSAP1 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html HCFC1 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html BIRC5 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html ASNS +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html CITED2 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html TGFB2 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html CCND1 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html EREG +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html CCND3 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html EPGN +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html CCND2 +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html TGFA +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html EGF +PWCOMMONS POSITIVE REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CELL_CYCLE.html CD28 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html EID2 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html SNX6 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ZNF675 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html PTEN +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ADRB3 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html PEG10 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html OTUD7B +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html VWC2 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html RHOH +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html MDFI +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html PTPRC +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CARD8 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html NF2 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html SLA2 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html NLK +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TAOK3 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html SOCS1 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html NF1 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CIDEA +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CBY1 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html FRZB +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TAX1BP3 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html BRAP +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html THY1 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html SIGIRR +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html MFN2 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html AMBP +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html CBLC +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ADRB2 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html SOST +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TSC1 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html NLRP12 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html HGS +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html SMURF1 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html TNFAIP3 +PWCOMMONS NEGATIVE REGULATION OF SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_SIGNAL_TRANSDUCTION.html ACVR1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html DDX11 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SMARCD1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html STAG3 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HIRIP3 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TLK1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html ACIN1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TLK2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html CDCA5 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html MYST1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html MYST4 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html MYST3 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SATB1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html DFFB +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html MTA2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HDAC10 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html ESPL1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html ARID1A +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HDAC11 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TAF6L +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html PPARGC1A +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html REC8 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html RFC1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HUWE1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SMARCE1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SYCP3 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html ZWINT +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SMARCA5 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html PAM +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HMGB1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html MRE11A +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SYCP1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html ACD +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html NPM2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html PBRM1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html ASF1A +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HELLS +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html EHMT1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SMG6 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html PIF1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html PHB +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html CREBBP +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html CDC23 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html NDC80 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SUV39H2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HDAC5 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HDAC4 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HDAC3 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HDAC2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HDAC1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SMARCC1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SMARCC2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SUPT16H +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html CHAF1A +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html VCX +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SMC1A +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HDAC8 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html CHAF1B +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HDAC6 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html PTGES3 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html NBN +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html KIF25 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html RSF1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html EZH2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html NAP1L1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html BNIP3 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html NAP1L3 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TERF2IP +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html NAP1L2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html LATS1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html NAP1L4 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html PRMT7 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html DKC1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html PRMT8 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TOP2A +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TERT +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html ZW10 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html RBBP4 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html AIFM2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html NUSAP1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HMGA2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html HMGA1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html RAD50 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html UBE2N +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html CHMP1A +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html BPTF +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html CARM1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html NSD1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html MAP3K12 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html H1FNT +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html POT1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html NCAPH +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SET +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SAFB +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html ACTL6A +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SUPT4H1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TINF2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html ERCC4 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html ERCC1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TERF2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html PDS5B +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html MSH3 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html MSH2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html NASP +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SIRT4 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SIRT5 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TNP1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html CENPE +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SIRT1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SC65 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SIRT2 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html MIS12 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html SMC4 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html CENPH +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html RPS6KA5 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html WHSC1L1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TEP1 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html RBM14 +PWCOMMONS CHROMOSOME ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_ORGANIZATION_AND_BIOGENESIS.html TSSK6 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html FGD2 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html FGD1 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html CD2AP +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html VCL +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html CDC42 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html CDC42EP2 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html CDC42EP1 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html RAC3 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html RAC1 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html CDC42EP4 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html FGD5 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html FGD6 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html FGD3 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html CDC42EP5 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html THBS4 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html FGD4 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html CCDC88A +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html PCNT +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html VANGL2 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html ARFIP2 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html ACTN2 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html DNAI2 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html CDH13 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html CYFIP1 +PWCOMMONS CELL PROJECTION BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/CELL_PROJECTION_BIOGENESIS.html OPHN1 +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html GRM4 +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html CDK5R1 +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html AKT1S1 +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html BAX +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html NF1 +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html PCSK9 +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html PPT1 +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html SOD1 +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html CDK5 +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html GDNF +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html RASA1 +PWCOMMONS REGULATION OF NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_NEURON_APOPTOSIS.html TGFB2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html NCBP2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html NCBP1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html PRPF4B +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html CRNKL1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html LSM6 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SNRPD3 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html CWC15 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SNRPD1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html RP9 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SNRPD2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SYNCRIP +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html ZNF638 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SMNDC1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SFRS6 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html NONO +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SFRS7 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SFRS4 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SFRS5 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html DHX38 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html DDX23 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SFRS8 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SFRS9 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html U2AF1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html DBR1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html LSM4 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SRRM1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html DDX20 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html LSM1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html PRPF31 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SNRPA1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SRPK2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html NOL3 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SNRPN +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html EFTUD2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html PTBP1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SF1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html PRPF3 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SFRS1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html PPARGC1A +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SRPK1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SFRS2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html DDX39 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SNRPB +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html KHSRP +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SLU7 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SNRPC +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SIP1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SNRPF +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html BAT1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SNRPG +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html TRA2A +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SNRPB2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html IVNS1ABP +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SF3B4 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SF3B3 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SF3B2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html PPAN +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html PRPF8 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html CDC40 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html USP39 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html DHX16 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html GEMIN8 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html HNRNPC +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SFRS2IP +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html GEMIN6 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html GEMIN7 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html NOVA1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SFRS11 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html GEMIN5 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html DHX8 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html BCAS2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SNW1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html RNPS1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SF3A2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html PRPF18 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SF3A1 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SF3A3 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html PPIG +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html SFPQ +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html ZRANB2 +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html PHF5A +PWCOMMONS RNA SPLICING http://www.broadinstitute.org/gsea/msigdb/cards/RNA_SPLICING.html TXNL4A +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html ME1 +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html COASY +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html ALAD +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html TSPO +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html MOCS2 +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html GCLC +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html FECH +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html COX10 +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html UROS +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html PPOX +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html COQ7 +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html GCLM +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html PDSS1 +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html PDSS2 +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html COQ3 +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html COQ2 +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html ALAS1 +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html ALAS2 +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html CPOX +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html NFE2L1 +PWCOMMONS COFACTOR BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/COFACTOR_BIOSYNTHETIC_PROCESS.html COX15 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CADM1 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html ELF4 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html IL18 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html JAG2 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html TNFSF13 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html TPD52 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html SPINK5 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html TGFB1 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html SART1 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CD47 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html NLRC3 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html EBI3 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CRTAM +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html SIT1 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CD3D +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CD3E +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html IL27 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html SLA2 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html INHA +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html SOCS5 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html NFAM1 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html IL21 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html THY1 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html INHBA +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html NCK2 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html SIRPG +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html LAT2 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html LAX1 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CD40LG +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html NCK1 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html LCK +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html IL12A +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html IL12B +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html NHEJ1 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html ICOSLG +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html LST1 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html INS +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CD2 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html ZAP70 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html SFTPD +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CD4 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CD24 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html HELLS +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CD7 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CD28 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html IL4 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html PTPRC +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html IL7 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CEBPG +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CD276 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html FOXP3 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CD1D +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html HDAC5 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html LAT +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html HDAC4 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html GLMN +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CLEC7A +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html CD79A +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html HDAC9 +PWCOMMONS LYMPHOCYTE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/LYMPHOCYTE_ACTIVATION.html IL2 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html ITLN1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html STUB1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL31RA +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CLCF1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html ATG7 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html UBE2D1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html BMP4 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html BCL10 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL5 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html LYN +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL29 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html HCLS1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html PPARGC1A +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html BRCA1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL20 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html UBE2N +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CARD14 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CCND1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CD80 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CCND3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html AKTIP +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CCND2 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html CD81 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html IL12A +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html PPP2R4 +PWCOMMONS POSITIVE REGULATION OF PROTEIN MODIFICATION PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_MODIFICATION_PROCESS.html TNK2 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html GNA15 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CASR +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html SLC9A7 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html ATOX1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html F2RL1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CD52 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CXCL12 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html AGTR1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html APP +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html GALR2 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html RGN +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CHRNA7 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html FTL +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html C5AR1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html THY1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCR9 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCR8 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html PLCE1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCR7 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCR6 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCR5 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html ATP2C1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCR4 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCR3 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCR2 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html STC1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html SLC40A1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html GLP1R +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCL1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html SRI +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html C3AR1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CLCN3 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html DRD1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCL3 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCL2 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CYSLTR1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html HFE +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html PPT1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html BDKRB1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html BDKRB2 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html ATP6V1B1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CALR +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCL5 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCL7 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html FTH1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html P2RY4 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html SLC30A5 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html ATP7A +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CD55 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html GCM2 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html SLC4A11 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CXCL13 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html AVPR1B +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html AVPR1A +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CACNA1C +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html XCL1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CACNA1A +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html ATP7B +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html SLC9A1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCKAR +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html MCHR1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CXCR3 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html EDNRA +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html FXN +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html SAA1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CXCR4 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html NMUR2 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html TRPV4 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html XCR1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html MYC +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html KNG1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CLN3 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCKBR +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html PROK2 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html LCK +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html GHRL +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CLN5 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CLN6 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CLDN16 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCR1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html TFR2 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html TAC1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CALCA +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CALCB +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCL23 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html BCL2 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CD24 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html PTPRC +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html OPRL1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html ATP1A3 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCL19 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html ATP1A4 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html MTL5 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html ATP1A1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html ATP1A2 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html SOD1 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCL15 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html TMPRSS3 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCL11 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCL13 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CCL14 +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html HPX +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html MT2A +PWCOMMONS CATION HOMEOSTASIS http://www.broadinstitute.org/gsea/msigdb/cards/CATION_HOMEOSTASIS.html CP +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html RSF1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html BNIP3 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html PRMT7 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html PRMT8 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html SMARCD1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html MYST1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html MYST4 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html MYST3 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html RBBP4 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html HDAC10 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html ARID1A +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html HDAC11 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html TAF6L +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html HMGA1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html PPARGC1A +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html UBE2N +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html SYCP3 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html HUWE1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html BPTF +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html CARM1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html NSD1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html MAP3K12 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html SET +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html NPM2 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html PBRM1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html ACTL6A +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html SUPT4H1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html HELLS +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html EHMT1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html NASP +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html PHB +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html CREBBP +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html SIRT4 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html SIRT5 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html TNP1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html SIRT1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html SIRT2 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html SUV39H2 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html HDAC5 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html RPS6KA5 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html HDAC4 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html HDAC3 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html HDAC2 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html HDAC1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html SMARCC1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html WHSC1L1 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html SMARCC2 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html RBM14 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html HDAC8 +PWCOMMONS CHROMATIN MODIFICATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_MODIFICATION.html HDAC6 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F2RL2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F2RL3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ADORA3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html S100A8 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html AIF1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F13A1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html S100A9 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html GNA12 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html IL13 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CXCL11 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html MMRN1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ADORA1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html TGFB1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html GP9 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html TGFB2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CXCL10 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CTGF +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html LTB4R +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html SERPINE1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html APOA5 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CHRNA7 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html IL1A +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F12 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F11R +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html L3MBTL4 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F10 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html VPS45 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html RELA +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F8 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F9 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CD40 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F7 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CDO1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html IL20 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html TNFAIP6 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCR7 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CD36 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html THBD +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F5 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html HNF4A +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCR5 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CD40LG +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCR4 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCR3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CX3CR1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCR2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html TFPI +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html RIPK2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html NFE2L1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PLA2G2E +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PLA2G2D +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html DCBLD2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html TPST1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html GGCX +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html C3AR1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ACHE +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCL3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ADORA2A +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PABPC4 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html HOXB13 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html AFAP1L2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CX3CL1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ITGB3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html LMAN1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCL5 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html MDK +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCL4 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html AHSG +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html IL17C +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F13B +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html IFNA2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html MIA3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html RAC1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ENTPD1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html BLNK +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PLAT +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ITGA2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html AGER +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html S100A12 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html HDAC5 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html HDAC4 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html APOL3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html LYVE1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CD59 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PARP4 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html GHSR +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html HDAC9 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ABCF1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html FGF7 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ACVRL1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ELF3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html TACR1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CRP +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PRDX5 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html NFKB1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CFHR1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CD97 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html FOS +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html NOD1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CXCR4 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html AOAH +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCL3L3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html IL1RAP +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html MGLL +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html LBP +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html XCR1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html NFX1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html IRAK2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html KNG1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html APCS +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html IL18RAP +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html LYZ +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CHST2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html NLRP3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html WAS +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PROC +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html SIGIRR +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ALOX15 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html KLRG1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ADM +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html EREG +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html GNAQ +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PLA2G7 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html SPRR3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html GHRL +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PROS1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PTAFR +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html GAP43 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html AOC3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CXCL1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html MBL2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html NMI +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html RTN4RL1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCR1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html C5 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CXCL2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CXCL9 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PF4 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html GPR68 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CXCL6 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCL26 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PR47 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCL24 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html TNFRSF1A +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCL22 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html HRH1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCL23 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html MEFV +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCL20 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCL21 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html IL10RB +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ALOX5AP +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html KRT1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html RTN4RL2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html NFATC4 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html GP1BA +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html C2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PTX3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html NFATC3 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html SCG2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html LY75 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html NOX4 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html KLK8 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CEBPB +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html IL5 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html IL8 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html NFRKB +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html IL9 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html NF1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ANXA1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CYP4F11 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html C4BPB +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html SOD1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html TMPRSS6 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html PLG +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCL11 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html VWF +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ORM1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CYBB +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html CCL13 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html AOX1 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html SELE +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html ORM2 +PWCOMMONS RESPONSE TO WOUNDING http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_WOUNDING.html F2R +PWCOMMONS DETECTION OF BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_BIOTIC_STIMULUS.html NOD2 +PWCOMMONS DETECTION OF BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_BIOTIC_STIMULUS.html NLRC4 +PWCOMMONS DETECTION OF BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_BIOTIC_STIMULUS.html CRTAM +PWCOMMONS DETECTION OF BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_BIOTIC_STIMULUS.html NOD1 +PWCOMMONS DETECTION OF BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_BIOTIC_STIMULUS.html PGLYRP4 +PWCOMMONS DETECTION OF BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_BIOTIC_STIMULUS.html PGLYRP2 +PWCOMMONS DETECTION OF BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_BIOTIC_STIMULUS.html PGLYRP3 +PWCOMMONS DETECTION OF BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_BIOTIC_STIMULUS.html PGLYRP1 +PWCOMMONS DETECTION OF BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_BIOTIC_STIMULUS.html NLRP3 +PWCOMMONS DETECTION OF BIOTIC STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_BIOTIC_STIMULUS.html CD1D +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html POLR3G +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html GTF3A +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html SNAPC5 +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html BRF1 +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html POLR3H +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html POLR2L +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html POLR3K +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html SNAPC2 +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html POLR2K +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html SNAPC4 +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html ZNF76 +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html SNAPC3 +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html ZNF143 +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html POLR3C +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html IVNS1ABP +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html ZNF345 +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html BRCA1 +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html TROVE2 +PWCOMMONS TRANSCRIPTION FROM RNA POLYMERASE III PROMOTER http://www.broadinstitute.org/gsea/msigdb/cards/TRANSCRIPTION_FROM_RNA_POLYMERASE_III_PROMOTER.html GTF3C4 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GABBR1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GABBR2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html MBIP +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PDCD4 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html LATS1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html LATS2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html EDNRB +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GPX1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html APOA2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CDKN2A +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PAK2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GALR1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CDKN2D +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GALR3 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html SPRED2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html SPRED1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CDK5RAP1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DHCR24 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TP53 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html RB1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html HBXIP +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html THY1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TNNT2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GRM4 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TARBP2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GRM3 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GRM2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GRM8 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html LAX1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html HIPK3 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GRM7 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CCR2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CAND1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ATPIF1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GNAI3 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GNAI2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DRD5 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html TRIB3 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html SFN +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PYDC1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html HEXIM2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html HEXIM1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DUSP16 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ADRA2A +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html FBXO5 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ANGPTL3 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html APC +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html ANGPTL4 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GPS1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PTPRC +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PIF1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html NF1 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DUSP22 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CRIPAK +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html BIRC5 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GPS2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html CBLC +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html NOSIP +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DUSP2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html GLA +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html RGS3 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html RGS4 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html LTB4R2 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html PPP2R4 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DUSP9 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DUSP8 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html IFI6 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DNAJB6 +PWCOMMONS NEGATIVE REGULATION OF CATALYTIC ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CATALYTIC_ACTIVITY.html DUSP6 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html OSTF1 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html ACHE +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html CASR +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html ELF3 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html STATH +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html ZNF675 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html ATP6V1B1 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html GLI2 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html GLI1 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html AHSG +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html CALCA +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html DSPP +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html TPP1 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html RUNX2 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html SRGN +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html TWIST2 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html BMP4 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html COL13A1 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html KL +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html IL7 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html NF1 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html DMP1 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html MGP +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html CDK6 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html SPARC +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html ANKH +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html MC4R +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html CARTPT +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html ATP6V0A4 +PWCOMMONS TISSUE REMODELING http://www.broadinstitute.org/gsea/msigdb/cards/TISSUE_REMODELING.html ACVR1 +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html LEP +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html PTPRC +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html TARBP2 +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html KLK8 +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html GHRL +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html CARTPT +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html CHRNA7 +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html GHSR +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html SPINK5 +PWCOMMONS NEGATIVE REGULATION OF RESPONSE TO STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_RESPONSE_TO_STIMULUS.html TGFB2 +PWCOMMONS SPHINGOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_BIOSYNTHETIC_PROCESS.html ST6GALNAC6 +PWCOMMONS SPHINGOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_BIOSYNTHETIC_PROCESS.html SGMS2 +PWCOMMONS SPHINGOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_BIOSYNTHETIC_PROCESS.html LARGE +PWCOMMONS SPHINGOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_BIOSYNTHETIC_PROCESS.html UGCG +PWCOMMONS SPHINGOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_BIOSYNTHETIC_PROCESS.html ST8SIA5 +PWCOMMONS SPHINGOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_BIOSYNTHETIC_PROCESS.html LASS1 +PWCOMMONS SPHINGOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_BIOSYNTHETIC_PROCESS.html ST8SIA1 +PWCOMMONS SPHINGOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_BIOSYNTHETIC_PROCESS.html ST8SIA3 +PWCOMMONS SPHINGOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_BIOSYNTHETIC_PROCESS.html SGMS1 +PWCOMMONS SPHINGOLIPID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/SPHINGOLIPID_BIOSYNTHETIC_PROCESS.html LASS5 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html RSF1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html EZH2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html NAP1L1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html BNIP3 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html NAP1L3 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html NAP1L2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html NAP1L4 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html PRMT7 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html PRMT8 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SMARCD1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HIRIP3 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html TLK1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html TLK2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html MYST1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html MYST4 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html MYST3 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SATB1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html RBBP4 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html MTA2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HDAC10 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html ARID1A +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HDAC11 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HMGA2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html TAF6L +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html PPARGC1A +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HMGA1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html UBE2N +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SYCP3 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html BPTF +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SMARCE1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HUWE1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SMARCA5 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html CARM1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html NSD1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html MAP3K12 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HMGB1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html H1FNT +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SET +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SAFB +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html NPM2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html PBRM1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html ACTL6A +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SUPT4H1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html ASF1A +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HELLS +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html EHMT1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html NASP +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html PHB +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html CREBBP +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SIRT4 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SIRT5 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html TNP1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SIRT1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SIRT2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SUV39H2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html RPS6KA5 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HDAC5 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HDAC4 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HDAC3 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HDAC2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HDAC1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SMARCC1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html WHSC1L1 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SMARCC2 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html SUPT16H +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html CHAF1A +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html RBM14 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html VCX +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html CHAF1B +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HDAC8 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html TSSK6 +PWCOMMONS ESTABLISHMENT AND OR MAINTENANCE OF CHROMATIN ARCHITECTURE http://www.broadinstitute.org/gsea/msigdb/cards/ESTABLISHMENT_AND_OR_MAINTENANCE_OF_CHROMATIN_ARCHITECTURE.html HDAC6 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SNCA +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CIAPIN1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SHH +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html FAS +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DDAH2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TWIST2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html OPA1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CRYAA +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BRAF +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CRYAB +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PIM1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BCL2L10 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html THY1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NME5 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NME2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html KRT18 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SERPINF1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CD40LG +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TXNDC5 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html VEGFA +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MAPK8 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MYO18A +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNFRSF6B +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IQCB1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BCL2L2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PPT1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BCL2L1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HSPA1B +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CD74 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html AHSG +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NPHP3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PEA15 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IL17F +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BMP4 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BECN1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SPHK1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CIDEA +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNNI3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TAX1BP1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NOTCH2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BFAR +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NOTCH1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html RNF7 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SFRP1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NUP62 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NOTCH4 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html RTN4 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HTATIP2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NUAK2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BNIP3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ZNF675 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NFKB1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SPINK5 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BAG4 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html GPX1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TRIAP1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BAG1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html USH2A +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DHCR24 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CLN3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html GPR98 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html AMIGO2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html INHBA +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SERPINB9 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PROK2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PSEN1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html EREG +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BNIP1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BNIP2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNFRSF10D +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SERPINB2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NPPB +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html AVEN +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SEMA4D +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ALOX12 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html YWHAZ +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PML +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html RTKN +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ZBTB16 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MIF +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BCL2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BCL3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html AATF +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CD27 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html RASA1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CD28 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IL4 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IL3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IL6 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TBX3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IL7 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NPR1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BIRC6 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BIRC5 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SOD1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BIRC3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PLG +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDH13 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html YWHAH +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html STAB1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html GSK3B +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BNIP3L +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IL2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BARD1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CBX4 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html FOXO1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html FOXO4 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNFSF18 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html GDNF +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDKN2D +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TDGF1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TPT1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html API5 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IL1A +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BCL10 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SOCS2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SOCS3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DFFA +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html RELA +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BCL2A1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HRK +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SOCS5 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HBXIP +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNFAIP8 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CARTPT +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HSPB1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ERC1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HMGB1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html GCLC +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CCL2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MCL1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html AKT1S1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ALB +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NPM1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html GLO1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SRGN +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ARHGDIA +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ANGPTL4 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CFLAR +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MAFB +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HDAC5 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HDAC4 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HDAC3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HDAC1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HDAC9 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IFI6 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IER3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PRDX2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CASP3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CLCF1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PAX7 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NOL3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html LDB1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CDK6 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html INHA +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PROC +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HIPK3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CFL1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html FAIM3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html GHRL +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NAIP +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CNTN4 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html GSTP1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ACVR1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PRKCZ +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNF +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ASNS +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PF4 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html CALCA +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IGF1R +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ERCC5 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SH3GLB1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TNFRSF18 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DAD1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html PIK3R2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SCG2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HSPA9 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html COL4A3 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html IL2RB +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html KLK8 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html COL4A2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html DTX1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html NF1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ANXA1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ANXA5 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html ANXA4 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SIRT2 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html SON +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html HSP90B1 +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BAX +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html BRE +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html MPO +PWCOMMONS NEGATIVE REGULATION OF DEVELOPMENTAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_DEVELOPMENTAL_PROCESS.html TIAF1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html NBN +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html MLH1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html GLI2 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html PMS2L1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html CDT1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html GLI1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html PRIM1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html MUTYH +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html ORC4L +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html PRIM2 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html PMS2 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html POLG2 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html PMS1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html CDC6 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html GTPBP4 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html CCDC88A +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html POLB +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html RAD9A +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html PRKCG +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html MCM3 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html CDK2 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html ORC1L +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html PURA +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html RAD51 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html RFC3 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html RFC4 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html RPAIN +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html RFC1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html EREG +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html CDK2AP1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html ORC5L +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html RAD17 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html REV3L +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html ENPP7 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html HMGB2 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html WRNIP1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html POLA1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html TIPIN +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html RPA4 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html RPA1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html TFAM +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html RPA2 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html ORC2L +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html TSPYL2 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html EXO1 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html MSH6 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html NF2 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html MSH3 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html MSH2 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html MSH5 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html GMNN +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html S100A11 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html ATR +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html TP73 +PWCOMMONS DNA DEPENDENT DNA REPLICATION http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DEPENDENT_DNA_REPLICATION.html ABL1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNK17 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNH1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNC1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNJ15 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html ATP6V0E1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNC4 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNAB3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNC3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNAB1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html ATP6AP1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNJ10 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNIP2 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html HVCN1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNJ12 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNJ11 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNQ4 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNQ3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNK7 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNK6 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNK5 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCN7A +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNQ2 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNQ1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCN10A +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNG2 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCND3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SGK1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCN2B +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCN2A +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SLC34A3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html ATP6V1F +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNA10 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html ATP6V1C1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html NNT +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCN11A +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNH2 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNH3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNH4 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNMB3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNMB4 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCN1B +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNA2 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNA1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNA4 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNA3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNA6 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNA5 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNJ2 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNJ3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNMB1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html ATP6V0B +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNMB2 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNJ1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html ATP6V0C +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNS3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNS1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCN9A +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNE1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNE2 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html C16ORF7 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCNN1G +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html CHP +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCN5A +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCNN1A +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCNN1D +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html TCIRG1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SLC8A1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNB2 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html NOX1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html ATP1A4 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html UCP1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNK1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNK3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNV1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNK4 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNJ5 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNN4 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNJ4 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html ABCC9 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SLC4A11 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNJ6 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNN1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SLC17A3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html UCP3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SLC17A4 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html UCP2 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNN3 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html ATP6V1E1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SLC17A2 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCN4B +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html KCNF1 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html ABCC8 +PWCOMMONS MONOVALENT INORGANIC CATION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MONOVALENT_INORGANIC_CATION_TRANSPORT.html SCN4A +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html FMOD +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html EID2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html ACVRL1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html SNX6 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html LTBP2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html GDF5 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html BMPR2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html STUB1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html TGFB1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html CITED2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html FOXH1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html MAP3K7 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html ACVR1B +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html PEG10 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html RGMB +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html FNTA +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html CDKN2B +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html ZFYVE9 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html IL17F +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html LEFTY2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html VWC2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html GDF9 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html SMAD7 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html TGFBR1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html KLF10 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html SMAD5 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html SMAD4 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html SMAD3 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html CIDEA +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html SMAD2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html SMAD1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html LEFTY1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html CDKN1C +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html ACVR2A +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html INHBA +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html ACVR2B +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html SOST +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html HIPK2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html TGFBR3 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html GDF10 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html TGFBRAP1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html SMURF1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html GDF15 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html HPGD +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html ENG +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html BMPR1A +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN SERINE THREONINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_SERINE_THREONINE_KINASE_SIGNALING_PATHWAY.html ACVR1 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html PSMB10 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html MBL2 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html CCL2 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html LY86 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html PAX5 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html PDCD1 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html CFHR1 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html BCL2 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html POU2F2 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html KRT1 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html LTF +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html MS4A2 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html C2 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html EBI3 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html BLNK +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html CD28 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html ST6GAL1 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html POU2AF1 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html IL6 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html BST2 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html IL7 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html BST1 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html DEFB103A +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html YTHDF2 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html CD83 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html GPI +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html CCR6 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html MNX1 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html TREM1 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html TREM2 +PWCOMMONS HUMORAL IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/HUMORAL_IMMUNE_RESPONSE.html DMBT1 +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html PRKACG +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html NCOA4 +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html LHCGR +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html MEA1 +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html CSDE1 +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html DMRT1 +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html DMRT2 +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html SOX15 +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html SRD5A2 +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html ANKRD7 +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html LHB +PWCOMMONS MALE GONAD DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/MALE_GONAD_DEVELOPMENT.html NR5A1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html NBN +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html MYO6 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html TP53 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html PML +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html IFI16 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html BRCA1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html TRIAP1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html PCBP4 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html EEF1E1 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html BCL3 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html DYRK2 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html C16ORF5 +PWCOMMONS DNA DAMAGE RESPONSESIGNAL TRANSDUCTION BY P53 CLASS MEDIATOR http://www.broadinstitute.org/gsea/msigdb/cards/DNA_DAMAGE_RESPONSESIGNAL_TRANSDUCTION_BY_P53_CLASS_MEDIATOR.html GML +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html ME1 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html FHIT +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html ADSS +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html ADCY7 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html CTPS +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html FIGNL1 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html ADORA2A +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html PGD +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html DCK +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html ABCA1 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html HPRT1 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html PPAT +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html TYMS +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html TYMP +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html NT5M +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html OXER1 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html PTH +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html REXO2 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html CDA +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html C16ORF7 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html ENTPD4 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html NDUFS1 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html NT5C +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html DCTD +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html NUDT4 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html NUDT5 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html OLA1 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html AK5 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html ACLY +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html AMPD3 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html PTHLH +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html PNKP +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html PGLS +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html UMPS +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html UCN2 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html ADM +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html GRM8 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html ADK +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html CTNS +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html PDZD3 +PWCOMMONS NUCLEOTIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOTIDE_METABOLIC_PROCESS.html GUK1 +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html ALDOA +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html GNPDA1 +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html PFKL +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html GUSB +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html PFKFB1 +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html PGD +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html ALDOB +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html HK1 +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html TKTL1 +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html PFKM +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html HYAL4 +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html CHIT1 +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html GNS +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html GBA3 +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html GAPDHS +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html GBA2 +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html PGLS +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html MGAM +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html ECD +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html MIOX +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html GAA +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html TREH +PWCOMMONS CELLULAR CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_CARBOHYDRATE_CATABOLIC_PROCESS.html PYGB +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC38A3 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC44A1 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC44A2 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html AQP9 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC16A10 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC6A2 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC6A3 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC6A4 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC7A8 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC7A9 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html GDNF +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC7A5 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC1A4 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC1A5 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC1A2 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC1A3 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SERINC1 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC1A6 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC25A22 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC22A3 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html ARL6IP5 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC1A1 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC43A1 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html CLN3 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html PRAF2 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html PDPN +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html PICK1 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC3A2 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC7A10 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC3A1 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC25A12 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC25A13 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC6A7 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC18A2 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC18A3 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC18A1 +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html CTNS +PWCOMMONS AMINE TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/AMINE_TRANSPORT.html SLC25A15 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html E2F1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html DBF4 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html FOXO4 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html LATS1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html LATS2 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CUL3 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html ACVR1B +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CUL2 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CUL5 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html GFI1B +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDKN2A +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html DDX11 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDKN2B +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDKN2C +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDKN2D +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDK10 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDCA5 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CUL1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDC7 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html KHDRBS1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDC6 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html ANAPC5 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html ANAPC4 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html POLE +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html SKP2 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html TBRG4 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDK6 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDK4 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDK2 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html FOXN3 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html SPDYA +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html INHBA +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CHMP1A +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDK2AP1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html USH1C +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html KPNA2 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html MAP3K11 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html ACVR1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html BCAT1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html PPP6C +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html POLA1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html ANAPC10 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html RCC1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html KATNA1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html GFI1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html TAF1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDC23 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CENPF +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html BIRC5 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html TPD52L1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDKN3 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDC25C +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDKN1C +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDKN1A +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CDKN1B +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html CUL4A +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html GSPT1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html POLD1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html MYO16 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html ABL1 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html APBB2 +PWCOMMONS INTERPHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/INTERPHASE_OF_MITOTIC_CELL_CYCLE.html APBB1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html RAB3GAP2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TSPO +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html XPO6 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html LTBP2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html AP1G1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html LMAN2L +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html EIF5A +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TNFSF14 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html MIPEP +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html MXI1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html AGXT +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TGFB1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html KLHL2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html SSR1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html AIP +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html HOMER3 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TRAK1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html CEP290 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html RPL11 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TLK1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html KIF13B +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html MCM3AP +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html MYO6 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html CD3G +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html STAP1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html VPS45 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html LRP1B +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ERP29 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html OPTN +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html MYH9 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NUPL2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html RPAIN +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PEX26 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html F2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html RTP3 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html DERL2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html DERL1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html RTP4 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NFKBIE +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PPT1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html CTSA +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html CALR +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html UHMK1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html CD74 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html CDC37 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NPM1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html DUSP16 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ANGPTL3 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TRAM1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html SEC23IP +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html MDFI +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html SMAD3 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html SNAPIN +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ICMT +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ARFIP1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ABCG1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NFKBIL1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TRNT1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NFKBIL2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html CBLB +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PPIH +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html VCP +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TRPS1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PTTG1IP +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html LGTN +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html XPO7 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TRIP6 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html RERE +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PDIA3 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TIMM17A +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html HPS4 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TIMM17B +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html AP3S2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PEX6 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PEX3 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html GLI3 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PEX7 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html AKT1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PEX1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ZFYVE9 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ZFYVE16 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NCKIPSD +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html RANBP2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TPR +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html KPNB1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html KDELR1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TOMM34 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html AP3B1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html KDELR2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html RPGR +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NLRP3 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TIMM23 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TIMM44 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html FLNA +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html MFN2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ZDHHC17 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ATG4D +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ATG4C +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ATG4B +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NUP205 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ATG4A +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html ARCN1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html C3ORF31 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TOMM20 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html KPNA6 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html KPNA5 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TOMM22 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html KPNA4 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html KPNA3 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html KPNA2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html KPNA1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html AP1M2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TNF +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html CDH1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html SEC63 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NUP214 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NAGPA +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PEX19 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html CEP57 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html AP3M1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TAP2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PEX16 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html BCL3 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PEX14 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html AP3D1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html SCG5 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PEX13 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html BCL6 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PEX12 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html CD24 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html APPBP2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TNPO1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PEX10 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html APBA1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html FYB +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NF1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NLGN1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html PPP1R10 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html SELS +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html GABARAP +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html YWHAH +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html COG7 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html GSK3B +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html NLRP12 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html TRPC4AP +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html FAF1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html GGA1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html SSR2 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html F2R +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html BARD1 +PWCOMMONS PROTEIN TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_TRANSPORT.html COG2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL18 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF2C1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MRPL41 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL19 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL14 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL13 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL15 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html TLR1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF5 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html HBS1L +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS6KB2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html TLR3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF5A +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html TLR4 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html TLR6 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html TLR7 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html IL10 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html TLR8 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html TLR9 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html APOA2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF1AX +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html DDX25 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html HRSP12 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL11 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF2B2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF2B3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EBI3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html SPN +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF2B4 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html SAMD4A +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF2B5 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MRPL52 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html BCL10 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html YARS +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MRPL51 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html IL29 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html DARS +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html IL27 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html AARS +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF2S3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html BOLL +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html SARS2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS19 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF2AK1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS17 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RARS +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html BACE2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS12 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html HSPB1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS10 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS11 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF2AK3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF2AK4 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html FARS2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html PABPC4 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html IGF2BP2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MTIF2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MTIF3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html KARS +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF3C +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF3D +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF3A +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS27 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF3B +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL7 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF3G +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL6 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF3H +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL9 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF3E +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF3F +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL8 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html IL17F +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html SFTPD +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MRPL55 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF3I +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL5 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL4 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL7A +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF3J +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EEF1A1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html PAIP2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html PAIP1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MRPS24 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html CD276 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS9 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL23A +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html FOXP3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html FURIN +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS5 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF4B +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html TSC1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL18A +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF4H +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html GLMN +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html GHSR +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html ABCF1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html METAP1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html COPS5 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html DPH1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF2A +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html YBX2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html WARS +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS3A +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EEF2K +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html TNIP1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html LTB +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MRPL3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html PRG3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html NDUFA13 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF1B +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html INHA +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MRPS7 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html SIGIRR +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html INHBB +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html INHBA +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF4G2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF4A3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF4G3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MAST2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL41 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EREG +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF4A2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MTRF1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html FARSB +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL3L +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPS4Y1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html GHRL +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html DHPS +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html IL12B +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html TUFM +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html NACA +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL27A +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL35 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html TNFRSF8 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL37 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL38 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL39 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html NECAB3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html PAIP2B +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html AZU1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html PET112L +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MRPL10 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL30 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL31 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL34 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html KRT7 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html SEPSECS +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html BCL3 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MARS2 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html DAZL +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html CD28 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html IL4 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html IL6 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html DAZ1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html UPF1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RRBP1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html CEBPG +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html ASMT +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html IL9 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL26 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL24 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html ETF1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html EIF2B1 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL28 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL29 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html MRPL23 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL22 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html RPL21 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html TSFM +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html NLRP12 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html IRF4 +PWCOMMONS TRANSLATION http://www.broadinstitute.org/gsea/msigdb/cards/TRANSLATION.html APBB1 +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html ADRB3 +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html GRM4 +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html ADRB2 +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html CARD9 +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html TAOK2 +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html HIPK2 +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html TAOK3 +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html EDA2R +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html TPD52L1 +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html TRAF7 +PWCOMMONS POSITIVE REGULATION OF MAPKKK CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_MAPKKK_CASCADE.html CD27 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html MYL6 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html KIF4A +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html MYO9B +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html MYL6B +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html NEFL +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html APBA1 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html KIF13B +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html DYNC1I1 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html KIF3B +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html OPA1 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html MYO6 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html KIF5B +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html KIF5A +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html MYO1E +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html MYH7 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html MYH6 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html MYH9 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html TNNT2 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html UXT +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html KIF1A +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html KIF1B +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html MAP1S +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html RHOT1 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html RHOT2 +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html LRPPRC +PWCOMMONS CYTOSKELETON DEPENDENT INTRACELLULAR TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/CYTOSKELETON_DEPENDENT_INTRACELLULAR_TRANSPORT.html MYH10 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html TNF +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html UBE2V1 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html PRDX3 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html NOD2 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html NLRC3 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html NPM1 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html PYCARD +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html ABRA +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html CAMK2A +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html BCL10 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html CEBPG +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html RELA +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html EDA2R +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html NFAM1 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html JMY +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html UBE2N +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html PRKCQ +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html CARD11 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html EP300 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html NME1 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html EDF1 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html ERC1 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html IKBKB +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html EDA +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html TSSK4 +PWCOMMONS POSITIVE REGULATION OF DNA BINDING http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_DNA_BINDING.html MAP3K13 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PGD +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html USE1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html RNF217 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html RNASEH1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ISG20 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html FAH +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GLDC +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GOT2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GOT1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html DDAH2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html DDAH1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ANAPC2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ANAPC5 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ANAPC4 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html OLA1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBR3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PGLS +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UHRF2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html NNT +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html COLQ +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBR5 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html MGAM +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html FBXL4 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html AMFR +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html MPST +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HSD17B11 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ALDOA +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HACL1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HSD17B14 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PFKFB1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ALDOB +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PABPC4 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PPT1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HSPA1B +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ASL +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HADHB +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ARIH1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ARG1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GAD2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html INS +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ALDH4A1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CDA +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GCSH +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GAD1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html NTHL1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html FBXO7 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html NPLOC4 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CYP46A1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GUSB +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HGD +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CIDEA +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CDC23 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CDC20 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html TPD52L1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PCNP +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2L3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CEL +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html POP1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HGS +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SMURF2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SMURF1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PLA2G4C +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PLA2G4B +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PPARA +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PPARD +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html BCKDK +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html KIAA0368 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html TSG101 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2G1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2G2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html BNIP3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html AUH +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html MCCC2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html NT5M +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GPX3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GSTZ1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html NT5C +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ZFP36 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ABCE1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SPACA3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html STS +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ACO2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UFD1L +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html AIFM1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HYAL4 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HAO1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HAO2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SIAH1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SIAH2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ECH1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HK1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html EDEM1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SQSTM1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html RNASET2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HSD17B6 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html USP33 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html BCKDHA +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CPT1B +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UPF2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CES2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html BCKDHB +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ACLY +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SOD1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CPT1A +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SELS +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GBA3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GAPDHS +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html BLVRA +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SDHA +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GBA2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SDHB +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PSMD14 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html YWHAH +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GLA +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PPP1R8 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SDHC +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SDHD +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PYGB +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ALDH1L1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GNPDA1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html BTRC +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PDHB +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html APOA4 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ASPA +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CDKN2A +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html MIOX +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html APOA5 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CPA2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html FBXO22 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html NUDT3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html DFFA +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html DFFB +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html NUDT5 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CECR2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html RNASEH2A +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PNPLA3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GNS +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html NEU3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html XRN2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html DERL2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html FZR1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SYVN1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html DERL1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GLUD1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2V2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html NEDD8 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ANAPC10 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CHIT1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2D3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2D2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ASRGL1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html RNF11 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ENTPD4 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2D1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ANGPTL3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SMG6 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SMG5 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SMG7 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SMG1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html TST +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PSMC5 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html VCP +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2E1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html AMT +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html TPP1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html TREH +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html HPD +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2A +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ACADM +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PFKL +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ALDH5A1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ACADS +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html CYCS +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PRKCG +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2I +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2H +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PFKM +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2C +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UGT1A1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2B +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html DDO +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2N +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ACADVL +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE2K +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PRDX6 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GAA +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ERN2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html MDM2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html DHPS +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBB +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html MDM4 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html AKR1D1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE3A +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ADAMTS13 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ECHS1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html EGLN2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html TKTL1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html STUB1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ERCC5 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PRSS2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ECD +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html BDH2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ERCC3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ERCC4 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ERCC1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html ERCC2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html RNF144B +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html FOXL2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html RNASE2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html RNASE3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE4A +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html RNASE6 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UBE4B +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html PARK2 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html AMPD3 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html GSPT1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html BAX +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html UGT2B4 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html FAF1 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SMPD4 +PWCOMMONS CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CATABOLIC_PROCESS.html SMPD3 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html AKT1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html TNF +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html CEP57 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html ZFYVE9 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html F2 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html BCL3 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html BCL6 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html GLI3 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html KPNB1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html TNPO1 +PWCOMMONS PROTEIN IMPORT INTO NUCLEUS TRANSLOCATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_IMPORT_INTO_NUCLEUS_TRANSLOCATION.html F2R +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html ALDH8A1 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html HSD17B11 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html HSD3B1 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html CYP11B2 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html STUB1 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html SHH +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html ECE2 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html AKR1C4 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html ASMTL +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html HSD17B6 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html SCG5 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html CYP11A1 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html DHRS9 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html UGT1A1 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html RDH12 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html DHRS2 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html RDH11 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html DHRS3 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html YWHAH +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html DIO2 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html ADM +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html SULT1B1 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html CHST9 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html CHST8 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html UGT2B11 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html HSD11B2 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html UGT2B4 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html DIO1 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html AKR1D1 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html ALDH9A1 +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html RETSAT +PWCOMMONS HORMONE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HORMONE_METABOLIC_PROCESS.html BMP6 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html SERGEF +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html CRTAM +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html CARD8 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html ACHE +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html CADM1 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html CIDEA +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html ARFIP1 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html DPH3 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html PYDC1 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html NLRP3 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html FOXP3 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html NLRP2 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html NOD2 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html APOA2 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html APOA1 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html INS +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html ANG +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html PYCARD +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html NLRP12 +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html GLMN +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html SRGN +PWCOMMONS REGULATION OF PROTEIN SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_SECRETION.html DNAJC1 +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html CRTAM +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html ACHE +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html CARD8 +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html CADM1 +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html INHA +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html NLRP3 +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html PYDC1 +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html NLRP2 +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html INHBB +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html INHBA +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html NOD2 +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html GCK +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html GHRH +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html ANG +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html INS +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html SCIN +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html PYCARD +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html GHRL +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html GLMN +PWCOMMONS POSITIVE REGULATION OF SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_SECRETION.html CARTPT +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html INHBA +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html CEBPG +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html IL27 +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html IL18 +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html CD276 +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html TLR3 +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html INHA +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html IL12B +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html TLR7 +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html EBI3 +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html TLR8 +PWCOMMONS INTERFERON GAMMA BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_BIOSYNTHETIC_PROCESS.html TLR9 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RAB3GAP2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html LTBP2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CADM1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html MXI1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SSR1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html HOMER3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TRAK1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CEP290 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TLK1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RPL11 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html KIF13B +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CRTAM +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CD3G +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html VPS45 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html VANGL2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html OPTN +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html MYH9 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html COLQ +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html BACE2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html F2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PEX26 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html BIN3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RTP3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RTP2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RTP4 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NFKBIE +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RTP1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html AKAP10 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PPT1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CALR +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html UHMK1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CD74 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CDC37 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html INS +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html DUSP16 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SUPT7L +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SEC23IP +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TRAM1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html MDFI +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SMAD3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CIDEA +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ARFIP1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ABCG1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html GGN +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NFKBIL2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CBLB +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TRPS1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html LGTN +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RERE +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PDIA3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PDIA2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TIMM17A +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TIMM17B +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html AP3S2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PDIA4 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html GLI3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CANX +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NOD2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ZFYVE9 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html COX18 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html KDELR1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TOMM34 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html AP3B1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html KDELR2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RPGR +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TP53 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html FLNA +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ZDHHC17 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NUP205 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TOMM20 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TOMM22 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TMSB4Y +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ARL4D +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SHROOM2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SHROOM3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NUP214 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NAGPA +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PEX19 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SQSTM1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PEX16 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html BCL3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html AP3D1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PEX14 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html BCL6 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PEX13 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PEX12 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CD24 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PEX10 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html APBA1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html FYB +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SERGEF +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NLGN1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PPP1R10 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html BIRC5 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html GABARAP +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SELS +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html COG3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html YWHAH +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html COG7 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html GSK3B +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RAB35 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NLRP12 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SSR2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html COG2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html BARD1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TSPO +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html XPO6 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html AP1G1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html LMAN2L +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html EIF5A +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TNFSF14 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html MIPEP +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html AGXT +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html KLHL2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TGFB1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html AIP +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NLRC4 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html APOA2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html APOA1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html DNAJC1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html EGFR +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CUTA +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html MCM3AP +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html MYO6 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html STAP1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html LRP1B +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ERP29 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NUPL2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RPAIN +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SNX9 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html DERL2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ACHE +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ARFGAP3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PPY +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html DERL1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CTSA +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ABCA1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PYDC1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NPM1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ANGPTL3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SRGN +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CARD8 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TAF3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ICMT +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SNAPIN +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html REEP1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html FOXP3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NFKBIL1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TRNT1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PPIH +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html VCP +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PTTG1IP +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html GLMN +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TRIP6 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html XPO7 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html HPS4 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PEX6 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html DPH3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PEX3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PEX7 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html AKT1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PEX1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ANG +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ZFYVE16 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html RANBP2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NCKIPSD +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TPR +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html KPNB1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TOPORS +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NLRP3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TIMM23 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TIMM44 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NLRP2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html MFN2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ATG4D +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ATG4C +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ATG4B +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ATG4A +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html C3ORF31 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CD81 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ARCN1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html KPNA6 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html KPNA5 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html KPNA4 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html KPNA3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html KPNA2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html KPNA1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TNF +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html AP1M2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CDH1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SEC63 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CEP57 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html AP3M1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TAP2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html PYCARD +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SCG5 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html APPBP2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html ERCC3 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TNPO1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html SCG2 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html NF1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html MAL +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html CBY1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TMEM48 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html TRPC4AP +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html FAF1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html GGA1 +PWCOMMONS PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_LOCALIZATION.html F2R +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html ALDOA +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html SPACA3 +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html GNPDA1 +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html PFKL +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html GUSB +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html PGD +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html ALDOB +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html PFKFB1 +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html HK1 +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html TKTL1 +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html PFKM +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html HYAL4 +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html CHIT1 +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html GBA3 +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html GAPDHS +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html GNS +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html GBA2 +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html PGLS +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html MIOX +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html ECD +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html MGAM +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html GAA +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html TREH +PWCOMMONS CARBOHYDRATE CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_CATABOLIC_PROCESS.html PYGB +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html ACR +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html AVPR2 +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html ADORA3 +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html CAP2 +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html ADCY7 +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html ADORA2B +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html GHRHR +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html ADCYAP1 +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html EDNRA +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html CALCA +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html CRHR1 +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html ADRB3 +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html ADRB2 +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html ADRB1 +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html P2RY11 +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html GIPR +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html GNAS +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html CAP1 +PWCOMMONS ADENYLATE CYCLASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/ADENYLATE_CYCLASE_ACTIVATION.html GLP1R +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html HMGB1 +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html MSH6 +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html HMGB2 +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html MSH3 +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html MSH2 +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html POLG +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html UNG +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html TP53 +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html SMUG1 +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html MPG +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html ERCC6 +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html TDG +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html OGG1 +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html APEX1 +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html CCNO +PWCOMMONS BASE EXCISION REPAIR http://www.broadinstitute.org/gsea/msigdb/cards/BASE_EXCISION_REPAIR.html NTHL1 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html BID +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html CDK5R1 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html GRIK2 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html NF1 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html BNIP3 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html PPT1 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html SOD1 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html CDK5 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html GDNF +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html NLRP1 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html TGFB2 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html GRM4 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html AKT1S1 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html BCL2 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html BAX +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html PCSK9 +PWCOMMONS NEURON APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/NEURON_APOPTOSIS.html RASA1 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html PAM +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html H1FNT +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html RSF1 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html NAP1L1 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html HAT1 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html NAP1L3 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html NAP1L2 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html NAP1L4 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html NCAPH +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html SET +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html ACIN1 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html CDCA5 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html ASF1A +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html TOP2A +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html HELLS +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html MYST3 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html AIFM2 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html DFFB +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html SIRT4 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html TNP1 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html SIRT5 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html NUSAP1 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html SIRT1 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html SMC4 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html HDAC5 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html CHMP1A +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html SYCP3 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html ASH1L +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html SMARCA5 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html PRM1 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html PRM2 +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html CHAF1A +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html CHAF1B +PWCOMMONS DNA PACKAGING http://www.broadinstitute.org/gsea/msigdb/cards/DNA_PACKAGING.html TSSK6 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html LALBA +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html HS3ST5 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html GCNT2 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html NDST1 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html B3GALT6 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html FUT8 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html ALG1 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html GALNT5 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html PFKFB1 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html UGDH +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html ST8SIA2 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html ACN9 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html B3GNT8 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html XYLT1 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html CHST12 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html MPDU1 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html CHST11 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html GYS2 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html CHST13 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html HS6ST1 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html DYRK2 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html TSTA3 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html B4GALT7 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html NANP +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html B4GALT1 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html UAP1 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html GMDS +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html CHST3 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html GYG2 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html PMM2 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html PPARGC1A +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html GLCE +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html B3GAT2 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html ATF4 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html GCK +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html CHST7 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html CHST6 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html HAS1 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html SLC25A10 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html CHST9 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html CHST8 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html EXT1 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html EXT2 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html HS3ST3B1 +PWCOMMONS CARBOHYDRATE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CARBOHYDRATE_BIOSYNTHETIC_PROCESS.html COG2 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNH1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNK17 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNC1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNJ15 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNC4 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNC3 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNAB3 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNAB1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNJ10 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNJ12 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNIP2 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNJ11 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNQ4 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNQ3 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNK7 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNK6 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNK5 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNQ2 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNQ1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNG2 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCND3 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNA10 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNH2 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNH3 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNH4 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNMB3 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNMB4 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNA2 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNA1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNA4 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNA3 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNA6 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNA5 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNJ2 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNJ3 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNMB1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNJ1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNMB2 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNS3 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNS1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNE1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNE2 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html CHP +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNB2 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html ATP1A4 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNK1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNV1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNK3 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNK4 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNJ5 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNN4 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNJ4 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html ABCC9 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNJ6 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNN1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNN3 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html KCNF1 +PWCOMMONS POTASSIUM ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/POTASSIUM_ION_TRANSPORT.html ABCC8 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html CRTAM +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html CARD8 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html CADM1 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html CIDEA +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html ABCA1 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html PYDC1 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html FOXP3 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html NLRP3 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html NLRP2 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html APOA2 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html NLRC4 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html NOD2 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html APOA1 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html INS +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html NLRP12 +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html PYCARD +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html GLMN +PWCOMMONS CYTOKINE SECRETION http://www.broadinstitute.org/gsea/msigdb/cards/CYTOKINE_SECRETION.html SRGN +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNE1L +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ADORA3 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TNNC2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html GRIK1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CADM1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TNNC1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html GRIK2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ATP6AP2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL18 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html FST +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TNFSF13 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html APOBEC3G +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html APOBEC3F +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TGFB1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TLR8 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SART1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html DMPK +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TGFB2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MAP3K7 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD47 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IFNG +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SERPINE1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CHRNA7 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IFNK +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html EBI3 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CRTAM +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL29 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD3E +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL27 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MYH7 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MYH6 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SOCS5 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL21 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TRAT1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html THY1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TNNT2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SIRPG +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PLCE1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html LAT2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html HIF1A +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TNNT1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD40LG +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html F2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html HSPB7 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html RYR2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CARTPT +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SRI +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNMB4 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TRAF2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MYL5 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html LST1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MYL2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html AFAP1L2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PXK +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MYL9 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNMB2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html AHSG +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MIA3 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SFTPD +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ZAP70 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TRAF6 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SRGN +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html BMP4 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNB2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SPHK1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SMAD4 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD276 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SMAD3 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CIDEA +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MALT1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html FOXP3 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ANKH +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html LAT +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ATP2A1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IKBKG +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html GLMN +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CACNA1H +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD79A +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html GHSR +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CYP2J2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html GLRA1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html BCAR1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL28RA +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MYBPC3 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ZNF675 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNIP2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNJ12 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SPINK5 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CFHR1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html NOD2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html DES +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNQ1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNG2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KNG1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SPACA3 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SIT1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SLA2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html INHA +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html NFAM1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html NCR1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PROC +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html UBE2N +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html NCK2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html INHBA +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TARBP2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PROK2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CARD11 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PTGDS +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html EREG +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html LAX1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CHRM2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html NCK1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html LCK +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL12A +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html GHRL +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL12B +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html UBB +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNH2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ICOSLG +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ACVR1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MBL2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html HS3ST5 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PPP1R12B +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TPM1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PR47 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CALCA +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MYBPH +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNE1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KRT1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KCNE2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html GP1BA +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html C2 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CNN1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD24 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SCN5A +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html NMU +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD28 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL4 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html COL4A4 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html PTPRC +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KLK8 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html ACTC1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html KL +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html IL7 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html NF1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html SOD1 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html TMPRSS6 +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html CD1D +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html FYN +PWCOMMONS REGULATION OF MULTICELLULAR ORGANISMAL PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MULTICELLULAR_ORGANISMAL_PROCESS.html MC4R +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html BMP4 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL5 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html LYN +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL29 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html ITLN1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html HCLS1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL20 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL31RA +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CCND1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CARD14 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CCND3 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CD80 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html AKTIP +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CCND2 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CLCF1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html CD81 +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html IL12A +PWCOMMONS POSITIVE REGULATION OF PROTEIN AMINO ACID PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PROTEIN_AMINO_ACID_PHOSPHORYLATION.html TNK2 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html MDFI +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html NFKBIE +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html NF1 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html TNFSF14 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html SMAD3 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html CDH1 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html NLRP3 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html MXI1 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html FLNA +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html TGFB1 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html NFKBIL1 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html NFKBIL2 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html NLRP12 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html BCL3 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html FAF1 +PWCOMMONS REGULATION OF PROTEIN IMPORT INTO NUCLEUS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_IMPORT_INTO_NUCLEUS.html TRIP6 +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html IL27 +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html CEBPG +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html IL18 +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html CD276 +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html TLR3 +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html INHA +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html FOXP3 +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html TLR7 +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html TLR8 +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html TLR9 +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html INHBA +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html IL12A +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html IL12B +PWCOMMONS INTERFERON GAMMA PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/INTERFERON_GAMMA_PRODUCTION.html EBI3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF2C1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html AURKAIP1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html LTBP4 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF5 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF5A +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR4 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR6 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CXCL12 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR7 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SHH +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR8 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TGFB1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL10 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TLR9 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL31RA +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html APOA2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html ATG7 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html DDX25 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TDGF1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html HRSP12 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF2B2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SAMD4A +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EBI3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SPN +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html DNAJC1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF2B5 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EGFR +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BCL10 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html GTPBP4 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL29 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL27 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SOCS1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PPARGC1A +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BOLL +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TRAT1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL20 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF2AK1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BACE2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html RNF139 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html HSPB1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF2AK3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF2AK4 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html ITLN1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html KATNB1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html ITGB2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html ARF6 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IGF2BP2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html MTIF2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html MTIF3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TIMP1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF3C +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF3D +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF3A +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CDC42EP2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF3G +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF3H +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF3E +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF3F +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL17F +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SFTPD +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF3I +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CLASP1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF3J +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html ANGPTL3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html UBE2D1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CDC42EP5 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BMP4 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PAIP2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CD276 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html FOXP3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html FURIN +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BRCA1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF4B +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html AKTIP +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TSC1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF4H +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html GLMN +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TNK2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html GHSR +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL22RA2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html LIMA1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html METAP1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF2A +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html LATS1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html YBX2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html NDUFS4 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CLCF1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html GSN +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TPP1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html MAPT +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html LTB +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html ARHGEF2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CCDC88A +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PRG3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html LYN +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CCDC88C +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html NDUFA13 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF1B +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PRKCG +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html INHA +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html MID1IP1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SIGIRR +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html INHBB +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html UBE2N +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF4G2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html INHBA +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF4A3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html NCK2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CCND1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF4G3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CARD14 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html MAST2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CCND3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EREG +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CD80 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CCND2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html MTRF1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html EIF4A2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html NCK1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TPPP +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CD81 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL12A +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html GHRL +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TMSB4Y +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL12B +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html MAPRE1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CLN6 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html TNFRSF8 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html STUB1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html NECAB3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PAIP2B +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html AZU1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SET +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html KRT7 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html SEPSECS +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html BCL3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html DAZL +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html RASA1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CD28 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html APC +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL4 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL3 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html DAZ1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL6 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html UPF1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL5 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html NF2 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html HCLS1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CEBPG +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IL9 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html ETF1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html CAPG +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html NLRP12 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html PPP2R4 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IRF4 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html APBB1 +PWCOMMONS REGULATION OF CELLULAR PROTEIN METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELLULAR_PROTEIN_METABOLIC_PROCESS.html IGFBP3 +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html DYNC1I1 +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html KIF4A +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html KIF3B +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html OPA1 +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html KIF5B +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html KIF5A +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html UXT +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html KIF1A +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html KIF1B +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html MAP1S +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html RHOT1 +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html RHOT2 +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html NEFL +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html APBA1 +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html LRPPRC +PWCOMMONS MICROTUBULE BASED MOVEMENT http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_BASED_MOVEMENT.html KIF13B +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html GTPBP4 +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html CCDC88C +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html HPS4 +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html PEX6 +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html APTX +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html AURKA +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html ISOC2 +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html PPARGC1A +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html PTEN +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html COG3 +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html APOA2 +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html STX12 +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html APOA1 +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html A1CF +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html COG7 +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html CDKN2AIP +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html TBRG1 +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html MDM4 +PWCOMMONS REGULATION OF PROTEIN STABILITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_PROTEIN_STABILITY.html FBXO7 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CADM1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html BCAR1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL18 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL28RA +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html APOBEC3G +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TNFSF13 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html APOBEC3F +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SPINK5 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SART1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TLR8 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TGFB1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TGFB2 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CFHR1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html MAP3K7 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD47 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IFNK +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html EBI3 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SPACA3 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CRTAM +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SIT1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL29 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD3E +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL27 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SLA2 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SOCS5 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html NFAM1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html INHA +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL21 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html NCR1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TRAT1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html THY1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html UBE2N +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html INHBA +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TARBP2 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html NCK2 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html LAT2 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SIRPG +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html EREG +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html LAX1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html NCK1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html LCK +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL12A +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL12B +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html ICOSLG +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html MBL2 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TRAF2 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html LST1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html MIA3 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html KRT1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html SFTPD +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html ZAP70 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html C2 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD24 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html TRAF6 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD28 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL4 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html PTPRC +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IL7 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD276 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html MALT1 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html FOXP3 +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD1D +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html LAT +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html FYN +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html IKBKG +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html GLMN +PWCOMMONS REGULATION OF IMMUNE SYSTEM PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_SYSTEM_PROCESS.html CD79A +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR1 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR3 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TNFRSF8 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR4 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR6 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR7 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR8 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html TLR9 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html AZU1 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html APOA2 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html IL17F +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html SFTPD +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html BCL3 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html LTB +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html SPN +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html EBI3 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html CD28 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html BCL10 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html IL6 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html PRG3 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html CEBPG +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html IL27 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html IL9 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html CD276 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html INHA +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html FOXP3 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html SIGIRR +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html INHBB +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html INHBA +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html MAST2 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html EREG +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html NLRP12 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html GLMN +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html GHRL +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html IRF4 +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html IL12B +PWCOMMONS REGULATION OF CYTOKINE BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CYTOKINE_BIOSYNTHETIC_PROCESS.html GHSR +PWCOMMONS SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SPINDLE_ORGANIZATION_AND_BIOGENESIS.html KIF23 +PWCOMMONS SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SPINDLE_ORGANIZATION_AND_BIOGENESIS.html KIF11 +PWCOMMONS SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SPINDLE_ORGANIZATION_AND_BIOGENESIS.html PRC1 +PWCOMMONS SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SPINDLE_ORGANIZATION_AND_BIOGENESIS.html RAN +PWCOMMONS SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SPINDLE_ORGANIZATION_AND_BIOGENESIS.html TTK +PWCOMMONS SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SPINDLE_ORGANIZATION_AND_BIOGENESIS.html STMN1 +PWCOMMONS SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SPINDLE_ORGANIZATION_AND_BIOGENESIS.html TUBG1 +PWCOMMONS SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SPINDLE_ORGANIZATION_AND_BIOGENESIS.html RCC1 +PWCOMMONS SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SPINDLE_ORGANIZATION_AND_BIOGENESIS.html SMC1A +PWCOMMONS SPINDLE ORGANIZATION AND BIOGENESIS http://www.broadinstitute.org/gsea/msigdb/cards/SPINDLE_ORGANIZATION_AND_BIOGENESIS.html SMC3 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN22 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html TIMM50 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN21 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTEN +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html TGFB1 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPRJ +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPP2R1A +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPRM +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPRN2 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPRH +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPRR +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPRT +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPRO +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html TPTE +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPM1G +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPP1CA +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPM1D +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPEF2 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html SBF1 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPEF1 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPM1M +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html CTDP1 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPP5C +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPP2R2A +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPP6C +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPP2R3B +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPP2R3A +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html SSH1 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html SSH2 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html DUSP10 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPM1B +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html MTMR3 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html DUSP13 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPP2CA +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPP2CB +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPLA +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html MTMR7 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPRB +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN7 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN6 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPRC +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN9 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPRD +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPRE +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN18 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN3 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN2 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPRZ1 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN5 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN4 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html EPM2A +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN14 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN13 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html DUSP22 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PTPN12 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html DUSP5 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html DUSP4 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html DUSP3 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html DUSP2 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html PPP2R4 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html DUSP9 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html DUSP8 +PWCOMMONS PROTEIN AMINO ACID DEPHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/PROTEIN_AMINO_ACID_DEPHOSPHORYLATION.html DUSP6 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SNCA +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CBX4 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html FOXO1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CIAPIN1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html GDNF +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TNFSF18 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CDKN2D +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TDGF1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TPT1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html FAS +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html DDAH2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html API5 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html IL1A +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BCL10 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html OPA1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BRAF +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SOCS2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CRYAA +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CRYAB +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SOCS3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html DFFA +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html RELA +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BCL2A1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html HRK +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html PIM1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html HBXIP +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BCL2L10 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html NME5 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html NME2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html KRT18 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CD40LG +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TXNDC5 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html VEGFA +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TNFAIP8 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html HSPB1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html MAPK8 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html ERC1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html MYO18A +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TNFRSF6B +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html HMGB1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CCL2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html GCLC +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html MCL1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html PPT1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BCL2L2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html HSPA1B +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BCL2L1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CD74 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html PEA15 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html AKT1S1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html ALB +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html NPM1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html GLO1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html ARHGDIA +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html ANGPTL4 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CFLAR +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BECN1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SPHK1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CIDEA +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TAX1BP1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html NOTCH2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BFAR +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html HDAC3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html RNF7 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html HDAC1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SFRP1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html NUP62 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html IFI6 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html RTN4 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html IER3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html HTATIP2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html NUAK2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BNIP3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html NFKB1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html PRDX2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html GPX1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BAG4 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TRIAP1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CASP3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BAG1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CLCF1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html PAX7 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html DHCR24 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CLN3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html NOL3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html PROC +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html AMIGO2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html PROK2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SERPINB9 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html PSEN1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BNIP1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TNFRSF10D +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BNIP2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html HIPK3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CFL1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SERPINB2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html GHRL +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html AVEN +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html FAIM3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html NAIP +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SEMA4D +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html GSTP1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html ALOX12 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html ACVR1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html PRKCZ +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html YWHAZ +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TNF +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html RTKN +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html ASNS +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html MIF +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html IGF1R +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html ERCC5 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SH3GLB1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BCL2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TNFRSF18 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html DAD1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BCL3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html AATF +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html RASA1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CD27 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SCG2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html HSPA9 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html PIK3R2 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CD28 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html IL4 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html IL3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html IL2RB +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html IL6 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TBX3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html IL7 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html ANXA1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BIRC6 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BIRC5 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html ANXA5 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BIRC3 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SOD1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html ANXA4 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html CDH13 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html SON +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html HSP90B1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BAX +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html GSK3B +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BNIP3L +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BRE +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html MPO +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html TIAF1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html BARD1 +PWCOMMONS NEGATIVE REGULATION OF PROGRAMMED CELL DEATH http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PROGRAMMED_CELL_DEATH.html IL2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html FGF5 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html MTSS1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html NRTN +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html MPZL1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html EDN2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html BCAR1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html AP3S1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html FOXO4 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html AKT1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html PDPK1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html GAB1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html TDGF1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html TGFA +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html SHC1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html FRS3 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html SHC3 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html RAPGEF1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html FRS2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html INSR +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html EGFR +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html PTPRJ +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html EFNB3 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html PTPRG +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html CD3E +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html BAIAP2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html OTX2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html PICK1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html SOCS1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html PTPRT +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html IRS1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html CD3EAP +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html DOK1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html NCK2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html ADRB2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html GRB10 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html EREG +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html ROR1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html FOXC2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html LCP2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html REPS2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html FGFR4 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html FGFR3 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html GRB2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html ERBB3 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html ERBB2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html AFAP1L2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html ABI1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html BDKRB2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html SRC +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html PXN +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html IGF1R +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html UTP11L +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html MUSK +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html CEP57 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html SORBS1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html PTK2B +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html TEK +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html AGRN +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html PIK3R3 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html EGF +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html PIK3R1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html CNKSR1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html FIBP +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html FLT3 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html FLT4 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html CBL +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html IGF2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html KDR +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html RPS6KA5 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html NTRK3 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html EPS15 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html CBLC +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html CDH13 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html ERBB2IP +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html EPS8 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html PRLR +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html EPGN +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html NTRK1 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html NTRK2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html MAPK8IP2 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html GRB7 +PWCOMMONS TRANSMEMBRANE RECEPTOR PROTEIN TYROSINE KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMEMBRANE_RECEPTOR_PROTEIN_TYROSINE_KINASE_SIGNALING_PATHWAY.html GFRA2 +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html FOXL2 +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html DFFA +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html AIFM1 +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html DFFB +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html CYCS +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html CECR2 +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html CIDEA +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html BNIP3 +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html PPT1 +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html TPD52L1 +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html SOD1 +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html CDKN2A +PWCOMMONS DNA FRAGMENTATION DURING APOPTOSIS http://www.broadinstitute.org/gsea/msigdb/cards/DNA_FRAGMENTATION_DURING_APOPTOSIS.html BAX +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html BLVRA +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html ALAS1 +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html ALAD +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html TSPO +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html FECH +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html ALAS2 +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html COX10 +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html CPOX +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html PPOX +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html NFE2L1 +PWCOMMONS HEME METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/HEME_METABOLIC_PROCESS.html COX15 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html RTN4 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html NRP2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html BMP10 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html NRTN +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html NRP1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html ACVRL1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html HMGCR +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html BCAR1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html TNFSF12 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html ENPEP +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html GLI2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html PTEN +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html CD2AP +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html GDNF +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html IL10 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SHH +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html VCL +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html TGFB2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html WNT1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html ANG +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SAA1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html TDGF1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SEMA3B +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html UNC5C +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SPON2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SYK +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html S100A2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html EGFR +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html GTPBP4 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html CCDC88A +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html NRXN3 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html MDGA1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html OTX2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html NRD1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html NRXN1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html MYH9 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html NEXN +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SLIT1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SLIT2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html THY1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html VEGFC +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html CD34 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html CLIC4 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html ALOX15B +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SEMA4F +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html ITGB1BP1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html IL12A +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html OPHN1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SIAH1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html CNTN4 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html IL12B +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html UBB +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html LAMC1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html CDK5R1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SHROOM2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html ABI3 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html ABI2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html PF4 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html ITGB2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html CX3CL1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html ITGB1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html CALCA +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html AZU1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html DOCK2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html MIA3 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html KAL1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html PRSS3 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html CKLF +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SFTPD +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html KRT2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html TNN +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html CD24 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html LAMB1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html PPAP2A +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html ANGPTL3 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html PPAP2B +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html THBS4 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SCG2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html PARD6B +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html S100P +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html IL8 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html NF2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html TBX5 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html SPHK1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html NF1 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html DPYSL5 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html PLG +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html CDH13 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html PARP9 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html AMOT +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html TRIP6 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html FEZ2 +PWCOMMONS CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MIGRATION.html FEZ1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ADORA3 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ADCY7 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html LHCGR +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html VIPR1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GHRHR +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html HTR1B +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html PTGIR +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html MC1R +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GALR1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GALR3 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GALR2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GLP2R +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html PRKACB +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html HTR1D +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html HTR1F +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html HTR1E +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html NUDT4 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html HTR4 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html SSTR4 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html PTHLH +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CRHR1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CRHR2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html SSTR5 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html SSTR2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html SSTR3 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html SSTR1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html HTR7 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CCR3 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html HTR6 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CCR2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html MC2R +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GLP1R +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ACR +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html DRD1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GNAI3 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CCL2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ADORA2B +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GNAI2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html DRD2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html DRD5 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ADCYAP1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ADRB3 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CNR1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CNR2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ADRA2A +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html TBL3 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html RGS1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html NPY +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html LTB4R2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html MTNR1B +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ADRA1B +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GRK5 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CORT +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ADRA1D +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html MTNR1A +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html OPRM1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html MCHR1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html WASF2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GABBR1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GABBR2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html EDNRA +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html EDNRB +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html NDUFS4 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html MC5R +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CAP1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CALCRL +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html XCR1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html PTGER4 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GRM4 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CHRM5 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ADRB2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GRM3 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GRM2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html ADRB1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CHRM2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GRM8 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GHRH +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GRM7 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GIPR +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GNAS +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html TSHR +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CALCR +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html AVPR2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CCR1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html NPY2R +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html OPRK1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html FPR1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GCGR +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html GPR3 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CALCA +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html HRH3 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html HRH2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html MC3R +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html CAP2 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html OPRL1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html NF1 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html NPY1R +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html P2RY11 +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html MC4R +PWCOMMONS CYCLIC NUCLEOTIDE MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CYCLIC_NUCLEOTIDE_MEDIATED_SIGNALING.html OPRD1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html CNBP +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html HSD3B1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html CYP11A1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html HSD3B7 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html TFCP2L1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html CYP11B2 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html FDPS +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html FDXR +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html NR0B1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html SOD1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html CYP7B1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html CYP39A1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html ADM +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html DHCR7 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html NPC1L1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html HSD11B2 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html AKR1D1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html SCP2 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html NSDHL +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html DHCR24 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html NR5A1 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html BMP6 +PWCOMMONS STEROID BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/STEROID_BIOSYNTHETIC_PROCESS.html CYP19A1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC22A16 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNC1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNC4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html TSPO +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNC3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATOX1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP6AP1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNK7 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html WNK4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNK6 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNK5 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC4A2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CHRNA7 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC4A1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCND3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCN2B +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCN2A +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html TRPA1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC34A1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html STIM2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html WNK1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html STIM1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC34A3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html PKD2L1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC34A2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html NNT +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html RHCG +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP2C1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html RYR3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html RYR1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html AKAP7 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC40A1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html FXYD1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNMB3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ORAI1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNMB4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html FXYD3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCN1B +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNA2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNA1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNA4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CCL8 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNA3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html HFE +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNA6 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CACNB3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CACNB4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNA5 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNJ2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNJ3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP6V0B +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNMB1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNJ1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNMB2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP6V0C +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC11A2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNS3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNS1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCN9A +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC30A5 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html C16ORF7 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html HCN4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC31A2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC31A1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html TRPC1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html HCN2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html TRPC4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CACNA2D1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html TRPC3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html TRPC6 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html TRPC5 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNB2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html UCP1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNK1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html VDAC2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNK3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html VDAC1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNK4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNJ5 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP7A +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNJ4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC4A11 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNJ6 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html NPY +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html P2RX1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html UCP3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html UCP2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html LASP1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP2A3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP2A1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CHRNB4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CHRNB1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC13A4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CACNA1D +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CLCN4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP7B +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNK17 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNH1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNJ15 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP6V0E1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNAB3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html GLRA1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNAB1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html GLRA2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNJ10 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNIP2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNJ12 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html HVCN1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC26A2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNJ11 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNQ4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNQ3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLN +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html NMUR1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html NMUR2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC22A4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html TRPV5 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC22A3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC22A6 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCN7A +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNQ2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNQ1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html COX17 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC22A2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCN10A +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC22A1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNG2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html TRPM3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SGK1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC22A7 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC22A8 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CLIC1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html TRPM2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP6V1F +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC26A4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP6V1C1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNA10 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC26A3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CLIC3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CLIC5 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCN11A +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNH2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNH3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNH4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLCO1A2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html BEST1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html PKD2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNE1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNE2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CCS +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCNN1G +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CHP +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCNN1A +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCN5A +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCNN1D +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC39A2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC39A1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html TCIRG1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html PLP2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html GLRB +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC8A1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html NOX1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP1A4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html RHAG +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNV1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC17A7 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNN4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLCO1B3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC17A5 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ABCC9 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC17A3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNN1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC17A4 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ATP6V1E1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC17A1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNN3 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html PLN +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLC17A2 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SLCO1B1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCN4B +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html KCNF1 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html ABCC8 +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html SCN4A +PWCOMMONS ION TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/ION_TRANSPORT.html CSN2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MMS19 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD51C +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html XRCC4 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html XRCC3 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html XRCC2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ZAK +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html XRCC6 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html SETX +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html IGHMBP2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MUTYH +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD21 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html CDKN2D +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html PMS2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html CCNA2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MAP2K6 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html PMS1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html CIB1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html POLL +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MYO6 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html POLI +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html POLH +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html POLG +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html LIG1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RINT1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html POLE +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html LIG3 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD9A +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html LIG4 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html DDIT3 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html FOXN3 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html PNKP +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RFC3 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RPAIN +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html UBR5 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD17 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html HMGB1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD23B +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html HMGB2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html BLM +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD23A +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MRE11A +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html HUS1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html UBE2V1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html CHEK1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html UBE2V2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html CHEK2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html SESN1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html XAB2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html POLE2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD51L1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html DYRK2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html C16ORF5 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html POLQ +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html GML +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html NTHL1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ASF1A +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ATRIP +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RECQL4 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RECQL5 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html TREX2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html CIDEB +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html CIDEA +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html BRCA2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ATR +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD54L +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html BRCA1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ATM +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html VCP +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html POLD1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html TDG +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html PARP3 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD54B +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html SMC1A +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ABL1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html PARP1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html NBN +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html UVRAG +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MLH1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html PMS2L1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html TRIAP1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MCM7 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html PCBP4 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html FANCG +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html FANCA +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html CCNO +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html FANCC +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html UBE2A +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html REV1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html BRCC3 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html AIFM1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html DDB1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html GTF2H4 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html TP53 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html APTX +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html PRKCG +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html IFI16 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html TOPORS +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD52 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html UBE2B +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD50 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html XRCC6BP1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html NEK11 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RAD51 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RBBP8 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html GTF2H1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html UBE2N +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html SPDYA +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RECQL +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html XPC +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html BTG2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html GADD45G +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html DDB2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RUVBL2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html GADD45A +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html PPP1R15A +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html NHEJ1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html UNG +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html WRNIP1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html POLA1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html PML +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html BRSK1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html SFN +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html SMUG1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html RPA1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ERCC8 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html SUMO1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ERCC5 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ERCC6 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html BCL3 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html BCL6 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ERCC3 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html APEX1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ERCC4 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ERCC1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html FEN1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ERCC2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html APC +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html EXO1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MSH6 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html UPF1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MSH3 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MSH2 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MSH5 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html CEBPG +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html TNP1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html SOD1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html TP73 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html NAE1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ATRX +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MNAT1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MPG +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ATXN3 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html CSNK1D +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html MAPK12 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html CSNK1E +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html EEF1E1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html BRE +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html ALKBH1 +PWCOMMONS RESPONSE TO DNA DAMAGE STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DNA_DAMAGE_STIMULUS.html OGG1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SEPT5 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SYT1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html UTS2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNC4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SNCAIP +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SLC6A1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRIK1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRIK2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SYT5 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GABRB2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SLC6A2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRIK4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SLC6A4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CNP +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html VIPR1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GDNF +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html TGFB2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HTR1B +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRIN2B +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html APOE +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GALR3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GALR2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CHRNA5 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CHRNA4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CHRNA6 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CHRNA1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html EIF2B2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HTR1D +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NQO1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HTR1F +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html EIF2B4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html EIF2B5 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HTR1E +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCND2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SCN2B +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KIF5A +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html BAIAP3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html STRN4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRIN2A +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html BSN +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NTSR1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GABRR2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html MAPK1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CBLN1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html DOC2A +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GABRR1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html COLQ +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HTR7 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HTR6 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html AKAP5 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NPTN +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CARTPT +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PMP22 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SRI +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNMB3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNMB4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html DRD1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SCN1B +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CALY +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html DRD2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html DRD4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNA1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PXK +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html RIMS1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNMB1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNMB2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HCRTR2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HCRTR1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GAD2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SYPL1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GAD1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HAP1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NOVA1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html UNC119 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CPNE6 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html OMP +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SNAPIN +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HOMER1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNK3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PDE7B +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NPY +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html RAPSN +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html MTNR1B +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CHRNB4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CHRNB3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CACNA1E +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html QPRT +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html RIT2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CHRNB1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CORT +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SST +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CHRNE +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CACNA1B +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PPARD +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GLRA1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GABBR2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNIP1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html MBP +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNQ5 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SLC1A2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNQ3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SLC1A3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html FXN +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NMUR1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NMUR2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SLC1A6 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html DLG4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNQ2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SLC1A1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html TAAR5 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NPFF +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PCDHB9 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNMA1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GPR176 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PRG3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PCDHB5 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PCDHB6 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PCDHB3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NPBWR1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PCDHB4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NPBWR2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PI4KA +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PCDHB2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html STX1B +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRM1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRM5 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html AMIGO1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRM4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRM3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRM2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KIF1B +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRM7 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GHRL +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CNTN4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html UBB +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html ALDH9A1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html RAB3A +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HCRT +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CPLX1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html OPRK1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PCDHB14 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html AKAP9 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PCDHB13 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PCDHB11 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HPRT1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PCDHB10 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GCH1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html AMPH +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CD9 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NPTX1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SYN1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HRH3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SYN3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PCDHB16 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SYN2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CD24 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HTR3A +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HTR3B +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GCHFR +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html APBA1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html DTNA +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html COL4A4 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KLK8 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html PLP1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GLRB +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html MPZ +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NF1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html NLGN1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html MAL +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SOD1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html DBH +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GABARAP +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html ACCN1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html YWHAG +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html ATXN3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html YWHAH +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNN1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRIA2 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html GRIA1 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html KCNN3 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SLC6A5 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CRH +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html MYCBPAP +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html SLC5A7 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HTR2C +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html CHRNA10 +PWCOMMONS TRANSMISSION OF NERVE IMPULSE http://www.broadinstitute.org/gsea/msigdb/cards/TRANSMISSION_OF_NERVE_IMPULSE.html HTR2A +PWCOMMONS GENE SILENCING http://www.broadinstitute.org/gsea/msigdb/cards/GENE_SILENCING.html HDAC5 +PWCOMMONS GENE SILENCING http://www.broadinstitute.org/gsea/msigdb/cards/GENE_SILENCING.html CHMP1A +PWCOMMONS GENE SILENCING http://www.broadinstitute.org/gsea/msigdb/cards/GENE_SILENCING.html DGCR8 +PWCOMMONS GENE SILENCING http://www.broadinstitute.org/gsea/msigdb/cards/GENE_SILENCING.html DICER1 +PWCOMMONS GENE SILENCING http://www.broadinstitute.org/gsea/msigdb/cards/GENE_SILENCING.html SIRT4 +PWCOMMONS GENE SILENCING http://www.broadinstitute.org/gsea/msigdb/cards/GENE_SILENCING.html TNP1 +PWCOMMONS GENE SILENCING http://www.broadinstitute.org/gsea/msigdb/cards/GENE_SILENCING.html SIRT5 +PWCOMMONS GENE SILENCING http://www.broadinstitute.org/gsea/msigdb/cards/GENE_SILENCING.html SCMH1 +PWCOMMONS GENE SILENCING http://www.broadinstitute.org/gsea/msigdb/cards/GENE_SILENCING.html SIRT1 +PWCOMMONS GENE SILENCING http://www.broadinstitute.org/gsea/msigdb/cards/GENE_SILENCING.html HELLS +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html LYN +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html NF2 +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html IL29 +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html HCLS1 +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html SOCS1 +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html STAT1 +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html IL31RA +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html IL20 +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html CLCF1 +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html F2 +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html IL12A +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html IL22RA2 +PWCOMMONS TYROSINE PHOSPHORYLATION OF STAT PROTEIN http://www.broadinstitute.org/gsea/msigdb/cards/TYROSINE_PHOSPHORYLATION_OF_STAT_PROTEIN.html F2R +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html PTPRC +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html TRAF2 +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html CRTAM +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html CADM1 +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html IL28RA +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html APOBEC3G +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html MALT1 +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html FOXP3 +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html APOBEC3F +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html NCR1 +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html MAP3K7 +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html TARBP2 +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html IL12A +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html IL12B +PWCOMMONS REGULATION OF IMMUNE EFFECTOR PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_EFFECTOR_PROCESS.html TRAF6 +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html BMP10 +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html GTPBP4 +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html ACVRL1 +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html NF2 +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html TBX5 +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html NF1 +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html PTEN +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html PLG +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html SHH +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html THY1 +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html VCL +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html MIA3 +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html ALOX15B +PWCOMMONS NEGATIVE REGULATION OF CELL MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_CELL_MIGRATION.html CLIC4 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html TSPO +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html HSP90AA1 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html TIMM17A +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html MTX2 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html TIMM17B +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html TP53 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html BNIP3 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html MIPEP +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html BCL2L1 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html TIMM23 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html TIMM44 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html MFN2 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html TRNT1 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html STARD3 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html BAK1 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html BCL2 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html C3ORF31 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html SLC25A1 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html TOMM22 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html SLC25A15 +PWCOMMONS MITOCHONDRIAL TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/MITOCHONDRIAL_TRANSPORT.html TOMM34 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html ZAK +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html ZNF675 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html DAXX +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP3K6 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP3K5 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP3K4 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MDFIC +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP3K9 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP2K7 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html DBNL +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html TNIK +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html KIAA1804 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MINK1 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html PKN1 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html AMBP +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP4K3 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html SH2D3C +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP4K5 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html SH2D3A +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html CRKL +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html HIPK2 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP3K10 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAPK9 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAPK8 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP3K13 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP3K12 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP3K11 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html ADORA2B +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html PTPLAD1 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html DUSP10 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP4K2 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP4K1 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP3K2 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html CD27 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MDFI +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html GPS1 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html CCM2 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html CARD9 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html TAOK2 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html TAOK3 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAP2K4 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html EDA2R +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html TPD52L1 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAPK10 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html GPS2 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAPK8IP2 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAPK8IP3 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html MAPK8IP1 +PWCOMMONS STRESS ACTIVATED PROTEIN KINASE SIGNALING PATHWAY http://www.broadinstitute.org/gsea/msigdb/cards/STRESS_ACTIVATED_PROTEIN_KINASE_SIGNALING_PATHWAY.html DUSP9 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ZAK +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html AIF1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html KNTC1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html TTK +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PKMYT1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDC16 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html FOXO4 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html TGFB1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CITED2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html TGFB2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CUL3 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CUL2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CUL5 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDKN2A +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html DIRAS3 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDKN2B +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDKN2C +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDKN2D +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CCNA2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html MAP2K6 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CUL1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ANAPC2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html GTPBP4 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html MADD +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html RINT1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html TBRG4 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html RAD9A +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html FOXN3 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html RAD1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PA2G4 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html MAD2L1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html UHRF2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html TIMELESS +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ALOX15B +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ZWINT +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html TBRG1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html MAD2L2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html RAD17 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html NEK6 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PPP2R3B +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDK5R1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDK5R2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html STK11 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html NEK2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html HUS1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html TIPIN +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ANLN +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html AFAP1L2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CHEK1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CHEK2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html RCC1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CCNG1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html SESN1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CCNG2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDC37 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html UHMK1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PIN1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PLAGL1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html HEXIM2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html HEXIM1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html NPM2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDC123 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html FBXO5 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html EGF +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html GML +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ATRIP +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html RUNX3 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html BMP4 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html BMP2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html TP53BP2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html SPHK1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDC23 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html SMAD3 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ATR +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html GAS1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html GAS7 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ATM +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDKN1C +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html NOTCH2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDKN1B +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html MYO16 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html BMP7 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html SMC1A +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CCNT2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html NBN +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html C13ORF15 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CCNT1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html RPRM +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html LATS1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PTEN +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html LATS2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDT1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CCNE2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html TRIAP1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PCBP4 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PRMT5 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html TGFA +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html RHOB +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDK10 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDK5RAP3 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html FANCG +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDK5RAP1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html MYC +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html SERTAD1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ZW10 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html DLG1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDC7 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html KHDRBS1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDC6 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CCNK +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html DDB1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html HERC5 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html TP53 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html NUSAP1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html RB1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html INHA +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDK7 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html UBE2C +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDK2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html NEK11 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html RBBP8 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html GTF2H1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html JMY +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html MFN2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PPM1G +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html INHBA +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html DHRS2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html EIF4G2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CHMP1A +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CCND1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html XPC +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CCND3 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html EREG +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CCND2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html BTG4 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html BTG3 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ERN1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html BUB1B +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html FOXC1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CHFR +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html GADD45A +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PPP1R15A +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CKS1B +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ING4 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PML +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html HCFC1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html IFNW1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html BCCIP +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ASNS +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html BRSK1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ZBTB17 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html MLF1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html BUB1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ERCC3 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html ERCC2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html APC +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CD28 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PTPRC +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html TBX3 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html IL8 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html GMNN +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html BIRC5 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDC25C +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDKN3 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CDC25A +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html NAE1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PPP1R9B +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html MNAT1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html MAPK12 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CUL4A +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html EPGN +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html RASSF1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html CKS2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html PPP1R13B +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html APBB2 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html APBB1 +PWCOMMONS REGULATION OF CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_CYCLE.html HPGD +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html RSF1 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html NAP1L1 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html NAP1L3 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html NAP1L2 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html NAP1L4 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html SET +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html HIRIP3 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html TLK1 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html TLK2 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html ASF1A +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html HELLS +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html MTA2 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html SIRT4 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html TNP1 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html SIRT5 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html ARID1A +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html SIRT1 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html HMGA1 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html SUV39H2 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html HDAC5 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html SMARCE1 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html SUPT16H +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html SMARCA5 +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html CHAF1A +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html CHAF1B +PWCOMMONS CHROMATIN ASSEMBLY OR DISASSEMBLY http://www.broadinstitute.org/gsea/msigdb/cards/CHROMATIN_ASSEMBLY_OR_DISASSEMBLY.html HDAC8 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html KCNH1 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html ACTA1 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html PICK1 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html MYOZ1 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html KCNIP2 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html IL21 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html TTN +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html FARP2 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html NRCAM +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html KRT19 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html RND1 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html EREG +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html MYH11 +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html CACNA1H +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html AGRN +PWCOMMONS CELL MATURATION http://www.broadinstitute.org/gsea/msigdb/cards/CELL_MATURATION.html ADAM12 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ALS2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RRAD +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html DMPK +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ARHGAP4 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html APOA1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ARHGAP5 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html DIRAS3 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html APOE +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RASL10A +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ARHGAP1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RHOA +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RHOB +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RRAS +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ABRA +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RHOD +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGF2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RHOG +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html GTPBP2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html DBNL +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html PLD2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html PLD1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ROCK1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RALBP1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html LIMK1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RREB1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html G3BP1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ARHGAP27 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ARHGAP29 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ELMO1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FARP2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html MFN2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html PLCE1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html CRKL +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html GNB1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html SGSM3 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html KRIT1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html CFL1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html LCK +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html SIAH2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html GRAP2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ARHGDIG +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html GRAP +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html GRB2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html MRAS +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html PTPLAD1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RTKN +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RUNDC3A +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ARF6 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html MYO9B +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ABCA1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RRAGC +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html DOCK1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ROPN1B +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RASGRP4 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html SOS1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RASGRP1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RAC1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html APOC3 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ADRA2A +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html CHP +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD5 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RAB6C +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD6 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD3 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ARHGDIA +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html FGD4 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ARHGDIB +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html PDK1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html CNKSR1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ABR +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html VAV3 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html NF1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html ARFIP2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RGS19 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html IGF1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html TAX1BP3 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html PARK7 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html CDH13 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html LAT +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html NOTCH2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html CDC42BPG +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html TSC1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html RASSF1 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html CDC42BPA +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html TNK2 +PWCOMMONS SMALL GTPASE MEDIATED SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/SMALL_GTPASE_MEDIATED_SIGNAL_TRANSDUCTION.html CDC42BPB +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html KLRC4 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html MICB +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html KLRC2 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html MICA +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html KLRC3 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html PAGE1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html ZNF148 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html LBP +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html FOSL1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html SPN +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html C5AR1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html NCF2 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html LY96 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html NCF1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html GNLY +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CD160 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html DCDC2 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html NCR2 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html NCR1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html TRAT1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html HLA-G +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CCR9 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html GAGE1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html LILRB2 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CCR6 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html KLRG1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CCR5 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html LYST +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CCR3 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CCR2 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CX3CR1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html MNDA +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html GAGE8 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html FAIM3 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CLEC5A +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html KIR2DL4 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html KIR3DL2 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html PRF1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html ADORA2B +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html ADORA2A +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CXCL9 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html UMOD +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CCL5 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html ITGB1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html LGALS3BP +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html VEZF1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html TYROBP +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html IL4 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html TCIRG1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html ITK +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html BECN1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html IL1RL2 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CD300C +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CD5L +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html KIR2DS3 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html LSP1 +PWCOMMONS CELLULAR DEFENSE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_DEFENSE_RESPONSE.html CD19 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html MBL2 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html TRAF2 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html CADM1 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html BCAR1 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html SPINK5 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html TLR8 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html TGFB2 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html CFHR1 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html MAP3K7 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html KRT1 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html IFNK +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html C2 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html TRAF6 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html IL4 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html PTPRC +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html CRTAM +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html IL29 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html SLA2 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html MALT1 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html NFAM1 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html FOXP3 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html NCR1 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html TRAT1 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html CD1D +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html THY1 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html UBE2N +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html LAT2 +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html EREG +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html FYN +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html IKBKG +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html IL12A +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html CD79A +PWCOMMONS REGULATION OF IMMUNE RESPONSE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_IMMUNE_RESPONSE.html IL12B +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html DIS3 +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html NOLC1 +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html DKC1 +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html EXOSC7 +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html RPS14 +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html EXOSC2 +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html ERN2 +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html EXOSC3 +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html POP4 +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html RRP9 +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html GEMIN4 +PWCOMMONS RRNA METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RRNA_METABOLIC_PROCESS.html FBL +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html TRAF2 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html PARD3 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html ZAK +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html EDN2 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html TNFSF15 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html AZU1 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP3K7 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP3K4 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html ANG +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html TRAF7 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html PPAP2A +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html TRAF6 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html IRAK1 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html CCDC88A +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html TAOK2 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html PICK1 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html MALT1 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html CARD10 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html CHRM1 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html GADD45G +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html CARTPT +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html GADD45B +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html MAP3K13 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html PRKD3 +PWCOMMONS ACTIVATION OF PROTEIN KINASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/ACTIVATION_OF_PROTEIN_KINASE_ACTIVITY.html GAP43 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html ALS2 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html FGD2 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html FGD1 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html TSC1 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html RALBP1 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html NF1 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html ARHGAP27 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html FGD5 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html FGD6 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html FGD3 +PWCOMMONS REGULATION OF RAS GTPASE ACTIVITY http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_RAS_GTPASE_ACTIVITY.html FGD4 +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html SHROOM2 +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html FOXL2 +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html MAFB +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html NF1 +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html JAG2 +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html RORB +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html ZIC1 +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html SOD1 +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html TGFB2 +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html THY1 +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html DFNB31 +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html BAX +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html GAA +PWCOMMONS SENSORY ORGAN DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/SENSORY_ORGAN_DEVELOPMENT.html CEP290 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MMS19 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ARNT2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html XRCC6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html FOXO1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html RORB +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html FOXO3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MED21 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html TGFB1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html CITED2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html EPC1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MDFIC +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SMARCD3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html FOXF1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SMARCD1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html FOXF2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html GATA4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SUPT5H +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MYST1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MYST4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MYST3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html BCL10 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MYO6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html PCBD2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html IL29 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html RXRA +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MED12 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MED14 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ARID1A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ARNTL +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MED13 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ELL3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html TRERF1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html PPARGC1B +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html HIF1A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html HNF4A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MED17 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html TFAP2B +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SMARCA1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html CRTC1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ELK1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html AFAP1L2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html PLAGL1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html FOXH1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MAML3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html RUNX1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html TCF4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html TCF3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ARHGEF10L +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ZNF423 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html UTF1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html EPAS1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html TAF8 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MAML1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MAP2K3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html CREBBP +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MAML2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ESRRG +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SMAD3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MSTN +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SMAD2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html FOXP3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ATF6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ATF4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html NUP62 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html DYRK1B +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SMARCC1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SMARCC2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html NOTCH4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html HIVEP3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html BMP7 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html BMP6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ELF1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html HNF1B +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ACVRL1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html HNF1A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html RSF1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ELF4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SPI1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html TP63 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html CTCF +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html GLI2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html CAMKK2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ZBTB38 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html GLI1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html PAX8 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MKL2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ATF7IP +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html EGR1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html CCNH +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html TP53 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html CDK7 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html HMGA1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html PRPF6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html NRIP1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SCAP +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ARHGEF11 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html GTF2H1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MED6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html INHBA +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html BPTF +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ZMIZ2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html NCOA6 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html UBB +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html NSD1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html CLOCK +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MED1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ACVR1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html GLIS3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html GLIS2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html GLIS1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html NUFIP1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html EHF +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html TNFRSF1A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html RGMB +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html NPAS2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MRPL12 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SQSTM1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html BCL3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SUPT4H1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html NFATC2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ERCC3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ERCC2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html FOXD3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html IL4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html TBX5 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html TRIM28 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html CREB5 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ILF3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html TP73 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html MNAT1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html YWHAH +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html SP1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html ILF2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html YAF2 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html THRAP3 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html FOXE1 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html IRF4 +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html PHF5A +PWCOMMONS POSITIVE REGULATION OF TRANSCRIPTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_TRANSCRIPTION.html RBM14 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html USP7 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html DZIP3 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html TSG101 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html UCHL1 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html UBE2V1 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html RNF217 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html UBE2V2 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html SAE1 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html UBQLN3 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html UBE3C +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html MYLIP +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html ANAPC11 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html STUB1 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html ERCC8 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html FBXW7 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html ISG15 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html WWP1 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html RNF11 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html TRAF7 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html TRAF6 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html UBE2D1 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html USP33 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html RNF14 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html VCPIP1 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html RNF144B +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html BCL10 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html GTPBP4 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html VHL +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html UBE4B +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html CBL +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html PRKCG +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html PCNP +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html PARK2 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html UBE2C +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html TRIM23 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html ATG3 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html BRCA1 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html UBE2N +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html UHRF2 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html TSC1 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html HUWE1 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html RNF139 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html DDB2 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html MDM2 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html CAND1 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html UBB +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html SMURF1 +PWCOMMONS UBIQUITIN CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/UBIQUITIN_CYCLE.html AMFR +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html UAP1 +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html CHIA +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html GNPDA1 +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html CHST2 +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html CHST4 +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html CHST5 +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html NAGK +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html EXTL2 +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html CHIT1 +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html SLC35A3 +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html LARGE +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html CHST7 +PWCOMMONS GLUCOSAMINE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/GLUCOSAMINE_METABOLIC_PROCESS.html CHST6 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html BTD +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html GRIK1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SNCA +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ARNT2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ZIC1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html MOG +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SHH +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ZIC2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html WNT1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PROP1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html CEP290 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PDGFC +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ROBO2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html UNC5C +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html EIF2B2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html EIF2B3 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html EIF2B4 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html EIF2B5 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SH3GL3 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html MDGA1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html MDGA2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SIX3 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html TBR1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PITPNM1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html GPR56 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html FOXG1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SMARCA1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SH3GL2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SNTG2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PNMA1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SH3GL1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html CDK5R1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ADORA2A +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SOX3 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html DSCAML1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PPT1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html TAGLN3 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SOX8 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html HESX1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ECE2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ATN1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html B3GNT5 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html LHX6 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html IL1RAPL2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NKX2-2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html DMBX1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ADAM23 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html HPCAL4 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html JRKL +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html CELSR1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NEUROG3 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SERPINI1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NCKAP1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PCDH18 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html FOXP2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html DLX2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html S100B +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html MYO16 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ADAM22 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html POU6F1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html POU6F2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PAX6 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html GLI2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PTEN +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html MBP +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NDUFS4 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html RNF103 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PCP4 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NMUR2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SHC3 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ALX1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html EGR2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html CNTN6 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ALDH5A1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html OTX2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ALK +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SLIT1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SLIT3 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html VCX3A +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html BPTF +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NCOA6 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html CNTN4 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html GSTP1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html CLN5 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html UTP3 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SHROOM2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html SHROOM4 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html UBE3A +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NNAT +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ZBTB16 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ALDH3A2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NPAS1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NPAS2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NPTX1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html DNER +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html POU3F3 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html UGT8 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html DCX +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PTS +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html DCLK1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html JARID2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PTPRZ1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NF1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html MAL +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html AFF2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html RCAN1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PARK2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html EIF2B1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html RPS6KA6 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html ACCN1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PSPN +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html RPS6KA3 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html MAP1S +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html DRP2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html C7ORF16 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PHGDH +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NHLH2 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PBX1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html CTNS +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PBX3 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html NHLH1 +PWCOMMONS CENTRAL NERVOUS SYSTEM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/CENTRAL_NERVOUS_SYSTEM_DEVELOPMENT.html PBX4 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html RSF1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html STK36 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html DPH3 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html PRDX3 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html TGFB1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html BAK1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html NOD2 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html NLRC3 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html CDKN2A +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html PRMT8 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html ABRA +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html BCL10 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html GTPBP4 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html RELA +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html NFAM1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html NLRP3 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html LDLRAP1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html FLNA +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html JMY +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html SIGIRR +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html UBE2N +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html PRKCQ +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html CARD11 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html ADRB2 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html EP300 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html NME1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html EDF1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html COMMD7 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html EDA +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html ERC1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html MAP3K13 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html TNF +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html UBE2V1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html EGLN1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html PYDC1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html ADRB3 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html SUMO1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html BCL2 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html NPM1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html PYCARD +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html BCL3 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html PEX14 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html APEX1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html CAMK2A +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html MDFI +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html CREBZF +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html CEBPG +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html EDA2R +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html SMAD2 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html FOXP3 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html ID2 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html AKTIP +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html ID1 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html BAX +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html NARFL +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html ID3 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html TSSK4 +PWCOMMONS REGULATION OF BINDING http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_BINDING.html IKBKB +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html ZFP36 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html ABCE1 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html UPF2 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html RNASE2 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html SMG6 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html RNASE3 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html SMG5 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html PABPC4 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html SMG7 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html RNASE6 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html RNASEH1 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html SMG1 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html HSPA1B +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html RNASEH2A +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html AUH +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html ISG20 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html GSPT1 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html PPP1R8 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html RNASET2 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html POP1 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html ERN2 +PWCOMMONS RNA CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/RNA_CATABOLIC_PROCESS.html XRN2 +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html NF2 +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html SOCS1 +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html INHA +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html INHBA +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CDKN1A +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CDKN1B +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CDKN2A +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CDKN2B +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CDKN2C +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html CDKN2D +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html NLRP12 +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html PPP2R4 +PWCOMMONS NEGATIVE REGULATION OF PHOSPHATE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_PHOSPHATE_METABOLIC_PROCESS.html IGFBP3 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html IL10 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html PAIP2B +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html SFTPD +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html BCL3 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html IL6 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html PRG3 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html PAIP2 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html NDUFA13 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html INHA +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html SOD1 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html FOXP3 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html FURIN +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html BRCA1 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html SIGIRR +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html INHBB +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html INHBA +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html EIF4A3 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html EIF2AK1 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html TSC1 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html GLA +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html GCK +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html GRM8 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html BACE2 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html NLRP12 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html GHRL +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html GHSR +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html EIF2AK3 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html APBB1 +PWCOMMONS NEGATIVE REGULATION OF BIOSYNTHETIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NEGATIVE_REGULATION_OF_BIOSYNTHETIC_PROCESS.html PDZD3 +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html MDFI +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html TAF3 +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html PDIA3 +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html NFKBIE +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html PDIA2 +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html TOPORS +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html MXI1 +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html NFKBIL1 +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html NFKBIL2 +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html SUPT7L +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html FAF1 +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html TMSB4Y +PWCOMMONS MAINTENANCE OF PROTEIN LOCALIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MAINTENANCE_OF_PROTEIN_LOCALIZATION.html SRGN +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html CHIA +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html ALG1 +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html EPM2A +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html GYG2 +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html CHIT1 +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html B3GNT8 +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html PYGM +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html GCK +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html GSK3B +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html MGAM +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html GAA +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html GYS2 +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html DYRK2 +PWCOMMONS CELLULAR POLYSACCHARIDE METABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_POLYSACCHARIDE_METABOLIC_PROCESS.html PYGB +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html RP1 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html UNC119 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html TRPC3 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html PGLYRP1 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html NR2E3 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html OPN1SW +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html ABCA4 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html CD1D +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html SAG +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html PITPNM1 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html PDE6B +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html NOD2 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html NLRC4 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html NOD1 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html PGLYRP4 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html PGLYRP2 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html GRM6 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html PGLYRP3 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html PDC +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html CACNA1F +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html OPN4 +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html RHO +PWCOMMONS DETECTION OF EXTERNAL STIMULUS http://www.broadinstitute.org/gsea/msigdb/cards/DETECTION_OF_EXTERNAL_STIMULUS.html GRK1 +PWCOMMONS CELLULAR RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_NUTRIENT_LEVELS.html SREBF1 +PWCOMMONS CELLULAR RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_NUTRIENT_LEVELS.html CHMP1A +PWCOMMONS CELLULAR RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_NUTRIENT_LEVELS.html NUAK2 +PWCOMMONS CELLULAR RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_NUTRIENT_LEVELS.html CDKN2B +PWCOMMONS CELLULAR RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_NUTRIENT_LEVELS.html ALB +PWCOMMONS CELLULAR RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_NUTRIENT_LEVELS.html FADS1 +PWCOMMONS CELLULAR RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_NUTRIENT_LEVELS.html TP53 +PWCOMMONS CELLULAR RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_NUTRIENT_LEVELS.html CARTPT +PWCOMMONS CELLULAR RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_NUTRIENT_LEVELS.html PCSK9 +PWCOMMONS CELLULAR RESPONSE TO NUTRIENT LEVELS http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPONSE_TO_NUTRIENT_LEVELS.html ASNS +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NCBP2 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html HTATIP2 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html XPO6 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html PDIA3 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html EIF5A +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html TNFSF14 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html MXI1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html GLI3 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html TGFB1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html AKT1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html RAE1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html ZFYVE9 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html DDX25 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html ANP32A +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NCKIPSD +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html RANBP2 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html TPR +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html KPNB1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html KHDRBS1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html MCM3AP +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NUP133 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NUDT4 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NLRP3 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NUPL2 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html FLNA +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html DDX39 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html RPAIN +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NUP205 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html F2 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html KPNA6 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html KPNA5 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html KPNA4 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NUP107 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html KPNA3 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html MYBBP1A +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html KPNA2 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html KPNA1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html BAT1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NUP98 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html TNF +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NUP160 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NFKBIE +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html CDH1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html CALR +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html UHMK1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NUP214 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html CEP57 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html DDX19B +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NPM1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html DUSP16 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html BCL3 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html BCL6 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html TNPO1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html MDFI +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html FYB +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html UPF2 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html UPF1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html SMG6 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html SMG5 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NXF5 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NF1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html SMG7 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html PPP1R10 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html SMAD3 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html SMG1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html MALT1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html HNRNPA1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NFKBIL1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html ATXN1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NFKBIL2 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html CBLB +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html PPIH +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html TSC1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html TRPS1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html GSK3B +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html NLRP12 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html PTTG1IP +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html FAF1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html XPO7 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html TRIP6 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html RERE +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html BARD1 +PWCOMMONS NUCLEOCYTOPLASMIC TRANSPORT http://www.broadinstitute.org/gsea/msigdb/cards/NUCLEOCYTOPLASMIC_TRANSPORT.html F2R +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html KIF22 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html KIF25 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html NBN +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html KNTC1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html TTK +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html PKMYT1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html AURKA +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CDC16 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html TTN +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html TGFB1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html KIF2C +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html TRIAP1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html DDX11 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CDKN2B +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html PCBP4 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html PRMT5 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html TARDBP +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html TGFA +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CCNA2 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CDCA5 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html ZW10 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html KIF11 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html ANAPC5 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html RAN +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html KIF15 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html ANAPC4 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html RINT1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html TPX2 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html NUSAP1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html ESPL1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html UBE2C +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html DCTN3 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html DCTN2 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CHMP1A +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html MAD2L1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html EREG +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html ZWINT +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CLIP1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html BUB1B +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html AKAP8 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CHFR +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html MAD2L2 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html RAD17 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html NEK6 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html PPP5C +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html PAM +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html NEK2 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html PML +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html ANAPC10 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CETN1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html ANLN +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html BRSK1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html ANAPC11 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html RCC1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html PIN1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html NCAPH +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html NUMA1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html NPM2 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html BUB1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html PBRM1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html EGF +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html GML +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CD28 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html SSSCA1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html PDS5B +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CDC23 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CENPE +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html NDC80 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html BIRC5 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html SUGT1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CDC25C +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CDC27 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html ATM +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html SMC3 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html SMC4 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CDC25B +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html MPHOSPH9 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html NOLC1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html EPGN +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html PLK1 +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html CIT +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html SMC1A +PWCOMMONS M PHASE OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/M_PHASE_OF_MITOTIC_CELL_CYCLE.html MPHOSPH6 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html TRAF2 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html ATP6AP2 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html MALT1 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html AFAP1L2 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html SOD1 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html CALCA +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html MAP3K7 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html CARD11 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html NOD2 +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html EREG +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html CD40LG +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html IFNG +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html IL12A +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html IL12B +PWCOMMONS POSITIVE REGULATION OF CYTOKINE PRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_CYTOKINE_PRODUCTION.html TRAF6 +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html CSNK2A2 +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html NME5 +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html H1FNT +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html MAST2 +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html HSPA2 +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html SYCP3 +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html CEP57 +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html SPAG6 +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html DDX25 +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html TNP1 +PWCOMMONS SPERMATID DIFFERENTIATION http://www.broadinstitute.org/gsea/msigdb/cards/SPERMATID_DIFFERENTIATION.html TSSK6 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html ME1 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html AQP9 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html DUOX2 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html DUOX1 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html GLRX2 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html GOT2 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html APOA2 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html NDUFS4 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html DGKD +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html BCL2 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html CHRNA4 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html GYS2 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html CHRNA7 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html EIF2B2 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html SUPT5H +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html EIF2B3 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html EIF2B4 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html EIF2B5 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html RELA +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html BRCA2 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html SOD1 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html EIF2B1 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html SELS +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html ABCG1 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html CDH13 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html GCK +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html ABAT +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html CHRNB2 +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html CLEC7A +PWCOMMONS RESPONSE TO ORGANIC SUBSTANCE http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_ORGANIC_SUBSTANCE.html MAFA +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ALS2 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD2 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD1 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGDIG +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html RTKN +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ARF6 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ABCA1 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP4 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html APOA1 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP5 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html APOE +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ROPN1B +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP1 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html APOC3 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html RAC1 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html RHOA +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ADRA2A +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html RHOB +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ABRA +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html RHOD +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD5 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD6 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html RHOG +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD3 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGDIA +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGDIB +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html FGD4 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html CNKSR1 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ROCK1 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html RALBP1 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html LIMK1 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP27 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html ARHGAP29 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html TAX1BP3 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html CDH13 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html TSC1 +PWCOMMONS RHO PROTEIN SIGNAL TRANSDUCTION http://www.broadinstitute.org/gsea/msigdb/cards/RHO_PROTEIN_SIGNAL_TRANSDUCTION.html CFL1 +PWCOMMONS CHROMOSOME CONDENSATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_CONDENSATION.html PAM +PWCOMMONS CHROMOSOME CONDENSATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_CONDENSATION.html NCAPH +PWCOMMONS CHROMOSOME CONDENSATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_CONDENSATION.html CHMP1A +PWCOMMONS CHROMOSOME CONDENSATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_CONDENSATION.html AIFM2 +PWCOMMONS CHROMOSOME CONDENSATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_CONDENSATION.html DFFB +PWCOMMONS CHROMOSOME CONDENSATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_CONDENSATION.html NUSAP1 +PWCOMMONS CHROMOSOME CONDENSATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_CONDENSATION.html ACIN1 +PWCOMMONS CHROMOSOME CONDENSATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_CONDENSATION.html CDCA5 +PWCOMMONS CHROMOSOME CONDENSATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_CONDENSATION.html TOP2A +PWCOMMONS CHROMOSOME CONDENSATION http://www.broadinstitute.org/gsea/msigdb/cards/CHROMOSOME_CONDENSATION.html SMC4 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html POU6F2 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html JAG2 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html MYEF2 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html SMAD2 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html TRIM15 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html GLI2 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html SHH +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html WNT1 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html NOTCH2 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html EYA2 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html NOTCH4 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html IFRD1 +PWCOMMONS CELL FATE COMMITMENT http://www.broadinstitute.org/gsea/msigdb/cards/CELL_FATE_COMMITMENT.html KLF4 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html PDIA2 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html CLDN3 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html ARNT2 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html PML +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html BNIP3 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html EGLN2 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html EGLN1 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html TGFB2 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html ALAS2 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html PLOD1 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html ANG +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html CXCR4 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html PLOD2 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html CHRNA4 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html CHRNA7 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html CD24 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html MT3 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html EPAS1 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html NF1 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html CREBBP +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html SMAD4 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html SMAD3 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html HSP90B1 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html EP300 +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html HIF1A +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html VEGFA +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html NARFL +PWCOMMONS RESPONSE TO HYPOXIA http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_HYPOXIA.html CHRNB2 +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html ARHGEF2 +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html TPPP +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html MAPT +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html KATNB1 +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html CLASP1 +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html MID1IP1 +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html CLASP2 +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html MAPRE1 +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html STMN1 +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html CENPJ +PWCOMMONS MICROTUBULE POLYMERIZATION OR DEPOLYMERIZATION http://www.broadinstitute.org/gsea/msigdb/cards/MICROTUBULE_POLYMERIZATION_OR_DEPOLYMERIZATION.html APC +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html MCHR1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html ADORA3 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html ADCY7 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html WASF2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GABBR1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GABBR2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GHRHR +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html EDNRA +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html EDNRB +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html NDUFS4 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GALR1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GALR3 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GALR2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html PRKACB +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GLP2R +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html CAP1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html PTGER4 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html PTHLH +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html CRHR1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html CRHR2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GRM4 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GRM3 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html CHRM5 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html ADRB2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GRM2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html ADRB1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GRM8 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html CHRM2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GHRH +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html CCR3 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GRM7 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GIPR +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html CCR2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GNAS +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GLP1R +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html CALCR +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html ACR +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html AVPR2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html DRD1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GNAI3 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GNAI2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html ADORA2B +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html DRD2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html NPY2R +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html DRD5 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html OPRK1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html FPR1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GCGR +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html ADCYAP1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GPR3 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html CALCA +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html ADRB3 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html ADRA2A +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html CAP2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html OPRL1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html NF1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html NPY1R +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html RGS1 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html P2RY11 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html LTB4R2 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html MC4R +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html ADRA1B +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html GRK5 +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html CORT +PWCOMMONS CAMP MEDIATED SIGNALING http://www.broadinstitute.org/gsea/msigdb/cards/CAMP_MEDIATED_SIGNALING.html ADRA1D +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html BCKDK +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html AMT +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html GLUD1 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html ASL +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html FAH +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html GLDC +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html GOT2 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html ARG1 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html MCCC2 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html GAD2 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html ASPA +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html GOT1 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html GCSH +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html ALDH4A1 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html ASRGL1 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html GSTZ1 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html DDAH2 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html DDAH1 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html GAD1 +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html HPD +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html BCKDHA +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html BCKDHB +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html HGD +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html DDO +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html TST +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html COLQ +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html DHPS +PWCOMMONS NITROGEN COMPOUND CATABOLIC PROCESS http://www.broadinstitute.org/gsea/msigdb/cards/NITROGEN_COMPOUND_CATABOLIC_PROCESS.html MPST +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RPL17 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SLC44A2 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html VAPA +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SLC20A1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TBK1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TSPAN6 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html GJA1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FASLG +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TLR6 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CANT1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NOD2 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NOD1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MYD88 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TMEM9B +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MIER1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html HMOX1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TICAM1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CASP8 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RHOA +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TICAM2 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TMEM101 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RHOC +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CASP1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html GPR89A +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RHOH +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html BCL10 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html LTBR +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html BST2 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html GOLT1B +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RELA +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FADD +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CD40 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ECT2 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FLNA +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html UBE2N +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRIM38 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ZDHHC17 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFRSF10B +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ATP2C1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ZDHHC13 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MIB2 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RIPK1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html RIPK2 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFAIP3 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html EEF1D +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NEK6 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PPP5C +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html LITAF +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PPM1A +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html UBE2V1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TFG +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRIM13 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html FKBP1A +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CXXC5 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFRSF1A +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TMED4 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MAP3K3 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html REL +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SLC35B2 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SQSTM1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PLEKHG5 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html OTUD7B +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CC2D1A +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRAF6 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRAF5 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CFLAR +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html SECTM1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CARD8 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html CARD9 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html LGALS1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NDFIP1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NDFIP2 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html MALT1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html BIRC2 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html ECM1 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html LGALS9 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRADD +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TRAF3IP2 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html IKBKE +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html APOL3 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html TNFSF10 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html PLK2 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NUP62 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html NLRP12 +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html HTR2B +PWCOMMONS REGULATION OF I KAPPAB KINASE NF KAPPAB CASCADE http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_I_KAPPAB_KINASE_NF_KAPPAB_CASCADE.html F2R +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html NAT8 +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html SLC22A18 +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html CTPS +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html ABCB1 +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html ABCA2 +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html SOD1 +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html ABCA3 +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html GCLM +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html ABCB4 +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html ABCG2 +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html TOP1 +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html LCK +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html SEMA3C +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html CSAG2 +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html ABCC1 +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html SCN11A +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html RAB6C +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html LIPE +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html MVP +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html BCAR3 +PWCOMMONS RESPONSE TO DRUG http://www.broadinstitute.org/gsea/msigdb/cards/RESPONSE_TO_DRUG.html ABCC6 +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL3 +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL5 +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL29 +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html LYN +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html HCLS1 +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL31RA +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL20 +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html CD80 +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html CLCF1 +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html TDGF1 +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html CD81 +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html IL12A +PWCOMMONS POSITIVE REGULATION OF PEPTIDYL TYROSINE PHOSPHORYLATION http://www.broadinstitute.org/gsea/msigdb/cards/POSITIVE_REGULATION_OF_PEPTIDYL_TYROSINE_PHOSPHORYLATION.html TNK2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html PPARD +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html FGF7 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html BTD +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html S100A7 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html CRABP2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html FST +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html SPINK5 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html CDSN +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html GLI1 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html TGFB2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html PLOD1 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html CTGF +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html ALOX12B +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT85 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT83 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html DHCR24 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html STS +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html STX2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html FLOT2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html UGCG +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html FOXN1 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT13 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html VAX2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT10 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html PROX1 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html WAS +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html SCEL +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html IL20 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html PTHLH +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html NME2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html EVPL +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRTAP5-9 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT17 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html ATP2C1 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT16 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT15 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT14 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html DSP +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html TFAP2A +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html LAMC2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html COL1A1 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html EDA +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html EMP1 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT6A +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT6B +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html RBP2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html HOXB13 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html ALDH3A2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT9 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html DCT +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html COL17A1 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html LAMB3 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT5 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html COL7A1 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html POU2F3 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT1 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html TGM3 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html TGM5 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html CALML5 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html ERCC3 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html ERCC2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html ZBTB7B +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KLK7 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KLK5 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT31 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html GJB5 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT34 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html COL5A2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html KRT32 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html LAMA3 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html ATP2A2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html CASP14 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html SPRR1A +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html SPRR1B +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html BNC1 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html PTCH2 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html SMURF1 +PWCOMMONS ECTODERM DEVELOPMENT http://www.broadinstitute.org/gsea/msigdb/cards/ECTODERM_DEVELOPMENT.html FABP5 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html IL8 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html PF4 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html ITGB2 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html CX3CL1 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html IL10 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html TGFB2 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html DOCK2 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html MIA3 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html SAA1 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html CD34 +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html CKLF +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html SFTPD +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html SYK +PWCOMMONS LEUKOCYTE MIGRATION http://www.broadinstitute.org/gsea/msigdb/cards/LEUKOCYTE_MIGRATION.html SCG2 +PWCOMMONS REGULATION OF ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOTHELIAL_CELL_PROLIFERATION.html CDH13 +PWCOMMONS REGULATION OF ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOTHELIAL_CELL_PROLIFERATION.html AGGF1 +PWCOMMONS REGULATION OF ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOTHELIAL_CELL_PROLIFERATION.html ANG +PWCOMMONS REGULATION OF ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOTHELIAL_CELL_PROLIFERATION.html NF1 +PWCOMMONS REGULATION OF ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOTHELIAL_CELL_PROLIFERATION.html TNFSF15 +PWCOMMONS REGULATION OF ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOTHELIAL_CELL_PROLIFERATION.html GHRL +PWCOMMONS REGULATION OF ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOTHELIAL_CELL_PROLIFERATION.html ATPIF1 +PWCOMMONS REGULATION OF ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOTHELIAL_CELL_PROLIFERATION.html TNFSF12 +PWCOMMONS REGULATION OF ENDOTHELIAL CELL PROLIFERATION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_ENDOTHELIAL_CELL_PROLIFERATION.html SCG2 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html KCNMB3 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html KCNMB4 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html AIFM3 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html GLRA1 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html BNIP3 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html BCL2L1 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html SOD1 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html KCNMB2 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html BAK1 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html BCL2 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html BAX +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html CHRNA1 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html IFI6 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html NDUFS1 +PWCOMMONS REGULATION OF MEMBRANE POTENTIAL http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_MEMBRANE_POTENTIAL.html GRK1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html DCBLD2 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html DLC1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html BMP10 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html DERL2 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html BCAR1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html PML +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html PPT1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html OSGIN1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html TGFB1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html TGFB2 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html ACVR1B +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html CDKN2A +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html TSPYL2 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html FAM107A +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html CDKN2C +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html CDKN2D +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html PRSS2 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html SERTAD3 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html CDA +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html BCL6 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html NDUFS3 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html ENO1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html SERTAD2 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html NOL8 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html SPHK1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html SMAD4 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html TP53 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html SMAD3 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html NDUFA13 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html RB1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html CAPRIN2 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html RERG +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html PPP1R9B +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html INHBA +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html CDKN1A +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html PLCE1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html CDKN1B +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html CDKN2AIP +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html APBB2 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html APBB1 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html IL2 +PWCOMMONS REGULATION OF CELL GROWTH http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_CELL_GROWTH.html ALOX12 +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html TARBP2 +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html CCL3 +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html RSF1 +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html HS3ST5 +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html IL8 +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html VAPB +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html MDFIC +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html PPIA +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html APOBEC3G +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html TNIP1 +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html APOBEC3F +PWCOMMONS REGULATION OF VIRAL REPRODUCTION http://www.broadinstitute.org/gsea/msigdb/cards/REGULATION_OF_VIRAL_REPRODUCTION.html TOP2A +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html BCAT1 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html PPP6C +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html DBF4 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html RCC1 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html LATS2 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CUL3 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CUL2 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html ACVR1B +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CUL5 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDKN2A +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDKN2C +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDKN2D +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html GFI1 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDCA5 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CUL1 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDC7 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html POLE +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html SKP2 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDKN3 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDK4 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html SPDYA +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html INHBA +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDKN1A +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CDKN1B +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html CUL4A +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html GSPT1 +PWCOMMONS G1 S TRANSITION OF MITOTIC CELL CYCLE http://www.broadinstitute.org/gsea/msigdb/cards/G1_S_TRANSITION_OF_MITOTIC_CELL_CYCLE.html ACVR1 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html TNFSF15 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html PMAIP1 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html NLRC4 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html MOAP1 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html CDKN2A +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html CASP9 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html CASP8AP2 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html MTCH1 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html DIABLO +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html HIP1 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html COL4A3 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html AIFM3 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html CYCS +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html TP53 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html SMAD3 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html STAT1 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html BCL2L10 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html VCP +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html IFNB1 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html BBC3 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html BAX +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html IFT57 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html F2 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html LCK +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html APAF1 +PWCOMMONS CASPASE ACTIVATION http://www.broadinstitute.org/gsea/msigdb/cards/CASPASE_ACTIVATION.html F2R +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html UQCRC2 +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html OXA1L +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html ME3 +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html UQCRC1 +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html ACO2 +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html CYCS +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html PPARGC1A +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html PDHB +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html SDHA +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html SDHB +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html SLC25A14 +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html NDUFS4 +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html NNT +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html UQCRH +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html SDHC +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html SDHD +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html SURF1 +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html NDUFS1 +PWCOMMONS CELLULAR RESPIRATION http://www.broadinstitute.org/gsea/msigdb/cards/CELLULAR_RESPIRATION.html UQCRB +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html AIFM1 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html TP53 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html LGALS12 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html CIDEB +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html PML +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html CIDEA +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html IFI16 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html SFN +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html CHEK2 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html BRCA1 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html TP73 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html CUL3 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html CUL2 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html CDKN1A +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html CUL5 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html RNF7 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html CUL4A +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html PCBP4 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html BAX +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html BCL3 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html DYRK2 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html ABL1 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html C16ORF5 +PWCOMMONS INDUCTION OF APOPTOSIS BY INTRACELLULAR SIGNALS http://www.broadinstitute.org/gsea/msigdb/cards/INDUCTION_OF_APOPTOSIS_BY_INTRACELLULAR_SIGNALS.html CUL1 +WIKIPW Glutathione metabolism G6PD +WIKIPW Glutathione metabolism GGT1 +WIKIPW Glutathione metabolism GGT5 +WIKIPW Glutathione metabolism OPLAH +WIKIPW Glutathione metabolism GCLC +WIKIPW Glutathione metabolism GCLM +WIKIPW Glutathione metabolism GPX1 +WIKIPW Glutathione metabolism GPX2 +WIKIPW Glutathione metabolism GPX3 +WIKIPW Glutathione metabolism GPX4 +WIKIPW Glutathione metabolism ANPEP +WIKIPW Glutathione metabolism GSR +WIKIPW Glutathione metabolism GSS +WIKIPW Glutathione metabolism GSTA1 +WIKIPW Glutathione metabolism GSTM1 +WIKIPW Glutathione metabolism GSTM2 +WIKIPW Glutathione metabolism GSTT1 +WIKIPW Glutathione metabolism GSTT2 +WIKIPW Glutathione metabolism IDH1 +WIKIPW Glutathione metabolism GSTT2B +WIKIPW Alanine and aspartate metabolism ABAT +WIKIPW Alanine and aspartate metabolism AGXT +WIKIPW Alanine and aspartate metabolism GAD1 +WIKIPW Alanine and aspartate metabolism GAD2 +WIKIPW Alanine and aspartate metabolism GOT1 +WIKIPW Alanine and aspartate metabolism GOT2 +WIKIPW Alanine and aspartate metabolism GPT +WIKIPW Alanine and aspartate metabolism ASL +WIKIPW Alanine and aspartate metabolism ASPA +WIKIPW Alanine and aspartate metabolism ASS1 +WIKIPW Alanine and aspartate metabolism PC +WIKIPW Translation Factors EIF1 +WIKIPW Translation Factors PAIP1 +WIKIPW Translation Factors EIF5AL1 +WIKIPW Translation Factors EEF1A1 +WIKIPW Translation Factors EEF1A2 +WIKIPW Translation Factors EEF1B2 +WIKIPW Translation Factors EEF1D +WIKIPW Translation Factors EEF1G +WIKIPW Translation Factors EEF2 +WIKIPW Translation Factors EIF1AX +WIKIPW Translation Factors EIF2S1 +WIKIPW Translation Factors EIF2B1 +WIKIPW Translation Factors EIF2S3 +WIKIPW Translation Factors EIF4A1 +WIKIPW Translation Factors EIF4A2 +WIKIPW Translation Factors EIF4B +WIKIPW Translation Factors EIF4E +WIKIPW Translation Factors EIF4EBP1 +WIKIPW Translation Factors EIF4EBP2 +WIKIPW Translation Factors EIF4G1 +WIKIPW Translation Factors EIF5 +WIKIPW Translation Factors EIF5A +WIKIPW Translation Factors ETF1 +WIKIPW Translation Factors KIAA0664 +WIKIPW Translation Factors GSPT2 +WIKIPW Translation Factors PABPC1 +WIKIPW Translation Factors EIF2AK1 +WIKIPW Translation Factors EEF2K +WIKIPW Translation Factors EIF3E +WIKIPW Translation Factors EIF6 +WIKIPW Translation Factors LOC390282 +WIKIPW Translation Factors ANKHD1-EIF4EBP3 +WIKIPW Translation Factors ANKHD1 +WIKIPW Translation Factors EIF2AK2 +WIKIPW Translation Factors LOC645139 +WIKIPW Translation Factors LOC730144 +WIKIPW Translation Factors EIF4H +WIKIPW Translation Factors EIF4EBP3 +WIKIPW Translation Factors EIF3A +WIKIPW Translation Factors EIF3B +WIKIPW Translation Factors EIF3C +WIKIPW Translation Factors EIF3D +WIKIPW Translation Factors EIF3F +WIKIPW Translation Factors EIF3G +WIKIPW Translation Factors EIF3H +WIKIPW Translation Factors EIF3I +WIKIPW Translation Factors EIF3J +WIKIPW Translation Factors EIF4G3 +WIKIPW Translation Factors EIF2B4 +WIKIPW Translation Factors EIF2B3 +WIKIPW Translation Factors EIF2B2 +WIKIPW Translation Factors EIF2B5 +WIKIPW Translation Factors EIF2S2 +WIKIPW Translation Factors EIF1AY +WIKIPW Translation Factors EIF2AK3 +WIKIPW Translation Factors EIF5B +WIKIPW Electron Transport Chain ATP5H +WIKIPW Electron Transport Chain ATP5L +WIKIPW Electron Transport Chain UQCR +WIKIPW Electron Transport Chain COX4I1 +WIKIPW Electron Transport Chain COX5B +WIKIPW Electron Transport Chain COX6A1 +WIKIPW Electron Transport Chain COX6A2 +WIKIPW Electron Transport Chain COX6B1 +WIKIPW Electron Transport Chain COX6C +WIKIPW Electron Transport Chain COX7A1 +WIKIPW Electron Transport Chain COX7A2 +WIKIPW Electron Transport Chain COX7B +WIKIPW Electron Transport Chain COX7C +WIKIPW Electron Transport Chain COX8A +WIKIPW Electron Transport Chain COX11 +WIKIPW Electron Transport Chain COX15 +WIKIPW Electron Transport Chain UQCRQ +WIKIPW Electron Transport Chain ATP5S +WIKIPW Electron Transport Chain SLC25A4 +WIKIPW Electron Transport Chain SLC25A5 +WIKIPW Electron Transport Chain SLC25A6 +WIKIPW Electron Transport Chain UCRC +WIKIPW Electron Transport Chain NDUFS7 +WIKIPW Electron Transport Chain UQCRHL +WIKIPW Electron Transport Chain NDUFA1 +WIKIPW Electron Transport Chain NDUFA2 +WIKIPW Electron Transport Chain NDUFA3 +WIKIPW Electron Transport Chain NDUFA4 +WIKIPW Electron Transport Chain NDUFA5 +WIKIPW Electron Transport Chain NDUFA6 +WIKIPW Electron Transport Chain NDUFA7 +WIKIPW Electron Transport Chain NDUFA8 +WIKIPW Electron Transport Chain NDUFA9 +WIKIPW Electron Transport Chain NDUFA10 +WIKIPW Electron Transport Chain NDUFAB1 +WIKIPW Electron Transport Chain NDUFB1 +WIKIPW Electron Transport Chain NDUFB2 +WIKIPW Electron Transport Chain NDUFB3 +WIKIPW Electron Transport Chain NDUFB4 +WIKIPW Electron Transport Chain NDUFB5 +WIKIPW Electron Transport Chain NDUFB6 +WIKIPW Electron Transport Chain NDUFB7 +WIKIPW Electron Transport Chain NDUFB8 +WIKIPW Electron Transport Chain NDUFB9 +WIKIPW Electron Transport Chain NDUFB10 +WIKIPW Electron Transport Chain NDUFC1 +WIKIPW Electron Transport Chain NDUFC2 +WIKIPW Electron Transport Chain NDUFS1 +WIKIPW Electron Transport Chain NDUFS2 +WIKIPW Electron Transport Chain NDUFS3 +WIKIPW Electron Transport Chain NDUFV1 +WIKIPW Electron Transport Chain NDUFS4 +WIKIPW Electron Transport Chain NDUFS5 +WIKIPW Electron Transport Chain NDUFS6 +WIKIPW Electron Transport Chain NDUFS8 +WIKIPW Electron Transport Chain NDUFV2 +WIKIPW Electron Transport Chain NDUFV3 +WIKIPW Electron Transport Chain ATP5A1 +WIKIPW Electron Transport Chain ATP5B +WIKIPW Electron Transport Chain ATP5C1 +WIKIPW Electron Transport Chain ATP5D +WIKIPW Electron Transport Chain ATP5E +WIKIPW Electron Transport Chain ATP5F1 +WIKIPW Electron Transport Chain ATP5G1 +WIKIPW Electron Transport Chain ATP5G2 +WIKIPW Electron Transport Chain ATP5G3 +WIKIPW Electron Transport Chain ATP5I +WIKIPW Electron Transport Chain ATP5J +WIKIPW Electron Transport Chain ATP5O +WIKIPW Electron Transport Chain NDUFA12 +WIKIPW Electron Transport Chain SCO1 +WIKIPW Electron Transport Chain SDHA +WIKIPW Electron Transport Chain SDHB +WIKIPW Electron Transport Chain SDHC +WIKIPW Electron Transport Chain SDHD +WIKIPW Electron Transport Chain SURF1 +WIKIPW Electron Transport Chain LOC727947 +WIKIPW Electron Transport Chain UCP1 +WIKIPW Electron Transport Chain UCP2 +WIKIPW Electron Transport Chain UCP3 +WIKIPW Electron Transport Chain UQCRB +WIKIPW Electron Transport Chain UQCRC1 +WIKIPW Electron Transport Chain UQCRC2 +WIKIPW Electron Transport Chain UQCRFS1 +WIKIPW Electron Transport Chain UQCRH +WIKIPW Electron Transport Chain SLC25A14 +WIKIPW Electron Transport Chain COX7A2L +WIKIPW Electron Transport Chain COX5A +WIKIPW Electron Transport Chain ATPIF1 +WIKIPW Electron Transport Chain SLC25A27 +WIKIPW Electron Transport Chain ATP5J2 +WIKIPW GPCRs, Other GPR176 +WIKIPW GPCRs, Other CHRM2 +WIKIPW GPCRs, Other CHRM3 +WIKIPW GPCRs, Other GPR62 +WIKIPW GPCRs, Other CCR5 +WIKIPW GPCRs, Other PROKR2 +WIKIPW GPCRs, Other ADORA2A +WIKIPW GPCRs, Other OR1N1 +WIKIPW GPCRs, Other ADORA3 +WIKIPW GPCRs, Other OR10A5 +WIKIPW GPCRs, Other ADRA1D +WIKIPW GPCRs, Other ADRB2 +WIKIPW GPCRs, Other DRD3 +WIKIPW GPCRs, Other DRD4 +WIKIPW GPCRs, Other GPR183 +WIKIPW GPCRs, Other S1PR1 +WIKIPW GPCRs, Other EDNRA +WIKIPW GPCRs, Other CELSR3 +WIKIPW GPCRs, Other CELSR2 +WIKIPW GPCRs, Other F2R +WIKIPW GPCRs, Other GPR116 +WIKIPW GPCRs, Other LPHN2 +WIKIPW GPCRs, Other LPHN3 +WIKIPW GPCRs, Other FSHR +WIKIPW GPCRs, Other DARC +WIKIPW GPCRs, Other OR2F1 +WIKIPW GPCRs, Other OR2B6 +WIKIPW GPCRs, Other OR2M4 +WIKIPW GPCRs, Other OR8G1 +WIKIPW GPCRs, Other OR7E24 +WIKIPW GPCRs, Other GHRHR +WIKIPW GPCRs, Other GPR77 +WIKIPW GPCRs, Other GPR162 +WIKIPW GPCRs, Other GNRHR +WIKIPW GPCRs, Other CXCR3 +WIKIPW GPCRs, Other GPR133 +WIKIPW GPCRs, Other UTS2R +WIKIPW GPCRs, Other GPR17 +WIKIPW GPCRs, Other GPR18 +WIKIPW GPCRs, Other GRM1 +WIKIPW GPCRs, Other GRM8 +WIKIPW GPCRs, Other GRPR +WIKIPW GPCRs, Other ALG6 +WIKIPW GPCRs, Other GPR132 +WIKIPW GPCRs, Other EMR2 +WIKIPW GPCRs, Other HTR1F +WIKIPW GPCRs, Other HTR2A +WIKIPW GPCRs, Other HTR7 +WIKIPW GPCRs, Other OR10A2 +WIKIPW GPCRs, Other IL8RA +WIKIPW GPCRs, Other IL8RB +WIKIPW GPCRs, Other OR2A5 +WIKIPW GPCRs, Other OR2A7 +WIKIPW GPCRs, Other NTSR1 +WIKIPW GPCRs, Other GPR143 +WIKIPW GPCRs, Other OR1F1 +WIKIPW GPCRs, Other OR3A1 +WIKIPW GPCRs, Other P2RY11 +WIKIPW GPCRs, Other RXFP3 +WIKIPW GPCRs, Other P2RY13 +WIKIPW GPCRs, Other GPR84 +WIKIPW GPCRs, Other GPR88 +WIKIPW GPCRs, Other LTB4R2 +WIKIPW GPCRs, Other VN1R1 +WIKIPW GPCRs, Other PTGFR +WIKIPW GPCRs, Other HRH4 +WIKIPW GPCRs, Other RXFP1 +WIKIPW GPCRs, Other LGR6 +WIKIPW GPCRs, Other GPR135 +WIKIPW GPCRs, Other SLC26A6 +WIKIPW GPCRs, Other SMO +WIKIPW GPCRs, Other SSTR2 +WIKIPW GPCRs, Other CCR2 +WIKIPW GPCRs, Other OR2A4 +WIKIPW GPCRs, Other OR1E1 +WIKIPW GPCRs, Other GPR61 +WIKIPW GPCRs, Other OR1G1 +WIKIPW GPCRs, Other OR3A3 +WIKIPW GPCRs, Other GPR98 +WIKIPW GPCRs, Other MCHR2 +WIKIPW GPCRs, Other EMR3 +WIKIPW GPCRs, Other CCKBR +WIKIPW GPCRs, Other TAAR5 +WIKIPW GPCRs, Other TAAR2 +WIKIPW GPCRs, Other GPR56 +WIKIPW GPCRs, Other GPR55 +WIKIPW GPCRs, Other CELSR1 +WIKIPW Osteoclast IFNAR1 +WIKIPW Osteoclast IFNB1 +WIKIPW Osteoclast ITGB3 +WIKIPW Osteoclast TNFRSF11B +WIKIPW Osteoclast PDGFB +WIKIPW Osteoclast ACP5 +WIKIPW Osteoclast TRPV5 +WIKIPW Osteoclast SLC9A1 +WIKIPW Osteoclast SPP1 +WIKIPW Osteoclast GPR68 +WIKIPW Osteoclast TNFSF11 +WIKIPW Osteoclast TNFRSF11A +WIKIPW Osteoclast ATP6V1G1 +WIKIPW IL-5 Signaling Pathway ATF2 +WIKIPW IL-5 Signaling Pathway CRKL +WIKIPW IL-5 Signaling Pathway MAPK14 +WIKIPW IL-5 Signaling Pathway CSF2RB +WIKIPW IL-5 Signaling Pathway CTNNB1 +WIKIPW IL-5 Signaling Pathway DNM2 +WIKIPW IL-5 Signaling Pathway ELK1 +WIKIPW IL-5 Signaling Pathway AKT1 +WIKIPW IL-5 Signaling Pathway PTK2B +WIKIPW IL-5 Signaling Pathway FOXO3 +WIKIPW IL-5 Signaling Pathway ALOX5 +WIKIPW IL-5 Signaling Pathway ALOX5AP +WIKIPW IL-5 Signaling Pathway SHC2 +WIKIPW IL-5 Signaling Pathway GRB2 +WIKIPW IL-5 Signaling Pathway RAPGEF1 +WIKIPW IL-5 Signaling Pathway GSK3A +WIKIPW IL-5 Signaling Pathway GSK3B +WIKIPW IL-5 Signaling Pathway HCK +WIKIPW IL-5 Signaling Pathway HCLS1 +WIKIPW IL-5 Signaling Pathway HRAS +WIKIPW IL-5 Signaling Pathway ICAM1 +WIKIPW IL-5 Signaling Pathway ICAM3 +WIKIPW IL-5 Signaling Pathway IL2RB +WIKIPW IL-5 Signaling Pathway IL5 +WIKIPW IL-5 Signaling Pathway IL5RA +WIKIPW IL-5 Signaling Pathway ITGAM +WIKIPW IL-5 Signaling Pathway ITGB2 +WIKIPW IL-5 Signaling Pathway JAK1 +WIKIPW IL-5 Signaling Pathway JAK2 +WIKIPW IL-5 Signaling Pathway JUN +WIKIPW IL-5 Signaling Pathway KRAS +WIKIPW IL-5 Signaling Pathway LYN +WIKIPW IL-5 Signaling Pathway NFKB1 +WIKIPW IL-5 Signaling Pathway NFKBIA +WIKIPW IL-5 Signaling Pathway PIM1 +WIKIPW IL-5 Signaling Pathway PIK3CG +WIKIPW IL-5 Signaling Pathway PIK3R1 +WIKIPW IL-5 Signaling Pathway PIK3R2 +WIKIPW IL-5 Signaling Pathway PLA2G4A +WIKIPW IL-5 Signaling Pathway PRKCB +WIKIPW IL-5 Signaling Pathway PRKCD +WIKIPW IL-5 Signaling Pathway MAPK1 +WIKIPW IL-5 Signaling Pathway MAPK3 +WIKIPW IL-5 Signaling Pathway MAPK9 +WIKIPW IL-5 Signaling Pathway MAP2K2 +WIKIPW IL-5 Signaling Pathway PTPN6 +WIKIPW IL-5 Signaling Pathway PTPN11 +WIKIPW IL-5 Signaling Pathway BAX +WIKIPW IL-5 Signaling Pathway RAC1 +WIKIPW IL-5 Signaling Pathway RAF1 +WIKIPW IL-5 Signaling Pathway RAP1GAP +WIKIPW IL-5 Signaling Pathway RPS6KA1 +WIKIPW IL-5 Signaling Pathway SDCBP +WIKIPW IL-5 Signaling Pathway SHC1 +WIKIPW IL-5 Signaling Pathway SOX4 +WIKIPW IL-5 Signaling Pathway STAT1 +WIKIPW IL-5 Signaling Pathway STAT3 +WIKIPW IL-5 Signaling Pathway STAT5A +WIKIPW IL-5 Signaling Pathway STAT5B +WIKIPW IL-5 Signaling Pathway SYK +WIKIPW IL-5 Signaling Pathway BTK +WIKIPW IL-5 Signaling Pathway VAV1 +WIKIPW IL-5 Signaling Pathway YWHAZ +WIKIPW IL-5 Signaling Pathway SOCS1 +WIKIPW IL-5 Signaling Pathway CBL +WIKIPW IL-5 Signaling Pathway CCND3 +WIKIPW IL-5 Signaling Pathway UNC119 +WIKIPW Matrix Metalloproteinases MMP21 +WIKIPW Matrix Metalloproteinases MMP1 +WIKIPW Matrix Metalloproteinases MMP2 +WIKIPW Matrix Metalloproteinases MMP3 +WIKIPW Matrix Metalloproteinases MMP7 +WIKIPW Matrix Metalloproteinases MMP8 +WIKIPW Matrix Metalloproteinases MMP9 +WIKIPW Matrix Metalloproteinases MMP10 +WIKIPW Matrix Metalloproteinases MMP11 +WIKIPW Matrix Metalloproteinases MMP12 +WIKIPW Matrix Metalloproteinases MMP13 +WIKIPW Matrix Metalloproteinases MMP14 +WIKIPW Matrix Metalloproteinases MMP15 +WIKIPW Matrix Metalloproteinases MMP16 +WIKIPW Matrix Metalloproteinases MMP17 +WIKIPW Matrix Metalloproteinases MMP19 +WIKIPW Matrix Metalloproteinases MMP26 +WIKIPW Matrix Metalloproteinases MMP27 +WIKIPW Matrix Metalloproteinases MMP25 +WIKIPW Matrix Metalloproteinases BSG +WIKIPW Matrix Metalloproteinases TCF20 +WIKIPW Matrix Metalloproteinases TIMP1 +WIKIPW Matrix Metalloproteinases TIMP2 +WIKIPW Matrix Metalloproteinases TIMP3 +WIKIPW Matrix Metalloproteinases TIMP4 +WIKIPW Matrix Metalloproteinases TNF +WIKIPW Matrix Metalloproteinases MMP28 +WIKIPW Matrix Metalloproteinases MMP23B +WIKIPW Matrix Metalloproteinases MMP20 +WIKIPW Pentose Phosphate Pathway G6PD +WIKIPW Pentose Phosphate Pathway PGLS +WIKIPW Pentose Phosphate Pathway PGD +WIKIPW Pentose Phosphate Pathway RPE +WIKIPW Pentose Phosphate Pathway TALDO1 +WIKIPW Pentose Phosphate Pathway TKT +WIKIPW Pentose Phosphate Pathway LOC729020 +WIKIPW Phase I, non P450 ESD +WIKIPW Phase I, non P450 CES7 +WIKIPW Phase I, non P450 LIPA +WIKIPW Phase I, non P450 PON1 +WIKIPW Phase I, non P450 PON2 +WIKIPW Phase I, non P450 PON3 +WIKIPW Phase I, non P450 CES2 +WIKIPW Androgen Receptor Signaling Pathway HIPK3 +WIKIPW Androgen Receptor Signaling Pathway CDK7 +WIKIPW Androgen Receptor Signaling Pathway CDK9 +WIKIPW Androgen Receptor Signaling Pathway STUB1 +WIKIPW Androgen Receptor Signaling Pathway PIAS3 +WIKIPW Androgen Receptor Signaling Pathway NCOA2 +WIKIPW Androgen Receptor Signaling Pathway KAT5 +WIKIPW Androgen Receptor Signaling Pathway PNRC1 +WIKIPW Androgen Receptor Signaling Pathway CDC37 +WIKIPW Androgen Receptor Signaling Pathway MYST2 +WIKIPW Androgen Receptor Signaling Pathway COX5B +WIKIPW Androgen Receptor Signaling Pathway ATF2 +WIKIPW Androgen Receptor Signaling Pathway CREBBP +WIKIPW Androgen Receptor Signaling Pathway CTNNB1 +WIKIPW Androgen Receptor Signaling Pathway AES +WIKIPW Androgen Receptor Signaling Pathway NR0B1 +WIKIPW Androgen Receptor Signaling Pathway EGFR +WIKIPW Androgen Receptor Signaling Pathway EP300 +WIKIPW Androgen Receptor Signaling Pathway AKT1 +WIKIPW Androgen Receptor Signaling Pathway ESR1 +WIKIPW Androgen Receptor Signaling Pathway ESR2 +WIKIPW Androgen Receptor Signaling Pathway ETV5 +WIKIPW Androgen Receptor Signaling Pathway FHL2 +WIKIPW Androgen Receptor Signaling Pathway RAD54L2 +WIKIPW Androgen Receptor Signaling Pathway FLNA +WIKIPW Androgen Receptor Signaling Pathway PATZ1 +WIKIPW Androgen Receptor Signaling Pathway NR5A1 +WIKIPW Androgen Receptor Signaling Pathway SPDEF +WIKIPW Androgen Receptor Signaling Pathway RCHY1 +WIKIPW Androgen Receptor Signaling Pathway SIN3A +WIKIPW Androgen Receptor Signaling Pathway GAPDH +WIKIPW Androgen Receptor Signaling Pathway APPL1 +WIKIPW Androgen Receptor Signaling Pathway GHR +WIKIPW Androgen Receptor Signaling Pathway NR3C1 +WIKIPW Androgen Receptor Signaling Pathway SLC25A4 +WIKIPW Androgen Receptor Signaling Pathway GTF2F1 +WIKIPW Androgen Receptor Signaling Pathway GTF2F2 +WIKIPW Androgen Receptor Signaling Pathway GTF2H1 +WIKIPW Androgen Receptor Signaling Pathway SENP1 +WIKIPW Androgen Receptor Signaling Pathway PSMC3IP +WIKIPW Androgen Receptor Signaling Pathway HDAC1 +WIKIPW Androgen Receptor Signaling Pathway HMGB1 +WIKIPW Androgen Receptor Signaling Pathway HMGB2 +WIKIPW Androgen Receptor Signaling Pathway PRMT1 +WIKIPW Androgen Receptor Signaling Pathway HSPA1A +WIKIPW Androgen Receptor Signaling Pathway HSPA1B +WIKIPW Androgen Receptor Signaling Pathway IGF1 +WIKIPW Androgen Receptor Signaling Pathway IL6 +WIKIPW Androgen Receptor Signaling Pathway IL6ST +WIKIPW Androgen Receptor Signaling Pathway AR +WIKIPW Androgen Receptor Signaling Pathway JUN +WIKIPW Androgen Receptor Signaling Pathway SMAD3 +WIKIPW Androgen Receptor Signaling Pathway SMAD4 +WIKIPW Androgen Receptor Signaling Pathway MDM2 +WIKIPW Androgen Receptor Signaling Pathway MMP1 +WIKIPW Androgen Receptor Signaling Pathway PA2G4 +WIKIPW Androgen Receptor Signaling Pathway PIAS4 +WIKIPW Androgen Receptor Signaling Pathway PLAGL1 +WIKIPW Androgen Receptor Signaling Pathway POU2F1 +WIKIPW Androgen Receptor Signaling Pathway POU2F2 +WIKIPW Androgen Receptor Signaling Pathway MAPK1 +WIKIPW Androgen Receptor Signaling Pathway MAP2K1 +WIKIPW Androgen Receptor Signaling Pathway PAK6 +WIKIPW Androgen Receptor Signaling Pathway PTEN +WIKIPW Androgen Receptor Signaling Pathway BAG1 +WIKIPW Androgen Receptor Signaling Pathway PXN +WIKIPW Androgen Receptor Signaling Pathway RAC3 +WIKIPW Androgen Receptor Signaling Pathway RAF1 +WIKIPW Androgen Receptor Signaling Pathway RAN +WIKIPW Androgen Receptor Signaling Pathway RB1 +WIKIPW Androgen Receptor Signaling Pathway CCND1 +WIKIPW Androgen Receptor Signaling Pathway RELA +WIKIPW Androgen Receptor Signaling Pathway RNF4 +WIKIPW Androgen Receptor Signaling Pathway NSD1 +WIKIPW Androgen Receptor Signaling Pathway LOC644006 +WIKIPW Androgen Receptor Signaling Pathway SP1 +WIKIPW Androgen Receptor Signaling Pathway SRC +WIKIPW Androgen Receptor Signaling Pathway BRCA1 +WIKIPW Androgen Receptor Signaling Pathway SRY +WIKIPW Androgen Receptor Signaling Pathway STAT3 +WIKIPW Androgen Receptor Signaling Pathway SVIL +WIKIPW Androgen Receptor Signaling Pathway TGFB1I1 +WIKIPW Androgen Receptor Signaling Pathway TGIF1 +WIKIPW Androgen Receptor Signaling Pathway TMF1 +WIKIPW Androgen Receptor Signaling Pathway TP53 +WIKIPW Androgen Receptor Signaling Pathway NR2C2 +WIKIPW Androgen Receptor Signaling Pathway UBE2I +WIKIPW Androgen Receptor Signaling Pathway UBE3A +WIKIPW Androgen Receptor Signaling Pathway YWHAH +WIKIPW Androgen Receptor Signaling Pathway NCOA4 +WIKIPW Androgen Receptor Signaling Pathway CALR +WIKIPW Androgen Receptor Signaling Pathway NCOA3 +WIKIPW Androgen Receptor Signaling Pathway NRIP1 +WIKIPW Androgen Receptor Signaling Pathway CASP1 +WIKIPW Androgen Receptor Signaling Pathway CASP3 +WIKIPW Androgen Receptor Signaling Pathway CASP7 +WIKIPW Androgen Receptor Signaling Pathway UXT +WIKIPW Androgen Receptor Signaling Pathway CASP8 +WIKIPW Androgen Receptor Signaling Pathway NR0B2 +WIKIPW Androgen Receptor Signaling Pathway PIAS1 +WIKIPW Androgen Receptor Signaling Pathway CAV1 +WIKIPW Androgen Receptor Signaling Pathway RUNX2 +WIKIPW Androgen Receptor Signaling Pathway RUNX1 +WIKIPW Androgen Receptor Signaling Pathway NCOA1 +WIKIPW Androgen Receptor Signaling Pathway KAT2B +WIKIPW Androgen Receptor Signaling Pathway CCNE1 +WIKIPW Androgen Receptor Signaling Pathway CCNH +WIKIPW Androgen Receptor Signaling Pathway PIAS2 +WIKIPW Androgen Receptor Signaling Pathway CTDP1 +WIKIPW Androgen Receptor Signaling Pathway RNF14 +WIKIPW Androgen Receptor Signaling Pathway NCOR2 +WIKIPW Androgen Receptor Signaling Pathway CDC2 +WIKIPW Androgen Receptor Signaling Pathway CDC25B +WIKIPW AMPK signaling CDKN1A +WIKIPW AMPK signaling CAMKK2 +WIKIPW AMPK signaling CPT1C +WIKIPW AMPK signaling PPARGC1B +WIKIPW AMPK signaling CPT1A +WIKIPW AMPK signaling CPT1B +WIKIPW AMPK signaling ADRA1B +WIKIPW AMPK signaling ADRA1A +WIKIPW AMPK signaling EEF2 +WIKIPW AMPK signaling EIF4EBP1 +WIKIPW AMPK signaling ELAVL1 +WIKIPW AMPK signaling CRTC2 +WIKIPW AMPK signaling AKT1 +WIKIPW AMPK signaling AKT2 +WIKIPW AMPK signaling FASN +WIKIPW AMPK signaling PLCB1 +WIKIPW AMPK signaling MTOR +WIKIPW AMPK signaling EEF2K +WIKIPW AMPK signaling GYS1 +WIKIPW AMPK signaling GYS2 +WIKIPW AMPK signaling ACACA +WIKIPW AMPK signaling HMGCR +WIKIPW AMPK signaling HNF4A +WIKIPW AMPK signaling ACACB +WIKIPW AMPK signaling INS +WIKIPW AMPK signaling INSR +WIKIPW AMPK signaling LEP +WIKIPW AMPK signaling LEPR +WIKIPW AMPK signaling LIPE +WIKIPW AMPK signaling LOC729991-MEF2B +WIKIPW AMPK signaling ADIPOR1 +WIKIPW AMPK signaling PRKAG2 +WIKIPW AMPK signaling CAB39 +WIKIPW AMPK signaling PFKFB3 +WIKIPW AMPK signaling PIK3C3 +WIKIPW AMPK signaling PIK3CA +WIKIPW AMPK signaling PIK3CB +WIKIPW AMPK signaling PIK3CD +WIKIPW AMPK signaling PIK3CG +WIKIPW AMPK signaling PIK3R1 +WIKIPW AMPK signaling PIK3R2 +WIKIPW AMPK signaling PRKAG3 +WIKIPW AMPK signaling STRADB +WIKIPW AMPK signaling PRKAA1 +WIKIPW AMPK signaling PRKAA2 +WIKIPW AMPK signaling PRKAB1 +WIKIPW AMPK signaling PRKAB2 +WIKIPW AMPK signaling PRKACB +WIKIPW AMPK signaling PRKACG +WIKIPW AMPK signaling PRKAG1 +WIKIPW AMPK signaling SLC2A4RG +WIKIPW AMPK signaling RPTOR +WIKIPW AMPK signaling RPS6KB1 +WIKIPW AMPK signaling RPS6KB2 +WIKIPW AMPK signaling SLC2A4 +WIKIPW AMPK signaling SREBF1 +WIKIPW AMPK signaling STK11 +WIKIPW AMPK signaling TP53 +WIKIPW AMPK signaling INS-IGF2 +WIKIPW AMPK signaling TSC1 +WIKIPW AMPK signaling TSC2 +WIKIPW AMPK signaling ADIPOR2 +WIKIPW AMPK signaling CAMKK1 +WIKIPW AMPK signaling PIK3R3 +WIKIPW AMPK signaling CCNA2 +WIKIPW AMPK signaling CCNA1 +WIKIPW AMPK signaling CCNB1 +WIKIPW AMPK signaling STRADA +WIKIPW AMPK signaling ADIPOQ +WIKIPW BMP signalling and regulation TOB2 +WIKIPW BMP signalling and regulation SMAD1 +WIKIPW BMP signalling and regulation SMAD4 +WIKIPW BMP signalling and regulation SMAD6 +WIKIPW BMP signalling and regulation SMURF1 +WIKIPW BMP signalling and regulation BMP2 +WIKIPW BMP signalling and regulation BMPR1A +WIKIPW BMP signalling and regulation BMPR1B +WIKIPW BMP signalling and regulation BMPR2 +WIKIPW BMP signalling and regulation RUNX2 +WIKIPW BMP signalling and regulation NOG +WIKIPW Fatty Acid Beta Oxidation CPT1A +WIKIPW Fatty Acid Beta Oxidation CPT1B +WIKIPW Fatty Acid Beta Oxidation CPT2 +WIKIPW Fatty Acid Beta Oxidation CRAT +WIKIPW Fatty Acid Beta Oxidation DCI +WIKIPW Fatty Acid Beta Oxidation DECR1 +WIKIPW Fatty Acid Beta Oxidation DLD +WIKIPW Fatty Acid Beta Oxidation ECHS1 +WIKIPW Fatty Acid Beta Oxidation ACSL1 +WIKIPW Fatty Acid Beta Oxidation ACSL3 +WIKIPW Fatty Acid Beta Oxidation ACSL4 +WIKIPW Fatty Acid Beta Oxidation ACSL6 +WIKIPW Fatty Acid Beta Oxidation GCDH +WIKIPW Fatty Acid Beta Oxidation GK +WIKIPW Fatty Acid Beta Oxidation GK2 +WIKIPW Fatty Acid Beta Oxidation GPD2 +WIKIPW Fatty Acid Beta Oxidation HADHA +WIKIPW Fatty Acid Beta Oxidation HADHB +WIKIPW Fatty Acid Beta Oxidation HADH +WIKIPW Fatty Acid Beta Oxidation ACADL +WIKIPW Fatty Acid Beta Oxidation ACADM +WIKIPW Fatty Acid Beta Oxidation ACADS +WIKIPW Fatty Acid Beta Oxidation ACADVL +WIKIPW Fatty Acid Beta Oxidation ACAT1 +WIKIPW Fatty Acid Beta Oxidation LIPC +WIKIPW Fatty Acid Beta Oxidation LIPE +WIKIPW Fatty Acid Beta Oxidation LPL +WIKIPW Fatty Acid Beta Oxidation ACSL5 +WIKIPW Fatty Acid Beta Oxidation ACSS2 +WIKIPW Fatty Acid Beta Oxidation PNPLA2 +WIKIPW Fatty Acid Beta Oxidation TPI1 +WIKIPW Fatty Acid Beta Oxidation SLC25A20 +WIKIPW Fatty Acid Beta Oxidation LIPF +WIKIPW NOD pathway SUGT1 +WIKIPW NOD pathway COPS6 +WIKIPW NOD pathway NLRP3 +WIKIPW NOD pathway CHUK +WIKIPW NOD pathway AAMP +WIKIPW NOD pathway NLRP4 +WIKIPW NOD pathway NLRP7 +WIKIPW NOD pathway NLRP1 +WIKIPW NOD pathway CARD8 +WIKIPW NOD pathway PYCARD +WIKIPW NOD pathway XIAP +WIKIPW NOD pathway HSP90AA1 +WIKIPW NOD pathway NLRP10 +WIKIPW NOD pathway IKBKB +WIKIPW NOD pathway IL1B +WIKIPW NOD pathway IL18 +WIKIPW NOD pathway MEFV +WIKIPW NOD pathway NAIP +WIKIPW NOD pathway NFKBIA +WIKIPW NOD pathway DUOX2 +WIKIPW NOD pathway NDUFA13 +WIKIPW NOD pathway NLRP2 +WIKIPW NOD pathway ERBB2IP +WIKIPW NOD pathway NLRC4 +WIKIPW NOD pathway RAC1 +WIKIPW NOD pathway RELA +WIKIPW NOD pathway PRDM1 +WIKIPW NOD pathway NOD2 +WIKIPW NOD pathway CARD9 +WIKIPW NOD pathway CASP1 +WIKIPW NOD pathway CASP5 +WIKIPW NOD pathway CASP7 +WIKIPW NOD pathway CASP8 +WIKIPW NOD pathway CASP9 +WIKIPW NOD pathway CARD6 +WIKIPW NOD pathway IKBKG +WIKIPW NOD pathway RIPK2 +WIKIPW NOD pathway NLRP12 +WIKIPW NOD pathway AIM2 +WIKIPW NOD pathway ACAP1 +WIKIPW Osteopontin IKBKB +WIKIPW Osteopontin MMP9 +WIKIPW Osteopontin NFKB1 +WIKIPW Osteopontin PLAU +WIKIPW Osteopontin MAPK1 +WIKIPW Osteopontin MAPK3 +WIKIPW Osteopontin MAP2K1 +WIKIPW Osteopontin RELA +WIKIPW Osteopontin SPP1 +WIKIPW Osteopontin MAP3K14 +WIKIPW Toll-like receptor signaling pathway - mir RNF41 +WIKIPW Toll-like receptor signaling pathway - mir TLR6 +WIKIPW Toll-like receptor signaling pathway - mir MAP3K7IP1 +WIKIPW Toll-like receptor signaling pathway - mir RBCK1 +WIKIPW Toll-like receptor signaling pathway - mir ZMYND11 +WIKIPW Toll-like receptor signaling pathway - mir TRAFD1 +WIKIPW Toll-like receptor signaling pathway - mir IRAK3 +WIKIPW Toll-like receptor signaling pathway - mir TIRAP +WIKIPW Toll-like receptor signaling pathway - mir CHUK +WIKIPW Toll-like receptor signaling pathway - mir CISH +WIKIPW Toll-like receptor signaling pathway - mir MAP3K8 +WIKIPW Toll-like receptor signaling pathway - mir MAPK14 +WIKIPW Toll-like receptor signaling pathway - mir TICAM1 +WIKIPW Toll-like receptor signaling pathway - mir CYLD +WIKIPW Toll-like receptor signaling pathway - mir AKT1 +WIKIPW Toll-like receptor signaling pathway - mir AKT2 +WIKIPW Toll-like receptor signaling pathway - mir SARM1 +WIKIPW Toll-like receptor signaling pathway - mir MAP3K7IP2 +WIKIPW Toll-like receptor signaling pathway - mir FOS +WIKIPW Toll-like receptor signaling pathway - mir PIK3R5 +WIKIPW Toll-like receptor signaling pathway - mir LY96 +WIKIPW Toll-like receptor signaling pathway - mir PELI3 +WIKIPW Toll-like receptor signaling pathway - mir MAP3K7IP3 +WIKIPW Toll-like receptor signaling pathway - mir TBK1 +WIKIPW Toll-like receptor signaling pathway - mir IFNA1 +WIKIPW Toll-like receptor signaling pathway - mir IFNA2 +WIKIPW Toll-like receptor signaling pathway - mir IFNA4 +WIKIPW Toll-like receptor signaling pathway - mir IFNA5 +WIKIPW Toll-like receptor signaling pathway - mir IFNA6 +WIKIPW Toll-like receptor signaling pathway - mir IFNA7 +WIKIPW Toll-like receptor signaling pathway - mir IFNA8 +WIKIPW Toll-like receptor signaling pathway - mir IFNA10 +WIKIPW Toll-like receptor signaling pathway - mir IFNA13 +WIKIPW Toll-like receptor signaling pathway - mir IFNA14 +WIKIPW Toll-like receptor signaling pathway - mir IFNA16 +WIKIPW Toll-like receptor signaling pathway - mir IFNA17 +WIKIPW Toll-like receptor signaling pathway - mir IFNA21 +WIKIPW Toll-like receptor signaling pathway - mir IFNAR1 +WIKIPW Toll-like receptor signaling pathway - mir IFNAR2 +WIKIPW Toll-like receptor signaling pathway - mir IFNB1 +WIKIPW Toll-like receptor signaling pathway - mir TICAM2 +WIKIPW Toll-like receptor signaling pathway - mir IKBKB +WIKIPW Toll-like receptor signaling pathway - mir IL1B +WIKIPW Toll-like receptor signaling pathway - mir IL6 +WIKIPW Toll-like receptor signaling pathway - mir IL8 +WIKIPW Toll-like receptor signaling pathway - mir IL12A +WIKIPW Toll-like receptor signaling pathway - mir IL12B +WIKIPW Toll-like receptor signaling pathway - mir CXCL10 +WIKIPW Toll-like receptor signaling pathway - mir IRAK1 +WIKIPW Toll-like receptor signaling pathway - mir IRAK2 +WIKIPW Toll-like receptor signaling pathway - mir IRF3 +WIKIPW Toll-like receptor signaling pathway - mir IRF5 +WIKIPW Toll-like receptor signaling pathway - mir IRF7 +WIKIPW Toll-like receptor signaling pathway - mir JUN +WIKIPW Toll-like receptor signaling pathway - mir LBP +WIKIPW Toll-like receptor signaling pathway - mir CD180 +WIKIPW Toll-like receptor signaling pathway - mir SMAD6 +WIKIPW Toll-like receptor signaling pathway - mir MBL2 +WIKIPW Toll-like receptor signaling pathway - mir CXCL9 +WIKIPW Toll-like receptor signaling pathway - mir MYD88 +WIKIPW Toll-like receptor signaling pathway - mir NEU1 +WIKIPW Toll-like receptor signaling pathway - mir NFKB1 +WIKIPW Toll-like receptor signaling pathway - mir NFKB2 +WIKIPW Toll-like receptor signaling pathway - mir NFKBIA +WIKIPW Toll-like receptor signaling pathway - mir TMED7 +WIKIPW Toll-like receptor signaling pathway - mir IRAK4 +WIKIPW Toll-like receptor signaling pathway - mir TLR7 +WIKIPW Toll-like receptor signaling pathway - mir TLR8 +WIKIPW Toll-like receptor signaling pathway - mir PIK3CA +WIKIPW Toll-like receptor signaling pathway - mir PIK3CB +WIKIPW Toll-like receptor signaling pathway - mir PIK3CD +WIKIPW Toll-like receptor signaling pathway - mir PIK3CG +WIKIPW Toll-like receptor signaling pathway - mir PIK3R1 +WIKIPW Toll-like receptor signaling pathway - mir PIK3R2 +WIKIPW Toll-like receptor signaling pathway - mir PLK1 +WIKIPW Toll-like receptor signaling pathway - mir TLR9 +WIKIPW Toll-like receptor signaling pathway - mir TREM1 +WIKIPW Toll-like receptor signaling pathway - mir FBXW5 +WIKIPW Toll-like receptor signaling pathway - mir TOLLIP +WIKIPW Toll-like receptor signaling pathway - mir RNF216 +WIKIPW Toll-like receptor signaling pathway - mir RNF31 +WIKIPW Toll-like receptor signaling pathway - mir OTUD5 +WIKIPW Toll-like receptor signaling pathway - mir MAPK1 +WIKIPW Toll-like receptor signaling pathway - mir MAPK3 +WIKIPW Toll-like receptor signaling pathway - mir MAPK8 +WIKIPW Toll-like receptor signaling pathway - mir MAPK11 +WIKIPW Toll-like receptor signaling pathway - mir MAPK9 +WIKIPW Toll-like receptor signaling pathway - mir MAPK10 +WIKIPW Toll-like receptor signaling pathway - mir MAPK13 +WIKIPW Toll-like receptor signaling pathway - mir MAP2K1 +WIKIPW Toll-like receptor signaling pathway - mir MAP2K2 +WIKIPW Toll-like receptor signaling pathway - mir MAP2K3 +WIKIPW Toll-like receptor signaling pathway - mir MAP2K6 +WIKIPW Toll-like receptor signaling pathway - mir MAP2K7 +WIKIPW Toll-like receptor signaling pathway - mir PELI2 +WIKIPW Toll-like receptor signaling pathway - mir PELI1 +WIKIPW Toll-like receptor signaling pathway - mir PTPN6 +WIKIPW Toll-like receptor signaling pathway - mir RAC1 +WIKIPW Toll-like receptor signaling pathway - mir SIGIRR +WIKIPW Toll-like receptor signaling pathway - mir RELA +WIKIPW Toll-like receptor signaling pathway - mir MAPK12 +WIKIPW Toll-like receptor signaling pathway - mir CCL3 +WIKIPW Toll-like receptor signaling pathway - mir CCL4 +WIKIPW Toll-like receptor signaling pathway - mir CCL5 +WIKIPW Toll-like receptor signaling pathway - mir CXCL11 +WIKIPW Toll-like receptor signaling pathway - mir MAP2K4 +WIKIPW Toll-like receptor signaling pathway - mir SFTPD +WIKIPW Toll-like receptor signaling pathway - mir SFTPA1 +WIKIPW Toll-like receptor signaling pathway - mir SPP1 +WIKIPW Toll-like receptor signaling pathway - mir STAT1 +WIKIPW Toll-like receptor signaling pathway - mir SYK +WIKIPW Toll-like receptor signaling pathway - mir MAP3K7 +WIKIPW Toll-like receptor signaling pathway - mir BTK +WIKIPW Toll-like receptor signaling pathway - mir TLR1 +WIKIPW Toll-like receptor signaling pathway - mir TLR2 +WIKIPW Toll-like receptor signaling pathway - mir TLR3 +WIKIPW Toll-like receptor signaling pathway - mir TLR4 +WIKIPW Toll-like receptor signaling pathway - mir TLR5 +WIKIPW Toll-like receptor signaling pathway - mir TNF +WIKIPW Toll-like receptor signaling pathway - mir TNFAIP3 +WIKIPW Toll-like receptor signaling pathway - mir TRAF3 +WIKIPW Toll-like receptor signaling pathway - mir TRAF6 +WIKIPW Toll-like receptor signaling pathway - mir USP7 +WIKIPW Toll-like receptor signaling pathway - mir CUEDC2 +WIKIPW Toll-like receptor signaling pathway - mir CASP8 +WIKIPW Toll-like receptor signaling pathway - mir PIK3R3 +WIKIPW Toll-like receptor signaling pathway - mir IKBKG +WIKIPW Toll-like receptor signaling pathway - mir SOCS1 +WIKIPW Toll-like receptor signaling pathway - mir CTNNAL1 +WIKIPW Toll-like receptor signaling pathway - mir RIPK1 +WIKIPW Toll-like receptor signaling pathway - mir FADD +WIKIPW Toll-like receptor signaling pathway - mir SQSTM1 +WIKIPW Toll-like receptor signaling pathway - mir CD14 +WIKIPW Toll-like receptor signaling pathway - mir CD80 +WIKIPW Toll-like receptor signaling pathway - mir CD86 +WIKIPW Toll-like receptor signaling pathway - mir CD40 +WIKIPW Toll-like receptor signaling pathway - mir IKBKE +WIKIPW Selenium PRDX4 +WIKIPW Selenium TXNRD2 +WIKIPW Selenium PRDX3 +WIKIPW Selenium SERPINA3 +WIKIPW Selenium CRP +WIKIPW Selenium SELM +WIKIPW Selenium CTH +WIKIPW Selenium DIO1 +WIKIPW Selenium DIO2 +WIKIPW Selenium DIO3 +WIKIPW Selenium ABCA1 +WIKIPW Selenium ALB +WIKIPW Selenium F2 +WIKIPW Selenium F7 +WIKIPW Selenium SEPHS2 +WIKIPW Selenium ALOX5 +WIKIPW Selenium ALOX5AP +WIKIPW Selenium ALOX15B +WIKIPW Selenium GPX6 +WIKIPW Selenium PRDX5 +WIKIPW Selenium GGT1 +WIKIPW Selenium C11orf31 +WIKIPW Selenium GPX1 +WIKIPW Selenium GPX2 +WIKIPW Selenium GPX3 +WIKIPW Selenium GPX4 +WIKIPW Selenium GSR +WIKIPW Selenium HBA1 +WIKIPW Selenium HBA2 +WIKIPW Selenium HBB +WIKIPW Selenium APOA1 +WIKIPW Selenium APOB +WIKIPW Selenium ICAM1 +WIKIPW Selenium IFNG +WIKIPW Selenium SELV +WIKIPW Selenium IL1B +WIKIPW Selenium IL6 +WIKIPW Selenium INS +WIKIPW Selenium INSR +WIKIPW Selenium LDLR +WIKIPW Selenium MPO +WIKIPW Selenium MTHFR +WIKIPW Selenium MTR +WIKIPW Selenium NFKB1 +WIKIPW Selenium NFKB2 +WIKIPW Selenium PRDX1 +WIKIPW Selenium SERPINE1 +WIKIPW Selenium SELT +WIKIPW Selenium SEPX1 +WIKIPW Selenium PLAT +WIKIPW Selenium PLG +WIKIPW Selenium PNPO +WIKIPW Selenium RFK +WIKIPW Selenium SELS +WIKIPW Selenium SEPN1 +WIKIPW Selenium PTGS1 +WIKIPW Selenium PTGS2 +WIKIPW Selenium SELK +WIKIPW Selenium RELA +WIKIPW Selenium SAA1 +WIKIPW Selenium SAA2 +WIKIPW Selenium SAA4 +WIKIPW Selenium CCL2 +WIKIPW Selenium SEPP1 +WIKIPW Selenium SEPW1 +WIKIPW Selenium SOD1 +WIKIPW Selenium SOD2 +WIKIPW Selenium SOD3 +WIKIPW Selenium PRDX2 +WIKIPW Selenium TNF +WIKIPW Selenium INS-IGF2 +WIKIPW Selenium TXN +WIKIPW Selenium TXNRD1 +WIKIPW Selenium XDH +WIKIPW Selenium FLAD1 +WIKIPW Selenium SELO +WIKIPW Selenium CAT +WIKIPW Selenium SELI +WIKIPW Selenium KMO +WIKIPW Selenium CBS +WIKIPW Selenium KYNU +WIKIPW Selenium SEP15 +WIKIPW Selenium SCARB1 +WIKIPW Eicosanoid Synthesis ALOX12 +WIKIPW Eicosanoid Synthesis ALOX5 +WIKIPW Eicosanoid Synthesis ALOX5AP +WIKIPW Eicosanoid Synthesis ALOX15 +WIKIPW Eicosanoid Synthesis ALOX15B +WIKIPW Eicosanoid Synthesis GGT1 +WIKIPW Eicosanoid Synthesis LTA4H +WIKIPW Eicosanoid Synthesis LTC4S +WIKIPW Eicosanoid Synthesis PNPLA8 +WIKIPW Eicosanoid Synthesis PLA2G2A +WIKIPW Eicosanoid Synthesis PTGDS +WIKIPW Eicosanoid Synthesis PTGIS +WIKIPW Eicosanoid Synthesis PTGS1 +WIKIPW Eicosanoid Synthesis PTGS2 +WIKIPW Eicosanoid Synthesis TBXAS1 +WIKIPW Eicosanoid Synthesis PTGES2 +WIKIPW Eicosanoid Synthesis PLA2G6 +WIKIPW Eicosanoid Synthesis PTGES +WIKIPW Nuclear Receptors NR0B1 +WIKIPW Nuclear Receptors NR2F6 +WIKIPW Nuclear Receptors ESR1 +WIKIPW Nuclear Receptors ESR2 +WIKIPW Nuclear Receptors ESRRA +WIKIPW Nuclear Receptors ESRRB +WIKIPW Nuclear Receptors NR5A2 +WIKIPW Nuclear Receptors NR5A1 +WIKIPW Nuclear Receptors NR3C1 +WIKIPW Nuclear Receptors NR4A1 +WIKIPW Nuclear Receptors HNF4A +WIKIPW Nuclear Receptors AR +WIKIPW Nuclear Receptors ROR1 +WIKIPW Nuclear Receptors NR4A2 +WIKIPW Nuclear Receptors PGR +WIKIPW Nuclear Receptors PPARA +WIKIPW Nuclear Receptors PPARD +WIKIPW Nuclear Receptors PPARG +WIKIPW Nuclear Receptors RARA +WIKIPW Nuclear Receptors RARB +WIKIPW Nuclear Receptors RARG +WIKIPW Nuclear Receptors RORA +WIKIPW Nuclear Receptors RORC +WIKIPW Nuclear Receptors RXRA +WIKIPW Nuclear Receptors RXRB +WIKIPW Nuclear Receptors RXRG +WIKIPW Nuclear Receptors NR2F1 +WIKIPW Nuclear Receptors NR2F2 +WIKIPW Nuclear Receptors THRA +WIKIPW Nuclear Receptors THRB +WIKIPW Nuclear Receptors NR2E1 +WIKIPW Nuclear Receptors NR2C2 +WIKIPW Nuclear Receptors NR1H2 +WIKIPW Nuclear Receptors VDR +WIKIPW Nuclear Receptors NR1I2 +WIKIPW Nuclear Receptors NR1I3 +WIKIPW Nuclear Receptors NR1D2 +WIKIPW Folic Acid Network TXNRD2 +WIKIPW Folic Acid Network ALOX5 +WIKIPW Folic Acid Network GPX6 +WIKIPW Folic Acid Network GPX1 +WIKIPW Folic Acid Network GPX2 +WIKIPW Folic Acid Network GPX3 +WIKIPW Folic Acid Network GPX4 +WIKIPW Folic Acid Network GSR +WIKIPW Folic Acid Network FMN1 +WIKIPW Folic Acid Network MTHFR +WIKIPW Folic Acid Network MTR +WIKIPW Folic Acid Network SEPX1 +WIKIPW Folic Acid Network PNPO +WIKIPW Folic Acid Network PTGDS +WIKIPW Folic Acid Network PTGIS +WIKIPW Folic Acid Network SELK +WIKIPW Folic Acid Network SEPW1 +WIKIPW Folic Acid Network SOD1 +WIKIPW Folic Acid Network TCN1 +WIKIPW Folic Acid Network TXN +WIKIPW Folic Acid Network TXNRD1 +WIKIPW Folic Acid Network XDH +WIKIPW Folic Acid Network CAT +WIKIPW Folic Acid Network KMO +WIKIPW Folic Acid Network CBS +WIKIPW Folic Acid Network FADS2 +WIKIPW Folic Acid Network PTGES +WIKIPW Cell cycle LOC100133012 +WIKIPW Cell cycle HDAC5 +WIKIPW Cell cycle CDK2 +WIKIPW Cell cycle CDK4 +WIKIPW Cell cycle CDK6 +WIKIPW Cell cycle CDKN1A +WIKIPW Cell cycle CDKN1B +WIKIPW Cell cycle CDKN2A +WIKIPW Cell cycle MAD2L2 +WIKIPW Cell cycle DBF4 +WIKIPW Cell cycle CHEK1 +WIKIPW Cell cycle TBC1D8 +WIKIPW Cell cycle CHEK2 +WIKIPW Cell cycle GADD45A +WIKIPW Cell cycle E2F1 +WIKIPW Cell cycle E2F2 +WIKIPW Cell cycle E2F3 +WIKIPW Cell cycle E2F4 +WIKIPW Cell cycle E2F5 +WIKIPW Cell cycle E2F6 +WIKIPW Cell cycle EP300 +WIKIPW Cell cycle MPEG1 +WIKIPW Cell cycle ORC6L +WIKIPW Cell cycle ORC3L +WIKIPW Cell cycle ABL1 +WIKIPW Cell cycle GSK3B +WIKIPW Cell cycle HDAC1 +WIKIPW Cell cycle HDAC2 +WIKIPW Cell cycle MAD2L1 +WIKIPW Cell cycle SMAD3 +WIKIPW Cell cycle SMAD4 +WIKIPW Cell cycle MCM2 +WIKIPW Cell cycle MCM3 +WIKIPW Cell cycle MCM4 +WIKIPW Cell cycle MCM5 +WIKIPW Cell cycle MCM6 +WIKIPW Cell cycle MCM7 +WIKIPW Cell cycle MDM2 +WIKIPW Cell cycle ATM +WIKIPW Cell cycle ORC1L +WIKIPW Cell cycle ORC2L +WIKIPW Cell cycle ORC4L +WIKIPW Cell cycle ORC5L +WIKIPW Cell cycle PCNA +WIKIPW Cell cycle HDAC7 +WIKIPW Cell cycle PLK1 +WIKIPW Cell cycle HDAC8 +WIKIPW Cell cycle PRKDC +WIKIPW Cell cycle RB1 +WIKIPW Cell cycle RBL1 +WIKIPW Cell cycle SKP2 +WIKIPW Cell cycle LOC651610 +WIKIPW Cell cycle BUB1 +WIKIPW Cell cycle BUB1B +WIKIPW Cell cycle TFDP1 +WIKIPW Cell cycle TGFB1 +WIKIPW Cell cycle TP53 +WIKIPW Cell cycle LOC731751 +WIKIPW Cell cycle WEE1 +WIKIPW Cell cycle YWHAG +WIKIPW Cell cycle SMC1A +WIKIPW Cell cycle CDC7 +WIKIPW Cell cycle CDC45L +WIKIPW Cell cycle MAD1L1 +WIKIPW Cell cycle CCNB3 +WIKIPW Cell cycle CDC14B +WIKIPW Cell cycle CDC14A +WIKIPW Cell cycle HDAC3 +WIKIPW Cell cycle CCNA2 +WIKIPW Cell cycle CCNA1 +WIKIPW Cell cycle CCNB1 +WIKIPW Cell cycle CCND2 +WIKIPW Cell cycle CCND3 +WIKIPW Cell cycle CCNE1 +WIKIPW Cell cycle CCNH +WIKIPW Cell cycle PKMYT1 +WIKIPW Cell cycle CCNB2 +WIKIPW Cell cycle CCNE2 +WIKIPW Cell cycle BUB3 +WIKIPW Cell cycle PTTG1 +WIKIPW Cell cycle ESPL1 +WIKIPW Cell cycle HDAC4 +WIKIPW Cell cycle CDC2 +WIKIPW Cell cycle CDC6 +WIKIPW Cell cycle CDC20 +WIKIPW Cell cycle CDC25A +WIKIPW Cell cycle CDC25B +WIKIPW Cell cycle CDC25C +WIKIPW Cell cycle CDH1 +WIKIPW Proteasome Degradation HIST1H2AE +WIKIPW Proteasome Degradation H2AFX +WIKIPW Proteasome Degradation H2AFZ +WIKIPW Proteasome Degradation HLA-A +WIKIPW Proteasome Degradation HLA-B +WIKIPW Proteasome Degradation HLA-C +WIKIPW Proteasome Degradation HLA-E +WIKIPW Proteasome Degradation HLA-F +WIKIPW Proteasome Degradation HLA-G +WIKIPW Proteasome Degradation IFNG +WIKIPW Proteasome Degradation NEDD4 +WIKIPW Proteasome Degradation PSMA1 +WIKIPW Proteasome Degradation PSMA2 +WIKIPW Proteasome Degradation PSMA3 +WIKIPW Proteasome Degradation PSMA4 +WIKIPW Proteasome Degradation PSMA5 +WIKIPW Proteasome Degradation PSMA6 +WIKIPW Proteasome Degradation PSMA7 +WIKIPW Proteasome Degradation PSMB1 +WIKIPW Proteasome Degradation PSMB2 +WIKIPW Proteasome Degradation PSMB3 +WIKIPW Proteasome Degradation PSMB4 +WIKIPW Proteasome Degradation PSMB5 +WIKIPW Proteasome Degradation PSMB6 +WIKIPW Proteasome Degradation PSMB7 +WIKIPW Proteasome Degradation PSMB8 +WIKIPW Proteasome Degradation PSMB9 +WIKIPW Proteasome Degradation PSMB10 +WIKIPW Proteasome Degradation PSMC1 +WIKIPW Proteasome Degradation PSMC2 +WIKIPW Proteasome Degradation PSMC3 +WIKIPW Proteasome Degradation PSMC4 +WIKIPW Proteasome Degradation PSMC5 +WIKIPW Proteasome Degradation PSMC6 +WIKIPW Proteasome Degradation PSMD1 +WIKIPW Proteasome Degradation PSMD2 +WIKIPW Proteasome Degradation PSMD3 +WIKIPW Proteasome Degradation PSMD4 +WIKIPW Proteasome Degradation PSMD5 +WIKIPW Proteasome Degradation PSMD7 +WIKIPW Proteasome Degradation PSMD8 +WIKIPW Proteasome Degradation PSMD9 +WIKIPW Proteasome Degradation PSMD10 +WIKIPW Proteasome Degradation PSMD11 +WIKIPW Proteasome Degradation PSMD12 +WIKIPW Proteasome Degradation PSMD13 +WIKIPW Proteasome Degradation PSME1 +WIKIPW Proteasome Degradation PSME2 +WIKIPW Proteasome Degradation RPN1 +WIKIPW Proteasome Degradation RPN2 +WIKIPW Proteasome Degradation LOC652826 +WIKIPW Proteasome Degradation UBB +WIKIPW Proteasome Degradation UBC +WIKIPW Proteasome Degradation UBA1 +WIKIPW Proteasome Degradation UBA7 +WIKIPW Proteasome Degradation UBE2B +WIKIPW Proteasome Degradation UBE2D1 +WIKIPW Proteasome Degradation UBE2D2 +WIKIPW Proteasome Degradation UBE2D3 +WIKIPW Proteasome Degradation UCHL1 +WIKIPW Proteasome Degradation UCHL3 +WIKIPW Proteasome Degradation HIST1H2AB +WIKIPW Proteasome Degradation PSMD6 +WIKIPW Integrin-mediated cell adhesion PAK4 +WIKIPW Integrin-mediated cell adhesion VAV3 +WIKIPW Integrin-mediated cell adhesion SORBS1 +WIKIPW Integrin-mediated cell adhesion CAPN9 +WIKIPW Integrin-mediated cell adhesion CAPN11 +WIKIPW Integrin-mediated cell adhesion CAPN10 +WIKIPW Integrin-mediated cell adhesion CRK +WIKIPW Integrin-mediated cell adhesion CSK +WIKIPW Integrin-mediated cell adhesion DOCK1 +WIKIPW Integrin-mediated cell adhesion AKT1 +WIKIPW Integrin-mediated cell adhesion AKT2 +WIKIPW Integrin-mediated cell adhesion ITGA11 +WIKIPW Integrin-mediated cell adhesion CAPN7 +WIKIPW Integrin-mediated cell adhesion FYN +WIKIPW Integrin-mediated cell adhesion GRB2 +WIKIPW Integrin-mediated cell adhesion RAPGEF1 +WIKIPW Integrin-mediated cell adhesion HRAS +WIKIPW Integrin-mediated cell adhesion ILK +WIKIPW Integrin-mediated cell adhesion ITGA6 +WIKIPW Integrin-mediated cell adhesion ITGA1 +WIKIPW Integrin-mediated cell adhesion ITGA2 +WIKIPW Integrin-mediated cell adhesion ITGA2B +WIKIPW Integrin-mediated cell adhesion ITGA3 +WIKIPW Integrin-mediated cell adhesion ITGA4 +WIKIPW Integrin-mediated cell adhesion ITGA5 +WIKIPW Integrin-mediated cell adhesion ITGA7 +WIKIPW Integrin-mediated cell adhesion ITGA9 +WIKIPW Integrin-mediated cell adhesion ITGAD +WIKIPW Integrin-mediated cell adhesion ITGAE +WIKIPW Integrin-mediated cell adhesion ITGAL +WIKIPW Integrin-mediated cell adhesion ITGAM +WIKIPW Integrin-mediated cell adhesion ITGAV +WIKIPW Integrin-mediated cell adhesion ITGAX +WIKIPW Integrin-mediated cell adhesion ITGB1 +WIKIPW Integrin-mediated cell adhesion ITGB2 +WIKIPW Integrin-mediated cell adhesion ARAF +WIKIPW Integrin-mediated cell adhesion ITGB3 +WIKIPW Integrin-mediated cell adhesion ITGB4 +WIKIPW Integrin-mediated cell adhesion ITGB5 +WIKIPW Integrin-mediated cell adhesion ITGB6 +WIKIPW Integrin-mediated cell adhesion ITGB7 +WIKIPW Integrin-mediated cell adhesion ITGB8 +WIKIPW Integrin-mediated cell adhesion PAK1 +WIKIPW Integrin-mediated cell adhesion PAK2 +WIKIPW Integrin-mediated cell adhesion PAK3 +WIKIPW Integrin-mediated cell adhesion PDPK1 +WIKIPW Integrin-mediated cell adhesion PIK3R2 +WIKIPW Integrin-mediated cell adhesion SHC3 +WIKIPW Integrin-mediated cell adhesion MAPK1 +WIKIPW Integrin-mediated cell adhesion MAPK4 +WIKIPW Integrin-mediated cell adhesion MAPK6 +WIKIPW Integrin-mediated cell adhesion MAPK7 +WIKIPW Integrin-mediated cell adhesion MAPK10 +WIKIPW Integrin-mediated cell adhesion MAP2K1 +WIKIPW Integrin-mediated cell adhesion MAP2K2 +WIKIPW Integrin-mediated cell adhesion MAP2K3 +WIKIPW Integrin-mediated cell adhesion MAP2K5 +WIKIPW Integrin-mediated cell adhesion MAP2K6 +WIKIPW Integrin-mediated cell adhesion PAK6 +WIKIPW Integrin-mediated cell adhesion PTK2 +WIKIPW Integrin-mediated cell adhesion PXN +WIKIPW Integrin-mediated cell adhesion RAC1 +WIKIPW Integrin-mediated cell adhesion RAC2 +WIKIPW Integrin-mediated cell adhesion RAC3 +WIKIPW Integrin-mediated cell adhesion RAF1 +WIKIPW Integrin-mediated cell adhesion RAP1A +WIKIPW Integrin-mediated cell adhesion RAP1B +WIKIPW Integrin-mediated cell adhesion RHO +WIKIPW Integrin-mediated cell adhesion ROCK1 +WIKIPW Integrin-mediated cell adhesion MAPK12 +WIKIPW Integrin-mediated cell adhesion SEPP1 +WIKIPW Integrin-mediated cell adhesion SHC1 +WIKIPW Integrin-mediated cell adhesion SOS1 +WIKIPW Integrin-mediated cell adhesion SRC +WIKIPW Integrin-mediated cell adhesion BRAF +WIKIPW Integrin-mediated cell adhesion TLN1 +WIKIPW Integrin-mediated cell adhesion TNS1 +WIKIPW Integrin-mediated cell adhesion CAPN5 +WIKIPW Integrin-mediated cell adhesion LOC727758 +WIKIPW Integrin-mediated cell adhesion VASP +WIKIPW Integrin-mediated cell adhesion VAV2 +WIKIPW Integrin-mediated cell adhesion VCL +WIKIPW Integrin-mediated cell adhesion ZYX +WIKIPW Integrin-mediated cell adhesion CAPN1 +WIKIPW Integrin-mediated cell adhesion CAPN2 +WIKIPW Integrin-mediated cell adhesion CAPN3 +WIKIPW Integrin-mediated cell adhesion CAPNS1 +WIKIPW Integrin-mediated cell adhesion CAPN6 +WIKIPW Integrin-mediated cell adhesion ITGA10 +WIKIPW Integrin-mediated cell adhesion ITGA8 +WIKIPW Integrin-mediated cell adhesion MYLK2 +WIKIPW Integrin-mediated cell adhesion CAV1 +WIKIPW Integrin-mediated cell adhesion CAV2 +WIKIPW Integrin-mediated cell adhesion CAV3 +WIKIPW Integrin-mediated cell adhesion ARHGEF7 +WIKIPW Integrin-mediated cell adhesion ROCK2 +WIKIPW Integrin-mediated cell adhesion BCAR1 +WIKIPW Integrin-mediated cell adhesion GIT2 +WIKIPW Integrin-mediated cell adhesion CDC42 +WIKIPW Homologous recombination POLD3 +WIKIPW Homologous recombination RAD54B +WIKIPW Homologous recombination MRE11A +WIKIPW Homologous recombination NBN +WIKIPW Homologous recombination ATM +WIKIPW Homologous recombination POLD1 +WIKIPW Homologous recombination POLD2 +WIKIPW Homologous recombination POLD4 +WIKIPW Homologous recombination RAD51 +WIKIPW Homologous recombination RAD52 +WIKIPW Homologous recombination RPA1 +WIKIPW Homologous recombination LOC651610 +WIKIPW Homologous recombination BRCA2 +WIKIPW IL-1 Signaling Pathway IL1A +WIKIPW IL-1 Signaling Pathway IL1B +WIKIPW IL-1 Signaling Pathway IL1R1 +WIKIPW IL-1 Signaling Pathway IL1RAP +WIKIPW IL-1 Signaling Pathway IL1RN +WIKIPW IL-1 Signaling Pathway IRAK1 +WIKIPW IL-1 Signaling Pathway IRAK2 +WIKIPW IL-1 Signaling Pathway MYD88 +WIKIPW IL-1 Signaling Pathway IRAK4 +WIKIPW IL-1 Signaling Pathway TRAF6 +WIKIPW IL-1 Signaling Pathway IL1R2 +WIKIPW Cholesterol Biosynthesis CYP51A1 +WIKIPW Cholesterol Biosynthesis DHCR7 +WIKIPW Cholesterol Biosynthesis FDFT1 +WIKIPW Cholesterol Biosynthesis FDPS +WIKIPW Cholesterol Biosynthesis HMGCR +WIKIPW Cholesterol Biosynthesis HMGCS1 +WIKIPW Cholesterol Biosynthesis IDI1 +WIKIPW Cholesterol Biosynthesis LSS +WIKIPW Cholesterol Biosynthesis MVD +WIKIPW Cholesterol Biosynthesis MVK +WIKIPW Cholesterol Biosynthesis NSDHL +WIKIPW Cholesterol Biosynthesis SC4MOL +WIKIPW Cholesterol Biosynthesis SC5DL +WIKIPW Cholesterol Biosynthesis SQLE +WIKIPW IL-7 Signaling Pathway CDK2 +WIKIPW IL-7 Signaling Pathway CDK4 +WIKIPW IL-7 Signaling Pathway STAM2 +WIKIPW IL-7 Signaling Pathway CLTC +WIKIPW IL-7 Signaling Pathway AKT1 +WIKIPW IL-7 Signaling Pathway PTK2B +WIKIPW IL-7 Signaling Pathway FOXO1 +WIKIPW IL-7 Signaling Pathway FOXO3 +WIKIPW IL-7 Signaling Pathway FYN +WIKIPW IL-7 Signaling Pathway GRB2 +WIKIPW IL-7 Signaling Pathway GSK3B +WIKIPW IL-7 Signaling Pathway HRAS +WIKIPW IL-7 Signaling Pathway IL2RG +WIKIPW IL-7 Signaling Pathway IL7R +WIKIPW IL-7 Signaling Pathway IRF1 +WIKIPW IL-7 Signaling Pathway IRS1 +WIKIPW IL-7 Signaling Pathway JAK1 +WIKIPW IL-7 Signaling Pathway JAK3 +WIKIPW IL-7 Signaling Pathway LYN +WIKIPW IL-7 Signaling Pathway MCL1 +WIKIPW IL-7 Signaling Pathway MUC1 +WIKIPW IL-7 Signaling Pathway PIK3R1 +WIKIPW IL-7 Signaling Pathway MAPK1 +WIKIPW IL-7 Signaling Pathway MAPK3 +WIKIPW IL-7 Signaling Pathway MAP2K1 +WIKIPW IL-7 Signaling Pathway MAP2K2 +WIKIPW IL-7 Signaling Pathway BAD +WIKIPW IL-7 Signaling Pathway BAX +WIKIPW IL-7 Signaling Pathway RAF1 +WIKIPW IL-7 Signaling Pathway RB1 +WIKIPW IL-7 Signaling Pathway BLK +WIKIPW IL-7 Signaling Pathway SHC1 +WIKIPW IL-7 Signaling Pathway SOS1 +WIKIPW IL-7 Signaling Pathway STAT1 +WIKIPW IL-7 Signaling Pathway STAT3 +WIKIPW IL-7 Signaling Pathway STAT5A +WIKIPW IL-7 Signaling Pathway STAT5B +WIKIPW IL-7 Signaling Pathway STAM +WIKIPW IL-7 Signaling Pathway IRS2 +WIKIPW IL-7 Signaling Pathway CBL +WIKIPW IL-7 Signaling Pathway CBLB +WIKIPW IL-7 Signaling Pathway CCNA2 +WIKIPW IL-7 Signaling Pathway CCND2 +WIKIPW Fatty Acid Omega Oxidation ADH1B +WIKIPW Fatty Acid Omega Oxidation ADH4 +WIKIPW Fatty Acid Omega Oxidation ADH6 +WIKIPW Fatty Acid Omega Oxidation ADH7 +WIKIPW Fatty Acid Omega Oxidation CYP1A1 +WIKIPW Fatty Acid Omega Oxidation CYP1A2 +WIKIPW Fatty Acid Omega Oxidation CYP2A6 +WIKIPW Fatty Acid Omega Oxidation CYP2D6 +WIKIPW Fatty Acid Omega Oxidation CYP2E1 +WIKIPW Fatty Acid Omega Oxidation CYP3A4 +WIKIPW Fatty Acid Omega Oxidation CYP4A11 +WIKIPW Fatty Acid Omega Oxidation ALDH1A1 +WIKIPW Fatty Acid Omega Oxidation ALDH2 +WIKIPW IL-9 Signaling Pathway AKT1 +WIKIPW IL-9 Signaling Pathway GRB2 +WIKIPW IL-9 Signaling Pathway IL2RG +WIKIPW IL-9 Signaling Pathway IL9 +WIKIPW IL-9 Signaling Pathway IL9R +WIKIPW IL-9 Signaling Pathway IRS1 +WIKIPW IL-9 Signaling Pathway JAK1 +WIKIPW IL-9 Signaling Pathway JAK3 +WIKIPW IL-9 Signaling Pathway PIK3R1 +WIKIPW IL-9 Signaling Pathway MAPK1 +WIKIPW IL-9 Signaling Pathway MAPK3 +WIKIPW IL-9 Signaling Pathway MAP2K1 +WIKIPW IL-9 Signaling Pathway MAP2K2 +WIKIPW IL-9 Signaling Pathway PTPN11 +WIKIPW IL-9 Signaling Pathway SHC1 +WIKIPW IL-9 Signaling Pathway STAT1 +WIKIPW IL-9 Signaling Pathway STAT3 +WIKIPW IL-9 Signaling Pathway STAT5A +WIKIPW IL-9 Signaling Pathway STAT5B +WIKIPW IL-9 Signaling Pathway TYK2 +WIKIPW IL-9 Signaling Pathway VCP +WIKIPW IL-9 Signaling Pathway IRS2 +WIKIPW IL-9 Signaling Pathway SOCS3 +WIKIPW Irinotecan Pathway ABCC2 +WIKIPW Irinotecan Pathway CYP3A4 +WIKIPW Irinotecan Pathway CYP3A5 +WIKIPW Irinotecan Pathway ABCC1 +WIKIPW Irinotecan Pathway UGT1A10 +WIKIPW Irinotecan Pathway UGT1A8 +WIKIPW Irinotecan Pathway UGT1A7 +WIKIPW Irinotecan Pathway UGT1A6 +WIKIPW Irinotecan Pathway UGT1A5 +WIKIPW Irinotecan Pathway UGT1A9 +WIKIPW Irinotecan Pathway UGT1A4 +WIKIPW Irinotecan Pathway UGT1A1 +WIKIPW Irinotecan Pathway UGT1A3 +WIKIPW Irinotecan Pathway BCHE +WIKIPW Irinotecan Pathway CES2 +WIKIPW Irinotecan Pathway ABCG2 +WIKIPW B Cell Receptor Signaling Pathway BCL2L11 +WIKIPW B Cell Receptor Signaling Pathway ARPC5 +WIKIPW B Cell Receptor Signaling Pathway ARPC4 +WIKIPW B Cell Receptor Signaling Pathway ARPC3 +WIKIPW B Cell Receptor Signaling Pathway ARPC1B +WIKIPW B Cell Receptor Signaling Pathway ACTR3 +WIKIPW B Cell Receptor Signaling Pathway ACTR2 +WIKIPW B Cell Receptor Signaling Pathway ARPC2 +WIKIPW B Cell Receptor Signaling Pathway CDK2 +WIKIPW B Cell Receptor Signaling Pathway CDK4 +WIKIPW B Cell Receptor Signaling Pathway CDK6 +WIKIPW B Cell Receptor Signaling Pathway CDK7 +WIKIPW B Cell Receptor Signaling Pathway MAP4K1 +WIKIPW B Cell Receptor Signaling Pathway CHUK +WIKIPW B Cell Receptor Signaling Pathway PIK3AP1 +WIKIPW B Cell Receptor Signaling Pathway CMTM3 +WIKIPW B Cell Receptor Signaling Pathway CR2 +WIKIPW B Cell Receptor Signaling Pathway CREB1 +WIKIPW B Cell Receptor Signaling Pathway ATF2 +WIKIPW B Cell Receptor Signaling Pathway CRK +WIKIPW B Cell Receptor Signaling Pathway CRKL +WIKIPW B Cell Receptor Signaling Pathway MAPK14 +WIKIPW B Cell Receptor Signaling Pathway CSK +WIKIPW B Cell Receptor Signaling Pathway CTNNB1 +WIKIPW B Cell Receptor Signaling Pathway DOK1 +WIKIPW B Cell Receptor Signaling Pathway DUSP4 +WIKIPW B Cell Receptor Signaling Pathway DUSP6 +WIKIPW B Cell Receptor Signaling Pathway ELK1 +WIKIPW B Cell Receptor Signaling Pathway AKT1 +WIKIPW B Cell Receptor Signaling Pathway PTK2B +WIKIPW B Cell Receptor Signaling Pathway FCGR2B +WIKIPW B Cell Receptor Signaling Pathway FOXO1 +WIKIPW B Cell Receptor Signaling Pathway PIP5K1C +WIKIPW B Cell Receptor Signaling Pathway FYN +WIKIPW B Cell Receptor Signaling Pathway GAB1 +WIKIPW B Cell Receptor Signaling Pathway RASGRP3 +WIKIPW B Cell Receptor Signaling Pathway TTLL3 +WIKIPW B Cell Receptor Signaling Pathway STAP1 +WIKIPW B Cell Receptor Signaling Pathway PTPN18 +WIKIPW B Cell Receptor Signaling Pathway DAPP1 +WIKIPW B Cell Receptor Signaling Pathway GRB2 +WIKIPW B Cell Receptor Signaling Pathway RAPGEF1 +WIKIPW B Cell Receptor Signaling Pathway GSK3A +WIKIPW B Cell Receptor Signaling Pathway GSK3B +WIKIPW B Cell Receptor Signaling Pathway GTF2I +WIKIPW B Cell Receptor Signaling Pathway BLNK +WIKIPW B Cell Receptor Signaling Pathway PILRB +WIKIPW B Cell Receptor Signaling Pathway HCK +WIKIPW B Cell Receptor Signaling Pathway HCLS1 +WIKIPW B Cell Receptor Signaling Pathway HNRNPK +WIKIPW B Cell Receptor Signaling Pathway IKBKB +WIKIPW B Cell Receptor Signaling Pathway ITK +WIKIPW B Cell Receptor Signaling Pathway ITPR1 +WIKIPW B Cell Receptor Signaling Pathway ITPR2 +WIKIPW B Cell Receptor Signaling Pathway JUN +WIKIPW B Cell Receptor Signaling Pathway RHOA +WIKIPW B Cell Receptor Signaling Pathway LCK +WIKIPW B Cell Receptor Signaling Pathway LCP2 +WIKIPW B Cell Receptor Signaling Pathway LYN +WIKIPW B Cell Receptor Signaling Pathway NCK1 +WIKIPW B Cell Receptor Signaling Pathway NEDD9 +WIKIPW B Cell Receptor Signaling Pathway NFATC1 +WIKIPW B Cell Receptor Signaling Pathway NFATC2 +WIKIPW B Cell Receptor Signaling Pathway NFATC3 +WIKIPW B Cell Receptor Signaling Pathway NFKBIA +WIKIPW B Cell Receptor Signaling Pathway ATP2B4 +WIKIPW B Cell Receptor Signaling Pathway CHST15 +WIKIPW B Cell Receptor Signaling Pathway HDAC7 +WIKIPW B Cell Receptor Signaling Pathway PDK2 +WIKIPW B Cell Receptor Signaling Pathway PDPK1 +WIKIPW B Cell Receptor Signaling Pathway PIK3CG +WIKIPW B Cell Receptor Signaling Pathway PIK3R1 +WIKIPW B Cell Receptor Signaling Pathway PIK3R2 +WIKIPW B Cell Receptor Signaling Pathway PIP4K2A +WIKIPW B Cell Receptor Signaling Pathway PLCG1 +WIKIPW B Cell Receptor Signaling Pathway PLCG2 +WIKIPW B Cell Receptor Signaling Pathway CYCS +WIKIPW B Cell Receptor Signaling Pathway LIME1 +WIKIPW B Cell Receptor Signaling Pathway BANK1 +WIKIPW B Cell Receptor Signaling Pathway PPP3CA +WIKIPW B Cell Receptor Signaling Pathway PPP3CB +WIKIPW B Cell Receptor Signaling Pathway PPP3R1 +WIKIPW B Cell Receptor Signaling Pathway PRKCB +WIKIPW B Cell Receptor Signaling Pathway PRKCD +WIKIPW B Cell Receptor Signaling Pathway PRKCE +WIKIPW B Cell Receptor Signaling Pathway PRKD1 +WIKIPW B Cell Receptor Signaling Pathway PRKCQ +WIKIPW B Cell Receptor Signaling Pathway MAPK1 +WIKIPW B Cell Receptor Signaling Pathway MAPK3 +WIKIPW B Cell Receptor Signaling Pathway MAPK4 +WIKIPW B Cell Receptor Signaling Pathway MAPK8 +WIKIPW B Cell Receptor Signaling Pathway MAP2K1 +WIKIPW B Cell Receptor Signaling Pathway MAP2K2 +WIKIPW B Cell Receptor Signaling Pathway PTK2 +WIKIPW B Cell Receptor Signaling Pathway PTPN6 +WIKIPW B Cell Receptor Signaling Pathway PTPN11 +WIKIPW B Cell Receptor Signaling Pathway PTPRC +WIKIPW B Cell Receptor Signaling Pathway BAX +WIKIPW B Cell Receptor Signaling Pathway RAF1 +WIKIPW B Cell Receptor Signaling Pathway RAP2A +WIKIPW B Cell Receptor Signaling Pathway RASA1 +WIKIPW B Cell Receptor Signaling Pathway RB1 +WIKIPW B Cell Receptor Signaling Pathway PLEKHA1 +WIKIPW B Cell Receptor Signaling Pathway PLEKHA2 +WIKIPW B Cell Receptor Signaling Pathway BCL2 +WIKIPW B Cell Receptor Signaling Pathway REL +WIKIPW B Cell Receptor Signaling Pathway RELA +WIKIPW B Cell Receptor Signaling Pathway BCL6 +WIKIPW B Cell Receptor Signaling Pathway RPS6 +WIKIPW B Cell Receptor Signaling Pathway RPS6KA1 +WIKIPW B Cell Receptor Signaling Pathway RPS6KB1 +WIKIPW B Cell Receptor Signaling Pathway BLK +WIKIPW B Cell Receptor Signaling Pathway SH3BP2 +WIKIPW B Cell Receptor Signaling Pathway SHC1 +WIKIPW B Cell Receptor Signaling Pathway LOC653888 +WIKIPW B Cell Receptor Signaling Pathway SOS1 +WIKIPW B Cell Receptor Signaling Pathway SOS2 +WIKIPW B Cell Receptor Signaling Pathway BRAF +WIKIPW B Cell Receptor Signaling Pathway STAT1 +WIKIPW B Cell Receptor Signaling Pathway STAT3 +WIKIPW B Cell Receptor Signaling Pathway SYK +WIKIPW B Cell Receptor Signaling Pathway MAP3K7 +WIKIPW B Cell Receptor Signaling Pathway BTK +WIKIPW B Cell Receptor Signaling Pathway TEC +WIKIPW B Cell Receptor Signaling Pathway VAV1 +WIKIPW B Cell Receptor Signaling Pathway VAV2 +WIKIPW B Cell Receptor Signaling Pathway WAS +WIKIPW B Cell Receptor Signaling Pathway LAT2 +WIKIPW B Cell Receptor Signaling Pathway ZAP70 +WIKIPW B Cell Receptor Signaling Pathway PIP4K2C +WIKIPW B Cell Receptor Signaling Pathway DOK3 +WIKIPW B Cell Receptor Signaling Pathway PIP5K1A +WIKIPW B Cell Receptor Signaling Pathway PIP5K1B +WIKIPW B Cell Receptor Signaling Pathway PIP4K2B +WIKIPW B Cell Receptor Signaling Pathway CASP7 +WIKIPW B Cell Receptor Signaling Pathway SLA2 +WIKIPW B Cell Receptor Signaling Pathway CASP9 +WIKIPW B Cell Receptor Signaling Pathway CARD11 +WIKIPW B Cell Receptor Signaling Pathway IKBKG +WIKIPW B Cell Receptor Signaling Pathway CBL +WIKIPW B Cell Receptor Signaling Pathway CBLB +WIKIPW B Cell Receptor Signaling Pathway CCNA2 +WIKIPW B Cell Receptor Signaling Pathway BCL10 +WIKIPW B Cell Receptor Signaling Pathway CCND2 +WIKIPW B Cell Receptor Signaling Pathway CCND3 +WIKIPW B Cell Receptor Signaling Pathway CCNE1 +WIKIPW B Cell Receptor Signaling Pathway FCGR2C +WIKIPW B Cell Receptor Signaling Pathway CD5 +WIKIPW B Cell Receptor Signaling Pathway MAPKAPK2 +WIKIPW B Cell Receptor Signaling Pathway CD19 +WIKIPW B Cell Receptor Signaling Pathway CD22 +WIKIPW B Cell Receptor Signaling Pathway BCAR1 +WIKIPW B Cell Receptor Signaling Pathway CD72 +WIKIPW B Cell Receptor Signaling Pathway CD79A +WIKIPW B Cell Receptor Signaling Pathway CD79B +WIKIPW B Cell Receptor Signaling Pathway CD81 +WIKIPW B Cell Receptor Signaling Pathway GAB2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway HDAC6 +WIKIPW TNF-alpha/NF-kB Signaling Pathway LRPPRC +WIKIPW TNF-alpha/NF-kB Signaling Pathway DCAF7 +WIKIPW TNF-alpha/NF-kB Signaling Pathway AKAP8 +WIKIPW TNF-alpha/NF-kB Signaling Pathway TRAIP +WIKIPW TNF-alpha/NF-kB Signaling Pathway TNIP1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway GNB2L1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PIAS3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway MAP3K7IP1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway MAP3K2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway IQGAP2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PPP1R13L +WIKIPW TNF-alpha/NF-kB Signaling Pathway CD3EAP +WIKIPW TNF-alpha/NF-kB Signaling Pathway PAPOLA +WIKIPW TNF-alpha/NF-kB Signaling Pathway YWHAQ +WIKIPW TNF-alpha/NF-kB Signaling Pathway RIPK3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway FAF1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CDC37 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CHUK +WIKIPW TNF-alpha/NF-kB Signaling Pathway MAP3K8 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CREBBP +WIKIPW TNF-alpha/NF-kB Signaling Pathway CSNK2A1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CSNK2A2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CSNK2B +WIKIPW TNF-alpha/NF-kB Signaling Pathway NLRP4 +WIKIPW TNF-alpha/NF-kB Signaling Pathway COMMD1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CYLD +WIKIPW TNF-alpha/NF-kB Signaling Pathway DAP +WIKIPW TNF-alpha/NF-kB Signaling Pathway DDX3X +WIKIPW TNF-alpha/NF-kB Signaling Pathway TXLNA +WIKIPW TNF-alpha/NF-kB Signaling Pathway MARK2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway AKT1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway AKT2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway FBL +WIKIPW TNF-alpha/NF-kB Signaling Pathway FANCD2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway UNC5CL +WIKIPW TNF-alpha/NF-kB Signaling Pathway FKBP5 +WIKIPW TNF-alpha/NF-kB Signaling Pathway MAP3K7IP2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway FLNA +WIKIPW TNF-alpha/NF-kB Signaling Pathway FBXW11 +WIKIPW TNF-alpha/NF-kB Signaling Pathway ZIM2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway KPNA6 +WIKIPW TNF-alpha/NF-kB Signaling Pathway ALPL +WIKIPW TNF-alpha/NF-kB Signaling Pathway GAB1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway MAP3K7IP3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway POLR1A +WIKIPW TNF-alpha/NF-kB Signaling Pathway TRPC4AP +WIKIPW TNF-alpha/NF-kB Signaling Pathway GLG1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway NKIRAS2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway NKIRAS1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway TBK1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway GSK3B +WIKIPW TNF-alpha/NF-kB Signaling Pathway GTF2I +WIKIPW TNF-alpha/NF-kB Signaling Pathway HDAC1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway HDAC2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway BIRC2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway BIRC3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway HSPB1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway HSP90AA1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway HSP90AB1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway IKBKB +WIKIPW TNF-alpha/NF-kB Signaling Pathway KCNQ1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway KPNA2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway KPNA3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway KTN1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway MCC +WIKIPW TNF-alpha/NF-kB Signaling Pathway MCM5 +WIKIPW TNF-alpha/NF-kB Signaling Pathway MCM7 +WIKIPW TNF-alpha/NF-kB Signaling Pathway MAP3K1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway MAP3K3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway MTIF2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway NFKB1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway NFKB2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway NFKBIA +WIKIPW TNF-alpha/NF-kB Signaling Pathway NFKBIB +WIKIPW TNF-alpha/NF-kB Signaling Pathway NFKBIE +WIKIPW TNF-alpha/NF-kB Signaling Pathway PEBP1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway POLR1D +WIKIPW TNF-alpha/NF-kB Signaling Pathway PDCD2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PEG3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PFDN2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PML +WIKIPW TNF-alpha/NF-kB Signaling Pathway POLR2H +WIKIPW TNF-alpha/NF-kB Signaling Pathway POLR2L +WIKIPW TNF-alpha/NF-kB Signaling Pathway RNF216 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PPP2CA +WIKIPW TNF-alpha/NF-kB Signaling Pathway PRKACA +WIKIPW TNF-alpha/NF-kB Signaling Pathway PKN1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PRKCZ +WIKIPW TNF-alpha/NF-kB Signaling Pathway MAP2K5 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PSMB5 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PSMC1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PSMC2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PSMC3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PSMD1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PSMD3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PSMD7 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PSMD12 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PSMD13 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PTK2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway KIAA1967 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PTPN11 +WIKIPW TNF-alpha/NF-kB Signaling Pathway LY6G5B +WIKIPW TNF-alpha/NF-kB Signaling Pathway REL +WIKIPW TNF-alpha/NF-kB Signaling Pathway RELA +WIKIPW TNF-alpha/NF-kB Signaling Pathway RELB +WIKIPW TNF-alpha/NF-kB Signaling Pathway DPF2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway BCL3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway RPL4 +WIKIPW TNF-alpha/NF-kB Signaling Pathway RPL6 +WIKIPW TNF-alpha/NF-kB Signaling Pathway RPL8 +WIKIPW TNF-alpha/NF-kB Signaling Pathway RPL30 +WIKIPW TNF-alpha/NF-kB Signaling Pathway RPS6KB1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway RPS11 +WIKIPW TNF-alpha/NF-kB Signaling Pathway RPS13 +WIKIPW TNF-alpha/NF-kB Signaling Pathway RNF25 +WIKIPW TNF-alpha/NF-kB Signaling Pathway NFKBIZ +WIKIPW TNF-alpha/NF-kB Signaling Pathway AZI2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway POLR1E +WIKIPW TNF-alpha/NF-kB Signaling Pathway SKP1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway SMARCA4 +WIKIPW TNF-alpha/NF-kB Signaling Pathway SMARCB1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway SMARCC1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway SMARCC2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway SMARCE1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway SRC +WIKIPW TNF-alpha/NF-kB Signaling Pathway STAT1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway TNF +WIKIPW TNF-alpha/NF-kB Signaling Pathway TNFAIP3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway TNFRSF1A +WIKIPW TNF-alpha/NF-kB Signaling Pathway TNFRSF1B +WIKIPW TNF-alpha/NF-kB Signaling Pathway NR2C2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway TRAF1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway TRAF2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway TRAF3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway TRAF5 +WIKIPW TNF-alpha/NF-kB Signaling Pathway TRAF6 +WIKIPW TNF-alpha/NF-kB Signaling Pathway UBE2D2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway UBE2D3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway UBE2I +WIKIPW TNF-alpha/NF-kB Signaling Pathway SUMO1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway YWHAB +WIKIPW TNF-alpha/NF-kB Signaling Pathway YWHAE +WIKIPW TNF-alpha/NF-kB Signaling Pathway YWHAG +WIKIPW TNF-alpha/NF-kB Signaling Pathway YWHAH +WIKIPW TNF-alpha/NF-kB Signaling Pathway YWHAZ +WIKIPW TNF-alpha/NF-kB Signaling Pathway ZFAND5 +WIKIPW TNF-alpha/NF-kB Signaling Pathway TNIP2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway USP11 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CAPN3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway HIST3H3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CASP2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CASP3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CASP7 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CASP8 +WIKIPW TNF-alpha/NF-kB Signaling Pathway POLR1B +WIKIPW TNF-alpha/NF-kB Signaling Pathway CASP10 +WIKIPW TNF-alpha/NF-kB Signaling Pathway NSMAF +WIKIPW TNF-alpha/NF-kB Signaling Pathway CUL1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway IKBKG +WIKIPW TNF-alpha/NF-kB Signaling Pathway IKBKAP +WIKIPW TNF-alpha/NF-kB Signaling Pathway COPS3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CAV1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway ACTL6A +WIKIPW TNF-alpha/NF-kB Signaling Pathway TRADD +WIKIPW TNF-alpha/NF-kB Signaling Pathway RIPK1 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CRADD +WIKIPW TNF-alpha/NF-kB Signaling Pathway RIPK2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway FADD +WIKIPW TNF-alpha/NF-kB Signaling Pathway TNFRSF11A +WIKIPW TNF-alpha/NF-kB Signaling Pathway CFLAR +WIKIPW TNF-alpha/NF-kB Signaling Pathway BTRC +WIKIPW TNF-alpha/NF-kB Signaling Pathway MAP3K14 +WIKIPW TNF-alpha/NF-kB Signaling Pathway USP2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway RPS6KA5 +WIKIPW TNF-alpha/NF-kB Signaling Pathway TIFA +WIKIPW TNF-alpha/NF-kB Signaling Pathway TNFRSF8 +WIKIPW TNF-alpha/NF-kB Signaling Pathway RASAL2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway BAG4 +WIKIPW TNF-alpha/NF-kB Signaling Pathway POLR1C +WIKIPW TNF-alpha/NF-kB Signaling Pathway TRAF4 +WIKIPW TNF-alpha/NF-kB Signaling Pathway IKBKE +WIKIPW TNF-alpha/NF-kB Signaling Pathway EIF4A3 +WIKIPW TNF-alpha/NF-kB Signaling Pathway PSMD6 +WIKIPW TNF-alpha/NF-kB Signaling Pathway G3BP2 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CDC34 +WIKIPW TNF-alpha/NF-kB Signaling Pathway CASP8AP2 +WIKIPW Adipogenesis MEF2B +WIKIPW Adipogenesis NR1H3 +WIKIPW Adipogenesis NAMPT +WIKIPW Adipogenesis CDKN1A +WIKIPW Adipogenesis ZMPSTE24 +WIKIPW Adipogenesis NCOA2 +WIKIPW Adipogenesis CEBPA +WIKIPW Adipogenesis CEBPB +WIKIPW Adipogenesis CEBPD +WIKIPW Adipogenesis AGPAT2 +WIKIPW Adipogenesis CUGBP1 +WIKIPW Adipogenesis PPARGC1A +WIKIPW Adipogenesis PLIN2 +WIKIPW Adipogenesis CNTFR +WIKIPW Adipogenesis KLF6 +WIKIPW Adipogenesis CREB1 +WIKIPW Adipogenesis CTNNB1 +WIKIPW Adipogenesis CYP26A1 +WIKIPW Adipogenesis GADD45A +WIKIPW Adipogenesis DDIT3 +WIKIPW Adipogenesis CFD +WIKIPW Adipogenesis AGT +WIKIPW Adipogenesis DVL1 +WIKIPW Adipogenesis E2F1 +WIKIPW Adipogenesis E2F4 +WIKIPW Adipogenesis EBF1 +WIKIPW Adipogenesis EGR2 +WIKIPW Adipogenesis AHR +WIKIPW Adipogenesis EPAS1 +WIKIPW Adipogenesis FOXC2 +WIKIPW Adipogenesis FOXO1 +WIKIPW Adipogenesis LPIN1 +WIKIPW Adipogenesis FRZB +WIKIPW Adipogenesis WWTR1 +WIKIPW Adipogenesis GATA2 +WIKIPW Adipogenesis GATA3 +WIKIPW Adipogenesis GATA4 +WIKIPW Adipogenesis BSCL2 +WIKIPW Adipogenesis GDF10 +WIKIPW Adipogenesis GH1 +WIKIPW Adipogenesis KLF15 +WIKIPW Adipogenesis NR3C1 +WIKIPW Adipogenesis GTF3A +WIKIPW Adipogenesis HIF1A +WIKIPW Adipogenesis HMGA1 +WIKIPW Adipogenesis ID3 +WIKIPW Adipogenesis IGF1 +WIKIPW Adipogenesis FAS +WIKIPW Adipogenesis IL6 +WIKIPW Adipogenesis IL6ST +WIKIPW Adipogenesis INS +WIKIPW Adipogenesis IRS1 +WIKIPW Adipogenesis LEP +WIKIPW Adipogenesis LIF +WIKIPW Adipogenesis LIFR +WIKIPW Adipogenesis LIPE +WIKIPW Adipogenesis LMNA +WIKIPW Adipogenesis LPL +WIKIPW Adipogenesis SMAD3 +WIKIPW Adipogenesis MBNL1 +WIKIPW Adipogenesis MEF2A +WIKIPW Adipogenesis LOC729991-MEF2B +WIKIPW Adipogenesis MEF2C +WIKIPW Adipogenesis MEF2D +WIKIPW Adipogenesis MIF +WIKIPW Adipogenesis ASIP +WIKIPW Adipogenesis GADD45B +WIKIPW Adipogenesis NDN +WIKIPW Adipogenesis OSM +WIKIPW Adipogenesis SERPINE1 +WIKIPW Adipogenesis PCK1 +WIKIPW Adipogenesis PCK2 +WIKIPW Adipogenesis PLIN1 +WIKIPW Adipogenesis PPARA +WIKIPW Adipogenesis PPARD +WIKIPW Adipogenesis PPARG +WIKIPW Adipogenesis CISD1 +WIKIPW Adipogenesis PRLR +WIKIPW Adipogenesis CYP26B1 +WIKIPW Adipogenesis RETN +WIKIPW Adipogenesis PTGIS +WIKIPW Adipogenesis TRIB3 +WIKIPW Adipogenesis RARA +WIKIPW Adipogenesis RB1 +WIKIPW Adipogenesis RBL1 +WIKIPW Adipogenesis RBL2 +WIKIPW Adipogenesis RORA +WIKIPW Adipogenesis RXRA +WIKIPW Adipogenesis RXRG +WIKIPW Adipogenesis SCD +WIKIPW Adipogenesis SFRP4 +WIKIPW Adipogenesis BMP1 +WIKIPW Adipogenesis LPIN3 +WIKIPW Adipogenesis BMP2 +WIKIPW Adipogenesis BMP3 +WIKIPW Adipogenesis SLC2A4 +WIKIPW Adipogenesis BMP4 +WIKIPW Adipogenesis SP1 +WIKIPW Adipogenesis SPOCK1 +WIKIPW Adipogenesis SREBF1 +WIKIPW Adipogenesis STAT1 +WIKIPW Adipogenesis STAT2 +WIKIPW Adipogenesis STAT3 +WIKIPW Adipogenesis STAT5A +WIKIPW Adipogenesis STAT5B +WIKIPW Adipogenesis STAT6 +WIKIPW Adipogenesis KLF5 +WIKIPW Adipogenesis HNF1A +WIKIPW Adipogenesis NR2F1 +WIKIPW Adipogenesis TGFB1 +WIKIPW Adipogenesis TNF +WIKIPW Adipogenesis INS-IGF2 +WIKIPW Adipogenesis TWIST1 +WIKIPW Adipogenesis UCP1 +WIKIPW Adipogenesis WNT1 +WIKIPW Adipogenesis WNT10B +WIKIPW Adipogenesis PNPLA3 +WIKIPW Adipogenesis WNT5B +WIKIPW Adipogenesis NRIP1 +WIKIPW Adipogenesis FZD1 +WIKIPW Adipogenesis MIXL1 +WIKIPW Adipogenesis IRS4 +WIKIPW Adipogenesis KLF7 +WIKIPW Adipogenesis NCOA1 +WIKIPW Adipogenesis SOCS1 +WIKIPW Adipogenesis IRS2 +WIKIPW Adipogenesis DLK1 +WIKIPW Adipogenesis SOCS3 +WIKIPW Adipogenesis ADIPOQ +WIKIPW Adipogenesis NCOR1 +WIKIPW Adipogenesis NCOR2 +WIKIPW Adipogenesis LPIN2 +WIKIPW Glucocorticoid & Mineralcorticoid Metabolism CYP11B2 +WIKIPW Glucocorticoid & Mineralcorticoid Metabolism CYP17A1 +WIKIPW Glucocorticoid & Mineralcorticoid Metabolism CYP21A2 +WIKIPW Glucocorticoid & Mineralcorticoid Metabolism HSD3B1 +WIKIPW Glucocorticoid & Mineralcorticoid Metabolism HSD3B2 +WIKIPW Glucocorticoid & Mineralcorticoid Metabolism HSD11B1 +WIKIPW Glucocorticoid & Mineralcorticoid Metabolism HSD11B2 +WIKIPW Peptide GPCRs ATP8A1 +WIKIPW Peptide GPCRs CXCR6 +WIKIPW Peptide GPCRs CCR1 +WIKIPW Peptide GPCRs CCR3 +WIKIPW Peptide GPCRs CCR4 +WIKIPW Peptide GPCRs CCR5 +WIKIPW Peptide GPCRs CCR6 +WIKIPW Peptide GPCRs CCR7 +WIKIPW Peptide GPCRs CCR8 +WIKIPW Peptide GPCRs CX3CR1 +WIKIPW Peptide GPCRs AGTR1 +WIKIPW Peptide GPCRs AGTR2 +WIKIPW Peptide GPCRs EDNRA +WIKIPW Peptide GPCRs EDNRB +WIKIPW Peptide GPCRs FPR1 +WIKIPW Peptide GPCRs FPR2 +WIKIPW Peptide GPCRs FPR3 +WIKIPW Peptide GPCRs NTSR2 +WIKIPW Peptide GPCRs FSHR +WIKIPW Peptide GPCRs DARC +WIKIPW Peptide GPCRs TAC4 +WIKIPW Peptide GPCRs GALR1 +WIKIPW Peptide GPCRs GHSR +WIKIPW Peptide GPCRs GNRHR +WIKIPW Peptide GPCRs CCR10 +WIKIPW Peptide GPCRs CXCR3 +WIKIPW Peptide GPCRs GRPR +WIKIPW Peptide GPCRs IL8RA +WIKIPW Peptide GPCRs IL8RB +WIKIPW Peptide GPCRs LHCGR +WIKIPW Peptide GPCRs MC1R +WIKIPW Peptide GPCRs MC2R +WIKIPW Peptide GPCRs MC3R +WIKIPW Peptide GPCRs MC4R +WIKIPW Peptide GPCRs MC5R +WIKIPW Peptide GPCRs NMBR +WIKIPW Peptide GPCRs NPY1R +WIKIPW Peptide GPCRs NPY2R +WIKIPW Peptide GPCRs NPY5R +WIKIPW Peptide GPCRs NTSR1 +WIKIPW Peptide GPCRs OPRD1 +WIKIPW Peptide GPCRs OPRK1 +WIKIPW Peptide GPCRs OPRL1 +WIKIPW Peptide GPCRs OPRM1 +WIKIPW Peptide GPCRs OXTR +WIKIPW Peptide GPCRs AVPR1A +WIKIPW Peptide GPCRs AVPR1B +WIKIPW Peptide GPCRs AVPR2 +WIKIPW Peptide GPCRs PPYR1 +WIKIPW Peptide GPCRs BDKRB1 +WIKIPW Peptide GPCRs BDKRB2 +WIKIPW Peptide GPCRs CXCR5 +WIKIPW Peptide GPCRs SSTR1 +WIKIPW Peptide GPCRs SSTR2 +WIKIPW Peptide GPCRs SSTR3 +WIKIPW Peptide GPCRs SSTR4 +WIKIPW Peptide GPCRs SSTR5 +WIKIPW Peptide GPCRs BRS3 +WIKIPW Peptide GPCRs TACR2 +WIKIPW Peptide GPCRs TACR1 +WIKIPW Peptide GPCRs TACR3 +WIKIPW Peptide GPCRs C3AR1 +WIKIPW Peptide GPCRs TRHR +WIKIPW Peptide GPCRs TSHR +WIKIPW Peptide GPCRs C5AR1 +WIKIPW Peptide GPCRs CCR2 +WIKIPW Peptide GPCRs CXCR4 +WIKIPW Peptide GPCRs GALR3 +WIKIPW Peptide GPCRs GALR2 +WIKIPW Peptide GPCRs CCKAR +WIKIPW Peptide GPCRs CCKBR +WIKIPW One Carbon Metabolism MTHFD2 +WIKIPW One Carbon Metabolism ALDH1L1 +WIKIPW One Carbon Metabolism FTCD +WIKIPW One Carbon Metabolism MTFMT +WIKIPW One Carbon Metabolism DHFR +WIKIPW One Carbon Metabolism DNMT1 +WIKIPW One Carbon Metabolism DNMT3A +WIKIPW One Carbon Metabolism DNMT3B +WIKIPW One Carbon Metabolism AHCY +WIKIPW One Carbon Metabolism AHCYL2 +WIKIPW One Carbon Metabolism FOLH1 +WIKIPW One Carbon Metabolism MTHFD1L +WIKIPW One Carbon Metabolism GART +WIKIPW One Carbon Metabolism MAT2B +WIKIPW One Carbon Metabolism AMT +WIKIPW One Carbon Metabolism MAT1A +WIKIPW One Carbon Metabolism MTHFD1 +WIKIPW One Carbon Metabolism MTHFR +WIKIPW One Carbon Metabolism MTR +WIKIPW One Carbon Metabolism MTRR +WIKIPW One Carbon Metabolism ATIC +WIKIPW One Carbon Metabolism BHMT +WIKIPW One Carbon Metabolism SHMT1 +WIKIPW One Carbon Metabolism SHMT2 +WIKIPW One Carbon Metabolism TCN2 +WIKIPW One Carbon Metabolism TYMS +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway CDKN1A +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway YWHAQ +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway CLCA1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway COL17A1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway DSP +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway EGFR +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway EIF4E +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway EIF4EBP1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway ERBB2 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway AKT1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway MTOR +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway ABL1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway FYN +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway SFN +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway LAMA1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway GRB2 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway ITGA6 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway IRS1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway AR +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway ITGB4 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway EIF6 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway RHOA +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway LAMA2 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway LAMA3 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway LAMA5 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway LAMB1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway LAMB2 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway LAMB3 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway LAMC1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway LAMC2 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway RPSA +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway SMAD2 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway SMAD3 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway MET +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway MMP7 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway MST1R +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway PAK1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway PIK3CA +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway PIK3CB +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway PIK3CD +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway PIK3CG +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway PIK3R1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway PIK3R2 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway PLEC1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway PRKCA +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway PRKCD +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway ERBB2IP +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway BAD +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway PTK2 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway RAC1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway RTKN +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway SHC1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway LOC652460 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway DST +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway SRC +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway TP73 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway VIM +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway YES1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway YWHAB +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway YWHAE +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway YWHAH +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway YWHAZ +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway CASP3 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway PIK3R3 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway IRS2 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway NTN1 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway CLCA2 +WIKIPW Alpha6-Beta4 Integrin Signaling Pathway CD151 +WIKIPW Small Ligand GPCRs CNR2 +WIKIPW Small Ligand GPCRs S1PR1 +WIKIPW Small Ligand GPCRs LPAR1 +WIKIPW Small Ligand GPCRs S1PR3 +WIKIPW Small Ligand GPCRs MTNR1A +WIKIPW Small Ligand GPCRs MTNR1B +WIKIPW Small Ligand GPCRs PTAFR +WIKIPW Small Ligand GPCRs PTGDR +WIKIPW Small Ligand GPCRs PTGER1 +WIKIPW Small Ligand GPCRs PTGER2 +WIKIPW Small Ligand GPCRs PTGER3 +WIKIPW Small Ligand GPCRs PTGER4 +WIKIPW Small Ligand GPCRs PTGFR +WIKIPW Small Ligand GPCRs PTGIR +WIKIPW Small Ligand GPCRs TBXA2R +WIKIPW Small Ligand GPCRs S1PR4 +WIKIPW Small Ligand GPCRs S1PR2 +WIKIPW Apoptosis CDKN2A +WIKIPW Apoptosis CHUK +WIKIPW Apoptosis DFFA +WIKIPW Apoptosis DFFB +WIKIPW Apoptosis AKT1 +WIKIPW Apoptosis BBC3 +WIKIPW Apoptosis TNFRSF21 +WIKIPW Apoptosis GZMB +WIKIPW Apoptosis HELLS +WIKIPW Apoptosis APAF1 +WIKIPW Apoptosis BIRC2 +WIKIPW Apoptosis BIRC3 +WIKIPW Apoptosis XIAP +WIKIPW Apoptosis BIRC5 +WIKIPW Apoptosis IGF1 +WIKIPW Apoptosis IGF1R +WIKIPW Apoptosis IGF2 +WIKIPW Apoptosis FAS +WIKIPW Apoptosis IKBKB +WIKIPW Apoptosis FASLG +WIKIPW Apoptosis IRF1 +WIKIPW Apoptosis IRF2 +WIKIPW Apoptosis IRF3 +WIKIPW Apoptosis IRF4 +WIKIPW Apoptosis IRF5 +WIKIPW Apoptosis IRF6 +WIKIPW Apoptosis IRF7 +WIKIPW Apoptosis JUN +WIKIPW Apoptosis LTA +WIKIPW Apoptosis MCL1 +WIKIPW Apoptosis MDM2 +WIKIPW Apoptosis MAP3K1 +WIKIPW Apoptosis MYC +WIKIPW Apoptosis NFKB1 +WIKIPW Apoptosis NFKBIA +WIKIPW Apoptosis NFKBIB +WIKIPW Apoptosis NFKBIE +WIKIPW Apoptosis PIK3R1 +WIKIPW Apoptosis PMAIP1 +WIKIPW Apoptosis CYCS +WIKIPW Apoptosis PRF1 +WIKIPW Apoptosis MAPK10 +WIKIPW Apoptosis DIABLO +WIKIPW Apoptosis BAD +WIKIPW Apoptosis BAK1 +WIKIPW Apoptosis BAX +WIKIPW Apoptosis BCL2 +WIKIPW Apoptosis RELA +WIKIPW Apoptosis BCL2L1 +WIKIPW Apoptosis BCL2L2 +WIKIPW Apoptosis BID +WIKIPW Apoptosis MAP2K4 +WIKIPW Apoptosis BNIP3L +WIKIPW Apoptosis BOK +WIKIPW Apoptosis TNF +WIKIPW Apoptosis TNFRSF1A +WIKIPW Apoptosis TNFRSF1B +WIKIPW Apoptosis TP53 +WIKIPW Apoptosis TP73 +WIKIPW Apoptosis TRAF1 +WIKIPW Apoptosis TRAF2 +WIKIPW Apoptosis TRAF3 +WIKIPW Apoptosis CASP1 +WIKIPW Apoptosis CASP2 +WIKIPW Apoptosis CASP3 +WIKIPW Apoptosis CASP4 +WIKIPW Apoptosis CASP6 +WIKIPW Apoptosis CASP7 +WIKIPW Apoptosis CASP8 +WIKIPW Apoptosis CASP9 +WIKIPW Apoptosis CASP10 +WIKIPW Apoptosis IKBKG +WIKIPW Apoptosis TRADD +WIKIPW Apoptosis TNFRSF25 +WIKIPW Apoptosis RIPK1 +WIKIPW Apoptosis CRADD +WIKIPW Apoptosis HRK +WIKIPW Apoptosis TNFSF10 +WIKIPW Apoptosis FADD +WIKIPW Apoptosis TNFRSF10B +WIKIPW Apoptosis CFLAR +WIKIPW Nifedipine MAPK1 +WIKIPW Nifedipine MAP2K1 +WIKIPW Signal Transduction of S1P Receptor S1PR1 +WIKIPW Signal Transduction of S1P Receptor S1PR3 +WIKIPW Signal Transduction of S1P Receptor AKT1 +WIKIPW Signal Transduction of S1P Receptor AKT2 +WIKIPW Signal Transduction of S1P Receptor PLCB1 +WIKIPW Signal Transduction of S1P Receptor GNAI1 +WIKIPW Signal Transduction of S1P Receptor GNAI2 +WIKIPW Signal Transduction of S1P Receptor GNAI3 +WIKIPW Signal Transduction of S1P Receptor RACGAP1 +WIKIPW Signal Transduction of S1P Receptor ASAH1 +WIKIPW Signal Transduction of S1P Receptor PIK3C2B +WIKIPW Signal Transduction of S1P Receptor PLCB2 +WIKIPW Signal Transduction of S1P Receptor PLCB3 +WIKIPW Signal Transduction of S1P Receptor S1PR5 +WIKIPW Signal Transduction of S1P Receptor MAPK1 +WIKIPW Signal Transduction of S1P Receptor MAPK3 +WIKIPW Signal Transduction of S1P Receptor MAPK4 +WIKIPW Signal Transduction of S1P Receptor MAPK6 +WIKIPW Signal Transduction of S1P Receptor MAPK7 +WIKIPW Signal Transduction of S1P Receptor SPHK2 +WIKIPW Signal Transduction of S1P Receptor MAPK12 +WIKIPW Signal Transduction of S1P Receptor SPHK1 +WIKIPW Signal Transduction of S1P Receptor S1PR2 +WIKIPW EBV LMP1 signaling HSP90AA1 +WIKIPW EBV LMP1 signaling IFNB1 +WIKIPW EBV LMP1 signaling IKBKB +WIKIPW EBV LMP1 signaling IL8 +WIKIPW EBV LMP1 signaling IRAK1 +WIKIPW EBV LMP1 signaling MAP3K3 +WIKIPW EBV LMP1 signaling NFKB1 +WIKIPW EBV LMP1 signaling NFKB2 +WIKIPW EBV LMP1 signaling MAPK1 +WIKIPW EBV LMP1 signaling MAPK8 +WIKIPW EBV LMP1 signaling RELA +WIKIPW EBV LMP1 signaling CCL5 +WIKIPW EBV LMP1 signaling CCL20 +WIKIPW EBV LMP1 signaling MAP3K7 +WIKIPW EBV LMP1 signaling TNF +WIKIPW EBV LMP1 signaling TRAF1 +WIKIPW EBV LMP1 signaling TRAF6 +WIKIPW EBV LMP1 signaling IKBKG +WIKIPW EBV LMP1 signaling TRADD +WIKIPW EBV LMP1 signaling MAP3K14 +WIKIPW EBV LMP1 signaling PDLIM7 +WIKIPW Notch Signaling Pathway RBPJL +WIKIPW Notch Signaling Pathway DTX2 +WIKIPW Notch Signaling Pathway CREBBP +WIKIPW Notch Signaling Pathway CTBP1 +WIKIPW Notch Signaling Pathway CTBP2 +WIKIPW Notch Signaling Pathway DTX3L +WIKIPW Notch Signaling Pathway PTCRA +WIKIPW Notch Signaling Pathway JAG1 +WIKIPW Notch Signaling Pathway DTX1 +WIKIPW Notch Signaling Pathway DVL1 +WIKIPW Notch Signaling Pathway DVL2 +WIKIPW Notch Signaling Pathway DVL3 +WIKIPW Notch Signaling Pathway DTX3 +WIKIPW Notch Signaling Pathway DTX4 +WIKIPW Notch Signaling Pathway NCSTN +WIKIPW Notch Signaling Pathway KAT2A +WIKIPW Notch Signaling Pathway DLL1 +WIKIPW Notch Signaling Pathway HDAC1 +WIKIPW Notch Signaling Pathway HDAC2 +WIKIPW Notch Signaling Pathway HES1 +WIKIPW Notch Signaling Pathway RBPJ +WIKIPW Notch Signaling Pathway JAG2 +WIKIPW Notch Signaling Pathway KCNJ5 +WIKIPW Notch Signaling Pathway HES5 +WIKIPW Notch Signaling Pathway LFNG +WIKIPW Notch Signaling Pathway MFNG +WIKIPW Notch Signaling Pathway NOTCH1 +WIKIPW Notch Signaling Pathway NOTCH2 +WIKIPW Notch Signaling Pathway NOTCH3 +WIKIPW Notch Signaling Pathway NOTCH4 +WIKIPW Notch Signaling Pathway APH1A +WIKIPW Notch Signaling Pathway INPP5K +WIKIPW Notch Signaling Pathway DLL4 +WIKIPW Notch Signaling Pathway MAML3 +WIKIPW Notch Signaling Pathway PSEN1 +WIKIPW Notch Signaling Pathway PSEN2 +WIKIPW Notch Signaling Pathway RFNG +WIKIPW Notch Signaling Pathway ADAM17 +WIKIPW Notch Signaling Pathway TNF +WIKIPW Notch Signaling Pathway APH1B +WIKIPW Notch Signaling Pathway NUMB +WIKIPW Notch Signaling Pathway KAT2B +WIKIPW Notch Signaling Pathway NUMBL +WIKIPW Notch Signaling Pathway NCOR2 +WIKIPW Notch Signaling Pathway MAML1 +WIKIPW Blood Clotting Cascade F5 +WIKIPW Blood Clotting Cascade F7 +WIKIPW Blood Clotting Cascade F8 +WIKIPW Blood Clotting Cascade F9 +WIKIPW Blood Clotting Cascade F10 +WIKIPW Blood Clotting Cascade F11 +WIKIPW Blood Clotting Cascade F12 +WIKIPW Blood Clotting Cascade F13B +WIKIPW Blood Clotting Cascade FGA +WIKIPW Blood Clotting Cascade FGB +WIKIPW Blood Clotting Cascade FGG +WIKIPW Blood Clotting Cascade KLK1 +WIKIPW Blood Clotting Cascade KLKB1 +WIKIPW Blood Clotting Cascade F8A2 +WIKIPW Blood Clotting Cascade F8A3 +WIKIPW Blood Clotting Cascade SERPINE1 +WIKIPW Blood Clotting Cascade SERPINB2 +WIKIPW Blood Clotting Cascade PLAT +WIKIPW Blood Clotting Cascade PLAU +WIKIPW Blood Clotting Cascade PLG +WIKIPW Blood Clotting Cascade SERPINF2 +WIKIPW Blood Clotting Cascade VWF +WIKIPW Blood Clotting Cascade F8A1 +WIKIPW Selenium metabolism/Selenoproteins TXNRD2 +WIKIPW Selenium metabolism/Selenoproteins SELM +WIKIPW Selenium metabolism/Selenoproteins DIO1 +WIKIPW Selenium metabolism/Selenoproteins DIO2 +WIKIPW Selenium metabolism/Selenoproteins DIO3 +WIKIPW Selenium metabolism/Selenoproteins FABP1 +WIKIPW Selenium metabolism/Selenoproteins SEPHS2 +WIKIPW Selenium metabolism/Selenoproteins FOS +WIKIPW Selenium metabolism/Selenoproteins GPX6 +WIKIPW Selenium metabolism/Selenoproteins C11orf31 +WIKIPW Selenium metabolism/Selenoproteins GPX1 +WIKIPW Selenium metabolism/Selenoproteins GPX2 +WIKIPW Selenium metabolism/Selenoproteins GPX3 +WIKIPW Selenium metabolism/Selenoproteins GPX4 +WIKIPW Selenium metabolism/Selenoproteins SELV +WIKIPW Selenium metabolism/Selenoproteins JUN +WIKIPW Selenium metabolism/Selenoproteins NFKB1 +WIKIPW Selenium metabolism/Selenoproteins SEPSECS +WIKIPW Selenium metabolism/Selenoproteins SCLY +WIKIPW Selenium metabolism/Selenoproteins SELT +WIKIPW Selenium metabolism/Selenoproteins SEPX1 +WIKIPW Selenium metabolism/Selenoproteins SARS2 +WIKIPW Selenium metabolism/Selenoproteins TRNAU1AP +WIKIPW Selenium metabolism/Selenoproteins SELS +WIKIPW Selenium metabolism/Selenoproteins SEPN1 +WIKIPW Selenium metabolism/Selenoproteins SELK +WIKIPW Selenium metabolism/Selenoproteins RELA +WIKIPW Selenium metabolism/Selenoproteins EEFSEC +WIKIPW Selenium metabolism/Selenoproteins RPL30 +WIKIPW Selenium metabolism/Selenoproteins SEPP1 +WIKIPW Selenium metabolism/Selenoproteins SEPW1 +WIKIPW Selenium metabolism/Selenoproteins SP3 +WIKIPW Selenium metabolism/Selenoproteins TXNRD1 +WIKIPW Selenium metabolism/Selenoproteins SELO +WIKIPW Selenium metabolism/Selenoproteins SELI +WIKIPW Selenium metabolism/Selenoproteins SELENBP1 +WIKIPW IL-3 Signaling Pathway GNB2L1 +WIKIPW IL-3 Signaling Pathway YWHAQ +WIKIPW IL-3 Signaling Pathway CHEK1 +WIKIPW IL-3 Signaling Pathway CISH +WIKIPW IL-3 Signaling Pathway CREB1 +WIKIPW IL-3 Signaling Pathway ATF2 +WIKIPW IL-3 Signaling Pathway CRK +WIKIPW IL-3 Signaling Pathway CRKL +WIKIPW IL-3 Signaling Pathway MAPK14 +WIKIPW IL-3 Signaling Pathway CSF2RB +WIKIPW IL-3 Signaling Pathway DNM1 +WIKIPW IL-3 Signaling Pathway AKT1 +WIKIPW IL-3 Signaling Pathway FCER2 +WIKIPW IL-3 Signaling Pathway FES +WIKIPW IL-3 Signaling Pathway MRAS +WIKIPW IL-3 Signaling Pathway FOXO1 +WIKIPW IL-3 Signaling Pathway FYN +WIKIPW IL-3 Signaling Pathway GAB1 +WIKIPW IL-3 Signaling Pathway GATA1 +WIKIPW IL-3 Signaling Pathway GATA2 +WIKIPW IL-3 Signaling Pathway GRB2 +WIKIPW IL-3 Signaling Pathway RAPGEF1 +WIKIPW IL-3 Signaling Pathway GSK3A +WIKIPW IL-3 Signaling Pathway GSK3B +WIKIPW IL-3 Signaling Pathway PILRB +WIKIPW IL-3 Signaling Pathway HCK +WIKIPW IL-3 Signaling Pathway KCNIP3 +WIKIPW IL-3 Signaling Pathway HRAS +WIKIPW IL-3 Signaling Pathway HSPB1 +WIKIPW IL-3 Signaling Pathway BIRC5 +WIKIPW IL-3 Signaling Pathway ID1 +WIKIPW IL-3 Signaling Pathway IL3 +WIKIPW IL-3 Signaling Pathway IL3RA +WIKIPW IL-3 Signaling Pathway JAK1 +WIKIPW IL-3 Signaling Pathway JAK2 +WIKIPW IL-3 Signaling Pathway KRAS +WIKIPW IL-3 Signaling Pathway LCK +WIKIPW IL-3 Signaling Pathway LYN +WIKIPW IL-3 Signaling Pathway MATK +WIKIPW IL-3 Signaling Pathway MMP2 +WIKIPW IL-3 Signaling Pathway MMP9 +WIKIPW IL-3 Signaling Pathway ATF1 +WIKIPW IL-3 Signaling Pathway NFKB1 +WIKIPW IL-3 Signaling Pathway PAK1 +WIKIPW IL-3 Signaling Pathway PIK3CA +WIKIPW IL-3 Signaling Pathway PIK3CD +WIKIPW IL-3 Signaling Pathway PIK3R1 +WIKIPW IL-3 Signaling Pathway PIK3R2 +WIKIPW IL-3 Signaling Pathway PPP2CA +WIKIPW IL-3 Signaling Pathway PRKACA +WIKIPW IL-3 Signaling Pathway PRKCA +WIKIPW IL-3 Signaling Pathway PRKCB +WIKIPW IL-3 Signaling Pathway MAPK1 +WIKIPW IL-3 Signaling Pathway MAPK3 +WIKIPW IL-3 Signaling Pathway MAPK7 +WIKIPW IL-3 Signaling Pathway MAPK8 +WIKIPW IL-3 Signaling Pathway MAPK9 +WIKIPW IL-3 Signaling Pathway MAP2K1 +WIKIPW IL-3 Signaling Pathway BAD +WIKIPW IL-3 Signaling Pathway PTK2 +WIKIPW IL-3 Signaling Pathway PTPN6 +WIKIPW IL-3 Signaling Pathway PTPN11 +WIKIPW IL-3 Signaling Pathway BAX +WIKIPW IL-3 Signaling Pathway PXN +WIKIPW IL-3 Signaling Pathway RAC1 +WIKIPW IL-3 Signaling Pathway RAC2 +WIKIPW IL-3 Signaling Pathway RAF1 +WIKIPW IL-3 Signaling Pathway RAP1A +WIKIPW IL-3 Signaling Pathway RARA +WIKIPW IL-3 Signaling Pathway BCL2 +WIKIPW IL-3 Signaling Pathway BCL2L1 +WIKIPW IL-3 Signaling Pathway RPS6KB2 +WIKIPW IL-3 Signaling Pathway RXRA +WIKIPW IL-3 Signaling Pathway SELP +WIKIPW IL-3 Signaling Pathway SHC1 +WIKIPW IL-3 Signaling Pathway SLC2A1 +WIKIPW IL-3 Signaling Pathway BMX +WIKIPW IL-3 Signaling Pathway SOS1 +WIKIPW IL-3 Signaling Pathway SPI1 +WIKIPW IL-3 Signaling Pathway SRC +WIKIPW IL-3 Signaling Pathway STAT1 +WIKIPW IL-3 Signaling Pathway STAT3 +WIKIPW IL-3 Signaling Pathway STAT5A +WIKIPW IL-3 Signaling Pathway STAT5B +WIKIPW IL-3 Signaling Pathway STAT6 +WIKIPW IL-3 Signaling Pathway SYK +WIKIPW IL-3 Signaling Pathway TEC +WIKIPW IL-3 Signaling Pathway TNFRSF1B +WIKIPW IL-3 Signaling Pathway TYK2 +WIKIPW IL-3 Signaling Pathway VAV1 +WIKIPW IL-3 Signaling Pathway VCL +WIKIPW IL-3 Signaling Pathway YWHAB +WIKIPW IL-3 Signaling Pathway YWHAZ +WIKIPW IL-3 Signaling Pathway CBL +WIKIPW IL-3 Signaling Pathway SOCS2 +WIKIPW IL-3 Signaling Pathway SOCS3 +WIKIPW IL-3 Signaling Pathway MAPKAPK2 +WIKIPW IL-3 Signaling Pathway GAB2 +WIKIPW IL-3 Signaling Pathway CDC42 +WIKIPW NLR proteins EPHB2 +WIKIPW NLR proteins IKBKB +WIKIPW NLR proteins ERBB2IP +WIKIPW NLR proteins MAPK1 +WIKIPW NLR proteins MAPK8 +WIKIPW NLR proteins RELA +WIKIPW NLR proteins MAP3K7 +WIKIPW NLR proteins IKBKG +WIKIPW NLR proteins CD40 +WIKIPW Myometrial Relaxation and Contraction Pathways RAMP1 +WIKIPW Myometrial Relaxation and Contraction Pathways RAMP3 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS19 +WIKIPW Myometrial Relaxation and Contraction Pathways CREB3 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS14 +WIKIPW Myometrial Relaxation and Contraction Pathways GNB5 +WIKIPW Myometrial Relaxation and Contraction Pathways CORIN +WIKIPW Myometrial Relaxation and Contraction Pathways ADCY1 +WIKIPW Myometrial Relaxation and Contraction Pathways ADCY2 +WIKIPW Myometrial Relaxation and Contraction Pathways ADCY3 +WIKIPW Myometrial Relaxation and Contraction Pathways YWHAQ +WIKIPW Myometrial Relaxation and Contraction Pathways ADCY5 +WIKIPW Myometrial Relaxation and Contraction Pathways PKIG +WIKIPW Myometrial Relaxation and Contraction Pathways ADCY6 +WIKIPW Myometrial Relaxation and Contraction Pathways ADCY7 +WIKIPW Myometrial Relaxation and Contraction Pathways GPR182 +WIKIPW Myometrial Relaxation and Contraction Pathways ADCY8 +WIKIPW Myometrial Relaxation and Contraction Pathways ADCY9 +WIKIPW Myometrial Relaxation and Contraction Pathways RXFP2 +WIKIPW Myometrial Relaxation and Contraction Pathways CNN1 +WIKIPW Myometrial Relaxation and Contraction Pathways CNN2 +WIKIPW Myometrial Relaxation and Contraction Pathways ADM +WIKIPW Myometrial Relaxation and Contraction Pathways CREB1 +WIKIPW Myometrial Relaxation and Contraction Pathways ATF2 +WIKIPW Myometrial Relaxation and Contraction Pathways ATF6B +WIKIPW Myometrial Relaxation and Contraction Pathways CRH +WIKIPW Myometrial Relaxation and Contraction Pathways CRHR1 +WIKIPW Myometrial Relaxation and Contraction Pathways LPAR1 +WIKIPW Myometrial Relaxation and Contraction Pathways ADCY4 +WIKIPW Myometrial Relaxation and Contraction Pathways ETS2 +WIKIPW Myometrial Relaxation and Contraction Pathways ATF5 +WIKIPW Myometrial Relaxation and Contraction Pathways FOS +WIKIPW Myometrial Relaxation and Contraction Pathways MAFF +WIKIPW Myometrial Relaxation and Contraction Pathways GABPA +WIKIPW Myometrial Relaxation and Contraction Pathways GABPB1 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS17 +WIKIPW Myometrial Relaxation and Contraction Pathways GJA1 +WIKIPW Myometrial Relaxation and Contraction Pathways CRCP +WIKIPW Myometrial Relaxation and Contraction Pathways GNAQ +WIKIPW Myometrial Relaxation and Contraction Pathways GNAS +WIKIPW Myometrial Relaxation and Contraction Pathways GNB1 +WIKIPW Myometrial Relaxation and Contraction Pathways GNB2 +WIKIPW Myometrial Relaxation and Contraction Pathways GNB3 +WIKIPW Myometrial Relaxation and Contraction Pathways GNG3 +WIKIPW Myometrial Relaxation and Contraction Pathways GNG4 +WIKIPW Myometrial Relaxation and Contraction Pathways GNG5 +WIKIPW Myometrial Relaxation and Contraction Pathways GNG7 +WIKIPW Myometrial Relaxation and Contraction Pathways GNG11 +WIKIPW Myometrial Relaxation and Contraction Pathways GNGT1 +WIKIPW Myometrial Relaxation and Contraction Pathways SFN +WIKIPW Myometrial Relaxation and Contraction Pathways GRK4 +WIKIPW Myometrial Relaxation and Contraction Pathways GRK5 +WIKIPW Myometrial Relaxation and Contraction Pathways GRK6 +WIKIPW Myometrial Relaxation and Contraction Pathways GUCA2A +WIKIPW Myometrial Relaxation and Contraction Pathways GUCA2B +WIKIPW Myometrial Relaxation and Contraction Pathways GUCY1A3 +WIKIPW Myometrial Relaxation and Contraction Pathways IGFBP1 +WIKIPW Myometrial Relaxation and Contraction Pathways IGFBP2 +WIKIPW Myometrial Relaxation and Contraction Pathways IGFBP3 +WIKIPW Myometrial Relaxation and Contraction Pathways IGFBP4 +WIKIPW Myometrial Relaxation and Contraction Pathways IGFBP5 +WIKIPW Myometrial Relaxation and Contraction Pathways IGFBP6 +WIKIPW Myometrial Relaxation and Contraction Pathways IL1B +WIKIPW Myometrial Relaxation and Contraction Pathways IL6 +WIKIPW Myometrial Relaxation and Contraction Pathways ITPR1 +WIKIPW Myometrial Relaxation and Contraction Pathways ITPR2 +WIKIPW Myometrial Relaxation and Contraction Pathways ITPR3 +WIKIPW Myometrial Relaxation and Contraction Pathways JUN +WIKIPW Myometrial Relaxation and Contraction Pathways ARRB1 +WIKIPW Myometrial Relaxation and Contraction Pathways ARRB2 +WIKIPW Myometrial Relaxation and Contraction Pathways MYL2 +WIKIPW Myometrial Relaxation and Contraction Pathways MYL4 +WIKIPW Myometrial Relaxation and Contraction Pathways ATF1 +WIKIPW Myometrial Relaxation and Contraction Pathways ATF3 +WIKIPW Myometrial Relaxation and Contraction Pathways ATF4 +WIKIPW Myometrial Relaxation and Contraction Pathways NFKB1 +WIKIPW Myometrial Relaxation and Contraction Pathways NOS1 +WIKIPW Myometrial Relaxation and Contraction Pathways NOS3 +WIKIPW Myometrial Relaxation and Contraction Pathways ATP2A2 +WIKIPW Myometrial Relaxation and Contraction Pathways ATP2A3 +WIKIPW Myometrial Relaxation and Contraction Pathways OXT +WIKIPW Myometrial Relaxation and Contraction Pathways OXTR +WIKIPW Myometrial Relaxation and Contraction Pathways PDE4B +WIKIPW Myometrial Relaxation and Contraction Pathways PDE4D +WIKIPW Myometrial Relaxation and Contraction Pathways GNG13 +WIKIPW Myometrial Relaxation and Contraction Pathways PLCB3 +WIKIPW Myometrial Relaxation and Contraction Pathways PLCD1 +WIKIPW Myometrial Relaxation and Contraction Pathways PLCG1 +WIKIPW Myometrial Relaxation and Contraction Pathways PLCG2 +WIKIPW Myometrial Relaxation and Contraction Pathways GNG2 +WIKIPW Myometrial Relaxation and Contraction Pathways PRKACA +WIKIPW Myometrial Relaxation and Contraction Pathways PRKACB +WIKIPW Myometrial Relaxation and Contraction Pathways PKIA +WIKIPW Myometrial Relaxation and Contraction Pathways PKIB +WIKIPW Myometrial Relaxation and Contraction Pathways PRKAR1A +WIKIPW Myometrial Relaxation and Contraction Pathways PRKAR1B +WIKIPW Myometrial Relaxation and Contraction Pathways PRKAR2A +WIKIPW Myometrial Relaxation and Contraction Pathways PRKAR2B +WIKIPW Myometrial Relaxation and Contraction Pathways PRKCA +WIKIPW Myometrial Relaxation and Contraction Pathways PRKCB +WIKIPW Myometrial Relaxation and Contraction Pathways PRKCD +WIKIPW Myometrial Relaxation and Contraction Pathways PRKCE +WIKIPW Myometrial Relaxation and Contraction Pathways PRKCG +WIKIPW Myometrial Relaxation and Contraction Pathways PRKCH +WIKIPW Myometrial Relaxation and Contraction Pathways PRKD1 +WIKIPW Myometrial Relaxation and Contraction Pathways PRKCQ +WIKIPW Myometrial Relaxation and Contraction Pathways PRKCZ +WIKIPW Myometrial Relaxation and Contraction Pathways GNG12 +WIKIPW Myometrial Relaxation and Contraction Pathways CXCR7 +WIKIPW Myometrial Relaxation and Contraction Pathways ACTA1 +WIKIPW Myometrial Relaxation and Contraction Pathways ACTA2 +WIKIPW Myometrial Relaxation and Contraction Pathways GNB4 +WIKIPW Myometrial Relaxation and Contraction Pathways RXFP1 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS1 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS2 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS3 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS4 +WIKIPW Myometrial Relaxation and Contraction Pathways ACTB +WIKIPW Myometrial Relaxation and Contraction Pathways RGS7 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS10 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS16 +WIKIPW Myometrial Relaxation and Contraction Pathways RLN1 +WIKIPW Myometrial Relaxation and Contraction Pathways RYR1 +WIKIPW Myometrial Relaxation and Contraction Pathways RYR2 +WIKIPW Myometrial Relaxation and Contraction Pathways RYR3 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS18 +WIKIPW Myometrial Relaxation and Contraction Pathways SLC8A1 +WIKIPW Myometrial Relaxation and Contraction Pathways SP1 +WIKIPW Myometrial Relaxation and Contraction Pathways ACTC1 +WIKIPW Myometrial Relaxation and Contraction Pathways ACTG1 +WIKIPW Myometrial Relaxation and Contraction Pathways YWHAB +WIKIPW Myometrial Relaxation and Contraction Pathways YWHAE +WIKIPW Myometrial Relaxation and Contraction Pathways YWHAG +WIKIPW Myometrial Relaxation and Contraction Pathways YWHAH +WIKIPW Myometrial Relaxation and Contraction Pathways YWHAZ +WIKIPW Myometrial Relaxation and Contraction Pathways CACNB3 +WIKIPW Myometrial Relaxation and Contraction Pathways CALCA +WIKIPW Myometrial Relaxation and Contraction Pathways CALD1 +WIKIPW Myometrial Relaxation and Contraction Pathways CALM1 +WIKIPW Myometrial Relaxation and Contraction Pathways CALM2 +WIKIPW Myometrial Relaxation and Contraction Pathways CALM3 +WIKIPW Myometrial Relaxation and Contraction Pathways CAMK2A +WIKIPW Myometrial Relaxation and Contraction Pathways CAMK2B +WIKIPW Myometrial Relaxation and Contraction Pathways CAMK2D +WIKIPW Myometrial Relaxation and Contraction Pathways CAMK2G +WIKIPW Myometrial Relaxation and Contraction Pathways RGS5 +WIKIPW Myometrial Relaxation and Contraction Pathways DGKZ +WIKIPW Myometrial Relaxation and Contraction Pathways MYLK2 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS20 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS11 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS9 +WIKIPW Myometrial Relaxation and Contraction Pathways GNG8 +WIKIPW Myometrial Relaxation and Contraction Pathways GSTO1 +WIKIPW Myometrial Relaxation and Contraction Pathways RGS6 +WIKIPW Nuclear receptors in lipid metabolism and toxicity ABCC2 +WIKIPW Nuclear receptors in lipid metabolism and toxicity CYP1A2 +WIKIPW Nuclear receptors in lipid metabolism and toxicity CYP2B6 +WIKIPW Nuclear receptors in lipid metabolism and toxicity CYP2C9 +WIKIPW Nuclear receptors in lipid metabolism and toxicity CYP2E1 +WIKIPW Nuclear receptors in lipid metabolism and toxicity CYP3A4 +WIKIPW Nuclear receptors in lipid metabolism and toxicity CYP4A11 +WIKIPW Nuclear receptors in lipid metabolism and toxicity CYP4B1 +WIKIPW Nuclear receptors in lipid metabolism and toxicity CYP7A1 +WIKIPW Nuclear receptors in lipid metabolism and toxicity CYP8B1 +WIKIPW Nuclear receptors in lipid metabolism and toxicity CYP24A1 +WIKIPW Nuclear receptors in lipid metabolism and toxicity CYP26A1 +WIKIPW Nuclear receptors in lipid metabolism and toxicity CYP27B1 +WIKIPW Nuclear receptors in lipid metabolism and toxicity ABCA1 +WIKIPW Nuclear receptors in lipid metabolism and toxicity ABCD2 +WIKIPW Nuclear receptors in lipid metabolism and toxicity ABCB1 +WIKIPW Nuclear receptors in lipid metabolism and toxicity ABCB4 +WIKIPW Nuclear receptors in lipid metabolism and toxicity PPARA +WIKIPW Nuclear receptors in lipid metabolism and toxicity PPARD +WIKIPW Nuclear receptors in lipid metabolism and toxicity PPARG +WIKIPW Nuclear receptors in lipid metabolism and toxicity ABCD3 +WIKIPW Nuclear receptors in lipid metabolism and toxicity RARA +WIKIPW Nuclear receptors in lipid metabolism and toxicity RARB +WIKIPW Nuclear receptors in lipid metabolism and toxicity RARG +WIKIPW Nuclear receptors in lipid metabolism and toxicity ABCG5 +WIKIPW Nuclear receptors in lipid metabolism and toxicity VDR +WIKIPW Nuclear receptors in lipid metabolism and toxicity ABCB11 +WIKIPW Nuclear receptors in lipid metabolism and toxicity ABCC3 +WIKIPW Nuclear receptors in lipid metabolism and toxicity NR1I2 +WIKIPW Nuclear receptors in lipid metabolism and toxicity ABCG1 +WIKIPW Nuclear receptors in lipid metabolism and toxicity NR1I3 +WIKIPW Nuclear receptors in lipid metabolism and toxicity NR1H4 +WIKIPW Keap1-Nrf2 NQO1 +WIKIPW Keap1-Nrf2 EPHB2 +WIKIPW Keap1-Nrf2 GCLC +WIKIPW Keap1-Nrf2 GCLM +WIKIPW Keap1-Nrf2 GSTA2 +WIKIPW Keap1-Nrf2 HMOX1 +WIKIPW Keap1-Nrf2 MAF +WIKIPW Keap1-Nrf2 NFE2L2 +WIKIPW Keap1-Nrf2 PIK3CA +WIKIPW Keap1-Nrf2 PRKCA +WIKIPW Keap1-Nrf2 MAPK8 +WIKIPW Keap1-Nrf2 AIMP2 +WIKIPW Keap1-Nrf2 KEAP1 +WIKIPW Kit Receptor Signaling Pathway GRAP +WIKIPW Kit Receptor Signaling Pathway CISH +WIKIPW Kit Receptor Signaling Pathway CLTC +WIKIPW Kit Receptor Signaling Pathway SOCS4 +WIKIPW Kit Receptor Signaling Pathway CRK +WIKIPW Kit Receptor Signaling Pathway CRKL +WIKIPW Kit Receptor Signaling Pathway CSF2RB +WIKIPW Kit Receptor Signaling Pathway SPRED1 +WIKIPW Kit Receptor Signaling Pathway DOK1 +WIKIPW Kit Receptor Signaling Pathway SPRED2 +WIKIPW Kit Receptor Signaling Pathway EP300 +WIKIPW Kit Receptor Signaling Pathway EPOR +WIKIPW Kit Receptor Signaling Pathway AKT1 +WIKIPW Kit Receptor Signaling Pathway FES +WIKIPW Kit Receptor Signaling Pathway FGR +WIKIPW Kit Receptor Signaling Pathway ABL1 +WIKIPW Kit Receptor Signaling Pathway FYN +WIKIPW Kit Receptor Signaling Pathway STAP1 +WIKIPW Kit Receptor Signaling Pathway GRB2 +WIKIPW Kit Receptor Signaling Pathway GRB7 +WIKIPW Kit Receptor Signaling Pathway GRB10 +WIKIPW Kit Receptor Signaling Pathway SH3KBP1 +WIKIPW Kit Receptor Signaling Pathway HCK +WIKIPW Kit Receptor Signaling Pathway HRAS +WIKIPW Kit Receptor Signaling Pathway JAK2 +WIKIPW Kit Receptor Signaling Pathway KIT +WIKIPW Kit Receptor Signaling Pathway LYN +WIKIPW Kit Receptor Signaling Pathway MATK +WIKIPW Kit Receptor Signaling Pathway KITLG +WIKIPW Kit Receptor Signaling Pathway MITF +WIKIPW Kit Receptor Signaling Pathway PLCE1 +WIKIPW Kit Receptor Signaling Pathway PIK3CG +WIKIPW Kit Receptor Signaling Pathway PIK3R1 +WIKIPW Kit Receptor Signaling Pathway PIK3R2 +WIKIPW Kit Receptor Signaling Pathway PLCG1 +WIKIPW Kit Receptor Signaling Pathway PRKCA +WIKIPW Kit Receptor Signaling Pathway PRKCB +WIKIPW Kit Receptor Signaling Pathway MAPK1 +WIKIPW Kit Receptor Signaling Pathway MAP2K1 +WIKIPW Kit Receptor Signaling Pathway BAD +WIKIPW Kit Receptor Signaling Pathway PTPN6 +WIKIPW Kit Receptor Signaling Pathway PTPN11 +WIKIPW Kit Receptor Signaling Pathway RAF1 +WIKIPW Kit Receptor Signaling Pathway RASA1 +WIKIPW Kit Receptor Signaling Pathway RPS6KA1 +WIKIPW Kit Receptor Signaling Pathway SHC1 +WIKIPW Kit Receptor Signaling Pathway LOC652799 +WIKIPW Kit Receptor Signaling Pathway LOC653882 +WIKIPW Kit Receptor Signaling Pathway SOS1 +WIKIPW Kit Receptor Signaling Pathway SRC +WIKIPW Kit Receptor Signaling Pathway STAT1 +WIKIPW Kit Receptor Signaling Pathway STAT3 +WIKIPW Kit Receptor Signaling Pathway STAT5A +WIKIPW Kit Receptor Signaling Pathway STAT5B +WIKIPW Kit Receptor Signaling Pathway BTK +WIKIPW Kit Receptor Signaling Pathway TEC +WIKIPW Kit Receptor Signaling Pathway VAV1 +WIKIPW Kit Receptor Signaling Pathway VAV2 +WIKIPW Kit Receptor Signaling Pathway YES1 +WIKIPW Kit Receptor Signaling Pathway SOCS1 +WIKIPW Kit Receptor Signaling Pathway CBL +WIKIPW Kit Receptor Signaling Pathway CBLB +WIKIPW Kit Receptor Signaling Pathway MPDZ +WIKIPW Kit Receptor Signaling Pathway TNFRSF10A +WIKIPW Kit Receptor Signaling Pathway SOCS6 +WIKIPW Kit Receptor Signaling Pathway SOCS5 +WIKIPW Focal Adhesion TNK2 +WIKIPW Focal Adhesion PAK4 +WIKIPW Focal Adhesion LAMC3 +WIKIPW Focal Adhesion TESK2 +WIKIPW Focal Adhesion CHAD +WIKIPW Focal Adhesion COL1A1 +WIKIPW Focal Adhesion COL1A2 +WIKIPW Focal Adhesion COL2A1 +WIKIPW Focal Adhesion COL3A1 +WIKIPW Focal Adhesion COL4A1 +WIKIPW Focal Adhesion COL4A2 +WIKIPW Focal Adhesion COL4A4 +WIKIPW Focal Adhesion COL4A6 +WIKIPW Focal Adhesion COL5A1 +WIKIPW Focal Adhesion COL5A2 +WIKIPW Focal Adhesion COL6A2 +WIKIPW Focal Adhesion COL11A1 +WIKIPW Focal Adhesion COL11A2 +WIKIPW Focal Adhesion COMP +WIKIPW Focal Adhesion CRK +WIKIPW Focal Adhesion DOCK1 +WIKIPW Focal Adhesion EGF +WIKIPW Focal Adhesion EGFR +WIKIPW Focal Adhesion ELK1 +WIKIPW Focal Adhesion ERBB2 +WIKIPW Focal Adhesion AKT1 +WIKIPW Focal Adhesion AKT2 +WIKIPW Focal Adhesion FGR +WIKIPW Focal Adhesion FIGF +WIKIPW Focal Adhesion ITGA11 +WIKIPW Focal Adhesion FLNA +WIKIPW Focal Adhesion FLT1 +WIKIPW Focal Adhesion FN1 +WIKIPW Focal Adhesion PIP5K1C +WIKIPW Focal Adhesion PIK3R5 +WIKIPW Focal Adhesion FYN +WIKIPW Focal Adhesion LAMA1 +WIKIPW Focal Adhesion GRB2 +WIKIPW Focal Adhesion RAPGEF1 +WIKIPW Focal Adhesion GSK3B +WIKIPW Focal Adhesion PARVB +WIKIPW Focal Adhesion HCK +WIKIPW Focal Adhesion HGF +WIKIPW Focal Adhesion PIK3R4 +WIKIPW Focal Adhesion BIRC2 +WIKIPW Focal Adhesion BIRC3 +WIKIPW Focal Adhesion TNC +WIKIPW Focal Adhesion IBSP +WIKIPW Focal Adhesion IGF1 +WIKIPW Focal Adhesion IGF1R +WIKIPW Focal Adhesion ILK +WIKIPW Focal Adhesion ITGA6 +WIKIPW Focal Adhesion ITGA2 +WIKIPW Focal Adhesion ITGA2B +WIKIPW Focal Adhesion ITGA3 +WIKIPW Focal Adhesion ITGA4 +WIKIPW Focal Adhesion ITGA5 +WIKIPW Focal Adhesion ITGA7 +WIKIPW Focal Adhesion ITGA9 +WIKIPW Focal Adhesion ITGAD +WIKIPW Focal Adhesion ITGAE +WIKIPW Focal Adhesion ITGAL +WIKIPW Focal Adhesion ITGAM +WIKIPW Focal Adhesion ITGAV +WIKIPW Focal Adhesion ITGAX +WIKIPW Focal Adhesion ITGB1 +WIKIPW Focal Adhesion ITGB2 +WIKIPW Focal Adhesion ARAF +WIKIPW Focal Adhesion ITGB3 +WIKIPW Focal Adhesion ITGB4 +WIKIPW Focal Adhesion ITGB5 +WIKIPW Focal Adhesion ITGB6 +WIKIPW Focal Adhesion ITGB7 +WIKIPW Focal Adhesion ITGB8 +WIKIPW Focal Adhesion JUN +WIKIPW Focal Adhesion KDR +WIKIPW Focal Adhesion RHOA +WIKIPW Focal Adhesion RHOB +WIKIPW Focal Adhesion LAMA2 +WIKIPW Focal Adhesion LAMA3 +WIKIPW Focal Adhesion LAMA4 +WIKIPW Focal Adhesion LAMA5 +WIKIPW Focal Adhesion LAMB1 +WIKIPW Focal Adhesion LAMB2 +WIKIPW Focal Adhesion LAMB3 +WIKIPW Focal Adhesion LAMC1 +WIKIPW Focal Adhesion LAMC2 +WIKIPW Focal Adhesion ARHGAP5 +WIKIPW Focal Adhesion MET +WIKIPW Focal Adhesion MYL6 +WIKIPW Focal Adhesion MYLK +WIKIPW Focal Adhesion PPP1R12A +WIKIPW Focal Adhesion COL5A3 +WIKIPW Focal Adhesion PAK1 +WIKIPW Focal Adhesion PAK2 +WIKIPW Focal Adhesion PAK3 +WIKIPW Focal Adhesion PDGFA +WIKIPW Focal Adhesion PDGFB +WIKIPW Focal Adhesion PDGFRA +WIKIPW Focal Adhesion PDGFRB +WIKIPW Focal Adhesion PDPK1 +WIKIPW Focal Adhesion PGF +WIKIPW Focal Adhesion PIK3CA +WIKIPW Focal Adhesion PIK3CB +WIKIPW Focal Adhesion PIK3CD +WIKIPW Focal Adhesion PIK3CG +WIKIPW Focal Adhesion PIK3R1 +WIKIPW Focal Adhesion PIK3R2 +WIKIPW Focal Adhesion SHC3 +WIKIPW Focal Adhesion PELO +WIKIPW Focal Adhesion STYK1 +WIKIPW Focal Adhesion MAPK1 +WIKIPW Focal Adhesion MAPK4 +WIKIPW Focal Adhesion MAPK6 +WIKIPW Focal Adhesion MAPK7 +WIKIPW Focal Adhesion MAPK8 +WIKIPW Focal Adhesion MAPK9 +WIKIPW Focal Adhesion PDGFC +WIKIPW Focal Adhesion MAP2K1 +WIKIPW Focal Adhesion MAP2K2 +WIKIPW Focal Adhesion MAP2K3 +WIKIPW Focal Adhesion MAP2K5 +WIKIPW Focal Adhesion MAP2K6 +WIKIPW Focal Adhesion RELN +WIKIPW Focal Adhesion PAK6 +WIKIPW Focal Adhesion PAK7 +WIKIPW Focal Adhesion BAD +WIKIPW Focal Adhesion PTEN +WIKIPW Focal Adhesion PTK2 +WIKIPW Focal Adhesion PTK6 +WIKIPW Focal Adhesion PXN +WIKIPW Focal Adhesion RAC1 +WIKIPW Focal Adhesion RAC2 +WIKIPW Focal Adhesion RAC3 +WIKIPW Focal Adhesion RAF1 +WIKIPW Focal Adhesion RAP1A +WIKIPW Focal Adhesion RAP1B +WIKIPW Focal Adhesion CCND1 +WIKIPW Focal Adhesion BCL2 +WIKIPW Focal Adhesion ACTB +WIKIPW Focal Adhesion ROCK1 +WIKIPW Focal Adhesion MAPK12 +WIKIPW Focal Adhesion TNN +WIKIPW Focal Adhesion BLK +WIKIPW Focal Adhesion SHC1 +WIKIPW Focal Adhesion SOS1 +WIKIPW Focal Adhesion SPP1 +WIKIPW Focal Adhesion SRC +WIKIPW Focal Adhesion SRMS +WIKIPW Focal Adhesion BRAF +WIKIPW Focal Adhesion THBS1 +WIKIPW Focal Adhesion THBS2 +WIKIPW Focal Adhesion THBS3 +WIKIPW Focal Adhesion THBS4 +WIKIPW Focal Adhesion TLN1 +WIKIPW Focal Adhesion ACTG1 +WIKIPW Focal Adhesion TNR +WIKIPW Focal Adhesion TNXB +WIKIPW Focal Adhesion LOC727758 +WIKIPW Focal Adhesion TXK +WIKIPW Focal Adhesion VASP +WIKIPW Focal Adhesion VAV1 +WIKIPW Focal Adhesion VCL +WIKIPW Focal Adhesion VEGFB +WIKIPW Focal Adhesion VEGFC +WIKIPW Focal Adhesion VTN +WIKIPW Focal Adhesion VWF +WIKIPW Focal Adhesion ZYX +WIKIPW Focal Adhesion PDGFD +WIKIPW Focal Adhesion CAPN1 +WIKIPW Focal Adhesion ITGA10 +WIKIPW Focal Adhesion ITGA8 +WIKIPW Focal Adhesion MYLK2 +WIKIPW Focal Adhesion CAV1 +WIKIPW Focal Adhesion CAV2 +WIKIPW Focal Adhesion CAV3 +WIKIPW Focal Adhesion ACTN1 +WIKIPW Focal Adhesion TNK1 +WIKIPW Focal Adhesion CCND2 +WIKIPW Focal Adhesion CCND3 +WIKIPW Focal Adhesion ROCK2 +WIKIPW Focal Adhesion BCAR1 +WIKIPW Focal Adhesion FARP2 +WIKIPW Focal Adhesion CDC42 +WIKIPW Synthesis and Degradation of Ketone Bodies HMGCS2 +WIKIPW Synthesis and Degradation of Ketone Bodies ACAT1 +WIKIPW Synthesis and Degradation of Ketone Bodies OXCT1 +WIKIPW Synthesis and Degradation of Ketone Bodies BDH1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor CRK +WIKIPW Signaling of Hepatocyte Growth Factor Receptor CRKL +WIKIPW Signaling of Hepatocyte Growth Factor Receptor DOCK1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor ELK1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor PTK2B +WIKIPW Signaling of Hepatocyte Growth Factor Receptor FOS +WIKIPW Signaling of Hepatocyte Growth Factor Receptor GAB1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor GRB2 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor RAPGEF1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor HGF +WIKIPW Signaling of Hepatocyte Growth Factor Receptor HRAS +WIKIPW Signaling of Hepatocyte Growth Factor Receptor ITGA1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor ITGB1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor JUN +WIKIPW Signaling of Hepatocyte Growth Factor Receptor PAK1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor PIK3CA +WIKIPW Signaling of Hepatocyte Growth Factor Receptor MAPK1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor MAPK3 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor MAPK8 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor MAP2K1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor MAP2K2 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor PTEN +WIKIPW Signaling of Hepatocyte Growth Factor Receptor PTK2 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor PTPN11 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor PXN +WIKIPW Signaling of Hepatocyte Growth Factor Receptor RAF1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor RAP1A +WIKIPW Signaling of Hepatocyte Growth Factor Receptor RAP1B +WIKIPW Signaling of Hepatocyte Growth Factor Receptor RASA1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor SOS1 +WIKIPW Signaling of Hepatocyte Growth Factor Receptor SRC +WIKIPW Signaling of Hepatocyte Growth Factor Receptor STAT3 +WIKIPW FAS pathway and Stress induction of HSP regulation PARP1 +WIKIPW FAS pathway and Stress induction of HSP regulation DAXX +WIKIPW FAS pathway and Stress induction of HSP regulation DFFA +WIKIPW FAS pathway and Stress induction of HSP regulation DFFB +WIKIPW FAS pathway and Stress induction of HSP regulation APAF1 +WIKIPW FAS pathway and Stress induction of HSP regulation HSPB1 +WIKIPW FAS pathway and Stress induction of HSP regulation FAS +WIKIPW FAS pathway and Stress induction of HSP regulation IL1A +WIKIPW FAS pathway and Stress induction of HSP regulation FASLG +WIKIPW FAS pathway and Stress induction of HSP regulation JUN +WIKIPW FAS pathway and Stress induction of HSP regulation ARHGDIB +WIKIPW FAS pathway and Stress induction of HSP regulation LMNA +WIKIPW FAS pathway and Stress induction of HSP regulation LMNB1 +WIKIPW FAS pathway and Stress induction of HSP regulation MAP3K1 +WIKIPW FAS pathway and Stress induction of HSP regulation PAK1 +WIKIPW FAS pathway and Stress induction of HSP regulation PAK2 +WIKIPW FAS pathway and Stress induction of HSP regulation CYCS +WIKIPW FAS pathway and Stress induction of HSP regulation PRKDC +WIKIPW FAS pathway and Stress induction of HSP regulation MAPK8 +WIKIPW FAS pathway and Stress induction of HSP regulation RB1 +WIKIPW FAS pathway and Stress induction of HSP regulation BCL2 +WIKIPW FAS pathway and Stress induction of HSP regulation MAP2K4 +WIKIPW FAS pathway and Stress induction of HSP regulation SPTAN1 +WIKIPW FAS pathway and Stress induction of HSP regulation MAP3K7 +WIKIPW FAS pathway and Stress induction of HSP regulation TNF +WIKIPW FAS pathway and Stress induction of HSP regulation LOC731751 +WIKIPW FAS pathway and Stress induction of HSP regulation MAPKAPK3 +WIKIPW FAS pathway and Stress induction of HSP regulation CASP3 +WIKIPW FAS pathway and Stress induction of HSP regulation CASP6 +WIKIPW FAS pathway and Stress induction of HSP regulation CASP7 +WIKIPW FAS pathway and Stress induction of HSP regulation CASP8 +WIKIPW FAS pathway and Stress induction of HSP regulation CASP9 +WIKIPW FAS pathway and Stress induction of HSP regulation CASP10 +WIKIPW FAS pathway and Stress induction of HSP regulation LMNB2 +WIKIPW FAS pathway and Stress induction of HSP regulation RIPK2 +WIKIPW FAS pathway and Stress induction of HSP regulation FADD +WIKIPW FAS pathway and Stress induction of HSP regulation CFLAR +WIKIPW FAS pathway and Stress induction of HSP regulation MAPKAPK2 +WIKIPW Osteoblast COL1A1 +WIKIPW Osteoblast IBSP +WIKIPW Osteoblast ITGAV +WIKIPW Osteoblast ITGB3 +WIKIPW Osteoblast TNFRSF11B +WIKIPW Osteoblast PDGFB +WIKIPW Osteoblast PDGFRA +WIKIPW Osteoblast PDGFRB +WIKIPW Osteoblast PTH +WIKIPW Osteoblast PTH1R +WIKIPW Osteoblast FGF23 +WIKIPW Osteoblast TNFSF11 +WIKIPW Triacylglyceride Synthesis AGPAT2 +WIKIPW Triacylglyceride Synthesis MOGAT1 +WIKIPW Triacylglyceride Synthesis GK +WIKIPW Triacylglyceride Synthesis GK2 +WIKIPW Triacylglyceride Synthesis GPD1 +WIKIPW Triacylglyceride Synthesis MOGAT3 +WIKIPW Triacylglyceride Synthesis LIPC +WIKIPW Triacylglyceride Synthesis LIPE +WIKIPW Triacylglyceride Synthesis LPL +WIKIPW Triacylglyceride Synthesis AGPAT5 +WIKIPW Triacylglyceride Synthesis AGPAT3 +WIKIPW Triacylglyceride Synthesis AGPAT4 +WIKIPW Triacylglyceride Synthesis PNPLA2 +WIKIPW Triacylglyceride Synthesis GPAM +WIKIPW Triacylglyceride Synthesis MOGAT2 +WIKIPW Triacylglyceride Synthesis GNPAT +WIKIPW Triacylglyceride Synthesis DGAT2 +WIKIPW Triacylglyceride Synthesis LIPF +WIKIPW Triacylglyceride Synthesis AGPS +WIKIPW Triacylglyceride Synthesis PPAP2A +WIKIPW Triacylglyceride Synthesis PPAP2C +WIKIPW Triacylglyceride Synthesis PPAP2B +WIKIPW Triacylglyceride Synthesis DGAT1 +WIKIPW GPCRs, Class B Secretin-like CALCRL +WIKIPW GPCRs, Class B Secretin-like ADCYAP1R1 +WIKIPW GPCRs, Class B Secretin-like CRHR1 +WIKIPW GPCRs, Class B Secretin-like CRHR2 +WIKIPW GPCRs, Class B Secretin-like EMR1 +WIKIPW GPCRs, Class B Secretin-like LPHN1 +WIKIPW GPCRs, Class B Secretin-like LPHN2 +WIKIPW GPCRs, Class B Secretin-like LPHN3 +WIKIPW GPCRs, Class B Secretin-like GCGR +WIKIPW GPCRs, Class B Secretin-like GHRHR +WIKIPW GPCRs, Class B Secretin-like GIPR +WIKIPW GPCRs, Class B Secretin-like GLP1R +WIKIPW GPCRs, Class B Secretin-like EMR2 +WIKIPW GPCRs, Class B Secretin-like PTH1R +WIKIPW GPCRs, Class B Secretin-like PTH2R +WIKIPW GPCRs, Class B Secretin-like SCTR +WIKIPW GPCRs, Class B Secretin-like ELTD1 +WIKIPW GPCRs, Class B Secretin-like VIPR1 +WIKIPW GPCRs, Class B Secretin-like VIPR2 +WIKIPW GPCRs, Class B Secretin-like CALCR +WIKIPW GPCRs, Class B Secretin-like GLP2R +WIKIPW GPCRs, Class B Secretin-like CD97 +WIKIPW Ovarian Infertility Genes CDKN1B +WIKIPW Ovarian Infertility Genes CEBPB +WIKIPW Ovarian Infertility Genes DMC1 +WIKIPW Ovarian Infertility Genes CYP19A1 +WIKIPW Ovarian Infertility Genes DAZL +WIKIPW Ovarian Infertility Genes EGR1 +WIKIPW Ovarian Infertility Genes ESR2 +WIKIPW Ovarian Infertility Genes SYNE2 +WIKIPW Ovarian Infertility Genes FSHR +WIKIPW Ovarian Infertility Genes NR5A1 +WIKIPW Ovarian Infertility Genes GDF9 +WIKIPW Ovarian Infertility Genes GJA4 +WIKIPW Ovarian Infertility Genes INHA +WIKIPW Ovarian Infertility Genes LHCGR +WIKIPW Ovarian Infertility Genes SMAD3 +WIKIPW Ovarian Infertility Genes MLH1 +WIKIPW Ovarian Infertility Genes MSH5 +WIKIPW Ovarian Infertility Genes ATM +WIKIPW Ovarian Infertility Genes PGR +WIKIPW Ovarian Infertility Genes PRLR +WIKIPW Ovarian Infertility Genes PTGER2 +WIKIPW Ovarian Infertility Genes LOC651610 +WIKIPW Ovarian Infertility Genes BMPR1B +WIKIPW Ovarian Infertility Genes SMPD1 +WIKIPW Ovarian Infertility Genes VDR +WIKIPW Ovarian Infertility Genes ZP2 +WIKIPW Ovarian Infertility Genes ZP3 +WIKIPW Ovarian Infertility Genes NRIP1 +WIKIPW Ovarian Infertility Genes CCND2 +WIKIPW Ovarian Infertility Genes NCOR1 +WIKIPW G Protein Signaling Pathways AKAP8 +WIKIPW G Protein Signaling Pathways AKAP3 +WIKIPW G Protein Signaling Pathways GNA13 +WIKIPW G Protein Signaling Pathways GNB5 +WIKIPW G Protein Signaling Pathways ADCY1 +WIKIPW G Protein Signaling Pathways ADCY2 +WIKIPW G Protein Signaling Pathways ADCY3 +WIKIPW G Protein Signaling Pathways ADCY5 +WIKIPW G Protein Signaling Pathways ADCY6 +WIKIPW G Protein Signaling Pathways AKAP13 +WIKIPW G Protein Signaling Pathways AKAP11 +WIKIPW G Protein Signaling Pathways AKAP10 +WIKIPW G Protein Signaling Pathways AKAP2 +WIKIPW G Protein Signaling Pathways ADCY7 +WIKIPW G Protein Signaling Pathways ADCY8 +WIKIPW G Protein Signaling Pathways PALM2 +WIKIPW G Protein Signaling Pathways ADCY9 +WIKIPW G Protein Signaling Pathways ADCY4 +WIKIPW G Protein Signaling Pathways PRKD3 +WIKIPW G Protein Signaling Pathways PDE7B +WIKIPW G Protein Signaling Pathways GNA11 +WIKIPW G Protein Signaling Pathways GNA12 +WIKIPW G Protein Signaling Pathways GNA15 +WIKIPW G Protein Signaling Pathways GNAI1 +WIKIPW G Protein Signaling Pathways GNAI2 +WIKIPW G Protein Signaling Pathways GNAI3 +WIKIPW G Protein Signaling Pathways GNAL +WIKIPW G Protein Signaling Pathways GNAO1 +WIKIPW G Protein Signaling Pathways GNAQ +WIKIPW G Protein Signaling Pathways GNAS +WIKIPW G Protein Signaling Pathways GNAZ +WIKIPW G Protein Signaling Pathways GNB1 +WIKIPW G Protein Signaling Pathways GNB2 +WIKIPW G Protein Signaling Pathways GNB3 +WIKIPW G Protein Signaling Pathways GNG3 +WIKIPW G Protein Signaling Pathways GNG4 +WIKIPW G Protein Signaling Pathways GNG5 +WIKIPW G Protein Signaling Pathways GNG7 +WIKIPW G Protein Signaling Pathways GNG10 +WIKIPW G Protein Signaling Pathways GNG11 +WIKIPW G Protein Signaling Pathways GNGT1 +WIKIPW G Protein Signaling Pathways GNGT2 +WIKIPW G Protein Signaling Pathways HRAS +WIKIPW G Protein Signaling Pathways ITPR1 +WIKIPW G Protein Signaling Pathways KCNJ3 +WIKIPW G Protein Signaling Pathways KRAS +WIKIPW G Protein Signaling Pathways RHOA +WIKIPW G Protein Signaling Pathways PALM2-AKAP2 +WIKIPW G Protein Signaling Pathways NRAS +WIKIPW G Protein Signaling Pathways PDE1A +WIKIPW G Protein Signaling Pathways PDE1C +WIKIPW G Protein Signaling Pathways PDE4A +WIKIPW G Protein Signaling Pathways PDE4B +WIKIPW G Protein Signaling Pathways PDE4C +WIKIPW G Protein Signaling Pathways PDE4D +WIKIPW G Protein Signaling Pathways PDE7A +WIKIPW G Protein Signaling Pathways PDE8A +WIKIPW G Protein Signaling Pathways PDE1B +WIKIPW G Protein Signaling Pathways GNG13 +WIKIPW G Protein Signaling Pathways PLCB3 +WIKIPW G Protein Signaling Pathways DNAJC25 +WIKIPW G Protein Signaling Pathways DNAJC25-GNG10 +WIKIPW G Protein Signaling Pathways PPP3CA +WIKIPW G Protein Signaling Pathways PPP3CC +WIKIPW G Protein Signaling Pathways PRKACA +WIKIPW G Protein Signaling Pathways PRKACB +WIKIPW G Protein Signaling Pathways PRKACG +WIKIPW G Protein Signaling Pathways PRKAR1A +WIKIPW G Protein Signaling Pathways PRKAR1B +WIKIPW G Protein Signaling Pathways PRKAR2A +WIKIPW G Protein Signaling Pathways PRKAR2B +WIKIPW G Protein Signaling Pathways PRKCA +WIKIPW G Protein Signaling Pathways PRKCB +WIKIPW G Protein Signaling Pathways PRKCD +WIKIPW G Protein Signaling Pathways PRKCE +WIKIPW G Protein Signaling Pathways PRKCG +WIKIPW G Protein Signaling Pathways PRKCH +WIKIPW G Protein Signaling Pathways PRKCI +WIKIPW G Protein Signaling Pathways PRKD1 +WIKIPW G Protein Signaling Pathways PRKCQ +WIKIPW G Protein Signaling Pathways PRKCZ +WIKIPW G Protein Signaling Pathways GNG12 +WIKIPW G Protein Signaling Pathways RRAS +WIKIPW G Protein Signaling Pathways SLC9A1 +WIKIPW G Protein Signaling Pathways CALM1 +WIKIPW G Protein Signaling Pathways CALM2 +WIKIPW G Protein Signaling Pathways CALM3 +WIKIPW G Protein Signaling Pathways AKAP1 +WIKIPW G Protein Signaling Pathways PDE8B +WIKIPW G Protein Signaling Pathways AKAP4 +WIKIPW G Protein Signaling Pathways ARHGEF1 +WIKIPW G Protein Signaling Pathways GNG8 +WIKIPW G Protein Signaling Pathways AKAP7 +WIKIPW G Protein Signaling Pathways AKAP6 +WIKIPW G Protein Signaling Pathways AKAP5 +WIKIPW G Protein Signaling Pathways AKAP12 +WIKIPW G Protein Signaling Pathways GNA14 +WIKIPW Fatty Acid Biosynthesis DECR1 +WIKIPW Fatty Acid Biosynthesis ECH1 +WIKIPW Fatty Acid Biosynthesis ECHS1 +WIKIPW Fatty Acid Biosynthesis ACSL1 +WIKIPW Fatty Acid Biosynthesis ACSL3 +WIKIPW Fatty Acid Biosynthesis ACSL4 +WIKIPW Fatty Acid Biosynthesis FASN +WIKIPW Fatty Acid Biosynthesis ACSL6 +WIKIPW Fatty Acid Biosynthesis HADH +WIKIPW Fatty Acid Biosynthesis ACACA +WIKIPW Fatty Acid Biosynthesis ACACB +WIKIPW Fatty Acid Biosynthesis ACLY +WIKIPW Fatty Acid Biosynthesis PC +WIKIPW Fatty Acid Biosynthesis MECR +WIKIPW Fatty Acid Biosynthesis ACSL5 +WIKIPW Fatty Acid Biosynthesis ECHDC2 +WIKIPW Fatty Acid Biosynthesis PECR +WIKIPW Fatty Acid Biosynthesis ECHDC1 +WIKIPW Fatty Acid Biosynthesis ACSS2 +WIKIPW Fatty Acid Biosynthesis SCD +WIKIPW Fatty Acid Biosynthesis ECHDC3 +WIKIPW Wnt Signaling Pathway NetPath CRYBB2 +WIKIPW Wnt Signaling Pathway NetPath CSNK1A1 +WIKIPW Wnt Signaling Pathway NetPath CSNK1D +WIKIPW Wnt Signaling Pathway NetPath CSNK1E +WIKIPW Wnt Signaling Pathway NetPath CSNK2A1 +WIKIPW Wnt Signaling Pathway NetPath CSNK2A2 +WIKIPW Wnt Signaling Pathway NetPath CSNK2B +WIKIPW Wnt Signaling Pathway NetPath CTBP1 +WIKIPW Wnt Signaling Pathway NetPath CTBP2 +WIKIPW Wnt Signaling Pathway NetPath CTNNB1 +WIKIPW Wnt Signaling Pathway NetPath DAB2 +WIKIPW Wnt Signaling Pathway NetPath DLG1 +WIKIPW Wnt Signaling Pathway NetPath DLG2 +WIKIPW Wnt Signaling Pathway NetPath DLG4 +WIKIPW Wnt Signaling Pathway NetPath DVL1 +WIKIPW Wnt Signaling Pathway NetPath DVL2 +WIKIPW Wnt Signaling Pathway NetPath DVL3 +WIKIPW Wnt Signaling Pathway NetPath MARK2 +WIKIPW Wnt Signaling Pathway NetPath EP300 +WIKIPW Wnt Signaling Pathway NetPath AKT1 +WIKIPW Wnt Signaling Pathway NetPath FHL2 +WIKIPW Wnt Signaling Pathway NetPath ANKRD6 +WIKIPW Wnt Signaling Pathway NetPath DKK1 +WIKIPW Wnt Signaling Pathway NetPath DAAM1 +WIKIPW Wnt Signaling Pathway NetPath FRAT2 +WIKIPW Wnt Signaling Pathway NetPath NR5A1 +WIKIPW Wnt Signaling Pathway NetPath FZD2 +WIKIPW Wnt Signaling Pathway NetPath MAGI3 +WIKIPW Wnt Signaling Pathway NetPath HIPK2 +WIKIPW Wnt Signaling Pathway NetPath BRD7 +WIKIPW Wnt Signaling Pathway NetPath GSK3B +WIKIPW Wnt Signaling Pathway NetPath TAX1BP3 +WIKIPW Wnt Signaling Pathway NetPath APC +WIKIPW Wnt Signaling Pathway NetPath JUN +WIKIPW Wnt Signaling Pathway NetPath JUP +WIKIPW Wnt Signaling Pathway NetPath RHOA +WIKIPW Wnt Signaling Pathway NetPath LRP1 +WIKIPW Wnt Signaling Pathway NetPath LRP6 +WIKIPW Wnt Signaling Pathway NetPath LRP5 +WIKIPW Wnt Signaling Pathway NetPath ARRB1 +WIKIPW Wnt Signaling Pathway NetPath SMAD3 +WIKIPW Wnt Signaling Pathway NetPath SMAD4 +WIKIPW Wnt Signaling Pathway NetPath ARRB2 +WIKIPW Wnt Signaling Pathway NetPath MAP1B +WIKIPW Wnt Signaling Pathway NetPath MYB +WIKIPW Wnt Signaling Pathway NetPath ROR2 +WIKIPW Wnt Signaling Pathway NetPath PAX2 +WIKIPW Wnt Signaling Pathway NetPath LEF1 +WIKIPW Wnt Signaling Pathway NetPath PIAS4 +WIKIPW Wnt Signaling Pathway NetPath NLK +WIKIPW Wnt Signaling Pathway NetPath PIN1 +WIKIPW Wnt Signaling Pathway NetPath WNT4 +WIKIPW Wnt Signaling Pathway NetPath PPP2CA +WIKIPW Wnt Signaling Pathway NetPath PRKCA +WIKIPW Wnt Signaling Pathway NetPath PRKCB +WIKIPW Wnt Signaling Pathway NetPath PRKCG +WIKIPW Wnt Signaling Pathway NetPath MAPK1 +WIKIPW Wnt Signaling Pathway NetPath MAPK3 +WIKIPW Wnt Signaling Pathway NetPath MAPK8 +WIKIPW Wnt Signaling Pathway NetPath MAPK9 +WIKIPW Wnt Signaling Pathway NetPath CTNNBIP1 +WIKIPW Wnt Signaling Pathway NetPath VANGL2 +WIKIPW Wnt Signaling Pathway NetPath LY6G5B +WIKIPW Wnt Signaling Pathway NetPath RAC1 +WIKIPW Wnt Signaling Pathway NetPath RAF1 +WIKIPW Wnt Signaling Pathway NetPath SENP2 +WIKIPW Wnt Signaling Pathway NetPath CCND1 +WIKIPW Wnt Signaling Pathway NetPath BCL9 +WIKIPW Wnt Signaling Pathway NetPath SALL1 +WIKIPW Wnt Signaling Pathway NetPath SFRP1 +WIKIPW Wnt Signaling Pathway NetPath SFRP2 +WIKIPW Wnt Signaling Pathway NetPath SKP1 +WIKIPW Wnt Signaling Pathway NetPath SOX1 +WIKIPW Wnt Signaling Pathway NetPath SOX9 +WIKIPW Wnt Signaling Pathway NetPath MAP3K7 +WIKIPW Wnt Signaling Pathway NetPath TBP +WIKIPW Wnt Signaling Pathway NetPath TCF4 +WIKIPW Wnt Signaling Pathway NetPath TCF3 +WIKIPW Wnt Signaling Pathway NetPath TFAP2A +WIKIPW Wnt Signaling Pathway NetPath SUMO1 +WIKIPW Wnt Signaling Pathway NetPath WNT1 +WIKIPW Wnt Signaling Pathway NetPath WNT2 +WIKIPW Wnt Signaling Pathway NetPath WNT3 +WIKIPW Wnt Signaling Pathway NetPath WNT5A +WIKIPW Wnt Signaling Pathway NetPath WNT7A +WIKIPW Wnt Signaling Pathway NetPath FZD5 +WIKIPW Wnt Signaling Pathway NetPath CXXC4 +WIKIPW Wnt Signaling Pathway NetPath CAMK2A +WIKIPW Wnt Signaling Pathway NetPath CAMK2B +WIKIPW Wnt Signaling Pathway NetPath CAMK2D +WIKIPW Wnt Signaling Pathway NetPath CAMK2G +WIKIPW Wnt Signaling Pathway NetPath AXIN1 +WIKIPW Wnt Signaling Pathway NetPath AXIN2 +WIKIPW Wnt Signaling Pathway NetPath FZD1 +WIKIPW Wnt Signaling Pathway NetPath FZD4 +WIKIPW Wnt Signaling Pathway NetPath FZD6 +WIKIPW Wnt Signaling Pathway NetPath FZD7 +WIKIPW Wnt Signaling Pathway NetPath FZD8 +WIKIPW Wnt Signaling Pathway NetPath FZD9 +WIKIPW Wnt Signaling Pathway NetPath CUL1 +WIKIPW Wnt Signaling Pathway NetPath NKD1 +WIKIPW Wnt Signaling Pathway NetPath RUNX2 +WIKIPW Wnt Signaling Pathway NetPath RUVBL1 +WIKIPW Wnt Signaling Pathway NetPath BTRC +WIKIPW Wnt Signaling Pathway NetPath WNT3A +WIKIPW Wnt Signaling Pathway NetPath MAPK8IP1 +WIKIPW Wnt Signaling Pathway NetPath CDC2 +WIKIPW Wnt Signaling Pathway NetPath CDC25C +WIKIPW Wnt Signaling Pathway NetPath CDH1 +WIKIPW IL-6 Signaling Pathway CDK5 +WIKIPW IL-6 Signaling Pathway CDK9 +WIKIPW IL-6 Signaling Pathway CEBPB +WIKIPW IL-6 Signaling Pathway CREBBP +WIKIPW IL-6 Signaling Pathway MAPK14 +WIKIPW IL-6 Signaling Pathway DAXX +WIKIPW IL-6 Signaling Pathway EIF4E +WIKIPW IL-6 Signaling Pathway EIF4EBP1 +WIKIPW IL-6 Signaling Pathway EP300 +WIKIPW IL-6 Signaling Pathway ERBB2 +WIKIPW IL-6 Signaling Pathway ERBB3 +WIKIPW IL-6 Signaling Pathway AKT1 +WIKIPW IL-6 Signaling Pathway PTK2B +WIKIPW IL-6 Signaling Pathway FES +WIKIPW IL-6 Signaling Pathway FGR +WIKIPW IL-6 Signaling Pathway FOXO1 +WIKIPW IL-6 Signaling Pathway FOXO3 +WIKIPW IL-6 Signaling Pathway FOS +WIKIPW IL-6 Signaling Pathway FYN +WIKIPW IL-6 Signaling Pathway GAB1 +WIKIPW IL-6 Signaling Pathway PPP2R3B +WIKIPW IL-6 Signaling Pathway GRB2 +WIKIPW IL-6 Signaling Pathway GSK3B +WIKIPW IL-6 Signaling Pathway HCK +WIKIPW IL-6 Signaling Pathway HDAC1 +WIKIPW IL-6 Signaling Pathway HRAS +WIKIPW IL-6 Signaling Pathway HSPB1 +WIKIPW IL-6 Signaling Pathway HSP90AA1 +WIKIPW IL-6 Signaling Pathway IL6 +WIKIPW IL-6 Signaling Pathway IL6R +WIKIPW IL-6 Signaling Pathway IL6ST +WIKIPW IL-6 Signaling Pathway INPPL1 +WIKIPW IL-6 Signaling Pathway AR +WIKIPW IL-6 Signaling Pathway JAK1 +WIKIPW IL-6 Signaling Pathway JAK2 +WIKIPW IL-6 Signaling Pathway JUN +WIKIPW IL-6 Signaling Pathway LYN +WIKIPW IL-6 Signaling Pathway MAPT +WIKIPW IL-6 Signaling Pathway MAP3K4 +WIKIPW IL-6 Signaling Pathway FOXO4 +WIKIPW IL-6 Signaling Pathway NFKB1 +WIKIPW IL-6 Signaling Pathway NLK +WIKIPW IL-6 Signaling Pathway PIK3R1 +WIKIPW IL-6 Signaling Pathway PIK3R2 +WIKIPW IL-6 Signaling Pathway PLCG1 +WIKIPW IL-6 Signaling Pathway PPP2CA +WIKIPW IL-6 Signaling Pathway PPP2CB +WIKIPW IL-6 Signaling Pathway PPP2R1A +WIKIPW IL-6 Signaling Pathway PPP2R1B +WIKIPW IL-6 Signaling Pathway PPP2R2A +WIKIPW IL-6 Signaling Pathway PPP2R2B +WIKIPW IL-6 Signaling Pathway PPP2R2C +WIKIPW IL-6 Signaling Pathway PPP2R3A +WIKIPW IL-6 Signaling Pathway PPP2R4 +WIKIPW IL-6 Signaling Pathway PPP2R5A +WIKIPW IL-6 Signaling Pathway PPP2R5B +WIKIPW IL-6 Signaling Pathway PPP2R5C +WIKIPW IL-6 Signaling Pathway PPP2R5D +WIKIPW IL-6 Signaling Pathway PPP2R5E +WIKIPW IL-6 Signaling Pathway PRKCD +WIKIPW IL-6 Signaling Pathway MAPK1 +WIKIPW IL-6 Signaling Pathway MAPK3 +WIKIPW IL-6 Signaling Pathway MAPK8 +WIKIPW IL-6 Signaling Pathway MAP2K1 +WIKIPW IL-6 Signaling Pathway MAP2K2 +WIKIPW IL-6 Signaling Pathway MAP2K6 +WIKIPW IL-6 Signaling Pathway BAD +WIKIPW IL-6 Signaling Pathway PTK2 +WIKIPW IL-6 Signaling Pathway PTPN11 +WIKIPW IL-6 Signaling Pathway PXN +WIKIPW IL-6 Signaling Pathway RAC1 +WIKIPW IL-6 Signaling Pathway RAF1 +WIKIPW IL-6 Signaling Pathway RB1 +WIKIPW IL-6 Signaling Pathway RPS6KA2 +WIKIPW IL-6 Signaling Pathway RPS6KB1 +WIKIPW IL-6 Signaling Pathway MAP2K4 +WIKIPW IL-6 Signaling Pathway SGK1 +WIKIPW IL-6 Signaling Pathway SHC1 +WIKIPW IL-6 Signaling Pathway BMX +WIKIPW IL-6 Signaling Pathway SOS1 +WIKIPW IL-6 Signaling Pathway STAT1 +WIKIPW IL-6 Signaling Pathway STAT3 +WIKIPW IL-6 Signaling Pathway MAP3K7 +WIKIPW IL-6 Signaling Pathway HNF1A +WIKIPW IL-6 Signaling Pathway BTK +WIKIPW IL-6 Signaling Pathway TEC +WIKIPW IL-6 Signaling Pathway TYK2 +WIKIPW IL-6 Signaling Pathway VAV1 +WIKIPW IL-6 Signaling Pathway CASP3 +WIKIPW IL-6 Signaling Pathway EIF2A +WIKIPW IL-6 Signaling Pathway CASP9 +WIKIPW IL-6 Signaling Pathway NCOA1 +WIKIPW IL-6 Signaling Pathway CDK5R1 +WIKIPW IL-6 Signaling Pathway SOCS3 +WIKIPW IL-6 Signaling Pathway MAPKAPK2 +WIKIPW IL-6 Signaling Pathway CD40 +WIKIPW IL-6 Signaling Pathway GAB2 +WIKIPW TGF-beta Receptor Signaling Pathway LOC100133982 +WIKIPW TGF-beta Receptor Signaling Pathway TRAP1 +WIKIPW TGF-beta Receptor Signaling Pathway CDK2 +WIKIPW TGF-beta Receptor Signaling Pathway CDK4 +WIKIPW TGF-beta Receptor Signaling Pathway CDK6 +WIKIPW TGF-beta Receptor Signaling Pathway CDKN1A +WIKIPW TGF-beta Receptor Signaling Pathway ANAPC10 +WIKIPW TGF-beta Receptor Signaling Pathway YAP1 +WIKIPW TGF-beta Receptor Signaling Pathway MAP3K7IP1 +WIKIPW TGF-beta Receptor Signaling Pathway CTCF +WIKIPW TGF-beta Receptor Signaling Pathway GIPC1 +WIKIPW TGF-beta Receptor Signaling Pathway COPS5 +WIKIPW TGF-beta Receptor Signaling Pathway STRAP +WIKIPW TGF-beta Receptor Signaling Pathway STK11IP +WIKIPW TGF-beta Receptor Signaling Pathway ATF2 +WIKIPW TGF-beta Receptor Signaling Pathway CREBBP +WIKIPW TGF-beta Receptor Signaling Pathway MAPK14 +WIKIPW TGF-beta Receptor Signaling Pathway CTNNB1 +WIKIPW TGF-beta Receptor Signaling Pathway DAB2 +WIKIPW TGF-beta Receptor Signaling Pathway DAXX +WIKIPW TGF-beta Receptor Signaling Pathway AP2B1 +WIKIPW TGF-beta Receptor Signaling Pathway EID2 +WIKIPW TGF-beta Receptor Signaling Pathway DVL1 +WIKIPW TGF-beta Receptor Signaling Pathway E2F4 +WIKIPW TGF-beta Receptor Signaling Pathway E2F5 +WIKIPW TGF-beta Receptor Signaling Pathway ENG +WIKIPW TGF-beta Receptor Signaling Pathway EP300 +WIKIPW TGF-beta Receptor Signaling Pathway ESR1 +WIKIPW TGF-beta Receptor Signaling Pathway ETS1 +WIKIPW TGF-beta Receptor Signaling Pathway FKBP1A +WIKIPW TGF-beta Receptor Signaling Pathway FOXG1 +WIKIPW TGF-beta Receptor Signaling Pathway SNW1 +WIKIPW TGF-beta Receptor Signaling Pathway FOXO1 +WIKIPW TGF-beta Receptor Signaling Pathway FOXO3 +WIKIPW TGF-beta Receptor Signaling Pathway FNTA +WIKIPW TGF-beta Receptor Signaling Pathway FOS +WIKIPW TGF-beta Receptor Signaling Pathway FOSB +WIKIPW TGF-beta Receptor Signaling Pathway ANAPC2 +WIKIPW TGF-beta Receptor Signaling Pathway ANAPC4 +WIKIPW TGF-beta Receptor Signaling Pathway HDAC1 +WIKIPW TGF-beta Receptor Signaling Pathway HNF4A +WIKIPW TGF-beta Receptor Signaling Pathway HOXA9 +WIKIPW TGF-beta Receptor Signaling Pathway HSPA8 +WIKIPW TGF-beta Receptor Signaling Pathway AR +WIKIPW TGF-beta Receptor Signaling Pathway JUN +WIKIPW TGF-beta Receptor Signaling Pathway JUNB +WIKIPW TGF-beta Receptor Signaling Pathway JUND +WIKIPW TGF-beta Receptor Signaling Pathway KPNB1 +WIKIPW TGF-beta Receptor Signaling Pathway SMAD2 +WIKIPW TGF-beta Receptor Signaling Pathway SMAD3 +WIKIPW TGF-beta Receptor Signaling Pathway SMAD4 +WIKIPW TGF-beta Receptor Signaling Pathway ARRB2 +WIKIPW TGF-beta Receptor Signaling Pathway SMAD6 +WIKIPW TGF-beta Receptor Signaling Pathway SMAD7 +WIKIPW TGF-beta Receptor Signaling Pathway MEF2A +WIKIPW TGF-beta Receptor Signaling Pathway MEF2C +WIKIPW TGF-beta Receptor Signaling Pathway FOXO4 +WIKIPW TGF-beta Receptor Signaling Pathway CITED1 +WIKIPW TGF-beta Receptor Signaling Pathway MYC +WIKIPW TGF-beta Receptor Signaling Pathway ATF3 +WIKIPW TGF-beta Receptor Signaling Pathway NFYA +WIKIPW TGF-beta Receptor Signaling Pathway NFYB +WIKIPW TGF-beta Receptor Signaling Pathway NFYC +WIKIPW TGF-beta Receptor Signaling Pathway LEF1 +WIKIPW TGF-beta Receptor Signaling Pathway FZR1 +WIKIPW TGF-beta Receptor Signaling Pathway ANAPC5 +WIKIPW TGF-beta Receptor Signaling Pathway ANAPC7 +WIKIPW TGF-beta Receptor Signaling Pathway PIK3R1 +WIKIPW TGF-beta Receptor Signaling Pathway PIK3R2 +WIKIPW TGF-beta Receptor Signaling Pathway PPP2R2A +WIKIPW TGF-beta Receptor Signaling Pathway PRKAR1B +WIKIPW TGF-beta Receptor Signaling Pathway PRKAR2A +WIKIPW TGF-beta Receptor Signaling Pathway PRKCB +WIKIPW TGF-beta Receptor Signaling Pathway PRKCD +WIKIPW TGF-beta Receptor Signaling Pathway DCP1A +WIKIPW TGF-beta Receptor Signaling Pathway PRKCG +WIKIPW TGF-beta Receptor Signaling Pathway ERBB2IP +WIKIPW TGF-beta Receptor Signaling Pathway MAPK8 +WIKIPW TGF-beta Receptor Signaling Pathway MAP2K3 +WIKIPW TGF-beta Receptor Signaling Pathway MAP2K6 +WIKIPW TGF-beta Receptor Signaling Pathway PARD3 +WIKIPW TGF-beta Receptor Signaling Pathway SMURF1 +WIKIPW TGF-beta Receptor Signaling Pathway STAMBPL1 +WIKIPW TGF-beta Receptor Signaling Pathway SNX6 +WIKIPW TGF-beta Receptor Signaling Pathway RB1 +WIKIPW TGF-beta Receptor Signaling Pathway RBL1 +WIKIPW TGF-beta Receptor Signaling Pathway RBL2 +WIKIPW TGF-beta Receptor Signaling Pathway CCND1 +WIKIPW TGF-beta Receptor Signaling Pathway ROCK1 +WIKIPW TGF-beta Receptor Signaling Pathway SDC2 +WIKIPW TGF-beta Receptor Signaling Pathway ANAPC1 +WIKIPW TGF-beta Receptor Signaling Pathway SMURF2 +WIKIPW TGF-beta Receptor Signaling Pathway SKI +WIKIPW TGF-beta Receptor Signaling Pathway SKIL +WIKIPW TGF-beta Receptor Signaling Pathway SKP1 +WIKIPW TGF-beta Receptor Signaling Pathway SNX1 +WIKIPW TGF-beta Receptor Signaling Pathway SNX2 +WIKIPW TGF-beta Receptor Signaling Pathway SP1 +WIKIPW TGF-beta Receptor Signaling Pathway SPARC +WIKIPW TGF-beta Receptor Signaling Pathway STK11 +WIKIPW TGF-beta Receptor Signaling Pathway MAP3K7 +WIKIPW TGF-beta Receptor Signaling Pathway ZEB1 +WIKIPW TGF-beta Receptor Signaling Pathway TFDP1 +WIKIPW TGF-beta Receptor Signaling Pathway TFDP2 +WIKIPW TGF-beta Receptor Signaling Pathway TGFB1 +WIKIPW TGF-beta Receptor Signaling Pathway TGFB2 +WIKIPW TGF-beta Receptor Signaling Pathway TGFB3 +WIKIPW TGF-beta Receptor Signaling Pathway TGFBR1 +WIKIPW TGF-beta Receptor Signaling Pathway TGFBR2 +WIKIPW TGF-beta Receptor Signaling Pathway TGFBR3 +WIKIPW TGF-beta Receptor Signaling Pathway TGIF1 +WIKIPW TGF-beta Receptor Signaling Pathway TP53 +WIKIPW TGF-beta Receptor Signaling Pathway TP73 +WIKIPW TGF-beta Receptor Signaling Pathway LOC727758 +WIKIPW TGF-beta Receptor Signaling Pathway UBE2D1 +WIKIPW TGF-beta Receptor Signaling Pathway UBE2D2 +WIKIPW TGF-beta Receptor Signaling Pathway UBE2D3 +WIKIPW TGF-beta Receptor Signaling Pathway SUMO1 +WIKIPW TGF-beta Receptor Signaling Pathway VDR +WIKIPW TGF-beta Receptor Signaling Pathway XPO1 +WIKIPW TGF-beta Receptor Signaling Pathway SNIP1 +WIKIPW TGF-beta Receptor Signaling Pathway NUP214 +WIKIPW TGF-beta Receptor Signaling Pathway CAMK2A +WIKIPW TGF-beta Receptor Signaling Pathway CAMK2B +WIKIPW TGF-beta Receptor Signaling Pathway CAMK2D +WIKIPW TGF-beta Receptor Signaling Pathway CAMK2G +WIKIPW TGF-beta Receptor Signaling Pathway AXIN1 +WIKIPW TGF-beta Receptor Signaling Pathway AXIN2 +WIKIPW TGF-beta Receptor Signaling Pathway CUL1 +WIKIPW TGF-beta Receptor Signaling Pathway PIAS1 +WIKIPW TGF-beta Receptor Signaling Pathway CAV1 +WIKIPW TGF-beta Receptor Signaling Pathway RUNX2 +WIKIPW TGF-beta Receptor Signaling Pathway NCOA1 +WIKIPW TGF-beta Receptor Signaling Pathway EIF3I +WIKIPW TGF-beta Receptor Signaling Pathway CDC23 +WIKIPW TGF-beta Receptor Signaling Pathway SNX4 +WIKIPW TGF-beta Receptor Signaling Pathway KAT2B +WIKIPW TGF-beta Receptor Signaling Pathway CDC16 +WIKIPW TGF-beta Receptor Signaling Pathway FOXH1 +WIKIPW TGF-beta Receptor Signaling Pathway BTRC +WIKIPW TGF-beta Receptor Signaling Pathway CCNE1 +WIKIPW TGF-beta Receptor Signaling Pathway PIAS2 +WIKIPW TGF-beta Receptor Signaling Pathway CCNB2 +WIKIPW TGF-beta Receptor Signaling Pathway HGS +WIKIPW TGF-beta Receptor Signaling Pathway ZFYVE9 +WIKIPW TGF-beta Receptor Signaling Pathway ACVRL1 +WIKIPW TGF-beta Receptor Signaling Pathway CD44 +WIKIPW TGF-beta Receptor Signaling Pathway CDC2 +WIKIPW TGF-beta Receptor Signaling Pathway ZEB2 +WIKIPW TGF-beta Receptor Signaling Pathway CDC25A +WIKIPW TGF-beta Receptor Signaling Pathway CDC27 +WIKIPW TGF-beta Receptor Signaling Pathway NUP153 +WIKIPW TGF-beta Receptor Signaling Pathway RBX1 +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation CPT2 +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation DCI +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation EHHADH +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation ACSL1 +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation ACSL3 +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation ACSL4 +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation HADHA +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation HADH +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation ACADL +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation ACADM +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation ACADS +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation ACADVL +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation PECR +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation SCP2 +WIKIPW Mitochondrial LC-Fatty Acid Beta-Oxidation SLC25A20 +WIKIPW MAPK signaling pathway RASGRP1 +WIKIPW MAPK signaling pathway MAP3K7IP1 +WIKIPW MAPK signaling pathway MAP4K1 +WIKIPW MAPK signaling pathway DUSP10 +WIKIPW MAPK signaling pathway RASGRP4 +WIKIPW MAPK signaling pathway ACVR1C +WIKIPW MAPK signaling pathway MAP3K8 +WIKIPW MAPK signaling pathway ATF2 +WIKIPW MAPK signaling pathway CRK +WIKIPW MAPK signaling pathway CRKL +WIKIPW MAPK signaling pathway TMEM37 +WIKIPW MAPK signaling pathway MAPK14 +WIKIPW MAPK signaling pathway DAXX +WIKIPW MAPK signaling pathway GADD45A +WIKIPW MAPK signaling pathway DDIT3 +WIKIPW MAPK signaling pathway DUSP1 +WIKIPW MAPK signaling pathway DUSP4 +WIKIPW MAPK signaling pathway DUSP5 +WIKIPW MAPK signaling pathway DUSP6 +WIKIPW MAPK signaling pathway DUSP7 +WIKIPW MAPK signaling pathway EGF +WIKIPW MAPK signaling pathway EGFR +WIKIPW MAPK signaling pathway ELK1 +WIKIPW MAPK signaling pathway AKT1 +WIKIPW MAPK signaling pathway AKT2 +WIKIPW MAPK signaling pathway FGF4 +WIKIPW MAPK signaling pathway MRAS +WIKIPW MAPK signaling pathway MAP3K7IP2 +WIKIPW MAPK signaling pathway FLNA +WIKIPW MAPK signaling pathway MAPK8IP3 +WIKIPW MAPK signaling pathway FOS +WIKIPW MAPK signaling pathway GCK +WIKIPW MAPK signaling pathway GNA12 +WIKIPW MAPK signaling pathway GRB2 +WIKIPW MAPK signaling pathway NR4A1 +WIKIPW MAPK signaling pathway HSPA1A +WIKIPW MAPK signaling pathway HSPA1B +WIKIPW MAPK signaling pathway HSPA5 +WIKIPW MAPK signaling pathway HSPA8 +WIKIPW MAPK signaling pathway HSPB1 +WIKIPW MAPK signaling pathway HSPB2 +WIKIPW MAPK signaling pathway FAS +WIKIPW MAPK signaling pathway IKBKB +WIKIPW MAPK signaling pathway IL1A +WIKIPW MAPK signaling pathway IL1B +WIKIPW MAPK signaling pathway IL1R1 +WIKIPW MAPK signaling pathway FASLG +WIKIPW MAPK signaling pathway JUN +WIKIPW MAPK signaling pathway JUND +WIKIPW MAPK signaling pathway KRAS +WIKIPW MAPK signaling pathway STMN1 +WIKIPW MAPK signaling pathway ARRB1 +WIKIPW MAPK signaling pathway ARRB2 +WIKIPW MAPK signaling pathway MAPT +WIKIPW MAPK signaling pathway MAX +WIKIPW MAPK signaling pathway MEF2C +WIKIPW MAPK signaling pathway MAP3K1 +WIKIPW MAPK signaling pathway MAP3K4 +WIKIPW MAPK signaling pathway MAP3K5 +WIKIPW MAPK signaling pathway MAP3K11 +WIKIPW MAPK signaling pathway MOS +WIKIPW MAPK signaling pathway MYC +WIKIPW MAPK signaling pathway ATF4 +WIKIPW MAPK signaling pathway NF1 +WIKIPW MAPK signaling pathway NFKB1 +WIKIPW MAPK signaling pathway NGF +WIKIPW MAPK signaling pathway NRAS +WIKIPW MAPK signaling pathway NTF4 +WIKIPW MAPK signaling pathway NTRK1 +WIKIPW MAPK signaling pathway MINK1 +WIKIPW MAPK signaling pathway PAK1 +WIKIPW MAPK signaling pathway PAK2 +WIKIPW MAPK signaling pathway ECSIT +WIKIPW MAPK signaling pathway PDGFB +WIKIPW MAPK signaling pathway PDGFRB +WIKIPW MAPK signaling pathway NLK +WIKIPW MAPK signaling pathway ZAK +WIKIPW MAPK signaling pathway PLA2G5 +WIKIPW MAPK signaling pathway PPM1A +WIKIPW MAPK signaling pathway PPM1B +WIKIPW MAPK signaling pathway PPP3CA +WIKIPW MAPK signaling pathway PPP3CB +WIKIPW MAPK signaling pathway PPP3CC +WIKIPW MAPK signaling pathway PPP3R1 +WIKIPW MAPK signaling pathway PPP3R2 +WIKIPW MAPK signaling pathway PPP5C +WIKIPW MAPK signaling pathway PRKACA +WIKIPW MAPK signaling pathway PRKCB +WIKIPW MAPK signaling pathway PRKCD +WIKIPW MAPK signaling pathway PRKCG +WIKIPW MAPK signaling pathway PRKCH +WIKIPW MAPK signaling pathway PRKCZ +WIKIPW MAPK signaling pathway MAPK1 +WIKIPW MAPK signaling pathway MAPK3 +WIKIPW MAPK signaling pathway MAPK4 +WIKIPW MAPK signaling pathway MAPK6 +WIKIPW MAPK signaling pathway MAPK7 +WIKIPW MAPK signaling pathway MAPK8 +WIKIPW MAPK signaling pathway MAPK9 +WIKIPW MAPK signaling pathway MAPK10 +WIKIPW MAPK signaling pathway MAPK13 +WIKIPW MAPK signaling pathway MAP2K1 +WIKIPW MAPK signaling pathway MAP2K2 +WIKIPW MAPK signaling pathway MAP2K5 +WIKIPW MAPK signaling pathway MAP2K6 +WIKIPW MAPK signaling pathway MAP2K7 +WIKIPW MAPK signaling pathway TAOK1 +WIKIPW MAPK signaling pathway PTPN7 +WIKIPW MAPK signaling pathway PTPRR +WIKIPW MAPK signaling pathway RAC1 +WIKIPW MAPK signaling pathway RAC2 +WIKIPW MAPK signaling pathway RAF1 +WIKIPW MAPK signaling pathway RAP1A +WIKIPW MAPK signaling pathway RAP1B +WIKIPW MAPK signaling pathway RASA1 +WIKIPW MAPK signaling pathway RASA2 +WIKIPW MAPK signaling pathway RASGRF2 +WIKIPW MAPK signaling pathway RPS6KA3 +WIKIPW MAPK signaling pathway BDNF +WIKIPW MAPK signaling pathway MAPK12 +WIKIPW MAPK signaling pathway MAP2K4 +WIKIPW MAPK signaling pathway SOS2 +WIKIPW MAPK signaling pathway SRF +WIKIPW MAPK signaling pathway BRAF +WIKIPW MAPK signaling pathway STK3 +WIKIPW MAPK signaling pathway MAP3K7 +WIKIPW MAPK signaling pathway TGFB1 +WIKIPW MAPK signaling pathway TGFB2 +WIKIPW MAPK signaling pathway TGFB3 +WIKIPW MAPK signaling pathway TGFBR1 +WIKIPW MAPK signaling pathway TGFBR2 +WIKIPW MAPK signaling pathway TNF +WIKIPW MAPK signaling pathway TP53 +WIKIPW MAPK signaling pathway TRAF2 +WIKIPW MAPK signaling pathway TRAF6 +WIKIPW MAPK signaling pathway MAP3K12 +WIKIPW MAPK signaling pathway IL1R2 +WIKIPW MAPK signaling pathway CASP1 +WIKIPW MAPK signaling pathway CASP2 +WIKIPW MAPK signaling pathway CASP3 +WIKIPW MAPK signaling pathway CASP6 +WIKIPW MAPK signaling pathway PLA2G10 +WIKIPW MAPK signaling pathway CASP7 +WIKIPW MAPK signaling pathway CASP8 +WIKIPW MAPK signaling pathway CASP9 +WIKIPW MAPK signaling pathway PTPN5 +WIKIPW MAPK signaling pathway MAP4K3 +WIKIPW MAPK signaling pathway IKBKG +WIKIPW MAPK signaling pathway MAPKAPK5 +WIKIPW MAPK signaling pathway MAPKSP1 +WIKIPW MAPK signaling pathway MAP3K14 +WIKIPW MAPK signaling pathway MAP3K6 +WIKIPW MAPK signaling pathway ACVR1B +WIKIPW MAPK signaling pathway MAP3K13 +WIKIPW MAPK signaling pathway MAPKAPK2 +WIKIPW MAPK signaling pathway CD14 +WIKIPW MAPK signaling pathway TAOK2 +WIKIPW MAPK signaling pathway MAP4K4 +WIKIPW MAPK signaling pathway CDC25B +WIKIPW MAPK signaling pathway CDC42 +WIKIPW Striated Muscle Contraction DES +WIKIPW Striated Muscle Contraction DMD +WIKIPW Striated Muscle Contraction MYBPC1 +WIKIPW Striated Muscle Contraction MYBPC2 +WIKIPW Striated Muscle Contraction MYBPC3 +WIKIPW Striated Muscle Contraction MYH3 +WIKIPW Striated Muscle Contraction MYH6 +WIKIPW Striated Muscle Contraction MYH8 +WIKIPW Striated Muscle Contraction MYL1 +WIKIPW Striated Muscle Contraction MYL2 +WIKIPW Striated Muscle Contraction MYL3 +WIKIPW Striated Muscle Contraction MYL4 +WIKIPW Striated Muscle Contraction NEB +WIKIPW Striated Muscle Contraction ACTA1 +WIKIPW Striated Muscle Contraction ACTA2 +WIKIPW Striated Muscle Contraction ACTC1 +WIKIPW Striated Muscle Contraction ACTG1 +WIKIPW Striated Muscle Contraction TMOD1 +WIKIPW Striated Muscle Contraction TNNC2 +WIKIPW Striated Muscle Contraction TNNC1 +WIKIPW Striated Muscle Contraction TNNI1 +WIKIPW Striated Muscle Contraction TNNI2 +WIKIPW Striated Muscle Contraction TNNI3 +WIKIPW Striated Muscle Contraction TNNT1 +WIKIPW Striated Muscle Contraction TNNT2 +WIKIPW Striated Muscle Contraction TNNT3 +WIKIPW Striated Muscle Contraction TPM1 +WIKIPW Striated Muscle Contraction TPM2 +WIKIPW Striated Muscle Contraction TPM3 +WIKIPW Striated Muscle Contraction TPM4 +WIKIPW Striated Muscle Contraction TTN +WIKIPW Striated Muscle Contraction VIM +WIKIPW Striated Muscle Contraction ACTN4 +WIKIPW Striated Muscle Contraction TCAP +WIKIPW Striated Muscle Contraction MYOM1 +WIKIPW Striated Muscle Contraction ACTN2 +WIKIPW Apoptosis Modulation by HSP70 HSPA1A +WIKIPW Apoptosis Modulation by HSP70 HSPA1B +WIKIPW Apoptosis Modulation by HSP70 FAS +WIKIPW Apoptosis Modulation by HSP70 MAP3K1 +WIKIPW Apoptosis Modulation by HSP70 NFKB1 +WIKIPW Apoptosis Modulation by HSP70 CYCS +WIKIPW Apoptosis Modulation by HSP70 MAPK10 +WIKIPW Apoptosis Modulation by HSP70 BID +WIKIPW Apoptosis Modulation by HSP70 TNFRSF1A +WIKIPW Apoptosis Modulation by HSP70 CASP2 +WIKIPW Apoptosis Modulation by HSP70 CASP3 +WIKIPW Apoptosis Modulation by HSP70 CASP6 +WIKIPW Apoptosis Modulation by HSP70 CASP7 +WIKIPW Apoptosis Modulation by HSP70 CASP8 +WIKIPW Apoptosis Modulation by HSP70 CASP9 +WIKIPW Apoptosis Modulation by HSP70 RIPK1 +WIKIPW Apoptosis Modulation by HSP70 FADD +WIKIPW Apoptosis Modulation by HSP70 AIFM1 +WIKIPW Mitochondrial Gene Expression PPARGC1B +WIKIPW Mitochondrial Gene Expression CREB1 +WIKIPW Mitochondrial Gene Expression PPRC1 +WIKIPW Mitochondrial Gene Expression GABPA +WIKIPW Mitochondrial Gene Expression GABPB1 +WIKIPW Mitochondrial Gene Expression HCFC1 +WIKIPW Mitochondrial Gene Expression NRF1 +WIKIPW Mitochondrial Gene Expression MYEF2 +WIKIPW Mitochondrial Gene Expression MTERFD1 +WIKIPW Mitochondrial Gene Expression TFB1M +WIKIPW Mitochondrial Gene Expression POLRMT +WIKIPW Mitochondrial Gene Expression PPP3CA +WIKIPW Mitochondrial Gene Expression TFB2M +WIKIPW Mitochondrial Gene Expression SP1 +WIKIPW Mitochondrial Gene Expression TFAM +WIKIPW Mitochondrial Gene Expression MTERF +WIKIPW Mitochondrial Gene Expression CAMK4 +WIKIPW IL-4 signaling Pathway HIST2H3C +WIKIPW IL-4 signaling Pathway ATF2 +WIKIPW IL-4 signaling Pathway CREBBP +WIKIPW IL-4 signaling Pathway MAPK14 +WIKIPW IL-4 signaling Pathway ADRBK2 +WIKIPW IL-4 signaling Pathway ELK1 +WIKIPW IL-4 signaling Pathway EP300 +WIKIPW IL-4 signaling Pathway AKT1 +WIKIPW IL-4 signaling Pathway ETS1 +WIKIPW IL-4 signaling Pathway FES +WIKIPW IL-4 signaling Pathway PRKD3 +WIKIPW IL-4 signaling Pathway FYN +WIKIPW IL-4 signaling Pathway GRB2 +WIKIPW IL-4 signaling Pathway HMGA1 +WIKIPW IL-4 signaling Pathway HIST2H3A +WIKIPW IL-4 signaling Pathway IL2RG +WIKIPW IL-4 signaling Pathway IL4 +WIKIPW IL-4 signaling Pathway IL4R +WIKIPW IL-4 signaling Pathway IL13RA1 +WIKIPW IL-4 signaling Pathway IRS1 +WIKIPW IL-4 signaling Pathway JAK1 +WIKIPW IL-4 signaling Pathway JAK2 +WIKIPW IL-4 signaling Pathway JAK3 +WIKIPW IL-4 signaling Pathway LCK +WIKIPW IL-4 signaling Pathway NFKB1 +WIKIPW IL-4 signaling Pathway PAWR +WIKIPW IL-4 signaling Pathway PIK3CA +WIKIPW IL-4 signaling Pathway PIK3CD +WIKIPW IL-4 signaling Pathway PIK3R1 +WIKIPW IL-4 signaling Pathway PIK3R2 +WIKIPW IL-4 signaling Pathway PLCG1 +WIKIPW IL-4 signaling Pathway PRKCD +WIKIPW IL-4 signaling Pathway PRKCI +WIKIPW IL-4 signaling Pathway PRKCZ +WIKIPW IL-4 signaling Pathway MAPK1 +WIKIPW IL-4 signaling Pathway MAPK3 +WIKIPW IL-4 signaling Pathway MAPK11 +WIKIPW IL-4 signaling Pathway BAD +WIKIPW IL-4 signaling Pathway PTK2 +WIKIPW IL-4 signaling Pathway PTPN6 +WIKIPW IL-4 signaling Pathway PTPN11 +WIKIPW IL-4 signaling Pathway RASA1 +WIKIPW IL-4 signaling Pathway RELA +WIKIPW IL-4 signaling Pathway BCL2L1 +WIKIPW IL-4 signaling Pathway RPS6KB1 +WIKIPW IL-4 signaling Pathway SHC1 +WIKIPW IL-4 signaling Pathway HIST2H3D +WIKIPW IL-4 signaling Pathway SOS1 +WIKIPW IL-4 signaling Pathway SPI1 +WIKIPW IL-4 signaling Pathway SRC +WIKIPW IL-4 signaling Pathway STAT1 +WIKIPW IL-4 signaling Pathway STAT5A +WIKIPW IL-4 signaling Pathway STAT6 +WIKIPW IL-4 signaling Pathway TYK2 +WIKIPW IL-4 signaling Pathway CXCR4 +WIKIPW IL-4 signaling Pathway STAM +WIKIPW IL-4 signaling Pathway SOCS1 +WIKIPW IL-4 signaling Pathway IRS2 +WIKIPW IL-4 signaling Pathway CBL +WIKIPW IL-4 signaling Pathway SOCS3 +WIKIPW IL-4 signaling Pathway DOK2 +WIKIPW IL-4 signaling Pathway SOCS5 +WIKIPW Wnt Signaling Pathway and Pluripotency FRAT1 +WIKIPW Wnt Signaling Pathway and Pluripotency FZD10 +WIKIPW Wnt Signaling Pathway and Pluripotency CREBBP +WIKIPW Wnt Signaling Pathway and Pluripotency CSNK1E +WIKIPW Wnt Signaling Pathway and Pluripotency CTBP1 +WIKIPW Wnt Signaling Pathway and Pluripotency CTBP2 +WIKIPW Wnt Signaling Pathway and Pluripotency CTNNB1 +WIKIPW Wnt Signaling Pathway and Pluripotency CTNND1 +WIKIPW Wnt Signaling Pathway and Pluripotency DVL1 +WIKIPW Wnt Signaling Pathway and Pluripotency DVL2 +WIKIPW Wnt Signaling Pathway and Pluripotency DVL3 +WIKIPW Wnt Signaling Pathway and Pluripotency EP300 +WIKIPW Wnt Signaling Pathway and Pluripotency ESRRB +WIKIPW Wnt Signaling Pathway and Pluripotency FZD2 +WIKIPW Wnt Signaling Pathway and Pluripotency FBXW2 +WIKIPW Wnt Signaling Pathway and Pluripotency FOXD3 +WIKIPW Wnt Signaling Pathway and Pluripotency PPP2R3B +WIKIPW Wnt Signaling Pathway and Pluripotency RACGAP1 +WIKIPW Wnt Signaling Pathway and Pluripotency GSK3B +WIKIPW Wnt Signaling Pathway and Pluripotency APC +WIKIPW Wnt Signaling Pathway and Pluripotency PPM1J +WIKIPW Wnt Signaling Pathway and Pluripotency JUN +WIKIPW Wnt Signaling Pathway and Pluripotency RHOA +WIKIPW Wnt Signaling Pathway and Pluripotency LDLR +WIKIPW Wnt Signaling Pathway and Pluripotency LRP6 +WIKIPW Wnt Signaling Pathway and Pluripotency LRP5 +WIKIPW Wnt Signaling Pathway and Pluripotency MMP7 +WIKIPW Wnt Signaling Pathway and Pluripotency MYC +WIKIPW Wnt Signaling Pathway and Pluripotency NFYA +WIKIPW Wnt Signaling Pathway and Pluripotency PAFAH1B1 +WIKIPW Wnt Signaling Pathway and Pluripotency LEF1 +WIKIPW Wnt Signaling Pathway and Pluripotency WNT16 +WIKIPW Wnt Signaling Pathway and Pluripotency NLK +WIKIPW Wnt Signaling Pathway and Pluripotency PLAU +WIKIPW Wnt Signaling Pathway and Pluripotency WNT4 +WIKIPW Wnt Signaling Pathway and Pluripotency POU5F1 +WIKIPW Wnt Signaling Pathway and Pluripotency PPARD +WIKIPW Wnt Signaling Pathway and Pluripotency PPP2CA +WIKIPW Wnt Signaling Pathway and Pluripotency PPP2CB +WIKIPW Wnt Signaling Pathway and Pluripotency PPP2R1A +WIKIPW Wnt Signaling Pathway and Pluripotency PPP2R1B +WIKIPW Wnt Signaling Pathway and Pluripotency PPP2R2A +WIKIPW Wnt Signaling Pathway and Pluripotency PPP2R2B +WIKIPW Wnt Signaling Pathway and Pluripotency PPP2R2C +WIKIPW Wnt Signaling Pathway and Pluripotency PPP2R3A +WIKIPW Wnt Signaling Pathway and Pluripotency PPP2R4 +WIKIPW Wnt Signaling Pathway and Pluripotency PPP2R5C +WIKIPW Wnt Signaling Pathway and Pluripotency PPP2R5E +WIKIPW Wnt Signaling Pathway and Pluripotency PRKCA +WIKIPW Wnt Signaling Pathway and Pluripotency PRKCB +WIKIPW Wnt Signaling Pathway and Pluripotency PRKCD +WIKIPW Wnt Signaling Pathway and Pluripotency PRKCE +WIKIPW Wnt Signaling Pathway and Pluripotency PRKCH +WIKIPW Wnt Signaling Pathway and Pluripotency PRKCI +WIKIPW Wnt Signaling Pathway and Pluripotency PRKD1 +WIKIPW Wnt Signaling Pathway and Pluripotency PRKCQ +WIKIPW Wnt Signaling Pathway and Pluripotency PRKCZ +WIKIPW Wnt Signaling Pathway and Pluripotency MAPK9 +WIKIPW Wnt Signaling Pathway and Pluripotency MAPK10 +WIKIPW Wnt Signaling Pathway and Pluripotency CCND1 +WIKIPW Wnt Signaling Pathway and Pluripotency SOX2 +WIKIPW Wnt Signaling Pathway and Pluripotency MAP3K7 +WIKIPW Wnt Signaling Pathway and Pluripotency TCF7 +WIKIPW Wnt Signaling Pathway and Pluripotency TCF7L2 +WIKIPW Wnt Signaling Pathway and Pluripotency TP53 +WIKIPW Wnt Signaling Pathway and Pluripotency WNT1 +WIKIPW Wnt Signaling Pathway and Pluripotency WNT2 +WIKIPW Wnt Signaling Pathway and Pluripotency WNT3 +WIKIPW Wnt Signaling Pathway and Pluripotency WNT5A +WIKIPW Wnt Signaling Pathway and Pluripotency WNT6 +WIKIPW Wnt Signaling Pathway and Pluripotency WNT7A +WIKIPW Wnt Signaling Pathway and Pluripotency WNT7B +WIKIPW Wnt Signaling Pathway and Pluripotency WNT10B +WIKIPW Wnt Signaling Pathway and Pluripotency WNT11 +WIKIPW Wnt Signaling Pathway and Pluripotency WNT2B +WIKIPW Wnt Signaling Pathway and Pluripotency WNT9B +WIKIPW Wnt Signaling Pathway and Pluripotency FZD5 +WIKIPW Wnt Signaling Pathway and Pluripotency FZD3 +WIKIPW Wnt Signaling Pathway and Pluripotency NANOG +WIKIPW Wnt Signaling Pathway and Pluripotency WNT10A +WIKIPW Wnt Signaling Pathway and Pluripotency FOSL1 +WIKIPW Wnt Signaling Pathway and Pluripotency WNT5B +WIKIPW Wnt Signaling Pathway and Pluripotency AXIN1 +WIKIPW Wnt Signaling Pathway and Pluripotency AXIN2 +WIKIPW Wnt Signaling Pathway and Pluripotency FZD1 +WIKIPW Wnt Signaling Pathway and Pluripotency FZD4 +WIKIPW Wnt Signaling Pathway and Pluripotency FZD6 +WIKIPW Wnt Signaling Pathway and Pluripotency FZD7 +WIKIPW Wnt Signaling Pathway and Pluripotency FZD8 +WIKIPW Wnt Signaling Pathway and Pluripotency FZD9 +WIKIPW Wnt Signaling Pathway and Pluripotency TCF7L1 +WIKIPW Wnt Signaling Pathway and Pluripotency NKD1 +WIKIPW Wnt Signaling Pathway and Pluripotency NKD2 +WIKIPW Wnt Signaling Pathway and Pluripotency CCND2 +WIKIPW Wnt Signaling Pathway and Pluripotency CCND3 +WIKIPW Wnt Signaling Pathway and Pluripotency WNT3A +WIKIPW Wnt Signaling Pathway and Pluripotency CD44 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) ATF2 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MAPK14 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) DAXX +WIKIPW p38 MAPK Signaling Pathway (BioCarta) DDIT3 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) ELK1 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) GRB2 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) HMGN1 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) HRAS +WIKIPW p38 MAPK Signaling Pathway (BioCarta) HSPB1 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MAX +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MEF2D +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MAP3K1 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MAP3K5 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MAP3K9 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MYC +WIKIPW p38 MAPK Signaling Pathway (BioCarta) PLA2G4A +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MAP2K6 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) RAC1 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) RASGRF1 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MAP2K4 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) SHC1 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) STAT1 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MAP3K7 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) TGFB2 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) TGFBR1 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) TRAF2 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MAPKAPK5 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MKNK1 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) TRADD +WIKIPW p38 MAPK Signaling Pathway (BioCarta) RIPK1 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) RPS6KA5 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) MAPKAPK2 +WIKIPW p38 MAPK Signaling Pathway (BioCarta) CDC42 +WIKIPW Nucleotide Metabolism ADSL +WIKIPW Nucleotide Metabolism ADSS +WIKIPW Nucleotide Metabolism DHFR +WIKIPW Nucleotide Metabolism PRPS1L1 +WIKIPW Nucleotide Metabolism HPRT1 +WIKIPW Nucleotide Metabolism IMPDH1 +WIKIPW Nucleotide Metabolism NME1 +WIKIPW Nucleotide Metabolism NME2 +WIKIPW Nucleotide Metabolism OAZ1 +WIKIPW Nucleotide Metabolism RRM2B +WIKIPW Nucleotide Metabolism POLA1 +WIKIPW Nucleotide Metabolism POLB +WIKIPW Nucleotide Metabolism POLD1 +WIKIPW Nucleotide Metabolism POLG +WIKIPW Nucleotide Metabolism PRPS1 +WIKIPW Nucleotide Metabolism PRPS2 +WIKIPW Nucleotide Metabolism RRM1 +WIKIPW Nucleotide Metabolism RRM2 +WIKIPW Nucleotide Metabolism SAT1 +WIKIPW Nucleotide Metabolism NME1-NME2 +WIKIPW Nucleotide Metabolism SRM +WIKIPW Eukaryotic Transcription Initiation POLR3H +WIKIPW Eukaryotic Transcription Initiation ERCC2 +WIKIPW Eukaryotic Transcription Initiation ERCC3 +WIKIPW Eukaryotic Transcription Initiation POLR1A +WIKIPW Eukaryotic Transcription Initiation GTF2A2 +WIKIPW Eukaryotic Transcription Initiation GTF2B +WIKIPW Eukaryotic Transcription Initiation GTF2E1 +WIKIPW Eukaryotic Transcription Initiation GTF2E2 +WIKIPW Eukaryotic Transcription Initiation GTF2F2 +WIKIPW Eukaryotic Transcription Initiation GTF2H1 +WIKIPW Eukaryotic Transcription Initiation GTF2H2 +WIKIPW Eukaryotic Transcription Initiation GTF2H3 +WIKIPW Eukaryotic Transcription Initiation GTF2H4 +WIKIPW Eukaryotic Transcription Initiation ILK +WIKIPW Eukaryotic Transcription Initiation MNAT1 +WIKIPW Eukaryotic Transcription Initiation POLR1D +WIKIPW Eukaryotic Transcription Initiation POLR3K +WIKIPW Eukaryotic Transcription Initiation POLR2A +WIKIPW Eukaryotic Transcription Initiation POLR2B +WIKIPW Eukaryotic Transcription Initiation POLR2C +WIKIPW Eukaryotic Transcription Initiation POLR2E +WIKIPW Eukaryotic Transcription Initiation POLR2F +WIKIPW Eukaryotic Transcription Initiation POLR2G +WIKIPW Eukaryotic Transcription Initiation POLR2H +WIKIPW Eukaryotic Transcription Initiation POLR2I +WIKIPW Eukaryotic Transcription Initiation POLR2J +WIKIPW Eukaryotic Transcription Initiation POLR2K +WIKIPW Eukaryotic Transcription Initiation POLR3B +WIKIPW Eukaryotic Transcription Initiation POLR3E +WIKIPW Eukaryotic Transcription Initiation GTF2H2B +WIKIPW Eukaryotic Transcription Initiation POLR3D +WIKIPW Eukaryotic Transcription Initiation TAF5 +WIKIPW Eukaryotic Transcription Initiation TAF6 +WIKIPW Eukaryotic Transcription Initiation TAF7 +WIKIPW Eukaryotic Transcription Initiation TAF9 +WIKIPW Eukaryotic Transcription Initiation TAF12 +WIKIPW Eukaryotic Transcription Initiation TAF13 +WIKIPW Eukaryotic Transcription Initiation TBP +WIKIPW Eukaryotic Transcription Initiation GTF2H2C +WIKIPW Eukaryotic Transcription Initiation POLR1B +WIKIPW Eukaryotic Transcription Initiation CCNH +WIKIPW Oxidative Stress MAPK14 +WIKIPW Oxidative Stress CYBA +WIKIPW Oxidative Stress CYP1A1 +WIKIPW Oxidative Stress NQO1 +WIKIPW Oxidative Stress FOS +WIKIPW Oxidative Stress TXN2 +WIKIPW Oxidative Stress GCLC +WIKIPW Oxidative Stress GPX1 +WIKIPW Oxidative Stress GPX3 +WIKIPW Oxidative Stress GSR +WIKIPW Oxidative Stress GSTT2 +WIKIPW Oxidative Stress HMOX1 +WIKIPW Oxidative Stress JUNB +WIKIPW Oxidative Stress MAOA +WIKIPW Oxidative Stress MGST1 +WIKIPW Oxidative Stress MT1X +WIKIPW Oxidative Stress NFIX +WIKIPW Oxidative Stress NFKB1 +WIKIPW Oxidative Stress UGT1A10 +WIKIPW Oxidative Stress UGT1A8 +WIKIPW Oxidative Stress UGT1A7 +WIKIPW Oxidative Stress UGT1A6 +WIKIPW Oxidative Stress UGT1A5 +WIKIPW Oxidative Stress UGT1A9 +WIKIPW Oxidative Stress UGT1A4 +WIKIPW Oxidative Stress UGT1A1 +WIKIPW Oxidative Stress UGT1A3 +WIKIPW Oxidative Stress MAPK10 +WIKIPW Oxidative Stress GSTT2B +WIKIPW Oxidative Stress SOD1 +WIKIPW Oxidative Stress SOD2 +WIKIPW Oxidative Stress SOD3 +WIKIPW Oxidative Stress SP1 +WIKIPW Oxidative Stress TXNRD1 +WIKIPW Oxidative Stress XDH +WIKIPW Oxidative Stress CAT +WIKIPW Diurnally regulated genes with circadian orthologs TUBB3 +WIKIPW Diurnally regulated genes with circadian orthologs CEBPB +WIKIPW Diurnally regulated genes with circadian orthologs NCKAP1 +WIKIPW Diurnally regulated genes with circadian orthologs SF3A3 +WIKIPW Diurnally regulated genes with circadian orthologs RBPMS +WIKIPW Diurnally regulated genes with circadian orthologs CBX3 +WIKIPW Diurnally regulated genes with circadian orthologs CRY1 +WIKIPW Diurnally regulated genes with circadian orthologs CRY2 +WIKIPW Diurnally regulated genes with circadian orthologs EIF4G2 +WIKIPW Diurnally regulated genes with circadian orthologs ETV6 +WIKIPW Diurnally regulated genes with circadian orthologs MAP3K7IP2 +WIKIPW Diurnally regulated genes with circadian orthologs ERC2 +WIKIPW Diurnally regulated genes with circadian orthologs GFRA1 +WIKIPW Diurnally regulated genes with circadian orthologs GSTM3 +WIKIPW Diurnally regulated genes with circadian orthologs GSTP1 +WIKIPW Diurnally regulated genes with circadian orthologs HLA-DMA +WIKIPW Diurnally regulated genes with circadian orthologs DNAJA1 +WIKIPW Diurnally regulated genes with circadian orthologs HSPA8 +WIKIPW Diurnally regulated genes with circadian orthologs IDI1 +WIKIPW Diurnally regulated genes with circadian orthologs ARNTL +WIKIPW Diurnally regulated genes with circadian orthologs MC1R +WIKIPW Diurnally regulated genes with circadian orthologs MYF6 +WIKIPW Diurnally regulated genes with circadian orthologs G0S2 +WIKIPW Diurnally regulated genes with circadian orthologs AZIN1 +WIKIPW Diurnally regulated genes with circadian orthologs ZFR +WIKIPW Diurnally regulated genes with circadian orthologs PER1 +WIKIPW Diurnally regulated genes with circadian orthologs PIGF +WIKIPW Diurnally regulated genes with circadian orthologs PPP1R3C +WIKIPW Diurnally regulated genes with circadian orthologs PPP2CB +WIKIPW Diurnally regulated genes with circadian orthologs PSMA4 +WIKIPW Diurnally regulated genes with circadian orthologs PURA +WIKIPW Diurnally regulated genes with circadian orthologs SUMO3 +WIKIPW Diurnally regulated genes with circadian orthologs KLF9 +WIKIPW Diurnally regulated genes with circadian orthologs BTG1 +WIKIPW Diurnally regulated genes with circadian orthologs CLDN5 +WIKIPW Diurnally regulated genes with circadian orthologs SUMO1 +WIKIPW Diurnally regulated genes with circadian orthologs UCP3 +WIKIPW Diurnally regulated genes with circadian orthologs UGP2 +WIKIPW Diurnally regulated genes with circadian orthologs NCOA4 +WIKIPW Diurnally regulated genes with circadian orthologs HIST1H2BN +WIKIPW Diurnally regulated genes with circadian orthologs PER2 +WIKIPW Diurnally regulated genes with circadian orthologs STBD1 +WIKIPW Diurnally regulated genes with circadian orthologs VAPA +WIKIPW Diurnally regulated genes with circadian orthologs QKI +WIKIPW Diurnally regulated genes with circadian orthologs CLOCK +WIKIPW Diurnally regulated genes with circadian orthologs HERPUD1 +WIKIPW Diurnally regulated genes with circadian orthologs DAZAP2 +WIKIPW Diurnally regulated genes with circadian orthologs NR1D2 +WIKIPW mRNA processing LOC100130109 +WIKIPW mRNA processing LOC100130932 +WIKIPW mRNA processing LOC100132425 +WIKIPW mRNA processing SFRS14 +WIKIPW mRNA processing RBM5 +WIKIPW mRNA processing HNRNPR +WIKIPW mRNA processing SRRM1 +WIKIPW mRNA processing SF3B4 +WIKIPW mRNA processing SF3A1 +WIKIPW mRNA processing CD2BP2 +WIKIPW mRNA processing NXF1 +WIKIPW mRNA processing PRPF8 +WIKIPW mRNA processing CUGBP1 +WIKIPW mRNA processing CUGBP2 +WIKIPW mRNA processing SFRS13A +WIKIPW mRNA processing CPSF4 +WIKIPW mRNA processing TXNL4A +WIKIPW mRNA processing PAPOLA +WIKIPW mRNA processing RNPS1 +WIKIPW mRNA processing SF3A3 +WIKIPW mRNA processing TMED10 +WIKIPW mRNA processing CLP1 +WIKIPW mRNA processing SF3B2 +WIKIPW mRNA processing NUDT21 +WIKIPW mRNA processing SFRS16 +WIKIPW mRNA processing DDX20 +WIKIPW mRNA processing U2AF2 +WIKIPW mRNA processing LOC119358 +WIKIPW mRNA processing CLK1 +WIKIPW mRNA processing CLK2 +WIKIPW mRNA processing CLK3 +WIKIPW mRNA processing SFRS12 +WIKIPW mRNA processing CSTF1 +WIKIPW mRNA processing CSTF2 +WIKIPW mRNA processing CSTF3 +WIKIPW mRNA processing DDX1 +WIKIPW mRNA processing DHX8 +WIKIPW mRNA processing DHX9 +WIKIPW mRNA processing DHX15 +WIKIPW mRNA processing XRN2 +WIKIPW mRNA processing DNAJC8 +WIKIPW mRNA processing NCBP2 +WIKIPW mRNA processing CSTF2T +WIKIPW mRNA processing DICER1 +WIKIPW mRNA processing SF3B3 +WIKIPW mRNA processing SF3B1 +WIKIPW mRNA processing PRPF6 +WIKIPW mRNA processing FUS +WIKIPW mRNA processing RBMX +WIKIPW mRNA processing CPSF1 +WIKIPW mRNA processing HNRNPA1 +WIKIPW mRNA processing HNRNPA2B1 +WIKIPW mRNA processing HNRNPAB +WIKIPW mRNA processing HNRNPC +WIKIPW mRNA processing HNRNPD +WIKIPW mRNA processing HNRNPH1 +WIKIPW mRNA processing HNRNPH2 +WIKIPW mRNA processing HNRNPK +WIKIPW mRNA processing HNRNPL +WIKIPW mRNA processing HNRNPU +WIKIPW mRNA processing PRMT2 +WIKIPW mRNA processing PRMT1 +WIKIPW mRNA processing HNRNPM +WIKIPW mRNA processing NCBP1 +WIKIPW mRNA processing NONO +WIKIPW mRNA processing YBX1 +WIKIPW mRNA processing PCBP2 +WIKIPW mRNA processing CDC40 +WIKIPW mRNA processing CPSF3 +WIKIPW mRNA processing CPSF2 +WIKIPW mRNA processing POLR2A +WIKIPW mRNA processing PPM1G +WIKIPW mRNA processing PRPF40A +WIKIPW mRNA processing METTL3 +WIKIPW mRNA processing PSKH1 +WIKIPW mRNA processing BRUNOL4 +WIKIPW mRNA processing PTBP1 +WIKIPW mRNA processing CLK4 +WIKIPW mRNA processing SF4 +WIKIPW mRNA processing LSM2 +WIKIPW mRNA processing PTBP2 +WIKIPW mRNA processing RPL36A +WIKIPW mRNA processing SFPQ +WIKIPW mRNA processing SFRS1 +WIKIPW mRNA processing SFRS2 +WIKIPW mRNA processing SFRS3 +WIKIPW mRNA processing SFRS4 +WIKIPW mRNA processing SFRS5 +WIKIPW mRNA processing SFRS6 +WIKIPW mRNA processing SFRS7 +WIKIPW mRNA processing SFRS8 +WIKIPW mRNA processing TRA2B +WIKIPW mRNA processing LOC643446 +WIKIPW mRNA processing LOC645691 +WIKIPW mRNA processing LOC650638 +WIKIPW mRNA processing LOC653155 +WIKIPW mRNA processing LOC653884 +WIKIPW mRNA processing LOC653889 +WIKIPW mRNA processing SNRNP70 +WIKIPW mRNA processing SNRPA +WIKIPW mRNA processing SNRPA1 +WIKIPW mRNA processing SNRPB +WIKIPW mRNA processing SNRPB2 +WIKIPW mRNA processing SNRPD1 +WIKIPW mRNA processing SNRPD2 +WIKIPW mRNA processing SNRPD3 +WIKIPW mRNA processing SNRPE +WIKIPW mRNA processing SNRPF +WIKIPW mRNA processing SNRPG +WIKIPW mRNA processing SNRPN +WIKIPW mRNA processing SRP54 +WIKIPW mRNA processing SRPK1 +WIKIPW mRNA processing SRPK2 +WIKIPW mRNA processing SUPT5H +WIKIPW mRNA processing U2AF1 +WIKIPW mRNA processing PABPN1 +WIKIPW mRNA processing SF3A2 +WIKIPW mRNA processing SMC1A +WIKIPW mRNA processing SF3B5 +WIKIPW mRNA processing SPOP +WIKIPW mRNA processing DHX16 +WIKIPW mRNA processing PHF5A +WIKIPW mRNA processing RBM17 +WIKIPW mRNA processing PRPF18 +WIKIPW mRNA processing SFRS9 +WIKIPW mRNA processing RNMT +WIKIPW mRNA processing RNGTT +WIKIPW mRNA processing PRPF4B +WIKIPW mRNA processing PRPF4 +WIKIPW mRNA processing PRPF3 +WIKIPW mRNA processing EFTUD2 +WIKIPW mRNA processing SNRNP40 +WIKIPW mRNA processing RBM39 +WIKIPW mRNA processing DHX38 +WIKIPW MAPK Cascade MAPK14 +WIKIPW MAPK Cascade ELK1 +WIKIPW MAPK Cascade RASA3 +WIKIPW MAPK Cascade HRAS +WIKIPW MAPK Cascade ARAF +WIKIPW MAPK Cascade JUN +WIKIPW MAPK Cascade KRAS +WIKIPW MAPK Cascade MAP2 +WIKIPW MAPK Cascade MBP +WIKIPW MAPK Cascade MAP3K1 +WIKIPW MAPK Cascade MAP3K3 +WIKIPW MAPK Cascade NRAS +WIKIPW MAPK Cascade PLCB3 +WIKIPW MAPK Cascade MAPK1 +WIKIPW MAPK Cascade MAPK3 +WIKIPW MAPK Cascade MAPK10 +WIKIPW MAPK Cascade MAP2K1 +WIKIPW MAPK Cascade MAP2K2 +WIKIPW MAPK Cascade MAP2K3 +WIKIPW MAPK Cascade MAP2K6 +WIKIPW MAPK Cascade MAP2K7 +WIKIPW MAPK Cascade RAF1 +WIKIPW MAPK Cascade RRAS +WIKIPW MAPK Cascade MAPK12 +WIKIPW MAPK Cascade MAP2K4 +WIKIPW MAPK Cascade SIPA1 +WIKIPW MAPK Cascade BRAF +WIKIPW MAPK Cascade MAP3K12 +WIKIPW Wnt Signaling Pathway FZD10 +WIKIPW Wnt Signaling Pathway CSNK1E +WIKIPW Wnt Signaling Pathway CTNNB1 +WIKIPW Wnt Signaling Pathway DVL1 +WIKIPW Wnt Signaling Pathway DVL2 +WIKIPW Wnt Signaling Pathway DVL3 +WIKIPW Wnt Signaling Pathway FZD2 +WIKIPW Wnt Signaling Pathway FBXW2 +WIKIPW Wnt Signaling Pathway GSK3B +WIKIPW Wnt Signaling Pathway APC +WIKIPW Wnt Signaling Pathway JUN +WIKIPW Wnt Signaling Pathway RHOA +WIKIPW Wnt Signaling Pathway LDLR +WIKIPW Wnt Signaling Pathway MYC +WIKIPW Wnt Signaling Pathway PAFAH1B1 +WIKIPW Wnt Signaling Pathway WNT16 +WIKIPW Wnt Signaling Pathway PLAU +WIKIPW Wnt Signaling Pathway WNT4 +WIKIPW Wnt Signaling Pathway PPP2R5C +WIKIPW Wnt Signaling Pathway PPP2R5E +WIKIPW Wnt Signaling Pathway PRKCA +WIKIPW Wnt Signaling Pathway PRKCB +WIKIPW Wnt Signaling Pathway PRKCD +WIKIPW Wnt Signaling Pathway PRKCE +WIKIPW Wnt Signaling Pathway PRKCG +WIKIPW Wnt Signaling Pathway PRKCH +WIKIPW Wnt Signaling Pathway PRKCI +WIKIPW Wnt Signaling Pathway PRKD1 +WIKIPW Wnt Signaling Pathway PRKCQ +WIKIPW Wnt Signaling Pathway PRKCZ +WIKIPW Wnt Signaling Pathway MAPK9 +WIKIPW Wnt Signaling Pathway MAPK10 +WIKIPW Wnt Signaling Pathway RAC1 +WIKIPW Wnt Signaling Pathway CCND1 +WIKIPW Wnt Signaling Pathway SFRP4 +WIKIPW Wnt Signaling Pathway WNT1 +WIKIPW Wnt Signaling Pathway WNT2 +WIKIPW Wnt Signaling Pathway WNT3 +WIKIPW Wnt Signaling Pathway WNT5A +WIKIPW Wnt Signaling Pathway WNT6 +WIKIPW Wnt Signaling Pathway WNT7A +WIKIPW Wnt Signaling Pathway WNT7B +WIKIPW Wnt Signaling Pathway WNT10B +WIKIPW Wnt Signaling Pathway WNT11 +WIKIPW Wnt Signaling Pathway WNT2B +WIKIPW Wnt Signaling Pathway FZD5 +WIKIPW Wnt Signaling Pathway FZD3 +WIKIPW Wnt Signaling Pathway WNT10A +WIKIPW Wnt Signaling Pathway FOSL1 +WIKIPW Wnt Signaling Pathway WNT5B +WIKIPW Wnt Signaling Pathway AXIN1 +WIKIPW Wnt Signaling Pathway FZD1 +WIKIPW Wnt Signaling Pathway FZD6 +WIKIPW Wnt Signaling Pathway FZD7 +WIKIPW Wnt Signaling Pathway FZD8 +WIKIPW Wnt Signaling Pathway FZD9 +WIKIPW Wnt Signaling Pathway CCND2 +WIKIPW Wnt Signaling Pathway CCND3 +WIKIPW Wnt Signaling Pathway WNT3A +WIKIPW cytochrome P450 CYP4F8 +WIKIPW cytochrome P450 CYP2U1 +WIKIPW cytochrome P450 CYP2R1 +WIKIPW cytochrome P450 CYP4F22 +WIKIPW cytochrome P450 CYB5A +WIKIPW cytochrome P450 CYP1A1 +WIKIPW cytochrome P450 CYP1A2 +WIKIPW cytochrome P450 CYP1B1 +WIKIPW cytochrome P450 CYP2A6 +WIKIPW cytochrome P450 CYP2A7 +WIKIPW cytochrome P450 CYP3A7 +WIKIPW cytochrome P450 CYP2A13 +WIKIPW cytochrome P450 CYP2B6 +WIKIPW cytochrome P450 CYP2C19 +WIKIPW cytochrome P450 CYP2C8 +WIKIPW cytochrome P450 CYP2C9 +WIKIPW cytochrome P450 CYP2C18 +WIKIPW cytochrome P450 CYP2D6 +WIKIPW cytochrome P450 CYP2E1 +WIKIPW cytochrome P450 CYP2F1 +WIKIPW cytochrome P450 CYP2J2 +WIKIPW cytochrome P450 CYP3A4 +WIKIPW cytochrome P450 CYP3A5 +WIKIPW cytochrome P450 CYP4A11 +WIKIPW cytochrome P450 CYP4B1 +WIKIPW cytochrome P450 CYP7A1 +WIKIPW cytochrome P450 CYP8B1 +WIKIPW cytochrome P450 CYP11A1 +WIKIPW cytochrome P450 CYP11B1 +WIKIPW cytochrome P450 CYP11B2 +WIKIPW cytochrome P450 CYP17A1 +WIKIPW cytochrome P450 CYP19A1 +WIKIPW cytochrome P450 CYP21A2 +WIKIPW cytochrome P450 CYP24A1 +WIKIPW cytochrome P450 CYP26A1 +WIKIPW cytochrome P450 CYP27A1 +WIKIPW cytochrome P450 CYP27B1 +WIKIPW cytochrome P450 CYP51A1 +WIKIPW cytochrome P450 CYB5R3 +WIKIPW cytochrome P450 CYP4Z1 +WIKIPW cytochrome P450 CYP4X1 +WIKIPW cytochrome P450 CYP4A22 +WIKIPW cytochrome P450 CYP4V2 +WIKIPW cytochrome P450 CYP2S1 +WIKIPW cytochrome P450 CYP27C1 +WIKIPW cytochrome P450 CYP26C1 +WIKIPW cytochrome P450 CYP4F3 +WIKIPW cytochrome P450 CYB5R4 +WIKIPW cytochrome P450 CYP39A1 +WIKIPW cytochrome P450 CYB5R2 +WIKIPW cytochrome P450 CYB5R1 +WIKIPW cytochrome P450 POR +WIKIPW cytochrome P450 CYP2W1 +WIKIPW cytochrome P450 CYP26B1 +WIKIPW cytochrome P450 CYP20A1 +WIKIPW cytochrome P450 CYP4F11 +WIKIPW cytochrome P450 CYP3A43 +WIKIPW cytochrome P450 CYP4F12 +WIKIPW cytochrome P450 CYB5B +WIKIPW cytochrome P450 CYP4F2 +WIKIPW cytochrome P450 CYP7B1 +WIKIPW Statin Pathway PharmGKB CYP7A1 +WIKIPW Statin Pathway PharmGKB ABCA1 +WIKIPW Statin Pathway PharmGKB HMGCR +WIKIPW Statin Pathway PharmGKB APOA1 +WIKIPW Statin Pathway PharmGKB APOA4 +WIKIPW Statin Pathway PharmGKB APOC1 +WIKIPW Statin Pathway PharmGKB APOC2 +WIKIPW Statin Pathway PharmGKB APOC3 +WIKIPW Statin Pathway PharmGKB APOE +WIKIPW Statin Pathway PharmGKB LCAT +WIKIPW Statin Pathway PharmGKB LDLR +WIKIPW Statin Pathway PharmGKB LIPC +WIKIPW Statin Pathway PharmGKB LPL +WIKIPW Statin Pathway PharmGKB LRP1 +WIKIPW Statin Pathway PharmGKB PLTP +WIKIPW Statin Pathway PharmGKB SOAT1 +WIKIPW Statin Pathway PharmGKB DGAT1 +WIKIPW Statin Pathway PharmGKB SCARB1 +WIKIPW EGFR1 Signaling Pathway SH2D3C +WIKIPW EGFR1 Signaling Pathway TNK2 +WIKIPW EGFR1 Signaling Pathway SPRY2 +WIKIPW EGFR1 Signaling Pathway TNIP1 +WIKIPW EGFR1 Signaling Pathway VAV3 +WIKIPW EGFR1 Signaling Pathway CEBPA +WIKIPW EGFR1 Signaling Pathway CEBPB +WIKIPW EGFR1 Signaling Pathway MAP3K2 +WIKIPW EGFR1 Signaling Pathway RALBP1 +WIKIPW EGFR1 Signaling Pathway LOC119358 +WIKIPW EGFR1 Signaling Pathway CREB1 +WIKIPW EGFR1 Signaling Pathway CRK +WIKIPW EGFR1 Signaling Pathway CRKL +WIKIPW EGFR1 Signaling Pathway MAPK14 +WIKIPW EGFR1 Signaling Pathway CSK +WIKIPW EGFR1 Signaling Pathway CTNND1 +WIKIPW EGFR1 Signaling Pathway AP2A1 +WIKIPW EGFR1 Signaling Pathway DNM1 +WIKIPW EGFR1 Signaling Pathway DUSP1 +WIKIPW EGFR1 Signaling Pathway EEF1A1 +WIKIPW EGFR1 Signaling Pathway EGF +WIKIPW EGFR1 Signaling Pathway EGFR +WIKIPW EGFR1 Signaling Pathway ELF3 +WIKIPW EGFR1 Signaling Pathway ELK1 +WIKIPW EGFR1 Signaling Pathway ELK4 +WIKIPW EGFR1 Signaling Pathway EPS8 +WIKIPW EGFR1 Signaling Pathway EPS15 +WIKIPW EGFR1 Signaling Pathway AKT1 +WIKIPW EGFR1 Signaling Pathway PTK2B +WIKIPW EGFR1 Signaling Pathway FOXO1 +WIKIPW EGFR1 Signaling Pathway FOS +WIKIPW EGFR1 Signaling Pathway CBLC +WIKIPW EGFR1 Signaling Pathway GAB1 +WIKIPW EGFR1 Signaling Pathway SIN3A +WIKIPW EGFR1 Signaling Pathway APPL1 +WIKIPW EGFR1 Signaling Pathway GJA1 +WIKIPW EGFR1 Signaling Pathway GRB2 +WIKIPW EGFR1 Signaling Pathway GRB7 +WIKIPW EGFR1 Signaling Pathway GRB10 +WIKIPW EGFR1 Signaling Pathway GRB14 +WIKIPW EGFR1 Signaling Pathway GIT1 +WIKIPW EGFR1 Signaling Pathway EPN1 +WIKIPW EGFR1 Signaling Pathway SH3KBP1 +WIKIPW EGFR1 Signaling Pathway HTT +WIKIPW EGFR1 Signaling Pathway HDAC1 +WIKIPW EGFR1 Signaling Pathway HIP1 +WIKIPW EGFR1 Signaling Pathway HRAS +WIKIPW EGFR1 Signaling Pathway INPPL1 +WIKIPW EGFR1 Signaling Pathway ARAF +WIKIPW EGFR1 Signaling Pathway JAK1 +WIKIPW EGFR1 Signaling Pathway JAK2 +WIKIPW EGFR1 Signaling Pathway JUN +WIKIPW EGFR1 Signaling Pathway JUND +WIKIPW EGFR1 Signaling Pathway ARF4 +WIKIPW EGFR1 Signaling Pathway KRAS +WIKIPW EGFR1 Signaling Pathway KRT7 +WIKIPW EGFR1 Signaling Pathway KRT8 +WIKIPW EGFR1 Signaling Pathway KRT17 +WIKIPW EGFR1 Signaling Pathway KRT18 +WIKIPW EGFR1 Signaling Pathway SMAD2 +WIKIPW EGFR1 Signaling Pathway SMAD3 +WIKIPW EGFR1 Signaling Pathway MCF2 +WIKIPW EGFR1 Signaling Pathway MAP3K1 +WIKIPW EGFR1 Signaling Pathway MAP3K3 +WIKIPW EGFR1 Signaling Pathway MAP3K4 +WIKIPW EGFR1 Signaling Pathway MYC +WIKIPW EGFR1 Signaling Pathway ATF1 +WIKIPW EGFR1 Signaling Pathway NCK1 +WIKIPW EGFR1 Signaling Pathway NRAS +WIKIPW EGFR1 Signaling Pathway PEBP1 +WIKIPW EGFR1 Signaling Pathway PAK1 +WIKIPW EGFR1 Signaling Pathway ASAP1 +WIKIPW EGFR1 Signaling Pathway NDUFA13 +WIKIPW EGFR1 Signaling Pathway PIK3C2B +WIKIPW EGFR1 Signaling Pathway PIK3CA +WIKIPW EGFR1 Signaling Pathway PIK3CB +WIKIPW EGFR1 Signaling Pathway PIK3CD +WIKIPW EGFR1 Signaling Pathway PIK3CG +WIKIPW EGFR1 Signaling Pathway PIK3R1 +WIKIPW EGFR1 Signaling Pathway PIK3R2 +WIKIPW EGFR1 Signaling Pathway PITPNA +WIKIPW EGFR1 Signaling Pathway PLCG1 +WIKIPW EGFR1 Signaling Pathway PLCG2 +WIKIPW EGFR1 Signaling Pathway PLD1 +WIKIPW EGFR1 Signaling Pathway PLD2 +WIKIPW EGFR1 Signaling Pathway PLEC1 +WIKIPW EGFR1 Signaling Pathway PLSCR1 +WIKIPW EGFR1 Signaling Pathway ERRFI1 +WIKIPW EGFR1 Signaling Pathway APPL2 +WIKIPW EGFR1 Signaling Pathway PRKAR1A +WIKIPW EGFR1 Signaling Pathway PRKCA +WIKIPW EGFR1 Signaling Pathway PRKCB +WIKIPW EGFR1 Signaling Pathway PRKCG +WIKIPW EGFR1 Signaling Pathway PRKCI +WIKIPW EGFR1 Signaling Pathway PKN2 +WIKIPW EGFR1 Signaling Pathway PRKD1 +WIKIPW EGFR1 Signaling Pathway PRKCZ +WIKIPW EGFR1 Signaling Pathway MAPK1 +WIKIPW EGFR1 Signaling Pathway MAPK3 +WIKIPW EGFR1 Signaling Pathway MAPK7 +WIKIPW EGFR1 Signaling Pathway MAPK8 +WIKIPW EGFR1 Signaling Pathway MAP2K1 +WIKIPW EGFR1 Signaling Pathway MAP2K2 +WIKIPW EGFR1 Signaling Pathway MAP2K3 +WIKIPW EGFR1 Signaling Pathway MAP2K5 +WIKIPW EGFR1 Signaling Pathway MAP2K7 +WIKIPW EGFR1 Signaling Pathway PTK6 +WIKIPW EGFR1 Signaling Pathway PTPN6 +WIKIPW EGFR1 Signaling Pathway PTPN11 +WIKIPW EGFR1 Signaling Pathway PTPN12 +WIKIPW EGFR1 Signaling Pathway PTPRR +WIKIPW EGFR1 Signaling Pathway PXN +WIKIPW EGFR1 Signaling Pathway EPS15L1 +WIKIPW EGFR1 Signaling Pathway RAB5A +WIKIPW EGFR1 Signaling Pathway RAC1 +WIKIPW EGFR1 Signaling Pathway RAF1 +WIKIPW EGFR1 Signaling Pathway RALB +WIKIPW EGFR1 Signaling Pathway RALGDS +WIKIPW EGFR1 Signaling Pathway RASA1 +WIKIPW EGFR1 Signaling Pathway RBBP7 +WIKIPW EGFR1 Signaling Pathway RGS16 +WIKIPW EGFR1 Signaling Pathway RPS6KA1 +WIKIPW EGFR1 Signaling Pathway RPS6KA2 +WIKIPW EGFR1 Signaling Pathway RPS6KA3 +WIKIPW EGFR1 Signaling Pathway CEACAM1 +WIKIPW EGFR1 Signaling Pathway SH3BGRL +WIKIPW EGFR1 Signaling Pathway SH3GL2 +WIKIPW EGFR1 Signaling Pathway SH3GL3 +WIKIPW EGFR1 Signaling Pathway SHC1 +WIKIPW EGFR1 Signaling Pathway WNK1 +WIKIPW EGFR1 Signaling Pathway LOC652460 +WIKIPW EGFR1 Signaling Pathway SNCA +WIKIPW EGFR1 Signaling Pathway SNRPD2 +WIKIPW EGFR1 Signaling Pathway SOS1 +WIKIPW EGFR1 Signaling Pathway SOS2 +WIKIPW EGFR1 Signaling Pathway SP1 +WIKIPW EGFR1 Signaling Pathway SRC +WIKIPW EGFR1 Signaling Pathway STAT1 +WIKIPW EGFR1 Signaling Pathway STAT2 +WIKIPW EGFR1 Signaling Pathway STAT3 +WIKIPW EGFR1 Signaling Pathway STAT5A +WIKIPW EGFR1 Signaling Pathway STAT5B +WIKIPW EGFR1 Signaling Pathway STXBP1 +WIKIPW EGFR1 Signaling Pathway TGIF1 +WIKIPW EGFR1 Signaling Pathway VAV1 +WIKIPW EGFR1 Signaling Pathway VAV2 +WIKIPW EGFR1 Signaling Pathway YWHAB +WIKIPW EGFR1 Signaling Pathway SHOC2 +WIKIPW EGFR1 Signaling Pathway CAMK2A +WIKIPW EGFR1 Signaling Pathway HIST3H3 +WIKIPW EGFR1 Signaling Pathway ITCH +WIKIPW EGFR1 Signaling Pathway CASP9 +WIKIPW EGFR1 Signaling Pathway NCK2 +WIKIPW EGFR1 Signaling Pathway KLF11 +WIKIPW EGFR1 Signaling Pathway PTPN5 +WIKIPW EGFR1 Signaling Pathway REPS1 +WIKIPW EGFR1 Signaling Pathway PIK3R3 +WIKIPW EGFR1 Signaling Pathway HAT1 +WIKIPW EGFR1 Signaling Pathway CAV1 +WIKIPW EGFR1 Signaling Pathway CAV2 +WIKIPW EGFR1 Signaling Pathway RFXANK +WIKIPW EGFR1 Signaling Pathway SOCS1 +WIKIPW EGFR1 Signaling Pathway CBL +WIKIPW EGFR1 Signaling Pathway CBLB +WIKIPW EGFR1 Signaling Pathway RIPK1 +WIKIPW EGFR1 Signaling Pathway ZNF259 +WIKIPW EGFR1 Signaling Pathway WASL +WIKIPW EGFR1 Signaling Pathway MAP3K14 +WIKIPW EGFR1 Signaling Pathway SOCS3 +WIKIPW EGFR1 Signaling Pathway DOK2 +WIKIPW EGFR1 Signaling Pathway REPS2 +WIKIPW EGFR1 Signaling Pathway MTA2 +WIKIPW EGFR1 Signaling Pathway RPS6KA5 +WIKIPW EGFR1 Signaling Pathway BCAR1 +WIKIPW EGFR1 Signaling Pathway USP6NL +WIKIPW EGFR1 Signaling Pathway GAB2 +WIKIPW EGFR1 Signaling Pathway CDC42 +WIKIPW Non-homologous end joining XRCC6 +WIKIPW Non-homologous end joining LOC389901 +WIKIPW Non-homologous end joining MRE11A +WIKIPW Non-homologous end joining PRKDC +WIKIPW Non-homologous end joining LOC731751 +WIKIPW Non-homologous end joining XRCC4 +WIKIPW Non-homologous end joining XRCC5 +WIKIPW Non-homologous end joining NHEJ1 +WIKIPW G1 to S cell cycle control CDK4 +WIKIPW G1 to S cell cycle control CDK6 +WIKIPW G1 to S cell cycle control CDK7 +WIKIPW G1 to S cell cycle control CDKN1A +WIKIPW G1 to S cell cycle control CDKN1B +WIKIPW G1 to S cell cycle control CDKN1C +WIKIPW G1 to S cell cycle control CDKN2A +WIKIPW G1 to S cell cycle control CDKN2B +WIKIPW G1 to S cell cycle control CDKN2C +WIKIPW G1 to S cell cycle control CDKN2D +WIKIPW G1 to S cell cycle control CREB3 +WIKIPW G1 to S cell cycle control CREB1 +WIKIPW G1 to S cell cycle control ATF6B +WIKIPW G1 to S cell cycle control CREB3L4 +WIKIPW G1 to S cell cycle control GADD45A +WIKIPW G1 to S cell cycle control E2F1 +WIKIPW G1 to S cell cycle control E2F2 +WIKIPW G1 to S cell cycle control E2F3 +WIKIPW G1 to S cell cycle control E2F4 +WIKIPW G1 to S cell cycle control E2F5 +WIKIPW G1 to S cell cycle control E2F6 +WIKIPW G1 to S cell cycle control ORC6L +WIKIPW G1 to S cell cycle control ORC3L +WIKIPW G1 to S cell cycle control POLA2 +WIKIPW G1 to S cell cycle control MCM2 +WIKIPW G1 to S cell cycle control MCM3 +WIKIPW G1 to S cell cycle control MCM4 +WIKIPW G1 to S cell cycle control MCM5 +WIKIPW G1 to S cell cycle control MCM6 +WIKIPW G1 to S cell cycle control MCM7 +WIKIPW G1 to S cell cycle control MDM2 +WIKIPW G1 to S cell cycle control MNAT1 +WIKIPW G1 to S cell cycle control MYC +WIKIPW G1 to S cell cycle control MYT1 +WIKIPW G1 to S cell cycle control ATM +WIKIPW G1 to S cell cycle control ORC1L +WIKIPW G1 to S cell cycle control ORC2L +WIKIPW G1 to S cell cycle control ORC4L +WIKIPW G1 to S cell cycle control ORC5L +WIKIPW G1 to S cell cycle control PCNA +WIKIPW G1 to S cell cycle control POLE +WIKIPW G1 to S cell cycle control POLE2 +WIKIPW G1 to S cell cycle control PRIM1 +WIKIPW G1 to S cell cycle control PRIM2 +WIKIPW G1 to S cell cycle control RB1 +WIKIPW G1 to S cell cycle control RBL1 +WIKIPW G1 to S cell cycle control CCND1 +WIKIPW G1 to S cell cycle control RPA1 +WIKIPW G1 to S cell cycle control RPA2 +WIKIPW G1 to S cell cycle control RPA3 +WIKIPW G1 to S cell cycle control LOC651610 +WIKIPW G1 to S cell cycle control TFDP1 +WIKIPW G1 to S cell cycle control TFDP2 +WIKIPW G1 to S cell cycle control TP53 +WIKIPW G1 to S cell cycle control WEE1 +WIKIPW G1 to S cell cycle control CDC45L +WIKIPW G1 to S cell cycle control CREB3L3 +WIKIPW G1 to S cell cycle control CCNA1 +WIKIPW G1 to S cell cycle control CCNB1 +WIKIPW G1 to S cell cycle control CCND2 +WIKIPW G1 to S cell cycle control CCND3 +WIKIPW G1 to S cell cycle control CCNE1 +WIKIPW G1 to S cell cycle control CCNG2 +WIKIPW G1 to S cell cycle control CCNH +WIKIPW G1 to S cell cycle control CREB3L1 +WIKIPW G1 to S cell cycle control CCNE2 +WIKIPW G1 to S cell cycle control CDC25A +WIKIPW Inflammatory Response Pathway COL1A2 +WIKIPW Inflammatory Response Pathway COL3A1 +WIKIPW Inflammatory Response Pathway FN1 +WIKIPW Inflammatory Response Pathway IFNG +WIKIPW Inflammatory Response Pathway IL2 +WIKIPW Inflammatory Response Pathway IL2RA +WIKIPW Inflammatory Response Pathway IL2RB +WIKIPW Inflammatory Response Pathway IL2RG +WIKIPW Inflammatory Response Pathway IL4 +WIKIPW Inflammatory Response Pathway IL4R +WIKIPW Inflammatory Response Pathway IL5 +WIKIPW Inflammatory Response Pathway IL5RA +WIKIPW Inflammatory Response Pathway LAMA5 +WIKIPW Inflammatory Response Pathway LAMB1 +WIKIPW Inflammatory Response Pathway LAMB2 +WIKIPW Inflammatory Response Pathway LAMC1 +WIKIPW Inflammatory Response Pathway LAMC2 +WIKIPW Inflammatory Response Pathway LCK +WIKIPW Inflammatory Response Pathway THBS1 +WIKIPW Inflammatory Response Pathway THBS3 +WIKIPW Inflammatory Response Pathway TNFRSF1A +WIKIPW Inflammatory Response Pathway TNFRSF1B +WIKIPW Inflammatory Response Pathway VTN +WIKIPW Inflammatory Response Pathway ZAP70 +WIKIPW Inflammatory Response Pathway CD28 +WIKIPW Inflammatory Response Pathway CD80 +WIKIPW Inflammatory Response Pathway CD86 +WIKIPW Inflammatory Response Pathway CD40 +WIKIPW Inflammatory Response Pathway CD40LG +WIKIPW Tryptophan metabolism AFMID +WIKIPW Tryptophan metabolism ACMSD +WIKIPW Tryptophan metabolism AANAT +WIKIPW Tryptophan metabolism CYP1A1 +WIKIPW Tryptophan metabolism CYP1A2 +WIKIPW Tryptophan metabolism CYP1B1 +WIKIPW Tryptophan metabolism CYP2A13 +WIKIPW Tryptophan metabolism CYP2C18 +WIKIPW Tryptophan metabolism CYP2E1 +WIKIPW Tryptophan metabolism CYP2F1 +WIKIPW Tryptophan metabolism CYP2J2 +WIKIPW Tryptophan metabolism CYP3A4 +WIKIPW Tryptophan metabolism CYP19A1 +WIKIPW Tryptophan metabolism DDC +WIKIPW Tryptophan metabolism DHCR24 +WIKIPW Tryptophan metabolism ECHS1 +WIKIPW Tryptophan metabolism ALDH1A1 +WIKIPW Tryptophan metabolism ALDH2 +WIKIPW Tryptophan metabolism ALDH9A1 +WIKIPW Tryptophan metabolism ALDH3A2 +WIKIPW Tryptophan metabolism HAAO +WIKIPW Tryptophan metabolism ABP1 +WIKIPW Tryptophan metabolism GCDH +WIKIPW Tryptophan metabolism HSD17B10 +WIKIPW Tryptophan metabolism HADH +WIKIPW Tryptophan metabolism AOX1 +WIKIPW Tryptophan metabolism PRMT1 +WIKIPW Tryptophan metabolism IDO1 +WIKIPW Tryptophan metabolism ACAT1 +WIKIPW Tryptophan metabolism MAOB +WIKIPW Tryptophan metabolism MDM2 +WIKIPW Tryptophan metabolism ASMT +WIKIPW Tryptophan metabolism OGDH +WIKIPW Tryptophan metabolism AADAT +WIKIPW Tryptophan metabolism UBR5 +WIKIPW Tryptophan metabolism RNF25 +WIKIPW Tryptophan metabolism CYP4F12 +WIKIPW Tryptophan metabolism TDO2 +WIKIPW Tryptophan metabolism TPH1 +WIKIPW Tryptophan metabolism LOC730429 +WIKIPW Tryptophan metabolism UBE3A +WIKIPW Tryptophan metabolism WARS +WIKIPW Tryptophan metabolism CAT +WIKIPW Tryptophan metabolism ALDH1A2 +WIKIPW Tryptophan metabolism KYNU +WIKIPW Tryptophan metabolism CYP7B1 +WIKIPW DNA Replication POLD3 +WIKIPW DNA Replication DBF4 +WIKIPW DNA Replication ORC6L +WIKIPW DNA Replication ORC3L +WIKIPW DNA Replication POLA2 +WIKIPW DNA Replication RPA4 +WIKIPW DNA Replication MCM2 +WIKIPW DNA Replication MCM3 +WIKIPW DNA Replication MCM4 +WIKIPW DNA Replication MCM5 +WIKIPW DNA Replication MCM6 +WIKIPW DNA Replication MCM7 +WIKIPW DNA Replication ORC1L +WIKIPW DNA Replication ORC2L +WIKIPW DNA Replication ORC4L +WIKIPW DNA Replication ORC5L +WIKIPW DNA Replication GMNN +WIKIPW DNA Replication PCNA +WIKIPW DNA Replication POLA1 +WIKIPW DNA Replication POLD1 +WIKIPW DNA Replication POLD2 +WIKIPW DNA Replication POLE +WIKIPW DNA Replication POLE2 +WIKIPW DNA Replication MCM10 +WIKIPW DNA Replication PRIM1 +WIKIPW DNA Replication PRIM2 +WIKIPW DNA Replication POLD4 +WIKIPW DNA Replication RFC1 +WIKIPW DNA Replication RFC2 +WIKIPW DNA Replication RFC3 +WIKIPW DNA Replication RFC4 +WIKIPW DNA Replication RFC5 +WIKIPW DNA Replication RPA1 +WIKIPW DNA Replication RPA2 +WIKIPW DNA Replication RPA3 +WIKIPW DNA Replication UBA52 +WIKIPW DNA Replication UBC +WIKIPW DNA Replication CDT1 +WIKIPW DNA Replication CDC7 +WIKIPW DNA Replication CDC45L +WIKIPW DNA Replication CDC6 +WIKIPW Hedgehog Signaling Pathway CREBBP +WIKIPW Hedgehog Signaling Pathway DYRK1A +WIKIPW Hedgehog Signaling Pathway SIN3A +WIKIPW Hedgehog Signaling Pathway GAS1 +WIKIPW Hedgehog Signaling Pathway STK36 +WIKIPW Hedgehog Signaling Pathway GLI1 +WIKIPW Hedgehog Signaling Pathway GLI2 +WIKIPW Hedgehog Signaling Pathway GLI3 +WIKIPW Hedgehog Signaling Pathway IGF2 +WIKIPW Hedgehog Signaling Pathway IHH +WIKIPW Hedgehog Signaling Pathway DHH +WIKIPW Hedgehog Signaling Pathway SUFU +WIKIPW Hedgehog Signaling Pathway RAB23 +WIKIPW Hedgehog Signaling Pathway PTCH1 +WIKIPW Hedgehog Signaling Pathway HHIP +WIKIPW Hedgehog Signaling Pathway SHH +WIKIPW Hedgehog Signaling Pathway SKI +WIKIPW Hedgehog Signaling Pathway SMO +WIKIPW Hedgehog Signaling Pathway PTCH2 +WIKIPW Hedgehog Signaling Pathway CCNB1 +WIKIPW Hedgehog Signaling Pathway CDC2 +WIKIPW Endochondral Ossification ADAMTS5 +WIKIPW Endochondral Ossification KIF3A +WIKIPW Endochondral Ossification COL2A1 +WIKIPW Endochondral Ossification COL10A1 +WIKIPW Endochondral Ossification CST5 +WIKIPW Endochondral Ossification CTSL2 +WIKIPW Endochondral Ossification ACAN +WIKIPW Endochondral Ossification AKT1 +WIKIPW Endochondral Ossification FGF2 +WIKIPW Endochondral Ossification FGFR1 +WIKIPW Endochondral Ossification FGFR3 +WIKIPW Endochondral Ossification FRZB +WIKIPW Endochondral Ossification ALPL +WIKIPW Endochondral Ossification GH1 +WIKIPW Endochondral Ossification GHR +WIKIPW Endochondral Ossification GLI3 +WIKIPW Endochondral Ossification HMGCS1 +WIKIPW Endochondral Ossification IGF1 +WIKIPW Endochondral Ossification IGF1R +WIKIPW Endochondral Ossification IGF2 +WIKIPW Endochondral Ossification IHH +WIKIPW Endochondral Ossification MEF2C +WIKIPW Endochondral Ossification MGP +WIKIPW Endochondral Ossification MMP9 +WIKIPW Endochondral Ossification MMP13 +WIKIPW Endochondral Ossification DDR2 +WIKIPW Endochondral Ossification CHST11 +WIKIPW Endochondral Ossification ENPP1 +WIKIPW Endochondral Ossification CAB39 +WIKIPW Endochondral Ossification PLAT +WIKIPW Endochondral Ossification PLAU +WIKIPW Endochondral Ossification SLC38A2 +WIKIPW Endochondral Ossification SOX6 +WIKIPW Endochondral Ossification PRKACA +WIKIPW Endochondral Ossification PTCH1 +WIKIPW Endochondral Ossification PTH +WIKIPW Endochondral Ossification PTHLH +WIKIPW Endochondral Ossification PTH1R +WIKIPW Endochondral Ossification NKX3-2 +WIKIPW Endochondral Ossification BMP6 +WIKIPW Endochondral Ossification BMP7 +WIKIPW Endochondral Ossification BMPR1A +WIKIPW Endochondral Ossification SOX5 +WIKIPW Endochondral Ossification SOX9 +WIKIPW Endochondral Ossification SPP1 +WIKIPW Endochondral Ossification STAT1 +WIKIPW Endochondral Ossification STAT5B +WIKIPW Endochondral Ossification TGFB1 +WIKIPW Endochondral Ossification TGFB2 +WIKIPW Endochondral Ossification THRA +WIKIPW Endochondral Ossification TIMP3 +WIKIPW Endochondral Ossification VEGFA +WIKIPW Endochondral Ossification CALM1 +WIKIPW Endochondral Ossification CALM2 +WIKIPW Endochondral Ossification CALM3 +WIKIPW Endochondral Ossification IFT88 +WIKIPW Endochondral Ossification SCIN +WIKIPW Endochondral Ossification RUNX2 +WIKIPW Endochondral Ossification RUNX3 +WIKIPW Endochondral Ossification SERPINH1 +WIKIPW Endochondral Ossification FGF18 +WIKIPW Endochondral Ossification ADAMTS4 +WIKIPW Endochondral Ossification ADAMTS1 +WIKIPW Endochondral Ossification HDAC4 +WIKIPW Cytoplasmic Ribosomal Proteins FAU +WIKIPW Cytoplasmic Ribosomal Proteins RPL13A +WIKIPW Cytoplasmic Ribosomal Proteins RPL36 +WIKIPW Cytoplasmic Ribosomal Proteins RPS6KA6 +WIKIPW Cytoplasmic Ribosomal Proteins HNRNPH2 +WIKIPW Cytoplasmic Ribosomal Proteins RPSA +WIKIPW Cytoplasmic Ribosomal Proteins RPL10A +WIKIPW Cytoplasmic Ribosomal Proteins RPL3 +WIKIPW Cytoplasmic Ribosomal Proteins RPL3L +WIKIPW Cytoplasmic Ribosomal Proteins RPL4 +WIKIPW Cytoplasmic Ribosomal Proteins RPL5 +WIKIPW Cytoplasmic Ribosomal Proteins RPL6 +WIKIPW Cytoplasmic Ribosomal Proteins RPL7 +WIKIPW Cytoplasmic Ribosomal Proteins RPL7A +WIKIPW Cytoplasmic Ribosomal Proteins RPL8 +WIKIPW Cytoplasmic Ribosomal Proteins RPL9 +WIKIPW Cytoplasmic Ribosomal Proteins RPL10 +WIKIPW Cytoplasmic Ribosomal Proteins RPL11 +WIKIPW Cytoplasmic Ribosomal Proteins RPL12 +WIKIPW Cytoplasmic Ribosomal Proteins RPL13 +WIKIPW Cytoplasmic Ribosomal Proteins RPL15 +WIKIPW Cytoplasmic Ribosomal Proteins RPL17 +WIKIPW Cytoplasmic Ribosomal Proteins RPL18 +WIKIPW Cytoplasmic Ribosomal Proteins RPL18A +WIKIPW Cytoplasmic Ribosomal Proteins RPL19 +WIKIPW Cytoplasmic Ribosomal Proteins RPL21 +WIKIPW Cytoplasmic Ribosomal Proteins RPL22 +WIKIPW Cytoplasmic Ribosomal Proteins RPL23A +WIKIPW Cytoplasmic Ribosomal Proteins RPL24 +WIKIPW Cytoplasmic Ribosomal Proteins RPL26 +WIKIPW Cytoplasmic Ribosomal Proteins RPL27 +WIKIPW Cytoplasmic Ribosomal Proteins RPL30 +WIKIPW Cytoplasmic Ribosomal Proteins RPL27A +WIKIPW Cytoplasmic Ribosomal Proteins RPL28 +WIKIPW Cytoplasmic Ribosomal Proteins RPL29 +WIKIPW Cytoplasmic Ribosomal Proteins RPL31 +WIKIPW Cytoplasmic Ribosomal Proteins RPL32 +WIKIPW Cytoplasmic Ribosomal Proteins RPL34 +WIKIPW Cytoplasmic Ribosomal Proteins RPL35A +WIKIPW Cytoplasmic Ribosomal Proteins RPL37 +WIKIPW Cytoplasmic Ribosomal Proteins RPL37A +WIKIPW Cytoplasmic Ribosomal Proteins RPL38 +WIKIPW Cytoplasmic Ribosomal Proteins RPL39 +WIKIPW Cytoplasmic Ribosomal Proteins RPL41 +WIKIPW Cytoplasmic Ribosomal Proteins RPL36A +WIKIPW Cytoplasmic Ribosomal Proteins RPLP0 +WIKIPW Cytoplasmic Ribosomal Proteins RPLP1 +WIKIPW Cytoplasmic Ribosomal Proteins RPLP2 +WIKIPW Cytoplasmic Ribosomal Proteins RPS2 +WIKIPW Cytoplasmic Ribosomal Proteins RPS3 +WIKIPW Cytoplasmic Ribosomal Proteins RPS3A +WIKIPW Cytoplasmic Ribosomal Proteins RPS4X +WIKIPW Cytoplasmic Ribosomal Proteins RPS4Y1 +WIKIPW Cytoplasmic Ribosomal Proteins RPS5 +WIKIPW Cytoplasmic Ribosomal Proteins RPS6 +WIKIPW Cytoplasmic Ribosomal Proteins RPS6KA1 +WIKIPW Cytoplasmic Ribosomal Proteins RPS6KA2 +WIKIPW Cytoplasmic Ribosomal Proteins RPS6KA3 +WIKIPW Cytoplasmic Ribosomal Proteins RPS6KB1 +WIKIPW Cytoplasmic Ribosomal Proteins RPS6KB2 +WIKIPW Cytoplasmic Ribosomal Proteins RPS7 +WIKIPW Cytoplasmic Ribosomal Proteins RPS8 +WIKIPW Cytoplasmic Ribosomal Proteins RPS9 +WIKIPW Cytoplasmic Ribosomal Proteins RPS10 +WIKIPW Cytoplasmic Ribosomal Proteins RPS11 +WIKIPW Cytoplasmic Ribosomal Proteins RPS12 +WIKIPW Cytoplasmic Ribosomal Proteins RPS13 +WIKIPW Cytoplasmic Ribosomal Proteins RPS14 +WIKIPW Cytoplasmic Ribosomal Proteins RPS15 +WIKIPW Cytoplasmic Ribosomal Proteins RPS15A +WIKIPW Cytoplasmic Ribosomal Proteins RPS16 +WIKIPW Cytoplasmic Ribosomal Proteins RPS17 +WIKIPW Cytoplasmic Ribosomal Proteins RPS18 +WIKIPW Cytoplasmic Ribosomal Proteins RPS19 +WIKIPW Cytoplasmic Ribosomal Proteins RPS20 +WIKIPW Cytoplasmic Ribosomal Proteins RPS21 +WIKIPW Cytoplasmic Ribosomal Proteins RPS23 +WIKIPW Cytoplasmic Ribosomal Proteins RPS24 +WIKIPW Cytoplasmic Ribosomal Proteins RPS25 +WIKIPW Cytoplasmic Ribosomal Proteins RPS26 +WIKIPW Cytoplasmic Ribosomal Proteins RPS27 +WIKIPW Cytoplasmic Ribosomal Proteins RPS27A +WIKIPW Cytoplasmic Ribosomal Proteins RPS29 +WIKIPW Cytoplasmic Ribosomal Proteins LOC653881 +WIKIPW Cytoplasmic Ribosomal Proteins UBA52 +WIKIPW Cytoplasmic Ribosomal Proteins RPL14 +WIKIPW Cytoplasmic Ribosomal Proteins RPL23 +WIKIPW Cytoplasmic Ribosomal Proteins MRPL19 +WIKIPW Insulin Signaling SGK2 +WIKIPW Insulin Signaling FLOT1 +WIKIPW Insulin Signaling CAP1 +WIKIPW Insulin Signaling SORBS1 +WIKIPW Insulin Signaling MAP3K2 +WIKIPW Insulin Signaling EHD1 +WIKIPW Insulin Signaling KIF3A +WIKIPW Insulin Signaling MAP4K5 +WIKIPW Insulin Signaling MAP4K1 +WIKIPW Insulin Signaling SNX26 +WIKIPW Insulin Signaling MAP3K8 +WIKIPW Insulin Signaling CRK +WIKIPW Insulin Signaling MAPK14 +WIKIPW Insulin Signaling EGR1 +WIKIPW Insulin Signaling EIF4E +WIKIPW Insulin Signaling EIF4EBP1 +WIKIPW Insulin Signaling ELK1 +WIKIPW Insulin Signaling AKT1 +WIKIPW Insulin Signaling AKT2 +WIKIPW Insulin Signaling FOXO1 +WIKIPW Insulin Signaling FOXO3 +WIKIPW Insulin Signaling FLOT2 +WIKIPW Insulin Signaling RHOQ +WIKIPW Insulin Signaling FOS +WIKIPW Insulin Signaling CBLC +WIKIPW Insulin Signaling SGK3 +WIKIPW Insulin Signaling MTOR +WIKIPW Insulin Signaling STXBP4 +WIKIPW Insulin Signaling GAB1 +WIKIPW Insulin Signaling SHC2 +WIKIPW Insulin Signaling RPS6KA6 +WIKIPW Insulin Signaling GRB2 +WIKIPW Insulin Signaling GRB10 +WIKIPW Insulin Signaling GRB14 +WIKIPW Insulin Signaling RAPGEF1 +WIKIPW Insulin Signaling GSK3A +WIKIPW Insulin Signaling GSK3B +WIKIPW Insulin Signaling GYG1 +WIKIPW Insulin Signaling GYS1 +WIKIPW Insulin Signaling GYS2 +WIKIPW Insulin Signaling EHD2 +WIKIPW Insulin Signaling PIK3R4 +WIKIPW Insulin Signaling HRAS +WIKIPW Insulin Signaling IGF1R +WIKIPW Insulin Signaling IKBKB +WIKIPW Insulin Signaling INPP4A +WIKIPW Insulin Signaling INPPL1 +WIKIPW Insulin Signaling INSR +WIKIPW Insulin Signaling IRS1 +WIKIPW Insulin Signaling JUN +WIKIPW Insulin Signaling ARF1 +WIKIPW Insulin Signaling KIF5B +WIKIPW Insulin Signaling ARF6 +WIKIPW Insulin Signaling LIPE +WIKIPW Insulin Signaling MAP3K1 +WIKIPW Insulin Signaling MAP3K3 +WIKIPW Insulin Signaling MAP3K4 +WIKIPW Insulin Signaling MAP3K5 +WIKIPW Insulin Signaling MAP3K9 +WIKIPW Insulin Signaling MAP3K10 +WIKIPW Insulin Signaling MAP3K11 +WIKIPW Insulin Signaling MYO1C +WIKIPW Insulin Signaling MINK1 +WIKIPW Insulin Signaling ENPP1 +WIKIPW Insulin Signaling PDPK1 +WIKIPW Insulin Signaling PFKL +WIKIPW Insulin Signaling PFKM +WIKIPW Insulin Signaling PIK3C2A +WIKIPW Insulin Signaling PIK3C2G +WIKIPW Insulin Signaling PIK3C3 +WIKIPW Insulin Signaling PIK3CA +WIKIPW Insulin Signaling PIK3CB +WIKIPW Insulin Signaling PIK3CD +WIKIPW Insulin Signaling PIK3CG +WIKIPW Insulin Signaling PIK3R1 +WIKIPW Insulin Signaling PIK3R2 +WIKIPW Insulin Signaling SHC3 +WIKIPW Insulin Signaling PPP1R3A +WIKIPW Insulin Signaling PRKAA1 +WIKIPW Insulin Signaling PRKAA2 +WIKIPW Insulin Signaling PRKCA +WIKIPW Insulin Signaling PRKCB +WIKIPW Insulin Signaling PRKCD +WIKIPW Insulin Signaling PRKCH +WIKIPW Insulin Signaling PRKCI +WIKIPW Insulin Signaling PRKCQ +WIKIPW Insulin Signaling PRKCZ +WIKIPW Insulin Signaling MAPK1 +WIKIPW Insulin Signaling MAPK3 +WIKIPW Insulin Signaling MAPK4 +WIKIPW Insulin Signaling MAPK6 +WIKIPW Insulin Signaling MAPK7 +WIKIPW Insulin Signaling MAPK8 +WIKIPW Insulin Signaling MAPK11 +WIKIPW Insulin Signaling MAPK9 +WIKIPW Insulin Signaling MAPK10 +WIKIPW Insulin Signaling MAPK13 +WIKIPW Insulin Signaling MAP2K1 +WIKIPW Insulin Signaling MAP2K2 +WIKIPW Insulin Signaling MAP2K3 +WIKIPW Insulin Signaling MAP2K5 +WIKIPW Insulin Signaling MAP2K6 +WIKIPW Insulin Signaling MAP2K7 +WIKIPW Insulin Signaling PTEN +WIKIPW Insulin Signaling RHOJ +WIKIPW Insulin Signaling PTPN1 +WIKIPW Insulin Signaling TRIB3 +WIKIPW Insulin Signaling PTPN11 +WIKIPW Insulin Signaling PTPRF +WIKIPW Insulin Signaling RAB4A +WIKIPW Insulin Signaling MAP4K2 +WIKIPW Insulin Signaling RAC1 +WIKIPW Insulin Signaling RAC2 +WIKIPW Insulin Signaling RAF1 +WIKIPW Insulin Signaling REG1A +WIKIPW Insulin Signaling RHEB +WIKIPW Insulin Signaling RPS6KA1 +WIKIPW Insulin Signaling RPS6KA2 +WIKIPW Insulin Signaling RPS6KA3 +WIKIPW Insulin Signaling RPS6KB1 +WIKIPW Insulin Signaling RPS6KB2 +WIKIPW Insulin Signaling RRAD +WIKIPW Insulin Signaling MAPK12 +WIKIPW Insulin Signaling MAP2K4 +WIKIPW Insulin Signaling SGK1 +WIKIPW Insulin Signaling SHC1 +WIKIPW Insulin Signaling SLC2A1 +WIKIPW Insulin Signaling SLC2A4 +WIKIPW Insulin Signaling SNAP25 +WIKIPW Insulin Signaling SOS1 +WIKIPW Insulin Signaling SOS2 +WIKIPW Insulin Signaling SRF +WIKIPW Insulin Signaling STX4 +WIKIPW Insulin Signaling STXBP1 +WIKIPW Insulin Signaling STXBP2 +WIKIPW Insulin Signaling STXBP3 +WIKIPW Insulin Signaling VAMP2 +WIKIPW Insulin Signaling MAP3K7 +WIKIPW Insulin Signaling TSC1 +WIKIPW Insulin Signaling TSC2 +WIKIPW Insulin Signaling XBP1 +WIKIPW Insulin Signaling MAP3K12 +WIKIPW Insulin Signaling IRS4 +WIKIPW Insulin Signaling MAP4K3 +WIKIPW Insulin Signaling PIK3R3 +WIKIPW Insulin Signaling SOCS1 +WIKIPW Insulin Signaling IRS2 +WIKIPW Insulin Signaling CBL +WIKIPW Insulin Signaling CBLB +WIKIPW Insulin Signaling SNAP23 +WIKIPW Insulin Signaling RPS6KA4 +WIKIPW Insulin Signaling MAP3K14 +WIKIPW Insulin Signaling SOCS3 +WIKIPW Insulin Signaling MAP3K6 +WIKIPW Insulin Signaling MAP3K13 +WIKIPW Insulin Signaling RPS6KA5 +WIKIPW Insulin Signaling CYTH3 +WIKIPW Insulin Signaling MAP4K4 +WIKIPW Insulin Signaling TBC1D4 +WIKIPW IL-2 Signaling Pathway STAM2 +WIKIPW IL-2 Signaling Pathway GNB2L1 +WIKIPW IL-2 Signaling Pathway CHUK +WIKIPW IL-2 Signaling Pathway CISH +WIKIPW IL-2 Signaling Pathway CREB1 +WIKIPW IL-2 Signaling Pathway CRK +WIKIPW IL-2 Signaling Pathway CRKL +WIKIPW IL-2 Signaling Pathway MAPK14 +WIKIPW IL-2 Signaling Pathway EIF4E +WIKIPW IL-2 Signaling Pathway AKT1 +WIKIPW IL-2 Signaling Pathway ETS1 +WIKIPW IL-2 Signaling Pathway ETS2 +WIKIPW IL-2 Signaling Pathway PTK2B +WIKIPW IL-2 Signaling Pathway FOXO3 +WIKIPW IL-2 Signaling Pathway PLCB1 +WIKIPW IL-2 Signaling Pathway MTOR +WIKIPW IL-2 Signaling Pathway FYN +WIKIPW IL-2 Signaling Pathway GRB2 +WIKIPW IL-2 Signaling Pathway NR3C1 +WIKIPW IL-2 Signaling Pathway HSP90AA1 +WIKIPW IL-2 Signaling Pathway ICAM1 +WIKIPW IL-2 Signaling Pathway IFNA1 +WIKIPW IL-2 Signaling Pathway IL2 +WIKIPW IL-2 Signaling Pathway IL2RA +WIKIPW IL-2 Signaling Pathway IL2RB +WIKIPW IL-2 Signaling Pathway IL2RG +WIKIPW IL-2 Signaling Pathway IRS1 +WIKIPW IL-2 Signaling Pathway JAK1 +WIKIPW IL-2 Signaling Pathway JAK2 +WIKIPW IL-2 Signaling Pathway JAK3 +WIKIPW IL-2 Signaling Pathway KRAS +WIKIPW IL-2 Signaling Pathway LCK +WIKIPW IL-2 Signaling Pathway LYN +WIKIPW IL-2 Signaling Pathway NFKB1 +WIKIPW IL-2 Signaling Pathway YBX1 +WIKIPW IL-2 Signaling Pathway PIK3CA +WIKIPW IL-2 Signaling Pathway PIK3CB +WIKIPW IL-2 Signaling Pathway PIK3CD +WIKIPW IL-2 Signaling Pathway PIK3CG +WIKIPW IL-2 Signaling Pathway PIK3R1 +WIKIPW IL-2 Signaling Pathway PIK3R2 +WIKIPW IL-2 Signaling Pathway PRKCZ +WIKIPW IL-2 Signaling Pathway MAPK1 +WIKIPW IL-2 Signaling Pathway MAPK3 +WIKIPW IL-2 Signaling Pathway MAPK8 +WIKIPW IL-2 Signaling Pathway MAPK9 +WIKIPW IL-2 Signaling Pathway MAP2K1 +WIKIPW IL-2 Signaling Pathway MAP2K2 +WIKIPW IL-2 Signaling Pathway PTPN6 +WIKIPW IL-2 Signaling Pathway PTPN11 +WIKIPW IL-2 Signaling Pathway RAF1 +WIKIPW IL-2 Signaling Pathway BCL2 +WIKIPW IL-2 Signaling Pathway RELA +WIKIPW IL-2 Signaling Pathway RPS6KB1 +WIKIPW IL-2 Signaling Pathway SHB +WIKIPW IL-2 Signaling Pathway SHC1 +WIKIPW IL-2 Signaling Pathway SOS1 +WIKIPW IL-2 Signaling Pathway STAT1 +WIKIPW IL-2 Signaling Pathway STAT3 +WIKIPW IL-2 Signaling Pathway STAT5A +WIKIPW IL-2 Signaling Pathway STAT5B +WIKIPW IL-2 Signaling Pathway SYK +WIKIPW IL-2 Signaling Pathway TERT +WIKIPW IL-2 Signaling Pathway VAV1 +WIKIPW IL-2 Signaling Pathway STAM +WIKIPW IL-2 Signaling Pathway MKNK1 +WIKIPW IL-2 Signaling Pathway SOCS1 +WIKIPW IL-2 Signaling Pathway IRS2 +WIKIPW IL-2 Signaling Pathway EIF3B +WIKIPW IL-2 Signaling Pathway CBL +WIKIPW IL-2 Signaling Pathway SOCS3 +WIKIPW IL-2 Signaling Pathway NMI +WIKIPW IL-2 Signaling Pathway MAPKAPK2 +WIKIPW IL-2 Signaling Pathway ITM2B +WIKIPW IL-2 Signaling Pathway CD53 +WIKIPW IL-2 Signaling Pathway GAB2 +WIKIPW Steroid Biosynthesis F13B +WIKIPW Steroid Biosynthesis HSD3B1 +WIKIPW Steroid Biosynthesis HSD3B2 +WIKIPW Steroid Biosynthesis HSD17B1 +WIKIPW Steroid Biosynthesis HSD17B3 +WIKIPW Steroid Biosynthesis HSD17B2 +WIKIPW Steroid Biosynthesis HSD17B4 +WIKIPW Steroid Biosynthesis HSD17B7 +WIKIPW Urea cycle and metabolism of amino groups CKM +WIKIPW Urea cycle and metabolism of amino groups CPS1 +WIKIPW Urea cycle and metabolism of amino groups NAGS +WIKIPW Urea cycle and metabolism of amino groups GAMT +WIKIPW Urea cycle and metabolism of amino groups GATM +WIKIPW Urea cycle and metabolism of amino groups GLUD1 +WIKIPW Urea cycle and metabolism of amino groups ARG1 +WIKIPW Urea cycle and metabolism of amino groups ARG2 +WIKIPW Urea cycle and metabolism of amino groups ASL +WIKIPW Urea cycle and metabolism of amino groups ASS1 +WIKIPW Urea cycle and metabolism of amino groups OAT +WIKIPW Urea cycle and metabolism of amino groups ODC1 +WIKIPW Urea cycle and metabolism of amino groups OTC +WIKIPW Urea cycle and metabolism of amino groups PYCR1 +WIKIPW Urea cycle and metabolism of amino groups ALDH18A1 +WIKIPW Urea cycle and metabolism of amino groups PYCRL +WIKIPW Urea cycle and metabolism of amino groups SMS +WIKIPW Urea cycle and metabolism of amino groups SRM +WIKIPW Urea cycle and metabolism of amino groups ACY1 +WIKIPW Glycogen Metabolism GBE1 +WIKIPW Glycogen Metabolism PPP2R3B +WIKIPW Glycogen Metabolism GSK3A +WIKIPW Glycogen Metabolism GSK3B +WIKIPW Glycogen Metabolism GYG1 +WIKIPW Glycogen Metabolism GYS1 +WIKIPW Glycogen Metabolism GYS2 +WIKIPW Glycogen Metabolism PGM1 +WIKIPW Glycogen Metabolism PHKA1 +WIKIPW Glycogen Metabolism PHKA2 +WIKIPW Glycogen Metabolism PHKB +WIKIPW Glycogen Metabolism PHKG1 +WIKIPW Glycogen Metabolism PHKG2 +WIKIPW Glycogen Metabolism PPP2CA +WIKIPW Glycogen Metabolism PPP2CB +WIKIPW Glycogen Metabolism PPP2R1A +WIKIPW Glycogen Metabolism PPP2R1B +WIKIPW Glycogen Metabolism PPP2R2A +WIKIPW Glycogen Metabolism PPP2R2B +WIKIPW Glycogen Metabolism PPP2R2C +WIKIPW Glycogen Metabolism PPP2R3A +WIKIPW Glycogen Metabolism PPP2R4 +WIKIPW Glycogen Metabolism PPP2R5A +WIKIPW Glycogen Metabolism PPP2R5B +WIKIPW Glycogen Metabolism PPP2R5C +WIKIPW Glycogen Metabolism PPP2R5D +WIKIPW Glycogen Metabolism PPP2R5E +WIKIPW Glycogen Metabolism PYGB +WIKIPW Glycogen Metabolism PYGL +WIKIPW Glycogen Metabolism PYGM +WIKIPW Glycogen Metabolism UGP2 +WIKIPW Glycogen Metabolism CALM1 +WIKIPW Glycogen Metabolism CALM2 +WIKIPW Glycogen Metabolism CALM3 +WIKIPW Glycogen Metabolism GYG2 +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GRM1 +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GRM2 +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GRM3 +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GRM4 +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GRM5 +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GRM6 +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GRM7 +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GRM8 +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GPRC5B +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GPRC5D +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GPRC5C +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone CASR +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GPRC5A +WIKIPW GPCRs, Class C Metabotropic glutamate, pheromone GABBR2 +WIKIPW Regulation of Actin Cytoskeleton ARPC5 +WIKIPW Regulation of Actin Cytoskeleton ABI2 +WIKIPW Regulation of Actin Cytoskeleton WASF2 +WIKIPW Regulation of Actin Cytoskeleton PAK4 +WIKIPW Regulation of Actin Cytoskeleton BAIAP2 +WIKIPW Regulation of Actin Cytoskeleton GNA13 +WIKIPW Regulation of Actin Cytoskeleton CFL1 +WIKIPW Regulation of Actin Cytoskeleton CFL2 +WIKIPW Regulation of Actin Cytoskeleton NCKAP1 +WIKIPW Regulation of Actin Cytoskeleton CHRM1 +WIKIPW Regulation of Actin Cytoskeleton CHRM2 +WIKIPW Regulation of Actin Cytoskeleton CHRM3 +WIKIPW Regulation of Actin Cytoskeleton CHRM5 +WIKIPW Regulation of Actin Cytoskeleton PIP5KL1 +WIKIPW Regulation of Actin Cytoskeleton CRK +WIKIPW Regulation of Actin Cytoskeleton CSK +WIKIPW Regulation of Actin Cytoskeleton DOCK1 +WIKIPW Regulation of Actin Cytoskeleton EGF +WIKIPW Regulation of Actin Cytoskeleton EGFR +WIKIPW Regulation of Actin Cytoskeleton F2 +WIKIPW Regulation of Actin Cytoskeleton F2R +WIKIPW Regulation of Actin Cytoskeleton FGD1 +WIKIPW Regulation of Actin Cytoskeleton FGF1 +WIKIPW Regulation of Actin Cytoskeleton FGF2 +WIKIPW Regulation of Actin Cytoskeleton FGF3 +WIKIPW Regulation of Actin Cytoskeleton FGF4 +WIKIPW Regulation of Actin Cytoskeleton FGF5 +WIKIPW Regulation of Actin Cytoskeleton FGF6 +WIKIPW Regulation of Actin Cytoskeleton FGF7 +WIKIPW Regulation of Actin Cytoskeleton FGF8 +WIKIPW Regulation of Actin Cytoskeleton FGF9 +WIKIPW Regulation of Actin Cytoskeleton FGF10 +WIKIPW Regulation of Actin Cytoskeleton FGF11 +WIKIPW Regulation of Actin Cytoskeleton FGF12 +WIKIPW Regulation of Actin Cytoskeleton FGF13 +WIKIPW Regulation of Actin Cytoskeleton FGF14 +WIKIPW Regulation of Actin Cytoskeleton FGFR1 +WIKIPW Regulation of Actin Cytoskeleton FGFR3 +WIKIPW Regulation of Actin Cytoskeleton FGFR2 +WIKIPW Regulation of Actin Cytoskeleton FGFR4 +WIKIPW Regulation of Actin Cytoskeleton RRAS2 +WIKIPW Regulation of Actin Cytoskeleton MRAS +WIKIPW Regulation of Actin Cytoskeleton FN1 +WIKIPW Regulation of Actin Cytoskeleton PIP5K1C +WIKIPW Regulation of Actin Cytoskeleton PIK3R5 +WIKIPW Regulation of Actin Cytoskeleton FGF20 +WIKIPW Regulation of Actin Cytoskeleton FGF21 +WIKIPW Regulation of Actin Cytoskeleton CYFIP2 +WIKIPW Regulation of Actin Cytoskeleton FGF22 +WIKIPW Regulation of Actin Cytoskeleton GNA12 +WIKIPW Regulation of Actin Cytoskeleton GIT1 +WIKIPW Regulation of Actin Cytoskeleton GRLF1 +WIKIPW Regulation of Actin Cytoskeleton GSN +WIKIPW Regulation of Actin Cytoskeleton PIK3R4 +WIKIPW Regulation of Actin Cytoskeleton APC +WIKIPW Regulation of Actin Cytoskeleton ITGA1 +WIKIPW Regulation of Actin Cytoskeleton KRAS +WIKIPW Regulation of Actin Cytoskeleton RHOA +WIKIPW Regulation of Actin Cytoskeleton LIMK1 +WIKIPW Regulation of Actin Cytoskeleton MOS +WIKIPW Regulation of Actin Cytoskeleton MSN +WIKIPW Regulation of Actin Cytoskeleton MYH10 +WIKIPW Regulation of Actin Cytoskeleton MYL1 +WIKIPW Regulation of Actin Cytoskeleton MYL3 +WIKIPW Regulation of Actin Cytoskeleton MYLK +WIKIPW Regulation of Actin Cytoskeleton PPP1R12A +WIKIPW Regulation of Actin Cytoskeleton NRAS +WIKIPW Regulation of Actin Cytoskeleton PAK1 +WIKIPW Regulation of Actin Cytoskeleton PAK2 +WIKIPW Regulation of Actin Cytoskeleton PAK3 +WIKIPW Regulation of Actin Cytoskeleton ARHGEF4 +WIKIPW Regulation of Actin Cytoskeleton PDGFA +WIKIPW Regulation of Actin Cytoskeleton PDGFB +WIKIPW Regulation of Actin Cytoskeleton PDGFRA +WIKIPW Regulation of Actin Cytoskeleton PDGFRB +WIKIPW Regulation of Actin Cytoskeleton PFN1 +WIKIPW Regulation of Actin Cytoskeleton PIK3C2A +WIKIPW Regulation of Actin Cytoskeleton PIK3C2G +WIKIPW Regulation of Actin Cytoskeleton PIK3C3 +WIKIPW Regulation of Actin Cytoskeleton PIK3CA +WIKIPW Regulation of Actin Cytoskeleton PIK3CB +WIKIPW Regulation of Actin Cytoskeleton PIK3CD +WIKIPW Regulation of Actin Cytoskeleton PIK3CG +WIKIPW Regulation of Actin Cytoskeleton PIK3R1 +WIKIPW Regulation of Actin Cytoskeleton PIK3R2 +WIKIPW Regulation of Actin Cytoskeleton PIP4K2A +WIKIPW Regulation of Actin Cytoskeleton SSH1 +WIKIPW Regulation of Actin Cytoskeleton SSH3 +WIKIPW Regulation of Actin Cytoskeleton ENAH +WIKIPW Regulation of Actin Cytoskeleton MAPK1 +WIKIPW Regulation of Actin Cytoskeleton MAPK3 +WIKIPW Regulation of Actin Cytoskeleton MAPK4 +WIKIPW Regulation of Actin Cytoskeleton MAPK6 +WIKIPW Regulation of Actin Cytoskeleton GNG12 +WIKIPW Regulation of Actin Cytoskeleton MAP2K1 +WIKIPW Regulation of Actin Cytoskeleton MAP2K2 +WIKIPW Regulation of Actin Cytoskeleton PAK6 +WIKIPW Regulation of Actin Cytoskeleton PAK7 +WIKIPW Regulation of Actin Cytoskeleton PTK2 +WIKIPW Regulation of Actin Cytoskeleton PXN +WIKIPW Regulation of Actin Cytoskeleton RAC1 +WIKIPW Regulation of Actin Cytoskeleton RAC2 +WIKIPW Regulation of Actin Cytoskeleton RAC3 +WIKIPW Regulation of Actin Cytoskeleton RAF1 +WIKIPW Regulation of Actin Cytoskeleton RDX +WIKIPW Regulation of Actin Cytoskeleton ACTB +WIKIPW Regulation of Actin Cytoskeleton ROCK1 +WIKIPW Regulation of Actin Cytoskeleton BDKRB1 +WIKIPW Regulation of Actin Cytoskeleton RRAS +WIKIPW Regulation of Actin Cytoskeleton BDKRB2 +WIKIPW Regulation of Actin Cytoskeleton SLC9A1 +WIKIPW Regulation of Actin Cytoskeleton SOS1 +WIKIPW Regulation of Actin Cytoskeleton SOS2 +WIKIPW Regulation of Actin Cytoskeleton BRAF +WIKIPW Regulation of Actin Cytoskeleton ACTG1 +WIKIPW Regulation of Actin Cytoskeleton TMSB4X +WIKIPW Regulation of Actin Cytoskeleton LOC727758 +WIKIPW Regulation of Actin Cytoskeleton VAV1 +WIKIPW Regulation of Actin Cytoskeleton VCL +WIKIPW Regulation of Actin Cytoskeleton VIL1 +WIKIPW Regulation of Actin Cytoskeleton EZR +WIKIPW Regulation of Actin Cytoskeleton WAS +WIKIPW Regulation of Actin Cytoskeleton PIP4K2C +WIKIPW Regulation of Actin Cytoskeleton RASSF7 +WIKIPW Regulation of Actin Cytoskeleton FGF23 +WIKIPW Regulation of Actin Cytoskeleton PIP5K1A +WIKIPW Regulation of Actin Cytoskeleton PIP5K1B +WIKIPW Regulation of Actin Cytoskeleton PIP4K2B +WIKIPW Regulation of Actin Cytoskeleton PIK3R3 +WIKIPW Regulation of Actin Cytoskeleton SSH2 +WIKIPW Regulation of Actin Cytoskeleton ACTN1 +WIKIPW Regulation of Actin Cytoskeleton FGF18 +WIKIPW Regulation of Actin Cytoskeleton FGF17 +WIKIPW Regulation of Actin Cytoskeleton IQGAP1 +WIKIPW Regulation of Actin Cytoskeleton ARHGEF7 +WIKIPW Regulation of Actin Cytoskeleton WASF1 +WIKIPW Regulation of Actin Cytoskeleton ARHGEF1 +WIKIPW Regulation of Actin Cytoskeleton CD14 +WIKIPW Regulation of Actin Cytoskeleton ARHGEF6 +WIKIPW Regulation of Actin Cytoskeleton ROCK2 +WIKIPW Regulation of Actin Cytoskeleton BCAR1 +WIKIPW Regulation of Actin Cytoskeleton CDC42 +WIKIPW Hypertrophy Model ADAM10 +WIKIPW Hypertrophy Model DUSP14 +WIKIPW Hypertrophy Model HBEGF +WIKIPW Hypertrophy Model EIF4E +WIKIPW Hypertrophy Model EIF4EBP1 +WIKIPW Hypertrophy Model MSTN +WIKIPW Hypertrophy Model ANKRD1 +WIKIPW Hypertrophy Model IFNG +WIKIPW Hypertrophy Model IFRD1 +WIKIPW Hypertrophy Model CYR61 +WIKIPW Hypertrophy Model IL1A +WIKIPW Hypertrophy Model IL1R1 +WIKIPW Hypertrophy Model IL18 +WIKIPW Hypertrophy Model JUND +WIKIPW Hypertrophy Model MYOG +WIKIPW Hypertrophy Model ATF3 +WIKIPW Hypertrophy Model ZEB1 +WIKIPW Hypertrophy Model VEGFA +WIKIPW Hypertrophy Model NR4A3 +WIKIPW Hypertrophy Model WDR1 +WIKIPW amino acid conjugation of benzoic acid GLYATL2 +WIKIPW amino acid conjugation of benzoic acid ACSS2 +WIKIPW amino acid conjugation of benzoic acid GLYATL1 +WIKIPW G13 Signaling Pathway GNA13 +WIKIPW G13 Signaling Pathway CFL1 +WIKIPW G13 Signaling Pathway CFL2 +WIKIPW G13 Signaling Pathway IQGAP2 +WIKIPW G13 Signaling Pathway CIT +WIKIPW G13 Signaling Pathway DIAPH1 +WIKIPW G13 Signaling Pathway RHOA +WIKIPW G13 Signaling Pathway ARHGDIB +WIKIPW G13 Signaling Pathway ARHGDIG +WIKIPW G13 Signaling Pathway LIMK1 +WIKIPW G13 Signaling Pathway MAP3K4 +WIKIPW G13 Signaling Pathway MYBPH +WIKIPW G13 Signaling Pathway MYL1 +WIKIPW G13 Signaling Pathway PAK3 +WIKIPW G13 Signaling Pathway PFN1 +WIKIPW G13 Signaling Pathway PIK3CA +WIKIPW G13 Signaling Pathway PIK3CB +WIKIPW G13 Signaling Pathway PIK3CD +WIKIPW G13 Signaling Pathway PIK3R2 +WIKIPW G13 Signaling Pathway PIP4K2A +WIKIPW G13 Signaling Pathway PPP1CB +WIKIPW G13 Signaling Pathway PKN1 +WIKIPW G13 Signaling Pathway MAPK10 +WIKIPW G13 Signaling Pathway SH3RF1 +WIKIPW G13 Signaling Pathway RAC1 +WIKIPW G13 Signaling Pathway ROCK1 +WIKIPW G13 Signaling Pathway RPS6KB1 +WIKIPW G13 Signaling Pathway RTKN +WIKIPW G13 Signaling Pathway LOC727758 +WIKIPW G13 Signaling Pathway WAS +WIKIPW G13 Signaling Pathway CALM1 +WIKIPW G13 Signaling Pathway CALM2 +WIKIPW G13 Signaling Pathway CALM3 +WIKIPW G13 Signaling Pathway RHPN2 +WIKIPW G13 Signaling Pathway IQGAP1 +WIKIPW G13 Signaling Pathway WASL +WIKIPW G13 Signaling Pathway ARHGEF1 +WIKIPW G13 Signaling Pathway ROCK2 +WIKIPW G13 Signaling Pathway CDC42 +WIKIPW Acetylcholine Synthesis CHAT +WIKIPW Acetylcholine Synthesis CHKA +WIKIPW Acetylcholine Synthesis ACHE +WIKIPW Acetylcholine Synthesis PCYT1A +WIKIPW Acetylcholine Synthesis PDHA1 +WIKIPW Acetylcholine Synthesis PDHA2 +WIKIPW Id Signaling Pathway CTNNB1 +WIKIPW Id Signaling Pathway EGF +WIKIPW Id Signaling Pathway ELK1 +WIKIPW Id Signaling Pathway ELK3 +WIKIPW Id Signaling Pathway ELK4 +WIKIPW Id Signaling Pathway FLT1 +WIKIPW Id Signaling Pathway HES1 +WIKIPW Id Signaling Pathway ID1 +WIKIPW Id Signaling Pathway ID2 +WIKIPW Id Signaling Pathway ID3 +WIKIPW Id Signaling Pathway ID4 +WIKIPW Id Signaling Pathway IFI16 +WIKIPW Id Signaling Pathway IGF1 +WIKIPW Id Signaling Pathway IGF1R +WIKIPW Id Signaling Pathway IRS1 +WIKIPW Id Signaling Pathway KDR +WIKIPW Id Signaling Pathway SMAD1 +WIKIPW Id Signaling Pathway SMAD3 +WIKIPW Id Signaling Pathway SMAD4 +WIKIPW Id Signaling Pathway SMAD5 +WIKIPW Id Signaling Pathway MYF5 +WIKIPW Id Signaling Pathway MYF6 +WIKIPW Id Signaling Pathway MYOD1 +WIKIPW Id Signaling Pathway MYOG +WIKIPW Id Signaling Pathway ATF3 +WIKIPW Id Signaling Pathway NFKB1 +WIKIPW Id Signaling Pathway NGF +WIKIPW Id Signaling Pathway PAX2 +WIKIPW Id Signaling Pathway PAX5 +WIKIPW Id Signaling Pathway PSMD4 +WIKIPW Id Signaling Pathway RB1 +WIKIPW Id Signaling Pathway RBL1 +WIKIPW Id Signaling Pathway RBL2 +WIKIPW Id Signaling Pathway RELA +WIKIPW Id Signaling Pathway BMP2 +WIKIPW Id Signaling Pathway BMP6 +WIKIPW Id Signaling Pathway BMPR2 +WIKIPW Id Signaling Pathway SREBF1 +WIKIPW Id Signaling Pathway TCF3 +WIKIPW Id Signaling Pathway TCF7L2 +WIKIPW Id Signaling Pathway TCF12 +WIKIPW Id Signaling Pathway TERT +WIKIPW Id Signaling Pathway TGIF1 +WIKIPW Id Signaling Pathway VEGFA +WIKIPW Id Signaling Pathway PAX8 +WIKIPW Id Signaling Pathway CCNA2 +WIKIPW Id Signaling Pathway CCNE1 +WIKIPW Id Signaling Pathway MSC +WIKIPW Id Signaling Pathway ACVRL1 +WIKIPW Id Signaling Pathway CD40LG +WIKIPW Cytokines and Inflammatory Response (BioCarta) CSF2 +WIKIPW Cytokines and Inflammatory Response (BioCarta) CSF3 +WIKIPW Cytokines and Inflammatory Response (BioCarta) CXCL1 +WIKIPW Cytokines and Inflammatory Response (BioCarta) CXCL2 +WIKIPW Cytokines and Inflammatory Response (BioCarta) HLA-DRA +WIKIPW Cytokines and Inflammatory Response (BioCarta) HLA-DRB1 +WIKIPW Cytokines and Inflammatory Response (BioCarta) IFNB1 +WIKIPW Cytokines and Inflammatory Response (BioCarta) IFNG +WIKIPW Cytokines and Inflammatory Response (BioCarta) IL1A +WIKIPW Cytokines and Inflammatory Response (BioCarta) IL1B +WIKIPW Cytokines and Inflammatory Response (BioCarta) IL2 +WIKIPW Cytokines and Inflammatory Response (BioCarta) IL4 +WIKIPW Cytokines and Inflammatory Response (BioCarta) IL5 +WIKIPW Cytokines and Inflammatory Response (BioCarta) IL6 +WIKIPW Cytokines and Inflammatory Response (BioCarta) IL10 +WIKIPW Cytokines and Inflammatory Response (BioCarta) IL12B +WIKIPW Cytokines and Inflammatory Response (BioCarta) IL13 +WIKIPW Cytokines and Inflammatory Response (BioCarta) IL15 +WIKIPW Cytokines and Inflammatory Response (BioCarta) PDGFA +WIKIPW Cytokines and Inflammatory Response (BioCarta) TGFB1 +WIKIPW Cytokines and Inflammatory Response (BioCarta) TNF +WIKIPW Cytokines and Inflammatory Response (BioCarta) CD4 +WIKIPW Mismatch repair LIG1 +WIKIPW Mismatch repair MLH1 +WIKIPW Mismatch repair MSH2 +WIKIPW Mismatch repair PCNA +WIKIPW Mismatch repair POLD1 +WIKIPW Mismatch repair RFC1 +WIKIPW Mismatch repair RPA1 +WIKIPW Mismatch repair EXO1 +WIKIPW Glycolysis and Gluconeogenesis DLD +WIKIPW Glycolysis and Gluconeogenesis ENO1 +WIKIPW Glycolysis and Gluconeogenesis ENO2 +WIKIPW Glycolysis and Gluconeogenesis ENO3 +WIKIPW Glycolysis and Gluconeogenesis FBP1 +WIKIPW Glycolysis and Gluconeogenesis ALDOA +WIKIPW Glycolysis and Gluconeogenesis ALDOB +WIKIPW Glycolysis and Gluconeogenesis ALDOC +WIKIPW Glycolysis and Gluconeogenesis G6PC +WIKIPW Glycolysis and Gluconeogenesis GAPDH +WIKIPW Glycolysis and Gluconeogenesis GAPDHS +WIKIPW Glycolysis and Gluconeogenesis GCK +WIKIPW Glycolysis and Gluconeogenesis GOT1 +WIKIPW Glycolysis and Gluconeogenesis GOT2 +WIKIPW Glycolysis and Gluconeogenesis GPI +WIKIPW Glycolysis and Gluconeogenesis HK1 +WIKIPW Glycolysis and Gluconeogenesis HK2 +WIKIPW Glycolysis and Gluconeogenesis HK3 +WIKIPW Glycolysis and Gluconeogenesis LDHA +WIKIPW Glycolysis and Gluconeogenesis LDHB +WIKIPW Glycolysis and Gluconeogenesis LDHC +WIKIPW Glycolysis and Gluconeogenesis MDH1 +WIKIPW Glycolysis and Gluconeogenesis MDH2 +WIKIPW Glycolysis and Gluconeogenesis PC +WIKIPW Glycolysis and Gluconeogenesis PCK1 +WIKIPW Glycolysis and Gluconeogenesis PDHA1 +WIKIPW Glycolysis and Gluconeogenesis PDHA2 +WIKIPW Glycolysis and Gluconeogenesis PDHB +WIKIPW Glycolysis and Gluconeogenesis PFKL +WIKIPW Glycolysis and Gluconeogenesis PFKM +WIKIPW Glycolysis and Gluconeogenesis PFKP +WIKIPW Glycolysis and Gluconeogenesis PGAM1 +WIKIPW Glycolysis and Gluconeogenesis PGAM2 +WIKIPW Glycolysis and Gluconeogenesis PGK1 +WIKIPW Glycolysis and Gluconeogenesis PGK2 +WIKIPW Glycolysis and Gluconeogenesis PKLR +WIKIPW Glycolysis and Gluconeogenesis PKM2 +WIKIPW Glycolysis and Gluconeogenesis LOC652797 +WIKIPW Glycolysis and Gluconeogenesis TPI1 +WIKIPW Glycolysis and Gluconeogenesis PDHX +WIKIPW Glycolysis and Gluconeogenesis FBP2 +WIKIPW Glycolysis and Gluconeogenesis LDHAL6B +WIKIPW Calcium Regulation in the Cardiac Cell RGS19 +WIKIPW Calcium Regulation in the Cardiac Cell RGS14 +WIKIPW Calcium Regulation in the Cardiac Cell GNB5 +WIKIPW Calcium Regulation in the Cardiac Cell ADCY1 +WIKIPW Calcium Regulation in the Cardiac Cell ADCY2 +WIKIPW Calcium Regulation in the Cardiac Cell GJB6 +WIKIPW Calcium Regulation in the Cardiac Cell ADCY3 +WIKIPW Calcium Regulation in the Cardiac Cell YWHAQ +WIKIPW Calcium Regulation in the Cardiac Cell ADCY5 +WIKIPW Calcium Regulation in the Cardiac Cell PKIG +WIKIPW Calcium Regulation in the Cardiac Cell ADCY6 +WIKIPW Calcium Regulation in the Cardiac Cell CHRM1 +WIKIPW Calcium Regulation in the Cardiac Cell CHRM2 +WIKIPW Calcium Regulation in the Cardiac Cell ADCY7 +WIKIPW Calcium Regulation in the Cardiac Cell CHRM3 +WIKIPW Calcium Regulation in the Cardiac Cell CHRM5 +WIKIPW Calcium Regulation in the Cardiac Cell ADCY8 +WIKIPW Calcium Regulation in the Cardiac Cell ADCY9 +WIKIPW Calcium Regulation in the Cardiac Cell GJB4 +WIKIPW Calcium Regulation in the Cardiac Cell ADRA1D +WIKIPW Calcium Regulation in the Cardiac Cell ADRA1B +WIKIPW Calcium Regulation in the Cardiac Cell ADRA1A +WIKIPW Calcium Regulation in the Cardiac Cell ADRB1 +WIKIPW Calcium Regulation in the Cardiac Cell ADRB2 +WIKIPW Calcium Regulation in the Cardiac Cell ADRB3 +WIKIPW Calcium Regulation in the Cardiac Cell ADCY4 +WIKIPW Calcium Regulation in the Cardiac Cell FKBP1A +WIKIPW Calcium Regulation in the Cardiac Cell RGS17 +WIKIPW Calcium Regulation in the Cardiac Cell GJA1 +WIKIPW Calcium Regulation in the Cardiac Cell GJA3 +WIKIPW Calcium Regulation in the Cardiac Cell GJA4 +WIKIPW Calcium Regulation in the Cardiac Cell GJA5 +WIKIPW Calcium Regulation in the Cardiac Cell GJA8 +WIKIPW Calcium Regulation in the Cardiac Cell GJB1 +WIKIPW Calcium Regulation in the Cardiac Cell GJB2 +WIKIPW Calcium Regulation in the Cardiac Cell GJB3 +WIKIPW Calcium Regulation in the Cardiac Cell GJB5 +WIKIPW Calcium Regulation in the Cardiac Cell GNA11 +WIKIPW Calcium Regulation in the Cardiac Cell GNAI1 +WIKIPW Calcium Regulation in the Cardiac Cell GNAI2 +WIKIPW Calcium Regulation in the Cardiac Cell GNAI3 +WIKIPW Calcium Regulation in the Cardiac Cell GNAO1 +WIKIPW Calcium Regulation in the Cardiac Cell GNAQ +WIKIPW Calcium Regulation in the Cardiac Cell GNAS +WIKIPW Calcium Regulation in the Cardiac Cell GNAZ +WIKIPW Calcium Regulation in the Cardiac Cell GNB1 +WIKIPW Calcium Regulation in the Cardiac Cell GNB2 +WIKIPW Calcium Regulation in the Cardiac Cell GNB3 +WIKIPW Calcium Regulation in the Cardiac Cell GNG3 +WIKIPW Calcium Regulation in the Cardiac Cell GNG4 +WIKIPW Calcium Regulation in the Cardiac Cell GNG5 +WIKIPW Calcium Regulation in the Cardiac Cell GNG7 +WIKIPW Calcium Regulation in the Cardiac Cell GNG11 +WIKIPW Calcium Regulation in the Cardiac Cell GNGT1 +WIKIPW Calcium Regulation in the Cardiac Cell SFN +WIKIPW Calcium Regulation in the Cardiac Cell GRK4 +WIKIPW Calcium Regulation in the Cardiac Cell GRK5 +WIKIPW Calcium Regulation in the Cardiac Cell GRK6 +WIKIPW Calcium Regulation in the Cardiac Cell ANXA6 +WIKIPW Calcium Regulation in the Cardiac Cell ITPR1 +WIKIPW Calcium Regulation in the Cardiac Cell ITPR2 +WIKIPW Calcium Regulation in the Cardiac Cell ITPR3 +WIKIPW Calcium Regulation in the Cardiac Cell KCNB1 +WIKIPW Calcium Regulation in the Cardiac Cell KCNJ3 +WIKIPW Calcium Regulation in the Cardiac Cell KCNJ5 +WIKIPW Calcium Regulation in the Cardiac Cell ARRB1 +WIKIPW Calcium Regulation in the Cardiac Cell ARRB2 +WIKIPW Calcium Regulation in the Cardiac Cell ATP1A4 +WIKIPW Calcium Regulation in the Cardiac Cell ATP1B1 +WIKIPW Calcium Regulation in the Cardiac Cell ATP1B2 +WIKIPW Calcium Regulation in the Cardiac Cell ATP1B3 +WIKIPW Calcium Regulation in the Cardiac Cell FXYD2 +WIKIPW Calcium Regulation in the Cardiac Cell ATP2A2 +WIKIPW Calcium Regulation in the Cardiac Cell ATP2A3 +WIKIPW Calcium Regulation in the Cardiac Cell ATP2B1 +WIKIPW Calcium Regulation in the Cardiac Cell ATP2B2 +WIKIPW Calcium Regulation in the Cardiac Cell ATP2B3 +WIKIPW Calcium Regulation in the Cardiac Cell GNG13 +WIKIPW Calcium Regulation in the Cardiac Cell PLCB3 +WIKIPW Calcium Regulation in the Cardiac Cell PLN +WIKIPW Calcium Regulation in the Cardiac Cell GNG2 +WIKIPW Calcium Regulation in the Cardiac Cell PRKACA +WIKIPW Calcium Regulation in the Cardiac Cell PRKACB +WIKIPW Calcium Regulation in the Cardiac Cell PKIA +WIKIPW Calcium Regulation in the Cardiac Cell PKIB +WIKIPW Calcium Regulation in the Cardiac Cell PRKAR1A +WIKIPW Calcium Regulation in the Cardiac Cell PRKAR1B +WIKIPW Calcium Regulation in the Cardiac Cell PRKAR2A +WIKIPW Calcium Regulation in the Cardiac Cell PRKAR2B +WIKIPW Calcium Regulation in the Cardiac Cell PRKCA +WIKIPW Calcium Regulation in the Cardiac Cell PRKCB +WIKIPW Calcium Regulation in the Cardiac Cell PRKCD +WIKIPW Calcium Regulation in the Cardiac Cell PRKCE +WIKIPW Calcium Regulation in the Cardiac Cell PRKCG +WIKIPW Calcium Regulation in the Cardiac Cell PRKCH +WIKIPW Calcium Regulation in the Cardiac Cell PRKD1 +WIKIPW Calcium Regulation in the Cardiac Cell PRKCQ +WIKIPW Calcium Regulation in the Cardiac Cell PRKCZ +WIKIPW Calcium Regulation in the Cardiac Cell GNG12 +WIKIPW Calcium Regulation in the Cardiac Cell GJC2 +WIKIPW Calcium Regulation in the Cardiac Cell GJD2 +WIKIPW Calcium Regulation in the Cardiac Cell GNB4 +WIKIPW Calcium Regulation in the Cardiac Cell RGS1 +WIKIPW Calcium Regulation in the Cardiac Cell RGS2 +WIKIPW Calcium Regulation in the Cardiac Cell RGS3 +WIKIPW Calcium Regulation in the Cardiac Cell RGS4 +WIKIPW Calcium Regulation in the Cardiac Cell RGS7 +WIKIPW Calcium Regulation in the Cardiac Cell RGS10 +WIKIPW Calcium Regulation in the Cardiac Cell RGS16 +WIKIPW Calcium Regulation in the Cardiac Cell RYR1 +WIKIPW Calcium Regulation in the Cardiac Cell RYR2 +WIKIPW Calcium Regulation in the Cardiac Cell RYR3 +WIKIPW Calcium Regulation in the Cardiac Cell RGS18 +WIKIPW Calcium Regulation in the Cardiac Cell SLC8A1 +WIKIPW Calcium Regulation in the Cardiac Cell SLC8A3 +WIKIPW Calcium Regulation in the Cardiac Cell YWHAB +WIKIPW Calcium Regulation in the Cardiac Cell YWHAE +WIKIPW Calcium Regulation in the Cardiac Cell YWHAG +WIKIPW Calcium Regulation in the Cardiac Cell YWHAH +WIKIPW Calcium Regulation in the Cardiac Cell YWHAZ +WIKIPW Calcium Regulation in the Cardiac Cell CACNA1A +WIKIPW Calcium Regulation in the Cardiac Cell CACNA1B +WIKIPW Calcium Regulation in the Cardiac Cell CACNA1C +WIKIPW Calcium Regulation in the Cardiac Cell CACNA1D +WIKIPW Calcium Regulation in the Cardiac Cell CACNA1E +WIKIPW Calcium Regulation in the Cardiac Cell CACNA1S +WIKIPW Calcium Regulation in the Cardiac Cell CACNB1 +WIKIPW Calcium Regulation in the Cardiac Cell CACNB3 +WIKIPW Calcium Regulation in the Cardiac Cell CALM1 +WIKIPW Calcium Regulation in the Cardiac Cell CALM2 +WIKIPW Calcium Regulation in the Cardiac Cell CALM3 +WIKIPW Calcium Regulation in the Cardiac Cell GJA9 +WIKIPW Calcium Regulation in the Cardiac Cell CALR +WIKIPW Calcium Regulation in the Cardiac Cell CAMK4 +WIKIPW Calcium Regulation in the Cardiac Cell CAMK2A +WIKIPW Calcium Regulation in the Cardiac Cell CAMK2B +WIKIPW Calcium Regulation in the Cardiac Cell CAMK2D +WIKIPW Calcium Regulation in the Cardiac Cell CAMK2G +WIKIPW Calcium Regulation in the Cardiac Cell CASQ1 +WIKIPW Calcium Regulation in the Cardiac Cell CASQ2 +WIKIPW Calcium Regulation in the Cardiac Cell RGS5 +WIKIPW Calcium Regulation in the Cardiac Cell CAMK1 +WIKIPW Calcium Regulation in the Cardiac Cell RGS20 +WIKIPW Calcium Regulation in the Cardiac Cell RGS11 +WIKIPW Calcium Regulation in the Cardiac Cell RGS9 +WIKIPW Calcium Regulation in the Cardiac Cell GNG8 +WIKIPW Calcium Regulation in the Cardiac Cell RGS6 +WIKIPW Complement Activation, Classical Pathway CD55 +WIKIPW Complement Activation, Classical Pathway MASP1 +WIKIPW Complement Activation, Classical Pathway LOC653879 +WIKIPW Complement Activation, Classical Pathway C1QA +WIKIPW Complement Activation, Classical Pathway C1QB +WIKIPW Complement Activation, Classical Pathway C1QC +WIKIPW Complement Activation, Classical Pathway C1S +WIKIPW Complement Activation, Classical Pathway C2 +WIKIPW Complement Activation, Classical Pathway C3 +WIKIPW Complement Activation, Classical Pathway C4A +WIKIPW Complement Activation, Classical Pathway C4B +WIKIPW Complement Activation, Classical Pathway C5 +WIKIPW Complement Activation, Classical Pathway C6 +WIKIPW Complement Activation, Classical Pathway C7 +WIKIPW Complement Activation, Classical Pathway C8A +WIKIPW Complement Activation, Classical Pathway C8B +WIKIPW Complement Activation, Classical Pathway C9 +WIKIPW Biogenic Amine Synthesis COMT +WIKIPW Biogenic Amine Synthesis AANAT +WIKIPW Biogenic Amine Synthesis DBH +WIKIPW Biogenic Amine Synthesis DDC +WIKIPW Biogenic Amine Synthesis GAD1 +WIKIPW Biogenic Amine Synthesis GAD2 +WIKIPW Biogenic Amine Synthesis HDC +WIKIPW Biogenic Amine Synthesis MAOA +WIKIPW Biogenic Amine Synthesis ACHE +WIKIPW Biogenic Amine Synthesis ASMT +WIKIPW Biogenic Amine Synthesis PAH +WIKIPW Biogenic Amine Synthesis PNMT +WIKIPW Biogenic Amine Synthesis TH +WIKIPW Biogenic Amine Synthesis TPH1 +WIKIPW ACE Inhibitor Pathway AGT +WIKIPW ACE Inhibitor Pathway AGTR1 +WIKIPW ACE Inhibitor Pathway AGTR2 +WIKIPW ACE Inhibitor Pathway KNG1 +WIKIPW ACE Inhibitor Pathway NOS3 +WIKIPW ACE Inhibitor Pathway REN +WIKIPW ACE Inhibitor Pathway BDKRB2 +WIKIPW Complement and Coagulation Cascades KEGG MASP2 +WIKIPW Complement and Coagulation Cascades KEGG CPB2 +WIKIPW Complement and Coagulation Cascades KEGG CR1 +WIKIPW Complement and Coagulation Cascades KEGG CR2 +WIKIPW Complement and Coagulation Cascades KEGG A2M +WIKIPW Complement and Coagulation Cascades KEGG F2 +WIKIPW Complement and Coagulation Cascades KEGG F2R +WIKIPW Complement and Coagulation Cascades KEGG F3 +WIKIPW Complement and Coagulation Cascades KEGG F5 +WIKIPW Complement and Coagulation Cascades KEGG F7 +WIKIPW Complement and Coagulation Cascades KEGG F8 +WIKIPW Complement and Coagulation Cascades KEGG F9 +WIKIPW Complement and Coagulation Cascades KEGG F10 +WIKIPW Complement and Coagulation Cascades KEGG F12 +WIKIPW Complement and Coagulation Cascades KEGG F13B +WIKIPW Complement and Coagulation Cascades KEGG FGB +WIKIPW Complement and Coagulation Cascades KEGG SERPIND1 +WIKIPW Complement and Coagulation Cascades KEGG KLKB1 +WIKIPW Complement and Coagulation Cascades KEGG KNG1 +WIKIPW Complement and Coagulation Cascades KEGG CD46 +WIKIPW Complement and Coagulation Cascades KEGG SERPINC1 +WIKIPW Complement and Coagulation Cascades KEGG SERPINE1 +WIKIPW Complement and Coagulation Cascades KEGG SERPINA5 +WIKIPW Complement and Coagulation Cascades KEGG SERPINA1 +WIKIPW Complement and Coagulation Cascades KEGG PLAT +WIKIPW Complement and Coagulation Cascades KEGG PLAU +WIKIPW Complement and Coagulation Cascades KEGG PLAUR +WIKIPW Complement and Coagulation Cascades KEGG PLG +WIKIPW Complement and Coagulation Cascades KEGG SERPINF2 +WIKIPW Complement and Coagulation Cascades KEGG PROC +WIKIPW Complement and Coagulation Cascades KEGG PROS1 +WIKIPW Complement and Coagulation Cascades KEGG MASP1 +WIKIPW Complement and Coagulation Cascades KEGG BDKRB1 +WIKIPW Complement and Coagulation Cascades KEGG LOC653879 +WIKIPW Complement and Coagulation Cascades KEGG TFPI +WIKIPW Complement and Coagulation Cascades KEGG THBD +WIKIPW Complement and Coagulation Cascades KEGG SERPING1 +WIKIPW Complement and Coagulation Cascades KEGG C1QA +WIKIPW Complement and Coagulation Cascades KEGG C1QB +WIKIPW Complement and Coagulation Cascades KEGG C1QC +WIKIPW Complement and Coagulation Cascades KEGG C1S +WIKIPW Complement and Coagulation Cascades KEGG C2 +WIKIPW Complement and Coagulation Cascades KEGG C3 +WIKIPW Complement and Coagulation Cascades KEGG C3AR1 +WIKIPW Complement and Coagulation Cascades KEGG C5AR1 +WIKIPW Complement and Coagulation Cascades KEGG C6 +WIKIPW Complement and Coagulation Cascades KEGG C7 +WIKIPW Complement and Coagulation Cascades KEGG C8G +WIKIPW Complement and Coagulation Cascades KEGG C9 +WIKIPW Complement and Coagulation Cascades KEGG VWF +WIKIPW TGF Beta Signaling Pathway CREBBP +WIKIPW TGF Beta Signaling Pathway CTNNB1 +WIKIPW TGF Beta Signaling Pathway EGF +WIKIPW TGF Beta Signaling Pathway ENG +WIKIPW TGF Beta Signaling Pathway EP300 +WIKIPW TGF Beta Signaling Pathway FKBP1A +WIKIPW TGF Beta Signaling Pathway ZNF423 +WIKIPW TGF Beta Signaling Pathway FOS +WIKIPW TGF Beta Signaling Pathway BAMBI +WIKIPW TGF Beta Signaling Pathway HRAS +WIKIPW TGF Beta Signaling Pathway IFNG +WIKIPW TGF Beta Signaling Pathway INHBA +WIKIPW TGF Beta Signaling Pathway ITGB6 +WIKIPW TGF Beta Signaling Pathway JAK1 +WIKIPW TGF Beta Signaling Pathway JUN +WIKIPW TGF Beta Signaling Pathway LIF +WIKIPW TGF Beta Signaling Pathway LTBP1 +WIKIPW TGF Beta Signaling Pathway SMAD1 +WIKIPW TGF Beta Signaling Pathway SMAD2 +WIKIPW TGF Beta Signaling Pathway SMAD3 +WIKIPW TGF Beta Signaling Pathway SMAD4 +WIKIPW TGF Beta Signaling Pathway SMAD5 +WIKIPW TGF Beta Signaling Pathway SMAD6 +WIKIPW TGF Beta Signaling Pathway SMAD7 +WIKIPW TGF Beta Signaling Pathway SMAD9 +WIKIPW TGF Beta Signaling Pathway NFKB1 +WIKIPW TGF Beta Signaling Pathway SERPINE1 +WIKIPW TGF Beta Signaling Pathway LEF1 +WIKIPW TGF Beta Signaling Pathway MAPK3 +WIKIPW TGF Beta Signaling Pathway MAPK9 +WIKIPW TGF Beta Signaling Pathway SKI +WIKIPW TGF Beta Signaling Pathway SKIL +WIKIPW TGF Beta Signaling Pathway BMP4 +WIKIPW TGF Beta Signaling Pathway SPP1 +WIKIPW TGF Beta Signaling Pathway STAT1 +WIKIPW TGF Beta Signaling Pathway STAT3 +WIKIPW TGF Beta Signaling Pathway TFE3 +WIKIPW TGF Beta Signaling Pathway TGFB1 +WIKIPW TGF Beta Signaling Pathway TGFBR1 +WIKIPW TGF Beta Signaling Pathway TGFBR2 +WIKIPW TGF Beta Signaling Pathway TGFBR3 +WIKIPW TGF Beta Signaling Pathway TGIF1 +WIKIPW TGF Beta Signaling Pathway THBS1 +WIKIPW TGF Beta Signaling Pathway TNF +WIKIPW TGF Beta Signaling Pathway WNT1 +WIKIPW TGF Beta Signaling Pathway RUNX2 +WIKIPW TGF Beta Signaling Pathway RUNX3 +WIKIPW TGF Beta Signaling Pathway FOXH1 +WIKIPW TGF Beta Signaling Pathway NOG +WIKIPW TGF Beta Signaling Pathway ZFYVE9 +WIKIPW TGF Beta Signaling Pathway ZEB2 +WIKIPW Heme Biosynthesis ALAD +WIKIPW Heme Biosynthesis ALAS1 +WIKIPW Heme Biosynthesis ALAS2 +WIKIPW Heme Biosynthesis FECH +WIKIPW Heme Biosynthesis HMBS +WIKIPW Heme Biosynthesis PPOX +WIKIPW Heme Biosynthesis UROD +WIKIPW Heme Biosynthesis UROS +WIKIPW Monoamine GPCRs CHRM2 +WIKIPW Monoamine GPCRs CHRM3 +WIKIPW Monoamine GPCRs CHRM5 +WIKIPW Monoamine GPCRs ADRA1D +WIKIPW Monoamine GPCRs ADRA1B +WIKIPW Monoamine GPCRs ADRA1A +WIKIPW Monoamine GPCRs ADRA2A +WIKIPW Monoamine GPCRs ADRA2B +WIKIPW Monoamine GPCRs ADRA2C +WIKIPW Monoamine GPCRs ADRB1 +WIKIPW Monoamine GPCRs ADRB2 +WIKIPW Monoamine GPCRs ADRB3 +WIKIPW Monoamine GPCRs DRD1 +WIKIPW Monoamine GPCRs DRD2 +WIKIPW Monoamine GPCRs DRD3 +WIKIPW Monoamine GPCRs DRD4 +WIKIPW Monoamine GPCRs DRD5 +WIKIPW Monoamine GPCRs HRH1 +WIKIPW Monoamine GPCRs HRH2 +WIKIPW Monoamine GPCRs HTR1A +WIKIPW Monoamine GPCRs HTR1B +WIKIPW Monoamine GPCRs HTR1D +WIKIPW Monoamine GPCRs HTR1E +WIKIPW Monoamine GPCRs HTR1F +WIKIPW Monoamine GPCRs HTR2A +WIKIPW Monoamine GPCRs HTR2B +WIKIPW Monoamine GPCRs HTR2C +WIKIPW Monoamine GPCRs HTR4 +WIKIPW Monoamine GPCRs HTR5A +WIKIPW Monoamine GPCRs HTR6 +WIKIPW Monoamine GPCRs HTR7 +WIKIPW EPO Receptor Signaling CISH +WIKIPW EPO Receptor Signaling EPO +WIKIPW EPO Receptor Signaling EPOR +WIKIPW EPO Receptor Signaling AKT1 +WIKIPW EPO Receptor Signaling GRB2 +WIKIPW EPO Receptor Signaling IRS1 +WIKIPW EPO Receptor Signaling JAK2 +WIKIPW EPO Receptor Signaling PDK1 +WIKIPW EPO Receptor Signaling PIK3CG +WIKIPW EPO Receptor Signaling MAPK1 +WIKIPW EPO Receptor Signaling MAPK3 +WIKIPW EPO Receptor Signaling MAP2K1 +WIKIPW EPO Receptor Signaling MAP2K2 +WIKIPW EPO Receptor Signaling PTPRC +WIKIPW EPO Receptor Signaling RAF1 +WIKIPW EPO Receptor Signaling RASA1 +WIKIPW EPO Receptor Signaling SHC1 +WIKIPW EPO Receptor Signaling SOS1 +WIKIPW EPO Receptor Signaling SRC +WIKIPW EPO Receptor Signaling STAT1 +WIKIPW EPO Receptor Signaling STAT3 +WIKIPW EPO Receptor Signaling STAT5A +WIKIPW EPO Receptor Signaling STAT5B +WIKIPW EPO Receptor Signaling SOCS1 +WIKIPW EPO Receptor Signaling IRS2 +WIKIPW Delta-Notch Signaling Pathway ADAM10 +WIKIPW Delta-Notch Signaling Pathway CNTF +WIKIPW Delta-Notch Signaling Pathway CNTFR +WIKIPW Delta-Notch Signaling Pathway CNTN1 +WIKIPW Delta-Notch Signaling Pathway ZFPM1 +WIKIPW Delta-Notch Signaling Pathway JAG1 +WIKIPW Delta-Notch Signaling Pathway DTX1 +WIKIPW Delta-Notch Signaling Pathway EGF +WIKIPW Delta-Notch Signaling Pathway EGFR +WIKIPW Delta-Notch Signaling Pathway EP300 +WIKIPW Delta-Notch Signaling Pathway AKT1 +WIKIPW Delta-Notch Signaling Pathway FHL1 +WIKIPW Delta-Notch Signaling Pathway SNW1 +WIKIPW Delta-Notch Signaling Pathway SPEN +WIKIPW Delta-Notch Signaling Pathway NCSTN +WIKIPW Delta-Notch Signaling Pathway HEY1 +WIKIPW Delta-Notch Signaling Pathway HEY2 +WIKIPW Delta-Notch Signaling Pathway POFUT1 +WIKIPW Delta-Notch Signaling Pathway SIN3A +WIKIPW Delta-Notch Signaling Pathway DLL1 +WIKIPW Delta-Notch Signaling Pathway GSK3B +WIKIPW Delta-Notch Signaling Pathway HDAC1 +WIKIPW Delta-Notch Signaling Pathway HDAC2 +WIKIPW Delta-Notch Signaling Pathway HES1 +WIKIPW Delta-Notch Signaling Pathway APP +WIKIPW Delta-Notch Signaling Pathway RBPJ +WIKIPW Delta-Notch Signaling Pathway JAG2 +WIKIPW Delta-Notch Signaling Pathway JAK2 +WIKIPW Delta-Notch Signaling Pathway JUN +WIKIPW Delta-Notch Signaling Pathway HES5 +WIKIPW Delta-Notch Signaling Pathway LCK +WIKIPW Delta-Notch Signaling Pathway LFNG +WIKIPW Delta-Notch Signaling Pathway SMAD1 +WIKIPW Delta-Notch Signaling Pathway SMAD3 +WIKIPW Delta-Notch Signaling Pathway SMAD4 +WIKIPW Delta-Notch Signaling Pathway MAGEA1 +WIKIPW Delta-Notch Signaling Pathway MEF2C +WIKIPW Delta-Notch Signaling Pathway MFNG +WIKIPW Delta-Notch Signaling Pathway ASCL1 +WIKIPW Delta-Notch Signaling Pathway NFKBIA +WIKIPW Delta-Notch Signaling Pathway NOTCH1 +WIKIPW Delta-Notch Signaling Pathway NOTCH2 +WIKIPW Delta-Notch Signaling Pathway NOTCH3 +WIKIPW Delta-Notch Signaling Pathway NOTCH4 +WIKIPW Delta-Notch Signaling Pathway NOV +WIKIPW Delta-Notch Signaling Pathway FURIN +WIKIPW Delta-Notch Signaling Pathway APH1A +WIKIPW Delta-Notch Signaling Pathway LEF1 +WIKIPW Delta-Notch Signaling Pathway PIK3R1 +WIKIPW Delta-Notch Signaling Pathway PIK3R2 +WIKIPW Delta-Notch Signaling Pathway DLL4 +WIKIPW Delta-Notch Signaling Pathway FBXW7 +WIKIPW Delta-Notch Signaling Pathway HES6 +WIKIPW Delta-Notch Signaling Pathway MAML3 +WIKIPW Delta-Notch Signaling Pathway WDR12 +WIKIPW Delta-Notch Signaling Pathway PSENEN +WIKIPW Delta-Notch Signaling Pathway MAPK1 +WIKIPW Delta-Notch Signaling Pathway MAPK3 +WIKIPW Delta-Notch Signaling Pathway PSEN1 +WIKIPW Delta-Notch Signaling Pathway PSEN2 +WIKIPW Delta-Notch Signaling Pathway HIVEP3 +WIKIPW Delta-Notch Signaling Pathway RELA +WIKIPW Delta-Notch Signaling Pathway RING1 +WIKIPW Delta-Notch Signaling Pathway SKP1 +WIKIPW Delta-Notch Signaling Pathway SKP2 +WIKIPW Delta-Notch Signaling Pathway STAT3 +WIKIPW Delta-Notch Signaling Pathway ADAM17 +WIKIPW Delta-Notch Signaling Pathway TCF3 +WIKIPW Delta-Notch Signaling Pathway TLE1 +WIKIPW Delta-Notch Signaling Pathway TP53 +WIKIPW Delta-Notch Signaling Pathway YY1 +WIKIPW Delta-Notch Signaling Pathway ZFP91 +WIKIPW Delta-Notch Signaling Pathway APH1B +WIKIPW Delta-Notch Signaling Pathway ITCH +WIKIPW Delta-Notch Signaling Pathway MAML2 +WIKIPW Delta-Notch Signaling Pathway CUL1 +WIKIPW Delta-Notch Signaling Pathway NUMB +WIKIPW Delta-Notch Signaling Pathway SAP30 +WIKIPW Delta-Notch Signaling Pathway KAT2B +WIKIPW Delta-Notch Signaling Pathway NUMBL +WIKIPW Delta-Notch Signaling Pathway CIR1 +WIKIPW Delta-Notch Signaling Pathway NCOR1 +WIKIPW Delta-Notch Signaling Pathway NCOR2 +WIKIPW Delta-Notch Signaling Pathway MAML1 +WIKIPW Delta-Notch Signaling Pathway RBX1 +WIKIPW Senescence and Autophagy CDKN1B +WIKIPW Senescence and Autophagy CDKN2A +WIKIPW Senescence and Autophagy CEBPB +WIKIPW Senescence and Autophagy ATG7 +WIKIPW Senescence and Autophagy COL1A1 +WIKIPW Senescence and Autophagy MAPK14 +WIKIPW Senescence and Autophagy E2F1 +WIKIPW Senescence and Autophagy FN1 +WIKIPW Senescence and Autophagy MTOR +WIKIPW Senescence and Autophagy CXCL1 +WIKIPW Senescence and Autophagy GSK3B +WIKIPW Senescence and Autophagy GSN +WIKIPW Senescence and Autophagy HRAS +WIKIPW Senescence and Autophagy IFI16 +WIKIPW Senescence and Autophagy IFNB1 +WIKIPW Senescence and Autophagy IFNG +WIKIPW Senescence and Autophagy IGF1 +WIKIPW Senescence and Autophagy IGF1R +WIKIPW Senescence and Autophagy IGFBP5 +WIKIPW Senescence and Autophagy IGFBP7 +WIKIPW Senescence and Autophagy IL3 +WIKIPW Senescence and Autophagy IL6 +WIKIPW Senescence and Autophagy IL6R +WIKIPW Senescence and Autophagy IL6ST +WIKIPW Senescence and Autophagy IL8 +WIKIPW Senescence and Autophagy ING1 +WIKIPW Senescence and Autophagy IRF1 +WIKIPW Senescence and Autophagy IRF5 +WIKIPW Senescence and Autophagy IRF7 +WIKIPW Senescence and Autophagy LAMP2 +WIKIPW Senescence and Autophagy MDM2 +WIKIPW Senescence and Autophagy MLL +WIKIPW Senescence and Autophagy SERPINE1 +WIKIPW Senescence and Autophagy SERPINB2 +WIKIPW Senescence and Autophagy SH3GLB1 +WIKIPW Senescence and Autophagy PLAT +WIKIPW Senescence and Autophagy MAPK1 +WIKIPW Senescence and Autophagy MAP2K1 +WIKIPW Senescence and Autophagy MAP2K3 +WIKIPW Senescence and Autophagy PTEN +WIKIPW Senescence and Autophagy RAF1 +WIKIPW Senescence and Autophagy RB1 +WIKIPW Senescence and Autophagy RNASEL +WIKIPW Senescence and Autophagy BMI1 +WIKIPW Senescence and Autophagy BMP2 +WIKIPW Senescence and Autophagy SPARC +WIKIPW Senescence and Autophagy BRAF +WIKIPW Senescence and Autophagy TGFB1 +WIKIPW Senescence and Autophagy THBS1 +WIKIPW Senescence and Autophagy TP53 +WIKIPW Senescence and Autophagy VTN +WIKIPW Senescence and Autophagy ULK1 +WIKIPW Senescence and Autophagy MAP1LC3A +WIKIPW Senescence and Autophagy BECN1 +WIKIPW Senescence and Autophagy CREG1 +WIKIPW Senescence and Autophagy ATG5 +WIKIPW Senescence and Autophagy CXCL14 +WIKIPW Senescence and Autophagy CD44 +WIKIPW Senescence and Autophagy CDC25B +WIKIPW Type II interferon signaling (IFNG) HIST4H4 +WIKIPW Type II interferon signaling (IFNG) CYBB +WIKIPW Type II interferon signaling (IFNG) IFI6 +WIKIPW Type II interferon signaling (IFNG) GBP1 +WIKIPW Type II interferon signaling (IFNG) HLA-B +WIKIPW Type II interferon signaling (IFNG) HLA-C +WIKIPW Type II interferon signaling (IFNG) ICAM1 +WIKIPW Type II interferon signaling (IFNG) IRF8 +WIKIPW Type II interferon signaling (IFNG) IFIT2 +WIKIPW Type II interferon signaling (IFNG) IFNA2 +WIKIPW Type II interferon signaling (IFNG) IFNB1 +WIKIPW Type II interferon signaling (IFNG) IFNG +WIKIPW Type II interferon signaling (IFNG) IFNGR1 +WIKIPW Type II interferon signaling (IFNG) IFNGR2 +WIKIPW Type II interferon signaling (IFNG) IL1B +WIKIPW Type II interferon signaling (IFNG) CXCL10 +WIKIPW Type II interferon signaling (IFNG) IRF1 +WIKIPW Type II interferon signaling (IFNG) IRF2 +WIKIPW Type II interferon signaling (IFNG) IRF4 +WIKIPW Type II interferon signaling (IFNG) JAK1 +WIKIPW Type II interferon signaling (IFNG) JAK2 +WIKIPW Type II interferon signaling (IFNG) CIITA +WIKIPW Type II interferon signaling (IFNG) CXCL9 +WIKIPW Type II interferon signaling (IFNG) NOS2 +WIKIPW Type II interferon signaling (IFNG) OAS1 +WIKIPW Type II interferon signaling (IFNG) HIST2H4B +WIKIPW Type II interferon signaling (IFNG) PRKCD +WIKIPW Type II interferon signaling (IFNG) EIF2AK2 +WIKIPW Type II interferon signaling (IFNG) PSMB9 +WIKIPW Type II interferon signaling (IFNG) PTPN11 +WIKIPW Type II interferon signaling (IFNG) REG1A +WIKIPW Type II interferon signaling (IFNG) SPI1 +WIKIPW Type II interferon signaling (IFNG) STAT1 +WIKIPW Type II interferon signaling (IFNG) STAT2 +WIKIPW Type II interferon signaling (IFNG) TAP1 +WIKIPW Type II interferon signaling (IFNG) HIST1H4I +WIKIPW Type II interferon signaling (IFNG) HIST1H4A +WIKIPW Type II interferon signaling (IFNG) HIST1H4D +WIKIPW Type II interferon signaling (IFNG) HIST1H4F +WIKIPW Type II interferon signaling (IFNG) HIST1H4K +WIKIPW Type II interferon signaling (IFNG) HIST1H4J +WIKIPW Type II interferon signaling (IFNG) HIST1H4C +WIKIPW Type II interferon signaling (IFNG) HIST1H4H +WIKIPW Type II interferon signaling (IFNG) HIST1H4B +WIKIPW Type II interferon signaling (IFNG) HIST1H4E +WIKIPW Type II interferon signaling (IFNG) HIST1H4L +WIKIPW Type II interferon signaling (IFNG) HIST2H4A +WIKIPW Type II interferon signaling (IFNG) SOCS1 +WIKIPW Type II interferon signaling (IFNG) SOCS3 +WIKIPW Type II interferon signaling (IFNG) ISG15 +WIKIPW Oxidative phosphorylation ATP5H +WIKIPW Oxidative phosphorylation ATP5L +WIKIPW Oxidative phosphorylation NDUFA11 +WIKIPW Oxidative phosphorylation ATP5S +WIKIPW Oxidative phosphorylation GZMB +WIKIPW Oxidative phosphorylation NDUFS7 +WIKIPW Oxidative phosphorylation NDUFA2 +WIKIPW Oxidative phosphorylation NDUFA3 +WIKIPW Oxidative phosphorylation NDUFA4 +WIKIPW Oxidative phosphorylation NDUFA5 +WIKIPW Oxidative phosphorylation NDUFA6 +WIKIPW Oxidative phosphorylation NDUFA7 +WIKIPW Oxidative phosphorylation NDUFA8 +WIKIPW Oxidative phosphorylation NDUFA9 +WIKIPW Oxidative phosphorylation NDUFA10 +WIKIPW Oxidative phosphorylation NDUFAB1 +WIKIPW Oxidative phosphorylation NDUFB1 +WIKIPW Oxidative phosphorylation NDUFB2 +WIKIPW Oxidative phosphorylation NDUFB4 +WIKIPW Oxidative phosphorylation NDUFB5 +WIKIPW Oxidative phosphorylation NDUFB6 +WIKIPW Oxidative phosphorylation NDUFB7 +WIKIPW Oxidative phosphorylation NDUFB8 +WIKIPW Oxidative phosphorylation NDUFB9 +WIKIPW Oxidative phosphorylation NDUFB10 +WIKIPW Oxidative phosphorylation NDUFC1 +WIKIPW Oxidative phosphorylation NDUFC2 +WIKIPW Oxidative phosphorylation NDUFS1 +WIKIPW Oxidative phosphorylation NDUFS2 +WIKIPW Oxidative phosphorylation NDUFS3 +WIKIPW Oxidative phosphorylation NDUFV1 +WIKIPW Oxidative phosphorylation NDUFS4 +WIKIPW Oxidative phosphorylation NDUFS5 +WIKIPW Oxidative phosphorylation NDUFS6 +WIKIPW Oxidative phosphorylation NDUFS8 +WIKIPW Oxidative phosphorylation NDUFV2 +WIKIPW Oxidative phosphorylation NDUFV3 +WIKIPW Oxidative phosphorylation ATP5A1 +WIKIPW Oxidative phosphorylation ATP5B +WIKIPW Oxidative phosphorylation ATP5D +WIKIPW Oxidative phosphorylation ATP5E +WIKIPW Oxidative phosphorylation ATP5F1 +WIKIPW Oxidative phosphorylation ATP5G1 +WIKIPW Oxidative phosphorylation ATP5G2 +WIKIPW Oxidative phosphorylation ATP5G3 +WIKIPW Oxidative phosphorylation ATP5I +WIKIPW Oxidative phosphorylation ATP5J +WIKIPW Oxidative phosphorylation ATP6AP1 +WIKIPW Oxidative phosphorylation ATP5O +WIKIPW Oxidative phosphorylation NDUFA4L2 +WIKIPW Oxidative phosphorylation ATP5J2 +WIKIPW Hypothetical Network for Drug Addiction NISCH +WIKIPW Hypothetical Network for Drug Addiction ADCY8 +WIKIPW Hypothetical Network for Drug Addiction CREB1 +WIKIPW Hypothetical Network for Drug Addiction DRD1 +WIKIPW Hypothetical Network for Drug Addiction DRD2 +WIKIPW Hypothetical Network for Drug Addiction DRD4 +WIKIPW Hypothetical Network for Drug Addiction ZHX2 +WIKIPW Hypothetical Network for Drug Addiction GRIA1 +WIKIPW Hypothetical Network for Drug Addiction GRIA2 +WIKIPW Hypothetical Network for Drug Addiction GRIA3 +WIKIPW Hypothetical Network for Drug Addiction GRIA4 +WIKIPW Hypothetical Network for Drug Addiction GRIN1 +WIKIPW Hypothetical Network for Drug Addiction GRIN2A +WIKIPW Hypothetical Network for Drug Addiction GRIN2B +WIKIPW Hypothetical Network for Drug Addiction GRIN2C +WIKIPW Hypothetical Network for Drug Addiction GRIN2D +WIKIPW Hypothetical Network for Drug Addiction GRM1 +WIKIPW Hypothetical Network for Drug Addiction GRM5 +WIKIPW Hypothetical Network for Drug Addiction GJB7 +WIKIPW Hypothetical Network for Drug Addiction TERF2IP +WIKIPW Hypothetical Network for Drug Addiction PPA1 +WIKIPW Hypothetical Network for Drug Addiction PRKACA +WIKIPW Hypothetical Network for Drug Addiction PRKCE +WIKIPW Hypothetical Network for Drug Addiction MAPK1 +WIKIPW Hypothetical Network for Drug Addiction MAPK3 +WIKIPW Hypothetical Network for Drug Addiction MAP2K1 +WIKIPW Hypothetical Network for Drug Addiction MAP2K2 +WIKIPW Hypothetical Network for Drug Addiction ACTA1 +WIKIPW Hypothetical Network for Drug Addiction CAMK4 +WIKIPW Hypothetical Network for Drug Addiction CAMK2B +WIKIPW Hypothetical Network for Drug Addiction KRIT1 +WIKIPW ErbB signaling pathway CDKN1A +WIKIPW ErbB signaling pathway CDKN1B +WIKIPW ErbB signaling pathway PAK4 +WIKIPW ErbB signaling pathway NRG3 +WIKIPW ErbB signaling pathway CRK +WIKIPW ErbB signaling pathway NRG4 +WIKIPW ErbB signaling pathway HBEGF +WIKIPW ErbB signaling pathway EGF +WIKIPW ErbB signaling pathway EGFR +WIKIPW ErbB signaling pathway EIF4EBP1 +WIKIPW ErbB signaling pathway ELK1 +WIKIPW ErbB signaling pathway ERBB2 +WIKIPW ErbB signaling pathway ERBB3 +WIKIPW ErbB signaling pathway ERBB4 +WIKIPW ErbB signaling pathway EREG +WIKIPW ErbB signaling pathway PIK3R5 +WIKIPW ErbB signaling pathway CBLC +WIKIPW ErbB signaling pathway MTOR +WIKIPW ErbB signaling pathway ABL1 +WIKIPW ErbB signaling pathway GAB1 +WIKIPW ErbB signaling pathway SHC2 +WIKIPW ErbB signaling pathway GRB2 +WIKIPW ErbB signaling pathway GSK3B +WIKIPW ErbB signaling pathway NRG1 +WIKIPW ErbB signaling pathway HRAS +WIKIPW ErbB signaling pathway ARAF +WIKIPW ErbB signaling pathway JUN +WIKIPW ErbB signaling pathway AREG +WIKIPW ErbB signaling pathway MYC +WIKIPW ErbB signaling pathway NCK1 +WIKIPW ErbB signaling pathway PLCG1 +WIKIPW ErbB signaling pathway PRKCA +WIKIPW ErbB signaling pathway MAPK1 +WIKIPW ErbB signaling pathway MAPK8 +WIKIPW ErbB signaling pathway MAP2K1 +WIKIPW ErbB signaling pathway MAP2K7 +WIKIPW ErbB signaling pathway BAD +WIKIPW ErbB signaling pathway PTK2 +WIKIPW ErbB signaling pathway RPS6KB1 +WIKIPW ErbB signaling pathway SOS1 +WIKIPW ErbB signaling pathway SRC +WIKIPW ErbB signaling pathway STAT5A +WIKIPW ErbB signaling pathway BTC +WIKIPW ErbB signaling pathway TGFA +WIKIPW ErbB signaling pathway AREGB +WIKIPW ErbB signaling pathway CAMK2A +WIKIPW ErbB signaling pathway NRG2 +WIKIPW Arachidonate Epoxygenase / Epoxide Hydrolase CYP2C8 +WIKIPW Arachidonate Epoxygenase / Epoxide Hydrolase CYP2C9 +WIKIPW Arachidonate Epoxygenase / Epoxide Hydrolase CYP2J2 +WIKIPW Arachidonate Epoxygenase / Epoxide Hydrolase EPHX2 +WIKIPW Arachidonate Epoxygenase / Epoxide Hydrolase GSTP1 +WIKIPW Arachidonate Epoxygenase / Epoxide Hydrolase COX5A +WIKIPW Catalytic cycle of mammalian FMOs FMO2 +WIKIPW Catalytic cycle of mammalian FMOs FMO3 +WIKIPW Catalytic cycle of mammalian FMOs FMO4 +WIKIPW Catalytic cycle of mammalian FMOs FMO5 +WIKIPW T Cell Receptor Signaling Pathway SH2B3 +WIKIPW T Cell Receptor Signaling Pathway SH2D3C +WIKIPW T Cell Receptor Signaling Pathway WASF2 +WIKIPW T Cell Receptor Signaling Pathway RASGRP2 +WIKIPW T Cell Receptor Signaling Pathway VAV3 +WIKIPW T Cell Receptor Signaling Pathway CEBPB +WIKIPW T Cell Receptor Signaling Pathway KHDRBS1 +WIKIPW T Cell Receptor Signaling Pathway GRAP +WIKIPW T Cell Receptor Signaling Pathway YWHAQ +WIKIPW T Cell Receptor Signaling Pathway MAP4K1 +WIKIPW T Cell Receptor Signaling Pathway FCRL3 +WIKIPW T Cell Receptor Signaling Pathway CISH +WIKIPW T Cell Receptor Signaling Pathway CREB1 +WIKIPW T Cell Receptor Signaling Pathway CREBBP +WIKIPW T Cell Receptor Signaling Pathway CRK +WIKIPW T Cell Receptor Signaling Pathway CRKL +WIKIPW T Cell Receptor Signaling Pathway CTNNB1 +WIKIPW T Cell Receptor Signaling Pathway NFAM1 +WIKIPW T Cell Receptor Signaling Pathway DLG1 +WIKIPW T Cell Receptor Signaling Pathway DNM2 +WIKIPW T Cell Receptor Signaling Pathway DOCK2 +WIKIPW T Cell Receptor Signaling Pathway DTX1 +WIKIPW T Cell Receptor Signaling Pathway DUSP3 +WIKIPW T Cell Receptor Signaling Pathway TUBB +WIKIPW T Cell Receptor Signaling Pathway AKT1 +WIKIPW T Cell Receptor Signaling Pathway PTK2B +WIKIPW T Cell Receptor Signaling Pathway CABIN1 +WIKIPW T Cell Receptor Signaling Pathway FOS +WIKIPW T Cell Receptor Signaling Pathway CD2AP +WIKIPW T Cell Receptor Signaling Pathway ABL1 +WIKIPW T Cell Receptor Signaling Pathway FYB +WIKIPW T Cell Receptor Signaling Pathway FYN +WIKIPW T Cell Receptor Signaling Pathway PRKD2 +WIKIPW T Cell Receptor Signaling Pathway PTPN22 +WIKIPW T Cell Receptor Signaling Pathway LAT +WIKIPW T Cell Receptor Signaling Pathway SIT1 +WIKIPW T Cell Receptor Signaling Pathway STK39 +WIKIPW T Cell Receptor Signaling Pathway GRB2 +WIKIPW T Cell Receptor Signaling Pathway RAPGEF1 +WIKIPW T Cell Receptor Signaling Pathway DBNL +WIKIPW T Cell Receptor Signaling Pathway ITK +WIKIPW T Cell Receptor Signaling Pathway ITPR1 +WIKIPW T Cell Receptor Signaling Pathway JAK3 +WIKIPW T Cell Receptor Signaling Pathway JUN +WIKIPW T Cell Receptor Signaling Pathway LCK +WIKIPW T Cell Receptor Signaling Pathway LCP2 +WIKIPW T Cell Receptor Signaling Pathway ARHGDIB +WIKIPW T Cell Receptor Signaling Pathway LYN +WIKIPW T Cell Receptor Signaling Pathway MAP3K1 +WIKIPW T Cell Receptor Signaling Pathway MUC1 +WIKIPW T Cell Receptor Signaling Pathway NCK1 +WIKIPW T Cell Receptor Signaling Pathway NCL +WIKIPW T Cell Receptor Signaling Pathway NEDD9 +WIKIPW T Cell Receptor Signaling Pathway NFATC2 +WIKIPW T Cell Receptor Signaling Pathway PAK1 +WIKIPW T Cell Receptor Signaling Pathway DEF6 +WIKIPW T Cell Receptor Signaling Pathway TRAT1 +WIKIPW T Cell Receptor Signaling Pathway EVL +WIKIPW T Cell Receptor Signaling Pathway HDAC7 +WIKIPW T Cell Receptor Signaling Pathway ACP1 +WIKIPW T Cell Receptor Signaling Pathway PIK3R1 +WIKIPW T Cell Receptor Signaling Pathway PIK3R2 +WIKIPW T Cell Receptor Signaling Pathway PLCG1 +WIKIPW T Cell Receptor Signaling Pathway LAX1 +WIKIPW T Cell Receptor Signaling Pathway LIME1 +WIKIPW T Cell Receptor Signaling Pathway PPP3CB +WIKIPW T Cell Receptor Signaling Pathway ENAH +WIKIPW T Cell Receptor Signaling Pathway PAG1 +WIKIPW T Cell Receptor Signaling Pathway PRKCQ +WIKIPW T Cell Receptor Signaling Pathway MAPK1 +WIKIPW T Cell Receptor Signaling Pathway MAPK3 +WIKIPW T Cell Receptor Signaling Pathway MAPK7 +WIKIPW T Cell Receptor Signaling Pathway MAP2K1 +WIKIPW T Cell Receptor Signaling Pathway MAP2K2 +WIKIPW T Cell Receptor Signaling Pathway PTK2 +WIKIPW T Cell Receptor Signaling Pathway PTPN3 +WIKIPW T Cell Receptor Signaling Pathway PTPN6 +WIKIPW T Cell Receptor Signaling Pathway PTPN11 +WIKIPW T Cell Receptor Signaling Pathway PTPN12 +WIKIPW T Cell Receptor Signaling Pathway PTPRC +WIKIPW T Cell Receptor Signaling Pathway PTPRH +WIKIPW T Cell Receptor Signaling Pathway PTPRJ +WIKIPW T Cell Receptor Signaling Pathway PXN +WIKIPW T Cell Receptor Signaling Pathway RAC2 +WIKIPW T Cell Receptor Signaling Pathway RAP1A +WIKIPW T Cell Receptor Signaling Pathway RASA1 +WIKIPW T Cell Receptor Signaling Pathway SH3BP2 +WIKIPW T Cell Receptor Signaling Pathway SHB +WIKIPW T Cell Receptor Signaling Pathway SHC1 +WIKIPW T Cell Receptor Signaling Pathway SLA +WIKIPW T Cell Receptor Signaling Pathway SOS1 +WIKIPW T Cell Receptor Signaling Pathway SOS2 +WIKIPW T Cell Receptor Signaling Pathway SRC +WIKIPW T Cell Receptor Signaling Pathway BRAF +WIKIPW T Cell Receptor Signaling Pathway STAT1 +WIKIPW T Cell Receptor Signaling Pathway STAT5A +WIKIPW T Cell Receptor Signaling Pathway STAT5B +WIKIPW T Cell Receptor Signaling Pathway SYK +WIKIPW T Cell Receptor Signaling Pathway TUBA4A +WIKIPW T Cell Receptor Signaling Pathway TXK +WIKIPW T Cell Receptor Signaling Pathway VASP +WIKIPW T Cell Receptor Signaling Pathway VAV1 +WIKIPW T Cell Receptor Signaling Pathway VAV2 +WIKIPW T Cell Receptor Signaling Pathway WAS +WIKIPW T Cell Receptor Signaling Pathway WIPF1 +WIKIPW T Cell Receptor Signaling Pathway ZAP70 +WIKIPW T Cell Receptor Signaling Pathway SLA2 +WIKIPW T Cell Receptor Signaling Pathway CARD11 +WIKIPW T Cell Receptor Signaling Pathway SKAP1 +WIKIPW T Cell Receptor Signaling Pathway CBL +WIKIPW T Cell Receptor Signaling Pathway CBLB +WIKIPW T Cell Receptor Signaling Pathway RIPK2 +WIKIPW T Cell Receptor Signaling Pathway ARHGEF7 +WIKIPW T Cell Receptor Signaling Pathway BCL10 +WIKIPW T Cell Receptor Signaling Pathway SKAP2 +WIKIPW T Cell Receptor Signaling Pathway SH2D2A +WIKIPW T Cell Receptor Signaling Pathway PSTPIP1 +WIKIPW T Cell Receptor Signaling Pathway UNC119 +WIKIPW T Cell Receptor Signaling Pathway CD2 +WIKIPW T Cell Receptor Signaling Pathway CD3D +WIKIPW T Cell Receptor Signaling Pathway CD3E +WIKIPW T Cell Receptor Signaling Pathway CD3G +WIKIPW T Cell Receptor Signaling Pathway CD247 +WIKIPW T Cell Receptor Signaling Pathway CD4 +WIKIPW T Cell Receptor Signaling Pathway CD5 +WIKIPW T Cell Receptor Signaling Pathway CD8A +WIKIPW T Cell Receptor Signaling Pathway GRAP2 +WIKIPW T Cell Receptor Signaling Pathway HOMER3 +WIKIPW T Cell Receptor Signaling Pathway ARHGEF6 +WIKIPW T Cell Receptor Signaling Pathway GIT2 +WIKIPW T Cell Receptor Signaling Pathway GAB2 +WIKIPW T Cell Receptor Signaling Pathway CDC42 +WIKIPW Polyol pathway AKR1B1 +WIKIPW Polyol pathway KHK +WIKIPW Polyol pathway SORD +WIKIPW Tamoxifen metabolism CYP1A2 +WIKIPW Tamoxifen metabolism CYP1B1 +WIKIPW Tamoxifen metabolism CYP2A6 +WIKIPW Tamoxifen metabolism CYP2C19 +WIKIPW Tamoxifen metabolism CYP2C8 +WIKIPW Tamoxifen metabolism CYP2C9 +WIKIPW Tamoxifen metabolism CYP2D6 +WIKIPW Tamoxifen metabolism CYP2E1 +WIKIPW Tamoxifen metabolism CYP3A4 +WIKIPW Tamoxifen metabolism CYP3A5 +WIKIPW Tamoxifen metabolism FMO1 +WIKIPW Tamoxifen metabolism FMO3 +WIKIPW Tamoxifen metabolism UGT1A10 +WIKIPW Tamoxifen metabolism UGT1A8 +WIKIPW Tamoxifen metabolism UGT1A7 +WIKIPW Tamoxifen metabolism UGT1A6 +WIKIPW Tamoxifen metabolism UGT1A5 +WIKIPW Tamoxifen metabolism UGT1A9 +WIKIPW Tamoxifen metabolism UGT1A4 +WIKIPW Tamoxifen metabolism UGT1A1 +WIKIPW Tamoxifen metabolism UGT1A3 +WIKIPW Tamoxifen metabolism SULT1E1 +WIKIPW Tamoxifen metabolism SULT1A1 +WIKIPW Tamoxifen metabolism SULT2A1 +WIKIPW Tamoxifen metabolism UGT2B7 +WIKIPW sulfation SULT4A1 +WIKIPW sulfation SULT1C4 +WIKIPW sulfation SULT1B1 +WIKIPW sulfation GSR +WIKIPW sulfation SULT6B1 +WIKIPW sulfation SULT1C3 +WIKIPW sulfation SULT1A4 +WIKIPW sulfation SULT1E1 +WIKIPW sulfation SULT1A2 +WIKIPW sulfation SULT1A1 +WIKIPW sulfation SULT1A3 +WIKIPW sulfation SULT1C2 +WIKIPW sulfation SULT2B1 +WIKIPW sulfation SULT2A1 +WIKIPW sulfation PAPSS2 +WIKIPW sulfation PAPSS1 +WIKIPW Arylamine metabolism CYP1A2 +WIKIPW Arylamine metabolism UGT1A10 +WIKIPW Arylamine metabolism UGT1A8 +WIKIPW Arylamine metabolism UGT1A7 +WIKIPW Arylamine metabolism UGT1A6 +WIKIPW Arylamine metabolism UGT1A5 +WIKIPW Arylamine metabolism UGT1A9 +WIKIPW Arylamine metabolism UGT1A4 +WIKIPW Arylamine metabolism UGT1A1 +WIKIPW Arylamine metabolism UGT1A3 +WIKIPW Arylamine metabolism SULT1A2 +WIKIPW Arylamine metabolism SULT1A1 +WIKIPW Arylamine metabolism NAT1 +WIKIPW Benzo(a)pyrene metabolism AKR1C4 +WIKIPW Benzo(a)pyrene metabolism CYP1A1 +WIKIPW Benzo(a)pyrene metabolism CYP1B1 +WIKIPW Benzo(a)pyrene metabolism CYP3A4 +WIKIPW Benzo(a)pyrene metabolism AKR1C1 +WIKIPW Benzo(a)pyrene metabolism AKR1C2 +WIKIPW Benzo(a)pyrene metabolism EPHX1 +WIKIPW Benzo(a)pyrene metabolism AKR1C3 +WIKIPW Estrogen metabolism CYP1A1 +WIKIPW Estrogen metabolism CYP1A2 +WIKIPW Estrogen metabolism CYP1B1 +WIKIPW Estrogen metabolism CYP3A4 +WIKIPW Estrogen metabolism NQO1 +WIKIPW Estrogen metabolism GSTA1 +WIKIPW Estrogen metabolism GSTM1 +WIKIPW Estrogen metabolism STS +WIKIPW Estrogen metabolism ARSD +WIKIPW Estrogen metabolism ARSE +WIKIPW Estrogen metabolism UGT1A10 +WIKIPW Estrogen metabolism UGT1A8 +WIKIPW Estrogen metabolism UGT1A7 +WIKIPW Estrogen metabolism UGT1A6 +WIKIPW Estrogen metabolism UGT1A5 +WIKIPW Estrogen metabolism UGT1A9 +WIKIPW Estrogen metabolism UGT1A4 +WIKIPW Estrogen metabolism UGT1A1 +WIKIPW Estrogen metabolism UGT1A3 +WIKIPW Estrogen metabolism SULT1E1 +WIKIPW Estrogen metabolism SULT1A1 +WIKIPW Estrogen metabolism UGT2B7 +WIKIPW Glucuronidation UGT2A1 +WIKIPW Glucuronidation HK1 +WIKIPW Glucuronidation PGM1 +WIKIPW Glucuronidation PGM3 +WIKIPW Glucuronidation PGM5 +WIKIPW Glucuronidation UGT2B28 +WIKIPW Glucuronidation UGT1A10 +WIKIPW Glucuronidation UGT1A8 +WIKIPW Glucuronidation UGT1A7 +WIKIPW Glucuronidation UGT1A6 +WIKIPW Glucuronidation UGT1A5 +WIKIPW Glucuronidation UGT1A9 +WIKIPW Glucuronidation UGT1A4 +WIKIPW Glucuronidation UGT1A1 +WIKIPW Glucuronidation UGT1A3 +WIKIPW Glucuronidation PGM2 +WIKIPW Glucuronidation UGDH +WIKIPW Glucuronidation UGP2 +WIKIPW Glucuronidation UGT2B4 +WIKIPW Glucuronidation UGT2B7 +WIKIPW Glucuronidation UGT2B10 +WIKIPW Glucuronidation UGT2B15 +WIKIPW Glucuronidation UGT2B17 +WIKIPW Glucuronidation UGT2A3 +WIKIPW Aflatoxin B1 metabolism CYP2A13 +WIKIPW Aflatoxin B1 metabolism CYP3A4 +WIKIPW Aflatoxin B1 metabolism EPHX1 +WIKIPW Aflatoxin B1 metabolism AKR7A3 +WIKIPW Aflatoxin B1 metabolism GSTM1 +WIKIPW Aflatoxin B1 metabolism GSTT1 +WIKIPW Aflatoxin B1 metabolism AKR7A2 +WIKIPW metapathway biotransformation CHST4 +WIKIPW metapathway biotransformation GLYAT +WIKIPW metapathway biotransformation AKR1A1 +WIKIPW metapathway biotransformation UGT2B11 +WIKIPW metapathway biotransformation CYP46A1 +WIKIPW metapathway biotransformation UGT2A1 +WIKIPW metapathway biotransformation AKR1C4 +WIKIPW metapathway biotransformation INMT +WIKIPW metapathway biotransformation CYP4F8 +WIKIPW metapathway biotransformation CHST14 +WIKIPW metapathway biotransformation CYP2U1 +WIKIPW metapathway biotransformation GSTO2 +WIKIPW metapathway biotransformation CYP2R1 +WIKIPW metapathway biotransformation NAT12 +WIKIPW metapathway biotransformation CYP4F22 +WIKIPW metapathway biotransformation COMT +WIKIPW metapathway biotransformation CYP1A1 +WIKIPW metapathway biotransformation CYP1A2 +WIKIPW metapathway biotransformation CYP1B1 +WIKIPW metapathway biotransformation CYP2A6 +WIKIPW metapathway biotransformation CYP2A7 +WIKIPW metapathway biotransformation CYP3A7 +WIKIPW metapathway biotransformation CYP2A13 +WIKIPW metapathway biotransformation CYP2B6 +WIKIPW metapathway biotransformation CYP2C19 +WIKIPW metapathway biotransformation CYP2C8 +WIKIPW metapathway biotransformation CYP2C9 +WIKIPW metapathway biotransformation CYP2C18 +WIKIPW metapathway biotransformation CYP2D6 +WIKIPW metapathway biotransformation CYP2E1 +WIKIPW metapathway biotransformation CYP2F1 +WIKIPW metapathway biotransformation CYP2J2 +WIKIPW metapathway biotransformation CYP3A4 +WIKIPW metapathway biotransformation CYP3A5 +WIKIPW metapathway biotransformation CYP4B1 +WIKIPW metapathway biotransformation CYP7A1 +WIKIPW metapathway biotransformation CYP8B1 +WIKIPW metapathway biotransformation CYP11A1 +WIKIPW metapathway biotransformation CYP11B1 +WIKIPW metapathway biotransformation CYP11B2 +WIKIPW metapathway biotransformation CYP17A1 +WIKIPW metapathway biotransformation CYP19A1 +WIKIPW metapathway biotransformation CYP21A2 +WIKIPW metapathway biotransformation CYP24A1 +WIKIPW metapathway biotransformation CYP26A1 +WIKIPW metapathway biotransformation CYP27A1 +WIKIPW metapathway biotransformation CYP27B1 +WIKIPW metapathway biotransformation CYP51A1 +WIKIPW metapathway biotransformation AKR1C1 +WIKIPW metapathway biotransformation AKR1C2 +WIKIPW metapathway biotransformation CHST13 +WIKIPW metapathway biotransformation CYP4Z1 +WIKIPW metapathway biotransformation EPHX1 +WIKIPW metapathway biotransformation EPHX2 +WIKIPW metapathway biotransformation GLYATL2 +WIKIPW metapathway biotransformation GSTA5 +WIKIPW metapathway biotransformation HS3ST5 +WIKIPW metapathway biotransformation AKR7A3 +WIKIPW metapathway biotransformation AKR1B1 +WIKIPW metapathway biotransformation FMO1 +WIKIPW metapathway biotransformation FMO2 +WIKIPW metapathway biotransformation FMO3 +WIKIPW metapathway biotransformation FMO4 +WIKIPW metapathway biotransformation FMO5 +WIKIPW metapathway biotransformation CHST5 +WIKIPW metapathway biotransformation NAT6 +WIKIPW metapathway biotransformation SULT4A1 +WIKIPW metapathway biotransformation CYP4X1 +WIKIPW metapathway biotransformation NAT9 +WIKIPW metapathway biotransformation HS6ST3 +WIKIPW metapathway biotransformation SULT1C4 +WIKIPW metapathway biotransformation SULT1B1 +WIKIPW metapathway biotransformation CYP4V2 +WIKIPW metapathway biotransformation GPX1 +WIKIPW metapathway biotransformation GPX2 +WIKIPW metapathway biotransformation GPX3 +WIKIPW metapathway biotransformation GPX4 +WIKIPW metapathway biotransformation GPX5 +WIKIPW metapathway biotransformation GSR +WIKIPW metapathway biotransformation GSS +WIKIPW metapathway biotransformation GSTA1 +WIKIPW metapathway biotransformation GSTA2 +WIKIPW metapathway biotransformation GSTA3 +WIKIPW metapathway biotransformation GSTA4 +WIKIPW metapathway biotransformation GSTM1 +WIKIPW metapathway biotransformation GSTM2 +WIKIPW metapathway biotransformation GSTM3 +WIKIPW metapathway biotransformation GSTM4 +WIKIPW metapathway biotransformation GSTM5 +WIKIPW metapathway biotransformation GSTP1 +WIKIPW metapathway biotransformation GSTT1 +WIKIPW metapathway biotransformation GSTT2 +WIKIPW metapathway biotransformation GSTZ1 +WIKIPW metapathway biotransformation CYP2S1 +WIKIPW metapathway biotransformation HNMT +WIKIPW metapathway biotransformation NDST1 +WIKIPW metapathway biotransformation CYP27C1 +WIKIPW metapathway biotransformation NAT8L +WIKIPW metapathway biotransformation CYP26C1 +WIKIPW metapathway biotransformation GSTK1 +WIKIPW metapathway biotransformation SULT6B1 +WIKIPW metapathway biotransformation CYP4F3 +WIKIPW metapathway biotransformation CHST6 +WIKIPW metapathway biotransformation MGST1 +WIKIPW metapathway biotransformation MGST2 +WIKIPW metapathway biotransformation MGST3 +WIKIPW metapathway biotransformation AKR1B15 +WIKIPW metapathway biotransformation SULT1C3 +WIKIPW metapathway biotransformation SULT1A4 +WIKIPW metapathway biotransformation NNMT +WIKIPW metapathway biotransformation CHST11 +WIKIPW metapathway biotransformation NAT5 +WIKIPW metapathway biotransformation CYP39A1 +WIKIPW metapathway biotransformation UGT2B28 +WIKIPW metapathway biotransformation UGT1A10 +WIKIPW metapathway biotransformation UGT1A8 +WIKIPW metapathway biotransformation UGT1A7 +WIKIPW metapathway biotransformation UGT1A6 +WIKIPW metapathway biotransformation UGT1A5 +WIKIPW metapathway biotransformation UGT1A9 +WIKIPW metapathway biotransformation UGT1A4 +WIKIPW metapathway biotransformation UGT1A1 +WIKIPW metapathway biotransformation UGT1A3 +WIKIPW metapathway biotransformation CYP2W1 +WIKIPW metapathway biotransformation NAT10 +WIKIPW metapathway biotransformation CHST12 +WIKIPW metapathway biotransformation CHST7 +WIKIPW metapathway biotransformation CYP26B1 +WIKIPW metapathway biotransformation BAAT +WIKIPW metapathway biotransformation AKR1B10 +WIKIPW metapathway biotransformation NAT14 +WIKIPW metapathway biotransformation CYP20A1 +WIKIPW metapathway biotransformation CYP4F11 +WIKIPW metapathway biotransformation GAL3ST2 +WIKIPW metapathway biotransformation CHST8 +WIKIPW metapathway biotransformation NDST4 +WIKIPW metapathway biotransformation HS3ST6 +WIKIPW metapathway biotransformation CYP3A43 +WIKIPW metapathway biotransformation GSTT2B +WIKIPW metapathway biotransformation CYP4F12 +WIKIPW metapathway biotransformation AKR1D1 +WIKIPW metapathway biotransformation SULT1E1 +WIKIPW metapathway biotransformation SULT1A2 +WIKIPW metapathway biotransformation SULT1A1 +WIKIPW metapathway biotransformation SULT1A3 +WIKIPW metapathway biotransformation SULT1C2 +WIKIPW metapathway biotransformation SULT2B1 +WIKIPW metapathway biotransformation SULT2A1 +WIKIPW metapathway biotransformation TPMT +WIKIPW metapathway biotransformation UGT2B4 +WIKIPW metapathway biotransformation UGT2B7 +WIKIPW metapathway biotransformation UGT2B17 +WIKIPW metapathway biotransformation KCNAB1 +WIKIPW metapathway biotransformation GAL3ST4 +WIKIPW metapathway biotransformation UGT2A3 +WIKIPW metapathway biotransformation GSTCD +WIKIPW metapathway biotransformation NAT11 +WIKIPW metapathway biotransformation NAT13 +WIKIPW metapathway biotransformation CHST9 +WIKIPW metapathway biotransformation NDST2 +WIKIPW metapathway biotransformation KCNAB2 +WIKIPW metapathway biotransformation CYP4F2 +WIKIPW metapathway biotransformation CHST1 +WIKIPW metapathway biotransformation AKR7A2 +WIKIPW metapathway biotransformation AKR1C3 +WIKIPW metapathway biotransformation GAL3ST3 +WIKIPW metapathway biotransformation NAT1 +WIKIPW metapathway biotransformation HS6ST2 +WIKIPW metapathway biotransformation NAT8 +WIKIPW metapathway biotransformation KCNAB3 +WIKIPW metapathway biotransformation GLYATL1 +WIKIPW metapathway biotransformation NDST3 +WIKIPW metapathway biotransformation HS6ST1 +WIKIPW metapathway biotransformation CYP7B1 +WIKIPW metapathway biotransformation CHST2 +WIKIPW metapathway biotransformation GSTO1 +WIKIPW metapathway biotransformation CHST3 +WIKIPW metapathway biotransformation CHST10 +WIKIPW metapathway biotransformation GAL3ST1 +WIKIPW metapathway biotransformation HS2ST1 +WIKIPW metapathway biotransformation HS3ST4 +WIKIPW metapathway biotransformation HS3ST3B1 +WIKIPW metapathway biotransformation HS3ST3A1 +WIKIPW metapathway biotransformation HS3ST2 +WIKIPW metapathway biotransformation HS3ST1 +WIKIPW methylation COMT +WIKIPW methylation MAT2B +WIKIPW methylation HNMT +WIKIPW methylation MAT1A +WIKIPW methylation MAT2A +WIKIPW methylation NNMT +WIKIPW methylation PNMT +WIKIPW methylation TPMT +WIKIPW SIDS Susceptibility Pathways CTCF +WIKIPW SIDS Susceptibility Pathways PPARGC1A +WIKIPW SIDS Susceptibility Pathways CHRNA4 +WIKIPW SIDS Susceptibility Pathways CHRNB2 +WIKIPW SIDS Susceptibility Pathways CHRNB4 +WIKIPW SIDS Susceptibility Pathways ADCYAP1 +WIKIPW SIDS Susceptibility Pathways ADCYAP1R1 +WIKIPW SIDS Susceptibility Pathways TPH2 +WIKIPW SIDS Susceptibility Pathways PPARGC1B +WIKIPW SIDS Susceptibility Pathways CREB1 +WIKIPW SIDS Susceptibility Pathways DDC +WIKIPW SIDS Susceptibility Pathways ECE1 +WIKIPW SIDS Susceptibility Pathways EN1 +WIKIPW SIDS Susceptibility Pathways EP300 +WIKIPW SIDS Susceptibility Pathways ESR2 +WIKIPW SIDS Susceptibility Pathways FOXM1 +WIKIPW SIDS Susceptibility Pathways GATA2 +WIKIPW SIDS Susceptibility Pathways GATA3 +WIKIPW SIDS Susceptibility Pathways GNB3 +WIKIPW SIDS Susceptibility Pathways NR3C1 +WIKIPW SIDS Susceptibility Pathways TLX3 +WIKIPW SIDS Susceptibility Pathways HADHA +WIKIPW SIDS Susceptibility Pathways HES1 +WIKIPW SIDS Susceptibility Pathways HSPD1 +WIKIPW SIDS Susceptibility Pathways HTR1A +WIKIPW SIDS Susceptibility Pathways HTR2A +WIKIPW SIDS Susceptibility Pathways ACADM +WIKIPW SIDS Susceptibility Pathways IL6 +WIKIPW SIDS Susceptibility Pathways IL6R +WIKIPW SIDS Susceptibility Pathways IL8 +WIKIPW SIDS Susceptibility Pathways IL10 +WIKIPW SIDS Susceptibility Pathways AR +WIKIPW SIDS Susceptibility Pathways KCNH2 +WIKIPW SIDS Susceptibility Pathways KCNQ1 +WIKIPW SIDS Susceptibility Pathways HES5 +WIKIPW SIDS Susceptibility Pathways PHOX2A +WIKIPW SIDS Susceptibility Pathways LMX1B +WIKIPW SIDS Susceptibility Pathways MAOA +WIKIPW SIDS Susceptibility Pathways ASCL1 +WIKIPW SIDS Susceptibility Pathways NFKB1 +WIKIPW SIDS Susceptibility Pathways NFYA +WIKIPW SIDS Susceptibility Pathways NKX2-2 +WIKIPW SIDS Susceptibility Pathways NKX3-1 +WIKIPW SIDS Susceptibility Pathways YBX1 +WIKIPW SIDS Susceptibility Pathways POU3F2 +WIKIPW SIDS Susceptibility Pathways FEV +WIKIPW SIDS Susceptibility Pathways CC2D1A +WIKIPW SIDS Susceptibility Pathways AVP +WIKIPW SIDS Susceptibility Pathways CDCA7L +WIKIPW SIDS Susceptibility Pathways REST +WIKIPW SIDS Susceptibility Pathways RET +WIKIPW SIDS Susceptibility Pathways RORA +WIKIPW SIDS Susceptibility Pathways RYR2 +WIKIPW SIDS Susceptibility Pathways SCN5A +WIKIPW SIDS Susceptibility Pathways SLC6A4 +WIKIPW SIDS Susceptibility Pathways SLC9A3 +WIKIPW SIDS Susceptibility Pathways SP1 +WIKIPW SIDS Susceptibility Pathways TNF +WIKIPW SIDS Susceptibility Pathways TPH1 +WIKIPW SIDS Susceptibility Pathways C4A +WIKIPW SIDS Susceptibility Pathways C4B +WIKIPW SIDS Susceptibility Pathways VIPR1 +WIKIPW SIDS Susceptibility Pathways VIPR2 +WIKIPW SIDS Susceptibility Pathways CAV3 +WIKIPW SIDS Susceptibility Pathways PHOX2B +WIKIPW DNA damage response RAD50 +WIKIPW DNA damage response CDK2 +WIKIPW DNA damage response CDK4 +WIKIPW DNA damage response CDK5 +WIKIPW DNA damage response CDK6 +WIKIPW DNA damage response CDKN1A +WIKIPW DNA damage response CDKN1B +WIKIPW DNA damage response GADD45G +WIKIPW DNA damage response TLK2 +WIKIPW DNA damage response CHEK1 +WIKIPW DNA damage response CHEK2 +WIKIPW DNA damage response HUS1B +WIKIPW DNA damage response CREB1 +WIKIPW DNA damage response DDB2 +WIKIPW DNA damage response GADD45A +WIKIPW DNA damage response E2F1 +WIKIPW DNA damage response FANCD2 +WIKIPW DNA damage response ABL1 +WIKIPW DNA damage response BBC3 +WIKIPW DNA damage response SESN1 +WIKIPW DNA damage response SFN +WIKIPW DNA damage response H2AFX +WIKIPW DNA damage response APAF1 +WIKIPW DNA damage response FAS +WIKIPW DNA damage response MRE11A +WIKIPW DNA damage response MYC +WIKIPW DNA damage response GADD45B +WIKIPW DNA damage response NBN +WIKIPW DNA damage response ATM +WIKIPW DNA damage response RRM2B +WIKIPW DNA damage response PMAIP1 +WIKIPW DNA damage response PML +WIKIPW DNA damage response CYCS +WIKIPW DNA damage response ATR +WIKIPW DNA damage response LRDD +WIKIPW DNA damage response PRKDC +WIKIPW DNA damage response BAX +WIKIPW DNA damage response RAD1 +WIKIPW DNA damage response RAD9A +WIKIPW DNA damage response RAD17 +WIKIPW DNA damage response RAD51 +WIKIPW DNA damage response RAD52 +WIKIPW DNA damage response RB1 +WIKIPW DNA damage response CCND1 +WIKIPW DNA damage response RFC1 +WIKIPW DNA damage response RPA2 +WIKIPW DNA damage response BID +WIKIPW DNA damage response TP53AIP1 +WIKIPW DNA damage response LOC648152 +WIKIPW DNA damage response LOC651610 +WIKIPW DNA damage response LOC651921 +WIKIPW DNA damage response BRCA1 +WIKIPW DNA damage response TP53 +WIKIPW DNA damage response LOC731751 +WIKIPW DNA damage response SMC1A +WIKIPW DNA damage response CASP3 +WIKIPW DNA damage response CASP8 +WIKIPW DNA damage response ATRIP +WIKIPW DNA damage response CASP9 +WIKIPW DNA damage response CCNB3 +WIKIPW DNA damage response TNFRSF10B +WIKIPW DNA damage response CCNB1 +WIKIPW DNA damage response CCND2 +WIKIPW DNA damage response CCND3 +WIKIPW DNA damage response CCNE1 +WIKIPW DNA damage response CCNB2 +WIKIPW DNA damage response CCNE2 +WIKIPW DNA damage response CDC2 +WIKIPW DNA damage response TLK1 +WIKIPW DNA damage response CDC25A +WIKIPW DNA damage response CDC25C +WIKIPW DNA damage response (only ATM dependent) BCL2L11 +WIKIPW DNA damage response (only ATM dependent) FRAT1 +WIKIPW DNA damage response (only ATM dependent) CDKN1A +WIKIPW DNA damage response (only ATM dependent) CDKN1B +WIKIPW DNA damage response (only ATM dependent) CDKN2A +WIKIPW DNA damage response (only ATM dependent) CTNNB1 +WIKIPW DNA damage response (only ATM dependent) DVL1 +WIKIPW DNA damage response (only ATM dependent) DVL2 +WIKIPW DNA damage response (only ATM dependent) DVL3 +WIKIPW DNA damage response (only ATM dependent) MLKL +WIKIPW DNA damage response (only ATM dependent) ERBB2 +WIKIPW DNA damage response (only ATM dependent) AKT1 +WIKIPW DNA damage response (only ATM dependent) AKT2 +WIKIPW DNA damage response (only ATM dependent) FOXO3 +WIKIPW DNA damage response (only ATM dependent) ABL1 +WIKIPW DNA damage response (only ATM dependent) G6PC +WIKIPW DNA damage response (only ATM dependent) BBC3 +WIKIPW DNA damage response (only ATM dependent) GRB2 +WIKIPW DNA damage response (only ATM dependent) GSK3B +WIKIPW DNA damage response (only ATM dependent) HMGB1 +WIKIPW DNA damage response (only ATM dependent) APC +WIKIPW DNA damage response (only ATM dependent) FASLG +WIKIPW DNA damage response (only ATM dependent) INSR +WIKIPW DNA damage response (only ATM dependent) IRS1 +WIKIPW DNA damage response (only ATM dependent) JUN +WIKIPW DNA damage response (only ATM dependent) RHOA +WIKIPW DNA damage response (only ATM dependent) LDLR +WIKIPW DNA damage response (only ATM dependent) SMAD3 +WIKIPW DNA damage response (only ATM dependent) SMAD4 +WIKIPW DNA damage response (only ATM dependent) MDM2 +WIKIPW DNA damage response (only ATM dependent) MAP3K1 +WIKIPW DNA damage response (only ATM dependent) MAP3K4 +WIKIPW DNA damage response (only ATM dependent) MYC +WIKIPW DNA damage response (only ATM dependent) ATM +WIKIPW DNA damage response (only ATM dependent) NFKB1 +WIKIPW DNA damage response (only ATM dependent) NFKB2 +WIKIPW DNA damage response (only ATM dependent) PCK2 +WIKIPW DNA damage response (only ATM dependent) WNT16 +WIKIPW DNA damage response (only ATM dependent) PDK1 +WIKIPW DNA damage response (only ATM dependent) PLAU +WIKIPW DNA damage response (only ATM dependent) PMAIP1 +WIKIPW DNA damage response (only ATM dependent) WNT4 +WIKIPW DNA damage response (only ATM dependent) PPP2R5C +WIKIPW DNA damage response (only ATM dependent) PPP2R5E +WIKIPW DNA damage response (only ATM dependent) MAPK1 +WIKIPW DNA damage response (only ATM dependent) MAPK8 +WIKIPW DNA damage response (only ATM dependent) MAPK9 +WIKIPW DNA damage response (only ATM dependent) MAPK10 +WIKIPW DNA damage response (only ATM dependent) BAD +WIKIPW DNA damage response (only ATM dependent) PTEN +WIKIPW DNA damage response (only ATM dependent) BAK1 +WIKIPW DNA damage response (only ATM dependent) BAX +WIKIPW DNA damage response (only ATM dependent) RAC1 +WIKIPW DNA damage response (only ATM dependent) RAC2 +WIKIPW DNA damage response (only ATM dependent) RAC3 +WIKIPW DNA damage response (only ATM dependent) RBL2 +WIKIPW DNA damage response (only ATM dependent) CCND1 +WIKIPW DNA damage response (only ATM dependent) BCL2 +WIKIPW DNA damage response (only ATM dependent) BCL6 +WIKIPW DNA damage response (only ATM dependent) SCP2 +WIKIPW DNA damage response (only ATM dependent) BIK +WIKIPW DNA damage response (only ATM dependent) SHC1 +WIKIPW DNA damage response (only ATM dependent) LOC651610 +WIKIPW DNA damage response (only ATM dependent) SOD2 +WIKIPW DNA damage response (only ATM dependent) SOS1 +WIKIPW DNA damage response (only ATM dependent) SOS2 +WIKIPW DNA damage response (only ATM dependent) MAP3K7 +WIKIPW DNA damage response (only ATM dependent) TGFB1 +WIKIPW DNA damage response (only ATM dependent) TP53 +WIKIPW DNA damage response (only ATM dependent) TP73 +WIKIPW DNA damage response (only ATM dependent) WNT1 +WIKIPW DNA damage response (only ATM dependent) WNT2 +WIKIPW DNA damage response (only ATM dependent) WNT3 +WIKIPW DNA damage response (only ATM dependent) WNT5A +WIKIPW DNA damage response (only ATM dependent) WNT6 +WIKIPW DNA damage response (only ATM dependent) WNT7A +WIKIPW DNA damage response (only ATM dependent) WNT7B +WIKIPW DNA damage response (only ATM dependent) WNT10B +WIKIPW DNA damage response (only ATM dependent) WNT11 +WIKIPW DNA damage response (only ATM dependent) WNT2B +WIKIPW DNA damage response (only ATM dependent) WNT10A +WIKIPW DNA damage response (only ATM dependent) FOSL1 +WIKIPW DNA damage response (only ATM dependent) WNT5B +WIKIPW DNA damage response (only ATM dependent) AXIN1 +WIKIPW DNA damage response (only ATM dependent) CAT +WIKIPW DNA damage response (only ATM dependent) CCND2 +WIKIPW DNA damage response (only ATM dependent) CCND3 +WIKIPW DNA damage response (only ATM dependent) WNT3A +WIKIPW DNA damage response (only ATM dependent) CCNG2 +WIKIPW DNA damage response (only ATM dependent) CDC42 +WIKIPW estrogen signalling HDAC5 +WIKIPW estrogen signalling CDK7 +WIKIPW estrogen signalling CHUK +WIKIPW estrogen signalling CREB1 +WIKIPW estrogen signalling CREBBP +WIKIPW estrogen signalling MAPK14 +WIKIPW estrogen signalling ELK1 +WIKIPW estrogen signalling EP300 +WIKIPW estrogen signalling ERCC2 +WIKIPW estrogen signalling AKT1 +WIKIPW estrogen signalling ERCC3 +WIKIPW estrogen signalling ESR1 +WIKIPW estrogen signalling FOS +WIKIPW estrogen signalling SHC2 +WIKIPW estrogen signalling SIN3A +WIKIPW estrogen signalling GNAS +WIKIPW estrogen signalling GNB1 +WIKIPW estrogen signalling GNGT1 +WIKIPW estrogen signalling GPER +WIKIPW estrogen signalling GRB2 +WIKIPW estrogen signalling GTF2A2 +WIKIPW estrogen signalling GTF2B +WIKIPW estrogen signalling GTF2E1 +WIKIPW estrogen signalling GTF2E2 +WIKIPW estrogen signalling GTF2F2 +WIKIPW estrogen signalling GTF2H1 +WIKIPW estrogen signalling GTF2H2 +WIKIPW estrogen signalling GTF2H3 +WIKIPW estrogen signalling GTF2H4 +WIKIPW estrogen signalling HDAC1 +WIKIPW estrogen signalling HDAC2 +WIKIPW estrogen signalling HRAS +WIKIPW estrogen signalling IKBKB +WIKIPW estrogen signalling ILK +WIKIPW estrogen signalling JUN +WIKIPW estrogen signalling MNAT1 +WIKIPW estrogen signalling NFKB1 +WIKIPW estrogen signalling HDAC7 +WIKIPW estrogen signalling PIK3CA +WIKIPW estrogen signalling POLR2A +WIKIPW estrogen signalling POLR2B +WIKIPW estrogen signalling POLR2C +WIKIPW estrogen signalling POLR2E +WIKIPW estrogen signalling POLR2F +WIKIPW estrogen signalling POLR2G +WIKIPW estrogen signalling POLR2H +WIKIPW estrogen signalling POLR2I +WIKIPW estrogen signalling POLR2J +WIKIPW estrogen signalling POLR2K +WIKIPW estrogen signalling PRKACA +WIKIPW estrogen signalling HDAC8 +WIKIPW estrogen signalling MAPK1 +WIKIPW estrogen signalling MAPK9 +WIKIPW estrogen signalling MAP2K1 +WIKIPW estrogen signalling CCND1 +WIKIPW estrogen signalling BCL2 +WIKIPW estrogen signalling GTF2H2B +WIKIPW estrogen signalling SOS1 +WIKIPW estrogen signalling SP1 +WIKIPW estrogen signalling SRC +WIKIPW estrogen signalling BRCA1 +WIKIPW estrogen signalling BRAF +WIKIPW estrogen signalling TAF5 +WIKIPW estrogen signalling TAF6 +WIKIPW estrogen signalling TAF7 +WIKIPW estrogen signalling TAF9 +WIKIPW estrogen signalling TAF12 +WIKIPW estrogen signalling TAF13 +WIKIPW estrogen signalling TBP +WIKIPW estrogen signalling GTF2H2C +WIKIPW estrogen signalling IKBKG +WIKIPW estrogen signalling HDAC3 +WIKIPW estrogen signalling CCNH +WIKIPW estrogen signalling NCOR1 +WIKIPW estrogen signalling HDAC4 +WIKIPW Retinol metabolism (BiGCaT, NuGO) ADH1A +WIKIPW Retinol metabolism (BiGCaT, NuGO) ADH4 +WIKIPW Retinol metabolism (BiGCaT, NuGO) CRABP1 +WIKIPW Retinol metabolism (BiGCaT, NuGO) CRABP2 +WIKIPW Retinol metabolism (BiGCaT, NuGO) RDH12 +WIKIPW Retinol metabolism (BiGCaT, NuGO) CYP2E1 +WIKIPW Retinol metabolism (BiGCaT, NuGO) RDH10 +WIKIPW Retinol metabolism (BiGCaT, NuGO) CYP26A1 +WIKIPW Retinol metabolism (BiGCaT, NuGO) ALDH1A1 +WIKIPW Retinol metabolism (BiGCaT, NuGO) ALDH1A3 +WIKIPW Retinol metabolism (BiGCaT, NuGO) NPC1L1 +WIKIPW Retinol metabolism (BiGCaT, NuGO) LPL +WIKIPW Retinol metabolism (BiGCaT, NuGO) RDH8 +WIKIPW Retinol metabolism (BiGCaT, NuGO) BCMO1 +WIKIPW Retinol metabolism (BiGCaT, NuGO) RETSAT +WIKIPW Retinol metabolism (BiGCaT, NuGO) CYP26B1 +WIKIPW Retinol metabolism (BiGCaT, NuGO) RARA +WIKIPW Retinol metabolism (BiGCaT, NuGO) RARB +WIKIPW Retinol metabolism (BiGCaT, NuGO) RARG +WIKIPW Retinol metabolism (BiGCaT, NuGO) RBP1 +WIKIPW Retinol metabolism (BiGCaT, NuGO) RBP2 +WIKIPW Retinol metabolism (BiGCaT, NuGO) RBP4 +WIKIPW Retinol metabolism (BiGCaT, NuGO) RDH5 +WIKIPW Retinol metabolism (BiGCaT, NuGO) RLBP1 +WIKIPW Retinol metabolism (BiGCaT, NuGO) RXRA +WIKIPW Retinol metabolism (BiGCaT, NuGO) RXRB +WIKIPW Retinol metabolism (BiGCaT, NuGO) RXRG +WIKIPW Retinol metabolism (BiGCaT, NuGO) ABCG5 +WIKIPW Retinol metabolism (BiGCaT, NuGO) ABCG8 +WIKIPW Retinol metabolism (BiGCaT, NuGO) SULT1A1 +WIKIPW Retinol metabolism (BiGCaT, NuGO) SULT2B1 +WIKIPW Retinol metabolism (BiGCaT, NuGO) ALDH1A2 +WIKIPW Retinol metabolism (BiGCaT, NuGO) LRAT +WIKIPW Retinol metabolism (BiGCaT, NuGO) DHRS3 +WIKIPW Retinol metabolism (BiGCaT, NuGO) CD36 +WIKIPW Retinol metabolism (BiGCaT, NuGO) SCARB1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway CREB1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway MAPK14 +WIKIPW Serotonin HTR1 Group --> FOS Pathway ELK1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway ELK4 +WIKIPW Serotonin HTR1 Group --> FOS Pathway FOS +WIKIPW Serotonin HTR1 Group --> FOS Pathway GNAI1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway GNAI2 +WIKIPW Serotonin HTR1 Group --> FOS Pathway GNAI3 +WIKIPW Serotonin HTR1 Group --> FOS Pathway GNAO1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway HTR1A +WIKIPW Serotonin HTR1 Group --> FOS Pathway HTR1B +WIKIPW Serotonin HTR1 Group --> FOS Pathway HTR1D +WIKIPW Serotonin HTR1 Group --> FOS Pathway HTR1E +WIKIPW Serotonin HTR1 Group --> FOS Pathway HTR1F +WIKIPW Serotonin HTR1 Group --> FOS Pathway ITPR1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway RHOA +WIKIPW Serotonin HTR1 Group --> FOS Pathway MAP3K1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway PDPK1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway PIK3CA +WIKIPW Serotonin HTR1 Group --> FOS Pathway MAPK1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway MAPK3 +WIKIPW Serotonin HTR1 Group --> FOS Pathway MAP2K1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway MAP2K2 +WIKIPW Serotonin HTR1 Group --> FOS Pathway MAP2K3 +WIKIPW Serotonin HTR1 Group --> FOS Pathway MAP2K6 +WIKIPW Serotonin HTR1 Group --> FOS Pathway RAP1A +WIKIPW Serotonin HTR1 Group --> FOS Pathway RASGRF1 +WIKIPW Serotonin HTR1 Group --> FOS Pathway SRF +WIKIPW Serotonin HTR1 Group --> FOS Pathway BRAF +WIKIPW Serotonin HTR1 Group --> FOS Pathway MAPKAPK3 +WIKIPW Serotonin HTR1 Group --> FOS Pathway RPS6KA5 +WIKIPW Serotonin HTR1 Group --> FOS Pathway MAPKAPK2 +WIKIPW VandyConte::Blakely Network UNC13B +WIKIPW VandyConte::Blakely Network HRH3 +WIKIPW VandyConte::Blakely Network FBXO32 +WIKIPW VandyConte::Blakely Network TPH2 +WIKIPW VandyConte::Blakely Network ADORA2A +WIKIPW VandyConte::Blakely Network MAPK14 +WIKIPW VandyConte::Blakely Network DBH +WIKIPW VandyConte::Blakely Network AGT +WIKIPW VandyConte::Blakely Network AMPH +WIKIPW VandyConte::Blakely Network IL1B +WIKIPW VandyConte::Blakely Network IL1R1 +WIKIPW VandyConte::Blakely Network ITGB3 +WIKIPW VandyConte::Blakely Network ACHE +WIKIPW VandyConte::Blakely Network NOS1 +WIKIPW VandyConte::Blakely Network TNFRSF11B +WIKIPW VandyConte::Blakely Network PPP2CB +WIKIPW VandyConte::Blakely Network PVRL2 +WIKIPW VandyConte::Blakely Network RBL2 +WIKIPW VandyConte::Blakely Network SLC5A7 +WIKIPW VandyConte::Blakely Network SLC6A1 +WIKIPW VandyConte::Blakely Network SLC6A2 +WIKIPW VandyConte::Blakely Network SLC6A3 +WIKIPW VandyConte::Blakely Network SLC6A4 +WIKIPW VandyConte::Blakely Network STX1A +WIKIPW VandyConte::Blakely Network SYN1 +WIKIPW VandyConte::Blakely Network TDO2 +WIKIPW VandyConte::Blakely Network TGFB1I1 +WIKIPW VandyConte::Blakely Network TH +WIKIPW VandyConte::Blakely Network TNF +WIKIPW VandyConte::Blakely Network TSC2 +WIKIPW VandyConte::Blakely Network CDC25C +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling ELK1 +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling ELK4 +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling GATA4 +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling GNAQ +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling HTR2A +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling HTR2B +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling HTR2C +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling ITPR1 +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling MAPK1 +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling MAPK3 +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling MAP2K1 +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling MAP2K2 +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling RAF1 +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling RASGRF1 +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling SRF +WIKIPW Serotonin Receptor 2 -> ELK-SRF/GATA4 signaling MAPKAPK2 +WIKIPW Serotonin Receptor 2 -> STAT3 signaling HTR2A +WIKIPW Serotonin Receptor 2 -> STAT3 signaling JAK2 +WIKIPW Serotonin Receptor 2 -> STAT3 signaling STAT3 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling EGR1 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling ELK1 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling ELK4 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling GNAS +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling NR3C1 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling HTR4 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling HTR6 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling HTR7 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling ATF1 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling MAPK1 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling MAPK3 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling MAP2K1 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling MAP2K2 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling RAP1A +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling SRF +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling BRAF +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling RPS6KA5 +WIKIPW Serotonin Receptor 4/6/7 -> NR3C signaling MAPKAPK2 +WIKIPW Toll-like receptor signaling pathway TLR6 +WIKIPW Toll-like receptor signaling pathway MAP3K7IP1 +WIKIPW Toll-like receptor signaling pathway TIRAP +WIKIPW Toll-like receptor signaling pathway CHUK +WIKIPW Toll-like receptor signaling pathway MAP3K8 +WIKIPW Toll-like receptor signaling pathway MAPK14 +WIKIPW Toll-like receptor signaling pathway TICAM1 +WIKIPW Toll-like receptor signaling pathway AKT1 +WIKIPW Toll-like receptor signaling pathway AKT2 +WIKIPW Toll-like receptor signaling pathway MAP3K7IP2 +WIKIPW Toll-like receptor signaling pathway FOS +WIKIPW Toll-like receptor signaling pathway PIK3R5 +WIKIPW Toll-like receptor signaling pathway LY96 +WIKIPW Toll-like receptor signaling pathway TBK1 +WIKIPW Toll-like receptor signaling pathway IFNA1 +WIKIPW Toll-like receptor signaling pathway IFNA2 +WIKIPW Toll-like receptor signaling pathway IFNA4 +WIKIPW Toll-like receptor signaling pathway IFNA5 +WIKIPW Toll-like receptor signaling pathway IFNA6 +WIKIPW Toll-like receptor signaling pathway IFNA7 +WIKIPW Toll-like receptor signaling pathway IFNA8 +WIKIPW Toll-like receptor signaling pathway IFNA10 +WIKIPW Toll-like receptor signaling pathway IFNA13 +WIKIPW Toll-like receptor signaling pathway IFNA14 +WIKIPW Toll-like receptor signaling pathway IFNA16 +WIKIPW Toll-like receptor signaling pathway IFNA17 +WIKIPW Toll-like receptor signaling pathway IFNA21 +WIKIPW Toll-like receptor signaling pathway IFNAR1 +WIKIPW Toll-like receptor signaling pathway IFNAR2 +WIKIPW Toll-like receptor signaling pathway IFNB1 +WIKIPW Toll-like receptor signaling pathway TICAM2 +WIKIPW Toll-like receptor signaling pathway IKBKB +WIKIPW Toll-like receptor signaling pathway IL1B +WIKIPW Toll-like receptor signaling pathway IL6 +WIKIPW Toll-like receptor signaling pathway IL8 +WIKIPW Toll-like receptor signaling pathway IL12A +WIKIPW Toll-like receptor signaling pathway IL12B +WIKIPW Toll-like receptor signaling pathway CXCL10 +WIKIPW Toll-like receptor signaling pathway IRAK1 +WIKIPW Toll-like receptor signaling pathway IRF3 +WIKIPW Toll-like receptor signaling pathway IRF5 +WIKIPW Toll-like receptor signaling pathway IRF7 +WIKIPW Toll-like receptor signaling pathway JUN +WIKIPW Toll-like receptor signaling pathway LBP +WIKIPW Toll-like receptor signaling pathway CXCL9 +WIKIPW Toll-like receptor signaling pathway MYD88 +WIKIPW Toll-like receptor signaling pathway NFKB1 +WIKIPW Toll-like receptor signaling pathway NFKB2 +WIKIPW Toll-like receptor signaling pathway NFKBIA +WIKIPW Toll-like receptor signaling pathway TMED7 +WIKIPW Toll-like receptor signaling pathway IRAK4 +WIKIPW Toll-like receptor signaling pathway TLR7 +WIKIPW Toll-like receptor signaling pathway TLR8 +WIKIPW Toll-like receptor signaling pathway PIK3CA +WIKIPW Toll-like receptor signaling pathway PIK3CB +WIKIPW Toll-like receptor signaling pathway PIK3CD +WIKIPW Toll-like receptor signaling pathway PIK3CG +WIKIPW Toll-like receptor signaling pathway PIK3R1 +WIKIPW Toll-like receptor signaling pathway PIK3R2 +WIKIPW Toll-like receptor signaling pathway TLR9 +WIKIPW Toll-like receptor signaling pathway TOLLIP +WIKIPW Toll-like receptor signaling pathway MAPK1 +WIKIPW Toll-like receptor signaling pathway MAPK3 +WIKIPW Toll-like receptor signaling pathway MAPK8 +WIKIPW Toll-like receptor signaling pathway MAPK11 +WIKIPW Toll-like receptor signaling pathway MAPK9 +WIKIPW Toll-like receptor signaling pathway MAPK10 +WIKIPW Toll-like receptor signaling pathway MAPK13 +WIKIPW Toll-like receptor signaling pathway MAP2K1 +WIKIPW Toll-like receptor signaling pathway MAP2K2 +WIKIPW Toll-like receptor signaling pathway MAP2K3 +WIKIPW Toll-like receptor signaling pathway MAP2K6 +WIKIPW Toll-like receptor signaling pathway MAP2K7 +WIKIPW Toll-like receptor signaling pathway RAC1 +WIKIPW Toll-like receptor signaling pathway RELA +WIKIPW Toll-like receptor signaling pathway MAPK12 +WIKIPW Toll-like receptor signaling pathway CCL3 +WIKIPW Toll-like receptor signaling pathway CCL4 +WIKIPW Toll-like receptor signaling pathway CCL5 +WIKIPW Toll-like receptor signaling pathway CXCL11 +WIKIPW Toll-like receptor signaling pathway MAP2K4 +WIKIPW Toll-like receptor signaling pathway SPP1 +WIKIPW Toll-like receptor signaling pathway STAT1 +WIKIPW Toll-like receptor signaling pathway MAP3K7 +WIKIPW Toll-like receptor signaling pathway TLR1 +WIKIPW Toll-like receptor signaling pathway TLR2 +WIKIPW Toll-like receptor signaling pathway TLR3 +WIKIPW Toll-like receptor signaling pathway TLR4 +WIKIPW Toll-like receptor signaling pathway TLR5 +WIKIPW Toll-like receptor signaling pathway TNF +WIKIPW Toll-like receptor signaling pathway TRAF3 +WIKIPW Toll-like receptor signaling pathway TRAF6 +WIKIPW Toll-like receptor signaling pathway CASP8 +WIKIPW Toll-like receptor signaling pathway PIK3R3 +WIKIPW Toll-like receptor signaling pathway IKBKG +WIKIPW Toll-like receptor signaling pathway RIPK1 +WIKIPW Toll-like receptor signaling pathway FADD +WIKIPW Toll-like receptor signaling pathway CD14 +WIKIPW Toll-like receptor signaling pathway CD80 +WIKIPW Toll-like receptor signaling pathway CD86 +WIKIPW Toll-like receptor signaling pathway CD40 +WIKIPW Toll-like receptor signaling pathway IKBKE +WIKIPW TCA Cycle DLAT +WIKIPW TCA Cycle DLD +WIKIPW TCA Cycle DLST +WIKIPW TCA Cycle FH +WIKIPW TCA Cycle LOC283398 +WIKIPW TCA Cycle IDH2 +WIKIPW TCA Cycle IDH3A +WIKIPW TCA Cycle IDH3B +WIKIPW TCA Cycle IDH3G +WIKIPW TCA Cycle MDH1 +WIKIPW TCA Cycle MDH2 +WIKIPW TCA Cycle OGDH +WIKIPW TCA Cycle ACO2 +WIKIPW TCA Cycle PC +WIKIPW TCA Cycle PDHA1 +WIKIPW TCA Cycle PDHA2 +WIKIPW TCA Cycle PDHB +WIKIPW TCA Cycle PDK1 +WIKIPW TCA Cycle PDK2 +WIKIPW TCA Cycle PDK3 +WIKIPW TCA Cycle PDK4 +WIKIPW TCA Cycle PDP1 +WIKIPW TCA Cycle PDP2 +WIKIPW TCA Cycle SDHA +WIKIPW TCA Cycle SDHB +WIKIPW TCA Cycle SDHC +WIKIPW TCA Cycle SDHD +WIKIPW TCA Cycle PDHX +WIKIPW TCA Cycle SUCLG2 +WIKIPW TCA Cycle SUCLG1 +WIKIPW TCA Cycle SUCLA2 +WIKIPW Nucleotide GPCRs LTB4R +WIKIPW Nucleotide GPCRs ADORA1 +WIKIPW Nucleotide GPCRs ADORA2A +WIKIPW Nucleotide GPCRs ADORA2B +WIKIPW Nucleotide GPCRs ADORA3 +WIKIPW Nucleotide GPCRs LPAR4 +WIKIPW Nucleotide GPCRs P2RY1 +WIKIPW Nucleotide GPCRs P2RY2 +WIKIPW Nucleotide GPCRs P2RY4 +WIKIPW Nucleotide GPCRs P2RY6 +WIKIPW Prostaglandin Synthesis and Regulation EDN1 +WIKIPW Prostaglandin Synthesis and Regulation EDNRA +WIKIPW Prostaglandin Synthesis and Regulation EDNRB +WIKIPW Prostaglandin Synthesis and Regulation ANXA8L2 +WIKIPW Prostaglandin Synthesis and Regulation ANXA1 +WIKIPW Prostaglandin Synthesis and Regulation ANXA2 +WIKIPW Prostaglandin Synthesis and Regulation ANXA3 +WIKIPW Prostaglandin Synthesis and Regulation ANXA4 +WIKIPW Prostaglandin Synthesis and Regulation ANXA5 +WIKIPW Prostaglandin Synthesis and Regulation ANXA6 +WIKIPW Prostaglandin Synthesis and Regulation HPGD +WIKIPW Prostaglandin Synthesis and Regulation HSD11B1 +WIKIPW Prostaglandin Synthesis and Regulation HSD11B2 +WIKIPW Prostaglandin Synthesis and Regulation PLA2G4A +WIKIPW Prostaglandin Synthesis and Regulation PRL +WIKIPW Prostaglandin Synthesis and Regulation PTGDR +WIKIPW Prostaglandin Synthesis and Regulation PTGDS +WIKIPW Prostaglandin Synthesis and Regulation PTGER1 +WIKIPW Prostaglandin Synthesis and Regulation PTGER2 +WIKIPW Prostaglandin Synthesis and Regulation PTGER3 +WIKIPW Prostaglandin Synthesis and Regulation PTGER4 +WIKIPW Prostaglandin Synthesis and Regulation PTGFR +WIKIPW Prostaglandin Synthesis and Regulation PTGIR +WIKIPW Prostaglandin Synthesis and Regulation PTGIS +WIKIPW Prostaglandin Synthesis and Regulation PTGS1 +WIKIPW Prostaglandin Synthesis and Regulation PTGS2 +WIKIPW Prostaglandin Synthesis and Regulation S100A6 +WIKIPW Prostaglandin Synthesis and Regulation S100A10 +WIKIPW Prostaglandin Synthesis and Regulation TBXAS1 +WIKIPW Prostaglandin Synthesis and Regulation SCGB1A1 diff --git a/src/dataimport/networks/uniprot_pathways_gene.tsv b/src/dataimport/networks/uniprot_pathways_gene.tsv new file mode 100644 index 0000000..99c6e46 --- /dev/null +++ b/src/dataimport/networks/uniprot_pathways_gene.tsv @@ -0,0 +1,223 @@ +NCI-NATURE DNA-PK pathway in nonhomologous end joining PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200035&source=NCI-NATURE&what=graphic&jpg=on PRKDC,XRCC6,APLF,CSNK2A1,XRCC5,POLL,APTX,CSNK2A2,XRCC4,DNTT,LIG4,DCLRE1C,NHEJ1,PNKP,CSNK2B,POLM +NCI-NATURE Plasma membrane estrogen receptor signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200034&source=NCI-NATURE&what=graphic&jpg=on NOS3,ROCK2,GNB1,GNAQ,GNA13,ESR1,NRAS,ESR2,BCAR1,SRC,AKT1,GRB2,GNAL,GNG2,GNA11,PELP1,GNAI3,GNA15,MAPK11,SOS1,STRN,IGF1R,HBEGF,RHOA,MMP2,PLCB2,PIK3CA,PIK3R1,MMP9,GNA14,GNAO1,GNAI2,GNAZ,PLCB3,PLCB1,MSN,GNAI1,HRAS +NCI-NATURE CD40/CD40L signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200037&source=NCI-NATURE&what=graphic&jpg=on TRAF3,JAK3,RELA,MAP3K1,FCAMR,CD40LG,STAT5A,TRAF1,MAPK14,JUN,BIRC3,MAPK9,MAPK11,IL4,CD40,MAPK10,MYC,AKT1,MAPK8,NFKB1,C4BPA,TRAF2,NFKBIA,TDP2,CBLB,TNFAIP3,TRAF6,MAP3K14,BIRC2,MAP2K4 +NCI-NATURE HIF-2-alpha transcription factor network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200036&source=NCI-NATURE&what=graphic&jpg=on SIRT1,CREBBP,EGLN2,FXN,EIF3E,SERPINE1,CITED2,EGLN1,SP1,KDR,SLC11A2,EP300,POU5F1,EPAS1,PGK1,VEGFA,EFNA1,ELK1,TCEB2,TWIST1,ABCG2,EPO,BHLHE40,APEX1,SLC2A1,EGLN3,MMP14,FLT1,ETS1,HIF1AN,TCEB1,ARNT,VHL,ADORA2A +NCI-NATURE Canonical NF-kappaB pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200031&source=NCI-NATURE&what=graphic&jpg=on CYLD,UBE2D3,TNFAIP3,NFKBIA,XPO1,MALT1,BIRC2,TRAF6,NOD2,PRKCA,RELA,RAN,TNF,IKBKG,NFKB1,SSPO,IKBKB,RIPK2,BCL10,CHUK,ATM,ERC1,TNFRSF1A +NCI-NATURE E2F transcription factor network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200032&source=NCI-NATURE&what=graphic&jpg=on E2F1,RBBP4,ATM,CEBPA,CBX5,CREBBP,YY1,MYC,POLA1,E2F7,HIC1,RYBP,RRM2,KAT2B,UXT,RB1,CDK2,WASF1,HDAC1,MCL1,CDC6,E2F5,RBL1,CES5A,CDK1,PLAU,EP300,KAT2A,HBP1,SULT2A1,E2F2,RBL2,CES1,CCNE1,MYBL2,CES3,TOPBP1,SMARCA2,E2F3,CES4A,CES2,TRIM28,CES1P1,CDC25A,E2F6,CCND3,CDKN1A,RANBP1,BRCA1,TP73,XRCC1,SERPINE1,RRM1,CDKN2C,ORC1,CDKN1B,CCNE2,TFDP2,DHFR,TK1,APAF1,CCNA2,CASP7,SP1,SIRT1,TRRAP,PRMT5,TFE3,TYMS,MCM3,RBBP8,E2F4,TFDP1 +NCI-NATURE Integrin family cell surface interactions PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200039&source=NCI-NATURE&what=graphic&jpg=on ITGA2B,ITGA3,ITGA8,ITGA5,ITGB1,ITGAE,ITGAL,ITGAM,ITGB5,ITGB8,ITGA11,ITGB4,ITGA4,ITGA6,ITGA2,ITGA10,ITGA1,ITGAD,ITGB2,ITGB3,ITGA7,ITGAV,ITGB6,ITGB7,ITGA9,ITGA4,ITGAX +NCI-NATURE ATR signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200038&source=NCI-NATURE&what=graphic&jpg=on HUS1,SSPO,CDC25C,FBXW11,MCM7,PPP2R1A,RPA2,CLSPN,CDC6,ATRIP,RAD17,FANCD2,RFC5,MCM2,MDM2,YWHAZ,SMARCAL1,RAD9A,CDC25A,RPA1,TIMELESS,PLK1,RFC3,YWHAB,TOPBP1,NBN,PPP2R2B,CDK2,RAD51,ATR,RAD1,RFC4,BRCA2,CHEK1,CCNA2,PPP2CA,TIPIN,RFC2,CEP164 +NCI-NATURE Sphingosine 1-phosphate (S1P) pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200123&source=NCI-NATURE&what=graphic&jpg=on ABCC1,GNA12,S1PR3,GNA15,GNAI2,SGPL1,SGPP1,GNAQ,GNAZ,S1PR2,GNAI1,S1PR4,SPHK2,GNA11,GNA14,GNAI3,SPHK1,S1PR1,S1PR5,GNA13,GNAO1 +NCI-NATURE Signaling events mediated by Stem cell factor receptor (c-Kit) PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200181&source=NCI-NATURE&what=graphic&jpg=on MAPK3,PIK3C2B,HRAS,PTPN11,MAPK8,GRB10,BCL2,VAV1,PIK3R1,SOCS1,RPS6KB1,EPO,RAF1,GRAP2,AKT1,FOXO3,SHC1,TEC,JAK2,CBL,SPRED1,KIT,MAP4K1,PTEN,GAB1,GRB2,CREBBP,CRKL,SH2B2,GSK3B,EPOR,PIK3CA,SH2B3,STAT5A,LYN,PTPRO,PTPN6,FER,KITLG,MAP2K2,MAP2K1,PDPK1,SNAI2,SOS1,BAD,SPRED2,STAT3,DOK1,STAP1,MITF,MATK,STAT1 +NCI-NATURE Signaling mediated by p38-alpha and p38-beta PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200180&source=NCI-NATURE&what=graphic&jpg=on PTGS2,MITF,KRT8,MEF2A,SLC9A1,ESR1,RPS6KA4,KRT19,MAPKAPK2,ATF2,MAPK11,JUN,GDI1,HSPB1,CEBPB,MAPKAPK5,ATF6,MAPK14,HBP1,CSNK2B,MKNK1,PLA2G4A,RPS6KA5,DDIT3,NOS2,EIF4E,EIF4EBP1,MAPKAPK3,ATF1,USF1,TP53,MEF2C,RAB5A,CSNK2A1,PPARGC1A,CREB1,CSNK2A2,ELK4 +NCI-NATURE EPO signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200183&source=NCI-NATURE&what=graphic&jpg=on PIK3R1,BTK,SH2B3,RAP1A,IRS2,TRPC6,RAPGEF1,GAB1,CRKL,PTPN11,PLCG1,SOS1,BCL2,CBL,GRB2,SOCS3,PTPN6,NFKB1,EPO,VAV2,SHC1,STAT5B,BCL2L1,STAT5A,STAT1,EPOR,TEC,PLCG2,JAK2,HRAS,MAPK8,MAPK14,LYN +NCI-NATURE Stabilization and expansion of the E-cadherin adherens junction PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200182&source=NCI-NATURE&what=graphic&jpg=on CTNNB1,CDH1,AQP5,EGF,ENAH,CTNNA1,VCL,DIAPH1,NCKAP1,VASP,NCK1,EXOC3,ZYX,PLEKHA7,IGF1R,MET,STX4,HGF,ROCK1,EXOC4,LIMA1,MGAT3,PVRL2,RHOA,ABI1,CTNND1,PIP5K1C,CAMSAP3,MYL2,EGFR,ACTN1,KIFC3,CYFIP2,LPP,MYO6,GIT1,EPHA2,EFNA1,ARF6,AQP3 +NCI-NATURE Calcium signaling in the CD4+ TCR pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200185&source=NCI-NATURE&what=graphic&jpg=on IL4,PPP3R1,RCAN2,IL2,CALM1; CALM2; CALM3,NFATC2,PRKACA,POU2F1,IL3,PTGS2,FOSL1,FASLG,BATF3,PPP3CA,CD40LG,NFATC1,FOS,RCAN1,FKBP1A,AKAP5,JUNB,CSF2,PPP3CB,NFATC3,IL2RA,CABIN1,IFNG,CHP,JUN +NCI-NATURE IL2 signaling events mediated by STAT5 PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200184&source=NCI-NATURE&what=graphic&jpg=on IL2RA,CCND2,IL4,PRF1,BCL2L1,GRB2,LCK,CCND3,JAK1,JAK3,ELF1,STAT5B,BCL2,PTPN11,SOS1,SHC1,CCNA2,LTA,IL2,PIK3CA,FOXP3,MYC,GAB2,IL2RG,STAT5A,PIK3R1,CDK6,SP1,FASLG,IL2RB +NCI-NATURE Effects of Botulinum toxin PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200187&source=NCI-NATURE&what=graphic&jpg=on RAB3GAP2,SNAP25,STXBP1,STX1A,CHRNA1,UNC13B,VAMP2,RIMS1,SYT1 +NCI-NATURE Validated transcriptional targets of deltaNp63 isoforms PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200186&source=NCI-NATURE&what=graphic&jpg=on TP63,WWP1,GPX2,CEBPD,POU2F2,STXBP4,ATM,FOSL2,RRAD,VDR,GSK3B,PPP2R5A,MDM2,GNB2L1,NRG1,PERP,SEC14L2,IGFBP3,CCNB2,TCF7L1,MRE11A,ITGA3,T,ITCH,HES1,BDKRB2,FASN,YAP1,SFN,ADRM1,DLX6,TOP2A,HELLS,BRCA2,RUNX1,KRT14,AXL,NOTCH1,IL1A,KRT5,DLX5,COL5A1,ADA,RAB38,HBP1 +NCI-NATURE PAR1-mediated thrombin signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200189&source=NCI-NATURE&what=graphic&jpg=on PLCB2,ADRBK2,F2,PLCB1,GNA11,PRKCA,GNA13,ZYX,GNA14,VASP,PIK3CA,ARHGDIA,DNM2,ARHGEF1,GNAI2,GNA15,GNAQ,SNX2,GNAI1,GNB1,GNAZ,GNG2,NOS3,ROCK1,MYL2,RHOA,ROCK2,GNA12,AKAP13,TRPC6,PKN1,PRKCD,PRKCG,F2RL2,GNAI3,ARRB1,PIK3R1,F2R,DNM1,GNAO1,PLCB3,SNX1 +NCI-NATURE Signaling events mediated by VEGFR1 and VEGFR2 PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200188&source=NCI-NATURE&what=graphic&jpg=on MAPK1,AKAP1,MAP2K2,ROCK1,PRKAA1,MAP2K6,PRKCA,KDR,CDH5,MAPK14,FYN,GRB10,GRB2,PIK3R1,CDC42,PTPRJ,HSP90AB1,MAPKAPK2,MAPK11,HGS,PTPN11,ARF1,MYOF,VCL,DNM2,ITGB3,PTPN6,NCK1,FBXW11,CALM1; CALM2; CALM3,CBL,PDPK1,MAP2K1,PRKACA,RAF1,NCK2,SH2D2A,PRKAB1,PRKAG1,VTN,MAP2K3,FLT1,CAMKK2,PIK3CA,PTK2B,PRKAA2,MAPK3,PLCG1,IQGAP1,SRC,ITGAV,GAB1,CTNNB1,PRKCD,AKT1,PAK2,CTNNA1,SHB,HSP90AA1,PXN,NOS3,NEDD4,CAV1,BRAF,FES,RHOA +NCI-NATURE S1P2 pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200211&source=NCI-NATURE&what=graphic&jpg=on GNA13,FOS,GNAQ,GNAI2,PAK1,S1PR2,RAC1,CDH5,GNAI3,MAPK1,MAPK3,GNAZ,RHOA,JUN,GNA14,GNA11,GNAI1,MAPK8,MAPK14,IRS1,GNA15,GNA12,GNAO1,ELK1 +NCI-NATURE Cellular roles of Anthrax toxin PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200210&source=NCI-NATURE&what=graphic&jpg=on TNF,ANTXR1,MAP2K7,PGR,CALM1; CALM2; CALM3,NLRP1,DEFA1; DEFA1B,MAPK3,VCAM1,MAP2K2,MAP2K1,CASP1,MAP2K6,IL18,ANTXR2,IL1B,MAP2K4,MAP2K3,MAPK1 +NCI-NATURE Trk receptor signaling mediated by the MAPK pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200213&source=NCI-NATURE&what=graphic&jpg=on MAPK1,RIT2,RUSC1,NRAS,MAP3K2,MEF2C,CDK5,TRPV1,RAP1B,MAP2K1,FOS,BRAF,NTF3,MAP2K6,MAP2K5,ELK1,MAPK7,PRKCD,RPS6KA1,EHD4,SRF,HRAS,MAPK14,MAP2K3,MAPKAPK2,MAPK3,RAP1A,EGR1,RAF1,RPS6KA5,RIT1,CDK5R1,CREB1 +NCI-NATURE Regulation of Ras family activation PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200212&source=NCI-NATURE&what=graphic&jpg=on SOS2,RASGRP1,RASGRF1,NRAS,PRKCE,PRKCZ,RABGEF1,SOS1,RASGRF2,DAB2IP,CALM1; CALM2; CALM3,CAMK2B,PRKCB,RIN1,RASA2,RASA4,GRB2,NF1,RASAL1,SYNGAP1,RRAS,KRAS,RASGRP4,PLCE1,LGALS1,LGALS3,RASA1,RASGRP2,HRAS,PRKCA,RASGRP3 +NCI-NATURE Downstream signaling in naïve CD8+ T cells PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200215&source=NCI-NATURE&what=graphic&jpg=on CD3E,FOS,CD247,CALM1; CALM2; CALM3,IFNAR2,IFNA16,EGR4,PPP3R1,MAPK1,TNFRSF18,CD3D,PRKCQ,NFATC1,B2M,MAP2K1,RAF1,TNFRSF9,HRAS,JUN,PRF1,IFNA14,CD8B,CD8A,EGR1,FOSL1,NFATC3,FASLG,EOMES,TNF,ELK1,PRKCB,MAPK3,STAT4,NRAS,JUNB,IFNAR1,IFNA8,MAP2K2,IFNA2,TNFRSF4,IFNA6,IFNG,IFNA1; IFNA13,MAPK9,IL2RA,HLA-A,IFNA4,NFATC2,BRAF,MAPK8,IL2RG,PTPN7,PPP3CA,IL2,IFNA21,IFNA10,IFNA7,PRKCE,IFNA5,CD3G,GZMB,IFNA17,PRKCA,IL2RB,PPP3CB +NCI-NATURE Trk receptor signaling mediated by PI3K and PLC-gamma PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200214&source=NCI-NATURE&what=graphic&jpg=on PDPK1,BAD,YWHAH,EGR1,YWHAB,PIK3R1,PRKCD,FOXO3,GRB2,PLCG1,AGAP2,TRPV1,SHC1,SRC,GAB1,YWHAG,GSK3B,PIK3CA,CCND1,AKT1,YWHAE,CREB1,SOS1,NGF,CAMK2A,TRPC3,YWHAQ,SFN,YWHAZ,CAMK4,HRAS,NRAS,STAT5A,EPB41L1 +NCI-NATURE PLK3 signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200217&source=NCI-NATURE&what=graphic&jpg=on CCNE1,CDC25C,PLK3,TP53,CHEK2 +NCI-NATURE EPHA2 forward signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200216&source=NCI-NATURE&what=graphic&jpg=on PIK3CA,PIK3R1,VAV3,EFNA1,INPPL1,ACP1,EPHA2,TIAM1,RHOA,SRC,GRB2,BCAR1,VAV2,RAC1,CBL,PAK1,ARHGAP35 +NCI-NATURE Alpha-synuclein signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200219&source=NCI-NATURE&what=graphic&jpg=on TOR1A,HCK,UBE2L3,PARK2,SRC,PTK2B,UCHL1,PRKCD,LCK,MAPK1,TH,PLD2,PPP2R5D,MAPK3,BAD,FGR,GRK5,BLK,MAOB,FKBP1A,SNCA,CSNK2A1,KLK6,FYN,PLD1,YES1,PLCB2,SLC6A3,STUB1,PARK7,SYK,LYN +NCI-NATURE VEGFR3 signaling in lymphatic endothelium PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200218&source=NCI-NATURE&what=graphic&jpg=on MAPK1,ITGA5,VEGFC,MAPK3,MAPK11,ITGA1,CRK,PIK3R1,COL1A2,FLT4,COL1A1,ITGB1,MAP2K4,PIK3CA,MAPK14,ITGA4,CREB1,ITGA2,SOS1,FIGF,GRB2,AKT1,FN1,RPS6KA1 +NCI-NATURE BARD1 signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200205&source=NCI-NATURE&what=graphic&jpg=on NPM1,UBE2L3,TP53,CDK2,ATM,FANCD2,RAD51,FANCA,RBBP8,FANCE,FANCL,RAD50,FANCC,BARD1,BRCA1,ATR,FANCF,PRKDC,XRCC5,MRE11A,FANCG,EWSR1,UBE2D3,PCNA,CSTF1,NBN,TOPBP1,XRCC6,CCNE1 +NCI-NATURE N-cadherin signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200209&source=NCI-NATURE&what=graphic&jpg=on DCTN1,PTPN1,PLCG1,CAMK2G,CDC42,CTNNA1,CDH2,RAC1,RHOA,PIK3R1,PIP5K1C,GAP43,PIK3CA,CTNND1,MAPK8,MAPRE1,GRIA2,LRP5,CALM1; CALM2; CALM3,FGFR1,AXIN1,JUP,DAGLB,KIF5B,DAGLA,GJA1,MYL2,GSN,ROCK1,CTNNB1,CNR1,PTPN11,CTTN,FER +NCI-NATURE Fanconi anemia pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200002&source=NCI-NATURE&what=graphic&jpg=on PALB2,UBE2T,SSPO,HUS1,RPA2,FANCL,FANCM,FBXW11,FAAP100,BRCA1,RAD17,FAAP24,RAD9A,FANCD2,TOPBP1,ATRIP,FANCG,FANCC,CHEK1,APITD1,MRE11A,BRCA2,RFC3,XRCC3,FANCE,FANCI,FANCF,FAN1,TOP3A,FANCA,FANCB,RAD1,ATM,BRIP1,RFC4,H2AFX,RAD50,ATR,RPA1,NBN,BLM,RFC5,RMI1,HES1,USP1,WDR48,RFC2 +NCI-NATURE Regulation of nuclear SMAD2/3 signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200003&source=NCI-NATURE&what=graphic&jpg=on SMAD4,IL5,CREB1,CREBBP,SIN3B,NCOA2,SP1,RBBP4,E2F4,TCF3,DCP1A,SKI,RBL1,MED15,FOXO4,GATA3,SP3,HNF4A,FOXO3,IRF7,CITED1,FOXH1,MEF2C,TGIF1,SMAD7,CBFB,NR3C1,AR,E2F5,CTBP1,RUNX1,EP300,RUNX3,SAP30,FOXO1,ATF3,GSC,ATF2,SMAD3,SERPINE1,ESR1,KAT2A,CDK2,KAT2B,RUNX2,MYC,CDK4,CDKN2B,MAX,PIAS4,SMAD2,SNIP1,SIN3A,TFDP1,NCOR1,NKX2-5,FOS,TFE3,TGIF2,SKIL,IGHA1,LAMC1,COL1A2,DLX1,HDAC1,FOXG1,AKT1,VDR,HDAC2,HSPA8,ZBTB17,ITGB5,IFNB1,MYOD1,SAP18,IL10,RBBP7,PIAS3,JUN,CDKN1A,NCOA1,CEBPB +NCI-NATURE Fc-epsilon receptor I signaling in mast cells PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200004&source=NCI-NATURE&what=graphic&jpg=on SOS1,JUN,GRB2,PPAP2A,DOK1,PIK3R1,LYN,HRAS,RASA1,MAP2K1,PTPN13,AKT1,MAPK3,PLA2G4A,RAF1,PAK2,PLA2G1B,PRKCB,FCGR2B,BTK,LAT2,HCLS1,FYN,MAPK1,RELA,GAB2,DUSP1,SPHK1,IGHE,CHUK,CBLB,S1PR1,MAP3K1,PTPN11,LCP2,IKBKB,FCER1A,MS4A2,FCER1G,SYK,VAV1,FER,WIPF1,ITK,PIK3CA,MAP2K7,CBL,NFATC2,SHC1,MAP2K2,MAPK8,LAT,PLD2,MAP2K4,NFKB1,FOS,PXN,IKBKG,PLCG1 +NCI-NATURE Endothelins PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200005&source=NCI-NATURE&what=graphic&jpg=on PLCB3,MAPK14,MMP1,ADCY9,SLC9A1,GNAL,FOS,EDNRB,SRC,PTK2B,COL3A1,CYSLTR2,PRKCQ,ADCY8,ADCY4,EDN3,PLA2G4A,BCAR1,GNAZ,ADCY7,COL1A2,GNA12,GNAQ,AKT1,CYSLTR1,EDNRA,MAP2K1,PRKCG,GNA11,GNAO1,GNA15,CRK,MAP2K2,GNA14,GNAI1,PRKCE,SLC9A3,RAF1,RHOA,JUN,JAK2,ADCY5,PRKCH,PRKCD,CDC42,ADCY6,ADCY2,GNAI2,ADCY3,MAPK8,TRPC6,EDN2,RAC1,PLCB1,GNAI3,MAPK1,HRAS,PLCB2,EDN1,ADCY1,MAPK3,PRKCA +NCI-NATURE BCR signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200006&source=NCI-NATURE&what=graphic&jpg=on IKBKG,BCL10,BLNK,PTPRC,HRAS,PAG1,PPP3CA,VAV2,CD19,NFKBIB,DAPP1,RASA1,BCL2A1,PDPK1,GRB2,DOK1,CD79A,PTPN6,SOS1,PTEN,MAPK3,AKT1,CHUK,CD72,MAPK8,PIK3CA,PPP3CC,MAP4K1,TRAF6,IKBKB,LYN,MAP3K7,CARD11,NFATC1,NFKB1,CALM1; CALM2; CALM3,CSNK2A1,PIK3R1,PPP3CB,CAMK2G,ETS1,CD22,FCGR2B,SH3BP5,MAP3K1,MAPK1,MAP2K1,JUN,RELA,IBTK,CSK,NFKBIA,SYK,ELK1,MALT1,SHC1,PLCG2,FOS,POU2F2,MAPK14,CD79B,RAC1,RAF1,BTK +NCI-NATURE Signaling events mediated by PRL PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200007&source=NCI-NATURE&what=graphic&jpg=on ITGA1,RABGGTA,CCNE1,MAPK3,RABGGTB,CDK2,TUBA1B,RHOC,ATF5,PTP4A2,ROCK1,SRC,BCAR1,EGR1,RHOA,ITGB1,PTP4A3,MAPK1,PTP4A1,CCNA2,CDKN1A,RAC1,AGT +NCI-NATURE p63 transcription factor network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200008&source=NCI-NATURE&what=graphic&jpg=on +NCI-NATURE RhoA signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200009&source=NCI-NATURE&what=graphic&jpg=on MAP2K6,MKL1,PKN1,PKN2,PIP5K1A,MAP2K4,ROCK2,RHOA,PLD1,SLC9A3,EZR,MAP2K3,ITGB1,PRKCZ,VCL,PTEN,CDKN1B,F2RL2,FOS,CFL1,SLC9A1,DIAPH1,SCAI,ATF2,MSN,MAPK8,SH3GL2,PIP5K1B,ROCK1,SRF,TLN1,PIP5K1C,PARD6A,CYR61,JUN,RDX,MAPK12,CDC42,PPP1R12A,ACTA1,PLD2,LIMK1,MYL2,LIMK2 +NCI-NATURE TCR signaling in naïve CD4+ T cells PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200027&source=NCI-NATURE&what=graphic&jpg=on SHC1,RASGRP1,AKT1,CD3D,HLA-DRB1,HRAS,IKBKB,PRKCA,CD86,RASGRP2,SH3BP2,TRAF6,IKBKG,ZAP70,PTPN6,NRAS,CBL,ORAI1,WAS,FYN,PRKCB,CD3E,NCK1,CHUK,PAG1,CSK,FLNA,BCL10,SLA2,HLA-DRA,GAB2,PLCG1,RAP1A,LCK,RASSF5,LCP2,GRB2,CD80,GRAP2,MAP3K14,CD3G,PTPRC,PRKCQ,PTPN11,CD28,FYB,CD4,STK39,PTEN,ITK,CARD11,MAP3K8,PRKCE,MAP4K1,VAV1,TRPV6,CDC42,DBNL,PDPK1,CD247,SOS1,MALT1,STIM1 +NCI-NATURE Thromboxane A2 receptor signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200082&source=NCI-NATURE&what=graphic&jpg=on PRKCA,ADRBK1,RAB11A,GNB1,GNA14,ARHGEF1,LYN,PRKCE,FGR,RHOA,RAC1,BLK,VCAM1,PRKCQ,PRKCD,GNAQ,EGFR,PRKCZ,PRKACA,PTGDR,SELE,MAPK14,GNA12,AKT1,GNAI2,TGM2,NOS3,ROCK1,PIK3R5,SLC9A3R1,PLCB2,PIK3CG,SRC,SYK,YES1,PIK3R6,DNM1,ICAM1,LCK,ARR3,PRKCH,GNG2,FYN,HCK,MAPK11,ADRBK2,GNA11,PTGIR,GNB5,GNA15,GNA13,PRKCG,ARRB2,EGF +NCI-NATURE SHP2 signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200083&source=NCI-NATURE&what=graphic&jpg=on EGFR,NTRK2,RHOA,GNAI3,IL2,NTF4,IL2RA,IL6R,IRS1,SOS1,ANGPT1,EGF,IFNG,NRAS,NOS3,PRKACA,FRS2,TEK,IL2RG,IFNGR1,STAT1,PDGFRB,GNAI1,BDNF,ARHGAP35,PIK3CA,PTPN11,JAK2,GRB2,MAP2K1,IL2RB,MLLT4,PDGFB,FRS3,PAG1,PIK3R1,SDC2,GAB2,JAK1,IGF1R,RAF1,LMO4,LCK,IL6ST,SHC1,IL6,KDR,MAP2K2,GAB1,HRAS,JAK3,NTF3,NGF +NCI-NATURE Syndecan-4-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200134&source=NCI-NATURE&what=graphic&jpg=on CXCR4,LAMA1,DNM2,PLG,FGF2,GIPC1,NUDT16L1,MDK,TNFRSF13B,F2,FZD7,TFPI,FGF6,MMP9,RHOA,ADAM12,ACTN1,THBS1,PRKCD,FN1,TNC,ITGA5,LAMA3,ITGB1,SDCBP,CCL5,SDC4,FGFR1,CXCL12,PRKCA,RAC1 +NCI-NATURE ATF-2 transcription factor network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200135&source=NCI-NATURE&what=graphic&jpg=on JUNB,CDK4,ESR1,NOS2,HRK,DDIT3,PDGFRA,H2AFY,BCL2,EP300,SOCS3,PLAU,IL23A,ARG1,MAPK8,GADD45A,DUSP1,JDP2,DUSP10,SELE,MAPK14,CBFB,DUSP8,MAPK1,TGFB2,IL8,RB1,PRKCA,MAPK3,CUL3,ACHE,CCND1,CCNA2,DUSP5,ATF3,RUVBL2,CREB1,KAT5,MMP2,JUN,JUND,IFNG,HES1,BRCA1,TH,POU2F1,MAPK11,ATF2,NF1,INS,MAPK9,SERPINB5,COL24A1,PPARGC1A,CSRP2,HBG2,FOS,IL6 +NCI-NATURE IL8-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200136&source=NCI-NATURE&what=graphic&jpg=on IL8 +NCI-NATURE AP-1 transcription factor network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200137&source=NCI-NATURE&what=graphic&jpg=on DMP1,IL4,MYC,TP53,COL1A2,NPPA,CCL2,FOSL1,GATA2,EGR1,CBFB,IL5,CDKN1B,HLA-A,IL2,MAFG,JUND,PLAU,TH,MAF,SP1,NTS,GJA1,TCF7L2,MMP9,ETS1,MYB,ELF1,NFATC3,CREB1,IL6,MT2A,TIMP1,DUSP1,DMTF1,NR3C1,ATF2,FOSL2,TRIP6,ACTA1,COPS5,CDK1,CYR61,CRTC1,FABP4,BAG1,EDN1,IL10,BCL2L11,EP300,CSF2,CCND1,JUNB,NFATC1,MMP1,FOSB,TGFB1,IL8,ATF3,AGT,HIF1A,PTEN,FOS,ESR1,PENK,CTNNB1,IFNG,JUN,NFATC2 +NCI-NATURE Notch-mediated HES/HEY network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200228&source=NCI-NATURE&what=graphic&jpg=on MYB,CD4,PARP1,RBBP8,HEY2,ARNT,RBPJ,GAA,E2F1,PTF1A,MYOD1,CTBP1,ASCL1,CDKN1B,NCOA1,YY1,GATA4,HEY1,HES6,TLE1,SPEN,CREBBP,GHR,KDR,AR,NOTCH1,TCF3,RCAN1,HDAC1,MAML1,EP300,JAK2,NEUROG3,STAT3,NCOR2,RUNX2,GATA6,MAML2,NCOR1,BGLAP,CAMK2D,HIF1A,KDM1A,RB1,TWIST1,HES1,ID1,GATA1 +NCI-NATURE IL12 signaling mediated by STAT4 PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200229&source=NCI-NATURE&what=graphic&jpg=on CD3D,MAPK9,IL18RAP,IL18,HLA-DRA,CD3G,STAT4,CD80,HLA-DRB1,IRF1,PIAS2,IL18R1,ETV5,CREBBP,PRF1,CD4,IL2,TGFB1,MAPK8,PPP3R1,JUN,TBX21,FOS,PPP3CB,CD28,CD86,STAT3,IFNG,IL2RA,CD3E,PPP3CA,IL13,CD247 +NCI-NATURE Lissencephaly gene (LIS1) in neuronal migration and development PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200132&source=NCI-NATURE&what=graphic&jpg=on IQGAP1,CDC42,CSNK2A1,VLDLR,LRPAP1,NUDC,PAFAH1B2,CDK5,CDK5R2,ABL1,RAC1,YWHAE,CDK5R1,PLA2G7,CLIP1,LRP8,DAB1,DCX,MAP1B,PPP2R5D,NDEL1,RELN,PAFAH1B3,CALM1; CALM2; CALM3,DYNC1H1,KATNA1,DYNLT1,PAFAH1B1,RHOA +NCI-NATURE ErbB1 downstream signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200133&source=NCI-NATURE&what=graphic&jpg=on BRK1,RIN1,EPS8,CYFIP2,RALGDS,MAP2K1,PPP2R1A,PLD1,YWHAE,RPS6,ACTR2,IQGAP1,PPP5C,STAT1,ARF4,F2RL2,ARPC4,HRAS,AKT1,CHN2,SRF,MAPK7,PRKCD,YWHAG,ATF1,DUSP6,JUN,RPS6KA4,RPS6KA5,BAIAP2,MAPK8,WASL,SH2D2A,SOS1,PEBP1,DIAPH3,YWHAQ,RPS6KA3,YWHAB,PRKCA,CAPN2,YWHAZ,PIK3R2,NRAS,PIK3CA,GAB1,RALA,BRAF,PPP2R2A,EGFR,MAPK1,SFN,SMAD1,PIK3R1,WASF2,MTOR,MAP2K5,MAPK3,RAB5A,MAPKAP1,PIK3R3,PIK3CB,SRC,KSR1,MAP3K1,PIK3CD,STAT3,PDPK1,PLD2,NCKAP1,RAF1,MAP2K4,MAP3K2,MEF2C,ARPC3,USP6NL,CREB1,VAV2,DUSP1,BAD,CDC42,ARPC5,YWHAH,ABI1,EGF,SLC9A1,RAC1,ZFP36,MAPK9,EGR1,RICTOR,MLST8,MYLPF,ATF2,PPP2CA,ARPC1B,GRB2,MAP2K2,ARPC2,PRKCZ,CALM1; CALM2; CALM3,ELK1,FOS,ACTR3 +NCI-NATURE Signaling events mediated by focal adhesion kinase PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200224&source=NCI-NATURE&what=graphic&jpg=on FYN,GIT2,RAPGEF1,TLN1,ACTN1,ARHGEF11,ITGA5,PIK3R1,MAP2K4,RRAS,GRB7,ARHGAP35,SRC,VCL,CCND1,RASA1,WASL,YES1,NCK1,ITGB5,BCAR1,RAP1B,NCK2,ETS1,ELMO1,MMP14,PTPN21,RGNEF,PAK1,ARHGEF7,RAP1A,ITGB1,ACTA1,MAPK8IP3,PIK3CA,SOS1,CAPN2,ROCK2,RAC1,MAPK9,RHOA,ARHGAP26,SH3GL1,MAPK1,DOCK1,ASAP1,JUN,PLCG1,BMX,MAPK8,KLF8,PXN,BRAF,RAF1,ITGAV,MAP2K1,CRK,GRB2 +NCI-NATURE p75(NTR)-mediated signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200122&source=NCI-NATURE&what=graphic&jpg=on PSENEN,BCL2L11,PIK3CA,ZNF274,NDNL2,BEX1,RHOC,PRKCZ,CASP3,IKBKG,APP,MAPK9,RHOA,E2F1,MAPK10,APH1A,MAPK8,PRKCI,ADAM17,XIAP,IKBKB,PIK3R1,NTF3,NCSTN,OMG,BIRC3,CASP6,FURIN,NTF4,AKT1,NGF,RHOB,IRAK1,SQSTM1,BAD,BDNF,PSEN1,NGFR,MMP3,MAG,MAGEH1,YWHAE,DIABLO,MYD88,CHUK,TP53,ARHGDIA,APAF1,NGFRAP1,CASP9,BIRC2,MMP7,MAGED1,CYCS,PLG,TRAF6,SHC1,RIPK2,RTN4,APH1B,PRDM4,SMPD2,RTN4R,RAC1,SORT1,NDN +NCI-NATURE FOXA1 transcription factor network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200226&source=NCI-NATURE&what=graphic&jpg=on INS,FOS,SFTPA1,NCOA3,CEBPB,VTN,CYP2C18,FOXA2,SOD1,NFIA,DSCAM,NKX3-1,EP300,NDUFV3,ESR1,AR,BRCA1,AP1B1,CDKN1B,SFTPD,NRIP1,COL18A1,SCGB1A1,GCG,JUN,NR2F2,PRDM15,FOXA1,POU2F1,CREBBP,KLK3,APOB,SHH,FOXA3,SP1,ATP5J,SFTPA2,XBP1,C4BPB,NFIC,TFF1,NFIB,SERPINA1,PISD +NCI-NATURE TGF-beta receptor signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200227&source=NCI-NATURE&what=graphic&jpg=on EIF2A,PARD6A,NEDD4L,CTNNB1,OCLN,SPTBN1,RPS6KB1,TAB2,TGFB3,CAV1,TGFB1,GRB2,RNF111,PPP2CA,PPP2CB,SMURF1,SMAD7,DAXX,WWP1,TGFB2,DAB2,PDPK1,SOS1,AXIN1,ITCH,RHOA,PPP2R2A,TGFBR1,SMURF2,YWHAE,ZFYVE16,PML,SMAD2,PPP1CA,DACT2,CTGF,STRAP,PPP1R15A,FKBP1A,ARRB2,SMAD4,CAMK2A,SMAD3,DYNLRB1,SKIL,SHC1,MAP3K7,TAB1,XIAP,BAMBI,ZFYVE9,YAP1,TGFBR2,TGFBR3 +NCI-NATURE FGF signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200220&source=NCI-NATURE&what=graphic&jpg=on STAT1,AKT1,PIK3R1,JUN,FGFR1,FGF23,PLAUR,GAB1,FGF18,PLCG1,FGFR2,FGF2,FGF1,PDPK1,IL17RD,MAPK1,RUNX2,RPS6KA1,PLAU,CTNND1,SSH1,STAT5B,PTK2B,FGF17,CBL,CDH2,CAMK2A,CDH1,KLB,PTPN11,FGF9,MAPK3,FGF4,SRC,FGF8,SPRY2,SPP1,FOS,MET,NCAM1,MMP9,FRS2,SHC1,BGLAP,SDC2,FGF6,GRB2,HGF,CTTN,PIK3CA,SOS1,FGFR4,FGF19,PAK4 +NCI-NATURE Urokinase-type plasminogen activator (uPA) and uPAR-mediated signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200139&source=NCI-NATURE&what=graphic&jpg=on ELANE,MMP12,MMP3,PDGFD,VTN,FGA,VLDLR,TGFB1,ITGA5,GPLD1,KLK4,FPR1,LRP1,FN1,PDGFRB,NCL,ITGB5,ITGAM,RAC1,ITGB3,CRK,DOCK1,EGFR,HGF,PLAUR,PLG,PLAU,CTSG,MMP9,FPR3,SERPINE1,FGB,MMP13,BCAR1,FGG,CTRC,ITGB1,ITGB2,SRC,ITGA3,ITGAV,FPR2 +NCI-NATURE RAC1 signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200222&source=NCI-NATURE&what=graphic&jpg=on ABI1,PAK2,ARPC3,BCAR1,MAPK9,STAT3,ARPC2,ARHGDIA,RACGAP1,NCKAP1,ARPC4,NCF2,MAP3K11,CTNNA1,NOXO1,ACTR2,CYBA,RAC1,CYFIP2,ARPC5,CTNNB1,IQGAP1,CFL1,STAT5A,PIP5K1C,MAP2K6,JUN,MAP2K7,ABI2,CRK,MAP2K4,ARPC1B,CDH1,MAPK8,NOX1,BRK1,PAK1,NOXA1,PIP5K1B,ACTR3,BAIAP2,ATF2,PLCB2,MAPK14,ARHGAP5,NCF1,LIMK1,IQGAP3,CYBB,MAP3K1,WASF2,PIP5K1A,WASF1,MAP2K3 +NCI-NATURE Regulation of retinoblastoma protein PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200223&source=NCI-NATURE&what=graphic&jpg=on PPP2CA,SMARCB1,TGFB2,RBP2,CCNE1,CDKN1A,RAF1,JUN,BRD2,BGLAP,CREBBP,CBX4,CEBPA,CDK4,SPI1,TBP,ATF2,RUNX2,SMARCA4,MAPK14,TFDP1,DNMT1,CKM,CTBP1,ATF7,E2F2,PAX3,MITF,UBTF,MET,SUV39H1,SFTPD,MAPK11,CCND3,SKP2,RBBP4,ELF1,ABL1,EP300,HDAC3,CCNA2,E2F3,PPARG,E2F1,CCND1,CEBPD,CDKN1B,CDK2,MYOD1,HDAC1,TAF1,CDK6,CCND2,MAPK9,MDM2,GSC,E2F4,SIRT1,AATF,RB1,MEF2C,PPP2R3B,CEBPB,CSF2 +NCI-NATURE Syndecan-1-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200156&source=NCI-NATURE&what=graphic&jpg=on COL9A3,COL11A2,COL6A3,COL8A2,SDCBP,PRKACA,MET,COL13A1,MAPK1,MAPK3,SDC1,COL7A1,MMP1,COL11A1,COL1A2,COL2A1,HPSE,COL5A2,PPIB,COL4A3,COL16A1,COL12A1,COL10A1,CASK,COL5A1,COL4A5,COL3A1,COL4A4,COL14A1,BSG,TGFB1,COL8A1,CCL5,MMP9,COL4A1,COL6A2,MMP7,COL15A1,COL6A1,LAMA5,COL9A1,HGF,COL9A2,COL1A1,COL17A1,COL4A6 +NCI-NATURE p38 signaling mediated by MAPKAP kinases PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200157&source=NCI-NATURE&what=graphic&jpg=on SRF,YWHAB,HSPB1,MAPK11,YWHAQ,YWHAZ,LSP1,YWHAH,CDC25B,MAPKAPK3,TSC2,TH,YWHAE,MAPK14,RAF1,YWHAG,MAPKAPK2,CREB1,ETV1,SFN,TCF3 +NCI-NATURE IL23-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200154&source=NCI-NATURE&what=graphic&jpg=on IL1B,IL12RB1,IL17A,IL18RAP,IL2,ALOX12B,SOCS3,IL12B,CD4,IL6,TNF,PIK3CA,NFKBIA,PIK3R1,JAK2,ITGA3,STAT4,CXCL9,TYK2,STAT1,IL17F,CXCL1,IL18,NOS2,IL19,NFKB1,IL23R,STAT3,RELA,IL23A,STAT5A,IFNG,IL24,CCL2,MPO,CD3E,IL18R1 +NCI-NATURE HIV-1 Nef: Negative effector of Fas and TNF-alpha PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200155&source=NCI-NATURE&what=graphic&jpg=on BAG4,CFLAR,FAS,BID,CASP7,BIRC3,BCL2,MAP3K14,DAXX,MAPK8,CRADD,CASP3,CASP9,TNFRSF1A,FADD,APAF1,TRAF2,FASLG,TNF,CHUK,RIPK1,CASP8,CD247,DFFA,MAP3K5,CYCS,NFKB1,TRADD,RELA,CASP6,DFFB,CASP2,NFKBIA,MAP2K7,TRAF1 +NCI-NATURE Nephrin/Neph1 signaling in the kidney podocyte PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200152&source=NCI-NATURE&what=graphic&jpg=on AKT1,PIK3R1,KIRREL,NCK1,RAC1,TRPC6,PRKCI,NPHS1,PARD6A,PIK3CD,PIK3R3,FYN,NPHS2,MAP2K4,F2RL2,PIK3CB,WASL,GRB2,TJP1,BAD,JUN,NCK2,CD2AP,MAPK8,PIK3CA,ARRB2,PIK3R2,PLCG1,PRKCZ,MAPK10,MAPK9 +NCI-NATURE C-MYB transcription factor network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200153&source=NCI-NATURE&what=graphic&jpg=on MAD1L1,CEBPB,MAF,CDK6,GSTM1,CSF1R,TFEC,MAT2A,CCNB1,COL1A2,CREBBP,ADA,HSPA8,EP300,UBE2I,CASP6,TAB1,COPA,PTGS2,SMARCA2,CCND1,ANPEP,CD34,SP1,KIT,PIAS3,ADORA2B,SIN3A,ETS1,KITLG,MYC,PAX5,TAB2,MPO,H2AFZ,SPI1,NLK,PRTN3,BCL2,CEBPA,LECT2,CA1,RAG2,SND1,SLC25A3,ETS2,HES1,TOM1,CBX4,CD4,CEBPD,PTCRA,ATP2B1,WNT1,GATA3,MYF6,GATA1,MAP3K7,SKI,ELANE,LYZ,NRAS,HRAS,PPP3CA,MYOD1,BIRC3,TRIM28,CCNA1,ZFPM1,YEATS4,IQGAP1,CDKN1B,MYB,CDKN1A,HIPK2,PIM1,PPID,CLTA,NCOR1,LEF1,MCM4 +NCI-NATURE Neurotrophic factor-mediated Trk receptor signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200150&source=NCI-NATURE&what=graphic&jpg=on DOCK1,ABL1,MAGED1,DNAJA3,RHOA,CRKL,TIAM1,MAPK1,HRAS,CRK,NTRK3,RASGRF1,SH2B1,RHOG,CCND1,SOS1,NEDD4L,FRS2,RAPGEF1,EHD4,MAP2K1,RAC1,NTF4,PLCG1,GAB2,SQSTM1,GRB2,SHC3,RIT2,CDC42,PRKCI,RAP1B,STAT3,DNM1,PTPN11,RASA1,SHC2,ELMO1,NTRK1,NGFR,NTRK2,FRS3,PIK3CA,NRAS,BDNF,FAIM,PRKCZ,SHC1,NGF,MATK,NTF3,GAB1,MCF2L,PIK3R1,MAPK3,RGS19,RAP1A,RIT1,GIPC1,DYNLT1 +NCI-NATURE p38 MAPK signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200018&source=NCI-NATURE&what=graphic&jpg=on TAOK1,GADD45B,TAB1,MAP3K5,MAP3K10,TXN,MAP3K3,MAP3K7,TAB2,MAP3K6,TRAF2,TRAF6,MAP2K6,MAP3K4,TAOK3,CCM2,MAPK11,MAP2K3,CAMK2B,RAC1,GADD45G,GADD45A,MAP3K1,MAPK14,ATM,CALM1; CALM2; CALM3,TAOK2 +NCI-NATURE p73 transcription factor network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200017&source=NCI-NATURE&what=graphic&jpg=on TP53I3,ADA,FAS,PML,GRAMD4,NSG1,PFDN5,WT1,EP300,PPAP2A,GATA1,YAP1,GDF15,FBXO45,RCHY1,BAX,IL4R,MDM2,FLOT2,PLK3,CCNB1,S100A2,AFP,RNF43,MAPK11,KAT5,CDK6,SERPINE1,WWOX,BRCA2,CCNA2,GNB2L1,SIRT1,PIN1,BUB3,MYC,AEN,CDK1,MAPK14,DEDD,BBC3,CLCA2,JAG2,ABL1,PRKACB,CDK2,DCP1B,BCL2L11,PLK1,SFN,HEY2,JAK1,RELA,NDUFS2,ITCH,NEDD4L,PEA15,SP1,HAGH,TP53AIP1,RB1,RAD51,FASN,CHEK1,BAK1,HSF1,UBE4B,SERPINA1,CCNE2,BUB1,FOXO3,TUBA1A,CDKN1A +NCI-NATURE Beta1 integrin cell surface interactions PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200016&source=NCI-NATURE&what=graphic&jpg=on ITGA3,ITGA9,COL4A4,IGSF8,COL5A1,COL11A1,ITGA7,CD81,NID1,VTN,TGFBI,PLAU,LAMB1,COL4A1,ITGB1,COL7A1,LAMA4,LAMA1,ITGA5,COL6A2,THBS2,PLAUR,COL2A1,COL4A5,ITGA10,COL1A1,LAMA2,COL5A2,SPP1,COL18A1,LAMC1,ITGA4,COL4A3,VCAM1,CD14,COL3A1,THBS1,ITGA11,COL1A2,LAMC2,LAMA3,CSPG4,FGA,COL6A1,LAMB3,FBN1,MDK,FN1,ITGA1,ITGAV,COL4A6,LAMA5,FGB,COL6A3,TGM2,F13A1,ITGA2,LAMB2,JAM2,FGG,ITGA6,COL11A2,TNC,ITGA8,NPNT +NCI-NATURE Notch signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200015&source=NCI-NATURE&what=graphic&jpg=on NCOR1,NOTCH1,DTX1,FURIN,SSPO,DLL1,DNM1,PTCRA,RAB11A,NEURL,CTBP1,FBXW7,NUMB,CBL,MFAP2,MYCBP,DLL4,MAML1,SPEN,MYC,SKP2,CNTN6,NOTCH2,PSEN1,MAML2,YY1,GATA3,ENO1,ITCH,IL4,APH1B,LNX1,NCOR2,RBPJ,CDKN1A,JAG2,ADAM12,DLK1,EPS15,DNER,SKP1,NOTCH3,RBBP8,NOTCH4,JAG1,APH1A,DLL3,PSENEN,MFAP5,NCSTN,CCND1,EP300,HDAC1,MARK2,MIB1,ADAM10,CUL1,CNTN1,KDM1A +NCI-NATURE Insulin Pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200014&source=NCI-NATURE&what=graphic&jpg=on PARD6A,EXOC6,GRB10,PRKCI,EXOC5,EXOC3,EXOC1,RASA1,SHC1,EXOC7,SH2B2,CBL,SORBS1,PDPK1,INS,AKT2,EIF4EBP1,NCK2,TRIP10,SOS1,HRAS,RAPGEF1,INSR,NCK1,PTPN1,EXOC2,IRS1,PIK3R1,PTPN11,DOK1,FOXO3,EXOC4,CAV1,GRB2,AKT1,SGK1,GRB14,RPS6KB1,F2RL2,PRKCZ,RHOQ,PTPRA,PIK3CA +NCI-NATURE LPA receptor mediated events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200013&source=NCI-NATURE&what=graphic&jpg=on BCAR1,PLCB3,GNAI3,GSK3B,RELA,PTK2,ADCY1,LYN,ADCY7,PLD2,GNA12,HRAS,ADCY4,ADCY2,NFKBIA,NFKB1,ADCY8,EGFR,LPAR3,LPAR1,LPAR4,ADRA1B,GNB1,CRK,PRKCD,IL6,AKT1,PLCG1,TIAM1,ARHGEF1,GNA14,GNA11,LPAR2,ADCY9,RHOA,MMP9,GNAZ,GNAO1,PIK3CB,MMP2,PIK3R1,GNAI1,PTK2B,PRKCE,PXN,PRKD1,FOS,IL8,GAB1,ADCY6,JUN,RAC1,GNAI2,ADCY5,GNA13,GNAQ,MAPT,ADCY3,HBEGF,CASP3,GNA15,SRC,GNG2,TRIP6,SLC9A3R2 +NCI-NATURE Aurora B signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200012&source=NCI-NATURE&what=graphic&jpg=on PPP1CC,KIF23,NCAPH,SGOL1,STMN1,AURKC,MYLK,SMC2,RHOA,BIRC5,KIF2C,NCL,CBX5,CDCA8,SEPT1,VIM,DES,KLHL9,RACGAP1,AURKA,INCENP,PSMA3,NSUN2,NCAPD2,RASA1,KLHL13,BUB1,NDC80,SMC4,NCAPG,AURKB,KIF20A,TACC1,PPP2R5D,PEBP1,CENPA,EVI5,CUL3,NPM1 +NCI-NATURE ErbB4 signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200011&source=NCI-NATURE&what=graphic&jpg=on LRIG1,NEDD4,FYN,STAT5A,ITCH,DLG4,MDM2,TAB2,YAP1,PIK3R1,EREG,BTC,PIK3R2,PIK3R3,STAT5B,WWP1,CBFA2T3,PIK3CA,WWOX,MAPK3,HBEGF,JAK2,PRL,MAPK1,PIK3CD,PRLR,NCOR1,PIK3CB,GRB2,GRIN2B,ADAM17,SHC1,ERBB2,NRG4,NRG3 +NCI-NATURE ErbB receptor signaling network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200159&source=NCI-NATURE&what=graphic&jpg=on ERBB2,NRG4,EGFR,HBEGF,AREG; AREGB,BTC,TGFA,NRG3,EGF,NRG2,HSP90AA1,EREG,ERBB3 +NCI-NATURE CDC42 signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200069&source=NCI-NATURE&what=graphic&jpg=on ARHGDIA,PLD1,DIAPH3,MAPK8,F2RL2,APC,TNK2,MTOR,MAP2K3,PIK3CA,EPS8,PRKCE,PAK2,TIAM1,CDC42BPA,VAV2,CTNNA1,HES5,RPS6KB1,MAPK1,ENAH,MYL2,SRC,LIMK1,MAPK9,ACTR2,BCAR1,ARHGEF6,IQGAP3,ARHGEF7,MAPK3,ARPC5,PRKCZ,ATF2,PAK4,MAP2K4,ARPC1B,WASL,ARPC3,MAP2K6,PAK1,JUN,RAC1,GSK3B,MAP3K11,CDH1,YES1,BRAF,RASGRF1,MAP3K1,PARD6A,ARPC2,DLG1,ACTR3,CTNNB1,RAF1,PAX6,LIMK2,PIK3R1,ARPC4,MAP2K7,HRAS,CDC42,CFL1,MAPK14,BAIAP2,IQGAP1,SEPT2,CBL,EXOC7 +NCI-NATURE Netrin-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200088&source=NCI-NATURE&what=graphic&jpg=on NTN1,WASL,CDC42,TRIO,PLCG1,FYN,NCK1,UNC5C,PAK1,BCAR1,UNC5B,MAPK3,PITPNA,YES1,RAC1,MYO10,CAMK2A,MAP2K2,PIK3R1,DCC,DOCK1,RHOA,PIK3CA,MAP1B,ELMO1,MAP2K1,DAPK1,MAPK1,UNC5A,SRC +NCI-NATURE IL1-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200089&source=NCI-NATURE&what=graphic&jpg=on UBE2N,MAP2K6,PIK3CA,CHUK,NFKB1,IKBKG,TRAF6,IL1R2,MAP3K3,RELA,MAP3K7,SQSTM1,PRKCI,IKBKB,TAB2,MYD88,PRKCZ,UBE2V1,IRAK1,JUN,IL1B,MAPK8,TICAM2,ERC1,IRAK4,TAB1,PIK3R1,CASP1,IL1R1,IL1RN,IL1A,TOLLIP,IRAK3 +NCI-NATURE Regulation of Androgen receptor activity PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200121&source=NCI-NATURE&what=graphic&jpg=on NCOA1,AR,RCHY1,HDAC7,HDAC1,RXRA,APPBP2,KAT2B,GATA2,POU2F1,NR2C2,NCOA2,FOXO1,EGR1,MAP2K4,PKN1,CARM1,EP300,GSK3B,MDM2,HSP90AA1,SPDEF,SENP1,SIRT1,MAPK8,HOXB13,CREBBP,CEBPA,SRY,KAT7,EHMT2,SRC,NR3C1,TRIM24,SMARCE1,REL,KAT5,ZMIZ2,SMARCC1,TMPRSS2,GNB2L1,PDE9A,MAPK14,KLK2,DNAJA1,NR0B1,RXRG,JUN,NR2C1,KLK3,SMARCA2,MAP2K6 +NCI-NATURE Direct p53 effectors PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200120&source=NCI-NATURE&what=graphic&jpg=on DDIT4,FDXR,TNFRSF10A,CCNK,DROSHA,JMY,SERPINB5,E2F3,IGFBP3,GPX1,ATF3,MAP4K4,BNIP3L,ZNF385A,TSC2,BCL2L14,FOXA1,BCL2,TP63,RNF144B,TP53,CASP1,MMP2,TIGAR,TP73,TNFRSF10D,PERP,SP1,BBC3,PRKAB1,TYRP1,CEBPZ,NFYB,E2F2,PYCARD,MLH1,PCNA,SMARCA4,BAK1,JUN,CARM1,VCAN,DUSP1,TAF9,RFWD2,RPS27L,SESN1,AFP,HSPA1A; HSPA1B,CSE1L,IRF5,PRDM1,NFYA,CCNG1,MDM2,CD82,MET,PTEN,PPM1J,STEAP3,TFDP1,CAV1,TAP1,POU4F1,CCNB1,CX3CL1,FAS,ARID3A,HGF,PML,DDX5,BDKRB2,TP53I3,HIC1,GADD45A,TGFA,APC,DGCR8,NFYC,SERPINE1,PRMT1,BTG2,SH2D1A,BAX,BCL2A1,TRIAP1,RB1,VDR,RGCC,AIFM2,TRRAP,TNFRSF10B,EP300,HTT,NDRG1,MSH2,PPP1R13B,DDB2,CASP10,GDF15,PIDD,SPP1,LIF,TNFRSF10C,CASP6,EGFR,PLK3,TP53INP1,RRM2B,SCN3B,SNAI2,DKK1,CTSD,EPHA2,COL18A1,RCHY1,PCBP4,SFN,BCL2L2,E2F1,POU4F2,BCL6,BID,PMS2,S100A2,DUSP5,CDKN1A,APAF1,CREBBP,TP53BP2,TADA2B,HDAC2,MCL1,EDN2,NLRC4,PMAIP1 +NCI-NATURE amb2 Integrin signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200127&source=NCI-NATURE&what=graphic&jpg=on JAM3,HCK,IL6,ROCK1,MYH2,BLK,JAM2,RAP1B,AGER,ITGB2,PRKCZ,LRP1,PLG,LYN,APOB,SELP,AKT1,TNF,LCK,MMP2,LPA,FYN,MST1,SRC,THY1,PLAU,RAP1A,TLN1,MST1R,RHOA,FGR,MMP9,PLAT,NFKB1,SELPLG,ITGAM,YES1,PLAUR,HMGB1,CTGF,ICAM1 +NCI-NATURE Glypican 2 network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200126&source=NCI-NATURE&what=graphic&jpg=on MDK,GPC2 +NCI-NATURE Alpha6 beta4 integrin-ligand interactions PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200125&source=NCI-NATURE&what=graphic&jpg=on LAMB1,LAMB3,ITGA6,LAMC2,LAMC1,LAMA2,ITGB4,LAMA3,LAMB2,LAMA1,LAMA5 +NCI-NATURE E-cadherin signaling in the nascent adherens junction PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200124&source=NCI-NATURE&what=graphic&jpg=on RAC1,PIK3CA,JUP,CCND1,AKT1,WASF2,CSNK2A2,DLG1,CTNNA1,RAP1A,CRK,RAPGEF1,ABI1,TJP1,RAP1B,ITGB7,PIP5K1C,CTNND1,CSNK2B,ARF6,AP1M1,TIAM1,CYFIP2,ENAH,CTNNB1,RHOA,CDH1,IQGAP1,PIK3R1,KLHL20,ITGAE,SRC,CDC42,NME1,VAV2,CTTN,CSNK2A1,NCKAP1 +NCI-NATURE FAS (CD95) signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200080&source=NCI-NATURE&what=graphic&jpg=on MAPK14,CLTC,MAPK10,MAPK9,PIK3CA,PIK3R2,PDPK1,BIRC2,CASP8,FADD,PIK3CB,BID,MAP3K1,CASP10,AKT1,RFC1,FAIM2,FASLG,SRC,BTK,RIPK1,EZR,MAPK11,PIK3R1,CHUK,CASP3,PIK3CD,IKBKG,MAPK8,SYK,PIK3R3,CFLAR,MAP2K7,SMPD1,BIRC3,FAS,IKBKB,MAP2K6 +NCI-NATURE Circadian rhythm pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200081&source=NCI-NATURE&what=graphic&jpg=on ATR,NPAS2,PER2,CSNK1E,TIMELESS,ARNTL,BHLHE40,CHEK1,CRY2,NR1D1,WDR5,CRY1,DEC1,CLOCK,NONO,PER1 +NCI-NATURE IFN-gamma pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200129&source=NCI-NATURE&what=graphic&jpg=on MTOR,CAMK2D,IFNG,SOCS1,IFNGR1,CRKL,IL1B,SMAD7,MAP3K11,IRF9,PIAS4,STAT1,CREBBP,RAP1A,PIK3CA,CALM1; CALM2; CALM3,JAK2,JAK1,PTPN11,MAPK1,IRF1,STAT3,MAP3K1,DAPK1,RAPGEF1,PTGES2,EP300,MAP2K1,PIK3R1,PIAS1,MAPK3,RAP1B,PRKCD,CAMK2B,CBL,CAMK2A,CAMK2G,CEBPB,AKT1,CASP1 +NCI-NATURE Integrins in angiogenesis PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200128&source=NCI-NATURE&what=graphic&jpg=on ANGPTL3,PXN,ITGAV,PIK3R1,COL1A2,COL5A2,SRC,MAPK3,MAPK1,CDKN1B,COL11A2,HSP90AA1,CBL,PI4KB,COL5A1,TGFBR2,COL16A1,PTK2B,COL8A2,SDC1,ITGB3,RAC1,COL8A1,COL6A3,PTPN11,COL2A1,COL4A3,TLN1,MFGE8,COL13A1,COL10A1,FGF2,VAV3,COL6A1,RPS6KB1,EDIL3,COL11A1,CSF1R,COL4A5,ROCK1,PIK3C2A,COL15A1,IRS1,PI4KA,VTN,COL9A2,PIK3CA,AKT1,COL4A1,COL17A1,COL7A1,COL1A1,IGF1R,CASP8,COL9A3,COL6A2,RHOA,VEGFA,SPP1,COL9A1,COL4A6,F11R,BCAR1,CSF1,COL14A1,COL3A1,FN1,ILK,KDR,COL12A1,GPR124,COL4A4,VCL +NCI-NATURE Signaling events mediated by HDAC Class I PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200084&source=NCI-NATURE&what=graphic&jpg=on MBD3,CREBBP,SIN3A,CHD3,SMAD7,STAT3,TNFRSF1A,PRKACA,MXD1,SIRT2,WDR77,FKBP3,RAN,SUMO1,SIRT5,YY1,NCOR2,HDAC6,MBD3L2,RANGAP1,HDAC1,RANBP2,RELA,NR2C1,HDAC9,RBBP4,RBBP7,HDAC3,NCOR1,SMURF1,SMG5,KAT2B,ZFPM1,HDAC10,HDAC4,MBD2,PRMT5,MTA2,NFKB1,NFKBIA,TFCP2,UBE2I,PPARG,MAX,CHD4,TNF,GATAD2B,SIRT3,SIRT4,HDAC2,GATA2,SAP18,HDAC11,SIN3B,XPO1,SAP30,SIRT6,SIRT1,GATA1,HDAC7,SIRT7,GATAD2A,SSPO,EP300,HDAC8,HDAC5 +NCI-NATURE S1P1 pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200085&source=NCI-NATURE&what=graphic&jpg=on PLCG1,RHOA,KDR,GNAO1,PTGS2,MAPK1,S1PR1,VEGFA,ITGAV,SPHK1,RAC1,ITGB3,GNAZ,PLCB2,PDGFRB,ABCC1,GNAI2,PDGFB,GNAI3,MAPK3,GNAI1 +NCI-NATURE Regulation of Telomerase PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200086&source=NCI-NATURE&what=graphic&jpg=on RAD1,RPS6KB1,ESR1,IRF1,CDKN1B,EGFR,MAPK1,SMG5,TERF2,ATM,YWHAE,NBN,IL2,FOS,UBE3A,WRN,WT1,RBBP7,HDAC2,E2F1,RAD50,NFKB1,MYC,PTGES3,RBBP4,MAPK3,MRE11A,NR2F2,SIN3B,EGF,SP3,JUN,MXD1,HUS1,SMAD3,MAX,HSP90AA1,CCND1,POT1,TNKS,PINX1,NCL,MTOR,TERF1,BLM,SAP18,DKC1,ACD,TINF2,XRCC5,SP1,AKT1,IFNG,E6,HDAC1,XRCC6,HNRNPC,IFNAR2,TERT,TGFB1,ABL1,RAD9A,SIN3A,PARP2,TERF2IP,SMG6,SAP30 +NCI-NATURE FOXA2 and FOXA3 transcription factor networks PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200087&source=NCI-NATURE&what=graphic&jpg=on ALB,PCK1,BDH1,HNF1A,NF1,UCP2,NR3C1,F2,HNF4A,G6PC,ABCC8,SLC2A2,GCK,HMGCS1,PKLR,CEBPA,ACADVL,INS,FOXA1,TTR,ALDOB,KCNJ11,TFRC,AKT1,CEBPD,CREB1,ALAS1,CEBPB,HADH,IGFBP1,CPT1B,SP1,AFP,FOXA3,HNF1B,APOA1,CPT1C,NKX2-1,FOXA2,CPT1A,DLK1,ACADM,FOXF1,TAT,PDX1 +NCI-NATURE IL3-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200145&source=NCI-NATURE&what=graphic&jpg=on PRKACG,SHC1,CISH,ID1,OSM,CNKSR1,PIM1,CEBPB,PTPN11,SRP9,GRB2,IL3,CSF2RB,HDAC1,IL3RA,JAK2,PRKACB,STAT5A,STAT5B,PRKACA,YWHAZ,PIK3CA,YWHAG,BCL2L1,GAB2,PIK3R1 +NCI-NATURE BMP receptor signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200144&source=NCI-NATURE&what=graphic&jpg=on SMAD1,SKI,BMP7,GREM1,PPP1CA,SMAD9,XIAP,PPP1R15A,RGMA,SMURF2,FST,CTDSP1,SMAD4,SOSTDC1,CHRD,GSK3B,AHSG,PPM1A,HFE2,BMPR1B,ZFYVE16,BMPR1A,CHRDL1,RGMB,NUP214,MAP3K7,MAPK1,BMP4,CTDSP2,BMP2,TAB1,CER1,SMAD6,CTDSPL,BMPR2,NOG,SMURF1,SMAD7,TAB2,BAMBI,SMAD5,BMP6 +NCI-NATURE E-cadherin signaling in keratinocytes PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200147&source=NCI-NATURE&what=graphic&jpg=on JUP,CDH1,CTNNB1,CASR,RAC1,FMN1,PIK3R1,CTNND1,PIK3CA,AJUBA,EGFR,SRC,PIP5K1A,PLCG1,FYN,RHOA,VASP,AKT2,AKT1,ZYX,CTNNA1 +NCI-NATURE IL6-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200146&source=NCI-NATURE&what=graphic&jpg=on STAT3,CEBPB,A2M,GAB1,FOS,GAB2,TYK2,SOCS3,PIAS3,IL6ST,MYC,VAV1,MAPK14,IRF1,LMO4,HCK,PTPN11,FGG,MAP2K6,CRP,MAP2K4,HSP90B1,CEBPD,LBP,PRKCD,PIK3CA,JAK1,PIK3R1,FOXO1,JAK2,STAT1,JUN,IL6,TNFSF11,MAPK11,IL6R,TIMP1,PIAS1,GRB2,MITF,AKT1,RAC1,MCL1,SOS1,JUNB +NCI-NATURE FOXM1 transcription factor network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200141&source=NCI-NATURE&what=graphic&jpg=on GAS1,CENPF,SP1,PLK1,MYC,NFATC3,BRCA2,CDK1,CCNE1,EP300,CCND1,LAMA4,HSPA1A; HSPA1B,CENPA,CREBBP,CCNB2,SKP2,BIRC5,XRCC1,CDC25B,CKS1B,AURKB,HIST1H2BA,CCNA2,FOXM1,CENPB,CDK4,MMP2,FOS,RB1,CHEK2,CCNB1,ESR1,MAP2K1,ONECUT1,NEK2,CDK2,GSK3A,ETV5,TGFA +NCI-NATURE ErbB2/ErbB3 signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200140&source=NCI-NATURE&what=graphic&jpg=on MAP2K2,FOS,AKT1,MAPK10,MTOR,MAPK3,MAPK8,BAD,RNF41,SRC,HRAS,STAT3,NRG2,CHRNE,MAPK9,NFATC4,PIK3CD,JAK2,SHC1,USP8,PIK3CB,ERBB2,NRAS,CDC42,NF2,SOS1,RAC1,PIK3R2,RAF1,DOCK7,MAPK1,PIK3R1,PTPN11,GRB2,CHRNA1,PIK3CA,ERBB3,MAP2K1,JUN,PPP3CB,PIK3R3,PRKACA +NCI-NATURE Hypoxic and oxygen homeostasis regulation of HIF-1-alpha PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200143&source=NCI-NATURE&what=graphic&jpg=on HIF1A,OS9,VHL,HSP90AA1,HIF1AN,TCEB1,NAA10,TCEB2,COPS5,TP53,RBX1,ARNT,EGLN3,EGLN1,CUL2,GNB2L1,HIF3A,EGLN2 +NCI-NATURE EPHA forward signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200142&source=NCI-NATURE&what=graphic&jpg=on EPHA3,LYN,ARHGEF15,PLCG1,NGEF,PIK3R5,BLK,EFNA1,ROCK1,EFNA5,RHOA,EPHA5,EPHA1,CRKL,SRC,EPHA8,VAV2,VAV3,HCK,EPHA2,CBL,FGR,YES1,CRK,FYN,EFNA2,LCK,CDK5,EPHA6,EPHA7,PIK3R6,EPHA4,PIK3CG,EFNA3 +NCI-NATURE Reelin signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200062&source=NCI-NATURE&what=graphic&jpg=on LRP8,ITGA3,CBL,MAPK8,MAP1B,MAP2K7,NCK2,MAPT,PIK3R1,CRKL,ARHGEF2,LRPAP1,GSK3B,VLDLR,RAPGEF1,DAB1,CDK5R1,AKT1,MAP3K11,ITGB1,RELN,RAP1A,PIK3CA,CDK5,MAPK8IP1,FYN,GRIN2B,PAFAH1B1,GRIN2A +NCI-NATURE Presenilin action in Notch and Wnt signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200063&source=NCI-NATURE&what=graphic&jpg=on TLE1,DKK1,PPP2R5D,APH1A,JUN,DLL1,KREMEN2,SSPO,HNF1A,AES,FBXW11,DTX1,CSNK1A1,LRP6,MAP3K7,PSEN1,CTNNB1,NCSTN,WNT1,NOTCH1,DKK2,NKD1,NEDD4,FRAT1,MAPK3,MYC,FZD1,DVL1,AXIN1,FOS,TAB1,APH1B,PSENEN,CSNK2A1,WIF1,PPARD,ADAM10,RBPJ,GSK3B,CTBP1,MAPK1,CREBBP,CCND1,NLK,HDAC1,APC +NCI-NATURE Aurora C signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200060&source=NCI-NATURE&what=graphic&jpg=on AURKB,INCENP,AURKC +NCI-NATURE Regulation of RhoA activity PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200061&source=NCI-NATURE&what=graphic&jpg=on SRGAP1,ARHGAP9,OPHN1,ARHGEF5,ARHGDIA,FARP1,CDKN1B,NET1,MCF2,RGNEF,TRIO,ARHGEF12,PLEKHG6,ARHGEF10L,ARHGAP6,ARHGEF10,ARHGEF15,MYO9B,MCF2L,ABR,ARHGEF3,RHOA,ARHGDIG,ARHGEF1,VAV1,BCR,VAV2,DEF6,OBSCN,AKAP13,ARHGEF25,ARAP3,ARHGEF17,DLC1,ARHGAP35,ARAP1,ARHGEF2,ARHGEF11,NGEF,ARHGAP4,ARHGAP8,ARHGDIB,ARHGAP5,ECT2,ARHGEF18,VAV3 +NCI-NATURE PDGFR-beta signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200149&source=NCI-NATURE&what=graphic&jpg=on SOS1,RAC1,BCAR1,ARPC4,MAPK1,HCK,FOS,PIK3R5,RAPGEF1,STAT5B,MYOCD,PAG1,WASF2,JUND,ARPC3,PPP2CA,FYN,MAPK10,YES1,GAB1,LRP1,DOK1,NCK2,BAIAP2,SLC9A3R1,ELK1,EPS8,PRKCA,PRKCD,CTTN,ARPC1B,DOCK4,ACTN4,PDGFRB,MAPK3,STAT1,VAV2,WASL,LCK,ACTA2,YWHAQ,DNM2,ABI1,EIF2AK2,ARHGAP35,MAP2K2,ARAP1,JUN,CYFIP2,PIK3CA,RAB4A,PTPN11,RASA1,RAF1,PIN1,PIK3CG,SPHK1,ITGAV,ARPC5,PTPN1,PLCG1,PIK3R6,FGR,PIK3CB,ARHGDIA,YWHAH,PPP2R1A,PAK1,CRK,BRAF,MYC,SFN,YWHAE,SRF,NCKAP1,MLLT4,PRKCE,JAK2,S1PR1,NCK1,PTPRJ,BRK1,ACTR3,YWHAG,PTEN,NRAS,PPP2R2B,CSK,ACTR2,BLK,MAPK8,RPS6KA3,TAGLN,HRAS,ARPC2,YWHAZ,SIPA1,CBL,STAT3,GRB2,ITGB3,PDGFB,KSR1,PIK3R3,STAT5A,MAPK9,GRB10,SLA,RAP1B,SLC9A3R2,MAP2K7,MAP2K4,RHOA,MAP2K1,ABL1,LYN,SRC,RAP1A,PLA2G4A,YWHAB,USP6NL,PIK3R1,PIK3CD,RAB5A,IQGAP1,PIK3R2 +NCI-NATURE Wnt signaling network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200067&source=NCI-NATURE&what=graphic&jpg=on DKK1,WNT3A,FZD9,WNT2,WNT7A,IGFBP4,WNT1,FZD8,FZD1,KREMEN2,LRP6,KREMEN1,FZD2,LRP5,FZD6,RSPO1,WNT7B,FZD4,CTHRC1,WNT5A,RYK,FZD5,ATP6AP2,WNT3,ROR2,WIF1,FZD10,FZD7 +NCI-NATURE Integrin-linked kinase signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200064&source=NCI-NATURE&what=graphic&jpg=on PPP1R14A,RAC1,RUVBL2,ZEB1,TACC3,PPP1R14B,CDC42,ELMO2,RHOG,PARP1,NACA,LIMS2,GSK3B,LIMS1,ZYX,XPO1,GIT2,RICTOR,PPP1R12A,PARVG,ILK,ARHGEF6,MYL9,PARVA,CDC37,AURKA,HSP90AA1,CCND1,CREB1,TNS1,ILKAP,RUVBL1,PARVB,ACTN1,PPP1R14C,JUN,CTNNB1,SNAI1,AKT1,ARHGEF7,NCK2,IQGAP1,CKAP5,PXN,DIAPH1 +NCI-NATURE Nectin adhesion pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200065&source=NCI-NATURE&what=graphic&jpg=on PTPRM,RAC1,CTNNA1,ITGAV,CLDN1,TLN1,RAP1A,RAP1B,RAPGEF1,PDGFB,PVRL1,F11R,PIP5K1C,VAV2,PVR,CDH1,CTNNB1,PDGFRB,ITGB3,FARP2,PVRL2,PVRL3,PIK3R1,SRC,CDC42,PIK3CA,CRK,IQGAP1 +NCI-NATURE IL5-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200107&source=NCI-NATURE&what=graphic&jpg=on CISH,STAT5B,CSF2RB,LYN,IL5,IL5RA,PIK3R1,SDCBP,PIK3CA,PIM1,PTPN11,JAK2,GRB2,STAT5A +NCI-NATURE Glypican 3 network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200225&source=NCI-NATURE&what=graphic&jpg=on MAPK9,MAPK8,GPC3,FURIN,BMP4,PTCH1,FGF7,SHH +NCI-NATURE ALK1 pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200029&source=NCI-NATURE&what=graphic&jpg=on ACVR1,ACVRL1,FKBP1A +NCI-NATURE Class IB PI3K non-lipid kinase events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200097&source=NCI-NATURE&what=graphic&jpg=on MAP2K1,PIK3R5,PIK3R6,PDE3B,PIK3CG,MAPK1 +NCI-NATURE mTOR signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200096&source=NCI-NATURE&what=graphic&jpg=on AKT1S1,FBXW11,RRAGA,CLIP1,DEPTOR,CCNE1,PML,RPS6KB1,PXN,MAPK1,MAPKAP1,YWHAG,EEF2K,PLD2,MAP2K2,POLDIP3,ULK1,BRAF,PPARGC1A,EIF4B,ATG13,TSC2,YWHAZ,PDCD4,YWHAQ,EIF4EBP1,SSPO,SGK1,EIF4E,HRAS,PRKCA,BNIP3,ULK2,RPS6KA1,YY1,PRR5,RAC1,YWHAH,MAPK3,CYCS,PDPK1,RAF1,EIF4A1,SREBF1,RRAGD,RHOA,TSC1,IKBKB,RPTOR,MAP2K1,RICTOR,CDK2,RHEB,MLST8,RRAGC,NRAS,DDIT4,SFN,RRN3,RRAGB,PLD1,MTOR,RB1CC1,EEF2,YWHAE,AKT1,IRS1,YWHAB +NCI-NATURE Arf6 downstream pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200095&source=NCI-NATURE&what=graphic&jpg=on RAC1,PLAUR,MAPK3,NME1,ARF1,RHOA,PLD1,RAB11A,KALRN,RAB11FIP3,ARF6,MAPK1,PIP5K1A,PLD2,TIAM1 +NCI-NATURE Validated nuclear estrogen receptor beta network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200094&source=NCI-NATURE&what=graphic&jpg=on SMARCA4,SMARCB1,ESR2,NCOA1,SMARCE1,NR0B2,NEDD8,NCOA2,UBA3,NR0B1,ZNF14,UBE2M,DDX54,NCOA3,C3 +NCI-NATURE Alpha9 beta1 integrin signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200093&source=NCI-NATURE&what=graphic&jpg=on RAC1,NOS2,ITGB1,ADAM8,VEGFA,BCAR1,SRC,ITGA9,F13A1,FIGF,VEGFC,KCNJ15,TNC,SAT1,PXN,PAOX,FN1,SPP1,TGM2,ADAM2,ADAM12,VCAM1,CSF2RA,ADAM15,CSF2 +NCI-NATURE Visual signal transduction: Cones PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200092&source=NCI-NATURE&what=graphic&jpg=on ARR3,GUCY2D,SLC24A2,GRK1,GNB5,RDH12,GRK7,GUCY2F,PDE6C,RPE65,CNGA3,GUCA1B,RDH5,CNGB3,RGS9,GNAT2,PDE6H,GNGT2,GUCA1A,RGS9BP,LRAT,GUCA1C,GNB3 +NCI-NATURE Glucocorticoid receptor regulatory network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200091&source=NCI-NATURE&what=graphic&jpg=on YWHAH,FKBP5,BAX,MMP1,NR4A1,VIPR1,MAPK8,IL6,HDAC1,IFNG,POU2F1,STAT1,BGLAP,GATA3,AKT1,PRKACB,SGK1,CDK5R1,HDAC2,STAT5B,EGR1,NCOA2,SMARCD1,IL4,GSK3B,SUMO2,RELA,PPP5C,TP53,POMC,KRT5,STAT5A,SMARCC2,SMARCA4,SFN,MDM2,TBP,ICAM1,CSN2,MAPK3,NR1I3,CSF2,NFATC1,TBX21,CREBBP,EP300,IRF1,FKBP4,FOS,MAPK9,KRT14,MAPK10,NFKB1,NR3C1,SUV420H1,PRL,CGA,PBX1,PRKACG,HSP90AA1,MAPK1,MAPK14,TSG101,FGG,SPI1,MAPK11,SELE,NCOA1,SMARCC1,JUN,PRKACA,POU1F1,IL5,KRT17,AFP,CREB1,CDKN1A,IL13,IL8,IL2,PCK2,CDK5 +NCI-NATURE Role of Calcineurin-dependent NFAT signaling in lymphocytes PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200090&source=NCI-NATURE&what=graphic&jpg=on PRKCE,PIM1,CHP,PRKCA,PRKCQ,MAPK14,NUP214,CREBBP,PPP3R1,YWHAG,YWHAH,SFN,CAMK4,PRKCZ,NR4A1,BCL2,CALM1; CALM2; CALM3,RAN,YWHAZ,NFATC2,PRKACA,RCAN1,MAP3K1,NFATC1,KPNB1,MEF2D,MAPK3,YWHAE,MAP3K8,CASP3,CSNK1A1,AKAP5,CSNK2A1,PPP3CB,YWHAQ,PRKCG,FKBP8,NFATC3,YWHAB,MAPK9,KPNA2,EP300,MAPK8,BAD,XPO1,RCAN2,PPP3CA,FKBP1A,CABIN1,PRKCD,GSK3B,PRKCH +NCI-NATURE Beta2 integrin cell surface interactions PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200138&source=NCI-NATURE&what=graphic&jpg=on F11R,C3,CYR61,TGFBI,FCGR2A,THY1,ITGAD,PLAUR,KNG1,ICAM1,ITGB2,FGB,FGA,ITGAX,CD40LG,ICAM4,GP1BA,ITGAM,FGG,ICAM3,PROC,F10,VCAM1,JAM3,PLAT,ICAM2,PLAU,SPON2,ITGAL +NCI-NATURE CXCR4-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200099&source=NCI-NATURE&what=graphic&jpg=on MMP9,ITGA8,HGS,PTPN6,ITGA7,ITGA2,GNAZ,RGS1,RAC1,PTEN,HLA-DRB1,RALB,ITGAV,PTK2,LCK,LIMK1,PTPRC,PDPK1,RHOC,PLCB2,PLCB1,PTPN11,RHOB,VAV1,RAP1B,PAG1,GNB2L1,STAT3,VPS4B,PLCB3,ITCH,GNAO1,FGR,LYN,STAT2,CFL1,ARRB2,ARR3,ITGA5,PIK3CB,ITGA4,GNAI3,BAD,ADRBK1,ITGA11,GNA13,HLA-DRA,SSH1,PAK1,GNAI1,RHOA,ITGA10,ITGA6,SRC,CD3E,GNG2,PIK3R6,GNB1,STAT5B,CXCL12,CRK,PIK3R5,PIK3R1,ITGA9,PIK3R2,GRK6,ITGA1,PTK2B,CSK,HCK,CD247,VPS4A,CD3D,GNAI2,BCAR1,CXCR4,BLK,PIK3CG,MTOR,PIK3CA,RICTOR,FOXO1,CD4,PXN,ITGB1,UBQLN1,STAT5A,STAT1,PIK3R3,YES1,PRKCZ,AKT1,MLST8,MAPKAP1,FYN,CD3G,PIK3CD,ITGA3,CDC42,DNM1,JAK2 +NCI-NATURE IL2-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200098&source=NCI-NATURE&what=graphic&jpg=on STAM2,IRS2,MYC,STAT3,NRAS,IFNG,HRAS,MAPK1,SOS1,DOK2,RASA1,SOCS1,PIK3CA,SOCS3,CISH,STAT1,SYK,MAP2K1,SOCS2,RAF1,PTPN11,JAK1,JAK3,LCK,FYN,STAT5B,IKZF3,PIK3R1,GRB2,PRKCB,GAB2,MAPK9,BCL2,IL2RA,MAP2K2,JUN,PTK2B,IRS1,MAPK8,STAT5A,PPP2R5D,STAM,MAPKAPK2,MAPK3,MAPK11,IL2RG,CDK2,PRKCE,IL2,SHC1,FOS,MAPK14,IL2RB,RHOA +NCI-NATURE Angiopoietin receptor Tie2-mediated signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200079&source=NCI-NATURE&what=graphic&jpg=on AGTR1,MAPK8,ANGPT2,TNF,CDKN1A,SHC1,MAPK1,GRB2,NCK1,PLD2,ITGA5,ANGPT4,PXN,RASA1,MAPK3,PLG,MAPK14,PTPN11,FYN,RAC1,AKT1,ITGB1,NOS3,TEK,CRK,STAT5A,FN1,FGF2,DOK2,ELF1,PIK3R1,STAT5B,RELA,GRB7,GRB14,BMX,ANGPT1,ELF2,F2,ELK1,RPS6KB1,NFKB1,MMP2,FES,ETS1,PAK1,PIK3CA,FOXO1 +NCI-NATURE Proteoglycan syndecan-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200130&source=NCI-NATURE&what=graphic&jpg=on SDC4,SDC1,SDC3,SDC2 +NCI-NATURE Hedgehog signaling events mediated by Gli proteins PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200172&source=NCI-NATURE&what=graphic&jpg=on SUFU,HDAC2,SSPO,PIAS1,GLI2,HDAC1,GNB1,SMO,RAB23,RBBP7,GLI3,CSNK1G3,KIF3A,CREBBP,GLI1,STK36,GNG2,GSK3B,FBXW11,GNAI3,SHH,CSNK1G2,XPO1,CSNK1E,IFT88,CSNK1D,MAP2K1,MTSS1,PRKCD,CSNK1A1,AKT1,GNAZ,IFT172,GNAI1,PTCH1,LGALS3,CSNK1G1,FOXA2,SIN3B,RBBP4,SIN3A,GNAO1,SPOP,ARRB2,GNAI2,SAP30,SAP18,PRKACA +NCI-NATURE Caspase cascade in apoptosis PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200173&source=NCI-NATURE&what=graphic&jpg=on SPTAN1,APP,CASP7,RIPK1,TRAF2,CASP1,DIABLO,CASP4,CYCS,ARHGDIB,BIRC2,CASP10,ACTA1,VIM,MADD,LMNA,GZMB,GSN,GAS2,BCL2,BIRC3,CFL2,CRMA,BID,SATB1,TOP1,PRF1,CRADD,LMNB1,NUMA1,XIAP,TRADD,TNFRSF1A,SREBF1,CASP2,BAX,DFFB,KRT18,CASP8,LMNB2,TNF,CASP6,MAP3K1,DFFA,APAF1,LIMK1,CASP9,TFAP2A,CASP3,PARP1,PIDD +NCI-NATURE CXCR3-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200175&source=NCI-NATURE&what=graphic&jpg=on MAP2K1,PIK3CD,GNAI2,MAP2K6,ARRB1,GNAZ,PIK3CB,MAPK11,PF4,PIK3R2,RICTOR,AKT1,DNM1,MAPK14,MLST8,MAP2K2,ITGB2,CXCL9,MAPK3,RAF1,MTOR,CXCL10,ITGAL,CXCL13,MAPKAP1,GNB1,PIK3CA,SRC,CXCR3,MAPK1,MAP2K3,PIK3R3,HRAS,PIK3R1,GNAO1,GNAI1,GNG2,CXCL11,CCL11,GNAI3,NRAS,PDPK1 +NCI-NATURE Regulation of nuclear beta catenin signaling and target gene transcription PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200176&source=NCI-NATURE&what=graphic&jpg=on DKK4,CTNNB1,EP300,IL8,AR,SNAI2,YWHAZ,KRT1,TRRAP,TCF4,SALL4,SMARCA4,FGF4,TLE4,YWHAQ,TBL1XR1,TCF7L1,MYF5,JUN,ADCY7,YWHAG,INCENP,DKK1,CHD8,YWHAB,PITX2,CDX1,RUVBL2,AXIN2,SSPO,KCNIP4,MITF,ID2,YWHAE,MED12,MMP9,TBL1X,CTNNBIP1,SFN,MDFIC,CDX4,MMP2,CYR61,TERT,NCOA2,MT-CO2,ZCCHC12,CBY1,CTBP1,TCF7L2,HBP1,NEUROG1,CUL1,SKP1,TNIK,TCF7,AES,TLE1,TLE2,HDAC2,BCL9,CCND1,MYOG,VCAN,LEF1,YWHAH,XPO1,MYC,KLF4,CDH1,DVL3,T,SP5,CAMK4,HDAC1,CACNA1G,APC,IGF2BP1,CCND2 +NCI-NATURE VEGFR1 specific signals PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200177&source=NCI-NATURE&what=graphic&jpg=on RASA1,PIK3R1,CALM1; CALM2; CALM3,MAPK3,PRKCA,NCK1,AKT1,CBL,FLT1,PIK3CA,NRP2,CD2AP,PLCG1,SHC2,VEGFA,VEGFB,MAPK1,PDPK1,NOS3,HIF1A,PRKACA,PGF,CAV1,PTPN11,HSP90AA1,NRP1 +NCI-NATURE Regulation of cytoplasmic and nuclear SMAD2/3 signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200178&source=NCI-NATURE&what=graphic&jpg=on CALM1; CALM2; CALM3,PIAS4,MAP3K1,UBE2I,SMAD2,PPM1A,CTDSPL,CTDSP1,MAPK3,KPNB1,CTDSP2,SMAD3,NUP214,SMAD4,MAPK1,KPNA2,NUP153 +NCI-NATURE PLK2 and PLK4 events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200179&source=NCI-NATURE&what=graphic&jpg=on PLK2,PLK4 +NCI-NATURE Arf6 signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200073&source=NCI-NATURE&what=graphic&jpg=on CYTH3,EGF,TSHR,ARAP2,ITGA2B,HGF,GNA11,EFNA1,KIF13B,SRC,ARF6,ARRB1,ARRB2,FBXO8,ACAP1,EPHA2,GNA15,GNAQ,GNA14,ADAP1,ADRB2,CYTH2,AGTR1,MET,USP6,GULP1,EGFR,NCK1,IQSEC1,GIT1,ACAP2,ITGB3,LHCGR,PXN,IPCEF1 +NCI-NATURE ATM pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200072&source=NCI-NATURE&what=graphic&jpg=on ATM,H2AFX,CDC25A,ABL1,TERF2,TOP3A,CTBP1,MDC1,RFWD2,MDM2,CDC25C,UIMC1,BLM,RAD17,RNF8,BRCA1,KAT5,MRE11A,SMC3,RAD50,UBE2N,RBBP8,FANCD2,BID,XRCC4,YWHAB,NBN,DCLRE1C,SMC1A,TP53BP1,FAM175A,CHEK2,TRIM28,RAD9A +NCI-NATURE TCR signaling in naïve CD8+ T cells PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200075&source=NCI-NATURE&what=graphic&jpg=on ORAI1,CSK,IKBKG,RAP1A,LCP2,FYN,CD80,MAP3K14,LAT,CBL,VAV1,PDPK1,CD86,HLA-A,ZAP70,PAG1,AKT1,MALT1,CD8A,TRAF6,CHUK,CD3G,PLCG1,CARD11,MAP3K8,CD8B,PTPN6,NRAS,IKBKB,CD247,LCK,PRKCB,B2M,RASGRP2,RASSF5,CD3E,CD28,SOS1,PRF1,RASGRP1,GRAP2,BCL10,HRAS,PRKCE,PRKCQ,TRPV6,STIM1,PRKCA,CD3D,PTPRC,GRB2 +NCI-NATURE LKB1 signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200074&source=NCI-NATURE&what=graphic&jpg=on MLST8,BRSK1,PRKAG1,YWHAQ,STRADA,MARK2,MARK4,MST4,CREB1,SIK1,ESR1,YWHAE,CRTC2,SMAD4,HSP90AA1,TSC2,CAB39,SFN,CDC37,PRKACA,STRADB,CTSD,YWHAB,MTOR,PRKAB1,RPTOR,STK11IP,EZR,PRKAA1,SIK3,AKT1S1,YWHAG,TP53,PSEN2,MYC,PRKAA2,STK11,SIK2,GSK3B,YWHAZ,ETV4,SMARCD3,BRSK2,YWHAH,TSC1,MAP2 +NCI-NATURE Canonical Wnt signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200077&source=NCI-NATURE&what=graphic&jpg=on LRP6,GSK3A,AXIN1,CUL3,WNT3A,DVL3,GSK3B,FZD5,PPP2R5A,CSNK1G1,DVL1,PI4K2A,CTNNB1,DVL2,APC,NKD2,PIP5K1B,RANBP3,KLHL12,CAV1 +NCI-NATURE S1P5 pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200076&source=NCI-NATURE&what=graphic&jpg=on GNAI2,GNAZ,GNAI3,GNAI1,S1PR5,RHOA,GNA12,GNAO1 +NCI-NATURE ALK1 signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200148&source=NCI-NATURE&what=graphic&jpg=on MAPK1,FKBP1A,SMAD1,GDF2,TGFB1,ID1,TLX2,ACVR1,SMAD9,ACVR2B,CAV1,BMPR2,SMAD4,ARRB2,MAPK3,SMAD7,ACVR2A,ACVRL1,SMAD5,TGFB3,PPP1CA,INHBA,CSNK2B,TGFBR1,TGFBR2 +NCI-NATURE Nongenotropic Androgen signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200170&source=NCI-NATURE&what=graphic&jpg=on GNB1,HRAS,MAP2K1,GNAI3,PLCB3,MAPK1,GNG2,CREB1,PELP1,SRC,PLCG2,PLCG1,GNAI1,AKT1,GNAO1,RAC1,FOS,RAF1,AR,GNRH1,CDC42,GNAI2,MAP2K2,MAPK3,GNAZ,SHBG,PIK3R1,PLCB1,PIK3CA,PLCB2 +NCI-NATURE RXR and RAR heterodimerization with other nuclear receptor PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200131&source=NCI-NATURE&what=graphic&jpg=on NR4A1,NR1H2,VDR,NR1H3,RXRG,PPARG,NCOA1,THRB,PPARD,FAM120B,PPARA,RXRA,TNF,RPS6KB1,TGFB1,THRA,NR1H4,NCOR2,BCL2,ABCA1,MED1 +NCI-NATURE GMCSF-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200019&source=NCI-NATURE&what=graphic&jpg=on CSF2RA,YWHAZ,PIK3R1,NRAS,CSF2RB,MAPK3,MAP2K2,MAPK1,FOS,GAB2,PRKACB,CCL2,STAT5B,OSM,GRB2,PIM1,LYN,CISH,CSF2,IKBKB,STAT1,HRAS,STAT3,PRKACA,RAF1,SHC1,STAT5A,PIK3CA,JAK2,PRKACG,PTPN11,SYK,MAP2K1,SOS1,IRF8 +NCI-NATURE JNK signaling in the CD4+ TCR pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200151&source=NCI-NATURE&what=graphic&jpg=on LCP2,CRK,JUN,MAP2K4,MAP3K8,PRKCB,MAP4K1,MAP3K1,DBNL,CRKL,GRAP2,MAPK8,MAP3K7 +NCI-NATURE Internalization of ErbB1 PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200171&source=NCI-NATURE&what=graphic&jpg=on CHMP3,RAB5A,CDC42,ZFYVE28,SPRY2,EGF,RAF1,PIK3CA,NRAS,AMPH,PIK3R1,UBE2D2,EGFR,PIK3CB,HRAS,PIK3R2,EPS15,SH3KBP1,DNM1,LRIG1,SRC,UBE2D3,SOS1,EPN1,SYNJ1,STAMBP,HGS,ARHGEF7,TSG101,SH3GL2,CBL,ITSN1,PIK3R3,USP8,PIK3CD,GRB2,CBLB,UBE2D1 +NCI-NATURE Calcineurin-regulated NFAT-dependent transcription in lymphocytes PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200050&source=NCI-NATURE&what=graphic&jpg=on CTLA4,PTGS2,PRKCQ,CASP3,EGR1,IFNG,FOSL1,IL8,EGR2,PPARG,NFATC2,NFATC3,EGR3,BCE1,IL5,JUN,GBP3,CALM1; CALM2; CALM3,IL4,POU2F1,TBX21,CDK4,FOS,CSF2,SLC3A2,IL2,NFATC1,IRF4,BATF3,FASLG,TNF,FOXP3,IL2RA,PTPRK,EGR4,DGKA,JUNB,E2F1,RNF128,IKZF1,IL3,PTPN1,MAF,GATA3,ITCH,CBLB,CD40LG +NCI-NATURE Beta5 beta6 beta7 and beta8 integrin cell surface interactions PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200169&source=NCI-NATURE&what=graphic&jpg=on ITGB5,ITGAV,TGFBR1,MADCAM1,ITGA4,ITGB7,PLAU,SDC1,ITGB6,FN1,CYR61,VCAM1,VTN,EDIL3,FBN1,PLAUR,ITGB8,ITGA4 +NCI-NATURE Signaling events mediated by the Hedgehog family PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200168&source=NCI-NATURE&what=graphic&jpg=on DHH,HHIP,CDON,STIL,PIK3CA,HHAT,AKT1,BOC,PTHLH,GLI2,LRPAP1,PTCH2,IHH,ARRB2,TGFB2,GAS1,SHH,ADRBK1,SMO,LRP2,PTCH1,PIK3R1 +NCI-NATURE IL8- and CXCR2-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200167&source=NCI-NATURE&what=graphic&jpg=on PIK3R6,FGR,RAB7A,AKT1,CXCR2,PLD2,ARRB1,PLCB1,HCK,GNB1,PRKCA,IL8,RAC2,PLCB2,PIK3CG,PPP2CA,ARRB2,PDPK1,LYN,ELMO1,GNG2,DOCK2,GNAI2,RAB5A,CBL,GNA14,GNA15,PLCB3,DNM1,PPP2R1A,VASP,RAB11A,PRKCG +NCI-NATURE a4b7 Integrin signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200166&source=NCI-NATURE&what=graphic&jpg=on ITGA4,ITGB1,CD44,MADCAM1,RHOA,PXN,ITGB7,VCAM1 +NCI-NATURE Signaling mediated by p38-gamma and p38-delta PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200165&source=NCI-NATURE&what=graphic&jpg=on MAP2K3,MAP2K6,STMN1,EEF2K,MLTK,CCND1,MAPK13,SNTA1,MAPK12,PKN1 +NCI-NATURE Retinoic acid receptors-mediated signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200164&source=NCI-NATURE&what=graphic&jpg=on PRKCA,MAPK3,AKT1,MNAT1,PRKCG,PRKACA,NCOR2,HDAC1,CCNH,CDK1,NCOA2,HDAC3,NCOA3,NRIP1,MAPK14,RBP1,CREBBP,MAPK8,KAT2B,EP300,MAPK1,RARA,VDR,RXRA,RXRG,CDK7,NCOA1 +NCI-NATURE EphrinB-EPHB pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200163&source=NCI-NATURE&what=graphic&jpg=on EFNB1,EPHB2,EPHB4,EFNB2,EPHB1,EPHB3 +NCI-NATURE PDGFR-alpha signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200162&source=NCI-NATURE&what=graphic&jpg=on PIK3CA,CAV1,CRKL,GRB2,RAPGEF1,PIK3R1,ITGAV,JAK1,SHF,IFNG,PLCG1,FOS,PDGFRA,SHC1,SHB,CAV3,JUN,CSNK2A1,ELK1,SRF,SOS1,CRK +NCI-NATURE Visual signal transduction: Rods PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200161&source=NCI-NATURE&what=graphic&jpg=on GNGT1,GRK1,GNAT1,PDE6A,GNB1,GUCY2D,LRAT,PDE6G,SLC24A1,RHO,GUCA1C,RGS9BP,RDH12,PDE6B,GUCA1B,SAG,RDH5,RPE65,CNGA1,GUCA1A,GUCY2F,RGS9,GNB5 +NCI-NATURE ALK2 signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200160&source=NCI-NATURE&what=graphic&jpg=on TLX2,BMP7,AMHR2,ACVR1,SMAD9,FKBP1A,BMPR2,SMAD5,SMAD4,AMH,SMAD1 +NCI-NATURE Validated nuclear estrogen receptor alpha network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200158&source=NCI-NATURE&what=graphic&jpg=on C3,POU4F1,POU4F2,APBB1,NR0B1,NRIP1,AP1B1,NCOA2,NCOA3,EP300,NEDD8,ABCA3,MYC,NCOR1,HDAC1,DSCAM,NCOA7,CD82,VTLGL1,SOD1,COL18A1,PDIA2,HSF2,UBE2M,DDX17,ATP5J,NCOR2,ANP32A,NCOA1,NR0B2,LCOR,PRL,KLRC3,SAFB,DDX54,TRIM59,CTSD,CALCOCO1,CCND1,CEBPB,PRDM15,STAT5A,ESR1,GREB1,LMO4,MED1,JUN,CHUK,MPG,NDUFV3,AXIN2,SRA1,PHB2,EBAG9,PCNA,SMAD4,UBA3,MTA1,TFF1,XBP1,BRCA1,HDAC4,ESR2 +NCI-NATURE Glypican pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200010&source=NCI-NATURE&what=graphic&jpg=on GPC2,GPC1,GPC3 +NCI-NATURE Signaling events mediated by TCPTP PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200078&source=NCI-NATURE&what=graphic&jpg=on HGF,CREBBP,KPNA2,PIK3R2,PIK3CA,PTPN1,GRB2,PDGFRB,PIK3CD,KDR,CSF1R,EIF2AK2,PIK3R1,PDGFB,CSF1,JAK3,EGF,PIAS1,ITGA1,RAB4A,INS,STAT3,LMAN1,SRC,VEGFA,PIK3CB,GAB1,ITGB1,JAK1,STAT1,KPNB1,STAT5A,INSR,SOS1,MET,STAT6,STAT5B,EGFR,PIK3R3,ATR +NCI-NATURE Regulation of p38-alpha and p38-beta PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200066&source=NCI-NATURE&what=graphic&jpg=on LCK,PAK3,RAC1,HCK,PAK2,YES1,MAP2K3,FGR,DUSP10,RALB,LYN,CDC42,DUSP8,TAB1,SRC,DUSP16,CCM2,DUSP1,MAP2K6,MAPK14,PAK1,MAPK11,TRAF6,RALA,MAP3K3,BLK,FYN,MAP2K4,MAP3K12,RIPK1 +NCI-NATURE IL2 signaling events mediated by PI3K PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200118&source=NCI-NATURE&what=graphic&jpg=on PIK3R1,MYC,RAC1,GAB2,NFKB1,PTPN11,SGMS1,RELA,LCK,MYB,MTOR,EIF3A,RPS6KB1,IL2,BCL2,IL2RA,PRKCZ,IL2RB,IL2RG,FOXO3,BCL2L1,RPS6,CALM1; CALM2; CALM3,SOS1,JAK3,SHC1,PIK3CA,HSP90AA1,GRB2,AKT1,E2F1,TERT,SMPD1,JAK1,UGCG +NCI-NATURE Ceramide signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200119&source=NCI-NATURE&what=graphic&jpg=on BID,MAP2K1,PDGFA,PRKRA,FADD,KSR1,SMPD1,MAPK3,PAWR,MAP2K2,TRADD,TNFRSF1A,MAPK1,MYC,AKT1,RIPK1,NFKB1,NFKBIA,MAPK8,ASAH1,EIF2AK2,CTSD,BAX,RAF1,AIFM1,PRKCD,RELA,BAD,BCL2,MAP2K4,BAG4,CRADD,SMPD3,MAP3K1,PRKCZ,TNF,CYCS,MADD,TRAF2,MAP4K4,SPHK2,EGF,BIRC3,CASP8 +NCI-NATURE EGFR-dependent Endothelin signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200112&source=NCI-NATURE&what=graphic&jpg=on SOS1,HRAS,GRB2,EDNRA,EGFR,MTOR,EDN1,EGF +NCI-NATURE E-cadherin signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200113&source=NCI-NATURE&what=graphic&jpg=on CTNNB1,CDH1,JUP +NCI-NATURE PAR4-mediated thrombin signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200110&source=NCI-NATURE&what=graphic&jpg=on GNB1,GNA13,GNA14,F2,ROCK2,MYL2,GNG2,PLCB2,F2RL2,GNA15,F2RL3,GNA11,GNAQ,RHOA,ROCK1 +NCI-NATURE C-MYC pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200111&source=NCI-NATURE&what=graphic&jpg=on PPP2R5A,PAK2,SKP2,KAT2A,TRRAP,RUVBL1,TAF12,TAF10,KAT5,RUVBL2,GSK3B,PPP2CA,MYC,SUPT7L,TAF9,HBP1,AXIN1,MAX,PIN1,SUPT3H,ZBTB17,ACTL6A +NCI-NATURE Class I PI3K signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200116&source=NCI-NATURE&what=graphic&jpg=on CYTH1,ARF1,PLEKHA1,BLNK,YES1,LCK,DAPP1,PIK3CB,PIK3R6,PLCG2,FYN,PLEKHA2,RAP1A,BLK,PTEN,SYK,HCK,PIK3CA,SGK1,ARF5,ITK,HRAS,CYTH3,ARF6,RAC1,PIK3CG,SRC,PIK3R1,HSP90AA1,RHOA,ARAP3,PIK3R2,ZAP70,PLCG1,INPPL1,FGR,CYTH2,PIK3CD,PIK3R5,BTK,PDPK1,LYN,FOXO3,NRAS,PIK3R3,ADAP1 +NCI-NATURE Posttranslational regulation of adherens junction stability and dissassembly PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200117&source=NCI-NATURE&what=graphic&jpg=on MMP7,GDNF,CTNNA1,CTNNB1,ARF6,JUP,TIAM1,EGFR,MEP1B,GNA12,HGS,RAB7A,EGF,CASP3,DNM2,CTNND1,GFRA1,RAC1,FYN,HRAS,CBLL1,MET,CABLES1,SRC,NTRK2,CREBBP,BDNF,GNA13,NME1,SNX1,IGF2,CDH2,ABL1,RET,RIN2,RAB5A,IGF1R,SLIT1,MMP3,PTPN6,IQGAP1,DSP,CDH1,ROBO1,PTPN1,CDC42,ZBTB33,ADAM10 +NCI-NATURE Regulation of CDC42 activity PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200071&source=NCI-NATURE&what=graphic&jpg=on DOCK10,MCF2L,FARP2,ARHGEF7,DOCK11,DOCK9,DNMBP,ARHGEF9,ARHGEF6,GIT1,VAV2,RACGAP1,FGD1,PLCG1,ARHGDIA,ARHGAP1,BCAR3,NME1,APC,NGEF,ITSN2,MCF2,ITSN1,VAV3,RALBP1,DOCK6,ARHGAP17,ARHGEF25,CDC42,SPATA13 +NCI-NATURE Sumoylation by RanBP2 regulates transcriptional repression PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200115&source=NCI-NATURE&what=graphic&jpg=on SUMO1,PIAS2,MDM2,RANBP2,HDAC4,RANGAP1,RAN,HDAC1,XPO1,PIAS1,UBE2I +NCI-NATURE Validated transcriptional targets of AP1 family members Fra1 and Fra2 PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200055&source=NCI-NATURE&what=graphic&jpg=on MMP9,MMP2,ATF4,BGLAP,JUNB,JUN,EP300,MGP,IVL,GJA1,DCN,PLAUR,TXLNG,SP1,LAMA3,HMOX1,ITGB4,CCNA2,NFATC2,COL1A2,PLAU,FOSL1,NOS3,JUND,LIF,CCL2,DMTF1,IL8,CCND1,THBD,IL6,USF2,MMP1,NFATC1,NFATC3 +NCI-NATURE TRAIL signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200068&source=NCI-NATURE&what=graphic&jpg=on CFLAR,PIK3R3,IKBKG,MAPK1,MAP2K4,PIK3CB,MAPK8,TNFRSF10A,TNFRSF10D,MAPK3,FADD,TNFRSF10C,TNFRSF10B,DAP3,TNFSF10,TRADD,CASP10,IKBKB,RIPK1,CASP8,SMPD1,CHUK,MAP3K1,PIK3R2,PIK3R1,TRAF2,PIK3CD,PIK3CA +NCI-NATURE Alpha4 beta1 integrin signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200221&source=NCI-NATURE&what=graphic&jpg=on THBS2,PXN,IGSF8,MYH2,AMICA1,RAC1,ITGA4,PRKAR1B,FN1,SRC,BCAR1,PRKACA,PTK2B,ITGB1,PTPRA,ABI1,DOCK1,TLN1,JAM2,CD14,ADAM28,GIT1,PRKACB,CD81,CRK,VCAM1,THBS1,PRKAR1A,YWHAZ,SPP1,ARF6,MDK +NCI-NATURE HIF-1-alpha transcription factor network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200202&source=NCI-NATURE&what=graphic&jpg=on EGLN3,NT5E,PGK1,PGM1,PFKFB3,HNF4A,NDRG1,ETS1,BHLHE41,LEP,SP1,GATA2,NPM1,ABCG2,IGFBP1,EGLN1,SERPINE1,TF,EDN1,ABCB1,FURIN,MCL1,FOS,NCOA1,ADM,SLC2A1,ARNT,ALDOA,ENO1,TFF3,CITED2,EP300,CA9,COPS5,HK2,CXCL12,CXCR4,ITGB2,CREBBP,VEGFA,PFKL,CREB1,BHLHE40,ID2,HIF1A,PLIN2,HK1,SMAD4,SMAD3,EPO,BNIP3,PKM2,TFRC,NOS2,JUN,LDHA,HMOX1,ENG,TERT,GCK,FECH,HDAC7,CP,AKT1,NCOA2 +NCI-NATURE EPHB forward signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200052&source=NCI-NATURE&what=graphic&jpg=on EPHB2,EPHB4,EFNA5,MAPK1,SRC,GRB2,MAP2K1,PXN,CDC42,HRAS,NCK1,EFNB3,RRAS,PAK1,MAPK3,GRB7,SYNJ1,EPHB3,EFNB1,DNM1,MAP4K4,PIK3CA,GRIA1,EPHB1,ROCK1,NRAS,ITSN1,RAP1A,RAC1,RAP1B,EFNB2,PIK3R1,WASL,TF,KALRN,RASA1 +NCI-NATURE Signaling events regulated by Ret tyrosine kinase PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200070&source=NCI-NATURE&what=graphic&jpg=on PRKACA,PXN,GAB1,GRB2,DOK4,CREB1,SHC1,PIK3R1,NCK1,PDLIM7,PRKCA,RET,BCAR1,MAPK3,IRS1,RHOA,DOK5,CRK,PTPN11,SOS1,FRS2,RAC1,MAPK8,DOK1,GRB7,SRC,MAPK1,RAP1A,PIK3CA,GFRA1,JUN,GRB10,DOK6,GDNF,IRS2,SHANK3,RASA1,HRAS +NCI-NATURE Validated targets of C-MYC transcriptional repression PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200200&source=NCI-NATURE&what=graphic&jpg=on NFYA,HDAC3,ITGA6,TJP2,SFRP1,ID2,TMEM126A,IRF8,SMAD2,ALDH9A1,SMAD3,SLC11A1,WNT5A,ERBB2,MYC,CEBPA,CCL5,CSDE1,FTH1,MAX,CLU,NDRG1,BCL2,ITGB4,DNMT3A,GTF2H2,DDIT3,TBP,COL1A2,HDAC1,MXD4,SMAD4,TMEFF2,CFLAR,ZFP36L1,HMGCS2,CEBPD,GADD45A,S100A7,RBL1,SFXN3,SPI1,CDKN1A,ITGB1,GFI1,NFYC,SP1,CDKN2B,EP300,CDKN1B,ZBTB17,CREB1,LGALS1,PPP2R4,DNTT,FOXO3,TSC2,BRCA1,NFYB,CCND1,NDRG2,DKK1,PDGFRB +NCI-NATURE Thrombin/protease-activated receptor (PAR) pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200044&source=NCI-NATURE&what=graphic&jpg=on F2 +NCI-NATURE IL12-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200045&source=NCI-NATURE&what=graphic&jpg=on MAP2K6,CD3G,IL12RB1,RAB7A,LCK,GZMB,IL4,IL18,STAT1,JAK2,ATF2,STAT3,HLA-DRB1,NFKB1,CD4,TYK2,IL18RAP,NOS2,RIPK2,IL1B,SOCS1,EOMES,IL2RB,CCL4,IL12A,RELB,CD247,B2M,IL12B,HLA-DRA,CD3D,CCR5,IL12RB2,MTOR,GZMA,GADD45G,GADD45B,IL2RG,NFKB2,TBX21,PPP3CB,FOS,HLA-A,MAP2K3,STAT5A,CD8A,RELA,STAT4,IL1R1,CD3E,PPP3CA,CD8B,MAPK14,STAT6,IL2,IL2RA,FASLG,PPP3R1,SPHK2,IL18R1,CCL3,HLX,IFNG +NCI-NATURE S1P3 pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200046&source=NCI-NATURE&what=graphic&jpg=on PDGFB,GNAI2,GNA14,GNAO1,GNA15,GNA12,AKT1,SRC,VEGFA,ITGAV,MAPK1,PDGFRB,FLT1,AKT3,ITGB3,S1PR3,GNAQ,CXCR4,S1PR2,GNA11,JAK2,GNAI3,MAPK3,GNA13,S1PR1,GNAZ,GNAI1,RAC1,RHOA +NCI-NATURE LPA4-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200047&source=NCI-NATURE&what=graphic&jpg=on LPAR4,PRKACA,ADCY1,RPS6KA5,ADCY3,PRKCE,ADCY8,ADCY4,CREB1,ADCY7,GNAL,ADCY2,ADCY6,ADCY9,ADCY5 +NCI-NATURE AlphaE beta7 integrin cell surface interactions PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200040&source=NCI-NATURE&what=graphic&jpg=on CDH1,ITGB7,ITGAE +NCI-NATURE Signaling events mediated by Hepatocyte Growth Factor Receptor (c-Met) PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200041&source=NCI-NATURE&what=graphic&jpg=on CDH1,NCK1,HRAS,MAPK1,RANBP9,MAP2K1,CBL,PAK4,PLCG1,PTPN1,MUC20,RANBP10,PAK2,GRB2,MAP3K1,PDPK1,DEPTOR,MAP2K4,EGR1,PIK3R1,ARHGEF4,PRKCI,EPS15,PAK1,PTPN11,RAB5A,CRK,CDC42,RHOA,BAD,MLST8,JUN,NUMB,MTOR,HGF,AKT2,AKT1,KPNB1,SRC,EIF4E,NCK2,INPPL1,MAPK3,ARF6,SH3GL2,RAPGEF1,CTNNB1,MAPK8,CRKL,MAP2K2,RAP1A,GAB2,PIK3CA,RAC1,RAP1B,WASL,APC,PTPRJ,SOS1,PRKCZ,MET,RPTOR,SNAI1,BCAR1,AKT1S1,HGS,RIN2,CTNNA1,F2RL2,EIF4EBP1,RAF1,GAB1,ETS1,PXN,SH3KBP1,PARD6A +NCI-NATURE Signaling events mediated by PTP1B PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200042&source=NCI-NATURE&what=graphic&jpg=on LEPR,PDGFRB,TXN,SPRY2,ITGA2B,SRC,INS,DOK1,STAT3,RHOA,CAV1,CRK,CSN2,JAK2,CAPN1,STAT5B,FER,PTPN1,AKT1,LEP,TYK2,LYN,LAT,YBX1,CSF1R,PDGFB,ITGB3,STAT5A,TRPV6,PIK3R1,SOCS3,CDH2,YES1,BCAR1,INSR,BLK,CSF1,EGF,HCK,NOX4,SHC1,PRL,PRLR,CSK,GRB2,FCGR2A,IRS1,FGR,FYN,LCK,PIK3CA,EGFR +NCI-NATURE Beta3 integrin cell surface interactions PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200043&source=NCI-NATURE&what=graphic&jpg=on COL4A5,VEGFA,LAMB1,L1CAM,ITGA2B,CYR61,COL4A6,FGG,LAMA4,COL4A1,EDIL3,F11R,IBSP,PDGFB,FBN1,PDGFRB,FGB,FN1,COL4A3,SPHK1,TGFBR2,ITGB3,SPP1,COL1A1,COL1A2,LAMC1,TGFBI,TNC,PECAM1,PLAUR,VTN,PLAU,KDR,ITGAV,COL4A4,CD47,HMGB1,FGA,THY1,THBS1,SDC4,PVR,SDC1 +NCI-NATURE Arf6 trafficking events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200057&source=NCI-NATURE&what=graphic&jpg=on PIP5K1C,SLC2A4,DNM2,ARF6,ITGA2,ITGA1,NME1,EXOC6,MAPK8IP3,IL2RA,ITGB1,ITGA4,VAMP3,SPAG9,EXOC2,ITGA8,CPE,CTNNB1,ASAP2,EXOC4,PLD2,ITGA6,ITGA5,RALA,CTNNA1,ITGAV,PLD1,EXOC3,CTNND1,INS,TSHR,AGTR1,EDNRB,SCAMP2,ADRB2,ITGA3,ACAP1,ITGA9,CLTC,EXOC1,ITGA10,ITGA11,ITGA7,EXOC7,EXOC5,AVPR2,KLC1,CDH1,BIN1 +NCI-NATURE Alternative NF-kappaB pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200048&source=NCI-NATURE&what=graphic&jpg=on RELB,SSPO,NFKB2,NFKB1,CHUK,MAP3K14 +NCI-NATURE Coregulation of Androgen receptor activity PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200049&source=NCI-NATURE&what=graphic&jpg=on AKT1,PAWR,HNRNPA1,PTK2B,NCOA4,CDK6,FHL2,CTDSP1,GSN,KLK3,KLK2,BRCA1,NRIP1,SVIL,VAV3,CTNNB1,CASP8,CTDSP2,CARM1,APPL1,HIP1,UBA3,TMPRSS2,NKX3-1,NCOA2,RPS6KA3,PIAS4,KDM3A,PA2G4,KDM4C,MED1,FKBP4,CCND1,UBE3A,TMF1,PRDX1,PIAS1,XRCC6,CCND3,LATS2,UBE2I,TGIF1,XRCC5,PELP1,CMTM2,KDM1A,PRKDC,SRF,SNURF,TGFB1I1,ZMIZ1,PATZ1,AR,MAK,PIAS3,NCOA6,TCF4 +NCI-NATURE Validated targets of C-MYC transcriptional activation PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200056&source=NCI-NATURE&what=graphic&jpg=on MYC,BAX,TK1,SMAD3,TAF9,RUVBL2,HMGA1,NCL,DDX18,KAT5,ENO1,PFKM,CDC25A,E2F3,PRDX3,ODC1,PTMA,SNAI1,KAT2A,SERPINI1,HSP90AA1,MMP9,MAX,LIN28B,NPM1,NME1,TERT,RPL11,PIM1,TAF10,HSPD1,RUVBL1,BMI1,SLC2A1,TAF12,BIRC5,BCAT1,KIR3DL1,SUPT7L,TAF4B,LDHA,TRRAP,IREB2,TP53,CAD,MTDH,FOSL1,GPAM,SMAD4,GAPDH,HSPA4,SUPT3H,CDK4,EP300,POLR3D,SHMT1,CREBBP,CCND2,PEG10,ID2,EIF4G1,NBN,MYCT1,PDCD10,MINA,NDUFAF2,PMAIP1,HUWE1,ACTL6A,RCC1,NME2,CCNB1,CDCA7,UBTF,TFRC,EIF4A1,EIF4E,MTA1,EIF2S1 +NCI-NATURE Glypican 1 network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200026&source=NCI-NATURE&what=graphic&jpg=on BLK,SRC,TGFB3,NRG1,FGR,FGF2,PLA2G2A,HCK,TGFB2,VEGFA,TGFBR1,YES1,FGFR1,TGFB1,LYN,LAMA1,APP,TGFBR2,LCK,SMAD2,SLIT2,FYN,SERPINC1,GPC1,TDGF1,PRNP,FLT1 +NCI-NATURE FoxO family signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200108&source=NCI-NATURE&what=graphic&jpg=on CSNK1G1,SGK1,CAT,FBXO32,RALA,CSNK1E,IKBKB,PLK1,SIRT1,FOXO1,BCL2L11,RAN,EP300,CREBBP,CSNK1G2,FOXO4,MAPK8,USP7,CSNK1A1,CTNNB1,CSNK1D,YWHAE,RALB,CHUK,MST1,G6PC,CSNK1G3,CCNB1,FASLG,GADD45A,YWHAB,YWHAH,XPO1,MAPK9,MAPK10,SOD2,SKP2,BCL6,KAT2B,YWHAQ,CDKN1B,CDK2,FOXO3,ZFAND5,RBL2,YWHAG,SFN,AKT1,YWHAZ +NCI-NATURE Degradation of beta catenin PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200024&source=NCI-NATURE&what=graphic&jpg=on LRP6,WNT3A,AXIN2,SKP1,AXIN1,GSK3B,SSPO,DVL2,CSNK1D,DVL1,CUL1,APC,CTNNB1,GSK3A,CSNK1E,CSNK1A1,FZD5,DVL3 +NCI-NATURE Signaling events mediated by HDAC Class III PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200025&source=NCI-NATURE&what=graphic&jpg=on SIRT3,HOXA10,HIST1H4A; HIST1H4B; HIST1H4C; HIST1H4D; HIST1H4E; HIST1H4F; HIST1H4H; HIST1H4I; HIST1H4J; HIST1H4K; HIST1H4L; HIST2H4A; HIST2H4B; HIST4H4,MYOD1,FOXO1,SIRT7,FOXO4,PPARGC1A,CREBBP,HDAC4,BAX,TP53,MEF2D,ACSS1,XRCC6,FHL2,SIRT1,FOXO3,EP300,ACSS2,SIRT2,KAT2B,CDKN1A,HIST1H1E,TUBB2A,TUBA1B +NCI-NATURE IL4-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200022&source=NCI-NATURE&what=graphic&jpg=on CEBPB,COL1A1,SELP,MYB,CBL,ALOX15,IRF4,MTOR,IL13RA1,IL13RA2,AICDA,JAK1,JAK2,FES,IGHG1,TFF3,STAT5B,PIK3R1,THY1,MYBL1,STAT5A,CCL17,IL2RG,MAPK14,PIGR,LTA,SPI1,COL1A2,AKT1,FCER2,IGHE,CCL11,ARG1,OPRM1,PTPN6,CD40LG,PARP14,SOCS5,JAK3,EGR2,IRS2,GRB2,IL4,IRS1,IL5,RPS6KB1,STAT6,SOCS1,ITGB3,RETNLB,ETS1,SP1,SHC1,BCL6,HMGA1,CCL26,IL4R,IGHG3,PIK3CA,IL10,DOK2,SOCS3,GTF3A +NCI-NATURE Signaling events mediated by HDAC Class II PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200023&source=NCI-NATURE&what=graphic&jpg=on TUBB2A,RANGAP1,NCOR2,HDAC9,HDAC5,YWHAB,GATA2,BCOR,GNG2,YWHAE,HDAC7,RANBP2,HDAC3,ANKRA2,ESR1,NR3C1,HDAC11,GNB1,RAN,GATA1,SUMO1,BCL6,MEF2C,SRF,UBE2I,HDAC6,HSP90AA1,HDAC10,RFXANK,ADRBK1,XPO1,CAMK4,HDAC4,TUBA1B +NCI-NATURE Noncanonical Wnt signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200020&source=NCI-NATURE&what=graphic&jpg=on YES1,PRKCZ,MAP3K7,TAB2,FLNA,CSNK1A1,CDC42,DAAM1,FZD7,WNT5A,ROR2,NFATC2,SETDB1,NLK,ROCK1,RAC1,ARRB2,FZD5,MAPK8,CHD7,MAPK9,PPARG,CAMK2A,DVL1,RHOA,FZD6,CTHRC1,DVL2,DVL3,FZD2,TAB1,MAPK10 +NCI-NATURE Atypical NF-kappaB pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200021&source=NCI-NATURE&what=graphic&jpg=on PIK3CA,NFKB1,CSNK2B,SYK,CSNK2A1,PIK3R1,SSPO,MAPK14,LCK,NFKBIA,RELA,SRC,BCL3,IKBKB,ARRB2,REL,CSNK2A2 +NCI-NATURE EGF receptor (ErbB1) signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200101&source=NCI-NATURE&what=graphic&jpg=on EGF,PAK1,GNAI3,GNAI1,NCK2,PIK3R2,STAT1,NCK1,SRC,WASL,NRAS,PIK3R3,SOS1,HRAS,TLN1,PTPN1,PIP5K1C,STAT3,PIK3CB,GRB2,PIK3R1,PIK3CD,PTPN6,GSN,PLCG1,EGFR,MAPK1,RASA1,GAB1,PIK3CA,MAPK3,PTPN11 +NCI-NATURE IGF1 pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200100&source=NCI-NATURE&what=graphic&jpg=on PRKCD,RAF1,BAD,GRB10,NCK2,IGF1R,SHC1,IRS1,BCAR1,AKT1,CRKL,PRKCZ,PDPK1,PXN,PTPN1,HRAS,PRKD1,PIK3R1,YWHAE,RPS6KB1,GRB2,PIK3CA,GNB2L1,CRK,SOS1,IRS2,YWHAZ,PTPN11 +NCI-NATURE PLK1 signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200103&source=NCI-NATURE&what=graphic&jpg=on CENPE,ROCK2,PLK1,CDC25C,SPC24,BUB1B,FBXW11,KIF2A,RHOA,PPP2R1A,ERCC6L,CDK1,CLSPN,NUDC,AURKA,CDC25B,FBXO5,GOLGA2,CCNB1,NDC80,KIF20A,FZR1,SSPO,PPP1CB,PPP2CA,PLK1S1,INCENP,TUBG1,MLF1IP,ECT2,TPT1,WEE1,NINL,PPP1R12A,SGOL1,PAK1,CDC20,BORA,TPX2,GORASP1,STAG2,CDC14B,RAB1A,BUB1 +NCI-NATURE TNF receptor signaling pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200102&source=NCI-NATURE&what=graphic&jpg=on TNF,MAP4K5,SMPD1,BAG4,TRAF1,RFFL,GNB2L1,NFKB1,STAT1,NSMAF,MAP3K5,TRADD,TAB2,IKBKB,PRKCZ,TNFAIP3,MAP4K4,TRAF2,RIPK1,CAV1,MAP3K3,PRKCI,BIRC3,IKBKG,CASP8,CHUK,FADD,MAP3K7,TXN,SQSTM1,MAP3K1,MAP4K3,MAP4K2,SMPD2,TAB1,MAP2K3,TNIK,NRK,MADD,MAP2K7,RELA,ADAM17,TNFRSF1B,CYLD,TNFRSF1A,BIRC2 +NCI-NATURE Ras signaling in the CD4+ TCR pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200104&source=NCI-NATURE&what=graphic&jpg=on ELK1,RAF1,HRAS,MAPK1,BRAF,MAP3K8,FOS,MAPK3,MAP2K1,PRKCB,PRKCA,PTPN7,NRAS +NCI-NATURE IL27-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200028&source=NCI-NATURE&what=graphic&jpg=on IL12RB2,EBI3,IL1B,IL12B,STAT1,STAT4,STAT3,GATA3,TYK2,STAT5A,TBX21,IL6,TNF,IL2,TGFB1,JAK1,IL12A,IL27RA,IFNG,IL17A,JAK2,IL12RB1,IL27,STAT2,IL18,IL6ST +NCI-NATURE Rapid glucocorticoid signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200106&source=NCI-NATURE&what=graphic&jpg=on MAPK8,GNB1,CRH,GNAL,GNG2,MAPK11,MAPK9,MAPK14 +NCI-NATURE VEGF and VEGFR signaling network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200109&source=NCI-NATURE&what=graphic&jpg=on FLT1,FIGF,NRP2,KDR,FLT4,NRP1,VEGFC +NCI-NATURE Endogenous TLR signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200208&source=NCI-NATURE&what=graphic&jpg=on RHOA,HMGB1,LY96,TIRAP,BGN,IKBKB,IRAK1,IKBKG,HSPD1,CHUK,SFTPA1,IRAK2,VCAN,TLR2,TLR1,TLR3,TLR6,CD14,TICAM1,TLR4,S100A9,S100A8,MYD88,IRAK4 +NCI-NATURE Syndecan-2-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200192&source=NCI-NATURE&what=graphic&jpg=on TRAPPC4,MMP2,ITGA5,MAPK1,LAMA1,FN1,CAV2,SRC,RHOA,MAPK3,CASP3,NF1,SDC2,TGFB1,SDCBP,GNB2L1,EZR,PRKCD,TNFRSF13B,LAMA3,CASK,RASA1,PRKACA,CSF2,ITGA2,ITGB1,KNG1,EPHB2,MAPK8,IL8,HRAS,BAX,EPB41 +NCI-NATURE Regulation of RAC1 activity PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200193&source=NCI-NATURE&what=graphic&jpg=on TIAM1,PREX1,TIAM2,MCF2,DEF6,RASGRF1,NGEF,ARHGEF25,RASGRF2,VAV2,EPS8,RAC1,RACGAP1,CHN2,ARHGEF7,DOCK1,ARHGDIA,ARHGEF2,BCR,RALBP1,ABI1,SOS1,TRIO,ARHGAP9,ABR,PREX2,RAP1GDS1,CHN1,SPATA13,ARHGEF6,KALRN,ELMO1,VAV1,DOCK2,DOCK6,ARHGAP1,ARHGAP17,VAV3 +NCI-NATURE a6b1 and a6b4 Integrin signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200190&source=NCI-NATURE&what=graphic&jpg=on LAMA5,RXRA,ERBB2,ERBB3,YWHAZ,CDH1,PRKCA,MET,LAMA2,LAMB1,LAMB3,YWHAB,CD9,LAMA3,HRAS,GRB2,COL17A1,EGFR,PMP22,YWHAG,LAMC2,SHC1,YWHAQ,PIK3CA,YWHAH,LAMA4,LAMB2,ITGB1,IL1A,LAMC1,EGF,AKT1,MST1R,CASP7,RPS6KB1,ITGB4,PIK3R1,RXRG,YWHAE,ITGA6,LAMA1,SFN,LAMC3,MST1 +NCI-NATURE FOXA transcription factor networks PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200191&source=NCI-NATURE&what=graphic&jpg=on FOXA2,FOXA3,FOXA1 +NCI-NATURE Insulin-mediated glucose transport PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200196&source=NCI-NATURE&what=graphic&jpg=on TRIP10,YWHAE,PRKCZ,YWHAQ,YWHAG,GSK3B,AKT1,CALM1; CALM2; CALM3,YWHAB,INSR,STXBP4,STX4,ASIP,YWHAH,SLC2A4,INS,PPP1R3A,RHOQ,YWHAZ,PPP1CC,LNPEP,TBC1D4,GYS1,VAMP2,SFN,AKT2,PRKCI +NCI-NATURE Class I PI3K signaling events mediated by Akt PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200197&source=NCI-NATURE&what=graphic&jpg=on GSK3A,MAPKAP1,RICTOR,TBC1D4,RAF1,CASP9,HSP90AA1,MAP3K5,AKT3,FOXO3,PRKDC,YWHAQ,YWHAH,MTOR,FOXO1,YWHAG,CDKN1A,SFN,YWHAE,PDPK1,CHUK,PRKACA,BAD,KPNA1,YWHAZ,CDKN1B,YWHAB,AKT1,SRC,AKT2,GSK3B,MLST8,FOXO4,SLC2A4 +NCI-NATURE Aurora A signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200194&source=NCI-NATURE&what=graphic&jpg=on GSK3B,GIT1,ARHGEF7,CKAP5,TDRD7,BRCA1,BIRC5,RAN,AURKB,NDEL1,PAK1,AKT1,TPX2,DLGAP5,TACC1,PPP2R5D,OAZ1,TACC3,PRKACA,NFKBIA,GADD45A,CDC25B,FZR1,AURKA,CENPA,RASA1,MDM2,CPEB1,AJUBA,TP53,AURKAIP1 +NCI-NATURE Arf1 pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200195&source=NCI-NATURE&what=graphic&jpg=on CYTH2,RAC1,GBF1,CLTB,AP2M1,COPA,GOSR2,GGA3,PIP5K1A,AP2A1,ARF1,ARFIP2,USO1,CLTA,KDELR1,PLD2,CD4,ARFGAP1,ASAP1 +NCI-NATURE Syndecan-3-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200198&source=NCI-NATURE&what=graphic&jpg=on MC4R,NCSTN,SRC,EGFR,CASK,AGRP,APH1B,PSENEN,FYN,PTN,POMC,CTTN,APH1A,IL8,PSEN1,SDC3,NCAN +NCI-NATURE IL8- and CXCR1-mediated signaling events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200199&source=NCI-NATURE&what=graphic&jpg=on ARRB1,HCK,GNA14,GNAI2,FGR,AKT1,PRKCG,PLCB2,CBL,ADRBK1,PLD1,PLCB3,PIK3R6,PLCB1,DNM1,GNB1,PRKCA,PIK3CG,CXCR1,RAB5A,LYN,IL8,PRKCE,ARRB2,GNA15,PDPK1,GNG2 +NCI-NATURE Osteopontin-mediated events PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200053&source=NCI-NATURE&what=graphic&jpg=on VAV3,SYK,PLAU,MAPK8,ITGB3,MMP9,ROCK2,MAPK3,RELA,PTK2B,CHUK,MMP2,ITGAV,PIK3R1,SPP1,BCAR1,CD44,MAP3K1,NFKB1,FOS,CDC42,MAP3K14,MAPK1,JUN,NFKBIA,RHOA,RAC1,GSN,PIP5K1A,PIK3CA,ILK +NCI-NATURE Validated transcriptional targets of TAp63 isoforms PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200203&source=NCI-NATURE&what=graphic&jpg=on MFGE8,OGG1,EP300,NQO1,SERPINB5,YWHAQ,S100A2,CDKN1A,ITGB4,PML,BBC3,GADD45A,CHUK,SP1,MDM2,TRAF4,ITGA3,NOC2L,FAS,PMAIP1,ITCH,WWP1,HBP1,PRKCD,IGFBP3,FLOT2,GPX2,DICER1,TFAP2C,SSRP1,ADA,SSPO,SPATA18,PERP,CLCA2,JAG1,TP53I3,DHRS3,CABLES1,VDR,PLK1,BAX,IKBKB,EVPL,AEN,FDXR,GDF15,ABL1,EGR2,SHH,SMARCD3 +NCI-NATURE EphrinA-EPHA pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200051&source=NCI-NATURE&what=graphic&jpg=on EPHA5,EFNA5,EPHA8,EPHA4,EPHA2,EPHA3,EPHA6,EPHA7 +NCI-NATURE PDGF receptor signaling network PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200201&source=NCI-NATURE&what=graphic&jpg=on PDGFA,PDGFRA,PDGFRB,PDGFB,PDGFD,PDGFC +NCI-NATURE p53 pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200206&source=NCI-NATURE&what=graphic&jpg=on NEDD8,PPM1D,HIPK2,CHEK2,TP53,TP53AIP1,TRIM28,CCNG1,HUWE1,CSNK1E,SETD8,SKP2,ATM,CSE1L,CSNK1D,CSNK1A1,PPP2CA,CDK2,PIN1,CHEK1,SETD7,MDM4,KAT5,CCNA2,SMYD2,E4F1,EP300,PRMT5,KAT2B,PPP1R13L,CSNK1G1,RFWD2,KAT8,DAXX,DYRK2,TTC5,RPL5,RPL11,PRKCD,PPP2R4,MDM2,FBXO11,AKT1,ATR,ABL1,CSNK1G2,GSK3B,CREBBP,RASSF1,MAPK14,MAPK9,RPL23,USP7,RCHY1,UBE2D1,CSNK1G3,YY1,MAPK8 +NCI-NATURE Polo-like kinase signaling events in the cell cycle PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200207&source=NCI-NATURE&what=graphic&jpg=on PLK1,PLK3,PLK2,PLK4 +NCI-NATURE Ephrin B reverse signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200204&source=NCI-NATURE&what=graphic&jpg=on MAP3K7,EPHB1,MAP2K4,FGR,LCK,PIK3R1,DNM1,EFNB2,EPHB2,PTPN13,TIAM1,RAC1,PIK3CA,RGS3,EPHB4,ITGB3,FYN,FGA,BLK,CXCR4,HCK,NCK2,FGB,MAPK8,SRC,EFNB1,FGG,LYN,ITGA2B,YES1 +NCI-NATURE S1P4 pathway PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200054&source=NCI-NATURE&what=graphic&jpg=on GNA12,GNAZ,GNAI2,MAPK3,CDC42,PLCG1,GNA13,MAPK1,GNAI1,RHOA,S1PR4,GNAI3,S1PR5,GNAO1 +NCI-NATURE Ephrin A reverse signaling PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200059&source=NCI-NATURE&what=graphic&jpg=on EPHA5,FYN,EFNA5 +NCI-NATURE Signaling by Aurora kinases PID http://pid.nci.nih.gov/search/pathway_landing.shtml?pathway_id=200058&source=NCI-NATURE&what=graphic&jpg=on AURKB,AURKC,AURKA diff --git a/src/dataimport/python/README b/src/dataimport/python/README new file mode 100755 index 0000000..ff4b940 --- /dev/null +++ b/src/dataimport/python/README @@ -0,0 +1,36 @@ +#RE-Config and MySql Data Import notes and requirements +#Requires python 2.5, 2.6, or 2.7 and libraries MySQLdb +First - set up the RE admin dependencies and set permissions by executing rfex_admin.sql with root on the mysql server: + +mysql -u root -ppassword < rfex_admin.sql + +It is also recommended taking a look at MySQL's /etc/my.cnf If you have millions of associations, then you should consider following the my-large.cnf (See MySQL documentation) settings + +#Config +if you want to call your database a different schema name then tcga, you will want to replace the rfex_admin.sql 'tcga' with name you want and then modify one of the example config/rfex_sql.config files. +The host can be localhost, or the actual server name. If you are running the data import on the db server, then localhost is best, if you are running the data import from a different server, then put in the entire address, such as machine.systemsbiology.net with the appropriate port. The server you are on must have access to the db server. + +The rfex_admin.sql contains grant statements and it is important that you replace the existing server name of saskatoon with your server name. +Within the config file, the path dictated needs to exist, since the script only creates dir dynamically relative to this path. +[results] +path=/titan/cancerregulome3/TCGA/outputs_sandbox/parsed_associations + +If you were to update the random_forest database name for the chrom and ref info, be aware that RE contains a google-dsapi-svc.config file containing this database name and you will need to update this and then redeploy the same name war file in your web app server. + +#MySQL Engine +RE db tables are using the MyISAM engine, versus InnoDB, since MyISAM is better fitted for read-intensive (select) and offers full-text indexing and simpler to design and drop. + +#SH +From python dir, run sh: +There should be corresponding sh files to the config files setup above, the commands required for the sh is: +dataset_label feature_matrix_file associations_file dataset_comment dataset_description + +#RFACE analysis example: +sh load_sandbox_rface_associations.sh test_gbm_rface /titan/cancerregulome3/TCGA/outputs/gbm/gbm.merge.u133a.31oct.hg18.tsv /titan/cancerregulome3/TCGA/outputs/gbm/rf.u133a.31oct.mask1.F/all_associations.out "BRCA Her2 subset" "59 Her2-classified patients" + +#All Pairs example: +sh load_sandbox_pairwise_associations.sh test_kirc_0206_pw /titan/cancerregulome3/TCGA/outputs/kirc/bigMerge.06feb12.hg18.tsv /titan/cancerregulome3/TCGA/outputs/kirc/bigMerge.06feb12.pwpv "Kidney" "Kidney sandbox" + +Regarding processing time, we are averaging about 800,000-1 million edges per minute. It is recommended that you modify your /etc/my.cnf to have high memory settings as quite a number of views, indexes and buffers are used. + +Please contact codefor@systemsbiology.net with any questions diff --git a/src/dataimport/python/compute_feature_interestingness.py b/src/dataimport/python/compute_feature_interestingness.py new file mode 100755 index 0000000..0437509 --- /dev/null +++ b/src/dataimport/python/compute_feature_interestingness.py @@ -0,0 +1,106 @@ +import csv,sys,re,math +from operator import itemgetter + +# Converts p-values to strengths, which at the moment are defined as +# -log10(pvalue) +# NOTE: minus is supposed to make a negative number positive, so +# minus can be replaced with abs to make the logic of the function +# more compact +def convertPValueToStrength(pvalue,isLogged): + + if isLogged: + return abs(pvalue) + else: + return abs(math.log10(pvalue)) + + +# Takes +def addToStrengths(strengths,target,feature,newStrength): + + target_elems = target.split(':') + feature_elems = feature.split(':') + + targetType = target_elems[1] + featureType = feature_elems[1] + + if featureType == targetType: + return + + allFeatureTypes.add(featureType) + + if strengths.get(target,'NA') == 'NA': + strengths[target] = {} + + if strengths[target].get(featureType,'NA') == 'NA': + strengths[target][featureType] = newStrength + else: + strengths[target][featureType] = max(strengths[target][featureType],newStrength) + + +assert sys.argv[1] != sys.argv[2] + +assReader = csv.reader(open(sys.argv[1],'r'),delimiter='\t') +intWriter = csv.writer(open(sys.argv[2],'w'),delimiter='\t') +isLogged = False + +if (len(sys.argv) == 4): + if (sys.argv[3] == 'logged'): + isLogged = True + elif (sys.argv[3] == 'unlogged'): + isLogged = False + +strengths = {} + +allFeatureTypes = set() + +linesSkipped = 0 + +for line in assReader: + + if len(line) < 3: + linesSkipped = linesSkipped + 1 + continue + + target,feature,pvalue = line[0:3] + + #isLogged = False + newStrength = convertPValueToStrength(float(pvalue),isLogged) + + addToStrengths(strengths,target,feature,newStrength) + addToStrengths(strengths,feature,target,newStrength) + + +for target in strengths.keys(): + + totalStrength = 0.0 + for featureType in strengths[target].keys(): + totalStrength += strengths[target][featureType] + strengths[target]['INTERESTINGNESS'] = totalStrength + + +allFeatureTypes = list(allFeatureTypes) +allFeatureTypes.append('INTERESTINGNESS') + +outputList = [] + +for target in strengths.keys(): + + strength = strengths[target] + newLine = [target] + + for featureType in allFeatureTypes: + newLine.append( strength.get(featureType,0.0) ) + + outputList.append(newLine) + +outputList = sorted(outputList, key=itemgetter(len(allFeatureTypes)), reverse=True) + +allFeatureTypes.insert(0,'FEATURE') + +intWriter.writerow(allFeatureTypes) + +for line in outputList: + intWriter.writerow(line) + + +print 'Done:',linesSkipped,'lines skipped','\n', diff --git a/src/dataimport/python/compute_quantiles.py b/src/dataimport/python/compute_quantiles.py new file mode 100755 index 0000000..77f2f34 --- /dev/null +++ b/src/dataimport/python/compute_quantiles.py @@ -0,0 +1,100 @@ +import csv,sys,math + +NAs = ["na","nan","?",""] + +def percentile(N, percent, key=lambda x:x): + """ + Find the percentile of a list of values. + + @parameter N - is a list of values. Note N MUST BE already sorted. + @parameter percent - a float value from 0.0 to 1.0. + @parameter key - optional key function to compute value from each element of N. + + @return - the percentile of the values + """ + + if not N: + return None + + k = (len(N)-1) * percent + f = math.floor(k) + c = math.ceil(k) + + if f == c: + return key(N[int(k)]) + + d0 = key(N[int(f)]) * (c-k) + d1 = key(N[int(c)]) * (k-f) + + return d0+d1 + + +def isNA(x): + return x.lower() in NAs + + +def compute_quantiles(afmFile,quantileFile): + + afmReader = csv.reader(open(afmFile,'r'), delimiter='\t') + quantileWriter = csv.writer(open(quantileFile,'w'), delimiter='\t') + + quantiles = [] + fullData = [] + + linesRead = 0 + linesIncluded = 0 + linesSkipped = 0 + + for line in afmReader: + + linesRead = linesRead + 1 + featureID = line[0] + + # Skip nonnumerical and invalid features + if featureID[0:2] != 'N:': + linesSkipped = linesSkipped + 1 + continue + + data = [float(x) for x in line[1:] if not isNA(x)] + + medianValue = percentile(data,0.5) + + fullData.extend(data) + + quantiles.append([featureID,medianValue,'NA']) + + linesIncluded = linesIncluded + 1 + + + + print "\n",linesRead,"lines read from '",afmFile,"'" + print " -",linesIncluded,"lines included" + print " -",linesSkipped,"lines skipped\n" + + if linesIncluded == 0 or len(fullData) == 0: + print "\nError: no data for computing quantiles" + print " - make sure the AFM is properly formatted" + print " - make sure the headers start with an 'N:' (numerical)\n" + return None + + fullData.sort() + + QT = [fullData[0],percentile(fullData,0.05),percentile(fullData,0.25),percentile(fullData,0.75),percentile(fullData,0.95),fullData[-1]] + + for line in quantiles: + + q = line[1] + + for i in range(0,len(QT)-1): + if QT[i] <= q and q <= QT[i+1]: + line[2] = 'Q'+str(i+1) + break + + quantileWriter.writerow(line) + +def main(afmFile,quantileFile): + compute_quantiles(afmFile,quantileFile) + +if __name__ == "__main__": + compute_quantiles(sys.argv[1],sys.argv[2]) + diff --git a/src/dataimport/python/createPWShardedDataset.py b/src/dataimport/python/createPWShardedDataset.py new file mode 100644 index 0000000..3f5e0a2 --- /dev/null +++ b/src/dataimport/python/createPWShardedDataset.py @@ -0,0 +1,66 @@ +import sys + +if(len(sys.argv) < 3): + print "Incorrect arguments, specify input file, and dataset name."; + exit(1); + +datasetFile=open(sys.argv[1],"r") +outFile1=open(sys.argv[1] + "_core0_final.tsv","w") +outFile2=open(sys.argv[1] + "_core1_final.tsv","w") +outFile3=open(sys.argv[1] + "_core2_final.tsv","w") +outFile4=open(sys.argv[1] + "_core3_final.tsv","w") +outFile5=open(sys.argv[1] + "_core4_final.tsv","w") +outFile6=open(sys.argv[1] + "_core5_final.tsv","w") +outFile7=open(sys.argv[1] + "_core6_final.tsv","w") +outFile8=open(sys.argv[1] + "_core7_final.tsv","w") +dataset=sys.argv[2] + + +count=1; +outFile1.writelines("feature1id\tfeature2id\talias1\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\talias2\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tcorrelation\tnum_nonna\tlogged_pvalue\tbonf_fac\tlogged_pvalue_bonf\tnum_nonna_f1\tlogged_pvalue_f1\tnum_nonna_f2\tlogged_pvalue_f2\trho_score\tlink_distance\tf1genescore\tf2genescore\tid\tdataset\tdatasetId\n"); +outFile2.writelines("feature1id\tfeature2id\talias1\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\talias2\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tcorrelation\tnum_nonna\tlogged_pvalue\tbonf_fac\tlogged_pvalue_bonf\tnum_nonna_f1\tlogged_pvalue_f1\tnum_nonna_f2\tlogged_pvalue_f2\trho_score\tlink_distance\tf1genescore\tf2genescore\tid\tdataset\tdatasetId\n"); +outFile3.writelines("feature1id\tfeature2id\talias1\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\talias2\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tcorrelation\tnum_nonna\tlogged_pvalue\tbonf_fac\tlogged_pvalue_bonf\tnum_nonna_f1\tlogged_pvalue_f1\tnum_nonna_f2\tlogged_pvalue_f2\trho_score\tlink_distance\tf1genescore\tf2genescore\tid\tdataset\tdatasetId\n"); +outFile4.writelines("feature1id\tfeature2id\talias1\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\talias2\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tcorrelation\tnum_nonna\tlogged_pvalue\tbonf_fac\tlogged_pvalue_bonf\tnum_nonna_f1\tlogged_pvalue_f1\tnum_nonna_f2\tlogged_pvalue_f2\trho_score\tlink_distance\tf1genescore\tf2genescore\tid\tdataset\tdatasetId\n"); +outFile5.writelines("feature1id\tfeature2id\talias1\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\talias2\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tcorrelation\tnum_nonna\tlogged_pvalue\tbonf_fac\tlogged_pvalue_bonf\tnum_nonna_f1\tlogged_pvalue_f1\tnum_nonna_f2\tlogged_pvalue_f2\trho_score\tlink_distance\tf1genescore\tf2genescore\tid\tdataset\tdatasetId\n"); +outFile6.writelines("feature1id\tfeature2id\talias1\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\talias2\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tcorrelation\tnum_nonna\tlogged_pvalue\tbonf_fac\tlogged_pvalue_bonf\tnum_nonna_f1\tlogged_pvalue_f1\tnum_nonna_f2\tlogged_pvalue_f2\trho_score\tlink_distance\tf1genescore\tf2genescore\tid\tdataset\tdatasetId\n"); +outFile7.writelines("feature1id\tfeature2id\talias1\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\talias2\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tcorrelation\tnum_nonna\tlogged_pvalue\tbonf_fac\tlogged_pvalue_bonf\tnum_nonna_f1\tlogged_pvalue_f1\tnum_nonna_f2\tlogged_pvalue_f2\trho_score\tlink_distance\tf1genescore\tf2genescore\tid\tdataset\tdatasetId\n"); +outFile8.writelines("feature1id\tfeature2id\talias1\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\talias2\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tcorrelation\tnum_nonna\tlogged_pvalue\tbonf_fac\tlogged_pvalue_bonf\tnum_nonna_f1\tlogged_pvalue_f1\tnum_nonna_f2\tlogged_pvalue_f2\trho_score\tlink_distance\tf1genescore\tf2genescore\tid\tdataset\tdatasetId\n"); + +numrec=1; +for line in datasetFile: + if(count==1): + outFile1.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==2): + outFile2.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==3): + outFile3.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==4): + outFile4.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==5): + outFile5.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==6): + outFile6.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==7): + outFile7.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==8): + outFile8.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=1; + + numrec=numrec+1; + +outFile1.close(); +outFile2.close(); +outFile3.close(); +outFile4.close(); +outFile5.close(); +outFile6.close(); +outFile7.close(); +outFile8.close(); +datasetFile.close(); diff --git a/src/dataimport/python/createRFShardedDataset.py b/src/dataimport/python/createRFShardedDataset.py new file mode 100644 index 0000000..9a8fb12 --- /dev/null +++ b/src/dataimport/python/createRFShardedDataset.py @@ -0,0 +1,66 @@ +import sys + +if(len(sys.argv) < 3): + print "Incorrect arguments, specify input file, and dataset name."; + exit(1); + +datasetFile=open(sys.argv[1],"r") +outFile1=open(sys.argv[1] + "_core0_final.tsv","w") +outFile2=open(sys.argv[1] + "_core1_final.tsv","w") +outFile3=open(sys.argv[1] + "_core2_final.tsv","w") +outFile4=open(sys.argv[1] + "_core3_final.tsv","w") +outFile5=open(sys.argv[1] + "_core4_final.tsv","w") +outFile6=open(sys.argv[1] + "_core5_final.tsv","w") +outFile7=open(sys.argv[1] + "_core6_final.tsv","w") +outFile8=open(sys.argv[1] + "_core7_final.tsv","w") +dataset=sys.argv[2] + + +count=1; +outFile1.writelines("alias1\talias2\tlogged_pvalue\timportance\tcorrelation\tpatientct\tfeature1id\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\tfeature2id\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tf1genescore\tf2genescore\trho_score\tlink_distance\tid\tdataset\tdatasetId\n"); +outFile2.writelines("alias1\talias2\tlogged_pvalue\timportance\tcorrelation\tpatientct\tfeature1id\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\tfeature2id\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tf1genescore\tf2genescore\trho_score\tlink_distance\tid\tdataset\tdatasetId\n"); +outFile3.writelines("alias1\talias2\tlogged_pvalue\timportance\tcorrelation\tpatientct\tfeature1id\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\tfeature2id\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tf1genescore\tf2genescore\trho_score\tlink_distance\tid\tdataset\tdatasetId\n"); +outFile4.writelines("alias1\talias2\tlogged_pvalue\timportance\tcorrelation\tpatientct\tfeature1id\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\tfeature2id\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tf1genescore\tf2genescore\trho_score\tlink_distance\tid\tdataset\tdatasetId\n"); +outFile5.writelines("alias1\talias2\tlogged_pvalue\timportance\tcorrelation\tpatientct\tfeature1id\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\tfeature2id\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tf1genescore\tf2genescore\trho_score\tlink_distance\tid\tdataset\tdatasetId\n"); +outFile6.writelines("alias1\talias2\tlogged_pvalue\timportance\tcorrelation\tpatientct\tfeature1id\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\tfeature2id\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tf1genescore\tf2genescore\trho_score\tlink_distance\tid\tdataset\tdatasetId\n"); +outFile7.writelines("alias1\talias2\tlogged_pvalue\timportance\tcorrelation\tpatientct\tfeature1id\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\tfeature2id\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tf1genescore\tf2genescore\trho_score\tlink_distance\tid\tdataset\tdatasetId\n"); +outFile8.writelines("alias1\talias2\tlogged_pvalue\timportance\tcorrelation\tpatientct\tfeature1id\tf1type\tf1source\tf1label\tf1chr\tf1start\tf1end\tf1strand\tf1label_desc\tfeature2id\tf2type\tf2source\tf2label\tf2chr\tf2start\tf2end\tf2strand\tf2label_desc\tf1genescore\tf2genescore\trho_score\tlink_distance\tid\tdataset\tdatasetId\n"); + +numrec=1; +for line in datasetFile: + if(count==1): + outFile1.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==2): + outFile2.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==3): + outFile3.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==4): + outFile4.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==5): + outFile5.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==6): + outFile6.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==7): + outFile7.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=count+1; + elif(count==8): + outFile8.writelines(line.strip() + "\t" + str(numrec) + "\t" + dataset + "\t" + str(numrec) + "_" + dataset + "\n"); + count=1; + + numrec=numrec+1; + +outFile1.close(); +outFile2.close(); +outFile3.close(); +outFile4.close(); +outFile5.close(); +outFile6.close(); +outFile7.close(); +outFile8.close(); +datasetFile.close(); diff --git a/src/dataimport/python/createSchemaFromTemplate.py b/src/dataimport/python/createSchemaFromTemplate.py new file mode 100755 index 0000000..6875678 --- /dev/null +++ b/src/dataimport/python/createSchemaFromTemplate.py @@ -0,0 +1,49 @@ +#!/usr/bin/python +import sys +import os +import time +import db_util + +placeHolder = '#REPLACE#' +"""myhost = db_util.getDBHost() #config.get("mysql_jdbc_configs", "host") +myport = db_util.getDBPort() +mydb = db_util.getDBSchema() #config.get("mysql_jdbc_configs", "db") +myuser = db_util.getDBUser() #config.get("mysql_jdbc_configs", "username") +mypw = db_util.getDBPassword() #config.get("mysql_jdbc_configs", "password") +""" + +def executeSchema(schemafile_path, config): + cmd = "mysql -h %s --port %s -u%s -p%s < %s" %(db_util.getDBHost(config), db_util.getDBPort(config), db_util.getDBUser(config), db_util.getDBPassword(config), schemafile_path) + print "Running system call %s" %(cmd) + os.system(cmd) + +def updateFromTemplate(label, template, configfile, resultsPath): + template_file = open(template) + schema_out_name = template_file.name.replace('template', label) + schema_out_name = schema_out_name.replace('sql', "sql_processing", 1) + sql_processing_dir = resultsPath + "/sql_processing" + if (not os.path.exists(sql_processing_dir)): + os.system("mkdir " + sql_processing_dir) + os.system("chmod 777 " + sql_processing_dir) + schema_out_name = sql_processing_dir + "/" + schema_out_name.split("/")[-1] + schema_file = open(schema_out_name,'w') + config = db_util.getConfig(configfile) + schema_file.write("use %s;\n" %(db_util.getDBSchema(config))) + for line in template_file: + schema_file.write(line.replace(placeHolder, label)) + schema_file.close() + template_file.close() + executeSchema(schema_file.name, config) + print "Done creating schema file from template %s" % time.ctime() + + +if __name__ == "__main__": + if (len(sys.argv) != 5): + print 'Proper usage is python createSchemaFromTemplate.py schema_label schema_sql_template_file configfile intermediateResultsPath' + label = sys.argv[1] + template = sys.argv[2] + configfile = sys.argv[3] + resultsPath = sys.argv[4] + updateFromTemplate(label, template, configfile, resultsPath) + + diff --git a/src/dataimport/python/db_util.py b/src/dataimport/python/db_util.py new file mode 100755 index 0000000..3759fdf --- /dev/null +++ b/src/dataimport/python/db_util.py @@ -0,0 +1,195 @@ +#!/usr/bin/python +""" +Data import configuration and mysql settings +""" +import sys +#import numpy as np +#import pyentropy as pe +import ConfigParser +import MySQLdb +import math + +nucleotide_complement = {} +nucleotide_complement['A'] = 'T' +nucleotide_complement['C'] = 'G' +nucleotide_complement['G'] = 'C' +nucleotide_complement['T'] = 'A' + +""" +conn = MySQLdb.connect (host = myhost, + port = myport, + user = myuser, + passwd = mypw, + db = mydb) +cursor = conn.cursor() +""" + +def getConfig(path): + config = ConfigParser.RawConfigParser() + config.read(path) + return config + +#def getCancerTypes(config): +# return config.get("cancer_types", "list").split(',') + +def getCursor(config): + conn = MySQLdb.connect (host = getDBHost(config), + port = getDBPort(config), + user = getDBUser(config), + passwd = getDBPassword(config), + db = getDBSchema(config)) + return conn.cursor() + +def getDBHost(config): + return config.get("mysql_configs", "host") #myhost + +def getDBPort(config): + return int(config.get("mysql_configs", "port")) #myport + +def getDBSchema(config): + return config.get("mysql_configs", "db") + +def getDBUser(config): + return config.get("mysql_configs", "username") + +def getDBPassword(config): + return config.get("mysql_configs", "password") + +""" +def getImportanceCutoff(config): + return config.getfloat("cutoff", "importance") + +def getLoggedPVCutoff(config): + return config.getint("cutoff", "loggedpvalue") +""" + +def getSolrPath(config): + return config.get("solr_configs","solrpath") + +def getDoSmtp(config): + return config.get("notification", "dosmtp") + +def getNotify(config): + return config.get("notification", "notify").split(',') + +def getDoPubcrawl(config): + return config.get("pubcrawl", "dopubcrawl") + +def getPubcrawlContact(config): + return config.get("pubcrawl", "pubcrawl_contact").split(',') + +def executeInsert(config, sqlStr): + #print sqlStr + rc = getCursor(config).execute(sqlStr) + #print "executed %s rc %i" %(sqlStr, rc) + return rc + +def executeSelect(config, sqlStr): + cursor = getCursor(config) + rc = cursor.execute(sqlStr) + #print "executed %s rc %i" %(sqlStr, rc) + return cursor.fetchall() + +def executeUpdate(sqlStr): + pass + +def transGeneFeature(gene): + return missing_coordinate_hash.get(gene) + +def transPhenoFeature(phenoFeature): + return phenoFeature + '::::' + +def transComplement(seq): + #print seq + #rev = seq[::-1] + complement = '' + for r in seq[::-1]: + complement = complement + nucleotide_complement.get(r) + return complement + +def isAntisense(gene): + return antisense_genes_hash.get(gene) + +def isUnmappedAssociation(f1alias, f2alias): + """ + Classify edges as unmapped if both nodes do not have chr positions + """ + f1data = f1alias.split(":") + f2data = f2alias.split(":") + if (len(f1data) < 4 or len(f2data) < 4): + return False + f1source = f1data[1] + f1chr = f1data[3] + f2source = f2data[1] + f2chr = f2data[3] + + if (f1chr == "" and f2chr == ""): + return True + + """ + if (f1chr == "" and (f1source != "CLIN" and f1source != "SAMP")): + if (f2source != "CLIN" and f2source != "SAMP"): + return True + if (f2chr == "" and (f2source != "CLIN" and f2source != "SAMP")): + if (f1source != "CLIN" and f1source != "SAMP"): + return True + """ + return False + + +#def calculateMutualInformation(feature1values, feature2values, range1, range2): +# s = pe.DiscreteSystem(feature1values, range1, feature2values, range2) +# s.calculate_entropies(method='plugin', calc=['HX','HXY']) +# return s.I() + +def is_numeric(val): + try: + float(val) + except ValueError, e: + return False + return True + +""" +def is_numeric(lit): + 'Return value of numeric literal string or ValueError exception' + # Handle '0' + if lit == '0': return 0 + # Hex/Binary + litneg = lit[1:] if lit[0] == '-' else lit + if litneg[0] == '0': + if litneg[1] in 'xX': + return int(lit,16) + elif litneg[1] in 'bB': + return int(lit,2) + else: + try: + return int(lit,8) + except ValueError: + pass + + # Int/Float/Complex + try: + return int(lit) + except ValueError: + pass + try: + return float(lit) + except ValueError: + pass + print lit + return -1 +""" + +#quick function to tell sign of int +sign = lambda x: math.copysign(1, x) + +negative = lambda x: -1*(x) +#round(-1*(math.log10(pvalue)),3)) +negative_log10 = lambda x: round(-1*(math.log10(x)),3) +absolute = lambda x: abs(x) +reflective = lambda x: (x) + +if __name__ == "__main__": + configfile = sys.argv[1] + config = getConfig(configfile) #config.read(configfile) + #executeSelect(config, "select * from tcga.regulome_explorer_dataset") diff --git a/src/dataimport/python/drop_dataset.py b/src/dataimport/python/drop_dataset.py new file mode 100644 index 0000000..acff7a8 --- /dev/null +++ b/src/dataimport/python/drop_dataset.py @@ -0,0 +1,79 @@ +import sys +import db_util +import os + +def getDatasets(config): + rows = db_util.executeSelect(config, "select label, method, dataset_date, comments from regulome_explorer_dataset") + return rows + +def executeDrop(schemafile_path, config): + cmd = "mysql -h %s --port %s -u%s -p%s < %s" %(db_util.getDBHost(config), db_util.getDBPort(config), db_util.getDBUser(config), db_util.getDBPassword(config), schemafile_path) + #print "Dropping label %s" %(cmd) + os.system(cmd) + print "Dropped label %s" %schemafile_path + +def deleteSolrDataset(label, config): + for i in range(0,8): + cmd = "curl '" + config.get("solr_configs","solrpath") + "/core" + str(i) + "/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + label + "\"'" + print cmd + os.system(cmd) + print "Deleted solr dataset {:s} from core {:d}".format(label,i) + +def prepDropLabel(label): + + templatefile = open("../sql/drop_ds_template.sql", "r") + tlines = templatefile.read() + ds_lines = tlines.replace("#REPLACE#", label) + ds_name = templatefile.name.replace("template", label) + ds_name = ds_name.replace("sql", "sql_processing", 1) + ds_file = open(ds_name, "w") + ds_file.write("use %s;\n" %(db_util.getDBSchema(config))) + ds_file.write(ds_lines) + ds_file.close() + templatefile.close() + return ds_file.name + +def removeDropFile(filename): + os.remove(filename) + +def loadConfig(env): + configFile = "" + if (env == "internal"): + configFile = "../config/rfex_sql_sandbox.config" + elif (env == "prod-giza"): + configFile = "../config/rfex_sql.config" + elif (env == "prod-breve"): + configFile = "../config/rfex_sql_breve.config" + elif (env == "gdac"): + configFile = "../config/rfex_sql_gdac.config" + else: + print "The env selected is invalid " + env + sys.exit(-1) + config = db_util.getConfig(configFile) + return config + +if __name__=="__main__": + ds_env = raw_input("Deleting datasets, Please enter one of the following: [internal(isb), gdac, prod-giza, prod-breve]\n") + config = (loadConfig(ds_env)) + datasets = getDatasets(config) + if (datasets != None): + print "\nHere are the available datasets\nds_label\tmethod\tdate\tcomments" + mylist = [] + for l in datasets: + print "\t".join(l[0:4]) + mylist.append(l[0]) + ds = raw_input("Enter dataset label to drop from db, for > 1 separate the datasets by comma\n") + if (ds != None and len(ds) > 1): + drop_list = ds.split(",") + if ("".join(mylist).find("".join(drop_list)) == -1 ): + print "\nExiting - Your datasets are not in existing dataset list, must be exact!\n" + sys.exit(-1) + for label in drop_list: + dropFile = prepDropLabel(label) + executeDrop(dropFile, config) + removeDropFile(dropFile) + deleteSolrDataset(label, config) + + else: + print "Exiting" + sys.exit(-1) \ No newline at end of file diff --git a/src/dataimport/python/filterAssociationsByPvalue.py b/src/dataimport/python/filterAssociationsByPvalue.py new file mode 100755 index 0000000..dea50d1 --- /dev/null +++ b/src/dataimport/python/filterAssociationsByPvalue.py @@ -0,0 +1,23 @@ +import os +import sys +import time + +def main(pvalue, associationsFile, dataset_label): + print "Kicking off job %s to include records pvalue<%s from %s" %(time.ctime(), pvalue, associationsFile) + associationOpened = open(associationsFile, 'r') + associationOut = open(associationsFile.split(".")[0] + '_' + dataset_label + '_pv_' + pvalue + ".tsv", 'w') + signiRecs = 0 + for line in associationOpened: + tokens = line.split('\t') + if (float(tokens[2]) < float(pvalue)): + associationOut.write(line) + signiRecs = signiRecs + 1 + associationOpened.close() + associationOut.close() + print "found %i significant records\nsaved results to %s\n job ended at %s" % (signiRecs, associationOut.name, time.ctime()) + +if __name__=="__main__": + if (len(sys.argv) != 4): + print 'usage python filterAssociationsByPvalue.py pvalue_cutoff in_assocations.file label' + sys.exit(1) + main(sys.argv[1], sys.argv[2], sys.argv[3]) diff --git a/src/dataimport/python/fix_datasets.py b/src/dataimport/python/fix_datasets.py new file mode 100644 index 0000000..ea54826 --- /dev/null +++ b/src/dataimport/python/fix_datasets.py @@ -0,0 +1,56 @@ +import sys +import db_util +import os + +def getDatasets(config): + rows = db_util.executeSelect(config, "select label, method, dataset_date, comments from regulome_explorer_dataset") + return rows + +def dropviews(label): + + tlines="DROP TABLE IF EXISTS #REPLACE#_feature_pathways" + ds_lines = tlines.replace("#REPLACE#", label) + print ds_lines + cmd = "mysql -h %s --port %s -u%s -p%s -e \"%s\" %s" %(db_util.getDBHost(config), db_util.getDBPort(config), db_util.getDBUser(config), db_util.getDBPassword(config), ds_lines, db_util.getDBSchema(config)) + os.system(cmd); + + +def fix(label): + + tlines="""DROP VIEW IF EXISTS v_#REPLACE#_feature_categorical_labels; + CREATE VIEW v_#REPLACE#_feature_categorical_labels as + SELECT DISTINCT label, alias, source, interesting_score from #REPLACE#_features where source = 'CLIN' + UNION SELECT DISTINCT label, alias, source, interesting_score from #REPLACE#_features where source = 'SAMP' + UNION SELECT DISTINCT label, alias, source, interesting_score from #REPLACE#_features where source = 'PRDM'; + """ + ds_lines = tlines.replace("#REPLACE#", label) + print ds_lines + cmd = "mysql -h %s --port %s -u%s -p%s -e \"%s\" %s" %(db_util.getDBHost(config), db_util.getDBPort(config), db_util.getDBUser(config), db_util.getDBPassword(config), ds_lines, db_util.getDBSchema(config)) + os.system(cmd) + +def removeHideFile(filename): + os.remove(filename) + +def loadConfig(env): + configFile = "" + if (env == "internal"): + configFile = "../config/rfex_sql_sandbox.config" + elif (env == "prod-giza"): + configFile = "../config/rfex_sql.config" + elif (env == "prod-breve"): + configFile = "../config/rfex_sql_breve.config" + elif (env == "gdac"): + configFile = "../config/rfex_sql_gdac.config" + else: + print "The env selected is invalid " + env + sys.exit(-1) + config = db_util.getConfig(configFile) + return config + +if __name__=="__main__": + ds_env = raw_input("Changing visibility of datasets, Please enter one of the following: [internal(isb), gdac, prod-giza, prod-breve]\n") + config = (loadConfig(ds_env)) + datasets = getDatasets(config) + for set in datasets: + print set[0] +# dropviews(set[0]) diff --git a/src/dataimport/python/getPairwiseInfo.py b/src/dataimport/python/getPairwiseInfo.py new file mode 100644 index 0000000..3203dad --- /dev/null +++ b/src/dataimport/python/getPairwiseInfo.py @@ -0,0 +1,76 @@ +#creates output of rface edge values +__author__='aeakin' +import sys +import MySQLdb +import getopt +import ConfigParser + + +def usage(): + print "python getPairwiseInfo.py -i inputFile -o fileName"; + print "-i filename that contains input pairwise association data"; + print "-o prefix that should be used for output file"; + +def usage_error(): + print "Incorrect Arguments." + usage(); + +def getNode(featureid): + featureInfo=featureid.split(":"); + + if(featureInfo[1].lower()=="gexp" or featureInfo[1].lower() == "meth"): + return featureInfo[2].lower(); + if(featureInfo[1].lower()=="gnab"): + index=featureInfo[2].rpartition("_"); + if(index[0]==""): + return index[2].lower(); + else: + return index[0].lower(); + +def processLine(line,outFile): + rfaceInfo=line.strip().split("\t"); + sourceNode=getNode(rfaceInfo[0]); + targetNode=getNode(rfaceInfo[1]); + + if(sourceNode==None or targetNode==None or sourceNode=="" or targetNode==""): + return; + + if(rfaceInfo[4]=="-inf"): + pvalue="-1000"; + else: + pvalue=rfaceInfo[4]; + + outFile.writelines(sourceNode + "\t" + targetNode + "\t" + rfaceInfo[0] + "\t" + rfaceInfo[1] + "\t" + pvalue + "\t" + rfaceInfo[2] + "\t" + rfaceInfo[3] + "\n"); + return; + + + + +if __name__ == "__main__": + try: + optlist, args=getopt.getopt(sys.argv[1:],'i:o:') + except: + usage_error(); + exit(1); + + fileString=""; + inputFileString=""; + for option in optlist: + if(option[0] == '-o'): + fileString = option[1]; + if(option[0] == '-i'): + inputFileString = option[1]; + + if(fileString=="" or inputFileString==""): + usage_error(); + exit(1); + + + inputFile=open(inputFileString,"r"); + outFile=open(fileString+".txt","w"); + outFile.writelines("source\ttarget\tfeatureid1\tfeatureid2\tpvalue\tcorrelation\tcount\n"); + for line in inputFile: + processLine(line,outFile); + + inputFile.close(); + outFile.close(); diff --git a/src/dataimport/python/getRFACEInfo.py b/src/dataimport/python/getRFACEInfo.py new file mode 100644 index 0000000..8a23ef3 --- /dev/null +++ b/src/dataimport/python/getRFACEInfo.py @@ -0,0 +1,75 @@ +#creates output of rface edge values +__author__='aeakin' +import sys +import MySQLdb +import getopt +import ConfigParser + + +def usage(): + print "python getRFACEInfo.py -i inputFile -o fileName"; + print "-i filename that contains input RFACE data"; + print "-o prefix that should be used for output file"; + +def usage_error(): + print "Incorrect Arguments." + usage(); + +def getNode(featureid): + featureInfo=featureid.split(":"); + + if(featureInfo[1].lower()=="gexp" or featureInfo[1].lower() == "meth"): + return featureInfo[2].lower(); + if(featureInfo[1].lower()=="gnab"): + index=featureInfo[2].rpartition("_"); + if(index[0]==""): + return index[2].lower(); + else: + return index[0].lower(); + +def processLine(line,outFile): + rfaceInfo=line.strip().split("\t"); + sourceNode=getNode(rfaceInfo[1]); + targetNode=getNode(rfaceInfo[0]); + + if(sourceNode==None or targetNode==None or sourceNode=="" or targetNode==""): + return; + + if(rfaceInfo[2]=="-inf"): + pvalue="-1000"; + else: + pvalue=rfaceInfo[2]; + + outFile.writelines(sourceNode + "\t" + targetNode + "\t" + rfaceInfo[1] + "\t" + rfaceInfo[0] + "\t" + pvalue + "\t" + rfaceInfo[3] + "\t" + rfaceInfo[4] + "\n"); + return; + + + + +if __name__ == "__main__": + try: + optlist, args=getopt.getopt(sys.argv[1:],'i:o:') + except: + usage_error(); + exit(1); + + fileString=""; + inputFileString=""; + for option in optlist: + if(option[0] == '-o'): + fileString = option[1]; + if(option[0] == '-i'): + inputFileString = option[1]; + + if(fileString=="" or inputFileString==""): + usage_error(); + exit(1); + + inputFile=open(inputFileString,"r"); + outFile=open(fileString+".txt","w"); + outFile.writelines("source\ttarget\tfeatureid1\tfeatureid2\tpvalue\timportance\tcorrelation\n"); + for line in inputFile: + processLine(line,outFile); + + inputFile.close(); + outFile.close(); diff --git a/src/dataimport/python/hide_dataset.py b/src/dataimport/python/hide_dataset.py new file mode 100644 index 0000000..f888f5f --- /dev/null +++ b/src/dataimport/python/hide_dataset.py @@ -0,0 +1,80 @@ +import sys +import db_util +import os + +def getDatasets(config): + rows = db_util.executeSelect(config, "select label, method, dataset_date, comments from regulome_explorer_dataset") + return rows + +def executeHide(schemafile_path, config): + cmd = "mysql -h %s --port %s -u%s -p%s < %s" %(db_util.getDBHost(config), db_util.getDBPort(config), db_util.getDBUser(config), db_util.getDBPassword(config), schemafile_path) + #print "Changing label %s" %(cmd) + os.system(cmd) + print "Changed label %s" %schemafile_path + +def prepHideLabel(label, method): + + templatefile = open("../sql/hide_ds_template.sql", "r") + tlines = templatefile.read() + ds_lines = tlines.replace("#REPLACE#", label) + ds_lines = ds_lines.replace("#METHOD#", method) + ds_name = templatefile.name.replace("template", label) + ds_name = ds_name.replace("sql", "sql_processing", 1) + ds_file = open(ds_name, "w") + ds_file.write("use %s;\n" %(db_util.getDBSchema(config))) + ds_file.write(ds_lines) + ds_file.close() + templatefile.close() + return ds_file.name + +def removeHideFile(filename): + os.remove(filename) + +def loadConfig(env): + configFile = "" + if (env == "internal"): + configFile = "../config/rfex_sql_sandbox.config" + elif (env == "prod-giza"): + configFile = "../config/rfex_sql.config" + elif (env == "prod-breve"): + configFile = "../config/rfex_sql_breve.config" + elif (env == "gdac"): + configFile = "../config/rfex_sql_gdac.config" + else: + print "The env selected is invalid " + env + sys.exit(-1) + config = db_util.getConfig(configFile) + return config + +if __name__=="__main__": + ds_env = raw_input("Changing visibility of datasets, Please enter one of the following: [internal(isb), gdac, prod-giza, prod-breve]\n") + config = (loadConfig(ds_env)) + datasets = getDatasets(config) + if (datasets != None): + print "\nHere are the available datasets\nds_label\tmethod\tdate\tcomments" + mylist = [] + for l in datasets: + print "\t".join(l[0:4]) + mylist.append(l[0]) + ds = raw_input("Enter dataset label to drop from db, for > 1 separate the datasets by comma\n") + if (ds != None and len(ds) > 1): + hide_list = ds.split(",") + if ("".join(mylist).find("".join(hide_list)) == -1 ): + print "\nExiting - Your datasets are not in existing dataset list, must be exact!\n" + sys.exit(-1) + for label in hide_list: + method = [x for x in datasets if x[0] == label][0][1] + if method == "hidden": + print "\n" + label + " is currently set to hidden." + method = "pairwise" + print "\nChanging " + label + " to be visible\n" + else: + print "\n" + label + " is currently set to visible." + method = "hidden" + print "\nChanging " + label + " to be hidden\n" + hideFile = prepHideLabel(label, method) + executeHide(hideFile, config) + removeHideFile(hideFile) + else: + print "Exiting" + sys.exit(-1) diff --git a/src/dataimport/python/manage_pathways.py b/src/dataimport/python/manage_pathways.py new file mode 100755 index 0000000..a0ef4e6 --- /dev/null +++ b/src/dataimport/python/manage_pathways.py @@ -0,0 +1,56 @@ +""" +Script to manage RE pathways +Script will prompt user for pathway info for adding or removal +""" +import sys +import time +import db_util +import os + +def loadConfig(env): + configFile = "" + if (env == "internal"): + configFile = "../config/rfex_sql_sandbox.config" + elif (env == ""): + configFile = "../config/rfex_sql.config" + elif (env == "gdac"): + configFile = "../config/rfex_sql_gdac.config" + else: + print "The env selected is invalid " + env + sys.exit(-1) + config = db_util.getConfig(configFile) + return config + +if __name__=="__main__": + ds_env = raw_input("Managing pathways; which db? Please enter one of the following: [internal(isb), gdac(isb), tut]\n") + config = (loadConfig(ds_env)) + operation = raw_input("ADD or DELETE pathways?(required)\n") + pathwayname = raw_input("Enter pathway name(required)\n") + pathwaysource = raw_input("Enter pathway source(required but custom okay)\n") + + if (len(pathwayname) < 1 or len(pathwaysource) < 1): + print "Invalid pathway defined, check your inputs" + sys.exit(-1) + if (operation.upper() == "ADD"): + pathwaymembers = raw_input("Enter pathway members(required and comma separated) e.g.\nTP53,GENE1,GENE2...\n") + pathwayurl = raw_input("Enter pathway source url(optional)\n") + + if (len(pathwaymembers) < 1): + print "Invalid pathway defined, check your inputs" + sys.exit(-1) + #print "name %s\n members %s\n source %s\n url%s" %(pathwayname, pathwaymembers, pathwaysource, pathwayurl) + insertSql = "insert into random_forest.pathways values('%s', '%s', '%s', '%s')" %(pathwaysource, pathwayname, pathwayurl,pathwaymembers) + rc = db_util.executeInsert(config, insertSql) + if (rc >= 0): + print "%s added" %pathwayname + else: + print "Problems with adding - return code is %i" % rc + elif (operation.upper() == "DELETE"): + deleteSql = "delete from random_forest.pathways where pname = '%s' and psource = '%s'" %(pathwayname, pathwaysource) + rc = db_util.executeInsert(config, deleteSql) + if (rc >= 0): + print "%s removed" %pathwayname + else: + print "Problems with deleting - return code is %i" % rc + else: + print "operation %s not supported" %(operation) diff --git a/src/dataimport/python/parse_aggressiveness_features.py b/src/dataimport/python/parse_aggressiveness_features.py new file mode 100755 index 0000000..158beba --- /dev/null +++ b/src/dataimport/python/parse_aggressiveness_features.py @@ -0,0 +1,209 @@ +#!/usr/bin/python +""" +Processing features from in data_matrix and gexp interesting. Sample values and identifiers will also be extracted. +The required dataset label indicates the set of schemas. +""" +import sys +import os +import time +import math +import decimal +import db_util + +mydb = db_util.getDBSchema() #config.get("mysql_jdbc_configs", "db") +myuser = db_util.getDBUser() #config.get("mysql_jdbc_configs", "username") +mypw = db_util.getDBPassword() #config.get("mysql_jdbc_configs", "password") +myhost = db_util.getDBHost() +myport = db_util.getDBPort() + + +features_hash = {} +edges_hash = {} +gene_interesting_hash = {} +dataset_label = "" +load_desc = "" +feature_table = "" +sample_table = "" +feature_table_label = "tcga.gbm_pw" +def is_numeric(val): + try: + float(val) + except ValueError, e: + return False + return True + +if (not os.path.exists("./results")): + os.system("mkdir results") + +def reset_sql_tables(sqlfile): + """ + mysql -uuser -ppassword < $sql_file + """ + cmd = "mysql -h %s --port %s -u%s -p%s < %s" %(myhost, myport, myuser, mypw, sqlfile) + print "Running system call %s" %(cmd) + os.system(cmd) + +def process_feature_alias(alias): + data = alias.split(':') + if len(data) > 4 and len(data[3]) > 3: + data[3] = data[3][3:] + return data + +def process_feature_aggressiveness(matrix_file, table_name, dognab): + global features_hash, dataset_label + feature_matrix_file = open(matrix_file) + feature_table = table_name + fshout = open('./results/load_features_' + dataset_label + '.sh','w') + outfile = open('./results/features_out_' + dataset_label + '.tsv','w') + nazfile = open('./results/na_zero_features_aggressiveness.tsv', 'w') + featureId = 0 + naz = 0 + decimal.getcontext().prec = 3 + decimal.getcontext().rounding = decimal.ROUND_UP + gnabhash = {} + if (dognab): + gnab_file = open("/titan/cancerregulome9/workspaces/users/vthorsson/ClinicalCorrelatesCRC/FeatureLists/06oct.rnaseq/gnabfeats_coords_mapping_file.tsv") + for line in gnab_file: + line = line.rstrip() + gspl = line.split("\t") + gnabhash[gspl[0]] = gspl[1] + gnab_file.close() + print "gnabhash keys %i" %(len(gnabhash)) + + for line in feature_matrix_file: + if (featureId == 0): + featureId += 1 + continue + line = line.strip() + tokens = line.split('\t') + if (not features_hash.get(tokens[0])): + features_hash[tokens[0]] = featureId + alias = tokens[0] + data = alias.split(':') + if ((alias.find(":GNAB:") == 1) and dognab): + #print "GNAB " + alias + alias = gnabhash.get(alias) + data = alias.split(":") + if len(data) > 4 and len(data[3]) > 3: + data[3] = data[3][3:] + #METH, use start pos for end pos + if (data[1] == "METH"): + data[5] = data[4] + + signed = tokens[2] + spv = tokens[1] + floorlogged_pv = 0 + if (signed != "0" and signed != "NA"): + if (spv == "0"): + spv = "1e-16" + fpv = math.log10(float(spv)) + logged_pv = str(decimal.Decimal(str(fpv))*decimal.Decimal("-1") ) + outfile.write(dataset_label + "\t" + alias + "\t" + "\t".join(data) + "\t" + spv + "\t" + tokens[2] + "\t" + logged_pv + "\n") + else: + nazfile.write(line + "\n") + naz += 1 + else: + print "duplicated feature in feature set:" + tokens[0] + featureId += 1 + feature_matrix_file.close() + outfile.close() + fshout.write("#!/bin/bash\n") + #"mysql -h %s --port %s -u%s -p%s < %s" %(myhost, myport, myuser, mypw, sqlfile) + fshout.write("mysql -h %s --port %s --user=%s --password=%s --database=%s<B if B->A are in hash + Expected tab delimited columns are nodeA nodeB pvalue correlation numNonNA + """ + global features_hash, dataset_label, edges_hash + circin_file = open(pairwised_file) + cca_table = table_name + efshout = open('./results/load_edges_' + dataset_label + '.sh','w') + edges_out_tsv = open('./results/edges_out_' + dataset_label + '.tsv','w') + validEdgeId = 1 + dupeEdges = 0 + totalEdges = 0 + decimal.getcontext().prec = 3 + decimal.getcontext().rounding = decimal.ROUND_UP + for line in circin_file: + totalEdges += 1 + line = line.strip() + tokens = line.split('\t') + nodeA = tokens[0] + nodeA = nodeA.replace('|', '_') + nodeB = tokens[1] + nodeB = nodeB.replace('|', '_') + if (features_hash.get(tokens[0]) and features_hash.get(tokens[1])): + if (not edges_hash.get(nodeA + "_" + nodeB) and not edges_hash.get(nodeA + "_" + nodeB)): + edges_hash[nodeA + "_" + nodeB] = validEdgeId + validEdgeId += 1 + #add edge info into file, tokenized nodeA and nodeB + dataA = process_feature_alias(nodeA) + dataB = process_feature_alias(nodeB) + if (len(dataA) == 7): + dataA.append("") + nodeA = nodeA + ":" + if (len(dataB) == 7): + dataB.append("") + nodeB = nodeB + ":" + pv = tokens[2] + floorlogged_pv = float(pv[1:len(pv)]) + signval = tokens[3] + score = str(floorlogged_pv) + if (signval == '-'): + score = "-" + score + if (pv != "0" and pv == "NA"): + fpv = math.log10(float(pv)) + logged_pv = str(decimal.Decimal(str(l))*decimal.Decimal("-1") ) + edges_out_tsv.write(load_desc + "\t" + nodeA + "\t" + "\t".join(dataA) + "\t" + nodeB + "\t" + "\t".join(dataB) + "\t" + score + "\t" + tokens[4] + "\t" + tokens[5] + "\t" + str(logged_pv) + "\t" + signval + "\n") + edges_out_tsv.write(load_desc + "\t" + nodeB + "\t" + "\t".join(dataB) + "\t" + nodeA + "\t" + "\t".join(dataA) + "\t" + score + "\t" + tokens[4] + "\t" + tokens[5] + "\t" + str(logged_pv) + "\t" + signval + "\n") + else: + print "Invalid edge, not found in feature matrix:" + nodeA + "_" + nodeB + dupeEdges += 1 + print "Valid Edges %i Duped %i Total %i " % (validEdgeId-1, dupeEdges, totalEdges) + circin_file.close() + edges_out_tsv.close() + efshout.write("#!/bin/bash\n") + efshout.write("mysql -h %s --port %s --user=%s --password=%s --database=%s< 4: + f1data[3] = f1data[3][3:] + if len(f2data) > 4: + f2data[3] = f2data[3][3:] + + if (len(f1data) <= 7 and (f1data[1] == 'CLIN' or f1data[1] == 'SAMP')): + f1alias = ":".join(f1data[0:3]) + ":::::" + f1data = f1alias.split(':') + elif (len(f1data) == 7): + f1data.append("") + if (len(f2data) <= 7 and (f2data[1] == 'CLIN' or f2data[1] == 'SAMP')): + f2alias = ":".join(f2data[0:3]) + ":::::" + f2data = f2alias.split(':') + elif (len(f2data) == 7): + f2data.append("") + f1aliasOmic = f1alias + f2aliasOmic = f2alias + #for annotations + try: + f1id = features_hash[f1alias][0] + except KeyError: + try: + f1id = aliasid_hash[f1alias][1] + f1aliasOmic = aliasid_hash[f1alias][2] + f1data = f1aliasOmic.split(':') + f1data[3] = f1data[3][3:] + except KeyError: + print "Skipping Key error with alias1 " + f1alias + continue + + try: + f2id = features_hash[f2alias][0]#f2alias.split(":")[-1] + except KeyError: + try: + f2id = aliasid_hash[f2alias][1] + f2aliasOmic = aliasid_hash[f2alias][2] + f2data = f2aliasOmic.split(':') + f2data[3] = f2data[3][3:] + except KeyError: + print "Skipping Key error with alias2 " + f2alias + continue + + pvalue = float(columns[2]) + pvalue = str(pv_lambda(pvalue)) + + importance = columns[3] + correlation = columns[4] + patientct = columns[5] + if (db_util.isUnmappedAssociation(f1alias, f2alias) and keep_unmapped == 0): + unmappedout.write(f1alias + "\t" + f2alias + "\n") + unMapped += 1 + continue + rhoscore = "" + link_distance = -1 + if (len(f1data) >=5 and len(f2data)>=5 and db_util.is_numeric(f1data[4]) >= 1 and db_util.is_numeric(f2data[4]) >= 1 and f1data[3] == f2data[3]): + link_distance = abs(int(f2data[4]) - int(f1data[4])) + if (collapse_direction == 0): + associations_dic[f1afm_id + "_" + f2afm_id] = f1aliasOmic + "\t" + f2aliasOmic + "\t" + pvalue + "\t" + importance + "\t" + correlation + "\t" + patientct + "\t" + f1id + "\t" + "\t".join(f1data) + "\t" + f2id + "\t" + "\t".join(f2data) + "\t" + str(f1genescore) + "\t" + str(f2genescore) + "\t" + rhoscore + "\t" + str(link_distance) + "\n" + else: + #check whether (f1 -> f2 or f2 -> f1) exists, if yes, take the more important + #if not, store pair + if ((associations_dic.get(f1afm_id + "_" + f2afm_id) == None) and (associations_dic.get(f2afm_id + "_" + f1afm_id) == None)): + associations_dic[f1afm_id + "_" + f2afm_id] = f1aliasOmic + "\t" + f2aliasOmic + "\t" + pvalue + "\t" + importance + "\t" + correlation + "\t" + patientct + "\t" + f1id + "\t" + "\t".join(f1data) + "\t" + f2id + "\t" + "\t".join(f2data) + "\t" + str(f1genescore) + "\t" + str(f2genescore) + "\t" + rhoscore + "\t" + str(link_distance) + "\n" + else: + existingLink = associations_dic.get(f1afm_id + "_" + f2afm_id) + ekey = f1afm_id + "_" + f2afm_id + if (existingLink == None): + existingLink = associations_dic.get(f2afm_id + "_" + f1afm_id) + ekey = f2afm_id + "_" + f1afm_id + prevImportance = existingLink.split("\t")[3] + if (float(importance) > float(prevImportance)): + associations_dic[ekey] = f1aliasOmic + "\t" + f2aliasOmic + "\t" + pvalue + "\t" + importance + "\t" + correlation + "\t" + patientct + "\t" + f1id + "\t" + "\t".join(f1data) + "\t" + f2id + "\t" + "\t".join(f2data) + "\t" + str(f1genescore) + "\t" + str(f2genescore) + "\t" + rhoscore + "\t" + str(link_distance) + "\n" + if (reverse_direction == 1): + associations_dic[f2afm_id + "_" + f1afm_id] = f2aliasOmic + "\t" + f1aliasOmic + "\t" + pvalue + "\t" + importance + "\t" + correlation + "\t" + patientct + "\t" + f2id + "\t" + "\t".join(f2data) + "\t" + f1id + "\t" + "\t".join(f1data) + "\t" + str(f2genescore) + "\t" + str(f1genescore) + "\t" + rhoscore + "\t" + str(link_distance) + "\n" + edgeCount = edgeCount + 1 + edgeCount = edgeCount + 1 + if (do_pubcrawl == "yes"): + getRFACEInfo.processLine(line, pubcrawl_tsvout) + pcc += 1 + for ei in associations_dic: + tsvout.write(associations_dic[ei]) + fshout.write("#!/bin/bash\n") + fshout.write("mysql -h %s --port %s --user=%s --password=%s --database=%s<dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core1/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core2/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core3/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core4/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core5/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core6/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core7/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core0/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core0_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core1/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core1_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core2/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core2_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core3/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core3_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core4/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core4_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core5/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core5_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core6/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core6_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core7/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core7_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.close() + print "Begin rface solr upload " + time.ctime() + os.system("sh " + solrshout.name) + + if (do_pubcrawl == 'yes'): + smtp.main("re@systemsbiology.net", contacts, "Notification - New RFAce " + dataset_label + " Associations for PubCrawl", "New RFAce associations ready for PubCrawl load\n" + pubcrawl_tsvout.name + "\n" + str(pcc) + " Total Edges\n" + tsvout.name + " loaded into RegulomeExplorer, dataset label is " + dataset_label + "\n\n") + print "Done processing associations %s" %(time.ctime()) + associations_dic = None + +def main(dataset_label, featuresfile, associationsfile, configfile, annotations, collapse_direction, reverse_direction, results_path, pvalueRepresentation, do_pubcrawl, contacts, keep_unmapped, featureInterestingFile): + print "\n in parse_associations_rfex : dataset_label = <%s> \n" % dataset_label + pvlambda = db_util.reflective + if (pvalueRepresentation == "negative"): + pvlambda = db_util.negative + elif (pvalueRepresentation == "negative_log10"): + pvlambda = db_util.negative_log10 + elif (pvalueRepresentation == "absolute"): + pvlambda = db_util.absolute + + process_associations_rfex(dataset_label, featuresfile, associationsfile, config, annotations, collapse_direction, reverse_direction, results_path, pvlambda, do_pubcrawl, contacts, int(keep_unmapped), featureInterestingFile) + + +if __name__ == "__main__": + print "Parsing features kicked off %s" %time.ctime() + if (len(sys.argv) < 13): + print 'ERROR: Usage is python2.5+ parse_associations_rfex.py feature_matrix.tsv edges_matrix.tsv dataset_label configfile annotationsFile doCollapseEdges doReverse resultsPath pvalueRepresentation doPubcrawl pubcrawlContact keepUnmapped' + sys.exit(1) + insert_features = 0 + args = sys.argv + matrixfile = args[1] + associationsfile = args[2] + dataset_label = sys.argv[3] + configfile = args[4] + annotations = args[5] + collapse_direction = int(args[6]) + reverse_direction = int(args[7]) + results_path = args[8] + pvalueRep = args[9] + config = db_util.getConfig(configfile) + featureInterestingFile = "" + if (len(args) == 14): + featureInterestingFile = args[13] + if (not os.path.isfile(associationsfile)): + print associationsfile + " does not exist; unrecoverable ERROR" + sys.exit(-1) + main(dataset_label, matrixfile, associationsfile, config, annotations, collapse_direction, reverse_direction, results_path, pvalueRep, args[10], args[11], args[12], featureInterestingFile) + + diff --git a/src/dataimport/python/parse_features_rfex.py b/src/dataimport/python/parse_features_rfex.py new file mode 100755 index 0000000..0ffa589 --- /dev/null +++ b/src/dataimport/python/parse_features_rfex.py @@ -0,0 +1,229 @@ +#!/usr/bin/python +""" +Processing features from in data_matrix and gexp interesting. Sample values and identifiers will also be extracted. +The required dataset label indicates the set of schemas. +""" +import db_util +import sys +import os +import time + +features_hash = {} +interesting_hash = {} +dataset_label = "" +feature_table = "" +sample_table = "" + +if (not os.path.exists("./results")): + os.system("mkdir results") + +#not being used right now +def populate_sample_meta(sampleList, config): + """ + sampleList needs to be a list of patients + """ + global dataset_label + labelTokens = dataset_label.split("_") + cancer_type = labelTokens[0] + clabel = "" + samColIndex = 0 + + for sam in sampleList: + #REPLACE INTO `tcga`.`SampleMeta` (sample_key,cancer_type,dataset_label,matrix_col_offset,meta_json) VALUES ('a' /*not nullable*/,'s' /*not nullable*/,'s' /*not nullable*/,0,'s'); + insertSampleSql = "replace into sample_meta (sample_key,cancer_type,dataset_label,matrix_col_offset,meta_json) values ('%s', '%s', '%s', '%i', '%s');" %(sam, cancer_type,clabel,samColIndex,"{age:X,status:someStatus,comments:some comments}") + db_util.executeInsert(config, insertSampleSql) + samColIndex += 1 + print "Done populating sample list for " + dataset_label + +def process_feature_annotations(annotation_path): + print "\nProcessing annotations %s \n" %(annotation_path) + annotation_hash = {} + feature_types = {} + if (annotation_path == "" or (not os.path.isfile(annotation_path))): + print "annotations path %s not defined or not a file " %(annotation_path) + return (annotation_hash, feature_types) + anno_file = open(annotation_path, "r") + #line 1 is headers + lc = 0 + for l in anno_file.readlines(): + if (lc == 0): + lc += 1 + continue + tk = l.strip().split("\t") + if (len(tk) >= 4 and len(tk[3]) < 3): + tk[3] = "chr" + tk[3] + annotation_hash[tk[0]] = l[0:1] + "\t" + "\t".join(tk[1:]) + "\t" + str(lc) + + if (feature_types.get(tk[1]) == None): + feature_types[tk[1]] = 1; + lc += 1 + anno_file.close() + print feature_types + return (annotation_hash, feature_types) + +def accumulate_summary_counts(summary_hash, feature_type): + if (summary_hash.get(feature_type) == None): + summary_hash[feature_type] = 1 + summary_hash[feature_type] = summary_hash[feature_type] + 1 + +def get_feature_interest_hash(results_file): + fIntHash = {} + if (results_file == ""): + return fIntHash + fIntReader = open(results_file, "r") + # lc = 0 + for line in fIntReader.readlines(): + #if (lc == 0): + # lc += 1 + # continue + tk = line.strip().split("\t") + fIntHash[tk[1]] = tk[-1] + fIntReader.close() + return fIntHash + +def process_feature_matrix(dataset_label, matrix_file, persist_sample_meta, config, annotations, quantileFeatures, results_path, interestingFile): + global features_hash + print ("processing feature set: matrix file %s annotation file %s"%(matrix_file, annotations)) + out_hash = {} + features_hash = {} + summary_hash = {} + mydb = db_util.getDBSchema(config) + myuser = db_util.getDBUser(config) + mypw = db_util.getDBPassword(config) + myhost = db_util.getDBHost(config) + myport = db_util.getDBPort(config) + if (not os.path.isfile(matrix_file)): + print "ERROR\n" + matrix_file + " does not exist; unrecoverable ERROR" + sys.exit(-1) + feature_matrix_file = open(matrix_file, "r") + feature_table = mydb + "." + dataset_label + "_features" + sample_table = mydb + "." + dataset_label + "_patients" + fshout = open(results_path + dataset_label + '_load_features.sh','w') + outfile = open(results_path + dataset_label + '_features_out.tsv','w') + alidfile = open(results_path + dataset_label + '_features_alias_id.tsv','w') + sampleOutfile = open(results_path + dataset_label + '_sample_values_out.tsv','w') + featureId = 0 + annotation_hash, ftypes = process_feature_annotations(annotations) + sub_afm_out = {} + for q in quantileFeatures.split(","): + sub_afm_out[q] = open(results_path + dataset_label + '_' + q + '.afm','w') + fIntHash = get_feature_interest_hash(interestingFile) + for line in feature_matrix_file: + tokens = line.strip().split('\t') + afmid = "" + ftype = "" + interesting_score = 0 + if (featureId == 0): + sampleIds = tokens + #not part of core function in RE import pipeline + #if (persist_sample_meta == 1): + # populate_sample_meta(sampleIds.split(":"), config) + #sampleOutfile.write(sampleIds + "\n"); + featureId += 1 + continue + if (not features_hash.get(tokens[0]) and len(tokens[0]) > 1): + valuesArray = [] + alias = tokens[0] + originalAFM = tokens[0] + data = alias.split(':') + if (len(data) < 4): + #afmid = alias + annotated_feature = annotation_hash.get(alias) + if (annotated_feature == None): + print "ERROR: AFM feature %s is not in annotation" %(alias) + sys.exit(-1) + #hasAnnotations = True + #put features in sub afm files for quantile calculation + ftype = annotated_feature.split("\t")[1] + alias = annotated_feature.replace("\t", ":") + featureId = int(alias.split(":")[-1]) + data = alias.split(':') + if (ftype == ""): + ftype = data[1] + afmid = alias + #if (fIntHash[alias] != None): + try: + interesting_score = fIntHash[originalAFM] + except KeyError: + #print "Key error with fInterestingHash " + alias + interesting_score = 0 + if (sub_afm_out.get(ftype) != None): + sub_afm_out[ftype].write(alias + "\t" + "\t".join(tokens[1:]) + "\n") + features_hash[tokens[0]] = featureId + if (len(data) <= 7): + if (data[1] == 'CLIN' or data[1] == 'SAMP'): + alias = ":".join(data[0:3]) + ":::::" + data = alias.split(':') + else: + data.append("") + if len(data[3]) > 3: + data[3] = data[3][3:] + patient_values = ":".join(tokens[1:]) + for val in tokens[1:]: + if (db_util.is_numeric(val)): + valuesArray.append(float(val)) + else: + valuesArray.append(0.0) + #make sure that the number patient ids match values + if (featureId == 1): + start = len(sampleIds) - len(valuesArray) + sampleStr = ":".join(sampleIds[start:]) + sampleOutfile.write(sampleStr + "\n"); + + patient_value_mean = sum(valuesArray)/len(valuesArray) + accumulate_summary_counts(summary_hash,data[1]) + alidfile.write(originalAFM + "\t" + str(featureId) + "\t" + alias + "\n") + out_hash[afmid] = str(featureId) + "\t" + alias + "\t" + "\t".join(data) + "\t" + patient_values + "\t" + str(patient_value_mean) + "\t" + str(interesting_score) + else: + print "duplicated feature in feature set:" + tokens[0] + featureId += 1 + for val in out_hash.values(): + outfile.write(val + "\n") + + summary_out = open(resultsPath + "feature_summary_" + dataset_label + ".json", "w") + summary_json = "{" + + for feature_type in summary_hash: + summary_json = summary_json + '"%s":%i,' %(feature_type, summary_hash[feature_type]) + summary_out.write(summary_json[0:-1] + "}\n") + summary_out.close() + feature_matrix_file.close() + outfile.close() + alidfile.close() + sampleOutfile.close() + fshout.write("#!/bin/bash\n") + fshout.write("mysql -h %s --port %s --user=%s --password=%s --database=%s<\n" % dataset_label + configfile = sys.argv[3] + config = db_util.getConfig(configfile) + annotations = sys.argv[4] + quantileFeatures = sys.argv[5] + resultsPath = sys.argv[6] + featureInterestingFile = "" + if (len(sys.argv) == 8): + featureInterestingFile = sys.argv[7] + process_feature_matrix(dataset_label, sys.argv[1], 1, config, annotations, quantileFeatures, resultsPath, featureInterestingFile) + print "Done with processing feature relating loads %s " %(time.ctime()) + diff --git a/src/dataimport/python/parse_gsea.py b/src/dataimport/python/parse_gsea.py new file mode 100755 index 0000000..ac43c9f --- /dev/null +++ b/src/dataimport/python/parse_gsea.py @@ -0,0 +1,28 @@ +#!/usr/bin/python + +fin = open('crad_imputed_hg18coords_gsea_finalC.top80.16feb11.tsv','r') +fout = open('top80C_features.tsv','w') +lines = fin.readlines() +fin.close() + +def is_number(s): + try: + float(s) + return True + except ValueError: + print "not a number:" + s + return False + +for line in lines: + fields=line.split('\t') + #print fields + pvalue = '-1' + if (is_number(fields[1])): + pvalue = fields[1] + if (fields[1] == ' NaN'): + pvalue = '-1' + lineout = fields[0] + "\t" + pvalue + "\t" + fields[2] + "\t" + fields[3] + "\t" + fields[4] + "\t" + fields[5] + fout.write(lineout) + +fout.close() + diff --git a/src/dataimport/python/parse_pairwise.py b/src/dataimport/python/parse_pairwise.py new file mode 100755 index 0000000..24748bc --- /dev/null +++ b/src/dataimport/python/parse_pairwise.py @@ -0,0 +1,243 @@ +#!/usr/bin/python +""" +Processing features from in data_matrix and gexp interesting. Sample values and identifiers will also be extracted. +The required dataset label indicates the set of schemas. +""" +import sys +import os +import time +import smtp +import parse_features_rfex +import getPairwiseInfo +import db_util + + +def process_feature_alias(alias): + data = alias.split(':') + if len(data) > 4 and len(data[3]) > 3: + data[3] = data[3][3:] + return data + +def process_pairwise_edges(dataset_label, matrixfile, pairwised_file, pvlambda, config, results_path, do_pubcrawl, contacts, keep_unmapped, featureInterestingFile): + """ + Include edges where nodes are in original set, direction does not matter so do not populate edge if A->B if B->A are in hash + Expected tab delimited columns are nodeA nodeB pvalue correlation numNonNA + """ + edges_hash = {} + max_pv = -1000.0 + max_pv_corr = -1000.0 + mydb = db_util.getDBSchema(config) #config.get("mysql_jdbc_configs", "db") + myuser = db_util.getDBUser(config) #config.get("mysql_jdbc_configs", "username") + mypw = db_util.getDBPassword(config) #config.get("mysql_jdbc_configs", "password") + myhost = db_util.getDBHost(config) + myport = db_util.getDBPort(config) + mysolr = db_util.getSolrPath(config) + edges_file = open(pairwised_file) + fIntHash = parse_features_rfex.get_feature_interest_hash(featureInterestingFile) + edge_table = mydb + ".mv_" + dataset_label + "_feature_networks" + efshout = open(results_path + 'load_edges_' + dataset_label + '.sh','w') + solrshout = open(results_path + 'load_solr_' + dataset_label + '.sh','w') + edges_out_re = open(results_path + 'edges_out_' + dataset_label + '_pw_re.tsv','w') + edges_out_pc = open(results_path + 'edges_out_' + dataset_label + '_pw_pc.tsv','w') + edges_meta_json = open(results_path + 'edges_out_' + dataset_label + '_meta.json','w') + unmappedPath = results_path + 'edges_out_' + dataset_label + '_pw_unmapped.tsv' + unmappedout = open(unmappedPath,'w') + features_file = open(results_path + dataset_label + '_features_out.tsv','r') + features_hash = {} + for fl in features_file.readlines(): + ftk = fl.strip().split("\t") + features_hash[ftk[1]] = ftk + features_file.close() + + validEdgeId = 1 + invalidEdges = 0 + dupeEdges = 0 + totalEdges = 0 + cnan = 0 + pcc = 0 + unMapped = 0 + for line in edges_file: + totalEdges += 1 + line = line.strip() + tokens = line.split('\t') + if (len(tokens) < 11): + if (validEdgeId == 1): + print "Skipping header/line 1 for insufficient token reasons" + continue + print "ERROR: requires 11 tokens, found:" + str(len(tokens)) + " Skipping line\n" + line + continue + nodeA = tokens[0] + nodeB = tokens[1] + + try: + f1genescore = fIntHash[nodeA] + except KeyError: + f1genescore = 0 + try: + f2genescore = fIntHash[nodeB] + except KeyError: + f2genescore = 0 + + if (db_util.isUnmappedAssociation(nodeA, nodeB) and keep_unmapped == 0): + unmappedout.write(nodeA + "\t" + nodeB + "\n") + unMapped += 1 + continue + #nodeA = nodeA.replace('|', '_') + #nodeB = nodeB.replace('|', '_') + try: + features_hash[nodeA] + except KeyError: + print "key error in resolving featureId for " + nodeA + " skipping edge." + continue + try: + features_hash[nodeB] + except KeyError: + print "key error in resolving featureId for " + nodeB + " skipping edge." + continue + + if (features_hash[nodeA] and features_hash[nodeB]): + if (not edges_hash.get(nodeA + "_" + nodeB) and not edges_hash.get(nodeA + "_" + nodeB)): + feature1id = ""#str(features_hash[nodeA]) + feature2id = ""#str(features_hash[nodeB]) + #This will need to be improve once all pairs has annotations + try: + feature1id = str(features_hash[nodeA][0]) + except KeyError: + print "ERROR: key error in resolving featureId for " + nodeA + try: + feature2id = str(features_hash[nodeB][0]) + except: + print "ERROR: key error in resolving featureId for " + nodeB + + edges_hash[nodeA + "_" + nodeB] = validEdgeId + validEdgeId += 1 + dataA = process_feature_alias(nodeA) + label1_desc = "" + dataB = process_feature_alias(nodeB) + label2_desc = "" + if (len(dataA) == 7): + dataA.append("") + nodeA = nodeA + ":" + if (len(dataB) == 7): + dataB.append("") + nodeB = nodeB + ":" + correlation_str = tokens[2] + try: + correlation = float(correlation_str) + except ValueError: + #Align correlation value to NaN + cnan += 1 + correlation = float('nan') + correlation_str = '' + numna = tokens[3] + pv_str = tokens[4] + bonf = tokens[5] + pv_bonf_str = tokens[6] + numnaf1 = tokens[7] + pvf1_str = tokens[8] + numnaf2 = tokens[9] + pvf2_str = tokens[10] + try: + pv = str(pvlambda(float(pv_str))) + pv_bonf = str(pvlambda(float(pv_bonf_str))) + pvf1 = str(pvlambda(float(pvf1_str))) + pvf2 = str(pvlambda(float(pvf2_str))) + except ValueError: + #error in pairwise script, ignore these associations for now + continue; + + if (float(pv) > max_pv): + max_pv = float(pv) + + if (float(pv_bonf) > max_pv_corr): + max_pv_corr = float(pv_bonf) + + rho = str(db_util.sign(correlation)*abs(float(pv))) + + link_distance = 500000000 + if ( len(tokens) >= 12 ): + link_distance = int(tokens[11]) + else: + if (len(dataA) >=5 and len(dataB)>=5 and db_util.is_numeric(dataA[4]) >= 1 and db_util.is_numeric(dataB[4]) >= 1 and dataA[3] == dataB[3]): + link_distance = abs(int(dataB[4]) - int(dataA[4])) + edges_out_re.write(feature1id + "\t" + feature2id + "\t" + nodeA + "\t" + "\t".join(dataA) + "\t" + nodeB + "\t" + "\t".join(dataB) + "\t" + correlation_str + "\t" + numna + "\t" + pv + "\t" + bonf + "\t" + pv_bonf + "\t" + numnaf1 + "\t" + pvf1 + "\t" + numnaf2 + "\t" + pvf2 + "\t" + rho + "\t" + str(link_distance) + "\t" + str(f1genescore) + "\t" + str(f2genescore) + "\n") + if (do_pubcrawl == "yes"): + #call andrea code + getPairwiseInfo.processLine(line, edges_out_pc) + pcc += 1 + else: + print "duplicated edge:" + nodeA + "_" + nodeB + dupeEdges += 1 + else: + print "invalid edge nodeA and nodeB not in features:" + nodeA + "_" + nodeB + invalidEdges += 1 + print "Report: Valid Edges %i Duped %i cNAN %i \nunMapped %i Saved to %s \nTotal %i max_pvalue %f max_pvalue_corr %f" %(validEdgeId-1, dupeEdges, cnan, unMapped,unmappedPath, totalEdges, max_pv, max_pv_corr) + edges_meta_json.write('{"max_logpv":%f}' %(max_pv)) + edges_file.close() + edges_out_re.close() + edges_out_pc.close() + edges_meta_json.close() + unmappedout.close() + efshout.write("#!/bin/bash\n") + efshout.write("mysql -h %s --port %s --user=%s --password=%s --database=%s<dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core1/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core2/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core3/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core4/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core5/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core6/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core7/update/?commit=true' -H 'Content-type:text/xml' --data-binary 'dataset:\"" + dataset_label + "\"'\n") + solrshout.write("curl '" + mysolr + "/core0/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core0_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core1/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core1_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core2/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core2_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core3/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core3_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core4/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core4_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core5/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core5_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core6/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core6_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.write("curl '" + mysolr + "/core7/update/csv?commit=true&separator=%09&overwrite=false&escape=\ ' --data-binary @" + edges_out_re.name + "_core7_final.tsv -H 'Content-type:text/plain;charset=utf-8' &\n") + solrshout.close() + print "Begin pairwise solr upload " + time.ctime() + os.system("sh " + solrshout.name) + if (do_pubcrawl == "yes"): + print "senting Pubcrawl notification to " + contacts + smtp.main("re@systemsbiology.org", contacts, "Notification - New Pairwise Associations for PubCrawl", "New pairwise associations ready for PubCrawl load\n" + edges_out_pc.name + "\n\n" + str(pcc) + " Total Edges\n\n" + edges_out_re.name + " loaded into RegulomeExplorer, dataset label is " + dataset_label + " \n\n") + +def main(dataset_label, feature_matrix, associations, pvalueRepresentation, configfile, resultsPath, doPubcrawl, contacts, keep_unmapped, featureInterestingFile): + print "\n in parse_pairwise : dataset_label = <%s> \n" % dataset_label + config = db_util.getConfig(configfile) + #results_path = db_util.getResultsPath(config) + #if (not os.path.exists(results_path + "/" + dataset_label)): + # os.mkdir(results_path + "/" + dataset_label) + print "Done with processing features, processing pairwise edges %s " %(time.ctime()) + pvlambda = db_util.reflective + if (pvalueRepresentation == "negative"): + pvlambda = db_util.negative + elif (pvalueRepresentation == "negative_log10"): + pvlambda = db_util.negative_log10 + elif (pvalueRepresentation == "absolute"): + pvlambda = db_util.absolute + process_pairwise_edges(dataset_label, feature_matrix, associations, pvlambda, config, resultsPath, doPubcrawl, contacts, int(keep_unmapped), featureInterestingFile) + print "Done with processing pairwise edges %s " %(time.ctime()) + +if __name__ == "__main__": + print "Parsing features kicked off %s" %time.ctime() + if (len(sys.argv) < 10): + print 'Usage is py2.6 parse_pairwise.py feature_matrix.tsv edges_matrix.tsv dataset_label pvlambda configfile resultsPath doPubcrawl contacts keep_unmapped' + sys.exit(1) + annotations = "" + dataset_label = sys.argv[3] + featureInterestingFile = "" + if (len(sys.argv) == 11): + featureInterestingFile = sys.argv[10] + main(dataset_label, sys.argv[1], sys.argv[2], sys.argv[4], sys.argv[5], sys.argv[6], sys.argv[7],sys.argv[8], sys.argv[9], featureInterestingFile) + diff --git a/src/dataimport/python/parse_samples_values.py b/src/dataimport/python/parse_samples_values.py new file mode 100755 index 0000000..9d98cd4 --- /dev/null +++ b/src/dataimport/python/parse_samples_values.py @@ -0,0 +1,92 @@ +#!/usr/bin/python +import db_util +import math +import sys +import os +import time + +myhost = db_util.getDBHost() #config.get("mysql_jdbc_configs", "host") +myport = db_util.getDBPort() +mydb = db_util.getDBSchema() #config.get("mysql_jdbc_configs", "db") +myuser = db_util.getDBUser() #config.get("mysql_jdbc_configs", "username") +mypw = db_util.getDBPassword() #config.get("mysql_jdbc_configs", "password") + +print "Parsing samples/patients and values kicked off %s" %time.ctime() +if (len(sys.argv) != 3): + print 'Usage is py2.6 parse_sample_values.py data_associations.csv dataset_label' + sys.exit(1) + +infile = open(sys.argv[1]) +dataset_label = sys.argv[2] +schema = mydb +feature_table = schema + "." + dataset_label + "_features" +samples_table = schema + "." + dataset_label + "_patients" + +feature_helper = {} +feature_helper["IMP2"] = "C:GENO:IMP2:chrIX:53981:55021:-" +feature_helper["AAP1"] = "C:GENO:AAP1:chrVIII:198740:201310:-" +features_hash = {} +fshout = open('load_strain_values_' + dataset_label + '.sh','w') +outfile = open('./strain_values_out_' + dataset_label + '.sql','w') +#fshout = open('loadKruglyakValuesSql_pv.sh','w') +#outfile = open('/local/dudley/omics/KruglyakValuesOut_pv.sql','w') +linec = 0 +insertStrainsSql = '' +for line in infile: + line = line.strip() + if (linec == 0): + samples = line.replace('\t', ':') + samplesplt = samples.split(':') + sampleStr = "" + for ss in samplesplt: + sampleDesc = ss + sampleStr = sampleStr + sampleDesc + ":" + insertSampleSql= "insert into %s values ('%s');\n" %(samples_table, sampleStr[0:len(sampleStr)-1]) + outfile.write(insertSampleSql) + else: + valuesArray = [] + tokens = line.split('\t') + alias = tokens[0] + #if (alias.find('PHENO') != -1): + # alias = yeast_util.transPhenoFeature(tokens[0]) + #if (alias.find("IMP2") != -1): + # alias = yeast_util.transGeneFeature("IMP2") + #if (alias.find("AAP1") != -1): + # alias = yeast_util.transGeneFeature("AAP1") + values = ":".join(tokens[1:len(tokens)-1]) + for v in tokens[1:len(tokens)-1]: + if (v != 'NA' and v != 'A' and v != 'B'): + valuesArray.append(float(v)) + if (alias.find("PROT") != -1): + #log protein values + values = '' + valuesArray = [] + for v in tokens[1:len(tokens)-1]: + try: + vf = float(v) + except ValueError, TypeError: + values = values + v + ":" + else: + if (float(v) > 0): + valuesArray.append(math.log(float(v))) + values = values + str(math.log(float(v))) + ":" + else: + values = values + str(0) + ":" + values = values[0:len(values)-1] + mean = 0.0 + if (len(valuesArray) > 1): + mean = sum(valuesArray)/len(valuesArray) + outfile.write("update %s set patient_values = '%s', patient_values_mean = %f where alias = '%s';\n" %(feature_table, values, mean,alias)) + linec = linec + 1 +print insertStrainsSql +infile.close() +outfile.close() +fshout.write("#!/bin/bash\n") +#fshout.write("mysql --user=root --database=omics< 4): + print "len > 4 " + "\t".join(tk[2:3]) + extrac = extrac + 1 + continue + members = tk[3] + mtk = members.split(",") + if (len(mtk) > max): + max = len(mtk) + maxs = "\t".join(tk[0:2]) + mc = mc + len(mtk) + pc = pc + 1 + if (len(mtk) > 250): + large_pathways.append("\t".join(tk[0:2])) + continue + #source = tk[0] + #pname = tk[1] + all_members_out_pf.write("\t".join(tk) + "\n") + for m in mtk: + out_pf.write("\t".join(tk[0:-1]) + "\t" + m + "\n") + +#print "\n\nPathways with more than 250 members" +#for p in large_pathways: +# print p + +print "pathways %i large_pathways %i member_avg_ct %i short_tokens %i extra_tokens %i" %(pc, len(large_pathways), mc/pc, shortc, extrac) +pf.close() +out_pf.close() +all_members_out_pf.close() +#print "Biggest pathway " + maxs + " members of " + str(max) + + diff --git a/src/dataimport/python/update_rgex_dataset.py b/src/dataimport/python/update_rgex_dataset.py new file mode 100755 index 0000000..da6a584 --- /dev/null +++ b/src/dataimport/python/update_rgex_dataset.py @@ -0,0 +1,66 @@ +import db_util +import sys +import os +import time +import json + +def addDataset(label, feature_matrix, associations, method, source, description, comments, configfile, results_path, ds_date, disease, contact): + print "Adding " + source + " dataset to admin table with config " + configfile + " for label " + label + if (description == ""): + #not general, revisit this to enter all TCGA known cancers + if (label.find("brca") != -1 or label.find("BRCA") != -1): + description = "Breast" + if (label.find("ov") != -1 or label.find("OV") != -1): + description = description + "Ovarian" + if (label.find("gbm") != -1 or label.find("GBM") != -1): + description = description + "Glioblastoma" + if (label.find("coadread") != -1 or label.find("COAD") != -1 or label.find("coad") != -1 or label.find("crc") != -1 or label.find("CRC") != -1): + description = description + "ColoRectal" + if (label.find("cesc") != -1 or label.find("CESC") != -1): + description = description + "Cervical" + if (label.find("hnsc") != -1 or label.find("HNSC") != -1): + description = description + "HeadNeck" + if (label.find("kirc") != -1 or label.find("KIRC") != -1 or label.find("kirp") != -1 or label.find("KIRP") != -1): + description = description + "Kidney" + if (label.find("luad") != -1 or label.find("LUAD") != -1 or label.find("lusc") != -1 or label.find("LUSC") != -1): + description = description + "Lung" + if (label.find("stad") != -1 or label.find("STAD") != -1): + description = description + "Stomach" + if (label.find("nomask") != -1): + description = description + elif (label.find("mask") != -1): + description = description + " filtered" + + if (comments == ""): + comments = "{matrix:"+feature_matrix+",associations:"+associations+"}" + inputfiles = "{matrix:"+feature_matrix+",associations:"+associations+"}" + currentDate = time.strftime("%m-%d-%y") + config = db_util.getConfig(configfile) + max_logpv = -1.0 + if (os.path.exists(results_path + 'edges_out_' + label + '_meta.json')): + meta_json_file = open(results_path + 'edges_out_' + label + '_meta.json','r') + metaline = meta_json_file.read() + if (len(metaline) > 1): + try: + max_logpv = json.loads(metaline)["max_logpv"] + except ValueError: + max_logpv = -1 + #okay that the max_logpv is not set + except: + print "Unexpected error:", sys.exc_info()[0] + raise + meta_json_file.close() + summary_json = "" + if (os.path.exists(results_path + "feature_summary_" + label + ".json")): + summary_file = open(results_path + "feature_summary_" + label + ".json", "r") + summary_json = summary_file.read().strip() + summary_file.close() + insertSql = "replace into tcga.regulome_explorer_dataset (label,method,source,contact,comments,dataset_date,description,max_logged_pvalue, input_files, default_display,disease,summary_json) values ('%s', '%s', '%s', '%s', '%s', '%s', '%s', %f, '%s', '%i', '%s', '%s');" %(label, method, source, contact, comments,ds_date,description, max_logpv, inputfiles, 1, disease, summary_json) + print "updating regulome_explorer_dataset\n" + insertSql + db_util.executeInsert(config, insertSql) + +if __name__=="__main__": + if (len(sys.argv) < 13): + print 'Usage is py2.6 update_rgex_dataset.py dataset_label feature_matrix associations method source desc comments configfile, resultsPath, dataset_date, diseaseCode, contact' + sys.exit(1) + addDataset(sys.argv[1], sys.argv[2], sys.argv[3], sys.argv[4], sys.argv[5], sys.argv[6], sys.argv[7], sys.argv[8], sys.argv[9], sys.argv[10], sys.argv[11], sys.argv[12]) diff --git a/src/dataimport/sql/create_schema_pairwise_template.sql b/src/dataimport/sql/create_schema_pairwise_template.sql new file mode 100644 index 0000000..fff5020 --- /dev/null +++ b/src/dataimport/sql/create_schema_pairwise_template.sql @@ -0,0 +1,56 @@ +DROP TABLE IF EXISTS mv_#REPLACE#_feature_networks; +CREATE TABLE mv_#REPLACE#_feature_networks +( + feature1id int, + feature2id int, + alias1 varchar(255) NOT NULL, + f1type varchar(1) NOT NULL, + f1source varchar(11) NOT NULL, + f1label varchar(100), + f1chr varchar(10), + f1start int, + f1end int, + f1strand int DEFAULT 0, + f1label_desc varchar(50), + alias2 varchar(255) NOT NULL, + f2type varchar(1) NOT NULL, + f2source varchar(11) NOT NULL, + f2label varchar(100), + f2chr varchar(10), + f2start int, + f2end int, + f2strand int DEFAULT 0, + f2label_desc varchar(50), + correlation double, + num_nonna int, + logged_pvalue double, + bonf_fac double, + logged_pvalue_bonf double, + num_nonna_f1 int, + logged_pvalue_f1 double, + num_nonna_f2 int, + logged_pvalue_f2 double, + rho_score double, + link_distance int DEFAULT -1, + id int AUTO_INCREMENT PRIMARY KEY NOT NULL +); + +CREATE INDEX #REPLACE#_f1_f2 ON mv_#REPLACE#_feature_networks(feature1id, feature2id); +CREATE INDEX #REPLACE#_source1 ON mv_#REPLACE#_feature_networks(f1source); +CREATE INDEX #REPLACE#_source2 ON mv_#REPLACE#_feature_networks(f2source); +CREATE INDEX #REPLACE#_label1 ON mv_#REPLACE#_feature_networks(f1label); +CREATE INDEX #REPLACE#_label2 ON mv_#REPLACE#_feature_networks(f2label); +CREATE INDEX #REPLACE#_loggedpv ON mv_#REPLACE#_feature_networks(logged_pvalue); +CREATE INDEX #REPLACE#_rhoscore ON mv_#REPLACE#_feature_networks(rho_score); +CREATE INDEX #REPLACE#_composite1 ON mv_#REPLACE#_feature_networks(f2source, logged_pvalue); + +DROP VIEW IF EXISTS v_#REPLACE#_patient_values; + +create view v_#REPLACE#_patient_values as +select f1.id f1id, f1.alias f1alias, f1.patient_values_mean f1mean, f1.patient_values f1values, f2.id f2id, f2.alias f2alias, +f2.patient_values_mean f2mean, f2.patient_values f2values +from #REPLACE#_features f1, mv_#REPLACE#_feature_networks n, #REPLACE#_features f2 +where f1.id = n.feature1id +and n.feature2id = f2.id; + +commit; diff --git a/src/dataimport/sql/create_schema_re_template.sql b/src/dataimport/sql/create_schema_re_template.sql new file mode 100755 index 0000000..e20aa5a --- /dev/null +++ b/src/dataimport/sql/create_schema_re_template.sql @@ -0,0 +1,86 @@ +CREATE TABLE IF NOT EXISTS regulome_explorer_dataset +( + label varchar(40) PRIMARY KEY NOT NULL, + method varchar(100), + source varchar(100) DEFAULT "TCGA", + contact varchar(50), + comments longtext, + pvalue_cutoff double, + timestamp timestamp DEFAULT CURRENT_TIMESTAMP NOT NULL, + default_display varchar(10), + description varchar(100), + dataset_date varchar(30), + max_logged_pvalue float DEFAULT -1.0, + input_files varchar(255) +); + +CREATE TABLE IF NOT EXISTS sample_meta ( + sample_key varchar(20) NOT NULL default "", + cancer_type varchar(20) NOT NULL default "", + dataset_label varchar(50) NOT NULL default "", + matrix_col_offset int(11) default NULL, + meta_json text, + PRIMARY KEY (sample_key, cancer_type, dataset_label) +); + +DROP TABLE IF EXISTS #REPLACE#_features; +CREATE TABLE #REPLACE#_features +( + id int PRIMARY KEY NOT NULL, + alias varchar(255) NOT NULL, + type varchar(1) NOT NULL, + source varchar(11) NOT NULL, + label varchar(100), + chr varchar(10), + start int, + end int, + strand int DEFAULT 0, + label_desc varchar(50), + patient_values longtext, + patient_values_mean double, + interesting_score double +); + +CREATE INDEX CHR ON #REPLACE#_features(chr); +CREATE INDEX ALIAS ON #REPLACE#_features(alias); +CREATE INDEX SOURCE ON #REPLACE#_features(source); +CREATE INDEX END ON #REPLACE#_features(end); +CREATE INDEX START ON #REPLACE#_features(start); +CREATE INDEX LABEL_DESC ON #REPLACE#_features(label_desc); + +-- DROP VIEW IF EXISTS v_#REPLACE#_feature_clinlabel; +-- CREATE VIEW v_#REPLACE#_feature_clinlabel as +-- SELECT DISTINCT label from #REPLACE#_features where source = 'CLIN'; + +/*replace individual categorical label tables with one label table */ +DROP VIEW IF EXISTS v_#REPLACE#_feature_categorical_labels; +CREATE VIEW v_#REPLACE#_feature_categorical_labels as +SELECT DISTINCT label, alias, source, interesting_score from #REPLACE#_features where source = 'CLIN' +UNION SELECT DISTINCT label, alias, source, interesting_score from #REPLACE#_features where source = 'SAMP' +UNION SELECT DISTINCT label, alias, source, interesting_score from #REPLACE#_features where source = 'PRDM'; + +DROP VIEW IF EXISTS v_#REPLACE#_feature_sources; +CREATE VIEW v_#REPLACE#_feature_sources as +SELECT distinct source from #REPLACE#_features; + +DROP TABLE IF EXISTS #REPLACE#_association_index; +CREATE TABLE #REPLACE#_association_index +( + featureid int not null, + alias varchar(255) not null, + associated_feature_type varchar(50) not null, + associated_index double DEFAULT 0, + id int PRIMARY KEY NOT NULL auto_increment +); +CREATE INDEX association_index_featureid ON #REPLACE#_association_index(featureid); + +DROP TABLE IF EXISTS #REPLACE#_patients; +CREATE TABLE #REPLACE#_patients +( + barcode longtext +); + +DROP VIEW IF EXISTS v_#REPLACE#_patients; +create view v_#REPLACE#_patients as select barcode from #REPLACE#_patients; + +commit; diff --git a/src/dataimport/sql/create_schema_rface_template.sql b/src/dataimport/sql/create_schema_rface_template.sql new file mode 100644 index 0000000..37bc2ab --- /dev/null +++ b/src/dataimport/sql/create_schema_rface_template.sql @@ -0,0 +1,64 @@ +DROP TABLE IF EXISTS mv_#REPLACE#_feature_networks; +CREATE TABLE mv_#REPLACE#_feature_networks +( + alias1 varchar(255), + alias2 varchar(255), + pvalue double DEFAULT 0, + importance double DEFAULT 0, + correlation double, + patientct int, + feature1id int, + f1type varchar(1), + f1source varchar(11), + f1label varchar(100), + f1chr varchar(5), + f1start int, + f1end int, + f1strand int DEFAULT 0, + f1label_desc varchar(50), + feature2id int, + f2type varchar(1), + f2source varchar(11), + f2label varchar(100), + f2chr varchar(5), + f2start int, + f2end int, + f2strand int DEFAULT 0, + f2label_desc varchar(50), + f1genescore double DEFAULT 0, + f2genescore double DEFAULT 0, + rho_score double DEFAULT 0, + link_distance int DEFAULT -1, + id int AUTO_INCREMENT PRIMARY KEY NOT NULL +); + +CREATE INDEX #REPLACE#_f1_f2 ON mv_#REPLACE#_feature_networks(feature1id, feature2id); +CREATE INDEX #REPLACE#_f1chr ON mv_#REPLACE#_feature_networks(f1chr); +CREATE INDEX #REPLACE#_f1start ON mv_#REPLACE#_feature_networks(f1start); +CREATE INDEX #REPLACE#_f1end ON mv_#REPLACE#_feature_networks(f1end); +CREATE INDEX #REPLACE#_f1source ON mv_#REPLACE#_feature_networks(f1source); +CREATE INDEX #REPLACE#_f1label ON mv_#REPLACE#_feature_networks(f1label); +CREATE INDEX #REPLACE#_f2chr ON mv_#REPLACE#_feature_networks(f2chr); +CREATE INDEX #REPLACE#_f2start ON mv_#REPLACE#_feature_networks(f2start); +CREATE INDEX #REPLACE#_f2end ON mv_#REPLACE#_feature_networks(f2end); +CREATE INDEX #REPLACE#_f2source ON mv_#REPLACE#_feature_networks(f2source); +CREATE INDEX #REPLACE#_f2label ON mv_#REPLACE#_feature_networks(f2label); +CREATE INDEX #REPLACE#_importance ON mv_#REPLACE#_feature_networks(importance); +CREATE INDEX #REPLACE#_pvalue ON mv_#REPLACE#_feature_networks(pvalue); +CREATE INDEX #REPLACE#_correlation ON mv_#REPLACE#_feature_networks(correlation); +CREATE INDEX #REPLACE#_feature1 ON mv_#REPLACE#_feature_networks(feature1id); +CREATE INDEX #REPLACE#_feature2 ON mv_#REPLACE#_feature_networks(feature2id); +CREATE INDEX #REPLACE#_rhoscore ON mv_#REPLACE#_feature_networks(rho_score); + + +DROP VIEW IF EXISTS v_#REPLACE#_patient_values; + +create view v_#REPLACE#_patient_values as +select f1.id f1id, f1.alias f1alias, f1.patient_values_mean f1mean, f1.patient_values f1values, f2.id f2id, f2.alias f2alias, +f2.patient_values_mean f2mean, f2.patient_values f2values +from #REPLACE#_features f1, mv_#REPLACE#_feature_networks n, #REPLACE#_features f2 +where f1.id = n.feature1id +and n.feature2id = f2.id; + +commit; + diff --git a/src/dataimport/sql/drop_ds_template.sql b/src/dataimport/sql/drop_ds_template.sql new file mode 100644 index 0000000..f3a6531 --- /dev/null +++ b/src/dataimport/sql/drop_ds_template.sql @@ -0,0 +1,12 @@ +DROP TABLE IF EXISTS #REPLACE#_features; +DROP TABLE IF EXISTS #REPLACE#_association_index; +DROP TABLE IF EXISTS #REPLACE#_patients; +DROP TABLE IF EXISTS #REPLACE#_networks; +DROP VIEW IF EXISTS v_#REPLACE#_patients; +DROP VIEW IF EXISTS v_#REPLACE#_features; +DROP VIEW IF EXISTS v_#REPLACE#_feature_clinlabel; +DROP VIEW IF EXISTS v_#REPLACE#_feature_sources; +DROP VIEW IF EXISTS v_#REPLACE#_patient_values; +DROP VIEW IF EXISTS v_#REPLACE#_feature_networks; +DROP TABLE IF EXISTS mv_#REPLACE#_feature_networks; +delete from regulome_explorer_dataset where label = '#REPLACE#'; diff --git a/src/dataimport/sql/hide_ds_template.sql b/src/dataimport/sql/hide_ds_template.sql new file mode 100644 index 0000000..1383a21 --- /dev/null +++ b/src/dataimport/sql/hide_ds_template.sql @@ -0,0 +1 @@ +update regulome_explorer_dataset set method='#METHOD#' where label = '#REPLACE#'; \ No newline at end of file diff --git a/src/dataimport/sql/pathway_schema.sql b/src/dataimport/sql/pathway_schema.sql new file mode 100644 index 0000000..e4cbf62 --- /dev/null +++ b/src/dataimport/sql/pathway_schema.sql @@ -0,0 +1,11 @@ +use random_forest; + +create table if not exists pathway_members (psource varchar(50), pname varchar(255), purl varchar(100), pmember varchar(50), primary key(psource, pname, pmember)) ENGINE=MyISAM; + +create index pathway_source on pathway_members(psource); +create index pathway_name on pathway_members(pname); +create index pathway_member on pathway_members(pmember); + +create table if not exists pathways (psource varchar(50), pname varchar(255), purl varchar(100), pmembers text, primary key(psource, pname)) ENGINE=MyISAM; + + diff --git a/src/dataimport/sql/populate_mv_rf_associations_template.sql b/src/dataimport/sql/populate_mv_rf_associations_template.sql new file mode 100644 index 0000000..cbab42a --- /dev/null +++ b/src/dataimport/sql/populate_mv_rf_associations_template.sql @@ -0,0 +1,56 @@ +DROP TABLE IF EXISTS mv_#REPLACE#_feature_networks; + +CREATE TABLE mv_#REPLACE#_feature_networks ( + f1chr VARCHAR(10), +f1start int, +f1end int, +f1type VARCHAR(1), +f1source VARCHAR(11), +f1label VARCHAR(100), +f1label_desc VARCHAR(50), +f2chr VARCHAR(10), +f2start int, +f2end int, +f2type VARCHAR(1), +f2source VARCHAR(11), +f2label VARCHAR(100), +f2label_desc VARCHAR(50), +alias1 varchar(255), +alias2 varchar(255), +feature1id int, +feature2id int, +f1genescore double, +f2genescore double, +pvalue double, +importance double, +correlation double, +patientct int, +rho_score double +); + +CREATE INDEX #REPLACE#_f1chr ON mv_#REPLACE#_feature_networks(f1chr); +CREATE INDEX #REPLACE#_f1start ON mv_#REPLACE#_feature_networks(f1start); +CREATE INDEX #REPLACE#_f1end ON mv_#REPLACE#_feature_networks(f1end); +CREATE INDEX #REPLACE#_f1source ON mv_#REPLACE#_feature_networks(f1source); +CREATE INDEX #REPLACE#_f1label ON mv_#REPLACE#_feature_networks(f1label); +CREATE INDEX #REPLACE#_f2chr ON mv_#REPLACE#_feature_networks(f2chr); +CREATE INDEX #REPLACE#_f2start ON mv_#REPLACE#_feature_networks(f2start); +CREATE INDEX #REPLACE#_f2end ON mv_#REPLACE#_feature_networks(f2end); +CREATE INDEX #REPLACE#_f2source ON mv_#REPLACE#_feature_networks(f2source); +CREATE INDEX #REPLACE#_f2label ON mv_#REPLACE#_feature_networks(f2label); +CREATE INDEX #REPLACE#_importance ON mv_#REPLACE#_feature_networks(importance); +CREATE INDEX #REPLACE#_pvalue ON mv_#REPLACE#_feature_networks(pvalue); +CREATE INDEX #REPLACE#_correlation ON mv_#REPLACE#_feature_networks(correlation); +CREATE INDEX #REPLACE#_feature1 ON mv_#REPLACE#_feature_networks(feature1id); +CREATE INDEX #REPLACE#_feature2 ON mv_#REPLACE#_feature_networks(feature2id); +CREATE INDEX #REPLACE#_rhoscore ON mv_#REPLACE#_feature_networks(rho_score); + +INSERT INTO mv_#REPLACE#_feature_networks +SELECT +f1chr, f1start, f1end, f1type, f1source, f1label, f1label_desc, +f2chr, f2start, f2end, f2type, f2source, f2label, f2label_desc, +alias1, alias2, feature1id, feature2id, f1genescore, f2genescore, pvalue, importance, correlation, patientct, rho_score +from v_#REPLACE#_feature_networks; + +commit; + diff --git a/src/dataimport/sql/reset_tables.sql b/src/dataimport/sql/reset_tables.sql new file mode 100755 index 0000000..0fee8ef --- /dev/null +++ b/src/dataimport/sql/reset_tables.sql @@ -0,0 +1,5 @@ +truncate table tcga.clinical_correlates_0817; + +truncate table tcga.clinical_correlate_pairwise_0817; + +commit; diff --git a/src/dataimport/sql/rfex_admin.sql b/src/dataimport/sql/rfex_admin.sql new file mode 100644 index 0000000..50c97e6 --- /dev/null +++ b/src/dataimport/sql/rfex_admin.sql @@ -0,0 +1,23354 @@ +DROP DATABASE IF EXISTS tcga; + +CREATE DATABASE tcga; + +CREATE TABLE tcga.regulome_explorer_dataset +( + label varchar(40) NOT NULL, + method varchar(100) default NULL, + source varchar(100) default 'TCGA', + contact varchar(50) default NULL, + comments longtext, + pvalue_cutoff double default NULL, + timestamp timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, + default_display int NOT NULL default 0, + disease varchar(11) NOT NULL default 'NA', + description varchar(255) default NULL, + dataset_date varchar(30) default NULL, + max_logged_pvalue float default NULL, + input_files varchar(255) default NULL, + summary_json text default NULL, + disease varchar(255) default NULL, + PRIMARY KEY (label) +); + +CREATE TABLE tcga.sample_meta ( + sample_key varchar(20) NOT NULL default '', + cancer_type varchar(20) NOT NULL default '', + dataset_label varchar(50) NOT NULL default '', + matrix_col_offset int(11) default NULL, + meta_json text, + PRIMARY KEY (sample_key,cancer_type,dataset_label)); + +DROP DATABASE IF EXISTS random_forest; + +CREATE DATABASE random_forest; + +CREATE TABLE random_forest.chrom_info +( + chr_name varchar(20) PRIMARY KEY NOT NULL, + chr_length int NOT NULL, + organism varchar(50) default 'human', + build varchar(20) default 'hg18' +); + +CREATE TABLE random_forest.refgene +( + chr varchar(5) NOT NULL, + start int NOT NULL, + end int NOT NULL, + name varchar(30) DEFAULT 'NA' NOT NULL PRIMARY KEY, + alias varchar(30) DEFAULT 'NA' NOT NULL, + organism varchar(50) default 'human', + build varchar(20) default 'hg18' +); + +GRANT Select ON tcga.* TO visquick_ro@"localhost" IDENTIFIED BY 'v15qu1ck_r0'; +GRANT Select ON tcga.* TO visquick_ro@"intianjora.cs.tut.fi" IDENTIFIED BY 'v15qu1ck_r0'; +GRANT Select ON tcga.* TO visquick_ro@"%" IDENTIFIED BY 'v15qu1ck_r0'; + +GRANT ALL ON tcga.* TO visquick_rw@"localhost" IDENTIFIED BY 'v1sr3ad'; +GRANT ALL ON tcga.* TO visquick_rw@"intianjora.cs.tut.fi" IDENTIFIED BY 'v1sr3ad'; +GRANT ALL ON tcga.* TO visquick_rw@"%" IDENTIFIED BY 'v1sr3ad'; + +GRANT Select ON random_forest.* TO visquick_ro@"localhost" IDENTIFIED BY 'v15qu1ck_r0'; +GRANT Select ON random_forest.* TO visquick_ro@"intianjora.cs.tut.fi" IDENTIFIED BY 'v15qu1ck_r0'; +GRANT Select ON random_forest.* TO visquick_ro@"%" IDENTIFIED BY 'v15qu1ck_r0'; + +GRANT ALL ON random_forest.* TO visquick_rw@"localhost" IDENTIFIED BY 'v1sr3ad'; +GRANT ALL ON random_forest.* TO visquick_rw@"intianjora.cs.tut.fi" IDENTIFIED BY 'v1sr3ad'; +GRANT ALL ON random_forest.* TO visquick_rw@"%" IDENTIFIED BY 'v1sr3ad'; + +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('1',247249719); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('10',135374737); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('11',134452384); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('12',132349534); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('13',114142980); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('14',106368585); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('15',100338915); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('16',88827254); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('17',78774742); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('18',76117153); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('19',63811651); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('2',242951149); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('20',62435964); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('21',46944323); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('22',49691432); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('3',199501827); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('4',191273063); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('5',180857866); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('6',170899992); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('7',158821424); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('8',146274826); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('9',140273252); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('X',154913754); +INSERT INTO random_forest.chrom_info (chr_name,chr_length) VALUES ('Y',57772954); + +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12698704,12711313,'NM_001103169','AADACL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12627152,12649684,'NM_001013630','AADACL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',94230981,94359293,'NM_000350','ABCA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',227718951,227761065,'NM_012089','ABCB10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',94656520,94756807,'NM_002858','ABCD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',177335084,177465442,'NM_001168237','ABL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',75962630,76001943,'NM_001127328','ACADM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1217626,1233132,'NM_030649','ACAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224399002,224441046,'NM_022735','ACBD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',178523974,178738645,'NM_032360','ACBD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54786394,54873005,'NM_015547','ACOT11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6246918,6343351,'NM_181865','ACOT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',145585791,145609258,'NM_016361','ACP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',227633615,227636466,'NM_001100','ACTA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',17954394,18026145,'NM_030812','ACTL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',234916392,234994181,'NM_001103','ACTN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2927905,2929327,'NM_080431','ACTRT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153290385,153301876,'NM_207194','ADAM15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',120237678,120240670,'NM_021794','ADAM30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159426161,159435469,'NM_005099','ADAMTS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148788521,148800036,'NM_019032','ADAMTSL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152821157,152847348,'NM_015841','ADAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33319300,33358582,'NM_052998','ADC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',225194560,225241869,'NM_020247','ADCK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166045248,166150077,'NM_018417','ADCY10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201176583,201194108,'NM_015999','ADIPOR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201363458,201403156,'NM_000674','ADORA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111843573,111848266,'NM_000677','ADORA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36327039,36332120,'NM_017825','ADPRHL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',242638416,242682059,'NM_001126','ADSS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',48771113,50262213,'NM_032785','AGBL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100088632,100162167,'NM_000643','AGL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15770780,15784192,'NM_024758','AGMAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',945365,981362,'NM_198576','AGRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',228904891,228916959,'NM_000029','AGT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11718728,11733415,'NM_020350','AGTRAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245069024,245161349,'NM_015446','AHCTF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110328909,110367887,'NM_001242673','AHCYL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27733342,27802730,'NM_001029882','AHDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',220907977,220952487,'NM_022831','AIDA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26520936,26553208,'NM_001039775','AIM1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157298898,157313271,'NM_004833','AIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',4614964,4743711,'NM_018836','AJAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33246127,33275099,'NM_001199199','AK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',65385819,65470416,'NM_203464','AK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',77520249,77798242,'NM_174858','AK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39229502,39244324,'NM_001136275','AKIRIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109160047,109201239,'NM_152763','AKNAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45789041,45808310,'NM_001202414','AKR1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19503048,19511227,'NM_003689','AKR7A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',113267494,113268818,'NR_002796','AKR7A2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19481643,19487867,'NM_012067','AKR7A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19465062,19473155,'NR_040288','AKR7L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',241729643,242073509,'NM_001206729','AKT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19070510,19101880,'NM_170726','ALDH4A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',163898072,163934524,'NM_000696','ALDH9A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',95220866,95311095,'NM_144988','ALG14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',63605848,63676821,'NM_013339','ALG6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',21708444,21777492,'NM_001127501','ALPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110404519,110414845,'NM_006492','ALX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109850968,109853859,'NM_020703','AMIGO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',115017242,115039762,'NM_000036','AMPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109964798,109976200,'NM_004037','AMPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',103999824,104008696,'NM_004038','AMY1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',104031563,104040412,'NM_001008218','AMY1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',104093963,104102833,'NM_001008219','AMY1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',103961521,103969923,'NM_000699','AMY2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',103898844,103923672,'NM_020978','AMY2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',211232146,211255791,'NM_144567','ANGEL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',177085292,177106838,'NM_004673','ANGPTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',62835774,62843768,'NM_014495','ANGPTL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11171984,11178625,'NM_021146','ANGPTL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',70497272,70593005,'NM_030816','ANKRD13C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144181864,144187004,'NM_001039888','ANKRD34A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144260565,144279883,'NM_144698','ANKRD35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166481442,166483292,'NR_026844','ANKRD36BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',171844097,171905624,'NM_198493','ANKRD45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148457340,148475128,'NM_030920','ANP32E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149221122,149234738,'NM_003568','ANXA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114239199,114249264,'NM_006594','AP4B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157824239,157825285,'NM_001639','APCS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148504422,148508233,'NM_001077628','APH1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',10413390,10425459,'NR_036462','APITD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',10412745,10434647,'NM_199006','APITD1-CORT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154828181,154830715,'NM_144772','APOA1BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159458706,159460042,'NM_001643','APOA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',181882033,181889071,'NM_203454','APOBEC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152560215,152564425,'NM_080429','AQP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226336983,226353536,'NM_001658','ARF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',94407050,94475895,'NM_004815','ARHGAP29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159283355,159306384,'NM_181720','ARHGAP30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',17779634,17896957,'NM_001011722','ARHGEF10L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155171255,155281786,'NM_198236','ARHGEF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3361006,3387537,'NM_014448','ARHGEF16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16397185,16411691,'NM_153213','ARHGEF19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154183253,154214960,'NM_001162384','ARHGEF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26895108,26981188,'NM_139135','ARID1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',233396832,233557425,'NM_001206794','ARID4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200368599,200380489,'NM_138795','ARL8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149048804,149115868,'NM_001197325','ARNT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',181861954,181871608,'NM_005717','ARPC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44171578,44175499,'NM_001136215','ARTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229181445,229203102,'NM_022786','ARV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23627642,23683337,'NM_001143778','ASAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',76157145,76170704,'NR_026546','ASB17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153571675,153798948,'NM_018489','ASH1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',195319879,195382447,'NM_001206846','ASPM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',175096825,175400647,'NM_004319','ASTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1437772,1459930,'NM_001170536','ATAD3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1397026,1421445,'NM_031921','ATAD3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1374931,1395401,'NM_001039211','ATAD3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',210848616,210860739,'NM_001206485','ATF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',160002657,160200484,'NM_007348','ATF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',63022364,63103529,'NM_178221','ATG4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',17185039,17211010,'NM_001141973','ATP13A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',116727514,116748919,'NM_001160234','ATP1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',116749562,116762704,'NR_024126','ATP1A1OS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158352143,158379998,'NM_000702','ATP1A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158387975,158423391,'NM_144699','ATP1A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',167342570,167368584,'NM_001677','ATP1B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201862537,201979832,'NM_001684','ATP2B4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111793265,111806048,'NM_001688','ATP5F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44213188,44216559,'NM_001039457','ATP6V0B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',196758974,196776698,'NM_133326','ATP6V1G3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152566899,152590404,'NM_020452','ATP8B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46873297,46904137,'NM_001243728','ATPAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46910083,46911843,'NM_001145474','ATPAF1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28435188,28437203,'NM_178191','ATPIF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109828083,109836943,'NM_153340','ATXN7L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218506143,218507680,'NR_001587','AURKAPS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204390905,204398105,'NM_000707','AVPR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',177601477,177790493,'NM_144696','AXDND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',233677155,233734404,'NM_152490','B3GALNT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',191414482,191422366,'NM_003783','B3GALT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1157491,1160283,'NM_080605','B3GALT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44217460,44229430,'NM_003780','B4GALT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159407723,159414382,'NM_003779','B4GALT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31965304,32002235,'NM_001703','BAI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',90950166,90955382,'NM_020063','BARHL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',210926381,210939950,'NM_018664','BATF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154878363,154889888,'NM_198427','BCAN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',93799936,93919973,'NM_003567','BCAR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114911703,114925788,'NM_005872','BCAS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',85504047,85515175,'NM_003921','BCL10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114220958,114231692,'NM_001010922','BCL2L15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',145479805,145564639,'NM_004326','BCL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',48966126,49015134,'NM_024603','BEND5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45021843,45026013,'NM_153274','BEST4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154478574,154479747,'NM_199173','BGLAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',167603817,167632404,'NM_003666','BLZF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39729904,39768128,'NM_181809','BMP8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39996489,40027120,'NM_001720','BMP8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149275652,149286700,'NM_001159642','BNIPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148137778,148138972,'NM_016074','BOLA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218297446,218329814,'NM_006085','BPNT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',92187515,92252573,'NM_207189','BRDT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',220952528,220972729,'NM_144695','BROX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166152536,166172931,'NM_001143674','BRP44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32603291,32632649,'NM_018045','BSDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',55237204,55247053,'NM_057176','BSND'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45046740,45052388,'NM_001136537','BTBD19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',92318449,92385986,'NM_183242','BTBD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52294444,52328976,'NM_001136497','BTF3L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201541286,201545352,'NM_006763','BTG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',242582559,242619016,'NM_001012970','C1orf100'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',242691295,242870285,'NM_173807','C1orf101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',170656450,170704592,'NM_139240','C1orf105'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199127249,199151487,'NM_018265','C1orf106'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',37919828,37928779,'NM_017850','C1orf109'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',161090710,161105229,'NM_178550','C1orf110'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',160610138,160613268,'NM_182581','C1orf111'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',168031173,168088853,'NM_018186','C1orf112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',167630737,167663294,'NM_021179','C1orf114'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218930250,218939122,'NM_024709','C1orf115'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205258488,205272724,'NM_023938','C1orf116'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',38046059,38047713,'NM_001142726','C1orf122'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53452359,53458877,'NM_017887','C1orf123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229540304,229556612,'NM_032018','C1orf124'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15310897,15351547,'NR_027136','C1orf126'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',10929116,10964681,'NM_001170754','C1orf127'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',169171235,169300530,'NM_001163629','C1orf129'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24755153,24808405,'NM_001010980','C1orf130'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229426131,229443547,'NM_152379','C1orf131'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',208471426,208474089,'NR_024337','C1orf133'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26033083,26058435,'NM_024037','C1orf135'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',219569892,219576261,'NR_024236','C1orf140'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',67330446,67366808,'NM_001013674','C1orf141'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16566169,16597227,'NM_001114600','C1orf144'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',92456160,92483955,'NM_001012425','C1orf146'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245779073,245806471,'NM_145278','C1orf150'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19796057,19857536,'NM_001204089','C1orf151-NBL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12728749,12743689,'NM_152290','C1orf158'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1007060,1041599,'NM_017891','C1orf159'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111818126,111822657,'NM_174896','C1orf162'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',56957064,57057957,'NM_001004303','C1orf168'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',900441,907336,'NR_027693','C1orf170'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27148633,27159488,'NM_152365','C1orf172'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',74806382,74912010,'NM_001002912','C1orf173'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3795556,3806717,'NM_207356','C1orf174'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',55044323,55080525,'NM_152607','C1orf177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',84866500,84873291,'NR_027379','C1orf180'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154573728,154583409,'NM_144627','C1orf182'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',112066208,112083569,'NM_019099','C1orf183'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',51340493,51386342,'NM_001136508','C1orf185'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204405494,204455270,'NM_001007544','C1orf186'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11674367,11702923,'NM_198545','C1orf187'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152438471,152445433,'NM_001010979','C1orf189'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46441592,46459515,'NM_001013615','C1orf190'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159601144,159604288,'NM_001013625','C1orf192'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109450095,109458002,'NM_001122961','C1orf194'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229039487,229071958,'NM_001136494','C1orf198'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9635254,9637231,'NR_027045','C1orf200'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24556075,24612849,'NM_001199013','C1orf201'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158070887,158091761,'NM_001134233','C1orf204'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',182622772,182864778,'NM_030806','C1orf21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43520143,43523837,'NM_182517','C1orf210'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35088549,35097233,'NM_001164824','C1orf212'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23568297,23570917,'NR_033691','C1orf213'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35952063,35957377,'NM_152374','C1orf216'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',176778553,176784647,'NR_033186','C1orf220'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',160615319,160620125,'NM_001135240','C1orf226'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',211070107,211087614,'NM_001024601','C1orf227'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44912980,44963850,'NM_001145636','C1orf228'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245340084,245342342,'NM_207401','C1orf229'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',184611512,184657126,'NM_001164245','C1orf27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',232575836,232586418,'NM_001206641','C1orf31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226355050,226357645,'NM_024319','C1orf35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28071641,28085780,'NM_001105556','C1orf38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152445806,152459897,'NM_015449','C1orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',176748834,176758412,'NM_032126','C1orf49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43005502,43014000,'NM_024097','C1orf50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148521852,148526125,'NM_144697','C1orf51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',85488224,85497943,'NR_024113','C1orf52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',196138304,196143120,'NM_001024594','C1orf53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148511806,148519959,'NM_024579','C1orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224237025,224253689,'NM_152608','C1orf55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149286882,149290495,'NM_017860','C1orf56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154640678,154665808,'NM_006365','C1orf61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',25441326,25446572,'NM_020317','C1orf63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16203317,16205771,'NM_178840','C1orf64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',221633337,221635435,'NM_152610','C1orf65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150958621,150959529,'NM_001024679','C1orf68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1460020,1465603,'NM_001114748','C1orf70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',208022284,208024513,'NM_152485','C1orf74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154529107,154532073,'NM_144580','C1orf85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2105758,2129032,'NM_001146310','C1orf86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',60228653,60312030,'NM_152377','C1orf87'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111690717,111697162,'NM_181643','C1orf88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',170768882,170847596,'NM_014283','C1orf9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2508048,2512768,'NM_001195741','C1orf93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',34415139,34457318,'NM_001134734','C1orf94'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224803123,224863538,'NM_001003665','C1orf95'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',227523374,227545311,'NM_145257','C1orf96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',198578294,198609543,'NR_040064','C1orf98'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22835704,22838762,'NM_015991','C1QA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22852268,22860616,'NM_000491','C1QB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22842704,22847190,'NM_172369','C1QC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150076962,150079657,'NM_001136003','C2CD4D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205344229,205384940,'NM_000715','C4BPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205329206,205339960,'NM_000716','C4BPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',57093030,57156482,'NM_000562','C8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',57167470,57204276,'NM_000066','C8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148496841,148504102,'NM_012113','CA14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',8928508,8957735,'NM_001215','CA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',64709063,64931329,'NM_020925','CACHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',179719308,180042543,'NM_000721','CACNA1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199275262,199348317,'NM_000069','CACNA1S'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',173235514,173247786,'NM_014412','CACYBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157408000,157439556,'NM_021189','CADM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1836125,1838593,'NM_138705','CALML6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',207823667,207853907,'NM_020439','CAMK1G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20681470,20685315,'NM_018584','CAMK2N1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',198975308,199096454,'NM_203459','CAMSAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6767970,6854694,'NM_001195563','CAMTA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40278841,40310908,'NM_006367','CAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',221966741,222030343,'NM_001748','CAPN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',221781594,221920059,'NM_001143962','CAPN8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',228949752,229004141,'NM_006615','CAPN9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',112963597,113015764,'NM_006135','CAPZA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19537853,19684653,'NM_004930','CAPZB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15691355,15723527,'NM_001229','CASP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158426908,158438300,'NM_001231','CASQ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',116044148,116112949,'NM_001232','CASQ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',10629856,10779294,'NM_017766','CASZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26389705,26401620,'NM_198137','CATSPER4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52588852,52604465,'NM_032449','CC2D1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89174043,89231231,'NM_001008662','CCBL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45732184,45738338,'NR_033296','CCDC163P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45858302,45862318,'NM_001114938','CCDC17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',93418868,93516875,'NM_206886','CCDC18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158108777,158136530,'NM_012337','CCDC19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43045309,43055646,'NM_199342','CCDC23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44229866,44234785,'NM_152499','CCDC24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3658824,3678069,'NM_152492','CCDC27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32438788,32443578,'NM_024296','CCDC28B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',42773146,42892922,'NM_001080850','CCDC30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100371293,100388642,'NM_019083','CCDC76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1310953,1324581,'NM_030937','CCNL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154545375,154574830,'NM_005998','CCT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',117345904,117380690,'NM_004258','CD101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144407154,144426922,'NM_007053','CD160'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27578182,27582392,'NM_207397','CD164L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156490550,156494682,'NM_001763','CD1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156564363,156567945,'NM_001764','CD1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156526186,156531188,'NM_001765','CD1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156416360,156422840,'NM_001766','CD1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156590109,156593967,'NM_001185113','CD1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',117098608,117113374,'NM_001767','CD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159066573,159099316,'NM_001166664','CD244'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',165666500,165754471,'NM_198053','CD247'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',206126505,206151306,'NM_001773','CD34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205992005,206035484,'NM_002389','CD46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158915159,158948209,'NM_001778','CD48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26516997,26519601,'NM_001803','CD52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111217244,111244081,'NM_000560','CD53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205561439,205600934,'NM_001114752','CD55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',116858678,116915238,'NM_001779','CD58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156067327,156078258,'NM_005894','CD5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158777507,158815930,'NM_003874','CD84'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20788030,20817987,'NM_001785','CDA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100590610,100758421,'NM_003672','CDC14A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43597212,43601460,'NM_001255','CDC20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22251706,22289883,'NM_044472','CDC42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',225244188,225572449,'NM_003607','CDC42BPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149290070,149298749,'NM_020239','CDC42SE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',91739252,91763909,'NM_001134420','CDC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',191357710,191490565,'NM_024529','CDC73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',37930745,37947978,'NM_018101','CDCA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54377255,54392031,'NM_201546','CDCP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1624029,1645651,'NM_033529','CDK11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1560962,1645635,'NM_033493','CDK11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203740306,203768544,'NM_212502','CDK18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',51208229,51212897,'NM_078626','CDKN2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15655809,15671173,'NM_033440','CELA2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15675182,15690482,'NM_015849','CELA2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22200735,22211622,'NM_005747','CELA3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22176004,22188434,'NM_007352','CELA3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149939157,149955416,'NM_001172648','CELF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109594163,109619901,'NM_001408','CELSR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',212843154,212904537,'NM_016343','CENPF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172035310,172060400,'NM_033319','CENPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3718504,3763657,'NM_014704','CEP104'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',241354352,241485331,'NM_014812','CEP170'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',178190530,178350638,'NM_014810','CEP350'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26433279,26477886,'NM_022778','CEP85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111484355,111529247,'NM_006090','CEPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149204272,149214103,'NM_022075','CERS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',194887630,194937318,'NM_001014975','CFH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',195055483,195067942,'NM_002113','CFHR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',195179556,195194979,'NM_005666','CFHR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',195010552,195029826,'NM_001166624','CFHR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',195123766,195154466,'NM_006684','CFHR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',195213289,195245426,'NM_030787','CFHR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149750485,149777791,'NM_020770','CGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',145180914,145234067,'NM_004284','CHD1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6084433,6162781,'NM_015557','CHD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201414681,201422545,'NM_001276','CHI3L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111571803,111587585,'NM_001025197','CHI3L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111635060,111664708,'NM_201653','CHIA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201451829,201465483,'NM_003465','CHIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',239858789,239865855,'NM_001821','CHML'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',237858995,238139340,'NM_000740','CHRM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152806880,152818977,'NM_000748','CHRNB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151873081,151885406,'NM_015607','CHTOP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',41099314,41100605,'NM_133467','CITED4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153213741,153218349,'NR_024163','CKS1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',86707113,86738562,'NM_001285','CLCA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',86662356,86694828,'NM_006536','CLCA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',86872546,86893647,'NR_024604','CLCA3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',86785346,86819020,'NR_024602','CLCA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109273652,109307634,'NM_001048210','CLCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11788793,11810862,'NM_021737','CLCN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16221072,16233132,'NM_004070','CLCNKA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16242833,16256390,'NM_000085','CLCNKB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',42971350,42978512,'NM_001123395','CLDN19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24944346,25043402,'NM_013943','CLIC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153499282,153509905,'NM_003993','CLK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35970299,36008138,'NM_022111','CLSPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9711665,9807137,'NM_014944','CLSTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47572055,47617098,'NM_016308','CMPK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',222870801,222994872,'NM_152495','CNIH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',222611217,222630318,'NM_014184','CNIH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26376568,26388962,'NR_023345','CNKSR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',95135094,95165323,'NM_001839','CNN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24073046,24112404,'NM_001841','CNR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',244796261,244898507,'NM_152609','CNST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203278962,203313794,'NM_005076','CNTN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',228844824,228896354,'NM_007357','COG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',103114610,103346640,'NM_001190709','COL11A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31890434,31942355,'NM_001856','COL16A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',85967503,86394709,'NM_152890','COL24A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36333429,36338437,'NM_005202','COL8A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40538749,40555526,'NM_001852','COL9A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158525000,158579978,'NM_001098398','COPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',10432362,10434647,'NM_001302','CORT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1236827,1249909,'NM_017871','CPSF3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53434688,53452457,'NM_000098','CPT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205736095,205881733,'NM_000573','CR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205885080,205963659,'NM_175710','CR1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205694267,205729863,'NM_001006658','CR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154936023,154942232,'NM_001199723','CRABP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',195503956,195714208,'NM_001193640','CRB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150753601,150755105,'NM_019060','CRCT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152207020,152213456,'NM_130898','CREB3L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',165776874,165789680,'NM_003851','CREG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150648342,150653374,'NM_016190','CRNN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',17121031,17172061,'NM_014675','CROCC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16817337,16829988,'NR_026752','CROCCP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16666517,16691783,'NR_023386','CROCCP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157948702,157951003,'NM_000567','CRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152186771,152197756,'NM_181715','CRTC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',74943759,74971680,'NM_001889','CRYZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',115061056,115102194,'NM_001242892','CSDE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110254755,110275139,'NM_000757','CSF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36704230,36721502,'NM_172313','CSF3R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33752195,34404030,'NM_052896','CSMD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199719280,199743010,'NM_004078','CSRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',84791391,84812751,'NM_004388','CTBS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',70649488,70678122,'NM_001190463','CTH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9830920,9892903,'NM_020248','CTNNBIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',41217593,41250822,'NM_001905','CTPS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15637524,15645740,'NM_007272','CTRC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204484081,204498727,'NM_001910','CTSE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149035307,149047541,'NM_000396','CTSK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148969295,149005057,'NM_004079','CTSS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',112740322,112805309,'NM_018704','CTTNBP2NL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109838223,109844586,'NM_182580','CYB561D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201197624,201203027,'NM_016243','CYB5R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54410614,54438334,'NM_001031672','CYB5RL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155364777,155365087,'NR_001560','CYCSP52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110824910,110835414,'NR_003599','CYMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',60131567,60165011,'NM_000775','CYP2J2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47167432,47179743,'NM_000778','CYP4A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47375693,47387113,'NM_001010969','CYP4A22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47037256,47057608,'NM_000779','CYP4B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47261826,47289010,'NM_178033','CYP4X1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47305746,47356579,'NM_178134','CYP4Z1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47096492,47138734,'NR_002788','CYP4Z2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',85819031,85822236,'NM_001554','CYR61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',57236166,58488799,'NM_021080','DAB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153925508,153975424,'NM_004632','DAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157440426,157442914,'NM_002036','DARC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172060419,172094305,'NM_018122','DARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100425065,100487997,'NM_001918','DBT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166172420,166311705,'NM_018442','DCAF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158452128,158498974,'NM_015726','DCAF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32447281,32454384,'NM_001099434','DCDC2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114249437,114258231,'NM_022836','DCLRE1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153272905,153290030,'NM_152494','DCST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153257626,153272881,'NM_144622','DCST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',85556755,85816634,'NM_001134445','DDAH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15816539,15860139,'NM_032341','DDI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20850846,20860624,'NM_005216','DDOST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',160868851,161016871,'NM_006182','DDR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',112099712,112111722,'NM_007204','DDX20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',198879787,198905749,'NM_001031725','DDX59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159357391,159368880,'NM_001039712','DEDD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',222437550,222447765,'NM_003676','DEGS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40747019,40754801,'NM_022774','DEM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',195969761,196011246,'NM_001195216','DENND1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114928718,115014255,'NM_198459','DENND2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111531323,111544804,'NM_024901','DENND2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152168600,152185778,'NM_014856','DENND4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',68712422,68735387,'NM_017779','DEPDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',10443189,10455200,'NM_004401','DFFA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3763704,3791853,'NM_004402','DFFB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',55087887,55125509,'NM_014762','DHCR24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26631359,26670382,'NM_001243564','DHDDS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12550525,12600407,'NM_004753','DHRS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',181075061,181123740,'NM_001357','DHX9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',208067934,208097533,'NM_014388','DIEXF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54132448,54149347,'NM_001039716','DIO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',68284232,68289048,'NM_004675','DIRAS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229829183,230212023,'NM_001164547','DISC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',230016994,230020886,'NR_002227','DISC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',221055053,221245960,'NM_032890','DISP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',181696631,181707740,'NR_040063','DKFZP564C196'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',63787238,63788895,'NR_002771','DLEU2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35103623,35143571,'NM_001080418','DLGAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44451711,44458938,'NM_019100','DMAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46745254,46752473,'NM_172225','DMBX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',50655809,50661707,'NM_032110','DMRTA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53697659,53705746,'NM_033067','DMRTB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',223183985,223222249,'NM_144989','DNAH14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',102110154,102132887,'NR_033424','DNAJA1P5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',78243223,78255583,'NM_007034','DNAJB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6616814,6684553,'NM_018198','DNAJC11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15725938,15770815,'NM_015291','DNAJC16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',65503017,65654140,'NM_014787','DNAJC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28399376,28432129,'NM_014280','DNAJC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',37795106,37805045,'NM_003462','DNALI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',84636802,84653279,'NM_021233','DNASE2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',170077243,170648480,'NM_001136127','DNM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',170374346,170380598,'NR_038397','DNM3OS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',94107601,94117350,'NM_014597','DNTTIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',62692984,62926557,'NM_033407','DOCK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44208239,44211630,'NM_001384','DPH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',101227768,101263950,'NM_015958','DPH5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153378990,153379507,'NM_018973','DPM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166931318,166965066,'NM_001937','DPT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',97957901,98159203,'NM_001160301','DPYD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',93584065,93600736,'NM_001938','DR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111461476,111484361,'NM_178454','DRAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203378253,203447350,'NM_015375','DSTYK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',210275541,210344810,'NM_016448','DTL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',219941386,219982139,'NM_144729','DUSP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159986204,159993576,'NM_007240','DUSP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158017382,158018957,'NM_017823','DUSP23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',165330710,165365026,'NM_001080426','DUSP27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226847279,226854782,'NR_002834','DUSP5P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1260520,1274355,'NM_004421','DVL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204875503,204889165,'NM_003582','DYRK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23705506,23730299,'NM_004091','E2F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43402431,43410828,'NM_001159936','EBNA1BP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',21416326,21478770,'NM_001113347','ECE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53134169,53160034,'NM_001198961','ECHDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148747110,148752889,'NM_022664','ECM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',234625338,234714631,'NM_080738','EDARADD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',182926247,182990664,'NM_025191','EDEM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',41717032,41722931,'NM_001956','EDN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',243200253,243355153,'NM_001143943','EFCAB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',63761600,63810952,'NM_032437','EFCAB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15608977,15629426,'NM_024329','EFHD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153366972,153374010,'NM_182685','EFNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153317971,153326638,'NM_004952','EFNA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153302836,153308653,'NM_182689','EFNA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229566119,229627413,'NM_022051','EGLN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45088780,45224948,'NM_020365','EIF2B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36121396,36162486,'NM_012199','EIF2C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36169269,36294650,'NM_024852','EIF2C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36046414,36096077,'NM_017629','EIF2C4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204831597,204852527,'NM_006893','EIF2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32460557,32469792,'NM_003757','EIF3I'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',21005371,21310463,'NM_003760','EIF4G3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',50344550,50440127,'NM_001144775','ELAVL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200246312,200252938,'NM_004433','ELF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203855018,203868623,'NM_021795','ELK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43601658,43606286,'NM_022821','ELOVL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',79128036,79245083,'NM_022159','ELTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',120962432,121015209,'NR_003955','EMBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',223741156,223907468,'NM_018212','ENAH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',8843645,8861738,'NM_001428','ENO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',8861480,8862530,'NR_038351','ENO1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148866145,148868722,'NM_207168','ENSA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',29113674,29264320,'NM_001166006','EPB41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',37954232,38003411,'NM_001099439','EPHA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16323418,16355169,'NM_004431','EPHA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22762590,22802674,'NM_020526','EPHA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22909917,23114410,'NM_004442','EPHB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224064419,224099885,'NM_001136018','EPHX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',92268120,92301681,'NM_173567','EPHX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218208564,218286623,'NM_004446','EPRS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',51592522,51757583,'NM_001981','EPS15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110094224,110108167,'NM_139053','EPS8L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44459328,44593526,'NM_024066','ERI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43063835,43083247,'NM_018538','ERMAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',234445044,234511962,'NM_019891','ERO1LB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',7994365,8008980,'NM_018948','ERRFI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6407434,6443591,'NM_031475','ESPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16890299,16919239,'NR_026567','ESPNP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',214743210,214963437,'NM_001243519','ESRRG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202366812,202387930,'NM_018208','ETNK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155369599,155374801,'NM_005240','ETV3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155328458,155336224,'NM_001004341','ETV3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',92746840,93030549,'NM_005665','EVI5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',240078655,240119864,'NM_003686','EXO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229535104,229540201,'NM_175876','EXOC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11049262,11082525,'NM_002685','EXOSC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26220857,26235541,'NM_004455','EXTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',101110528,101133006,'NM_001439','EXTL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28169441,28287735,'NM_001990','EYA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159231624,159257757,'NM_016946','F11R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',195274943,195303020,'NM_001994','F13B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',94767319,94780001,'NM_001993','F3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',167747815,167822393,'NM_000130','F5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46632525,46652107,'NM_001441','FAAH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31610686,31618510,'NM_004102','FABP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',50679522,51198524,'NM_007051','FAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205143252,205161858,'NM_001193338','FAIM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',108904493,108983472,'NM_001010883','FAM102B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',183026788,183210305,'NM_052966','FAM129A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16256850,16272714,'NM_182623','FAM131C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1167688,1171965,'NM_001014980','FAM132A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24473,25944,'NR_026818','FAM138A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54847437,54861788,'NM_176782','FAM151A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52871653,52895325,'NM_001042693','FAM159A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',177978920,178051957,'NM_173509','FAM163A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32485404,32487048,'NM_032648','FAM167B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36560218,36562342,'NM_018166','FAM176B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',220977180,220990625,'NM_207468','FAM177B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43386180,43394654,'NM_001101376','FAM183A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153483619,153491898,'NM_006589','FAM189B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',113064711,113071379,'NM_182759','FAM19A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',177261696,177312325,'NM_014864','FAM20B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',243065261,243074982,'NM_198076','FAM36A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110378763,110398786,'NM_033088','FAM40A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',793313,802045,'NR_027055','FAM41C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20751518,20754100,'NM_207334','FAM43B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27204097,27211920,'NM_052943','FAM46B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',117950126,117972534,'NM_017709','FAM46C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26018983,26032020,'NM_001099627','FAM54B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',198449278,198450266,'NM_001105517','FAM58BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',175407255,175518181,'NM_021165','FAM5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',188333419,188713382,'NM_199051','FAM5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149235924,149245897,'NM_001163260','FAM63A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',93080308,93199667,'NM_001006605','FAM69A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',210864411,210866743,'NM_153606','FAM71A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204305533,204321697,'NM_001123168','FAM72A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',120640527,120657204,'NM_001100910','FAM72B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',78017896,78116669,'NM_198549','FAM73A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27925076,27962010,'NM_152660','FAM76A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',164305879,164402582,'NM_001017961','FAM78B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229221326,229242618,'NM_198552','FAM89A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',170894807,170902635,'NM_000639','FASLG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15957841,15985671,'NM_017556','FBLIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11631004,11637475,'NM_012168','FBXO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',222368413,222416372,'NM_001136115','FBXO28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16449145,16551535,'NM_018994','FBXO42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11637500,11645971,'NM_033182','FBXO44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11646736,11656996,'NM_018438','FBXO6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205197934,205210593,'NM_001122979','FCAMR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157526127,157544638,'NM_002001','FCER1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159451710,159455662,'NM_004106','FCER1G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148020873,148030698,'NM_000566','FCGR1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',120727650,120737467,'NM_001004340','FCGR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',147635917,147644921,'NR_027484','FCGR1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159741828,159755984,'NM_001136219','FCGR2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159899528,159915068,'NM_001190828','FCGR2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159817752,159836656,'NM_201563','FCGR2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159778174,159787037,'NM_001127593','FCGR3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159859611,159867876,'NM_001244753','FCGR3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27568187,27573902,'NM_173452','FCN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156030817,156056564,'NM_052938','FCRL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155982146,156013546,'NM_030764','FCRL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155914601,155937271,'NM_052939','FCRL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155810162,155834494,'NM_031282','FCRL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155749790,155788934,'NM_031281','FCRL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158038796,158052671,'NM_001004310','FCRL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159943385,159950766,'NM_001184873','FCRLA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159959080,159964557,'NM_001002901','FCRLB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153545162,153557081,'NM_001135822','FDPS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',59535212,60000990,'NM_001113411','FGGY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27811387,27834314,'NM_005248','FGR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',239727479,239749708,'NM_000143','FH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15446354,15597209,'NM_052929','FHAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',38235028,38243774,'NM_001243878','FHL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153222393,153232211,'NM_201398','FLAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150541274,150564303,'NM_002016','FLG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150587836,150599106,'NM_001014342','FLG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',178433766,178436482,'NR_026900','FLJ23867'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89862995,89871041,'NR_033981','FLJ27354'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',95712880,95717500,'NR_033966','FLJ31662'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43197306,43221616,'NR_033967','FLJ32224'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16033296,16047229,'NR_024279','FLJ37453'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',142510035,142535980,'NR_027468','FLJ39739'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53676630,53678281,'NR_002314','FLJ40434'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2966040,2974149,'NR_015440','FLJ42875'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',211098219,211139330,'NM_014053','FLVCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',211096568,211098103,'NR_027286','FLVCR1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',238321807,238705112,'NM_020066','FMN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',169484286,169521737,'NM_002021','FMO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',169421011,169448446,'NM_001460','FMO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',169326641,169353583,'NM_006894','FMO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',169550109,169577847,'NM_002022','FMO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',145124461,145163854,'NM_001144830','FMO5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',169373502,169397326,'NR_002601','FMO6P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',164839776,164861097,'NR_002925','FMO9P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201576374,201586912,'NM_002023','FMOD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',93686275,93792806,'NM_001164473','FNBP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33100455,33109001,'NM_001171940','FNDC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109057078,109086890,'NM_001144937','FNDC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47674275,47678950,'NM_004474','FOXD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',63561317,63563385,'NM_012183','FOXD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47654330,47656311,'NM_012186','FOXE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',42414796,42573490,'NM_014947','FOXJ3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',74436483,74446736,'NM_001199329','FPGT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',74436483,74782704,'NM_001112808','FPGT-TNNI3K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',99946846,100003937,'NM_001013660','FRRS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',78186178,78217365,'NM_003902','FUBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24044158,24067446,'NM_000147','FUCA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',207915292,207916358,'NM_015714','G0S2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149309703,149357631,'NM_144618','GABPB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1940627,1952052,'NM_000815','GABRD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',67923447,67926609,'NM_001199742','GADD45A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23994675,23999621,'NM_000403','GALE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',228269578,228484498,'NM_004481','GALNT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172099661,172103748,'NR_002578','GAS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152043826,152162075,'NM_020699','GATAD2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153470862,153481277,'NM_001171811','GBA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153450239,153463949,'NR_002188','GBAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89290574,89303631,'NM_002053','GBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89645825,89663081,'NR_003133','GBP1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89345897,89364387,'NM_004120','GBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89244947,89261137,'NM_018284','GBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89419418,89437221,'NM_052941','GBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89497221,89511132,'NM_052942','GBP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89602023,89626307,'NM_198460','GBP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89370021,89414311,'NM_207398','GBP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',94125177,94147600,'NM_002061','GCLM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',118207629,118273825,'NM_017686','GDAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',90231411,90233113,'NR_002830','GEMIN8P4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',92712905,92725021,'NM_005263','GFI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',233558491,233574467,'NR_036605','GGPS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',78284176,78375700,'NM_017655','GIPC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35031185,35033935,'NM_002060','GJA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',145694955,145699338,'NM_181703','GJA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',145841569,145848019,'NM_005267','GJA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39112325,39119885,'NM_030772','GJA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39100748,39119885,'NR_037633','GJA9-MYCBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35020497,35024554,'NM_001005752','GJB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',34997928,35001912,'NM_153212','GJB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',34993307,34996699,'NM_005268','GJB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226404037,226414150,'NM_020435','GJC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53744493,53972465,'NM_147193','GLIS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',92484542,92537154,'NM_053274','GLMN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',191332217,191341867,'NM_016066','GLRX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',182171588,182273486,'NM_015101','GLT25D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1250005,1254139,'NM_001029885','GLTPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',180617461,180627964,'NM_002065','GLUL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28867826,28914702,'NM_024482','GMEB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109892708,109939975,'NM_006496','GNAI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109947411,109957228,'NM_005272','GNAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1706584,1812386,'NM_002074','GNB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',67939736,68071743,'NM_018841','GNG12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',233777607,233879916,'NM_001098722','GNG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',84736593,84744850,'NM_005274','GNG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',37804999,37834173,'NM_013285','GNL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229443541,229480342,'NM_014236','GNPAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144221176,144227433,'NR_002328','GNRHR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148885324,148936296,'NM_018178','GOLPH3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202433910,202449843,'NM_198447','GOLT1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154001199,154093596,'NM_032292','GON4L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',168767886,168781553,'NM_001146039','GORAB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',165288705,165326492,'NM_005814','GPA33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',215670456,215871032,'NM_018040','GPATCH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27089565,27099549,'NM_022078','GPATCH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154830723,154837903,'NM_015590','GPATCH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45865562,45924889,'NM_021639','GPBP1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27078459,27089456,'NM_018066','GPN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',234372454,234438832,'NM_003272','GPR137B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6229992,6243622,'NM_207370','GPR153'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9087062,9111816,'NM_024980','GPR157'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166320620,166372248,'NM_153832','GPR161'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199108788,199109874,'NM_005298','GPR25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27591738,27594904,'NM_005281','GPR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200358651,200365257,'NM_004767','GPR37L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172683834,172685306,'NM_005684','GPR52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109884016,109889978,'NM_031936','GPR61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100776315,100780171,'NM_022049','GPR88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144475951,144538460,'NM_001097613','GPR89A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',145867129,145932377,'NM_016334','GPR89B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144595224,144635406,'NM_001097616','GPR89C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109221125,109274567,'NM_013296','GPSM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52840630,52847311,'NM_015696','GPX7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',238719495,238842085,'NM_022469','GREM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24518398,24563557,'NM_198174','GRHL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',37033714,37272431,'NM_000831','GRIK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26358097,26361706,'NM_024869','GRRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110031940,110037890,'NM_000561','GSTM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110012166,110028142,'NM_001142368','GSTM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110078076,110085183,'NR_024537','GSTM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110000220,110005854,'NR_024538','GSTM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110056386,110062414,'NM_000851','GSTM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89090908,89129889,'NM_001514','GTF2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',42400948,42402982,'NM_033553','GUCA2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',42391678,42394082,'NM_007102','GUCA2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226399026,226403278,'NM_001159391','GUK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224317030,224326326,'NM_002107','H3F3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224317050,224326326,'NR_002315','H3F3AP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9217449,9253981,'NM_004285','H6PD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',119712924,119738274,'NM_016527','HAO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154855709,154862141,'NM_021817','HAPLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152511662,152514975,'NM_001018837','HAX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110745399,110752069,'NM_006402','HBXIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153513997,153526262,'NM_020897','HCN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31855887,31865506,'NM_001525','HCRTR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32530294,32571811,'NM_004964','HDAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154978522,154988167,'NM_004494','HDGF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',234778927,234834464,'NM_018072','HEATR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54880014,54948527,'NR_026782','HEATR8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54880014,54980916,'NR_037640','HEATR8-TTC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45240806,45249614,'NM_024602','HECTD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',108992432,109005267,'NM_001102592','HENMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6397880,6402566,'NM_019089','HES2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6226838,6228225,'NM_001024598','HES3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',924204,925415,'NM_021170','HES4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2450043,2451544,'NM_001010926','HES5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39861689,39877935,'NM_014571','HEYL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144124547,144128902,'NM_202004','HFE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',91498910,91643014,'NM_001017975','HFM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',208568872,208916261,'NM_018194','HHAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',220762224,220788067,'NM_024746','HHIPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',70593080,70606293,'NM_001031693','HHLA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100276376,100321517,'NM_033055','HIAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114273518,114316218,'NM_152696','HIPK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148080408,148080942,'NM_003516','HIST2H2AA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148089251,148089785,'NM_001040874','HIST2H2AA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148125642,148126090,'NM_175065','HIST2H2AB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148125148,148125585,'NM_003517','HIST2H2AC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',120707556,120716365,'NR_027337','HIST2H2BA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148088382,148088964,'NR_036461','HIST2H2BC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148122633,148124856,'NM_003528','HIST2H2BE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148020868,148050552,'NM_001161334','HIST2H2BF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148078882,148079389,'NM_001005464','HIST2H3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148078882,148079389,'NM_021059','HIST2H3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148051403,148051860,'NM_001123375','HIST2H3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148070844,148071240,'NM_003548','HIST2H4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148070844,148071240,'NM_001034077','HIST2H4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226711687,226712183,'NM_033445','HIST3H2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226712430,226712882,'NM_175055','HIST3H2BB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226679168,226679649,'NM_003493','HIST3H3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',42085446,42274183,'NR_038261','HIVEP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',219119365,219125023,'NM_021958','HLX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',183970305,184426708,'NM_031935','HMCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',34102266,34102979,'NR_033264','HMGB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24000953,24024536,'NM_000191','HMGCL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',120092141,120113078,'NM_005518','HMGCS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26671488,26675720,'NM_005517','HMGN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12829847,12831165,'NM_001013631','HNRNPCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23508862,23543440,'NM_001102399','HNRNPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',243080224,243094450,'NM_031844','HNRNPU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',243070562,243076866,'NR_026778','HNRNPU-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',60053120,60114638,'NM_015888','HOOK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148937158,148959988,'NM_032132','HORMAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20941757,20985768,'NM_016287','HP1BP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33124684,33132834,'NM_002143','HPCA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39917231,39929676,'NM_016257','HPCAL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45565131,45566933,'NM_032756','HPDL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150451181,150463293,'NM_001009931','HRNR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',87152922,87336713,'NM_001134492','HS2ST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',207926147,207974918,'NM_181755','HSD11B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',161027119,161049232,'NM_016371','HSD17B7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',119851348,119859204,'NM_000862','HSD3B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',119759265,119767185,'NM_000198','HSD3B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',119908025,119916722,'NR_033781','HSD3BP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',59370195,59385067,'NR_027120','HSD52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',91873155,91881923,'NR_003130','HSP90B3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159760659,159763311,'NM_002155','HSPA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159842472,159844965,'NR_024151','HSPA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54159821,54183876,'NM_016126','HSPB11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16213109,16217872,'NM_014424','HSPB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22021323,22136337,'NM_005529','HSPG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23390974,23393809,'NM_000864','HTR1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19864366,19878642,'NM_000871','HTR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43689260,43692247,'NM_001190880','HYI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218334077,218388006,'NM_018060','IARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226420051,226436581,'NM_001010867','IBA57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6203839,6218631,'NM_012405','ICMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23757007,23758872,'NM_002167','ID3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',179324260,179326602,'NM_016545','IER5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19103360,19155413,'NM_001136265','IFFO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157246305,157291569,'NM_001206567','IFI16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',78888064,78902351,'NM_006417','IFI44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',78858675,78884418,'NM_006820','IFI44L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27865158,27871311,'NM_022872','IFI6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199426575,199464703,'NM_001164586','IGFN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',18306826,18577564,'NM_032880','IGSF21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',116918553,117011837,'NM_001542','IGSF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158327752,158335063,'NM_052868','IGSF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158163452,158182010,'NM_020789','IGSF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204710208,204736846,'NM_001193322','IKBKE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205007570,205012462,'NM_000572','IL10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',67545634,67635171,'NM_001559','IL12RB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205038837,205082950,'NM_153758','IL19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205105776,205109191,'NM_018724','IL20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24318847,24342362,'NM_021258','IL22RA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',67404756,67498238,'NM_144701','IL23R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205137410,205144107,'NM_001185158','IL24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24353233,24386352,'NM_170743','IL28RA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152644292,152708550,'NM_181359','IL6R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',165149064,165211185,'NM_199351','ILDR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151901137,151910103,'NM_004515','ILF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',61980736,62402179,'NM_176877','INADL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',38098955,38185316,'NM_005540','INPP5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',67036011,67039530,'NM_005478','INSL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155077288,155095336,'NM_014215','INSRR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151967190,152013179,'NM_023015','INTS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',210180363,210275625,'NM_015434','INTS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44185064,44206281,'NM_014652','IPO13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200064910,200120045,'NM_018085','IPO9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45932584,45989072,'NM_001145349','IPP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32443822,32446875,'NM_001160042','IQCC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154761820,154809020,'NM_178229','IQGAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',232806637,232811894,'NM_182972','IRF2BP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',208025590,208046143,'NM_001206696','IRF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',938709,939782,'NM_005101','ISG15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154959036,154964329,'NM_030980','ISG20L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144236346,144255225,'NM_003637','ITGA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',63679028,63761532,'NM_001206739','ITGB3BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159112953,159121584,'NM_017625','ITLN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159181439,159191213,'NM_080878','ITLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224886013,224993499,'NM_002221','ITPKB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151147662,151150986,'NM_005547','IVL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',183532144,183553084,'NM_006469','IVNS1ABP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',65071493,65204775,'NM_002227','JAK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',225985512,225989735,'NM_001161465','JMJD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152213368,152217075,'NM_006694','JTB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',59019050,59022373,'NM_002228','JUN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',62474424,62557671,'NM_181712','KANK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15128882,15267238,'NM_001018001','KAZN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110861361,110863320,'NM_005549','KCNA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110947298,110950498,'NM_004974','KCNA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111015832,111019178,'NM_002232','KCNA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6008659,6083840,'NM_172130','KCNAB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110554858,110578197,'NM_004978','KCNC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',112119976,112333300,'NM_004980','KCND3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',208918279,209374080,'NM_172362','KCNH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158273880,158306675,'NM_002241','KCNJ10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158317983,158325836,'NM_004983','KCNJ9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',231816372,231874881,'NM_002245','KCNK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',213323182,213477059,'NM_014217','KCNK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152936565,153109378,'NM_001204087','KCNN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',41022270,41078711,'NM_172163','KCNQ4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',194461535,194844122,'NM_198503','KCNT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',213807357,213861772,'NM_016121','KCTD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23218527,23282771,'NM_015013','KDM1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43888383,43943776,'NM_014663','KDM4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200963154,201044172,'NM_006618','KDM5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32252077,32282059,'NM_006559','KHDRBS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',173392745,173428572,'NM_001162895','KIAA0040'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19417170,19450633,'NM_015047','KIAA0090'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35671677,35795624,'NM_024874','KIAA0319L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46913417,46957323,'NM_014774','KIAA0494'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39647762,39654741,'NM_015038','KIAA0754'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154149459,154170812,'NM_014949','KIAA0907'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',92405196,92422868,'NM_015237','KIAA1107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109458107,109550926,'NM_020775','KIAA1324'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',231007260,231012715,'NM_019090','KIAA1383'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32980098,33013158,'NM_020888','KIAA1522'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',179148935,179181862,'NM_020950','KIAA1614'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1874611,1925136,'NM_001080484','KIAA1751'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',231530136,231587517,'NM_032435','KIAA1804'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11902231,11909072,'NM_138346','KIAA2013'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',198787247,198856485,'NM_014875','KIF14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20863093,20916904,'NM_020816','KIF17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',10193350,10364248,'NM_015074','KIF1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199205142,199259451,'NM_017596','KIF21B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',243384909,243933051,'NM_018012','KIF26B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44978076,45006025,'NM_006845','KIF2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',168157093,168310503,'NM_001204516','KIFAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156229686,156332468,'NM_018240','KIRREL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202426091,202432242,'NM_002256','KISS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44357108,44373396,'NM_173484','KLF17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',18680010,18685067,'NM_152375','KLHDC7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203572270,203592662,'NM_018203','KLHDC8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159334774,159336762,'NR_033385','KLHDC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201126852,201162994,'NM_021633','KLHL12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',885829,890962,'NM_198317','KLHL17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',171950702,172022463,'NM_014458','KLHL20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6573370,6585516,'NM_014851','KLHL21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',239762302,239825567,'NM_003679','KMO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46783902,46789474,'NM_001097611','KNCN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32346230,32414755,'NM_012316','KPNA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150997129,151001153,'NM_001025231','KPRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153408507,153412428,'NM_173852','KRTCAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52270364,52272060,'NM_138417','KTI12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',62433061,62450588,'NM_019079','L1TD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199616588,199635292,'NM_005558','LAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',207854840,207892297,'NM_001127641','LAMB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',181259217,181381350,'NM_002293','LAMC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',181421796,181477029,'NM_018891','LAMC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154291140,154294925,'NM_001145264','LAMTOR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',30977901,31003270,'NM_006762','LAPTM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202000906,202012103,'NM_017773','LAX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',223655826,223682438,'NM_002296','LBR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151066572,151067197,'NM_178348','LCE1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151051070,151052209,'NM_178349','LCE1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151043934,151045731,'NM_178351','LCE1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151035850,151037281,'NM_178352','LCE1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151025376,151027525,'NM_178353','LCE1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151015471,151016069,'NM_178354','LCE1F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150937463,150938542,'NM_178428','LCE2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150925222,150926500,'NM_014357','LCE2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150914394,150915673,'NM_178429','LCE2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150902495,150903759,'NM_178430','LCE2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150861933,150862203,'NM_178431','LCE3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150852910,150853198,'NM_178433','LCE3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150839761,150840186,'NM_178434','LCE3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150818483,150819604,'NM_032563','LCE3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150804753,150805872,'NM_178435','LCE3E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150948146,150948534,'NM_178356','LCE4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150749943,150751277,'NM_178438','LCE5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151081953,151083083,'NM_001128600','LCE6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32489426,32524353,'NM_005356','LCK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54247093,54256391,'NM_001010978','LDLRAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22011344,22024301,'NM_001013693','LDLRAD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',25742662,25767964,'NM_015627','LDLRAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224140604,224143469,'NM_020997','LEFTY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224190920,224195706,'NM_003240','LEFTY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151442542,151444220,'NM_001010857','LELP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203617129,203657837,'NM_001199052','LEMD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153232685,153233415,'NM_018655','LENEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',65658922,65875764,'NM_002303','LEPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',42984592,43005342,'NM_001243246','LEPRE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',65658718,65674278,'NM_017526','LEPROT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',234748136,234782902,'NM_201545','LGALS8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',234752991,234754431,'NR_034040','LGALS8-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200439527,200555512,'NM_021636','LGR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',178466055,178510811,'NM_033343','LHX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',75366706,75399806,'NM_001001933','LHX8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',196153139,196165896,'NM_020204','LHX9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26609855,26628806,'NM_024674','LIN28A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224485485,224563821,'NM_173083','LIN9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',751448,752765,'NR_024321','LINC00115'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',232831679,232837149,'NR_033927','LINC00184'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',180643378,180650571,'NR_034131','LINC00272'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202268197,202277015,'NR_027902','LINC00303'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22224293,22230302,'NR_023918','LINC00339'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',63397341,63555489,'NR_038252','LINC00466'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',209622719,209672500,'NR_026761','LINC00467'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150039388,150044506,'NM_001004432','LINGO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144188441,144210448,'NM_153713','LIX1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154351084,154374281,'NM_005572','LMNA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',87566738,87587194,'NM_006769','LMO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200132206,200182339,'NM_012134','LMOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',163437727,163592576,'NM_177398','LMX1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32599457,32600431,'NM_001167676','LOC100128071'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100865193,100885148,'NR_038914','LOC100128787'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',93830112,93838175,'NR_034091','LOC100129046'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',104417167,104421216,'NR_033990','LOC100129138'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',30964205,30972180,'NR_034182','LOC100129196'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111943151,111952463,'NR_034126','LOC100129269'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2271713,2273960,'NR_024489','LOC100129534'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',99242419,99386996,'NR_033940','LOC100129620'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43026247,43036488,'NM_001242750','LOC100129924'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',146341262,146368313,'NR_033189','LOC100130000'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',225982862,225988678,'NR_024485','LOC100130093'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46912294,46930356,'NR_038827','LOC100130197'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',236092097,236158242,'NR_027247','LOC100130331'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',842815,844680,'NR_026874','LOC100130417'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40927338,40930520,'NR_024567','LOC100130557'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',59023410,59137972,'NR_034014','LOC100131060'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',197043754,197173181,'NR_040073','LOC100131234'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',93548253,93583956,'NR_034089','LOC100131564'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157432398,157438836,'NR_037870','LOC100131825'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',313754,318444,'NR_028325','LOC100132062'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150077568,150083265,'NR_024237','LOC100132111'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',313754,318444,'NR_028322','LOC100132287'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',71284776,71305453,'NR_038420','LOC100132618'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43937995,43945599,'NR_033827','LOC100132774'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',313754,318444,'NR_028327','LOC100133331'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2485967,2487210,'NR_037844','LOC100133445'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3806827,3821871,'NR_024455','LOC100133612'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',142510035,142536110,'NR_027469','LOC100286793'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114200779,114245382,'NR_037864','LOC100287722'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229793660,229814459,'NR_034037','LOC100287814'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',690107,703931,'NR_033908','LOC100288069'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',183559601,183570794,'NR_038424','LOC100288079'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',68070558,68441258,'NR_040077','LOC100289178'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',145320537,145456323,'NR_038423','LOC100289211'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',176327265,176329751,'NR_027982','LOC100302401'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158197637,158215500,'NR_038849','LOC100505633'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153284291,153290265,'NR_040772','LOC100505666'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',87591797,87609926,'NR_038324','LOC100505768'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',163004976,163010502,'NR_038072','LOC100505795'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',212057717,212206231,'NR_037850','LOC100505832'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166636050,166658518,'NR_037851','LOC100505918'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',171470821,171712917,'NR_037845','LOC100506023'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172099008,172099703,'NR_037605','LOC100506046'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',112083985,112091943,'NR_038951','LOC100506343'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19492327,19494817,'NR_037847','LOC100506730'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',232730259,232734148,'NR_038426','LOC100506795'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',21492369,21498949,'NR_038404','LOC100506801'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',232926411,232934013,'NR_038856','LOC100506810'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23959458,23977374,'NR_038280','LOC100506963'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',41252848,41282149,'NR_037868','LOC100507178'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46776954,46808514,'NR_038403','LOC100507423'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53476869,53481043,'NR_038953','LOC100507564'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',55453668,55455716,'NR_038320','LOC100507634'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',178505420,178510439,'NR_037642','LOC100527964'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2471218,2474144,'NR_026927','LOC115110'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202604180,202605470,'NR_027022','LOC127841'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1324772,1327289,'NR_015434','LOC148413'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',206058346,206062564,'NR_026817','LOC148696'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201097504,201110992,'NR_002929','LOC148709'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245754603,245760729,'NR_027309','LOC148824'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31744425,31746754,'NR_034112','LOC149086'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245019541,245021411,'NR_015422','LOC149134'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1062259,1069297,'NR_038869','LOC254099'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',244745963,244754212,'NR_040002','LOC255654'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31756622,31762433,'NR_027085','LOC284551'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203609002,203623191,'NR_038425','LOC284576'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203790023,203792386,'NR_027086','LOC284578'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24399316,24410767,'NR_027087','LOC284632'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',180850897,180852387,'NR_036490','LOC284648'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',4371970,4384604,'NR_027088','LOC284661'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',168507169,168519973,'NR_026957','LOC284688'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',38447292,38453026,'NR_038928','LOC339442'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20558880,20627874,'NR_033887','LOC339505'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',87368035,87407474,'NR_026989','LOC339524'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',242147326,242277242,'NR_033883','LOC339529'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',236710306,236715940,'NR_015407','LOC339535'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3679211,3682406,'NM_001163724','LOC388588'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47998786,48235149,'NM_001194986','LOC388630'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',147546099,147558366,'NR_027002','LOC388692'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45542168,45543878,'NR_024270','LOC400752'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',163712702,163817965,'NR_026744','LOC400794'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201222202,201243016,'NR_036557','LOC401980'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',34107143,34123646,'NR_038372','LOC402779'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13105546,13106913,'NM_001136561','LOC440563'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110630520,110683316,'NR_036595','LOC440600'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',163934610,163945823,'NR_036683','LOC440700'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',188860642,189037411,'NR_033922','LOC440704'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1343662,1346687,'NM_001243536','LOC441869'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201060951,201062044,'NR_038135','LOC641515'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',207668790,207672515,'NM_001104548','LOC642587'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',113540926,113550398,'NR_038846','LOC643441'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',217320939,217413753,'NR_038845','LOC643723'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',752926,779603,'NR_015368','LOC643837'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1523250,1525339,'NM_001242659','LOC643988'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',119941847,119943437,'NR_036540','LOC644242'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27522951,27525603,'NR_033926','LOC644961'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',147194909,147218219,'NR_027356','LOC645166'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153798395,153800359,'NR_027023','LOC645676'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156368457,156377054,'NR_033946','LOC646268'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26019031,26022684,'NR_024498','LOC646471'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246969339,246969774,'NM_001085474','LOC646627'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',103913548,103915531,'NR_024438','LOC648740'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12829822,12830824,'NM_001146181','LOC649330'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35213886,35216894,'NR_037869','LOC653160'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',143387793,143391382,'NR_037182','LOC653513'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28294032,28295656,'NR_027268','LOC653566'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',37693066,37712631,'NR_038842','LOC728431'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3900531,3912503,'NR_040065','LOC728716'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',143011868,143052130,'NR_024510','LOC728855'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',143011873,143053112,'NR_024584','LOC728875'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144957518,144981223,'NR_024442','LOC728989'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23209913,23214930,'NM_001242521','LOC729059'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',126560,130429,'NR_039983','LOC729737'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',95166171,95201414,'NR_033998','LOC729970'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',176241897,176273765,'NR_037167','LOC730102'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',171871283,171872895,'NM_001195190','LOC730159'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201534508,201541076,'NR_034150','LOC730227'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',241286238,241331669,'NR_029401','LOC731275'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151498802,151501224,'NM_000427','LOR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',85051673,85131484,'NM_012152','LPAR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',209983421,210070737,'NM_014873','LPGAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',82038669,82230695,'NM_012302','LPHN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',99502435,99547726,'NM_014839','LPPR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',99128388,99243037,'NM_001037317','LPPR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111291334,111308089,'NM_018372','LRIF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',113417353,113468865,'NM_014813','LRIG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53480629,53566409,'NM_033300','LRP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13674031,13712829,'NM_001010847','LRRC38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100387000,100416359,'NM_144620','LRRC39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',70383072,70443949,'NM_017768','LRRC40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46516658,46541625,'NM_006369','LRRC41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54184624,54206427,'NM_052940','LRRC42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3686643,3702928,'NM_020710','LRRC47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',163780101,163799809,'NM_001005214','LRRC52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',69998445,70361759,'NM_020794','LRRC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155157047,155169504,'NM_144702','LRRC71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89796859,89836008,'NM_015350','LRRC8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89871231,89957682,'NM_032270','LRRC8C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',90059160,90174577,'NM_001134479','LRRC8D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',74264289,74436459,'NM_001105659','LRRIQ3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202852925,202921220,'NM_201630','LRRN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36631617,36636080,'NM_032881','LSM10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23283102,23367938,'NM_033631','LUZP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159032551,159064669,'NM_002348','LY9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23990232,23994616,'NM_007260','LYPLA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',217413814,217452830,'NM_138794','LYPLAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149398847,149405048,'NM_001136543','LYSMD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',233890968,234096843,'NM_000081','LYST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9912362,9925413,'NM_032368','LZIC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',116455898,116479384,'NM_152367','MAB21L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39319675,39725397,'NM_012090','MACF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11657123,11674265,'NM_001127325','MAD2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',165225142,165258071,'NM_032858','MAEL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',113734997,114030068,'NM_001142782','MAGI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53465151,53476870,'NM_002370','MAGOH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',117711607,117869843,'NM_006699','MAN1A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',25816545,25983845,'NM_020379','MAN1C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',38032360,38039865,'NM_001113482','MANEAL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',240225414,240229008,'NM_001004343','MAP1LC3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27554256,27565924,'NM_004672','MAP3K6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36394389,36419028,'NM_018067','MAP7D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204924987,204974253,'NM_004759','MAPKAPK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32572026,32574421,'NM_023009','MARCKSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218768190,218904422,'NM_018650','MARK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11027441,11029883,'NM_139208','MASP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46041871,46274383,'NM_015112','MAST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',30956710,30969019,'NM_002379','MATN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148813650,148818838,'NM_182763','MCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',85163853,85235384,'NM_153259','MCOLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',85256352,85286757,'NM_018298','MCOLN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202752129,202793871,'NM_002393','MDM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23826410,23839643,'NR_027042','MDS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',37730762,37752951,'NM_022756','MEAF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',29391971,29430041,'NM_016011','MECR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28528099,28535065,'NM_001127350','MED18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43622174,43628070,'NM_052877','MED8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154700142,154737153,'NM_005920','MEF2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3394365,3517919,'NM_001409','MEGF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',168381811,168403547,'NM_001136107','METTL11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',170017383,170033479,'NM_015935','METTL13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',168028295,168030655,'NM_033418','METTL18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154308427,154318413,'NM_001093725','MEX3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',17173585,17180668,'NM_001135247','MFAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11962824,11996159,'NM_014874','MFN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40193370,40208215,'NM_032793','MFSD2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203804734,203838669,'NM_181644','MFSD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47670392,47672900,'NR_026878','MGC12982'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',78467870,78607735,'NR_027310','MGC27382'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',167022802,167028750,'NR_024160','MGC4473'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',163866733,163891996,'NM_004528','MGST3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',220858066,220907974,'NM_198551','MIA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1541107,1555853,'NM_001170689','MIB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',67163165,67226890,'NM_020948','MIER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12001885,12014693,'NM_021933','MIIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19796057,19828902,'NM_001204082','MINOS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',65296704,65296779,'NR_029516','MIR101-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229222196,229222293,'NR_031593','MIR1182'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200044361,200044453,'NR_031599','MIR1231'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',68421788,68421881,'NR_031664','MIR1262'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',191372255,191372336,'NR_031691','MIR1278'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',169337492,169337571,'NR_031627','MIR1295'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203684052,203684149,'NR_029893','MIR135B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',98284213,98284315,'NR_029679','MIR137'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',234082922,234082983,'NR_031718','MIR1537'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',197094795,197094905,'NR_029626','MIR181A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',197094624,197094734,'NR_029612','MIR181B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',71305901,71305987,'NR_029707','MIR186'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152432764,152432843,'NR_030600','MIR190B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218358121,218358206,'NR_029711','MIR194-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109943037,109943112,'NR_029583','MIR197'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26753619,26753671,'NR_031740','MIR1976'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',170380297,170380407,'NR_029618','MIR199A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1093105,1093195,'NR_029834','MIR200A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1092346,1092441,'NR_029639','MIR200B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',207672100,207672210,'NR_029622','MIR205'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',170374560,170374670,'NR_029627','MIR214'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218357817,218357927,'NR_029628','MIR215'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',98283386,98283495,'NR_039604','MIR2682'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',206042410,206042491,'NR_029518','MIR29B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',206041819,206041907,'NR_029832','MIR29C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40995542,40995631,'NR_029833','MIR30C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40992613,40992705,'NR_029846','MIR30E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23243384,23243452,'NR_036057','MIR3115'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',66866710,66866788,'NR_036060','MIR3117'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',168387142,168387227,'NR_036064','MIR3119-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',168387142,168387227,'NR_036065','MIR3119-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',170374570,170374651,'NR_036066','MIR3120'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',178674071,178674148,'NR_036067','MIR3121'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',210317577,210317650,'NR_036068','MIR3122'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',239362194,239362269,'NR_036069','MIR3123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',247087198,247087265,'NR_036070','MIR3124'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',117015893,117015972,'NR_031564','MIR320B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',222511328,222511466,'NR_031574','MIR320B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9134313,9134423,'NR_029610','MIR34A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33570580,33570680,'NR_037400','MIR3605'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226351586,226351665,'NR_037415','MIR3620'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',164143781,164143837,'NR_037431','MIR3658'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',38327489,38327588,'NR_037432','MIR3659'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',65296025,65296113,'NR_037443','MIR3671'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16747995,16748069,'NR_037446','MIR3675'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24128146,24128224,'NR_039615','MIR378F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245431891,245431985,'NR_037480','MIR3916'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26105439,26105532,'NR_037481','MIR3917'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3034398,3034459,'NR_036215','MIR4251'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6412480,6412543,'NR_036218','MIR4252'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23062238,23062306,'NR_036214','MIR4253'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31996847,31996923,'NR_036216','MIR4254'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',37399750,37399822,'NR_036217','MIR4255'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',112805914,112805978,'NR_036210','MIR4256'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148791028,148791114,'NR_036211','MIR4257'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153214792,153214883,'NR_036212','MIR4258'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',207863411,207863478,'NR_036213','MIR4260'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1094247,1094330,'NR_029957','MIR429'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',5546717,5546790,'NR_039612','MIR4417'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',30984589,30984666,'NR_039616','MIR4420'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',55463901,55463984,'NR_039618','MIR4422'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',85372064,85372144,'NR_039619','MIR4423'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',176913506,176913592,'NR_039622','MIR4424'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',231826520,231826588,'NR_039625','MIR4427'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12174348,12174426,'NR_039775','MIR4632'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',160393520,160393596,'NR_039798','MIR4654'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226716397,226716476,'NR_039812','MIR4666'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',232508835,232508908,'NR_039818','MIR4671'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',241576100,241576180,'NR_039824','MIR4677'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22918596,22918678,'NR_039832','MIR4684'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',5845318,5845388,'NR_039838','MIR4689'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19082274,19082361,'NR_039844','MIR4695'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',59971486,59971556,'NR_039861','MIR4711'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',194818165,194818234,'NR_039888','MIR4735'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',222652551,222652636,'NR_039896','MIR4742'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',233419971,233420054,'NR_039908','MIR4753'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54292339,54292415,'NR_039942','MIR4781'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',64818117,64818192,'NR_039957','MIR4794'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',175265121,175265204,'NR_030163','MIR488'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',41292368,41493117,'NR_039970','MIR5095'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',102103142,102582572,'NR_039672','MIR548AI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',213146071,213334022,'NR_031644','MIR548F3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',105130113,105476802,'NR_031679','MIR548H3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3467119,3467214,'NR_030277','MIR551A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100519384,100519452,'NR_030279','MIR553'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149784895,149784991,'NR_030280','MIR554'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153582764,153582860,'NR_030282','MIR555'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',160578959,160579054,'NR_030283','MIR556'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166611385,166611483,'NR_030284','MIR557'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218440506,218440584,'NR_031705','MIR664'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',94084975,94085055,'NR_030621','MIR760'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52074603,52074662,'NR_031580','MIR761'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155172546,155172660,'NR_030527','MIR765'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154656756,154656845,'NR_029691','MIR9-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',164390603,164390659,'NR_030626','MIR921'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153431591,153431687,'NR_030281','MIR92B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',117438787,117438873,'NR_030640','MIR942'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224478005,224480136,'NM_031944','MIXL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46795676,46842553,'NR_024176','MKNK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149298774,149307597,'NM_006818','MLLT11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45738442,45749326,'NM_015506','MMACHC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2511940,2554341,'NM_033467','MMEL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1558021,1559890,'NR_002946','MMP23A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1557422,1559893,'NM_006983','MMP23B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157067791,157085894,'NM_002432','MNDA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46845973,46855150,'NM_201403','MOB3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2242555,2312853,'NM_024848','MORN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',219026661,219054364,'NM_022746','MOSC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218988298,219024219,'NM_017898','MOSC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',113018570,113044891,'NM_020963','MOV10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43576061,43592722,'NM_005373','MPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159541148,159546386,'NM_000530','MPZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',165957810,166027780,'NM_001146191','MPZL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',179269183,179297697,'NM_001531','MR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1327138,1332556,'NM_017971','MRPL20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154973717,154977547,'NM_024540','MRPL24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54438427,54456644,'NM_016491','MRPL37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226361002,226363636,'NM_181456','MRPL55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149998746,150002664,'NM_031420','MRPL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',173248716,173259214,'NM_022100','MRPS14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36693948,36702627,'NM_031280','MRPS15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148532892,148547443,'NM_031901','MRPS21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19450661,19459209,'NM_016183','MRTO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',76035143,76151511,'NM_002440','MSH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16844655,16849502,'NR_027504','MST1P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16953987,16963562,'NR_002729','MST1P9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153846630,153851382,'NM_018116','MSTO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153982232,153987993,'NR_024117','MSTO2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',38047825,38097879,'NM_005955','MTF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',93317379,93377226,'NM_001164392','MTF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11768373,11788747,'NM_005957','MTHFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148167166,148174890,'NM_181873','MTMR11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32469847,32479898,'NR_026850','MTMR9LP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11089174,11245195,'NM_004958','MTOR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',235025203,235133904,'NM_000254','MTR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153445113,153450238,'NM_002455','MTX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153424923,153429330,'NM_001204295','MUC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20698527,20707261,'NM_024544','MUL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45567500,45578729,'NM_012222','MUTYH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1277933,1283778,'NM_032348','MXRA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201403561,201411565,'NM_004997','MYBPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109636509,109651186,'NM_001010985','MYBPHL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39100748,39111637,'NR_037632','MYCBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40137870,40140274,'NM_005376','MYCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',169871179,169888396,'NM_000261','MYOC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201318879,201322000,'NM_002479','MYOG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24255117,24311252,'NM_152372','MYOM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',58892998,58938335,'NM_001085487','MYSM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1672530,1700157,'NM_001198993','NADK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45822246,45857165,'NM_002482','NASP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199884072,200062725,'NM_020443','NAV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19842309,19857536,'NM_182744','NBL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16762998,16812569,'NM_017940','NBPF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144004727,144080041,'NM_001039703','NBPF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144743898,144793990,'NM_183372','NBPF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',146470265,146492472,'NM_015383','NBPF14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',146824811,146862891,'NM_001170755','NBPF15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',146843980,146862891,'NM_001102663','NBPF16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',146042423,146076705,'NM_001101663','NBPF24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',21639217,21683980,'NM_032264','NBPF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',108567485,108588226,'NM_001143989','NBPF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',108794426,108814783,'NM_001143988','NBPF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',120178910,120189302,'NM_001047980','NBPF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',143326315,143540167,'NM_001037675','NBPF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35795979,35804967,'NM_014284','NCDN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',181791319,181826679,'NM_001127651','NCF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158579686,158595366,'NM_015331','NCSTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159438560,159450808,'NM_001166159','NDUFS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39264553,39272895,'NM_001184979','NDUFS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16639753,16659171,'NM_018090','NECAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',71641212,72520865,'NM_173808','NEGR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',209898221,209915595,'NM_001204182','NEK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',196392730,196558171,'NM_133494','NEK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',210672851,210686344,'NM_013349','NENF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154905179,154913813,'NM_006617','NES'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',78126787,78182166,'NM_001172309','NEXN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203064404,203212897,'NM_001160333','NFASC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',61320121,61701048,'NM_001145512','NFIA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40929828,41009862,'NM_001142588','NFYC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',115630059,115682380,'NM_002506','NGF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158603484,158609262,'NM_005598','NHLH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',116180521,116185270,'NM_005599','NHLH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',234205754,234295104,'NM_002508','NID1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24614831,24672060,'NM_020448','NIPAL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159354531,159357608,'NM_001185094','NIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31425178,31485321,'NM_024522','NKAIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245647973,245679029,'NM_001127462','NLRP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',167368396,167603810,'NM_197972','NME7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9926072,9968143,'NM_022787','NMNAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',181483994,181654257,'NM_015039','NMNAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',869445,884542,'NM_015658','NOC2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6503993,6537245,'NM_024654','NOL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',160306204,160606437,'NM_014697','NOS1AP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',120255698,120413840,'NM_024408','NOTCH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',143920467,143997269,'NM_203458','NOTCH2NL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',5845456,5975120,'NM_015102','NPHP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',177786296,177811707,'NM_014625','NPHS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',181025206,181066142,'NM_001200051','NPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11828353,11830427,'NM_006172','NPPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11822962,11830260,'NR_037806','NPPA-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11840107,11841579,'NM_002521','NPPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151917787,151933092,'NM_000906','NPR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27110561,27113154,'NM_021969','NR0B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159466079,159474624,'NM_005122','NR1I3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',198263392,198413173,'NM_003822','NR5A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',115048607,115061038,'NM_002524','NRAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52027453,52117197,'NM_001101662','NRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',210966117,211031762,'NM_001042549','NSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46578976,46603277,'NM_199044','NSUN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39897379,39910297,'NM_032526','NT5C1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',107484267,107825998,'NM_014917','NTNG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',231152992,231180842,'NM_032324','NTPCR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155097294,155118266,'NM_002529','NTRK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203537813,203557506,'NM_030952','NUAK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203948569,203985995,'NM_022731','NUCKS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27120810,27145474,'NM_006600','NUDC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144297849,144300792,'NM_001012758','NUDT17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',161558346,161592177,'NM_031423','NUF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',227643666,227710711,'NM_018230','NUP133'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152231789,152394216,'NM_001159484','NUP210L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',222481658,222584514,'NM_002533','NVL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150005754,150010430,'NM_016178','OAZ3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226462483,226633198,'NM_001098623','OBSCN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',184636326,184637210,'NM_022375','OCLM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',86585094,86634613,'NM_001184765','ODF2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',102040714,102235378,'NM_058170','OLFM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',160219605,160260268,'NM_015441','OLFML2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114323552,114326398,'NM_020190','OLFML3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',58718978,58785034,'NM_145243','OMA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',239823074,239870324,'NM_014322','OPN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',29011240,29062795,'NM_000911','OPRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201729893,201744700,'NM_014359','OPTC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157676135,157677224,'NM_012351','OR10J1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157550083,157551073,'NM_001004467','OR10J3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157771491,157772421,'NM_001004469','OR10J5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156701975,156702917,'NM_001004473','OR10K1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156656341,156657280,'NM_001004476','OR10K2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156716291,156717299,'NM_001004472','OR10R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156634935,156635880,'NM_001004475','OR10T2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156815332,156816313,'NM_001004477','OR10X1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156842852,156843794,'NM_001004478','OR10Z1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246070852,246071821,'NM_001001959','OR11L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245902042,245902966,'NM_001005487','OR13G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246044724,246045654,'NM_001001966','OR14A16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246578699,246579638,'NM_001001918','OR14C36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246911292,246912228,'NM_001004734','OR14I1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245987386,245988331,'NM_012353','OR1C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246195256,246196264,'NM_001004491','OR2AK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245680953,245681907,'NM_001004492','OR2B11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245760056,245763764,'NM_198074','OR2C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245818284,245819238,'NM_001001915','OR2G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245835510,245836440,'NM_001001914','OR2G3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246751570,246752521,'NM_001013355','OR2G6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246167115,246330847,'NM_175911','OR2L13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246220191,246221116,'NR_002145','OR2L1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246268096,246269230,'NM_001004686','OR2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246290606,246291545,'NM_001004687','OR2L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246178782,246179721,'NM_001001963','OR2L8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246352060,246352705,'NR_002141','OR2M1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246409910,246410954,'NM_001004688','OR2M2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246432992,246433931,'NM_001004689','OR2M3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246468853,246469789,'NM_017504','OR2M4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246375072,246376011,'NM_001004690','OR2M5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246553554,246554493,'NM_001004691','OR2M7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246635918,246637028,'NM_030904','OR2T1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246822753,246823692,'NM_001004693','OR2T10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246856101,246857052,'NM_001001964','OR2T11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246524540,246525503,'NM_001004692','OR2T12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246682721,246683696,'NM_001004136','OR2T2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246879854,246880808,'NM_001001824','OR2T27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246788467,246789415,'NM_001004694','OR2T29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246703274,246704231,'NM_001005495','OR2T3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246502776,246503739,'NM_001004695','OR2T33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246803724,246804681,'NM_001001821','OR2T34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246868210,246869182,'NM_001001827','OR2T35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246591505,246592552,'NM_001004696','OR2T4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246718512,246719460,'NM_001004697','OR2T5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246617532,246618459,'NM_001005471','OR2T6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246150942,246151881,'NM_001005522','OR2T8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246125511,246126456,'NM_001001957','OR2W3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245720992,245722334,'NM_001004698','OR2W5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',357521,358460,'NM_001005277','OR4F16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',357521,358460,'NM_001005221','OR4F29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',58953,59871,'NM_001005484','OR4F5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245941753,245942680,'NM_001005286','OR6F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156936091,156937066,'NM_001005279','OR6K2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156953581,156954529,'NM_001005327','OR6K3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156991229,156992261,'NM_001005184','OR6K6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157002157,157003096,'NM_001005185','OR6N1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157013095,157014049,'NM_001005278','OR6N2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156799064,156800018,'NM_001160325','OR6P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156783541,156784519,'NM_001005189','OR6Y1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52611088,52642731,'NM_004153','ORC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',51855133,52027479,'NM_148908','OSBPL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36656093,36688673,'NM_145047','OSCP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20081474,20112024,'NM_015207','OTUD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148178855,148249310,'NM_020205','OTUD7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111758459,111771922,'NM_002557','OVGP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40007783,40009607,'NM_022120','OXCT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39799071,39815108,'NM_003819','PABPC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',17404207,17445088,'NM_013358','PADI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',17265842,17318535,'NM_007365','PADI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',17448179,17483314,'NM_016233','PADI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',17507276,17563082,'NM_012387','PADI4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',17571327,17600782,'NM_207421','PADI6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26158844,26197235,'NM_000437','PAFAH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',99884018,99932685,'NM_017734','PALMD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2429834,2447895,'NM_018216','PANK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',174698929,175078593,'NM_020318','PAPPA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154479833,154484416,'NM_198406','PAQR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26060561,26070331,'NM_178422','PAQR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',7944300,7967929,'NM_001123377','PARK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224615014,224662424,'NM_001618','PARP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54995158,55002814,'NM_152268','PARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',18830086,18935219,'NM_002584','PAX7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',162795220,163087684,'NM_002585','PBX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153183179,153195191,'NM_020524','PBXIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',231186504,231498082,'NM_014801','PCNXL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159495140,159521864,'NM_001102566','PCP4L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',55277736,55303114,'NM_174936','PCSK9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',184679320,184684479,'NM_022576','PDC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',66031443,66612850,'NM_002600','PDE4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',143562783,143706379,'NM_014644','PDE4DIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',145116053,145118152,'NR_002305','PDIA3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26310242,26324626,'NM_001243532','PDIK1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13782838,13817039,'NM_006474','PDPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144439022,144475563,'NM_002614','PDZK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47421847,47428358,'NM_005764','PDZK1IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144635744,144653976,'NR_003377','PDZK1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158441748,158451786,'NM_003768','PEA15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155130146,155152850,'NM_001080471','PEAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31868049,31882805,'NR_033688','PEF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',7767349,7827824,'NM_016831','PER3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2326100,2333870,'NM_002617','PEX10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144227521,144235089,'NM_003846','PEX11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',10457589,10613405,'NM_004565','PEX14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158513222,158521565,'NM_001193644','PEX19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159336969,159354490,'NM_012394','PFDN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205293242,205317785,'NM_006212','PFKFB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',143322171,143324084,'NR_003242','PFN1P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',247167064,247179968,'NM_170725','PGBD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',228524014,228580014,'NM_024554','PGBD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111728663,111733996,'NR_029429','PGCP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',10381671,10402788,'NM_002631','PGD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151536961,151549818,'NM_052891','PGLYRP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151569220,151587646,'NM_020393','PGLYRP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',63831534,63898505,'NM_002633','PGM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28568679,28699468,'NM_001048183','PHACTR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33561810,33588086,'NM_004427','PHC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6596342,6606680,'NM_153812','PHF13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',120055941,120088372,'NM_006623','PHGDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199701244,199704922,'NM_012396','PHLDA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114041346,114103300,'NM_006608','PHTF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149530896,149566757,'NM_001198773','PI4KB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144287344,144297903,'NM_006099','PIAS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',170677219,170679853,'NM_002642','PIGC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',77327254,77457720,'NM_005482','PIGK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158264085,158268407,'NM_145167','PIGM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205168489,205186434,'NM_002644','PIGR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26987040,26997481,'NM_017837','PIGV'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202658380,202726097,'NM_002646','PIK3C2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9634376,9711759,'NM_005026','PIK3CD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46278398,46370967,'NM_003629','PIK3R3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',70157592,70158588,'NR_023916','PIN1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20832534,20850591,'NM_032409','PINK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149437644,149488631,'NM_003557','PIP5K1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23977462,23987309,'NM_020362','PITHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153525707,153537849,'NM_000298','PKLR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',88922509,89074526,'NM_006256','PKN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199519202,199568744,'NM_000299','PKP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20174510,20179519,'NM_000300','PLA2G2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20363070,20374274,'NM_001105572','PLA2G2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20311020,20318595,'NM_012400','PLA2G2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20119386,20122697,'NM_014589','PLA2G2E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20338409,20349466,'NM_022819','PLA2G2F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',185064654,185224736,'NM_024420','PLA2G4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20269287,20290981,'NM_000929','PLA2G5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2397613,2426824,'NM_014638','PLCH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',240318311,240679407,'NM_001195811','PLD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202454603,202595667,'NM_014935','PLEKHA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6448738,6502656,'NM_198681','PLEKHG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15883413,15933851,'NM_015164','PLEKHM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',891739,900347,'NM_001160184','PLEKHN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148388793,148398449,'NM_016274','PLEKHO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45038622,45044254,'NM_004073','PLK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11917310,11958186,'NM_000302','PLOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',206262210,206484288,'NM_025179','PLXNA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204063772,204085899,'NM_152491','PM20D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154449402,154476492,'NM_007221','PMF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154449402,154479747,'NM_001199661','PMF1-BGLAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153163831,153176108,'NM_006556','PMVK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24158887,24162536,'NM_017761','PNRC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53300311,53323762,'NM_001199082','PODN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',165075347,165090333,'NM_017542','POGK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149641823,149681305,'NM_207171','POGZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144303961,144322241,'NM_006468','POLR3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144167592,144181744,'NM_032305','POLR3GL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46426939,46436708,'NM_017739','POMGNT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',165564904,165663206,'NM_001198783','POU2F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',38282109,38285037,'NM_002699','POU3F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153669594,153670677,'NR_034180','POU5F1P4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',56733006,56817845,'NM_003713','PPAP2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',42694759,42698673,'NM_024664','PPCS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201286933,201314487,'NM_015053','PPFIA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',146421383,146422043,'NM_178230','PPIAL4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',143074818,143075603,'NM_001143883','PPIAL4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',143074818,143075603,'NM_001135789','PPIAL4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',146568375,146569160,'NM_001164261','PPIAL4D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',146568375,146569160,'NM_001144032','PPIAL4E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',146568375,146569160,'NM_001164262','PPIAL4F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',142558666,142559404,'NM_001123068','PPIAL4G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39977103,40002173,'NM_203456','PPIE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39760538,39797957,'NR_003929','PPIEL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',42896634,42915016,'NM_006347','PPIH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',113054138,113059473,'NM_005167','PPM1J'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159402804,159407634,'NM_000309','PPOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200584452,200824320,'NM_002481','PPP1R12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202639114,202647567,'NM_032833','PPP1R15B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28029911,28050770,'NM_138558','PPP1R8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',210525501,210601828,'NM_006243','PPP2R5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',242882974,242938957,'NM_016076','PPPDE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40310968,40335729,'NM_000310','PPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19511326,19528381,'NM_017765','PQLC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12774132,12779364,'NM_023013','PRAMEF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12875313,12880681,'NM_001039361','PRAMEF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12807054,12813851,'NM_001146344','PRAMEF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12757570,12760635,'NM_001080830','PRAMEF12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13540855,13546098,'NM_001024661','PRAMEF13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13320000,13325243,'NM_001099854','PRAMEF14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13293762,13300777,'NM_001098376','PRAMEF15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13367840,13370846,'NM_001045480','PRAMEF16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13588674,13591651,'NM_001099851','PRAMEF17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13346639,13350156,'NM_001099850','PRAMEF18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13346639,13350156,'NM_001099790','PRAMEF19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12839527,12844351,'NM_023014','PRAMEF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13388652,13399530,'NM_001099852','PRAMEF20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13394549,13399530,'NM_001100114','PRAMEF21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13201419,13204258,'NM_001100631','PRAMEF22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13200782,13204279,'NM_001013692','PRAMEF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12861619,12868612,'NM_001009611','PRAMEF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13031100,13040338,'NM_001013407','PRAMEF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12920888,12929993,'NM_001010889','PRAMEF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12900099,12902820,'NM_001012277','PRAMEF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12899036,12903155,'NM_001012276','PRAMEF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13293762,13300778,'NM_001010890','PRAMEF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155003897,155037233,'NM_005973','PRCC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2975601,3345045,'NM_199454','PRDM16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',13903936,14024161,'NM_012231','PRDM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45749293,45761149,'NM_001202431','PRDX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',171713108,171724569,'NM_004905','PRDX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201711505,201727102,'NM_201348','PRELP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',184532027,184550311,'NM_005807','PRG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',56883577,56953596,'NM_006252','PRKAA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',145093308,145110753,'NM_005399','PRKAB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',84382539,84476769,'NM_182948','PRKACB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1994945,2106694,'NM_001033581','PRKCZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',107400789,107403439,'NM_018137','PRMT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31233498,31234068,'NR_002762','PRO0611'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110795310,110801499,'NM_032414','PROK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',212228482,212276385,'NM_002763','PROX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148560551,148592328,'NM_004698','PRPF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52642806,52656580,'NM_032864','PRPF38A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109036454,109045945,'NM_018061','PRPF38B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151456683,151458417,'NM_001195571','PRR9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',169721289,169829273,'NM_015172','PRRC2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',168899936,168975165,'NM_022716','PRRX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226070040,226100794,'NM_183062','PRSS38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149247596,149274813,'NM_021222','PRUNE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',225124895,225150427,'NM_000447','PSEN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109743175,109770593,'NM_002790','PSMA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35837729,35879739,'NM_001199779','PSMB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149638664,149641036,'NM_002796','PSMB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149493820,149506578,'NM_002810','PSMD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109623698,109627313,'NM_032636','PSRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28346263,28376042,'NM_001164723','PTAFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',96959762,97053193,'NM_021190','PTBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45058102,45081203,'NM_001166292','PTCH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11461881,11520227,'NM_020780','PTCHD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',71090623,71286079,'NR_028294','PTGER3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',78729315,78778974,'NM_000959','PTGFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',117254211,117334495,'NM_020440','PTGFRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',184907566,184916182,'NM_000963','PTGS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32144608,32157846,'NM_001195101','PTP4A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',212588661,212791647,'NM_005401','PTPN14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114157955,114215898,'NM_001193431','PTPN22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200382763,200397339,'NR_037664','PTPN7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',196874759,196928957,'NM_080923','PTPRC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43769133,43861930,'NM_130440','PTPRF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',29435614,29525912,'NM_005704','PTPRU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200403801,200425200,'NR_002930','PTPRVP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31176939,31311151,'NM_014676','PUM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1233856,1236920,'NM_153339','PUSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159307404,159326009,'NM_030916','PVRL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224174202,224178588,'NM_013328','PYCR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153196125,153200882,'NM_138300','PYGO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',157167960,157213473,'NM_152501','PYHIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',178390590,178433792,'NM_002826','QSOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152220751,152225430,'NM_002870','RAB13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154297589,154306919,'NM_020387','RAB25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52146215,52229024,'NM_002867','RAB3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218388232,218512466,'NM_012414','RAB3GAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28791593,28793675,'NM_001193532','RAB42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',227473501,227507141,'NM_004578','RAB4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204003736,204011233,'NM_003929','RAB7L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172395174,173193950,'NM_014857','RABGAP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',76024473,76033352,'NM_004582','RABGGTB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201114708,201124886,'NM_002871','RABIF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46485953,46516732,'NM_003579','RAD54L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',176960922,177155860,'NM_152663','RALGPS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111963927,112057624,'NM_002884','RAP1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',21795294,21850935,'NM_001145658','RAP1GAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',176329486,176715271,'NM_170692','RASAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204797114,204829239,'NM_182665','RASSF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',64983365,65071502,'NM_018211','RAVER2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32889335,32924399,'NM_001135255','RBBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203321892,203357773,'NM_005057','RBBP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110683467,110690826,'NM_022768','RBM15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',233382425,233391194,'NM_001161533','RBM34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144218913,144224892,'NM_005105','RBM8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',89217726,89231231,'NM_019610','RBMXL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9979841,9998665,'NM_052960','RBP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172166974,172228833,'NM_172071','RC3H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24701973,24735014,'NM_013441','RCAN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28705041,28738295,'NR_030725','RCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',17605837,17638837,'NM_018715','RCC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',209499911,209556348,'NM_018254','RCOR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',165866097,165942110,'NM_052862','RCSD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',209716486,209732882,'NM_183059','RD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',120146468,120155726,'NM_001159353','REG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202390566,202402088,'NM_000537','REN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2313073,2326743,'NM_007033','RER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',8335050,8406334,'NM_001042682','RERE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',174180589,174442993,'NM_022457','RFWD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149579739,149586393,'NM_000449','RFX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',181871830,182164289,'NM_015149','RGL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',190811479,190815782,'NM_002922','RGS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',190871890,190896063,'NM_002927','RGS13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',180834380,180840171,'NM_002928','RGS16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',190394214,190421568,'NM_130782','RGS18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',191044791,191048030,'NM_002923','RGS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',190552744,190603037,'NM_001039152','RGS21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',161305019,161313216,'NM_001102445','RGS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',161378712,161439587,'NM_003617','RGS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',239005439,239587101,'NM_002924','RGS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',180882414,180908690,'NM_001102450','RGS8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',180685878,180796355,'NM_001137669','RGSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39124065,39180043,'NM_017821','RHBDL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154605626,154621635,'NR_026549','RHBG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',25561326,25619950,'NM_138618','RHCE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',25471567,25529523,'NM_016124','RHD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',113045271,113051201,'NM_001042679','RHOC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226847016,226949039,'NR_037962','RHOU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149960636,149968706,'NM_001144956','RIIAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',42619054,42662487,'NM_173642','RIMKLA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40858938,40903911,'NM_014747','RIMS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154134224,154147801,'NM_006912','RIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40399627,40479180,'NM_012421','RLF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',180809391,180825017,'NM_021133','RNASEL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',51474532,51511707,'NM_014372','RNF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144322392,144400133,'NM_014455','RNF115'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20013108,20014358,'NM_019062','RNF186'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226741690,226750512,'NM_001010858','RNF187'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33174636,33202873,'NM_001127361','RNF19B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',183281173,183338363,'NM_007212','RNF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6188775,6203946,'NM_207396','RNF207'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44643546,44889983,'NM_018150','RNF220'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',996988,999550,'NM_001205252','RNF223'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',103841165,103899382,'NM_017619','RNPC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200218388,200241898,'NM_020216','RNPEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28847698,28847833,'NR_004407','RNU11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218113241,218359400,'NR_002753','RNU5F-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',64012277,64417295,'NM_005012','ROR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150045170,150070972,'NM_005060','RORC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111624668,111630253,'NR_003928','RP11-165H20.1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28090635,28113823,'NM_002946','RPA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',92537109,92626320,'NM_024813','RPAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',68667094,68688230,'NM_000329','RPE65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',84717507,84736621,'NM_025065','RPF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23890855,23895502,'NM_001199802','RPL11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6167666,6182266,'NM_000983','RPL22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159920118,159921666,'NR_002595','RPL31P11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',93070181,93080069,'NM_000969','RPL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148603613,148715665,'NM_015203','RPRD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199755654,199756343,'NR_026667','RPS10P7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45884039,45884944,'NR_026768','RPS15AP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152229862,152231255,'NM_001030','RPS27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26728835,26774107,'NM_002953','RPS6KA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',211291210,211513431,'NM_001136138','RPS6KC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',238237446,238243183,'NR_036695','RPS7P5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45013832,45016999,'NM_001012','RPS8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150392694,150398328,'NM_001122965','RPTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39077605,39097927,'NM_022157','RRAGC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154964886,154973376,'NM_015997','RRNAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',216525251,216577948,'NM_016052','RRP15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114105976,114156593,'NM_018364','RSBN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15858950,15860804,'NM_006511','RSC1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16430768,16436246,'NM_030907','RSG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',37849537,37873182,'NM_001038633','RSPO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100504301,100530914,'NM_003729','RTCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',25098588,25129357,'NM_004350','RUNX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153557263,153567533,'NM_001105204','RUSC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153556874,153560562,'NM_001039517','RUSC1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',95472298,95485369,'NM_015485','RWDD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154178103,154179249,'NM_181885','RXFP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',163636782,163681216,'NM_006917','RXRG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',235272324,236063911,'NM_001035','RYR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151867496,151871137,'NM_006271','S100A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150222009,150233338,'NM_002966','S100A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150271605,150276135,'NM_005620','S100A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151612807,151614699,'NM_005621','S100A12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151857899,151867339,'NM_005979','S100A13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151853355,151855414,'NM_020672','S100A14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151845990,151852138,'NM_080388','S100A16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151800208,151804930,'NM_005978','S100A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151786432,151788358,'NM_002960','S100A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151782721,151784906,'NM_002961','S100A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151776246,151780865,'NM_002962','S100A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151773699,151775341,'NM_014624','S100A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151696843,151699761,'NM_002963','S100A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151655623,151662325,'NM_176823','S100A7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151676094,151679127,'NM_001045479','S100A7L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151629131,151630288,'NM_002964','S100A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151596953,151600127,'NM_002965','S100A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33055762,33097063,'NM_022753','S100PBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',101474892,101479664,'NM_001400','S1PR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',850983,869824,'NM_152486','SAMD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',84536636,84589069,'NM_001010971','SAMD13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109558037,109561639,'NR_034072','SARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100321689,100371099,'NM_194292','SASS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153492393,153498800,'NM_005698','SCAMP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28033498,28033664,'NR_002997','SCARNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109444337,109444757,'NR_003023','SCARNA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',174204155,174204299,'NR_002998','SCARNA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154162372,154162501,'NR_003005','SCARNA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',244954000,244998062,'NM_016002','SCCPDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',41265457,41398192,'NM_001172222','SCMH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149405121,149409397,'NM_001204856','SCNM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1205678,1217272,'NM_001130413','SCNN1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53165488,53289877,'NM_001193617','SCP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',168088427,168129700,'NM_020423','SCYL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31114899,31154067,'NM_014654','SDC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',241485929,241730016,'NM_006642','SDCCAG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1142150,1157310,'NM_016547','SDF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',17217811,17253252,'NM_003000','SDHB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159550789,159601159,'NM_001035512','SDHC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',176164864,176205673,'NM_033127','SEC16B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',143807763,143828279,'NM_004892','SEC22B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',167958404,167969844,'NM_000450','SELE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149603403,149611788,'NM_003944','SELENBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',167926429,167944621,'NR_029467','SELL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',167824711,167866001,'NM_003005','SELP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52924601,52936626,'NM_023077','SELRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154389945,154414166,'NM_022367','SEMA4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149370786,149385764,'NM_001178061','SEMA6C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',87100715,87152695,'NM_004261','SEP15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',25999253,26017300,'NM_020451','SEPN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',67646080,67668711,'NM_001018068','SERBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31654998,31680114,'NM_001199038','SERINC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172139564,172153139,'NM_000488','SERPINC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',208472817,208483063,'NM_019605','SERTAD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28458549,28481589,'NM_031459','SESN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149165438,149203844,'NM_001145415','SETDB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',38195238,38228348,'NM_006802','SF3A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148161832,148166768,'NM_005850','SF3B4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27062219,27063534,'NM_006142','SFN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35421787,35431330,'NM_005066','SFPQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166461878,166478712,'NM_199344','SFT2D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',66772412,66983356,'NM_032291','SGIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',160631679,160648552,'NM_053282','SH2D1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',155042658,155053264,'NM_001161441','SH2D2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20918811,20931720,'NM_001103160','SH2D5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26478799,26480600,'NM_031286','SH3BGRL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',247071273,247086777,'NM_030645','SH3BP5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36544580,36559535,'NM_001162530','SH3D21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',86942840,86986455,'NM_001206651','SH3GLB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153201397,153213583,'NM_003029','SHC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',181135622,181189176,'NM_030933','SHCBP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152718577,152741150,'NM_001010846','SHE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200124419,200128338,'NR_030775','SHISA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',115113627,115124831,'NM_001102396','SIKE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',230600334,230717866,'NM_020808','SIPA1L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2149993,2231512,'NM_003036','SKI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',48339973,48420687,'NR_026749','SKINTL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158846514,158883705,'NM_003037','SLAMF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158721443,158759676,'NM_001184715','SLAMF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158975700,158991225,'NM_021181','SLAMF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158063102,158073906,'NM_020125','SLAMF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158187905,158190668,'NM_001146173','SLAMF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',113255992,113300498,'NM_003051','SLC16A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110706995,110735227,'NM_004696','SLC16A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',167699772,167721832,'NM_006996','SLC19A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53325442,53380877,'NM_006671','SLC1A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',116320641,116414198,'NM_018420','SLC22A15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',108478969,108544497,'NM_013386','SLC25A24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9522114,9565418,'NM_032315','SLC25A33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15935395,15940471,'NM_207348','SLC25A34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154430353,154449211,'NM_014655','SLC25A44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204148799,204179211,'NM_052934','SLC26A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152014391,152019257,'NM_024330','SLC27A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43163632,43197434,'NM_006516','SLC2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9024013,9052474,'NM_001135585','SLC2A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',8985945,9008991,'NM_207420','SLC2A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',209815003,209818722,'NM_021194','SLC30A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218154228,218168616,'NM_018713','SLC30A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26237100,26245191,'NM_032513','SLC30A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',101134221,101219899,'NM_133496','SLC30A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100208127,100261594,'NM_012243','SLC35A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',67237602,67292668,'NM_015139','SLC35D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1648683,1667298,'NM_182838','SLC35E2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1582801,1614103,'NM_001110781','SLC35E2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',232107301,232526885,'NM_173508','SLC35F3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152198211,152206812,'NM_014437','SLC39A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204024843,204048784,'NM_173854','SLC41A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',95058488,95133390,'NM_001114106','SLC44A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',75444662,75849387,'NM_152697','SLC44A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',8306976,8326814,'NM_001080397','SLC45A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203893603,203916253,'NM_033102','SLC45A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153374911,153377958,'NM_018845','SLC50A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',48460943,48486903,'NM_001135181','SLC5A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110494654,110546346,'NM_001010898','SLC6A17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44234741,44255584,'NM_201649','SLC6A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27297886,27354038,'NM_003047','SLC9A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',171736226,171838856,'NM_178527','SLC9A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',41253855,41260014,'NM_144990','SLFNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40635058,40661585,'NM_001198980','SMAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151117421,151124147,'NM_030663','SMCP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154485638,154519244,'NM_015327','SMG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',181708128,181789951,'NM_201569','SMG7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28134090,28158250,'NM_014474','SMPDL3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',212521187,212577100,'NM_020197','SMYD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',243979264,244737267,'NM_001167740','SMYD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',225989319,226035555,'NM_053052','SNAP47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151897768,151900950,'NM_012437','SNAPIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28777636,28780953,'NR_024127','SNHG12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28705041,28709991,'NR_002909','SNHG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',37774728,37792490,'NM_024700','SNIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',233357740,233357875,'NR_002956','SNORA14B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28780018,28780152,'NR_003035','SNORA16A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',210592782,210592915,'NR_004389','SNORA16B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',218440512,218440641,'NR_002994','SNORA36B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154156323,154156457,'NR_002974','SNORA42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28779479,28779611,'NR_002976','SNORA44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',39805632,39805769,'NR_002983','SNORA55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12489886,12490038,'NR_003025','SNORA59A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12489886,12490038,'NR_003022','SNORA59B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28778862,28778992,'NR_002987','SNORA61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',93078863,93078996,'NR_002444','SNORA66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201965331,201965456,'NR_003019','SNORA77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31194551,31194639,'NR_004054','SNORD103A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31181122,31181210,'NR_033295','SNORD103B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',93075433,93075528,'NR_000006','SNORD21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45016100,45016171,'NR_001456','SNORD38A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45016648,45016717,'NR_001457','SNORD38B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172101728,172101789,'NR_002750','SNORD44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',76026161,76026245,'NR_002749','SNORD45A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',76027749,76027820,'NR_002748','SNORD45B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',76025344,76025422,'NR_003042','SNORD45C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45014750,45014848,'NR_000024','SNORD46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172100129,172100206,'NR_002746','SNORD47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45014123,45014197,'NR_000015','SNORD55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172103434,172103506,'NR_002579','SNORD74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172102639,172102699,'NR_003941','SNORD75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172102395,172102476,'NR_003942','SNORD76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172102071,172102132,'NR_003943','SNORD77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172101393,172101447,'NR_003944','SNORD78'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172101110,172101191,'NR_003939','SNORD79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172100593,172100664,'NR_003940','SNORD80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172099935,172099978,'NR_003938','SNORD81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31213596,31213671,'NR_003066','SNORD85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28777841,28777921,'NR_003077','SNORD99'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31505001,31542231,'NM_004814','SNRNP40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229678133,229678894,'NR_033826','SNRPD2P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202097362,202106903,'NM_003094','SNRPE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149851285,149938183,'NM_030918','SNX27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',98899823,98998644,'NM_152238','SNX7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',177529639,177591076,'NM_003101','SOAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109653709,109742086,'NM_002959','SORT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202308868,202363494,'NM_005686','SOX13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',118297810,118529371,'NM_206996','SPAG17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',215871317,216107107,'NM_138796','SPATA17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16597724,16636506,'NM_198546','SPATA21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',48533630,48710463,'NM_019073','SPATA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16046945,16139537,'NM_015001','SPEN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',227506751,227507873,'NM_006542','SPHAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32028611,32054167,'NM_144569','SPOCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151223187,151224914,'NM_001199828','SPRR1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151270302,151272000,'NM_003125','SPRR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151295219,151296612,'NM_005988','SPRR2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151309340,151310708,'NM_001017418','SPRR2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151379217,151380593,'NR_003062','SPRR2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151278824,151280218,'NM_006945','SPRR2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151332234,151333625,'NM_001024209','SPRR2E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151351236,151352613,'NM_001014450','SPRR2F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151388681,151390051,'NM_001014291','SPRR2G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151240846,151242956,'NM_005416','SPRR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',151209751,151211693,'NM_173080','SPRR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9275527,9352177,'NM_025106','SPSB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',156847119,156923130,'NM_003126','SPTA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109201361,109202669,'NR_034168','SRG7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',204582822,204704406,'NM_015326','SRGAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',142627087,142805834,'NR_034178','SRGAP2P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11037235,11042678,'NM_003132','SRM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224032137,224044791,'NM_003133','SRP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',24842180,24872359,'NM_005839','SRRM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',70443952,70490289,'NM_001190987','SRSF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',29346836,29381224,'NM_005626','SRSF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54464782,54644567,'NM_018070','SSBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154245462,154257382,'NM_003145','SSR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1466915,1500125,'NM_014188','SSU72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',84881977,84928828,'NM_001166293','SSX2IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43945804,44169418,'NM_174970','ST3GAL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',76312976,76869257,'NM_152996','ST6GALNAC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',77105773,77302325,'NM_030965','ST6GALNAC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',112885935,112963563,'NM_138729','ST7L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47488397,47552406,'NM_001048166','STIL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36577811,36624072,'NM_032017','STK40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26099193,26105955,'NM_203399','STMN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27972280,28023550,'NM_177424','STX12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',179208798,179258669,'NM_005819','STX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109090807,109153671,'NM_007269','STXBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158553678,158554884,'NR_002190','SUMO1P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',221460783,221604167,'NM_017982','SUSD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148141495,148156058,'NM_014849','SV2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',183392814,183527536,'NM_001105518','SWT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',115198977,115339513,'NM_003176','SYCP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',85395943,85439316,'NM_032184','SYDE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',25421353,25431600,'NM_015484','SYF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32918093,32940948,'NM_001161708','SYNC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109810622,109826287,'NM_001040709','SYPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154095883,154121614,'NM_152280','SYT11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',208178160,208404256,'NM_153262','SYT14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200826346,200879204,'NM_001136504','SYT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114433436,114497995,'NM_205848','SYT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27541069,27553010,'NM_001193308','SYTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43628142,43692505,'NM_015284','SZT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',58813682,58815754,'NM_002353','TACSTD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',165092372,165112278,'NM_053053','TADA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28802195,28842191,'NM_005644','TAF12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109408520,109420147,'NM_005645','TAF13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',220797866,220829898,'NM_139352','TAF1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',227795486,227828417,'NM_014409','TAF5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158154526,158161908,'NM_003564','TAGLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',47454549,47468030,'NM_003189','TAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',232593681,232681472,'NM_005646','TARBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',10995265,11008136,'NM_007375','TARDBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148726543,148746373,'NM_025150','TARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6537924,6562404,'NM_177540','TAS1R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19038679,19058742,'NM_152232','TAS1R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1256588,1259707,'NM_152228','TAS1R3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',211031792,211056790,'NM_001146169','TATDN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',233597350,233678903,'NM_003193','TBCE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',119227188,119333702,'NM_152380','TBX15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166516901,166550288,'NM_005149','TBX19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23580141,23623848,'NM_003196','TCEA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54291861,54338004,'NM_153035','TCEANC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23942442,23961136,'NM_003198','TCEB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150345416,150353180,'NM_007113','TCHH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150323243,150328164,'NM_001008536','TCHHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',66990727,67017318,'NM_152665','TCTEX1D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45044172,45045544,'NM_001013632','TCTEX1D4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152741318,152787247,'NM_001098475','TDRD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',177841984,177927030,'NM_001199092','TDRD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150010664,150029634,'NM_006862','TDRKH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',180633874,180636374,'NM_172000','TEDDM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36322262,36326463,'NM_014466','TEKT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45582141,45729427,'NM_007170','TESK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35811557,35833514,'NM_178548','TFAP2E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',244770485,244796188,'NM_022366','TFB2M'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',216585298,216684584,'NM_001135599','TGFB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',91918487,92144147,'NM_001195684','TGFBR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6607796,6618233,'NM_138350','THAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153432002,153444314,'NM_007112','THBS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150109966,150148985,'NM_053055','THEM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',150086200,150092797,'NM_182578','THEM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36462603,36543544,'NM_005119','THRAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43539250,43561366,'NM_005424','TIE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200191241,200206412,'NM_006335','TIMM17A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31814672,31825874,'NM_001204414','TINAGL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166414794,166437975,'NM_152902','TIPRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',221349370,221383247,'NM_003268','TLR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',61919306,61963683,'NM_032027','TM2D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203463660,203509094,'NM_014858','TMCC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',163960151,164004759,'NM_019026','TMCO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40486159,40489952,'NM_001008740','TMCO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19881292,19998997,'NM_181719','TMCO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',93387886,93418834,'NM_016040','TMED5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43508251,43512260,'NM_144626','TMEM125'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109434925,109441077,'NM_020141','TMEM167B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201243156,201259820,'NM_138391','TMEM183A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',201243158,201259291,'NM_001079809','TMEM183B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',29318523,29321600,'NM_001171868','TMEM200B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',9571518,9587607,'NM_001010866','TMEM201'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',210604438,210654866,'NM_001198862','TMEM206'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27521222,27535478,'NR_037580','TMEM222'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32454384,32460513,'NM_019118','TMEM234'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32311089,32341054,'NM_018056','TMEM39B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54003721,54076813,'NR_033142','TMEM48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',25537375,25561439,'NM_014313','TMEM50A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15352815,15419561,'NM_001136218','TMEM51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1838888,1840600,'NM_178545','TMEM52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',44892087,44912686,'NM_024587','TMEM53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33132782,33139540,'NM_033504','TMEM54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',95355481,95435749,'NM_152487','TMEM56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',95356066,95483097,'NM_001199691','TMEM56-RWDD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',25629974,25699285,'NM_018202','TMEM57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54269936,54291699,'NM_004872','TMEM59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',55219052,55230554,'NM_182532','TMEM61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',224099855,224137043,'NM_014698','TMEM63A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45926433,45932695,'NM_016486','TMEM69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154519327,154528858,'NR_026678','TMEM79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',203318879,203320211,'NM_203376','TMEM81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',15941503,15947064,'NM_001013641','TMEM82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1351370,1353030,'NM_001146685','TMEM88B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199370522,199390255,'NM_016456','TMEM9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149409086,149415171,'NM_013353','TMOD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149395728,149398849,'NM_024575','TNFAIP8L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149395728,149409397,'NM_001204848','TNFAIP8L2-SCNM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2479150,2486613,'NM_003820','TNFRSF14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1128750,1131952,'NM_148902','TNFRSF18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12149646,12191864,'NM_001066','TNFRSF1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6443800,6448842,'NM_148965','TNFRSF25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1136568,1139411,'NM_003327','TNFRSF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12046020,12126851,'NM_001243','TNFRSF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',7898517,7925812,'NM_001561','TNFRSF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',171276982,171286726,'NM_005092','TNFSF18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',171419492,171443094,'NM_003326','TNFSF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',173303616,173383825,'NM_022093','TNN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199639517,199657497,'NM_003281','TNNI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',74473658,74782704,'NM_015978','TNNI3K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',199594764,199613428,'NM_000364','TNNT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',173558557,173979375,'NM_003285','TNR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45577928,45582237,'NM_025077','TOE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',233339280,233358879,'NM_014765','TOMM20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159462456,159467031,'NM_032174','TOMM40L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',169574658,169577087,'NR_002719','TOP1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',178118042,178155834,'NM_015602','TOR1AIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',178094787,178113564,'NM_022347','TOR1AIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',177317734,177331752,'NM_022371','TOR3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',222034217,222100297,'NM_005426','TP53BP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3558988,3642625,'NM_005427','TP73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3642407,3653195,'NR_033712','TP73-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152394403,152422349,'NM_001043351','TPM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',184547408,184611080,'NM_003292','TPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3531415,3536554,'NM_182752','TPRG1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',207996016,208022291,'NM_025228','TRAF3IP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',209586328,209614909,'NM_145759','TRAF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',36374759,36387654,'NM_014408','TRAPPC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226647999,226661140,'NM_145214','TRIM11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226663097,226671206,'NM_001134855','TRIM17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',114736921,114855304,'NM_015906','TRIM33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',117455199,117465934,'NM_001145635','TRIM45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153412983,153424069,'NM_025058','TRIM46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',246087123,246110061,'NM_015431','TRIM58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33383589,33420258,'NM_018207','TRIM62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26250384,26266708,'NM_032588','TRIM63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229365296,229423937,'NM_001004342','TRIM67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40079292,40121764,'NM_017646','TRIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',183353840,183392739,'NM_030934','TRMT1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28752115,28777644,'NM_017846','TRNAU1AP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27192781,27199964,'NM_001013642','TRNP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',191295174,191321738,'NR_033393','TROVE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',182287433,182309967,'NR_023349','TSEN15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',115373937,115378464,'NM_000549','TSHB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229731021,229768892,'NM_005999','TSNAX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229731021,230021613,'NR_028396','TSNAX-DISC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46413335,46424221,'NM_005727','TSPAN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',115392155,115433644,'NM_005725','TSPAN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32600448,32602511,'NM_052841','TSSK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159274044,159275398,'NM_001113205','TSTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',229108609,229181241,'NM_024525','TTC13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',55019339,55039529,'NM_001114108','TTC22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154816142,154823186,'NM_001105669','TTC24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',2562666,2696090,'NM_001242672','TTC34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',51525517,51583373,'NM_001144832','TTC39A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54954082,54980916,'NM_004623','TTC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',117404471,117447014,'NM_003594','TTF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1099148,1123176,'NM_001130045','TTLL10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',84107644,84237421,'NM_024686','TTLL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149779404,149822683,'NM_001126337','TUFT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32417931,32436473,'NM_175852','TXLNA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52258391,52293635,'NM_015913','TXNDC12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',144149818,144153985,'NM_006472','TXNIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',74971427,75004948,'NM_138467','TYW3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',160797919,160836257,'NM_003115','UAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152459948,152509953,'NM_014847','UBAP2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1179154,1199097,'NM_058167','UBE2J2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',152787674,152797744,'NM_017582','UBE2Q1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',200567407,200577717,'NM_014176','UBE2T'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',64442077,64482615,'NM_152489','UBE2U'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',10015627,10163883,'NM_001105562','UBE4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',11255841,11271078,'NM_013319','UBIAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',110456584,110458092,'NM_203412','UBL4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154271715,154290140,'NM_020131','UBQLN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',19273586,19409333,'NM_020765','UBR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20385164,20392529,'NM_152376','UBXN10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26481359,26505782,'NM_001077262','UBXN11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',191254157,191295146,'NM_001199263','UCHL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',164063355,164147479,'NM_012474','UCK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159390157,159395270,'NM_016406','UFC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',160734218,160766043,'NM_175866','UHMK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',84603228,84636164,'NR_003927','UOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',46541966,46555034,'NM_006004','UQCRH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16006243,16006781,'NM_001089591','UQCRHL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',227828603,227862569,'NM_014777','URB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45250391,45253928,'NM_000374','UROD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159275664,159282381,'NM_007122','USF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',213862858,214663361,'NM_206933','USH2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',62674970,62690063,'NM_003368','USP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',159395877,159402140,'NM_012475','USP21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',55304619,55453627,'NM_015306','USP24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',77934261,77998125,'NM_015017','USP33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',21877378,21982275,'NM_032236','USP48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',38250970,38263084,'NM_016037','UTP11L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',7830258,7836138,'NM_021995','UTS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',7753915,7764079,'NM_004781','VAMP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',169935918,169978002,'NR_033704','VAMP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',115986096,116042368,'NM_138959','VANGL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158636987,158665092,'NM_020335','VANGL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',211190509,211231550,'NM_001136475','VASH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',107915304,108309068,'NM_006113','VAV3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',100957783,100977189,'NM_001199834','VCAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',154535038,154536052,'NM_001004319','VHLL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245485996,245487070,'NM_173858','VN1R5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',12212699,12494685,'NM_018156','VPS13D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',148305965,148384129,'NM_007259','VPS45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149415557,149429264,'NM_005997','VPS72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',158090729,158099071,'NM_001013661','VSIG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',117487731,117555072,'NM_024626','VTCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',1360765,1368125,'NM_199121','VWA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',20489998,20553974,'NM_001039500','VWA5B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',119375361,119484818,'NM_201263','WARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27603320,27689265,'NM_001201404','WASF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',4224,19233,'NR_024540','WASH7P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',222639467,222688624,'NM_001115113','WDR26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',118273894,118304572,'NM_006784','WDR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',109314359,109386373,'NM_014969','WDR47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',85300580,85371409,'NM_145172','WDR63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',239882202,240032057,'NM_144625','WDR64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43410587,43449136,'NM_152498','WDR65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',111784034,111793353,'NM_024102','WDR77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',67075869,67163158,'NM_207014','WDR78'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27433593,27507697,'NM_015023','WDTC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',68363628,68470872,'NM_024911','WLS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',112811562,112865433,'NM_004185','WNT2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226261345,226315595,'NM_033131','WNT3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22316384,22342106,'NM_030761','WNT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',226175787,226202299,'NM_003395','WNT9A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',3537190,3556531,'NM_017818','WRAP73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166812334,166817939,'NM_002995','XCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',166776626,166779859,'NM_003175','XCL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28159090,28167191,'NM_018053','XKR8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',178867768,179126038,'NM_004736','XPR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33013426,33056220,'NM_003680','YARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',42920652,42940607,'NM_004559','YBX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',54089979,54128075,'NM_018982','YIPF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',205283816,205291045,'NM_018566','YOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',38041200,38046452,'NM_024640','YRDC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',28935719,28968874,'NM_001173128','YTHDF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153895856,153916244,'NM_001198899','YY1AP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202033273,202036213,'NM_001174108','ZBED6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',16140950,16175214,'NM_001242884','ZBTB17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',172104115,172122397,'NM_001122770','ZBTB37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',22650930,22730237,'NM_014870','ZBTB40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',195389436,195436295,'NM_194314','ZBTB41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',6562649,6571927,'NM_005341','ZBTB48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',153241735,153257623,'NM_015872','ZBTB7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32777358,32844129,'NM_001040441','ZBTB8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32703244,32726046,'NM_001145720','ZBTB8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',32859893,32888772,'NM_178547','ZBTB8OS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',202031373,202089879,'NM_014827','ZC3H11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',37712705,37722565,'NM_025079','ZC3H12A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52661535,52791350,'NM_015269','ZCCHC11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',31542428,31610367,'NM_016505','ZCCHC17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',27025787,27054798,'NM_032283','ZDHHC18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52380633,52502307,'NM_007323','ZFYVE9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40496319,40532443,'NM_005857','ZMPSTE24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35317558,35354042,'NM_024772','ZMYM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35507154,35660132,'NM_005095','ZMYM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35224353,35270156,'NM_007167','ZMYM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',35219713,35223535,'NM_001195156','ZMYM6NB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',42668587,42694525,'NM_001146192','ZMYND12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245385825,245401941,'NM_003431','ZNF124'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',242281183,242287403,'NM_205768','ZNF238'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',198642042,198645789,'NM_012482','ZNF281'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',90233265,90266682,'NM_182976','ZNF326'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33494760,33538907,'NM_152493','ZNF362'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',23558527,23568944,'NM_001077195','ZNF436'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245530244,245561668,'NM_032752','ZNF496'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26368974,26369951,'NM_015871','ZNF593'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40715888,40734602,'NM_198494','ZNF642'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40688923,40701977,'NM_023070','ZNF643'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',91153444,91260400,'NM_201269','ZNF644'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',180290327,180297470,'NM_001009992','ZNF648'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245329886,245334297,'NM_024804','ZNF669'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245264562,245308738,'NM_001204220','ZNF670'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245175471,245308738,'NR_037894','ZNF670-ZNF695'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',247099152,247110337,'NM_024836','ZNF672'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',225817842,225916787,'NR_033184','ZNF678'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',26560711,26571853,'NM_001114759','ZNF683'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',40769819,40786428,'NM_152373','ZNF684'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',149521414,149531005,'NM_020832','ZNF687'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',43084830,43090733,'NM_015911','ZNF691'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',247110825,247119938,'NM_001193328','ZNF692'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',245215248,245238018,'NM_020394','ZNF695'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',119963522,119991913,'NM_001080470','ZNF697'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',225951355,225952031,'NR_036753','ZNF847P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',85887693,85946704,'NM_001170670','ZNHIT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',236107786,236120845,'NM_021186','ZP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',71301561,71319560,'NM_203350','ZRANB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',33710818,33734582,'NM_145238','ZSCAN20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',45254662,45444837,'NM_020883','ZSWIM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',53080770,53132835,'NM_001004339','ZYG11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',52964718,53065601,'NM_024646','ZYG11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1',77802777,77920931,'NM_015534','ZZZ3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',52229174,52315441,'NM_014576','A1CF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101532452,101601652,'NM_000392','ABCC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',27075530,27190022,'NM_001178123','ABI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',116180858,116434404,'NM_001003407','ABLIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124758418,124807796,'NM_001609','ACADSB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',27524148,27571074,'NR_024150','ACBD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',15157479,15170781,'NM_001039844','ACBD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',114125945,114178128,'NM_016234','ACSL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90684810,90741127,'NM_001141945','ACTA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104228975,104252502,'NM_005736','ACTR1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',39029732,39031377,'NR_045000','ACTR3BP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',127692894,128067117,'NM_003474','ADAM12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134925910,134940397,'NM_001164489','ADAM8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',72102564,72192201,'NM_080722','ADAMTS14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',1213252,1769670,'NM_018702','ADARB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',1558824,1589179,'NR_033387','ADARB2-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',111755715,111885313,'NM_019903','ADD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75606252,76139068,'NM_001123','ADK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',64234521,64238245,'NM_032804','ADO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',112826779,112830652,'NM_000681','ADRA2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',115793795,115796657,'NM_000684','ADRB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',116044572,116154505,'NM_032550','AFAP1L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88720477,88759940,'NM_133447','AGAP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',45641055,45662927,'NM_133446','AGAP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75104038,75127560,'NM_001144000','AGAP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',51418083,51440265,'NM_001077665','AGAP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',51134167,51156333,'NM_001077685','AGAP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50894693,50916541,'NM_001077686','AGAP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46611849,46633632,'NM_001190810','AGAP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71542028,71562696,'NM_032797','AIFM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',4995453,5010158,'NM_001353','AKR1C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5021964,5050207,'NM_205845','AKR1C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5126567,5139878,'NM_003739','AKR1C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5228797,5250910,'NM_001818','AKR1C4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5186654,5217150,'NR_027916','AKR1CL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',4858401,4880251,'NM_001040177','AKR1E2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',97355675,97406557,'NM_002860','ALDH18A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',45189634,45261569,'NM_000698','ALOX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',73645763,73665624,'NM_001242548','ANAPC16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',61456061,62163290,'NM_001204403','ANK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',92661836,92671012,'NM_014391','ANKRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5943694,5971866,'NM_019046','ANKRD16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99322245,99333631,'NM_001129981','ANKRD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90569638,90601712,'NM_144590','ANKRD22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',27333050,27429433,'NM_014915','ANKRD26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',37454790,37561501,'NM_052997','ANKRD30A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',47128239,47171452,'NR_003601','ANTXRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',45431044,45488257,'NM_001128324','ANUBL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',81904859,81955308,'NM_001157','ANXA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',66255290,66256640,'NR_001446','ANXA2P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74805194,74843847,'NM_001156','ANXA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46577989,46594128,'NM_001040084','ANXA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',47875312,47891369,'NM_001098845','ANXA8L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',47216925,47233046,'NM_001630','ANXA8L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75550020,75580832,'NM_012095','AP3M1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',26767271,26896738,'NM_019043','APBB1IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',32135230,32257776,'NM_018287','ARHGAP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',98971919,99042420,'NM_032900','ARHGAP19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',98902788,99042420,'NR_037909','ARHGAP19-SLIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',24912543,25052603,'NM_020824','ARHGAP21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',49324084,49483144,'NM_021226','ARHGAP22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',63331018,63526713,'NM_032199','ARID5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104423473,104464180,'NM_004311','ARL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',18988318,19006946,'NM_178815','ARL5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',23256959,23366520,'NM_173081','ARMC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',28141102,28327983,'NM_018076','ARMC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124204168,124206858,'NM_001099667','ARMS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104619199,104651645,'NM_020682','AS3MT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',51617005,51678376,'NM_001143974','ASAH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',52169713,52184575,'NM_001079516','ASAH2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5720825,5748564,'NR_024581','ASB13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',73526279,73645757,'NM_015947','ASCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',89502854,89567897,'NM_032810','ATAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',123492614,123677536,'NM_007041','ATE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',69660387,69661861,'NM_145178','ATOH7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',7870098,7889768,'NM_005174','ATP5C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',116843113,117698486,'NM_207303','ATRNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99427170,99437005,'NM_021732','AVPI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',121400871,121427319,'NM_004281','BAG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',29006429,29011874,'NM_012342','BAMBI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',112648477,112669114,'NM_001195307','BBIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',127502093,127521366,'NM_078469','BCCIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',13523093,13584982,'NM_001100912','BEND7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',59942909,60258851,'NM_001080512','BICC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',97941444,98021323,'NM_013314','BLNK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102023702,102036429,'NM_173809','BLOC1S2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',22650144,22660420,'NM_005180','BMI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88506375,88674925,'NM_004329','BMPR1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',42597959,42650391,'NM_014753','BMS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46157618,46182898,'NR_026566','BMS1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75128914,75160278,'NR_026592','BMS1P4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46157618,46182898,'NR_003611','BMS1P5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',133631193,133645425,'NM_004052','BNIP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',93673715,93780060,'NM_003972','BTAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124020810,124087666,'NM_144587','BTBD16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103103814,103307060,'NM_033637','BTRC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124903749,124914876,'NM_004725','BUB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',44791714,44794336,'NM_007021','C10orf10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74677130,74706748,'NR_038373','C10orf103'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',73141463,73149584,'NM_001164375','C10orf105'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',63092724,63196097,'NM_173554','C10orf107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',686016,701109,'NR_027152','C10orf108'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',77212524,77987132,'NM_032024','C10orf11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',15177389,15179324,'NM_153244','C10orf111'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',21454697,21475494,'NM_001010896','C10orf113'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',21823426,21826219,'NM_001010911','C10orf114'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88718167,88720646,'NM_006829','C10orf116'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',115871963,115924354,'NM_018017','C10orf118'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',98731030,98735575,'NM_015652','C10orf12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124447214,124449328,'NM_001010912','C10orf120'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',127334252,127361703,'NM_001128202','C10orf122'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135018647,135021519,'NM_198472','C10orf125'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50033896,50066413,'NM_001010863','C10orf128'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',96943946,96978676,'NM_207321','C10orf129'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',97657711,97688405,'NM_001130446','C10orf131'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',43660759,43666076,'NR_033923','C10orf136'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',127398073,127442702,'NM_001202438','C10orf137'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',21842414,21854617,'NM_207371','C10orf140'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102737282,102744148,'NM_001163813','C10orf2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',44813151,44816476,'NM_001039380','C10orf25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104493716,104566011,'NM_001083913','C10orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',72201000,72215163,'NM_152710','C10orf27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99884370,99994644,'NM_014472','C10orf28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104603956,104614708,'NM_001136200','C10orf32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104603956,104651645,'NR_037644','C10orf32-AS3MT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71060008,71063361,'NM_145306','C10orf35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',61387980,61390677,'NR_024340','C10orf40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',120430483,120504748,'NM_153810','C10orf46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',11905402,11954282,'NM_153256','C10orf47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50557689,50572954,'NM_001042427','C10orf53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',73177318,73203343,'NM_022153','C10orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75339732,75352541,'NM_001001791','C10orf55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',81828405,81842287,'NM_025125','C10orf57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',82158221,82182733,'NM_032333','C10orf58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99339439,99340681,'NM_001009997','C10orf62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',23645525,23673778,'NM_153714','C10orf67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',32896656,33211798,'NM_024688','C10orf68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50177192,50205543,'NM_001135196','C10orf71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103595345,103805922,'NM_024541','C10orf76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',115501202,115532182,'NM_001193435','C10orf81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118413196,118419471,'NM_144661','C10orf82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124680408,124703909,'NM_024942','C10orf88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',128103563,128200000,'NM_001004298','C10orf90'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134108703,134111815,'NM_173541','C10orf91'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134471885,134524353,'NM_001200049','C10orf92'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134592678,134606079,'NM_173572','C10orf93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104199583,104201290,'NM_024886','C10orf95'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118073929,118129531,'NM_198515','C10orf96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',85923533,85935030,'NM_207373','C10orf99'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',16595747,16604010,'NM_001010908','C1QL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',18469611,18870694,'NM_201593','CACNB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105203133,105208638,'NM_001001412','CALHM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105196532,105202152,'NR_024552','CALHM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105222550,105228987,'NM_001129742','CALHM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5556923,5558225,'NM_005185','CALML3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5530657,5531533,'NM_017422','CALML5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134988917,135000465,'NM_015722','CALY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',12431588,12911739,'NM_153498','CAMK1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75242264,75304355,'NM_172169','CAMK2G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',119796321,119959655,'NR_026940','CASC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',115429415,115480654,'NM_001227','CASP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',97749837,97782431,'NM_001159747','CC2D2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70150976,70221315,'NM_018237','CCAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',106103511,106204838,'NM_001008723','CCDC147'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',12978630,13083710,'NM_031455','CCDC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',61218511,61336420,'NM_005436','CCDC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',32775046,32903498,'NM_001026383','CCDC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',97793148,97810615,'NM_019084','CCNJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',35665807,35900853,'NM_145012','CCNY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',12277966,12332595,'NM_006023','CDC123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',72826696,73162487,'NM_001171930','CDH23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',85944391,85967101,'NM_033100','CDHR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',62208217,62216833,'NM_001170407','CDK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',14901256,14919989,'NM_001029954','CDNF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',11246998,11418678,'NM_001083591','CELF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',95246378,95278839,'NM_018131','CEP55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',89568049,89595349,'NR_028492','CFL1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90955673,90957051,'NM_003956','CH25H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50491159,50543156,'NM_020986','CHAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75211813,75213412,'NM_203298','CHCHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',125769158,125841920,'NM_014863','CHST15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',73394125,73443328,'NM_004273','CHST3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101938113,101979334,'NM_001278','CHUK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',59698900,59719025,'NM_018464','CISD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',129566103,129581201,'NM_152311','CLRN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101078845,101144077,'NM_020348','CNNM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104668103,104828230,'NM_017649','CNNM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71231649,71388910,'NM_080805','COL13A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105781035,105835628,'NM_000494','COL17A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',22645317,22649252,'NM_012071','COMMD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',22645317,22660420,'NM_001204062','COMMD3-BMI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',76663734,76665776,'NM_144589','COMTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101458494,101482413,'NM_078470','COX15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',93798376,93993016,'NM_001178137','CPEB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101792054,101831632,'NM_001308','CPN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',125495141,125641490,'NM_198148','CPXM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',35466715,35541892,'NM_183012','CREM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99614746,99780575,'NM_018058','CRTAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',42953939,43000755,'NM_018590','CSGALNACT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',53125251,53129361,'NM_015235','CSTF2T'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',131794262,131797091,'NR_044994','CTAGE7P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',126666407,126839614,'NM_001083914','CTBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',67349730,69125955,'NM_013266','CTNNA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',47775948,47778697,'NR_033407','CTSL1P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',16905970,17211822,'NM_001081','CUBN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104172991,104182413,'NM_024040','CUEDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',35337484,35403264,'NM_001198778','CUL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101481947,101505884,'NM_015960','CUTC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124581660,124595681,'NR_037912','CUZD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101982044,102017427,'NM_018294','CWF19L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',44185610,44200551,'NM_000609','CXCL12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104580277,104587280,'NM_000102','CYP17A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',94823221,94827631,'NM_057157','CYP26A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',94811010,94818444,'NM_183374','CYP26C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',96433240,96485937,'NM_000772','CYP2C18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',96512452,96602661,'NM_000769','CYP2C19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',96786518,96819244,'NM_001198855','CYP2C8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',96688404,96739138,'NM_000771','CYP2C9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135190856,135202610,'NM_000773','CYP2E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',115584473,115603849,'NM_014881','DCLRE1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',14988876,15036100,'NM_022487','DCLRE1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',73703682,73705803,'NM_019058','DDIT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70385897,70414285,'NM_004728','DDX21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70331039,70376609,'NM_024045','DDX50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',12150939,12205230,'NM_018706','DHTKD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',127514898,127559874,'NM_018180','DHX32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',310129,725608,'NM_014974','DIP2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',53744046,53747423,'NM_012242','DKK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',79220554,79356354,'NM_004747','DLG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124310170,124393242,'NM_017579','DMBT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',69843826,69901736,'NM_001080449','DNA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',73762593,73784913,'NM_017626','DNAJB12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',22085482,22332656,'NM_022365','DNAJC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',69226432,69267943,'NM_021800','DNAJC12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74672587,74677031,'NM_015190','DNAJC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101625323,101759666,'NM_015221','DNMBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101676955,101708745,'NR_024130','DNMBP-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',98054074,98088311,'NM_004088','DNTT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',128584012,129140770,'NM_001380','DOCK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103338078,103359400,'NM_015448','DPCD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',133850403,133869270,'NM_006426','DPYSL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50244166,50269913,'NM_001080520','DRGX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',76467599,76488278,'NM_001003892','DUPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',76524197,76529254,'NM_016364','DUSP13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',112247614,112261292,'NM_004419','DUSP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135330360,135335265,'NM_001164467','DUX4L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135330360,135335265,'NM_001127389','DUX4L5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135330360,135335265,'NM_001127388','DUX4L6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135330360,135335265,'NM_001127387','DUX4L7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',82085841,82106480,'NM_138812','DYDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',82106537,82117809,'NM_032372','DYDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',131523485,131652081,'NM_001005463','EBF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',22537748,22538918,'NM_001199938','EBLN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74564287,74597859,'NR_024203','ECD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',11824361,11846071,'NM_024693','ECHDC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135025976,135036898,'NM_004092','ECHS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',64241761,64246132,'NM_000399','EGR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',120784530,120830324,'NM_003750','EIF3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71833866,71858380,'NM_004096','EIF4EBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',80942362,80946198,'NM_001099692','EIF5AL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103976132,103979334,'NM_152310','ELOVL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',119291945,119299047,'NM_001165924','EMX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',119233793,119294569,'NR_002791','EMX2OS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',25310922,25345036,'NM_145010','ENKUR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118599012,118632102,'NM_001242699','ENO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',97505662,97627013,'NM_001164183','ENTPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101409252,101460992,'NM_020354','ENTPD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',32597864,32676119,'NM_025209','EPC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50334496,50417153,'NM_000124','ERCC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101899836,101935724,'NM_006459','ERLIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',94598204,94809241,'NM_019053','EXOC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99185655,99195758,'NM_016046','EXOSC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',14600564,14856902,'NM_031453','FAM107B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',60675894,60792358,'NM_198215','FAM13C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74597882,74671945,'NM_173348','FAM149B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',116571492,116614464,'NM_020940','FAM160B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50009206,50012071,'NM_001164484','FAM170B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',15293649,15453064,'NM_001010924','FAM171A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',126480343,126515229,'NM_032182','FAM175B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102662315,102709337,'NM_001136123','FAM178A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',15860180,15942525,'NM_024948','FAM188A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',86078389,86268256,'NM_018999','FAM190B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',128823679,128884412,'NM_001039762','FAM196A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',120058561,120091829,'NM_001134672','FAM204A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5766806,5845709,'NM_017782','FAM208B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',51497689,51563275,'NM_001005751','FAM21A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',47414028,47469423,'NM_018232','FAM21B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',45542653,45608418,'NM_001169107','FAM21C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88975184,88984713,'NM_001099338','FAM22A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',89107456,89120432,'NM_001009610','FAM22D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124660206,124662617,'NM_001029888','FAM24A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124598599,124629147,'NM_152644','FAM24B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124581660,124629147,'NR_037915','FAM24B-CUZD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88770025,88774467,'NM_001146157','FAM25A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46597226,46601694,'NM_001137556','FAM25B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46597226,46601694,'NM_001137548','FAM25C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',48873378,48877831,'NM_001137549','FAM25G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88844932,88941202,'NM_019054','FAM35A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46317646,46359151,'NR_027632','FAM35B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46799725,46841244,'NR_027634','FAM35B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',120853600,120887213,'NM_207009','FAM45A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',120853618,120887366,'NR_027141','FAM45B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',126297852,126422920,'NM_014661','FAM53B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',127575097,127688151,'NM_145235','FANK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90740267,90765522,'NM_152872','FAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90741160,90742712,'NR_028371','FAS-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104169560,104172883,'NM_024326','FBXL15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5976354,6019562,'NM_032807','FBXO18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103360410,103444733,'NM_022039','FBXW4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103519876,103530116,'NM_001206389','FGF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',93656324,93659238,'NM_152429','FGFBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',123227833,123343471,'NM_001144914','FGFR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',51450947,51497569,'NR_038275','FLJ31813'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',127383848,127398052,'NR_033847','FLJ37035'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',91441036,91447665,'NR_026835','FLJ37201'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102979340,102988606,'NR_029380','FLJ41350'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',8132418,8135453,'NR_024256','FLJ45983'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',133454723,133472525,'NR_038365','FLJ46300'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124506199,124547151,'NR_003570','FLJ46361'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',129425527,129429440,'NM_207426','FOXI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',95417629,95452319,'NM_145246','FRA10AC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99069011,99071662,'NM_005479','FRAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99082243,99084448,'NM_012083','FRAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135288592,135290289,'NM_001080998','FRG2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',13725711,14412872,'NM_018027','FRMD4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',49034607,49152947,'NM_001018071','FRMPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46077140,46095794,'NR_033172','FRMPD2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75202054,75205982,'NM_173540','FUT11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',43187097,43191789,'NM_173160','FXYD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',35967182,35970368,'NM_031866','FZD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',26545241,26630054,'NM_001134366','GAD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',8136672,8157170,'NM_002051','GATA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103995244,104132646,'NM_001199379','GBF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',48045793,48059144,'NM_004962','GDF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',48033097,48036859,'NM_016204','GDF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5847191,5895518,'NM_001115156','GDI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',117806431,118023116,'NM_005264','GFRA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',85889164,85903291,'NM_014394','GHITM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',35934343,35937869,'NM_153368','GJD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',131824628,131868636,'NM_001199868','GLRX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88799938,88844756,'NM_005271','GLUD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99599984,99621325,'NM_001010917','GOLGA7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101146616,101180520,'NM_002079','GOT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',113899611,113933515,'NM_020918','GPAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134751398,134795169,'NM_001083909','GPR123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',25504295,25931163,'NM_020752','GPR158'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',125415860,125446903,'NM_153442','GPR26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46413551,46420574,'NM_014696','GPRIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',87349291,88116230,'NM_017551','GRID1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',120957186,121205121,'NM_005308','GRK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',106003941,106017213,'NM_001191003','GSTO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',106024876,106049166,'NM_001191015','GSTO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',1024348,1053708,'NM_012341','GTPBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',114057925,114106343,'NR_028134','GUCY2GP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71482362,71542046,'NM_018649','H2AFY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',115300579,115339350,'NM_001177660','HABP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',93160075,93264500,'NM_182765','HECTD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',96295563,96351846,'NM_018063','HELLS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',69351661,69505109,'NM_022079','HERC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',94439660,94445388,'NM_002729','HHEX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102285630,102303671,'NM_017902','HIF1AN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70745615,70831643,'NM_033496','HK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70650064,70697321,'NM_025130','HKDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124897627,124900178,'NM_005519','HMX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124885556,124887237,'NM_001105574','HMX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',43602865,43605871,'NR_002726','HNRNPA3P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',43201070,43212800,'NM_001098207','HNRNPF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',69761773,69772959,'NM_012207','HNRNPH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99334091,99362545,'NM_001134670','HOGA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',100165944,100196694,'NM_000195','HPS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103815113,103817785,'NM_024747','HPS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',100206823,100985622,'NM_001166244','HPSE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',38685313,38707439,'NR_003086','HSD17B7P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118420692,118492075,'NM_025015','HSPA12A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',14920266,14953746,'NM_016299','HSPA14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',92490555,92607651,'NM_019860','HTR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124211030,124264414,'NM_002775','HTRA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',94201420,94247498,'NM_001165946','IDE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',1075963,1085061,'NM_004508','IDI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',1054846,1061799,'NM_033261','IDI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',1058576,1080141,'NR_024628','IDI2-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',91142301,91153724,'NM_001548','IFIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',91127792,91134942,'NM_001010987','IFIT1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',91051685,91059013,'NM_001547','IFIT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',91077581,91090705,'NM_001549','IFIT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',91164304,91170739,'NM_012420','IFIT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124743186,124758301,'NM_022466','IKZF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',6034339,6059580,'NM_172200','IL15RA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',6092662,6144339,'NM_000417','IL2RA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105026909,105040098,'NM_032727','INA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134201342,134446974,'NM_005539','INPP5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',121568758,121578652,'NM_001243194','INPP5F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',59621283,59697700,'NM_152230','IPMK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',15599093,15801776,'NM_003638','ITGA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',33229251,33287299,'NM_002211','ITGB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',7785241,7831489,'NM_002216','ITIH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',7641237,7748967,'NM_030569','ITIH5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',106061888,106083653,'NM_033397','ITPRIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',133768302,133848303,'NM_001105521','JAKMIP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',64596993,64895728,'NM_032776','JMJD1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',76256384,76462645,'NM_012330','KAT6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102810988,102815341,'NM_030929','KAZALD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103575720,103593667,'NM_173191','KCNIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118946989,118959800,'NM_181840','KCNK18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',78314640,79067583,'NM_002247','KCNMA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75215387,75231562,'NM_001242487','KIAA0913'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',24537725,24876778,'NM_019590','KIAA1217'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71908569,71998212,'NM_014431','KIAA1274'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70418482,70446745,'NM_015634','KIAA1279'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',30341734,30388494,'NM_020848','KIAA1462'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118634295,118755078,'NM_018330','KIAA1598'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',94342804,94405132,'NM_004523','KIF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',91451346,91524680,'NM_016195','KIF20B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',32337943,32385377,'NM_004521','KIF5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',7837372,7869950,'NM_012311','KIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',3808187,3817473,'NM_001300','KLF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',89608897,89613174,'NM_001126049','KLLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134823960,134889906,'NM_152643','KNDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',845483,921702,'NM_015155','LARP4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102976722,102978707,'NM_006562','LBX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',98582006,98714188,'NM_001170766','LCOR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103857314,103870200,'NM_001113407','LDB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88418300,88449790,'NM_001080116','LDB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',95507555,95547906,'NM_005097','LGI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',126140330,126292700,'NM_022126','LHPP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',1195707,1200612,'NR_015376','LINC00200'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',27260140,27270936,'NR_026795','LINC00202'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102123322,102138101,'NR_026762','LINC00263'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',26918799,26923257,'NR_026793','LINC00264'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90963309,91001640,'NM_000235','LIPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90414125,90428552,'NM_001198830','LIPF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90336498,90356713,'NM_001010939','LIPJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90474280,90502493,'NM_001080518','LIPK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90552466,90570283,'NM_001128215','LIPM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90511142,90527979,'NM_001102469','LIPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',96029036,96036817,'NR_033969','LOC100128054'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',17468940,17490291,'NR_034129','LOC100128098'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',79356575,79359589,'NR_024585','LOC100128292'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',25487006,25505211,'NR_027333','LOC100128811'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',38504604,38543279,'NR_024524','LOC100129055'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',18330720,18339497,'NR_038419','LOC100129213'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',22581006,22587483,'NR_038921','LOC100130992'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',79678387,79682408,'NR_038985','LOC100132987'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',44914929,44970050,'NR_024472','LOC100133308'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',127252929,127257004,'NR_023362','LOC100169752'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',93056698,93361197,'NR_024467','LOC100188947'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',15236726,15237352,'NR_036506','LOC100192204'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',4682376,4710262,'NR_024475','LOC100216001'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99467206,99467892,'NR_026754','LOC100270710'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',81654633,81681537,'NR_033857','LOC100288974'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103568814,103578636,'NR_045118','LOC100289509'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',22764359,22766864,'NR_036533','LOC100499489'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',98852502,98853494,'NR_038330','LOC100505540'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',34088646,34101614,'NR_038932','LOC100505583'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104199563,104206040,'NR_038938','LOC100505761'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105496526,105505157,'NR_038940','LOC100505839'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',111695306,111758129,'NR_038943','LOC100505933'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',49999889,50029598,'NR_038973','LOC100506733'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',43674864,43710887,'NR_038268','LOC100506835'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',53726613,53743894,'NR_038277','LOC100506939'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',3173792,3180821,'NR_038284','LOC100507034'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',6861565,6924874,'NR_038291','LOC100507127'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75226277,75231163,'NR_038357','LOC100507331'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',87327467,87356952,'NR_038986','LOC100507470'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',29118245,29124985,'NR_038375','LOC100507605'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',114600662,114605117,'NR_015409','LOC143188'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',86029715,86044395,'NR_038220','LOC170425'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',81795968,81828929,'NR_027429','LOC219347'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',11931612,11976715,'NR_038222','LOC219731'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',28848851,28861289,'NR_033805','LOC220906'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',44626477,44775143,'NR_033842','LOC220980'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',11016908,11034132,'NR_015413','LOC254312'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',2037666,2046542,'NR_040253','LOC282980'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',112618637,112620652,'NR_026932','LOC282997'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',43724757,43785361,'NR_033846','LOC283033'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',127361801,127388236,'NR_033848','LOC283038'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',80373088,80497211,'NR_015429','LOC283050'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',12915138,12917551,'NR_027322','LOC283070'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',122511313,122600681,'NR_033850','LOC283089'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',44970115,45001495,'NR_033891','LOC338579'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',4688347,4694606,'NR_015425','LOC338588'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',27574787,27581241,'NR_003525','LOC387646'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',29738506,29751305,'NR_003930','LOC387647'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',131752151,131799071,'NR_034125','LOC387723'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',2332512,2347268,'NR_038884','LOC399708'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',6359655,6417943,'NR_040079','LOC399715'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',38757079,38781087,'NR_024497','LOC399744'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',48888163,48909664,'NR_029396','LOC399753'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124629138,124648220,'NR_027282','LOC399815'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',6662392,6667329,'NR_036502','LOC439949'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',81957445,81969393,'NR_038464','LOC439990'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',89092147,89093311,'NR_029408','LOC439994'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',42147319,42183499,'NR_024380','LOC441666'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135117421,135131943,'NR_002934','LOC619207'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',81575637,81577338,'NR_029407','LOC642361'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46662695,46663500,'NR_024495','LOC642826'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',91579229,91590598,'NR_038382','LOC643529'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46516459,46571406,'NR_033957','LOC643650'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',81112736,81118656,'NR_027512','LOC650623'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88988403,89092295,'NR_024397','LOC728190'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50923913,51041322,'NR_029388','LOC728407'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',97502952,97839982,'NR_038444','LOC728558'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',60144780,60147299,'NR_027508','LOC728640'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46553300,46553842,'NR_003277','LOC728643'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',72646986,72647991,'NR_038453','LOC728978'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104995633,104997763,'NM_001143909','LOC729020'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',30693261,30703383,'NR_003524','LOC729668'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',26972042,26982389,'NR_026794','LOC731789'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',42290944,42310791,'NR_026827','LOC84856'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',64894994,64896328,'NR_027182','LOC84989'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99997432,100017997,'NM_032211','LOXL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',85981255,85991197,'NM_015613','LRIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',85970228,85975264,'NM_001017924','LRIT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',49787534,49792286,'NM_001006939','LRRC18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71728734,71812388,'NM_018205','LRRC20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134000600,134030499,'NR_026559','LRRC27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',68355797,68530873,'NM_178011','LRRTM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',29617995,29640164,'NM_032517','LYZL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',30940713,30958653,'NM_183058','LYZL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102746853,102757583,'NM_032429','LZTS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',61166753,61183209,'NR_038200','M1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',30762955,30790768,'NM_005204','MAP3K8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',49279692,49313189,'NM_002750','MAPK8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',94040899,94103701,'NM_017824','MARCH5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',45272822,45410360,'NM_145021','MARCH8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',94168222,94170390,'NR_038243','MARK2P9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99463454,99467899,'NM_031484','MARVELD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',27483758,27515854,'NM_001172304','MASTL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',82021555,82039414,'NM_000429','MAT1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',81669913,81672855,'NR_002724','MBL1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',54195145,54201466,'NM_000242','MBL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',13243559,13293110,'NM_018518','MCM10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',121578961,121622384,'NM_024834','MCMBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74121894,74317458,'NM_138357','MCU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',15041443,15054856,'NM_001080836','MEIG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',126437395,126470429,'NM_212554','METTL10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103534189,103568212,'NM_001142434','MGEA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',131155443,131455773,'NM_002412','MGMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',73797089,74055955,'NM_006077','MICU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',89254202,89303198,'NM_004897','MINPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',91342483,91342564,'NR_029524','MIR107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',14518580,14518666,'NR_031668','MIR1265'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',100144964,100145054,'NR_031619','MIR1287'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',64802722,64802814,'NR_031566','MIR1296'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105143999,105144148,'NR_031707','MIR1307'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104186258,104186331,'NR_030169','MIR146B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',21825496,21825576,'NR_031736','MIR1915'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134911005,134911115,'NR_030170','MIR202'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',115923853,115923928,'NR_031747','MIR2110'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',6234164,6234246,'NR_036111','MIR3155'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',6234176,6234231,'NR_039698','MIR3155B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',44979467,44979542,'NR_036112','MIR3156-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',97814061,97814146,'NR_036113','MIR3157'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103351163,103351244,'NR_036114','MIR3158-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103351163,103351244,'NR_036115','MIR3158-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88014430,88014525,'NR_029907','MIR346'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118917178,118917275,'NR_037436','MIR3663'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',132650840,132650921,'NR_036180','MIR378C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',58734244,58734325,'NR_037490','MIR3924'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124166470,124166573,'NR_037506','MIR3941'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135035049,135035157,'NR_037509','MIR3944'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',14465204,14465282,'NR_036181','MIR4293'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',49863562,49863638,'NR_036182','MIR4294'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',114383918,114384003,'NR_036177','MIR4295'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',126711341,126711429,'NR_036178','MIR4296'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',131531552,131531628,'NR_036179','MIR4297'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',12660757,12660828,'NR_039700','MIR4480'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',106018083,106018153,'NR_039702','MIR4482'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',115527741,115527803,'NR_039703','MIR4483'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',127498298,127498381,'NR_039704','MIR4484'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',20880904,20880981,'NR_039822','MIR4675'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74150792,74150864,'NR_039823','MIR4676'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',89253617,89253691,'NR_039825','MIR4678'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90813072,90813147,'NR_039826','MIR4679-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90813071,90813148,'NR_039827','MIR4679-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',112647832,112647906,'NR_039828','MIR4680'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',121127473,121127545,'NR_039829','MIR4681'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',121708014,121708094,'NR_039830','MIR4682'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',35970105,35970186,'NR_039831','MIR4683'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',100181028,100181105,'NR_039833','MIR4685'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',17927112,17927199,'NR_030167','MIR511-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',17927112,17927199,'NR_030168','MIR511-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',24604619,24604716,'NR_030334','MIR603'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',29873938,29874032,'NR_030335','MIR604'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',52729338,52729421,'NR_030336','MIR605'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102724731,102724831,'NR_030339','MIR608'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105968536,105968631,'NR_030340','MIR609'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105797836,105797934,'NR_030760','MIR936'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',29931198,29931281,'NR_030634','MIR938'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',129784913,129814458,'NM_001145966','MKI67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',28001808,28074784,'NM_001242702','MKX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',21863106,21886120,'NM_001195628','MLLT10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',127445015,127454380,'NM_147191','MMP21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88685277,88707405,'NM_024756','MMRN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99208070,99248356,'NM_022362','MMS19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99364299,99383903,'NM_001098831','MORN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',28379928,28611073,'NM_173496','MPP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',18138357,18240097,'NM_002438','MRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102731123,102737262,'NM_176793','MRPL43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74678606,74682457,'NM_016065','MRPS16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',51219558,51232523,'NM_138634','MSMB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',23424432,23450948,'NM_012228','MSRB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135057610,135084164,'NM_138384','MTG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',30638735,30678273,'NM_018109','MTPAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',57028755,57030493,'NM_001190478','MTRNR2L5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',37930371,37931865,'NM_001190489','MTRNR2L7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',111957352,112037113,'NM_130439','MXI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',26263007,26541471,'NM_017433','MYO3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',95056175,95232064,'NM_013451','MYOF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75061417,75071521,'NM_021245','MYOZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',69539255,69641779,'NM_032578','MYPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',120779217,120783844,'NM_199461','NANOS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',51235113,51260740,'NM_001145263','NCOA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75231674,75241595,'NM_003635','NDST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102273486,102279626,'NM_005004','NDUFB8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',21108908,21503122,'NM_001173484','NEBL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5444517,5490426,'NM_001047160','NET1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105243724,105342299,'NM_004210','NEURL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71001796,71003216,'NM_020999','NEUROG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104145421,104152271,'NM_002502','NFKB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',115604380,115662255,'NM_198514','NHLRC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',126125987,126128540,'NM_001146340','NKX1-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101282679,101286270,'NM_145285','NKX2-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134448309,134449527,'NM_177400','NKX6-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',15187776,15250701,'NM_004808','NMT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',96082978,96112673,'NM_022451','NOC3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71861697,71871471,'NM_018055','NODAL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103901922,103913617,'NM_004741','NOLC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71684718,71713456,'NM_022146','NPFFR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103531071,103533160,'NM_006993','NPM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',129237602,129240925,'NM_001030013','NPS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',115338572,115413795,'NM_006175','NRAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',64563012,64584792,'NM_030759','NRBF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',83627422,84736915,'NM_001165973','NRG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',33526552,33663839,'NM_001024628','NRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',123706592,123724733,'NM_017615','NSMCE4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',18874269,18980556,'NM_182543','NSUN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104837763,104943053,'NM_001134373','NT5C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74540215,74561587,'NM_015901','NUDT13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',12249578,12278149,'NM_014142','NUDT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',92901745,92902817,'NR_002779','NUDT9P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',95316411,95339819,'NM_001195755','O3FAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',126075861,126097535,'NM_000274','OAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105627307,105668035,'NM_024928','OBFC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50612692,50640431,'NM_001143997','OGDHL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74323344,74362793,'NM_152635','OIT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',15125900,15155857,'NM_018324','OLAH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',98092964,98109082,'NM_033207','OPALIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88404293,88416196,'NM_033282','OPN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',13182087,13220282,'NM_021980','OPTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',45118107,45131062,'NM_001004297','OR13A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',23768203,23771316,'NM_001145373','OTUD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74436985,74526738,'NM_001142595','P4HA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',91329233,91393628,'NM_148978','PANK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135042730,135055188,'NM_152911','PAOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',89409455,89497442,'NM_004670','PAPSS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',34641193,35144259,'NM_001184793','PARD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50696330,51041337,'NM_003631','PARG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102495457,102579688,'NM_003988','PAX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',69712422,69762690,'NM_022129','PBLD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',72313272,72318547,'NM_000281','PCBD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',55250865,56231057,'NM_001142763','PCDH15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',92970348,93034001,'NM_032373','PCGF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105052542,105100881,'NM_032154','PCGF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105146401,105196009,'NM_014976','PDCD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',112621542,112649754,'NM_001199492','PDCD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',95362334,95415419,'NM_006204','PDE6C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',96987319,97040771,'NM_020992','PDLIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',27026600,27075732,'NM_014317','PDSS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102757429,102780904,'NM_001195263','PDZD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',119032595,119124927,'NM_173791','PDZD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',6284845,6317513,'NM_004566','PFKFB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',3099711,3168997,'NM_002627','PFKP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99176016,99183188,'NM_002629','PGAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50393156,50402365,'NM_170753','PGBD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',13359801,13381752,'NM_001037537','PHYH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',60606353,60677540,'NM_032439','PHYHIPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99390432,99426177,'NM_018425','PI4K2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',98343058,98470269,'NM_152309','PIK3AP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',22863771,23043509,'NM_005028','PIP4K2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',95707886,95711662,'NR_002319','PIPSL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',3169918,3205033,'NM_014889','PITRM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103979935,103991221,'NM_005029','PITX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102037892,102080233,'NM_016112','PKD2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74364943,74384516,'NM_032562','PLA2G12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',81882237,81894764,'NM_001012973','PLAC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75340867,75347264,'NM_002658','PLAU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',95743735,96078138,'NM_016341','PLCE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124141808,124181861,'NM_021622','PLEKHA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',20145377,20609121,'NM_032812','PLXDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118295417,118317357,'NM_000936','PNLIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118340479,118358676,'NM_006229','PNLIPRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118370454,118394644,'NM_005396','PNLIPRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118177413,118227458,'NM_001011709','PNLIPRP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103328628,103338017,'NM_001174085','POLL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',79404912,79459304,'NM_007055','POLR3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71632591,71663196,'NM_021129','PPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',122206455,122339357,'NM_001030059','PPAPDC1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',80777225,80785095,'NM_005729','PPIF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',93378176,93382838,'NM_005398','PPP1R3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',133597949,133620043,'NM_018461','PPP2R2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74866568,74925788,'NM_021132','PPP3CB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',103882776,103900080,'NM_015062','PPRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46503539,46508326,'NM_005972','PPYR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135010833,135016177,'NM_001145201','PRAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',120917204,120928335,'NM_014098','PRDX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',72027109,72032537,'NM_005041','PRF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',24576059,24584981,'NR_023388','PRINS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',6509110,6662260,'NM_001242413','PRKCQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',52420916,53728116,'NM_001098512','PRKG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',120342905,120345150,'NM_004248','PRLHR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',13668944,13712874,'NM_003675','PRPF18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',25177559,25281539,'NM_020200','PRTFDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',73246060,73281088,'NM_001042465','PSAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104152365,104168891,'NM_002779','PSD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',124729545,124739896,'NM_153336','PSTK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',27727122,27743303,'NM_001034842','PTCHD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',89613174,89718512,'NM_000314','PTEN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',16518972,16595742,'NM_030664','PTER'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',23521465,23523187,'NM_178161','PTF1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',17671963,17699379,'NM_014241','PTPLA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',45970128,46061009,'NM_001042387','PTPN20A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',45970128,46061009,'NM_015605','PTPN20B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',129735802,129774154,'NM_130435','PTPRE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134060691,134081348,'NM_001098637','PWWP2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',100133311,100164968,'NM_032709','PYROXD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',119754416,119796104,'NM_014904','RAB11FIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',27833254,27869105,'NM_021252','RAB18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',43009989,43082373,'NM_145313','RASGEF1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',44775224,44810178,'NM_032023','RASSF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',6171314,6199428,'NM_001145547','RBM17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',112394144,112589217,'NM_001134363','RBM20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',48001492,48010997,'NM_002900','RBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',95341582,95350983,'NM_006744','RBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',64951128,65054889,'NM_001001330','REEP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',42892522,42942958,'NM_020630','RET'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',85994788,86008924,'NM_002921','RGR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',121249328,121286035,'NM_002925','RGS10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',62299203,62431204,'NR_024555','RHOBTB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90023600,90333062,'NM_018363','RNLS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',112686350,112687003,'NR_026715','RPL13AP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',92621688,92651927,'NM_006413','RPP30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',15179187,15186262,'NM_183005','RPP38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',79463523,79486577,'NM_001142285','RPS24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99106447,99151117,'NM_015179','RRP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',16672622,16899459,'NM_012425','RSU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',63622958,63698472,'NM_145307','RTKN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',69773280,69836952,'NM_017987','RUFY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',76541398,76611887,'NM_144660','SAMD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71579966,71600291,'NM_020150','SAR1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102096761,102114578,'NM_005063','SCD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',121642074,121694160,'NR_037771','SEC23IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75174136,75201939,'NM_004922','SEC24C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102236392,102269585,'NM_015490','SEC31B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',12211645,12251963,'NM_001142627','SEC61A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102722275,102735363,'NM_001203244','SEMA4G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',13399443,13430304,'NM_012247','SEPHS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',38712003,38731786,'NR_027269','SEPT7L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',7240591,7491309,'NM_001018039','SFMBT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105871805,105876133,'NM_145247','SFR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99516497,99521746,'NM_003015','SFRP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',10866407,10876883,'NR_027082','SFTA1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',81360646,81365151,'NM_005411','SFTPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',80985613,80990169,'NM_001098668','SFTPA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',81687475,81698841,'NM_003019','SFTPD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104464287,104488936,'NM_178858','SFXN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102780985,102790988,'NM_030971','SFXN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',120890414,120915194,'NM_213649','SFXN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',51735350,52053743,'NM_147156','SGMS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',72245709,72310938,'NM_003901','SGPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',82287637,82396296,'NM_207372','SH2D4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105343773,105605154,'NM_014631','SH3PXD2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',112669290,112763415,'NM_007373','SHOC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',69314944,69348153,'NM_001142498','SIRT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',91180030,91285293,'NM_213606','SLC16A12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',61080527,61139655,'NM_194298','SLC16A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118990573,119028931,'NM_003054','SLC18A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',50488352,50490772,'NM_003055','SLC18A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',69912095,69957286,'NM_152707','SLC25A16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101360264,101370211,'NM_031212','SLC25A28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',72749015,72793153,'NR_033414','SLC29A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',95643719,95652481,'NM_153226','SLC35G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',18280773,18372227,'NM_152725','SLC39A12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',98747784,98935673,'NM_003061','SLIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105717459,105777332,'NM_014720','SLK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',112317438,112354382,'NM_005445','SMC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',112042787,112054697,'NM_005871','SMNDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88708267,88712997,'NM_003087','SNCG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',101986902,101987049,'NR_002954','SNORA12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',120809514,120809640,'NR_002917','SNORA19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70184934,70185001,'NR_003076','SNORD98'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',97061519,97190927,'NM_006434','SORBS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',108323410,108914456,'NM_001206572','SORCS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',106390848,107014983,'NM_014978','SORCS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',22674404,22746545,'NM_012443','SPAG6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',73488797,73518796,'NM_014767','SPOCK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135084159,135088111,'NM_001012508','SPRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135230212,135233452,'NR_033789','SPRNP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70517833,70534573,'NR_036430','SRGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',17402681,17536260,'NM_001004470','ST8SIA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',17726129,17798827,'NM_003473','STAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',90630005,90673224,'NM_020799','STAMBPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',133870985,133971467,'NM_173575','STK32C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70257568,70322822,'NM_001130162','STOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104253708,104383204,'NM_016169','SUFU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70609998,70638855,'NM_003171','SUPV3L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',14960870,14986310,'NM_001193427','SUV39H2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',29786282,29963907,'NM_021738','SVIL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',135217393,135229128,'NM_001143763','SYCE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75074649,75080793,'NM_024875','SYNPO2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',46377886,46390607,'NM_031912','SYT15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',123913094,124004047,'NM_006997','TACC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70833963,70846680,'NM_001057','TACR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',7900678,8096720,'NM_031923','TAF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105117713,105138812,'NM_006951','TAF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',4903858,4948465,'NR_026743','tAKR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',96152175,96286079,'NM_015188','TBC1D12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',132780644,132999974,'NM_174937','TCERG1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',114699998,114917426,'NM_001198527','TCF7L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',97413142,97443890,'NM_015631','TCTN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',115929018,115982053,'NM_198795','TDRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',114033482,114053060,'NM_058222','TECTB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',69990122,70124245,'NM_030625','TET1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',59815181,59825903,'NM_003201','TFAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',25345513,25355599,'NM_024838','THNSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',121322967,121346531,'NM_003252','TIAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',51262093,51293342,'NM_006327','TIMM23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',98114352,98263673,'NM_012465','TLL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102881050,102887536,'NM_005521','TLX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102839067,102880893,'NM_001085398','TLX1NB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',98267856,98336799,'NM_020123','TM9SF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104211159,104226792,'NM_024789','TMEM180'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',18081223,18129860,'NM_001098844','TMEM236'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',62836406,62883214,'NM_178505','TMEM26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',44726769,44750648,'NM_001123376','TMEM72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',93548130,93615212,'NM_025235','TNKS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',17224987,17284076,'NM_004412','TRDMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',104394241,104408066,'NM_030912','TRIM8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',116687941,116727429,'NM_139169','TRUB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',82204017,82272371,'NM_030927','TSPAN14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70881231,70937429,'NM_012339','TSPAN15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74683521,74788623,'NM_145170','TTC18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5425060,5436793,'NM_001171864','TUBAL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',82827,85178,'NM_177987','TUBB8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134943127,134972634,'NM_006659','TUBGCP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',71567738,71576502,'NM_001040273','TYSND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',59764744,59800519,'NM_003338','UBE2D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99248757,99320950,'NM_024954','UBTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',13303772,13316334,'NM_145314','UCMA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',5396975,5406169,'NM_053049','UCN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',72642297,72732641,'NM_001244889','UNC5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',12002027,12125029,'NM_080599','UPF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',127467136,127501827,'NM_000375','UROS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105138797,105146260,'NM_001206427','USMG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74927301,75005439,'NM_152586','USP54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',11542514,11693685,'NM_014688','USP6NL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134893767,134895052,'NM_003577','UTF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',118882790,118887802,'NM_001112704','VAX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',75427877,75549920,'NM_014000','VCL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',76640305,76661212,'NR_033675','VDAC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134901397,134905423,'NM_014468','VENTX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',17310263,17319598,'NM_003380','VIM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',70553913,70602622,'NM_001035260','VPS26A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',49980222,49993565,'NM_144984','VSTM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',114196745,114568493,'NM_145206','VTI1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',115989007,116039741,'NM_198496','VWA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',28861427,28952047,'NR_024557','WAC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',88184992,88271521,'NM_015045','WAPAL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',49563523,49861007,'NM_020945','WDFY4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',122600676,122659028,'NM_018117','WDR11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',1092775,1168237,'NM_014023','WDR37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',105879635,105982110,'NM_025145','WDR96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',102212801,102233389,'NM_003393','WNT8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',111614513,111673301,'NM_020383','XPNPEP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',27439388,27483327,'NM_139312','YME1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',80812088,80875389,'NM_153367','ZCCHC24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99195936,99207117,'NM_198046','ZDHHC16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',114180047,114196662,'NM_022494','ZDHHC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',31648106,31858748,'NM_001174093','ZEB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',31645462,31648030,'NR_024284','ZEB1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',99486867,99510654,'NM_144588','ZFYVE27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',80498797,80746291,'NM_020338','ZMIZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',170404,290577,'NM_006624','ZMYND11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',74853342,74863325,'NM_001024593','ZMYND17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',44816278,44820783,'NM_006963','ZNF22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',43371798,43390072,'NM_001099284','ZNF239'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',38157904,38186492,'NM_021045','ZNF248'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',38278800,38305459,'NM_145011','ZNF25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',43459312,43464332,'NM_006973','ZNF32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',43444270,43490153,'NR_038867','ZNF32-AS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',38339583,38389001,'NM_006974','ZNF33A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',42404560,42453998,'NM_006955','ZNF33B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',63950212,64101777,'NM_199452','ZNF365'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',38423269,38452284,'NM_001178101','ZNF37A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',42328966,42368286,'NR_026777','ZNF37BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',31173570,31360872,'NM_182755','ZNF438'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',43421860,43433358,'NM_145312','ZNF485'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',43252579,43298013,'NR_026693','ZNF487P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',47975094,47993874,'NM_153034','ZNF488'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',76827608,76831519,'NM_032772','ZNF503'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',76726146,76791442,'NR_038224','ZNF503-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',76831291,76838746,'NR_024421','ZNF503-AS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',134972412,134976656,'NM_145806','ZNF511'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',97879461,97913507,'NM_014803','ZNF518A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',126620681,126665995,'NM_017580','ZRANB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr10',57787204,57791040,'NM_032997','ZWINT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',105453501,105474629,'NM_015423','AASDHPPT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',17371007,17455025,'NM_000352','ABCC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118525508,118538584,'NM_001142505','ABCG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',34129109,34336131,'NM_145804','ABTB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133628643,133640956,'NM_014384','ACAD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',107497467,107524101,'NM_000019','ACAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',44044304,44062145,'NM_001127219','ACCS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',44026106,44038103,'NM_001031854','ACCSL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',76249564,76412498,'NM_018367','ACER3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47223645,47227033,'NM_001131064','ACP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125047438,125056003,'NM_020108','ACRV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66070966,66087373,'NM_001104','ACTN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67166601,67174706,'NM_080658','ACY3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',129824078,129851749,'NM_139055','ADAMTS15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',129780027,129803749,'NM_007037','ADAMTS8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10283217,10285499,'NM_001124','ADM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66790480,66810605,'NM_001619','ADRBK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47637718,47693504,'NM_024783','AGBL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62039949,62070908,'NM_001620','AHNAK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67007080,67015155,'NM_003977','AIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8889276,8898202,'NM_001206645','AKIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67534365,67553319,'NM_000694','ALDH3B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67186208,67198678,'NM_000695','ALDH3B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77489635,77528347,'NM_024079','ALG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111158128,111247515,'NM_024740','ALG9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',43858932,43898401,'NM_139178','ALKBH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',106878662,106941671,'NM_138775','ALKBH8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',44238853,44288292,'NM_021926','ALX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46374539,46569490,'NM_017749','AMBRA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117569651,117589284,'NM_153206','AMICA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',94141155,94249566,'NM_130847','AMOTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10428443,10485702,'NM_001172431','AMPD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',101266614,101292463,'NM_178127','ANGPTL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',112763722,112776350,'NM_178510','ANKK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66813337,66826531,'NM_207354','ANKRD13D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',82582938,82637661,'NM_182603','ANKRD42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93866800,93872392,'NM_017704','ANKRD49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',69609163,69713299,'NR_030691','ANO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',26310253,26641412,'NM_031418','ANO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',22171297,22261489,'NM_001142649','ANO5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',407929,432011,'NM_001012302','ANO9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',915808,1002245,'NM_012305','AP2A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6372930,6397220,'NM_145689','APBB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',43290080,43322656,'NM_006595','API5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',34860418,34894515,'NM_015957','APIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56757627,56761503,'NR_027991','APLNR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',129444925,129519916,'NM_001142277','APLP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116211678,116213548,'NM_000039','APOA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116196627,116199221,'NM_000482','APOA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116165295,116168346,'NM_001166598','APOA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116205833,116208997,'NM_000040','APOC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',76978327,76999049,'NM_173039','AQP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',72073761,72111051,'NM_015242','ARAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117948311,117978957,'NM_001142281','ARCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47142424,47155252,'NM_001242832','ARFGAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6452488,6459285,'NM_012402','ARFIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46655207,46678696,'NM_004308','ARHGAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',109952975,110088661,'NM_020809','ARHGAP20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',128340164,128567303,'NM_001142685','ARHGAP32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',100063616,100366866,'NM_152432','ARHGAP42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',119712827,119865855,'NM_001198665','ARHGEF12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',72697310,72758073,'NM_014786','ARHGEF17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64538160,64546233,'NM_001667','ARL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64538160,64564620,'NR_037650','ARL2-SNX15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',13255900,13365388,'NM_001178','ARNTL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74648813,74740523,'NM_020251','ARRB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3622936,3642222,'NM_004314','ART1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3616311,3620061,'NM_053017','ART5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2246303,2248758,'NM_005170','ASCL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8915694,8921156,'NM_020646','ASCL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61861349,61917463,'NM_001083926','ASRGL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46595401,46654144,'NM_001205121','ATG13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',72203098,72218328,'NM_033388','ATG16L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64418579,64441298,'NM_015104','ATG2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',279137,285688,'NM_025092','ATHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63153012,63195659,'NM_015459','ATL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',107598768,107745036,'NM_000051','ATM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117777313,117785772,'NM_006476','ATP5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133753607,133787022,'NM_018644','B3GAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62139343,62146223,'NM_012200','B3GAT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65869418,65871737,'NM_006876','B3GNT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',76423082,76430653,'NM_138706','B3GNT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',359794,372117,'NM_178537','B4GALNT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',17329884,17355444,'NM_001202439','B7H6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116661611,116671596,'NM_001207049','BACE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116667271,116668067,'NR_037803','BACE1-AS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63793875,63808752,'NM_004322','BAD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65526125,65528193,'NM_001143985','BANF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',128751090,128827384,'NM_003658','BARX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64511992,64521093,'NM_138456','BATF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',27019084,27105930,'NM_003986','BBOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66034694,66057660,'NM_024649','BBS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118272060,118286823,'NM_182557','BCL9L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111552298,111594859,'NM_001037290','BCO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',27633017,27678611,'NM_001709','BDNF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',27484974,27676294,'NR_033313','BDNF-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61473931,61488511,'NM_004183','BEST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',192923,197422,'NM_001098787','BET1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',101723175,101754611,'NM_001166','BIRC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',101693390,101715344,'NM_001165','BIRC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',121491271,121492133,'NM_001001786','BLID'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65861379,65869158,'NM_015399','BRMS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1367704,1439904,'NM_003957','BRSK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62214309,62230363,'NM_001130702','BSCL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',122353566,122357589,'NM_001098169','BSX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',13366131,13441414,'NM_032320','BTBD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57267561,57275829,'NM_001145101','BTBD18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',110843465,110888274,'NM_017589','BTG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116124095,116148924,'NM_001159736','BUD13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111255157,111260007,'NM_022761','C11orf1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61313177,61316661,'NM_014206','C11orf10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8898198,8911129,'NM_020643','C11orf16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64620258,64635756,'NM_013265','C11orf2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63824438,63828815,'NM_001039496','C11orf20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2274082,2279719,'NR_024621','C11orf21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67785378,67796045,'NM_022338','C11orf24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',75833716,75940237,'NM_020193','C11orf30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57265297,57267459,'NM_170746','C11orf31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111624085,111636793,'NM_001145024','C11orf34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',544849,550779,'NM_173573','C11orf35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3196137,3200937,'NR_027138','C11orf36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4549228,4555626,'NM_144663','C11orf40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',33520452,33652222,'NM_012194','C11orf41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6183373,6188941,'NM_173525','C11orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',128274669,128280802,'NM_145013','C11orf45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',30301224,30315741,'NM_152316','C11orf46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62186864,62195817,'NM_024099','C11orf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46914826,47140374,'NM_024113','C11orf49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71498280,71501470,'NM_014042','C11orf51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111294810,111302805,'NM_080659','C11orf52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',110631916,110662182,'NM_198498','C11orf53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93114440,93135895,'NM_014039','C11orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111450177,111461084,'NM_001082969','C11orf57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',16716723,16736477,'NM_014267','C11orf58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124141603,124175509,'NM_024631','C11orf61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',122258682,122281793,'NM_199124','C11orf63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',107758936,107843468,'NM_152587','C11orf65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61005160,61014976,'NM_001170753','C11orf66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77209855,77261046,'NM_024684','C11orf67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65440858,65443107,'NM_001135635','C11orf68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',101423378,101460501,'NM_032930','C11orf70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113767379,113776349,'NM_019021','C11orf71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',85690900,85734633,'NR_024598','C11orf73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',36572668,36637393,'NM_138787','C11orf74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',92851286,92916194,'NM_020179','C11orf75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66268782,66367563,'NM_024650','C11orf80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',82290384,82323347,'NM_145018','C11orf82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62195701,62197738,'NM_001085372','C11orf83'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63337498,63351766,'NM_138471','C11orf84'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64462504,64484185,'NM_001037225','C11orf85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66499329,66501055,'NM_001136485','C11orf86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',108798055,108805103,'NM_207645','C11orf87'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',110890719,110912966,'NM_001100388','C11orf88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61276696,61312565,'NM_001127392','C11orf9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',33676229,33678862,'NM_001166692','C11orf91'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',110669323,110675749,'NR_034154','C11orf92'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',110675185,110684563,'NM_001136105','C11orf93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',45884661,45885409,'NM_001080446','C11orf94'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63283939,63292689,'NM_001144936','C11orf95'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',43920681,43922009,'NM_001145033','C11orf96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47567791,47572537,'NM_031909','C1QTNF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118714861,118722593,'NM_015645','C1QTNF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118483302,118493037,'NM_014807','C2CD2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73423127,73559712,'NM_015531','C2CD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67042993,67047475,'NM_016366','CABP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66979393,66985821,'NM_145200','CABP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',114549554,114880451,'NM_001098517','CADM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',14946623,14950408,'NM_001033952','CALCA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',15051721,15056753,'NM_000728','CALCB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64705879,64736053,'NR_040008','CAPN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',76455639,76514846,'NM_004055','CAPN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',34029805,34077183,'NM_203364','CAPRIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',104417262,104421261,'NM_052889','CARD16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',104468405,104477368,'NM_001007232','CARD17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',104513657,104515671,'NM_021571','CARD18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66939724,66949654,'NM_001166222','CARNS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2978727,3035257,'NM_001751','CARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',104401446,104411067,'NM_001223','CASP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',104262627,104274607,'NR_034068','CASP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',104318803,104344535,'NM_001225','CASP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',104370176,104399105,'NR_024239','CASP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',34417047,34450183,'NM_001752','CAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65540798,65550564,'NM_053054','CATSPER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118582199,118684069,'NM_005188','CBL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124329226,124416595,'NM_025004','CCDC15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118566172,118571794,'NM_001145018','CCDC153'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',27316636,27341371,'NM_030771','CCDC34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',92703530,92811284,'NM_181645','CCDC67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',32580201,32772763,'NM_001008391','CCDC73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',85763425,85811799,'NM_001156474','CCDC81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',95725576,95762731,'NM_024725','CCDC82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',85243791,85308699,'NM_173556','CCDC83'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118374061,118391665,'NM_198489','CCDC84'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65414450,65415682,'NM_006848','CCDC85B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60366004,60375137,'NM_024098','CCDC86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66114215,66117130,'NM_018219','CCDC87'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63864265,63881582,'NM_032251','CCDC88B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',85072540,85074968,'NM_152723','CCDC89'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',82650149,82675025,'NM_021825','CCDC90B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6237541,6249932,'NM_176875','CCKBR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',69165053,69178423,'NM_053056','CCND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66117265,66130066,'NM_005125','CCS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',822951,828835,'NM_139029','CD151'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65838533,65841091,'NM_020404','CD248'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117714998,117718669,'NM_000732','CD3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117680504,117692100,'NM_000733','CD3E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117720268,117729707,'NM_000073','CD3G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',35116992,35210525,'NM_001202556','CD44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60626505,60651899,'NM_014207','CD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',33681131,33701074,'NM_001127227','CD59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60495690,60544424,'NM_006725','CD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2355122,2375225,'NM_004356','CD81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',44543716,44597891,'NM_002231','CD82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64348237,64368617,'NM_017525','CDC42BPG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64838864,64846476,'NM_006779','CDC42EP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64601502,64608191,'NM_080668','CDCA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',606564,615067,'NM_021924','CDHR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67030543,67032678,'NM_005851','CDK2AP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2861023,2863571,'NM_001122630','CDKN1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125331922,125438397,'NM_016952','CDON'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47444064,47467152,'NM_001172640','CELF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',777109,780126,'NM_016564','CEND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116703780,116789192,'NM_014956','CEP164'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',95163272,95205506,'NM_001243776','CEP57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65378860,65382380,'NM_005507','CFL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73261360,73265538,'NM_016565','CHCHD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125000240,125051360,'NM_001114121','CHEK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',857858,900874,'NM_001142676','CHID1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67576901,67645434,'NM_212469','CHKA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89573245,89596180,'NM_012124','CHORDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74085121,74119834,'NM_015424','CHRDL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62432726,62445588,'NM_000738','CHRM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46363215,46364683,'NM_000741','CHRM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3643392,3649190,'NM_020402','CHRNA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',45625814,45643782,'NM_003654','CHST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46721659,46824435,'NM_014756','CKAP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66888214,66898224,'NM_001166212','CLCF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113155727,113156417,'NM_001101389','CLDN25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',122448242,122571217,'NM_024769','CLMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77004843,77026499,'NM_001293','CLNS1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57181791,57185913,'NM_006831','CLP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71681117,71823216,'NM_030813','CLPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6216897,6222283,'NM_001037329','CNGA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65802271,65808259,'NM_182553','CNIH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58146721,58149781,'NM_000614','CNTF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',98932085,99734826,'NM_175566','CNTN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',36250417,36267575,'NM_001101653','COMMD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',14435624,14478017,'NM_001144061','COPB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66962093,66967868,'NM_001018070','CORO1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63498654,63500591,'NM_004074','COX8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60926695,60953959,'NM_024811','CPSF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',68278926,68365975,'NM_001876','CPT1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46255803,46299548,'NM_052854','CREB3L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',85046255,85053830,'NM_001039618','CREBZF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',122214464,122248557,'NM_019604','CRTAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',45825532,45861375,'NM_021117','CRY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111284559,111287683,'NM_001885','CRYAB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',11329896,11331480,'NR_002207','CSNK2A1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',19160153,19180165,'NM_003476','CSRP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65536037,65537552,'NM_001323','CST6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',33062705,33139613,'NM_001326','CSTF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57285809,57343228,'NM_001085464','CTNND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10729386,10757866,'NM_014633','CTR9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',87693628,87710589,'NM_148170','CTSC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1730557,1741798,'NM_001909','CTSD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66087510,66092623,'NM_003793','CTSF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65403859,65407788,'NM_001335','CTSW'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',69922259,69960338,'NM_005231','CTTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',107384617,107483698,'NM_003478','CUL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',94335434,94346424,'NM_016403','CWC15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',106702281,106833782,'NM_152434','CWF19L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118259684,118272190,'NM_001716','CXCR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7642901,7651397,'NM_016229','CYB5R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60872795,60886331,'NM_001161454','CYBASC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',14856131,14870327,'NM_024514','CYP2R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61204480,61271050,'NM_006133','DAGLA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60857229,60872807,'NM_015533','DAK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',20134335,20138446,'NM_001029865','DBX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',31240746,31347933,'NM_181807','DCDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',30841725,30970809,'NM_020869','DCDC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6599133,6633650,'NM_003737','DCHS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125678856,125720854,'NM_014026','DCPS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',102426622,102468154,'NM_032299','DCUN1D5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60823494,60857242,'NM_001923','DDB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47193068,47217345,'NM_000107','DDB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',103412517,103415132,'NM_001001711','DDI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',108041025,108316858,'NM_004398','DDX10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125279481,125298215,'NM_013264','DDX25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118123682,118167182,'NM_004397','DDX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',634224,685740,'NM_021008','DEAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71221893,71226256,'NM_001002035','DEFB108B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',9116948,9243449,'NM_001243254','DENND5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',32993985,33011704,'NM_001077242','DEPDC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',75157425,75190227,'NM_032564','DGAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46323392,46358680,'NM_201533','DGKZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',70823104,70837125,'NM_001360','DHCR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111313136,111398517,'NM_001037954','DIXDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61278076,61281712,'NR_026882','DKFZP434K028'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',31794689,31865163,'NR_033971','DKFZp686K1684'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65299953,65304398,'NM_138368','DKFZp761E198'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',45749558,45750485,'NR_027134','DKFZp779M0652'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',11941118,11987205,'NM_015881','DKK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111400747,111440212,'NM_001931','DLAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',82843703,85015962,'NM_001142699','DLG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73339011,73358980,'NM_153614','DNAJB13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',31347952,31410958,'NM_181706','DNAJC24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63754328,63758329,'NM_005528','DNAJC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6475101,6549830,'NM_144666','DNHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67137570,67139711,'NR_033791','DOC2GP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118472422,118477995,'NM_001382','DPAGT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64857800,64877027,'NM_006268','DPF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66004455,66033706,'NM_130443','DPP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65443303,65445624,'NM_006442','DRAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',112785526,112851211,'NM_016574','DRD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',627304,630705,'NM_000797','DRD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116803698,117173186,'NM_020693','DSCAML1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58696387,58732636,'NM_015177','DTX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1531856,1549726,'NM_004420','DUSP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',102485369,102855801,'NM_001080463','DYNC2H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',19202185,19219083,'NM_024680','E2F8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',85633453,85667433,'NM_003797','EED'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62083648,62098036,'NM_001404','EEF1G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',817584,821991,'NM_173584','EFCAB4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65390487,65396981,'NM_016938','EFEMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65100084,65116692,'NM_001099409','EHBP1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64376783,64402767,'NM_006795','EHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',34599163,34641410,'NM_012153','EHF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124944507,124959785,'NM_004879','EI24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65520591,65526213,'NM_001242486','EIF1AD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7965442,7974294,'NM_003754','EIF3F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',32561966,32580590,'NM_006360','EIF3M'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10775168,10786119,'NM_001172705','EIF4G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',34456917,34489922,'NM_001243081','ELF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',106967026,107042715,'NM_018712','ELMOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',31487872,31761905,'NM_019040','ELP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62126266,62136813,'NM_153265','EML3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',94462621,94505463,'NM_015036','ENDOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',696119,717727,'NM_022772','EPS8L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124128228,124137433,'NM_138961','ESAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63829619,63840786,'NM_004451','ESRRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',127833865,127897415,'NM_001162422','ETS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',107881367,107969584,'NM_015065','EXPH5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',44073674,44223556,'NM_001178083','EXT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46697318,46717632,'NM_000506','F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',69726916,69731156,'NM_003824','FADD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61323672,61341105,'NM_013402','FADS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61352288,61391401,'NM_004265','FADS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61397573,61415582,'NM_021727','FADS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58668827,58679087,'NM_022074','FAM111A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58631233,58651464,'NM_001142704','FAM111B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125586828,125638089,'NM_024556','FAM118B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6189139,6212517,'NM_001098794','FAM160A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',72794675,72986876,'NM_015159','FAM168A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47564805,47567322,'NM_001164379','FAM180B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',82120693,82122554,'NM_175885','FAM181B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113897646,113935790,'NM_152315','FAM55A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',114054409,114082862,'NM_182495','FAM55B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113946522,113971694,'NM_017678','FAM55D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',95141753,95162602,'NM_144664','FAM76B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71176204,71189928,'NM_018172','FAM86C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67315813,67329383,'NR_024249','FAM86C2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65096395,65098245,'NM_001098785','FAM89B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1643404,1645662,'NR_026643','FAM99A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1661075,1663435,'NR_026642','FAM99B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',22600654,22603963,'NM_022725','FANCF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',13646781,13710469,'NM_032228','FAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',91724909,92269283,'NM_001008781','FAT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64644674,64646248,'NM_001997','FAU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',33719065,33752647,'NM_012175','FBXO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',72225437,72530791,'NM_014824','FCHSD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',109805870,109840818,'NM_004109','FDX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111249989,111255391,'NM_138378','FDXACB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61316684,61321290,'NM_004111','FEN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63730727,63747939,'NM_178443','FERMT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124863305,124871416,'NM_022549','FEZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',69222186,69228287,'NM_005117','FGF19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',69333916,69343129,'NM_005247','FGF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',69296977,69299352,'NM_002007','FGF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',26972203,26975208,'NM_203371','FIBIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65407786,65412586,'NM_004214','FIBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',35596310,35598997,'NM_014344','FJX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63764988,63768183,'NM_004470','FKBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',128069022,128188372,'NM_002017','FLI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125716821,125730692,'NR_033839','FLJ39051'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',70794439,70812048,'NR_038862','FLJ42102'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63627937,63643221,'NM_013280','FLRT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47694644,47745569,'NM_015308','FNBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',49124762,49186798,'NM_001193473','FOLH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89032112,89071534,'NM_153696','FOLH1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71578606,71585015,'NM_000802','FOLR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71605466,71610642,'NM_000803','FOLR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71524418,71528582,'NM_000804','FOLR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93678450,93680506,'NM_001199206','FOLR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65416267,65424573,'NM_005438','FOSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118347626,118357205,'NM_181721','FOXR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125644249,125653237,'NR_037648','FOXRED1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64910616,64937571,'NM_031904','FRMD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',30209138,30213400,'NM_000510','FSHB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61488332,61491708,'NM_002032','FTH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93916664,93922712,'NM_002033','FUT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6459252,6462487,'NM_012192','FXC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117195999,117204017,'NM_021603','FXYD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117212900,117252956,'NM_022003','FXYD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117195999,117252956,'NM_001204268','FXYD6-FXYD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',86334364,86344088,'NM_012193','FZD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77603983,77730574,'NM_012296','GAB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',68208558,68215219,'NM_015973','GAL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65564811,65573227,'NM_033036','GAL3ST3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',11248996,11600137,'NM_198516','GALNTL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62148873,62170680,'NM_198334','GANAB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',22652894,22791123,'NM_005256','GAS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',76605250,76676111,'NM_182833','GDPD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74823332,74914247,'NM_030792','GDPD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59353321,59369550,'NM_005142','GIF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133706977,133751428,'NM_138342','GLB1L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133651484,133694668,'NM_001080407','GLB1L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58232805,58256023,'NM_201648','GLYAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58467297,58481119,'NM_080661','GLYATL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58358115,58368573,'NM_145016','GLYATL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62231689,62233254,'NM_012202','GNG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64458518,64459936,'NM_130769','GPHA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63810157,63813548,'NM_001170880','GPR137'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66975347,66976776,'NM_206997','GPR152'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60374973,60380020,'NM_004778','GPR44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93750124,93774233,'NM_016540','GPR83'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',122901737,122998728,'NM_020716','GRAMD1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',104986620,105289441,'NM_001112812','GRIA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',120036237,120362179,'NM_014619','GRIK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',87877391,88420888,'NM_001143831','GRM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67107641,67110700,'NM_000852','GSTP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18300391,18345166,'NM_005316','GTF2H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',106063119,106394381,'NM_000855','GUCY1A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',76068857,76110481,'NR_024042','GUCY2E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6690953,6699686,'NR_003945','GVINP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',45899771,45907223,'NM_152312','GYLTL1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1972981,1975641,'NR_002196','H19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118469794,118471387,'NM_002105','H2AFX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46581431,46595353,'NM_173811','HARBI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5203271,5204877,'NM_000518','HBB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5219760,5221398,'NR_001589','HBBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5210634,5212434,'NM_000519','HBD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5246155,5247949,'NM_005330','HBE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5226077,5227663,'NM_000559','HBG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5230996,5232587,'NM_000184','HBG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124294355,124311518,'NM_152722','HEPACAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93394025,93487022,'NM_001098672','HEPHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124294355,124295783,'NM_001037558','HEPN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118497442,118510975,'NM_001243259','HINFP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',33235743,33332515,'NM_001048200','HIPK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118460796,118469469,'NM_000190','HMBS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',43239629,43247495,'NR_033868','HNRNPKP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62236672,62251433,'NM_001079559','HNRNPUL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62214309,62251432,'NR_037946','HNRNPUL2-BSCL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18256792,18300297,'NM_181508','HPS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6408843,6418830,'NM_000613','HPX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',522241,525550,'NM_005343','HRAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63076817,63087431,'NM_017878','HRASLS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62985451,63015256,'NM_001146729','HRASLS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',43658718,43834745,'NM_016142','HSD17B12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',122433409,122438111,'NM_153201','HSPA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111288669,111290027,'NM_001541','HSPB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111288669,111302805,'NR_037651','HSPB2-C11orf52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',20341864,20361905,'NM_001098520','HTATIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113353431,113366244,'NM_001161772','HTR3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113280727,113322493,'NM_006028','HTR3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125262164,125275751,'NM_001134793','HYLS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118420105,118433126,'NM_006389','HYOU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',303990,305272,'NM_003641','IFITM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1710215,1728400,'NM_001170820','IFITM10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',298106,299410,'NM_006435','IFITM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',309672,310914,'NM_021034','IFITM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',288202,289526,'NM_001025295','IFITM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117920452,117942001,'NM_020153','IFT46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2106922,2118917,'NM_001127598','IGF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2118333,2126472,'NR_028044','IGF2-AS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',68427894,68464645,'NM_002180','IGHMBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18682427,18704353,'NM_173588','IGSF22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133290394,133332090,'NM_014987','IGSF9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117362315,117377408,'NM_001558','IL10RA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111519183,111540050,'NM_001562','IL18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71387756,71391613,'NM_005699','IL18BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6581539,6588675,'NM_004517','ILK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',31410524,31487745,'NM_144981','IMMP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61648020,61677211,'NM_020238','INCENP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71613529,71627836,'NM_001567','INPPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2137584,2139015,'NM_000207','INS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2106917,2139015,'NR_003512','INS-IGF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',15093059,15225330,'NM_001042536','INSC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77267413,77383365,'NM_033547','INTS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62170895,62177350,'NM_030628','INTS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',9362744,9426250,'NM_006391','IPO7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',602554,605999,'NM_001572','IRF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133444029,133526862,'NM_032801','JAM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',95762805,95766375,'NM_003772','JRKL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65236048,65243653,'NM_182710','KAT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',105427034,105453675,'NM_152433','KBTBD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47550324,47557143,'NR_024222','KBTBD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',29987863,29995153,'NM_002233','KCNA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',17714070,17755953,'NM_004976','KCNC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73843533,73856248,'NM_005472','KCNE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',128213124,128217573,'NM_000220','KCNJ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',17363371,17366782,'NM_000525','KCNJ11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',128266522,128293161,'NM_000890','KCNJ5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63815368,63824079,'NM_033310','KCNK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65116901,65120043,'NM_005714','KCNK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2422796,2826916,'NM_000218','KCNQ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2847838,2849911,'NR_024627','KCNQ1DN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2618343,2677804,'NR_002728','KCNQ1OT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77404408,77411968,'NM_023930','KCTD14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77559945,77577312,'NM_001029859','KCTD21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',107848042,107874369,'NM_153705','KDELC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66643315,66782126,'NR_027473','KDM2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',94346492,94372324,'NM_018039','KDM4D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',94398069,94400408,'NM_001161630','KDM4DL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',101290955,101377003,'NM_020802','KIAA1377'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93034463,93103170,'NM_033395','KIAA1731'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',105383838,105398164,'NM_032424','KIAA1826'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',27998738,28086322,'NM_031217','KIF18A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125798605,126375976,'NM_032531','KIRREL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',126378014,126381163,'NR_040078','KIRREL3-AS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65781340,65791907,'NM_001134775','KLC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74811085,74819322,'NM_001039548','KLHL35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',9072485,9074313,'NR_027713','KRT8P41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1562147,1563089,'NM_001005922','KRTAP5-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',70954256,70955314,'NM_001012710','KRTAP5-10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',70970548,70971569,'NM_001005405','KRTAP5-11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1574982,1576100,'NM_001004325','KRTAP5-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1585370,1586269,'NM_001012708','KRTAP5-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1598763,1599944,'NM_001012709','KRTAP5-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1607608,1608735,'NM_001001480','KRTAP5-5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1675000,1675561,'NM_001012416','KRTAP5-6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',70915960,70916858,'NM_001012503','KRTAP5-7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',70926718,70927901,'NM_021046','KRTAP5-8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',70937113,70938301,'NM_005553','KRTAP5-9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71485985,71492081,'NM_017907','LAMTOR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',110916442,110936998,'NM_178834','LAYN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18372511,18386341,'NM_005566','LDHA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18433949,18457723,'NM_001144071','LDHAL6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18390428,18429369,'NM_002301','LDHC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',35922187,36209417,'NM_174902','LDLRAD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63030099,63040822,'NM_033101','LGALS12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',27344083,27450910,'NM_018490','LGR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',27472540,27484902,'NM_018362','LIN7C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',129377728,129380591,'NR_024233','LINC00167'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',33054271,33057576,'NR_015451','LINC00294'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60139799,60211197,'NR_026946','LINC00301'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73880570,73882403,'NM_001144869','LIPT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8202432,8241982,'NM_002315','LMO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',33836698,33848085,'NM_001142315','LMO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',19689055,19692722,'NR_015384','LOC100126784'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133407376,133416446,'NR_027276','LOC100128239'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71267146,71273255,'NM_001242853','LOC100129216'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10519362,10578055,'NR_034094','LOC100129827'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64612419,64613118,'NM_001242631','LOC100130348'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66841885,66915734,'NR_024469','LOC100130987'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116986,121920,'NR_028326','LOC100133161'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71254202,71317141,'NR_029192','LOC100133315'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',102159616,102212707,'NR_038390','LOC100288077'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',112645463,112649833,'NR_034101','LOC100288346'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118757697,118875154,'NR_034160','LOC100499227'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',22825044,22838548,'NM_001195637','LOC100500938'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',82460755,82462402,'NR_038903','LOC100506233'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',12957656,12967671,'NR_038904','LOC100506305'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',86344310,86389637,'NR_038905','LOC100506368'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18577926,18588378,'NR_038360','LOC100506540'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',42165868,42231816,'NR_038309','LOC100507205'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',43887415,43899070,'NR_038907','LOC100507300'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',128066776,128071128,'NR_038908','LOC100507392'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46824537,46852543,'NR_038909','LOC100507401'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117391696,117462718,'NR_038318','LOC100526771'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116571538,116577840,'NR_045215','LOC100652768'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',48953625,48959823,'NM_001206625','LOC120824'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',563807,565885,'NR_026967','LOC143666'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',44952028,44956154,'NR_026681','LOC221122'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65093266,65094460,'NR_038923','LOC254100'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1287513,1288513,'NR_029409','LOC255512'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',9736415,9789442,'NR_036485','LOC283104'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',49009727,49016105,'NM_001206626','LOC283116'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',115131258,115136128,'NR_034148','LOC283143'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133271539,133276845,'NR_024344','LOC283174'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133811585,133880765,'NR_033852','LOC283177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58457691,58582501,'NR_033853','LOC283194'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7828873,7884078,'NR_036678','LOC283299'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1550546,1576990,'NR_021489','LOC338651'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',33139778,33169718,'NR_034027','LOC338739'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',122393483,122395529,'NR_027288','LOC341056'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89284287,89290526,'NM_001206627','LOC399939'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89354261,89364486,'NR_038146','LOC399940'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',9732892,9737656,'NR_033972','LOC440028'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',49536655,49788545,'NR_027044','LOC440040'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',54817754,54822284,'NR_038174','LOC440041'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',50195574,50214209,'NR_003034','LOC441601'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74629597,74632397,'NM_001195528','LOC441617'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18187260,18189631,'NR_026541','LOC494141'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93885342,93904937,'NM_001190462','LOC643037'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',104277485,104294112,'NR_034079','LOC643733'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',106967680,106969159,'NR_028328','LOC643923'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',9437678,9438821,'NR_036539','LOC644656'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',50324893,50336378,'NR_024504','LOC646813'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',119625677,119641851,'NR_038829','LOC649133'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3358766,3386954,'NR_024248','LOC650368'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10836339,10857399,'NR_034137','LOC729013'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',43875428,43878000,'NR_026952','LOC729799'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58050919,58099966,'NM_004811','LPXN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66381451,66384522,'NM_024036','LRFN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46834843,46896749,'NM_002334','LRP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67836683,67973319,'NM_002335','LRP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61032847,61035066,'NM_001145077','LRRC10B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',76046215,76058692,'NM_005512','LRRC32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',40092328,40272240,'NM_020929','LRRC4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56705796,56715764,'NM_001005210','LRRC55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',527521,544916,'NM_198075','LRRC56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62210449,62213947,'NM_203422','LRRN4CL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71469024,71485586,'NM_145309','LRTOMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1830775,1870069,'NM_002339','LSP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65062605,65082275,'NM_001164266','LTBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',24475131,25060762,'NM_001009909','LUZP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10535988,10546941,'NM_006691','LYVE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63522605,63690161,'NM_014067','MACROD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47247774,47308158,'NM_003682','MADD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65021808,65030515,'NR_002819','MALAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',95351087,95715992,'NM_032427','MAML2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65121801,65138296,'NM_002419','MAP3K11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64313184,64327289,'NM_004579','MAP4K2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74991552,75057127,'NM_207577','MAP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',45863622,45884592,'NM_005456','MAPK8IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63362975,63435068,'NM_001163296','MARK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118684443,118693050,'NM_006500','MCAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46359794,46361951,'NM_002391','MDK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',85829797,86061326,'NM_001161586','ME3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93157052,93186144,'NM_004268','MED17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57227762,57236249,'NM_153450','MED19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64327561,64334764,'NM_130799','MEN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62189354,62191499,'NM_001043229','METTL12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',28086373,28311630,'NM_152636','METTL15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118714861,118722593,'NM_031433','MFRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',12088713,12241907,'NM_014632','MICAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',12265022,12337267,'NM_032867','MICALCL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',121528146,121528226,'NR_029515','MIR100'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',121465020,121578980,'NR_024430','MIR100HG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63892649,63892751,'NR_031602','MIR1237'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',121475674,121475762,'NR_029671','MIR125B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',95714249,95714338,'NR_036125','MIR1260B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',43559519,43559609,'NR_029697','MIR129-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93106487,93106578,'NR_031639','MIR1304'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57165246,57165335,'NR_029673','MIR130A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',34919959,34920043,'NR_039836','MIR1343'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',72003754,72003822,'NR_029603','MIR139'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61339208,61339288,'NR_031729','MIR1908'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64415184,64415294,'NR_029578','MIR192'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64415402,64415487,'NR_029829','MIR194-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',558088,558198,'NR_029623','MIR210'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',555656,558457,'NR_038262','MIR210HG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46429930,46430015,'NR_036117','MIR3160-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46429932,46430013,'NR_036118','MIR3160-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59119125,59119207,'NR_036120','MIR3162'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71460921,71460996,'NR_036123','MIR3165'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',126363563,126363648,'NR_036126','MIR3167'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74723783,74723878,'NR_029891','MIR326'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',110888872,110888956,'NR_029839','MIR34B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',110889373,110889450,'NR_029840','MIR34C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62084210,62084354,'NR_037427','MIR3654'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118394863,118394932,'NR_037429','MIR3656'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',70396022,70396121,'NR_037437','MIR3664'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',100895760,100895846,'NR_037485','MIR3920'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',35988223,35988330,'NR_039769','MIR3973'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1837269,1837342,'NR_036185','MIR4298'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',11634773,11634845,'NR_036184','MIR4299'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',81279430,81279526,'NR_036186','MIR4300'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',112825954,112826020,'NR_036183','MIR4301'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10486392,10486449,'NR_039705','MIR4485'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',19553432,19553495,'NR_039706','MIR4486'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61032643,61032705,'NR_039708','MIR4488'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65173238,65173300,'NR_039709','MIR4489'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89928589,89928673,'NR_039711','MIR4490'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',110723691,110723757,'NR_039712','MIR4491'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118286626,118286706,'NR_039713','MIR4492'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',122757357,122757430,'NR_039714','MIR4493'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2150868,2150944,'NR_039834','MIR4686'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3833867,3833947,'NR_039835','MIR4687'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46354527,46354610,'NR_039837','MIR4688'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65160356,65160416,'NR_039839','MIR4690'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67557939,67558024,'NR_039840','MIR4691'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',72172222,72172285,'NR_039841','MIR4692'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',103225843,103225918,'NR_039842','MIR4693'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',19738125,19738205,'NR_039843','MIR4694'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74108960,74109030,'NR_039845','MIR4696'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133273608,133273686,'NR_039846','MIR4697'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2111939,2112015,'NR_030158','MIR483'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',100288165,100288199,'NR_031662','MIR548G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',69807708,69807824,'NR_031624','MIR548K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',28034937,28035033,'NR_030341','MIR610'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61316542,61316609,'NR_030342','MIR611'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64968504,64968604,'NR_030343','MIR612'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',43537781,43537879,'NR_031577','MIR670'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1974564,1974637,'NR_030533','MIR675'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',121522439,121522511,'NR_029477','MIRLET7A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117812414,117902749,'NM_005933','MLL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',102165850,102174176,'NM_001145938','MMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',102146442,102156569,'NM_002425','MMP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',102238673,102250974,'NM_002426','MMP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',102318930,102331673,'NM_002427','MMP13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',101952775,102001273,'NM_004771','MMP20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4965999,4970235,'NM_021801','MMP26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',102067624,102081678,'NM_022122','MMP27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',102211737,102219552,'NM_002422','MMP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',101896448,101906688,'NM_002423','MMP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',102087735,102100895,'NM_002424','MMP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1447260,1464524,'NM_001172223','MOB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',75106581,75119979,'NM_025098','MOGAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58732558,58737070,'NM_001039396','MPEG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',30388193,30558616,'NM_001584','MPPED2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117629340,117640461,'NM_005797','MPZL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117605545,117628221,'NM_198275','MPZL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93790114,93866688,'NM_005591','MRE11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',68504065,68505031,'NM_198923','MRGPRD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3205616,3210192,'NM_001039165','MRGPRE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',68528437,68537426,'NM_001098515','MRGPRF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3195749,3196619,'NM_001164377','MRGPRG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18911935,18913125,'NM_147199','MRGPRX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',19032578,19038804,'NM_054030','MRGPRX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18099077,18116603,'NM_054031','MRGPRX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18150959,18152403,'NM_054032','MRGPRX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65959125,65962886,'NM_170739','MRPL11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59330183,59334921,'NM_017840','MRPL16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6658191,6661208,'NM_022061','MRPL17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',68415321,68427879,'NM_181514','MRPL21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1925077,1934415,'NM_021134','MRPL23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1961014,1967726,'NR_024471','MRPL23-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73176564,73253304,'NM_016055','MRPL48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64646291,64651417,'NR_037568','MRPL49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10551213,10672111,'NM_001206881','MRVI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59979857,59994801,'NM_021950','MS4A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60309396,60325354,'NM_206893','MS4A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60016826,60031477,'NM_001164470','MS4A12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60039461,60066767,'NM_001100909','MS4A13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59920062,59941804,'NM_001079692','MS4A14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60280915,60300780,'NM_001098835','MS4A15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59612712,59622516,'NM_000139','MS4A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59580676,59595164,'NM_006138','MS4A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59804589,59833021,'NM_148975','MS4A4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59953637,59971841,'NM_023945','MS4A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59696546,59707250,'NM_022349','MS4A6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59858930,59865017,'NM_139249','MS4A6E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59902533,59920002,'NM_021201','MS4A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60223622,60239861,'NM_031457','MS4A8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62117250,62125888,'NM_004739','MTA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47595433,47620782,'NM_014342','MTCH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',68231483,68275564,'NM_004923','MTL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',95205691,95297019,'NM_201281','MTMR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',92342436,92355596,'NM_005959','MTNR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10486009,10487299,'NM_001190702','MTRNR2L8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',26537154,26550391,'NM_001135092','MUC15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1064874,1094417,'NM_002457','MUC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1200870,1239982,'NM_002458','MUC5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1002823,1026706,'NM_005961','MUC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65384447,65390490,'NM_025128','MUS81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47309532,47330829,'NM_000256','MYBPC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',68818197,68821330,'NM_138768','MYEOV'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',76516963,76603934,'NM_001127180','MYO7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',17697685,17700254,'NM_002478','MYOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63463017,63481022,'NM_024771','NAA40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89507465,89565427,'NM_005467','NAALAD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64568870,64582585,'NM_005468','NAALADL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',70841864,70890229,'NM_018161','NADSYN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2922235,2970183,'NM_005969','NAP1L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77824654,77963557,'NM_001243251','NARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',34083686,34125034,'NM_001144030','NAT10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',19691456,20099723,'NM_182964','NAV2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',19489015,19502201,'NR_033989','NAV2-AS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',112337178,112641129,'NM_001242608','NCAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133527546,133599636,'NM_015261','NCAPD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77457040,77468913,'NM_001204054','NDUFC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77404408,77468913,'NM_001203260','NDUFC2-KCTD14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47557137,47562691,'NM_004551','NDUFS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67554659,67560690,'NM_002496','NDUFS8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67130898,67136588,'NM_001166102','NDUFV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64946844,64950579,'NR_028272','NEAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',20647692,21553805,'NM_201551','NELL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74377597,74396391,'NM_006656','NEU3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',129238879,129268114,'NM_006165','NFRKB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7937731,7941635,'NM_176821','NLRP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6998275,7049333,'NM_176822','NLRP14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',268569,275304,'NM_138329','NLRP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118544649,118559936,'NM_024618','NLRX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113671744,113688448,'NM_006169','NNMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',88697169,88962427,'NM_001143837','NOX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65945050,65950753,'NM_178864','NPAS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',107533327,107598575,'NM_002519','NPAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47227024,47246977,'NM_001130102','NR1H3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124115038,124122312,'NM_006176','NRGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8958698,8982172,'NM_020645','NRIP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64130221,64247236,'NM_015080','NRXN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',131285921,131690171,'NM_001144059','NTM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',17254861,17309646,'NM_005013','NUCB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63750313,63754064,'NM_001128613','NUDT22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67151984,67153984,'NM_181843','NUDT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71391558,71469221,'NM_006185','NUMA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47756245,47826633,'NM_015231','NUP160'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3652815,3775598,'NM_016320','NUP98'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62316173,62329540,'NM_006362','NXF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',119586956,119605860,'NM_178507','OAF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',186760,190258,'NM_053280','ODF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',78041975,78829343,'NM_001098816','ODZ4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7463175,7489182,'NM_198474','OLFML1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',76491533,76492025,'NM_006189','OMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',131790084,132318247,'NM_002545','OPCML'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6847561,6848473,'NM_001004460','OR10A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7916698,7917643,'NM_001003745','OR10A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6854431,6855426,'NM_207186','OR10A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6823489,6824443,'NM_178168','OR10A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7905840,7906785,'NM_001004461','OR10A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55491609,55492515,'NM_001005491','OR10AG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123391491,123392427,'NM_001004462','OR10G4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123413982,123414918,'NM_001004463','OR10G7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123405539,123406475,'NM_001004464','OR10G8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123398929,123399865,'NM_001001953','OR10G9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57751929,57752966,'NM_001004471','OR10Q1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123352612,123353608,'NM_001004474','OR10S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59236964,59237894,'NM_001005324','OR10V1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59272860,59273630,'NR_045005','OR10V2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57790839,57792308,'NM_207374','OR10W1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57738792,57739770,'NM_001004458','OR1S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57727251,57728229,'NM_001004459','OR1S2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6762823,6763821,'NM_001004489','OR2AG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6745813,6746764,'NM_001004490','OR2AG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74477443,74478406,'NM_001005285','OR2AT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6869380,6870307,'NM_003700','OR2D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6898808,6899801,'NM_001004684','OR2D3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',54891935,54892970,'NM_001005275','OR4A15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',54867252,54868239,'NM_001005274','OR4A16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',48466920,48467850,'NM_001005512','OR4A47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',51267953,51269024,'NM_001005272','OR4A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',48194937,48195867,'NM_001005470','OR4B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55127405,55128450,'NM_001004700','OR4C11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',49959584,49960647,'NM_001005270','OR4C12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',49930518,49931547,'NM_001001955','OR4C13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55078358,55079471,'NM_001001920','OR4C15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55096179,55097112,'NM_001004701','OR4C16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',48303068,48304058,'NM_001004702','OR4C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',48323475,48330575,'NM_001005513','OR4C45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',51371857,51372787,'NM_001004703','OR4C46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55189218,55190148,'NM_001004704','OR4C6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59001478,59002414,'NM_001004705','OR4D10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59027624,59028560,'NM_001004706','OR4D11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123315533,123316490,'NM_001001965','OR4D5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58981009,58981954,'NM_001004708','OR4D6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59038961,59039906,'NM_001004711','OR4D9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55162409,55163348,'NM_001004124','OR4P4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',48284350,48285280,'NM_001004725','OR4S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55174955,55175891,'NM_001004059','OR4S2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',48241988,48242906,'NM_001004726','OR4X1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',48223231,48224143,'NM_001004727','OR4X2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4932577,4933519,'NM_001004748','OR51A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4923964,4924906,'NM_001005329','OR51A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4885175,4886114,'NM_001004749','OR51A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5301103,5302158,'NM_033180','OR51B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5278819,5279752,'NM_033179','OR51B4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5320319,5483458,'NM_001005567','OR51B5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5329313,5330252,'NM_001004750','OR51B6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4617520,4618644,'NM_001004751','OR51D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4621731,4633292,'NM_152430','OR51E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4657976,4675652,'NM_030774','OR51E2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4746784,4747723,'NM_001004752','OR51F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4799191,4800220,'NM_001004753','OR51F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4901179,4902145,'NM_001005237','OR51G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4892524,4893469,'NM_001005238','OR51G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5418347,5419359,'NM_001005288','OR51I1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5431213,5432283,'NM_001004754','OR51I2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4976788,4977736,'NM_001004755','OR51L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5367182,5368240,'NM_001004756','OR51M1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5399916,5401012,'NM_001004757','OR51Q1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4826042,4827014,'NM_001004758','OR51S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4859624,4860689,'NM_001004759','OR51T1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5177540,5178506,'NM_001004760','OR51V1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5129236,5130175,'NM_012375','OR52A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5109497,5110448,'NM_001005160','OR52A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6147160,6148132,'NM_001004052','OR52B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4345068,4346192,'NM_001005161','OR52B4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5558682,5559690,'NM_001005162','OR52B6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5466490,5467554,'NM_001005163','OR52D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5036455,5037433,'NM_001005164','OR52E2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5862098,5863037,'NM_001005165','OR52E4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5818761,5819703,'NM_001005167','OR52E6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5834554,5835508,'NM_001005168','OR52E8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5522366,5523329,'NM_001005289','OR52H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4571844,4572819,'NM_001005169','OR52I1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4564596,4565711,'NM_001005170','OR52I2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5024331,5025267,'NM_001001916','OR52J3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4466684,4467714,'NM_001005171','OR52K1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4427100,4428167,'NM_001005172','OR52K2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5963697,5964791,'NM_001005173','OR52L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4522996,4523950,'NM_001004137','OR52M1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5765659,5766622,'NM_001001913','OR52N1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5798141,5799107,'NM_001005174','OR52N2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5732498,5733535,'NM_001005175','OR52N4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5755439,5756473,'NM_001001922','OR52N5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4781238,4782186,'NM_001005177','OR52R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6177029,6177992,'NM_001005178','OR52W1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6004476,6005547,'NM_001001917','OR56A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5925152,5926100,'NM_001003443','OR56A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5979856,5980954,'NM_001005179','OR56A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5945358,5946300,'NM_001146033','OR56A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5714253,5715344,'NM_001005180','OR56B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6085584,6086544,'NM_001005181','OR56B4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58967217,58968165,'NM_001004728','OR5A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58946027,58947002,'NM_001001954','OR5A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56512964,56513894,'NM_001005323','OR5AK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56561584,56562511,'NR_036445','OR5AK4P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58888507,58889443,'NM_001004729','OR5AN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56165540,56166491,'NM_001002925','OR5AP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56187737,56188670,'NM_001004730','OR5AR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55554470,55555445,'NM_001001921','OR5AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57963168,57964222,'NM_001004733','OR5B12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57882173,57883118,'NM_001005489','OR5B17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57946313,57947362,'NM_001005566','OR5B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58031224,58032154,'NM_001005218','OR5B21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57926513,57927458,'NM_001005469','OR5B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55297489,55298434,'NM_001001967','OR5D13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55319607,55320552,'NM_001004735','OR5D14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55362803,55363790,'NM_001005496','OR5D16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55343681,55344623,'NM_001001952','OR5D18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7827173,7827694,'NR_027711','OR5E1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55517732,55518677,'NM_003697','OR5F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55459507,55460452,'NM_006637','OR5I1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55700669,55701608,'NM_001005492','OR5J2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55335518,55336454,'NM_001004738','OR5L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55351270,55352206,'NM_001004739','OR5L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56136606,56137554,'NM_001004740','OR5M1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56100825,56101773,'NM_001004741','OR5M10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56066391,56067309,'NM_001005245','OR5M11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55993539,55994590,'NM_001004742','OR5M3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56014486,56015422,'NM_001005282','OR5M8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55986520,55987453,'NM_001004743','OR5M9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7774096,7775065,'NM_153444','OR5P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7803159,7804095,'NM_153445','OR5P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55941309,55942284,'NM_001004744','OR5R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55799690,55800671,'NM_001004745','OR5T1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55756157,55757237,'NM_001004746','OR5T2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55776251,55777274,'NM_001004747','OR5T3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55437701,55438634,'NM_001001960','OR5W2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6772331,6773715,'NM_003696','OR6A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123181325,123182267,'NM_001005325','OR6M1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57555000,57555954,'NM_001005186','OR6Q1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123318783,123319755,'NM_001005187','OR6T1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123129497,123130436,'NM_001005188','OR6X1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3368512,3369721,'NR_044999','OR7E12P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',17030008,17031167,'NR_045002','OR7E14P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',86245620,86246644,'NR_045004','OR7E2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55502754,55510457,'NR_027688','OR7E5P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123945174,123946155,'NM_001005194','OR8A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123917827,123918760,'NM_001005195','OR8B12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123757507,123758449,'NM_001005468','OR8B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123771515,123772457,'NM_001005467','OR8B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123799047,123799977,'NM_001005196','OR8B4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123815255,123816191,'NM_012378','OR8B8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123684945,123685872,'NM_001002917','OR8D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123694367,123695303,'NM_001002918','OR8D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123282348,123283293,'NM_001005197','OR8D4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123625632,123640966,'NM_001002905','OR8G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123600607,123601522,'NM_001007249','OR8G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123639932,123640973,'NM_001005198','OR8G5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55814178,55815114,'NM_001005199','OR8H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55629094,55630033,'NM_001005200','OR8H2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55646424,55647363,'NM_001005201','OR8H3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55617359,55618292,'NM_001003750','OR8I2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55884266,55885340,'NM_001005205','OR8J1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55660822,55661770,'NM_001004064','OR8J3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55870090,55871050,'NM_001002907','OR8K1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55842358,55843297,'NM_001005202','OR8K3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55683445,55684369,'NM_001004058','OR8K5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55899675,55900605,'NM_001005204','OR8U1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55899675,56265136,'NM_001013356','OR8U8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56224439,56225357,'NM_001005213','OR9G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56266879,56267863,'NM_001005284','OR9G4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56224439,56225357,'NM_001013358','OR9G9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57642547,57643492,'NM_001005211','OR9I1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57547928,57705614,'NM_001005212','OR9Q1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57714481,57715566,'NM_001005283','OR9Q2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',69189512,69199346,'NM_153451','ORAOV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59098446,59140193,'NM_002556','OSBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3064921,3143158,'NM_001144063','OSBPL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63509900,63522468,'NR_003089','OTUB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7669019,7684517,'NM_198185','OVCH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65311080,65321266,'NM_004561','OVOL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56862416,56894125,'NM_002559','P2RX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',72606991,72625043,'NM_176072','P2RY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',72660894,72687312,'NM_004154','P2RY6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73655349,73700347,'NM_182904','P4HA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73265680,73316427,'NM_025155','PAAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65594399,65768789,'NM_018026','PACS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47155648,47164586,'NM_001184974','PACSIN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116520209,116546971,'NM_002572','PAFAH1B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',76710707,76862756,'NM_002576','PAK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',35409951,35503752,'NM_001001991','PAMR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93501741,93554785,'NM_015368','PANX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123986662,123995461,'NM_052959','PANX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',12355601,12513479,'NM_018222','PARVA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125121397,125124953,'NM_138294','PATE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125151235,125153924,'NM_212555','PATE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125163215,125166705,'NM_001129883','PATE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125208420,125215177,'NM_001144874','PATE4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59160767,59193087,'NM_152716','PATL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',31762915,31796085,'NM_001127612','PAX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66372572,66482423,'NM_000920','PC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',82545784,82574483,'NM_015885','PCF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65140358,65161486,'NM_032223','PCNXL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116580997,116608021,'NM_004716','PCSK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',757222,767487,'NM_182612','PDDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71964831,72031152,'NM_001143839','PDE2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',14621844,14850180,'NM_000922','PDE3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',103283123,103540237,'NM_025208','PDGFD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',34894252,34974251,'NM_003477','PDHX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118561375,118566142,'NR_033122','PDZD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65990911,66001384,'NM_001098510','PELI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',45887795,45896250,'NM_057174','PEX16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60727559,60736926,'NM_001079807','PGA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60746396,60755755,'NM_001079808','PGA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60765219,60775505,'NM_014224','PGA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3786341,3804158,'NM_014489','PGAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73719008,73787150,'NM_173582','PGM2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',100405564,100505004,'NM_001202474','PGR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',45907445,46099561,'NM_001101802','PHF21A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2906078,2907226,'NM_003311','PHLDA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117983515,118033951,'NM_001144758','PHLDB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71627768,71632868,'NM_005169','PHOX2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',566482,602222,'NM_020901','PHRF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',85345861,85457787,'NM_001206946','PICALM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',789178,795250,'NM_145886','PIDD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111443732,111450105,'NM_138789','PIH1D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',17064699,17147930,'NM_002645','PIK3C2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67015814,67029419,'NM_001130848','PITPNM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93940121,93994235,'NM_152431','PIWIL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124539768,124808495,'NM_022062','PKNOX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',384216,394908,'NM_007183','PKP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63098519,63138485,'NM_007069','PLA2G16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59564323,59572092,'NM_173801','PLAC1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63775570,63793500,'NM_001184883','PLCB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',16765782,16992539,'NM_175058','PLEKHA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73034870,73051512,'NM_021200','PLEKHB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',808900,815571,'NM_020376','PNPLA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64786007,64821664,'NM_002689','POLA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73981276,74031413,'NM_006591','POLD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66875594,66877628,'NM_021173','POLD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62285586,62290763,'NM_002696','POLR2G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',829720,832529,'NM_021128','POLR2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',110728189,110755367,'NM_006235','POU2AF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',119612558,119695863,'NM_001244682','POU2F3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',69794470,69902146,'NM_177423','PPFIA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7491576,7631567,'NM_003621','PPFIBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73560015,73643396,'NM_016147','PPME1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66922227,66925952,'NM_002708','PPP1CA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63768526,63770989,'NM_138689','PPP1R14B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111113814,111142379,'NM_001177563','PPP2R1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64448718,64458526,'NM_006244','PPP2R5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67984761,68139377,'NM_018312','PPP6R3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',82213056,82289205,'NM_005040','PRCP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',129274810,129377940,'NM_020228','PRDM10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',45072139,45203479,'NM_020229','PRDM11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63842135,63845871,'NM_181652','PRDX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56911409,56914706,'NM_002728','PRG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56900817,56905199,'NM_006093','PRG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6296751,6298316,'NM_145040','PRKCDBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',75738651,75769528,'NM_004705','PRKRIR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',20365651,20487455,'NM_001145167','PRMT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60414595,60430637,'NM_014502','PRPF19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',36354110,36443330,'NM_024841','PRR5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',32808056,32836245,'NM_024081','PRRG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',86189138,86199921,'NM_007173','PRSS23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',14492087,14498567,'NM_001143937','PSMA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47396895,47404600,'NM_002804','PSMC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',226807,242984,'NM_002817','PSMD13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',440279,481387,'NM_030783','PTDSS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',13470176,13474143,'NM_000315','PTH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47543557,47551589,'NM_001143984','PTPMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18706050,18769965,'NM_032781','PTPN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66959556,66961729,'NM_005608','PTPRCAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47958685,48148970,'NM_002843','PTPRJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111602297,111609905,'NM_000317','PTS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125268589,125278326,'NM_031307','PUS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',119050308,119104645,'NM_203286','PVRL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64270436,64284763,'NM_001164716','PYGM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',32871367,32958390,'NM_001076786','QSER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65792631,65801539,'NM_030981','RAB1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',82370125,82460532,'NM_014488','RAB30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',87486062,87548283,'NM_022337','RAB38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',107304486,107339418,'NM_017516','RAB39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61421348,61441573,'NM_013401','RAB3IL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73064330,73149849,'NM_002869','RAB6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66915998,66922459,'NM_004584','RAD9A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',36546138,36557886,'NM_000448','RAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',36570068,36576405,'NM_000536','RAG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47415883,47427306,'NM_005055','RAPSN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63060848,63070506,'NM_004585','RARRES3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64250958,64269504,'NM_153819','RASGRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',12987545,12990229,'NM_001080521','RASSF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',551449,554025,'NM_003475','RASSF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66140628,66153973,'NM_001198837','RBM14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66140628,66170520,'NM_001198846','RBM14-RBM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66162663,66170520,'NM_002896','RBM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66189045,66201851,'NM_031492','RBM4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113776593,113784845,'NM_016090','RBM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7066740,7068955,'NM_014469','RBMXL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66367458,66370579,'NM_001032279','RCE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',32069052,32083848,'NM_002901','RCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63435268,63440892,'NM_173587','RCOR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',109605375,109672647,'NM_002906','RDX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65177642,65187019,'NM_021975','RELA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',72765052,72786167,'NM_152222','RELT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113815317,113826210,'NM_015523','REXO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66580864,66596064,'NM_014578','RHOD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3804783,3818789,'NM_001665','RHOG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8084172,8147166,'NM_001135109','RIC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',198529,205110,'NM_021932','RIC8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65856117,65860576,'NM_004292','RIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65241719,65244985,'NM_032193','RNASEH2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',71317415,71386291,'NR_024148','RNF121'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10489800,10519350,'NM_016422','RNF141'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74137560,74231106,'NM_001098638','RNF169'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116608661,116661614,'NM_001077239','RNF214'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118710446,118713232,'NM_032015','RNF26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',484511,497273,'NM_203388','RNH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124240514,124256580,'NM_022370','ROBO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124259323,124273041,'NM_019055','ROBO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62136788,62139168,'NM_000327','ROM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118378880,118379513,'NR_003040','RPL23AP64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8660570,8667995,'NM_000990','RPL27A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61139083,61163497,'NR_002775','RPLP0P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',799935,802876,'NM_001004','RPLP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',17052514,17055796,'NM_001017','RPS13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118391632,118394267,'NM_001028','RPS25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74788209,74794381,'NM_001005','RPS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63883200,63896263,'NM_003942','RPS6KA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66952510,66959455,'NM_003952','RPS6KB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125577198,125586797,'NM_001144827','RPUSD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',14256041,14336649,'NM_001102669','RRAS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4072499,4116682,'NM_001033','RRM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6577719,6581456,'NM_015324','RRP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77054921,77209528,'NM_016578','RSF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63205497,63283939,'NM_201430','RTN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56984914,57000960,'NM_178570','RTN4RL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18244383,18248099,'NM_199161','SAA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18223350,18226797,'NM_030754','SAA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18209477,18226797,'NM_001199744','SAA2-SAA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18090594,18094255,'NR_026576','SAA3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18209477,18214960,'NM_006512','SAA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18058465,18084214,'NM_138421','SAAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64564951,64568876,'NM_013299','SAC3D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65485735,65504183,'NM_005146','SART1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',9756789,10272330,'NM_030962','SBF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',120668597,120689329,'NM_006918','SC5DL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93094327,93094680,'NR_002569','SCARNA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61943082,61947254,'NM_003357','SCGB1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',183079,184573,'NM_145651','SCGB1C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61714285,61717585,'NM_006552','SCGB1D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61766299,61768856,'NM_006551','SCGB1D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61820329,61823112,'NM_206998','SCGB1D4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61732715,61737987,'NM_002407','SCGB2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61794205,61797204,'NM_002411','SCGB2A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117538728,117552547,'NM_004588','SCN2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123005104,123030525,'NM_001040151','SCN3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117509301,117528840,'NM_174934','SCN4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',616312,617173,'NM_021920','SCT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8997622,9069726,'NM_001170690','SCUBE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65049123,65062758,'NM_020680','SCYL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60954172,60970815,'NM_017841','SDHAF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111462780,111471728,'NM_003002','SDHD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',17766171,17991213,'NM_012139','SERGEF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57121602,57138902,'NM_000062','SERPING1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74950748,74961497,'NM_001207014','SERPINH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',94545780,94603894,'NM_144665','SESN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64288651,64302892,'NM_004630','SF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65576391,65592958,'NM_006842','SF3B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',69991608,70613456,'NM_012309','SHANK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124010894,124048987,'NM_170601','SIAE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116555148,116573371,'NM_001040455','SIDT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',395715,407397,'NM_021805','SIGIRR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',110978379,111102842,'NM_015191','SIK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116219327,116474203,'NM_025164','SIK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65164167,65174967,'NM_153253','SIPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',205029,226362,'NM_012239','SIRT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60461130,60475833,'NM_016582','SLC15A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',22316242,22357622,'NM_020346','SLC17A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',35229327,35397681,'NM_004171','SLC1A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62814005,62835822,'NM_001039752','SLC22A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64079673,64095575,'NM_018484','SLC22A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64114857,64126396,'NM_153378','SLC22A12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2880087,2903052,'NM_002555','SLC22A18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2865902,2881751,'NM_007105','SLC22A18AS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64737886,64766804,'NR_033396','SLC22A20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62603987,62668269,'NM_001136506','SLC22A24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62687871,62753700,'NM_199352','SLC22A25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62500644,62509071,'NM_004790','SLC22A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62516871,62539893,'NM_004254','SLC22A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62893836,62934288,'NM_080866','SLC22A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',780474,788269,'NM_001191061','SLC25A22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64899238,64906718,'NM_001077241','SLC25A45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65886567,65895867,'NM_001532','SLC29A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',45783216,45791143,'NM_018389','SLC35C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',107166926,107235124,'NM_017515','SLC35F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',92520497,92570743,'NM_152313','SLC36A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124438222,124465622,'NM_001145290','SLC37A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118400270,118406826,'NM_001164279','SLC37A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47386621,47394627,'NM_001128225','SLC39A13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62404919,62412931,'NM_001013251','SLC3A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57008579,57038934,'NM_001198810','SLC43A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56931002,56951629,'NM_017611','SLC43A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',26645141,26700150,'NM_178498','SLC5A12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',20577521,20633186,'NM_004211','SLC6A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74539679,74595093,'NM_007256','SLCO2B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',107083310,107087997,'NM_003063','SLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6368219,6372804,'NM_000543','SMPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57066689,57074323,'NM_001105565','SMTNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62376035,62379936,'NR_003098','SNHG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93104817,93104947,'NR_003026','SNORA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93106279,93106411,'NR_002959','SNORA18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',9406888,9407077,'NR_002962','SNORA23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93103328,93103460,'NR_003028','SNORA25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8662349,8662479,'NR_002580','SNORA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93103792,93103913,'NR_003032','SNORA32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93107923,93108050,'NR_002973','SNORA40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8663561,8663692,'NR_002977','SNORA45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',801680,801814,'NR_002585','SNORA52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2941576,2941699,'NR_002982','SNORA54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62189469,62189618,'NR_004390','SNORA57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',82430153,82430288,'NR_033347','SNORA70E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93105174,93105313,'NR_002920','SNORA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74789082,74789230,'NR_000005','SNORD15A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74793112,74793258,'NR_000025','SNORD15B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62376957,62377083,'NR_000008','SNORD22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62379612,62379679,'NR_002565','SNORD25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62379339,62379414,'NR_002564','SNORD26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62379059,62379131,'NR_002563','SNORD27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62378668,62378743,'NR_002562','SNORD28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62377951,62378016,'NR_002559','SNORD29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62377710,62377780,'NR_002561','SNORD30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62377373,62377441,'NR_002560','SNORD31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93106041,93106114,'NR_003033','SNORD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93104316,93104387,'NR_003036','SNORD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46740514,46740625,'NR_003056','SNORD67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10779589,10779731,'NR_004403','SNORD97'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64551455,64564620,'NM_013306','SNX15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',130250975,130291592,'NM_014758','SNX19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65357985,65377748,'NM_152760','SNX32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',120828121,121009681,'NM_003105','SORL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',15944570,16380989,'NM_017508','SOX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124048949,124069897,'NM_017425','SPA17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133215726,133220602,'NM_174927','SPATA19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74337939,74367724,'NM_014752','SPCS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64694282,64697264,'NM_001008778','SPDYC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',47332984,47356703,'NM_001080547','SPI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',13940759,14246255,'NM_006108','SPON1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',55407348,55415860,'NM_032681','SPRYD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66209295,66245446,'NM_006946','SPTBN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18584523,18612596,'NM_194285','SPTY2D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125638023,125644087,'NM_003139','SRPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',94439703,94444036,'NM_032102','SRSF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66827494,66836654,'NM_017857','SSH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56850034,56859927,'NM_003146','SSRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65094518,65095815,'NM_006396','SSSCA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',129534891,129585467,'NM_021978','ST14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125731305,125789743,'NM_006278','ST3GAL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8671474,8889074,'NM_005418','ST5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',72143421,72182398,'NM_006645','STARD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3833508,4071016,'NM_003156','STIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63710162,63728596,'NM_006819','STIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8369993,8572079,'NM_030906','STK33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124967948,124996490,'NM_152713','STT3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59279107,59329931,'NM_004177','STX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62330907,62356139,'NM_001244666','STX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67689761,67737360,'NM_016028','SUV420H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',22800173,22807958,'NM_148893','SVIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',9642203,9731083,'NM_015055','SWAP70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66546765,66574910,'NM_001177880','SYT12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',45218428,45264460,'NM_020826','SYT13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',61039360,61104874,'NM_004200','SYT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1812249,1815326,'NM_138567','SYT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',7229756,7446852,'NM_175733','SYT9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',85082912,85107844,'NM_206929','SYTL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64651326,64658579,'NM_172230','SYVN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6588623,6590051,'NM_006284','TAF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93108745,93114351,'NM_024116','TAF1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62295350,62311389,'NM_006473','TAF6L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116575249,116580718,'NM_003186','TAGLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',737431,755024,'NM_006755','TALDO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66927987,66934136,'NM_198517','TBC1D10C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',120400022,120465564,'NM_152715','TBCEL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123997951,124011032,'NR_016021','TBRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67155349,67163607,'NM_005995','TBX10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67563037,67574942,'NM_006019','TCIRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',59376856,59390617,'NM_001062','TCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',33017538,33051685,'NM_018393','TCP11L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',12652544,12922860,'NM_021961','TEAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',120478584,120566725,'NM_005422','TECTA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111543304,111548489,'NM_031275','TEX12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2141734,2149611,'NM_000360','TH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77452554,77457051,'NM_003251','THRSP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118793864,118799456,'NM_006288','THY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133623382,133628470,'NM_001037304','THYN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64878857,64881658,'NM_145719','TIGD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57052511,57054808,'NM_012456','TIMM10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',111460745,111462732,'NR_028383','TIMM8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',125658191,125668281,'NM_148910','TIRAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64635916,64640283,'NM_003273','TM7SF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60437946,60447491,'NM_024092','TMEM109'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',101772265,101828985,'NM_052932','TMEM123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',85036610,85045245,'NM_001244735','TMEM126A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',85017269,85025231,'NR_036465','TMEM126B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60448488,60461207,'NM_017870','TMEM132A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',100368020,100369876,'NM_032021','TMEM133'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66988394,66993307,'NM_001078650','TMEM134'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',86426533,86717524,'NR_033149','TMEM135'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',119701047,119709598,'NM_174926','TMEM136'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60886048,60893551,'NM_016464','TMEM138'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65815948,65820711,'NM_153266','TMEM151A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62311449,62314448,'NM_199337','TMEM179B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60916407,60922911,'NM_001173990','TMEM216'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124471608,124478415,'NM_001080546','TMEM218'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62314362,62316062,'NM_001080501','TMEM223'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123258842,123261550,'NM_001013743','TMEM225'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117907012,117922523,'NM_001144038','TMEM25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',9258777,9292891,'NR_028491','TMEM41B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',129190950,129235108,'NM_138788','TMEM45B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',685615,694129,'NM_001042463','TMEM80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18676926,18682908,'NM_153347','TMEM86A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8925415,8942565,'NM_020644','TMEM9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117283719,117305378,'NM_001206790','TMPRSS13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117452936,117495766,'NM_019894','TMPRSS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113063477,113082278,'NM_030770','TMPRSS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57236570,57265021,'NM_001144012','TMX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57236570,57343228,'NR_037646','TMX2-CTNND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',56823678,56848989,'NM_033396','TNKS1BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1818007,1819486,'NM_001145841','TNNI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1897374,1916512,'NM_001042782','TNNT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',1252173,1287468,'NM_019009','TOLLIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',128310479,128318504,'NM_022112','TP53AIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',44910474,44929184,'NM_006034','TP53I11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',68572925,68614648,'NM_139075','TPCN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',17998659,18018911,'NM_004179','TPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6590572,6597268,'NM_000391','TPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',36461892,36488439,'NM_004620','TRAF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118394450,118399594,'NM_016146','TRAPPC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118034151,118055591,'NM_007180','TREH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4362702,4371502,'NM_003141','TRIM21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5667392,5688669,'NM_001199573','TRIM22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',119487203,119514073,'NM_012101','TRIM29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6426418,6451781,'NM_006458','TRIM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5602782,5622201,'NM_021616','TRIM34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',35640928,35787506,'NM_017583','TRIM44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',54786233,54795171,'NM_024114','TRIM48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89170470,89181391,'NM_020358','TRIM49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89284226,89293224,'NM_001105522','TRIM49L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89403921,89414841,'NM_001195234','TRIM49L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5641000,5662915,'NM_033034','TRIM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89366358,89375324,'NR_028346','TRIM53P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5573906,5590764,'NM_058166','TRIM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5574440,5622201,'NM_001003819','TRIM6-TRIM34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89341319,89346888,'NM_001136486','TRIM64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89243253,89248833,'NM_001164397','TRIM64B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',49031841,49037240,'NM_001206631','TRIM64C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8590159,8636959,'NM_014818','TRIM66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',4576477,4586013,'NM_018073','TRIM68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89083114,89090688,'NM_001146162','TRIM77P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5620987,5644186,'NR_002777','TRIM78P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63840740,63841609,'NM_016404','TRMT112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3604289,3615365,'NR_002720','TRPC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',100827504,100959869,'NM_004621','TRPC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2382321,2400851,'NM_014555','TRPM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63747846,63750302,'NM_031472','TRPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18458433,18505079,'NM_006292','TSG101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65469690,65484010,'NM_152762','TSGA10IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',76171932,76186846,'NM_015516','TSKU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',44742551,44910553,'NM_130783','TSPAN18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2279818,2296006,'NM_139022','TSPAN32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',832823,857116,'NM_003271','TSPAN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',2380098,2381682,'NM_005706','TSSC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',112690460,112742324,'NM_017868','TTC12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',43337010,43473059,'NM_018259','TTC17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117903419,117906950,'NM_001080441','TTC36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62252527,62262684,'NM_173810','TTC9C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',8059484,8084230,'NM_177972','TUB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62099092,62115685,'NM_022830','TUT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',88550687,88668575,'NM_000372','TYR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',122031607,122190397,'NM_032873','UBASH3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57075703,57092379,'NM_198183','UBE2L6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',117735505,117775136,'NM_001204077','UBE4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5485105,5487729,'NM_017481','UBQLN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',5492198,5494532,'NM_145053','UBQLNL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',89458765,89459947,'NM_001143975','UBTFL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62200547,62203103,'NM_015853','UBXN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73363363,73371537,'NM_003355','UCP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',73388973,73397930,'NM_003356','UCP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',18509819,18566857,'NM_018314','UEVLD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',67515150,67528169,'NM_030930','UNC93B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118332217,118334479,'NM_006760','UPK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',17472017,17522539,'NM_005709','USH1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118731134,118757646,'NM_004205','USP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113173806,113251466,'NM_020886','USP28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',77577505,77603405,'NM_020798','USP35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',11819545,11937448,'NM_017944','USP47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',75203859,75532930,'NM_003369','UVRAG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',63758631,63763312,'NM_003377','VEGFB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',118443702,118457898,'NM_021729','VPS11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',133599770,133622896,'NM_052875','VPS26B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60654303,60685492,'NM_017966','VPS37C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',124122579,124127319,'NM_014312','VSIG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',93193382,93223316,'NM_001144871','VSTM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123491320,123522828,'NM_001130142','VWA5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60782333,60819364,'NM_152718','VWCE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62356958,62364204,'NM_018093','WDR74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',9551803,9567889,'NM_003390','WEE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',75575017,75595222,'NM_004626','WNT11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',32365897,32413657,'NM_024426','WT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',32413860,32418196,'NR_023920','WT1-AS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',74229602,74337880,'NM_182969','XRRA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',101486401,101609364,'NM_006106','YAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',65808626,65813214,'NM_020470','YIF1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57169135,57173993,'NM_145008','YPEL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',10830826,10836196,'NM_021211','ZBED5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113435640,113626607,'NM_006006','ZBTB16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',62275010,62278232,'NM_024784','ZBTB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',129601783,129689817,'NM_014155','ZBTB44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',109469296,109547776,'NM_033390','ZC3H12C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',19095267,19154543,'NM_019028','ZDHHC13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',66063310,66070247,'NM_207340','ZDHHC24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',57192049,57225235,'NM_015457','ZDHHC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58103162,58145599,'NM_053023','ZFP91'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',58103162,58149781,'NR_024091','ZFP91-CNTF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64608269,64612450,'NM_006782','ZFPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',9439087,9506647,'NM_003442','ZNF143'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',3335732,3357028,'NM_001130520','ZNF195'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',123100206,123117573,'NM_003455','ZNF202'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6977124,6998162,'NM_013249','ZNF214'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',6904229,6935854,'NM_013250','ZNF215'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',116154485,116163949,'NM_003904','ZNF259'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',46679219,46684042,'NM_001184751','ZNF408'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',64640450,64641746,'NM_014205','ZNHIT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',60391590,60399740,'NM_207341','ZP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr11',113109114,113149695,'NM_004724','ZW10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9111570,9159825,'NM_000014','A2M'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8866416,8920644,'NM_144670','A2ML1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9272395,9278070,'NR_040112','A2MP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51987506,52001679,'NM_001173466','AAAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',124115877,124193824,'NM_023928','AACS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121971450,122017009,'NM_001243014','ABCB9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',21841590,21980895,'NM_020297','ABCC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',38231288,38300110,'NM_005164','ABCD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108061584,108190413,'NM_001093','ACACB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',110608239,110679294,'NM_025247','ACAD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119647953,119662194,'NM_000017','ACADS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48737753,48763661,'NM_001095','ACCN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6617502,6626841,'NM_032489','ACRBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7348194,7372236,'NM_001080454','ACSM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',79995939,80173713,'NM_024560','ACSS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',99118704,99142332,'NM_022496','ACTR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50633430,50677130,'NM_020327','ACVR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50587468,50603412,'NM_000020','ACVRL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',110821249,110824089,'NR_036636','ADAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',42034278,42231991,'NM_025003','ADAMTS20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47446247,47469087,'NM_020983','ADCY6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',1670507,1768106,'NM_024551','ADIPOR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',19483874,19566440,'NM_001114176','AEBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56404342,56418296,'NM_001122772','AGAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8646028,8656709,'NM_020661','AICDA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',4594936,4624604,'NM_006422','AKAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',103937691,104002471,'NR_027752','ALDH1L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',110689073,110732172,'NM_000690','ALDH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',34066482,34072503,'NM_032834','ALG10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',36996823,37009795,'NM_001013620','ALG10B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108010375,108015676,'NM_001145375','ALKBH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',84198166,84219692,'NM_006982','ALX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',94861201,94886501,'NM_152435','AMDHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52103905,52111585,'NM_020547','AMHR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',45755756,45760001,'NM_181847','AMIGO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',31715337,31773375,'NM_001113402','AMN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120230430,120274648,'NM_016237','ANAPC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109297654,109325918,'NM_001137664','ANAPC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131812326,131848524,'NM_015114','ANKLE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108921617,108961618,'NM_033121','ANKRD13A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50568059,50571772,'NM_182608','ANKRD33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54917857,54938410,'NM_173595','ANKRD52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',97652699,98902563,'NM_152788','ANKS1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',5542077,5925659,'NM_020373','ANO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',99712504,100046550,'NM_178826','ANO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',43972732,44112401,'NM_001142678','ANO6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47152714,47153110,'NM_012404','ANP32D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',97563208,97653342,'NM_013229','APAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7693262,7709769,'NM_001644','APOBEC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55040621,55042850,'NM_001638','APOF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12770117,12835666,'NM_001130415','APOLD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',104091204,104154138,'NM_018171','APPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48630790,48638931,'NM_000486','AQP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48641545,48645728,'NM_001651','AQP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48652886,48657189,'NM_001652','AQP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47616258,47637519,'NM_001659','ARF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56152304,56157995,'NM_001080156','ARHGAP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',14986216,15005829,'NM_001175','ARHGDIB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56291484,56297293,'NM_182947','ARHGEF25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',44409886,44588086,'NM_152641','ARID2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',100311033,100325703,'NM_001177','ARL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122030832,122033413,'NM_016638','ARL6IP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',27377254,27464733,'NM_020183','ARNTL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109357088,109372541,'NM_005719','ARPC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',14873511,14887680,'NM_021071','ART4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46827838,46837644,'NM_024095','ASB8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',101875581,101878424,'NM_004316','ASCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',106692291,106694551,'NM_203436','ASCL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49444055,49501210,'NM_005171','ATF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52192109,52306466,'NM_001130060','ATF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',14409877,14542964,'NM_018179','ATF7IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6907740,6921745,'NM_001940','ATN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109203414,109273280,'NM_001681','ATP2A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',88505956,88573975,'NM_001682','ATP2B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55318225,55326119,'NM_001686','ATP5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52345210,52356779,'NM_001002031','ATP5G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122762817,122812254,'NM_012463','ATP6V0A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',110374400,110521863,'NM_002973','ATXN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',73217817,73221499,'NM_001136262','ATXN7L3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56477426,56496119,'NM_006576','AVIL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',61826482,61832857,'NM_000706','AVPR1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121254180,121258037,'NM_030765','B3GNT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56305817,56313252,'NM_001478','B4GALNT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',439803,541319,'NM_173593','B4GALNT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55275646,55316430,'NM_013449','BAZ2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',75262396,75266353,'NM_024685','BBS10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',24854224,24946589,'NM_001178094','BCAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48516092,48523179,'NM_181708','BCDIN3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12115144,12143894,'NM_138723','BCL2L14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120944243,120984333,'NM_020993','BCL7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',68333655,68379463,'NM_032735','BEST3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',26164225,26169270,'NM_030762','BHLHE41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',32151451,32422408,'NM_001714','BICD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49961088,50004205,'NM_016293','BIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54396084,54399758,'NM_001487','BLOC1S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54396084,54404793,'NR_037658','BLOC1S1-RDH5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',110564332,110608173,'NM_006768','BRAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',124044146,124076302,'NM_080626','BRI3BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',106236326,106577549,'NM_001018072','BTBD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',91058184,91063804,'NM_001731','BTG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51979736,51987232,'NM_021640','C12orf10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',26949378,26982521,'NM_018164','C12orf11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',89870122,89873084,'NM_152638','C12orf12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',105873673,105891943,'NM_152261','C12orf23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109390614,109412575,'NM_013300','C12orf24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',81276406,81397147,'NM_032230','C12orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',86953398,86968068,'NM_001009894','C12orf29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',2856625,2868887,'NR_027364','C12orf32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9099451,9108933,'NR_034140','C12orf33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108636569,108692695,'NM_032829','C12orf34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',32003619,32037308,'NM_018169','C12orf35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',13414871,13420946,'NR_036555','C12orf36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',89835930,89866577,'NR_038868','C12orf37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',21570522,21575477,'NM_030572','C12orf39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',4467161,4517898,'NM_020374','C12orf4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',38306238,38401985,'NM_001031748','C12orf40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47333261,47362302,'NM_017822','C12orf41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',102219862,102413879,'NM_001099336','C12orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119925230,119938683,'NM_022895','C12orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50750024,50757546,'NM_021934','C12orf44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',103904227,103912635,'NM_152318','C12orf45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',110761955,110765089,'NR_015404','C12orf47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',101038085,101115428,'NM_017915','C12orf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',115637978,115660226,'NM_024738','C12orf49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',4300619,4339451,'NM_020375','C12orf5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',86897946,86947307,'NM_152589','C12orf50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',111082374,111304279,'NM_001109662','C12orf51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',112107937,112114502,'NM_032848','C12orf52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6673217,6680270,'NM_153685','C12orf53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47162552,47176564,'NM_152319','C12orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',62947029,63070612,'NM_001099676','C12orf56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6923463,6925426,'NM_138425','C12orf57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10222823,10235670,'NM_153022','C12orf59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',14847772,14868058,'NM_175874','C12orf60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',61281797,61283481,'NM_175895','C12orf61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48792166,48800501,'NM_032901','C12orf62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122284243,122308459,'NM_001143905','C12orf65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',62872685,62902343,'NM_152440','C12orf66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46863632,46865976,'NM_001013635','C12orf68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',14848850,14858383,'NM_001013698','C12orf69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',27511009,27546385,'NM_001145010','C12orf70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',27125256,27126722,'NM_001080406','C12orf71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',102868110,102875123,'NM_001135570','C12orf73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',91620749,91626456,'NM_001037671','C12orf74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',104248543,104289426,'NM_001145199','C12orf75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108963365,108989883,'NM_207435','C12orf76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',25037631,25041640,'NM_001101339','C12orf77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48012466,48017238,'NM_001008223','C1QL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7057769,7136184,'NM_001733','C1R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7138286,7153145,'NM_016546','C1RL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7038240,7048596,'NM_001734','C1S'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8102185,8110222,'NM_004054','C3AR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119572753,119589510,'NM_031205','CABP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',2032676,2677376,'NM_001129832','CACNA1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',1771383,1898131,'NM_172364','CACNA2D4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47498520,47508993,'NM_000725','CACNB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52391169,52407574,'NM_001143682','CALCOCO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120159877,120220494,'NM_006549','CAMKK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',65949327,65994655,'NM_018448','CAND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',30753752,30798715,'NM_032156','CAPRIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',73956025,74010103,'NM_032606','CAPS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',18782311,18783389,'NM_033328','CAPZA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',25152489,25239361,'NM_001204102','CASC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52910996,52960182,'NM_012117','CBX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',94784956,94860559,'NM_182496','CCDC38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',93226186,93377895,'NM_016122','CCDC41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',112072045,112081464,'NM_001144872','CCDC42B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',100930847,100980029,'NM_016053','CCDC53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',81270213,81276715,'NR_033192','CCDC59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',118256899,118463235,'NM_178499','CCDC60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121825008,121877880,'NM_201435','CCDC62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109769193,109829721,'NM_152591','CCDC63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',118912030,119016682,'NM_207311','CCDC64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47584159,47601626,'NM_033124','CCDC65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',368776,422067,'NM_001130147','CCDC77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',28301399,28594366,'NM_018318','CCDC91'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122986907,123023116,'NM_025140','CCDC92'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',4253162,4284783,'NM_001759','CCND2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47373018,47397048,'NM_001240','CCNT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',68265474,68281624,'NM_006431','CCT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7514678,7547681,'NM_004244','CD163'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7398823,7488016,'NM_174941','CD163L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6424311,6431145,'NM_001242','CD27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6768898,6800237,'NM_001195017','CD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54405496,54409177,'NM_001780','CD63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9796348,9804764,'NM_001781','CD69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6179742,6217698,'NM_001769','CD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6828232,6830717,'NM_031299','CDCA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',95196169,95318497,'NM_001170464','CDK17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54646822,54652835,'NM_052827','CDK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122311492,122322640,'NM_004642','CDK2AP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56427776,56432497,'NM_000075','CDK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12761568,12766572,'NM_004064','CDKN1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50008493,50026730,'NM_001971','CELA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',86966920,87060124,'NM_025114','CEP290'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48809847,48847364,'NM_147190','CERS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6549508,6586812,'NM_001273','CHD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131927010,131974277,'NM_001161347','CHFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',100615547,100646977,'NM_020244','CHPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',103374821,103679922,'NM_001173982','CHST11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',118607977,118799478,'NM_007174','CIT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',105155788,105165843,'NM_006825','CKAP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10015274,10029461,'NM_201623','CLEC12A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10054497,10061815,'NM_205852','CLEC12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10114346,10142872,'NM_016511','CLEC1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10036928,10043166,'NM_016509','CLEC1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9957092,9976247,'NM_001130711','CLEC2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9896234,9913725,'NM_005127','CLEC2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9713597,9743418,'NM_001197319','CLEC2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8167494,8182470,'NM_016184','CLEC4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7773277,7793336,'NM_130441','CLEC4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8557402,8566227,'NM_080387','CLEC4D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8577167,8584825,'NM_014358','CLEC4E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8499857,8522193,'NM_001007033','CLEC6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10160646,10174135,'NM_022570','CLEC7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10074542,10109832,'NM_207345','CLEC9A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9766357,9777127,'NM_172004','CLECL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121321933,121473069,'NM_002956','CLIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',91339437,91348909,'NR_027933','CLLU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',91338000,91346055,'NM_001025232','CLLU1OS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7174233,7202797,'NM_014718','CLSTN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',22090425,22109869,'NM_018686','CMAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107205950,107257224,'NM_004072','CMKLR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',68923760,69035040,'NR_037615','CNOT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54994524,54996395,'NM_001190991','CNPY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',39372624,39750361,'NM_175038','CNTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46653014,46684552,'NM_001844','COL2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6703505,6711302,'NM_001164095','COPS7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53005177,53031900,'NM_016057','COPZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54947333,54951017,'NM_001099337','COQ10A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119425464,119451347,'NM_032314','COQ5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107563015,107649424,'NM_014325','CORO1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119360286,119362912,'NM_004373','COX6A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',67531222,67613246,'NM_198320','CPM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',37332268,37585687,'NM_153634','CPNE8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',67919583,67954405,'NM_007007','CPSF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',92595281,92768662,'NM_003805','CRADD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12656097,12689308,'NM_001310','CREBL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',105909271,106011728,'NM_004075','CRY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54951749,54980442,'NM_004077','CS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51837713,51860697,'NM_015989','CSAD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10742942,10767220,'NM_001145426','CSDA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49741254,49763704,'NR_045072','CSRNP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',75776626,75796930,'NM_001321','CSRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56499976,56527014,'NM_005730','CTDSP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109956210,110272741,'NM_015267','CUX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56442383,56447243,'NM_000785','CYP27B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107797985,107818839,'NM_001917','DAO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49918774,49923984,'NM_001136266','DAZAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',43694805,43731149,'NM_001004329','DBX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53324641,53328416,'NM_053283','DCD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',90063165,90096460,'NM_133507','DCN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',1925474,1983938,'NM_152640','DCP1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56210360,56227245,'NM_006400','DCTN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56196637,56200567,'NM_001195056','DDIT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47675199,47679355,'NM_015086','DDN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',31118045,31148992,'NM_152438','DDX11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9461553,9492035,'NR_033399','DDX12P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47509805,47532224,'NM_004818','DDX23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12857546,12874182,'NM_201224','DDX47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131187092,131194833,'NM_175066','DDX51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',112079360,112107667,'NM_001111322','DDX54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122652624,122671435,'NM_020936','DDX55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',31426423,31635219,'NM_144973','DENND5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121803323,121821906,'NM_003677','DENR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',99170172,99184988,'NM_152317','DEPDC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',15955452,16081582,'NM_015954','DERA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54612078,54634074,'NM_201444','DGKA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47769472,47774869,'NM_021044','DHH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',123997322,124039620,'NM_032656','DHX37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121258161,121278021,'NM_138929','DIABLO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49185034,49428717,'NM_173602','DIP2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122812994,122986220,'NM_207437','DNAH10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54501010,54509687,'NM_032364','DNAJC14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48027307,48031952,'NM_024902','DNAJC22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',32723403,32789851,'NM_012063','DNM1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7755355,7761419,'NM_199286','DPPA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',62238959,62348621,'NM_173812','DPY19L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',100795235,100841532,'NM_018370','DRAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6864106,6865211,'NR_033796','DSTNP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',111980044,112020216,'NM_004416','DTX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56284870,56289850,'NM_178502','DTX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12517482,12606715,'NM_030640','DUSP16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',88265967,88270427,'NM_022652','DUSP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119418241,119420681,'NM_003746','DYNLL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',66328778,66342711,'NM_006482','DYRK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',4569504,4593302,'NM_003845','DYRK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',75939156,75983491,'NM_203394','E2F7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',91690415,91847238,'NM_003566','EEA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',3627369,3732627,'NM_032680','EFCAB4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',103221639,103223112,'NM_001008394','EID3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122671522,122684276,'NM_001414','EIF2B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51686328,51722260,'NM_001417','EIF4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',95112337,95185737,'NM_005230','ELK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6950204,6955426,'NM_006331','EMG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',13240868,13260975,'NM_001423','EMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46389784,46405622,'NM_001172439','ENDOU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6893874,6903120,'NM_001975','ENO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131000417,131130964,'NM_015409','EP400'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131134780,131176838,'NR_003290','EP400NL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',15664341,15833777,'NM_004447','EPS8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',89881586,89922934,'NM_004950','EPYC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54760075,54783558,'NM_001982','ERBB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',970664,1475360,'NM_178040','ERC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',29384845,29425410,'NM_016570','ERGIC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',14958242,14982730,'NM_152321','ERP27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',110935534,110945407,'NM_006817','ERP29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51948349,51973694,'NM_012291','ESPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54808252,54824727,'NM_001184796','ESYT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',22669342,22734875,'NM_018638','ETNK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11694054,11939592,'NM_001987','ETV6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48546945,48584027,'NM_012306','FAIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',123339662,123366523,'NM_181709','FAM101A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',110282837,110291308,'NM_001177997','FAM109A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',45896318,45916710,'NM_138371','FAM113B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',18206,19673,'NR_026823','FAM138D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49007361,49076672,'NM_001145475','FAM186A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48267554,48285700,'NM_032130','FAM186B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',60388307,60872818,'NM_178539','FAM19A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',31324786,31370388,'NM_021238','FAM60A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8224071,8244863,'NR_026788','FAM66C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',98565658,98568023,'NM_153364','FAM71C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8274911,8286809,'NR_024254','FAM86FP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8265122,8271481,'NM_018088','FAM90A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',29267864,29378273,'NM_018099','FAR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131577229,131671846,'NM_001142641','FBRSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',1545419,1573592,'NM_152441','FBXL14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',116065967,116112683,'NM_015002','FBXO21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',115833143,115953336,'NM_012174','FBXW8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',32546307,32690251,'NM_139241','FGD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',93994655,94135371,'NM_018351','FGD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',4347653,4359155,'NM_020638','FGF23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',4413568,4425041,'NM_020996','FGF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',26982571,27004946,'NM_001171888','FGFR1OP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107433180,107437510,'NM_007076','FICD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50497942,50511968,'NM_001013690','FIGNL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47602008,47604931,'NM_001143781','FKBP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',2774368,2784848,'NM_002014','FKBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52738304,52802285,'NR_026655','FLJ12825'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',31368516,31370146,'NR_026806','FLJ13224'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',129202090,129212176,'NR_033834','FLJ31485'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',126932114,126949137,'NR_033987','FLJ37505'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',63563820,63657569,'NR_033988','FLJ41278'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48317990,48387464,'NM_198900','FMNL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8076625,8099385,'NM_018416','FOXJ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',2837107,2856582,'NM_001243088','FOXM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108200165,108231408,'NM_213596','FOXN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',68150395,68259829,'NM_006654','FRS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',129212956,129216238,'NM_007197','FZD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10256755,10266991,'NM_031412','GABARAPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',88437320,88442714,'NM_003774','GALNT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50032099,50071467,'NM_007210','GALNT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',4700012,4752153,'NM_017417','GALNT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131246869,131415978,'NM_001122636','GALNT9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6513917,6517797,'NM_002046','GAPDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',99491619,99542816,'NM_174942','GAS2L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119368623,119385939,'NR_033684','GATC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119049396,119116896,'NM_006836','GCN1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54423330,54432932,'NM_005811','GDF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7733647,7739627,'NM_020634','GDF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108851989,108918577,'NM_001135214','GIT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56140200,56152314,'NM_005269','GLI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',74160779,74181983,'NM_006851','GLIPR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',74014729,74050436,'NM_152779','GLIPR1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',74071155,74104087,'NM_152436','GLIPR1L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55151002,55168448,'NM_013267','GLS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',127904033,128035462,'NM_144669','GLT1D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',102906894,102968045,'NM_031302','GLT8D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108773130,108802676,'NM_016433','GLTP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53288237,53290513,'NR_003039','GLYCAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6819635,6826818,'NM_002075','GNB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',102761656,102848119,'NR_027249','GNN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',100663405,100748776,'NM_024312','GNPTAB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',63393488,63439493,'NM_002076','GNS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',99082958,99091252,'NR_024261','GOLGA2P5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131855567,131915361,'NM_005895','GOLGA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',21545965,21562604,'NM_016072','GOLT1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48784067,48791362,'NM_005276','GPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109374673,109390909,'NM_001164372','GPN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',130004404,130191961,'NM_198827','GPR133'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6801223,6806844,'NM_014449','GPR162'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55674621,55676736,'NM_007264','GPR182'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12705261,12740388,'NM_006143','GPR19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53042495,53044537,'NM_020370','GPR84'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12935222,12957867,'NM_003979','GPRC5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12984975,12994585,'NM_018654','GPRC5D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50687014,50695938,'NM_181711','GRASP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',13605676,14024289,'NM_000834','GRIN2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',65027477,65359192,'NM_001178074','GRIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',13127737,13140007,'NM_001206843','GSG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122684333,122711287,'NM_001516','GTF2H3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53136002,53153653,'NM_144594','GTSF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',14656834,14740786,'NM_004963','GUCY2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',40761914,40824940,'NM_173601','GXYLT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',21580389,21649048,'NM_021957','GYS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47009029,47010329,'NM_181788','H1FNT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',14818536,14822203,'NR_027716','H2AFJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',31835385,31836442,'NM_001013699','H3F3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',94891272,94914202,'NM_002108','HAL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121778105,121781082,'NM_032554','HCAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121751792,121753857,'NM_177551','HCAR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121765255,121767392,'NM_006018','HCAR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',102982365,103024433,'NM_013320','HCFC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46462773,46500030,'NM_015401','HDAC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',13019065,13044510,'NM_015987','HEBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',64982622,65018225,'NM_033647','HELB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49634048,49650556,'NM_001109619','HIGD1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121885991,121913460,'NM_003959','HIP1R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',14814920,14815332,'NM_175054','HIST4H4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',64504506,64595574,'NM_003484','HMGA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119900931,119924697,'NM_000545','HNF1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119892023,119894478,'NR_024345','HNF1A-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52960754,52965297,'NM_002136','HNRNPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52960799,52964930,'NR_002944','HNRNPA1P10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52642362,52648782,'NR_003716','HOTAIR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52665212,52670329,'NM_017409','HOXC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52653176,52656470,'NM_014212','HOXC11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52634980,52636617,'NM_173860','HOXC12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52618842,52626595,'NM_017410','HOXC13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52733927,52736081,'NM_153633','HOXC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52696908,52715411,'NR_003084','HOXC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52696908,52710874,'NM_153693','HOXC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52689156,52692812,'NM_022658','HOXC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52680143,52683387,'NM_006897','HOXC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120761815,120781152,'NM_002150','HPD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',115783409,115803615,'NM_003806','HRK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55443374,55467841,'NM_003725','HSD17B6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',102848318,102865833,'NM_003299','HSP90B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',118100977,118116934,'NM_014365','HSPB8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',13044642,13049031,'NR_002774','HTR7P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109570873,109612000,'NM_001040107','HVCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',21417068,21424181,'NM_000415','IAPP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6518954,6535510,'NR_036467','IFFO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',25544052,25597484,'NM_001145729','IFLTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',66834816,66839788,'NM_000619','IFNG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109046522,109090633,'NM_031473','IFT81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',101313774,101396559,'NM_001111284','IGF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51777702,51782395,'NM_002178','IGFBP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',97531312,97562720,'NM_201613','IKBIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54700955,54718486,'NM_022465','IKZF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',66928291,66933548,'NM_020525','IL22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55018929,55020461,'NM_016584','IL23A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',66881395,66905838,'NM_018402','IL26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121222529,121224699,'NM_001014336','IL31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6629964,6642569,'NM_001127586','ING4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56114809,56130876,'NM_005538','INHBC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56135362,56138058,'NM_031479','INHBE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',30673181,30740196,'NM_006390','IPO8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',112117628,112143263,'NM_138451','IQCD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56802,150755,'NM_015232','IQSEC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',64869244,64934661,'NM_001142523','IRAK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',42439013,42469613,'NM_001145256','IRAK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107480423,107487289,'NM_014301','ISCU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',2792047,2804498,'NM_018463','ITFG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53075311,53099317,'NM_002205','ITGA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54364620,54387953,'NM_002206','ITGA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51871373,51887267,'NM_000889','ITGB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',26379551,26877398,'NM_002223','ITPR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',4889333,4897683,'NM_000217','KCNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',5023345,5026210,'NM_002234','KCNA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',4788602,4830539,'NM_002235','KCNA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',73720162,73889778,'NM_153748','KCNC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48219206,48238344,'NM_012284','KCNH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',21809155,21819014,'NM_004982','KCNJ8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',69046328,69114339,'NM_014505','KCNMB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108370842,108399538,'NM_031954','KCTD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120351281,120503303,'NM_032590','KDM2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',259483,368881,'NM_001042603','KDM5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',89968401,89976262,'NM_007035','KERA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',22492784,22588719,'NM_014802','KIAA0528'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53630195,53661889,'NM_001098815','KIAA0748'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',104025621,104087036,'NM_015275','KIAA1033'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',13088581,13127650,'NM_020853','KIAA1467'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',37973296,38123459,'NM_001173464','KIF21A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56230113,56264821,'NM_004984','KIF5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',87410700,87498381,'NM_003994','KITLG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',27824453,27847240,'NM_020782','KLHDC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10632343,10643701,'NR_028045','KLRAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9639136,9651764,'NM_002258','KLRB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10489903,10497246,'NM_007328','KLRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10474470,10479859,'NM_002260','KLRC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10459449,10464461,'NM_007333','KLRC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10451249,10453623,'NM_013431','KLRC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10416218,10454012,'NM_001199805','KLRC4-KLRK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10351683,10361117,'NM_007334','KLRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9871343,9888870,'NM_016523','KLRF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9925354,9939699,'NM_001190765','KLRF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9033487,9054607,'NM_005810','KLRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10416218,10433920,'NM_007360','KLRK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121577761,121676900,'NM_014708','KNTC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',25249446,25295121,'NM_033360','KRAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',74177685,74191685,'NM_007043','KRR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51354786,51360458,'NM_006121','KRT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51628921,51632952,'NM_199187','KRT18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',93752360,93752935,'NR_036685','KRT19P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51324608,51332226,'NM_000423','KRT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51469735,51476159,'NM_057088','KRT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51486593,51494167,'NM_002272','KRT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51194625,51200510,'NM_000424','KRT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51167224,51173448,'NM_005554','KRT6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51126701,51132177,'NM_005555','KRT6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51148566,51153836,'NM_173086','KRT6C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50913220,50928976,'NM_005556','KRT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51223959,51233198,'NM_033448','KRT71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51265639,51281589,'NM_001146226','KRT72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51287620,51298610,'NM_175068','KRT73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51245869,51253876,'NM_175053','KRT74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51104120,51114377,'NM_004693','KRT75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51448205,51457396,'NM_015848','KRT76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51369676,51383514,'NM_175078','KRT77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51519012,51529045,'NM_173352','KRT78'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51501497,51514344,'NM_175834','KRT79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51577237,51585135,'NM_002273','KRT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50849046,50872051,'NM_001081492','KRT80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50965963,50971566,'NM_002281','KRT81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51074001,51086443,'NM_033033','KRT82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50994351,51001449,'NM_002282','KRT83'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51057862,51065684,'NM_033045','KRT84'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51040056,51047576,'NM_002283','KRT85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50981915,50989214,'NM_002284','KRT86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',116375199,116890411,'NM_173598','KSR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53310889,53314930,'NM_033277','LACRT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6751930,6757882,'NM_002286','LAG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47247733,47250096,'NM_002289','LALBA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49080858,49160055,'NM_052879','LARP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',21679541,21702056,'NM_002300','LDHB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',63849617,63928408,'NM_001167614','LEMD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6807832,6819279,'NM_014262','LEPREL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49728348,49740474,'NM_001243689','LETMD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',70120079,70264888,'NM_003667','LGR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',112385076,112394260,'NM_022363','LHX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48855829,48963620,'NM_016357','LIMA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',79715301,79855825,'NM_004664','LIN7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',115455609,115457709,'NR_027345','LINC00173'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',24611164,24628369,'NR_029451','LINC00477'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',101727190,101742307,'NR_033855','LINC00485'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',64803115,64810800,'NM_032338','LLPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47777189,47790947,'NM_018113','LMBR1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',16592572,16649580,'NM_001243611','LMO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',97430881,97434135,'NR_027157','LOC100128191'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',125492979,125523284,'NR_015398','LOC100128554'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11215046,11216990,'NR_036583','LOC100129361'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131362049,131367559,'NR_024563','LOC100130238'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56406289,56408406,'NR_027032','LOC100130776'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109858788,109859633,'NR_036513','LOC100131138'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107974228,107976153,'NR_038996','LOC100131733'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',129083951,129092840,'NR_024457','LOC100190940'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',45888469,45896493,'NR_026544','LOC100233209'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52782259,52782750,'NR_026657','LOC100240734'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52758889,52761874,'NR_026658','LOC100240735'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',1908628,1916003,'NR_036546','LOC100271702'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48508592,48521204,'NR_027499','LOC100286844'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',30839881,30846912,'NR_040245','LOC100287314'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',105414317,105692739,'NR_040246','LOC100287944'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',1479917,1483851,'NR_028415','LOC100292680'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48069223,48072383,'NR_033267','LOC100335030'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9283865,9286912,'NR_036466','LOC100499405'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',105598665,105602608,'NR_038912','LOC100505978'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',13024037,13028843,'NR_038920','LOC100506314'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',20058885,20143069,'NR_040098','LOC100506393'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',25998854,26003642,'NR_038228','LOC100506451'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119123476,119135014,'NR_038924','LOC100506649'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',31064963,31118048,'NR_038927','LOC100506660'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119412523,119418132,'NR_038854','LOC100506668'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56611498,56616214,'NR_038269','LOC100506844'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131689808,131697110,'NM_001195520','LOC100507055'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122131883,122135244,'NR_038290','LOC100507091'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',125787505,125796753,'NR_038256','LOC100507206'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',67354417,67366906,'NR_038930','LOC100507250'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',72813222,72972678,'NR_038300','LOC100507377'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',2816242,2839222,'NR_038933','LOC100507424'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',130215508,130263429,'NR_026670','LOC116437'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47368511,47372496,'NR_024266','LOC144438'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',92483534,92489305,'NR_038263','LOC144481'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',93377909,93380475,'NR_027035','LOC144486'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9109039,9111918,'NR_026971','LOC144571'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',118206012,118225568,'NR_024246','LOC144742'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47407484,47445835,'NR_029448','LOC255411'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',113330382,113335020,'NR_038440','LOC255480'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48588931,48591913,'NR_026948','LOC283332'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51723239,51734489,'NR_033854','LOC283335'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',70933553,70953556,'NR_026837','LOC283392'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50885631,50890906,'NM_001242696','LOC283403'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50890980,50903864,'NR_027358','LOC283404'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',2740626,2751096,'NR_033958','LOC283440'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',88626862,88629860,'NR_028138','LOC338758'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120717555,120725773,'NR_002809','LOC338799'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11592230,11608602,'NR_033890','LOC338817'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9691909,9702275,'NR_002814','LOC374443'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',125781199,125822761,'NR_033878','LOC387895'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8400826,8434615,'NR_024420','LOC389634'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',44405769,44407971,'NR_028408','LOC400027'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52806121,52812893,'NR_026656','LOC400043'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',125009186,125033873,'NR_034132','LOC400084'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54509658,54516297,'NR_036476','LOC440104'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',125919992,125925189,'NR_033970','LOC440117'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',116837,128593,'NR_033859','LOC574538'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9327519,9357951,'NR_024374','LOC642846'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',91921664,92295643,'NR_040096','LOC643339'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',97403452,97421764,'NR_038383','LOC643770'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6418427,6430944,'NR_015382','LOC678655'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',87929033,87937600,'NR_038385','LOC728084'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',17032947,17034829,'NR_036619','LOC728622'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',106821056,106821678,'NR_037629','LOC728739'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12401286,12511105,'NM_058169','LOH12CR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12399608,12401268,'NR_024061','LOH12CR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6598261,6615558,'NM_020400','LPAR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6955607,6996103,'NM_005768','LPCAT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',57552203,57600529,'NM_153377','LRIG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',25096447,25152536,'NM_001204127','LRMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55808548,55893392,'NM_002332','LRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12160227,12311078,'NM_002336','LRP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',68288611,68291209,'NM_201550','LRRC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6884157,6893667,'NM_006992','LRRC23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121233619,121253971,'NM_001098519','LRRC43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',83954229,84163014,'NM_001079910','LRRIQ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',38905079,39049353,'NM_198578','LRRK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',1799693,1816179,'NM_001163926','LRTM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',94918741,94953496,'NM_000895','LTA4H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6363617,6370993,'NM_002342','LTBR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',90021362,90029673,'NM_002345','LUM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',25239416,25249216,'NM_001001660','LYRM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',68028400,68034280,'NM_000239','LYZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8984223,8993624,'NM_001207024','M6PR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10647630,10657475,'NM_018048','MAGOHB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12373484,12394436,'NM_018050','MANSC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',27806865,27815476,'NM_001146221','MANSC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',115481568,115498808,'NM_001085481','MAP1LC3B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52160542,52179711,'NM_001193511','MAP3K12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',110764661,110815611,'NM_139078','MAPKAPK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56435147,56440460,'NM_138396','MARCH9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56168002,56196705,'NM_004990','MARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7152179,7165723,'NR_026947','MATL2963'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56202925,56210198,'NM_052897','MBD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48238352,48248178,'NM_006337','MCRS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',67005051,67012428,'NM_020128','MDM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',67488237,67525479,'NM_002392','MDM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',114880763,115199374,'NM_015335','MED13L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',27066749,27073949,'NM_004264','MED21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',94391952,94433744,'NM_006838','METAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56448617,56452181,'NM_023033','METTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',31691360,31713283,'NM_001135864','METTL20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56452649,56462591,'NM_015433','METTL21B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49604800,49612567,'NM_014033','METTL7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54361596,54364661,'NM_152637','METTL7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8689806,8706700,'NM_003480','MFAP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51932142,51934457,'NM_032889','MFSD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',84897167,85756812,'NM_013244','MGAT4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108655512,108695672,'NR_026661','MGC14436'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',14925381,14930120,'NM_001190839','MGP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',16397617,16408611,'NM_145764','MGST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55129552,55134702,'NM_012064','MIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',118635821,118635912,'NR_031589','MIR1178'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55874553,55874626,'NR_031597','MIR1228'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9283332,9283414,'NR_036052','MIR1244-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9283332,9283414,'NR_036262','MIR1244-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9283332,9283414,'NR_036263','MIR1244-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',96409817,96409887,'NR_031653','MIR1251'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',78337167,78337232,'NR_031700','MIR1252'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',67953203,67953265,'NR_031692','MIR1279'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47334493,47334580,'NR_031623','MIR1291'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48914191,48914262,'NR_031625','MIR1293'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',96481720,96481820,'NR_029678','MIR135A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6943520,6943615,'NR_029682','MIR141'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53017266,53017365,'NR_029894','MIR148B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',99107792,99107858,'NR_031728','MIR1827'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52671788,52671898,'NR_029617','MIR196A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6943122,6943190,'NR_029779','MIR200C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56504658,56504742,'NR_029847','MIR26A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52911447,52911527,'NR_039851','MIR3198-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',94226326,94226420,'NR_029895','MIR331'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',127344589,127344676,'NR_037406','MIR3612'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',1639741,1639807,'NR_037422','MIR3649'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',102848332,102848463,'NR_037425','MIR3652'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',94227829,94227891,'NR_037456','MIR3685'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122586908,122587034,'NR_037470','MIR3908'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',68264768,68264870,'NR_037475','MIR3913-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',68264769,68264869,'NR_037476','MIR3913-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',103509540,103509624,'NR_037487','MIR3922'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',17717499,17717595,'NR_039770','MIR3974'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',25918219,25918279,'NR_036188','MIR4302'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',96913291,96913357,'NR_036189','MIR4303'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122061166,122061228,'NR_036187','MIR4304'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',115350439,115350506,'NR_039683','MIR4472-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108755535,108755624,'NR_039718','MIR4497'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119077620,119077686,'NR_039719','MIR4498'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',45867861,45867941,'NR_039847','MIR4698'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',80076297,80076371,'NR_039848','MIR4699'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119645378,119645452,'NR_039849','MIR4700'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47452012,47452094,'NR_039850','MIR4701'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',93752304,93752420,'NR_030171','MIR492'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12808849,12808944,'NR_030344','MIR613'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12960029,12960119,'NR_030345','MIR614'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52714000,52714096,'NR_030753','MIR615'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',79750442,79750539,'NR_030348','MIR617'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',79853645,79853743,'NR_030349','MIR618'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',115070747,115070842,'NR_030351','MIR620'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',24256621,24256696,'NR_030625','MIR920'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',61283732,61283816,'NR_029661','MIRLET7I'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',86700793,86702619,'NR_033410','MKRN9P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119609331,119624050,'NM_014730','MLEC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6727418,6732897,'NR_026581','MLF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47699024,47735374,'NM_003482','MLL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121001142,121194920,'NM_014938','MLXIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108475903,108495741,'NM_052845','MMAB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',130878893,130902269,'NM_016155','MMP17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54515480,54523002,'NM_002429','MMP19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',61146863,61277630,'NM_015026','MON2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120573675,120591943,'NM_173855','MORN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122206898,122272394,'NM_022782','MPHOSPH9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',92385396,92421679,'NM_172177','MRPL42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6471576,6472732,'NM_016497','MRPL51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',27754972,27800504,'NM_001190864','MRPS35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',70528340,70531030,'NR_024072','MRS2P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119263515,119291341,'NM_002442','MSI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',63958689,64146954,'NM_198080','MSRB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',105895198,105905059,'NM_025198','MTERFD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53534565,53538441,'NM_058173','MUCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108495882,108519454,'NM_001114185','MVK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',100512877,100603789,'NM_002465','MYBPC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',79634838,79637578,'NM_005593','MYF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',79625538,79627387,'NM_002469','MYF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109833006,109842787,'NM_000432','MYL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54838311,54841633,'NM_021019','MYL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54832470,54838038,'NM_002475','MYL6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55708567,55730160,'NM_005379','MYO1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108310906,108370559,'NM_001101421','MYO1H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',110948875,111031018,'NM_024953','NAA25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55768943,55775526,'NM_005967','NAB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55392477,55405333,'NM_005594','NACA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7833261,7839922,'NM_024865','NANOG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7809078,7817984,'NM_001145465','NANOGNB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',74724938,74765005,'NM_139207','NAP1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',76749199,77130921,'NM_014903','NAV3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6473558,6511393,'NM_014865','NCAPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53177761,53223166,'NM_005337','NCKAP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48471195,48508475,'NM_001037806','NCKAP5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',123374909,123617963,'NM_001077261','NCOR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',93889240,93921642,'NM_018838','NDUFA12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55914952,55920742,'NM_020142','NDUFA4L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',4628524,4666981,'NM_005002','NDUFA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8126073,8141640,'NM_015509','NECAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',95825131,95871600,'NM_001135176','NEDD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',43188324,43555711,'NM_001145109','NELL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53699995,53710068,'NM_021191','NEUROD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52972162,52981058,'NM_001136023','NFE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',103034987,103056170,'NM_006166','NFYB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',543722,643016,'NM_016533','NINJ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131194945,131202939,'NM_024078','NOC4L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6536297,6547741,'NM_006170','NOP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',116130329,116231598,'NM_001204214','NOS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52186740,52187689,'NM_003717','NPFF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',99391681,99481776,'NM_001206978','NR1H4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',93948315,93991535,'NM_001032287','NR2C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50731452,50739558,'NM_173157','NR4A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',2804774,2814482,'NM_031474','NRIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',102690210,102759105,'NM_001031701','NT5DC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',5411540,5474726,'NM_001102654','NTF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',94575713,94708667,'NM_021229','NTN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',84792203,84800901,'NM_006183','NTS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',104981254,105057941,'NM_014840','NUAK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',92295831,92321155,'NM_019094','NUDT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',92295876,92320183,'NR_002212','NUDT4P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',67366997,67422740,'NM_020401','NUP107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',100992102,101036491,'NM_024057','NUP37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55896844,55906499,'NM_007224','NXPH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',111829121,111840214,'NM_002534','OAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',111900656,111932886,'NM_002535','OAS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',111860631,111895438,'NM_006187','OAS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119942477,119961163,'NM_003733','OASL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54904391,54909905,'NM_024068','OBFC2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122025306,122030541,'NM_024623','OGFOD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10202165,10216057,'NM_002543','OLR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53901075,53902026,'NM_001005280','OR10A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46882388,46883342,'NM_001004134','OR10AD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54316942,54317884,'NM_206899','OR10P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54000650,54001589,'NM_001005182','OR6C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54132264,54133203,'NM_054105','OR6C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54011751,54012687,'NM_054104','OR6C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54231277,54232207,'NM_001005494','OR6C4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53974338,53975283,'NM_001005493','OR6C6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54080579,54081518,'NM_001005518','OR6C65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54172428,54173367,'NM_001005519','OR6C68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54149250,54150189,'NM_001005499','OR6C70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53927338,53928277,'NM_001005490','OR6C74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54045161,54046100,'NM_001005497','OR6C75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54106304,54107243,'NM_001005183','OR6C76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47205681,47208153,'NM_001005203','OR8S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53809819,53810827,'NM_001005243','OR9K2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120548837,120564329,'NM_032790','ORAI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54498072,54501226,'NM_014182','ORMDL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56374004,56401607,'NM_006812','OS9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',75269708,75477720,'NM_001003712','OSBPL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',79127363,79297001,'NM_173591','OTOGL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',29471755,29541886,'NM_183378','OVCH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131705475,131709045,'NM_174873','P2RX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120132046,120156292,'NM_002560','P2RX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120055013,120108737,'NM_002562','P2RX7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54784369,54793961,'NM_006191','PA2G4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',101756233,101835511,'NM_000277','PAH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54996273,55014104,'NM_001166279','PAN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',3788287,3852869,'NM_020367','PARP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',78509875,78608921,'NM_002583','PAWR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52132152,52161213,'NM_031989','PCBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53241494,53259290,'NM_001165975','PDE1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',20413445,20728308,'NM_000921','PDE3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',15017222,15026066,'NM_006205','PDE6H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',40117807,40254659,'NM_013377','PDZRN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',117058252,117067773,'NM_002567','PEBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7233548,7255346,'NM_001131024','PEX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51975501,51979501,'NM_002624','PFDN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46802696,46826454,'NM_001166688','PFKM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131797465,131809396,'NM_001170544','PGAM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6944777,6950152,'NM_007273','PHB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8958582,8985327,'NM_004426','PHC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',74705493,74711823,'NM_007350','PHLDA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',18305740,18692619,'NM_004570','PIK3C2G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56271208,56283478,'NM_024779','PIP4K2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122033979,122160928,'NM_020845','PITPNM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',129388385,129422830,'NM_004764','PIWIL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',32834946,32941047,'NM_001005242','PKP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119244296,119249975,'NM_000928','PLA2G1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',14547863,14612058,'NM_024829','PLBD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',112280753,112311841,'NM_001159727','PLBD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',18727382,18782185,'NM_033123','PLCZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',19173892,19420600,'NM_019012','PLEKHA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',43853083,43896056,'NR_037144','PLEKHA8P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6289862,6307933,'NM_018173','PLEKHG6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',91654395,91689999,'NM_001004330','PLEKHG7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',93066629,93225582,'NM_005761','PLXNC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',101114366,101115744,'NM_002674','PMCH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54634155,54646113,'NM_001200054','PMEL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',88337628,88444170,'NR_037659','POC1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',88437320,88444170,'NM_001199782','POC1B-GALNT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131710420,131774018,'NM_006231','POLE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',105275989,105428106,'NM_001160708','POLR3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119501230,119503580,'NM_015918','POP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8177631,8178715,'NR_036440','POU5F1P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49866985,49897744,'NR_026893','POU6F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',80176175,80677240,'NM_003625','PPFIA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',27568311,27739764,'NM_001198915','PPFIBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',41006213,41128689,'NM_001143787','PPHLN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',61324030,61614932,'NM_020700','PPM1H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109641995,109665166,'NM_002710','PPP1CC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',78691473,78853109,'NM_002480','PPP1R12A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53259290,53268710,'NM_006741','PPP1R1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109456619,109505447,'NM_139283','PPTC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11396023,11399791,'NM_005039','PRB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11435740,11439765,'NM_006248','PRB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11310123,11313908,'NM_006249','PRB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11351281,11354633,'NM_002723','PRB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',106650772,106679044,'NM_012406','PRDM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10924826,10928141,'NM_006250','PRH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10889714,11215491,'NR_037918','PRH1-PRR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10973100,10978711,'NM_005042','PRH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',41138406,41164064,'NM_001144883','PRICKLE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55411630,55432413,'NM_000946','PRIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',118590143,118603812,'NM_006253','PRKAB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47682321,47698896,'NM_002733','PRKAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',3470685,3573399,'NM_019854','PRMT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48303669,48324716,'NM_012272','PRPF40B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47975175,47978748,'NM_006262','PRPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52121699,52126694,'NM_018457','PRR13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10889714,10893342,'NM_007244','PRR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120811028,120840154,'NM_002813','PSMD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55343391,55368345,'NM_006601','PTGES3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',28006520,28014161,'NM_198964','PTHLH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6745801,6750379,'NM_002824','PTMS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',111340918,111432100,'NM_002834','PTPN11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6930694,6940740,'NM_002831','PTPN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',69196898,69289891,'NM_001206972','PTPRB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',15366457,15642532,'NM_002848','PTPRO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',79362256,79598099,'NM_001145026','PTPRQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',69318119,69434806,'NM_001207016','PTPRR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',130979750,130994359,'NM_001002019','PUS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',42408678,42438863,'NM_031292','PUS7L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',106603719,106630387,'NM_007062','PWP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131774264,131791650,'NM_018663','PXMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119132624,119172347,'NM_025157','PXN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',21481804,21515449,'NM_024854','PYROXD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',9192702,9252233,'NM_002864','PZP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55933814,55990513,'NM_014925','R3HDM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',70434924,70467417,'NM_014999','RAB21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119017281,119039026,'NM_001167606','RAB35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',68419446,68503251,'NM_175625','RAB3IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54654128,54674755,'NM_002868','RAB5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48669211,48705574,'NM_013277','RACGAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',43742667,43745461,'NR_026583','RACGAP1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',4518210,4539474,'NM_006479','RAD51AP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',891515,929124,'NM_134424','RAD52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109424387,109454274,'NM_152442','RAD9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',129922569,129926779,'NM_006325','RAN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',67290918,67340641,'NM_015646','RAP1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46414719,46438448,'NM_001098532','RAPGEF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51890616,51900464,'NM_001042728','RARG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',112021006,112058427,'NM_004658','RASAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',63290559,63377614,'NM_178169','RASSF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',26003230,26117074,'NM_001164748','RASSF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',84722461,84754449,'NM_005447','RASSF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',112744241,112888559,'NM_016196','RBM19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55201875,55276247,'NM_002898','RBMS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7167553,7172733,'NM_031491','RBP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55631482,55637685,'NM_003708','RDH16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54400417,54404793,'NM_001199771','RDH5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',21513110,21545870,'NM_032941','RECQL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',27740694,27741833,'NM_001029874','REP15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',15151982,15265678,'NM_032918','RERG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',18125069,18134381,'NM_024730','RERGL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',116938888,116954425,'NM_181578','RFC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',105519044,105680712,'NM_001206691','RFX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47744734,47750042,'NM_144593','RHEBL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120700042,120715977,'NM_019034','RHOF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',105692528,105807224,'NM_018157','RIC8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122521861,122584218,'NM_178314','RILPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122465888,122487217,'NM_145058','RILPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',129446633,129568363,'NM_015347','RIMBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8741784,8821054,'NM_020734','RIMKLB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',96382929,96451675,'NR_024037','RMST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47537182,47545920,'NM_014470','RND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119456514,119499780,'NM_014868','RNF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120322284,120346538,'NM_025126','RNF34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54882554,54901982,'NR_040053','RNF41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',115660478,115775819,'NM_032814','RNFT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46341981,46386111,'NM_001146075','RPAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',111713931,111821067,'NM_001143854','RPH3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',12919677,12920337,'NR_003932','RPL13AP20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6863405,6864029,'NR_002803','RPL13P5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54796640,54797883,'NM_001035267','RPL41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',111327376,111331826,'NM_000970','RPL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119118885,119123397,'NM_001002','RPLP0'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54721952,54724274,'NM_001029','RPS26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',64438067,64507021,'NR_026825','RPSAP52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121555142,121577513,'NR_036434','RSRC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54432513,54497807,'NR_026723','SARNP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107440120,107479295,'NM_014706','SART3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122339608,122400941,'NM_001167856','SBNO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',44599180,44670668,'NM_004719','SCAF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',123828126,123914472,'NM_001082959','SCARB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6489648,6489978,'NR_004387','SCARNA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6560899,6561036,'NR_003012','SCARNA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6946760,6947030,'NR_003010','SCARNA12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50342814,50488566,'NM_001177984','SCN8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6326269,6354651,'NM_001159576','SCNN1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',99185679,99258045,'NM_017988','SCYL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55603204,55614456,'NM_148897','SDR9C7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',112314633,112326075,'NM_006843','SDS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',112344598,112360464,'NM_138432','SDSL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107539808,107549983,'NM_001206609','SELPLG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46723023,46785908,'NM_014554','SENP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120727020,120754945,'NM_015048','SETD1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122434656,122459853,'NM_020382','SETD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',130761587,130850235,'NM_004592','SFSWAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',110328134,110373810,'NM_005475','SH2B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55910377,55914985,'NM_001166359','SHMT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119224506,119235428,'NM_012240','SIRT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49666041,49706466,'NR_033421','SLC11A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',127843691,127874494,'NM_145648','SLC15A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',16232685,16321886,'NM_001170798','SLC15A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',58369392,58461675,'NM_004731','SLC16A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',99274987,99339968,'NM_139319','SLC17A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',112220953,112257308,'NM_024959','SLC24A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',97511533,97519909,'NM_002635','SLC25A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56299959,56306201,'NM_133489','SLC26A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',38435089,38785928,'NM_052885','SLC2A13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7857663,7916762,'NM_153449','SLC2A14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',7963090,7980159,'NM_006931','SLC2A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',67426202,67446120,'NM_018656','SLC35E3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',44863107,44949475,'NM_030674','SLC38A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',45038237,45052912,'NM_018976','SLC38A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',45444810,45506047,'NM_018018','SLC38A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54910767,54917896,'NM_001135195','SLC39A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',103721404,103846602,'NM_032148','SLC41A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46453233,46462803,'NM_017842','SLC48A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',50104860,50177917,'NM_004858','SLC4A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',100074124,100128147,'NM_145913','SLC5A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',169503,193124,'NM_001122847','SLC6A12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',200047,242300,'NM_001190997','SLC6A13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',83777397,83830737,'NM_001146335','SLC6A15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',97371749,97375054,'NR_033801','SLC9A7P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',21308800,21439638,'NM_134431','SLCO1A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',21175394,21283997,'NM_006446','SLCO1B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',20854904,20960925,'NM_019844','SLCO1B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',21059896,21134307,'NM_001009562','SLCO1B7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',20739665,20797587,'NM_017435','SLCO1C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49925399,49950469,'NM_001031628','SMAGP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54841902,54869618,'NM_003075','SMARCC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48765249,48780761,'NM_003076','SMARCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52860408,52869045,'NM_001243787','SMUG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47336697,47336832,'NR_002950','SNORA2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47347506,47347643,'NR_002951','SNORA2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47334431,47334568,'NR_002968','SNORA34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',131081721,131081858,'NR_002979','SNORA49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',97517543,97517793,'NR_003015','SNORA53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',67307280,67307422,'NR_033335','SNORA70G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55325077,55325152,'NR_002737','SNORD59A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55323730,55323805,'NR_003046','SNORD59B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122508603,122516890,'NM_022717','SNRNP35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',94776839,94784369,'NM_003095','SNRPF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51783540,51804590,'NM_003578','SOAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',92487728,92494109,'NM_003877','SOCS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',23576497,23993904,'NM_006940','SOX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52060245,52096493,'NM_138473','SP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52006626,52015804,'NM_152860','SP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48046954,48207474,'NM_023071','SPATS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',100394787,100404906,'NM_152323','SPIC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119684695,119826538,'NM_139015','SPPL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51744366,51759471,'NM_032840','SPRYD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55148567,55151034,'NM_207344','SPRYD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6850360,6852782,'NM_032641','SPSB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',62524807,62827880,'NM_020762','SRGAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',117903682,118085239,'NM_194286','SRRM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119383853,119391941,'NM_003769','SRSF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107700594,107775488,'NM_018984','SSH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',26239535,26278975,'NM_001135823','SSPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',22237591,22378915,'NM_003034','ST8SIA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',102505198,102684632,'NM_017564','STAB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55923508,55931236,'NM_145064','STAC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55021648,55040304,'NM_198332','STAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55775454,55790356,'NM_001178079','STAT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',27288344,27370157,'NM_015000','STK38L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',15926554,15947677,'NM_007178','STRAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',129840099,129889764,'NM_001980','STX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10662804,10718158,'NM_018423','STYK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',117298740,117340223,'NM_022491','SUDS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54677309,54685576,'NM_000456','SUOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107828786,107943228,'NM_018711','SVOP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',100646556,100657381,'NM_153694','SYCP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',77781903,78369919,'NM_001135805','SYT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',33419614,33484021,'NM_198992','SYT10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55690047,55696611,'NM_001178054','TAC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',117071988,117295133,'NM_016281','TAOK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6431437,6441749,'NM_018009','TAPBPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',52180971,52186482,'NM_004178','TARBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10869211,10870135,'NM_023921','TAS2R10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10951791,10953428,'NM_023920','TAS2R13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10982119,10983073,'NM_023922','TAS2R14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11065537,11066437,'NM_176888','TAS2R19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11039827,11041741,'NM_176889','TAS2R20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11177150,11178110,'NM_001097643','TAS2R30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11074252,11075273,'NM_176885','TAS2R31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11229865,11230810,'NM_181429','TAS2R42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11135152,11136179,'NM_176884','TAS2R43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11105230,11106160,'NM_176887','TAS2R46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',11029778,11030778,'NM_176890','TAS2R50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10845397,10846493,'NM_023919','TAS2R7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10849916,10850846,'NM_023918','TAS2R8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',10852959,10854034,'NM_023917','TAS2R9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',70519753,70606896,'NR_027449','TBC1D15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',63504618,63561065,'NM_015279','TBC1D30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',63132106,63182166,'NM_013254','TBK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',113592441,113606352,'NM_005996','TBX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',113288284,113326086,'NM_080718','TBX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108822705,108840257,'NM_032300','TCHP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',105220710,105264922,'NM_152772','TCP11L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109536214,109571318,'NM_001173976','TCTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122721612,122758901,'NM_001143850','TCTN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',102883722,102906786,'NM_003211','TDG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',2938738,3020103,'NM_201441','TEAD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51728999,51744429,'NM_015319','TENC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',115961110,116021634,'NM_017899','TESC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49773805,49853193,'NM_001173453','TFCP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',70343943,70360695,'NM_031435','THAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55096423,55129467,'NM_003920','TIMELESS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',27015772,27058606,'NM_016551','TM7SF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',64816983,64850074,'NM_016056','TMBIM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48421559,48444984,'NM_003217','TMBIM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',93485030,93568455,'NM_020698','TMCC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',122635028,122648641,'NM_006815','TMED2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46643596,46648928,'NM_001143843','TMEM106C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',110853469,110935406,'NM_001193531','TMEM116'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',42516228,43069808,'NM_032256','TMEM117'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107507750,107516023,'NM_181724','TMEM119'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120635040,120704357,'NM_001080825','TMEM120B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',124377114,124709542,'NM_052907','TMEM132B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',127317900,127758413,'NM_001136103','TMEM132C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',128122223,128954165,'NM_133448','TMEM132D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',70366144,70384106,'NM_018279','TMEM19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55735692,55758841,'NM_001130963','TMEM194A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',118515646,118563746,'NM_001136534','TMEM233'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',62459903,62489154,'NM_014254','TMEM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',97433481,97468288,'NM_001032284','TMPO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',49522967,49567930,'NM_182559','TMPRSS12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',29545012,29828010,'NM_001193451','TMTC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',81605064,82052196,'NM_152588','TMTC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',87060203,87117795,'NM_181783','TMTC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6308183,6321544,'NM_001065','TNFRSF1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',112143642,112220772,'NM_001143819','TPCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',70618892,70712488,'NM_173353','TPH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6847538,6850371,'NR_027483','TPI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',111047731,111075791,'NM_001143906','TRAFD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',70952795,71345689,'NM_013381','TRHDE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119366146,119368598,'NM_016399','TRIAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',48003237,48004438,'NM_001100620','TROAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108705274,108755595,'NM_021625','TRPV4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56462794,56477637,'NM_005726','TSFM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',30971104,31040804,'NM_001080509','TSPAN11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',83932224,83954186,'NM_001100917','TSPAN19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56425050,56428293,'NM_005981','TSPAN31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',69805143,69838046,'NM_004616','TSPAN8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',3056781,3265991,'NM_006675','TSPAN9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47864849,47869128,'NM_006009','TUBA1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47807832,47811571,'NM_006082','TUBA1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47945131,47953380,'NM_032704','TUBA1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',2870293,2920567,'NM_001160408','TULP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',42473792,42486445,'NM_001242397','TWF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',103204856,103268192,'NM_003330','TXNRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',123962144,123965540,'NM_021009','UBC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',92326218,92360157,'NM_003348','UBE2N'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108399821,108458890,'NM_183415','UBE3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',98954993,99060773,'NM_015054','UHRF1BP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',130945231,130973660,'NM_003565','ULK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',119632213,119645826,'NM_001080533','UNC119B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',108020305,108033181,'NM_003362','UNG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',60940453,61086165,'NM_006313','USP15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107974762,108010214,'NM_032663','USP30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',94435017,94469394,'NM_032147','USP44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6831551,6846056,'NM_003481','USP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',100198035,100304528,'NM_014503','UTP20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6441664,6450104,'NM_199245','VAMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',46521586,46585081,'NM_000376','VDR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',94135652,94220697,'NM_017599','VEZT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',109413712,109424299,'NM_016226','VPS29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121282046,121317021,'NM_022916','VPS33A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121915827,121946665,'NM_024667','VPS37B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',116985780,117026193,'NM_019086','VSIG10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',5928300,6104097,'NM_000552','VWF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',14830678,14847668,'NM_016312','WBP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',120840845,120894357,'NM_001178003','WDR66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54581463,54607176,'NM_001143853','WIBG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',63730670,63801613,'NM_007191','WIF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',732349,890879,'NM_018979','WNK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47658502,47662663,'NM_005430','WNT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47645389,47651908,'NM_003394','WNT10B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',1608672,1626639,'NM_032642','WNT5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',116954879,116983334,'NM_018639','WSB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',107047640,107168443,'NM_014653','WSCD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',63084419,63128730,'NM_007235','XPOT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',56621711,56637319,'NM_033276','XRCC6BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',40837173,40918418,'NR_034000','YAF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',32790744,32800154,'NM_001040436','YARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',68039798,68070843,'NM_006530','YEATS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',55678883,55686564,'NM_014830','ZBTB39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',54798296,54802545,'NM_032786','ZC3H10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',121522098,121551496,'NM_017612','ZCCHC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',40992154,41006199,'NM_033114','ZCRB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',75681984,75771605,'NM_015336','ZDHHC17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',70289648,70344016,'NM_144982','ZFC3H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',132217286,132246122,'NM_015394','ZNF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',132167109,132194331,'NM_003440','ZNF140'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',132073128,132099226,'NM_019591','ZNF26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',132268067,132289534,'NM_001165887','ZNF268'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',6645903,6668999,'NM_001135734','ZNF384'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',53049186,53071350,'NM_001130967','ZNF385A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',132008091,132042941,'NM_183238','ZNF605'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',47020059,47030941,'NM_152320','ZNF641'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',123023714,123065939,'NM_001204298','ZNF664'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',123023714,123366523,'NM_001204299','ZNF664-FAM101A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',8216416,8223909,'NM_001004328','ZNF705A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',51860801,51870921,'NM_001004304','ZNF740'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr12',132124052,132149958,'NM_001127372','ZNF84'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',99980418,99984057,'NM_033110','A2LD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',94546025,94751688,'NM_001105515','ABCC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',107668763,107684604,'NM_032859','ABHD13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113124260,113151458,'NM_199162','ADPRHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',41744288,41795403,'NM_016248','AKAP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51484523,51501781,'NR_036571','ALG11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',36421907,36471504,'NM_001142364','ALG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',30185614,30236565,'NM_001204406','ALOX5AP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',110328887,110365417,'NM_017664','ANKRD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',18306542,18344109,'NR_027995','ANKRD20A9P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',18734939,18817113,'NR_027248','ANKRD26P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',105993662,106018515,'NM_018011','ARGLU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',110565624,110745543,'NM_001113511','ARHGEF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49100435,49106009,'NM_138450','ARL11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',112392643,112589483,'NM_032189','ATP11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',24152548,24183923,'NM_001185085','ATP12A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113351122,113360514,'NM_000705','ATP4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',27417342,27417710,'NR_002162','ATP5EP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51404805,51483631,'NM_001005918','ATP7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',24844208,25493420,'NM_016529','ATP8A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',69579345,69611886,'NR_002717','ATXN8OS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',30672111,30804411,'NM_194318','B3GALTL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',22369168,22370320,'NR_033774','BASP1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',102249399,102291889,'NM_017693','BIVM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',102257496,102326352,'NM_001204425','BIVM-ERCC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',72200042,72228329,'NM_024808','BORA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',31787616,31871809,'NM_000059','BRCA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',76400585,76401225,'NR_026983','BTF3P11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40929541,40943013,'NM_014059','C13orf15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',110771015,110794595,'NM_152324','C13orf16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',30404833,30447153,'NM_152325','C13orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',102216463,102224150,'NM_138779','C13orf27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',42253685,42263685,'NM_182508','C13orf30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',30378311,30397709,'NM_032849','C13orf33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',112349358,112386812,'NM_207440','C13orf35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',23781715,23794669,'NM_178540','C1QTNF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',23363427,23369125,'NM_001007537','C1QTNF9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',23361591,23364242,'NM_001135816','C1QTNF9B-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',48780786,48873736,'NM_030925','CAB39L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',110065931,110090343,'NM_018210','CARKD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',110091757,110156481,'NM_024537','CARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',43308488,43351826,'NM_144974','CCDC122'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',102179717,102209423,'NM_001146197','CCDC168'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',35699178,35769992,'NM_001144984','CCDC169'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',35640344,35769992,'NM_001198910','CCDC169-SOHLH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51334117,51338373,'NM_031290','CCDC70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',35903966,35915019,'NM_001111047','CCNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',48720047,48765623,'NR_036439','CDADC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',114018463,114056252,'NM_001078645','CDC16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',25726755,25876569,'NM_001260','CDK8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',27434277,27441317,'NM_001265','CDX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',24354411,24395085,'NM_018451','CENPJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',31976642,31981532,'NR_026928','CG030'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51927495,51948764,'NM_018204','CKAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',94883853,95030011,'NM_182848','CLDN10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',76464059,76474653,'NM_006493','CLN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',99056919,99347389,'NM_206808','CLYBL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',44937030,45008834,'NM_031431','COG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',39127763,39224765,'NR_026745','COG6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',109599310,109757497,'NM_001845','COL4A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',109757631,109963374,'NM_001846','COL4A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',74997350,75009992,'NM_203495','COMMD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',45525322,45577212,'NM_016413','CPB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',19875805,19998012,'NM_015974','CRYL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',36575396,36577801,'NM_145203','CSNK1A1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49362545,49365517,'NR_003268','CTAGE10P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',74709889,74712518,'NR_027466','CTAGE11P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',112911086,112967393,'NM_003589','CUL4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',48178951,48181499,'NM_020377','CYSLTR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',70910098,71339331,'NM_004392','DACH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',104916216,104941384,'NM_001161814','DAOA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',104909406,104956031,'NR_040247','DAOA-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',35240788,35603514,'NM_004734','DCLK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',93889841,93929937,'NM_001922','DCT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113158134,113193024,'NM_001014283','DCUN1D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',41520842,41701891,'NM_152910','DGKH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51240131,51276294,'NM_024705','DHRS12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',59246297,59485344,'NM_030932','DIAPH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',72227540,72254345,'NM_014953','DIS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49554414,49577434,'NR_002605','DLEU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49454688,49597678,'NR_002612','DLEU2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',50184759,50315886,'NM_198989','DLEU7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',42495361,42581306,'NM_013238','DNAJC15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',95127393,95245244,'NM_006260','DNAJC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',98243741,98428339,'NM_001130048','DOCK9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',95028456,95094958,'NM_198968','DZIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49132810,49163624,'NM_032565','EBPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',77367616,77391904,'NM_001201397','EDNRB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',31318919,31431721,'NR_027062','EEF1DP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',20964827,21076355,'NM_152726','EFHA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',105940079,105985389,'NM_004093','EFNB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40404054,40454418,'NM_001145353','ELF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',42685665,43259116,'NM_017993','ENOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',42360121,42464377,'NM_033255','EPSTI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',102296191,102326352,'NM_000123','ERCC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',46243391,46269368,'NM_001984','ESD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',36472677,36481751,'NM_181503','EXOSC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',112825113,112851844,'NM_000504','F10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',112808105,112822996,'NM_019616','F7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',24640671,24643857,'NM_152704','FAM123A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',50694470,50756378,'NM_001242312','FAM124A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',106618879,107317461,'NM_001080396','FAM155A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',45013432,45087875,'NM_182542','FAM194B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',36481450,36531850,'NM_017569','FAM48A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113599043,113651873,'NM_182614','FAM70B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',97593434,97900024,'NM_005766','FARP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',76477389,76499332,'NM_012158','FBXL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',101171205,101852125,'NM_175929','FGF14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',101742670,101844870,'NR_036486','FGF14-IT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',21143214,21176640,'NM_002010','FGF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',98801674,98802282,'NR_024013','FKSG29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',37007076,37023673,'NR_040244','FLJ34747'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113565222,113568650,'NR_044995','FLJ41484'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',39666645,39692639,'NR_033877','FLJ42392'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113487457,113527333,'NR_024609','FLJ44054'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',27772482,27967265,'NM_002019','FLT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',27475410,27572729,'NM_004119','FLT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',48448048,48681916,'NM_001079673','FNDC3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40027800,40138734,'NM_002015','FOXO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',38159172,38359267,'NM_207361','FREM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',31503436,31768776,'NM_023037','FRY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113546896,113590421,'NM_000820','GAS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',19610394,19633183,'NM_021954','GJA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',19659603,19665114,'NM_004004','GJB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',19694100,19703372,'NM_006783','GJB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',90848935,92317488,'NM_004466','GPC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',92677078,93858274,'NM_005708','GPC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',26227338,26232922,'NM_005288','GPR12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',98704967,98708683,'NM_005292','GPR18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',94052104,94084900,'NM_180989','GPR180'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',98744789,98757750,'NM_004951','GPR183'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113369597,113373973,'NM_002929','GRK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113026505,113066464,'NM_024719','GRTP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',27264779,27266089,'NM_145657','GSX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',44592630,44756239,'NM_004128','GTF2F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',26896680,26907846,'NM_002097','GTF3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',50466647,50538294,'NR_003923','GUCY1B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',29930878,29938081,'NM_002128','HMGB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',52089605,52115920,'NM_001011724','HNRNPA1L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',95541093,96289813,'NM_153456','HS6ST3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',30608762,30634117,'NM_006644','HSPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',46305513,46369170,'NM_001165947','HTR2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',20039207,20163576,'NM_175605','IFT88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',20175481,20195237,'NM_138284','IL17D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',110163625,110171422,'NM_198219','ING1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',50833701,50925276,'NM_012141','INTS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',97403929,97474551,'NM_002271','IPO5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',109204184,109236915,'NM_003749','IRS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',100902966,101166795,'NM_004791','ITGBL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',47705274,47734233,'NM_021999','ITM2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',29674766,29779584,'NM_032116','KATNAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40599708,40604936,'NM_152903','KBTBD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40663710,40666702,'NM_032138','KBTBD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49487390,49493059,'NM_173605','KCNRG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',76352304,76358541,'NM_138444','KCTD12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',44664987,44673175,'NM_198404','KCTD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',102234631,102249405,'NM_024089','KDELC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',45814137,45859636,'NM_025113','KIAA0226L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',41038960,41433221,'NM_015058','KIAA0564'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',44461686,44500404,'NM_018559','KIAA1704'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',32488570,32538282,'NM_004795','KL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',73158149,73606067,'NM_007249','KLF12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',72531142,72549677,'NM_001730','KLF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',69172725,69580626,'NM_020866','KLHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49171443,49265058,'NM_002267','KPNA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',43351968,43366068,'NM_153218','LACC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',112999469,113025742,'NM_005561','LAMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',20445175,20533722,'NM_014572','LATS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',45598058,45654460,'NM_002298','LCP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',52175399,52211948,'NM_007015','LECT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',38815028,39075356,'NM_005780','LHFP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',107657792,107665883,'NM_206937','LIG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',24048,60768,'NR_027278','LINC00281'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51285483,51317287,'NR_027048','LINC00282'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',43494470,43502599,'NR_026955','LINC00284'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',22941650,22959603,'NR_038995','LINC00327'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',110314334,110320656,'NR_027701','LINC00346'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',74024980,74029258,'NR_034025','LINC00347'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',90341208,90376852,'NR_027039','LINC00410'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',18817188,18818889,'NR_034026','LINC00421'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',29812406,29846036,'NR_024464','LINC00426'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',18480398,18484774,'NR_026852','LINC00442'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',105826911,105828141,'NR_034119','LINC00460'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',75092570,75332007,'NM_005358','LMO7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',27018049,27092720,'NM_153371','LNX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',44813479,44863618,'NR_024458','LOC100190939'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113544137,113546793,'NR_044993','LOC100506394'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',30354971,30404745,'NR_038287','LOC100507064'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',41433304,41453701,'NR_039974','LOC100507240'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40269120,40393886,'NR_038259','LOC100616668'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',102330449,102346384,'NR_026965','LOC121952'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',44271639,44281766,'NR_038433','LOC144817'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',101844928,101846056,'NR_036487','LOC283481'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',68333417,68357458,'NR_038878','LOC338862'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',29408667,29422625,'NR_033889','LOC440131'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',44048031,44052568,'NR_038381','LOC641467'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',20770263,20804210,'NR_038939','LOC650794'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',47883182,47916841,'NM_005767','LPAR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',46025296,46217037,'NM_015116','LRCH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',34945925,34948832,'NM_005584','MAB21L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',96672574,96844375,'NM_207304','MBNL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',112704028,112802054,'NM_024979','MCF2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',112669798,112670953,'NR_034002','MCF2L-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',47548092,47567241,'NM_014166','MED4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',102136097,102144855,'NM_001010977','METTL21C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',23202327,23361587,'NM_005932','MIPEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',53784107,53784184,'NR_031628','MIR1297'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49521255,49521338,'NR_029485','MIR15A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49521109,49521198,'NR_029486','MIR16-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',90800859,90800943,'NR_029487','MIR17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',90798074,90804830,'NR_027349','MIR17HG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',90801005,90801076,'NR_029488','MIR18A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',90801145,90801227,'NR_029489','MIR19A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',90801446,90801533,'NR_029490','MIR19B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',90801319,90801390,'NR_029492','MIR20A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',23634554,23634643,'NR_031753','MIR2276'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',101417992,101418097,'NR_039603','MIR2681'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',60671932,60672015,'NR_036128','MIR3169'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',97658778,97658855,'NR_036129','MIR3170'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40199963,40200011,'NR_031723','MIR320D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49468551,49468638,'NR_037407','MIR3613'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',77170147,77170252,'NR_037438','MIR3665'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',39136170,39136272,'NR_036190','MIR4305'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',99093313,99093404,'NR_036191','MIR4306'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',19905916,19905985,'NR_039721','MIR4499'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',87068920,87068996,'NR_039722','MIR4500'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',86894242,87121219,'NR_033829','MIR4500HG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51024725,51024804,'NR_039852','MIR4703'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',65690382,65690457,'NR_039853','MIR4704'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',101496284,101496355,'NR_039854','MIR4705'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',78340249,78743319,'NR_030317','MIR548A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',61232425,61510626,'NR_039765','MIR548AN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',83421116,83836270,'NR_031642','MIR548F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',34946405,35413382,'NR_031646','MIR548F5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',68241343,68469887,'NR_031680','MIR548H4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',72062976,72111734,'NR_031690','MIR548I4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',65438462,65438562,'NR_039692','MIR548X2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40282901,40282997,'NR_030352','MIR621'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',89681436,89681532,'NR_030754','MIR622'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',98806385,98806483,'NR_030353','MIR623'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',52282185,52282276,'NR_031582','MIR759'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',90801568,90801646,'NR_029508','MIR92A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',48692474,48694514,'NM_001507','MLNR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',19105787,19145599,'NM_017520','MPHOSPH8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',20648371,20651220,'NM_024026','MRP63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40201431,40243347,'NM_005830','MRPS31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',26907775,26922739,'NM_152912','MTIF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',24718340,24759704,'NM_004685','MTMR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40688515,40735713,'NM_004294','MTRF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',28900776,28978084,'NM_015233','MTUS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',76516792,76799178,'NM_015057','MYCBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',108046500,108658356,'NM_015011','MYO16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',72180495,72199939,'NM_001071775','MZT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',31872859,31900315,'NM_052818','N4BP2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',31989029,32010932,'NM_014887','N4BP2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',20201072,20246057,'NM_174928','N6AMT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40783340,40830854,'NM_018527','NAA16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',100504130,100866814,'NM_052867','NALCN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',34948885,35144874,'NM_001204197','NBEA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',78953259,79028213,'NM_001161407','NDFIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51604779,51631997,'NM_001146099','NEK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51536900,51601215,'NM_199289','NEK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',38510454,38522246,'NM_001012754','NHLRC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',47509703,47519283,'NM_018283','NUDT15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',44411383,44461613,'NM_012345','NUFIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',24773665,24814561,'NM_014089','NUPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',52500876,52524197,'NM_006418','OLFM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',63209568,63214702,'NR_002171','OR7E156P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40914699,40915902,'NR_002163','OR7E37P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',96435973,96444605,'NM_080818','OXGR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',24568275,24570704,'NM_030979','PABPC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',27610642,27767475,'NM_175854','PAN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',27608979,27611311,'NR_029383','PAN3-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',23893068,23984948,'NM_006437','PARP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',99539269,99980692,'NM_001178004','PCCA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',57103789,57201066,'NM_001040429','PCDH17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',60881819,60887656,'NM_022843','PCDH20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',52316109,52320776,'NM_002590','PCDH8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',65774966,66702469,'NM_020403','PCDH9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',112879925,112911030,'NM_018386','PCID2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',32058563,32250158,'NM_015032','PDS5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',27392167,27398451,'NM_000209','PDX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',48967801,49001118,'NM_001040443','PHF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',18518292,18590423,'NR_002801','PHF2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',72254230,72488592,'NM_006346','PIBF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',27093915,27095590,'NM_015972','POLR1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',28131140,28151093,'NM_015932','POMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',37034718,37070981,'NM_006475','POSTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',78071230,78075696,'NM_006237','POU4F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',27450242,27460774,'NM_001105577','PRHOXNB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',38482001,38510252,'NM_025138','PROSER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',112860968,112874695,'NM_003891','PROZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',56613052,56616074,'NM_198441','PRR20A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',56632766,56635788,'NM_001130404','PRR20B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',56613052,56616074,'NM_001130405','PRR20C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',56619622,56622644,'NM_001130406','PRR20D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',56626195,56629217,'NM_001130407','PRR20E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',19175008,19255159,'NM_001042414','PSPC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',109973413,110012072,'NM_017817','RAB20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',96884475,96918253,'NM_021033','RAP2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113765295,113916197,'NM_007368','RASA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',26742463,26745827,'NM_206827','RASL11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',47775883,47954027,'NM_000321','RB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',78792099,78877924,'NM_022118','RBM26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',78878444,78896469,'NR_038991','RBM26-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49004082,49057720,'NM_018191','RCBTB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',47961099,48005317,'NM_001268','RCBTB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',33290205,33309644,'NM_002915','RFC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',36291338,36301740,'NM_000538','RFXAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',50381814,50442597,'NM_001142279','RNASEH2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',97626039,97627522,'NM_178861','RNF113B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',24236300,24352058,'NM_001184993','RNF17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',78086421,78131315,'NM_024546','RNF219'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',25684904,25693894,'NM_183044','RNF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',26723691,26728702,'NM_000982','RPL21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',26723692,26728699,'NR_026911','RPL21P28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',31211678,31275009,'NM_130806','RXFP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',22800964,22905841,'NM_014363','SACS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',20612652,20621224,'NM_005870','SAP18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',77007809,77117399,'NM_001160706','SCEL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',43845977,43869850,'NM_001010897','SERP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',50813168,50834240,'NM_001101320','SERPINE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',36146048,36169975,'NM_203451','SERTM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',48916429,48967140,'NM_031915','SETDB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',22653059,22797304,'NM_000231','SGCG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',25516734,25523198,'NM_001007538','SHISA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',45252416,45323847,'NM_198849','SIAH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',20625733,20648741,'NM_145061','SKA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',77213295,77236378,'NM_001242870','SLAIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',102494348,102517197,'NM_000452','SLC10A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',98134055,98202930,'NM_005073','SLC15A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40261546,40284596,'NM_014252','SLC25A15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',44865453,44890516,'NM_001010875','SLC25A30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',28172217,28191150,'NM_001135919','SLC46A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',28981550,29067825,'NM_003045','SLC7A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',83349343,83354529,'NM_052910','SLITRK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',87122870,87129871,'NM_015567','SLITRK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',85264922,85271484,'NM_032229','SLITRK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',36316967,36392409,'NM_005905','SMAD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',26727537,26727663,'NR_002575','SNORA27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',44809614,44809744,'NR_002967','SNORA31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',26727200,26727272,'NR_002574','SNORD102'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',35640344,35686752,'NM_017826','SOHLH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',111769913,111774021,'NM_005986','SOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',94159879,94162390,'NM_007084','SOX21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',112078651,112137010,'NM_145248','SPACA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',23632860,23779212,'NM_153023','SPATA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',45174446,45186694,'NM_152719','SPERT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',35773774,35818646,'NM_015087','SPG20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',35818567,35841872,'NR_045180','SPG20OS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',79808112,79813087,'NM_005842','SPRY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49384842,49408626,'NR_023351','SPRYD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49644154,49645752,'NR_002183','ST13P4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',32575271,33148932,'NM_001243476','STARD13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',97900455,97972342,'NM_003576','STK24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',38438061,38462996,'NM_145286','STOML3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',47414791,47473463,'NM_003850','SUCLA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',52124831,52160434,'NM_001130912','SUGT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40384024,40393910,'NR_003365','SUGT1P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',74756809,74954251,'NM_014832','TBC1D4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',59868591,60046014,'NM_030794','TDRD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113287056,113343789,'NM_007111','TFDP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',94024308,94046512,'NM_014305','TGDS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51849303,51878630,'NM_199263','THSD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51639847,51666603,'NR_002816','THSD1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',98951728,99013277,'NM_004800','TM9SF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',113193308,113252545,'NM_017905','TMCO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',100054090,100125104,'NM_001079669','TMTC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',23051498,23141412,'NM_018647','TNFRSF19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',42034871,42080149,'NM_033012','TNFSF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',107719977,107758833,'NM_006573','TNFSF13B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',102047286,102129524,'NM_003291','TPP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',44809303,44813297,'NM_003295','TPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',18895018,19008903,'NM_199254','TPTE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',24400892,24440607,'NR_026730','TPTE2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51961128,52059226,'NR_002793','TPTE2P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',24052345,24069812,'NR_002815','TPTE2P6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',49469143,49490604,'NM_005798','TRIM13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',37108772,37341939,'NM_001135956','TRPC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',43904278,43909060,'NM_006022','TSC22D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',39819270,39953143,'NR_024507','TTL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',18645909,18653992,'NM_006001','TUBA3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',112187328,112290482,'NM_006322','TUBGCP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',98650679,98836754,'NM_001144072','UBAC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',98646628,98651010,'NR_036532','UBAC2-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',29236544,29322820,'NM_007106','UBL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',75021927,75078069,'NM_006002','UCHL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',37821941,37835143,'NM_016617','UFM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',95251836,95503737,'NM_020121','UGGT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',114065160,114089393,'NM_023011','UPF3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',26538286,26644033,'NM_182488','USP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',30089829,30131686,'NM_005800','USPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51496827,51505737,'NM_021645','UTP14C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51884737,51922764,'NM_016075','VPS36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',26029839,26161082,'NM_006646','WASF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',40533696,40556139,'NM_007187','WBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',51056484,51234172,'NM_052950','WDFY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',20249467,20374913,'NM_022459','XPO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',31775907,31784091,'NM_001136571','ZAR1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',45434314,45524895,'NM_015070','ZC3H13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',20844709,20931508,'NM_153251','ZDHHC20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',99432026,99437020,'NM_007129','ZIC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',99413275,99422179,'NM_033132','ZIC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',19430809,19563968,'NM_197968','ZMYM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',19309592,19335776,'NM_001039650','ZMYM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr13',114098066,114110905,'NM_032436','ZNF828'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73821732,73839520,'NM_005050','ABCD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',50408627,50441438,'NM_181814','ABHD12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22136986,22151105,'NM_022060','ABHD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22597613,22634663,'NM_001164814','ACIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73073680,73080251,'NM_001037161','ACOT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73105524,73112112,'NM_006821','ACOT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73128162,73132223,'NM_152331','ACOT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73153300,73156345,'NM_001037162','ACOT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',68410592,68515836,'NM_001102','ACTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',57736585,57772106,'NM_018477','ACTR10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74589680,74600489,'NM_203488','ACYP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',70058830,70071485,'NM_003814','ADAM20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69988626,69996375,'NM_003813','ADAM21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69782222,69784271,'NR_003951','ADAM21P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',105506863,105509403,'NR_002224','ADAM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',77336178,77470050,'NM_001142545','ADCK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23857394,23874117,'NM_001198568','ADCY4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104267272,104284692,'NM_199165','ADSSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104474635,104515739,'NM_138420','AHNAK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76994125,77005568,'NM_012111','AHSA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95928200,96024865,'NM_152327','AK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64001969,64010974,'NM_004857','AKAP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',31868229,32372019,'NM_004274','AKAP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104306731,104330983,'NM_005163','AKT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73596624,73620949,'NM_005589','ALDH6A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',77208501,77244109,'NM_006020','ALKBH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',102458745,102466932,'NM_030943','AMN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20222175,20232185,'NM_001145','ANG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76323338,76349036,'NM_015305','ANGEL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',102042950,102045881,'NM_152326','ANKRD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23098616,23107119,'NM_003917','AP1G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',30564433,30632389,'NM_001128126','AP4S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19993129,19995771,'NM_080648','APEX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103099051,103126989,'NM_032374','APOPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49429485,49433522,'NM_001663','ARF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',67156331,67188189,'NM_001172','ARG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',31616245,31698685,'NM_001173','ARHGAP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20608366,20627876,'NM_018071','ARHGEF40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',57834974,57910204,'NM_023000','ARID4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93470251,93493520,'NM_016150','ASB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103621775,103648799,'NM_001080464','ASPG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54902861,54948329,'NM_014924','ATG14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95817347,95899431,'NM_018036','ATG2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',50096492,50169534,'NM_015915','ATL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49848796,49862696,'NM_001003803','ATP5S'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',66874333,66896473,'NM_015994','ATP6V1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',91594648,91642718,'NM_001127697','ATXN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103092633,103098408,'NM_001015049','BAG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',75058536,75083087,'NM_006399','BATF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',34291687,34414604,'NM_182648','BAZ1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',98705377,98807575,'NM_022898','BCL11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22845810,22850808,'NM_004050','BCL2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22845810,22865234,'NM_001199864','BCL2L2-PABPN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',75406357,75658553,'NR_001568','BCYRN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95792299,95800853,'NM_000710','BDKRB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95740887,95780419,'NM_000623','BDKRB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100073236,100104160,'NM_001159531','BEGAIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',53486204,53491020,'NM_130851','BMP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104746667,104838374,'NM_001519','BRF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',35365347,35410920,'NM_032352','BRMS1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104785923,104788475,'NM_033271','BTBD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92823726,92869138,'NM_018167','BTBD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',75186985,75197291,'NM_007176','C14orf1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',56116263,56185985,'NM_017799','C14orf101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',89814150,89868234,'NM_017970','C14orf102'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',57006347,57030329,'NM_018168','C14orf105'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92721048,92723184,'NM_015676','C14orf109'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',75688011,75738887,'NM_017972','C14orf118'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22634627,22639505,'NM_017924','C14orf119'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',30984993,30996431,'NM_080664','C14orf126'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',31614375,31615656,'NR_027263','C14orf128'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95915774,95923316,'NM_016472','C14orf129'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95575414,95629888,'NR_023938','C14orf132'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76962770,76993736,'NM_001193315','C14orf133'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',59628381,59671285,'NM_022495','C14orf135'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92738989,92743212,'NM_032490','C14orf142'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',59009158,59020826,'NM_144581','C14orf149'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',90650109,90761456,'NM_001102366','C14orf159'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69106283,69107671,'NR_024630','C14orf162'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23461296,23473617,'NR_024081','C14orf165'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',51525977,51541170,'NM_016039','C14orf166'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76362477,76406398,'NM_194287','C14orf166B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23477779,23493232,'NR_023921','C14orf167'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73027396,73029858,'NM_024644','C14orf169'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20636935,20641723,'NM_001146683','C14orf176'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',98247702,98253856,'NM_182560','C14orf177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',77296925,77305838,'NM_174943','C14orf178'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104117100,104127228,'NM_001008404','C14orf180'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49518179,49543988,'NM_001012706','C14orf182'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49620118,49629111,'NM_001014830','C14orf183'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',34478878,34479453,'NR_002937','C14orf19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103448377,103457656,'NM_004894','C14orf2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23838937,23844214,'NM_174913','C14orf21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',28311660,28317517,'NR_026732','C14orf23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',44436256,44446210,'NM_001017923','C14orf28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',55112627,55116563,'NR_027123','C14orf33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',55317605,55333145,'NR_026796','C14orf34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',57540560,57688600,'NM_001001872','C14orf37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',59041537,59113302,'NM_001164399','C14orf38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',59972426,60022517,'NM_174978','C14orf39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73251577,73323649,'NM_001043318','C14orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73555811,73602548,'NM_025057','C14orf45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93533394,93544962,'NR_024184','C14orf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',94953583,95011926,'NM_152592','C14orf49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64086372,64125849,'NM_172365','C14orf50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',70005348,70020226,'NR_037933','C14orf55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',97461699,97514214,'NR_015430','C14orf64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100193357,100208834,'NR_024096','C14orf70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104523660,104532900,'NM_174891','C14orf79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',105027564,105036630,'NM_001134877','C14orf80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',51185984,51188212,'NR_037676','C14orf82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93440828,93462471,'NR_027004','C14orf86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22525949,22549200,'NM_001130706','C14orf93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',89933079,89944372,'NM_006888','CALM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',91116870,91268166,'NM_024764','CATSPERB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23965579,23968571,'NM_001039771','CBLN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99047355,99140480,'NM_001144995','CCDC85C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',90807419,90953941,'NM_001080414','CCDC88C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19849368,19867373,'NM_182852','CCNB1IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99017491,99047605,'NM_001099402','CCNK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',102468468,102593495,'NM_006035','CDC42BPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104546954,104558470,'NM_017955','CDCA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22586109,22596587,'NM_144985','CDH24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49866469,49932367,'NM_004196','CDKL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',53933422,53956684,'NM_005192','CDKN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22656354,22658314,'NM_001805','CEBPE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',80032573,80475637,'NM_152446','CEP128'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',34249338,34253780,'NM_138638','CFL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54046336,54075084,'NM_006568','CGRRF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20923192,20975297,'NM_020920','CHD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92459197,92471393,'NM_001275','CHGA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23748626,23752876,'NM_014169','CHMP4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64450831,64471837,'NM_145165','CHURC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64450831,64599126,'NM_001202559','CHURC1-FNTB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23844232,23850416,'NM_014430','CIDEB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',101884371,101899006,'NM_001177612','CINP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103055748,103058923,'NM_001823','CKB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',37793069,37795325,'NM_175060','CLEC14A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',94718028,94855998,'NM_024734','CLMN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',24044551,24047311,'NM_001836','CMA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22915856,22918821,'NM_001037288','CMTM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',53963396,53977898,'NM_005776','CNIH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',30413491,30429573,'NM_004086','COCH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73486707,73499566,'NM_182476','COQ6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69861550,69896201,'NM_001204090','COX16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92883289,92884453,'NM_182971','COX8C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23610595,23617136,'NM_006032','CPNE6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',91658050,91700296,'NM_017437','CPSF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',105024301,105026169,'NM_001311','CRIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',105012175,105017545,'NM_001312','CRIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',38806078,38890148,'NM_203355','CTAGE5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',24112563,24115306,'NM_001911','CTSG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99220507,99263391,'NM_006668','CYP46A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',58725151,58906224,'NM_014992','DAAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',58174509,58184791,'NM_016651','DACT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22103646,22127983,'NM_001344','DAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23653745,23664291,'NM_001163484','DCAF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',72462792,72496110,'NM_015604','DCAF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',68587389,68689667,'NM_003861','DCAF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',52573207,52689796,'NM_030637','DDHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93587020,93617311,'NM_020414','DDX24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99682505,99695765,'NM_206918','DEGS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23829643,23838879,'NM_001136050','DHRS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23175412,23184688,'NM_182908','DHRS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23492804,23508328,'NM_021004','DHRS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23575549,23590420,'NM_001082488','DHRS4L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23508922,23545459,'NM_001193636','DHRS4L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',59681251,59701964,'NM_016029','DHRS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',94622317,94669593,'NM_001195573','DICER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',94693777,94716023,'NR_015415','DICER1-AS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',79733620,79747617,'NM_001242503','DIO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',101097440,101099542,'NM_001362','DIO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',101088312,101091766,'NR_002770','DIO3OS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54684586,54728149,'NM_001146015','DLGAP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100262954,100271220,'NM_003836','DLK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74418346,74440203,'NR_033814','DLST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49161641,49171698,'NM_018139','DNAAF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73181330,73240184,'NM_031427','DNAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',72206412,72430562,'NM_012074','DPF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',101500617,101586888,'NM_001376','DYNC1H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',34054885,34078694,'NM_018453','EAPP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20457339,20458175,'NR_033909','ECRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20283938,20286379,'NM_006683','EDDM3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20306425,20308947,'NM_022360','EDDM3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',89333221,89490842,'NM_145231','EFCAB11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22895450,22904682,'NM_032459','EFS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',33463171,33490035,'NM_022073','EGLN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74539364,74546047,'NM_014239','EIF2B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',66896786,66922986,'NM_004094','EIF2S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',102870245,102881114,'NM_001969','EIF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99329497,99478148,'NM_004434','EML1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',88150926,88328849,'NM_183387','EML5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73502933,73555779,'NM_001249','ENTPD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',68916592,68934774,'NM_004450','ERH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',52178354,52232169,'NM_014584','ERO1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',63763503,63830881,'NM_001040275','ESR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',75907442,76037933,'NM_004452','ESRRB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99601503,99680326,'NM_016337','EVL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',68728235,68780490,'NM_001193363','EXD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',102636233,102646647,'NM_001077594','EXOC3L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',56738946,56805370,'NM_006544','EXOC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23678013,23680637,'NM_016049','FAM158A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73469447,73486870,'NM_152445','FAM161B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74606051,74614552,'NM_024643','FAM164C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',34583863,34622340,'NM_001079519','FAM177A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',44501165,44613384,'NM_015091','FAM179B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93454992,93465707,'NM_138344','FAM181A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',66725862,66765020,'NM_173526','FAM71D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',44674885,44739843,'NM_020937','FANCM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',91405507,91483799,'NM_006329','FBLN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',38935327,38971455,'NM_203301','FBXO33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54807773,54890082,'NM_017943','FBXO34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74249602,74273143,'NM_015962','FCF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',52393738,52487565,'NM_001134999','FERMT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23670514,23671898,'NM_203402','FITM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',44654551,44673482,'NM_002013','FKBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',61107010,61191184,'NR_039985','FLJ22447'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',57801835,57834608,'NR_029434','FLJ31306'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',61653827,61670656,'NR_015358','FLJ43390'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',85066240,85164023,'NM_013231','FLRT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',75114692,75184265,'NM_017791','FLVCR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64523259,64599123,'NM_002028','FNTB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74815233,74818690,'NM_005252','FOS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',37128941,37134240,'NM_004496','FOXA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',28306037,28308622,'NM_005249','FOXG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',88692268,88953207,'NM_005197','FOXN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',51188325,51267194,'NM_152330','FRMD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',44043101,44046249,'NM_032135','FSCB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64947062,65280592,'NM_178156','FUT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',30098079,30158797,'NM_017769','G2E3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',87469110,87529368,'NM_000153','GALC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',68796433,68890943,'NM_020692','GALNTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54378473,54439292,'NM_000161','GCH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',38653238,38675928,'NM_003616','GEMIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95071075,95080808,'NM_016417','GLRX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54010958,54025494,'NM_004124','GMFB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23771942,23778287,'NM_016576','GMPR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',51396771,51506268,'NM_001243773','GNG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',52311660,52328136,'NM_198066','GNPNAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92330402,92376057,'NM_005113','GOLGA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',62849301,62855346,'NM_145171','GPHB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',66043877,66718278,'NM_020806','GPHN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104586781,104602799,'NM_013345','GPR132'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',58999992,59001812,'NM_022571','GPR135'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',52089615,52174181,'NM_001099652','GPR137C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',31021900,31026902,'NM_001197184','GPR33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',87541220,87550908,'NM_003608','GPR65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',90768628,90780605,'NM_001177676','GPR68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64475624,64479284,'NM_002083','GPX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',94304312,94306252,'NM_173849','GSC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76857458,76867693,'NM_001513','GSTZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',80716146,80757328,'NM_201595','GTF2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',24170001,24173272,'NM_004131','GZMB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',24145532,24148704,'NM_033423','GZMH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22485276,22496191,'NM_001166269','HAUS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73014941,73095404,'NM_001220484','HEATR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',30830744,30959539,'NM_015473','HEATR5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',30639074,30746440,'NM_015382','HECTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99181232,99212764,'NM_001127258','HHIPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',61231871,61284730,'NM_001530','HIF1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20747135,20807478,'NM_031314','HNRNPC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22812683,22825149,'NM_020834','HOMEZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',101616827,101675839,'NM_001017963','HSP90AA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64076938,64079707,'NM_021979','HSPA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93646831,93652786,'NM_001130080','IFI27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93617391,93638813,'NM_145249','IFI27L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93663870,93665710,'NM_032036','IFI27L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',75521848,75619845,'NM_052873','IFT43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22911909,22915452,'NM_022789','IL25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104226987,104256992,'NM_022489','INF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',35072998,35076011,'NM_032594','INSM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23719264,23727964,'NM_024658','IPO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76560638,76564787,'NM_024496','IRF2BPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23700261,23705614,'NM_006084','IRF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74030202,74032024,'NM_194279','ISCA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',77010490,77034963,'NM_182509','ISM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92473011,92652016,'NM_001142594','ITPK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92603549,92608231,'NR_002808','ITPK1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104679120,104706206,'NM_002226','JAG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74964812,75009157,'NM_130469','JDP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',59020913,59041834,'NM_016475','JKAMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23107083,23117849,'NM_032452','JPH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22510249,22521688,'NM_032876','JUB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',62243697,62581708,'NM_139318','KCNH5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',87716204,87807008,'NM_138318','KCNK10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',89597860,89721948,'NM_022054','KCNK13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23968980,23980387,'NM_015299','KHNYN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',105454882,105469547,'NR_026800','KIAA0125'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69148062,69251614,'NM_014734','KIAA0247'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104402694,104434152,'NM_015005','KIAA0284'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74197707,74249560,'NM_001039479','KIAA0317'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',34661526,34813021,'NM_014672','KIAA0391'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',57964462,58085302,'NM_014749','KIAA0586'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76634330,76653383,'NM_033426','KIAA1737'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103674812,103716988,'NM_015656','KIF26A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103165277,103222321,'NM_005552','KLC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49229572,49289620,'NM_172193','KLHDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49304536,49319606,'NM_014315','KLHDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',44463276,44500929,'NM_017658','KLHL28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19966809,19973641,'NM_001109997','KLHL33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',55116677,55221055,'NM_182926','KTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49778901,49848697,'NM_024884','L2HGDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54665687,54681901,'NM_002306','LGALS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92239904,92284800,'NM_005606','LGMN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73621408,73736870,'NM_001024674','LIN52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',106009499,106022574,'NR_027457','LINC00221'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',105815313,105816011,'NR_033375','LINC00226'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',66022861,66035024,'NR_024338','LINC00238'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',101266526,101268615,'NR_026774','LINC00239'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',94943356,94946180,'NR_026779','LINC00341'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',97168736,97222748,'NR_033943','LOC100129345'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',36710981,36712749,'NR_033240','LOC100129794'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',102723310,102725118,'NR_033938','LOC100131366'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',38804657,38806016,'NR_038935','LOC100288846'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69302752,69304183,'NR_029378','LOC100289511'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',27151633,27178682,'NR_039992','LOC100505967'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',30415135,30428765,'NR_038356','LOC100506071'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64626388,64630782,'NR_045122','LOC100506321'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',47303905,47333967,'NR_039996','LOC100506433'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95412861,95461661,'NR_038861','LOC100507043'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',79747514,79991563,'NR_038355','LOC100628307'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103383810,103394139,'NR_038436','LOC145216'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',71024330,71026173,'NR_027046','LOC145474'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',38288293,38455837,'NR_039982','LOC283547'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',50869860,50902025,'NR_038358','LOC283553'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',86441874,86458852,'NR_038445','LOC283585'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20738077,20744899,'NR_038971','LOC283624'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',88953450,88955890,'NR_036500','LOC400236'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',89991326,89995002,'NR_033986','LOC400238'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64947063,64949088,'NR_024334','LOC645431'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74830859,74832864,'NR_038421','LOC731223'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',41146513,41443504,'NM_152447','LRFN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22410799,22417131,'NM_014045','LRP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49135164,49151140,'NM_203467','LRR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23591045,23608777,'NM_138360','LRRC16B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23852152,23857082,'NM_181657','LTB4R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23849196,23851099,'NM_019839','LTB4R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74034638,74148787,'NM_000428','LTBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',70264606,70345641,'NM_033141','MAP3K9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49954960,50069126,'NM_006575','MAP4K5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54588114,54606665,'NM_144578','MAPK1IP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',102921453,103039919,'NM_001128921','MARK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64611597,64638980,'NM_145112','MAX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',35837514,35859633,'NM_016586','MBIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',46378577,46882188,'NM_182830','MDGA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23752982,23755116,'NM_001199822','MDP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',70120709,70137137,'NM_005466','MED6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100362197,100397113,'NR_003530','MEG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100430859,100443058,'NR_024149','MEG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20527804,20535034,'NM_022734','METTL17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49645099,49653047,'NM_024558','METTL21D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',21036121,21049297,'NM_019852','METTL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49157238,49159949,'NM_002408','MGAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104358582,104361100,'NR_024396','MGC23270'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',38772875,38792326,'NM_054024','MIA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',36736868,37090215,'NM_138731','MIPOL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100579066,100579151,'NR_031575','MIR1185-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100580287,100580372,'NR_031571','MIR1185-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100566141,100566219,'NR_036132','MIR1193'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100561653,100561741,'NR_031713','MIR1197'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',101096376,101096512,'NR_031649','MIR1247'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76802313,76802386,'NR_031661','MIR1260'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100419068,100419165,'NR_029696','MIR127'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100590776,100590849,'NR_029698','MIR134'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100420791,100420873,'NR_029699','MIR136'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100595844,100595928,'NR_029704','MIR154'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103653494,103653604,'NR_029620','MIR203'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22927644,22927715,'NR_029595','MIR208A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22957035,22957112,'NR_030624','MIR208B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100350580,100350664,'NR_039729','MIR2392'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100559883,100559946,'NR_029841','MIR299'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100577452,100577534,'NR_030582','MIR300'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',94674008,94674076,'NR_036131','MIR3173'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100561821,100561907,'NR_029890','MIR323'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100592308,100592390,'NR_036133','MIR323B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100562874,100562954,'NR_029967','MIR329-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100563189,100563273,'NR_029968','MIR329-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100410582,100410675,'NR_029889','MIR337'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99645744,99645843,'NR_029888','MIR342'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99843948,99844046,'NR_029906','MIR345'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103653507,103653593,'NR_039859','MIR3545'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100601687,100601757,'NR_029862','MIR369'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100576871,100576939,'NR_029868','MIR376A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100576158,100576238,'NR_030266','MIR376A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100576525,100576625,'NR_030157','MIR376B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100575779,100575845,'NR_029861','MIR376C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100598139,100598208,'NR_029869','MIR377'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100558155,100558222,'NR_029871','MIR379'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100561106,100561167,'NR_029872','MIR380'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100582009,100582084,'NR_029873','MIR381'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100590395,100590471,'NR_029874','MIR382'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100601389,100601468,'NR_029975','MIR409'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100602001,100602081,'NR_030156','MIR410'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100559414,100559510,'NR_030389','MIR411'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100601536,100601627,'NR_030155','MIR412'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',26447687,26447771,'NR_036193','MIR4307'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54414580,54414661,'NR_036194','MIR4308'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',102075733,102075816,'NR_036192','MIR4309'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100417096,100417210,'NR_029965','MIR431'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100420572,100420666,'NR_030173','MIR432'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100417975,100418068,'NR_029966','MIR433'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',36491264,36491347,'NR_039725','MIR4503'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73295202,73295275,'NR_039727','MIR4505'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64581158,64581240,'NR_039855','MIR4706'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22495998,22496078,'NR_039856','MIR4707'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64871588,64871654,'NR_039857','MIR4708'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74016588,74016660,'NR_039858','MIR4709'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104215075,104215131,'NR_039860','MIR4710'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100591508,100591581,'NR_030160','MIR485'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100588535,100588615,'NR_030162','MIR487A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100582544,100582628,'NR_030267','MIR487B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100405149,100405238,'NR_030172','MIR493'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100565723,100565804,'NR_030174','MIR494'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100569844,100569926,'NR_030175','MIR495'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100596662,100596764,'NR_030176','MIR496'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100583410,100583488,'NR_030256','MIR539'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100600584,100600668,'NR_030594','MIR541'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100568076,100568154,'NR_030619','MIR543'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',47299947,47300057,'NR_037503','MIR548Y'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',30553602,30553699,'NR_030354','MIR624'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100576308,100576389,'NR_030390','MIR654'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100585639,100585736,'NR_030391','MIR655'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100602813,100602891,'NR_030392','MIR656'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100411122,100411194,'NR_030617','MIR665'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100591347,100591413,'NR_030408','MIR668'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100562109,100562197,'NR_030406','MIR758'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100388479,100388577,'NR_030528','MIR770'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100583990,100584069,'NR_030595','MIR889'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',44742142,44792355,'NM_018353','MIS18BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74550219,74587988,'NM_014381','MLH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22375632,22386643,'NM_004995','MMP14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',60271211,60505151,'NM_002431','MNAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92718293,92721002,'NM_022151','MOAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',101764930,101841284,'NM_014226','MOK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',66777773,66872289,'NM_022474','MPP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22368931,22374086,'NM_178336','MRPL52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104957230,105008102,'NM_004689','MTA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',63924511,63996478,'NM_005956','MTHFD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',56805358,56826550,'NR_026895','MUDENG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22921038,22947326,'NM_002471','MYH6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22951786,22974710,'NM_000257','MYH7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',56927023,56949219,'NM_001011713','NAA30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20554761,20563775,'NM_201535','NDRG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',91652220,91657906,'NM_004545','NDUFB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23755896,23771416,'NM_006156','NEDD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23752982,23771416,'NM_001199823','NEDD8-MDP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74618570,74663531,'NM_033116','NEK9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49320281,49389289,'NM_004713','NEMF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23908141,23918650,'NM_001198966','NFATC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',34940466,34943711,'NM_020529','NFKBIA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76801586,76807408,'NM_021257','NGB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23008737,23017242,'NM_015514','NGDN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',51541269,51605696,'NM_007361','NID2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',50256230,50367589,'NM_020921','NIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',36055352,36058654,'NM_003317','NKX2-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',36118966,36121537,'NM_014360','NKX2-8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',25984928,26136800,'NM_002515','NOVA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76930117,76959152,'NM_001113475','NOXRED1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',32478209,33343133,'NM_173159','NPAS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74016395,74029837,'NM_006432','NPC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23619155,23623672,'NM_006177','NRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',78815406,79400513,'NM_001105250','NRXN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',31253525,31400180,'NM_001201574','NUBPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104710320,104718705,'NM_177533','NUDT14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',72811670,72995039,'NM_003744','NUMB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23937831,23958334,'NM_025081','NYNRIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',21171905,21172838,'NM_001005466','OR10G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',21107773,21108715,'NM_001005465','OR10G3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19735334,19736372,'NM_001005503','OR11G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',18447593,18448574,'NM_001013354','OR11H12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19250902,19252331,'NM_001197287','OR11H2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19780790,19781765,'NM_001004479','OR11H4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19761708,19762701,'NM_001004480','OR11H6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',21203136,21204078,'NM_001001912','OR4E2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19473606,19474682,'NM_001004063','OR4K1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19571842,19572757,'NM_001004714','OR4K13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19552259,19553192,'NM_001004712','OR4K14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19513517,19514564,'NM_001005486','OR4K15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19655405,19656437,'NM_001004715','OR4K17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19414266,19415211,'NM_001005501','OR4K2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19458605,19459577,'NM_001005483','OR4K5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19598043,19598982,'NM_001004717','OR4L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19318321,19319263,'NM_001005500','OR4M1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19365447,19366371,'NM_001004723','OR4N2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19681734,19682661,'NM_001004724','OR4N5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19285426,19286368,'NM_172194','OR4Q3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20692935,20694024,'NM_001004731','OR5AU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20178694,20179690,'NM_001001968','OR6S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19985046,19993107,'NM_017807','OSGEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93562476,93585029,'NM_023112','OTUB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',56337177,56346937,'NM_021728','OTX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',56349653,56467303,'NR_029385','OTX2OS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22305570,22310838,'NM_005015','OXA1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22859236,22865234,'NM_004643','PABPN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104838214,104935529,'NM_001243127','PACS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',72773957,72811100,'NM_173462','PAPLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',96038472,96103201,'NM_032632','PAPOLA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19881612,19895903,'NM_005484','PARP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',36196523,36216762,'NM_006194','PAX9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23633322,23639610,'NM_001018073','PCK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',70443874,70651852,'NM_014982','PCNX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',55654845,55837784,'NM_021255','PELI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74478285,74492220,'NM_002632','PGF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',67125775,67136770,'NM_004569','PIGH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104462231,104470618,'NM_138790','PLD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',66923452,66948581,'NM_016445','PLEK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69021223,69064968,'NM_001161498','PLEKHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64240945,64280813,'NM_015549','PLEKHG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',67069760,67126008,'NM_020715','PLEKHH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73248238,73250881,'NM_006029','PNMA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',38714137,38722173,'NM_002687','PNN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20007377,20016005,'NM_000270','PNP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49180019,49224848,'NM_001197330','POLE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76811051,76856978,'NM_013382','POMT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',18623364,18654942,'NR_027480','POTEG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19053953,19090272,'NM_001145442','POTEM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',59785718,59825025,'NM_177951','PPM1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103269840,103383680,'NM_015316','PPP1R13B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22834951,22841897,'NR_026862','PPP1R3E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',34624428,34661270,'NM_017917','PPP2R3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',101345892,101448715,'NM_178587','PPP2R5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',62911107,63079832,'NM_006246','PPP2R5E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93710401,93815825,'NM_058237','PPP4R4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93254396,93324519,'NM_178013','PRIMA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',60858267,61087451,'NM_006255','PRKCH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',29115437,29466650,'NM_002742','PRKD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22459572,22468501,'NM_006109','PRMT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',89112312,89113573,'NR_024620','PRO1768'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74389488,74400290,'NM_001243007','PROX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',44623051,44654554,'NM_017922','PRPF39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',72672895,72760152,'NM_000021','PSEN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',57781275,57808480,'NM_152132','PSMA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',34831324,34856431,'NM_002791','PSMA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22581215,22583109,'NM_001099780','PSMB11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22564899,22574194,'NM_001144932','PSMB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',89792646,89808719,'NM_002802','PSMC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',52243645,52264466,'NM_002806','PSMC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23675217,23678016,'NM_176783','PSME1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23682413,23685695,'NM_002818','PSME2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',51804180,51813192,'NM_000953','PTGDR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',51850765,51865072,'NM_000956','PTGER2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73388299,73421921,'NM_001146155','PTGR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',88001874,88090876,'NM_007039','PTPN21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',50441684,50480998,'NM_001163940','PYGL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64482284,64508628,'NM_198686','RAB15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20997018,21014672,'NM_001163380','RAB2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23804583,23810643,'NM_182836','RABGGTA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',67356248,68034351,'NM_002877','RAD51B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',35077308,35348183,'NM_014990','RALGAPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22439693,22458236,'NM_018107','RBM23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',72594973,72657829,'NM_021239','RBM25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',102128748,102266666,'NM_015156','RCOR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',67213270,67232263,'NM_016026','RDH11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',67238355,67270921,'NM_152443','RDH12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23711073,23719303,'NM_005132','REC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22422271,22426729,'NM_173527','REM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',71469538,72099215,'NM_001204422','RGS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',62740897,62828312,'NM_020663','RHOJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92049877,92225087,'NM_024832','RIN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23875066,23879082,'NM_006871','RIPK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20339354,20340876,'NM_198235','RNASE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20048470,20049121,'NM_001012975','RNASE10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20120891,20128257,'NM_145250','RNASE11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20128078,20128822,'NM_001024822','RNASE12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20570818,20572784,'NM_001012264','RNASE13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20493469,20494434,'NM_002934','RNASE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20429401,20430347,'NM_002935','RNASE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20226771,20238598,'NM_194431','RNASE4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20319049,20320466,'NM_005615','RNASE6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20580224,20582232,'NM_032572','RNASE7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20595891,20596356,'NM_138331','RNASE8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20094091,20098930,'NM_001110357','RNASE9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23686498,23699710,'NM_017999','RNF31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20825975,20889300,'NM_020366','RPGRIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',46189969,46190778,'NM_080746','RPL10L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',55302715,55304188,'NR_004844','RPL13AP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49155156,49157099,'NM_001001','RPL36AL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19881069,19881410,'NR_002312','RPPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49120039,49122844,'NM_001032','RPS29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',90430071,90596746,'NM_182398','RPS6KA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74440409,74458898,'NM_031464','RPS6KL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100416744,100420937,'NM_001134888','RTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',59132446,59167285,'NM_206852','RTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',21059071,21075177,'NM_005407','SALL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76913514,76927340,'NM_001010860','SAMD15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54104079,54329783,'NM_001161576','SAMD4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',50170109,50204773,'NM_021818','SAV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95069444,95069719,'NR_003002','SCARNA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',30161271,30274769,'NM_182835','SCFD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23978811,23981847,'NM_020195','SDR39U1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',38570873,38642188,'NM_006364','SEC23A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',81008991,81069958,'NM_005065','SEL1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93912836,93924906,'NM_000295','SERPINA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93819402,93829349,'NM_001100607','SERPINA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93978553,93988875,'NM_001080451','SERPINA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',94023372,94053934,'NM_173850','SERPINA12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',94176814,94183084,'NR_015340','SERPINA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',94148466,94160143,'NM_001085','SERPINA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',94097535,94105996,'NM_006215','SERPINA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',94117483,94129210,'NM_000624','SERPINA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93840337,93859441,'NM_001756','SERPINA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',93998810,94012423,'NM_001042518','SERPINA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',98933835,99016979,'NM_032233','SETD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',36012243,36052741,'NM_001101341','SFTA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',63220687,63264509,'NM_030791','SGPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',71065794,71275873,'NM_015556','SIPA1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104290514,104297041,'NM_006427','SIVA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',60181169,60185908,'NM_005982','SIX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',60246008,60260605,'NM_017420','SIX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',60045690,60048278,'NM_007374','SIX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69312304,69333759,'NM_003049','SLC10A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22885366,22891319,'NM_020372','SLC22A17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',91858677,92037578,'NM_153648','SLC24A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',36216876,36711616,'NM_001171170','SLC25A21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99827205,99842613,'NM_001039355','SLC25A29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99859431,99866468,'NM_207117','SLC25A47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',57100392,57402345,'NM_001206920','SLC35F4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',60517717,60620204,'NR_033344','SLC38A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20537253,20539874,'NR_033419','SLC39A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',68935159,68998860,'NM_018375','SLC39A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22312271,22358860,'NM_001126106','SLC7A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',22664343,22693450,'NM_182728','SLC7A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69580686,69725540,'NM_033262','SLC8A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',77244177,77253696,'NM_031210','SLIRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',90993708,91046397,'NM_032560','SMEK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69415866,69568836,'NM_001034852','SMOC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',61298827,61332899,'NM_003082','SNAPC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95069001,95070962,'NR_001459','SNHG10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',90662522,90662649,'NR_003709','SNORA11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',102873938,102874064,'NR_002964','SNORA28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',80738791,80738931,'NR_003021','SNORA79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100434009,100434086,'NR_003080','SNORD112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100460910,100460980,'NR_003229','SNORD113-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100463431,100463502,'NR_003230','SNORD113-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100466008,100466079,'NR_003231','SNORD113-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100472580,100472654,'NR_003232','SNORD113-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100474276,100474353,'NR_003233','SNORD113-5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100475645,100475719,'NR_003234','SNORD113-6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100477215,100477291,'NR_003235','SNORD113-7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100479540,100479613,'NR_003236','SNORD113-8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100481738,100481809,'NR_003237','SNORD113-9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100485922,100485993,'NR_003193','SNORD114-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100503141,100503212,'NR_003203','SNORD114-10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100504200,100504274,'NR_003204','SNORD114-11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100505037,100505111,'NR_003205','SNORD114-12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100505968,100506041,'NR_003206','SNORD114-13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100508192,100508266,'NR_003207','SNORD114-14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100508759,100508830,'NR_003208','SNORD114-15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100509684,100509753,'NR_003209','SNORD114-16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100510895,100510969,'NR_003210','SNORD114-17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100511914,100511985,'NR_003211','SNORD114-18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100512566,100512640,'NR_003212','SNORD114-19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100487945,100488022,'NR_003194','SNORD114-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100517093,100517164,'NR_003213','SNORD114-20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100518064,100518135,'NR_003214','SNORD114-21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100519015,100519086,'NR_003215','SNORD114-22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100519965,100520036,'NR_003216','SNORD114-23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100520866,100520937,'NR_003217','SNORD114-24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100522146,100522217,'NR_003218','SNORD114-25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100523135,100523206,'NR_003219','SNORD114-26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100524250,100524319,'NR_003220','SNORD114-27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100525219,100525290,'NR_003221','SNORD114-28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100526180,100526249,'NR_003222','SNORD114-29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100489438,100489512,'NR_003195','SNORD114-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100528008,100528079,'NR_003223','SNORD114-30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100529325,100529399,'NR_003224','SNORD114-31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100490433,100490537,'NR_003196','SNORD114-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100491459,100491528,'NR_003197','SNORD114-5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100493255,100493326,'NR_003198','SNORD114-6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100499143,100499219,'NR_003199','SNORD114-7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100500870,100500941,'NR_003200','SNORD114-8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',100502118,100502189,'NR_003201','SNORD114-9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19864439,19864538,'NR_003693','SNORD126'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',44649827,44649926,'NR_003691','SNORD127'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',70934806,70934877,'NR_001276','SNORD56B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20935291,20935400,'NR_002916','SNORD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20930149,20930252,'NR_003029','SNORD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',77253696,77297250,'NM_012245','SNW1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',34100368,34169066,'NM_021249','SNX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54563593,54585959,'NM_080867','SOCS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',49653595,49767849,'NM_006939','SOS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',87921740,87974557,'NM_018418','SPATA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64302869,64359619,'NM_000347','SPTB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',77042092,77152863,'NM_004863','SPTLC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',33971894,34001219,'NM_138288','SPTSSA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',34521854,34568524,'NM_003136','SRP54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69303586,69308475,'NM_006925','SRSF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',37746954,37752019,'NM_001049','SSTR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',80806661,80934680,'NM_033104','STON2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',30432755,30565358,'NM_014574','STRN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',24351143,24588935,'NM_014178','STXBP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',52266632,52311455,'NM_145251','STYX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20889470,20922265,'NM_007192','SUPT16H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73942348,73962558,'NM_001105579','SYNDIG1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',63750611,63762922,'NM_182913','SYNE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69902965,69953560,'NM_018373','SYNJ2BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',69861550,69953560,'NM_001202547','SYNJ2BP-COX16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',61532293,61638180,'NM_031914','SYT16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54950682,54977016,'NM_199047','TBPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',91316019,91372602,'NM_152332','TC2N'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95246056,95250286,'NM_001098725','TCL1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95222506,95228733,'NM_004918','TCL1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',95187267,95209542,'NR_028288','TCL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',89491998,89580861,'NM_018319','TDP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103464569,103588757,'NM_153046','TDRD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',101899052,102001761,'NM_001172631','TECPR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19903665,19951419,'NM_007110','TEP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',63881943,63884082,'NR_033777','TEX21P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104935964,104951241,'NM_001195082','TEX22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',75494194,75517845,'NM_003239','TGFB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23788159,23802256,'NM_000359','TGM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23095037,23098627,'NR_023314','THTPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',57945122,57963985,'NM_012460','TIMM9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23778690,23781720,'NM_001099274','TINF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23729083,23734722,'NM_001014842','TM9SF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74667923,74713102,'NM_006827','TMED10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76877866,76913149,'NM_213601','TMED8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',105063997,105067584,'NM_025268','TMEM121'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104131464,104142142,'NM_207379','TMEM179'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',67006735,67051774,'NM_182526','TMEM229B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',60813841,60818283,'NM_001017970','TMEM30B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19995851,19999477,'NM_144568','TMEM55B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76717854,76795591,'NM_020431','TMEM63C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',50776635,50794122,'NM_030755','TMX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',102662416,102673529,'NM_006291','TNFAIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',57932396,57945172,'NM_207377','TOMM20L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',21015174,21037159,'NM_014828','TOX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20568184,20570172,'NM_173846','TPPP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',102313568,102447590,'NM_003300','TRAF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',38686765,38709385,'NM_177452','TRAPPC6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',50532534,50632172,'NM_052978','TRIM9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',91503995,91576156,'NM_004239','TRIP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',60507919,60517535,'NM_020810','TRMT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103065261,103073163,'NM_152307','TRMT61A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',80491621,80682399,'NM_000369','TSHR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23744765,23747294,'NM_001184739','TSSK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',19827140,19843993,'NM_138376','TTC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',90076684,90352514,'NM_001010854','TTC7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',88360730,88414088,'NM_198309','TTC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',70178256,70211830,'NM_015351','TTC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',75197303,75491178,'NM_015072','TTLL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',51967057,52089051,'NM_001160047','TXNDC16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92743153,92765314,'NM_175748','UBR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',92869317,93243442,'NM_020818','UNC79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76297987,76319116,'NM_014909','VASH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',96333436,96417704,'NM_003384','VRK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73884918,73896464,'NM_018228','VRTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73775927,73799194,'NM_182894','VSX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',67187618,67211355,'NM_006370','VTI1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99869877,99911680,'NM_213646','WARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',54475405,54563569,'NM_007086','WDHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',101675941,101751094,'NM_001242415','WDR20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99912585,100066393,'NM_024515','WDR25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',63133509,63178344,'NM_080666','WDR89'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103233706,103251576,'NM_005432','XRCC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',74299821,74373766,'NM_019589','YLPM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',99774854,99814557,'NM_003403','YY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64041044,64070161,'NM_014950','ZBTB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',64023307,64040307,'NM_006977','ZBTB25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',104337977,104342093,'NM_001137601','ZBTB42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',88099005,88149606,'NM_207660','ZC3H14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',76667365,76677887,'NM_174976','ZDHHC22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',23059903,23090698,'NM_033400','ZFHX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',68324124,68330384,'NM_001244698','ZFP36L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',72505911,72523417,'NM_178441','ZFYVE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',103251833,103269758,'NM_024071','ZFYVE21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',67282989,67353059,'NM_015346','ZFYVE26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',20628044,20642703,'NM_001102454','ZNF219'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',73423070,73468744,'NM_021188','ZNF410'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr14',101855848,101878797,'NM_018335','ZNF839'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',65280420,65334128,'NM_024666','AAGAB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87432384,87546595,'NM_007011','ABHD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87147677,87219589,'NM_013227','ACAN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76250241,76314104,'NM_015162','ACSBG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32867588,32875219,'NM_005159','ACTC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41410163,41433388,'NM_001159280','ADAL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',56675801,56829469,'NM_001110','ADAM10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',98329165,98699706,'NM_139057','ADAMTS17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76838599,76890828,'NM_014272','ADAMTS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82113841,82499597,'NM_207517','ADAMTSL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70830760,70863179,'NR_023319','ADPGK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',86965530,86976516,'NM_022767','AEN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',84486245,85373287,'NM_152336','AGBL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76586960,76616770,'NM_001083612','AGPHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',80551132,80585378,'NR_026811','AGSK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',84021271,84093590,'NM_144767','AKAP13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',56032913,56093587,'NM_170697','ALDH1A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',99237531,99274353,'NM_000693','ALDH1A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',83160914,83217717,'NM_020778','ALPK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62991153,63038094,'NM_182703','ANKDD1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',77362200,77377636,'NM_001146341','ANKRD34C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38360936,38362079,'NM_001190479','ANKRD63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',66857928,66900315,'NM_006305','ANP32A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',66883213,66886494,'NR_026808','ANP32A-IT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',33316818,33317556,'NR_003144','ANP32AP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88129129,88159076,'NM_001150','ANPEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',58426641,58477477,'NM_001136015','ANXA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81125087,81175689,'NM_004644','AP3B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88174834,88238621,'NM_005829','AP3S2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',48988237,49085389,'NM_007347','AP4E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',27001131,27197808,'NM_001130414','APBA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',61356801,61388378,'NM_001145646','APH1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',56217699,56265402,'NM_020980','AQP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32935843,33049287,'NM_014691','AQR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',30694982,30715674,'NM_199357','ARHGAP11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',28706170,28718305,'NM_001039841','ARHGAP11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72620600,72677525,'NM_006465','ARID3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70553720,70665950,'NM_005744','ARIH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',78483746,78677332,'NM_014862','ARNT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',50626723,50648505,'NM_006628','ARPP19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',96304936,96318072,'NM_183376','ARRDC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',98960277,99009427,'NM_198243','ASB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',91139717,91141342,'NR_033769','ASB9P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23474952,23659442,'NM_024490','ATP10A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',47937726,48198711,'NM_024837','ATP8B4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',33450461,33625696,'NM_080650','ATPBD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',31945719,32118595,'NM_020371','AVEN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',42790976,42797649,'NM_004048','B2M'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38520702,38547733,'NM_014952','BAHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70765578,70817870,'NM_033028','BBS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',78040286,78050698,'NM_001114735','BCL2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',50189113,50192264,'NM_020396','BCL2L10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',89061582,89159690,'NM_000057','BLM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38167382,38185931,'NM_033503','BMF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81715658,81744472,'NM_001717','BNC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',57742353,57768934,'NM_004330','BNIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81476184,81527110,'NM_025238','BTBD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38240501,38300629,'NM_001211','BUB1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72979380,72986515,'NM_020447','C15orf17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22471633,22479686,'NM_018958','C15orf2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38462213,38473781,'NM_001142761','C15orf23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32163515,32181345,'NM_020154','C15orf24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',79213698,79228571,'NM_173528','C15orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',74139353,74284359,'NM_152335','C15orf27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32220166,32289589,'NM_024713','C15orf29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',90815910,90845351,'NM_153040','C15orf32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',47407883,47700410,'NM_152647','C15orf33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70455507,70458183,'NR_027262','C15orf34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',78002167,78004251,'NR_028330','C15orf37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88244835,88257226,'NM_182616','C15orf38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88174834,88257226,'NM_001199058','C15orf38-AP3S2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73281273,73291563,'NM_015492','C15orf39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81464148,81471397,'NR_027650','C15orf40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',34720097,34889741,'NM_032499','C15orf41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87919821,87972257,'NM_152259','C15orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43036194,43058713,'NM_152448','C15orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63658148,63690527,'NR_045105','C15orf44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43510054,43512939,'NM_197955','C15orf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',75303304,75304801,'NR_026813','C15orf5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',67914626,67922360,'NR_026764','C15orf50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38410944,38420460,'NM_207380','C15orf52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',36776090,36779531,'NM_207444','C15orf53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',37330176,37334340,'NM_207445','C15orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32425357,32437223,'NM_175741','C15orf55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38330159,38332402,'NM_001039905','C15orf56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38632589,38644544,'NM_052849','C15orf57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88578490,88586316,'NM_001013657','C15orf58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',71819193,71830869,'NM_001039614','C15orf59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',71522551,71639406,'NM_001042367','C15orf60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',65600575,65606695,'NM_001143936','C15orf61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38849450,38851939,'NM_001130448','C15orf62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41879910,41882061,'NM_001199885','C15orf63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',60146467,60150408,'NM_207322','C2CD4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',60243028,60244774,'NM_001007595','C2CD4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',61402782,61461128,'NM_001218','CA12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',66270096,66285502,'NM_001031733','CALML4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40484268,40491807,'NM_173090','CAPN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',42368200,42495251,'NM_177974','CASC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38673738,38742173,'NM_144508','CASC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41718925,41728331,'NM_172097','CATSPER2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41815433,41825788,'NR_002318','CATSPER2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72315719,72415535,'NM_025055','CCDC33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',57184575,57204536,'NM_004701','CCNB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41265429,41275521,'NM_037370','CCNDBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',53434712,53488000,'NM_020739','CCPG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',71763674,71793912,'NM_025240','CD276'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40803051,40816709,'NM_138477','CDAN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70364121,70399341,'NM_001172684','CELF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',46817426,46890635,'NM_014985','CEP152'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',98758122,98902448,'NM_178842','CERS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',55455996,55630213,'NM_032866','CGNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39032927,39036009,'NM_024111','CHAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',91244554,91372241,'NM_001271','CHD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39310728,39361375,'NM_007236','CHP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',28440734,28473156,'NM_148911','CHRFAM7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32048380,32144579,'NM_012125','CHRM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76674701,76700692,'NM_000743','CHRNA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76644916,76674666,'NM_000745','CHRNA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',30109982,30249676,'NM_000746','CHRNA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76703690,76720642,'NM_000750','CHRNB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38550451,38552649,'NM_130468','CHST14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',99533450,99609660,'NM_014918','CHSY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88574480,88578283,'NM_006384','CIB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76184045,76210933,'NM_006383','CIB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63275389,63290893,'NM_003613','CILP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41772375,41778712,'NM_001015001','CKMT1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41672543,41678896,'NM_020990','CKMT1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72694387,72709595,'NM_001130028','CLK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',66286383,66309134,'NM_017882','CLN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63229836,63264616,'NM_006660','CLPX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73415426,73419667,'NM_017828','COMMD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',47204762,47235146,'NM_001143887','COPS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',66658361,66807198,'NM_006091','CORO2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72999669,73017548,'NM_004255','COX5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81009005,81113783,'NM_030594','CPEB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72906003,72911189,'NM_001030005','CPLX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76419720,76427627,'NM_004378','CRABP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88874201,88989581,'NM_001042574','CRTC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72861477,72882592,'NM_001127190','CSK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',34878592,34897999,'NR_027320','CSNK1A1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62244768,62435495,'NM_022048','CSNK1G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73753717,73792244,'NM_001897','CSPG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',69189636,69194893,'NM_001102658','CT62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',42506870,42606721,'NM_016396','CTDSPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',77001146,77024475,'NM_004390','CTSH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',46271158,46283243,'NM_001145668','CTXN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',19267797,19270255,'NR_024387','CXADRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20444124,20555044,'NM_014608','CYFIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72417155,72447134,'NM_000781','CYP11A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',49287545,49418087,'NM_031226','CYP19A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72798935,72804930,'NM_000499','CYP1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72828236,72835994,'NM_000761','CYP1A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',61986287,62125574,'NM_014326','DAPK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',100334283,100336819,'NR_034090','DDX11L9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63740010,63871685,'NM_005848','DENND4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',86856717,86890916,'NR_026645','DET1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64372686,64413290,'NM_133375','DIS3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38437725,38450548,'NM_033510','DISP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',28275530,28294035,'NR_026771','DKFZP434L187'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39008822,39018550,'NM_019074','DLL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',49527212,49702259,'NM_015263','DMXL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76343541,76361593,'NM_018602','DNAJA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38847358,38886968,'NM_018163','DNAJC17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73807065,73872079,'NR_024595','DNM1P35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82626302,82630740,'NR_033787','DNM1P41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',98147883,98164655,'NR_003260','DNM1P46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63525050,63596662,'NM_197960','DPP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',47700517,47724625,'NM_020234','DTWD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43209483,43245066,'NM_175940','DUOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43172143,43193651,'NM_014080','DUOX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43196977,43209349,'NM_144565','DUOXA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43193814,43197593,'NM_207581','DUOXA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',46410912,46422862,'NM_001025249','DUT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',53509797,53587724,'NM_130810','DYX1C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',53434712,53578074,'NR_037923','DYX1C1-CCPG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72709951,72775439,'NM_001142444','EDC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',80209615,80342159,'NM_024580','EFTUD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39978930,40052047,'NM_139265','EHD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',46957581,46959672,'NM_014335','EID1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38013638,38115089,'NM_001013703','EIF2AK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',42616557,42642293,'NM_003758','EIF3J'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41852089,41856794,'NM_025165','ELL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41276717,41300615,'NM_000119','EPB42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',74295683,74390865,'NM_001127716','ETFA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39262222,39310187,'NM_152596','EXD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',78232287,78265979,'NM_000137','FAH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81445998,81450427,'NM_031452','FAM103A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',78774706,78835017,'NM_021214','FAM108C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',100312610,100314081,'NR_026819','FAM138E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',80342206,80364322,'NM_001008226','FAM154B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',96797913,96875134,'NM_182562','FAM169B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',90961682,91000035,'NM_207446','FAM174B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',27199746,27650219,'NM_015307','FAM189A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',56850684,56937026,'NM_001040453','FAM63B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',28183041,28211229,'NR_026858','FAM7A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',28183041,28211229,'NR_027470','FAM7A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',28183226,28211240,'NR_026859','FAM7A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',57517663,57603043,'NM_152450','FAM81A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38815377,38834750,'NM_018145','FAM82A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62151813,62173260,'NM_032231','FAM96A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',36533619,36561121,'NM_001042429','FAM98B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',28983367,29022602,'NM_014967','FAN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87588197,87661366,'NM_018193','FANCI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',46487794,46725277,'NM_000138','FBN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',61676604,61681673,'NM_203373','FBXL22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73983254,74010263,'NM_012170','FBXO22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',74012078,74012526,'NR_003136','FBXO22-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',66357194,66370694,'NM_015322','FEM1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',89228691,89240010,'NM_002005','FES'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',47502666,47566815,'NM_002009','FGF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',48428424,48434368,'NR_026891','FLJ10038'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',53488014,53498202,'NM_001198784','FLJ27352'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',98702184,98707961,'NR_028140','FLJ42289'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',30845038,31147377,'NM_001103184','FMN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',58083712,58085434,'NM_012182','FOXB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41953021,42274721,'NM_032892','FRMD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81225077,81271860,'NM_001007122','FSD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',37679523,37862331,'NM_152597','FSIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',89212888,89227691,'NM_002569','FURIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88690766,88693683,'NR_028287','GABARAPL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',48356680,48434897,'NM_005254','GABPB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',24663365,24777103,'NM_001165037','GABRA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',24339786,24570028,'NM_021912','GABRB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',24799174,25451968,'NM_033223','GABRG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',47249713,47409294,'NM_002044','GALK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40353657,40433156,'NM_198141','GANC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43440613,43458272,'NM_001482','GATM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38843576,38847203,'NM_005258','GCHFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',57691273,57699502,'NM_004751','GCNT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',55671393,55764854,'NM_001018100','GCOM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32831970,32833981,'NM_020660','GJD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',67240026,67351598,'NM_015554','GLCE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',49421004,49487501,'NM_181789','GLDN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',50200414,50259454,'NM_006578','GNB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72149250,72161944,'NM_001038640','GOLGA6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70734091,70746791,'NM_018652','GOLGA6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73337951,73352849,'NM_001164404','GOLGA6C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73362234,73375201,'NM_001145224','GOLGA6D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20287609,20297366,'NM_001001413','GOLGA6L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',80420177,80428761,'NM_001164465','GOLGA6L10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82848741,82861082,'NR_003246','GOLGA6L5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',18997107,19007128,'NM_001145004','GOLGA6L6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',80509239,80518641,'NM_198181','GOLGA6L9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32458561,32469293,'NM_181077','GOLGA8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32604775,32663063,'NR_027410','GOLGA8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',19027687,19041040,'NR_027411','GOLGA8C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20253648,20267092,'NR_027407','GOLGA8DP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20986510,20999864,'NR_033350','GOLGA8E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',26564556,26577184,'NR_033351','GOLGA8F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',26297378,26310766,'NR_033353','GOLGA8G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20806682,20814184,'NR_024074','GOLGA8IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',100199844,100208050,'NM_001195021','GPCRLTM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',37880222,38000385,'NM_007223','GPR176'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70239200,70277190,'NM_001012642','GRAMD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',30797496,30814162,'NM_001191323','GREM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',55786192,55797045,'NM_015532','GRINL1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',57717552,57737029,'NM_004492','GTF2A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87221522,87239774,'NM_178232','HAPLN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40628302,40649482,'NM_001130447','HAUS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',71399252,71448658,'NM_005477','HCN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',48321437,48345454,'NM_002112','HDC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',89275158,89276778,'NM_198527','HDDC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81597819,81667325,'NM_016073','HDGFRP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',61687869,61913200,'NM_003922','HERC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',26029782,26240890,'NM_004667','HERC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20833705,20929700,'NR_002824','HERC2P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',18873663,18971447,'NR_036432','HERC2P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20942162,20945384,'NR_036470','HERC2P7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',26698628,26729451,'NR_036443','HERC2P9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70422831,70455574,'NM_000520','HEXA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70755175,70765543,'NR_002780','HIGD2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',75500297,75565000,'NM_018200','HMG20A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43590625,43636220,'NR_022014','HMGN2P46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81314782,81412480,'NM_004839','HOMER2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',56770593,56772616,'NR_002927','HSP90AB4P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88428215,88446712,'NM_002168','IDH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76228773,76249939,'NM_005530','IDH3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63406517,63457431,'NM_004884','IGDCC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63460877,63502463,'NM_020962','IGDCC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',97010283,97325282,'NM_000875','IGF1R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',79376308,79392159,'NM_004513','IL16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73718480,73719719,'NM_018285','IMP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39058370,39195632,'NM_017553','INO80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22912784,22918716,'NR_023915','IPW'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',65334191,65386615,'NM_022784','IQCH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88732476,88846479,'NM_003870','IQGAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76517572,76580853,'NM_004136','IREB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',86983042,86999883,'NM_002201','ISG20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',74416201,74421871,'NM_145805','ISL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72253139,72256265,'NM_005545','ISLR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72209795,72216196,'NM_020851','ISLR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',66381095,66511546,'NM_001004439','ITGA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39573347,39583049,'NM_002220','ITPKA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38484977,38500804,'NM_001159508','IVD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39907574,39917077,'NM_001114632','JMJD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39907574,39927638,'NM_001198588','JMJD7-PLA2G4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63156206,63159329,'NM_001101362','KBTBD13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62444263,62460755,'NM_014736','KIAA0101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',77511912,77551697,'NM_015206','KIAA1024'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',78858766,79031054,'NM_018689','KIAA1199'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',50660809,50758112,'NM_019600','KIAA1370'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',67493680,67527818,'NM_004856','KIF23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87972204,87999686,'NM_198525','KIF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',29406374,29457394,'NM_015995','KLF13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',84103562,84139193,'NM_022480','KLHL25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',61201051,61209079,'NM_171846','LACTB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',68930821,68933552,'NM_197958','LARP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41407265,41410112,'NM_014793','LCMT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64627590,64644889,'NM_207338','LCTL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',57286333,57288001,'NM_033195','LDHAL6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',50017513,50051250,'NM_138792','LEO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',85921163,85923921,'NR_026869','LINC00052'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',67160243,67175217,'NR_026949','LINC00277'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',75692423,75711764,'NM_032808','LINGO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',98926950,98959968,'NM_001040616','LINS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',56511466,56648365,'NM_000236','LIPC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72892246,72905152,'NM_021819','LMAN1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23698599,23849360,'NR_040082','LOC100128714'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',48433662,48437795,'NR_024490','LOC100129387'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',61666961,61680079,'NR_034080','LOC100130855'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38118803,38136493,'NR_040061','LOC100131089'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',49023617,49026054,'NR_027642','LOC100132724'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',90912051,90916497,'NR_021493','LOC100144604'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70862228,70877593,'NR_040107','LOC100287559'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',71996861,72007180,'NR_040066','LOC100287616'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',30599340,30613234,'NR_036650','LOC100288615'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',28738211,28852501,'NR_038254','LOC100288637'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',100331044,100334331,'NR_028269','LOC100288778'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',26832429,26833579,'NR_036475','LOC100289656'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',47235786,47238114,'NR_036507','LOC100306975'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38773244,38774595,'NR_040058','LOC100505648'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82632245,82641989,'NM_001243531','LOC100505679'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',65483002,65601236,'NR_040051','LOC100506686'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82914883,82924416,'NR_038274','LOC100506874'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',91227529,91242981,'NR_037602','LOC100507217'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',33625687,33938494,'NR_038251','LOC100507466'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43458189,43459613,'NR_033252','LOC145663'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',54965659,54997989,'NR_015419','LOC145783'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',93777325,93852080,'NR_027132','LOC145820'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',67641112,67650833,'NR_026979','LOC145837'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',34943935,34966026,'NR_024264','LOC145845'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',75721160,75728636,'NM_001242772','LOC253044'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87722276,87742722,'NR_015411','LOC254559'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',55379854,55387259,'NR_024433','LOC283663'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20645771,20666695,'NR_040057','LOC283683'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',78342464,78421202,'NR_033833','LOC283688'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81191703,81205586,'NR_036446','LOC283693'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',29302262,29310342,'NM_001243538','LOC283710'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72205766,72208672,'NR_027073','LOC283731'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',86596964,86615301,'NR_038229','LOC283738'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87849164,87868269,'NR_027074','LOC283761'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81176276,81179799,'NR_034139','LOC338963'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',19410425,19463292,'NR_040094','LOC348120'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82658603,82689924,'NR_027001','LOC388152'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',93623522,93671333,'NR_034095','LOC400456'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72540658,72560686,'NR_038448','LOC440288'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',80927087,80943038,'NR_033579','LOC440297'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82651603,82669029,'NR_033738','LOC440300'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23912052,23922611,'NR_038851','LOC503519'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',42613994,42616390,'NR_034171','LOC645212'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',75993613,76006243,'NR_027024','LOC645752'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',18748010,18756825,'NR_038836','LOC646096'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',19185890,19194116,'NR_027053','LOC646214'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',26834020,26891023,'NR_037599','LOC646278'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76831433,76832789,'NR_036495','LOC646938'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82539942,82586357,'NR_036652','LOC648809'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',21151335,21164912,'NR_038843','LOC653061'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',28215281,28226687,'NR_033933','LOC653075'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',80741847,80773318,'NR_033936','LOC727849'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',19779395,19872452,'NR_015416','LOC727924'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41955315,41957661,'NR_003571','LOC728758'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39363492,39379087,'NR_026757','LOC729082'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72440945,72441435,'NR_045207','LOC729739'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',77271103,77363342,'NR_038997','LOC729911'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76072629,76073622,'NR_026998','LOC91450'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',96086849,96218663,'NR_024173','LOC91948'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72005841,72031531,'NM_005576','LOXL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32438380,32446687,'NM_153613','LPCAT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',97609174,97744021,'NM_144598','LRRC28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',68972072,69129490,'NM_001199018','LRRC49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40622011,40628294,'NM_153260','LRRC57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',99276982,99427840,'NM_024652','LRRK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39583131,39593377,'NM_001135685','LTK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',49802552,49830942,'NM_001143917','LYSMD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',98085134,98091149,'NM_152449','LYSMD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',21439788,21444086,'NM_019066','MAGEL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',89248423,89266819,'NM_006122','MAN2A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73435185,73447994,'NM_006715','MAN2C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41597097,41611110,'NM_002373','MAP1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64466264,64570936,'NM_002755','MAP2K1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',65622074,65886509,'NM_002757','MAP2K5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',50098702,50145754,'NM_002748','MAPK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39853923,39907345,'NM_001128608','MAPKBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',92642433,92828185,'NM_018349','MCTP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',97923655,98074152,'NM_005587','MEF2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63974687,64333129,'NM_032445','MEGF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',34970513,35180033,'NM_170677','MEIS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',79080349,79083400,'NM_022566','MESDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',79055149,79069260,'NM_015154','MESDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88094101,88095544,'NM_018670','MESP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88120592,88122986,'NM_001039958','MESP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',80121182,80125416,'NM_032246','MEX3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41884024,41904243,'NM_005926','MFAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87242917,87257667,'NM_001114614','MFGE8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39739901,39849433,'NM_001164273','MGA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',60716662,60724672,'NR_026897','MGC15885'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',86952341,86952432,'NR_031590','MIR1179'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32461561,32461643,'NR_036050','MIR1233-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32461561,32461643,'NR_036261','MIR1233-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',50356605,50356689,'NR_031670','MIR1266'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62841638,62841767,'NR_031674','MIR1272'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',84114730,84114813,'NR_031682','MIR1276'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41873148,41873249,'NR_031695','MIR1282'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',94677493,94677540,'NR_031715','MIR1469'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43512539,43512619,'NR_030599','MIR147B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',77289184,77289268,'NR_029705','MIR184'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',60903208,60903293,'NR_029709','MIR190'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',29144526,29144636,'NR_029624','MIR211'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',57250673,57250753,'NR_031750','MIR2116'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',91248632,91248709,'NR_036136','MIR3175'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',86956081,86956159,'NR_039867','MIR3529'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',33451748,33451857,'NR_037507','MIR3942'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39945984,39946041,'NR_036195','MIR4310'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64119624,64119724,'NR_036196','MIR4311'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',66881242,66881318,'NR_036197','MIR4312'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73841610,73841711,'NR_036198','MIR4313'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',21358301,21358371,'NR_039731','MIR4508'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20226511,20226605,'NR_039732','MIR4509-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20226511,20226605,'NR_039733','MIR4509-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20226511,20226605,'NR_039734','MIR4509-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',34006348,34006416,'NR_039735','MIR4510'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63798637,63798724,'NR_039736','MIR4511'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72868065,72868151,'NR_039738','MIR4513'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',79076812,79076869,'NR_039739','MIR4514'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81527090,81527171,'NR_039740','MIR4515'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',48439817,48439899,'NR_039862','MIR4712'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',49321678,49321753,'NR_039863','MIR4713'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',97145177,97145254,'NR_039864','MIR4714'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23644986,23645065,'NR_039865','MIR4715'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',47248558,47248642,'NR_039866','MIR4716'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',44584616,45037887,'NR_030330','MIR548A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',45037053,45037886,'NR_036097','MIR548U'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',78921373,78921469,'NR_030393','MIR549'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39771074,39771168,'NR_030356','MIR626'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40279059,40279156,'NR_030357','MIR627'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',53452429,53452524,'NR_030358','MIR628'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',68158764,68158861,'NR_030714','MIR629'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70666611,70666708,'NR_030359','MIR630'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73433004,73433079,'NR_030360','MIR631'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',86956059,86956169,'NR_029606','MIR7-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87712251,87712341,'NR_029692','MIR9-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',21361546,21364259,'NM_005664','MKRN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',54508220,54544627,'NM_018365','MNS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76952226,76977129,'NM_006791','MORF4L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72969462,72977618,'NM_002435','MPI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38611374,38612041,'NR_002208','MRPL42P5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',86803712,86811637,'NM_022163','MRPL46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',86811687,86822865,'NM_022839','MRPS11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63080902,63109030,'NM_139242','MTFMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',77922943,77976446,'NM_006441','MTHFS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',29018435,29071099,'NM_017762','MTMR10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',46218920,46257850,'NM_016132','MYEF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',57215854,57452363,'NM_004998','MYO1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',50386772,50608539,'NM_000259','MYO5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',50271806,50375287,'NM_018728','MYO5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',69905414,70197476,'NM_006901','MYO9A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',58499099,58558636,'NM_024611','NARG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',19134810,19221496,'NR_027992','NBEAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',21481646,21483543,'NM_002487','NDN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',27347644,27349312,'NM_138704','NDNL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39466842,39481934,'NM_016013','NDUFAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',53906413,53996621,'NM_198400','NEDD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73426383,73434641,'NM_024608','NEIL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',71131877,71384600,'NM_002499','NEO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',19386652,19399284,'NR_028506','NF1P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88609898,88616447,'NR_028052','NGRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20594719,20638284,'NM_001142275','NIPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20556124,20585868,'NM_030922','NIPA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82999363,83002806,'NM_021077','NMB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32421208,32422654,'NM_018648','NOP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',67094087,67136555,'NM_024505','NOX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',71639396,71712806,'NM_017455','NPTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',69889947,69897651,'NM_014249','NR2E3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',94675114,94684496,'NM_021005','NR2F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',74021382,74091840,'NM_138573','NRG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',86220991,86600966,'NM_002530','NTRK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39412183,39460540,'NM_018454','NUSAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62766825,62782515,'NM_002537','OAZ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',25673615,26018053,'NM_000275','OCA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73803373,73807082,'NM_175881','ODF3L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39388757,39412111,'NM_007280','OIP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',50836644,50869501,'NM_004498','ONECUT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',100175912,100176851,'NM_001001674','OR4F15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',100279867,100280785,'NM_001004195','OR4F4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',100163445,100164384,'NM_001005326','OR4F6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',19869841,19870925,'NM_001004719','OR4M2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',19914825,19915759,'NR_028067','OR4N3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',19883836,19885179,'NM_001005241','OR4N4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63124760,63132787,'NM_178859','OSTBETA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',29562620,29734834,'NM_130901','OTUD7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38296920,38356980,'NM_001128628','PAK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',67378347,67487030,'NM_017705','PAQR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22778233,22780030,'NR_022011','PAR-SN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22931881,22934293,'NR_022009','PAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23007931,23008273,'NR_022010','PAR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22781099,22784472,'NR_022008','PAR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63337489,63366071,'NM_017851','PARP16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70320575,70350682,'NM_020214','PARP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',42745221,42756378,'NM_001145112','PATL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',99741475,99847710,'NM_138322','PCSK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63196769,63213227,'NM_005707','PDCD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',83326208,83483376,'NM_173454','PDE8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41825881,41852096,'NM_005313','PDIA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',75187552,75499501,'NM_024776','PEAK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88027290,88034962,'NM_003847','PEX11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32181565,32183883,'NM_152595','PGBD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',97328981,97368547,'NM_001167902','PGPEP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38430525,38435926,'NM_001145643','PHGR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',66133625,66267458,'NM_016166','PIAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62894886,62904891,'NM_025049','PIF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',53398424,53435138,'NM_004855','PIGB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70278423,70309117,'NM_001206799','PKM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39918302,39927638,'NM_001114633','PLA2G4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40147172,40174044,'NM_178034','PLA2G4D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40061071,40130193,'NM_001206670','PLA2G4E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40220623,40236131,'NR_033151','PLA2G4F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38367389,38387466,'NM_004573','PLCB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43666708,43689201,'NM_012388','PLDN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62921134,62947254,'NM_001195059','PLEKHO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88008602,88023652,'NM_002666','PLIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72074066,72115788,'NM_033240','PML'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87660539,87679030,'NM_002693','POLG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',19305252,19336667,'NM_207355','POTEB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73102979,73130120,'NM_021823','PPCDC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62235066,62242407,'NM_000942','PPIB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41612951,41669743,'NM_001130859','PPIP5K1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38894934,38908199,'NM_001130143','PPP1R14D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',89310271,89338808,'NM_199414','PRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',53691030,53822469,'NM_173814','PRTG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76619801,76628618,'NM_002789','PSMA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',75074519,75116726,'NM_003978','PSTPIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63609879,63657746,'NM_016395','PTPLAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73546514,73658680,'NM_002833','PTPN9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22354396,22384019,'NR_026646','PWRN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',21961018,21966146,'NR_026647','PWRN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',53625512,53668342,'NM_015617','PYGO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63948850,63971383,'NM_001206836','RAB11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',53282456,53349884,'NM_004580','RAB27A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',61268780,61347026,'NM_016530','RAB8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38774618,38811648,'NM_001164270','RAD51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',77039343,77085057,'NM_153815','RASGRF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',36567593,36644299,'NM_005739','RASGRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63132727,63147441,'NM_016563','RASL12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62819147,62854823,'NM_194272','RBPMS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',89299109,89307359,'NM_033544','RCCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',75011016,75029656,'NM_002902','RCN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20047928,20072195,'NR_033735','REREP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',54170022,54322775,'NM_022841','RFX7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',91387639,91433447,'NM_020211','RGMA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87815643,87840803,'NM_016321','RHCG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38951703,38953779,'NM_133639','RHOV'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',87554101,87565926,'NM_000326','RLBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',57067156,57176545,'NM_017610','RNF111'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',58567774,58707021,'NM_002943','RORA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39596666,39623756,'NM_015540','RPAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64578706,64584247,'NM_000968','RPL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',67532212,67534938,'NM_213725','RPLP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73034495,73036828,'NM_017793','RPP25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',80608215,80611920,'NM_001021','RPS17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',80608215,80611920,'NM_001199057','RPS17L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',61232591,61236794,'NM_015920','RPS27L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38648828,38653953,'NM_152260','RPUSD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',53260803,53276523,'NM_016304','RSL24D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39496593,39563053,'NM_015138','RTF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',31390468,31945595,'NM_001036','RYR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72924249,72952723,'NM_005697','SCAMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73074928,73100889,'NM_001178112','SCAMP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82975694,82986698,'NR_003654','SCAND2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',74427581,74941340,'NM_001145923','SCAPER'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64426597,64426734,'NR_004388','SCARNA14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81221750,81221877,'NR_003011','SCARNA15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',49760841,49800515,'NM_013243','SCG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',30721161,30776590,'NM_001144757','SCG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',83013778,83060678,'NM_014300','SEC11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',47068127,47126052,'NM_014701','SECISBP2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',99628736,99635223,'NM_203472','SELS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88545565,88573896,'NM_198925','SEMA4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',45797977,45853712,'NM_020858','SEMA6D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72488682,72513352,'NM_003612','SEMA7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70197684,70220365,'NM_001172111','SENP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41871465,41875579,'NM_001199875','SERF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41871465,41882061,'NR_037673','SERF2-C15ORF63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41874456,41879547,'NM_001033517','SERINC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76171981,76183448,'NM_001101404','SH2D7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81907094,82078497,'NM_003027','SH3GL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',46903225,47042933,'NM_203349','SHC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43246703,43280665,'NM_138356','SHF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73448772,73531140,'NM_001145358','SIN3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',65904994,65913228,'NM_001031807','SKOR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',46285789,46383568,'NM_001184832','SLC12A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32309488,32398313,'NM_005135','SLC12A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63701322,63735652,'NM_004727','SLC24A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',46200460,46221881,'NM_205850','SLC24A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',48261684,48315881,'NM_001159629','SLC27A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',83228916,83240272,'NM_201651','SLC28A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43331719,43355424,'NM_004212','SLC28A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43561969,43602294,'NM_013309','SLC30A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',90197941,90510141,'NM_013272','SLCO3A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',56958535,57013144,'NM_024755','SLTM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',65217412,65274587,'NM_001145103','SMAD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64781727,64861391,'NR_027654','SMAD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40574795,40612551,'NM_130798','SNAP23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64569719,64577200,'NM_006049','SNAPC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22778233,22778308,'NR_001293','SNORD107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22783164,22783233,'NR_001292','SNORD108'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22838213,22838280,'NR_001295','SNORD109A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22838213,22838280,'NR_001289','SNORD109B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22966962,22967044,'NR_001291','SNORD115-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22974980,22975059,'NR_003302','SNORD115-10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22985653,22985735,'NR_003303','SNORD115-11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22974980,22975059,'NR_003304','SNORD115-12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22989560,22989642,'NR_003305','SNORD115-13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22991160,22991241,'NR_003306','SNORD115-14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22993815,22993896,'NR_003307','SNORD115-15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22995687,22995769,'NR_003308','SNORD115-16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22997562,22997644,'NR_003309','SNORD115-17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22997562,22997644,'NR_003310','SNORD115-18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22997562,22997644,'NR_003311','SNORD115-19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22968874,22968956,'NR_003294','SNORD115-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23002501,23002583,'NR_003312','SNORD115-20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23002501,23028708,'NR_003313','SNORD115-21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23006157,23006239,'NR_003314','SNORD115-22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23008035,23008117,'NR_003315','SNORD115-23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23009898,23009969,'NR_003495','SNORD115-24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23011780,23011862,'NR_003342','SNORD115-25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23014856,23014938,'NR_003343','SNORD115-26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23016742,23016818,'NR_003496','SNORD115-27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23018593,23018667,'NR_003497','SNORD115-28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22985653,22985735,'NR_003344','SNORD115-29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22971166,22971248,'NR_003295','SNORD115-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23021442,23021524,'NR_003345','SNORD115-30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23023348,23023430,'NR_003346','SNORD115-31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23025206,23025288,'NR_003347','SNORD115-32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23027077,23027159,'NR_003348','SNORD115-33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23028626,23028708,'NR_003349','SNORD115-34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23030486,23030568,'NR_003350','SNORD115-35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22985653,22985735,'NR_003351','SNORD115-36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23034225,23034307,'NR_003352','SNORD115-37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23036077,23036159,'NR_003353','SNORD115-38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23037985,23038067,'NR_003354','SNORD115-39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22973071,22973153,'NR_003296','SNORD115-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23039853,23039935,'NR_003355','SNORD115-40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23041717,23041799,'NR_003356','SNORD115-41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23043584,23043666,'NR_003357','SNORD115-42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22985653,22985735,'NR_003358','SNORD115-43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23047098,23047180,'NR_003359','SNORD115-44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23060766,23060819,'NR_003498','SNORD115-45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23064756,23064789,'NR_003499','SNORD115-47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23066022,23066098,'NR_003362','SNORD115-48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22974977,22975059,'NR_003297','SNORD115-5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22976736,22976818,'NR_003298','SNORD115-6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22978624,22978706,'NR_003299','SNORD115-7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22980545,22980627,'NR_003300','SNORD115-8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22974980,22975059,'NR_003301','SNORD115-9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22847715,22847812,'NR_003316','SNORD116-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22870352,22870456,'NR_003325','SNORD116-10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22872167,22872261,'NR_003326','SNORD116-11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22873289,22873383,'NR_003327','SNORD116-12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22875296,22875390,'NR_003328','SNORD116-13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22876380,22876474,'NR_003329','SNORD116-14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22877525,22877619,'NR_003330','SNORD116-15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22879006,22879100,'NR_003331','SNORD116-16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22879826,22879920,'NR_003332','SNORD116-17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22881623,22881717,'NR_003333','SNORD116-18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22879826,22879920,'NR_001290','SNORD116-19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22850448,22850545,'NR_003317','SNORD116-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22883900,22883994,'NR_003334','SNORD116-20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22885042,22885136,'NR_003335','SNORD116-21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22886161,22886255,'NR_003336','SNORD116-22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22888024,22888118,'NR_003337','SNORD116-23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22890275,22890369,'NR_003338','SNORD116-24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22893901,22893995,'NR_003339','SNORD116-25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22895737,22895835,'NR_003340','SNORD116-26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22897813,22897907,'NR_003341','SNORD116-27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22900880,22900973,'NR_003361','SNORD116-28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22902759,22902844,'NR_003360','SNORD116-29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22853098,22853195,'NR_003318','SNORD116-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22855776,22855874,'NR_003319','SNORD116-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22858571,22858668,'NR_003320','SNORD116-5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22861264,22861362,'NR_003321','SNORD116-6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22858571,22858668,'NR_003322','SNORD116-7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22866670,22866767,'NR_003323','SNORD116-8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22853098,22853195,'NR_003324','SNORD116-9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64582202,64582302,'NR_002440','SNORD16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64582636,64582706,'NR_002441','SNORD18A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64581413,64581483,'NR_002442','SNORD18B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64580643,64580710,'NR_002443','SNORD18C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22781339,22781406,'NR_001294','SNORD64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',99639237,99652983,'NM_003090','SNRPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22751227,22774822,'NM_003097','SNRPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73677478,73705501,'NM_005701','SNUPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',22751227,22774822,'NM_005678','SNURF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62175135,62223486,'NM_001242933','SNX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62230968,62236733,'NM_024798','SNX22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73728402,73738023,'NM_153271','SNX33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43102593,43154579,'NR_034039','SORD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43481810,43500908,'NM_024063','SPATA5L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',95127682,95129849,'NM_173499','SPATA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',67009892,67026204,'NM_145658','SPESP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',42642185,42743168,'NM_025137','SPG11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63042415,63068865,'NM_001127889','SPG21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38923537,38937145,'NM_003710','SPINT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',48787028,48845202,'NM_032802','SPPL2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',36332343,36436742,'NM_152594','SPRED1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39927635,39973567,'NM_016642','SPTBN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',43714547,43770771,'NM_021199','SQRDL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38115182,38118681,'NM_003134','SRP14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',77978236,78003151,'NR_037652','ST20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',77922943,78002503,'NM_001199760','ST20-MTHFS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',90738143,90812962,'NM_006011','ST8SIA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',79392061,79403579,'NM_181900','STARD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40655148,40800488,'NM_020759','STARD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72062612,72071688,'NM_004809','STOML1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72258860,72282273,'NM_022369','STRA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41679052,41698290,'NM_153700','STRC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',89444185,89645543,'NM_001167580','SV2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',97462808,97493323,'NM_015286','SYNM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',100011477,100082168,'NM_152334','TARSL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',71953020,71968608,'NM_153356','TBC1D21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76074381,76157049,'NM_015079','TBC1D2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',54998124,55368006,'NM_207037','TCF12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',54444935,54525364,'NM_198524','TEX9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41312084,41346347,'NM_201631','TGM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41355770,41381745,'NM_052955','TGM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',68960734,68971826,'NM_020147','THAP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',37660571,37676960,'NM_003246','THBS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',69220841,69862776,'NM_024817','THSD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64416061,64436108,'NM_017858','TIPIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',27779648,27901998,'NM_175610','TJP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',68127596,68177310,'NM_005078','TLE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',60726801,60923882,'NM_015059','TLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',99999571,100010117,'NM_078474','TM2D3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81567327,81597115,'NM_023003','TM6SF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',79411814,79453473,'NM_001080532','TMC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',36014748,36030915,'NM_152453','TMCO5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',77390545,77402244,'NM_007364','TMED3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',70477721,70487762,'NM_001080462','TMEM202'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41213013,41264633,'NM_024956','TMEM62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',32304536,32309644,'NM_016454','TMEM85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40290017,40353047,'NM_015497','TMEM87A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',49831049,49895850,'NM_014548','TMOD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',49909116,49991623,'NM_014547','TMOD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',49136090,49184765,'NM_207381','TNFAIP8L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41486703,41589999,'NM_005657','TP53BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',61121890,61145345,'NM_000366','TPM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',42815851,42847317,'NM_182985','TRIM69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62467055,62534555,'NM_016213','TRIP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',29080842,29181216,'NM_002420','TRPM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',48636643,48766304,'NM_017672','TRPM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',75123414,75150625,'NM_001168412','TSPAN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40823835,41000299,'NM_173500','TTBK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',97494050,97607338,'NM_022905','TTC23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88593767,88603316,'NM_001029964','TTLL13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41450604,41485532,'NM_014444','TUBGCP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20384835,20425332,'NM_052903','TUBGCP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',39638511,39658828,'NM_006293','TYRO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',74338684,74339548,'NR_028510','TYRO3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',68733946,68842904,'NM_018003','UACA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',63172394,63185750,'NM_001163692','UBAP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',73922676,73980443,'NM_173469','UBE2Q2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82871430,82915030,'NR_003661','UBE2Q2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',80434340,80494871,'NR_004847','UBE2Q2P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',80434340,80495259,'NR_024474','UBE2Q2P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',23133488,23235268,'NM_000462','UBE3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72525370,72540563,'NM_032907','UBL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41022389,41185578,'NM_174916','UBR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',72915511,72922605,'NM_001099436','ULK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',52092392,52708098,'NM_001080534','UNC13C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',89279218,89298327,'NM_018671','UNC45A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',61583862,61670716,'NM_006537','USP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',48580050,48626194,'NM_203494','USP50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',48503870,48580569,'NM_005154','USP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',59931881,60139956,'NM_020821','VPS13C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38973919,38983465,'NM_020857','VPS18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',89342777,89366837,'NM_018668','VPS33B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40238190,40287794,'NM_015289','VPS39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',100318538,100334331,'NR_003659','WASH3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',76362632,76378995,'NM_025234','WDR61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',51593229,51839151,'NM_182758','WDR72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82987014,82998525,'NM_032856','WDR73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41906403,41947909,'NM_001167941','WDR76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88035031,88087873,'NM_020212','WDR93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',81275026,81300667,'NM_001080435','WHAMM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',26781769,26802549,'NR_026589','WHAMMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',20739169,20759798,'NR_003521','WHAMMP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',78138964,78217790,'NM_019006','ZFAND6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',40492312,40537022,'NM_022473','ZFP106'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',38886565,38894059,'NM_001077268','ZFYVE19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',54709665,54813079,'NM_017661','ZNF280D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',83092821,83150667,'NM_014630','ZNF592'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',62578671,62765319,'NM_015042','ZNF609'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88345755,88426436,'NM_198526','ZNF710'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',33057833,33067789,'NM_014106','ZNF770'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',88696480,88705719,'NM_001004309','ZNF774'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',82945252,82951120,'NM_017894','ZSCAN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',41437661,41449550,'NM_152455','ZSCAN29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr15',64584484,64628876,'NM_017975','ZWILCH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68843797,68880913,'NM_001605','AARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',8714326,8785933,'NM_000663','ABAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2330923,2416701,'NR_003574','ABCA17P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2265879,2330748,'NM_001089','ABCA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',15950934,16144431,'NM_019898','ABCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',46758322,46826589,'NM_145186','ABCC11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',46674384,46738182,'NM_033226','ABCC12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',16222544,16224829,'NM_001079528','ABCC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',18490070,18517108,'NR_003569','ABCC6P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14823789,14826060,'NR_023387','ABCC6P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66248915,66252219,'NM_022914','ACD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87687717,87749672,'NR_023316','ACSF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20542059,20610079,'NM_052956','ACSM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20370359,20406492,'NM_001010845','ACSM2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20455583,20495196,'NM_001105069','ACSM2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20682812,20705139,'NM_202000','ACSM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20328356,20359782,'NM_017888','ACSM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82782223,82788273,'NM_139174','ADAD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',75873525,76026512,'NM_199355','ADAMTS18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',74189747,74214722,'NR_036460','ADAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',48879323,48909544,'NM_001114','ADCY7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3952650,4106187,'NM_001116','ADCY9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88566488,88594696,'NR_003228','AFG3L1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66073974,66075217,'NM_001138','AGRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31446703,31447625,'NM_016633','AHSP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',52082692,52094671,'NM_022476','AKTIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29983318,29989242,'NM_001127617','ALDOA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',5061810,5077381,'NM_019109','ALG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2510363,2519733,'NM_015944','AMDHD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54952864,55016945,'NM_001144','AMFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87861535,88084470,'NM_013275','ANKRD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',45060749,45160510,'NR_026556','ANKRD26P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4686511,4724164,'NM_133450','ANKS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21152516,21171251,'NM_145865','ANKS4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70320405,70400477,'NM_001128','AP1G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28413470,28417792,'NM_018690','APOBR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87403377,87405843,'NM_000485','APRT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',25135785,25147754,'NM_001169','AQP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',24838212,24934176,'NM_018054','ARHGAP17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',270606,273004,'NM_001176','ARHGDIG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55836538,55845046,'NM_012106','ARL2BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',18710491,18720358,'NM_015161','ARL6IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31377817,31385989,'NM_001105247','ARMC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29819647,29824878,'NM_181718','ASPHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',10430225,10484996,'NM_024997','ATF7IP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',79626958,79638452,'NM_015251','ATMIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28797309,28823331,'NM_004320','ATP2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82959633,83055294,'NM_014861','ATP2C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2503871,2510225,'NM_001694','ATP6V0C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66029417,66072590,'NM_004691','ATP6V0D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70437399,70448732,'NM_001137675','ATXN1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28741914,28756059,'NM_007245','ATXN2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',277440,342677,'NM_003502','AXIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65739505,65742403,'NM_033309','B3GNT9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1323606,1339443,'NM_001199097','BAIAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',86561124,86668425,'NM_001173543','BANP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55075759,55111509,'NM_031885','BBS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73820428,73857406,'NM_001170714','BCAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11821192,11830190,'NR_024050','BCAR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31027162,31031613,'NM_005881','BCKDK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30806616,30812900,'NM_004765','BCL7C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',79829796,79882248,'NM_017429','BCMO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65018316,65074246,'NM_001136106','BEAN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14634168,14670594,'NM_016561','BFAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29372414,29373786,'NM_001031827','BOLA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29372414,29373786,'NM_001039182','BOLA2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',48910429,48960346,'NM_001173984','BRD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',550422,555530,'NM_145270','C16orf11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',624429,626348,'NM_001040162','C16orf13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88622816,88623810,'NM_001214','C16orf3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1339241,1341874,'NM_001001410','C16orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',15435825,15589617,'NM_033201','C16orf45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',79644602,79668373,'NM_001100873','C16orf46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66254350,66258129,'NM_032140','C16orf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4500677,4528817,'NM_001199055','C16orf5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21926956,22003473,'NM_001164579','C16orf52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29735028,29741317,'NM_024516','C16orf53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29661286,29664841,'NM_175900','C16orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88251710,88265176,'NM_153025','C16orf55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56592777,56613028,'NM_024598','C16orf57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31408313,31427207,'NM_022744','C16orf58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2450115,2454965,'NM_025108','C16orf59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',79567199,79598003,'NM_020188','C16orf61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',19474237,19619986,'NM_020314','C16orf62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88301041,88314895,'NM_004913','C16orf7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65701415,65739943,'NM_025187','C16orf70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4724289,4739398,'NM_139170','C16orf71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',9093037,9121056,'NM_014117','C16orf72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1823984,1862180,'NM_001163560','C16orf73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',84298624,84342190,'NM_206967','C16orf74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',47965308,47990820,'NM_144602','C16orf78'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2199254,2201070,'NM_182563','C16orf79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56704997,56720797,'NM_013242','C16orf80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',26985719,26987988,'NM_001145545','C16orf82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66258217,66260162,'NM_001012984','C16orf86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',45393459,45422575,'NM_001001436','C16orf87'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',19625174,19636993,'NM_001012991','C16orf88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',5034123,5056147,'NM_001098514','C16orf89'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3483484,3485422,'NM_001080524','C16orf90'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1409944,1419346,'NM_001010878','C16orf91'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29942155,29943524,'NM_001109659','C16orf92'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30678858,30681066,'NM_001195620','C16orf93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',85893904,85908527,'NM_001195125','C16orf95'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4546491,4590319,'NM_001145011','C16orf96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1078226,1086245,'NM_207419','C1QTNF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',86479125,86527613,'NM_001739','CA5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65436341,65445550,'NM_001014435','CA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1143241,1211773,'NM_021098','CACNA1H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',24174374,24281238,'NM_006539','CACNG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',69950116,69981843,'NM_007088','CALB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54158084,54159093,'NM_032330','CAPNS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',8854302,8869749,'NM_001042476','CARHSP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2167184,2186466,'NM_020764','CASKIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87468763,87535109,'NM_175931','CBFA2T3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65620550,65692459,'NM_022845','CBFB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',47869329,47873243,'NM_004352','CBLN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28472749,28510612,'NM_138414','CCDC101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56103590,56127978,'NM_033212','CCDC102A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56841340,56875235,'NM_014157','CCDC113'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56286213,56322868,'NM_032269','CCDC135'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1424389,1434491,'NM_001143980','CCDC154'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3017868,3025543,'NM_001103175','CCDC64B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',712582,716474,'NM_001031737','CCDC78'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65346379,65393024,'NM_001136505','CCDC79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55996179,56007475,'NM_002987','CCL17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55950195,55957603,'NM_002990','CCL22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2419395,2448860,'NM_001761','CCNF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',19442679,19472229,'NM_001199022','CCP110'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28850760,28858169,'NM_001178098','CD19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30269587,30274183,'NM_006110','CD2BP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67328695,67426945,'NM_004360','CDH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',63538183,63713420,'NM_001797','CDH11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',81217899,81772131,'NM_001220492','CDH13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87765663,87789401,'NM_004933','CDH15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65499525,65510388,'NM_001204744','CDH16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67235651,67290458,'NM_001793','CDH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',64958025,64996190,'NM_001795','CDH5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',60243415,60628240,'NM_001796','CDH8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29777178,29782079,'NM_006319','CDIPT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88280576,88290273,'NM_052988','CDK10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',22264757,22293439,'NM_001802','CDR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87397686,87403167,'NM_030928','CDT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',79195176,79395676,'NM_152342','CDYL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2520036,2521410,'NM_001048212','CEMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88563683,88566741,'NM_145039','CENPBD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',79597603,79613988,'NM_018455','CENPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66419560,66438862,'NM_025082','CENPT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54394264,54424576,'NM_001025194','CES1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54352011,54366327,'NR_003276','CES1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54316337,54341624,'NR_033740','CES1P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65525847,65536495,'NM_198061','CES2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65558878,65566553,'NM_001185176','CES3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65591916,65601160,'NM_001190201','CES4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54437566,54466783,'NM_001143685','CES5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55553335,55575257,'NM_000078','CETP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73885108,74024888,'NM_006324','CFDP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',51646445,51918915,'NM_025134','CHD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88238344,88251630,'NM_002768','CHMP1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23673448,23677757,'NM_022097','CHP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70117654,70129994,'NM_001166395','CHST4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',74119928,74126569,'NM_024533','CHST5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',74064522,74086427,'NM_021615','CHST6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',778622,788075,'NM_022092','CHTF18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67709412,67723572,'NM_001040146','CHTF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56019587,56038870,'NM_020313','CIAPIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',10878555,10926341,'NM_000246','CIITA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67723999,67760438,'NM_032830','CIRH1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65143966,65157691,'NM_016326','CKLF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65143966,65170539,'NM_001204099','CKLF-CMTM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1434935,1465086,'NM_001287','CLCN7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3004713,3008189,'NM_021195','CLDN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3002457,3004507,'NM_020982','CLDN9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',10945845,11183547,'NM_015226','CLEC16A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68542126,68555390,'NM_001136214','CLEC18A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73000029,73012869,'NM_001011880','CLEC18B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68765428,68778299,'NM_173619','CLEC18C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',76613943,76623502,'NM_005752','CLEC3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28396100,28410904,'NM_000086','CLN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3490963,3526586,'NM_015041','CLUAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',80036275,80302868,'NM_198390','CMIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65157794,65170539,'NM_181270','CMTM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65170851,65179678,'NM_144673','CMTM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65195435,65205296,'NR_037613','CMTM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65206153,65288111,'NM_181521','CMTM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56546080,56562521,'NM_001135639','CNGB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',57134732,57221251,'NM_206999','CNOT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',74868676,75150636,'NM_033401','CNTNAP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',69071972,69114958,'NM_001195139','COG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23307314,23372013,'NM_153603','COG7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67920024,67931027,'NM_032382','COG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',18986417,18998918,'NM_016138','COQ7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56038837,56052688,'NM_020312','COQ9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30102231,30107898,'NM_001193333','CORO1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4344543,4406963,'NM_024535','CORO7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4330252,4406963,'NM_001201479','CORO7-PAM16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',83156704,83209170,'NM_021149','COTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',84390673,84398108,'NM_001861','COX4I1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',84369731,84390649,'NM_006067','COX4NB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31346552,31347250,'NM_005205','COX6A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55683955,55739379,'NM_152727','CPNE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88169676,88191155,'NM_153636','CPNE7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',12661156,12805245,'NM_001099455','CPPED1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1604641,1667910,'NM_020825','CRAMP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3715056,3870122,'NM_004380','CREBBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',83411087,83500617,'NM_031476','CRISPLD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',53510278,53520580,'NR_034105','CRNDE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21177339,21221905,'NM_001888','CRYM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21219670,21237413,'NR_026675','CRYM-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31486588,31488346,'NR_027011','CSDAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56749312,56789283,'NM_001896','CSNK2A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66153810,66230589,'NM_001191022','CTCF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30815428,30822382,'NM_001142544','CTF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73810384,73816323,'NM_001906','CTRB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73795494,73798573,'NM_001025200','CTRB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66520973,66523279,'NM_001907','CTRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87300391,87309287,'NM_001012759','CTU2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55963914,55976457,'NM_002996','CX3CL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68015998,68057668,'NM_030579','CYB5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87237197,87244958,'NM_000101','CYBA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',49333461,49393347,'NM_001042355','CYLD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88598779,88613438,'NM_001042610','DBNDD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23560187,23569969,'NM_001199011','DCTN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30342519,30348874,'NM_024096','DCTPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20776896,20819062,'NM_173475','DCUN1D3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1554,4090,'NR_045117','DDX11L10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68938324,68964782,'NM_018332','DDX19A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68890572,68925232,'NM_007242','DDX19B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66612677,66615271,'NM_018380','DDX28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',391858,402488,'NM_020664','DECR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88542639,88553275,'NM_017702','DEF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',10930248,10943758,'NM_014015','DEXI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70600143,70616817,'NM_001361','DHODH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70685115,70704312,'NM_014003','DHX38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54784029,54785938,'NR_026889','DKFZP434H168'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82736365,82769025,'NM_178452','DNAAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20851976,21078263,'NM_017539','DNAH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',45546774,45565126,'NM_005880','DNAJA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4415806,4446776,'NM_001135110','DNAJA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3642940,3648097,'NM_005223','DNASE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2226468,2228713,'NM_001374','DNASE1L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29924335,29929902,'NM_003586','DOC2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56063370,56077886,'NM_018110','DOK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88207216,88232340,'NM_001128141','DPEP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66578793,66590865,'NM_022355','DPEP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66567066,66571953,'NM_001129758','DPEP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66614704,66670685,'NM_017803','DUS2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65312299,65343026,'NM_006141','DYNC1LI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',79132354,79142042,'NM_130897','DYNLRB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65783568,65790322,'NM_001950','E2F4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2213567,2225744,'NM_004424','E4F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23440834,23476197,'NR_003501','EARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2229873,2241603,'NM_001919','ECI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66464499,66475907,'NM_014329','EDC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',22125092,22207567,'NM_013302','EEF2K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28298403,28322666,'NM_003752','EIF3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28298400,28322663,'NM_001099661','EIF3CL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65790528,65795428,'NM_024712','ELMO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1763229,1766240,'NM_001010865','EME2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',10529779,10582040,'NM_001424','EMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',13921514,13953706,'NM_005236','ERCC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20715164,20725296,'NM_001142725','ERI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23609126,23632322,'NM_033266','ERN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66819950,66827637,'NM_024939','ESRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65775782,65781608,'NM_178516','EXOC3L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68841634,68843334,'NM_058219','EXOSC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73304356,73366230,'NM_024306','FA2H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1817225,1818909,'NM_031208','FAHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4598884,4604928,'NM_145253','FAM100A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',711158,712591,'NM_023933','FAM173A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',10768033,10820122,'NM_001079512','FAM18A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55743878,55777477,'NM_024946','FAM192A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',631849,638475,'NM_138418','FAM195A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29943248,29949687,'NM_031478','FAM57B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66120217,66138192,'NM_024519','FAM65A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',5074301,5087790,'NM_201400','FAM86A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',83689465,83703615,'NM_198491','FAM92B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65523458,65525821,'NM_016062','FAM96B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88331459,88410566,'NM_000135','FANCA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30583278,30589632,'NM_001105079','FBRS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',682500,695826,'NM_153350','FBXL16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30843396,30867605,'NM_001099784','FBXL19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30838140,30842091,'NR_024348','FBXL19-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65751391,65755578,'NM_018378','FBXL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',85920442,85983209,'NR_024568','FBXO31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65820792,65838926,'NM_013241','FHOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',27187026,27209290,'NR_037184','FLJ21408'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',34838423,34848496,'NR_033985','FLJ26245'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',85146426,85148406,'NR_026674','FLJ30679'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3253768,3257567,'NR_033904','FLJ39639'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2628983,2636131,'NR_024492','FLJ42627'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2901980,2941210,'NM_032296','FLYWCH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2873196,2889384,'NM_138439','FLYWCH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',15867077,15889948,'NM_144600','FOPNL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',85158357,85160038,'NM_005251','FOXC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',85101633,85105571,'NM_001451','FOXF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',85169615,85172805,'NM_005250','FOXL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',52295375,52705880,'NM_001080432','FTO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',69873703,69880816,'NM_001099642','FTSJD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',69045998,69071678,'NM_145059','FUK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31098931,31113693,'NM_001170634','FUS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',74157749,74169280,'NM_007285','GABARAPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87407642,87450875,'NM_000512','GALNS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',79906071,79971304,'NM_022041','GAN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88616508,88638853,'NR_023348','GAS8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',79673052,79687481,'NM_004483','GCSH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',19420515,19440951,'NM_016641','GDE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30023631,30032379,'NM_024307','GDPD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1974150,1977751,'NM_005262','GFER'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66265936,66310774,'NM_030819','GFOD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23382363,23429316,'NM_015044','GGA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',84268780,84280089,'NM_016095','GINS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56983798,56997549,'NM_022770','GINS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73038826,73198543,'NR_027265','GLG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4322225,4329599,'NM_032575','GLIS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4793204,4837304,'NM_032569','GLYR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54782751,54948857,'NM_020988','GNAO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',788041,790734,'NM_016541','GNG13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1341900,1353353,'NM_032520','GNPTG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',57298535,57325747,'NM_002080','GOT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20229311,20246336,'NM_001502','GP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56134101,56168601,'NM_153837','GPR114'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',19950543,19992601,'NM_001002911','GPR139'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56219919,56256445,'NM_001145771','GPR56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56259657,56280791,'NM_170776','GPR97'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',19777793,19803652,'NM_016235','GPRC5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',45475808,45522702,'NM_133443','GPT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',9754765,10184112,'NM_000833','GRIN2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',27706350,27982331,'NM_001109763','GSG1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11869485,11917326,'NM_001130006','GSPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',27379434,27468752,'NM_001520','GTF3C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1799104,1817196,'NM_005326','HAGH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',717266,719716,'NM_032304','HAGHL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67697629,67710120,'NM_138612','HAS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',166678,167520,'NM_000558','HBA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',162845,163709,'NM_000517','HBA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',155972,156767,'NM_001003938','HBM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',170332,171178,'NM_005331','HBQ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',142853,144504,'NM_005332','HBZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3012626,3014288,'NM_001002018','HCFC1R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',48657381,48696876,'NM_182922','HEATR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',32070109,32071375,'NR_002827','HERC2P4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55523248,55535294,'NM_014685','HERPUD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29911142,29914918,'NM_001197323','HIRIP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4485859,4500349,'NM_001127205','HMOX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1668278,1692074,'NM_144570','HN1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70646008,70652456,'NM_005143','HP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70654625,70668646,'NM_020995','HPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',22733360,22835160,'NM_006043','HS3ST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',25610847,26056510,'NM_006040','HS3ST4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1901465,1908232,'NM_001009606','HS3ST6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82399093,82404095,'NM_001537','HSBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66022536,66028955,'NM_000196','HSD11B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',80626358,80689640,'NM_002153','HSD17B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30904019,30907974,'NM_025193','HSD3B7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82713244,82736301,'NM_031463','HSDL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65754788,65761349,'NM_001040667','HSF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',71683748,71685173,'NR_027756','HTA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',69618513,69822093,'NM_017558','HYDIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1500428,1602110,'NM_014714','IFT140'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1780414,1784910,'NR_027389','IGFALS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21560105,21571488,'NM_005849','IGSF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87232501,87234383,'NM_013278','IL17C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',27346079,27370864,'NM_021798','IL21R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28418183,28425656,'NM_145659','IL27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3055313,3059669,'NM_004221','IL32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',69171298,69252086,'NM_001172771','IL34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',27232751,27283600,'NM_000418','IL4R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29915031,29924613,'NM_173618','INO80E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',19635278,19776360,'NM_153208','IQCK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',84490274,84513712,'NM_002163','IRF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',52874712,52877879,'NM_024336','IRX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',53522611,53525896,'NM_005853','IRX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',53915971,53922173,'NM_024335','IRX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70486946,70520407,'NM_014761','IST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',45746798,46052516,'NM_030790','ITFG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',224801,256120,'NM_032039','ITFG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31312133,31345327,'NM_005353','ITGAD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30391483,30442007,'NM_001114380','ITGAL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31178788,31251714,'NM_001145808','ITGAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31274009,31301819,'NM_000887','ITGAX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',19032754,19040453,'NR_028028','ITPRIPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',27122307,27140590,'NM_024773','JMJD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',671667,674440,'NM_001005920','JMJD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',86193999,86289262,'NM_020655','JPH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',74219122,74239086,'NM_005548','KARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31036485,31050215,'NM_182958','KAT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56327160,56348663,'NM_005886','KATNB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82812241,82830857,'NM_172347','KCNG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29825161,29845046,'NM_178863','KCTD13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65880893,65918162,'NM_001100915','KCTD19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2672495,2699032,'NM_018992','KCTD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',84204424,84267313,'NM_014615','KIAA0182'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',15595726,15644524,'NM_001184999','KIAA0430'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',83618910,83685329,'NM_014732','KIAA0513'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',27468968,27699193,'NM_015202','KIAA0556'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31619434,31626246,'NR_024034','KIAA0664L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65767005,65775384,'NM_001040715','KIAA0895L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',83067466,83095789,'NM_020947','KIAA1609'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',89374,104032,'NM_007317','KIF22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56349629,56393940,'NM_005550','KIFC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',86298918,86357099,'NM_001184854','KLHDC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',83239631,83253417,'NM_024731','KLHL36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2954217,2958382,'NM_024507','KREMEN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28903887,28909605,'NM_014387','LAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66531287,66535516,'NM_000229','LCAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',25030547,25097052,'NM_016309','LCMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73703258,73708171,'NM_153486','LDHD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',516847,517408,'NR_024121','LINC00235'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1868286,1874233,'NR_033914','LINC00254'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',33868552,33870004,'NR_038368','LINC00273'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87753128,87757584,'NR_024347','LINC00304'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',83874064,83879186,'NR_038859','LINC00311'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11549078,11588307,'NM_001136473','LITAF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',965761,971319,'NR_036442','LMF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2727077,2742602,'NR_027275','LOC100128788'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88305764,88312074,'NR_036480','LOC100128881'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',80256459,80258380,'NR_045112','LOC100129617'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88633669,88641534,'NR_027335','LOC100130015'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',34596958,34598341,'NR_034018','LOC100130700'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',69346463,69364655,'NR_034083','LOC100130894'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',22432344,22455342,'NM_001135865','LOC100132247'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',372241,382961,'NR_024453','LOC100134368'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21783121,21785557,'NR_024456','LOC100190986'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30032933,30033327,'NR_027081','LOC100271831'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21365504,21421103,'NR_027155','LOC100271836'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87915041,87919019,'NM_001242885','LOC100287036'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',50674477,50676522,'NR_038233','LOC100505619'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68907043,68938151,'NR_039997','LOC100506083'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',71978204,72012796,'NR_038234','LOC100506172'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',25059392,25067854,'NR_039998','LOC100506655'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2648390,2663441,'NR_040023','LOC100507321'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4235826,4243791,'NR_039999','LOC100507501'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',46947096,46954411,'NR_040677','LOC100507577'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',5023703,5032973,'NR_038913','LOC100507589'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1054082,1068732,'NR_027242','LOC146336'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',34569285,34572468,'NR_026980','LOC146481'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',84877537,84884496,'NR_038438','LOC146513'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54684399,54782507,'NR_027078','LOC283856'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',63875902,64167704,'NR_027755','LOC283867'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2979055,2984511,'NR_033861','LOC283875'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',27366491,27372215,'NR_037158','LOC283888'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',34455287,34483585,'NR_027080','LOC283914'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',72923804,72959654,'NR_026950','LOC283922'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29383789,29386400,'NR_002556','LOC388242'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',50617764,50665348,'NM_001242473','LOC388276'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',32208368,32208803,'NR_033866','LOC390705'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',83728256,83740550,'NR_033984','LOC400548'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',85065631,85099967,'NR_033925','LOC400550'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4778398,4786283,'NR_029453','LOC440335'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29446429,29485041,'NR_002473','LOC440354'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29782504,29786875,'NR_024370','LOC440356'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',24950562,24951599,'NR_038379','LOC554206'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30186414,30254196,'NR_002453','LOC595101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29368166,29368737,'NR_002454','LOC606724'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30141850,30164433,'NR_002555','LOC613037'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29383789,29386400,'NR_002557','LOC613038'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',22355829,22411042,'NR_027154','LOC641298'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',51143499,51198388,'NR_033920','LOC643714'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',51960774,51962542,'NM_001207030','LOC643802'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',58345545,58346596,'NR_028471','LOC644649'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2593385,2620496,'NR_015441','LOC652276'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',33113085,33115060,'NM_001205259','LOC653550'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',22464519,22495687,'NR_003676','LOC653786'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',83877415,83894503,'NR_038858','LOC727710'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',32172150,32174744,'NM_001243722','LOC729264'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68810984,68817437,'NR_033959','LOC729513'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',84922956,84936786,'NR_024406','LOC732275'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20725267,20768491,'NM_001199053','LOC81691'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',46835711,46944908,'NM_031490','LONP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54100413,54178083,'NM_017839','LPCAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65798542,65818402,'NM_001004055','LRRC29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65938758,65976610,'NM_001161575','LRRC36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',178974,219450,'NM_201412','LUC7L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20819057,20843834,'NM_020424','LYRM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',78185245,78192123,'NM_005360','MAF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',85983301,85995881,'NM_022818','MAP1LC3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30032926,30042131,'NM_002746','MAPK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1696221,1760319,'NM_015133','MAPK8IP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70217570,70233369,'NM_001017967','MARVELD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29725355,29730005,'NM_002383','MAZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82644869,82708018,'NM_003791','MBTPS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88511787,88514886,'NM_002386','MC1R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3232028,3246628,'NM_001198536','MEFV'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',705173,707481,'NM_024042','METRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',8623027,8647580,'NM_024109','METTL22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21518356,21576293,'NM_016025','METTL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87257281,87269415,'NR_024402','MGC23284'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3100461,3105600,'NR_024167','MGC3771'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4614825,4680976,'NM_001142289','MGRN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2080196,2080286,'NR_030646','MIR1225'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55449930,55450014,'NR_029680','MIR138-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68524484,68524584,'NR_029681','MIR140'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68157211,68157272,'NR_031719','MIR1538'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',84332727,84332807,'NR_031731','MIR1910'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14305324,14305407,'NR_030177','MIR193B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68621749,68621826,'NR_036054','MIR1972-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68621749,68621826,'NR_036265','MIR1972-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',533277,533367,'NR_036137','MIR3176'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1724986,1725068,'NR_036138','MIR3177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2521923,2522007,'NR_036139','MIR3178'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14902865,14902949,'NR_036140','MIR3179-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14902865,14902949,'NR_036143','MIR3179-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14902865,14902949,'NR_036145','MIR3179-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',18403535,18403629,'NR_036141','MIR3180-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14912581,14912669,'NR_036142','MIR3180-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14912577,14912671,'NR_036144','MIR3180-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',15156207,15156360,'NR_037466','MIR3180-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2125978,2126131,'NR_037467','MIR3180-5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82099451,82099514,'NR_036147','MIR3182'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65793724,65793799,'NR_029887','MIR328'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14310642,14310729,'NR_029854','MIR365-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2260714,2260774,'NR_037448','MIR3677'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54836932,54837036,'NR_037499','MIR3935'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2123120,2123206,'NR_039741','MIR4516'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28877404,28877483,'NR_039742','MIR4517'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30422740,30422823,'NR_039743','MIR4518'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30794087,30794145,'NR_039744','MIR4519'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2264621,2264693,'NR_039868','MIR4717'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',12721678,12721729,'NR_039869','MIR4718'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',75460333,75460417,'NR_039870','MIR4719'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',79976123,79976199,'NR_039871','MIR4720'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28762740,28762829,'NR_039872','MIR4721'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87310186,87310246,'NR_039873','MIR4722'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',15644651,15644730,'NR_030159','MIR484'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',46832103,46978060,'NR_039639','MIR548AE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',9236274,9236304,'NR_036166','MIR548X'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',760183,760278,'NR_030384','MIR662'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30812724,30812807,'NR_031576','MIR762'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2261748,2261842,'NR_030636','MIR940'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14072696,14268131,'NM_014048','MKL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73263253,73292290,'NM_152649','MLKL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2195178,2199419,'NM_022372','MLST8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82490230,82507288,'NM_012213','MLYCD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56616782,56638305,'NM_002428','MMP15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54070581,54098087,'NM_004530','MMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3036682,3050725,'NM_022468','MMP25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',75782336,75791044,'NM_014940','MON1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68168,75843,'NM_002434','MPG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',80739267,80761330,'NM_005792','MPHOSPH6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',15397111,15411044,'NM_001128423','MPV17L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',357384,360570,'NM_006428','MRPL28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1761896,1763141,'NM_023936','MRPS34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',751073,758866,'NM_013404','MSLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',759428,772927,'NM_001025190','MSLNL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55230078,55231500,'NM_005946','MT1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55243311,55244617,'NM_005947','MT1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55235099,55236354,'NR_027781','MT1DP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55217085,55218525,'NM_175617','MT1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55249355,55250716,'NM_005949','MT1F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55258153,55259478,'NM_005950','MT1G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55261226,55262542,'NM_005951','MT1H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55267149,55269154,'NR_003669','MT1IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55227151,55228499,'NR_036677','MT1JP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55208873,55210231,'NR_001447','MT1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55224034,55225399,'NM_176870','MT1M'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55273882,55275609,'NM_005952','MT1X'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55199978,55200910,'NM_005953','MT2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55180767,55182501,'NM_005954','MT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55156461,55160370,'NM_032935','MT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',85121282,85146342,'NM_022764','MTHFSD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3361053,3362284,'NM_001190476','MTRNR2L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',69252607,69277455,'NM_138383','MTSS1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87245848,87256996,'NM_002461','MVD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29739215,29766861,'NM_017458','MVP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',15704492,15858388,'NM_002474','MYH11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',45293694,45339722,'NM_182493','MYLK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30293623,30296811,'NM_013292','MYLPF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',47130137,47201621,'NM_153029','N4BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3447992,3476964,'NM_024845','NAA60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65394281,65422380,'NM_003905','NAE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',5014845,5023943,'NM_016256','NAGPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',719769,730998,'NM_022493','NARFL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',15651583,15727709,'NM_017668','NDE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',57055049,57105024,'NM_020465','NDRG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23499835,23515140,'NM_005003','NDUFAB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1949517,1951977,'NM_004548','NDUFB10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82559737,82593880,'NM_019065','NECAB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',45672931,45735437,'NM_001201477','NETO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68157369,68287092,'NM_173215','NFAT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28869818,28885268,'NM_032815','NFATC2IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66676769,66820663,'NM_173163','NFATC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',557032,559496,'NM_176677','NHLRC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67930915,67934514,'NM_016101','NIP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',49139741,49232272,'NM_033119','NKD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3529036,3567393,'NM_178844','NLRC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55580910,55674937,'NM_032206','NLRC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1760321,1761711,'NM_002513','NME3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',387192,390755,'NM_005009','NME4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4451695,4464897,'NM_020677','NMRAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68333274,68346330,'NM_014062','NOB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',49288550,49324488,'NM_022162','NOD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65761905,65767144,'NM_001185058','NOL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14835143,14897515,'NM_014287','NOMO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',18418682,18480935,'NM_173614','NOMO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',16233889,16296169,'NM_001004067','NOMO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1969041,1971185,'NM_172168','NOXO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14938800,14953432,'NM_006985','NPIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21320955,21344159,'NM_130464','NPIPL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',75803,128697,'NM_001243249','NPRL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2009521,2010757,'NM_001099456','NPW'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68300804,68318034,'NM_000903','NQO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66476281,66477772,'NM_198443','NRN1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',27143815,27187614,'NM_145080','NSMCE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',15039215,15057334,'NM_173474','NTAN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2029816,2037868,'NM_002528','NTHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2461500,2464147,'NM_006181','NTN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',10745198,10770709,'NM_002484','NUBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1772933,1779193,'NM_012225','NUBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4683694,4685861,'NM_001193452','NUDT16L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55020548,55042762,'NM_007006','NUDT21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',76313889,76333658,'NM_001105663','NUDT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55373204,55436362,'NM_001242795','NUP93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28456162,28457996,'NM_012385','NUPR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66438319,66462720,'NM_005796','NUTF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55042924,55068908,'NM_018233','OGFOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3194247,3195186,'NM_012360','OR1F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3205562,3206547,'NR_002169','OR1F2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3345889,3346925,'NM_012368','OR2C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30867905,30873760,'NM_152288','ORAI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',45281058,45289807,'NR_037620','ORC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82544327,82557438,'NM_182981','OSGIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21597335,21679551,'NM_144672','OTOA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87457248,87460569,'NM_001080487','PABPN1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23521983,23560179,'NM_024675','PALB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4330252,4341374,'NM_016069','PAM16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',48744329,48826720,'NM_001040284','PAPD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2959342,2963486,'NM_152341','PAQR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66252351,66254182,'NM_016948','PARD6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14437057,14631629,'NM_001242992','PARN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67920024,67921999,'NM_022341','PDF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',273118,277210,'NM_006849','PDIA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20277992,20323534,'NM_174924','PDILT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65471883,65482503,'NM_020786','PDP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2527970,2593190,'NM_002613','PDPK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68705029,68752685,'NM_017990','PDPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14976333,15039053,'NM_015027','PDXDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68567702,68657352,'NR_003610','PDXDC2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21902686,21919932,'NR_033694','PDZD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2201603,2204823,'NM_001042371','PGP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',46052710,46292935,'NM_000293','PHKB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30667120,30679998,'NM_000294','PHKG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70236352,70306205,'NM_015020','PHLPP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87309246,87378873,'NM_001142864','PIEZO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',560004,574110,'NM_148920','PIGQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2078711,2125900,'NM_000296','PKD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',79691984,79811476,'NM_052892','PKD1L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70520941,70591378,'NM_181536','PKD1L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',16318966,16351966,'NR_036447','PKD1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2962792,2970541,'NM_182687','PKMYT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',14673905,14696027,'NM_003561','PLA2G10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66836747,66852462,'NM_012320','PLA2G15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',80370399,80549400,'NM_002661','PLCG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65868913,65880904,'NM_015432','PLEKHG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23597701,23609189,'NM_005030','PLK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55847509,55876085,'NM_015993','PLLP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70710496,70763565,'NM_031293','PMFBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',8799170,8850695,'NM_000303','PMM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56054051,56063422,'NM_032940','POLR2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',22216241,22252844,'NM_018119','POLR3E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',36978,43632,'NM_016310','POLR3K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4872508,4927137,'NM_002705','PPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29994884,30004196,'NM_002720','PPP4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88650474,88656234,'NM_052996','PRDM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23754800,24139433,'NM_212535','PRKCB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11282193,11282693,'NM_002761','PRM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11276993,11277838,'NM_002762','PRM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11274644,11274953,'NM_021247','PRM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66902377,66948670,'NM_019023','PRMT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30569741,30575235,'NM_024031','PRR14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',795443,803862,'NM_001013638','PRR25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29730909,29734703,'NM_145239','PRRT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2807164,2811719,'NM_144957','PRSS21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2842728,2848172,'NM_022119','PRSS22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2702423,2710553,'NM_031948','PRSS27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2829574,2832753,'NR_026864','PRSS30P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2773954,2776709,'NM_152891','PRSS33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31057748,31068916,'NM_173502','PRSS36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2788486,2795134,'NM_001135086','PRSS41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31002245,31007631,'NM_001039503','PRSS53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56871401,56886452,'NM_001080492','PRSS54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31050254,31054652,'NM_002773','PRSS8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66484675,66521082,'NM_006742','PSKH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66525907,66528281,'NM_002801','PSMB10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',72888173,72897687,'NM_002811','PSMD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1475940,1478469,'NM_001013658','PTX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31120307,31121598,'NM_013258','PYCARD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31134783,31135896,'NM_152901','PYDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29597941,29616815,'NM_014298','QPRT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',415668,512482,'NM_014700','RAB11FIP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2138651,2144142,'NM_014353','RAB26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',580077,619274,'NM_001172666','RAB40C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28823242,28844033,'NM_024816','RABEP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66314505,66398056,'NM_020850','RANBP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',24458408,24468223,'NM_032626','RBBP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',6763810,7703341,'NM_001142334','RBFOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',52025851,52083061,'NM_005611','RBL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73212797,73258280,'NM_018124','RFWD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',258310,265915,'NM_003834','RGS11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',48057,62629,'NM_022450','RHBDF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',666075,668268,'NM_003961','RHBDL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',658133,664172,'NM_138769','RHOT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66236530,66248973,'NM_001013838','RLTPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11346811,11353118,'NM_152308','RMI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1956875,1958977,'NM_174903','RNF151'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87290403,87297526,'NM_001171816','RNF166'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30680433,30695129,'NM_001207033','RNF40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2243100,2257859,'NM_006711','RNPS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4786969,4792675,'NM_024589','ROGDI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',52191318,52295272,'NM_015272','RPGRIP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88154619,88160738,'NM_033251','RPL13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1934580,1944680,'NM_005061','RPL3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',18701777,18709157,'NM_001030009','RPS15A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1952062,1954828,'NM_002952','RPS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',774974,778384,'NM_058192','RPUSD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65513082,65516940,'NM_004165','RRAD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',15061379,15095659,'NM_018427','RRN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21715451,21737996,'NR_003370','RRN3P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28993663,29035539,'NR_003369','RRN3P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',22338367,22356537,'NR_027460','RRN3P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11835555,11852943,'NM_015659','RSL1D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55777741,55830448,'NM_133368','RSPRY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21268184,21304755,'NR_045011','RUNDC2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29221108,29283881,'NR_002939','RUNDC2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',49727386,49742684,'NM_002968','SALL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28211340,28242671,'NM_001024401','SBK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23221091,23300121,'NM_000336','SCNN1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23101540,23135701,'NM_001039','SCNN1G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',80588751,80602594,'NM_145168','SDR42E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4948318,5009157,'NM_014692','SEC14L5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30362452,30364725,'NM_012248','SEPHS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30296954,30301672,'NM_052838','SEPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4767615,4778523,'NM_001154458','SEPT12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1928234,1933295,'NM_016332','SEPX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30876115,30903482,'NM_014712','SETD1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',57106883,57111932,'NM_024860','SETD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29789980,29818086,'NM_201575','SEZ6L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',69115191,69169072,'NM_012426','SF3B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28782578,28793035,'NM_001145796','SH2B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',45171968,45212812,'NM_024745','SHCBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',12902977,12913008,'NM_001145205','SHISA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',46951954,46976730,'NM_003031','SIAH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',55456619,55507263,'NM_000339','SLC12A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66534877,66560098,'NM_001145962','SLC12A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87789669,87794030,'NM_001242757','SLC22A31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',57257798,57276175,'NM_018231','SLC38A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82600889,82633263,'NM_001080442','SLC38A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',24765052,24830445,'NM_052944','SLC5A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31401939,31409592,'NM_003041','SLC5A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',32796297,32803964,'NR_003083','SLC6A10P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',54247852,54295201,'NM_001043','SLC6A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',86421129,86460601,'NM_003486','SLC7A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29531924,29532539,'NR_002593','SLC7A5P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21436730,21439266,'NR_002594','SLC7A5P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66855919,66893227,'NM_003983','SLC7A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66892018,66902369,'NM_032178','SLC7A6OS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2016888,2029028,'NM_001130012','SLC9A3R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65840355,65863595,'NM_004594','SLC9A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29373322,29377046,'NM_001015000','SLX1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29373912,29383802,'NR_037608','SLX1A-SULT1A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29373322,29377046,'NM_024044','SLX1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29373912,29383802,'NR_037609','SLX1B-SULT1A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3571183,3601586,'NM_032444','SLX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',18723675,18845227,'NM_015092','SMG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66949730,67039910,'NM_018667','SMPD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87271590,87280383,'NM_178310','SNAI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1954997,1955506,'NR_003142','SNHG9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11669789,11680516,'NM_003498','SNN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1952335,1952468,'NR_002327','SNORA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30629358,30629487,'NR_002966','SNORA30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',57139903,57140038,'NR_002978','SNORA46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',57151200,57151336,'NR_002980','SNORA50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1952974,1953108,'NR_002326','SNORA64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70289970,70290105,'NR_033337','SNORA70D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1955185,1955312,'NR_003020','SNORA78'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',69129408,69129502,'NR_003079','SNORD111'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',69120905,69120999,'NR_003696','SNORD111B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2145024,2145107,'NR_002736','SNORD60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88155338,88155410,'NR_002450','SNORD68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70349805,70349891,'NR_003059','SNORD71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',43828,47669,'NM_024571','SNRNP25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67778550,67900456,'NM_006750','SNTB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',49257711,49272765,'NM_001144972','SNX20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11978102,12575647,'NM_032167','SNX29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11255774,11257540,'NM_003745','SOCS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',517856,544637,'NM_005632','SOLH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',971808,976980,'NM_014587','SOX8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88290265,88295622,'NM_152339','SPATA2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88102305,88131630,'NM_199367','SPG7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88422407,88465228,'NM_032451','SPIRE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29582080,29589324,'NM_003123','SPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28893596,28903370,'NM_032038','SPNS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1766713,1772582,'NM_080861','SPSB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30617962,30658951,'NM_006662','SRCAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4179375,4232082,'NM_001098814','SRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2742330,2761414,'NM_016333','SRRM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1062756,1071455,'NM_001172560','SSTR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68970838,69030492,'NM_006927','ST3GAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',670115,672769,'NM_005861','STUB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30908077,30929330,'NM_052874','STX1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30952403,30958986,'NM_004604','STX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28524408,28528866,'NM_001055','SULT1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28510764,28515892,'NM_001054','SULT1A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29378707,29383802,'NM_177552','SULT1A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29378707,29383802,'NM_001017390','SULT1A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',75790849,75804477,'NM_001129979','SYCE1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1979946,1984277,'NM_004209','SYNGR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',19087138,19186055,'NM_016524','SYT17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82768953,82778177,'NM_001243159','TAF1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29892722,29911082,'NM_004783','TAOK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70158254,70168499,'NM_000353','TAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30275922,30289023,'NM_015527','TBC1D10B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2465147,2495735,'NM_020705','TBC1D24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1962064,1968752,'NM_006453','TBL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30004615,30010706,'NM_004608','TBX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2761415,2767298,'NM_007108','TCEB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88467494,88505293,'NM_014972','TCF25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',10628861,10696303,'NM_144674','TEKT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1483352,1500461,'NM_016111','TELO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56567839,56579518,'NM_199046','TEPP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67946964,67977375,'NM_005652','TERF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',74239135,74248842,'NM_018975','TERF2IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4247187,4263002,'NM_003223','TFAP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31391029,31396782,'NM_001164719','TGFB1I1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66433713,66435599,'NM_020457','THAP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3014032,3017757,'NM_024339','THOC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20652489,20660700,'NM_017736','THUMPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3288808,3295440,'NM_033208','TIGD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65099406,65141816,'NM_004614','TK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',19375272,19417935,'NM_024780','TMC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',18902756,18982763,'NM_024847','TMC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67435009,67676586,'NM_024562','TMCO7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67934649,67943213,'NM_144676','TMED6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',8559502,8562227,'NM_001146336','TMEM114'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21077412,21099438,'NM_020422','TMEM159'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',74038423,74056085,'NM_145254','TMEM170A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',8796537,8799006,'NM_015421','TMEM186'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',48616689,48628500,'NM_153261','TMEM188'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1524231,1545244,'NM_024600','TMEM204'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65818516,65820683,'NM_014187','TMEM208'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29880851,29891874,'NM_194280','TMEM219'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',74129515,74147637,'NM_001077416','TMEM231'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',360776,371951,'NM_021259','TMEM8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3010313,3012384,'NM_016639','TNFRSF12A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11966464,11969426,'NM_001192','TNFRSF17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11269214,11270661,'NM_005425','TNP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',24648549,24745048,'NM_014494','TNRC6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',51029418,51139215,'NM_001146188','TOX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',32592349,32595554,'NM_016212','TP53TG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',32592349,32594949,'NM_001099687','TP53TG3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65981212,65984922,'NM_015964','TPPP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1230678,1232556,'NM_003294','TPSAB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1218336,1220186,'NM_024164','TPSB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1246273,1248495,'NM_012217','TPSD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1211652,1215255,'NM_012467','TPSG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65745589,65751313,'NM_003789','TRADD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2145799,2168131,'NM_032271','TRAF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3648038,3707599,'NM_016292','TRAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87451006,87455021,'NM_016209','TRAPPC2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31132842,31144011,'NM_001008274','TRIM72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2037990,2078714,'NM_001114382','TSC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',66398510,66419472,'NM_018430','TSNAXIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88515917,88530006,'NM_001197181','TUBB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28761232,28765230,'NM_003321','TUFM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11680443,11744149,'NM_015914','TXNDC11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70676256,70685040,'NM_017853','TXNL4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1299628,1317020,'NM_003345','UBE2I'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',34261302,34262263,'NR_002837','UBE2MP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',23476362,23493211,'NM_019116','UBFD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4837912,4872364,'NM_001079514','UBN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',20251873,20271538,'NM_003361','UMOD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1388306,1404706,'NM_001037125','UNKL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21872109,21902169,'NM_003366','UQCRC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',83291055,83371028,'NM_005153','USP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',22980228,23068092,'NM_020718','USP31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',8893451,8964842,'NM_003470','USP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',69278842,69392562,'NM_018052','VAC14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4361849,4373530,'NM_138440','VASN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',76379983,76571502,'NM_020927','VAT1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31009675,31013777,'NM_206824','VKORC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',45251089,45280645,'NM_018206','VPS35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67902787,67916447,'NM_013245','VPS4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',22011363,22075788,'NM_173615','VWA3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',674702,680401,'NM_032259','WDR24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73464971,73576518,'NM_030581','WDR59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',639363,657830,'NM_145294','WDR90'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',82885901,82920951,'NM_021197','WFDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',621012,624117,'NM_053284','WFIKKN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',76690827,76691597,'NM_130844','WWOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',68353774,68533144,'NM_007014','WWP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',28016816,28130691,'NM_015171','XPO6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',17103681,17472239,'NM_022166','XYLT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30011137,30015038,'NM_001145524','YPEL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87164289,87225873,'NM_144604','ZC3H18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',11751942,11798615,'NM_014153','ZC3H7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',85997352,86082961,'NM_015144','ZCCHC14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',65985822,66007840,'NM_013304','ZDHHC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',83565567,83602642,'NM_001145548','ZDHHC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',71374286,71639775,'NM_006885','ZFHX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73739921,73763633,'NM_153688','ZFP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',67131161,67158540,'NM_133458','ZFP90'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87047514,87129075,'NM_153813','ZFPM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',29697061,29700470,'NM_152338','ZG16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',2820173,2822286,'NM_145252','ZG16B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',25154822,25176356,'NM_001012981','ZKSCAN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3391190,3399365,'NM_003450','ZNF174'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70065476,70080755,'NM_006961','ZNF19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3212325,3225458,'NM_001145446','ZNF200'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3102563,3110519,'NM_001042428','ZNF205'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3125134,3132806,'NM_001134655','ZNF213'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70039003,70053618,'NM_145911','ZNF23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3273487,3281460,'NM_005741','ZNF263'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31792579,31836128,'NM_003414','ZNF267'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',88315452,88334833,'NM_001113525','ZNF276'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',56586073,56591263,'NM_020807','ZNF319'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',48082021,48418419,'NM_015069','ZNF423'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3372085,3391026,'NM_017810','ZNF434'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87021379,87034666,'NM_001127464','ZNF469'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30314240,30318930,'NM_152652','ZNF48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',4740815,4757167,'NM_021646','ZNF500'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3426110,3433491,'NM_152457','ZNF597'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',1987768,1999764,'NM_178167','ZNF598'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30697270,30706024,'NM_001080417','ZNF629'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30993243,31002334,'NM_014699','ZNF646'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30979664,30983910,'NM_001172670','ZNF668'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30488523,30491229,'NM_145271','ZNF688'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30522200,30529183,'NM_138447','ZNF689'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31632050,31680387,'NM_001130913','ZNF720'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30450279,30453695,'NM_023931','ZNF747'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3295433,3308577,'NM_153028','ZNF75A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30472585,30477143,'NM_001172679','ZNF764'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30442822,30445411,'NM_024671','ZNF768'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30326235,30337417,'NM_016643','ZNF771'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',87811611,87823466,'NM_001201407','ZNF778'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',30499494,30504593,'NM_152458','ZNF785'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',70451083,70474945,'NM_001201553','ZNF821'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',31354385,31361849,'NM_001136509','ZNF843'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',73590415,73702393,'NM_032268','ZNRF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',21116273,21130369,'NM_003460','ZP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr16',3078895,3082862,'NM_032805','ZSCAN10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',28880918,28884892,'NR_037584','AA06'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71961027,71977794,'NM_001166579','AANAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38356068,38385546,'NM_025267','AARSD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',32380287,32488284,'NM_012138','AATF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76705690,76720343,'NM_004920','AATK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76753901,76771559,'NR_027255','AATK-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',64655742,64752551,'NM_080282','ABCA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',64752170,64823369,'NM_018672','ABCA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',64586441,64649610,'NM_080284','ABCA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',64375025,64463128,'NM_007168','ABCA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',64482367,64568731,'NM_080283','ABCA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46067216,46100287,'NM_001144070','ABCC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24911814,24918168,'NM_198147','ABHD15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44642587,44655586,'NM_016428','ABI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',853508,1037366,'NM_001159746','ABR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',32516039,32841015,'NM_198839','ACACA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7063876,7069309,'NM_000018','ACADVL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7180571,7195517,'NM_014716','ACAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40568539,40577326,'NM_024722','ACBD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',28364218,28644119,'NM_183377','ACCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',58908153,58929473,'NM_000789','ACE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37276704,37328798,'NM_001096','ACLY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71449186,71487110,'NM_007292','ACOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45858517,45907199,'NM_025149','ACSF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77091591,77094487,'NM_001199954','ACTG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40192093,40214740,'NM_002390','ADAM11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26272879,26310337,'NM_018404','ADAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15788955,15819935,'NM_000676','ADORA2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73694992,73705236,'NR_027083','AFMID'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6267782,6279243,'NM_014336','AIPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',52518076,52553704,'NM_001242903','AKAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19749341,19821721,'NM_007202','AKAP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19581889,19589364,'NM_001135168','ALDH3A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19492655,19521500,'NM_000382','ALDH3A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23924259,23928078,'NM_005165','ALDOC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18027591,18053992,'NM_017758','ALKBH5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6840107,6854779,'NM_000697','ALOX12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7916678,7931746,'NM_001139','ALOX12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6697618,6744392,'NR_002710','ALOX12P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4480962,4491709,'NM_001140','ALOX15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7883082,7893176,'NM_001039131','ALOX15B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7939942,7962959,'NM_001165960','ALOXE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',63755739,63764900,'NM_016627','AMZ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',60393129,60402165,'NR_026903','AMZ2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77442894,77451655,'NM_016476','ANAPC11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',51585834,51915006,'NM_153228','ANKFN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4044521,4114023,'NM_020740','ANKFY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24944652,24965905,'NM_152345','ANKRD13B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46125549,46140269,'NM_052855','ANKRD40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38250134,38256251,'NM_001158','AOC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38256726,38263666,'NM_003734','AOC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38272687,38274760,'NR_002773','AOC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30938394,31077549,'NM_001282','AP2B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',61638608,61656018,'NM_000042','APOH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55875301,55958362,'NM_006380','APPBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27501499,27502703,'NR_002222','ARGFXP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',33838245,33922154,'NM_001199417','ARHGAP23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40862500,40866065,'NM_174919','ARHGAP27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',12633553,12835685,'NM_014859','ARHGAP44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77418885,77422079,'NM_001185077','ARHGDIA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8154864,8166559,'NM_025014','ARHGEF15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77258628,77261359,'NM_001040025','ARL16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41949383,42012404,'NM_016632','ARL17A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41732689,41794876,'NM_001103154','ARL17B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38831878,38834030,'NM_001661','ARL4D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34566672,34575940,'NM_001143968','ARL5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70617676,70637955,'NM_024585','ARMC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4560537,4571544,'NM_004313','ARRB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',63766917,63928595,'NM_014960','ARSG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39603599,39611977,'NM_080863','ASB16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7017474,7023607,'NM_001197216','ASGR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6945364,6958854,'NM_001181','ASGR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3324153,3349450,'NM_001128085','ASPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77528714,77568571,'NM_024083','ASPSCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26183148,26246421,'NM_024857','ATAD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7494978,7501814,'NM_001678','ATP1B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3773911,3814507,'NM_174953','ATP2A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44325146,44328231,'NM_001002027','ATP5G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70546549,70554669,'NM_006356','ATP5H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37864387,37928123,'NM_005177','ATP6V0A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17862058,17883205,'NM_145691','ATPAF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39624698,39631055,'NM_020218','ATXN7L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8048773,8054608,'NM_004217','AURKB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',60955144,60988202,'NM_004655','AXIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76777987,76811346,'NM_001009811','AZI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',78494955,78602975,'NM_001009905','B3GNTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44565327,44602350,'NM_153446','B4GALNT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19187075,19206639,'NM_001243473','B9D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76988134,77047953,'NM_001080519','BAHCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76623541,76705827,'NM_001144888','BAIAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',56109953,56824981,'NM_017679','BCAS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6867092,6873685,'NM_181844','BCL6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38215675,38229836,'NM_003766','BECN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1120607,1121315,'NM_001164405','BHLHA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73721871,73733311,'NM_001168','BIRC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',25599338,25643310,'NM_000386','BLMH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',63252241,63410956,'NM_004459','BPTF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38449837,38529658,'NM_007298','BRCA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',57111328,57295702,'NM_032043','BRIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',69864150,69869553,'NM_001080466','BTBD17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53733592,53761151,'NM_004758','BZRAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6495782,6497341,'NM_001105520','C17orf100'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77940374,77969802,'NR_033265','C17orf101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',29925254,29930501,'NM_207454','C17orf102'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',21082775,21097171,'NM_152914','C17orf103'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40089287,40108691,'NM_001145080','C17orf104'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39213328,39217580,'NM_001136483','C17orf105'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71486892,71513675,'NR_037709','C17orf106-CDK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4743726,4747006,'NM_001145536','C17orf107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23229466,23244536,'NM_001076680','C17orf108'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71141108,71149081,'NM_001162995','C17orf109'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71154240,71155652,'NM_001162997','C17orf110'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70458433,70480495,'NM_030630','C17orf28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17883335,17912443,'NM_024052','C17orf39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26250126,26257412,'NM_024683','C17orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40687542,40695262,'NM_152343','C17orf46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53973946,53976732,'NM_001038704','C17orf47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',10541651,10555600,'NM_020233','C17orf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6858779,6861567,'NM_001142799','C17orf49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31112028,31116211,'NM_145272','C17orf50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',21372163,21395534,'NM_001113434','C17orf51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39574799,39595370,'NM_001171251','C17orf53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76816671,76827486,'NM_144679','C17orf56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',42756325,42873676,'NM_152347','C17orf57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',63417678,63420227,'NM_181656','C17orf58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8032375,8034289,'NM_017622','C17orf59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7247016,7248174,'NM_152766','C17orf61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7233770,7248174,'NR_037719','C17orf61-PLSCR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77993751,78001996,'NM_001193653','C17orf62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24107122,24193967,'NM_018182','C17orf63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55854646,55863569,'NM_181707','C17orf64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39608877,39619608,'NM_178542','C17orf65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31206072,31220008,'NM_152781','C17orf66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',52224272,52248249,'NM_001085430','C17orf67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41072123,41075454,'NR_026905','C17orf69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77117386,77129871,'NM_025161','C17orf70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59429442,59435376,'NM_001191029','C17orf72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7269658,7271610,'NM_175734','C17orf74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27679572,27693341,'NM_022344','C17orf75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16286052,16336205,'NM_207387','C17orf76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16283025,16286065,'NR_027162','C17orf76-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70092651,70101943,'NM_152460','C17orf77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',32807097,32823775,'NM_173625','C17orf78'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27202996,27210439,'NM_018405','C17orf79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',68740370,68756690,'NM_017941','C17orf80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7096274,7103983,'NM_015362','C17orf81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',56843893,56845423,'NM_203425','C17orf82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3661208,3696289,'NM_018553','C17orf85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5054624,5078807,'NM_207103','C17orf87'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39350101,39350881,'NR_026770','C17orf88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76827705,76829693,'NM_001086521','C17orf89'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77242470,77244023,'NM_001039842','C17orf90'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34081484,34084713,'NM_001130677','C17orf96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',260433,264803,'NM_001013672','C17orf97'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34244866,34251168,'NM_001080465','C17orf98'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73654028,73673959,'NM_001163075','C17orf99'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5276822,5283195,'NM_001212','C1QBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40392586,40401170,'NM_006688','C1QL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',74531845,74557465,'NM_198594','C1QTNF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',47062672,47592160,'NM_001082533','CA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55582083,55591688,'NM_000717','CA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45993447,46059430,'NM_198382','CACNA1G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34586914,34607427,'NM_199248','CACNB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',62471113,62483373,'NM_000727','CACNG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',62391441,62459980,'NM_014405','CACNG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',62303852,62311857,'NM_145811','CACNG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44263370,44297228,'NM_005831','CALCOCO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3715199,3743086,'NM_172207','CAMKK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4812010,4831684,'NM_001171166','CAMTA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',74499392,74517494,'NM_001159773','CANT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75766875,75797446,'NM_024110','CARD14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35550032,35581957,'NM_007359','CASC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71007936,71023222,'NM_020753','CASKIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43502412,43533882,'NM_001127228','CBX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75366571,75376044,'NM_005189','CBX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75421549,75427808,'NM_003655','CBX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75382770,75385510,'NM_020649','CBX8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40332679,40336155,'NM_213607','CCDC103'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77244165,77251341,'NM_199287','CCDC137'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16534363,16619036,'NM_014695','CCDC144A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18381839,18469655,'NR_036647','CCDC144B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',20165078,20246096,'NR_023380','CCDC144C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',20707299,20740045,'NM_001004306','CCDC144NL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75625025,75689007,'NM_017950','CCDC40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8573970,8588879,'NM_001158261','CCDC42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40110330,40122691,'NM_001099225','CCDC43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59176341,59204820,'NM_020198','CCDC47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38203177,38204230,'NM_001040431','CCDC56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77652634,77763978,'NM_198082','CCDC57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',29711511,29714365,'NM_002981','CCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',29636799,29639312,'NM_002986','CCL11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',29707583,29709742,'NM_005408','CCL13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31334804,31337877,'NM_032963','CCL14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31334804,31353197,'NR_027922','CCL14-CCL15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31348730,31353197,'NM_032965','CCL15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31327647,31332636,'NM_004590','CCL16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31415755,31422954,'NM_002988','CCL18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',29606408,29608333,'NM_002982','CCL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31364209,31369118,'NM_005064','CCL23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31439715,31441619,'NM_002983','CCL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31546381,31548269,'NM_021006','CCL3L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31546381,31548260,'NM_001001437','CCL3L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31455332,31457127,'NM_002984','CCL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31562580,31564387,'NM_001001435','CCL4L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31562580,31564387,'NM_207007','CCL4L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31222608,31231490,'NM_002985','CCL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',29621352,29623369,'NM_006273','CCL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',29670178,29672534,'NM_005623','CCL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38084945,38087371,'NM_016602','CCR10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35963547,35975262,'NM_001838','CCR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30278990,30312641,'NM_001193530','CCT6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',69974116,69992528,'NM_007261','CD300A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70048841,70053877,'NM_006678','CD300C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70117616,70131492,'NM_181449','CD300E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70028907,70039208,'NM_174892','CD300LB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70087705,70099965,'NM_001115152','CD300LD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70202046,70220703,'NM_139018','CD300LF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39280041,39290654,'NM_001168324','CD300LG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7423528,7426153,'NM_001251','CD68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77866034,77868769,'NM_006137','CD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59359829,59363436,'NM_000626','CD79B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',42550309,42621664,'NM_001256','CDC27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',68791357,68819738,'NM_012121','CDC42EP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35697671,35712939,'NM_001254','CDC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34871264,34944326,'NM_015083','CDK12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71508581,71513675,'NM_001258','CDK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27838217,27842384,'NM_003885','CDK5R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43403427,43414146,'NM_176096','CDK5RAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70495321,70513487,'NM_014603','CDR2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15432701,15463743,'NM_006382','CDRT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',14079897,14080875,'NM_001007530','CDRT15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',20423628,20424816,'NM_001190790','CDRT15L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',13868539,13869640,'NR_003261','CDRT15P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15608741,15609728,'NR_033865','CDRT15P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15280056,15311650,'NM_001204477','CDRT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',14875016,14875999,'NR_033371','CDRT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16186572,16197537,'NM_181716','CENPV'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',61062119,61618674,'NM_001199165','CEP112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59933619,59964524,'NM_138363','CEP95'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45896851,45901226,'NM_001267','CHAD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7732893,7756800,'NM_001005273','CHD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76580235,76588528,'NM_024591','CHMP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7289129,7301656,'NM_000747','CHRNB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4741839,4747148,'NM_000080','CHRNE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34140035,34145384,'NM_001136498','CISD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7103945,7106988,'NM_001185023','CLDN7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6918579,6924324,'NM_182906','CLEC10A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55051831,55129099,'NM_004859','CLTC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37372284,37383280,'NM_033133','CNP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38204379,38217131,'NM_173478','CNTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38088157,38105537,'NM_003632','CNTNAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7776166,7793962,'NM_053051','CNTROB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37967617,37971821,'NM_001042529','COASY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',68700767,68716240,'NM_018714','COG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',52370559,52393410,'NM_004645','COIL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45616455,45633999,'NM_000088','COL1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17090662,17124737,'NM_001199125','COPS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43458531,43470151,'NM_016429','COPZ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24965899,24972567,'NM_032854','CORO6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',13913443,14052721,'NM_001303','COX10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',50384257,50401063,'NR_027942','COX11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',25730067,25820801,'NM_001304','CPD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',68756182,68769614,'NM_001129885','CPSF4L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41217408,41268975,'NM_001145146','CRHR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1272207,1306294,'NM_005206','CRK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26133827,26175904,'NM_015986','CRLF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24598000,24605628,'NM_005208','CRYBA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35425139,35427592,'NM_172220','CSF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59325999,59327753,'NM_001317','CSH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59303103,59304821,'NM_022645','CSH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59340696,59342350,'NM_022581','CSHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77793825,77824883,'NM_139062','CSNK1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8068863,8092138,'NM_025099','CTC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7087629,7095983,'NM_015343','CTDNEP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3486510,3513146,'NM_004937','CTNS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53295335,53335749,'NM_017949','CUEDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34210971,34235115,'NM_017748','CWC25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4583576,4589972,'NM_022059','CXCL16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',58863396,58877454,'NM_001915','CYB561'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7701788,7706325,'NM_144607','CYB5D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3993210,4007740,'NR_023347','CYB5D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72035034,72045377,'NM_134268','CYGB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',74181724,74289971,'NM_004762','CYTH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40141501,40185162,'NM_025104','DBF4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',602649,605326,'NR_024120','DBIL5P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',58981553,59025373,'NM_005828','DCAF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40456231,40493999,'NM_024819','DCAKD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77587045,77588862,'NM_001195218','DCXR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59205298,59250409,'NM_203499','DDX42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59924835,59932946,'NM_004396','DDX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',33046475,33077606,'NM_007010','DDX52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5318336,5330218,'NM_016041','DERL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',52266458,52301035,'NM_003647','DGKE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',32022338,32031346,'NM_024308','DHRS11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24248924,24254215,'NM_144683','DHRS13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',20970849,21035428,'NM_015510','DHRS7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',9615475,9635339,'NM_001220493','DHRS7C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5284955,5313104,'NM_020162','DHX33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',54997667,55040495,'NM_024612','DHX40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37506949,37518277,'NM_024119','DHX58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38916859,38957206,'NM_004941','DHX8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7033933,7061652,'NM_001128827','DLG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45422367,45427587,'NM_005220','DLX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45401560,45407322,'NM_138281','DLX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73931372,74085071,'NM_173628','DNAH17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7563763,7677783,'NM_020877','DNAH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',11442472,11813790,'NM_001372','DNAH9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',69781980,69822618,'NM_001172810','DNAI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37381964,37423241,'NR_029431','DNAJC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',633000,666689,'NM_003585','DOC2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1880180,1893475,'NM_001383','DPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26326478,26327143,'NR_002221','DPRXP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17932007,17952017,'NM_001388','DRG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77609039,77616969,'NM_022156','DUS1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',32924063,32947701,'NM_007026','DUSP14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39199014,39211894,'NM_004090','DUSP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7069384,7078587,'NM_004422','DVL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53515778,53522617,'NM_080677','DYNLL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77384656,77386215,'NM_001007533','DYSFIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',57811645,57847571,'NM_173503','EFCAB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',25292748,25425769,'NR_026738','EFCAB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7549244,7555418,'NM_001406','EFNB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40283180,40332519,'NM_001142605','EFTUD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37098652,37101424,'NM_005801','EIF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7416747,7423048,'NM_001204510','EIF4A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75723607,75735577,'NM_014740','EIF4A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7152417,7156506,'NM_001143762','EIF5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',12835653,12862106,'NM_001165962','ELAC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45805579,45813819,'NM_152463','EME1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76003561,76018766,'NM_001164638','ENDOV'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',74582613,74596276,'NM_001042573','ENGASE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4795128,4801150,'NM_001976','ENO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75319476,75330616,'NM_178543','ENPP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19081282,19180621,'NM_148921','EPN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45965046,45976110,'NM_017957','EPN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53625087,53637534,'NM_000502','EPX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24206168,24212198,'NM_005702','ERAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35109779,35138441,'NM_004448','ERBB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59474121,59561234,'NM_001433','ERN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38960736,38978831,'NM_001986','ETV4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26667553,26672893,'NM_014210','EVI2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26654913,26665256,'NM_006495','EVI2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71514521,71535102,'NM_001988','EVPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18221803,18233685,'NM_001145127','EVPLL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71588680,71611463,'NM_001145297','EXOC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38105818,38150597,'NM_001991','EZH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70385067,70401300,'NM_178128','FADS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71772880,71778974,'NM_182565','FAM100B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',289998,295959,'NM_182705','FAM101B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',68715086,68740128,'NM_032837','FAM104A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18368604,18370885,'NR_026809','FAM106A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16632781,16634540,'NR_026810','FAM106CP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45142685,45196517,'NM_030802','FAM117A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37985051,38014971,'NM_178126','FAM134C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39786626,39796761,'NM_198475','FAM171A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18625306,18650751,'NM_016078','FAM18B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15381018,15407670,'NM_001135036','FAM18B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15280056,15407670,'NM_001204478','FAM18B2-CDRT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2338651,2340800,'NM_001093767','FAM195B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',64042851,64066163,'NR_027751','FAM20A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',21749496,21750626,'NR_028336','FAM27L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',582596,592825,'NM_024792','FAM57A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6288458,6295109,'NM_019013','FAM64A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18815105,18848785,'NM_001039999','FAM83G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77629502,77649395,'NM_004104','FASN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71418212,71448714,'NM_001080542','FBF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34662422,34811435,'NM_032875','FBXL20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6620275,6631689,'NM_153230','FBXO39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34346210,34377181,'NM_001008777','FBXO47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18588050,18623387,'NM_031456','FBXW10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70370213,70380751,'NM_024417','FDXR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7283412,7288975,'NM_004112','FGF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37222487,37232995,'NM_021939','FKBP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17065209,17081227,'NM_144606','FLCN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18088877,18102780,'NM_002018','FLII'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',68105774,68148206,'NR_033876','FLJ26484'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',12394009,12481229,'NR_034144','FLJ34690'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',21828188,21837197,'NR_027084','FLJ36000'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',65674696,65677138,'NR_036534','FLJ36644'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44680603,44691026,'NR_034161','FLJ40194'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',816054,829962,'NR_029406','FLJ43681'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34439684,34462984,'NR_033753','FLJ43826'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73386677,73391764,'NR_028337','FLJ45079'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45278270,45281198,'NM_001242791','FLJ45513'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76617527,76623114,'NR_026857','FLJ90757'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24230482,24248841,'NM_004475','FLOT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40655074,40680466,'NM_005892','FMNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',78286740,78302362,'NM_022158','FN3K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',78267870,78279182,'NM_024619','FN3KRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30472743,30481864,'NM_017559','FNDC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71644009,71648975,'NM_001454','FOXJ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',78070882,78155772,'NM_004514','FOXK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23875085,23889302,'NM_003593','FOXN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18509960,18517219,'NR_026718','FOXO3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77110011,77114632,'NM_001077182','FSCN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59250524,59258763,'NM_017647','FTSJ3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7435271,7458940,'NM_004860','FXR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39990337,39994156,'NM_001466','FZD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38306340,38318912,'NM_000151','G6PC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39503623,39509238,'NR_028581','G6PC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75689949,75708274,'NM_000152','GAA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7084461,7086477,'NM_007278','GABARAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71265612,71272875,'NM_000154','GALK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71582486,71585168,'NM_003857','GALR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31095642,31104010,'NM_139285','GAS2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',9754650,9870348,'NM_001130831','GAS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37122138,37125747,'NM_000805','GAST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2320446,2330382,'NM_000160','GCGR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',54652609,54708112,'NM_182569','GDPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',594410,602251,'NM_015721','GEMIN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40338519,40348446,'NM_002055','GFAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70744288,70769302,'NM_138619','GGA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31974849,32020389,'NM_024835','GGNBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4406970,4410625,'NM_153338','GGT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59348294,59349930,'NM_022560','GH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59311307,59312955,'NM_002059','GH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37594630,37600076,'NM_032484','GHDC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44390916,44400954,'NM_004123','GIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24924612,24940736,'NM_014030','GIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40231341,40263133,'NM_005497','GJC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35770430,35774471,'NM_152219','GJD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',609298,632321,'NM_016080','GLOD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',9670105,9733747,'NM_004246','GLP2R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4638993,4640624,'NM_001014985','GLTPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',60435868,60483382,'NM_006572','GNA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44638594,44641742,'NM_031498','GNGT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',25828551,25877958,'NM_004871','GOSR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',42355484,42373732,'NM_054022','GOSR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4776371,4779067,'NM_000173','GP1BA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39828170,39936483,'NR_036474','GPATCH8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',69875239,69880334,'NM_181790','GPR142'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4876620,4879451,'NM_001104577','GPR172B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',33735018,33753219,'NM_001004334','GPR179'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',69941430,69955163,'NM_018653','GPRC5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77603051,77608635,'NM_004127','GPS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7156701,7159382,'NM_004489','GPS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18864714,18891061,'NM_006613','GRAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18971506,19002873,'NM_001129778','GRAPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70825751,70913385,'NM_203506','GRB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35147687,35157064,'NM_005310','GRB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70349762,70367602,'NM_000835','GRIN2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39778016,39785996,'NM_002087','GRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35372751,35387545,'NM_178171','GSDMA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35314373,35327319,'NM_018530','GSDMB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3573945,3576741,'NM_031965','GSG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7846712,7864383,'NM_000180','GUCY2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71284109,71287455,'NM_005324','H3F3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37132416,37144424,'NM_177977','HAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37589603,37590996,'NM_001524','HCRT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39509646,39556540,'NM_005474','HDAC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55475333,55511074,'NM_022070','HEATR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',62497015,62671781,'NM_014877','HELZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7964632,7968135,'NM_032580','HES7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77969540,77993805,'NM_173620','HEXDC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40580466,40585251,'NM_006460','HEXIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40594046,40603189,'NM_144608','HEXIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77261366,77279556,'NM_004712','HGS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1905142,1909731,'NM_006497','HIC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40280804,40283374,'NM_016438','HIGD1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45603787,45604836,'NR_024193','HILS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',50697319,50757425,'NM_002126','HLF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70642938,70662370,'NM_016185','HN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',33120546,33179209,'NM_000458','HNF1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43961805,43963271,'NM_002144','HOXB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44157124,44161110,'NM_006361','HOXB13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44155540,44157118,'NR_024103','HOXB13-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43975017,43977392,'NM_002145','HOXB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43981230,44006809,'NM_002146','HOXB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44007867,44010742,'NM_024015','HOXB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44023617,44026102,'NM_002147','HOXB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44028097,44037333,'NM_018952','HOXB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44039593,44043382,'NM_004502','HOXB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44044706,44047300,'NM_024016','HOXB8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44053517,44058834,'NM_024017','HOXB9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',13339730,13445969,'NM_006042','HS3ST3A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',14145230,14190217,'NM_006041','HS3ST3B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37957509,37960758,'NM_000413','HSD17B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53852527,53920758,'NM_001080439','HSF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37528281,37528897,'NM_033194','HSPB9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59433686,59451726,'NM_001099786','ICAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70520374,70528951,'NM_001545','ICT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38412267,38420002,'NM_005533','IFI35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23679479,23686622,'NM_174887','IFT20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44429772,44488506,'NM_001160423','IGF2BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35853201,35867508,'NM_001552','IGFBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35174724,35273967,'NM_012481','IKZF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41278035,41280218,'NM_175882','IMP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4832148,4841629,'NM_001167985','INCA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1344620,1366932,'NM_001135642','INPP5K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',57297509,57360159,'NM_020748','INTS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39805075,39822399,'NM_000419','ITGA2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45488338,45522848,'NM_005501','ITGA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3564667,3651286,'NM_002208','ITGAE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',42686206,42745076,'NM_000212','ITGB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71229110,71265494,'NM_000213','ITGB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72220508,72234476,'NM_001081461','JMJD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37164384,37196490,'NM_021991','JUP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37518654,37526908,'NM_021078','KAT2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45220979,45261457,'NM_001199158','KAT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7766751,7773478,'NM_004732','KCNAB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37562435,37586822,'NM_012285','KCNH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',58954426,58980070,'NM_173092','KCNH6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',21220291,21263772,'NM_021012','KCNJ12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',65583020,65643341,'NM_018658','KCNJ16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',21249040,21261075,'NM_001194958','KCNJ18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',65677270,65687778,'NM_000891','KCNJ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7195931,7198986,'NM_001002914','KCTD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70554873,70573576,'NM_015353','KCTD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7683959,7698843,'NM_001080424','KDM6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23965584,23996304,'NM_014680','KIAA0100'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70964258,71008128,'NM_014738','KIAA0195'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2539429,2561677,'NM_015229','KIAA0664'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6422368,6484971,'NM_014804','KIAA0753'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41463128,41625943,'NM_001193466','KIAA1267'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40358973,40380608,'NM_001080443','KIF18B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',69833945,69863554,'NM_153209','KIF19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4841966,4872418,'NM_006612','KIF1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',49255237,49257572,'NM_032559','KIF2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37247568,37258125,'NM_152467','KLHL10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37263324,37275155,'NM_018143','KLHL11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',63462309,63473432,'NM_002266','KPNA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43082273,43116003,'NM_002265','KPNB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8212697,8215583,'NM_213597','KRBA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36227894,36232389,'NM_000421','KRT10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36270955,36276988,'NM_000223','KRT12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36910758,36915391,'NM_153490','KRT13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36992056,36996673,'NM_000526','KRT14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36923522,36928796,'NM_002275','KRT15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37019556,37022605,'NM_005557','KRT16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16674521,16676872,'NR_029392','KRT16P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',20345418,20348403,'NR_029393','KRT16P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37029217,37034408,'NM_000422','KRT17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23627138,23658535,'NR_028334','KRT18P55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36933394,36938167,'NM_002276','KRT19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36285666,36295021,'NM_019010','KRT20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36065397,36074942,'NM_152349','KRT222'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36332477,36347362,'NM_015515','KRT23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36107768,36113528,'NM_019016','KRT24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36157798,36165110,'NM_181534','KRT25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36176015,36181937,'NM_181539','KRT26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36186585,36192312,'NM_181537','KRT27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36201973,36209737,'NM_181535','KRT28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36803502,36807370,'NM_002277','KRT31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36869290,36877164,'NM_002278','KRT32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36755896,36760582,'NM_004138','KRT33A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36773271,36779573,'NM_002279','KRT33B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36787446,36792162,'NM_021013','KRT34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36886466,36890918,'NM_002280','KRT35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36895913,36899642,'NM_003771','KRT36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36830334,36834348,'NM_003770','KRT37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36846146,36851122,'NM_006771','KRT38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36368194,36376670,'NM_213656','KRT39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36387493,36396913,'NM_182497','KRT40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37036104,37049977,'NR_033415','KRT42P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36975619,36981836,'NM_000226','KRT9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36450336,36451239,'NM_030967','KRTAP1-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36443662,36444633,'NM_030966','KRTAP1-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36435804,36436980,'NM_031957','KRTAP1-5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36717477,36719031,'NM_001146182','KRTAP16-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36724694,36725473,'NM_031964','KRTAP17-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36456321,36457094,'NM_001123387','KRTAP2-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',298010,298828,'NM_033032','KRTAP2-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36474893,36475657,'NM_033184','KRTAP2-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36418299,36418892,'NM_031958','KRTAP3-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36408970,36409664,'NM_031959','KRTAP3-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36403207,36403911,'NM_033185','KRTAP3-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36593877,36594673,'NM_033060','KRTAP4-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36526959,36528132,'NM_033059','KRTAP4-11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36532870,36533945,'NM_031854','KRTAP4-12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36587223,36587986,'NM_033062','KRTAP4-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36577008,36577950,'NM_033187','KRTAP4-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36569431,36570509,'NM_032524','KRTAP4-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36558701,36559580,'NM_033188','KRTAP4-5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36549210,36550265,'NM_030976','KRTAP4-6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36493984,36494922,'NM_033061','KRTAP4-7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36506759,36507901,'NM_031960','KRTAP4-8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36515166,36516266,'NM_001146041','KRTAP4-9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36599664,36600417,'NM_001190460','KRTAP9-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36636425,36637430,'NM_031961','KRTAP9-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36642240,36643232,'NM_031962','KRTAP9-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36659464,36660431,'NM_033191','KRTAP9-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36647795,36648782,'NM_031963','KRTAP9-8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36665161,36666142,'NM_030975','KRTAP9-9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',22823162,22974845,'NM_014238','KSR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34279637,34331549,'NM_006148','LASP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37211730,37221977,'NM_006455','LEPREL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',74478929,74487656,'NM_005567','LGALS3BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',22982300,23000713,'NR_024043','LGALS9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',20293767,20311440,'NM_001042685','LGALS9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18320823,18338984,'NM_001040078','LGALS9C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',32368884,32376028,'NM_005568','LHX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30331629,30354304,'NM_002311','LIG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59126980,59131251,'NM_030576','LIMD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8064672,8068086,'NR_026951','LINC00324'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72596319,72602663,'NR_027058','LINC00338'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',69257003,69336271,'NR_027146','LINC00469'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76891218,76897643,'NR_038080','LINC00482'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46189757,46199917,'NR_024626','LINC00483'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18069660,18088913,'NM_004140','LLGL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71033377,71082885,'NM_004524','LLGL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8202455,8204584,'NR_024447','LOC100128288'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41276501,41328675,'NR_024559','LOC100128977'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41328944,41331960,'NR_024560','LOC100130148'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38808821,38821792,'NR_027413','LOC100130581'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5036102,5079655,'NR_034082','LOC100130950'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73615077,73619475,'NR_040071','LOC100131096'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34466797,34491230,'NR_036551','LOC100131347'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40695340,40701780,'NR_024435','LOC100133991'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38159472,38166801,'NR_024462','LOC100190938'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70778974,70781571,'NR_036520','LOC100287042'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',10638954,10648141,'NR_036581','LOC100289255'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75940225,76003563,'NR_029376','LOC100294362'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1366962,1368140,'NR_028514','LOC100306951'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',63609332,63643665,'NR_027418','LOC100499466'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',67911057,68100538,'NR_036488','LOC100499467'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34334946,34339163,'NR_038847','LOC100505576'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36812193,36822366,'NR_040111','LOC100505782'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',180995,183279,'NR_040011','LOC100506388'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',48417878,48420011,'NM_001243552','LOC100506650'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6829165,6856377,'NR_040089','LOC100506713'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53761297,53786087,'NR_038411','LOC100506779'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71648231,71662324,'NR_040017','LOC100507218'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72065440,72073025,'NR_038108','LOC100507246'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73054617,73072698,'NR_040050','LOC100507351'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',74526885,74535332,'NR_040018','LOC100507410'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',74398256,74410894,'NM_001243540','LOC100653515'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',60204718,60208084,'NR_027487','LOC146880'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36959383,36964273,'NR_038442','LOC147093'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16630930,16648544,'NR_003190','LOC162632'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18355300,18365291,'NR_003554','LOC220594'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45988566,45994468,'NR_038439','LOC253962'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2257024,2265480,'NR_028335','LOC284009'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7757364,7759990,'NR_024349','LOC284023'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45482711,45488102,'NR_038230','LOC284080'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',33276685,33318476,'NR_024178','LOC284100'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5616277,5774740,'NR_040000','LOC339166'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18266219,18269372,'NR_001443','LOC339240'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38280216,38304277,'NR_027254','LOC388387'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46299038,46300731,'NR_038458','LOC400604'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',69294555,69308529,'NR_040020','LOC400620'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44022821,44038773,'NR_033201','LOC404266'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',22769157,22782776,'NR_033892','LOC440419'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',33605594,33667082,'NR_036750','LOC440434'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',63706395,63708038,'NR_027283','LOC440461'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41033277,41035531,'NR_026901','LOC644172'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41626715,41629866,'NR_034172','LOC644246'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55515708,55520610,'NR_030732','LOC645638'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',674184,675630,'NM_001097610','LOC653486'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55533902,55535062,'NR_027408','LOC653653'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5343470,5345043,'NM_001162371','LOC728392'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36469018,36469870,'NM_001165252','LOC730755'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77478995,77481920,'NR_015454','LOC92659'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53670785,53700878,'NR_027647','LPO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41728273,41770918,'NM_014834','LRRC37A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41945391,41988330,'NM_001006607','LRRC37A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',60280949,60345365,'NM_199340','LRRC37A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40939031,40953672,'NR_002940','LRRC37A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27372267,27404632,'NM_052888','LRRC37B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',25927608,25988610,'NR_015341','LRRC37BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35351252,35354513,'NM_001195545','LRRC3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77574568,77582316,'NM_144999','LRRC45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43263991,43270078,'NM_033413','LRRC46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17816851,17851867,'NM_001130092','LRRC48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45813592,45829913,'NM_018509','LRRC59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39467528,39500513,'NM_152344','LSM12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7700727,7701897,'NM_032356','LSMD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46151924,46185071,'NM_006107','LUC7L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31285635,31294816,'NM_001199951','LYZL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77469436,77474737,'NM_032711','MAFG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',21131940,21159144,'NM_002756','MAP2K3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',11864859,11987776,'NM_003010','MAP2K4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',64922432,65050065,'NM_002758','MAP2K6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40696270,40750197,'NM_003954','MAP3K14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59053532,59127402,'NM_203351','MAP3K3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19222366,19227450,'NM_139034','MAPK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41327541,41461546,'NM_001123066','MAPT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',58132406,58239437,'NM_152598','MARCH10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46609784,46692426,'NM_017643','MBTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34814063,34861053,'NM_004774','MED1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4581471,4583645,'NM_001001683','MED11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',57374747,57497425,'NM_005121','MED13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35428875,35464415,'NM_001079518','MED24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6487356,6495678,'NM_016060','MED31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17321024,17337259,'NM_018019','MED9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15630888,15633744,'NR_002211','MEIS3P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39073283,39094457,'NM_004527','MEOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',78630855,78646011,'NM_001004431','METRNL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2266097,2361950,'NM_024086','METTL16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72234506,72241557,'NM_001206983','METTL23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',57854977,57881186,'NM_181725','METTL2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19227347,19231125,'NM_001198695','MFAP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72245177,72286931,'NM_024311','MFSD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8641152,8643392,'NM_152599','MFSD6L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72380323,72458066,'NM_198955','MGAT5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',14147781,14149787,'NR_026880','MGC12916'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',69717729,69721055,'NR_026914','MGC16275'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41053763,41071112,'NR_027295','MGC57346'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',116622,119732,'NR_003682','MGC70870'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35138934,35140314,'NM_032339','MIEN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70773905,70778906,'NM_020679','MIF4GD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59875701,59895222,'NM_001085423','MILR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4683302,4742135,'NM_153827','MINK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44012198,44012308,'NR_029608','MIR10A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19188411,19188480,'NR_031591','MIR1180'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43588787,43588872,'NR_031607','MIR1203'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76721590,76721703,'NR_031652','MIR1250'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2598121,2598226,'NR_031654','MIR1253'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16126052,16126127,'NR_031698','MIR1288'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1899951,1900052,'NR_029674','MIR132'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53763591,53763678,'NR_029683','MIR142'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24212676,24212762,'NR_029685','MIR144'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43469525,43469612,'NR_029687','MIR152'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26911127,26911215,'NR_029710','MIR193A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6861657,6861744,'NR_029712','MIR195'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44064850,44064920,'NR_029582','MIR196A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55273408,55273480,'NR_029493','MIR21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38877699,38877779,'NR_031751','MIR2117'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1900314,1900424,'NR_029625','MIR212'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1563946,1564031,'NR_029494','MIR22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1561547,1566316,'NR_028503','MIR22HG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',32465154,32465223,'NR_036056','MIR2909'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',54583278,54583364,'NR_029842','MIR301A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59927345,59927429,'NR_039891','MIR3064'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76714271,76714350,'NR_036151','MIR3065'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',872465,872549,'NR_036148','MIR3183'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',25468229,25468304,'NR_036149','MIR3184'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44156768,44156836,'NR_036150','MIR3185'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77032724,77032809,'NR_036152','MIR3186'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7067339,7067422,'NR_029896','MIR324'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76714277,76714344,'NR_029897','MIR338'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17657874,17657970,'NR_030361','MIR33B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',52323629,52323715,'NR_037408','MIR3614'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70256346,70256433,'NR_037409','MIR3615'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26926542,26926653,'NR_029856','MIR365-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8031217,8031302,'NR_037447','MIR3676'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70913744,70913838,'NR_037449','MIR3678'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',25468222,25468316,'NR_029945','MIR423'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7932098,7932190,'NR_036201','MIR4314'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40908511,40908584,'NR_036199','MIR4315-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40908511,40908584,'NR_036271','MIR4315-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72904660,72904731,'NR_036200','MIR4316'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24212512,24212584,'NR_029970','MIR451'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24212514,24212582,'NR_039876','MIR451B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6499482,6499552,'NR_039745','MIR4520A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6499491,6499545,'NR_039874','MIR4520B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8030987,8031047,'NR_039746','MIR4521'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',22645062,22645149,'NR_039748','MIR4522'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24741805,24741874,'NR_039749','MIR4523'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',64607299,64607368,'NR_039750','MIR4524'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',54569900,54570015,'NR_030411','MIR454'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23711802,23711886,'NR_039875','MIR4723'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26886020,26886109,'NR_039877','MIR4724'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26926400,26926490,'NR_039878','MIR4725'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34129469,34129527,'NR_039879','MIR4726'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34235616,34235671,'NR_039880','MIR4727'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35136257,35136345,'NR_039881','MIR4728'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',54798225,54798297,'NR_039882','MIR4729'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76007812,76007888,'NR_039883','MIR4730'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15095668,15095738,'NR_039884','MIR4731'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24212798,24212874,'NR_039885','MIR4732'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26445493,26445569,'NR_039886','MIR4733'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34112040,34112110,'NR_039887','MIR4734'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53768335,53768382,'NR_039889','MIR4736'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55475167,55475248,'NR_039890','MIR4737'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71292196,71292283,'NR_039892','MIR4738'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75295579,75295653,'NR_039893','MIR4739'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76989110,76989173,'NR_039894','MIR4740'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6861953,6862065,'NR_030178','MIR497'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6859860,6863697,'NR_038310','MIR497HG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59927793,59927893,'NR_039969','MIR5047'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',62898066,62898163,'NR_037517','MIR548AA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',28547065,28547096,'NR_039621','MIR548AC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',60821545,60847231,'NR_039605','MIR548O2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',58152589,58622466,'NR_036146','MIR548W'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27701240,27701334,'NR_030362','MIR632'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',62213651,62213748,'NR_030364','MIR634'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',63932186,63932284,'NR_030365','MIR635'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72244126,72244225,'NR_030366','MIR636'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76713670,76713768,'NR_030394','MIR657'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',11925940,11926038,'NR_030613','MIR744'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5330970,5334854,'NM_024039','MIS12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53637795,53651965,'NM_001165927','MKS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34115398,34139582,'NM_005937','MLLT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37972603,37978747,'NM_170607','MLX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',50824972,50854340,'NM_012329','MMD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31116988,31146753,'NM_024302','MMP28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2234103,2251008,'NM_020310','MNT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7427688,7432251,'NR_024603','MPDU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53702215,53713295,'NM_000250','MPO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39308252,39340639,'NM_005374','MPP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39233692,39266073,'NM_001932','MPP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16886798,17036687,'NM_201274','MPRIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',58058493,58124684,'NM_006039','MRC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',32032137,32039520,'NM_024864','MRM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43255636,43263906,'NM_145255','MRPL10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77280804,77284961,'NM_002949','MRPL12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45800226,45805561,'NM_016504','MRPL27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71406318,71412776,'NM_032478','MRPL38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',33706507,33732628,'NM_032351','MRPL45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',42882591,42924985,'NR_033934','MRPL45P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53271285,53282432,'NM_016070','MRPS23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70769343,70774052,'NM_015971','MRPS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',52688929,53112298,'NM_138962','MSI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35532315,35546568,'NM_001012241','MSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53589318,53591479,'NR_002307','MSX2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53921891,53950250,'NM_004687','MTMR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',21946563,21948118,'NM_001190452','MTRNR2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',52316461,52317273,'NR_027025','MTVR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72183403,72218651,'NM_001008528','MXRA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77490811,77498400,'NM_001145113','MYADML2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4388939,4405430,'NM_001105538','MYBBP1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45940743,45963861,'NM_032133','MYCBPAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',10336348,10362584,'NM_005963','MYH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8318254,8474761,'NM_005964','MYH10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',10144907,10217047,'NM_003802','MYH13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',10365189,10393665,'NM_001100112','MYH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',10472567,10501351,'NM_002470','MYH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',10287332,10313601,'NM_017533','MYH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',10234366,10265992,'NM_002472','MYH8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',42641712,42656044,'NM_002476','MYL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17952744,18023841,'NM_016239','MYO15A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71095733,71134522,'NR_003587','MYO15B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24424653,24531533,'NM_078471','MYO18A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31925711,31965418,'NM_001163735','MYO19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1314229,1341722,'NM_033375','MYO1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27843740,28228015,'NM_015194','MYO1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',12509931,12611376,'NM_001146312','MYOCD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',57022575,57023345,'NM_199290','NACA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37941476,37949992,'NM_000263','NAGLU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39437557,39441962,'NM_153006','NAGS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',78009348,78039432,'NM_001038618','NARF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70278280,70284065,'NM_015654','NAT9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38576036,38719233,'NM_031858','NBR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38531125,38550651,'NR_003108','NBR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15874132,16038678,'NM_001190440','NCOR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8279903,8312206,'NM_030808','NDEL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24079958,24093911,'NM_178170','NEK8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7159674,7173362,'NM_032442','NEURL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35013546,35017701,'NM_006160','NEUROD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26446070,26728821,'NM_001042492','NF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43480684,43493906,'NM_003204','NFE2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44927653,44947381,'NM_002507','NGFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37425612,37431182,'NM_001144929','NKIRAS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30482480,30493435,'NM_018096','NLE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7252225,7263903,'NM_020795','NLGN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23393814,23547531,'NM_016231','NLK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5358161,5428556,'NM_033007','NLRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46585918,46594449,'NM_198175','NME1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46585895,46604104,'NR_037149','NME1-NME2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46598631,46604104,'NM_002512','NME2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40494205,40541908,'NM_021079','NMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',52026058,52027950,'NM_005450','NOG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',63144522,63170728,'NM_015462','NOL11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23107918,23151682,'NM_000625','NOS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77503672,77512347,'NM_178493','NOTUM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2419653,2420365,'NM_148896','NPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',42963442,43055641,'NM_006310','NPEPPS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77134356,77214543,'NM_017921','NPLOC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76055227,76064999,'NM_002522','NPTX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35502562,35510499,'NM_021724','NR1D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',42023350,42189995,'NM_006178','NSF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41805921,41855899,'NR_033799','NSFP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',25467959,25537612,'NM_032141','NSRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70637917,70639472,'NM_014595','NT5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37234859,37246049,'NR_033465','NT5C3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17147404,17191702,'NM_020201','NT5M'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8865583,9088042,'NM_004822','NTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24606979,24645292,'NM_020772','NUFIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70713191,70743449,'NM_024844','NUP85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5230069,5263783,'NM_002532','NUP88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',649302,829748,'NM_022463','NXN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45008296,45016170,'NM_007225','NXPH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8183912,8190088,'NM_153007','ODF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26645793,26648506,'NM_002544','OMG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3065664,3066594,'NM_014565','OR1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3047562,3048492,'NM_012352','OR1A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2942101,2943040,'NM_002548','OR1D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3090719,3091309,'NR_033795','OR1D4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2912712,2913651,'NM_014566','OR1D5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3247509,3248454,'NM_003553','OR1E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3282913,3283885,'NM_003554','OR1E2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2976653,2977595,'NM_003555','OR1G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3141678,3142626,'NM_002550','OR3A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3127933,3129018,'NM_002551','OR3A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3270611,3271577,'NM_012373','OR3A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3160288,3161490,'NR_024128','OR3A4P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53587513,53588446,'NM_012374','OR4D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53602015,53602939,'NM_001004707','OR4D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35330821,35337410,'NM_139280','ORMDL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43239731,43254146,'NM_145798','OSBPL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70431964,70441601,'NM_178160','OTOP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70443491,70457106,'NM_178233','OTOP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1892026,1893475,'NM_080822','OVCA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3746633,3766709,'NM_002558','P2RX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3523270,3546447,'NM_002561','P2RX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3512935,3546447,'NR_037928','P2RX5-TAX1BP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77394322,77411833,'NM_000918','P4HB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2443672,2535659,'NM_000430','PAFAH1B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34143675,34158084,'NM_007144','PCGF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',51183338,51209747,'NM_021213','PCTP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77454068,77462369,'NR_033685','PCYT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77227893,77234012,'NM_002602','PDE6G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45527099,45543732,'NM_001199898','PDK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59750508,59817743,'NM_000442','PECAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4521427,4554381,'NM_014389','PELP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17349601,17426470,'NM_007169','PEMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7984512,7996478,'NM_002616','PER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30925926,30929769,'NM_000286','PEX12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8093320,8114534,'NM_012393','PFAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4789691,4792570,'NM_005022','PFN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35080900,35097836,'NM_033419','PGAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73886329,73932234,'NM_024419','PGS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44836418,44847241,'NM_002634','PHB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24263287,24302634,'NM_020889','PHF12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7079070,7083549,'NM_024297','PHF23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44655730,44663127,'NM_178500','PHOSPHO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16061233,16170298,'NM_004278','PIGL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23904532,23923014,'NM_033198','PIGS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31965515,31969263,'NM_178517','PIGW'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8722957,8756559,'NM_014308','PIK3R5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8646779,8711719,'NM_001010855','PIK3R6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34175469,34209684,'NM_003559','PIP4K2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24394043,24408362,'NM_016518','PIPOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',10666516,10682143,'NM_001101387','PIRT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1368032,1412860,'NM_006224','PITPNA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',62804385,63120109,'NM_181671','PITPNC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6295306,6400601,'NM_001165966','PITPNM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40544533,40565417,'NM_133373','PLCD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4657352,4673694,'NM_001243108','PLD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17045033,17050371,'NM_178836','PLD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38073458,38082574,'NM_024927','PLEKHH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',40869048,40923929,'NM_014798','PLEKHM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',60211420,60263764,'NR_024386','PLEKHM1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7233770,7238886,'NM_001201576','PLSCR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34473081,34561428,'NM_020405','PLXDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15073821,15104818,'NM_153322','PMP22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35078032,35080254,'NM_002686','PNMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43373887,43381673,'NM_018129','PNPO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23697785,23708730,'NM_015584','POLDIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59904363,59923646,'NM_007215','POLG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7328421,7358659,'NM_000937','POLR2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',56032325,56098422,'NM_003620','PPM1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',54188230,54417316,'NM_014906','PPM1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35036702,35046404,'NM_032192','PPP1R1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45566099,45582876,'NM_032595','PPP1R9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39373697,39375359,'NM_002722','PPY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23598596,23599442,'NR_002181','PPY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44154080,44154881,'NM_032391','PRAC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72035262,72053053,'NR_033357','PRCD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',64019704,64040505,'NM_212471','PRKAR1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',61729387,62237324,'NM_002737','PRKCA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24054660,24062999,'NM_152465','PROCA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1500672,1534926,'NM_006445','PRPF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71818462,71861825,'NM_002766','PRPSAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18702105,18775324,'NM_002767','PRPSAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',54587641,54638852,'NM_018304','PRR11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43384332,43390109,'NM_024320','PRR15L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34162527,34174004,'NM_002795','PSMB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4646414,4648748,'NM_002798','PSMB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37977854,37983273,'NM_016556','PSMC3IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59258775,59263119,'NM_001199163','PSMC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27795614,27832155,'NM_002815','PSMD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',62767080,62793183,'NM_002816','PSMD12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35390585,35407738,'NM_002809','PSMD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38238948,38249303,'NM_176863','PSME3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37807992,37828864,'NM_012232','PTRF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55129448,55139638,'NM_016077','PTRH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2308040,2312779,'NM_153824','PYCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39385632,39437363,'NM_004160','PYY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23577715,23579212,'NR_003064','PYY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71781724,71815356,'NM_032134','QRICH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26742767,26889352,'NM_032932','RAB11FIP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24065425,24069035,'NM_001144942','RAB34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70244950,70255069,'NM_001163990','RAB37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',78208231,78249887,'NM_006822','RAB40B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37530522,37560548,'NM_201434','RAB5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5126281,5229856,'NM_004703','RABEP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77582820,77585369,'NM_005052','RAC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',54124961,54127694,'NM_002876','RAD51C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30450924,30471001,'NM_133629','RAD51D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30360243,30472654,'NR_037714','RAD51L3-RFFL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17525511,17655490,'NM_030665','RAI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38166737,38168585,'NM_005854','RAMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8132693,8134134,'NM_001177801','RANGRF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2646481,2887785,'NM_015085','RAP1GAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35587767,35605432,'NM_016339','RAPGEFL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35718948,35767421,'NM_000964','RARA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17338477,17340434,'NM_001199989','RASD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31082791,31094653,'NM_033315','RASL10B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',74597021,74990158,'NM_001082575','RBFOX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',9741751,9749409,'NM_002903','RCVRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31269197,31281416,'NM_001163130','RDM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71157388,71174864,'NM_001003716','RECQL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30360243,30414872,'NM_001017368','RFFL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77599066,77602939,'NM_002917','RFNG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',60563917,60654283,'NM_001081955','RGS9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71978569,72009104,'NM_024599','RHBDF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27617307,27675793,'NM_138328','RHBDL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27493585,27576859,'NM_001033566','RHOT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1496194,1500142,'NM_031430','RILP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6856459,6858576,'NR_037716','RNASEK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6856459,6861567,'NR_037717','RNASEK-C17ORF49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38430783,38437584,'NM_005440','RND2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19255083,19261181,'NM_007148','RNF112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',52477837,52479155,'NR_002818','RNF126P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26322081,26351053,'NM_197939','RNF135'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71650128,71747985,'NM_052916','RNF157'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4784374,4789262,'NM_015528','RNF167'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75849261,75909857,'NM_020954','RNF213'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8234747,8241869,'NM_001146684','RNF222'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53786036,53849930,'NM_017763','RNF43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55384504,55396899,'NM_016125','RNFT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',632262,642491,'NM_018146','RNMTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1680022,1749598,'NM_002945','RPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5263684,5277064,'NM_001160266','RPAIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',62179,202633,'NM_006987','RPH3AL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34610061,34614506,'NM_000981','RPL19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34259846,34263579,'NM_000978','RPL23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24071126,24075501,'NM_000984','RPL23A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8221558,8227290,'NM_000987','RPL26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38403971,38408497,'NM_000988','RPL27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7598362,7599011,'NR_002778','RPL29P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',69711389,69717614,'NM_000999','RPL38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',42410520,42411613,'NM_203400','RPRML'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55325224,55382568,'NM_003161','RPS6KB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76133219,76554768,'NM_020761','RPTOR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45911188,45918335,'NM_018346','RSAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1784720,1874928,'NM_178568','RTN4RL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38386107,38399233,'NM_173079','RUNDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39741452,39750764,'NM_006695','RUNDC3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45545033,45562166,'NM_174920','SAMD14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71174993,71215734,'NM_013260','SAP30BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23723113,23752192,'NM_015077','SARM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7470280,7471919,'NM_133491','SAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1483901,1495791,'NR_028076','SCARF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72596983,72597170,'NR_003013','SCARNA16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55663658,55663788,'NR_002999','SCARNA20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7750165,7750303,'NR_003000','SCARNA21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59369645,59404010,'NM_000334','SCN4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',10524373,10541610,'NM_004589','SCO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',52410466,52439128,'NM_021626','SCPEP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43270045,43273698,'NM_138355','SCRN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23999733,24013060,'NM_006923','SDF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',68842117,69151822,'NM_001144952','SDK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23715416,23716392,'NM_001080837','SEBOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72692889,72724776,'NM_001144001','SEC14L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77872188,77885210,'NM_003004','SECTM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7406032,7416011,'NM_015670','SENP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7406032,7423048,'NR_037926','SENP3-EIF4A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53952609,53961777,'NM_004574','SEPT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72827191,73008273,'NM_006640','SEPT9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1612008,1627609,'NM_002615','SERPINF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1592879,1605309,'NM_000934','SERPINF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24306072,24357207,'NM_001098635','SEZ6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45598364,45608292,'NM_000023','SGCA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23959108,23965338,'NM_001174103','SGK494'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75797673,75808794,'NM_000199','SGSH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2187555,2231098,'NM_014853','SGSM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27391467,27393964,'NR_033412','SH3GL1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',25975461,25977951,'NR_033420','SH3GL1P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7474177,7477425,'NM_001146280','SHBG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',11085464,11408105,'NM_207386','SHISA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18171911,18207581,'NM_148918','SHMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3458304,3486365,'NM_013276','SHPK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77463106,77469350,'NM_016538','SIRT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',54542089,54587582,'NM_001100595','SKA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43565800,43862593,'NM_001075099','SKAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23824790,23848925,'NM_001145975','SLC13A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6528762,6557464,'NM_177550','SLC13A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6885672,6887966,'NM_153357','SLC16A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6880117,6884164,'NM_201566','SLC16A13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77783396,77790664,'NM_001042423','SLC16A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70595649,70613843,'NM_004695','SLC16A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',63774761,63799000,'NM_001174166','SLC16A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77289775,77298447,'NM_012140','SLC25A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4781169,4784207,'NM_003562','SLC25A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70780655,70797125,'NM_021734','SLC25A19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8131806,8138895,'NM_201520','SLC25A35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39752518,39757743,'NM_001143780','SLC25A39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75808794,75841903,'NM_173626','SLC26A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7125777,7132091,'NM_001042','SLC2A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45133688,45140281,'NM_005827','SLC35B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30543651,30545525,'NM_152462','SLC35G3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7325444,7327107,'NM_001102614','SLC35G6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76833393,76883691,'NM_001037984','SLC38A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',68153679,68600448,'NM_001159770','SLC39A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1424445,1478880,'NM_152346','SLC43A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23745787,23757357,'NM_080669','SLC46A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19377758,19422938,'NM_018242','SLC47A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19522219,19560635,'NM_001099646','SLC47A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39681283,39701028,'NM_000342','SLC4A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18796202,18864728,'NM_152351','SLC5A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',25547503,25587080,'NM_001045','SLC6A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70256357,70277094,'NM_004252','SLC9A3R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30701440,30724833,'NM_001104589','SLFN11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30762193,30783656,'NM_018042','SLFN12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30826054,30838871,'NM_001195790','SLFN12L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30786227,30799969,'NM_144682','SLFN13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30899256,30909223,'NM_001129820','SLFN14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30594198,30618874,'NM_144975','SLFN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59263172,59274083,'NM_001098426','SMARCD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36037505,36057629,'NM_003079','SMARCE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17620724,17623568,'NR_024007','SMCR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18104572,18109820,'NM_139162','SMCR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18159318,18172095,'NM_144775','SMCR8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17263382,17267453,'NM_001243312','SMCR9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1909882,2153563,'NM_001170957','SMG6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',54642152,54647393,'NM_018149','SMG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4434582,4458363,'NM_001114974','SMTNL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59971196,60088848,'NM_022739','SMURF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1629578,1679925,'NM_052928','SMYD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44362457,44377153,'NM_007241','SNF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34262641,34262774,'NR_002576','SNORA21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',63167247,63167379,'NR_003706','SNORA38B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7418754,7418889,'NR_002918','SNORA48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7421996,7422133,'NR_002912','SNORA67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59577430,59577563,'NR_002995','SNORA76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7420852,7421000,'NR_002604','SNORD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59577169,59577249,'NR_004380','SNORD104'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35437320,35437424,'NR_003692','SNORD124'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72069309,72069383,'NR_004395','SNORD1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72068784,72068870,'NR_004396','SNORD1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72066468,72066546,'NR_004397','SNORD1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24074573,24074636,'NR_000014','SNORD42A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24071694,24071761,'NR_000013','SNORD42B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16284074,16284145,'NR_002744','SNORD49A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16283547,16283595,'NR_003043','SNORD49B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24073726,24073798,'NR_000010','SNORD4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24074825,24074899,'NR_000009','SNORD4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16285264,16285337,'NR_003054','SNORD65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30924788,30924885,'NR_003037','SNORD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2180322,2180414,'NR_003072','SNORD91A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2179168,2179254,'NR_003073','SNORD91B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43539918,43555104,'NM_152244','SNX11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73864456,73867753,'NM_003955','SOCS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',33761532,33815372,'NM_014598','SOCS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39186624,39191682,'NM_025237','SOST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7432221,7434212,'NM_006942','SOX15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',67628755,67634155,'NM_000346','SOX9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43328514,43361322,'NM_003110','SP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43277278,43288239,'NM_199262','SP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',28342994,28349005,'NM_173847','SPACA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23928709,23950183,'NM_006461','SPAG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23950277,23968522,'NR_040012','SPAG5-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4803243,4811856,'NM_004890','SPAG7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46394533,46553225,'NM_003971','SPAG9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45979560,45988212,'NM_022827','SPATA20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3290055,3321817,'NM_001170699','SPATA22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8597148,8602602,'NM_001128076','SPDYE4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19853240,20158664,'NM_001243439','SPECC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7264402,7265675,'NM_199339','SPEM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71892284,71895536,'NM_021972','SPHK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4348877,4389977,'NM_001124758','SPNS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4283967,4338248,'NM_182538','SPNS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45031244,45110524,'NM_003563','SPOP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',33939784,34015709,'NM_025248','SRCIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17655387,17681050,'NM_004176','SREBF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71546785,71580202,'NM_014230','SRP68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2153997,2175303,'NM_021947','SRR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53433278,53439706,'NM_006924','SRSF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72241791,72245088,'NM_001195427','SRSF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24977090,25281144,'NM_033389','SSH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',68672754,68679657,'NM_001050','SSTR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72132439,72151489,'NM_018414','ST6GALNAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',72073055,72093740,'NM_006456','ST6GALNAC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',34620314,34635566,'NM_198993','STAC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35046858,35073980,'NM_006804','STARD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37718868,37793931,'NM_213662','STAT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37693090,37717486,'NM_003152','STAT5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37604720,37681950,'NM_012448','STAT5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',41432452,41432897,'NM_001007532','STH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77569867,77574062,'NM_144998','STRA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59133923,59173062,'NM_153335','STRADA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',9094512,9420000,'NR_033656','STX8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',50401124,50596448,'NM_178509','STXBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70675419,70690693,'NM_006937','SUMO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53777537,53784562,'NM_003168','SUPT4H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24013428,24053376,'NM_003170','SUPT6H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27288156,27352170,'NM_015355','SUZ12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',26060751,26121194,'NR_024187','SUZ12P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73676265,73680604,'NM_004710','SYNGR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',32949012,33043599,'NM_007247','SYNRG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45270669,45280378,'NM_170685','TAC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59031962,59039457,'NM_016360','TACO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',32841424,32911339,'NM_001488','TADA2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31160600,31198351,'NM_003487','TAF15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',58440629,58858799,'NM_025185','TANC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24742068,24903047,'NM_020791','TAOK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3512935,3518722,'NM_014604','TAX1BP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',75528413,75624242,'NM_019020','TBC1D16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15576315,15588823,'NM_178571','TBC1D26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18479566,18488465,'NM_001039397','TBC1D28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',25910709,25914635,'NM_015594','TBC1D29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',33541107,33552247,'NM_001123391','TBC1D3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31517173,31528101,'NM_001001417','TBC1D3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31605197,31616145,'NM_001001418','TBC1D3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31820231,31831163,'NM_032258','TBC1D3F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31871287,31882216,'NM_001040282','TBC1D3G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31820048,31831163,'NM_001123392','TBC1D3H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55408166,55451118,'NR_002924','TBC1D3P1-DHX40P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',57696848,57707798,'NR_027486','TBC1D3P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',78303228,78494351,'NM_005993','TBCD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43127628,43144428,'NM_014726','TBKBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',56832038,56841609,'NM_005994','TBX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',43165608,43178484,'NM_013351','TBX21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',56888588,56916446,'NM_018488','TBX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59288107,59295471,'NR_002947','TCAM1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35075124,35076333,'NM_003673','TCAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6644023,6675784,'NM_053285','TEKT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15147853,15185683,'NM_031898','TEKT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71486892,71508262,'NM_001113324','TEN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53989036,54124415,'NM_198393','TEX14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77910411,77914941,'NM_207459','TEX19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',59578526,59694385,'NM_018469','TEX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77439006,77442758,'NM_005782','THOC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35471971,35503646,'NM_001190919','THRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24424664,24426753,'NM_004740','TIAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',847106,852140,'NM_013337','TIMM22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',74360653,74433067,'NM_003255','TIMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73681754,73694880,'NM_003258','TK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24075492,24078076,'NM_001160407','TLCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1552833,1560412,'NM_001164407','TLCD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',57910117,58046573,'NM_001112707','TLK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4621935,4633253,'NM_003963','TM4SF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73620593,73640083,'NM_007267','TMC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73638453,73650644,'NM_152468','TMC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',51151986,51164481,'NM_001099640','TMEM100'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39444081,39447871,'NM_032376','TMEM101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7279485,7281722,'NM_178518','TMEM102'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70284216,70347517,'NM_017728','TMEM104'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',76899666,76919069,'NM_178520','TMEM105'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38719419,38727115,'NM_145041','TMEM106A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8017020,8020439,'NM_032354','TMEM107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',21041854,21058500,'NR_024547','TMEM11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',29931880,29990450,'NM_207313','TMEM132E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23708813,23713216,'NM_152464','TMEM199'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',10557363,10574371,'NM_001004313','TMEM220'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73738985,73748663,'NM_001204212','TMEM235'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7699108,7700142,'NM_203411','TMEM88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45703765,45713845,'NM_001168215','TMEM92'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3518838,3519711,'NM_031298','TMEM93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7199220,7201262,'NM_198154','TMEM95'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23670247,23679838,'NM_014573','TMEM97'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',28279040,28292780,'NM_015544','TMEM98'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',36228962,36246052,'NM_001195386','TMEM99'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',25667491,25685191,'NM_206832','TMIGD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39620099,39624625,'NM_177441','TMUB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23686674,23698162,'NM_021137','TNFAIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16783122,16816127,'NM_012452','TNFRSF13B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7393098,7401931,'NM_003809','TNFSF12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7393098,7405649,'NM_172089','TNFSF12-TNFSF13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7402332,7405649,'NM_003808','TNFSF13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7225088,7233816,'NM_003985','TNK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',73511912,73616511,'NM_001142640','TNRC6C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35885605,35911380,'NM_032865','TNS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46294585,46298714,'NM_005749','TOB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',50333050,50394327,'NM_005486','TOM1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',17687546,17816509,'NM_001082968','TOM1L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35798298,35827728,'NM_001067','TOP2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18117959,18159046,'NM_004618','TOP3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7512444,7519536,'NM_001126116','TP53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24919864,24924301,'NM_138349','TP53I13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',24095149,24102103,'NM_004295','TRAF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7774387,7775992,'NM_021210','TRAPPC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15472004,15526918,'NM_006470','TRIM16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18566126,18580156,'NM_001037330','TRIM16L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',52320268,52346408,'NM_005082','TRIM25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',54430342,54539048,'NM_015294','TRIM37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71381839,71386251,'NM_033452','TRIM47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71396635,71404649,'NM_173547','TRIM65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3415489,3442920,'NM_080706','TRPV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16259580,16281042,'NM_016113','TRPV2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3363235,3408039,'NM_145068','TRPV3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71024203,71032415,'NM_207346','TSEN54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77219753,77226184,'NM_031945','TSPAN10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',2172731,2187428,'NM_018128','TSR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15843418,15873448,'NM_017775','TTC19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37340413,37371194,'NM_031421','TTC25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44194591,44226685,'NM_173623','TTLL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',69756099,69769752,'NM_052869','TTYH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55291621,55325088,'NM_001193613','TUBD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38014883,38020782,'NM_001070','TUBG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38064791,38072550,'NM_016437','TUBG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1129706,1151031,'NM_172367','TUSC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6484945,6488585,'NM_032731','TXNDC17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16225091,16226779,'NM_018955','UBB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4119260,4216718,'NM_003342','UBE2G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71897207,71960883,'NM_022066','UBE2O'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44340729,44361421,'NM_023079','UBE2Z'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',39637926,39653776,'NM_001076683','UBTF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',19614734,19711831,'NM_014683','ULK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23897851,23903773,'NM_005148','UNC119'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71334901,71352393,'NM_199242','UNC13D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30498948,30540477,'NM_001033576','UNC45B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71292514,71333481,'NM_001080419','UNK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',70423770,70430946,'NM_173477','USH1G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',20843497,20886944,'NM_015276','USP22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55609472,55824368,'NM_032582','USP32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',74304559,74348564,'NM_025090','USP36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',9489674,9573728,'NM_153210','USP43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4972410,5019048,'NM_004505','USP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46692895,46730291,'NM_016001','UTP18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27214302,27252842,'NM_018428','UTP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',77925489,77926659,'NM_018949','UTS2R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',8003189,8007018,'NM_014232','VAMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38420147,38427985,'NM_006373','VAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',53403908,53420614,'NM_007146','VEZF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4635319,4636469,'NM_182566','VMO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',55139644,55272734,'NM_030938','VMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38178979,38185143,'NM_032353','VPS25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',382282,564846,'NM_018289','VPS53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',23718425,23721500,'NM_000638','VTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71353374,71363096,'NM_012478','WBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',9420668,9487501,'NM_001080556','WDR16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',78165726,78199700,'NM_019613','WDR45L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1574583,1588643,'NM_001163811','WDR81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',46267603,46274708,'NM_175575','WFIKKN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35629099,35691965,'NM_133264','WIPF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',63929016,63965248,'NM_017983','WIPI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',38186174,38202610,'NM_032387','WNK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',42196856,42251081,'NM_030753','WNT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',42283966,42309436,'NM_003396','WNT9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7531482,7547545,'NM_001143991','WRAP53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',22645232,22664772,'NM_134265','WSB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5914657,5968471,'NM_015253','WSCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',6599879,6619688,'NM_199139','XAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',45778391,45793511,'NM_022167','XYLT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7132294,7138600,'NM_015982','YBX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',54763834,54833877,'NM_001005404','YPEL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',1194583,1250306,'NM_006761','YWHAE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',71586857,71590480,'NM_180990','ZACN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',7303408,7323668,'NM_001128833','ZBTB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4922477,4940393,'NM_153018','ZFP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4590067,4596159,'NM_001136046','ZMYND15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',11821486,11841414,'NM_144680','ZNF18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',27701269,27721581,'NM_001098507','ZNF207'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',4949754,4967121,'NM_014519','ZNF232'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15543615,15564825,'NM_001130842','ZNF286A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',18502467,18526297,'NM_001145045','ZNF286B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16394355,16413245,'NM_020653','ZNF287'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',37431119,37443570,'NM_001242704','ZNF385C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',5023554,5035902,'NM_032530','ZNF594'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',16464772,16497892,'NM_020787','ZNF624'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',44721566,44794475,'NM_001145365','ZNF652'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',78380598,78391220,'NM_024702','ZNF750'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',30312661,30314318,'NM_052857','ZNF830'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',31916585,31925775,'NM_004773','ZNHIT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',35277980,35287675,'NM_198844','ZPBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',15820599,15843731,'NM_001042697','ZSWIM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr17',3854487,3993002,'NM_015113','ZZEF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',17484855,17538764,'NM_138340','ABHD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',45563871,45594249,'NM_006111','ACAA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',894943,902173,'NM_001099733','ADCYAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',75967902,75999219,'NM_014913','ADNP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',12318942,12367275,'NM_006796','AFG3L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',54299461,54447169,'NM_052947','ALPK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',9127560,9275983,'NM_001204056','ANKRD12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',14169095,14217049,'NR_040113','ANKRD20A5P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',19433975,19496847,'NM_173505','ANKRD29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',14738238,14842737,'NM_001145029','ANKRD30B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',10444624,10478698,'NM_153000','APCDD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',22686004,22696573,'NM_004028','AQP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',6824431,6905712,'NM_001010000','ARHGAP28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',29412538,29581397,'NM_030632','ASXL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',41918107,41932285,'NM_004046','ATP5A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',53464656,53621325,'NM_005603','ATP8B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',74930384,75239270,'NM_198531','ATP9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',27456206,27518684,'NM_004775','B4GALT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',58941558,59137593,'NM_000633','BCL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',52965290,52968637,'NR_033372','BOD1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',13208785,13642753,'NM_181481','C18orf1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',32630031,32663156,'NM_015476','C18orf10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',5226722,5228028,'NR_026849','C18orf18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',13653345,13716591,'NM_152352','C18orf19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31806585,31813248,'NM_001201476','C18orf21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',42007985,42100953,'NM_001008239','C18orf25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',50409387,50417722,'NM_173629','C18orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',45261545,45267642,'NM_001199346','C18orf32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',28771363,29274043,'NM_001105528','C18orf34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',5133671,5187255,'NM_001145194','C18orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',19129976,19271923,'NM_032933','C18orf45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',50139168,50162402,'NM_173529','C18orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',69966725,69977184,'NM_014177','C18orf55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',639619,648340,'NM_001012716','C18orf56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',71250814,71268577,'NM_001037331','C18orf62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',70134089,70177402,'NM_001174123','C18orf63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',19337459,19365742,'NM_013326','C18orf8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',18968525,19094432,'NR_023359','CABLES1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',19972952,19995562,'NM_153768','CABYR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',68354894,68362703,'NM_182511','CBLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',2642168,2645394,'NR_033754','CBX3P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',55249150,55515624,'NM_133459','CCBE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',64616296,64873406,'NM_024781','CCDC102B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',46007561,46046863,'NM_145020','CCDC11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',8707368,8822775,'NM_015210','CCDC165'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',50719737,50776277,'NM_001143829','CCDC68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',65681172,65775212,'NM_006566','CD226'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',62322300,62422196,'NM_021153','CDH19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',23784927,24011443,'NM_001792','CDH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',57308754,57373345,'NM_031891','CDH20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',61569136,61699154,'NM_004361','CDH7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',33077005,33399998,'NM_020180','CELF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',12981360,13115051,'NM_032142','CEP192'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',12662630,12692703,'NM_024899','CEP76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',570368,571524,'NM_004066','CETN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',11841388,11844448,'NM_020412','CHMP1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',22749592,23019287,'NM_031422','CHST9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',22699269,22769908,'NR_026908','CHST9-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',12244359,12267594,'NR_036468','CIDEA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',606699,640293,'NM_199167','CLUL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',70352671,70403241,'NM_032649','CNDP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',70314479,70341669,'NM_018235','CNDP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',309354,490729,'NM_130386','COLEC12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',55113615,55136861,'NM_181654','CPLX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',18247561,18251876,'NM_172241','CTAGE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',75540788,75615498,'NM_048368','CTDP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',44319424,44643584,'NM_014772','CTIF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',14467953,14488705,'NR_024076','CXADRP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',46062710,46068690,'NM_014593','CXXC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',70071506,70110231,'NM_148923','CYB5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',48120539,49316271,'NM_005215','DCC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',3486029,3835358,'NM_001003809','DLGAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',65219263,65667302,'NM_152721','DOK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',26963211,26996817,'NM_024421','DSC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',26899939,26936386,'NM_004949','DSC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',26824049,26876779,'NM_001941','DSC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',63324798,63334947,'NM_032160','DSEL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',27152049,27191391,'NM_001942','DSG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',27332024,27382812,'NM_001943','DSG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',27281729,27312663,'NM_001944','DSG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',27210737,27247878,'NM_177986','DSG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',30652244,30725806,'NM_001198944','DTNA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',44824169,45241077,'NM_017653','DYM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',46748384,46768488,'NM_018696','ELAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31963834,32008686,'NM_018255','ELP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',2837027,2904090,'NM_032048','EMILIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',660323,702517,'NM_202758','ENOSF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',5382387,5533986,'NM_012307','EPB41L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',41681571,41801303,'NM_020964','EPG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',17363259,17434691,'NM_052911','ESCO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',28097481,28304445,'NM_022751','FAM59A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',70253942,70275483,'NM_001044369','FAM69C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',69891567,69966080,'NM_001142958','FBXO15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',53363070,53404967,'NM_000140','FECH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',32131699,32614016,'NM_025135','FHOD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',3584111,3587377,'NR_024101','FLJ35776'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31488530,31545796,'NM_020474','GALNT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',73090995,73111084,'NM_001480','GALR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',18003413,18036225,'NM_005257','GATA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',11741561,11873144,'NM_002071','GNAL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',17076200,17356789,'NM_001142966','GREB1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',55038379,55048982,'NM_002091','GRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',41938295,41962297,'NM_138443','HAUS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',42887778,42930869,'NM_032124','HDHD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59767567,59778625,'NM_001123366','HMSD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',20294590,20313919,'NM_021624','HRH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',75825569,75831811,'NM_001136180','HSBP1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',42935410,42956743,'NM_016097','IER3IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',11971426,12020885,'NM_014214','IMPA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',20260606,20287492,'NM_018439','IMPACT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31302288,31331953,'NM_001098817','INO80C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',42780784,42882612,'NM_031303','KATNAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',37314233,37354559,'NR_002838','KC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',75724655,75760804,'NM_012283','KCNG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',22288871,22382498,'NM_001142730','KCTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59145950,59185486,'NM_002035','KDSR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',32663077,33059286,'NM_020776','KIAA1328'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',58005503,58125335,'NM_020854','KIAA1468'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',28506631,28606972,'NM_020805','KLHL14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',5944704,6404910,'NM_173464','L3MBTL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',6931742,7107813,'NM_005559','LAMA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',19523559,19789027,'NM_001127717','LAMA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59898222,59967240,'NR_027245','LINC00305'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',1258311,1349630,'NR_023927','LINC00470'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',45342424,45373276,'NM_006033','LIPG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',55146035,55177488,'NM_005570','LMAN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',6501414,6580652,'NM_001243517','LOC100130480'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',76006797,76030607,'NR_028339','LOC100130522'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',72635675,72663239,'NR_040024','LOC100131655'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',8350817,8357032,'NR_024419','LOC100192426'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',47172409,47342837,'NR_040074','LOC100287225'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',13409497,13417533,'NR_040031','LOC100288122'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',51901584,51955765,'NR_040025','LOC100505474'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',53448531,53487506,'NM_001242804','LOC100505549'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',67338179,67397172,'NR_038325','LOC100505776'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',69143155,69168104,'NR_038340','LOC100505817'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',42796728,42798605,'NM_001242907','LOC100506888'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',27376106,27390872,'NR_045216','LOC100652770'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',3868179,3887069,'NR_038895','LOC201477'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',4254601,4286000,'NR_036489','LOC284215'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',14327421,14332523,'NR_026756','LOC284233'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',72369599,72400772,'NR_015417','LOC284276'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59922304,60241807,'NR_033881','LOC284294'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',5228098,5236505,'NR_015389','LOC339290'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',71963940,71986198,'NR_040034','LOC339298'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',54853950,54871426,'NR_024021','LOC390858'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',6915472,6919868,'NR_034100','LOC400643'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',60031297,60078270,'NR_033983','LOC400654'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',68972272,69082713,'NR_034133','LOC400655'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',70409989,70416051,'NR_024484','LOC400657'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',63334762,63717836,'NR_033921','LOC643542'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',15303554,15315918,'NR_027417','LOC644669'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',5738817,5785900,'NR_038839','LOC645355'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',35040885,35585957,'NR_024391','LOC647946'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',2933212,2936621,'NR_026659','LOC727896'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',22521582,22537600,'NR_024259','LOC728606'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',20462143,20496160,'NR_040033','LOC729950'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',42310932,42353047,'NM_001173129','LOXHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',2906991,3001945,'NM_014646','LPIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',7221136,7222042,'NM_001105581','LRRC30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',54489597,54568350,'NM_006785','MALT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',46340481,46512194,'NM_002747','MAPK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',30812205,30976376,'NM_001143827','MAPRE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',46049213,46062142,'NM_001204142','MBD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',49931968,50005156,'NM_003927','MBD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',72819776,72858043,'NM_002385','MBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',13872042,13905535,'NM_000529','MC2R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',56189543,56190981,'NM_005912','MC4R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',13815542,13816861,'NM_005913','MC5R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',27593656,27594841,'NM_001034172','MCART2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',46659429,46730160,'NM_002396','ME2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',28023984,28054364,'NM_005925','MEP1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',2527523,2561489,'NM_022840','METTL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',46954917,46978049,'NM_016626','MEX3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',17575542,17704910,'NM_020774','MIB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',17662962,17663047,'NR_029662','MIR1-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',54269285,54269370,'NR_029667','MIR122'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',17659656,17659744,'NR_029675','MIR133A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',45267740,45267790,'NR_031720','MIR1539'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31738778,31738887,'NR_029616','MIR187'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',26132873,26132924,'NR_031684','MIR302F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',14820164,14820241,'NR_036153','MIR3156-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',17517468,17517556,'NR_031565','MIR320C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',20155647,20155697,'NR_031724','MIR320C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',54269291,54269364,'NR_039899','MIR3591'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31425698,31425768,'NR_039771','MIR3975'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',5830693,5830832,'NR_039772','MIR3976'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',6364359,6364424,'NR_036205','MIR4317'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',33491095,33491176,'NR_036202','MIR4318'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',40804044,40804129,'NR_036203','MIR4319'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',45906866,45906931,'NR_036204','MIR4320'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',13601112,13601199,'NR_039752','MIR4526'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',51297449,51297527,'NR_039754','MIR4529'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',18767309,18767399,'NR_039895','MIR4741'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',44450960,44451050,'NR_039897','MIR4743'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',44830054,44830136,'NR_039898','MIR4744'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',32021477,32102683,'NM_017947','MOCOS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',11873471,11898796,'NR_040243','MPPE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',46575487,46600432,'NM_001127176','MRO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',3237527,3246234,'NM_006471','MYL12A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',3252716,3268282,'NM_001144945','MYL12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',45603153,45975449,'NM_001080467','MYO5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',3056804,3210106,'NM_019856','MYOM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',10515872,10542766,'NM_003826','NAPG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',53418891,53440175,'NM_004539','NARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',2561509,2606634,'NM_006101','NDC80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',9092627,9124343,'NM_021074','NDUFV2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',53967562,54219752,'NM_001144965','NEDD4L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',68560528,68685790,'NM_001201465','NETO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',75256759,75390311,'NM_006162','NFATC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',29685061,30057513,'NM_001198546','NOL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',19365460,19420579,'NM_000271','NPC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',53253914,53309528,'NM_004852','ONECUT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',19996008,20106194,'NM_018030','OSBPL1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',76016105,76106388,'NM_032510','PARD6G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',58533651,58798646,'NM_194449','PHLPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',42644019,42751493,'NM_004671','PIAS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',10660243,11138761,'NM_022068','PIEZO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',57862437,58005269,'NM_176787','PIGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',37789196,37915444,'NM_002647','PIK3C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',55718171,55722518,'NM_021127','PMAIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',50049846,50078602,'NM_007195','POLI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',14501736,14533599,'NM_001137671','POTEC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',9536791,9604600,'NM_001042388','PPP4R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',75763407,75812641,'NM_001146345','PQLC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',21967813,22027317,'NM_144662','PSMA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',12692986,12715739,'NM_020232','PSMG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',41817499,41906248,'NM_024430','PSTPIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',12775476,12874334,'NM_080423','PTPN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',7557313,8396859,'NM_002845','PTPRM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',8599442,8629380,'NM_001025300','RAB12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',50646705,50713745,'NM_004163','RAB27B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',9698227,9852553,'NM_006868','RAB31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',9465529,9528106,'NM_006788','RALBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',55085246,55091605,'NM_013435','RAX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',18767292,18860447,'NM_002894','RBBP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',75895333,75911640,'NM_001171967','RBFA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',19286784,19317097,'NM_003831','RIOK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',38577189,38949655,'NM_002930','RIT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',27852442,27907152,'NM_017831','RNF125'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',27926566,27965522,'NM_001191324','RNF138'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',57633283,57711284,'NM_173557','RNF152'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',42168184,42294781,'NM_152470','RNF165'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',13716703,13754554,'NM_003799','RNMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',16783700,16945810,'NM_005406','ROCK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',99064,112222,'NR_033770','ROCK1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',45268848,45272832,'NM_001199344','RPL17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',45261545,45272933,'NM_001199356','RPL17-C18ORF32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31823789,31901371,'NM_018170','RPRD1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',65822020,66023942,'NM_173630','RTTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',74841262,74859181,'NM_171999','SALL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',45594390,45594811,'NR_003003','SCARNA17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',54958104,54977043,'NM_033280','SEC11C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',12937982,12977536,'NM_031216','SEH1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59733724,59753456,'NM_005024','SERPINB10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59521173,59542102,'NM_080475','SERPINB11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59374372,59385224,'NM_080474','SERPINB12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59405513,59417413,'NM_012397','SERPINB13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59705918,59722104,'NM_001143818','SERPINB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59473410,59480177,'NM_006919','SERPINB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59455472,59462482,'NM_002974','SERPINB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59295123,59323298,'NM_002639','SERPINB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59571256,59623583,'NM_001040147','SERPINB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59788242,59807588,'NM_002640','SERPINB8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',40514860,40902473,'NM_015559','SETBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',41659542,41676519,'NM_213602','SIGLEC15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',46155389,46174536,'NM_001039535','SKA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',41558089,41586483,'NM_001128588','SLC14A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',41448763,41517058,'NM_007163','SLC14A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31944960,31963355,'NM_001099406','SLC39A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',12397894,12422236,'NM_006553','SLMO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',43613463,43711513,'NM_001135937','SMAD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',46810580,46865409,'NM_005359','SMAD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',44700220,44731079,'NM_005904','SMAD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',2645885,2795015,'NM_015295','SMCHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',50002651,50002780,'NR_002970','SNORA37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',45271650,45271715,'NR_002571','SNORD58A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',45272031,45272097,'NR_002572','SNORD58B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',45269602,45269692,'NR_003701','SNORD58C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',17446257,17464206,'NM_006938','SNRPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',66107116,66148414,'NM_004232','SOCS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',12436510,12647912,'NM_020148','SPIRE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',21850214,21924609,'NM_005637','SS18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',53170718,53187159,'NM_015879','ST8SIA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',42513078,42591037,'NM_013305','ST8SIA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',50105059,50134941,'NM_139171','STARD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',39101854,39111613,'NM_020783','SYT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',22060406,22225647,'NM_005640','TAF4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',42812940,42815986,'NM_016427','TCEB3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',42802655,42804532,'NM_145653','TCEB3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',42796728,42798369,'NM_001100817','TCEB3CL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',51040559,51406858,'NM_001243230','TCF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',3441590,3448406,'NM_173210','TGIF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',204519,258059,'NM_005131','THOC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',5880183,5882103,'NM_001080209','TMEM200C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',64491904,64533333,'NM_019022','TMX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',58143527,58204484,'NM_003839','TNFRSF11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',27663133,27777089,'NM_014939','TRAPPC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',71051718,71130889,'NM_005786','TSHZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',19848381,19854260,'NM_001243425','TTC39C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',27425727,27432984,'NM_000371','TTR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',12298256,12316568,'NM_032525','TUBB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',9324764,9392418,'NM_020648','TWSG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',9875722,9878156,'NM_032243','TXNDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',52421050,52456918,'NM_004786','TXNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',75833854,75849520,'NM_006701','TXNL4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',647603,663499,'NM_001071','TYMS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',148482,203739,'NM_005151','USP14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',9903954,9950018,'NM_194434','VAPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',59207404,59240732,'NM_004869','VPS4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',28345623,28348595,'NR_003558','WBP11P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',52469613,52848034,'NM_015285','WDR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',711591,802327,'NM_005433','YES1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',71038265,71050269,'NM_175907','ZADH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',43807636,43917678,'NM_001039360','ZBTB7C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',58341637,58396798,'NM_017742','ZCCHC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',5279017,5285701,'NM_001243702','ZFP161'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',72665103,72811670,'NM_007345','ZNF236'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31166175,31178424,'NM_006965','ZNF24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31124233,31144728,'NR_024566','ZNF271'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31200658,31211299,'NM_145756','ZNF396'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31074991,31092395,'NM_032347','ZNF397'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',70471906,70906616,'NM_017757','ZNF407'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',72198624,72336134,'NM_014643','ZNF516'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',14065988,14122489,'NR_033354','ZNF519'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',20895885,21186212,'NM_015461','ZNF521'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',54681040,54804689,'NM_018181','ZNF532'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr18',31085020,31124194,'NM_001112734','ZSCAN30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63549983,63556677,'NM_130786','A1BG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63555147,63558361,'NR_015380','A1BG-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',991101,1016570,'NM_019112','ABCA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17263939,17275282,'NM_024527','ABHD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6257509,6284640,'NM_133492','ACER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11546474,11550801,'NM_001111036','ACP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55985483,55990293,'NM_033068','ACPT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6086709,6144112,'NM_030924','ACSBG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8668750,8670172,'NM_178525','ACTL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43830106,43913011,'NM_004924','ACTN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8551125,8581588,'NM_030957','ADAMTS10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1456016,1464188,'NM_213604','ADAMTSL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1856416,1864446,'NM_138422','ADAT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45889273,45914630,'NM_024876','ADCK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3003907,3013371,'NM_198970','AES'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15325331,15351612,'NM_005858','AKAP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15351858,15390833,'NM_014371','AKAP8L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55064108,55072424,'NM_001098633','AKT1S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45428063,45483142,'NM_001243028','AKT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54648284,54666117,'NM_153329','ALDH16A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41191862,41196981,'NM_198867','ALKBH6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6323443,6326261,'NM_032306','ALKBH7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2200112,2203072,'NM_000479','AMH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8335010,8345257,'NM_139314','ANGPTL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10064012,10074425,'NM_031917','ANGPTL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17253453,17259454,'NM_152363','ANKLE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4134350,4175811,'NM_133475','ANKRD24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',37779746,37857942,'NM_032139','ANKRD27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17295031,17306638,'NM_020959','ANO8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16169664,16207156,'NM_032493','AP1M1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10544346,10558991,'NM_005498','AP1M2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54961991,55002181,'NM_014203','AP2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52033262,52046043,'NM_021575','AP2S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2051993,2102556,'NM_003938','AP3D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3701770,3712673,'NM_004886','APBA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1401147,1424243,'NM_005883','APC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41051240,41062539,'NM_005166','APLP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50109760,50114446,'NM_001645','APOC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50121899,50126483,'NR_028413','APOC1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50141078,50144662,'NM_000483','APOC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50137334,50140593,'NM_001646','APOC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50137334,50144662,'NR_037932','APOC4-APOC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50100878,50104490,'NM_000041','APOE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40958256,40971564,'NM_052948','ARHGAP33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52113772,52200173,'NM_004491','ARHGAP35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47079106,47103444,'NM_004706','ARHGEF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7410573,7443371,'NM_001130955','ARHGEF18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',877036,923803,'NM_005224','ARID3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19005386,19029987,'NM_033415','ARMC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17972943,17985911,'NM_001025604','ARRDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4841448,4853879,'NM_001080523','ARRDC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14091320,14108440,'NM_018154','ASF1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12709305,12720137,'NM_004317','ASNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55706668,55708954,'NM_001114598','ASPDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3831617,3879080,'NM_033064','ATCAY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55124211,55129005,'NM_001193646','ATF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10515646,10525094,'NM_032885','ATG4D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19617009,19635503,'NM_020410','ATP13A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47162573,47190222,'NM_152296','ATP1A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40732934,40746400,'NM_000704','ATP4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1192748,1195824,'NM_001687','ATP5D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46629062,46637683,'NM_018035','ATP5SL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1733073,1763270,'NM_138813','ATP8B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62434188,62438728,'NM_003160','AURKC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46416947,46459511,'NM_021913','AXL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',778830,783017,'NM_001700','AZU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17766918,17785385,'NM_014256','B3GNT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46623103,46626475,'NM_198540','B3GNT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46552161,46561918,'NM_030578','B9D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17239231,17251162,'NM_001033549','BABAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54149928,54156331,'NM_004324','BAX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52415918,52426291,'NM_014417','BBC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50004177,50016518,'NM_005581','BCAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53990130,54006132,'NM_001190','BCAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46595533,46622750,'NM_000709','BCKDHA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54860210,54868985,'NM_138639','BCL2L12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49943817,49955141,'NM_005178','BCL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12724406,12730271,'NM_017682','BEST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58484665,58486687,'NM_033341','BIRC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50373842,50376898,'NM_212550','BLOC1S3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45645530,45663565,'NM_000713','BLVRB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15209300,15252262,'NM_058243','BRD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60487345,60515715,'NM_032430','BRSK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',522324,534493,'NM_198591','BSG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53163114,53187239,'NM_001128326','BSPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17374754,17377384,'NM_004335','BST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1936446,1966702,'NM_017797','BTBD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4608556,4621415,'NM_019107','C19orf10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',34881632,34897803,'NM_001031726','C19orf12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63161616,63177714,'NM_152474','C19orf18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',35125264,35198453,'NM_003796','C19orf2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',458496,470654,'NM_033513','C19orf20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',702145,715318,'NM_173481','C19orf21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',847502,864225,'NM_138774','C19orf22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1218469,1221259,'NR_027271','C19orf23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1226519,1230243,'NM_017914','C19orf24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1424199,1430228,'NM_152482','C19orf25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1180946,1188990,'NM_152769','C19orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3489262,3508571,'NM_021731','C19orf28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3561626,3577813,'NM_001080543','C19orf29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3558244,3564928,'NR_038865','C19orf29-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43486643,43487486,'NM_033520','C19orf33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1903525,1905548,'NR_033400','C19orf34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2225630,2233181,'NM_198532','C19orf35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10820105,10841360,'NM_001136482','C19orf38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11346382,11348627,'NM_175871','C19orf39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38154987,38159800,'NM_152266','C19orf40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16617958,16631968,'NM_024104','C19orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12702453,12706529,'NM_024038','C19orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16468204,16493163,'NM_032207','C19orf44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7468444,7479336,'NM_198534','C19orf45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41185841,41191512,'NM_001039876','C19orf46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45518810,45546133,'NM_178830','C19orf47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55992772,55999786,'NM_199249','C19orf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18529571,18541197,'NM_001171949','C19orf50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60361842,60369830,'NM_178837','C19orf51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10900423,10901916,'NM_138358','C19orf52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13746256,13750586,'NM_014047','C19orf53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45938600,45947668,'NM_198476','C19orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40940883,40951917,'NM_001039887','C19orf55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12639880,12641465,'NM_016145','C19orf56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13854167,13877909,'NM_024323','C19orf57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7647942,7650719,'NM_174918','C19orf59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',960649,972141,'NM_033420','C19orf6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18560494,18564147,'NM_001100418','C19orf60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55671547,55678420,'NM_175063','C19orf63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10057805,10064928,'NM_018381','C19orf66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46640902,46642510,'NM_001130514','C19orf69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5629432,5631911,'NM_205767','C19orf70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3490154,3495028,'NM_001135580','C19orf71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54313465,54314209,'NM_018111','C19orf73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56452775,56464394,'NM_173635','C19orf75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54883753,54886059,'NM_001101340','C19orf76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3425404,3431540,'NM_001136503','C19orf77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7600670,7602510,'NR_033242','C19orf79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11211294,11213619,'NM_018687','C19orf80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55844513,55854379,'NM_001195076','C19orf81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',356442,360170,'NM_001136263','C2CD4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6628845,6671662,'NM_000064','C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10013031,10045813,'NR_027300','C3P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52504943,52517167,'NM_001736','C5AR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53833083,53841263,'NM_001217','CA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53224451,53239123,'NM_019855','CABP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13178256,13478274,'NM_001174080','CACNA1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59187353,59207732,'NM_031897','CACNG6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59107802,59138781,'NM_031896','CACNG7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59158101,59185281,'NM_031895','CACNG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48818361,48835831,'NM_145296','CADM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51796351,51805879,'NM_005184','CALM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12910413,12916304,'NM_004343','CALR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16450874,16468003,'NM_145046','CALR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7566787,7589196,'NM_020902','CAMSAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43912671,43926954,'NM_144691','CAPN12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41322757,41333095,'NM_001749','CAPNS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5865192,5867222,'NM_004058','CAPS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53403154,53444916,'NM_014959','CARD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10843252,10894448,'NM_199141','CARM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15021290,15030103,'NM_012114','CASP14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43518282,43553429,'NM_021185','CATSPERG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49972965,49995743,'NM_012116','CBLC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13877955,13902693,'NM_017721','CC2D1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14982538,14995083,'NM_173482','CCDC105'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60850765,60856338,'NM_013301','CCDC106'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53491520,53515144,'NM_144577','CCDC114'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17906904,17915794,'NM_138442','CCDC124'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13719752,13735106,'NM_030818','CCDC130'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11392271,11406980,'NM_145045','CCDC151'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54583286,54613068,'NM_144688','CCDC155'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11318180,11326620,'NM_001080503','CCDC159'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51190178,51213714,'NM_001080402','CCDC61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51605425,51608759,'NM_032040','CCDC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52451570,52467050,'NM_015603','CCDC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4198110,4220085,'NM_018074','CCDC94'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46507933,46522628,'NM_052848','CCDC97'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8023645,8033547,'NM_005624','CCL25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',34994740,35007055,'NM_001238','CCNE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48549664,48559320,'NM_020406','CD177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7710879,7718464,'NM_001144895','CD209'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40511911,40530104,'NM_001185100','CD22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8273010,8279240,'NM_016579','CD320'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56420146,56435086,'NM_001082618','CD33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54530488,54535673,'NM_001774','CD37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50601306,50605864,'NM_012099','CD3EAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6536849,6542163,'NM_001252','CD70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47073029,47077279,'NM_001783','CD79A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14352955,14380537,'NM_078481','CD97'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',482732,493087,'NM_004359','CDC34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10362808,10375271,'NM_007065','CDC37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59668021,59676234,'NM_145057','CDC42EP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10538137,10540655,'NM_079421','CDKN2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47703297,47724501,'NM_001205344','CEACAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49894260,49905826,'NM_001039213','CEACAM16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56671649,56678423,'NM_001080405','CEACAM18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49866563,49879467,'NM_020219','CEACAM19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49702050,49725388,'NM_001102598','CEACAM20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46774370,46785037,'NM_001098506','CEACAM21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49732884,49751990,'NR_027754','CEACAM22P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46992373,47007431,'NM_001815','CEACAM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46817183,46825282,'NM_001817','CEACAM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46904369,46926277,'NM_004363','CEACAM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46951237,46967953,'NM_002483','CEACAM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46869074,46883936,'NM_006890','CEACAM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47776234,47790922,'NM_001816','CEACAM8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38482679,38485270,'NM_004364','CEBPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38556448,38565432,'NM_001806','CEBPG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3176482,3248073,'NR_033342','CELF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38061743,38154709,'NM_032816','CEP89'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18840360,18867953,'NM_021267','CERS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8180216,8233304,'NM_024552','CERS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',810664,814610,'NM_001928','CFD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54217938,54219405,'NM_000737','CGB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54230637,54232003,'NM_033377','CGB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54226941,54228307,'NM_033378','CGB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54238913,54240380,'NM_033043','CGB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54249342,54250809,'NM_033142','CGB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54242706,54244180,'NM_033183','CGB8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4353659,4394394,'NM_005483','CHAF1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16489699,16514263,'NM_006387','CHERP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63754744,63758298,'NM_014453','CHMP2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38804712,38956254,'NM_001127896','CHST8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16133178,16145286,'NM_054113','CIB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47480656,47491789,'NM_015125','CIC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19510073,19518468,'NM_153221','CILP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1220266,1225809,'NR_023312','CIRBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50501510,50518073,'NM_001824','CKM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50234137,50266054,'NM_007056','CLASRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44913734,44920508,'NM_001828','CLC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56562163,56564069,'NM_152353','CLDND2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55918416,55920793,'NM_002975','CLEC11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14554895,14582956,'NM_207390','CLEC17A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7699842,7703057,'NM_001244856','CLEC4G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7758369,7761898,'NR_002931','CLEC4GP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7734034,7740491,'NM_001144909','CLEC4M'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41197401,41215413,'NM_001199570','CLIP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6312462,6319915,'NM_006012','CLPP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50150438,50188444,'NM_001294','CLPTM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47583010,47586284,'NM_032488','CNFN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11510578,11522138,'NM_001299','CNN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',977297,990064,'NM_201277','CNN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59333247,59351258,'NM_014516','CNOT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45419954,45424437,'NM_024877','CNTD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9931236,9982147,'NM_015719','COL5A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18754582,18763114,'NM_000095','COMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18871322,18891199,'NM_199444','COPE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40830964,40841526,'NM_001863','COX6B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60552881,60557994,'NM_144613','COX6B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41333663,41335611,'NM_001864','COX7A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16864761,16998625,'NM_015692','CPAMD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54886176,54908800,'NM_001199753','CPT1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6415259,6418230,'NM_139161','CRB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4104628,4124048,'NM_032607','CREB3L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18565034,18578660,'NM_004750','CRLF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18655424,18754143,'NM_015321','CRTC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53016910,53038398,'NM_000554','CRX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1892160,1932336,'NM_001319','CSNK1G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56292674,56303459,'NM_145232','CTU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7895380,7897051,'NM_206833','CTXN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47624534,47638976,'NM_198477','CXCL17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46286207,46293939,'NM_000766','CYP2A13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46041282,46048192,'NM_000762','CYP2A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46073183,46080497,'NM_030589','CYP2A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46189043,46216141,'NM_000767','CYP2B6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46122009,46148405,'NR_001278','CYP2B7P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46312192,46326121,'NM_000774','CYP2F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46088570,46098253,'NR_040249','CYP2G1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46390954,46405284,'NM_030622','CYP2S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15884179,15906676,'NM_021187','CYP4F11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15644827,15668984,'NM_023944','CYP4F12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15849833,15869884,'NM_001082','CYP4F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15480335,15524128,'NM_173483','CYP4F22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15731143,15751798,'NR_033864','CYP4F24P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15612706,15632570,'NM_001199209','CYP4F3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15587028,15601447,'NM_007253','CYP4F8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53664276,53677383,'NM_017457','CYTH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51842708,51856235,'NM_145056','DACT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12941431,12946567,'NM_152654','DAND5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3909451,3920826,'NM_001348','DAPK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1358583,1386682,'NM_170711','DAZAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53825628,53832451,'NM_001352','DBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13924318,13933256,'NM_138353','DCAF15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17281336,17295106,'NM_024050','DDA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14380609,14391195,'NM_005804','DDX39A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18891483,18900442,'NM_019070','DDX49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47394591,47413653,'NM_133328','DEDD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6418217,6432798,'NM_024898','DENND1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54128750,54140038,'NM_014475','DHDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12647530,12653701,'NM_013406','DHPS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52544377,52577795,'NM_014681','DHX34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2665564,2672390,'NM_145173','DIRAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51405338,51409934,'NR_027003','DKFZp434J0226'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',36332622,36333151,'NR_026894','DKFZp566F0947'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54558798,54570185,'NM_001197302','DKKL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44681396,44690961,'NM_016941','DLL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40679958,40696400,'NM_001190347','DMKN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50964815,50977655,'NM_001081562','DMPK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47040925,47048237,'NM_001040283','DMRTC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50978103,50987900,'NM_004943','DMWD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14486581,14490201,'NM_006145','DNAJB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12847024,12853335,'NM_001375','DNASE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10689728,10803586,'NM_001005362','DNM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10105021,10166755,'NM_001130823','DNMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11170970,11234157,'NM_020812','DOCK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3441818,3451621,'NM_031304','DOHH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2115147,2183577,'NM_032482','DOT1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43393488,43406730,'NM_001135155','DPF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4626243,4674855,'NM_139159','DPP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58827121,58832075,'NM_001012728','DPRX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',37588861,37668639,'NM_207325','DPY19L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5736152,5742249,'NM_020175','DUS3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62354905,62370668,'NM_001012729','DUXA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45007829,45016681,'NM_006484','DYRK1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4180539,4188524,'NM_005755','EBI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43997901,44014337,'NM_001398','ECH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11477730,11500987,'NM_001142464','ECSIT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3927053,3936461,'NM_001961','EEF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1237152,1252429,'NM_001405','EFNA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45997173,46006186,'NM_053046','EGLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52908412,52938203,'NM_014601','EHD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44721286,44722678,'NM_153232','EID2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44713469,44715334,'NM_152361','EID2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10086689,10091599,'NM_003755','EIF3G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43801561,43819435,'NM_013234','EIF3K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',803290,807246,'NM_001972','ELANE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7929456,7976529,'NM_001419','ELAVL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11423142,11452803,'NM_032281','ELAVL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18414472,18493937,'NM_006532','ELL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11524857,11531051,'NM_032377','ELOF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53189719,53220222,'NM_022142','ELSPBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50804497,50840615,'NM_001193268','EML2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53520440,53525622,'NM_001425','EMP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6838581,6891464,'NM_001974','EMR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14704204,14750353,'NM_152916','EMR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14591050,14646730,'NM_032571','EMR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6903510,6941857,'NR_024075','EMR4P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15198732,15204858,'NM_001142886','EPHX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60878372,60898945,'NM_013333','EPN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11348880,11356018,'NM_000121','EPOR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16333407,16443762,'NM_021235','EPS15L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60283571,60291103,'NM_017729','EPS8L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50602430,50619017,'NM_001166049','ERCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50546488,50565685,'NM_000400','ERCC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47443556,47451149,'NM_006494','ERF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58209155,58211645,'NM_152473','ERVV-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58239802,58246192,'NM_001191055','ERVV-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56540220,56561484,'NM_001985','ETFB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48702710,48723236,'NM_014297','ETHE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40824486,40827613,'NM_014209','ETV2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7801160,7835862,'NM_145245','EVI5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50407718,50429309,'NM_138568','EXOC3L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46584115,46595096,'NM_020158','EXOSC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16860825,16863830,'NM_003950','F2RL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1827974,1836518,'NM_031213','FAM108A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17391911,17397140,'NM_138401','FAM125A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17495109,17523835,'NM_001098524','FAM129C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',27219,28690,'NR_026820','FAM138F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40407543,40411468,'NM_152481','FAM187B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16157234,16163857,'NM_014077','FAM32A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55661856,55671815,'NM_138411','FAM71E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60558087,60566432,'NM_001145402','FAM71E2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53795668,53808506,'NM_017708','FAM83E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43585614,43591568,'NM_174905','FAM98C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12894283,12905558,'NM_004461','FARSA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45016932,45028894,'NM_001436','FBL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8036286,8118385,'NM_032447','FBN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9781942,9790731,'NM_017703','FBXL12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44123881,44135167,'NM_148169','FBXO17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44206502,44215038,'NM_178820','FBXO27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50905726,50925991,'NM_001080469','FBXO46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12660729,12668455,'NM_032301','FBXW9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60077360,60093651,'NM_133274','FCAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7659642,7670365,'NM_001207019','FCER2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45045802,45132373,'NM_003890','FCGBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54708247,54721497,'NM_004107','FCGRT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17723285,17760377,'NM_015122','FCHO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10281890,10287691,'NM_001031734','FDX1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4742727,4746571,'NM_018708','FEM1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40534284,40535207,'NM_005303','FFAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40632456,40634509,'NM_005306','FFAR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40541327,40543229,'NM_005304','FFAR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53951155,53953394,'NM_019113','FGF21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',590925,594604,'NM_020637','FGF22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60794548,60802705,'NM_032836','FIZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63028478,63030642,'NR_024162','FKBP1AP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18503567,18515383,'NM_012181','FKBP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51941142,51953672,'NM_001039885','FKRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7839604,7845326,'NM_001190467','FLJ22184'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16004285,16013918,'NR_024336','FLJ25328'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6955963,6957426,'NR_024372','FLJ25758'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55245748,55261864,'NR_027257','FLJ26850'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56786847,56789445,'NR_034159','FLJ30403'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',148015,153209,'NR_028324','FLJ45445'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54669629,54681300,'NM_001204503','FLT3LG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50663092,50670277,'NM_001114171','FOSB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51059357,51068895,'NM_004497','FOXA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56940834,56946962,'NM_001193306','FPR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56958453,56965591,'NM_001462','FPR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56990222,57021146,'NM_002030','FPR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4255590,4274843,'NM_024333','FSD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',627388,634392,'NM_005860','FSTL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54160377,54161948,'NM_000146','FTL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53943079,53950459,'NM_000148','FUT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53891039,53901003,'NM_000511','FUT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5793898,5802485,'NM_000149','FUT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5816836,5821551,'NM_002034','FUT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5781636,5790742,'NM_000150','FUT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55001935,55008379,'NM_025129','FUZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40321571,40325794,'NM_021902','FXYD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40298571,40304409,'NM_001136010','FXYD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40337684,40352628,'NM_001164605','FXYD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40325993,40337045,'NM_022006','FXYD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3473953,3487755,'NM_001136197','FZR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2427122,2429257,'NM_015675','GADD45B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12925971,12929050,'NM_052850','GADD45GIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61379200,61388956,'NM_001145546','GALP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1348087,1352552,'NM_000156','GAMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40716153,40728061,'NM_014364','GAPDHS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19357641,19480741,'NM_017660','GATAD2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12862973,12871783,'NM_000159','GCDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18840360,18867953,'NM_001492','GDF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18357967,18360986,'NM_004864','GDF15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50274369,50286622,'NM_024707','GEMIN7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43566831,43570508,'NM_152657','GGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14449570,14467944,'NM_005716','GIPC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3536568,3544539,'NM_133261','GIPC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50863341,50877557,'NM_000164','GIPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17527510,17554965,'NM_024656','GLT25D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52803264,52898346,'NM_015711','GLTSCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52940604,52952135,'NM_015710','GLTSCR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44510838,44518566,'NM_004877','GMFG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19601284,19615455,'NM_016573','GMIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3045407,3072454,'NM_002067','GNA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3087190,3114766,'NM_002068','GNA15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2462217,2653746,'NM_052847','GNG7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51829172,51829779,'NM_033258','GNG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60216886,60241444,'NM_016363','GP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38263625,38313158,'NM_018025','GPATCH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39547484,39585158,'NM_001184722','GPI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6680924,6688633,'NM_001080452','GPR108'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55965669,55966740,'NM_001506','GPR32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50784862,50797306,'NM_005282','GPR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52532210,52537112,'NM_018485','GPR77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1054935,1057787,'NM_001039847','GPX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40183085,40209213,'NM_020895','GRAMD1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47194312,47261797,'NM_002088','GRIK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53589943,53640000,'NM_000836','GRIN2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',951436,960723,'NM_138690','GRIN3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53640841,53648976,'NM_031485','GRWD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47426177,47438576,'NM_019884','GSK3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6330579,6344291,'NM_002096','GTF2F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17309325,17314540,'NM_032620','GTPBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54163193,54188422,'NM_001161587','GYS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',495026,500919,'NM_005317','GZMM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40465249,40467885,'NM_021175','HAMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19227450,19234596,'NM_023002','HAPLN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56908176,56919033,'NM_001523','HAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40795485,40808091,'NM_015302','HAUS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17021570,17047343,'NM_033417','HAUS8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',540892,568159,'NM_001194','HCN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41085221,41087013,'NM_001007469','HCST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4423254,4453222,'NM_032631','HDGFRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51498695,51538530,'NM_152794','HIF3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45577017,45587934,'NM_144685','HIPK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42517419,42547197,'NM_181786','HKR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3523942,3530081,'NM_006339','HMG20B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1018173,1037627,'NM_012292','HMHA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44018867,44032457,'NM_001533','HNRNPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8415802,8460002,'NM_005968','HNRNPM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46461959,46505651,'NM_007040','HNRNPUL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18901009,18913041,'NM_004838','HOMER3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12734816,12747434,'NM_013312','HOOK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40223249,40249317,'NM_182983','HPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54346267,54350493,'NM_002152','HRC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5632074,5639533,'NM_198708','HSD11B1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54008085,54031746,'NM_016246','HSD17B14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16105837,16130377,'NM_032855','HSH2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40937309,40939770,'NM_144617','HSPB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60465402,60483563,'NM_001130106','HSPBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10242516,10258291,'NM_000201','ICAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10305451,10311345,'NM_002162','ICAM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10258642,10260260,'NM_001544','ICAM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10261654,10268454,'NM_003259','ICAM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13122281,13126718,'NM_004907','IER2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18145578,18149927,'NM_006332','IFI30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51424848,51426340,'NM_198541','IGFL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51343339,51356401,'NM_001135113','IGFL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51315167,51319771,'NM_207393','IGFL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51234845,51236114,'NM_001002923','IGFL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40921990,40925191,'NM_024660','IGFLR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56506913,56525914,'NM_001101372','IGLON5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49808779,49831921,'NM_001205280','IGSF23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60567568,60573626,'NM_000641','IL11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18031370,18058697,'NM_005535','IL12RB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14003261,14025026,'NM_004843','IL27RA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44450996,44452572,'NM_172138','IL28A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44426111,44427451,'NM_172139','IL28B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44478804,44481152,'NM_172140','IL29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55084722,55124574,'NM_172374','IL4I1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10625936,10664095,'NM_012218','ILF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15086784,15097577,'NM_006844','ILVBL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17788321,17793320,'NM_005543','INSL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7063265,7245011,'NM_000208','INSR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51078705,51081216,'NM_015649','IRF2BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54854637,54860944,'NM_001197128','IRF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48912053,48916009,'NM_019612','IRGC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48780358,48792127,'NM_001007561','IRGQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60656156,60664861,'NM_001136201','ISOC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18406197,18410111,'NM_001170938','ISYNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3884100,3893414,'NM_170678','ITGB1BP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45914847,45938605,'NM_025194','ITPKC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53935956,53941978,'NM_182575','IZUMO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55347616,55358350,'NM_152358','IZUMO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2047867,2050583,'NM_001031735','IZUMO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17796592,17819841,'NM_000215','JAK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55701070,55706157,'NM_138334','JOSD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2203249,2207422,'NM_144616','JSRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12763309,12765125,'NM_002229','JUNB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18251562,18253432,'NM_005354','JUND'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11135942,11166266,'NM_015493','KANK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8293467,8314146,'NM_198471','KANK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54262486,54268010,'NM_031886','KCNA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55510576,55524446,'NM_004977','KCNC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53650577,53661179,'NM_013348','KCNJ14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43502323,43511489,'NM_004823','KCNK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17923110,17970930,'NM_002248','KCNN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48962524,48977249,'NM_002250','KCNN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38979590,38998506,'NM_024076','KCTD15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53577638,53586622,'NM_006801','KDELR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4920123,5104608,'NM_015015','KDM4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10457795,10475054,'NM_203500','KEAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6364118,6375822,'NM_003685','KHSRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39437295,39538311,'NM_014686','KIAA0355'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18228905,18246319,'NM_025249','KIAA1683'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59973076,59987590,'NM_014218','KIR2DL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',164599,179138,'NM_014219','KIR2DL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59941785,59956316,'NM_015868','KIR2DL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',199897,210812,'NM_001080770','KIR2DL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',229379,238844,'NM_020535','KIR2DL5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',229434,238935,'NM_001018081','KIR2DL5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',257787,271802,'NM_014512','KIR2DS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',274137,288434,'NM_012312','KIR2DS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',240823,255356,'NM_012313','KIR2DS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60035985,60051835,'NM_012314','KIR2DS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',240800,255821,'NM_014513','KIR2DS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60019704,60034045,'NM_013289','KIR3DL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60053709,60070482,'NM_006737','KIR3DL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59927795,59939815,'NM_153443','KIR3DL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',212785,227347,'NM_001083539','KIR3DS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59735720,59747007,'NR_026716','KIR3DX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41039649,41049888,'NM_199180','KIRREL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',868341,872015,'NM_032551','KISS1R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50535837,50546618,'NM_177417','KLC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12856236,12859017,'NM_006563','KLF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1803397,1814564,'NM_031918','KLF16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16296650,16299339,'NM_016270','KLF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18608837,18642302,'NM_018316','KLHL26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56014215,56018855,'NM_002257','KLK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56207811,56215094,'NM_002776','KLK10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56217298,56221684,'NM_001136032','KLK11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56224159,56229960,'NM_019598','KLK12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56251274,56260179,'NM_015596','KLK13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56272965,56279314,'NM_022046','KLK14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56020356,56026591,'NM_138564','KLK15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56068500,56075635,'NM_005551','KLK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56049982,56055832,'NM_001648','KLK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56101419,56105806,'NM_004917','KLK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56138370,56148156,'NM_012427','KLK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56153698,56164741,'NM_002774','KLK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56171546,56179132,'NM_001243126','KLK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56191075,56196770,'NM_144505','KLK8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56197580,56204702,'NM_012315','KLK9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56077163,56091466,'NR_002948','KLKP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52670211,52679333,'NM_007059','KPTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10524760,10537702,'NM_023008','KRI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40670065,40673273,'NM_001244847','KRTDAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59557046,59568533,'NM_002287','LAIR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59705824,59713712,'NM_021270','LAIR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11061037,11105505,'NM_001195799','LDLR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59351190,59355258,'NM_024316','LENG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59651876,59665008,'NM_052925','LENG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59664790,59666706,'NM_198988','LENG9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44959073,44968615,'NM_001143832','LEUTX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44785008,44789954,'NM_013268','LGALS13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44886785,44891928,'NM_020129','LGALS14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44838397,44843127,'NM_001190441','LGALS16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44861853,44868853,'NR_034156','LGALS17A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43984150,43995580,'NM_006149','LGALS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43953447,43955997,'NM_002307','LGALS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43971689,43974234,'NM_001042507','LGALS7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40307256,40318018,'NM_139284','LGI4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54211048,54212159,'NM_000894','LHB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53310514,53365372,'NM_000234','LIG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59796924,59804352,'NM_006863','LILRA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59777068,59790839,'NM_006866','LILRA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59491666,59496077,'NM_006865','LILRA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59536503,59542233,'NM_012276','LILRA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59510164,59516221,'NM_021250','LILRA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59432280,59438536,'NM_024318','LILRA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59820440,59840816,'NM_006669','LILRB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59469486,59476845,'NM_001080978','LILRB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59411958,59418771,'NM_001081450','LILRB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59865935,59871658,'NM_001081438','LILRB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59446081,59452979,'NM_006840','LILRB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59911412,59916699,'NR_003061','LILRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56574974,56583022,'NM_030657','LIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40931101,40937260,'NM_019104','LIN37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54309429,54313529,'NM_022165','LIN7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56888404,56900255,'NR_024330','LINC00085'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2240773,2259156,'NM_001101391','LINGO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47597505,47623418,'NM_005357','LIPE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2379163,2407958,'NM_032737','LMNB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53680339,53708258,'NM_001080434','LMTK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',24136834,24138089,'NR_003603','LOC100101266'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61681304,61698617,'NR_036522','LOC100128252'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63206073,63210386,'NR_036508','LOC100128398'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7443722,7444247,'NR_024491','LOC100128573'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40241802,40289048,'NR_024562','LOC100128675'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40588348,40599582,'NR_040046','LOC100128682'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56610971,56612491,'NR_033235','LOC100129083'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44821164,44824881,'NR_026870','LOC100129935'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39828617,39828797,'NR_045208','LOC100130342'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4630293,4636960,'NM_001242901','LOC100131094'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63762364,63777976,'NR_027334','LOC100131691'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41494084,41495410,'NR_029389','LOC100134317'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50836744,50837932,'NM_001242348','LOC100287177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1773087,1775542,'NR_034114','LOC100288123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48017854,48022870,'NR_036584','LOC100289650'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63033473,63049418,'NM_001204818','LOC100293516'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49301331,49309176,'NR_033341','LOC100379224'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46651913,46698394,'NR_040109','LOC100505495'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47328620,47333091,'NR_038332','LOC100505622'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52679350,52696666,'NR_038452','LOC100505681'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49087795,49097795,'NR_038334','LOC100505715'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53450743,53453262,'NR_040599','LOC100505812'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',34185301,34196702,'NR_040036','LOC100505835'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51675884,51796297,'NM_001205281','LOC100506012'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55033714,55046745,'NR_040037','LOC100506033'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51855460,51872553,'NR_040042','LOC100506068'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40723479,40728771,'NR_038396','LOC100506469'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41502457,41514460,'NR_038278','LOC100506930'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54621499,54623887,'NM_001195256','LOC100507003'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14108963,14143075,'NR_045214','LOC100507373'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42731690,42770088,'NR_038247','LOC100507433'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8345259,8361575,'NR_038237','LOC100507567'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43006202,43037676,'NR_040015','LOC100631378'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14044820,14046874,'NR_024282','LOC113230'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15987443,15999272,'NR_026828','LOC126536'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56583354,56585640,'NM_001193623','LOC147646'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61846338,61860426,'NM_001193628','LOC147670'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10623537,10625548,'NR_024333','LOC147727'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58627038,58639737,'NR_003148','LOC147804'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',34147877,34151895,'NR_027318','LOC148145'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',32973240,32976688,'NR_027301','LOC148189'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48407782,48444638,'NR_033888','LOC284344'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58794696,58798563,'NR_002938','LOC284379'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9593157,9606538,'NM_001242812','LOC284385'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',34469757,34708499,'NR_040029','LOC284395'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41980291,42010853,'NR_040027','LOC284408'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42448680,42451752,'NR_029390','LOC284412'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19728180,19748222,'NR_026956','LOC284440'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13806329,13808103,'NR_036515','LOC284454'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61596856,61602351,'NR_037159','LOC386758'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7849516,7851117,'NR_033250','LOC388499'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50934727,50954588,'NR_038267','LOC388553'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48772791,48778096,'NM_001193621','LOC390940'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',21458356,21477880,'NR_037194','LOC400680'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39998897,40015613,'NR_033982','LOC400685'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',22570898,22578192,'NR_033899','LOC440518'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',21725386,21728080,'NR_024523','LOC641367'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44091459,44094638,'NM_001243212','LOC643669'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39759477,39760436,'NR_027620','LOC643719'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41603915,41605639,'NR_033748','LOC644189'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42999890,43009118,'NR_040013','LOC644554'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7887031,7889980,'NM_001195259','LOC645781'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58476622,58480012,'NM_001195187','LOC646508'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63599268,63600258,'NM_001195135','LOC646862'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41672368,41673782,'NR_036504','LOC728752'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18221759,18227229,'NR_036575','LOC729966'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38485602,38487803,'NR_026887','LOC80054'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5642844,5671176,'NM_004793','LONP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19595465,19600039,'NM_004720','LPAR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14119548,14177997,'NM_014921','LPHN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11327061,11337374,'NM_001170635','LPPR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',763517,772952,'NM_024888','LPPR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44489296,44497816,'NM_020862','LRFN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41119861,41127937,'NM_024509','LRFN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4488226,4491036,'NM_052972','LRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38377438,38391613,'NM_002333','LRP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18362953,18369415,'NM_145256','LRRC25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55711961,55763114,'NM_001080457','LRRC4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50288270,50342383,'NM_019121','LRRC68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7859389,7872908,'NM_025061','LRRC8E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39355191,39412260,'NM_015578','LSM14A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18278716,18295001,'NM_012321','LSM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2272519,2279614,'NM_016199','LSM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40431398,40450707,'NM_205835','LSR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45794980,45827565,'NM_001042544','LTBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13070841,13074974,'NM_005583','LYL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48656785,48661671,'NM_014400','LYPD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47032989,47040348,'NM_173506','LYPD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48991918,49016648,'NM_182573','LYPD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',447489,456343,'NM_130762','MADCAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40474828,40496549,'NM_001199216','MAG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53908066,53912026,'NM_182574','MAMSTR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12618321,12638591,'NM_001173498','MAN2B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17691302,17706324,'NM_018174','MAP1S'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4041319,4075126,'NM_030662','MAP2K2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7874764,7885363,'NM_145185','MAP2K7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45389490,45413322,'NM_002446','MAP3K10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43770120,43800483,'NM_001042600','MAP4K1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8384186,8409899,'NM_016496','MARCH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50446355,50500381,'NM_031417','MARK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12810258,12846766,'NM_014975','MAST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18069602,18123499,'NM_015016','MAST3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3728966,3737415,'NM_139355','MATK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19292629,19330563,'NM_015329','MAU2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1527677,1543652,'NM_003926','MBD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8814268,8815016,'NM_145208','MBD3L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7000350,7002746,'NM_144614','MBD3L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7007215,7009645,'NM_001164425','MBD3L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6988754,6991184,'NM_001164419','MBD3L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6981593,6984022,'NM_001136507','MBD3L5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59368917,59385545,'NM_001146083','MBOAT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7493495,7504895,'NM_020533','MCOLN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',818961,844218,'NM_005481','MED16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55013347,55032049,'NM_030973','MED25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16546717,16600015,'NM_004831','MED26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44573802,44583043,'NM_017592','MED29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19117375,19142098,'NM_001145785','MEF2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19148712,19164400,'NM_001145784','MEF2BNB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19117375,19164400,'NR_027308','MEF2BNB-MEF2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47521600,47574761,'NM_001410','MEGF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52598194,52614597,'NM_020160','MEIS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1505667,1519057,'NM_203304','MEX3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63778577,63787574,'NR_026052','MGC2752'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56012748,56013946,'NR_038359','MGC45922'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45972921,45975238,'NM_001202553','MIA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45973281,45994689,'NR_037775','MIA-RAB4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1199551,1210142,'NM_177401','MIDN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',256574,295791,'NM_017550','MIER2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62044081,62051734,'NR_024059','MIMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10375133,10375214,'NR_031592','MIR1181'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2185060,2185148,'NR_031596','MIR1227'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10523797,10523880,'NR_031603','MIR1238'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56888318,56888404,'NR_029693','MIR125A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',20371079,20371162,'NR_036053','MIR1270-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',20371079,20371162,'NR_036264','MIR1270-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58883546,58883633,'NR_031573','MIR1283-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58953297,58953384,'NR_031696','MIR1283-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58867033,58867106,'NR_031568','MIR1323'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15421358,15421419,'NR_031716','MIR1470'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54695853,54695937,'NR_029703','MIR150'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13846512,13846622,'NR_029613','MIR181C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13846688,13846825,'NR_030179','MIR181D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1767157,1767237,'NR_031730','MIR1909'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10789101,10789172,'NR_029586','MIR199A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13808400,13808473,'NR_029495','MIR23A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13808100,13808173,'NR_029497','MIR24-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13808253,13808331,'NR_029501','MIR27A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',764583,764653,'NR_036154','MIR3187'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18253886,18253971,'NR_036155','MIR3188'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18358371,18358444,'NR_036156','MIR3189'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52422038,52422118,'NR_036158','MIR3190'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52422040,52422116,'NR_036159','MIR3191'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51904389,51904442,'NR_036157','MIR320E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50834091,50834185,'NR_029886','MIR330'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58982740,58982807,'NR_029864','MIR371'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58982742,58982808,'NR_039909','MIR371B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58982955,58983022,'NR_029865','MIR372'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58983770,58983839,'NR_029866','MIR373'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6367420,6367522,'NR_037505','MIR3940'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2201637,2201717,'NR_036207','MIR4321'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10202088,10202161,'NR_036206','MIR4322'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47329436,47329505,'NR_036208','MIR4323'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54503865,54503937,'NR_036209','MIR4324'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44592102,44592158,'NR_039755','MIR4530'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49848795,49848842,'NR_039756','MIR4531'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',755931,756023,'NR_039900','MIR4745'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4396974,4397045,'NR_039901','MIR4746'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4883698,4883752,'NR_039902','MIR4747'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10751929,10752011,'NR_039903','MIR4748'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55049652,55049729,'NR_039904','MIR4749'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55083239,55083306,'NR_039905','MIR4750'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55128132,55128206,'NR_039906','MIR4751'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59477775,59477847,'NR_039907','MIR4752'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63589948,63590037,'NR_039910','MIR4754'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58869262,58869386,'NR_030182','MIR498'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58861744,58861828,'NR_030180','MIR512-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58861738,58861836,'NR_030181','MIR512-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58874068,58874151,'NR_030184','MIR515-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58874068,58874151,'NR_030187','MIR515-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58951806,58951896,'NR_030220','MIR516A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58956198,58956288,'NR_030221','MIR516A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58931910,58932000,'NR_030212','MIR516B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58920507,58920592,'NR_030207','MIR516B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58907333,58907420,'NR_030201','MIR517A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58916141,58916208,'NR_030205','MIR517B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58936378,58936473,'NR_030214','MIR517C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58926071,58926156,'NR_030210','MIR518A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58934398,58934485,'NR_030213','MIR518A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58897802,58897885,'NR_030196','MIR518B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58903800,58903901,'NR_030199','MIR518C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58929942,58930029,'NR_030211','MIR518D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58924903,58924991,'NR_030209','MIR518E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58895080,58895167,'NR_030194','MIR518F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58947462,58947547,'NR_030218','MIR519A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58957409,58957496,'NR_030222','MIR519A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58890278,58890359,'NR_030191','MIR519B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58881534,58881621,'NR_030188','MIR519C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58908412,58908500,'NR_030202','MIR519D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58875005,58875089,'NR_030185','MIR519E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58885946,58886031,'NR_030189','MIR520A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58896292,58896353,'NR_030195','MIR520B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58902518,58902605,'NR_030198','MIR520C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58915161,58915248,'NR_030204','MIR520D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58870776,58870863,'NR_030183','MIR520E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58877224,58877311,'NR_030186','MIR520F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58917231,58917321,'NR_030206','MIR520G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58937577,58937665,'NR_030215','MIR520H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58943701,58943788,'NR_030216','MIR521-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58911659,58911746,'NR_030203','MIR521-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58946276,58946363,'NR_030217','MIR522'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58893450,58893537,'NR_030193','MIR523'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58906067,58906154,'NR_030200','MIR524'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58892598,58892683,'NR_030192','MIR525'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58901317,58901402,'NR_030197','MIR526A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58921987,58922052,'NR_030208','MIR526A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58889458,58889541,'NR_030190','MIR526B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58949083,58949168,'NR_030219','MIR527'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3912411,3912510,'NR_030367','MIR637'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10690079,10690179,'NR_030368','MIR638'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14501354,14501452,'NR_030369','MIR639'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45480289,45480388,'NR_030371','MIR641'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50870025,50870122,'NR_030372','MIR642A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50870029,50870106,'NR_037512','MIR642B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57476861,57476955,'NR_030373','MIR643'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4721681,4721791,'NR_029607','MIR7-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4720116,4723568,'NR_027148','MIR7-3HG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51214029,51214147,'NR_030412','MIR769'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59177372,59177463,'NR_030632','MIR935'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56887676,56887746,'NR_029843','MIR99B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56887850,56887929,'NR_029482','MIRLET7E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1988469,2002243,'NM_199054','MKNK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40900760,40921619,'NM_014727','MLL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6161391,6230959,'NM_005934','MLLT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2022034,2047269,'NM_130807','MOB3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4294523,4311083,'NM_032868','MPND'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18165039,18168550,'NM_032683','MPV17L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13736336,13746096,'NM_001031727','MRI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17277476,17278652,'NM_023937','MRPL34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10223639,10231721,'NM_146387','MRPL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3713664,3718563,'NM_172251','MRPL54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44113187,44115499,'NM_033362','MRPS12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8820519,8953018,'NM_024690','MUC16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1307322,1329430,'NR_024247','MUM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59062948,59071501,'NM_138373','MYADM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55627971,55661395,'NM_004533','MYBPC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55398696,55505613,'NM_024729','MYH14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8491673,8548331,'NM_012335','MYO1F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17047590,17185104,'NM_001130065','MYO9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51085120,51097702,'NM_001012643','MYPOP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63765095,63776754,'NM_198055','MZF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13090108,13112959,'NM_052876','NACC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51108312,51109876,'NM_001029861','NANOS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13849062,13852571,'NM_001098622','NANOS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52682702,52710327,'NM_003827','NAPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55553545,55560743,'NM_004851','NAPSA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55528868,55539817,'NR_002798','NAPSB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60688368,60690747,'NM_020378','NAT14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19183781,19224061,'NM_004386','NCAN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44379443,44384362,'NM_001001414','NCCRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3136874,3160573,'NM_020170','NCLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60109319,60116251,'NM_001145458','NCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5845680,5855024,'NM_175614','NDUFA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19488018,19500013,'NM_015965','NDUFA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59297971,59302093,'NM_004542','NDUFA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8282183,8292280,'NM_005001','NDUFA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14537889,14543889,'NM_004146','NDUFB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1334882,1346588,'NM_024407','NDUFS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3317572,3414603,'NM_005597','NFIC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12967583,13070610,'NM_002501','NFIX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44082179,44091374,'NM_001243116','NFKBIB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41070982,41083392,'NM_139239','NFKBID'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56566685,56567772,'NM_005601','NKG7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50344847,50355248,'NM_198478','NKPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60988574,61039940,'NM_145007','NLRP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58988666,59019460,'NM_144687','NLRP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61099122,61135514,'NM_176810','NLRP13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60169522,60204322,'NM_001174083','NLRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61039755,61085032,'NM_134444','NLRP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61202903,61264986,'NM_153447','NLRP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60126688,60150685,'NM_001127255','NLRP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61151009,61191807,'NM_176811','NLRP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60911609,60941580,'NM_176820','NLRP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54750779,54775615,'NM_015953','NOSIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15131443,15172792,'NM_000435','NOTCH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51134610,51168497,'NM_002516','NOVA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52215982,52240857,'NM_002517','NPAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41008113,41034735,'NM_004646','NPHS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55571496,55578079,'NM_007121','NR1H2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19173223,19175238,'NM_176880','NR2C2AP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17203693,17217151,'NM_005234','NR2F6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5774817,5779335,'NM_004558','NRTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54256208,54258936,'NM_006179','NTF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53856475,53868076,'NM_145807','NTN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54095118,54118352,'NM_006184','NUCB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',37874706,37896542,'NM_001105570','NUDT19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45863651,45888396,'NM_004756','NUMBL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55101893,55124800,'NM_016553','NUP62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16691786,16789774,'NM_001007525','NWD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17427233,17432725,'NM_138454','NXNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2220519,2224487,'NM_004152','OAZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17198054,17201028,'NM_024578','OCEL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',414345,425983,'NM_182577','ODF3L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9825393,9908070,'NM_058164','OLFM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1704661,1726444,'NM_001080488','ONECUT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50722864,50779962,'NM_001017989','OPA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15778816,15779936,'NM_013940','OR10H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15699833,15700862,'NM_013939','OR10H2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15713202,15714153,'NM_013938','OR10H3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15920817,15921768,'NM_001004465','OR10H4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15765858,15766806,'NM_001004466','OR10H5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15058876,15059944,'NM_001004713','OR1I1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9064920,9065862,'NM_001004456','OR1M1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8702390,8703335,'NM_001004699','OR2Z1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61678,62596,'NM_001005240','OR4F17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14812759,14813689,'NM_001005190','OR7A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14852237,14853167,'NM_030901','OR7A17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14798138,14800276,'NM_017506','OR7A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14770985,14771948,'NM_198944','OR7C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14913300,14914260,'NM_012377','OR7C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9157269,9160493,'NM_175883','OR7D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9185525,9186547,'NM_001005191','OR7D4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9222719,9223739,'NM_001079935','OR7E24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9086503,9087439,'NM_001005192','OR7G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9073944,9074982,'NM_001005193','OR7G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9097687,9098626,'NM_001001958','OR7G3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59289744,59295960,'NM_206818','OSCAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10083196,10087064,'NM_002566','P2RY11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44568109,44573519,'NM_019088','PAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47493024,47498769,'NM_001145939','PAFAH1B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44308259,44361886,'NM_005884','PAK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',659952,699330,'NM_001040134','PALM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14025178,14030971,'NM_001145028','PALM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44266784,44293968,'NM_001004318','PAPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19533515,19590725,'NM_025245','PBX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7602506,7604570,'NM_174895','PCP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1432426,1441407,'NM_017573','PCSK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39587142,39608912,'NM_032346','PDCD2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',37763933,37770198,'NM_004708','PDCD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10404110,10441307,'NM_001111309','PDE4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18179770,18220010,'NM_000923','PDE4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62013256,62043906,'NM_001146184','PEG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62015659,62016973,'NR_023847','PEG3-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38569694,38704639,'NM_000285','PEPD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7447760,7459905,'NM_080662','PEX11G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17483431,17493097,'NM_012088','PGLS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51214251,51218396,'NM_005091','PGLYRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15440456,15451315,'NM_052890','PGLYRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18312407,18341763,'NM_017712','PGPEP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48671094,48700825,'NM_198850','PHLDB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3958748,3989067,'NM_015897','PIAS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54641361,54646927,'NM_017916','PIH1D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18125015,18142343,'NM_005027','PIK3R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9806882,9821365,'NM_006221','PIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3581178,3651477,'NM_001195733','PIP5K1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14412085,14443679,'NM_213560','PKN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53242911,53305921,'NM_001159323','PLA2G4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5509177,5519005,'NR_027064','PLAC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48844562,48866338,'NM_002659','PLAUR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45546171,45576230,'NM_012268','PLD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54032165,54063696,'NM_020904','PLEKHA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',34848166,34858223,'NM_024310','PLEKHF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44595589,44610895,'NM_022835','PLEKHG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2184154,2187328,'NM_018049','PLEKHJ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4789345,4818780,'NM_001164194','PLIN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4453191,4468716,'NM_001080400','PLIN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4473543,4486208,'NM_001013706','PLIN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1475072,1486455,'NM_001243079','PLK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17323263,17349137,'NM_031310','PLVAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55056271,55062634,'NM_007254','PNKP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51661587,51666660,'NM_018215','PNMAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51686287,51691009,'NM_020709','PNMAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7506588,7532653,'NM_001166114','PNPLA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13902999,13925204,'NM_001146254','PODNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55579404,55613083,'NM_002691','POLD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1037577,1046391,'NM_002695','POLR2E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41296450,41298046,'NM_006233','POLR2I'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',568222,584568,'NM_005035','POLRMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',34789009,34800002,'NM_006627','POP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47285347,47328465,'NM_002698','POU2F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10077898,10082975,'NM_020230','PPAN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10077898,10087064,'NM_001198690','PPAN-P2RY11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',232043,242169,'NM_177543','PPAP2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54314474,54346092,'NM_003660','PPFIA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50693570,50697604,'NM_001080401','PPM1N'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60294092,60320739,'NM_017607','PPP1R12C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50574731,50601447,'NM_001142502','PPP1R13L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43433716,43439071,'NM_001243947','PPP1R14A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54067460,54071131,'NM_014330','PPP1R15A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57384866,57421490,'NM_014225','PPP2R1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51542090,51586072,'NM_006247','PPP5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60432958,60461850,'NM_014931','PPP6R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8460939,8473538,'NM_032152','PRAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12768633,12773694,'NM_005809','PRDX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48545047,48545540,'NR_026881','PRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14063506,14085992,'NM_207518','PRKACA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59077278,59102713,'NM_002739','PRKCG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11407268,11422782,'NM_002743','PRKCSH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51869412,51909417,'NM_001079882','PRKD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54872220,54883516,'NR_033397','PRMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40982731,40996041,'NM_021232','PRODH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59310601,59326962,'NM_015629','PRPF31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54786723,54821508,'NM_020719','PRR12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47498123,47506813,'NM_199285','PRR19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5733970,5735776,'NM_001134316','PRR22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52469498,52470820,'NR_037675','PRR24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54776398,54786077,'NM_000951','PRRG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',636545,646461,'NM_214710','PRSS57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',791984,799175,'NM_002777','PRTN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45591510,45611111,'NM_020956','PRX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40928333,40929743,'NM_172341','PSENEN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48062452,48075711,'NM_001184825','PSG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48032988,48051710,'NR_026824','PSG10P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48203648,48222471,'NM_001113410','PSG11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48260201,48278733,'NM_031246','PSG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47917633,47936508,'NM_021016','PSG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48388693,48401630,'NM_002780','PSG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48363734,48382528,'NM_001130014','PSG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48099607,48113829,'NM_002782','PSG6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48120123,48133170,'NM_002783','PSG7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47948678,47961671,'NM_001130168','PSG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48449274,48465522,'NM_002784','PSG9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45168912,45179193,'NM_153001','PSMC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43557029,43566304,'NM_002812','PSMD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6326304,6326860,'NM_004158','PSPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',748391,763327,'NM_002819','PTBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14444277,14447174,'NM_000955','PTGER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51815564,51820194,'NM_000960','PTGIR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54617482,54618510,'NM_178449','PTH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55046227,55055811,'NM_017432','PTOV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60384426,60412686,'NM_001161440','PTPRH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5156518,5291814,'NM_002850','PTPRS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49838937,49861268,'NM_001135769','PVR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50041232,50074038,'NM_002856','PVRL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50887580,50899088,'NM_001163377','QPCTL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10673111,10685043,'NM_031209','QTRT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8361204,8375317,'NM_004218','RAB11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18168610,18175874,'NM_002866','RAB3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11293721,11311344,'NM_004283','RAB3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45975963,45994689,'NM_016154','RAB4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45975963,46006186,'NR_037791','RAB4B-EGLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16083489,16105445,'NM_005370','RAB8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47152672,47155368,'NM_006423','RABAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12917653,12925455,'NM_005053','RAD23A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5867151,5929320,'NM_007320','RANBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15423437,15436382,'NM_022904','RASAL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43591537,43608785,'NM_001146203','RASGRP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53915653,53935782,'NM_017805','RASIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10287888,10305314,'NM_133452','RAVER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3720088,3723219,'NM_032753','RAX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40811819,40820427,'NM_024321','RBM42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54722686,54738702,'NM_020650','RCN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60247503,60266397,'NM_001145971','RDH13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9984924,9993954,'NM_015725','RDH8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1442164,1448924,'NM_138393','REEP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50196546,50233296,'NM_006509','RELB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7639971,7641340,'NM_001193374','RETN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1766244,1799452,'NM_020695','REXO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60962318,60966353,'NM_001145014','RFPL4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13933341,13978134,'NM_002918','RFX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5944174,6061664,'NM_000635','RFX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19164007,19173678,'NM_134440','RFXANK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11365731,11391018,'NM_001161616','RGL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',37858152,37861046,'NM_207391','RGS9BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38161337,38247664,'NM_033103','RHPN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44050311,44060759,'NM_198445','RINL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14000016,14002783,'NM_080864','RLN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12778427,12785462,'NM_006397','RNASEH2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',598525,614233,'NM_194460','RNF126'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54682676,54687376,'NM_012423','RPL13A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54682676,54686908,'NR_026712','RPL13AP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53810399,53814245,'NM_000979','RPL18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17831730,17835124,'NM_000980','RPL18A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60589111,60595263,'NM_001136134','RPL28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5641271,5642678,'NM_033643','RPL36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54691445,54694756,'NM_001015','RPS11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1389362,1391492,'NM_001018','RPS15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44615686,44618458,'NM_001020','RPS16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47055827,47067324,'NM_001022','RPS19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8292383,8293280,'NM_001031','RPS28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63590447,63597983,'NM_001009','RPS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59396537,59403327,'NM_001013','RPS9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',23737655,23802759,'NR_003662','RPSAP58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54830363,54835212,'NM_006270','RRAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50990807,51010445,'NM_030785','RSPH6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12797295,12807230,'NM_031429','RTBDN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50680389,50688314,'NM_206901','RTN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54188967,54210994,'NM_006666','RUVBL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43616179,43770044,'NM_000540','RYR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10193108,10202948,'NM_004230','S1PR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3129735,3131330,'NM_003775','S1PR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10484417,10489126,'NM_030760','S1PR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52325919,52405733,'NM_005500','SAE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5574045,5619489,'NM_001201338','SAFB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5538009,5573938,'NM_014649','SAFB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14060228,14062232,'NM_138352','SAMD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44524947,44567377,'NM_018028','SAMD4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44097743,44113376,'NM_001145901','SARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60732911,60740247,'NM_001101401','SBK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1058632,1125282,'NM_014963','SBNO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40706108,40711093,'NM_001166035','SBSN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54837193,54853718,'NM_021228','SCAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1856372,1877012,'NM_079834','SCAMP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39776185,39777330,'NM_001025591','SCGBL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40213431,40217014,'NM_199037','SCN1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41177929,41179060,'NM_001042631','SDHAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53833107,53877314,'NR_004401','SEC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44697592,44703166,'NM_182704','SELV'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4493599,4510771,'NM_032108','SEMA6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52973653,52979755,'NM_003009','SEPW1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45620248,45623772,'NM_013376','SERTAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45638587,45642122,'NM_203344','SERTAD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2187815,2199678,'NM_007165','SF3A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60743834,60748721,'NM_001199824','SGK110'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2705711,2734354,'NM_003021','SGTA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6703172,6718523,'NM_005490','SH2D3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4311363,4351415,'NM_001199944','SH3GL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55856895,55912007,'NM_016148','SHANK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',367582,411996,'NM_012435','SHC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4229597,4241720,'NM_020209','SHD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60631916,60646042,'NM_001145176','SHISA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45774596,45789145,'NM_138392','SHKBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56605086,56612869,'NM_001171161','SIGLEC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55144061,55156241,'NM_052884','SIGLEC11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56686424,56695459,'NM_033329','SIGLEC12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56837617,56841944,'NM_001098612','SIGLEC14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55164723,55170888,'NR_002825','SIGLEC16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56806592,56825539,'NM_003830','SIGLEC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56714595,56726922,'NM_001245','SIGLEC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56337369,56348595,'NM_014385','SIGLEC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56646062,56653520,'NM_014442','SIGLEC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56319948,56325379,'NM_014441','SIGLEC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56362396,56368592,'NR_002804','SIGLECP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16801208,16852164,'NM_015260','SIN3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43089707,43390848,'NM_015073','SIPA1L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44061034,44082342,'NM_001193286','SIRT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4125105,4133596,'NM_001193285','SIRT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50959882,50964337,'NM_175875','SIX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54624466,54636620,'NM_020309','SLC17A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51969979,51983682,'NM_005628','SLC1A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14921990,14944730,'NM_005071','SLC1A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6391074,6410781,'NM_024103','SLC25A23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6377047,6384790,'NM_173637','SLC25A41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19035802,19084704,'NM_178526','SLC25A42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17442299,17477977,'NM_198580','SLC27A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63701511,63715244,'NM_012254','SLC27A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16521647,16544193,'NM_024881','SLC35E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2683522,2691074,'NM_144564','SLC39A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10574120,10616235,'NM_001145056','SLC44A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17843781,17866983,'NM_000453','SLC5A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54484703,54520286,'NM_014037','SLC6A16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38391409,38408596,'NM_019849','SLC7A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38013258,38052523,'NM_001243036','SLC7A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52623090,52667119,'NM_015063','SLC8A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10955827,11033958,'NM_001128847','SMARCA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48927140,48950982,'NM_019108','SMG9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7891866,7894136,'NR_030717','SNAPC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53113497,53113619,'NR_004435','SNAR-A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024229','SNAR-A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024225','SNAR-A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53102746,53102868,'NR_004437','SNAR-A12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53102746,53102868,'NR_024216','SNAR-A13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024242','SNAR-A14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53113497,53113619,'NR_004436','SNAR-A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024214','SNAR-A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024215','SNAR-A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024223','SNAR-A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024227','SNAR-A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024224','SNAR-A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024228','SNAR-A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024226','SNAR-A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55328813,55328933,'NR_024231','SNAR-B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55328813,55328933,'NR_024230','SNAR-B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53108119,53108239,'NR_024220','SNAR-C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53108119,53108239,'NR_024217','SNAR-C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53145364,53145483,'NR_024221','SNAR-C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53134609,53134729,'NR_024218','SNAR-C4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53108119,53108239,'NR_024219','SNAR-C5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55335270,55335389,'NR_024243','SNAR-D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52025681,52025801,'NR_024258','SNAR-E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55800031,55800154,'NR_004384','SNAR-F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54232088,54232216,'NR_004383','SNAR-G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54226737,54226856,'NR_024244','SNAR-G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17834396,17834529,'NR_000012','SNORA68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10079326,10079411,'NR_004381','SNORD105'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10081424,10081516,'NR_003688','SNORD105B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52950921,52951031,'NR_003048','SNORD23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54685034,54685116,'NR_000021','SNORD32A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54685685,54685768,'NR_000020','SNORD33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54685975,54686041,'NR_000019','SNORD34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54686243,54686329,'NR_000018','SNORD35A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54692787,54692874,'NR_001285','SNORD35B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3933504,3933570,'NR_002602','SNORD37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12678262,12678332,'NR_002751','SNORD41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55994507,55994604,'NR_003067','SNORD88A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55994097,55994194,'NR_003068','SNORD88B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55997393,55997490,'NR_003069','SNORD88C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54280276,54303682,'NM_003089','SNRNP70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45948598,45963137,'NM_004596','SNRPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50882551,50887283,'NM_177542','SNRPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53801811,53802783,'NM_133498','SPACA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11118830,11127484,'NM_182513','SPC24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53820020,53825475,'NM_001204160','SPHK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55614006,55626121,'NM_001243998','SPIB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43446937,43475094,'NM_001166103','SPINT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2279628,2306100,'NM_152988','SPPL2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43572778,43576956,'NM_001039616','SPRED3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45664965,45774205,'NM_020971','SPTBN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48808092,48810490,'NM_001145641','SRRM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18391145,18406372,'NM_032627','SSBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60691681,60707503,'NM_001195267','SSC5D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4275039,4289847,'NM_017720','STAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1156797,1179434,'NM_000455','STK11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51914607,51941560,'NM_001039877','STRN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13116223,13121987,'NM_003765','STX10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7607990,7618759,'NM_001127396','STXBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19248321,19292321,'NM_172231','SUGP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18962696,19005380,'NM_014884','SUGP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53065534,53081466,'NM_003167','SULT2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53747240,53794496,'NM_177973','SULT2B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44628025,44659148,'NM_001130824','SUPT5H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60543032,60551301,'NM_032701','SUV420H2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12870893,12891086,'NM_001105578','SYCE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44385401,44386746,'NM_001080468','SYCN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15079213,15086789,'NM_033025','SYDE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',51010539,51058388,'NM_004819','SYMPK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53559462,53571446,'NM_012451','SYNGR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55817045,55834904,'NM_001160329','SYT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60376280,60383532,'NM_003180','SYT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59265012,59276446,'NM_001135686','TARM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55072493,55083819,'NM_024682','TBC1D17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41297727,41308689,'NM_001281','TBCB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3545503,3557831,'NM_201636','TBXA2R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1560288,1601286,'NM_001136139','TCF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',37902518,37973554,'NM_001110822','TDRD12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54535666,54557526,'NM_003598','TEAD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14501378,14537792,'NM_138501','TECR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48610874,48614607,'NM_001130011','TEX101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59302131,59310867,'NM_013342','TFPT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46528651,46551671,'NM_000660','TGFB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41217726,41237504,'NM_152658','THAP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',313056,327009,'NM_016585','THEG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',36775026,36775785,'NM_001205273','THEG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2736505,2764599,'NM_003249','THOP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4766937,4782737,'NM_182919','TICAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2376621,2378875,'NM_012458','TIMM13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7897602,7914708,'NM_006351','TIMM44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44662891,44673368,'NM_001001563','TIMM50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3679373,3701682,'NM_014428','TJP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2948635,2980612,'NM_001144762','TLE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2928535,2946182,'NM_001143986','TLE6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19236173,19245074,'NM_001001524','TM6SF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59355645,59368756,'NM_001145303','TMC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10804113,10807983,'NM_006858','TMED1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53527427,53558998,'NM_018273','TMEM143'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47509316,47521054,'NM_173633','TMEM145'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5671687,5729742,'NM_152784','TMEM146'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40728341,40730269,'NM_032635','TMEM147'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60516038,60528520,'NM_001085488','TMEM150B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52241006,52243722,'NM_017854','TMEM160'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19091429,19110267,'NM_017814','TMEM161A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60580015,60581424,'NM_139172','TMEM190'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11314451,11317981,'NM_001145416','TMEM205'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17407317,17420376,'NM_001190844','TMEM221'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60582423,60587439,'NM_001190764','TMEM238'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16632937,16660816,'NM_024074','TMEM38A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18584681,18592849,'NM_012109','TMEM59L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60429813,60432444,'NM_173804','TMEM86B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',46574277,46581827,'NM_001098824','TMEM91'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4243224,4253428,'NM_144615','TMIGD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2340783,2377086,'NM_182973','TMPRSS9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4591028,4606580,'NM_001167942','TNFAIP8L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6614147,6621599,'NM_003807','TNFSF14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6482009,6486939,'NM_003811','TNFSF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60354947,60360912,'NM_000363','TNNI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60335972,60352418,'NM_001126133','TNNT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12671007,12694105,'NM_013433','TNPO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50086316,50098786,'NM_006114','TOMM40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',16039316,16074813,'NM_001145160','TPM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52996311,52998673,'NM_198479','TPRX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62566690,62568533,'NR_002166','TRAPPC2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7651706,7653748,'NM_001042462','TRAPPC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50358025,50373325,'NM_024108','TRAPPC6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63747647,63753894,'NM_005762','TRIM28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6690706,6702529,'NM_004240','TRIP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13076713,13088463,'NM_017722','TRMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54352827,54406910,'NM_001195227','TRPM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59385930,59390206,'NM_024075','TSEN34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',36457690,36532030,'NM_020856','TSHZ3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54934822,54958327,'NM_021733','TSKS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11267823,11298672,'NM_012466','TSPAN16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19486027,19487469,'NM_032037','TSSK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45413804,45416146,'NM_152479','TTC9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59618416,59639711,'NM_020659','TTYH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6445329,6453330,'NM_006087','TUBB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',54076033,54093808,'NM_003323','TULP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10322203,10352248,'NM_003331','TYK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41087142,41091051,'NM_001173515','TYROBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40925267,40928176,'NM_144987','U2AF1L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60857227,60877894,'NM_007279','U2AF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39611107,39652638,'NM_005499','UBA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18543613,18549270,'NM_003333','UBA52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63758890,63762155,'NM_003969','UBE2M'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60604461,60611137,'NM_014501','UBE2S'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9799567,9801797,'NM_024292','UBL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4396002,4408791,'NM_025241','UBXN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15800756,15807230,'NR_015379','UCA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',4861565,4913165,'NM_013282','UHRF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17573136,17660008,'NM_001080421','UNC13A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',18803743,18840039,'NM_002911','UPF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40849554,40861207,'NM_007000','UPK1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',1548153,1556483,'NM_006830','UQCR11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',34390006,34395976,'NM_006003','UQCRFS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17187154,17191638,'NM_018467','USE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40451735,40462558,'NM_207291','USF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',17221848,17236544,'NM_031941','USHBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62323320,62335105,'NM_020903','USP29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50702527,50722080,'NM_003370','VASP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',6723721,6808371,'NM_005428','VAV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5855851,5861263,'NM_001017921','VMAC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62658353,62659919,'NM_020633','VN1R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58453356,58454667,'NM_173856','VN1R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58461824,58462730,'NM_173857','VN1R4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55171535,55220617,'NM_016440','VRK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56526606,56537190,'NM_001163922','VSIG10L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',59235891,59259019,'NM_198481','VSTM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',34709330,34747066,'NM_001146339','VSTM2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11950,21966,'NR_033266','WASH5P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',935327,945569,'NM_024100','WDR18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41237622,41287852,'NM_173636','WDR62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12638617,12647646,'NR_029375','WDR83'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43067311,43089157,'NM_031951','WDR87'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',38314837,38358543,'NM_173479','WDR88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',15393317,15421762,'NM_021241','WIZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39664719,39683925,'NM_001080436','WTIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7590410,7600439,'NM_020196','XAB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48739303,48771570,'NM_006297','XRCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',43486039,43498446,'NM_001039672','YIF1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10894443,10900357,'NM_024029','YIPF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19500669,19509393,'NM_198537','YJEFN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40895669,40899780,'NM_014383','ZBTB32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63716708,63722733,'NM_032792','ZBTB45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3996215,4017816,'NM_015898','ZBTB7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52259286,52308849,'NM_015168','ZC3H4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49522545,49552696,'NM_013380','ZFP112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41517194,41561945,'NM_020917','ZFP14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61742128,61759982,'NM_020828','ZFP28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42815228,42838153,'NM_014898','ZFP30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',44589326,44591885,'NM_003407','ZFP36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41574700,41601390,'NM_133466','ZFP82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',3755021,3820027,'NM_015174','ZFR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',10276478,10281233,'NM_001103167','ZGLP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62787439,62795570,'NM_001010879','ZIK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61977739,62043909,'NM_015363','ZIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62337275,62348382,'NM_052882','ZIM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',21698682,21742270,'NM_173531','ZNF100'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19640662,19652138,'NM_033204','ZNF101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',53466465,53482675,'NM_153608','ZNF114'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9537291,9556209,'NM_001008727','ZNF121'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63635992,63643401,'NM_003433','ZNF132'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62817641,62825448,'NM_003435','ZNF134'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63262418,63272922,'NM_003436','ZNF135'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12134871,12161064,'NM_003437','ZNF136'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57791748,57795217,'NR_023311','ZNF137P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19682280,19704921,'NM_021030','ZNF14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41397343,41421515,'NM_001099639','ZNF146'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62903621,62912391,'NM_001085384','ZNF154'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49180194,49194317,'NM_198089','ZNF155'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58261678,58298499,'NM_001102603','ZNF160'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62614340,62625119,'NM_006959','ZNF17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',56766342,56784803,'NM_007147','ZNF175'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9347991,9354293,'NM_001172651','ZNF177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49671698,49696414,'NM_013256','ZNF180'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39917319,39925614,'NM_001145665','ZNF181'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12103167,12112222,'NM_021143','ZNF20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',21940736,21985585,'NM_007153','ZNF208'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62836346,62845959,'NM_198855','ZNF211'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49147236,49163592,'NM_013359','ZNF221'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49221333,49229102,'NM_013360','ZNF222'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49248003,49263982,'NM_013361','ZNF223'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49290321,49304319,'NM_013398','ZNF224'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49309387,49329095,'NM_013362','ZNF225'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49361054,49371422,'NM_001146220','ZNF226'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49408530,49433261,'NM_182490','ZNF227'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49622265,49644505,'NM_014518','ZNF229'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49198916,49209912,'NM_006300','ZNF230'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49455906,49471310,'NM_181756','ZNF233'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49337549,49356302,'NM_006630','ZNF234'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49482340,49501018,'NM_004234','ZNF235'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19837713,19865293,'NM_021047','ZNF253'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',24061815,24104494,'NM_203282','ZNF254'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63144012,63150889,'NM_005773','ZNF256'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',22027105,22065743,'NM_033468','ZNF257'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41693428,41711088,'NM_001166036','ZNF260'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62394679,62426026,'NM_003417','ZNF264'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9384270,9407234,'NM_198058','ZNF266'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63386207,63416739,'NM_016325','ZNF274'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57992472,58016734,'NR_036599','ZNF28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49023312,49044890,'NM_181845','ZNF283'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49268136,49283463,'NM_001037813','ZNF284'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49581647,49597617,'NM_152354','ZNF285'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',50266597,50271528,'NM_145288','ZNF296'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40109646,40127916,'NM_001099438','ZNF30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39860406,39869142,'NM_018443','ZNF302'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62554456,62563077,'NM_020657','ZNF304'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9112055,9135091,'NM_020933','ZNF317'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58071236,58086411,'NM_207333','ZNF320'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58122199,58137659,'NR_037805','ZNF321P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63670223,63676757,'NM_014347','ZNF324'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63654782,63661011,'NM_207395','ZNF324B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63329506,63353960,'NM_024620','ZNF329'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58715988,58775335,'NM_018555','ZNF331'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',14661869,14692772,'NM_032433','ZNF333'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42034392,42062317,'NM_001242476','ZNF345'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58333768,58354134,'NM_001172675','ZNF347'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57159404,57181891,'NM_021632','ZNF350'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7487003,7491911,'NM_018083','ZNF358'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41788060,41811339,'NM_032825','ZNF382'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42409205,42426414,'NM_152604','ZNF383'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49068354,49076128,'NM_001033719','ZNF404'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8481461,8485048,'NM_001146175','ZNF414'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58302943,58327983,'NM_001164309','ZNF415'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62774745,62782055,'NM_017879','ZNF416'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63108953,63119790,'NM_152475','ZNF417'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63125063,63138552,'NM_133460','ZNF418'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62690890,62697860,'NM_001098496','ZNF419'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42261221,42312491,'NM_144689','ZNF420'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9499680,9510303,'NM_024106','ZNF426'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48803215,48815854,'NM_182498','ZNF428'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',21480276,21512919,'NM_001001415','ZNF429'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',21779591,21810810,'NM_003423','ZNF43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',20995265,21034692,'NM_001172671','ZNF430'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',21116679,21160645,'NM_133473','ZNF431'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57228488,57243885,'NM_014650','ZNF432'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11986531,12007525,'NM_001080411','ZNF433'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11837843,11841306,'NM_152262','ZNF439'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12243624,12266714,'NM_001164276','ZNF44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11786106,11807016,'NM_152357','ZNF440'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11738814,11755893,'NM_152355','ZNF441'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12321184,12337475,'NM_030824','ZNF442'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12401519,12412926,'NM_005815','ZNF443'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61344367,61364074,'NM_018337','ZNF444'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63679606,63684409,'NM_017908','ZNF446'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',49108615,49131251,'NM_003425','ZNF45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62483664,62497248,'NM_006635','ZNF460'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41820122,41849579,'NM_153257','ZNF461'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58033596,58052714,'NM_199132','ZNF468'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61770701,61786074,'NM_001001668','ZNF470'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61711023,61732081,'NM_020813','ZNF471'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',55221023,55243843,'NM_015428','ZNF473'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57492237,57520986,'NM_144684','ZNF480'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',20139082,20169984,'NM_052852','ZNF486'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12547919,12582623,'NM_020714','ZNF490'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11770390,11780306,'NM_152356','ZNF491'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',22608965,22642312,'NM_020855','ZNF492'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',21371760,21383441,'NM_145326','ZNF493'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63557534,63566026,'NM_198458','ZNF497'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19764519,19793560,'NM_001145404','ZNF506'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',37528353,37570413,'NM_001136156','ZNF507'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60803541,60806316,'NM_153219','ZNF524'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58560779,58581653,'NR_003699','ZNF525'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47416331,47424193,'NM_133444','ZNF526'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42553898,42575806,'NM_032453','ZNF527'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57592932,57613469,'NM_032423','ZNF528'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41762994,41788018,'NR_027239','ZNF529'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62803064,62811449,'NM_020880','ZNF530'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57626478,57634511,'NM_001143939','ZNF534'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',35555167,35740805,'NM_014717','ZNF536'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42734147,42796840,'NM_152606','ZNF540'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',52715758,52750925,'NM_001101419','ZNF541'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61571301,61583008,'NR_033418','ZNF542'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62523676,62533956,'NM_213598','ZNF543'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63431881,63466820,'NM_014480','ZNF544'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45194782,45215354,'NM_178544','ZNF546'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62566702,62582737,'NM_173631','ZNF547'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62593029,62605731,'NM_001172773','ZNF548'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62730504,62744056,'NM_001199295','ZNF549'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62750154,62759537,'NM_001039654','ZNF550'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62885168,62892981,'NM_138347','ZNF551'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63010261,63018093,'NM_024762','ZNF552'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2770871,2787733,'NM_001102651','ZNF554'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2792432,2811472,'NM_152791','ZNF555'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2818332,2829501,'NM_024967','ZNF556'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',7020470,7038978,'NM_024341','ZNF557'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',8781381,8794565,'NM_144693','ZNF558'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9295447,9315521,'NM_032497','ZNF559'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9296370,9354293,'NM_001202425','ZNF559-ZNF177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9438030,9470279,'NM_152476','ZNF560'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9579001,9592916,'NM_152289','ZNF561'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9620337,9646776,'NM_017656','ZNF562'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12289303,12305534,'NM_145276','ZNF563'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12497183,12523356,'NM_144976','ZNF564'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41365026,41397406,'NM_152477','ZNF565'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41627860,41672177,'NM_032838','ZNF566'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41872141,41904065,'NM_152603','ZNF567'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42099070,42180674,'NM_001204839','ZNF568'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42593899,42650179,'NM_152484','ZNF569'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2851895,2869474,'NM_173480','ZNF57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42651821,42668082,'NM_144694','ZNF570'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42746994,42777513,'NM_016536','ZNF571'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42921042,42962070,'NM_001172689','ZNF573'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',47272129,47277560,'NM_022752','ZNF574'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48729179,48732124,'NM_174945','ZNF575'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',48792383,48796427,'NM_024327','ZNF576'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57050867,57083001,'NR_024181','ZNF577'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57648640,57711943,'NM_001099694','ZNF578'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60780702,60784023,'NM_152600','ZNF579'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60845274,60846648,'NM_001163423','ZNF580'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60846797,60848801,'NM_016535','ZNF581'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61586459,61596701,'NM_144690','ZNF582'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61607505,61628212,'NM_152478','ZNF583'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63611874,63621504,'NM_173548','ZNF584'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42332840,42355455,'NM_152655','ZNF585A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42364320,42393291,'NM_152279','ZNF585B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62972831,62983796,'NM_001204814','ZNF586'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63052992,63068303,'NM_032828','ZNF587'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',39940818,39955974,'NM_001007248','ZNF599'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57960559,57981846,'NM_198457','ZNF600'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63180252,63206526,'NM_025027','ZNF606'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42879103,42901929,'NM_001172677','ZNF607'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57531309,57562188,'NM_001161425','ZNF610'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57897877,57924947,'NM_030972','ZNF611'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57122499,57140823,'NM_024840','ZNF613'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57208388,57223492,'NM_025040','ZNF614'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57186398,57203295,'NM_198480','ZNF615'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57309464,57335003,'NM_178523','ZNF616'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12116708,12128546,'NR_037801','ZNF625'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12103167,12128546,'NR_037802','ZNF625-ZNF20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',20619348,20636242,'NM_145297','ZNF626'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11569234,11590974,'NM_145295','ZNF627'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60679510,60687666,'NM_033113','ZNF628'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57084299,57100117,'NM_023074','ZNF649'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11455241,11477738,'NM_138783','ZNF653'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58358363,58388431,'NM_024733','ZNF665'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61642504,61680582,'NM_022103','ZNF667'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62922930,62930807,'NM_024833','ZNF671'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',23627547,23661857,'NM_138330','ZNF675'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',22153742,22171593,'NM_001001411','ZNF676'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58430449,58449923,'NM_182609','ZNF677'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',23713836,23733533,'NM_138286','ZNF681'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19976226,20011277,'NM_033196','ZNF682'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11859669,11886365,'NM_021915','ZNF69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9266985,9276795,'NM_198535','ZNF699'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11896899,11922578,'NM_144566','ZNF700'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57765337,57782239,'NM_018260','ZNF701'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58163315,58188596,'NR_003578','ZNF702P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',21265802,21304052,'NM_021269','ZNF708'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12432997,12456632,'NM_152601','ZNF709'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61798475,61827356,'NM_021216','ZNF71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',21056792,21099723,'NM_182515','ZNF714'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',23889523,23898357,'NM_001190829','ZNF726'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',22261091,22291818,'NM_001242680','ZNF729'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',20512637,20540466,'NM_001159293','ZNF737'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',21333574,21363224,'NR_027130','ZNF738'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62638504,62649003,'NM_001023561','ZNF749'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58627038,58653327,'NM_001008401','ZNF761'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11936868,11952198,'NM_001012753','ZNF763'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58590208,58607074,'NM_001040185','ZNF765'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57464635,57487788,'NM_001010851','ZNF766'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',2884215,2895969,'NM_021217','ZNF77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62672765,62680750,'NM_001144068','ZNF772'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62703120,62711322,'NM_198542','ZNF773'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62949975,62961339,'NM_173632','ZNF776'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45270738,45288685,'NM_001142577','ZNF780A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',45226006,45253955,'NM_001005851','ZNF780B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42850489,42875056,'NM_152605','ZNF781'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60823918,60827753,'NM_203374','ZNF784'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61290543,61324461,'NM_001002836','ZNF787'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12064077,12086493,'NR_027049','ZNF788'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42001063,42020769,'NM_001242802','ZNF790'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12582731,12601676,'NM_153358','ZNF791'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',40139097,40146793,'NM_175872','ZNF792'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42689680,42726079,'NM_001013659','ZNF793'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12361827,12373088,'NM_001080821','ZNF799'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63482129,63499066,'NM_021089','ZNF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62443864,62465918,'NM_001145078','ZNF805'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57722720,57751115,'NM_001039886','ZNF808'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9661813,9672493,'NM_001199814','ZNF812'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58662800,58689358,'NM_001004301','ZNF813'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63072558,63092254,'NM_001144989','ZNF814'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58144443,58157976,'NM_001202457','ZNF816'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58122199,58157976,'NM_001202473','ZNF816-ZNF321P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11693079,11710760,'NM_001080493','ZNF823'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',20370465,20399611,'NR_036455','ZNF826P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',42070865,42099033,'NM_001037232','ZNF829'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57807429,57833456,'NM_001105554','ZNF83'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',11645812,11658384,'NR_028594','ZNF833P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61865831,61874935,'NM_001005850','ZNF835'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57349936,57366708,'NM_001102657','ZNF836'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63570801,63584201,'NM_138466','ZNF837'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57259530,57290830,'NM_001136499','ZNF841'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12036545,12049626,'NM_001136501','ZNF844'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',58528813,58549934,'NM_138374','ZNF845'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',9729150,9740410,'NM_001077624','ZNF846'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',20897898,20918623,'NR_034060','ZNF85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',41926219,41955556,'NM_001193552','ZNF850'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',60816770,60821719,'NM_001195605','ZNF865'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',12015619,12024782,'NM_001080404','ZNF878'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',57564981,57580858,'NM_001145434','ZNF880'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',20049802,20092977,'NM_007138','ZNF90'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',23332337,23370109,'NM_003430','ZNF91'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',19872721,19907382,'NM_031218','ZNF93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',22365738,22396988,'NM_001098626','ZNF98'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',22726824,22758813,'NM_001080409','ZNF99'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',5406425,5407867,'NM_181710','ZNRF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63237245,63257811,'NM_182572','ZSCAN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63310783,63321605,'NR_027135','ZSCAN18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',63530196,63545524,'NM_181846','ZSCAN22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',62872114,62882332,'NM_152677','ZSCAN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61424490,61431471,'NM_024303','ZSCAN5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',61392869,61396233,'NM_001080456','ZSCAN5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr19',13767273,13804044,'NM_023072','ZSWIM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1_',384719,386171,'NM_001127230','AURKAIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1_',873196,889888,'NM_207418','FAM72D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr1_',1500601,1514610,'NM_006625','SRSF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',69538630,69724481,'NM_014911','AAK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218837095,218843137,'NM_001087','AAMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',215504510,215605055,'NM_015657','ABCA12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',169487694,169596079,'NM_003742','ABCB11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219782731,219791956,'NM_005689','ABCB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',43893114,43919462,'NM_022436','ABCG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',43919606,43959109,'NM_022437','ABCG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27200160,27207184,'NM_032604','ABHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',203901247,204005137,'NM_005759','ABI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',210760960,210798460,'NM_001608','ACADL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',220087135,220111738,'NM_182847','ACCN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',135312655,135376072,'NM_138326','ACMSD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',111206620,111592270,'NM_001142807','ACOXL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',254868,268282,'NR_024080','ACP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',223433975,223516363,'NM_004457','ACSL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73973600,74000288,'NM_001199893','ACTG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',97638833,97646993,'NM_005735','ACTR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',65308332,65351891,'NM_005722','ACTR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',114364006,114432637,'NM_005721','ACTR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',91492885,91494223,'NR_027714','ACTR3BP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',158301204,158439869,'NM_001105','ACVR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',158091524,158193645,'NM_001111032','ACVR1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',148319039,148404863,'NM_001616','ACVR2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',54195913,54385939,'NM_138448','ACYP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',9546861,9613368,'NM_003183','ADAM17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',207016612,207190924,'NM_003812','ADAM23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24895541,24995559,'NM_004036','ADCY3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70742723,70848883,'NM_017488','ADD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',3480696,3502354,'NM_018269','ADI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96142349,96145615,'NM_000682','ADRA2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',99530147,100125469,'NM_002285','AFF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',64604942,64673642,'NM_203437','AFTPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',236067471,236426585,'NM_001244888','AGAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27127994,27135907,'NM_001035507','AGBL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',228045131,228134182,'NM_001135189','AGFG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',177965716,178116810,'NM_003659','AGPS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241456834,241467209,'NM_000030','AGXT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',61258058,61268190,'NM_152392','AHSA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',29269143,29997981,'NM_004304','ALK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',3683660,3728135,'NM_018436','ALLC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73466393,73690554,'NM_015120','ALMS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73725553,73766202,'NR_003683','ALMS1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233029076,233032986,'NM_001631','ALPI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232951591,232955843,'NM_001632','ALPP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232979795,232983669,'NM_031313','ALPPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202273230,202354140,'NM_020919','ALS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202107287,202192150,'NM_001168217','ALS2CR11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201861391,201930346,'NM_139163','ALS2CR12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',203485222,203559305,'NM_001104586','ALS2CR8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',128335675,128358904,'NM_031445','AMMECR1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',112243110,112358212,'NM_022662','ANAPC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',190248955,190319621,'NM_144708','ANKAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241067511,241146078,'NM_017844','ANKMY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',94790399,94886547,'NR_003366','ANKRD20A8P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96867377,96873485,'NM_144994','ANKRD23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',132621636,132635995,'NR_027019','ANKRD30BL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',97142959,97279633,'NM_001164315','ANKRD36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',97487692,97572860,'NM_025190','ANKRD36B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',88846533,88887224,'NR_015424','ANKRD36BP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96877450,96887483,'NM_016466','ANKRD39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',197672439,197883766,'NM_153697','ANKRD44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',71059082,71066137,'NM_024933','ANKRD53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',109729199,109733853,'NM_023016','ANKRD57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219802722,219809635,'NM_018089','ANKZF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241776596,241813464,'NM_001001891','ANO7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',69093779,69253193,'NM_053034','ANTXR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',69822630,69907100,'NM_001153','ANXA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201158975,201244462,'NM_001159','AOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201268690,201367186,'NR_001557','AOX2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',224328290,224410563,'NM_001039569','AP1S3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',68548194,68660798,'NM_173545','APLF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',21077805,21120450,'NM_000384','APOB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241279934,241286573,'NM_198998','AQP12A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241264507,241270990,'NM_001102467','AQP12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',143603368,144242391,'NM_018460','ARHGAP15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',68815416,68907461,'NM_001166277','ARHGAP25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',39000007,39056094,'NM_001145451','ARHGEF33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131390693,131521306,'NM_015320','ARHGEF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96566190,96582098,'NM_212481','ARID5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',235066424,235070432,'NM_005737','ARL4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',152365725,152393255,'NM_177985','ARL5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',153282652,153326013,'NM_152522','ARL6IP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231771585,231918158,'NM_025139','ARMC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218790364,218827316,'NM_005731','ARPC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',9264344,9463263,'NM_003887','ASAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',239000364,239025630,'NM_001040445','ASB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',236768253,236837727,'NM_212556','ASB18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',53750620,53867489,'NM_001201965','ASB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',190234369,190243802,'NM_019048','ASNSD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70040727,70042901,'NM_152792','ASPRV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96153315,96167902,'NM_001002036','ASTL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',25815756,25954816,'NM_018263','ASXL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',23825037,24003440,'NM_017552','ATAD2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',175647251,175741143,'NM_001880','ATF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233824955,233869059,'NM_001190267','ATG16L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',242225699,242261944,'NM_013325','ATG4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219792345,219802605,'NM_001077198','ATG9A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',215884923,215922741,'NM_004044','ATIC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',38375532,38457936,'NR_024191','ATL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85834419,85872017,'NM_032827','ATOH8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',175749231,175754736,'NM_001689','ATP5G3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',71016505,71046069,'NM_001692','ATP6V1B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10779225,10842687,'NM_001039362','ATP6V1C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',46592489,46600600,'NM_080653','ATP6V1E2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74607282,74610482,'NM_181575','AUP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',168383427,168435612,'NM_020981','B3GALT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',62276765,62305370,'NM_006577','B3GNT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231968578,231974119,'NM_145236','B3GNT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',215301519,215382673,'NM_000465','BARD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',159883735,160181305,'NM_013450','BAZ2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',170044251,170071411,'NM_152384','BBS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',60531805,60634137,'NM_018014','BCL11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',111594961,111642493,'NM_138627','BCL2L11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219232622,219236410,'NM_004328','BCS1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',127522068,127581373,'NM_139344','BIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',32435599,32697469,'NM_016252','BIRC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',68946116,68952153,'NM_014482','BMP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202949294,203140719,'NM_001204','BMPR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',242146818,242162226,'NM_032515','BOK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',242132473,242147231,'NR_033346','BOK-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74216035,74228547,'NM_001035505','BOLA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',198299847,198358319,'NM_033030','BOLL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27967060,28415271,'NM_004899','BRE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',111111880,111152155,'NM_004336','BUB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201384513,201396814,'NM_014670','BZW1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',68122835,68143663,'NM_006333','C1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',119630288,119632941,'NM_182528','C1QL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',99124616,99134360,'NM_144706','C2orf15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27652892,27659093,'NM_032266','C2orf16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26840645,26857603,'NM_017877','C2orf18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',132196533,132241447,'NM_013310','C2orf27A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',132269003,132275704,'NM_214461','C2orf27B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27288722,27293550,'NM_016085','C2orf28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',101235776,101253210,'NM_017546','C2orf29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',75743339,75791240,'NM_001201334','C2orf3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',106048544,106061041,'NM_032411','C2orf40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70230520,70271655,'NM_017880','C2orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',20748298,20886308,'NM_021925','C2orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24105709,24123800,'NM_025203','C2orf44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',200528284,200537092,'NM_024520','C2orf47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10199431,10268393,'NM_182626','C2orf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',105320444,105328416,'NM_024093','C2orf49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',11190629,11204367,'NM_182500','C2orf50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',88605283,88610218,'NM_152670','C2orf51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27213218,27215836,'NM_178553','C2orf53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241474137,241484246,'NM_001085437','C2orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',98776740,98919116,'NM_207362','C2orf55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',37312277,37329807,'NM_001083946','C2orf56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232165818,232167238,'NM_152614','C2orf57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',47167633,47236021,'NM_001163561','C2orf61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218929822,218941061,'NM_198559','C2orf62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',55253187,55312953,'NM_152385','C2orf63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74638517,74728672,'NM_138804','C2orf65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',197378253,197383245,'NM_213608','C2orf66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',210593679,210744296,'NM_152519','C2orf67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85685886,85692690,'NM_001013649','C2orf68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',200484223,200501241,'NM_153689','C2orf69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26638984,26655899,'NM_001105519','C2orf70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',29138061,29150631,'NM_001029883','C2orf71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231610524,231622671,'NM_001144994','C2orf72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',54411574,54442218,'NM_001100396','C2orf73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',61225746,61245468,'NM_001143960','C2orf74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',119776489,119840728,'NM_001017927','C2orf76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',170210180,170259177,'NM_001085447','C2orf77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73864823,73897782,'NM_001080474','C2orf78'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208738315,208763018,'NM_001099334','C2orf80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74494810,74498352,'NM_001145054','C2orf81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233443237,233449351,'NM_206895','C2orf82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',228183049,228206280,'NM_001162483','C2orf83'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24251475,24268071,'NM_001040710','C2orf84'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',242460558,242464155,'NM_173821','C2orf85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',190753833,190776455,'NM_001042519','C2orf88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',84902306,84961763,'NM_001080824','C2orf89'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231286506,231394034,'NM_001130850','CAB39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',152397531,152538731,'NM_001005747','CACNB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27293761,27320158,'NM_004341','CAD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',187916093,188021266,'NM_005795','CALCRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',47240724,47257244,'NM_001743','CALM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',44442546,44853233,'NM_024766','CAMKMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85475381,85491187,'NM_001747','CAPG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241174805,241187199,'NM_023085','CAPN10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',30799141,30883815,'NM_144575','CAPN13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',31249425,31293915,'NM_001145122','CAPN14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201755865,201794628,'NM_001230','CASP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201806410,201860679,'NM_001228','CASP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113911737,113970251,'NM_172003','CBWD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',55600243,55625720,'NM_080667','CCDC104'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219606657,219614489,'NM_152389','CCDC108'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130812285,130816392,'NM_032357','CCDC115'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27702009,27705402,'NM_024584','CCDC121'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',108769650,108859279,'NM_144978','CCDC138'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',222871109,222878180,'NM_153038','CCDC140'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',179402728,179623031,'NM_173648','CCDC141'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74553466,74563865,'NM_032779','CCDC142'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',158736114,159021511,'NM_138803','CCDC148'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',197212600,197305775,'NM_001080539','CCDC150'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26478287,26533083,'NM_145038','CCDC164'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',132001961,132007709,'NM_138770','CCDC74A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130613331,130619101,'NM_207310','CCDC74B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',37165097,37177242,'NM_174931','CCDC75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',56264761,56466813,'NM_001080433','CCDC85A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',55368481,55500561,'NM_001135597','CCDC88A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',118389523,118488209,'NM_019044','CCDC93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',228386801,228390524,'NM_001130046','CCL20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',135392861,135433385,'NM_001241','CCNT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208284508,208329141,'NM_152523','CCNYL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',61948765,61969295,'NM_006430','CCT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73314871,73333658,'NM_001166285','CCT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70910850,70916461,'NM_015717','CD207'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',204279442,204311880,'NM_006139','CD28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',160333384,160363012,'NM_014880','CD302'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86865238,86889030,'NM_001145873','CD8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86895970,86942558,'NM_001178100','CD8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',37724246,37752830,'NM_006449','CDC42EP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',173927806,173941964,'NM_031942','CDCA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202379442,202466508,'NM_139158','CDK15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219532641,219535121,'NM_003936','CDK5R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',39259191,39310177,'NM_001009565','CDKL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',37282278,37312244,'NM_005760','CEBPZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26862385,26870959,'NM_001809','CENPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24869834,24898749,'NM_024322','CENPO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',65136998,65167646,'NM_015147','CEP68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',182109645,182230079,'NM_201548','CERKL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',169021080,169339398,'NM_203463','CERS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130995305,131002053,'NM_032545','CFC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131066822,131073721,'NM_001079530','CFC1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201689121,201745656,'NM_001202517','CFLAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201713256,201730760,'NR_040030','CFLAR-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27175724,27195499,'NM_001166240','CGREF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',53848432,53855791,'NM_001008708','CHAC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113058506,113063088,'NM_032309','CHCHD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86584063,86644131,'NM_001005753','CHMP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',175372287,175578227,'NM_001822','CHN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',220111912,220116731,'NM_024536','CHPF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',175320568,175337446,'NM_000079','CHRNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233099165,233108449,'NM_000751','CHRND'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233112680,233119282,'NM_005199','CHRNG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',100374753,100400562,'NM_004854','CHST10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96295610,96303627,'NM_004804','CIAO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26657576,26717715,'NM_001029881','CIB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',174921123,174968689,'NM_004882','CIR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113211914,113238725,'NM_152515','CKAP2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',121811821,122123522,'NM_015282','CLASP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70889284,70901240,'NM_173535','CLEC4F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',29191811,29260183,'NM_024692','CLIP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201425976,201437712,'NR_027856','CLK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',6905901,6923387,'NM_207315','CMPK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',98329049,98381496,'NM_001298','CNGA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96845717,96864848,'NM_017623','CNNM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96790365,96841355,'NM_020184','CNNM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219744862,219749946,'NM_015680','CNPPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',68373645,68400687,'NM_015463','CNRIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',124499333,125389333,'NM_130773','CNTNAP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',98582296,98591387,'NM_001008215','COA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',165249503,165406174,'NM_014900','COBLL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',189547343,189585717,'NM_000090','COL3A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',227737524,227887752,'NM_000091','COL4A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',227575670,227737519,'NM_000092','COL4A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',189604885,189752850,'NM_000393','COL5A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',237897393,237987589,'NM_004369','COL6A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',3620511,3669922,'NM_024027','COLEC11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',61986306,62216709,'NM_152516','COMMD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232359405,232381678,'NM_022730','COPS7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',237658822,237672228,'NM_006710','COPS8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',198026475,198048096,'NM_025147','COQ10B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',97628952,97631089,'NM_001862','COX5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',42431147,42441860,'NM_004718','COX7A2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',207512522,207542443,'NM_173077','CPO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',211166323,211252076,'NM_001122634','CPS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',211190539,211192844,'NR_002763','CPS1-IT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',9481318,9530678,'NM_016207','CPSF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208102860,208178529,'NM_004379','CREB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',101331247,101370397,'NM_153836','CREG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',36436873,36631782,'NM_016441','CRIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',46697828,46706385,'NM_014171','CRIPT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219563155,219566365,'NM_005209','CRYBA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208733708,208736542,'NM_014617','CRYGA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208715541,208719122,'NM_005210','CRYGB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208701105,208702799,'NM_020989','CRYGC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208694575,208697558,'NM_006891','CRYGD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',166137091,166254163,'NM_024969','CSRNP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218971304,218978908,'NM_001206878','CTDSP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',204440755,204446928,'NM_005214','CTLA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',79593567,80729499,'NM_004389','CTNNA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',225043112,225158354,'NM_003590','CUL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',180517848,180580025,'NM_020943','CWC22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218735812,218739961,'NM_000634','CXCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218698257,218710221,'NM_001168298','CXCR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218632122,218634258,'NR_002712','CXCR2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',136588388,136592195,'NM_003467','CXCR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',237143118,237155733,'NM_020311','CXCR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',172087111,172122889,'NM_001127383','CYBRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',38148249,38156827,'NM_000104','CYP1B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',38211750,38262497,'NR_027252','CYP1B1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',203811408,203878808,'NM_177538','CYP20A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',72209874,72228471,'NM_019885','CYP26B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219354715,219388260,'NM_000784','CYP27A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',127657881,127679813,'NM_001001665','CYP27C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131154092,131159905,'NR_023391','CYP4F30P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10114376,10137989,'NM_001037160','CYS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',157979376,158008850,'NM_004288','CYTIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',242322702,242356904,'NM_152783','D2HGDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',159360074,159380742,'NM_001017920','DAPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',136380723,136459692,'NM_001349','DARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',119841298,119846592,'NM_001178017','DBI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',63198489,63200181,'NR_036635','DBIL5P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',171999006,172049808,'NM_001164821','DCAF17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74441788,74455370,'NM_023019','DCTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',15649220,15688676,'NM_004939','DDX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',114073074,114075623,'NR_024005','DDX11L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',118288724,118306423,'NM_006773','DDX18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219991342,219999705,'NM_001927','DES'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',179024408,179034356,'NM_001042702','DFNB59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233927891,234045482,'NM_152879','DGKD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74007460,74039596,'NM_080918','DGUOK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',169629544,169660923,'NM_005771','DHRS9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',38878378,38956525,'NM_198963','DHX57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',189306709,189363076,'NM_052952','DIRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',217856990,218329561,'NR_026597','DIRC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232534536,232910152,'NM_152383','DIS3L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',145142003,145550761,'NR_033870','DKFZp686O1327'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',172658453,172662647,'NM_001038493','DLX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',172672411,172675724,'NM_004405','DLX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',84597089,84900224,'NM_001370','DNAH6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',196310671,196641781,'NM_018897','DNAH7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219852283,219859866,'NM_001039550','DNAJB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234316134,234317400,'NM_001001394','DNAJB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',183289243,183351500,'NM_018981','DNAJC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',25020008,25048467,'NM_016544','DNAJC27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',25048484,25116069,'NR_034113','DNAJC27-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27351792,27357800,'NM_173650','DNAJC5G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',229930588,230287530,'NM_139072','DNER'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',25357824,25418963,'NM_175630','DNMT3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219946423,219960906,'NM_012100','DNPEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',225338050,225615574,'NM_014689','DOCK10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74629654,74638186,'NM_001197260','DOK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',114916368,116318796,'NM_020868','DPP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',162557000,162639298,'NM_001935','DPP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',32102475,32118348,'NM_032574','DPY30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26924472,27026723,'NM_020134','DPYSL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74598765,74606916,'NM_133637','DQX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',25453615,25750007,'NM_021907','DTNB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73842832,73860792,'NM_003584','DUSP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',183651531,183672967,'NM_001142314','DUSP19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96172634,96174906,'NM_004418','DUSP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241148143,241152104,'NM_001033575','DUSP28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',172252227,172313165,'NM_001378','DYNC1I2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',43854681,43890653,'NM_016008','DYNC2LI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',71547339,71767401,'NM_001130983','DYSF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',207224589,207291365,'NM_001093730','DYTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',11501951,11523748,'NM_198256','E2F6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233052780,233060776,'NM_004826','ECEL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232958703,232959998,'NR_028501','ECEL1P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',108877358,108972260,'NM_022336','EDAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',206732562,206735898,'NM_001959','EEF1B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',55946600,56004802,'NM_001039349','EFEMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233179010,233255735,'NM_001243252','EFHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',25118476,25235508,'NM_014971','EFR3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73371564,73374337,'NM_001965','EGR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',62786504,63127125,'NM_001142616','EHBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',31310383,31344764,'NM_014600','EHD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',37187202,37228469,'NM_001135652','EIF2AK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',88637373,88708209,'NM_004836','EIF2AK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27440722,27446423,'NM_172195','EIF2B4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233123600,233142164,'NM_004846','EIF4E2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',99320265,99383160,'NM_015904','EIF5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85435353,85472386,'NM_032213','ELMOD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27154938,27162769,'NM_007046','EMILIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',42249993,42413192,'NM_019063','EML4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',54805652,55052660,'NM_001039753','EML6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',72998111,73015528,'NM_004097','EMX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',119316216,119322229,'NM_001426','EN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',46378044,46467346,'NM_001430','EPAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',120487073,120653167,'NM_001184937','EPB41L5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',149119029,149261606,'NM_015630','EPC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',47449790,47467671,'NM_002354','EPCAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',221990990,222145254,'NM_004438','EPHA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26422457,26472263,'NM_033505','EPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',211948686,213111597,'NM_001042599','ERBB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',127731335,127768222,'NM_000122','ERCC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',53867571,53899460,'NM_001127397','ERLEC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',157883370,157890662,'NM_020711','ERMN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238673689,238706667,'NM_194312','ESPNL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',67477945,67491037,'NM_019002','ETAA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176653080,176656936,'NM_001080458','EVX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',72259951,72906685,'NM_015189','EXOC6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',88203622,88208765,'NM_001443','FABP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',95432174,95442606,'NM_016044','FAHD2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',97113049,97124309,'NM_199336','FAHD2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',28813,36588,'NM_001077710','FAM110C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',203208145,203342725,'NM_173511','FAM117B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131229693,131242177,'NM_001105193','FAM123C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',224951658,224974955,'NM_001122779','FAM124B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201546685,201644637,'NM_173822','FAM126B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219751182,219758441,'NM_024293','FAM134A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70376611,70382724,'NM_032822','FAM136A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',114051428,114052899,'NR_026821','FAM138B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',269560,278308,'NM_001002919','FAM150B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',61905486,61934782,'NM_032180','FAM161A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131521918,131567474,'NM_001009993','FAM168B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',187267033,187336757,'NM_177454','FAM171B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',75572951,75641600,'NM_001135032','FAM176A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96905345,96924626,'NM_001172667','FAM178B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',29057667,29128600,'NM_199280','FAM179A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',16594210,16710615,'NM_030797','FAM49A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26249463,26266036,'NM_001168241','FAM59B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',38031099,38147789,'NM_144713','FAM82A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',14690260,14697619,'NM_145175','FAM84A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',33662232,33677866,'NM_015475','FAM98A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',58239881,58322019,'NM_018062','FANCL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',162735445,162808291,'NM_004460','FAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241944336,242082929,'NM_014808','FARP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',223144405,223229071,'NM_005687','FARSB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',170094508,170138670,'NM_024622','FASTKD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',207338356,207369156,'NM_014929','FASTKD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',112612432,112662262,'NM_153214','FBLN7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',47887562,47986436,'NM_001190274','FBXO11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',230495450,230586069,'NM_174899','FBXO36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73335317,73350266,'NM_001080410','FBXO41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',68543008,68547894,'NM_001024680','FBXO48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96672300,96734351,'NM_001113382','FER1L5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219554052,219558623,'NM_017521','FEV'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',36632907,36678836,'NM_005102','FEZ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',105343714,105382113,'NM_001450','FHL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70857949,70871283,'NM_001004311','FIGLA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',164172363,164300759,'NM_018086','FIGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24126087,24140054,'NM_054033','FKBP1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',179036636,179051601,'NM_001135212','FKBP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',19932095,19948289,'NR_033875','FLJ12334'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',60928398,60961953,'NR_033980','FLJ16341'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',58601391,59144405,'NR_033873','FLJ30838'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',200041065,200045726,'NR_026830','FLJ32063'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',11157427,11189753,'NR_040080','FLJ33534'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113115877,113118228,'NR_033871','FLJ42351'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',239505934,239512902,'NR_034162','FLJ43879'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',152899996,153214594,'NM_052905','FMNL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',215933423,216009036,'NM_002026','FN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27568253,27571630,'NM_022823','FNDC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',200333503,200424141,'NR_034096','FONG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',28469282,28491020,'NM_005253','FOSL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113973130,113975197,'NM_012184','FOXD4L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',88528840,88533168,'NM_001135649','FOXI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',48395298,48459938,'NM_002158','FOXN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',183406249,183439743,'NM_001463','FRZB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',49042799,49235170,'NM_000145','FSHR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',186311599,186406261,'NM_173651','FSIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27468993,27469947,'NR_002201','FTH1P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',84371316,84372835,'NR_003663','FUNDC2P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208335554,208342388,'NM_003468','FZD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202607554,202611405,'NM_003507','FZD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',169465995,169474756,'NM_021176','G6PC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',171381445,171407515,'NM_013445','GAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',242364912,242392375,'NM_022134','GAL3ST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',38746555,38815413,'NM_138801','GALM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',154436671,155018735,'NM_052917','GALNT13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',30986836,31215075,'NM_024572','GALNT14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',166312558,166359049,'NM_004482','GALNT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',157822585,157876159,'NM_014568','GALNT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',236739045,236741391,'NM_001485','GBX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',162908828,162927394,'NM_012198','GCA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',108432008,108492286,'NR_028063','GCC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',162707630,162717160,'NM_002054','GCG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27573209,27600054,'NM_001486','GCKR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',20729904,20734731,'NM_182828','GDF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',38858830,38862610,'NM_024775','GEMIN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',17798894,17830113,'NM_001130009','GEN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',69400404,69467890,'NM_001244710','GFPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85625488,85642168,'NM_000821','GGCX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',91327094,91333880,'NR_003503','GGT8P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233270258,233433531,'NM_001103147','GIGYF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',69055208,69061616,'NM_019617','GKN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',69025867,69033606,'NM_182536','GKN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219809746,219818375,'NM_024506','GLB1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',121271336,121466699,'NM_005270','GLI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',191453791,191538021,'NM_014905','GLS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',69910321,69960231,'NM_178439','GMCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',220071860,220079962,'NM_205847','GMPPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85774924,85779386,'NM_006433','GNLY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',171493193,171531889,'NM_001201428','GORASP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96051420,96064454,'NM_207328','GPAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218833982,218836826,'NM_001077194','GPBAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241023787,241056168,'NM_002081','GPC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',157001145,157151161,'NM_000408','GPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27705366,27727217,'NM_007266','GPN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',206748284,206791016,'NM_005279','GPR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26384544,26423189,'NM_153835','GPR113'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131203112,131204379,'NM_207364','GPR148'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',175004620,175060057,'NM_152529','GPR155'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',128119908,128126683,'NM_005291','GPR17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241213334,241219349,'NM_005301','GPR35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',132890616,133120639,'NM_001508','GPR39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',105224631,105226356,'NM_007227','GPR45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231480286,231498185,'NM_005683','GPR55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',53933553,53940674,'NM_006794','GPR75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',53750957,53940674,'NM_001164165','GPR75-ASB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',165057568,165186606,'NM_004490','GRB14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',11600301,11649723,'NM_033090','GREB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10009242,10059863,'NM_198182','GRHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',144420050,144806553,'NM_001164629','GTDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',48698440,48760252,'NM_001193487','GTF2A1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27402224,27433372,'NM_001521','GTF3C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',197353057,197372737,'NM_001206774','GTF3C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',188865634,189168897,'NM_016315','GULP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',127130153,127170716,'NM_002101','GYPC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',42847732,42873255,'NM_012205','HAAO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26267007,26321098,'NM_000182','HADHA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26321119,26366837,'NM_000183','HADHB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',172487180,172556846,'NR_027862','HAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',239634800,239987580,'NM_006037','HDAC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241815354,241860919,'NM_001243900','HDLBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',37061656,37164989,'NM_019024','HEATR5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',196772221,197165580,'NM_020760','HECW2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238811646,238813420,'NM_018645','HES6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',190777604,190893016,'NM_198047','HIBCH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234410224,234427951,'NM_018410','HJURP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74913289,74973989,'NM_000189','HK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',138438277,138490404,'NM_006895','HNMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',177785667,177796931,'NM_194247','HNRNPA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',38643831,38683682,'NM_138394','HNRPLL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176761552,176763881,'NM_024501','HOXD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176689737,176692916,'NM_002148','HOXD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176680329,176682562,'NM_021192','HOXD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176672775,176673734,'NM_021193','HOXD12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176665777,176668912,'NM_000523','HOXD13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176737050,176746072,'NM_006898','HOXD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176724358,176726195,'NM_014621','HOXD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176702713,176705669,'NM_019558','HOXD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176695658,176697891,'NM_014213','HOXD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10361276,10485194,'NM_134421','HPCAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',20681044,20714345,'NM_022460','HS1BP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',128739523,128792641,'NM_004807','HS6ST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',198059552,198073243,'NM_199440','HSPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',198072965,198076432,'NM_002157','HSPE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',198072965,198126668,'NM_001202485','HSPE1-PHOCN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231681192,231698068,'NM_000867','HTR2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74610039,74614191,'NM_013247','HTRA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',9532120,9546042,'NM_001039613','IAH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',203346117,203444616,'NM_138468','ICA1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',204509715,204534543,'NM_012092','ICOS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',8739563,8742034,'NM_002166','ID2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208809197,208828051,'NM_005896','IDH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',162831834,162883285,'NM_022168','IFIH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27520743,27566075,'NM_015662','IFT172'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',217206371,217237403,'NM_000597','IGFBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',217245072,217268517,'NM_000599','IGFBP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219627385,219633482,'NM_002181','IHH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',213572655,213724578,'NM_001079526','IKZF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',102345528,102381649,'NM_003855','IL18R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',102401685,102435456,'NM_003853','IL18RAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113247962,113259442,'NM_000575','IL1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113303807,113310827,'NM_000576','IL1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113542017,113549898,'NM_173161','IL1F10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',102136833,102162766,'NM_000877','IL1R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',101974737,102011316,'NM_004633','IL1R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',102294393,102334929,'NM_016232','IL1RL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',102169864,102222243,'NM_003854','IL1RL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113591940,113608064,'NM_000577','IL1RN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113479919,113482092,'NM_014440','IL36A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113501606,113526911,'NM_173178','IL36B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113452076,113459698,'NM_019618','IL36G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113532685,113538791,'NM_173170','IL36RN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113389240,113392929,'NM_173205','IL37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238743781,238777063,'NM_030768','ILKAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86224565,86276404,'NM_001100169','IMMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130816958,130820667,'NM_033416','IMP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',242290128,242317569,'NM_032329','ING5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',220145197,220148679,'NM_002191','INHA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',120820188,120825853,'NM_002193','INHBB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74535657,74538595,'NM_031288','INO80B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74535657,74541526,'NR_037849','INO80B-WBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',206566689,206659151,'NM_017759','INO80D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',190916440,190944636,'NM_002194','INPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',98427752,98573928,'NM_004027','INPP4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233633279,233781288,'NM_005541','INPP5D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',118562519,118584067,'NM_016133','INSIG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',236897532,237080831,'NM_024726','IQCA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',227304276,227371750,'NM_005544','IRS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',182029863,182110713,'NM_000885','ITGA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',173000559,173079427,'NM_000210','ITGA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',187163034,187253873,'NM_002210','ITGAV'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',9463265,9481094,'NM_004763','ITGB1BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',160666478,160764836,'NM_000888','ITGB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231437864,231452207,'NM_030926','ITM2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96355661,96357818,'NM_178495','ITPRIPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24279238,24436901,'NM_006277','ITSN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',127954852,128000557,'NM_017969','IWS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',170074457,170091018,'NM_006063','KBTBD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85051741,85140106,'NM_020122','KCMF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',223625105,223628599,'NM_080671','KCNE4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10969513,10971802,'NM_002236','KCNF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',42522660,42574741,'NM_172344','KCNG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',162988002,163403503,'NM_173162','KCNH7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',95326798,95415552,'NM_013434','KCNIP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233338755,233349519,'NM_001172416','KCNJ13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',155263338,155421260,'NM_002239','KCNJ3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',47601418,47650974,'NM_022055','KCNK12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26769084,26807570,'NM_002246','KCNK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',17923425,17977706,'NM_002252','KCNS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201061928,201083037,'NM_152387','KCTD18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86521781,86573350,'NM_018433','KDM3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27163114,27177123,'NM_006488','KHK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96622633,96667842,'NM_001115016','KIAA1310'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',225973845,226226978,'NM_020864','KIAA1486'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176498655,176575264,'NM_030650','KIAA1715'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',61146866,61218673,'NM_032506','KIAA1841'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',8786437,8895206,'NM_020738','KIDINS220'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241301853,241408398,'NM_004321','KIF1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26002958,26058947,'NM_002254','KIF3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',149349288,149591519,'NM_004522','KIF5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10101822,10112414,'NM_001177718','KLF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',207653773,207738859,'NM_003709','KLF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',170298601,170316642,'NM_144711','KLHL23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',23461802,23784987,'NM_052920','KLHL29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238712101,238726286,'NM_198582','KLHL30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',48521411,48596035,'NM_001193475','KLRAQ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',88107838,88136363,'NM_016618','KRCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27518736,27522852,'NM_001168364','KRTCAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',143351664,143516355,'NM_003937','KYNU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',211004217,211049744,'NM_001136575','LANCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',20095891,20115270,'NM_014713','LAPTM4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',30307900,30336403,'NM_030915','LBH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74578151,74583951,'NM_001009812','LBX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',30523640,30720595,'NM_001002257','LCLAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',136261884,136311220,'NM_002299','LCT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',64534830,64542021,'NM_014181','LGALSL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',48767416,48836384,'NM_000233','LHCGR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',108517242,108670134,'NM_001193483','LIMS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',128112465,128149234,'NM_001161403','LIMS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',110013297,110021322,'NM_033514','LIMS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',110013297,110083438,'NR_027145','LIMS3-LOC440895'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',110657164,110665189,'NM_001205288','LIMS3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',110326394,110337806,'NR_027063','LINC00116'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',87536088,87602145,'NR_024204','LINC00152'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',8065351,8386000,'NR_034135','LINC00299'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',64265716,64286123,'NR_033837','LINC00309'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232081380,232087294,'NR_024079','LINC00471'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',32904013,33007710,'NR_027098','LINC00486'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',6786750,6827893,'NR_038369','LINC00487'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',99137968,99146045,'NM_001204830','LIPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96735393,96769540,'NR_024521','LMAN2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',39998277,40335853,'NR_038441','LOC100128590'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',43307853,43309498,'NR_027251','LOC100129726'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',135340672,135392646,'NR_036549','LOC100129961'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',213849521,213857174,'NM_001242575','LOC100130451'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',197273603,197285981,'NR_034036','LOC100130452'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',177856481,177965665,'NR_026966','LOC100130691'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130440634,130454515,'NR_036537','LOC100131320'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',63124608,63128350,'NR_027069','LOC100132215'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70204671,70205952,'NR_024444','LOC100133985'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',46908506,46939649,'NR_024452','LOC100134259'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74466352,74474516,'NR_024463','LOC100189589'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',33005697,33024706,'NR_027097','LOC100271832'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234327700,234328730,'NR_037694','LOC100286922'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86942458,86975676,'NR_037931','LOC100286979'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',104361739,104391222,'NR_037885','LOC100287010'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',109110215,109113007,'NR_029193','LOC100287216'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',110595032,110615930,'NR_037627','LOC100288570'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',36435395,36436217,'NR_037631','LOC100288911'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27965826,27967485,'NR_028308','LOC100302650'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',206688541,206689541,'NR_033248','LOC100329109'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',114451715,114454031,'NR_034130','LOC100499194'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27411912,27414174,'NR_038427','LOC100505624'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',28384061,28386830,'NR_038319','LOC100505716'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',37277138,37285390,'NR_037879','LOC100505876'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',3983120,3999497,'NR_037881','LOC100505964'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',3583851,3587215,'NR_038430','LOC100506054'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',97447959,97457332,'NR_040097','LOC100506123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',166498612,166513077,'NR_038984','LOC100506134'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',7478842,7507832,'NR_038432','LOC100506274'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',104788314,104834366,'NR_037883','LOC100506421'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',13024358,13064589,'NR_038434','LOC100506474'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176707814,176710072,'NR_038435','LOC100506783'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',179096163,179193189,'NR_038271','LOC100506866'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201285272,201308145,'NR_037886','LOC100507140'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',110062555,110083464,'NR_037626','LOC100507334'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208692097,208729731,'NR_038437','LOC100507443'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85618100,85619520,'NR_038942','LOC100630918'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131010612,131023938,'NR_027314','LOC150527'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',104417236,104495647,'NR_015399','LOC150568'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',5990269,6037801,'NR_026832','LOC150622'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131966855,131995619,'NR_026922','LOC150776'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',240349490,240387293,'NR_037808','LOC150935'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',110567222,110576650,'NR_027244','LOC151009'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',134923429,134928662,'NR_024275','LOC151162'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',239084069,239128879,'NR_037809','LOC151171'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238798492,238805057,'NR_026926','LOC151174'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219549249,219550888,'NR_015390','LOC151300'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231263879,231273488,'NR_040038','LOC151475'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231459504,231477476,'NR_038238','LOC151484'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74583251,74585700,'NR_024606','LOC151534'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',82937437,82938404,'NR_033423','LOC1720'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',207215386,207222418,'NM_001102659','LOC200726'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241542708,241555541,'NR_033841','LOC200772'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',122123699,122125584,'NR_037858','LOC254128'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85895763,85907422,'NR_038888','LOC284950'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',104729526,104740609,'NR_038231','LOC284998'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',105575985,105593448,'NR_038891','LOC285000'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96269703,96271428,'NM_001037228','LOC285033'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',87111308,87157047,'NR_026846','LOC285074'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',174899000,174903616,'NR_038897','LOC285084'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130603665,130613456,'NR_033903','LOC285103'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',7980006,8034396,'NR_015405','LOC339788'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',61222233,61225614,'NR_036496','LOC339803'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',64687949,64697120,'NR_034023','LOC339807'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',769836,854112,'NR_033880','LOC339822'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231557326,231568991,'NR_033879','LOC348761'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24199853,24246011,'NM_001145710','LOC375190'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',39039932,39040989,'NR_028386','LOC375196'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',177202554,177210548,'NR_040001','LOC375295'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',6969857,6976264,'NR_033997','LOC386597'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',41958198,41974690,'NR_033996','LOC388942'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',46560207,46565068,'NM_001145051','LOC388946'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',46897310,46903303,'NR_034099','LOC388948'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',115618094,115635390,'NR_036580','LOC389023'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130396904,130408360,'NR_026740','LOC389033'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131876943,131882271,'NR_036499','LOC389043'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',6039560,6045815,'NR_026833','LOC400940'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',42016011,42034447,'NM_001242815','LOC400950'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',64982477,65013085,'NR_036586','LOC400958'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131916203,131918937,'NR_002826','LOC401010'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176746169,176761932,'NR_033979','LOC401022'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',110062555,110083438,'NR_027143','LOC440895'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',114453615,114481357,'NR_034128','LOC440900'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130500043,130525174,'NR_026758','LOC440905'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131753332,131773862,'NR_030728','LOC440910'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',171277194,171279323,'NR_027433','LOC440925'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',94898156,94976814,'NR_037597','LOC442028'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',111841061,111969163,'NR_015395','LOC541471'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',158731407,158800927,'NR_038850','LOC554201'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238805065,238807724,'NR_026923','LOC643387'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',67203992,67295955,'NR_038844','LOC644838'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',21763810,21787029,'NR_038837','LOC645949'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',216184530,216416504,'NR_037195','LOC646324'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131010612,131023958,'NR_033930','LOC646743'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',139371363,139373214,'NR_033658','LOC647012'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',91188435,91211702,'NR_027238','LOC654342'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113710316,113741050,'NR_015377','LOC654433'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',4653682,4681687,'NR_034134','LOC727982'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',242679516,242751142,'NR_024437','LOC728323'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',97652637,97685961,'NR_038386','LOC728537'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',39518060,39681988,'NR_037875','LOC728730'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',43755795,43756965,'NM_001101330','LOC728819'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',107805951,107809015,'NR_024439','LOC729121'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96040025,96052611,'NR_003698','LOC729234'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',2302010,2309887,'NR_024468','LOC730811'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',120938380,120940395,'NR_027181','LOC84931'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',94784797,94790656,'NR_038409','LOC90499'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86100849,86104502,'NR_026984','LOC90784'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',173296162,173309180,'NR_026995','LOC91149'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',100256184,100305627,'NM_198461','LONRF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74613453,74634570,'NM_032603','LOXL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',11804190,11884984,'NM_145693','LPIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',140705465,142605740,'NM_018557','LRP1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',169691864,169927368,'NM_004525','LRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',43966866,44076648,'NM_133259','LRPPRC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238265545,238355029,'NM_001137551','LRRFIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',80382513,80384998,'NM_178839','LRRTM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',77597294,77603010,'NM_024993','LRRTM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',33213167,33478079,'NM_001166265','LTBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',160368113,160469513,'NM_002349','LY75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',160333384,160469513,'NM_001198759','LY75-CD302'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',99267132,99284071,'NM_174898','LYG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',99225142,99238002,'NM_175735','LYG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',133118806,133145540,'NM_001077427','LYPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',149895274,150038905,'NM_194317','LYPD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',149603226,149780018,'NM_177964','LYPD6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',95055205,95083462,'NM_002371','MAL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',110198735,110231432,'NM_005434','MALL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',210152647,210307079,'NM_002374','MAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',127772714,127817275,'NM_006609','MAP3K2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',39329925,39517723,'NM_003618','MAP4K3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',101680596,101877584,'NM_001242560','MAP4K4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27047028,27103591,'NM_012326','MAPRE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',216830829,216944995,'NM_020814','MARCH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',160277255,160333330,'NM_022826','MARCH7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',119416214,119468706,'NM_006770','MARCO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',198278272,198281359,'NM_138395','MARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85619611,85625914,'NM_005911','MAT2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',20055293,20075936,'NM_002381','MATN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',148495049,148987514,'NM_018328','MBD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',8914151,9061327,'NM_138799','MBOAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',71190313,71210902,'NM_032601','MCEE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',46982512,46996755,'NM_001171507','MCFD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',136313665,136350481,'NM_005915','MCM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',63669788,63687834,'NM_001199111','MDH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',207310733,207338295,'NM_001039845','MDH1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',66516035,66653395,'NM_002398','MEIS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',31946397,32089202,'NM_001137602','MEMO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',112372661,112503416,'NM_006343','MERTK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',172573049,172653833,'NM_199227','METAP1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208182083,208197941,'NM_145280','METTL21A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',170376513,170389599,'NM_014168','METTL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',171882158,171999558,'NM_024770','METTL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',227900471,227930793,'NM_020194','MFF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24086456,24100649,'NM_001080473','MFSD2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',190981325,191075286,'NM_017694','MFSD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',102700097,102719769,'NM_032718','MFSD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',98602000,98714021,'NM_012214','MGAT4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',134728299,134928662,'NM_002410','MGAT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',239779963,239782090,'NR_026664','MGC16025'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176723276,176723386,'NR_029609','MIR10B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',189551062,189551131,'NR_031647','MIR1245'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',189551064,189551132,'NR_039947','MIR1245B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',177173953,177174026,'NR_031648','MIR1246'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',180433807,180433880,'NR_031659','MIR1258'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',136139436,136139518,'NR_029672','MIR128-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',25405012,25405094,'NR_031570','MIR1301'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232465195,232465252,'NR_031717','MIR1471'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241044090,241044179,'NR_029702','MIR149'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219867076,219867166,'NR_029688','MIR153-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',56069588,56069698,'NR_029629','MIR216A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',56081352,56081434,'NR_030623','MIR216B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',56063605,56063715,'NR_029630','MIR217'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',207682955,207683042,'NR_036227','MIR2355'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',239938355,239938436,'NR_039948','MIR2467'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218975612,218975689,'NR_029500','MIR26B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',12794943,12795021,'NR_036072','MIR3125'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',69184317,69184391,'NR_036073','MIR3126'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96827741,96827817,'NR_036074','MIR3127'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',177828918,177828984,'NR_036075','MIR3128'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',189706006,189706082,'NR_036076','MIR3129'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',207356202,207356277,'NR_036077','MIR3130-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',207356202,207356277,'NR_036078','MIR3130-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219631653,219631716,'NR_036081','MIR3131'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',220122038,220122113,'NR_036082','MIR3132'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',189568600,189568663,'NR_037401','MIR3606'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',134601165,134601233,'NR_037450','MIR3679'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',12256706,12256778,'NR_037452','MIR3681'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',53929762,53929846,'NR_037453','MIR3682'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219574610,219574674,'NR_029867','MIR375'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10250190,10250248,'NR_036222','MIR4261'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',11894509,11894563,'NR_036226','MIR4262'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',28072737,28072820,'NR_036230','MIR4263'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',79729927,79729993,'NR_036231','MIR4264'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',109124377,109124476,'NR_036223','MIR4265'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',109296458,109296513,'NR_036224','MIR4266'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',110184826,110184908,'NR_036225','MIR4267'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',220479466,220479530,'NR_036228','MIR4268'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',239892093,239892177,'NR_036229','MIR4269'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',55314803,55315489,'NR_039624','MIR4426'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',11598181,11598254,'NR_039627','MIR4429'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',60468000,60468084,'NR_039631','MIR4432'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',64606150,64606203,'NR_039633','MIR4434'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',87710388,87710468,'NR_039634','MIR4435-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',87710393,87710467,'NR_039636','MIR4435-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',88892998,88893083,'NR_039635','MIR4436A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',181878564,181878624,'NR_039637','MIR4437'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',225583421,225583501,'NR_039641','MIR4439'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',239655449,239655547,'NR_039642','MIR4440'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',239672459,239672559,'NR_039643','MIR4441'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',19411670,19411747,'NR_039914','MIR4757'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',32713825,32713902,'NR_039922','MIR4765'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',87275419,87275493,'NR_039928','MIR4771-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',87275419,87275493,'NR_039929','MIR4771-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',102415180,102415258,'NR_039930','MIR4772'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',151933093,151933171,'NR_039931','MIR4773-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',151933093,151933171,'NR_039932','MIR4773-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',169147698,169147774,'NR_039933','MIR4774'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208327775,208327850,'NR_039934','MIR4775'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',213499225,213499305,'NR_039935','MIR4776-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',213499225,213499305,'NR_039936','MIR4776-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231935662,231935748,'NR_039937','MIR4777'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',66438884,66438964,'NR_039938','MIR4778'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86273659,86273742,'NR_039939','MIR4779'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',88163152,88163233,'NR_039940','MIR4780'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',114195336,114195415,'NR_039943','MIR4782'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',127897582,127897664,'NR_039944','MIR4783'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131965202,131965279,'NR_039945','MIR4784'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',160972566,160972639,'NR_039946','MIR4785'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',240531104,240531184,'NR_039949','MIR4786'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',44630133,44630163,'NR_039629','MIR548AD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',212999231,212999329,'NR_031643','MIR548F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',178955050,179249254,'NR_031666','MIR548N'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',145958784,146090904,'NR_031752','MIR548Q'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',32610723,32610817,'NR_030285','MIR558'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',47458317,47458413,'NR_030286','MIR559'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',188870463,188870560,'NR_030287','MIR561'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',132731008,132731123,'NR_031608','MIR663B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',175740606,175740683,'NR_030630','MIR933'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',99152157,99163924,'NM_138798','MITD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',122200990,122210973,'NM_032390','MKI67IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',173770686,173855010,'NR_033882','MLK7-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238060616,238128700,'NM_001042467','MLPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',150134392,150152576,'NM_015702','MMADHC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74236718,74259503,'NM_018221','MOB1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',198089011,198126668,'NM_015387','MOB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',223244700,223282893,'NM_058165','MOGAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74541691,74546045,'NM_001146158','MOGS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',38956606,38963354,'NM_001145450','MORN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',71210951,71230740,'NM_005791','MPHOSPH10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202217841,202271662,'NM_033066','MPP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27385863,27399473,'NM_002437','MPV17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',216515558,216586591,'NM_018000','MREG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',75727416,75742842,'NM_014763','MRPL19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',99163973,99182452,'NM_145212','MRPL30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27848087,27856112,'NM_004891','MRPL33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86280066,86293988,'NM_016622','MRPL35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',224530364,224540675,'NM_022915','MRPL44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74552592,74553450,'NM_053050','MRPL53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',95116678,95151481,'NM_031902','MRPS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',105020914,105082850,'NM_182640','MRPS9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',17861266,17861848,'NM_001105569','MSGN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',47483766,47563864,'NM_000251','MSH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',47863724,47887596,'NM_000179','MSH6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234438826,234441794,'NR_024322','MSL3P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',190628670,190635700,'NM_005259','MSTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',42649174,42789857,'NM_020744','MTA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241675181,241690420,'NR_028051','MTERFD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74279197,74295932,'NM_006636','MTHFD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',55317259,55349888,'NM_002453','MTIF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',176842368,176910999,'NR_027850','MTX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',69995676,70023580,'NM_001202513','MXD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',33804631,33806788,'NR_003143','MYADML'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',15998133,16004580,'NM_005378','MYCN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',15997470,15999296,'NR_026766','MYCNOS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',240714652,240724437,'NM_138336','MYEOV2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',210863112,210876584,'NM_079422','MYL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',191818498,191998360,'NM_001161819','MYO1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',170742900,171219920,'NM_138995','MYO3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',128009847,128111773,'NM_001080527','MYO7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',1771891,2314052,'NM_015025','MYT1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131958002,131966534,'NM_001085365','MZT2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130655970,130664770,'NM_025029','MZT2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',191222092,191265737,'NM_005966','NAB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',71148915,71159506,'NM_017567','NAGK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73721357,73723045,'NM_003960','NAT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73781143,73781975,'NM_016347','NAT8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',15224482,15618905,'NM_015909','NBAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',203587846,203790962,'NM_001114132','NBEAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96365210,96405001,'NM_015341','NCAPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',105727951,105877162,'NM_003581','NCK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',183497849,183611474,'NM_013436','NCKAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',133145841,134042501,'NM_207363','NCKAP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232027702,232037449,'NM_005381','NCL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24660849,24847074,'NM_003743','NCOA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',240545461,240613492,'NM_004544','NDUFA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201644706,201658718,'NM_002491','NDUFB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',206696047,206732488,'NM_001199982','NDUFS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',152050098,152299247,'NM_001164508','NEB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233605625,233608011,'NM_005383','NEU2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',242398832,242407412,'NM_001167600','NEU4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96527109,96537573,'NR_026875','NEURL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',182249077,182253637,'NM_002500','NEUROD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',177803278,177838105,'NM_006164','NFE2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',69476756,69518257,'NM_015700','NFU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233451639,233501105,'NM_001114090','NGEF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219648289,219733831,'NM_024782','NHEJ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201462294,201476900,'NM_001136039','NIF3L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',32303021,32344316,'NM_021209','NLRC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',151835227,151854676,'NM_004688','NMI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',100453375,100466174,'NM_001011717','NMS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232096114,232103426,'NM_006056','NMUR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10628344,10747563,'NM_024894','NOL10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202838759,202876629,'NM_015934','NOP58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',169367345,169430095,'NM_001039724','NOSTRIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73282893,73291848,'NM_001134462','NOTO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',100803044,100979719,'NM_002518','NPAS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',110238202,110319928,'NM_207181','NPHP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232495048,232499282,'NM_024409','NPPC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',156889189,156897533,'NM_006186','NR4A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27504976,27518628,'NM_013392','NRBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',206255468,206350125,'NM_018534','NRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',49999146,50428398,'NM_138735','NRXN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',18607617,18634327,'NM_001199087','NT5C1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',18599469,18634327,'NM_001199103','NT5C1B-RDH14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',11715754,11727780,'NM_012344','NTSR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',183697327,183734653,'NM_138285','NUP35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',139143196,139254281,'NM_007226','NXPH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',192251042,192261493,'NR_024415','OBFC2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',220123693,220144512,'NM_015311','OBSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10497958,10505904,'NM_002539','ODC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',174645420,174821611,'NM_013341','OLA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',240617580,240618519,'NM_001005853','OR6B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',240633166,240634162,'NM_173351','OR6B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',71104712,71110568,'NR_002185','OR7E91P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201483138,201536669,'NM_006190','ORC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',148404435,148494776,'NM_001190882','ORC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',190343237,190357342,'NM_001128150','ORMDL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',178893216,178972406,'NM_145739','OSBPL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',190319630,190336169,'NM_022353','OSGEPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',19414726,19421853,'NM_145260','OSR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27146845,27148071,'NM_001134693','OST4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26533574,26554414,'NM_004802','OTOF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',240727118,240728746,'NM_148961','OTOS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',63130695,63138470,'NM_001199770','OTX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',42843142,42844905,'NM_148962','OXER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',147061094,147065028,'NR_026904','PABPC1P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',71263375,71307741,'NM_020459','PAIP2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',60836868,60882725,'NM_022894','PAPOLG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',205118760,206193131,'NM_205863','PARD3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241694187,241737551,'NM_015148','PASK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',222866592,222871959,'NM_000438','PAX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113690044,113752968,'NM_003466','PAX8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70168088,70169838,'NM_006196','PCBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70042898,70167651,'NR_033872','PCBP1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',120018494,120130707,'NM_001029996','PCDP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',193322815,193349870,'NR_002769','PCGEM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74585677,74588329,'NM_032673','PCGF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70338734,70361821,'NM_016297','PCYOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',242440705,242449731,'NM_005018','PDCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',100545849,100559633,'NM_024065','PDCL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',178196222,178645728,'NM_016953','PDE11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',182715427,183095498,'NM_005019','PDE1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232305390,232354218,'NM_002601','PDE6D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10840967,10870411,'NM_005742','PDIA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',173129024,173172108,'NM_002610','PDK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',216611355,216654784,'NM_018441','PECR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',64173289,64225109,'NM_020651','PELI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238817417,238861946,'NM_022817','PER2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',61098315,61132629,'NM_002618','PEX13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24191747,24199655,'NM_199346','PFN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',197405972,197499699,'NM_024989','PGAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',170259209,170266465,'NM_001199285','PHOSPHO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',170259209,170316642,'NM_001199290','PHOSPHO2-KLHL23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',229596932,229844301,'NM_017933','PID1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',46661916,46697755,'NM_002643','PIGF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208839235,208878516,'NM_001178000','PIKFYVE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',42128664,42139172,'NM_138370','PKDCC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',216789856,216793160,'NR_037701','PKI55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',159021721,159246186,'NM_003628','PKP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',160505505,160627372,'NM_007366','PLA2R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',28572441,28720157,'NM_153021','PLB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219180731,219210153,'NM_032726','PLCD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',198377670,198722853,'NM_006226','PLCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',68445825,68478089,'NM_002664','PLEK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',179053444,179078028,'NM_019091','PLEKHA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131578889,131623895,'NM_001100623','PLEKHB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',43717942,43848630,'NM_172069','PLEKHH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208394256,208598529,'NM_001080475','PLEKHM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',106369200,106374283,'NR_003506','PLGLA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',87091098,87102480,'NM_001032392','PLGLB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',87091098,87102484,'NM_002665','PLGLB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',190357055,190450600,'NM_001128143','PMS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218896145,218919760,'NM_022572','PNKD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',68238508,68256595,'NM_020143','PNO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',55714701,55774515,'NM_033109','PNPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',75039282,75050367,'NM_019896','POLE4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86106961,86186789,'NM_015425','POLR1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113015962,113051198,'NM_019014','POLR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',128320309,128332199,'NM_004805','POLR2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',25237225,25245063,'NM_000939','POMC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131692393,131738886,'NM_001083538','POTEE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130547577,130603265,'NM_001099771','POTEF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',132065737,132101469,'NR_033885','POTEKP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',104838400,104839903,'NM_006236','POU3F3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241037508,241044790,'NR_024014','PP14571'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',170149095,170202500,'NM_004792','PPIG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201443923,201462094,'NM_032472','PPIL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',44249503,44312115,'NM_177969','PPM1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27457564,27486000,'NM_177983','PPM1G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',28828129,28879310,'NM_002709','PPP1CB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',182558795,182690664,'NM_001080545','PPP1R1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241738574,241771112,'NM_002712','PPP1R7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',68259492,68333155,'NM_000945','PPP3R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',11212990,11236449,'NM_152391','PQLC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73308641,73313864,'NM_032319','PRADC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27207128,27211046,'NM_013388','PREB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',44398251,44440392,'NM_001042386','PREPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219395349,219404756,'NM_017431','PRKAG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',45732546,46268633,'NM_005400','PRKCE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',37331149,37397726,'NM_005813','PRKD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',179004386,179023730,'NM_001139517','PRKRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238139955,238140557,'NM_015893','PRLH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',127892465,127903292,'NM_000312','PROC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',68726457,68736212,'NM_138964','PROKR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',95303927,95320782,'NM_144707','PROM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',55362958,55365111,'NR_027258','PRORSD1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',153216352,153282221,'NM_017892','PRPF40A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',240629902,240631072,'NM_001080835','PRR21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233093416,233098669,'NM_001195129','PRSS56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113648030,113677148,'NM_012455','PSD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231629821,231745784,'NM_002807','PSMD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',161873031,161976472,'NM_005805','PSMD14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',53944707,54051481,'NM_014614','PSME4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86186815,86222791,'NM_017952','PTCD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208979800,209067476,'NM_005048','PTH2R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232281478,232286494,'NM_002823','PTMA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130830049,130849452,'NM_001142370','PTPN18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',120233676,120451507,'NM_002830','PTPN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219862588,219882539,'NM_002846','PTPRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24866639,24869755,'NM_001013663','PTRHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',20311933,20390625,'NM_015317','PUM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',61021051,61098869,'NM_144709','PUS10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',1614665,1727298,'NM_012293','PXDN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',37425256,37453969,'NM_012413','QPCT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',136005552,136199309,'NM_015361','R3HDM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',26110232,26213827,'NM_016131','RAB10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73154017,73193654,'NM_015470','RAB11FIP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238147703,238164508,'NM_022449','RAB17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',65167491,65210939,'NM_015543','RAB1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',135526304,135644749,'NM_012233','RAB3GAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130453704,130456781,'NM_032144','RAB6C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',114101286,114117445,'NM_007082','RABL2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',17555466,17563187,'NM_001099218','RAD51AP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',120726883,120768756,'NM_002881','RALB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238432925,238485494,'NM_005855','RAMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',108702368,108768699,'NM_006267','RANBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',173394560,173625866,'NM_001100397','RAPGEF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',204014436,204108303,'NM_203365','RAPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',33592445,33643302,'NM_015376','RASGRP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27857769,27966727,'NM_022128','RBKS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',151812973,151826635,'NM_198557','RBM43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238372126,238416190,'NM_001080504','RBM44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',178685427,178702628,'NM_152945','RBM45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',160836907,161058564,'NM_002897','RBMS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',18599469,18605440,'NM_020905','RDH14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86294630,86418288,'NM_001164732','REEP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',79201091,79204053,'NM_002909','REG1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',79165656,79168658,'NM_006507','REG1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',79216136,79219061,'NR_002714','REG1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',79237639,79240388,'NM_002580','REG3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',79106333,79109136,'NM_198448','REG3G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',60962255,61003682,'NM_002908','REL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219900374,219906143,'NM_001007089','RESP18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85422588,85435332,'NM_017750','RETSAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',99383369,99472912,'NM_016316','REV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',198143771,198248829,'NM_144629','RFTN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',101380254,101457597,'NM_001145664','RFX8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86998248,87094610,'NM_001024457','RGPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',87837834,87906401,'NM_001078170','RGPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',106387567,106451233,'NM_001144013','RGPD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',107809819,107875432,'NM_182588','RGPD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',109909254,109972552,'NM_005054','RGPD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',110705915,110771303,'NM_001123363','RGPD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',109909139,109972571,'NM_001164463','RGPD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',227408914,227572167,'NM_032276','RHBDD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',20510315,20512682,'NM_004040','RHOB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',46623370,46665331,'NM_012249','RHOQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',151974642,152042106,'NM_018151','RIF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86800924,86858675,'NM_022780','RMND5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',3570565,3583815,'NM_002936','RNASEH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',151032954,151052426,'NM_005168','RND3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86697050,86704511,'NM_001198952','RNF103'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86584063,86801756,'NM_001198954','RNF103-VPS24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',6974973,7101760,'NM_014746','RNF144A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',101258494,101291610,'NM_173647','RNF149'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85676347,85678342,'NM_016494','RNF181'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219236830,219245025,'NM_022453','RNF25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241156676,241166822,'NM_018226','RNPEPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',122004925,122005055,'NR_023343','RNU4ATAC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',11239228,11402162,'NM_004850','ROCK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',210575596,210594195,'NM_006916','RPE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',88772290,88831567,'NM_144563','RPIA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',54609862,54610482,'NR_002229','RPL23AP32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',114095772,114101185,'NR_024531','RPL23AP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',100985122,100989317,'NM_000993','RPL31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',217071764,217074433,'NM_000998','RPL37A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',154042097,154043568,'NM_019845','RPRM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',55313044,55316493,'NM_002954','RPS27A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',3600727,3606384,'NM_001011','RPS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219141921,219167243,'NM_005444','RQCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10180313,10188997,'NM_001034','RRM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',6935246,6955814,'NM_080657','RSAD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74506495,74521218,'NM_033046','RTKN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',55052830,55131238,'NM_020532','RTN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218607901,218663549,'NR_034176','RUFY4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233881047,233920440,'NM_000541','SAG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',128415260,128501339,'NM_001145928','SAP130'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',199842467,200044234,'NM_015265','SATB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233849110,233849388,'NR_003008','SCARNA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233862060,233862326,'NR_003006','SCARNA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',224169901,224175461,'NM_003469','SCG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238634303,238672793,'NM_016510','SCLY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',166553915,166638395,'NM_001165964','SCN1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',165858586,165957066,'NM_021007','SCN2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',165652275,165768823,'NM_001081677','SCN3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',166968328,167051727,'NM_002976','SCN7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',166759942,166940743,'NM_002977','SCN9A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',174968702,175002549,'NM_024583','SCRN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',119913888,119998498,'NM_002980','SCTR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',20264038,20288408,'NM_002997','SDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',192407276,192420251,'NM_004657','SDPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96889199,96899462,'NM_017789','SEMA4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74734900,74762693,'NM_004263','SEMA4F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',109657664,109729072,'NM_144710','SEPT10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241903953,241942114,'NM_004404','SEPT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',224548008,224612280,'NM_006216','SERPINE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',64712258,64734550,'NM_014755','SERTAD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',179674663,179837595,'NM_178123','SESTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',197964942,198008016,'NM_012433','SF3B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24143957,24152818,'NM_016047','SF3B14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',128175066,128177877,'NM_032740','SFT2D3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85737950,85749375,'NM_198843','SFTPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73022672,73152473,'NM_144579','SFXN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201099109,201153636,'NM_001160046','SGOL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',222997565,223131861,'NM_152386','SGPP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85515428,85517663,'NM_198482','SH2D6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',235525366,235629097,'NM_014521','SH3BP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',109112428,109619489,'NM_001099289','SH3RF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',208135,254068,'NM_001159597','SH3YL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',45085827,45090046,'NM_016932','SIX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',45022540,45026720,'NM_005413','SIX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218954995,218969861,'NM_000578','SLC11A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',230607933,230641959,'NM_152527','SLC16A14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',228258169,228290989,'NM_025243','SLC19A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',65069082,65104503,'NM_001193493','SLC1A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',113119904,113137871,'NM_005415','SLC20A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219734424,219743061,'NM_001144890','SLC23A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',172348160,172459059,'NM_003705','SLC25A12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27330943,27339464,'NM_003459','SLC30A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',32244413,32302685,'NM_017964','SLC30A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',114188402,114230870,'NM_025181','SLC35F5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',165462954,165520281,'NM_173512','SLC38A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',196229776,196310671,'NM_001127257','SLC39A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',44356100,44401466,'NM_000341','SLC3A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',190133560,190153782,'NM_014585','SLC40A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',162189090,162550032,'NM_001178015','SLC4A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27739841,27771351,'NM_018158','SLC4A1AP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',220200535,220214946,'NM_201574','SLC4A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74302068,74395660,'NM_021196','SLC4A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27275958,27288679,'NM_021095','SLC5A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',107969426,107996875,'NM_021815','SLC5A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',40192789,40510948,'NM_021097','SLC8A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',102602597,102694241,'NM_003048','SLC9A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',102456193,102516863,'NM_001011552','SLC9A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',216985381,217056019,'NM_014140','SMARCAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',17708559,17798577,'NM_001142286','SMC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',55629017,55698300,'NM_020463','SMEK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130625434,130655800,'NM_017951','SMPD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',88148413,88194017,'NM_198274','SMYD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73294873,73307863,'NM_006062','SMYD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',78035540,78035660,'NR_024342','SNAR-H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',241586927,241682316,'NM_001080437','SNED1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',69600680,69600807,'NR_003705','SNORA36C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',206735196,206735328,'NR_002590','SNORA41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',61497882,61498016,'NR_003707','SNORA70B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',165252398,165252533,'NR_033309','SNORA70F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232028754,232028891,'NR_002921','SNORA75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',10504290,10504426,'NR_028374','SNORA80B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202866018,202866102,'NR_003031','SNORD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202864284,202864396,'NR_003694','SNORD11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232029398,232029478,'NR_002908','SNORD20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',206734849,206734919,'NR_002589','SNORD51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',29003436,29003512,'NR_002741','SNORD53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202849398,202849486,'NR_003058','SNORD70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',232033322,232033397,'NR_004398','SNORD82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',101255829,101255943,'NR_003070','SNORD89'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',28990031,28990120,'NR_003074','SNORD92'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',86216503,86216640,'NR_004378','SNORD94'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96303800,96335034,'NM_014014','SNRNP200'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',69974578,69985872,'NM_006857','SNRNP27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70362009,70374373,'NM_003096','SNRPG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',936553,1350391,'NM_018968','SNTG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27446892,27453498,'NM_014748','SNX17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',46779602,46843431,'NM_014011','SOCS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',39062193,39201108,'NM_005633','SOS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',5750249,5758968,'NM_003108','SOX11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',230989114,231081105,'NM_001206701','SP100'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',230741889,230793071,'NM_080424','SP110'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',230798688,230886174,'NM_007237','SP140'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',230900137,230976689,'NM_138402','SP140L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',174479432,174538676,'NM_001172712','SP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',171280102,171282744,'NM_001003845','SP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',174908066,174910514,'NM_001145250','SP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',213857360,214983470,'NM_024532','SPAG16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',32142183,32236210,'NM_014946','SPAST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',231569082,231580243,'NM_139073','SPATA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',200879229,201055231,'NM_001100424','SPATS2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',169435646,169455190,'NM_020675','SPC25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',28887203,28926979,'NM_182756','SPDYA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',220033777,220039828,'NM_001173476','SPEG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',228552913,228754605,'NM_030623','SPHKAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',138975819,139047277,'NM_001001664','SPOPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234624084,234650515,'NM_006944','SPP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',72968019,72972797,'NM_003124','SPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',65391488,65447435,'NM_001128210','SPRED2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',54639034,54742949,'NM_178313','SPTBN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',45469322,45691937,'NM_018079','SRBD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',31603159,31659544,'NM_000348','SRD5A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',38824244,38832140,'NM_001031684','SRSF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',170363634,170376821,'NM_003142','SSB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',182464716,182503709,'NM_001130445','SSFA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85919782,85948304,'NM_001042437','ST3GAL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',106784487,106869042,'NM_001142351','ST6GAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',152681560,152740752,'NM_005843','STAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73909550,73947803,'NM_201647','STAMBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96214329,96238300,'NM_020151','STARD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',191542006,191587221,'NM_007315','STAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',191602546,191724231,'NM_003151','STAT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',119697853,119739697,'NM_001008410','STEAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',220170839,220189417,'NM_052902','STK11IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219818444,219823303,'NR_026909','STK16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',196706551,196744581,'NM_004226','STK17B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',242083104,242096707,'NM_006374','STK25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219244992,219275684,'NM_015690','STK36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',168518775,168812351,'NM_013233','STK39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',48610811,48679158,'NM_001198595','STON1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',48649662,48760252,'NM_172311','STON1-GTF2A1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202024636,202053819,'NM_018571','STRADB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',36918344,37047119,'NM_003162','STRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',84504157,84540097,'NM_003849','SUCLG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',108271526,108292803,'NM_001056','SULT1C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',108305125,108336686,'NR_037191','SULT1C2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',108230082,108248239,'NM_001008743','SULT1C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',108360852,108370702,'NM_006588','SULT1C4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',37248466,37269194,'NM_001032377','SULT6B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202779147,202811567,'NM_003352','SUMO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27727182,27739953,'NM_014860','SUPT7L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',75131670,75280153,'NM_015727','TACR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',9901021,9991996,'NM_005680','TAF1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',159533391,159797416,'NM_033394','TANC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',161701711,161800928,'NM_004180','TANK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',100990121,101134278,'NM_001102426','TBC1D8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',161980865,161989819,'NM_006593','TBR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27225448,27229323,'NM_175769','TCF23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85214093,85391022,'NM_031283','TCF7L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',94900958,94906295,'NM_144705','TEKT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74126957,74188810,'NM_144993','TET3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',71066575,71075509,'NM_144582','TEX261'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',121690633,121759248,'NM_014553','TFCP2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',188037202,188127464,'NM_006287','TFPI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70527919,70634655,'NM_001099691','TGFA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',105249971,105312580,'NM_001142621','TGFBRAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85398651,85408930,'NM_001206840','TGOLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',43311478,43676617,'NM_001083953','THADA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',242172492,242225398,'NM_015963','THAP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',88250928,88267271,'NM_001244676','THNSL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',137464931,138151757,'NM_001080427','THSD7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',39816703,39859920,'NR_028102','THUMPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70290079,70329283,'NM_022037','TIA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',233121022,233123470,'NM_145702','TIGD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131044888,131058204,'NR_027313','TISP43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',171555578,171725656,'NM_012290','TLK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74595103,74597783,'NM_016170','TLX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',227935117,227952266,'NM_024795','TM4SF20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218847160,218865524,'NM_022152','TMBIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',192522991,192767889,'NM_016192','TMEFF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',96279672,96295478,'NM_001193304','TMEM127'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',97739232,97978786,'NM_015348','TMEM131'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85679180,85683333,'NR_033179','TMEM150A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',134929799,135193041,'NM_030923','TMEM163'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',216654833,216675751,'NM_001142310','TMEM169'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',62580859,62587108,'NM_198276','TMEM17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',120153212,120156164,'NM_030577','TMEM177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',39746538,39798607,'NM_152390','TMEM178'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',657972,667439,'NM_152834','TMEM18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',102744921,102800570,'NM_144632','TMEM182'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',120691516,120697454,'NM_024121','TMEM185B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',191079863,191107713,'NM_001142645','TMEM194B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',220116988,220123561,'NM_001005209','TMEM198'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27109277,27118069,'NM_017727','TMEM214'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',202193151,202215655,'NM_152388','TMEM237'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',119905915,119912566,'NM_183240','TMEM37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',112529270,112593366,'NM_032824','TMEM87B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',84986273,84987310,'NM_021103','TMSB10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',151922351,151944808,'NM_007115','TNFAIP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',217432426,217433027,'NM_003284','TNP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218372756,218517041,'NM_022648','TNS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24153806,24160705,'NM_001206802','TP53I3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',1396239,1525506,'NM_175719','TPO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',73810464,73818025,'NM_016058','TPRKB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238893923,238974280,'NM_015650','TRAF3IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',201950174,202024564,'NM_015049','TRAK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',12774448,12800309,'NR_027303','TRIB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',95621492,95629196,'NM_138800','TRIM43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',95506441,95514206,'NM_001164464','TRIM43B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27358800,27383811,'NM_187841','TRIM54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',230340173,230494899,'NM_004238','TRIP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',28926191,28946679,'NM_017910','TRMT61B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234490781,234592905,'NM_024080','TRPM8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',98980155,99124469,'NM_182911','TSGA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',122229590,122241898,'NM_004622','TSN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',54333818,54336913,'NM_001003937','TSPYL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',3171747,3360660,'NM_003310','TSSC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',3362452,3462349,'NM_016030','TTC15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',166438698,166518594,'NM_024753','TTC21B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',32706590,32899622,'NM_017735','TTC27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',178187271,178191940,'NM_152275','TTC30A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',178123126,178125770,'NM_152517','TTC30B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74563707,74575199,'NM_022492','TTC31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',19959994,19965225,'NM_001008237','TTC32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',47021816,47156779,'NM_020458','TTC7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219283811,219328382,'NM_014640','TTLL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',179098963,179380395,'NM_133378','TTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131950049,131956977,'NM_080386','TUBA3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',130665787,130672504,'NM_207312','TUBA3E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219823244,219826882,'NM_006000','TUBA4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219826208,219845154,'NR_003063','TUBA4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',239460355,239460830,'NM_057179','TWIST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',99301918,99319292,'NM_005783','TXNDC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',200501878,200528704,'NR_004862','TYW5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',181553586,181636395,'NM_006357','UBE2E3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238540325,238616162,'NM_080678','UBE2F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',238540325,238672793,'NR_037904','UBE2F-SCLY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',170392263,170648885,'NM_172070','UBR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',24016879,24077197,'NM_181713','UBXN2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',136215658,136259103,'NM_014607','UBXN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27383768,27384634,'NM_003353','UCN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',128565223,128669719,'NM_020120','UGGT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',63922517,63972200,'NM_006759','UGP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234333657,234346684,'NM_000463','UGT1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234209861,234346690,'NM_019075','UGT1A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234302511,234346684,'NM_019093','UGT1A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234292176,234346684,'NM_007120','UGT1A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234286376,234346684,'NM_019078','UGT1A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234266250,234346690,'NM_001072','UGT1A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234255322,234346684,'NM_019077','UGT1A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234191029,234346684,'NM_019076','UGT1A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234245282,234346690,'NM_021027','UGT1A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',98591473,98601409,'NM_014044','UNC50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',210344961,210572269,'NM_032504','UNC80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',45254983,45335584,'NR_033831','UNQ6975'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',158666627,158700912,'NM_173355','UPP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',61268093,61551353,'NM_014709','USP34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219023217,219141328,'NM_020935','USP37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85696793,85729917,'NM_006590','USP39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',234048903,234134606,'NM_018218','USP40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',106076190,106177227,'NM_025076','UXS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85665041,85674022,'NM_006634','VAMP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',85658124,85662667,'NM_003761','VAMP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',70981227,71014083,'NM_012476','VAX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',218992081,219022492,'NM_007127','VIL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',36777336,36840322,'NM_001177972','VIT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',63973170,64099718,'NM_001005739','VPS54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',58127280,58240559,'NM_001130480','VRK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',17585287,17701187,'NM_003385','VSNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',98070026,98295842,'NM_144992','VWA3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',214984705,215148898,'NM_001080500','VWC2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',114057699,114073083,'NR_024077','WASH2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74539034,74541526,'NM_012477','WBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',224448308,224518296,'NM_020830','WDFY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',63202038,63669371,'NM_015910','WDPCP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',203453567,203485194,'NM_018256','WDR12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',128209423,128285231,'NM_001006623','WDR33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',19973509,20053365,'NM_020779','WDR35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',28971036,29024584,'NM_015131','WDR43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',74502392,74506390,'NM_032118','WDR54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',228444570,228497270,'NM_178821','WDR69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',190014403,190048509,'NM_032168','WDR75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',68210784,68238160,'NM_138458','WDR92'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',159800549,159851349,'NM_001128213','WDSUB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',175132547,175207553,'NM_003387','WIPF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219453498,219466895,'NM_025216','WNT10A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219432789,219447198,'NM_006522','WNT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',131834534,131838201,'NM_001077637','WTH3DI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',31410691,31491115,'NM_000379','XDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',167453242,167824507,'NM_152381','XIRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',61558572,61618922,'NM_003400','XPO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',216682264,216779261,'NM_021141','XRCC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',32356461,32385162,'NM_032312','YIPF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',30223253,30236903,'NM_016061','YPEL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',135438742,135498718,'NM_025052','YSK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',9641556,9688557,'NM_006826','YWHAQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',173648810,173800119,'NM_133646','ZAK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',97696462,97722755,'NM_001079','ZAP70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',187059129,187082332,'NM_018471','ZC3H15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',112749648,112814111,'NM_198581','ZC3H6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',112689910,112729135,'NM_032494','ZC3H8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',206847767,206887393,'NM_020923','ZDBF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',144858411,144994428,'NM_001171653','ZEB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',144993650,144994936,'NR_040248','ZEB2-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219779781,219782614,'NM_138802','ZFAND2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',43303044,43307249,'NM_006887','ZFP36L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',219210883,219232505,'NM_001105537','ZNF142'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',95194909,95213791,'NM_021088','ZNF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',180014955,180135560,'NM_001113398','ZNF385B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27659396,27699467,'NM_032434','ZNF512'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',27453601,27457115,'NM_144631','ZNF513'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',95177126,95188990,'NM_032788','ZNF514'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',71412396,71515697,'NM_014497','ZNF638'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',185171337,185512459,'NM_194250','ZNF804A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',135674043,136005276,'NM_032143','ZRANB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2',187400451,187422142,'NM_182521','ZSWIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',25223378,25319618,'NM_015600','ABHD12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61963009,61964785,'NM_080622','ABHD16B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43903766,43919455,'NM_005469','ACOT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',24934872,24987616,'NM_032501','ACSS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32927988,32979430,'NM_018677','ACSS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36810510,36834503,'NM_024855','ACTR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42681576,42713790,'NM_000022','ADA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3596619,3610738,'NM_153202','ADAM33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36643251,36650518,'NM_001018082','ADIG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48940289,48980934,'NM_181442','ADNP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',4149277,4177659,'NM_000678','ADRA1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60311421,60317313,'NM_007002','ADRM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32331731,32354876,'NM_000687','AHCY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',801296,844960,'NM_015985','ANGPT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',9963696,9985407,'NM_022096','ANKRD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56467831,56523355,'NM_153360','APCDD1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61374609,61391587,'NM_175609','ARFGAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',46971681,47086637,'NM_006420','ARFGEF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61800438,61809799,'NM_003224','ARFRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36663990,36712709,'NM_001164431','ARHGAP40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32311831,32320809,'NM_001672','ASIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30409807,30424013,'NM_001164603','ASXL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57037127,57040817,'NM_001001977','ATP5E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',49646720,49818315,'NM_006045','ATP9A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3399664,3544550,'NM_139322','ATRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',54377851,54400758,'NM_198433','AURKA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3011201,3013370,'NM_000490','AVP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47682889,47763828,'NM_004776','B4GALT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',17622319,17664517,'NM_001159495','BANF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',51993485,52120711,'NM_003657','BCAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48844873,48927121,'NM_017843','BCAS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29715921,29774317,'NM_001191','BCL2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',17422549,17460013,'NM_001195','BFSP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61107775,61108832,'NM_080606','BHLHE23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61337720,61342299,'NM_139317','BIRC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',35579232,35589747,'NM_006698','BLCAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',6696744,6708910,'NM_001200','BMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',55177215,55275114,'NM_001719','BMP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36365965,36399319,'NM_001725','BPI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31287462,31294776,'NM_016583','BPIFA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31219620,31232884,'NM_080574','BPIFA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31268795,31279220,'NM_001042439','BPIFA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31245071,31261929,'NR_026760','BPIFA4P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31334601,31361345,'NM_033197','BPIFB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31059067,31075176,'NM_025227','BPIFB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31106890,31125095,'NM_182658','BPIFB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31132978,31163218,'NM_182519','BPIFB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31083114,31095514,'NM_174897','BPIFB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',11846564,11855243,'NM_014962','BTBD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',9443004,9459171,'NM_001199897','C20orf103'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',54533191,54534615,'NM_001012971','C20orf106'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',54541708,54544983,'NM_001013646','C20orf107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',54367389,54377125,'NM_080821','C20orf108'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61039885,61050272,'NM_017896','C20orf11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42257994,42272960,'NM_016470','C20orf111'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30494522,30534949,'NM_080616','C20orf112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34937983,34956046,'NM_080628','C20orf118'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44602991,44612620,'NM_080721','C20orf123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',35163042,35241388,'NM_152503','C20orf132'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31717964,31719992,'NM_001024675','C20orf134'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2743656,2744476,'NM_080739','C20orf141'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31713752,31715382,'NM_080825','C20orf144'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60418687,60436024,'NM_080833','C20orf151'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34019942,34082036,'NM_080834','C20orf152'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30061905,30083645,'NM_080625','C20orf160'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43948536,43949645,'NM_080608','C20orf165'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60558104,60578416,'NM_178463','C20orf166'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60551882,60559213,'NR_033263','C20orf166-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33578212,33580895,'NM_001145350','C20orf173'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57948838,57957097,'NM_001190827','C20orf177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3177947,3336255,'NM_001009984','C20orf194'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61654816,61658479,'NM_024059','C20orf195'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5679042,5792559,'NM_152504','C20orf196'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',58064374,58081403,'NM_173644','C20orf197'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60898249,60902390,'NM_018270','C20orf20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62185176,62186156,'NM_001007125','C20orf201'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1132097,1136918,'NM_001009612','C20orf202'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30683087,30703444,'NM_182584','C20orf203'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34667550,34674374,'NM_018840','C20orf24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',19985289,20100977,'NM_001167816','C20orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3682157,3696452,'NM_001039140','C20orf27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3749170,3753954,'NM_018347','C20orf29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',24891579,24921425,'NM_020531','C20orf3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5028483,5041733,'NM_014145','C20orf30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34287860,34308267,'NM_015511','C20orf4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',54477053,54527349,'NM_016407','C20orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1109214,1113117,'NM_018354','C20orf46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',688723,697228,'NM_033409','C20orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',13713671,13747067,'NR_029377','C20orf7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',17897761,17919762,'NM_052865','C20orf72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18742369,18743035,'NM_178483','C20orf79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56159388,56169589,'NM_178456','C20orf85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',10363950,10552027,'NM_001009608','C20orf94'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',199503,219419,'NM_080571','C20orf96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60397080,60415734,'NM_031215','CABLES2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',54420574,54467803,'NM_001164116','CASS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31613831,31701498,'NM_005093','CBFA2T2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',54005902,54013419,'NM_080617','CBLN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44180312,44191791,'NM_001250','CD40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23007992,23014977,'NM_012072','CD93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3724400,3734761,'NM_021873','CDC25B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44235782,44313741,'NM_021248','CDH22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57966865,58021563,'NM_177980','CDH26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',59260953,59945694,'NM_001794','CDH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31410305,31452998,'NM_016408','CDK5RAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5055406,5126533,'NM_003818','CDS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48240782,48242619,'NM_005194','CEBPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3712497,3715337,'NM_001810','CENPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33506636,33563217,'NM_007186','CEP250'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',39464583,39680547,'NM_032221','CHD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5839973,5854005,'NM_001819','CHGB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31862770,31905834,'NM_176812','CHMP4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61445108,61463139,'NM_000744','CHRNA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61394982,61432729,'NM_020882','COL20A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60918858,60942956,'NM_001853','COL9A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30754153,30795475,'NM_001099339','COMMD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29689351,29696461,'NM_032609','COX4I2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33677366,33716292,'NM_152925','CPNE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2722714,2729292,'NM_001184699','CPXM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5934738,5968697,'NM_019095','CRLS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',19963011,19984690,'NM_016652','CRNKL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47096244,47146893,'NM_001316','CSE1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',411337,472482,'NM_177560','CSNK2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18073742,18117031,'NR_028402','CSRP2BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23676189,23679574,'NM_001898','CST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23379040,23381482,'NM_130794','CST11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23752403,23755312,'NM_001322','CST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23562293,23566574,'NM_000099','CST3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23614276,23617662,'NM_001899','CST4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23804571,23808380,'NM_001900','CST5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',24877865,24888564,'NM_003650','CST7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23419765,23424655,'NM_005492','CST8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23531046,23534610,'NM_001008693','CST9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23493369,23497386,'NM_080610','CST9L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',54400980,54412989,'NM_001324','CSTF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23368321,23373567,'NM_138283','CSTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23447782,23470655,'NR_001279','CSTT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',55505629,55533560,'NM_080618','CTCFL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',35755847,35933934,'NM_030877','CTNNBL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43952997,43960865,'NM_000308','CTSA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57003636,57015704,'NM_001336','CTSZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',52203394,52223923,'NM_000782','CYP24A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43468234,43472664,'NM_001197140','DBNDD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3119011,3133295,'NM_023935','DDRGK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47269238,47294021,'NM_017895','DDX27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29309127,29311096,'NM_001037730','DEFB115'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29354675,29360049,'NM_001037731','DEFB116'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29420081,29425366,'NM_054112','DEFB118'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29440431,29442067,'NM_153323','DEFB119'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29456308,29464302,'NM_001171832','DEFB121'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29472902,29480638,'NR_002577','DEFB122'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29492071,29501721,'NM_153324','DEFB123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29516969,29524477,'NM_001037500','DEFB124'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',16350,25296,'NM_153325','DEFB125'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',71251,74392,'NM_030931','DEFB126'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',86185,87804,'NM_139074','DEFB127'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',116526,118264,'NM_001037732','DEFB128'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',155898,158527,'NM_080831','DEFB129'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',186376,189736,'NM_207469','DEFB132'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',37024394,37101780,'NR_033905','DHX35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60989011,61039749,'NM_080797','DIDO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34523555,34590454,'NM_183006','DLGAP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61996898,62037828,'NM_025219','DNAJC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30831318,30860823,'NM_175850','DNMT3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43853982,43873473,'NM_052951','DNTTIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',52525672,52701117,'NM_018431','DOK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60946920,60947988,'NM_080750','DPH3P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48984811,49008467,'NM_003859','DPM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34813607,34835568,'NM_024918','DSN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',17498598,17536652,'NM_006870','DSTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18516555,18692560,'NM_080820','DTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29912530,29921672,'NM_177991','DUSP15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32567864,32592423,'NM_014183','DYNLRB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18312010,18395829,'NM_001099407','DZANK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31726952,31737871,'NM_005225','E2F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2621523,2688754,'NM_001110514','EBF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33166820,33198822,'NR_026728','EDEM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57308893,57334442,'NM_207034','EDN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61589809,61600949,'NM_001958','EEF1A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32139775,32163746,'NM_003908','EIF2S2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33330138,33336008,'NM_002212','EIF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44428096,44468678,'NM_133171','ELMO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',39422019,39428912,'NM_052846','EMILIN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',25124338,25155360,'NM_001247','ENTPD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34206075,34284135,'NM_012156','EPB41L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33593191,33608819,'NM_015966','ERGIC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',13642968,13713532,'NM_016649','ESF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44956669,45250899,'NM_172110','EYA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',773284,774922,'NM_031424','FAM110A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2763970,2769332,'NM_022760','FAM113A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',25983249,26015553,'NR_026713','FAM182A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',25692101,25724878,'NR_027061','FAM182B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48636052,48686833,'NM_080829','FAM65C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33336947,33343639,'NM_178468','FAM83C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36988368,37015117,'NM_030919','FAM83D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3075164,3088532,'NM_021826','FASTKD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33609920,33658898,'NR_024377','FER1L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',6003491,6052191,'NM_017671','FERMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42368610,42373303,'NM_001080472','FITM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1297620,1321816,'NM_001199786','FKBP1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1238554,1321816,'NR_037661','FKBP1A-SDCBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61355774,61363412,'NR_024389','FLJ16779'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',24128402,24153224,'NR_040102','FLJ33581'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',14252638,14266313,'NM_198391','FLRT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',22509641,22513101,'NM_021784','FOXA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29895763,29897081,'NM_004118','FOXS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',28225539,28247668,'NR_003579','FRG1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60471947,60484421,'NM_080473','GATA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',54499954,54534388,'NM_080615','GCNT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42309321,42342427,'NM_024034','GDAP1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33484562,33489441,'NM_000557','GDF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3587938,3592046,'NM_145762','GFRA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32896183,32924322,'NM_178026','GGT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23913689,23915512,'NM_178312','GGTLC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',35312903,35318713,'NM_001184731','GHRH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',25336322,25377191,'NM_021067','GINS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61689398,61728825,'NM_012384','GMEB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56848189,56919645,'NM_016592','GNAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56827367,56859353,'NR_002785','GNAS-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2972267,2974391,'NM_178332','GNRH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5473079,5539672,'NM_019593','GPCPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32979896,33007262,'NM_000178','GSS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60191475,60211205,'NM_015666','GTPBP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',41788214,41789056,'NM_176791','GTSF1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23293020,23301683,'NM_022482','GZF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',7811630,7869093,'NM_017545','HAO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61203088,61206182,'NR_003244','HAR1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61197289,61204116,'NR_003245','HAR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30103651,30153318,'NM_002110','HCK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29565901,29591257,'NM_178582','HM13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32885038,32885926,'NR_002165','HMGB3P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42417854,42491725,'NM_175914','HNF4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60223411,60228718,'NM_007232','HRH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3661316,3681758,'NM_001197327','HSPA12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18716614,18722626,'NR_026884','HSPC072'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29656746,29657978,'NM_002165','ID1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2587040,2592843,'NM_174855','IDH3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',41652992,41709276,'NM_016004','IFT52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',20296764,20299592,'NM_002196','INSM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',13150417,13229297,'NM_080826','ISM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32414722,32562858,'NM_031483','ITCH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3138055,3152506,'NM_033453','ITPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',10566331,10602694,'NM_000214','JAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42238870,42249632,'NM_175913','JPH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47421911,47532588,'NM_004975','KCNB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',49053599,49073082,'NM_002237','KCNG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42807901,42814368,'NM_022358','KCNK15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61507985,61574437,'NM_172106','KCNQ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43154363,43163167,'NM_002251','KCNS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34839258,34921690,'NM_199181','KIAA0889'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36272320,36322588,'NM_001029864','KIAA1755'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',16295487,16502079,'NM_001199866','KIF16B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30329114,30386472,'NM_004798','KIF3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',41569733,41603949,'NM_032107','L3MBTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60317515,60375763,'NM_005560','LAMA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36408298,36439067,'NM_004139','LBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61838421,61840904,'NM_017806','LIME1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29537241,29539038,'NR_024358','LINC00028'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61136013,61138825,'NR_028295','LINC00029'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62136140,62141759,'NR_027686','LINC00176'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',22489191,22507280,'NR_001558','LINC00261'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62392181,62405151,'NR_040415','LINC00266-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60764823,60768418,'NR_024470','LOC100127888'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18738371,18758839,'NM_001242671','LOC100128496'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',19170945,19213240,'NR_024564','LOC100130264'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',9952459,10148154,'NR_040710','LOC100131208'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',45380652,45382905,'NR_024594','LOC100131496'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3035556,3079513,'NR_038395','LOC100134015'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',25938434,25950430,'NR_004846','LOC100134868'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61139807,61155660,'NR_033369','LOC100144597'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',21982727,22003292,'NR_038394','LOC100270679'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18722692,18724709,'NR_026885','LOC100270804'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',35738725,35745050,'NR_040021','LOC100287792'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1702010,1708392,'NR_037142','LOC100289473'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',13166066,13168334,'NR_040043','LOC100505536'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42273135,42288081,'NR_038338','LOC100505783'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43025853,43028513,'NR_038341','LOC100505826'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57634913,57636739,'NR_040513','LOC100506384'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1253986,1307379,'NR_040047','LOC100507495'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5360602,5374394,'NR_038239','LOC100507629'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56523840,56628355,'NR_034147','LOC149773'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5427217,5433242,'NR_015406','LOC149837'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30638941,30660355,'NR_034152','LOC149950'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23053704,23061273,'NR_034149','LOC200261'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',46422060,46432788,'NR_026958','LOC284749'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48342663,48364863,'NR_034124','LOC284751'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',22328970,22349281,'NR_027090','LOC284788'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',25069433,25076629,'NR_027093','LOC284798'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',26115654,26137869,'NR_040095','LOC284801'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',37275837,37286805,'NR_027124','LOC339568'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',11195306,11202031,'NR_038972','LOC339593'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18496072,18498203,'NR_015432','LOC388789'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36482652,36497432,'NR_027241','LOC388796'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61111179,61186868,'NR_033370','LOC63930'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5399841,5405780,'NR_029405','LOC643406'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34096953,34102296,'NR_027451','LOC647979'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',4121736,4124600,'NR_033917','LOC728228'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42718506,42733794,'NR_034104','LOC79015'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',39402973,39422636,'NM_022896','LPIN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5969424,5982694,'NM_152611','LRRN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60130911,60143829,'NM_144703','LSM14B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',13924145,15981841,'NM_080676','MACROD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',14812898,14858142,'NR_037841','MACROD2-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',38747930,38751290,'NM_005461','MAFB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',35351464,35379077,'NM_022077','MANBAL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32598352,32611810,'NM_181509','MAP1LC3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30871359,30901872,'NM_012325','MAPRE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43355500,43370381,'NM_030592','MATN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3775445,3804770,'NM_001206491','MAVS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',54257194,54258278,'NM_019888','MC3R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5879297,5923831,'NM_032485','MCM8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18307692,18310127,'NR_034167','MGC44328'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60561957,60562028,'NR_029780','MIR1-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3846140,3846218,'NR_029519','MIR103A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3846148,3846210,'NR_031722','MIR103B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61280296,61280383,'NR_029670','MIR124-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',59961996,59962113,'NR_031658','MIR1257'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2581422,2581488,'NR_031699','MIR1292'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60572563,60572665,'NR_029676','MIR133A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62043261,62043341,'NR_031735','MIR1914'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56826064,56826144,'NR_029844','MIR296'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56826675,56826763,'NR_030580','MIR298'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18399258,18399335,'NR_036160','MIR3192'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29658649,29658704,'NR_036161','MIR3193'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',49502848,49502921,'NR_036162','MIR3194'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61340575,61340639,'NR_036163','MIR3196'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',45229015,45229107,'NR_037410','MIR3616'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42470173,42470257,'NR_037419','MIR3646'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',55329964,55330054,'NR_036219','MIR4325'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61388604,61388663,'NR_036220','MIR4326'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',55903855,55903906,'NR_039757','MIR4532'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',58486563,58486634,'NR_039758','MIR4533'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32100585,32100657,'NR_039911','MIR4755'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',52118353,52118431,'NR_039913','MIR4756'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60340923,60341011,'NR_039915','MIR4758'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33041839,33041961,'NR_030223','MIR499'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33041863,33041936,'NR_039912','MIR499A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32517790,32517884,'NR_030374','MIR644'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48635729,48635823,'NR_030375','MIR645'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',58316926,58317020,'NR_030376','MIR646'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62044427,62044523,'NR_030377','MIR647'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',26136821,26136914,'NR_030386','MIR663'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62021221,62021338,'NR_030637','MIR941-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62021333,62021450,'NR_030638','MIR941-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62021333,62021447,'NR_030639','MIR941-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62021336,62021450,'NR_040032','MIR941-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',10333832,10360570,'NM_018848','MKKS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44525705,44527338,'NR_026640','MKRN7P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',28251244,28251799,'NR_045115','MLLT10P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33278116,33328218,'NM_006690','MMP24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44070953,44078607,'NM_004994','MMP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',49008769,49011227,'NM_014484','MOCS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2974674,2976896,'NM_030811','MRPS26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',55366902,55368285,'NM_001190472','MTRNR2L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',41729122,41778536,'NM_002466','MYBL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33007364,33053901,'NM_020884','MYH7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34603310,34611640,'NM_181526','MYL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29870838,29886161,'NM_033118','MYLK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62266270,62344050,'NM_004535','MYT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',19945933,19962273,'NM_016100','NAA20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',25541572,25552648,'NM_152667','NANP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23303155,23350156,'NM_022080','NAPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',45564007,45719028,'NM_006534','NCOA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44123032,44151987,'NM_020967','NCOA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32766238,32877094,'NM_014071','NCOA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',26032051,26042677,'NR_003678','NCOR1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34713582,34807955,'NM_022477','NDRG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31708553,31725925,'NM_031231','NECAB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43950673,43953308,'NM_080749','NEURL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',49441171,49592665,'NM_173091','NFATC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33720023,33750701,'NM_001198989','NFS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',25381337,25514153,'NM_025176','NINL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61342580,61356337,'NM_152864','NKAIN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',21439659,21442664,'NM_002509','NKX2-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',21324004,21326047,'NM_033176','NKX2-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',35583020,35585504,'NM_005386','NNAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2581177,2587039,'NM_006392','NOP56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62207626,62208628,'NM_005286','NPBWR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56697592,56724307,'NM_001204873','NPEPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',275369,283512,'NM_024958','NRSN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1370806,1396337,'NM_016143','NSFL1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60810633,60864568,'NM_002531','NTSR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',23279372,23283408,'NM_013248','NXT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60906621,60915797,'NM_007346','OGFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62186812,62202440,'NM_001200019','OPRL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60246974,60304664,'NM_014835','OSBPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',16677002,16680809,'NM_020157','OTOR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',17952795,17986521,'NM_021220','OVOL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3000265,3001162,'NM_000915','OXT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42972116,43001376,'NM_001124756','PABPC1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',9466036,9767687,'NM_177990','PAK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3818462,3852502,'NM_153640','PANK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48781487,48803685,'NM_032521','PARD6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',21634296,21644620,'NM_006192','PAX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43996723,44010069,'NM_022104','PCIF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',55569542,55574919,'NM_002591','PCK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62357491,62378023,'NM_018257','PCMTD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5043598,5055268,'NM_002592','PCNA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5048231,5048615,'NR_028370','PCNA-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',17155596,17413222,'NM_001201529','PCSK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29996418,30003544,'NM_030815','PDRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1907401,1922394,'NM_001190900','PDYN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18066498,18071812,'NM_001164811','PET117'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',52257908,52269899,'NM_002623','PFDN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57585958,57856161,'NM_001199505','PHACTR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33823336,34001702,'NM_016436','PHF20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43236953,43238599,'NM_002638','PI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43478120,43488298,'NM_015937','PIGT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32612006,32728750,'NM_080476','PIGU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42593849,42681092,'NM_181805','PKIG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30243967,30259207,'NM_002657','PLAGL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',8061295,8813547,'NM_182734','PLCB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',8997700,9409462,'NM_001172646','PLCB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',39199574,39237771,'NM_182811','PLCG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',21054623,21175258,'NM_001163022','PLK1S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43960665,43973040,'NM_001242921','PLTP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',55656857,55718437,'NM_020182','PMEPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30259356,30269387,'NM_172236','POFUT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18396032,18413286,'NM_006466','POLR3F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61622576,61623968,'NM_024299','PPDPF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36867761,36985081,'NM_015568','PPP1R16B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57945281,57948747,'NM_006242','PPP1R3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56241238,56317901,'NR_003505','PPP4R1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',46674199,46877827,'NM_020820','PREX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61659882,61669551,'NM_033405','PRIC285'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',4650555,4657106,'NM_012409','PRND'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',4614796,4630234,'NM_000311','PRNP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',4659927,4669314,'NR_024269','PRNT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33223434,33228826,'NM_006404','PROCR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5230685,5243015,'NM_144773','PROKR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3091272,3097207,'NM_014731','ProSAPiP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62082874,62134897,'NM_012469','PRPF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29598845,29599680,'NR_003677','PSIMCT-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60145185,60151869,'NM_002792','PSMA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1041905,1096426,'NM_178578','PSMF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47553817,47618114,'NM_000961','PTGIS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61630219,61639151,'NM_005975','PTK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48560297,48634493,'NM_002827','PTPN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2792840,2967315,'NM_002836','PTPRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',40134805,41251971,'NM_133170','PTPRT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31754210,31771797,'NM_007238','PXMP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',25176705,25226648,'NM_002862','PYGB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42399039,42413289,'NM_178491','R3HDML'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56318176,56375969,'NM_020673','RAB22A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1154763,1183145,'NM_001136566','RAD21L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',55359551,55386926,'NM_003610','RAE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',20318271,20641266,'NM_020343','RALGAPA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36534899,36640918,'NM_020336','RALGAPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32045118,32134652,'NM_016732','RALY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',4708669,4752291,'NM_014737','RASSF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18415187,18425887,'NM_006606','RBBP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',336708,359610,'NM_031229','RBCK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',35059591,35157824,'NM_002895','RBL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33700260,33716292,'NM_152838','RBM12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',55399860,55417792,'NM_183425','RBM38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33754944,33793672,'NR_040724','RBM39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43368904,43379878,'NM_014276','RBPJL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29526765,29536369,'NM_014012','REM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62174978,62181289,'NM_005873','RGS19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42813858,42872393,'NM_001205317','RIMS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',19818209,19931103,'NM_018993','RIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47986320,48003829,'NM_018683','RNF114'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3860068,3944216,'NM_001134338','RNF24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33750645,33752316,'NM_080748','ROMO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',35240869,35303439,'NM_002951','RPN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36095361,36154180,'NM_021215','RPRD1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60395515,60396971,'NM_001024','RPS21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',17542322,17610928,'NM_001042576','RRBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',887095,930907,'NM_001040007','RSPO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61759606,61798050,'NM_032957','RTEL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61759606,61800495,'NR_037882','RTEL1-TNFRSF6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',49833989,49852455,'NM_020436','SALL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62075909,62081439,'NM_080621','SAMD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34953640,35013660,'NM_015474','SAMHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34004952,34006695,'NM_016558','SCAND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',590239,604823,'NM_033129','SCRT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43387342,43410478,'NM_002999','SDC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1238554,1242317,'NM_015685','SDCBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18436187,18490050,'NM_006363','SEC23B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',13778049,13919262,'NM_025229','SEL1L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43269051,43271828,'NM_003007','SEMG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43283423,43286513,'NM_003008','SEMG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42561314,42584140,'NM_006811','SERINC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',41621048,41647687,'NM_170693','SGK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3615616,3635775,'NM_023068','SIGLEC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1823424,1868540,'NM_080792','SIRPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1525985,1548689,'NM_001135844','SIRPB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1403235,1420233,'NM_001122962','SIRPB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1462896,1486343,'NM_178460','SIRPD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1557797,1586425,'NM_001039508','SIRPG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34674335,34707972,'NM_032214','SLA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44091227,44122196,'NM_020708','SLC12A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44619868,44713507,'NM_022829','SLC13A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61054443,61070394,'NM_022082','SLC17A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',4781001,4938939,'NM_203327','SLC23A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',19141289,19651541,'NM_020689','SLC24A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44771685,44798392,'NM_030777','SLC2A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61841654,61845847,'NM_020062','SLC2A4RG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36786518,36791429,'NM_080552','SLC32A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44411583,44426471,'NM_173073','SLC35C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3156062,3166835,'NM_001174090','SLC4A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47862656,47942179,'NM_015266','SLC9A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60744241,60774092,'NM_016354','SLCO4A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57041594,57051296,'NM_016045','SLMO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57037127,57051296,'NR_037930','SLMO2-ATP5E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43314292,43316620,'NM_003064','SLPI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',4077449,4116369,'NM_175839','SMOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48032919,48038827,'NM_005985','SNAI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',10147476,10236066,'NM_130811','SNAP25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36508710,36512978,'NR_003239','SNHG11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36510139,36510275,'NR_002972','SNORA39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2583712,2583844,'NR_002981','SNORA51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36511425,36511561,'NR_002986','SNORA60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36489362,36489500,'NR_002911','SNORA71A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36487256,36487392,'NR_002910','SNORA71B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36491723,36491861,'NR_003017','SNORA71C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36495918,36496056,'NR_003018','SNORA71D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2582857,2582932,'NR_003078','SNORD110'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2391597,2391693,'NR_003684','SNORD119'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47330626,47330716,'NR_003030','SNORD12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47330256,47330359,'NR_003695','SNORD12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47328888,47328967,'NR_002433','SNORD12C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',17891352,17891589,'NR_003045','SNORD17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2585269,2585340,'NR_002739','SNORD56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2585584,2585656,'NR_002738','SNORD57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2584742,2584828,'NR_004399','SNORD86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',1194959,1237971,'NM_014723','SNPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2390280,2399499,'NM_003091','SNRPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',16658608,16670417,'NM_198220','SNRPB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31459423,31495359,'NM_003098','SNTA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43895876,43905321,'NM_033421','SNX21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',17870243,17897490,'NM_152227','SNX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',254238,258867,'NM_006943','SOX12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62149522,62151423,'NM_018419','SOX18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33667222,33672379,'NM_003116','SPAG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47953335,47965487,'NM_006038','SPATA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3706150,3710102,'NM_015417','SPEF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43602678,43609479,'NM_020398','SPINLW1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43598332,43609479,'NM_001198986','SPINLW1-WFDC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43574514,43577678,'NM_006652','SPINT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43784401,43787749,'NM_178455','SPINT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',55338237,55352456,'NM_198265','SPO11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',12937626,13095411,'NM_018327','SPTLC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',35407970,35467235,'NM_198291','SRC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61642606,61649301,'NM_080823','SRMS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',41519917,41525658,'NR_034009','SRSF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',575267,581890,'NM_080725','SRXN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60152216,60190961,'NM_198935','SS18L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',22964056,22965314,'NM_001052','SSTR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47163282,47238311,'NM_017454','STAU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2030527,2077198,'NM_080836','STK35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43028533,43142007,'NM_006282','STK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61741504,61755224,'NM_015894','STMN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56659714,56687988,'NR_037943','STX16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56659714,56724307,'NR_037945','STX16-NPEPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',45719556,45848767,'NM_001161841','SULF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',51924446,51925655,'NR_002189','SUMO1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31035241,31055900,'NM_080675','SUN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57872012,57940604,'NM_014258','SYCP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',24397834,24595167,'NM_024893','SYNDIG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43423990,43431276,'NM_001197129','SYS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43425222,43472664,'NR_003189','SYS1-DBNDD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',59983248,60074261,'NM_003185','TAF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',13318035,13567583,'NM_017714','TASP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',364123,391187,'NM_144628','TBC1D20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62164453,62174144,'NM_003195','TCEA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',532636,538910,'NM_004609','TCF15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',60942911,60963560,'NM_006602','TCFL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',54637764,54647745,'NM_003222','TFAP2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34635289,34655769,'NM_001199514','TGIF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',34636370,34674374,'NM_001199535','TGIF2-C20ORF24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36190277,36227114,'NM_004613','TGM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2224612,2269725,'NM_003245','TGM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2309553,2361399,'NM_198994','TGM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56989705,57003583,'NM_198976','TH1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',22974269,22978301,'NM_000361','THBD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30160969,30218722,'NM_014742','TM9SF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2465252,2570430,'NM_080751','TMC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48173680,48203742,'NM_199129','TMEM189'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48131067,48203742,'NM_199203','TMEM189-UBE2V1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2744975,2745804,'NM_001167670','TMEM239'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',7909715,7948393,'NM_021156','TMX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61798447,61800495,'NM_003823','TNFRSF6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43885261,43889360,'NM_003279','TNNC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43004184,43022528,'NM_006809','TOMM34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',39090875,39186540,'NM_003286','TOP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42007949,42131668,'NM_001098798','TOX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',32755808,32764898,'NM_021202','TP53INP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44746410,44751683,'NM_033550','TP53RK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43435933,43440371,'NM_014477','TP53TG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61967024,61993342,'NM_001243891','TPD52L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29790564,29853264,'NM_012112','TPX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',309307,326203,'NM_021158','TRIB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',5866485,5879173,'NM_015939','TRMT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33053867,33144279,'NM_015638','TRPC4AP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',51022352,51545276,'NM_173485','TSHZ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30240609,30241824,'NR_002781','TSPY26P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',36044836,36095247,'NM_014657','TTI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',29922165,29994519,'NM_001008409','TTLL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42537960,42556658,'NM_024331','TTPAL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57027703,57035104,'NM_030773','TUBB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43874661,43879003,'NM_007019','UBE2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',48131067,48163117,'NM_001032288','UBE2V1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',3036218,3088540,'NM_014948','UBOX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62041625,62052971,'NM_001193379','UCKL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62055180,62058782,'NR_027287','UCKL1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',33353782,33463359,'NM_001184977','UQCC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',56397580,56459562,'NM_001195677','VAPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2769372,2795378,'NM_022575','VPS16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',35964912,36007161,'NM_080607','VSTM2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',25007194,25010767,'NM_199425','VSX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43691798,43693245,'NM_080753','WFDC10A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43746703,43767072,'NM_172131','WFDC10B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43710615,43732292,'NM_147197','WFDC11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43185480,43186520,'NM_080869','WFDC12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43764068,43770870,'NM_172005','WFDC13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43531807,43543586,'NM_006103','WFDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43836253,43853954,'NM_080614','WFDC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43171506,43177227,'NM_145652','WFDC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43596249,43601548,'NM_080827','WFDC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43613204,43641379,'NM_181510','WFDC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43669991,43693321,'NM_147198','WFDC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42777298,42789866,'NM_003881','WISP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',30019465,30049917,'NM_001011718','XKR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',21231941,21318463,'NM_012255','XRN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61297226,61317983,'NM_017798','YTHDF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',42947757,42970575,'NM_139323','YWHAB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',55612307,55629038,'NM_001160418','ZBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61845464,61907300,'NM_025224','ZBTB46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',226203,228963,'NM_033089','ZCCHC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',50201223,50241931,'NM_018197','ZFP64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',61809823,61837938,'NM_001195654','ZGPAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',39240502,39362153,'NM_015035','ZHX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',45271787,45418881,'NM_012408','ZMYND8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',18217120,18245640,'NM_003434','ZNF133'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',51617016,51633043,'NM_006526','ZNF217'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44563113,44575601,'NM_199441','ZNF334'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',44010698,44034240,'NM_022095','ZNF335'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',25602850,25625469,'NM_015655','ZNF337'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',31783468,31843736,'NM_032819','ZNF341'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',2410466,2437778,'NM_024325','ZNF343'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',62058498,62071662,'NM_020713','ZNF512B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',57199469,57267562,'NM_178457','ZNF831'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47295845,47328163,'NM_021035','ZNFX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',47328121,47339202,'NR_003605','ZNFX1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43943254,43947312,'NM_080603','ZSWIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr20',43919626,43941176,'NM_080752','ZSWIM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',14567990,14585577,'NR_003088','ABCC13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42513076,42590423,'NM_207174','ABCG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',27130476,27139599,'NM_006988','ADAMTS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',27212101,27261310,'NM_007038','ADAMTS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45318920,45470906,'NM_001112','ADARB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44109543,44231903,'NM_020132','AGPAT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44530190,44542530,'NM_000383','AIRE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',13332357,13412442,'NR_026916','ANKRD30BP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',26174731,26465317,'NM_001136131','APP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',26018661,26029836,'NM_001685','ATP5J'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',34197626,34210028,'NM_001697','ATP5O'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',39951123,39956685,'NM_033173','B3GALT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',41461597,41570394,'NM_012105','BACE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',29599430,29656088,'NR_027655','BACH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',10079666,10120808,'NM_001187','BAGE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',10042712,10120796,'NM_182482','BAGE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',10042712,10120796,'NM_182481','BAGE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',10042712,10120796,'NM_181704','BAGE4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',10042712,10120796,'NM_182484','BAGE5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',39479273,39607582,'NM_018963','BRWD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',39607730,39608758,'NR_033800','BRWD1-IT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',17887838,17907139,'NM_006806','BTG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',32687312,32688137,'NR_026845','C21orf119'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42395312,42401713,'NR_027243','C21orf128'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',14137324,14142556,'NR_026755','C21orf15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44573254,44583713,'NM_004928','C21orf2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44377921,44390033,'NM_198155','C21orf33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',17733078,17743374,'NR_037585','C21orf37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33066281,33091886,'NR_024622','C21orf49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33459645,33464411,'NR_024102','C21orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46405489,46428801,'NM_001142854','C21orf56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46545474,46568213,'NM_058180','C21orf58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',32895854,32906789,'NM_021254','C21orf59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33084854,33107923,'NM_001162496','C21orf62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',32706622,32809568,'NM_058187','C21orf63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45179068,45184256,'NR_027129','C21orf67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',29374743,29470073,'NM_020152','C21orf7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',25876957,25877407,'NR_024092','C21orf71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',14237966,14274636,'NR_027270','C21orf81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',39890944,39906619,'NR_026542','C21orf88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44761525,44763288,'NR_026548','C21orf90'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',18083154,18113574,'NM_001100420','C21orf91'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',18071591,18086697,'NR_038871','C21orf91-OT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',35332102,35333593,'NR_026812','C21orf96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42178287,42247068,'NM_015500','C2CD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',36364154,36367332,'NM_001757','CBR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',36429132,36440730,'NM_001236','CBR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',43346369,43369109,'NM_000071','CBS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',29350518,29367881,'NM_006585','CCT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',36679558,36710995,'NM_005441','CHAF1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',18540062,18561558,'NM_001204174','CHODL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',18129859,18179796,'NR_024354','CHODL-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',36754789,36774258,'NM_001146079','CLDN14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30460111,30460842,'NM_012131','CLDN17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30508194,30510340,'NM_199328','CLDN8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',34963557,35012389,'NM_053277','CLIC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45649524,45758062,'NM_130445','COL18A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45664058,45669413,'NR_027498','COL18A1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46226090,46249391,'NM_001848','COL6A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46342460,46374147,'NM_058175','COL6A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',43462209,43465982,'NM_000394','CRYAA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33883517,33936030,'NM_145858','CRYZL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44018258,44020687,'NM_000100','CSTB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',17807094,17864300,'NM_001338','CXADR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',26760398,26867452,'NM_052954','CYYR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',23655296,23679027,'NR_040254','D21S2088E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46703289,46791548,'NM_206890','DIP2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33782107,33785660,'NM_017833','DNAJC28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44490650,44506527,'NM_175867','DNMT3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33872080,33882884,'NM_017613','DONSON'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',36458708,36588442,'NM_005128','DOPEY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',40306212,41140909,'NM_001389','DSCAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',40676880,40679155,'NR_038899','DSCAM-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',38500119,38502608,'NR_027695','DSCR10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',37517595,37561703,'NM_006052','DSCR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',38348182,38415324,'NM_005867','DSCR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',37300732,37313828,'NM_018962','DSCR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',38415414,38450475,'NR_026838','DSCR8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',37502824,37514763,'NR_026719','DSCR9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',37713076,37809549,'NM_130436','DYRK1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',38673819,38792298,'NM_001136155','ERG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',39099718,39118748,'NM_005239','ETS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',34669618,34683322,'NM_058182','FAM165B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45184382,45221316,'NM_058190','FAM207A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',41610530,41651524,'NM_058186','FAM3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46381121,46399909,'NM_206965','FTCD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',26029128,26066642,'NM_001197297','GABPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33798107,33837065,'NM_001136005','GART'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33035520,33066040,'NM_013329','GCFC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33022295,33027095,'NR_038880','GCFC1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',29831124,30234153,'NM_175611','GRIK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30042364,30058196,'NR_027021','GRIK1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',29890230,29924938,'NR_033368','GRIK1-AS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',37045058,37275134,'NM_001242785','HLCS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',39636110,39642917,'NM_004965','HMGN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',43773499,43903802,'NM_007031','HSF2BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',14665307,14677380,'NM_006948','HSPA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',32167498,32298248,'NM_014586','HUNK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44471149,44485262,'NM_015259','ICOSLG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33619083,33653998,'NM_000629','IFNAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33524100,33556932,'NM_000874','IFNAR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33697071,33731698,'NM_005534','IFNGR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',40039203,40095893,'NM_001080444','IGSF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33560541,33591390,'NM_000628','IL10RB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45130296,45173181,'NM_001127491','ITGB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33936653,34183479,'NM_003024','ITSN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',25933459,26009106,'NM_021219','JAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',34740857,34753772,'NM_001127669','KCNE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',34658192,34665310,'NM_172201','KCNE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',38566298,38595616,'NM_170737','KCNJ15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',37918656,38210566,'NM_002240','KCNJ6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44783495,44784506,'NM_198691','KRTAP10-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44881700,44882800,'NM_181688','KRTAP10-10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44890758,44891994,'NM_198692','KRTAP10-11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44941514,44942387,'NM_198699','KRTAP10-12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44794745,44795816,'NM_198693','KRTAP10-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44802333,44803071,'NM_198696','KRTAP10-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44818033,44819415,'NM_198687','KRTAP10-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44823991,44824909,'NM_198694','KRTAP10-5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44835576,44836814,'NM_198688','KRTAP10-6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44844924,44846519,'NM_198689','KRTAP10-7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44856423,44857299,'NM_198695','KRTAP10-8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44871467,44872723,'NM_198690','KRTAP10-9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',31174834,31175745,'NM_175858','KRTAP11-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44925918,44926506,'NM_181686','KRTAP12-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44910533,44911272,'NM_181684','KRTAP12-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44902276,44902686,'NM_198697','KRTAP12-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44898557,44899004,'NM_198698','KRTAP12-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30690262,30691009,'NM_181599','KRTAP13-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30665579,30666428,'NM_181621','KRTAP13-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30719581,30720101,'NM_181622','KRTAP13-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30724464,30724947,'NM_181600','KRTAP13-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30734516,30734969,'NM_181623','KRTAP15-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30774234,30774507,'NM_181607','KRTAP19-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30781379,30781538,'NM_181608','KRTAP19-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30785652,30786146,'NM_181609','KRTAP19-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30791044,30791299,'NM_181610','KRTAP19-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30796060,30796279,'NM_181611','KRTAP19-5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30835724,30836052,'NM_181612','KRTAP19-6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30855287,30855479,'NM_181614','KRTAP19-7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',31332348,31332666,'NM_001099219','KRTAP19-8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30910644,30910815,'NM_181615','KRTAP20-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30929453,30929651,'NM_181616','KRTAP20-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30937053,30937326,'NM_001128077','KRTAP20-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30914816,30915040,'NR_023342','KRTAP20-4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',31049327,31049567,'NM_181619','KRTAP21-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',31041139,31041391,'NM_181617','KRTAP21-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',31012713,31012966,'NM_001164435','KRTAP21-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30895310,30895457,'NM_181620','KRTAP22-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30884294,30884587,'NM_001164434','KRTAP22-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30642587,30642795,'NM_181624','KRTAP23-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30575497,30577147,'NM_001085455','KRTAP24-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30583333,30583703,'NM_001128598','KRTAP25-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30613320,30614478,'NM_203405','KRTAP26-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30631201,30631883,'NM_001077711','KRTAP27-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30907875,30908094,'NM_181602','KRTAP6-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30892875,30893064,'NM_181604','KRTAP6-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30886629,30887245,'NM_181605','KRTAP6-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',31123228,31123922,'NM_181606','KRTAP7-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',31106885,31107441,'NM_175857','KRTAP8-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',39699639,39737998,'NM_152505','LCA5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',41972530,41990565,'NR_024367','LINC00111'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42009664,42010811,'NR_024028','LINC00112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',28016568,28045423,'NR_024357','LINC00113'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',39032818,39067271,'NR_027065','LINC00114'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',25680003,25725884,'NR_024027','LINC00158'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',32374664,32380479,'NR_038033','LINC00159'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',35017974,35031349,'NR_024351','LINC00160'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',28833510,28834548,'NR_026552','LINC00161'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45243554,45249070,'NR_024089','LINC00162'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45234206,45238429,'NR_033840','LINC00163'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',29487671,29582397,'NR_027072','LINC00189'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30503339,30505972,'NR_038855','LINC00307'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',22392806,22410718,'NR_038400','LINC00308'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',34474847,34477416,'NR_027267','LINC00310'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',43706401,43722531,'NR_026863','LINC00313'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',28307552,28317399,'NR_027246','LINC00314'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',22017483,22031510,'NR_038872','LINC00317'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',43694331,43698199,'NR_026960','LINC00319'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',21036783,21097297,'NR_024090','LINC00320'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',41435296,41441861,'NR_024100','LINC00323'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',16364712,16903965,'NR_027790','LINC00478'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42004748,42009004,'NR_027272','LINC00479'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',14403005,14501125,'NM_198996','LIPI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46072182,46080761,'NR_038876','LOC100129027'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',36363809,36420808,'NR_040084','LOC100133286'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33559806,33560435,'NR_038974','LOC100288432'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45165377,45174023,'NR_038311','LOC100505746'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',34225385,34265357,'NR_038883','LOC100506334'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',35039991,35042534,'NR_038886','LOC100506385'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',36425934,36450476,'NR_038892','LOC100506428'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44050066,44056876,'NR_026961','LOC284837'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45532394,45541697,'NR_026943','LOC642852'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44699820,44703167,'NM_030891','LRRC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46433465,46473166,'NM_001145436','LSS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',29222336,29287148,'NM_015565','LTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46479475,46529664,'NM_003906','MCM3AP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46473585,46496032,'NR_002776','MCM3AP-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',16884427,16884516,'NR_029694','MIR125B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',25868162,25868227,'NR_030784','MIR155'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',25856327,25869351,'NR_001458','MIR155HG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',13700575,13700652,'NR_036164','MIR3156-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',41461353,41461426,'NR_036167','MIR3197'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',1679119,1679299,'NR_037421','MIR3648'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',1678867,1678928,'NR_037458','MIR3687'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',30669482,30669567,'NR_036221','MIR4327'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',27248150,27248233,'NR_039916','MIR4759'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',40506148,40506228,'NR_039917','MIR4760'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',36014882,36014976,'NR_030414','MIR802'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',16833279,16833360,'NR_029514','MIR99A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',16834018,16834102,'NR_029480','MIRLET7C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',32562400,32573247,'NM_018944','MIS18A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',36614356,36670814,'NM_015358','MORC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',32585994,32606470,'NM_178817','MRAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',25879838,25901672,'NM_017446','MRPL39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',34367692,34437204,'NM_032476','MRPS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',41719972,41753011,'NM_001178046','MX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',41655819,41702739,'NM_002463','MX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',29166383,29179564,'NM_182749','N6AMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',21292503,21834388,'NM_004540','NCAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',43186446,43202842,'NM_021075','NDUFV3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',15255426,15358997,'NM_003489','NRIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33364319,33366598,'NM_138983','OLIG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33320085,33323373,'NM_005806','OLIG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46094302,46186796,'NM_001130141','PCBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46568463,46690110,'NM_006031','PCNT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',40161216,40223192,'NM_006198','PCP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42946930,43068687,'NM_002606','PDE9A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',43963405,44006616,'NM_003681','PDXK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44544357,44571684,'NM_002626','PFKL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',37359533,37367328,'NR_028352','PIGP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',43267711,43326757,'NM_004571','PKNOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',41469027,41479036,'NM_182832','PLAC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45508270,45532239,'NR_004858','POFUT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',13904368,13935777,'NM_174981','POTED'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42091453,42172651,'NM_001040424','PRDM15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46879934,46909583,'NM_206962','PRMT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',39469253,39477310,'NM_003720','PSMG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45093927,45118246,'NM_004339','PTTG1IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44351635,44375491,'NM_005049','PWP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',14510336,14522564,'NM_144770','RBM11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',34810653,34908615,'NM_203417','RCAN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42032597,42060318,'NM_020639','RIPK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44033845,44048411,'NM_003683','RRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',43903859,43940388,'NM_015056','RRP1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42765665,42789470,'NM_080860','RSPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',35081967,35343465,'NM_001754','RUNX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',29299950,29313556,'NM_016940','RWDD2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46842958,46849463,'NM_006272','S100B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',14779419,14840535,'NM_022136','SAMSN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',31965183,32026302,'NM_020706','SCAF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',36337851,36354481,'NM_001007259','SETD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',39745649,39809303,'NM_007341','SH3BGR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',43658826,43671430,'NM_173354','SIK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',36993860,37044380,'NM_005069','SIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45759056,45786813,'NM_194255','SLC19A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42792810,42874619,'NM_018964','SLC37A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',34367739,34400431,'NM_006933','SLC5A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',32671366,32671502,'NR_002996','SNORA80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',31953805,31963114,'NM_000454','SOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33837219,33871682,'NM_138927','SON'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45315298,45317554,'NR_027292','SSR4P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45049959,45062472,'NM_006936','SUMO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',32922939,33022222,'NM_203446','SYNJ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',32869021,32879716,'NM_144659','TCP10L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',1536537,1597942,'NR_038327','TEKT4P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42655459,42659713,'NM_003225','TFF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42639535,42644277,'NM_005423','TFF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42604845,42608775,'NM_003226','TFF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',31412606,31853161,'NM_003253','TIAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',33743317,33774186,'NM_006134','TMEM50B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',18563303,18697841,'NM_002772','TMPRSS15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',41758347,41801955,'NM_005656','TMPRSS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42675053,42689269,'NM_032405','TMPRSS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',9928613,10012791,'NM_199259','TPTE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44256633,44350860,'NM_003274','TRAPPC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44597911,44687392,'NM_003307','TRPM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',44742202,44955923,'NM_144991','TSPEAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',37377116,37497278,'NM_003316','TTC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',43386134,43400757,'NM_006758','U2AF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42697039,42740859,'NM_018961','UBASH3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',45012922,45046179,'NM_001202489','UBE2G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42356136,42436174,'NM_001199527','UMODL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',32605200,32687183,'NM_014825','URB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',29318808,29348678,'NM_006447','USP16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',16024366,16174248,'NM_013396','USP25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',43142404,43172747,'NM_018669','WDR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',39681561,39691685,'NM_001146218','WRB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',46530694,46542093,'NM_058181','YBEY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42280008,42303565,'NM_001098403','ZNF295'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr21',42315181,42318129,'NR_027273','ZNF295-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41418070,41446820,'NM_017436','A4GALT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40195074,40254939,'NM_001098','ACO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49523517,49530593,'NM_001097','ACR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49266877,49271732,'NM_024866','ADM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23153529,23168325,'NM_000675','ADORA2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',24290860,24455258,'NM_005160','ADRBK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39072449,39092521,'NM_001123378','ADSL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19651446,19665649,'NR_027464','AIFM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48682856,48698110,'NM_024105','ALG12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36556807,36570299,'NR_036556','ANKRD54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',15514598,15536430,'NR_040115','ANKRD62P1-PARP4P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28053668,28114572,'NM_001127','AP1B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30847963,30859456,'NR_040114','AP1B1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37683472,37718729,'NM_001193289','APOBEC3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37708350,37718729,'NM_004900','APOBEC3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37740210,37744771,'NM_014508','APOBEC3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37747063,37759202,'NM_152426','APOBEC3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37766618,37770374,'NM_001006666','APOBEC3F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37802955,37813694,'NM_021822','APOBEC3G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37823174,37830018,'NM_001166003','APOBEC3H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34979062,34993523,'NM_001136540','APOL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34952200,34965635,'NM_030882','APOL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34866316,34886923,'NR_027835','APOL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34915121,34930825,'NM_030643','APOL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34443864,34455475,'NM_030642','APOL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34374369,34394402,'NM_030641','APOL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41522475,41583352,'NM_001142293','ARFGAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',43527101,43637328,'NM_001198726','ARHGAP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49408047,49413467,'NM_000487','ARSA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18337401,18384309,'NM_001670','ARVCF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28514596,28564293,'NM_032204','ASCC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',25155279,25170978,'NM_020437','ASPHD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38246514,38248637,'NM_182810','ATF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41365752,41366551,'NM_001165877','ATP5L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16454902,16491588,'NM_001039367','ATP6V1E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44446341,44619851,'NM_013236','ATXN10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36810841,36836622,'NM_025045','BAIAP2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16501484,16591989,'NM_015367','BCL2L13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21852551,21990224,'NM_021574','BCR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19787304,19806575,'NR_037566','BCRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23358881,23379327,'NR_024494','BCRP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16596905,16636808,'NM_001244572','BID'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41836697,41855662,'NM_001197','BIK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40678136,40684892,'NR_024355','BK250D10.8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',31139833,31183373,'NM_174932','BPIFC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48552940,48604456,'NM_014577','BRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35906151,35914276,'NM_031910','C1QTNF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23266407,23281275,'NM_031444','C22orf13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22435207,22438050,'NM_182520','C22orf15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36669002,36679600,'NM_032561','C22orf23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30659506,30671336,'NM_015372','C22orf24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18388630,18433447,'NM_152906','C22orf25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44825002,44828688,'NM_018280','C22orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',31113561,31138274,'NM_014306','C22orf28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18213660,18222371,'NM_024627','C22orf29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',27784659,27787907,'NM_015370','C22orf31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40805640,40810234,'NM_033318','C22orf32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35717105,35733823,'NM_001163857','C22orf33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48399293,48437194,'NR_026997','C22orf34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23311590,23319035,'NM_207644','C22orf36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17808409,17815755,'NM_001166242','C22orf39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',45018573,45024857,'NM_207327','C22orf40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49336406,49348194,'NM_001123225','C22orf41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30875518,30885243,'NM_001010859','C22orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22280638,22304508,'NM_016449','C22orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23155177,23220783,'NR_028484','C22orf45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40416492,40424086,'NM_001142964','C22orf46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22737819,22904596,'NM_001199281','CABIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28446343,28457820,'NM_182527','CABP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38296703,38415687,'NM_021096','CACNA1I'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35286861,35428636,'NM_006078','CACNG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36216345,36245156,'NM_014550','CARD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37590193,37598204,'NM_014292','CBX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37856724,37878484,'NM_175709','CBX7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37382603,37399801,'NM_015373','CBY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20317085,20321616,'NM_152612','CCDC116'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',27498661,27515283,'NM_173510','CCDC117'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40526623,40552249,'NM_024821','CCDC134'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29082626,29102818,'NM_001017437','CCDC157'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',15451647,15453700,'NM_014406','CCT8L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36286416,36295356,'NM_152243','CDC42EP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17847413,17888135,'NM_001178011','CDC45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16040191,16060545,'NM_177405','CECR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16336627,16413845,'NM_031413','CECR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16117749,16127623,'NR_038398','CECR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',15998409,16020169,'NM_033070','CECR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16020278,16026335,'NR_024483','CECR5-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',15977188,15982257,'NM_001163079','CECR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',15897459,15919682,'NR_015352','CECR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',45135394,45311731,'NM_014246','CELSR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40664686,40673094,'NM_024053','CENPM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',45458970,45512816,'NM_022766','CERK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22031792,22054313,'NR_037839','CES5AP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39955459,39966881,'NM_138481','CHADL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22438020,22440141,'NM_213720','CHCHD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',27413730,27467822,'NM_007194','CHEK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49364252,49368294,'NM_005198','CHKB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49354155,49368294,'NR_027928','CHKB-CPT1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17890546,17892860,'NM_001130861','CLDN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17546986,17659239,'NM_001835','CLTCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',45069703,45071221,'NR_024009','CN5H6.4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18330069,18337498,'NM_007310','COMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49354155,49363760,'NM_152246','CPT1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48698286,48707190,'NM_024324','CRELD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19601713,19638037,'NM_005207','CRKL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',25347927,25356636,'NM_001886','CRYBA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',25325361,25343991,'NM_001887','CRYBB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23945611,23957836,'NM_000496','CRYBB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',24174053,24187645,'NR_033734','CRYBB2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23925824,23933324,'NM_004076','CRYBB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40286959,40302616,'NM_014460','CSDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35639620,35666425,'NM_000395','CSF2RB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37016642,37043359,'NM_152221','CSNK1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41343789,41372939,'NM_001129819','CYB5R3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40852444,40856827,'NM_000106','CYP2D6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40866157,40870519,'NR_002570','CYP2D7P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36008440,36041335,'NM_013385','CYTH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22643553,22652019,'NM_001355','DDT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22639025,22644748,'NM_001084393','DDTL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37209388,37232291,'NM_001098504','DDX17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30480008,30541977,'NM_001007188','DEPDC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22506689,22511199,'NM_001135751','DERL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17390136,17391063,'NR_026651','DGCR10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17413674,17415888,'NR_024157','DGCR11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17497791,17512190,'NM_022719','DGCR14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17403794,17489967,'NR_033674','DGCR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17338010,17362142,'NR_002733','DGCR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17273735,17279601,'NM_005675','DGCR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18681760,18687628,'NM_033257','DGCR6L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18447754,18479400,'NM_022720','DGCR8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17385346,17387761,'NR_024159','DGCR9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37244899,37296135,'NM_007068','DMC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39585499,39588076,'NM_145174','DNAJB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37504458,37520107,'NM_005740','DNAL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30125538,30160172,'NM_004147','DRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29388038,29393872,'NM_152511','DUSP18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',42255956,42539550,'NM_198856','EFCAB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35236842,35255223,'NM_003753','EIF3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36575324,36614735,'NM_001242923','EIF3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30165344,30215874,'NM_001164502','EIF4ENIF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36093945,36153451,'NM_052906','ELFN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',27931952,27985586,'NM_133455','EMID1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38468994,38619740,'NM_152512','ENTHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39818559,39906027,'NM_001429','EP300'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',27993997,28016672,'NM_001163287','EWSR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40800200,40805388,'NM_001002034','FAM109B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49092963,49100010,'NM_001001794','FAM116B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44083744,44116500,'NM_001104595','FAM118A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',47263951,47533750,'NM_001082967','FAM19A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38720898,38755989,'NM_138435','FAM83F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44277382,44340245,'NM_006485','FBLN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',31200706,31224818,'NM_012179','FBXO7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21934953,21937186,'NR_033408','FBXW4P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19686210,19687561,'NR_027052','FLJ39582'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16892150,16900734,'NR_024417','FLJ41941'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',139254,183917,'NR_033856','FLJ43315'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',46395455,46405982,'NR_033377','FLJ46257'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35213178,35233036,'NM_024955','FOXRED2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',15822826,15869112,'NM_001037814','GAB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29280623,29290876,'NM_004861','GAL3ST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36549334,36551448,'NM_003614','GALR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28032996,28038774,'NM_006478','GAS2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29011106,29015616,'NM_001037666','GATSL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36533857,36542852,'NM_014291','GCAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36334426,36359517,'NM_013365','GGA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23309717,23354972,'NM_013430','GGT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17141201,17159474,'NR_003267','GGT3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22945621,22971110,'NM_001099781','GGT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21318781,21320368,'NM_199127','GGTLC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21742668,21797221,'NM_002073','GNAZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18155933,18222462,'NM_053004','GNB1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18091065,18092297,'NM_000407','GP1BB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',45401321,45454352,'NM_015124','GRAMD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38627031,38697330,'NM_004810','GRAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17516503,17517796,'NM_005315','GSC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22706138,22714284,'NM_000853','GSTT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22652313,22656106,'NM_000854','GSTT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22629600,22633368,'NM_001080843','GSTT2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22670594,22677258,'NR_003081','GSTTP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22715937,22731899,'NR_003082','GSTTP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37431752,37459538,'NM_004286','GTPBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',45071301,45105371,'NM_016426','GTSE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22310674,22389610,'NR_024448','GUSBP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36531059,36533389,'NM_005318','H1F0'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49025739,49031961,'NM_032019','HDAC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20101692,20135750,'NM_015094','HIC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17698223,17799219,'NM_003325','HIRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',33983444,34021800,'NR_027780','HMGXB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34107059,34120207,'NM_002133','HMOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28806452,28903062,'NM_152510','HORMAD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',25177445,25209820,'NM_022081','HPS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',27468042,27483496,'NM_172002','HSCB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',15688363,15690225,'NR_003607','HSFY1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35484191,35494020,'NM_001177702','IFT27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22245312,22252495,'NM_020070','IGLL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',24044223,24046193,'NR_029395','IGLL3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21559959,21568013,'NM_001178126','IGLL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',15945850,15976584,'NM_014339','IL17RA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48775068,48793182,'NM_001001694','IL17REL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35851825,35875908,'NM_000878','IL2RB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29848960,29860683,'NM_001002837','INPP5J'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',33792129,33813380,'NM_001008494','ISX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37411493,37426405,'NM_014876','JOSD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37152278,37169979,'NM_004981','KCNJ4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35777724,35789376,'NM_024681','KCTD17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37194028,37207583,'NM_016657','KDELR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',43966786,43987011,'NM_015264','KIAA0930'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',42970889,43040064,'NM_001099294','KIAA1644'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23753940,23923415,'NM_001145206','KIAA1671'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49333327,49336318,'NM_138433','KLHDC7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19125805,19180170,'NR_033825','KLHL22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',27799065,27894321,'NM_032045','KREMEN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39931258,39957221,'NM_031488','L3MBTL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',31999061,32646416,'NM_004737','LARGE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',43267113,43272669,'NM_032287','LDOC1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36401558,36405755,'NM_002305','LGALS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36296198,36305970,'NM_006498','LGALS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28966441,28972796,'NM_002309','LIF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29974347,30006066,'NM_016733','LIMK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',43343883,43346993,'NR_028410','LINC00207'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',43380871,43399963,'NR_044991','LINC00229'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49288241,49293001,'NM_033200','LMF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23828383,23838659,'NR_038941','LOC100128531'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',47648585,47680202,'NR_038944','LOC100128946'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38758281,38762527,'NR_039988','LOC100130899'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40816882,40851298,'NR_034118','LOC100132273'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49368320,49369221,'NR_021492','LOC100144603'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44814450,44819412,'NR_027036','LOC100271722'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',32450971,32476803,'NR_038949','LOC100506195'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35691234,35694159,'NR_038954','LOC100506241'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38158110,38163079,'NR_040535','LOC100506472'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',43908302,43927129,'NR_038957','LOC100506714'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17933652,17934362,'NR_024381','LOC150185'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18573854,18576060,'NR_026919','LOC150197'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44828389,44833066,'NR_027034','LOC150381'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18566252,18572441,'NR_038460','LOC284865'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22565896,22571117,'NR_038911','LOC284889'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',47313375,47321863,'NR_038917','LOC284933'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',31102650,31110329,'NR_038918','LOC339666'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',46119984,46147955,'NR_038922','LOC339685'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18516108,18517431,'NM_001243537','LOC388849'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40995702,41000812,'NR_036498','LOC388906'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22703116,22704043,'NM_001144931','LOC391322'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19730248,19748457,'NR_027006','LOC400891'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37070615,37124877,'NR_002821','LOC400927'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37304070,37382580,'NM_001013647','LOC646851'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21231755,21239007,'NR_027426','LOC648691'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18705589,18730461,'NR_038388','LOC729444'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44781159,44785321,'NR_027240','LOC730668'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48557541,48559962,'NR_026993','LOC90834'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20982462,21007324,'NR_027293','LOC96610'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',24077384,24107544,'NM_001135772','LRP5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19666557,19683326,'NM_006767','LZTR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36927884,36942463,'NM_001161574','MAFF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20453318,20551970,'NM_138957','MAPK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49044268,49050906,'NM_002751','MAPK11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49033457,49042216,'NM_002969','MAPK12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49388427,49396845,'NM_016431','MAPK8IP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34332756,34343330,'NM_005368','MB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41858155,41869347,'NM_014507','MCAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39405127,39408764,'NM_005297','MCHR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34126115,34150495,'NM_006739','MCM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19191885,19271919,'NM_015889','MED15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40425463,40525405,'NM_152513','MEI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36195046,36212371,'NM_001166343','MFNG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38213174,38218145,'NM_001098270','MGAT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19692495,19698576,'NR_003608','MGC16703'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',25383445,25402440,'NR_033319','MIAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16650415,16887325,'NM_015241','MICAL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36632100,36668411,'NM_033386','MICALL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22566564,22567409,'NM_002415','MIF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49272078,49275616,'NM_017584','MIOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',43975498,43975564,'NR_031651','MIR1249'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39818462,39818516,'NR_031694','MIR1281'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18616656,18616734,'NR_031618','MIR1286'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',24513500,25125579,'NR_031631','MIR1302-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18453580,18453665,'NR_031706','MIR1306'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20337592,20337674,'NR_029845','MIR130B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18400661,18400743,'NR_029706','MIR185'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20337269,20337347,'NR_030622','MIR301B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16626945,16627025,'NR_036168','MIR3198-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',26646512,26646600,'NR_036169','MIR3199-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',26646513,26646599,'NR_036170','MIR3199-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29457543,29457628,'NR_036171','MIR3200'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',47048839,47048891,'NR_036172','MIR3201'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40626893,40626962,'NR_029507','MIR33A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18453268,18453356,'NR_037412','MIR3618'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44865587,44865670,'NR_037413','MIR3619'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28059146,28059256,'NR_037426','MIR3653'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34061632,34061751,'NR_037471','MIR3909'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29886047,29886105,'NR_037496','MIR3928'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36714746,36714806,'NR_039759','MIR4534'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',47562112,47562171,'NR_039761','MIR4535'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18331275,18331357,'NR_039918','MIR4761'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44535067,44535142,'NR_039919','MIR4762'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44888109,44888201,'NR_039920','MIR4763'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',32162567,32162655,'NR_039921','MIR4764'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39539832,39539908,'NR_039923','MIR4766'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',26559027,27069985,'NR_039762','MIR548AM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',25281177,25281289,'NR_031615','MIR548J'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21495269,21495365,'NR_030755','MIR650'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36570224,36570324,'NR_030395','MIR658'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36573630,36573727,'NR_030396','MIR659'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44887292,44887366,'NR_029478','MIRLET7A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44888229,44888312,'NR_029479','MIRLET7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44860540,44888472,'NR_027033','MIRLET7BHG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39136237,39362636,'NM_020831','MKL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48839946,48865908,'NM_139202','MLC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22445035,22456503,'NM_005940','MMP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',26474264,26527486,'NM_002430','MN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29652599,29694187,'NM_014941','MORC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29648294,29652640,'NR_026920','MORC2-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48870561,48942243,'NM_001164104','MOV10L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',42137963,42234129,'NM_001044370','MPPED1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35745647,35755809,'NM_021126','MPST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17800035,17803596,'NM_003776','MRPL40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29151610,29155041,'NM_016498','MTFP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28609157,28756857,'NM_153051','MTMR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35007268,35114009,'NM_002473','MYH9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',24468119,24757007,'NM_032608','MYO18B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40784283,40796792,'NM_000262','NAGA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49293510,49310075,'NM_152299','NCAPH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35586975,35604005,'NM_000631','NCF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40811475,40816834,'NM_002490','NDUFA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28206180,28217277,'NM_021076','NEFH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28329544,28424589,'NM_016418','NF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41106357,41158345,'NM_145912','NFAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40399882,40414859,'NM_001003796','NHP2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28280797,28307326,'NM_003634','NIPSNAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36412289,36419431,'NM_024313','NOL12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37544401,37569963,'NM_014293','NPTXR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',43939215,43962554,'NM_153645','NUP50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49315703,49317874,'NM_001014440','ODF3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',14828823,14829804,'NM_001005239','OR11H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29420792,29633811,'NM_030758','OSBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28988818,28992829,'NM_020530','OSM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19699441,19712302,'NM_001159554','P2RX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19726680,19728538,'NR_002829','P2RX6P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41595715,41685831,'NM_001184971','PACSIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48951286,48960851,'NM_052839','PANX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',42796329,42896445,'NM_001243385','PARVB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',42908589,42934368,'NM_001137606','PARVG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30051789,30072249,'NM_032052','PATZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37949630,37966860,'NM_033016','PDGFB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36384682,36392885,'NM_020315','PDXP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29302611,29317927,'NM_014303','PES1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16940759,16953797,'NM_001127649','PEX26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',43655706,43783538,'NM_001242450','PHF21B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40185666,40194654,'NM_032758','PHF5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19391978,19418955,'NM_002650','PI4KA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18763730,18778695,'NR_003563','PI4KAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20157286,20201780,'NR_003700','PI4KAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36783207,36801654,'NM_012407','PICK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30007578,30018520,'NM_052880','PIK3IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48740146,48743724,'NM_001001852','PIM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30344478,30356810,'NM_014338','PISD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',26577656,26645255,'NM_012399','PITPNB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23445000,23500683,'NM_001008496','PIWIL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',45030223,45037883,'NM_006071','PKDREJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29860792,29866469,'NM_015715','PLA2G3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36837447,36907782,'NM_001199562','PLA2G6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49055534,49075336,'NM_012401','PLXNB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40302835,40315817,'NM_002676','PMM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',42650951,42674781,'NM_025225','PNPLA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',42606890,42619226,'NM_138814','PNPLA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41309670,41340906,'NM_032311','POLDIP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36679619,36695265,'NM_021974','POLR2F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40251751,40270422,'NM_138338','POLR3H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23371132,23385114,'NR_024593','POM121L10P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21304027,21317012,'NR_024591','POM121L1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19373842,19376009,'NR_024592','POM121L4P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19966713,19982015,'NR_024583','POM121L8P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22977588,22991492,'NR_003714','POM121L9P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',14636331,14667937,'NM_001136213','POTEH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44925162,45018317,'NM_001001928','PPARA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20350272,20382202,'NM_014337','PPIL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20603791,20637250,'NM_014634','PPM1F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49128611,49230384,'NM_001242898','PPP6R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40323977,40347007,'NM_015704','PPPDE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21220122,21231550,'NM_206956','PRAME'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17280286,17304066,'NM_016335','PRODH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30407333,30476120,'NM_173566','PRR14L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',43451351,43512225,'NM_001198721','PRR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',43477045,43637328,'NM_181334','PRR5-ARHGAP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',15462800,15509720,'NR_001591','psiTPTE22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35526690,35545463,'NM_002854','PVALB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21817512,21836531,'NM_004914','RAB36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49552785,49568953,'NM_001130921','RABL2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35951255,35970251,'NM_002872','RAC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18485023,18494704,'NM_002882','RANBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39971560,40012162,'NM_002883','RANGAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34267297,34279991,'NM_014310','RASD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28038921,28041748,'NM_006477','RASL10A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34464728,34566576,'NM_001082576','RBFOX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39677296,39698965,'NM_014248','RBX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28164571,28168444,'NM_021026','RFPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28163003,28168118,'NR_002727','RFPL1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30916421,30928537,'NM_001159546','RFPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',31080871,31087148,'NM_006604','RFPL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',31085894,31096972,'NR_001450','RFPL3-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22363047,22371363,'NM_153615','RGL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',27985843,27993914,'NM_012265','RHBDD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44188237,44206959,'NM_015653','RIBC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18835993,18841786,'NM_015672','RIMBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20068039,20073455,'NM_001128635','RIMBP3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20067662,20073455,'NM_001128633','RIMBP3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29886137,29933005,'NM_152267','RNF185'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29104802,29113302,'NM_001017981','RNF215'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41341194,41341343,'NR_029422','RNU12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38042792,38042847,'NR_000026','RNU86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49569022,49584931,'NR_026982','RPL23AP82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38038832,38045616,'NM_000967','RPL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38255043,38258806,'NM_194326','RPS19BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41234284,41245773,'NM_015703','RRP7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41299209,41307961,'NR_002184','RRP7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21731592,21814241,'NM_014433','RTDR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18608937,18635816,'NM_023004','RTN4R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',42682593,42723745,'NM_015380','SAMM50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49230296,49260330,'NM_002972','SBF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19108873,19122146,'NM_153334','SCARF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49308862,49310899,'NM_001169111','SCO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41929172,42069338,'NM_173050','SCUBE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29207276,29207743,'NR_001580','SDC4P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20326541,20328588,'NM_022044','SDF2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29122929,29142964,'NM_033382','SEC14L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29185215,29198034,'NM_174975','SEC14L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29214897,29231698,'NM_001161368','SEC14L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29250916,29272669,'NM_001193336','SEC14L6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29830762,29833551,'NM_080430','SELM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48981534,48998172,'NM_031454','SELO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40702876,40724171,'NM_145733','SEPT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18081986,18090845,'NM_002688','SEPT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18085991,18092297,'NR_037612','SEPT5-GP1BB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41226528,41238510,'NR_027786','SERHL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41279868,41300332,'NM_014509','SERHL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19458382,19472008,'NM_000185','SERPIND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',24895439,25109563,'NM_001184774','SEZ6L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29057976,29082913,'NM_005877','SF3A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30222260,30344534,'NM_014775','SFI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23532135,23652813,'NM_133454','SGSM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39096540,39136239,'NM_015705','SGSM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36365629,36381996,'NM_018957','SH3BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49459935,49518507,'NM_001080420','SHANK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40635503,40640617,'NM_001207020','SHISA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36804089,36809116,'NM_013356','SLC16A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17543093,17546034,'NR_033687','SLC25A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39495584,39545338,'NM_006358','SLC25A17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16423182,16453647,'NM_031481','SLC25A18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22529058,22557725,'NM_030807','SLC2A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29361792,29373862,'NM_001001479','SLC35E4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30785156,30839011,'NR_033411','SLC5A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30944462,30981318,'NM_014227','SLC5A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19713006,19716847,'NM_004173','SLC7A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22459149,22506705,'NM_003073','SMARCB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44118608,44188164,'NM_148674','SMC1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38228229,38244083,'NM_019008','SMCR7L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29807281,29830610,'NM_006932','SMTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19543291,19575501,'NM_004782','SNAP29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28059151,28059247,'NR_003686','SNORD125'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38045002,38045064,'NR_002439','SNORD43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38041163,38041258,'NR_000027','SNORD83A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38039769,38039862,'NR_000028','SNORD83B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23281617,23298509,'NM_004175','SNRPD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36698264,36710485,'NM_006941','SOX10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22996785,23143708,'NM_015330','SPECC1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40559051,40632321,'NM_004599','SREBF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',25209849,25217904,'NM_001013694','SRRD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35932190,35938299,'NM_001051','SSTR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39550546,39582633,'NM_003932','ST13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',42551719,42589711,'NM_014351','SULT4A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37460664,37481413,'NM_001199580','SUN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22907443,22915074,'NM_019601','SUSD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',31238539,31784377,'NM_001135774','SYN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38075899,38111539,'NM_004711','SYNGR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38125704,38163078,'NM_153497','TAB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29017978,29052955,'NM_001204240','TBC1D10A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',45537181,45950006,'NM_014346','TBC1D22A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18124225,18134855,'NM_080647','TBX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40885962,40941389,'NM_005650','TCF20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29333069,29353047,'NM_001184726','TCN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40107908,40125276,'NM_003216','TEF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',25217894,25238437,'NM_012143','TFIP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19684060,19686404,'NM_030573','THAP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28234155,28279736,'NM_003678','THOC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',31526801,31589028,'NM_000362','TIMP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36945243,36998986,'NM_012264','TMEM184B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19385401,19388891,'NR_026815','TMEM191A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18757668,18760440,'NM_001242313','TMEM191B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20151458,20154224,'NM_001207052','TMEM191C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23661207,23665314,'NM_001001663','TMEM211'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35791424,35829639,'NM_153609','TMPRSS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40650981,40652767,'NM_052945','TNFRSF13C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',38903874,39061758,'NM_001162501','TNRC6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40159437,40172973,'NM_016272','TOB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',34025796,34073987,'NM_005488','TOM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',37407899,37410711,'NM_020243','TOMM22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23490467,23491986,'NR_001283','TOP1P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20641402,20667147,'NM_003935','TOP3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',25251713,25316089,'NM_003595','TPST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48966486,48980154,'NM_025204','TRABD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',36472186,36485907,'NM_138632','TRIOBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18479397,18484768,'NM_182984','TRMT2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',45109961,45131901,'NM_018006','TRMU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41877478,41889192,'NM_007311','TSPO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17498320,17500136,'NM_053006','TSSK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35736851,35745437,'NM_003312','TST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',26704001,27405853,'NM_001145418','TTC28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',26645363,26728667,'NR_026963','TTC28-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',45042524,45068569,'NM_017931','TTC38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41765466,41815378,'NR_027779','TTLL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',41892571,41913081,'NM_015140','TTLL12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',16973452,16994498,'NM_018943','TUBA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48998244,49025527,'NM_020461','TUBGCP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',29695633,29705380,'NR_002323','TUG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',35193038,35207633,'NM_012473','TXN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18243039,18309359,'NM_006440','TXNRD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',49311047,49315380,'NM_001953','TYMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20251956,20308323,'NM_003347','UBE2L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17817463,17846738,'NM_005659','UFD1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',23221250,23252553,'NM_016327','UPB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44059531,44070419,'NM_001167574','UPK3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28493357,28496402,'NM_013387','UQCR10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',17012757,17040162,'NM_017414','USP18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20929199,20929926,'NM_007128','VPREB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22424929,22426630,'NM_013378','VPREB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40724674,40754423,'NM_152613','WBP2NL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',44694911,44751672,'NM_058238','WNT7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',27520547,27526560,'NM_005080','XBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',15644305,15682584,'NM_175878','XKR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',39583030,39658769,'NM_022098','XPNPEP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40347240,40389998,'NM_001469','XRCC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20312378,20314340,'NM_001017964','YDJC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',20381825,20420071,'NM_013313','YPEL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',30670478,30683590,'NM_003405','YWHAH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',48633500,48669730,'NM_014838','ZBED4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',40027512,40086097,'NM_017590','ZC3H7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',18499363,18515530,'NM_001185024','ZDHHC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22062791,22074799,'NR_003950','ZDHHC8P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',28456944,28492969,'NM_019103','ZMAT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21198060,21204613,'NM_080740','ZNF280A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',21168771,21193505,'NM_080764','ZNF280B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',22413771,22423279,'NM_021916','ZNF70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',19078479,19092752,'NR_003253','ZNF74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr22',27643376,27783476,'NM_032173','ZNRF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr2_',92952,104179,'NM_012145','DTYMK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',139325249,139333919,'NM_016161','A4GNT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',153014550,153028966,'NM_001086','AADAC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',152934393,152958246,'NM_207365','AADACL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185120417,185218421,'NM_005688','ABCC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185386556,185394489,'NM_018358','ABCF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113180517,113194900,'NM_018394','ABHD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51984081,51990256,'NM_015407','ABHD14A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51984081,51998258,'NR_037192','ABHD14A-ACY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51977565,51983686,'NM_032750','ABHD14B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',43707378,43739221,'NM_016006','ABHD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',58198298,58255501,'NM_020676','ABHD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',101950868,102195024,'NM_015429','ABI3BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',128874470,128882459,'NM_032548','ABTB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38139204,38153737,'NM_001607','ACAA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',133759671,133861665,'NM_032169','ACAD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130081022,130114647,'NR_033426','ACAD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',196476753,196645106,'NM_012287','ACAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',58465902,58497969,'NM_003500','ACOX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',142433371,142496176,'NM_001037172','ACPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',133518900,133560380,'NM_001099','ACPP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',180763401,180788887,'NM_177989','ACTL6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',53876133,53891269,'NM_022899','ACTR8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38470793,38509637,'NM_001106','ACVR2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51992339,51998258,'NM_000666','ACY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',64476370,64648405,'NM_182920','ADAMTS9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',64645585,64972183,'NR_038264','ADAMTS9-AS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',124483832,124617879,'NM_001199642','ADCY5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',188043156,188058946,'NM_001177800','ADIPOQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120781212,120791482,'NM_001125','ADPRH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',149898347,149943480,'NM_000685','AGTR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187813543,187821802,'NM_001622','AHSG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52207183,52223383,'NM_000688','ALAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',106568246,106726920,'NM_001243283','ALCAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127305097,127382175,'NM_012190','ALDH1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127130807,127138577,'NM_001195223','ALG1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',131283363,131299923,'NM_001136152','ALG1L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185442810,185449453,'NR_024534','ALG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46685488,46710198,'NR_033815','ALS2CL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49729270,49732242,'NM_198722','AMIGO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',135556879,135576096,'NM_016201','AMOTL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49429214,49435115,'NM_001164711','AMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',135679235,135687553,'NM_015391','ANAPC13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15683747,15814695,'NM_001195098','ANKRD28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150961579,150993300,'NM_001144960','ANKUB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',43382821,43638564,'NM_018075','ANO10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185375327,185384573,'NM_004068','AP2M1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49686438,49695938,'NM_001640','APEH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',196776861,196792365,'NM_001647','APOD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',57236804,57282538,'NM_012096','APPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',57532129,57558255,'NM_001660','ARF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',122769467,122792159,'NM_001012659','ARGFX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120495909,120621013,'NM_020754','ARHGAP31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',155321838,155458310,'NM_015595','ARHGEF26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',155224879,155321689,'NR_037901','ARHGEF26-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',56736485,57088376,'NM_001128615','ARHGEF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48931284,48997975,'NM_006321','ARIH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',95181672,95257212,'NR_033427','ARL13B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',161877641,161878929,'NM_025047','ARL14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',98966284,99000063,'NM_177976','ARL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',69216779,69237929,'NM_006407','ARL6IP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',5138929,5197601,'NM_018184','ARL8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',139388837,139498909,'NM_015396','ARMC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9809231,9823789,'NM_005718','ARPC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9809231,9853040,'NM_001198793','ARPC4-TTLL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',170967404,170970377,'NM_032487','ARPM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',35658852,35810992,'NM_016300','ARPP21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',57277418,57301750,'NM_001142733','ASB14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',132215410,132228336,'NM_014065','ASTE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113734048,113763175,'NM_022488','ATG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',11289009,11574139,'NM_001136031','ATG7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',183993984,184122115,'NM_014616','ATP11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195604691,195670257,'NM_024524','ATP13A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',194602559,194755390,'NM_032279','ATP13A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',194475524,194579208,'NM_198505','ATP13A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',143078159,143128072,'NM_001679','ATP1B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10340706,10522268,'NM_001683','ATP2B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',132095981,132204736,'NM_014382','ATP2C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',114948555,115013595,'NM_001690','ATP6V1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',143650766,143780358,'NM_001184','ATR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48463221,48482058,'NM_032166','ATRIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',63928459,63964176,'NM_001128149','ATXN7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',28338848,28365622,'NM_022461','AZI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',162284364,162305854,'NM_001038628','B3GALNT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',184453725,184473873,'NM_032047','B3GNT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120413278,120442442,'NM_212543','B4GALT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52410064,52419049,'NM_004656','BAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',108724472,109012739,'NM_020235','BBX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',166973385,167037947,'NM_000055','BCHE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',188921858,188936979,'NM_001130845','BCL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198721050,198767255,'NM_004051','BDH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',134601479,134676746,'NM_003571','BFSP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',4996096,5001865,'NM_003670','BHLHE40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',114414064,114488995,'NM_033254','BOC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',140305716,140326695,'NR_026783','BPESC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10132332,10143874,'NM_018462','BRK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9748433,9764699,'NM_004634','BRPF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49566925,49683986,'NM_003458','BSN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49561742,49566803,'NR_038866','BSN-AS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15618258,15662329,'NM_000060','BTD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113665502,113701098,'NM_181780','BTLA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',62280435,62294360,'NM_020685','C3orf14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120904558,120968639,'NM_033364','C3orf15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',114203981,114221245,'NR_027796','C3orf17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50570459,50580227,'NM_001171740','C3orf18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',14668256,14689170,'NM_016474','C3orf19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',14691609,14789547,'NM_001184957','C3orf20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',196270301,196473184,'NM_152531','C3orf21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127751208,127760448,'NM_152533','C3orf22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44354947,44425944,'NM_173826','C3orf23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10098003,10124915,'NM_173472','C3orf24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130602853,130630184,'NM_207307','C3orf25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',101019367,101380166,'NM_032359','C3orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',129773532,129777619,'NM_007354','C3orf27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120347686,120352992,'NM_152539','C3orf30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',8636319,8668737,'NM_015931','C3orf32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',156963094,157006749,'NM_173657','C3orf33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',37415971,37434869,'NM_178342','C3orf35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',135129679,135131346,'NM_025041','C3orf36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130480373,130506825,'NM_020187','C3orf37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',88281582,88289805,'NM_173824','C3orf38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',43095732,43122569,'NM_032806','C3orf39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197718146,197726634,'NM_001077657','C3orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50291521,50300549,'NM_153215','C3orf45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',63780080,63809352,'NR_026866','C3orf49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',55666279,55668537,'NR_024615','C3orf51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113287871,113319734,'NM_024616','C3orf52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49815690,49817467,'NM_203370','C3orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',158743826,158770395,'NR_024016','C3orf55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',145174856,145193900,'NM_001134470','C3orf58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49281033,49289512,'NM_198562','C3orf62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',69107057,69145464,'NM_173654','C3orf64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',186913733,186918649,'NR_027317','C3orf65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',58702776,59010755,'NM_198463','C3orf67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',186278531,186353496,'NM_001025266','C3orf70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48930224,48931822,'NM_001123040','C3orf71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',140148765,140155520,'NM_001040061','C3orf72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52071149,52074168,'NR_027331','C3orf74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47512133,47530203,'NM_001031703','C3orf75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44258381,44348594,'NM_001145030','C3orf77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52545660,52549626,'NM_001124767','C3orf78'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',154684973,154703176,'NM_001101337','C3orf79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',161426116,161428694,'NM_001168214','C3orf80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',53504070,53821532,'NM_001128839','CACNA1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50375234,50515896,'NM_006030','CACNA2D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',54131732,55083624,'NM_018398','CACNA2D3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',85858321,86206269,'NM_153184','CADM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',62359060,62836104,'NM_003716','CADPS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9774028,9786668,'NM_003656','CAMK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185459696,185461945,'NM_033259','CAMK2N2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49870425,49882373,'NM_024046','CAMKV'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48239840,48241985,'NM_004345','CAMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',12813170,12851313,'NM_012298','CAND2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15222736,15269427,'NM_014296','CAPN7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123385870,123488034,'NM_001178065','CASR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',8750485,8763451,'NM_033337','CAV3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',106859798,107070577,'NM_170662','CBLB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42825967,42883779,'NM_001296','CCBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46938223,46993274,'NM_144716','CCDC12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42724877,42789749,'NM_144719','CCDC13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',125114963,125162945,'NM_022757','CCDC14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49210864,49270541,'NM_178173','CCDC36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127596471,127638088,'NM_182628','CCDC37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',181814489,181879977,'NM_181426','CCDC39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130203161,130242275,'NM_024768','CCDC48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',192529567,192599153,'NM_178335','CCDC50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48448583,48456533,'NM_024661','CCDC51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',108578877,108580171,'NM_032600','CCDC54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123561125,123584764,'NM_001017928','CCDC58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',56566223,56630888,'NR_024460','CCDC66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49174971,49178789,'NM_022903','CCDC71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48456689,48460541,'NM_015933','CCDC72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113806098,113842667,'NM_199512','CCDC80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42274321,42282666,'NM_000729','CCK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',158348279,158361176,'NM_020307','CCNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46218203,46224836,'NM_001295','CCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46370238,46375872,'NM_001123396','CCR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46258875,46283201,'NM_001837','CCR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',32968069,32971407,'NM_005508','CCR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39346200,39350175,'NM_005201','CCR8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',45902999,45919671,'NM_031200','CCR9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',133798783,133804072,'NM_016557','CCRL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113534605,113564348,'NM_005944','CD200'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',114124221,114176627,'NM_138806','CD200R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',114017245,114047487,'NM_001199215','CD200R1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',109244630,109292625,'NM_198793','CD47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120725829,120761171,'NM_005191','CD80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123256898,123322678,'NM_175862','CD86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',112743615,112853896,'NM_005816','CD96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48173671,48204805,'NM_001789','CDC25A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',45126734,45162918,'NM_178181','CDCP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49803170,49812258,'NM_001007540','CDHR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',134775123,134791808,'NM_001134422','CDV3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48648899,48675352,'NM_001407','CELSR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197917544,197923520,'NM_032898','CEP19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',135687736,135766560,'NM_025180','CEP63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',139695876,139795819,'NM_024491','CEP70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',102926183,102968871,'NM_024548','CEP97'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',88183789,88281706,'NM_001195308','CGGBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',14128577,14141372,'NM_001098502','CHCHD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127905807,128161934,'NM_032343','CHCHD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',53825363,53855460,'NM_018397','CHDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',213649,426097,'NM_006614','CHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',87359102,87387388,'NM_014043','CHMP2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185580554,185590311,'NM_003741','CHRD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127725820,127744824,'NM_152889','CHST13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',144321307,144325546,'NM_004267','CHST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9883393,9896938,'NM_001199552','CIDEC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10034236,10042820,'NR_002786','CIDECP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50618888,50624266,'NM_013324','CISH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',33512741,33734709,'NM_015097','CLASP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185546669,185562085,'NM_001171089','CLCN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',191506183,191522929,'NM_021101','CLDN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',171619346,171635173,'NM_005602','CLDN11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',191588354,191612626,'NM_006580','CLDN16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',139200347,139235184,'NM_001002026','CLDN18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99717006,99724600,'NM_001040182','CLDND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',45042762,45052567,'NM_003278','CLEC3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',152127043,152173476,'NM_174878','CLRN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',152173154,152280307,'NR_024066','CLRN1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',141136716,141769609,'NM_022131','CLSTN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',28258127,28336267,'NM_182523','CMC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',32497807,32519407,'NM_017801','CMTM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',32408166,32471337,'NM_181472','CMTM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',32255174,32386817,'NM_178868','CMTM8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130369347,130385500,'NM_001127195','CNBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',32701701,32790358,'NM_015442','CNOT10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',74394411,74653033,'NM_020872','CNTN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',2115549,3074645,'NM_175607','CNTN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',1109628,1420278,'NM_014461','CNTN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15181872,15222470,'NR_027927','COL6A4P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',131414352,131475339,'NR_027898','COL6A4P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',131547048,131686378,'NR_022012','COL6A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',131761867,131878578,'NM_001102608','COL6A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48576509,48607597,'NM_000094','COL7A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',100840143,100997848,'NM_001850','COL8A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15466643,15538262,'NM_005677','COLQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150938946,150952976,'NM_016094','COMMD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',140559122,140591212,'NR_023350','COPB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130451142,130479306,'NM_016128','COPG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120871061,120878933,'NM_005694','COX17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150372979,150422522,'NM_000096','CP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150065732,150097562,'NM_001870','CPA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150028277,150060662,'NM_001871','CPB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195542188,195553350,'NM_001080513','CPN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',132736266,133236534,'NM_130808','CPNE4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9720509,9746592,'NM_153635','CPNE9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99780979,99795145,'NM_000097','CPOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',3166316,3196401,'NM_001173482','CRBN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9950524,9962097,'NM_001077415','CRELD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',33130453,33164269,'NM_006371','CRTAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187738925,187744861,'NM_017541','CRYGS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47578731,47595363,'NM_006574','CSPG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39158345,39170106,'NM_033027','CSRNP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123526700,123543505,'NM_005213','CSTA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',37878672,38000964,'NM_005808','CTDSPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',41215945,41256943,'NM_001098210','CTNNB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39279988,39296934,'NM_001171172','CX3CR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',45959976,45964849,'NM_006564','CXCR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50363300,50366500,'NM_007022','CYB561D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42888687,42892637,'NM_004391','CYP8B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49482568,49548052,'NM_001177641','DAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49027438,49033471,'NM_018114','DALRD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',16603304,16622010,'NM_001351','DAZL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',139362519,139376481,'NM_016216','DBR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99997503,100103223,'NM_080927','DCBLD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',36728916,36756356,'NM_033403','DCLK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',53292484,53356694,'NM_018403','DCP1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',184143252,184181020,'NM_020640','DCUN1D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187347683,187562717,'NM_001346','DGKG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',95259455,95264521,'NM_176815','DHFRL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47819402,47866690,'NM_138615','DHX30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',155476150,155524980,'NM_001114397','DHX36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123996590,124082676,'NM_032839','DIRC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38055699,38139232,'NM_007335','DLEC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198253827,198509844,'NM_004087','DLG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52325374,52409553,'NM_015512','DNAH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',57458770,57505111,'NM_198564','DNAH12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187771160,187786283,'NM_016306','DNAJB11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',129663971,129668781,'NM_153330','DNAJB8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',129665126,129673850,'NR_037890','DNAJB8-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',133619242,133740566,'NM_015268','DNAJC13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',182187661,182190256,'NR_033725','DNAJC19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',58153393,58175438,'NM_004944','DNASE1L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50687675,51396669,'NM_004947','DOCK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',16273571,16281500,'NM_001047434','DPH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',110495324,110518054,'NM_138815','DPPA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',110527677,110539109,'NM_018189','DPPA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',115330246,115380589,'NM_033663','DRD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123765874,123776739,'NM_138287','DTX3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52057976,52065501,'NM_001947','DUSP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185355977,185374008,'NM_004423','DVL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',32542466,32587370,'NM_016141','DYNC1LI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',139263516,139317141,'NM_173543','DZIP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',109791026,109896383,'NM_014648','DZIP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15444067,15459124,'NM_033083','EAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123036723,123088063,'NM_018456','EAF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',73193499,73195161,'NM_018029','EBLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185476492,185493513,'NM_001100121','ECE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',173954991,174021957,'NM_018098','ECT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',5204358,5236650,'NM_014674','EDEM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',129355002,129610179,'NM_021937','EEFSEC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',19895969,19950710,'NM_144715','EFHB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',169450003,170031068,'NR_021485','EGFEM1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',4765877,4768274,'NR_004428','EGOT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',186391105,186454580,'NM_001966','EHHADH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',40326176,40328919,'NM_005875','EIF1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',151747263,151786493,'NM_032025','EIF2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185335503,185345793,'NM_003907','EIF2B5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187984054,187990379,'NM_001967','EIF4A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',71811129,71886614,'NM_173359','EIF4E3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185514976,185535840,'NM_198241','EIF4G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',172088897,172109120,'NM_020390','EIF5A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',40403676,40445114,'NM_001248','ENTPD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',40407445,40469803,'NR_040100','ENTPD3-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',27732889,27738789,'NM_005442','EOMES'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',89239363,89613974,'NM_005233','EPHA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',98641179,98850111,'NM_173655','EPHA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',135996788,136461997,'NM_004441','EPHB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185762280,185782890,'NM_004443','EPHB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',37002360,37009799,'NM_014805','EPM2AIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',55517375,56477431,'NM_015576','ERC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',54641190,54648924,'NR_027122','ESRG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',139636104,139679946,'NM_031913','ESYT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187246799,187309595,'NM_004454','ETV5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38512766,38542800,'NM_001145464','EXOG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44992744,45027966,'NM_015004','EXOSC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',139810608,139834903,'NM_018147','FAIM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',58524884,58538531,'NM_007177','FAM107A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',57586220,57653856,'NM_152678','FAM116A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185536410,185546757,'NM_001171093','FAM131A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',199363633,199392125,'NM_001145248','FAM157A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123585712,123611651,'NM_014367','FAM162A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',102720400,102725421,'NR_036433','FAM172BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',151860364,151904432,'NM_152394','FAM194A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42995762,43074211,'NM_001129908','FAM198A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',68136143,68677461,'NM_213609','FAM19A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',68863606,69064401,'NM_182522','FAM19A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',56629199,56692175,'NM_001112736','FAM208A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',58594709,58627601,'NM_138805','FAM3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195887910,195891055,'NM_153690','FAM43A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',102980975,103029765,'NM_001134456','FAM55C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',75553392,75566956,'NR_024241','FAM86DP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',131299314,131312966,'NR_024252','FAM86HP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10043112,10116344,'NM_033084','FANCD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',13585239,13654923,'NM_001165035','FBLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',33293937,33403761,'NM_012157','FBXL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',122794859,122831829,'NM_016298','FBXO40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197780121,197800327,'NM_001105573','FBXO45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48388712,48411194,'NM_001159929','FBXW12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187840842,187853491,'NM_014375','FETUB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',62330386,62334230,'NM_018008','FEZF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',14835472,14951076,'NM_152536','FGD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',193339875,193609532,'NM_021032','FGF12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',59710075,61212173,'NM_001166243','FHIT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',101049461,101077736,'NM_014890','FILIP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',75796170,75799058,'NR_037925','FLJ20518'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',110338250,110351641,'NR_033977','FLJ22763'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',110611526,110696704,'NM_001145553','FLJ25363'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',40189641,40326193,'NR_033965','FLJ33065'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195689157,195690563,'NR_033929','FLJ34208'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47180863,47260610,'NR_033373','FLJ39534'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',189379024,189381290,'NR_024413','FLJ42393'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',183647451,183686844,'NR_040105','FLJ46066'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',57969166,58133022,'NM_001164319','FLNB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',173241037,173601186,'NM_001135095','FNDC3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',140145755,140148672,'NM_023067','FOXL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',71086554,71196764,'NM_001244813','FOXP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',75796176,75799058,'NM_001124759','FRG2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',69301835,69518120,'NM_015123','FRMD4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',121595750,121652608,'NM_007085','FSTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',182112927,182183233,'NM_005087','FXR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',45934398,46012311,'NM_024513','FYCO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198961020,198995714,'NM_032288','FYTTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99188216,99236838,'NM_001105580','GABRR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',30742695,30911157,'NM_207359','GADL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',16191187,16246257,'NM_054110','GALNTL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',116824840,116923024,'NM_001130064','GAP43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',129680954,129689454,'NM_001145662','GATA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',81621539,81893640,'NM_000158','GBE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113322377,113334842,'NM_001190260','GCET2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',159845010,159893054,'NM_024996','GFM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10302433,10307419,'NM_001134941','GHRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10302437,10310133,'NR_024144','GHRLOS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10301102,10302430,'NR_026829','GHRLOS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',173643775,173648940,'NM_198407','GHSR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',143359058,143427139,'NM_001039547','GK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',33013103,33113698,'NM_001135602','GLB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52703543,52715088,'NM_018446','GLT8D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52296875,52304312,'NM_145262','GLYCTK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',192053219,192063159,'NM_001146686','GMNC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49733935,49736388,'NM_021971','GMPPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',157071018,157138214,'NM_003875','GMPS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50259329,50271790,'NM_001166425','GNAI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50204046,50210133,'NM_144499','GNAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',180596569,180652065,'NM_021629','GNB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52694975,52703550,'NM_014366','GNL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',37259685,37383374,'NM_002078','GOLGA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',122864737,122951292,'NM_004487','GOLGB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',169210347,169296111,'NM_014498','GOLIM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39113094,39124134,'NM_031899','GORASP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195596838,195601284,'NM_004488','GP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130262334,130263943,'NM_000174','GP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',32123006,32185211,'NM_015141','GPD1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',101811122,101897013,'NM_032787','GPR128'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',155538154,155630198,'NM_001038705','GPR149'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99733567,99734650,'NM_005290','GPR15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',121367017,121445832,'NM_001168271','GPR156'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',171238428,171285877,'NM_014373','GPR160'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',152398308,152403678,'NM_013308','GPR171'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',71885890,71887018,'NM_018971','GPR27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51964369,51966560,'NM_080865','GPR62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',152494565,152517326,'NM_023915','GPR87'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49369612,49370795,'NM_000581','GPX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',115099007,115148711,'NM_001172105','GRAMD1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',14505622,14558592,'NM_001080423','GRIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',142979732,143018582,'NM_139209','GRK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51716120,51727665,'NM_001130063','GRM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',6877801,7758218,'NM_000844','GRM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',121023491,121295954,'NM_001146156','GSK3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',121944247,121984606,'NM_005513','GTF2E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',114192489,114202911,'NM_138485','GTPBP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',110109331,110155367,'NM_005459','GUCA1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',73020074,73107212,'NM_001080393','GXYLT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150191884,150228146,'NM_004130','GYG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130744746,130752894,'NM_153833','H1FOO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130516303,130517810,'NM_006026','H1FX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130517803,130526102,'NR_026991','H1FX-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15577243,15618134,'NM_012260','HACL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',122832935,122862481,'NM_005335','HCLS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',13496843,13522924,'NM_001136041','HDAC11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',126167243,126257492,'NM_020733','HEG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50581912,50597425,'NM_016173','HEMK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195336624,195339095,'NM_005524','HES1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',57206983,57209320,'NM_003865','HESX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',121829704,121884108,'NM_000187','HGD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42709158,42719323,'NM_020707','HHATL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',109504021,109579816,'NM_007072','HHLA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42799403,42821031,'NM_014056','HIGD1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150230593,150287031,'NM_003071','HLTF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150330060,150373995,'NM_032383','HPS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',194441611,194471338,'NM_020386','HRASLS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187866491,187878717,'NM_000412','HRG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',11153778,11279939,'NM_001098213','HRH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123941533,123995356,'NM_024610','HSPBAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',88114415,88125609,'NM_000866','HTR1F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185253528,185261155,'NM_130770','HTR3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185233312,185239851,'NM_001163646','HTR3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185300660,185307477,'NM_182589','HTR3E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50312324,50316008,'NM_007312','HYAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50330224,50335285,'NM_033158','HYAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50305262,50311297,'NM_001200029','HYAL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',62084198,62085432,'NR_026582','ID2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50300166,50305030,'NM_006764','IFRD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130641657,130721881,'NM_052985','IFT122'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',109362348,109424107,'NM_018010','IFT57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',161457467,161584248,'NM_001190242','IFT80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',186844220,187025521,'NM_006548','IGF2BP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',152636467,152659187,'NM_178822','IGSF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120102168,120347588,'NM_152538','IGSF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',161189316,161196500,'NM_000882','IL12A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',53855616,53874867,'NM_018725','IL17RB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9933757,9950305,'NM_032732','IL17RC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',57099049,57174443,'NM_017563','IL17RD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9919511,9933084,'NM_001193380','IL17RE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',191714533,191852002,'NM_002182','IL1RAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',138159396,138212616,'NM_144717','IL20RB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',3083007,3127058,'NM_000564','IL5RA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123188859,123223817,'NM_001199799','ILDR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49036765,49041879,'NM_000884','IMPDH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',102424079,102522109,'NM_016247','IMPG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49736731,49798631,'NM_001242829','IP6K1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48705886,48729715,'NM_001146179','IP6K2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',122971299,123036616,'NM_001023571','IQCB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51903931,51912426,'NM_152397','IQCF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51870684,51872480,'NM_203424','IQCF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51835938,51839914,'NM_001207023','IQCF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51826658,51827395,'NR_038215','IQCF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51882776,51884640,'NM_001145059','IQCF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51787616,51788243,'NM_001143833','IQCF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',199100342,199171283,'NM_032263','IQCG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',160269734,160464229,'NM_001042706','IQCJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',160269734,161097849,'NM_001197113','IQCJ-SCHIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',12913718,12983960,'NM_014869','IQSEC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10181562,10260427,'NM_001570','IRAK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130328948,130362763,'NM_020701','ISY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130289101,130362763,'NM_001204890','ISY1-RAB43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',37468816,37836285,'NM_002207','ITGA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',125964484,126088834,'NM_002213','ITGB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52788976,52801117,'NM_001166436','ITIH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52803823,52818065,'NM_002217','ITIH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52822045,52839757,'NM_002218','ITIH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',4510031,4864524,'NM_002222','ITPR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9907270,9911031,'NM_032492','JAGN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',125296247,125721388,'NM_003947','KALRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',20056527,20170900,'NM_003884','KAT2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',129124591,129189204,'NM_207335','KBTBD12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42702014,42708942,'NM_152393','KBTBD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',67131416,67144322,'NM_032505','KBTBD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',157343444,157739621,'NM_003471','KCNAB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',19165020,19552139,'NM_144633','KCNH8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',179736917,180044911,'NM_181361','KCNMB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',180440230,180467532,'NM_001163677','KCNMB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',58459131,58463127,'NM_153331','KCTD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198882710,198960965,'NM_001145642','KIAA0226'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44765239,44778177,'NM_020696','KIAA1143'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130172471,130195676,'NM_020741','KIAA1257'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',115165673,115258150,'NM_020817','KIAA1407'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',109751407,109791181,'NM_020890','KIAA1524'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',114849922,114898183,'NM_001009899','KIAA2018'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44778212,44869752,'NM_020242','KIF15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47244519,47299341,'NM_182902','KIF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127544167,127558926,'NM_014079','KLF15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49184021,49188923,'NM_173546','KLHDC8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47299333,47363310,'NM_025010','KLHL18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',184836104,184884998,'NM_017644','KLHL24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',184688012,184756193,'NM_130446','KLHL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187917791,187944893,'NM_000893','KNG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123623437,123716476,'NM_002264','KPNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',161695476,161766070,'NM_002268','KPNA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42952837,42959287,'NM_001205272','KRBOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',135801454,135852554,'NM_178554','KY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49133550,49145603,'NM_002292','LAMB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49165295,49166838,'NR_004405','LAMB2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',184322696,184363361,'NM_014398','LAMP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',45405078,45565332,'NM_015340','LARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',158026841,158125739,'NM_001193283','LEKR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',191157210,191321602,'NM_018192','LEPREL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9515044,9570486,'NM_198560','LHFPL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',45611326,45697759,'NM_014240','LIMD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',8588467,8591354,'NR_024065','LINC00312'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',110379701,110386798,'NR_026767','LINC00488'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',186708263,186753063,'NM_139248','LIPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',8518510,8584806,'NM_014583','LMCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',199171467,199254988,'NM_001136049','LMLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',69238728,69254436,'NM_198271','LMOD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',101602726,101657860,'NM_001085451','LNP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',102877963,102880747,'NR_024407','LOC100009676'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127118133,127131557,'NR_024251','LOC100125556'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195193576,195194721,'NR_027764','LOC100128023'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',171144465,171167216,'NR_027622','LOC100128164'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38467521,38471315,'NR_028389','LOC100128640'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',12556279,12561963,'NM_001195279','LOC100129480'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',124088049,124093953,'NR_024618','LOC100129550'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195501682,195513287,'NR_024480','LOC100131551'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',188902847,188932897,'NR_034062','LOC100131635'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46628928,46643037,'NM_001195442','LOC100132146'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',13949553,13953445,'NR_036481','LOC100132526'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',64039076,64048079,'NR_033978','LOC100287879'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',8237833,8518344,'NR_033378','LOC100288428'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',144202376,144202999,'NR_034032','LOC100289361'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',108311326,108442175,'NR_028303','LOC100302640'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',158290363,158301618,'NR_034008','LOC100498859'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',184648089,184656494,'NR_038302','LOC100505687'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',62222533,62279662,'NR_038281','LOC100506994'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',131095403,131110445,'NR_037893','LOC100507032'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',63964737,63972957,'NR_038286','LOC100507062'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198509514,198515018,'NR_038289','LOC100507086'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',144128206,144144068,'NR_038455','LOC100507389'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195910438,195984186,'NR_037891','LOC100507391'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',156490714,156494183,'NR_037902','LOC100507537'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',4914913,4923186,'NR_037903','LOC100507582'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',109043198,109079605,'NR_015414','LOC151658'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',24116468,24119742,'NR_026834','LOC152024'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198153890,198155281,'NR_024388','LOC152217'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',103142392,103199460,'NR_026934','LOC152225'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',72283097,72306180,'NR_038221','LOC201617'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',152970933,152985372,'NR_026915','LOC201651'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198825294,198839149,'NR_003266','LOC220729'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187655463,187694144,'NR_033844','LOC253573'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',96139796,96192859,'NR_015400','LOC255025'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',109084741,109130443,'NR_015394','LOC285205'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',25875026,25890190,'NR_034055','LOC285326'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',102913967,102914950,'NR_002941','LOC285359'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10776168,10780877,'NR_027102','LOC285370'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',13667221,13763133,'NR_027103','LOC285375'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',63063403,63085777,'NR_027104','LOC285401'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',132526625,132583009,'NR_038976','LOC339874'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',158282149,158323485,'NR_034007','LOC339894'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',186363382,186392437,'NR_038990','LOC339926'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',108442228,108528501,'NR_028302','LOC344595'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187160451,187181359,'NR_033752','LOC344887'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',199268798,199291939,'NR_003291','LOC348840'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10023101,10027779,'NM_001008737','LOC401052'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',75804121,75811144,'NR_040005','LOC401074'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',153463094,153470105,'NR_027038','LOC401093'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197353903,197372158,'NR_034088','LOC401109'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9405536,9414174,'NR_027007','LOC440944'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',84770245,85001416,'NR_033860','LOC440970'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',45694660,45705378,'NR_033947','LOC644714'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',28591772,28774832,'NR_038840','LOC645206'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',169096429,169124491,'NR_033843','LOC646168'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49190072,49204295,'NM_001080528','LOC646498'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',151171755,151173719,'NR_036538','LOC646903'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',164377724,164503783,'NR_033945','LOC647107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195157854,195204142,'NR_033944','LOC647323'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130063040,130073074,'NR_034179','LOC653712'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',157947825,158017545,'NR_038387','LOC730091'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',129709367,129712119,'NR_026954','LOC90246'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',189354356,190091154,'NM_001167672','LPP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',189351687,189354570,'NR_036497','LPP-AS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',199002541,199082853,'NM_032773','LRCH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',66511910,66633535,'NM_015541','LRIG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195557270,195571761,'NM_130830','LRRC15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46531881,46583044,'NM_024512','LRRC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',171039722,171070354,'NM_024727','LRRC31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197851052,197873271,'NM_198565','LRRC33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',170993909,171013268,'NM_001172779','LRRC34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',26639303,26727269,'NM_052953','LRRC3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',121526265,121550876,'NM_001099678','LRRC58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',37069120,37192855,'NM_017724','LRRFIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',171022403,171038254,'NM_001080460','LRRIQ4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',3816120,3864387,'NM_020873','LRRN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',54927420,54937112,'NM_020678','LRTM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',117003899,117647075,'NM_002338','LSAMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',117911324,117918577,'NR_015391','LSAMP-AS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195842805,195874495,'NM_018385','LSG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',14195231,14214873,'NM_014463','LSM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46452499,46480165,'NM_001199149','LTF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',159866896,159873176,'NM_020169','LXN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42413578,42427069,'NM_144634','LYZL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',45840449,45858625,'NM_020347','LZTFL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185910848,185912530,'NM_022149','MAGEF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',65314945,65999549,'NM_015520','MAGI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51397731,51401868,'NM_006010','MANF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',186483422,186689576,'NM_001242314','MAP3K13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47989572,48105773,'NM_030885','MAP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185016357,185026087,'NM_024871','MAP6D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50624296,50661732,'NM_001243926','MAPKAPK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',188434563,188492504,'NR_033519','MASP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',193997298,194118644,'NM_178496','MB21D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130632482,130641542,'NM_003925','MBD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',153499883,153666259,'NM_207294','MBNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',184215699,184300059,'NM_020166','MCCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',184378524,184628549,'NM_015078','MCF2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',128799942,128823968,'NM_004526','MCM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',170283980,170346787,'NM_005241','MECOM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',152287365,152637155,'NM_053002','MED12L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15426380,15444046,'NM_152396','METTL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198230220,198241083,'NM_033316','MFI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198214173,198216012,'NR_038285','MFI2-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',180548173,180593702,'NM_033540','MFN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',160002408,160030202,'NM_022736','MFSD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',194442261,194444455,'NR_026877','MGC2889'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',128890598,129024741,'NM_001003794','MGLL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99143350,99173914,'NM_032778','MINA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185441886,185441971,'NR_030410','MIR1224'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47866048,47866123,'NR_031595','MIR1226'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187987154,187987260,'NR_031650','MIR1248'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',35760971,35761055,'NR_029824','MIR128-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',129563697,129563791,'NR_031703','MIR1280'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',71673810,71673930,'NR_031697','MIR1284'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',53318410,53409557,'NR_031638','MIR1303'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',75762603,75762699,'NR_031714','MIR1324'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52303274,52303364,'NR_029677','MIR135A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44130707,44130806,'NR_029700','MIR138-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',161605069,161605167,'NR_029663','MIR15B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',161605226,161605307,'NR_029525','MIR16-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49033054,49033146,'NR_029690','MIR191'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',121597204,121597266,'NR_029584','MIR198'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',37985898,37985975,'NR_029499','MIR26A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',69180798,69180876,'NR_036087','MIR3136'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',16949691,16949756,'NR_037465','MIR3714'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',160483128,160483217,'NR_037483','MIR3919'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',101165847,101165932,'NR_037486','MIR3921'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',55861559,55861662,'NR_037502','MIR3938'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49032584,49032671,'NR_029948','MIR425'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15512749,15512819,'NR_036232','MIR4270'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49286556,49286623,'NR_036233','MIR4271'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',67358577,67358641,'NR_036234','MIR4272'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',75870120,75870204,'NR_036235','MIR4273'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',25681367,25681434,'NR_039644','MIR4442'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48213057,48213110,'NR_039645','MIR4443'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',114796412,114796479,'NR_039648','MIR4446'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50687514,50687598,'NR_039950','MIR4787'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',135639358,135639438,'NR_039951','MIR4788'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',176570022,176570104,'NR_039952','MIR4789'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',5266861,5266940,'NR_039953','MIR4790'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',19331343,19331427,'NR_039954','MIR4791'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',24537856,24537930,'NR_039955','MIR4792'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48656630,48656717,'NR_039956','MIR4793'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',87358028,87358117,'NR_039958','MIR4795'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',115944981,115945062,'NR_039959','MIR4796'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198505145,198505216,'NR_039960','MIR4797'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',152830009,153025084,'NR_031678','MIR548H2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',126991936,126992085,'NR_031687','MIR548I1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',169752335,169752431,'NR_030294','MIR551B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15890281,15890360,'NR_030289','MIR563'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44878383,44878477,'NR_030290','MIR564'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113314337,113314435,'NR_030292','MIR567'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',115518011,115518106,'NR_030293','MIR568'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',172307146,172307242,'NR_030295','MIR569'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',196911451,196911548,'NR_030296','MIR570'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48591338,48591414,'NR_031756','MIR711'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10411172,10411246,'NR_030614','MIR885'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198885763,198885844,'NR_030627','MIR922'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',191030404,191030492,'NR_030642','MIR944'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52277333,52277417,'NR_029660','MIRLET7G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',70068440,70100178,'NM_198178','MITF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',12573593,12600210,'NM_014160','MKRN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',159771646,159806943,'NM_001195434','MLF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',37010271,37067341,'NM_001167618','MLH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',156280646,156384212,'NM_007288','MME'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39484073,39542861,'NR_003090','MOBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49921305,49942449,'NM_032355','MON1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',110159776,110319683,'NM_014429','MORC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',139549314,139607067,'NM_012219','MRAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',132663734,132704550,'NM_007208','MRPL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',180788948,180805128,'NM_177988','MRPL47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',140545550,140558577,'NM_020191','MRPS22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15065022,15081820,'NM_022497','MRPS25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',137350449,137396000,'NM_001145417','MSL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49696383,49701200,'NM_020998','MST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49899439,49916310,'NM_002447','MST1R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9666116,9719078,'NM_022485','MTMR14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',126106978,126136285,'NM_033049','MUC13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',196933423,196950211,'NM_152673','MUC20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',196959308,197023241,'NM_004532','MUC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52842170,52844275,'NM_205853','MUSTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38154972,38159516,'NM_001172569','MYD88'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',109581905,109730859,'NM_014981','MYH15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46874360,46879977,'NM_000258','MYL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',124813832,124822220,'NM_053032','MYLK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',124787092,124832356,'NR_038266','MYLK-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',170973546,170990198,'NM_018657','MYNN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39826306,40276815,'NM_015460','MYRIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',114917996,114947810,'NM_025146','NAA50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',176059804,177006122,'NM_207015','NAALADL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50308836,50311856,'NM_012191','NAT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46996176,47026197,'NM_015175','NBEAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198146669,198153861,'NM_001042540','NCBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',173831128,173911702,'NM_001146277','NCEH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',138132006,138150658,'NM_001190796','NCK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48686281,48698338,'NM_016453','NCKIPSD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49033621,49035930,'NM_199073','NDUFAF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',121797817,121803948,'NM_001168331','NDUFB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',180805268,180824982,'NM_001199957','NDUFB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',27232100,27385916,'NM_199347','NEK10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',132228383,132551999,'NM_024800','NEK11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52719835,52780005,'NM_003157','NEK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',103051047,103062559,'NM_031419','NFKBIZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',25735438,25799993,'NM_001145293','NGLY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49434769,49441761,'NM_032316','NICN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52464563,52502128,'NM_007184','NISCH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',101536251,101557168,'NM_020202','NIT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',23908575,23933541,'NM_020345','NKIRAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42617150,42665237,'NM_005385','NKTR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',174598937,175483810,'NM_014932','NLGN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',162421792,162452489,'NM_015938','NMD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48310592,48317852,'NM_005793','NME6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',139462968,139531418,'NM_178130','NME9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',140761712,140879575,'NM_001200047','NMNAT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',133882142,133923993,'NM_153240','NPHP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',133759671,133923993,'NR_037804','NPHP3-ACAD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',133923875,134075740,'NR_002811','NPHP3-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50359922,50363490,'NM_006545','NPRL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',23962615,23997113,'NM_001145425','NR1D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120982020,121020022,'NM_033013','NR1I2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',14964239,15065784,'NM_003298','NR2C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47028035,47029961,'NR_024046','NRADDP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',95264544,95328320,'NM_022072','NSUN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52533424,52542833,'NM_001134231','NT5DC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',132583314,132590364,'NR_033268','NUDT16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',132563378,132566656,'NR_002949','NUDT16P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',13332736,13436809,'NM_024923','NUP210'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127863613,127873472,'NR_034158','NUP210P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9766627,9783353,'NM_016827','OGG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',194793626,194898294,'NM_130831','OPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99288706,99289636,'NM_054106','OR5AC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99334231,99335173,'NM_001005338','OR5H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99350919,99351852,'NM_001005514','OR5H14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99370233,99371175,'NM_001005515','OR5H15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99484421,99485366,'NM_001005482','OR5H2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99465818,99466796,'NM_001005479','OR5H6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99671110,99672062,'NM_001004736','OR5K1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99699214,99700165,'NM_001004737','OR5K2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99592199,99593165,'NM_001005516','OR5K3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99555387,99556353,'NM_001005517','OR5K4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',31677320,31998346,'NM_017784','OSBPL10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',126730391,126797071,'NM_022776','OSBPL11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197427779,197444698,'NM_152672','OSTalpha'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',192413015,192450604,'NM_198184','OSTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',162697289,162704424,'NM_001080440','OTOL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',16281670,16322598,'NM_138381','OXNAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',25806566,25811029,'NR_026937','OXSM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38182029,38271983,'NM_005109','OXSR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',8767094,8786300,'NM_000916','OXTR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',154035425,154038533,'NM_002563','P2RY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',152538065,152585234,'NM_022788','P2RY12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',152526785,152530027,'NM_176894','P2RY13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',152412594,152478920,'NM_014879','P2RY14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49002344,49019585,'NM_177938','P4HTM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',158009753,158012504,'NR_003284','PA2G4P4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197951124,198043915,'NM_002577','PAK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',144162763,144164868,'NM_198504','PAQR9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185029866,185085387,'NM_018622','PARL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123882361,123932377,'NM_017554','PARP14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123817214,123838226,'NM_152615','PARP15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51951400,51957923,'NM_005485','PARP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123733309,123765884,'NM_001146106','PARP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52554407,52694906,'NM_018313','PBRM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51966509,51976522,'NM_033008','PCBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',137451856,137531703,'NM_001178014','PCCB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',102775731,102795971,'NM_020357','PCNP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',144019391,144090735,'NM_013363','PCOLCE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197449649,197498981,'NM_005017','PCYT1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',168884388,168935288,'NM_007217','PDCD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',33815069,33843760,'NR_027868','PDCD6IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',57517020,57522808,'NM_177966','PDE12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',58388396,58394619,'NM_001173468','PDHB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',124268545,124363643,'NM_006810','PDIA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',73514341,73756762,'NM_015009','PDZRN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',181000743,181237211,'NM_016559','PEX5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48530120,48569231,'NM_004567','PFKFB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',151165380,151171431,'NM_053024','PFN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',171288061,171382231,'NM_024947','PHC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52419566,52432697,'NM_173341','PHF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113060716,113178054,'NM_001134438','PHLDB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197923641,197947273,'NM_001166304','PIGX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198157610,198180101,'NM_025163','PIGZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',180349004,180435191,'NM_006218','PIK3CA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',139856920,139960875,'NM_006219','PIK3CB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',131880467,131948386,'NM_014602','PIK3R4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',140434523,140435054,'NR_027070','PISRT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120799384,120831348,'NM_015900','PLA1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38023990,38041282,'NM_001130964','PLCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',156680364,156876799,'NM_001130960','PLCH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',16901455,17107102,'NM_001144382','PLCL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',112876212,113047984,'NM_001185106','PLCXD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',172800888,173010978,'NM_002662','PLD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',147269917,147361972,'NM_000935','PLOD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',143858428,143915195,'NM_001172312','PLS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',147715656,147745318,'NM_021105','PLSCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',147633764,147696468,'NM_001199979','PLSCR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',147392813,147451656,'NR_033438','PLSCR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',147786314,147806693,'NM_001085420','PLSCR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',128190126,128238925,'NM_032242','PLXNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48420264,48445876,'NM_002673','PLXNB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130756745,130808272,'NM_015103','PLXND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52084288,52163746,'NM_001161580','POC1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',128830728,128874342,'NM_015720','PODXL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120670474,120696244,'NR_024265','POGLUT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',122632962,122747543,'NM_199420','POLQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185563887,185569057,'NM_006232','POLR2H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120843597,120862094,'NM_022135','POPDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',87391472,87408427,'NM_001122757','POU1F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',19996456,20028769,'NR_027694','PP2D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',12304348,12450855,'NM_138712','PPARG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',161956689,162271511,'NM_139245','PPM1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52255225,52259655,'NM_001122870','PPM1M'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',196722509,196751513,'NM_006241','PPP1R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',137224266,137349442,'NM_181897','PPP2R3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',73128808,73197701,'NM_174907','PPP4R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',64054565,64186171,'NM_198859','PRICKLE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48763096,48860274,'NM_004157','PRKAR2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',53170262,53201773,'NM_212539','PRKCD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',171422913,171506464,'NM_002740','PRKCI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',71903495,71917047,'NM_021935','PROK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',95074570,95175624,'NM_000313','PROS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',140205493,140207800,'NM_001134659','PRR23A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',140220562,140222458,'NM_001013650','PRR23B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',140243633,140246424,'NM_001134657','PRR23C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9962225,9969078,'NM_207351','PRRT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46846897,46850589,'NM_182702','PRSS42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46758584,46761249,'NM_199183','PRSS45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46736076,46752925,'NM_001205271','PRSS46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46728609,46734377,'NM_013270','PRSS50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185499715,185509534,'NM_002808','PSMD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',63971270,63984160,'NM_014814','PSMD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46898742,46920293,'NM_001184744','PTH1R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',124696052,124786614,'NM_198402','PTPLB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47397494,47429935,'NM_015466','PTPN23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',61522282,62255613,'NM_002841','PTPRG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',158637273,158644111,'NM_002852','PTX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',112273295,112339097,'NM_001243286','PVRL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',112246852,112271496,'NR_045114','PVRL3-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',58293656,58385918,'NM_017771','PXK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',192661645,192661939,'NM_001083308','PYDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49108368,49117175,'NM_005051','QARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49042145,49106508,'NM_017730','QRICH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',115258300,115289958,'NM_024638','QTRTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130289101,130323455,'NM_001204885','RAB43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',19963575,20001671,'NM_004162','RAB5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',135025769,135097381,'NM_016577','RAB6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',129927668,130016331,'NM_004637','RAB7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',121888217,121944074,'NM_173825','RABL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',8893879,8980159,'NM_020165','RAD18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51550635,51672652,'NM_015106','RAD54L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',12600099,12680700,'NM_002880','RAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',154362718,154368953,'NM_002886','RAP2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',25444757,25614426,'NM_016152','RARB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',159905133,159932969,'NM_002888','RARRES1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',142688615,142813887,'NM_006506','RASA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50342220,50353371,'NM_007182','RASSF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51403738,51410376,'NM_013286','RBM15B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50101355,50131396,'NM_005778','RBM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49952480,50089689,'NM_005777','RBM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',29297806,30026890,'NM_001003793','RBMS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',140718965,140741361,'NM_002899','RBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',140654415,140678042,'NM_004164','RBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',109957175,109958820,'NM_032579','RETNLB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187990375,188007178,'NM_181573','RFC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',53097540,53139510,'NM_052859','RFT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',16332355,16530226,'NM_015150','RFTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',102763401,102767779,'NM_017819','RG9MTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130730171,130736877,'NM_000539','RHO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49371582,49424530,'NM_001664','RHOA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49701993,49733966,'NM_022064','RNF123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',151013164,151162615,'NM_007282','RNF13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197680053,197715036,'NM_152617','RNF168'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',142939740,142948335,'NM_014245','RNF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',78729077,79899749,'NM_002941','ROBO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',77171983,77781804,'NM_002942','ROBO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',125170568,125192889,'NM_017578','ROPN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127170717,127184986,'NM_001012337','ROPN1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',40473804,40478863,'NM_003973','RPL14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',23933642,23937336,'NM_002948','RPL15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',172065358,172070739,'NM_001099645','RPL22L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',102882623,102888253,'NM_000986','RPL24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52002683,52004998,'NM_000992','RPL29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',12851443,12858081,'NM_000994','RPL32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130584366,130600972,'NR_003111','RPL32P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',199161448,199167118,'NM_000996','RPL35A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',188321434,188339957,'NM_052969','RPL39L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',129821502,129852409,'NM_002950','RPN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',58267013,58280960,'NM_007042','RPP14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39423207,39429036,'NM_002295','RPSA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9854532,9860702,'NM_173659','RPUSD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51942485,51950962,'NM_004704','RRP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',159310585,159745270,'NM_016625','RSRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',188397967,188401947,'NM_153708','RTP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',188898740,188903039,'NM_001004312','RTP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46514488,46517443,'NM_031440','RTP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',188568861,188572063,'NM_022147','RTP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',129282489,129325361,'NM_003707','RUVBL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',72506433,72578464,'NM_012234','RYBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',135358667,135452276,'NM_002958','RYK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',45705757,45761904,'NM_014016','SACM1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',171112175,171139642,'NM_182610','SAMD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',18364136,18441833,'NM_001195470','SATB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47430187,47492449,'NM_012235','SCAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',161715388,161715718,'NR_003001','SCARNA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',160473729,161097849,'NM_001197108','SCHIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38713840,38810505,'NM_006514','SCN10A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38862263,38967056,'NM_014139','SCN11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38564556,38666167,'NM_001099404','SCN5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197171188,197201547,'NR_003264','SDHAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',196870090,196900916,'NR_003265','SDHAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10317614,10337855,'NM_183352','SEC13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',124403463,124475672,'NM_012430','SEC22A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42564462,42598524,'NM_001201584','SEC22C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',129253901,129273216,'NM_013336','SEC61A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',171167273,171198855,'NM_003262','SEC62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',53894265,53901029,'NM_021237','SELK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',151803755,151830924,'NM_016275','SELT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50280043,50289576,'NM_004636','SEMA3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50167851,50201512,'NM_004186','SEMA3F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52442307,52454083,'NM_020163','SEMA3G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',124110732,124229266,'NM_001031702','SEMA5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',186786724,186831579,'NM_021627','SENP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',198079123,198145981,'NM_152699','SENP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',102525807,102714775,'NM_020654','SENP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',151742469,151747118,'NM_014445','SERP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',168936125,169026051,'NM_001122752','SERPINI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',168642416,168674512,'NM_006217','SERPINI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47032901,47180471,'NM_014159','SETD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9414402,9494838,'NM_001080517','SETD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',4319987,4333949,'NM_006515','SETMAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52912622,53055129,'NM_016329','SFMBT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',20177088,20202728,'NM_001199257','SGOL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15271360,15349108,'NM_004844','SH3BP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48484200,48516665,'NM_016479','SHISA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',159296493,159306646,'NM_003030','SHOX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',72881117,72980288,'NM_018130','SHQ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',166179379,166278977,'NM_001041','SI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',151941599,151963953,'NM_005067','SIAH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',114733907,114831112,'NM_017699','SIDT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',171558166,171593644,'NM_001145098','SKIL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',126284169,126412933,'NM_001195483','SLC12A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123095860,123145724,'NM_001145998','SLC15A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38282301,38294810,'NM_004256','SLC22A13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38322448,38334863,'NM_004803','SLC22A14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48869359,48911430,'NM_000387','SLC25A20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',66094324,66512041,'NM_173471','SLC25A26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',142143351,142181475,'NM_018155','SLC25A36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39399818,39413823,'NM_017875','SLC25A38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48638159,48647930,'NM_134263','SLC26A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',172196830,172227462,'NM_000340','SLC2A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',157026994,157054942,'NM_004733','SLC33A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113763584,113785693,'NM_017945','SLC35A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50217695,50233410,'NM_006841','SLC38A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127207889,127285824,'NM_017836','SLC41A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',27389217,27473249,'NM_003615','SLC4A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',11009419,11055935,'NM_003042','SLC6A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10832916,10955146,'NM_014229','SLC6A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',45771944,45813039,'NM_020208','SLC6A20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',14419109,14464697,'NM_001134368','SLC6A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',171660035,171786557,'NM_020949','SLC7A14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113342441,113495764,'NM_183061','SLC9A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',144466753,145050063,'NM_173653','SLC9A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',135134229,135231610,'NM_005630','SLCO2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',166387201,166397163,'NM_014926','SLITRK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',57718213,57889934,'NM_007159','SLMAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',47602381,47798409,'NM_003074','SMARCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',161600123,161635435,'NM_001002800','SMC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',192078412,192078533,'NR_024343','SNAR-I'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187988095,187988232,'NR_002588','SNORA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',132680531,132680767,'NR_002985','SNORA58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39424885,39425034,'NR_002325','SNORA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39427548,39427702,'NR_002324','SNORA62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187987781,187987916,'NR_002586','SNORA63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',12856810,12856949,'NR_002582','SNORA7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130598742,130598881,'NR_002992','SNORA7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187987157,187987335,'NR_002989','SNORA81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52698295,52698371,'NR_003047','SNORD19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52699793,52699886,'NR_003687','SNORD19B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187985278,187985348,'NR_002587','SNORD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185526177,185526253,'NR_003055','SNORD66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52701791,52701868,'NR_003057','SNORD69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',43303007,43367638,'NM_017719','SNRK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',63613383,63625931,'NM_001080537','SNTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',126648183,126721748,'NM_003794','SNX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',138965823,138967862,'NM_004189','SOX14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',182912405,182914917,'NM_003106','SOX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',182810844,182941699,'NR_004053','SOX2-OT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',57069508,57084500,'NM_181727','SPATA12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',174089840,174341752,'NM_031955','SPATA16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52714896,52717237,'NM_014041','SPCS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',114644254,114716724,'NM_144718','SPICE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48323339,48344835,'NM_001080525','SPINK8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',142253432,142350143,'NM_080862','SPSB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',162545273,162572565,'NM_001040100','SPTSSB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',8997277,9266311,'NM_014850','SRGAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',134985566,135023026,'NM_021203','SRPRB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42607301,42611494,'NM_016305','SS18L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',157740622,157755667,'NM_007107','SSR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',188869387,188870895,'NM_001048','SST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',99934261,99995926,'NM_006100','ST3GAL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',188131008,188279035,'NM_173217','ST6GAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52504395,52533551,'NM_015136','STAB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',36397100,36564500,'NM_003149','STAC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',137538688,137953935,'NM_005862','STAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',31549494,31652560,'NM_178862','STT3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',95215904,95230144,'NM_001001850','STX19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',122109739,122626298,'NM_014980','STXBP5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',67493573,67787728,'NM_001177599','SUCLG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',153074120,153082566,'NM_033050','SUCNR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',4377828,4483966,'NM_182760','SUMF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',33166540,33235711,'NM_015551','SUSD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',12020861,12208532,'NM_133625','SYN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',63238953,63577637,'NM_001130003','SYNPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9799811,9809420,'NM_133480','TADA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113200275,113215425,'NM_013259','TAGLN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',11806918,11863352,'NM_138807','TAMM41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10265176,10297906,'NM_014760','TATDN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',101462375,101526784,'NM_018309','TBC1D23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',17173657,17757403,'NM_014744','TBC1D5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187746549,187767835,'NM_018138','TBCCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',178221235,178397742,'NM_024665','TBL1XR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49424642,49428913,'NM_022171','TCTA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197502486,197529562,'NM_152773','TCTEX1D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46591048,46598956,'NM_001174136','TDGF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',170965091,170965542,'NR_001566','TERC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51680261,51713379,'NM_001129884','TEX264'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',134947666,134980540,'NM_001063','TF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',143145959,143230197,'NM_006286','TFDP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',101911075,101950501,'NM_001195478','TFG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197260551,197293358,'NM_003234','TFRC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',30622997,30710637,'NM_003242','TGFBR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44891101,44931092,'NM_003241','TGM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',63794585,63824637,'NM_025075','THOC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185572466,185578626,'NM_001177597','THPO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',24133648,24511317,'NM_001128177','THRB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9379716,9403475,'NM_015453','THUMPD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',115495522,115511825,'NM_173799','TIGIT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120700057,120725815,'NM_016589','TIMMDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',12169567,12175851,'NM_003256','TIMP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',157874898,157907251,'NM_015508','TIPARP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',157873653,157876196,'NR_027954','TIPARP-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',53234692,53265170,'NM_001064','TKT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52230135,52235219,'NM_017442','TLR9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150569494,150578258,'NM_014220','TM4SF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150518974,150533949,'NM_001184723','TM4SF18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197534813,197549688,'NM_001204898','TM4SF19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197527352,197549688,'NR_037950','TM4SF19-TCTEX1D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150675057,150703871,'NM_004617','TM4SF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',130849324,131095109,'NM_001128224','TMCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',134239860,134599309,'NM_023943','TMEM108'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52845811,52906637,'NM_198563','TMEM110'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52842170,52906637,'NM_001198974','TMEM110-MUSTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9980635,10003522,'NM_018447','TMEM111'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50367183,50371943,'NM_007024','TMEM115'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',153540176,153541469,'NM_001123228','TMEM14E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',45240959,45242818,'NM_015444','TMEM158'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',191629139,191650359,'NM_207316','TMEM207'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',173043832,173059802,'NM_001164436','TMEM212'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',138020550,138057424,'NM_001097600','TMEM22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',101387357,101391728,'NR_028358','TMEM30C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120632390,120665161,'NM_018266','TMEM39A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',12750391,12775808,'NM_018306','TMEM40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',186690082,186699539,'NM_080652','TMEM41A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44878411,44882158,'NM_144638','TMEM42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',14141440,14160181,'NM_024334','TMEM43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',195789690,195835439,'NM_001166305','TMEM44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',101694152,101778975,'NM_018004','TMEM45A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48633278,48634193,'NM_001008269','TMEM89'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',69151667,69184174,'NM_007114','TMF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46717826,46727417,'NM_147196','TMIE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',33106911,33113297,'NM_001136238','TMPPE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',113241154,113282806,'NR_026734','TMPRSS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',173705991,173723991,'NR_033994','TNFSF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',172262985,172660891,'NM_001161563','TNIK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197074632,197106829,'NM_001010938','TNK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52460146,52463097,'NM_003280','TNNC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',101564996,101602915,'NM_014820','TOMM70A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',25614478,25680792,'NM_001068','TOP2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',134802138,134863427,'NM_007027','TOPBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',190831909,191081978,'NM_001114979','TP63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',128774604,128792186,'NM_001136053','TPRA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',190372456,190523965,'NM_198485','TPRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',13953807,14082482,'NR_002223','TPRXL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',187115051,187138618,'NM_004593','TRA2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49841031,49868996,'NM_005879','TRAIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42176664,42229113,'NM_014965','TRAK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',36843311,36961552,'NM_014831','TRANK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',110024320,110056404,'NM_016388','TRAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48482232,48484048,'NM_033629','TREX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',131175803,131179469,'NM_007117','TRH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',141879555,141902682,'NM_152616','TRIM42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',161635984,161650320,'NM_173084','TRIM59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',32834513,32908775,'NM_001039111','TRIM71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',3143599,3165706,'NM_182916','TRNT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',143925955,144009419,'NM_003304','TRPC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',151609477,151660305,'NM_014779','TSC22D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',12501009,12547512,'NM_001145395','TSEN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',181802611,181811612,'NM_133462','TTC14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39124155,39155398,'NM_145755','TTC21A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',9826643,9853040,'NM_001025930','TTLL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50337344,50340672,'NM_007275','TUSC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52237665,52248223,'NM_007284','TWF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127808584,127856657,'NM_001173513','TXNRD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127773311,127810088,'NM_001039783','TXNRD3NB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',144203061,144262257,'NM_001080415','U2SURP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',69186570,69212214,'NM_003968','UBA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',133855979,133879634,'NM_198329','UBA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49817641,49826395,'NM_003335','UBA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',23822387,23908135,'NM_003341','UBE2E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',23219787,23607300,'NM_152653','UBE2E2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',33404831,33456874,'NM_014517','UBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197564765,197643742,'NM_015562','UBXN7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48574154,48576205,'NM_033199','UCN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',41263093,41978664,'NM_017886','ULK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',125931902,125950809,'NR_033437','UMPS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',120375114,120406690,'NM_006952','UPK1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48611435,48622102,'NM_003365','UQCRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127682697,127719306,'NM_001165974','UROC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',180853626,180989883,'NM_003940','USP13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49120482,49133375,'NM_001199161','USP19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49289580,49352540,'NM_199443','USP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',192467637,192531019,'NM_198152','UTS2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',21422221,21423181,'NR_002311','VENTXP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',158660103,158704109,'NM_001167916','VEPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',87069812,87122947,'NM_016206','VGLL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',11572543,11598836,'NM_001128220','VGLL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',10158318,10170354,'NM_000551','VHL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38010081,38023680,'NM_015873','VILL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42519107,42554069,'NM_004624','VIPR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',51408337,51509058,'NM_001171904','VPRBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',186012624,186253096,'NM_015303','VPS8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',185431010,185442811,'NM_138345','VWA5B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39068510,39112885,'NM_020839','WDR48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',168679166,168853983,'NM_178824','WDR49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',114488466,114643051,'NM_001164496','WDR52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197765455,197779810,'NM_182627','WDR53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',123613389,123617572,'NM_019069','WDR5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',49019640,49028390,'NM_018031','WDR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',52263477,52287699,'NM_025222','WDR82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',55474782,55496371,'NM_003392','WNT5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',13835082,13896619,'NM_004625','WNT7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150717711,150858578,'NM_015472','WWTR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',150858686,150861839,'NR_040250','WWTR1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',46037294,46043983,'NM_005283','XCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',39199709,39209089,'NM_001198621','XIRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',14161648,14195176,'NM_001145769','XPC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',143508138,143649543,'NM_019001','XRN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',38363254,38431471,'NM_005108','XYLB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',184898299,185013107,'NM_018023','YEATS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',168440770,168580779,'NM_001199201','ZBBX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',112794436,112796872,'NM_024508','ZBED2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',102850972,102878678,'NM_014415','ZBTB11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',115539636,116348817,'NM_015642','ZBTB20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',115553347,115590515,'NR_038993','ZBTB20-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',142525744,142651322,'NM_001080412','ZBTB38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42670179,42684076,'NM_145166','ZBTB47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',28406990,28541636,'NM_001040432','ZCWPW2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',197408719,197422697,'NM_001039617','ZDHHC19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',115149437,115164517,'NM_173570','ZDHHC23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44931756,44992678,'NM_016598','ZDHHC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',15086583,15115659,'NM_022340','ZFYVE20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',148609870,148617196,'NM_003412','ZIC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',148586524,148607286,'NM_032153','ZIC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',180217706,180272350,'NM_022470','ZMAT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',50353540,50358160,'NM_015896','ZMYND10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',126427202,126576888,'NM_021964','ZNF148'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44571716,44588654,'NM_018651','ZNF167'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44641514,44661756,'NM_006991','ZNF197'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44665236,44677287,'NM_003420','ZNF35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',21437493,21767820,'NM_024697','ZNF385D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44456265,44494166,'NM_181489','ZNF445'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44746127,44753579,'NM_145044','ZNF501'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44729138,44740327,'NM_001134442','ZNF502'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',48257599,48287483,'NM_016089','ZNF589'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',40493636,40505073,'NM_001145083','ZNF619'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',40522533,40534203,'NR_024114','ZNF620'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',40541379,40556047,'NM_001098414','ZNF621'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',180524244,180536014,'NM_016331','ZNF639'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',88270951,88276504,'NM_018293','ZNF654'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',44601459,44612561,'NM_173658','ZNF660'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',42922405,42935829,'NM_207404','ZNF662'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',75868718,75916945,'NM_001128223','ZNF717'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',115436169,115439115,'NM_007136','ZNF80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',31998269,32008232,'NM_001137674','ZNF860'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',103636548,103681375,'NM_175056','ZPLD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3',127639133,127677452,'NM_025112','ZXDC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3_',664914,670974,'NM_001100168','CCR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr3_',701979,704273,'NM_003965','CCRL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',110570567,110574422,'NR_039978','1/2-SBSRNA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',171217947,171247758,'NM_016228','AADAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',56899213,56948395,'NM_181806','AASDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',409223,457998,'NR_002451','ABCA11P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',146238605,146270126,'NM_002940','ABCE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',89230439,89299035,'NM_004827','ABCG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8059647,8211459,'NM_001130088','ABLIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',156970330,157006875,'NM_017419','ACCN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8418908,8493352,'NM_001101667','ACOX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',185913742,185984209,'NM_001995','ACSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',123520044,123570397,'NM_001159285','ADAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',176076083,176135906,'NM_014269','ADAM29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',73365549,73653380,'NM_014243','ADAMTS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2815381,2901600,'NM_176801','ADD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100416545,100431208,'NM_000667','ADH1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100446549,100461595,'NM_000668','ADH1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100476671,100492940,'NM_000669','ADH1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100263855,100284472,'NM_000670','ADH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100211152,100228954,'NM_000671','ADH5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100342817,100359426,'NM_001102470','ADH6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100552440,100575690,'NM_000673','ADH7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',3738093,3740051,'NM_000683','ADRA2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',7811339,7992553,'NM_001134647','AFAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',7806716,7831554,'NR_026892','AFAP1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',88147176,88281215,'NM_005935','AFF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',74566325,74588582,'NM_001133','AFM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',74520796,74540356,'NM_001134','AFP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',178588922,178600651,'NM_001171988','AGA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',84676676,84746050,'NM_032717','AGPAT9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',109882650,109903684,'NM_001146590','AGXT2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',107457112,107489830,'NM_001142416','AIMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',74488835,74505993,'NM_000477','ALB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113437947,113583213,'NM_001102406','ALPK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71492563,71507593,'NM_016519','AMBN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71418886,71433048,'NM_212557','AMTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',146135759,146238818,'NM_014885','ANAPC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',24987945,25029218,'NM_013367','ANAPC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113958687,114524345,'NM_001127493','ANK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',74159365,74343366,'NM_032217','ANKRD17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186554833,186558384,'NM_181726','ANKRD37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',125804656,125853337,'NM_001167882','ANKRD50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',78035105,78038026,'NM_001029870','ANKRD56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',165337608,165338313,'NM_012403','ANP32C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',81041794,81213501,'NM_058172','ANTXR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',169250262,169345468,'NM_007193','ANXA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',154448070,154449413,'NR_001562','ANXA2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',79691765,79750629,'NM_005139','ANXA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',122808601,122837597,'NM_001154','ANXA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113372343,113410660,'NM_001128426','AP1AR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',40506800,40553966,'NM_001166054','APBB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',35744014,35922374,'NM_015230','ARAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',75529716,75539590,'NM_001657','AREG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',153920561,154052513,'NM_014447','ARFIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',148872902,149213377,'NM_024605','ARHGAP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',86918874,87142847,'NM_001042669','ARHGAP24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',106693225,106772286,'NM_017700','ARHGEF38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',57066131,57084815,'NM_206919','ARL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',115040888,115120327,'NM_024590','ARSJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77214886,77252979,'NM_001179','ART3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',177371819,177427367,'NM_080874','ASB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',94969100,94970165,'NM_005172','ATOH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',47182166,47290260,'NM_020453','ATP10D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',656224,658127,'NR_033743','ATP5I'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',42105148,42353879,'NM_006095','ATP8A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',102930786,103214992,'NM_001127507','BANK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',123873306,123885548,'NM_001178007','BBS12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',122964933,123011102,'NM_176824','BBS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',104218230,104240473,'NM_020139','BDH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',41807626,41849652,'NM_001159547','BEND4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',79916555,80019618,'NM_017593','BMP2K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',82171142,82197709,'NM_001201','BMP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',95898150,96298624,'NM_001203','BMPR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',13179463,13238426,'NM_148894','BOD1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',15313670,15342894,'NM_004334','BST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',75890471,75938906,'NM_001729','BTC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',15038726,15056889,'NM_031911','C1QTNF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2907075,2922592,'NR_015453','C4orf10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',83753289,83761614,'NR_024087','C4orf11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',57524272,57538583,'NM_032313','C4orf14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100651183,100682483,'NM_032149','C4orf17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',37262249,37271527,'NM_018302','C4orf19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113679937,113777600,'NM_018392','C4orf21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',81475897,82103934,'NM_152770','C4orf22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',76700281,76710127,'NM_001206981','C4orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',170887193,170915668,'NM_017867','C4orf27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',129105910,129171905,'NM_001039717','C4orf29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',120437021,120445048,'NM_001170330','C4orf3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113286001,113329686,'NM_152400','C4orf32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',130234278,130253293,'NM_173487','C4orf33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',39228940,39316876,'NM_174921','C4orf34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',88016381,88032599,'NM_144645','C4orf36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',98699047,99283414,'NM_174952','C4orf37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',184255167,184257346,'NR_024008','C4orf38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',166097549,166099723,'NM_153027','C4orf39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71054492,71066915,'NM_214711','C4orf40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',184817439,184871739,'NM_021942','C4orf41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1233227,1236795,'NR_033339','C4orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',164635122,164661141,'NM_018352','C4orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',3220564,3228140,'NM_001042690','C4orf44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',160034133,160175783,'NM_152543','C4orf45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',159807280,159812652,'NM_001008393','C4orf46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186587538,186607815,'NM_001114357','C4orf47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2013574,2015495,'NM_001141936','C4orf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',140406766,140420942,'NM_032623','C4orf49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',146820805,146873398,'NM_001080531','C4orf51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',25524911,25540599,'NM_001145432','C4orf52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',5577783,5580428,'NM_005750','C4orf6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71126403,71135557,'NM_152997','C4orf7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71235259,71237422,'NM_033122','CABS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',114591636,114902532,'NM_172128','CAMK2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',185785843,185807623,'NM_004346','CASP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',110829233,110844078,'NM_001226','CASP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',170145316,170168043,'NM_032783','CBR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',15080586,15212278,'NM_001080522','CC2D2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',110700803,110828321,'NM_017918','CCDC109B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186603329,186629907,'NM_152775','CCDC110'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',185807760,185853106,'NM_152683','CCDC111'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',24416836,24590924,'NM_173463','CCDC149'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77453215,77547482,'NM_001042784','CCDC158'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',7093477,7095629,'NM_153376','CCDC96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',26092115,26101140,'NM_000730','CCKAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',122957048,122964538,'NM_001237','CCNA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',78297380,78310237,'NM_004354','CCNG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',78188198,78216149,'NM_006835','CCNI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',140156392,140186543,'NM_012118','CCRN4L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',15389028,15459804,'NM_001775','CD38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',76720727,76774745,'NM_003948','CDKL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',184602782,184606043,'NM_017632','CDKN2AIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',85723080,85791517,'NM_001263','CDS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68020583,68093851,'NM_001812','CENPC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',104246411,104339015,'NM_001813','CENPE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',56509793,56594284,'NM_025009','CEP135'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',119656942,119694807,'NR_003135','CEP170P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',175441629,175491106,'NM_001145314','CEP44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',123870793,123873063,'NR_024041','CETN4P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',110881296,110942784,'NM_000204','CFI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',54570714,54625572,'NM_012110','CHIC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',40032225,40051730,'NM_017581','CHRNA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',104009575,104033412,'NM_001008388','CISD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',170778246,170880913,'NM_001829','CLCN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',184476213,184478921,'NM_001111319','CLDN22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',184479910,184480573,'NM_001185149','CLDN24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',141529056,141568265,'NM_004362','CLGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',10100935,10295484,'NM_052964','CLNK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',55993416,56107754,'NM_004898','CLOCK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',17125885,17137825,'NM_001079827','CLRN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',47632750,47709718,'NM_000087','CNGA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',6768742,6770288,'NM_018366','CNO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',78853564,78959568,'NM_144571','CNOT6L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',109954420,110443248,'NM_198721','COL25A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',47147567,47160433,'NM_017845','COMMD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',84175262,84215995,'NM_016129','COPS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',84404000,84425091,'NM_015697','COQ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',47290774,47534816,'NM_006587','CORIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',74139279,74154336,'NM_173827','COX18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',46431603,46606009,'NM_130902','COX7B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',166519546,166638932,'NM_001873','CPE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',14613395,14680875,'NM_001177381','CPEB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',768744,809945,'NM_006651','CPLX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8645286,8672388,'NM_003652','CPZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1375339,1379782,'NM_175918','CRIPAK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',5873391,5941216,'NM_001313','CRMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70831387,70846877,'NM_001890','CSN1S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70967691,70985577,'NR_003720','CSN1S2AP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71033909,71047010,'NR_033311','CSN1S2BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70855562,70861315,'NM_001891','CSN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71142921,71151734,'NM_005212','CSN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1195227,1232908,'NM_001328','CTBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',157064719,157094498,'NM_001334','CTSO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',48683021,48758852,'NM_025087','CWH43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',74953972,74955819,'NM_001511','CXCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77161292,77163713,'NM_001565','CXCL10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77173863,77176374,'NM_005409','CXCL11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',78651930,78752014,'NM_006419','CXCL13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',75181617,75183861,'NM_002089','CXCL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',75121175,75123354,'NM_002090','CXCL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',75080222,75083280,'NM_002994','CXCL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',74921136,74923341,'NM_002993','CXCL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77141646,77147665,'NM_002416','CXCL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',105612791,105631916,'NM_025212','CXXC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',109072165,109094062,'NM_183075','CYP2U1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',187349667,187371611,'NM_207352','CYP4V2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',5067214,5072098,'NM_018659','CYTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',4438883,4471685,'NM_014392','D4S234E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100957003,101010369,'NM_014395','DAPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',17411375,17421479,'NM_017741','DCAF16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',41678469,41683241,'NM_001029955','DCAF4L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',155627044,155632380,'NM_001142553','DCHS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',72078128,72115493,'NM_000788','DCK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',151218875,151398058,'NM_001040261','DCLK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',184048237,184075624,'NM_001921','DCTD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',52404032,52477760,'NM_015115','DCUN1D4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',101326049,101330678,'NM_145244','DDIT4L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',169374016,169476533,'NM_017631','DDX60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',169514460,169638213,'NM_001012967','DDX60L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',9055357,9061338,'NM_001040448','DEFB131'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',942674,957344,'NM_001347','DGKQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',24138185,24195282,'NM_001358','DHX15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',153676865,153679865,'NR_033797','DKFZP434I0714'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',108062407,108176902,'NM_014421','DKK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',88790477,88804536,'NM_004407','DMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',101039732,101086902,'NM_001031723','DNAJB14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',3434830,3466007,'NM_173660','DOK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',9392355,9394731,'NM_000798','DRD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',88748704,88757049,'NM_014208','DSPP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',35959638,36023773,'NM_001136536','DTHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',191239324,191240864,'NM_012147','DUX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',191245840,191247457,'NM_033178','DUX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',191242546,191244157,'NM_001127386','DUX4L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',191226073,191227684,'NM_001177376','DUX4L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',148621518,148685556,'NM_001166055','EDNRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',111053488,111153567,'NM_001178130','EGF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100018629,100070809,'NM_001968','EIF4E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',140198320,140225097,'NM_006874','ELF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',141664761,141694374,'NM_153702','ELMOD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',111189677,111339220,'NM_001130721','ELOVL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',101535520,101658273,'NM_016242','EMCN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71713324,71731400,'NM_031889','ENAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',83570749,83601268,'NM_021204','ENOPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',111616677,111703942,'NM_001977','ENPEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',185246852,185376108,'NM_153343','ENPP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',75393067,75398171,'NM_001013442','EPGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',65867875,66218248,'NM_182472','EPHA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',75449723,75473341,'NM_001432','EREG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',53304440,53312564,'NM_001242690','ERVMER34-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',159812726,159849291,'NM_004453','ETFDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',5763824,5866932,'NM_153717','EVC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',5615046,5762176,'NM_001166136','EVC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',56414572,56466001,'NM_178237','EXOC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',122941921,122957626,'NM_005033','EXOSC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',187424111,187447829,'NM_000128','F11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',120457852,120462764,'NM_000134','FABP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',38545748,38623760,'NM_138389','FAM114A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',89866128,90197346,'NM_014883','FAM13A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',89849962,89870277,'NR_002806','FAM13A-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',187302988,187330811,'NM_015398','FAM149A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',152549847,152804234,'NM_001109977','FAM160A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',84601119,84625314,'NM_139076','FAM175A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',17242806,17392233,'NM_015688','FAM184B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',91267706,92742393,'NM_001145065','FAM190A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2596956,2704100,'NM_003704','FAM193A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',159265181,159313652,'NM_001128424','FAM198B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',15292449,15301168,'NM_001145191','FAM200B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77391876,77423960,'NM_001136570','FAM47E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77391876,77451307,'NM_001242939','FAM47E-STBD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1611604,1655786,'NM_001174070','FAM53A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',3994598,4008070,'NR_024253','FAM86EP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',184195811,184198266,'NR_003612','FAM92A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',187745930,187881981,'NM_005245','FAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',126457016,126633537,'NM_024582','FAT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',15215104,15266133,'NR_036464','FBXL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',175394384,175441977,'NM_012180','FBXO8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',153461859,153493560,'NM_018315','FBXW7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',155723729,155731347,'NM_000508','FGA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',155703581,155713365,'NM_005141','FGB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',123967312,124038840,'NM_002006','FGF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',81406765,81431195,'NM_004464','FGF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',15546289,15549069,'NM_005130','FGFBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',15570960,15573957,'NM_031950','FGFBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1764836,1780397,'NM_000142','FGFR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',996251,1010686,'NM_021923','FGFRL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',155744735,155753352,'NM_000509','FGG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',154083584,154120298,'NM_033393','FHDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',53938576,54020860,'NM_001134937','FIP1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',38290716,38342644,'NR_026804','FLJ13197'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',120546125,120551263,'NR_037596','FLJ14186'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',102487956,102489063,'NR_033874','FLJ20021'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',3548393,3562510,'NR_040045','FLJ35424'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',7150051,7156004,'NR_027441','FLJ36777'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',15837383,15868908,'NR_027696','FLJ39653'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',159909631,160047404,'NM_020840','FNIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',79197747,79684447,'NM_025074','FRAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',144718010,144841278,'NM_001168235','FREM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',191098967,191121353,'NM_004477','FRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',191182516,191185406,'NM_001005217','FRG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',48194136,48477073,'NM_015030','FRYL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',162524498,163304636,'NM_001128428','FSTL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68730604,68760783,'NR_015446','FTLP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',76786976,76817367,'NM_012297','G3BP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',144477432,144615168,'NM_207123','GAB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',45946338,46086153,'NM_001114175','GABRA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',46615673,46691181,'NM_000809','GABRA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',46728051,47123204,'NM_000812','GABRB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',45732543,45820839,'NM_173536','GABRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',833064,916174,'NM_005255','GAK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',174326478,174481693,'NM_017423','GALNT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',172971149,174198133,'NM_001034845','GALNTL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',110956114,110965342,'NM_032993','GAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',22303645,22430290,'NM_001128432','GBA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',72826274,72868943,'NM_000583','GC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',80967648,81003425,'NR_026555','GDEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',80546530,80548396,'NM_033214','GK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',166418393,166420625,'NR_026575','GK3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',175799772,175987040,'NM_001042543','GLRA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',158216726,158312692,'NM_000824','GLRB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',44398924,44423369,'NM_138335','GNPDA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68285693,68304399,'NM_000406','GNRHR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',176791081,177160642,'NM_201592','GPM6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',21998096,22126770,'NM_145290','GPR125'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8633190,8640420,'NM_080819','GPR78'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',90384451,90448184,'NM_198281','GPRIN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',158361185,158506676,'NM_000826','GRIA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',93444572,94912672,'NM_001510','GRID2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2935140,3012272,'NM_001004057','GRK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',7112680,7120701,'NM_025196','GRPEL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71900362,71924084,'NM_001098477','GRSF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',42590039,42727432,'NM_001080476','GRXCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',106849389,106988331,'NM_024751','GSTCD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',54661004,54662879,'NM_133267','GSX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',156807311,156862835,'NM_001130687','GUCY1A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',156899575,156948233,'NM_000857','GUCY1B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',44375189,44397454,'NM_021927','GUF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',144700074,144702063,'NR_003675','GUSBP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',145249905,145281354,'NM_002099','GYPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',145136706,145159946,'NM_002100','GYPB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',145011468,145046166,'NM_198682','GYPE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',101088266,101090535,'NM_002106','H2AFZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',109130318,109175780,'NM_001184705','HADH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',174684226,174687953,'NM_021973','HAND2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2199893,2213658,'NM_024511','HAUS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',84547522,84596049,'NM_133636','HELQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186177076,186178920,'NM_001029887','HELT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',89732669,89848709,'NM_014606','HERC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',89597290,89646337,'NM_016323','HERC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',89518914,89583272,'NM_017912','HERC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',3413523,3421011,'NM_001528','HGFAC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',145786597,145879331,'NM_022475','HHIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',174489101,174492170,'NM_002129','HMGB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',83493490,83514173,'NM_031370','HNRNPD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',83562740,83570402,'NM_031372','HNRPDL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',57208910,57242629,'NM_001145460','HOPX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',175647902,175680619,'NR_027332','HPGD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',95438729,95483050,'NM_014485','HPGDS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',84432637,84475330,'NM_006665','HPSE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',11009085,11039635,'NM_005114','HS3ST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',88476714,88531479,'NM_016245','HSD17B11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',88443964,88463080,'NM_001136230','HSD17B13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',190631292,190633338,'NR_036692','HSP90AA4P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',171739195,171762710,'NR_036751','HSP90AA6P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',12944134,12949023,'NR_003132','HSP90AB2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',89032018,89034191,'NR_036694','HSP90AB3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',128922902,128973976,'NM_014278','HSPA4L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70950747,70959148,'NM_002159','HTN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70928718,70936844,'NM_000200','HTN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8322388,8359738,'NM_053044','HTRA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',3046205,3215485,'NM_002111','HTT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',88939725,88952625,'NM_004967','IBSP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',970784,988317,'NM_000203','IDUA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',57592000,57671296,'NM_001553','IGFBP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71740121,71751212,'NM_144646','IGJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',142777198,142874590,'NM_172175','IL15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',123592075,123597100,'NM_000586','IL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',123753232,123761661,'NM_021803','IL21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',74825086,74828297,'NM_000584','IL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',184663213,184669243,'NM_001564','ING2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',143168631,143987054,'NM_001101669','INPP4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',106823233,106849330,'NM_020395','INTS12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',128773536,128857384,'NM_015693','INTU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',185545869,185632720,'NM_002199','IRF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',6078826,6253219,'NM_001099433','JAKMIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',20339336,20493431,'NM_025221','KCNIP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',21454061,21463909,'NR_002813','KCNIP4-IT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',43870676,44145581,'NM_198353','KCTD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',55639182,55686519,'NM_002253','KDR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',6835359,6936800,'NM_014743','KIAA0232'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',154606947,154777312,'NM_001131007','KIAA0922'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',123311207,123503364,'NM_015312','KIAA1109'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',56731117,56891647,'NM_020722','KIAA1211'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',36923084,37127482,'NM_001144990','KIAA1239'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186317812,186362176,'NM_020827','KIAA1430'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1331103,1371837,'NM_020894','KIAA1530'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',55218851,55301638,'NM_000222','KIT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',39084867,39129548,'NM_175737','KLB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',38342184,38379524,'NM_016531','KLF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',166348219,166463758,'NM_007246','KLHL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',38740246,38804248,'NM_015990','KLHL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',88301237,88360698,'NM_020803','KLHL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',187385665,187416619,'NM_000892','KLKB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',101018517,101034726,'NR_024170','LAMTOR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',17188024,17218688,'NM_015907','LAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',129201952,129351739,'NM_018078','LARP1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113777568,113798191,'NM_016648','LARP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',17491315,17632581,'NM_001166139','LCORL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',16112261,16509522,'NM_001290','LDB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',109188149,109309561,'NM_016269','LEF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1783003,1827772,'NM_012318','LETM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',24609568,24641512,'NM_018176','LGI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',39137059,39155666,'NM_006859','LIAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',41057560,41396818,'NM_014988','LIMCH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',84064780,84153064,'NM_001115007','LIN54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',182222236,182317296,'NR_033918','LINC00290'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',54021193,54119193,'NM_032622','LNX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',141424329,141513996,'NR_033939','LOC100129858'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',763936,765636,'NR_036511','LOC100129917'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',7083181,7098859,'NR_033828','LOC100129931'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1179570,1192750,'NR_024569','LOC100130872'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',3645117,3649380,'NR_034136','LOC100133461'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',66218273,66241699,'NR_034138','LOC100144602'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',191182516,191185406,'NM_001199232','LOC100288255'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',84033628,84041093,'NR_034077','LOC100499177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',147250056,147262515,'NR_038331','LOC100505545'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',79786171,79824679,'NR_038303','LOC100505702'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',80111925,80448977,'NR_038342','LOC100505875'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',21938087,21950387,'NR_037877','LOC100505912'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',165894732,165944397,'NR_038834','LOC100505989'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',166017605,166038126,'NR_038825','LOC100506013'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',80632770,80716638,'NR_038826','LOC100506035'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',171075486,171133628,'NR_037878','LOC100506085'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',172198327,172216886,'NR_038838','LOC100506122'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186051147,186057609,'NR_039976','LOC100506229'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',55927524,55946504,'NR_037969','LOC100506462'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',88065069,88075026,'NR_038841','LOC100506746'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100229030,100441536,'NR_037884','LOC100507053'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',107498788,107508041,'NM_001195138','LOC100507096'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',4594758,4763565,'NR_037888','LOC100507266'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',53350917,53376388,'NR_040106','LOC152578'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',13722689,13750774,'NR_033931','LOC152742'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',57670684,57766222,'NR_034081','LOC255130'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',101090658,101092643,'NR_002799','LOC256880'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',124793389,125070968,'NR_027105','LOC285419'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',187444245,187659206,'NR_033900','LOC285441'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',109678794,109761062,'NR_026968','LOC285456'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',6253360,6286564,'NR_037863','LOC285484'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',178886904,179148898,'NR_028342','LOC285501'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',24771391,24809225,'NR_037934','LOC285540'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',13137040,13142139,'NR_034054','LOC285547'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',13156797,13158546,'NR_015450','LOC285548'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',188462230,188663761,'NR_038931','LOC339975'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',158713091,158716753,'NR_026992','LOC340017'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',39720931,39735214,'NR_027277','LOC344967'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',184652883,184662662,'NR_033995','LOC389247'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',39158269,39159918,'NR_026854','LOC401127'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',65462593,65552813,'NR_033976','LOC401134'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',189613725,189760056,'NR_033869','LOC401164'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2390498,2434488,'NM_001193282','LOC402160'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',14520682,14612767,'NR_038857','LOC441009'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',76498309,76506800,'NR_033964','LOC441025'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68249590,68270817,'NR_015439','LOC550112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',139229617,139318781,'NR_038380','LOC641364'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',139168026,139271289,'NR_037866','LOC641365'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',109308129,109317035,'NR_029374','LOC641518'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',56380993,56398187,'NR_003935','LOC644145'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',120595385,120640195,'NR_037630','LOC645513'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',145783517,145786621,'NR_037595','LOC646576'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',9094611,9095260,'NM_001040071','LOC650293'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',185499177,185512124,'NR_040108','LOC728175'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8935988,8937581,'NM_001242327','LOC728369'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8935988,8937581,'NM_001242326','LOC728373'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8935988,8937581,'NM_001242328','LOC728379'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8935988,8937581,'NM_001242330','LOC728393'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8954971,8956564,'NM_001242331','LOC728400'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8935988,8937581,'NM_001242332','LOC728405'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186001443,186005194,'NR_037867','LOC731424'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',6726721,6728675,'NR_015433','LOC93622'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',62045433,62620763,'NM_015236','LPHN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',155884612,155893720,'NM_004744','LRAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',151405260,152155869,'NM_001199282','LRBA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',110991934,111012920,'NM_198506','LRIT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186522025,186537146,'NM_018409','LRP2BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',3475121,3504022,'NM_002337','LRPAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',52554622,52578543,'NM_001024611','LRRC66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',147316284,147330663,'NM_007080','LSM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',4320329,4342797,'NM_017816','LYAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',151722526,151725295,'NM_006439','MAB21L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',121200024,121207461,'NM_002358','MAD2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1273671,1323925,'NM_005882','MAEA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',140856995,141294683,'NM_018717','MAML3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',6627802,6675089,'NM_015274','MAN2B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',103771690,103901196,'NM_005908','MANBA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',156483261,156517572,'NM_001039580','MAP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',87155299,87247830,'NM_138981','MAPK10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',164664899,165523857,'NM_001166373','MARCH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',17225370,17235258,'NM_025205','MED28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',88973144,88986992,'NM_020203','MEPE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100135810,100202983,'NM_015143','METAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',119826021,119851525,'NM_020961','METTL14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8493431,8529182,'NM_152544','METTL19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',171144322,171184004,'NM_021647','MFAP3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2902085,2905762,'NM_001120','MFSD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',665617,672973,'NM_032219','MFSD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',129058409,129106589,'NM_152778','MFSD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',183297152,183302662,'NR_027107','MGC45800'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',140806371,140844856,'NM_002413','MGST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',114247467,114247560,'NR_031641','MIR1243'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',177196341,177331125,'NR_031671','MIR1267'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',183327439,183327525,'NR_031640','MIR1305'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',117440329,117440373,'NR_031737','MIR1973'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',20138995,20139105,'NR_029631','MIR218-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113788787,113788856,'NR_029835','MIR302A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113789089,113789162,'NR_029857','MIR302B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113788967,113789035,'NR_029858','MIR302C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113788608,113788676,'NR_029859','MIR302D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',9689332,9689414,'NR_036090','MIR3138'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',144484062,144484138,'NR_036091','MIR3139'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',153629928,153630018,'NR_036092','MIR3140'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113788478,113788546,'NR_029860','MIR367'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100137560,100137634,'NR_037455','MIR3684'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',160269403,160269496,'NR_037459','MIR3688-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',160269406,160269493,'NR_039963','MIR3688-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',5975902,5975956,'NR_039608','MIR378D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186009160,186009258,'NR_037510','MIR3945'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',7512654,7512745,'NR_036238','MIR4274'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',28430301,28430388,'NR_036237','MIR4275'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',175581520,175581590,'NR_036236','MIR4276'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',53273605,53273671,'NR_039651','MIR4449'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77713744,77713809,'NR_039654','MIR4450'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',86862644,86862710,'NR_039656','MIR4451'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',153677029,153677118,'NR_039658','MIR4453'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',7363077,7363152,'NR_039961','MIR4798'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',148923195,148923269,'NR_039962','MIR4799'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2221601,2221681,'NR_039964','MIR4800'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',36919926,36920008,'NR_039965','MIR4801'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',40198813,40198893,'NR_039966','MIR4802'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',183713765,183720064,'NR_039611','MIR548AB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',67035636,67150423,'NR_039674','MIR548AJ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',9166886,9167035,'NR_031688','MIR548I2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',42116908,42257678,'NR_031667','MIR548M'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',10979548,10979643,'NR_030298','MIR572'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',24130912,24131011,'NR_030299','MIR573'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',38546047,38546143,'NR_030300','MIR574'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',83893513,83893607,'NR_030301','MIR575'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',115797363,115797459,'NR_030303','MIR577'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',166526843,166526939,'NR_030304','MIR578'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1957908,1958002,'NR_030641','MIR943'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',185852212,185892280,'NM_024629','MLF1IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',146759989,146800637,'NM_172250','MMAA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',91035074,91094803,'NM_007351','MMRN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',154485250,154555693,'NM_032117','MND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71986920,72061324,'NM_001244767','MOB1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',6693345,6695350,'NM_033296','MRFAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',6760329,6762507,'NM_203462','MRFAP1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',79002828,79092968,'NM_020236','MRPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',84596141,84601953,'NM_016067','MRPS18C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',166468267,166483764,'NM_001017369','MSMO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',4912292,4916561,'NM_002448','MSX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',75242692,75387678,'NM_001144978','MTHFD2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',187691802,187713531,'NM_005958','MTNR1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100704262,100764177,'NM_000253','MTTP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71330797,71383303,'NM_001145006','MUC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2218957,2233537,'NM_006454','MXD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',661710,665817,'NM_002477','MYL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',120276386,120328392,'NM_016599','MYOZ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',39734918,39836267,'NM_018177','N4BP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',80457295,80466195,'NM_032693','NAA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',140442125,140531385,'NM_057175','NAA15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77053832,77081190,'NM_014435','NAAA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',164269272,164307523,'NM_138386','NAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',89836088,89838046,'NM_153757','NAP1L5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2031036,2040614,'NM_178557','NAT8L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',174688183,174699556,'NR_003679','NBLA00301'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',17421622,17455585,'NM_022346','NCAPG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',122176231,122213123,'NM_024574','NDNF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',119174947,119399237,'NM_004784','NDST3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',115968375,116254481,'NM_022569','NDST4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',140430520,140441814,'NM_001184991','NDUFC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',178467984,178521086,'NM_018248','NEIL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',170550995,170770353,'NM_001199397','NEK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113654120,113656777,'NM_024019','NEUROG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',103641517,103757507,'NM_003998','NFKB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',47544013,47611390,'NM_152995','NFXL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',47713547,47733837,'NM_207330','NIPAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',13151551,13155212,'NM_001189','NKX3-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',85633459,85638411,'NM_006168','NKX6-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',56156154,56197222,'NM_006681','NMU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2909461,2934916,'NM_003703','NOP14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',73116384,73232782,'NM_004885','NPFFR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',107036045,107112277,'NM_001184690','NPNT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',164464566,164473397,'NM_000909','NPY1R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',156349230,156357678,'NM_000910','NPY2R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',164484540,164492536,'NM_006174','NPY5R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',149219364,149583122,'NM_001166104','NR3C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',40446670,40506759,'NM_024677','NSUN7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',124033248,124063209,'NM_007083','NUDT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',88562758,88598523,'NM_024047','NUDT9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77254840,77288679,'NM_017426','NUP54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',48527816,48558591,'NM_017830','OCIAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',48582161,48603572,'NM_152398','OCIAD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71096832,71104882,'NM_017855','ODAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',183482130,183961171,'NM_001080477','ODZ3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',109791189,109808429,'NM_021227','OSTC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',4241430,4279522,'NM_177998','OTOP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',146299738,146315346,'NM_017493','OTUD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',135336938,135342353,'NM_001114734','PABPC4L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',20311133,20339078,'NM_001130727','PACRGL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',56996671,57022291,'NM_006452','PAICS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',169989730,170086183,'NM_001166110','PALLD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',108754270,108860868,'NM_005443','PAPSS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',80058117,80079606,'NM_001040202','PAQR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',76077308,76194349,'NM_015393','PARM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',134289919,134293854,'NM_020815','PCDH10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',138659521,138673079,'NM_019035','PCDH18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',30331134,30757521,'NM_001173523','PCDH7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',689572,754427,'NM_006315','PCGF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100300773,100301827,'NR_028270','PCNAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',56117448,56153136,'NM_152401','PDCL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',120634997,120768687,'NM_033437','PDE5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',609362,654681,'NM_000283','PDE6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',157902212,158111996,'NM_016205','PDGFC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',54790020,54859169,'NM_006206','PDGFRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',96980261,96981648,'NM_005390','PDHA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186658808,186693706,'NM_014476','PDLIM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',95592060,95808400,'NR_024179','PDLIM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',39575985,39655971,'NM_001100400','PDS5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',152811258,152901625,'NM_004564','PET112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',75065659,75066579,'NM_002619','PF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',74937876,74939062,'NM_002620','PF4V1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',37504676,37540954,'NM_018290','PGM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',129409841,129429434,'NM_006320','PGRMC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',129950228,130005237,'NM_024900','PHF17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',41440855,41445744,'NM_003924','PHOX2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',24844750,24889929,'NM_018323','PI4K2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',482988,523320,'NM_017733','PIGG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',89661157,89663978,'NM_032906','PIGY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',111758028,111782728,'NM_153427','PITX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',89147822,89217955,'NM_000297','PKD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',110850593,110870691,'NM_030821','PLA2G12A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',84230234,84250036,'NM_001130716','PLAC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',129021465,129039827,'NM_014264','PLK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',155675598,155691035,'NM_002669','PLRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2043442,2200756,'NM_181808','POLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',57539865,57592091,'NM_000938','POLR2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',147779494,147783073,'NM_004575','POU4F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',122905189,122907413,'NR_024365','PP12613'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',106509682,106614676,'NM_176866','PPA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',23402741,23500798,'NM_013261','PPARGC1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',56954285,56996559,'NM_002703','PPAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',75071019,75072771,'NM_002704','PPBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',75138618,75139980,'NR_026769','PPBPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77000049,77042705,'NM_006239','PPEF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',159849728,159864002,'NM_005038','PPID'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',89400555,89424912,'NM_152542','PPM1K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',6373205,6434498,'NM_181876','PPP2R2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',102163609,102487651,'NM_000944','PPP3CA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',121835378,122063463,'NM_018699','PRDM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',81325447,81344506,'NM_020226','PRDM8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',82228860,82345239,'NM_006259','PRKG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',148778982,148824730,'NM_138364','PRMT10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71298187,71310503,'NM_021225','PROL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',15578946,15694721,'NM_001145848','PROM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',119420640,119493370,'NM_003619','PRSS12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',152417774,152432055,'NM_183375','PRSS48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',7482921,7487600,'NM_001085382','PSAPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',87734491,87955352,'NM_080685','PTPN13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',37638450,37639026,'NM_006607','PTTG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',17097113,17122955,'NM_000320','QDPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',122469246,122521631,'NM_198179','QRFPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',12978444,13095087,'NM_001159601','RAB28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',140594410,140616519,'NM_031296','RAB33B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',99401549,99584035,'NM_001100426','RAP1GDS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',160408447,160500751,'NM_014247','RAPGEF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',82567242,82612085,'NM_152545','RASGEF1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',53423251,53427759,'NM_023940','RASL11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',74657725,74705204,'NM_201431','RASSF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',155921876,155969415,'NM_144979','RBM46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',40120028,40326640,'NM_001098634','RBM47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',25931545,26042376,'NM_203284','RBPJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',76623270,76658664,'NM_015436','RCHY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',37268816,37364394,'NM_001085399','RELL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',57469835,57496767,'NM_001193508','REST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',38965463,39044396,'NM_002913','RFC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',100686886,100704212,'NM_001134666','RG9MTD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',3285671,3411438,'NM_198229','RGS12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',39874921,39922676,'NM_004310','RHOH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',142006174,142274066,'NM_020724','RNF150'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',154850761,154900837,'NM_173662','RNF175'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1077095,1097352,'NM_001193318','RNF212'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2440592,2487384,'NM_001185010','RNF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',54546422,54548206,'NR_027153','RPL21P44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',109761170,109771088,'NM_000995','RPL34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',39132139,39136963,'NM_000661','RPL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',152240203,152245254,'NM_001006','RPS3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',110968598,110985310,'NM_006583','RRH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71806559,71878138,'NM_014961','RUFY3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',184797782,184817325,'NM_152682','RWDD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',159662496,159792713,'NM_021634','RXFP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',6746466,6749798,'NM_005980','S100P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',174528667,174535258,'NM_003864','SAP30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77298914,77354076,'NM_001204255','SCARB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1946160,1946285,'NR_003004','SCARNA22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',83800063,83939034,'NM_024906','SCD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',53433907,53926999,'NM_152540','SCFD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',130024601,130234214,'NM_144643','SCLT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',141484064,141523160,'NM_001153690','SCOC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',174545873,174557192,'NM_007281','SCRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77090091,77131137,'NM_018115','SDAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',110574419,110681064,'NM_006323','SEC24B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',119863425,119976774,'NM_014822','SEC24D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',83958837,84031359,'NM_001191049','SEC31A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',25358146,25473708,'NM_015187','SEL1L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',24730724,24771302,'NM_016955','SEPSECS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',78089918,78178792,'NM_018243','SEPT11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',140646641,140697027,'NM_030648','SETD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',154921191,154929678,'NM_003013','SFRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',52581617,52599242,'NM_000232','SGCB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',108965169,109055652,'NM_001136258','SGMS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2789709,2812621,'NM_001145856','SH3BP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',152260882,152368632,'NM_001243349','SH3D19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',170251981,170428824,'NM_020870','SH3RF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8251959,8293730,'NM_018986','SH3TC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',42094612,42099261,'NM_001080505','SHISA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77575276,77923429,'NM_020859','SHROOM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',48038369,48122972,'NM_020846','SLAIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1664324,1683828,'NM_006527','SLBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',48180116,48186298,'NM_152679','SLC10A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',87963644,87989440,'NM_197965','SLC10A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',147582269,147662573,'NM_032128','SLC10A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',128871004,128914897,'NM_031291','SLC25A31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186301410,186308532,'NM_001151','SLC25A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',962862,977183,'NM_134425','SLC26A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',9436945,9632212,'NM_020041','SLC2A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',41687279,41784308,'NM_006345','SLC30A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',25267183,25289466,'NM_001177999','SLC34A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',103391220,103485433,'NM_001135147','SLC39A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',72271866,72656668,'NM_001098484','SLC4A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',139304697,139382953,'NM_014331','SLC7A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',104041533,104160345,'NM_139173','SLC9B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',104166100,104217619,'NM_178833','SLC9B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',185956446,185957194,'NR_003542','SLED1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',19864332,20229886,'NM_004787','SLIT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',20002909,20005577,'NR_037876','SLIT2-IT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',146623406,146699775,'NM_001003688','SMAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',144654065,144698092,'NM_003601','SMARCA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',95348038,95431466,'NM_001128429','SMARCAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71261081,71267412,'NM_012390','SMR3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71283383,71290550,'NM_006685','SMR3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',90864272,90977150,'NM_007308','SNCA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',53273377,53275062,'NR_024031','SNHG13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',119419364,119420426,'NR_003584','SNHG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',119419792,119419923,'NR_002963','SNORA24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',53274172,53274294,'NR_003016','SNORA26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',152244428,152244493,'NR_000007','SNORD73A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186368277,186522114,'NM_031953','SNX25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',24406182,24411565,'NM_003102','SOD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186743591,186934060,'NM_001145673','SORBS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',7245274,7795464,'NM_020777','SORCS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',88613511,88669679,'NM_001128310','SPARCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',52612349,52658215,'NM_145263','SPATA18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',177342718,177353816,'NM_144644','SPATA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',124063674,124460054,'NM_145207','SPATA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',177478083,177490390,'NM_021928','SPCS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',57370790,57382650,'NM_021114','SPINK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',167891110,168392316,'NM_016950','SPOCK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1150720,1156999,'NM_001128325','SPON2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',89115825,89123587,'NM_001040058','SPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',124540132,124544359,'NM_005841','SPRY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',55907144,55934023,'NM_024592','SRD5A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',57028518,57064604,'NM_006947','SRP72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68107040,68155211,'NM_012108','STAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70896236,70902762,'NM_003154','STATH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',77446202,77451307,'NM_003943','STBD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',26471410,26636101,'NM_001169118','STIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',5104427,5553626,'NM_018401','STK32B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',185063502,185175869,'NM_020225','STOX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',4471596,4594676,'NM_016930','STX18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70627274,70661019,'NM_014465','SULT1B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70741518,70760459,'NM_005420','SULT1E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',120029443,120179117,'NM_001128934','SYNPO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68608922,68611610,'NR_027094','SYT14L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1693063,1716695,'NM_006342','TACC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',104730073,104860422,'NM_001059','TACR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',7096056,7110578,'NM_152293','TADA2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',15771225,15837259,'NM_153365','TAPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',37569114,37817189,'NM_015173','TBC1D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',7039789,7085746,'NM_001113363','TBC1D14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',26194643,26366015,'NM_018317','TBC1D19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',141761385,141896921,'NM_015130','TBC1D9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',107186681,107456872,'NM_001163435','TBCK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',157044296,157061000,'NM_005651','TDO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',47832556,47966571,'NM_003215','TEC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',64826771,64957773,'NM_001010874','TECRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',106286480,106383377,'NM_017628','TET2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',76658677,76674260,'NM_144721','THAP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',84040860,84060308,'NM_024672','THAP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',113416230,113426508,'NM_052864','TIFA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',90252990,90255075,'NM_145715','TIGD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',153909955,153920366,'NM_145720','TIGD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',164611696,164614497,'NM_032136','TKTL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',167013859,167171561,'NM_001204760','TLL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',38474270,38482807,'NM_003263','TLR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',38450254,38461006,'NM_030956','TLR10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',154824890,154846692,'NM_003264','TLR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',187227302,187243246,'NM_003265','TLR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',38501723,38534833,'NM_006068','TLR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1098984,1106952,'NR_033768','TMED11P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',4288169,4300835,'NM_032927','TMEM128'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1687476,1692882,'NM_001127266','TMEM129'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',159350850,159395889,'NM_018342','TMEM144'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',83624627,83702150,'NM_001080506','TMEM150C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',153766715,153820767,'NM_152680','TMEM154'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',122899534,122905790,'NM_152399','TMEM155'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',38644835,38710436,'NM_024943','TMEM156'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',55956846,55987099,'NM_018475','TMEM165'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',916261,942443,'NM_032326','TMEM175'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',148757988,148776122,'NM_018241','TMEM184C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',166216679,166253474,'NM_001100389','TMEM192'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',41631893,41657581,'NM_018126','TMEM33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68458613,68511827,'NM_001114387','TMPRSS11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68774965,68794007,'NM_182502','TMPRSS11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68736836,68766393,'NM_001129907','TMPRSS11BNL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68369188,68432311,'NM_004262','TMPRSS11D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',69465107,69515259,'NM_014058','TMPRSS11E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68601510,68678182,'NM_207407','TMPRSS11F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2713184,2727901,'NM_024309','TNIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',122272013,122304945,'NM_024873','TNIP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',118224157,118226184,'NM_152402','TRAM1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',154345047,154479924,'NM_015271','TRIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',166172600,166182346,'NM_152620','TRIM60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',166095047,166118268,'NM_001012414','TRIM61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',189297591,189305643,'NM_178556','TRIML1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',189249420,189263402,'NM_173553','TRIML2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',123019632,123092359,'NM_001130698','TRPC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',99610540,99798835,'NM_005723','TSPAN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',147847628,148086484,'NM_031956','TTC29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',47763166,47831030,'NM_003328','TXK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68164073,68249484,'NM_018227','UBA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',103936216,103968243,'NM_003340','UBE2D3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',39376058,39460805,'NM_005339','UBE2K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',40953654,40965203,'NM_004181','UCHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',141700499,141709409,'NM_021833','UCP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',186557687,186584133,'NR_028085','UFSP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',39176770,39205613,'NM_001184701','UGDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70488723,70548006,'NM_006798','UGT2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70488723,70539949,'NM_001105677','UGT2A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',69828765,69852098,'NR_024010','UGT2A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',69716301,69732330,'NM_001144767','UGT2B10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70100635,70115038,'NM_001073','UGT2B11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',69194909,69218969,'NM_001076','UGT2B15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',69085497,69116840,'NM_001077','UGT2B17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70180805,70195357,'NM_053039','UGT2B28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',70380471,70396215,'NM_021139','UGT2B4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',69996781,70013294,'NM_001074','UGT2B7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',115762971,115817651,'NM_003360','UGT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',96302678,96689384,'NM_003728','UNC5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',76868852,76954390,'NM_003715','USO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8954971,8956564,'NM_001105662','USP17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8940734,8942327,'NM_001242329','USP17L5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',8978697,8979894,'NR_027279','USP17L6P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',144325519,144362591,'NM_032557','USP38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',53151883,53220259,'NM_022832','USP46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',120353229,120436121,'NM_019050','USP53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',71773059,71775132,'NM_020368','UTP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',177841684,177950889,'NM_005429','VEGFC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',85809716,86106568,'NM_014991','WDFY3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',86106994,86147192,'NR_015359','WDFY3-AS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',9685060,9727671,'NM_017491','WDR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',177223978,177340973,'NM_181265','WDR17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',38860418,38963825,'NM_025132','WDR19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',6322477,6355893,'NM_001145853','WFS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1864306,1953732,'NM_133335','WHSC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',1954238,1980760,'NM_005663','WHSC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',184257456,184478923,'NM_024949','WWC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',44319110,44348415,'NM_182592','YIPF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',68858699,68898419,'NM_001031732','YTHDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',48187065,48191179,'NM_175619','ZAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',4342824,4374414,'NM_145291','ZBTB49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',24923493,24981103,'NM_024936','ZCCHC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',189153918,189163193,'NM_174900','ZFP42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',2241121,2390168,'NM_020972','ZFYVE28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',321595,357691,'NM_003441','ZNF141'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',142361498,142375300,'NM_014487','ZNF330'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',10050601,10068130,'NM_053042','ZNF518B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',43226,78099,'NM_182524','ZNF595'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',43276,146490,'NM_001039127','ZNF718'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',423778,483442,'NM_133474','ZNF721'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',254463,279944,'NM_001137608','ZNF732'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',146901337,147079057,'NM_178835','ZNF827'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4',196388,239773,'NR_027481','ZNF876P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4_',279193,283964,'NM_018942','HMX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4_',720286,778955,'NR_037872','LOC100233156'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4_',728345,736550,'NR_027420','LOC389834'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4_',493620,555042,'NM_001190825','MAFIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr4_',49162,88375,'NR_038377','MGC39584'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',178124469,178135883,'NR_024035','AACSP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',148501246,148620192,'NM_014945','ABLIM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',80661702,80725744,'NM_130767','ACOT12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131313565,131375254,'NM_015256','ACSL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',56811599,56814393,'NM_001017992','ACTBL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',156836889,156935361,'NM_033274','ADAM19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',33563043,33927881,'NM_030955','ADAMTS12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',5193442,5373412,'NM_139056','ADAMTS16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',128824001,129102275,'NM_133638','ADAMTS19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',178510491,178705037,'NM_021599','ADAMTS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',64480318,64813460,'NM_197941','ADAMTS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',7449342,7883194,'NM_020546','ADCY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159276317,159332595,'NM_000679','ADRA1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',148186348,148188390,'NM_000024','ADRB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',148631593,148701560,'NM_152406','AFAP1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132238969,132327253,'NM_014423','AFF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',76361965,76396814,'NM_018046','AGGF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',35033962,35083997,'NM_031900','AGXT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',177568145,177592409,'NM_153373','AGXT2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',357290,491405,'NM_020731','AHRR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',125905431,125958981,'NM_001202404','ALDH7A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',34022847,34043977,'NM_001167595','AMACR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',14757908,14924887,'NM_054027','ANKH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139761582,139832246,'NM_017978','ANKHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139761582,139909347,'NM_020690','ANKHD1-EIF4EBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',72883780,72897267,'NM_023039','ANKRA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',74399877,74568459,'NM_001164443','ANKRD31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',93980146,94057329,'NM_032290','ANKRD32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',10617434,10710928,'NM_001164440','ANKRD33B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79888329,79902060,'NM_001004441','ANKRD34B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132176931,132180388,'NM_175873','ANKRD43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',55431263,55564943,'NM_024669','ANKRD55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150460459,150501409,'NM_001193544','ANXA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',77333905,77626284,'NM_003664','AP3B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',115205517,115277677,'NM_001284','AP3S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139918036,139924373,'NM_133172','APBB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',112101454,112209835,'NM_001127510','APC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',115326049,115391198,'NM_173800','AQPEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',141013151,141041984,'NM_022481','ARAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',142130475,142588765,'NM_001135608','ARHGAP26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',148941327,148994720,'NM_001001669','ARHGEF37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175725107,175733109,'NM_173664','ARL10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',53216370,53642160,'NM_019087','ARL15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',90700296,90714905,'NM_020801','ARRDC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',78108792,78318113,'NM_000046','ARSB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149656101,149662718,'NM_001012301','ARSI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',94916580,94966562,'NM_198150','ARSK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',81303599,81586973,'NM_001131028','ATG10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',115191792,115205447,'NM_004707','ATG12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',151102575,151118403,'NM_004045','ATOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159922704,160211797,'NM_025153','ATP10B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',81636921,81649903,'NM_001017971','ATP6AP1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172343368,172394506,'NM_003945','ATP6V0E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176959724,176969952,'NM_007255','B4GALT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',17270749,17329943,'NM_006317','BASP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',70787197,70899405,'NM_018429','BDP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',78443359,78463869,'NM_001713','BHMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',78401302,78421653,'NM_001178005','BHMT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172504050,172523996,'NM_013979','BNIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172966753,172976272,'NM_138369','BOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137503357,137542257,'NM_139199','BRD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',916849,945939,'NR_027633','BRD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',34951576,34961545,'NM_018321','BRIX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',72830005,72837204,'NM_001207','BTF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180348450,180366333,'NM_197975','BTNL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180258682,180310512,'NM_001159707','BTNL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180399830,180421129,'NM_152547','BTNL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159707352,159730226,'NM_031908','C1QTNF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',34053719,34079128,'NM_030945','C1QTNF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',34022847,34160390,'NR_037951','C1QTNF3-AMACR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',111092898,111340527,'NM_001142475','C5orf13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',133319096,133332305,'NM_020199','C5orf15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134807802,134810937,'NM_130848','C5orf20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',31568129,31590922,'NM_018356','C5orf22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134209556,134223324,'NM_001135586','C5orf24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175597975,175705596,'NM_198567','C5orf25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',95213691,95221592,'NR_026936','C5orf27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',43480110,43519749,'NM_022483','C5orf28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',102622340,102642260,'NM_033211','C5orf30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139534836,139603558,'NM_032412','C5orf32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',43522559,43551030,'NM_198566','C5orf34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',56240843,56248922,'NM_153706','C5orf35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',2805261,2808511,'NM_178569','C5orf38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',43074938,43076204,'NM_001014279','C5orf39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',154178244,154210406,'NM_032385','C5orf4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172415960,172498897,'NM_153607','C5orf41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',37142086,37285287,'NM_023073','C5orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',60489292,60494059,'NM_001048249','C5orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',64956313,64962288,'NR_003545','C5orf44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179196871,179218446,'NM_016175','C5orf45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',147252463,147266294,'NM_206966','C5orf46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',173348767,173365749,'NM_001144954','C5orf47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',125995312,125999873,'NM_207408','C5orf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',7884510,7904264,'NM_001089584','C5orf49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',41940226,41957495,'NM_175921','C5orf51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',157031138,157039740,'NM_001145132','C5orf52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159752732,159759638,'NM_022090','C5orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',494642,496258,'NM_138464','C5orf55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131774363,131821927,'NM_001207003','C5orf56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',169592527,169605813,'NM_001102609','C5orf58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179001163,179004653,'NM_001142306','C5orf60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150137700,150156491,'NM_032947','C5orf62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',126406148,126437083,'NM_001164479','C5orf63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',60969392,61038119,'NM_173667','C5orf64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138755533,138758784,'NM_001161546','C5orf65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',41178092,41297297,'NM_001115131','C6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',40945355,41018798,'NM_000587','C7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',39320134,39400412,'NM_001737','C9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149579246,149649596,'NM_015981','CAMK2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',110587845,110848647,'NM_001744','CAMK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134102068,134115749,'NM_001745','CAMLG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179058535,179091245,'NM_001746','CANX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',35940154,35974494,'NM_001042625','CAPSL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',40877166,40891213,'NM_032587','CARD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',71050745,71052631,'NM_004291','CARTPT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',96023662,96136141,'NM_001042440','CAST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134331494,134375296,'NM_178019','CATSPER3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179038164,179040581,'NM_001164444','CBY3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',114630783,114659886,'NM_152549','CCDC112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',257874,271297,'NM_145265','CCDC127'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',42792676,42838296,'NM_001134848','CCDC152'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150540805,150583847,'NM_015621','CCDC69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',168943215,168964359,'NM_017785','CCDC99'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',43417356,43448245,'NM_148672','CCL28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',68498668,68509826,'NM_031966','CCNB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',162797154,162804600,'NM_004060','CCNG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',86725834,86744606,'NM_001239','CCNH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132111035,132117755,'NM_001039780','CCNI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159611248,159672151,'NM_024565','CCNJL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54562737,54565265,'NM_021147','CCNO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',10303281,10319501,'NM_012073','CCT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139991496,139993470,'NM_001174105','CD14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',66513859,66528373,'NM_005582','CD180'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149761392,149772692,'NM_004355','CD74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54444555,54504762,'NM_001145734','CDC20B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137551235,137576931,'NM_004661','CDC23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137648857,137695415,'NM_001790','CDC25C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',130627600,130758281,'NM_001038702','CDC42SE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',24522965,24680842,'NM_006727','CDH10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',21786729,22889488,'NM_004061','CDH12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',19508911,20024110,'NM_001167667','CDH18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',31229518,31365010,'NM_004932','CDH6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',26916465,27074446,'NM_016279','CDH9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175902117,175955375,'NM_001171976','CDHR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',68566377,68609013,'NM_001799','CDK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',133671590,133730664,'NM_016508','CDKL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',133765654,133775497,'NM_080656','CDKN2AIPNL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',115168328,115180304,'NM_001801','CDO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149526536,149544314,'NM_001804','CDX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',68521130,68541940,'NM_022909','CENPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',64849348,64894751,'NM_022145','CENPK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',122708477,122787185,'NM_001166226','CEP120'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',665404,706666,'NM_018140','CEP72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',89725284,89741359,'NM_004365','CETN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',98218807,98290138,'NM_001270','CHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',129268421,129550226,'NM_175856','CHSY3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',80564894,80597973,'NM_001099736','CKMT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',157145328,157218761,'NM_001195556','CLINT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',177962270,177986660,'NM_020666','CLK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1370999,1398002,'NM_030782','CLPTM1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175752061,175776146,'NM_007097','CLTB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',10330706,10361168,'NM_138809','CMBL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79021414,79131805,'NM_153610','CMYA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179854022,179937959,'NM_015455','CNOT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',154218390,154236545,'NM_004779','CNOT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',177597222,177950162,'NM_173465','COL23A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',74702683,74843562,'NM_001130105','COL4A3BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',115448625,115656877,'NM_016144','COMMD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',85949539,85952339,'NM_001867','COX7C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',173247936,173319919,'NM_030627','CPEB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175231106,175243629,'NM_001008220','CPLX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',76284435,76301055,'NM_001882','CRHBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79682179,79683541,'NR_003665','CRSP8P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149413046,149473128,'NM_005211','CSF1R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131437383,131439758,'NM_000758','CSF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',148855037,148911200,'NM_001892','CSNK1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',122875691,122980363,'NM_001044722','CSNK1G3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138117005,138298622,'NM_001903','CTNNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',11024951,11957110,'NM_001332','CTNND2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',127012611,127022221,'NM_001048252','CTXN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',64100510,64350346,'NM_005869','CWC27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134934267,134942868,'NM_004887','CXCL14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139008484,139042864,'NM_016463','CXXC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',156625764,156755184,'NM_001037332','CYFIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',39407532,39461092,'NM_001343','DAB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',10732341,10814387,'NM_004394','DAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176816219,176833300,'NM_004395','DBN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',112340305,112385791,'NM_152624','DCP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150068501,150118850,'NM_016221','DCTN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',55098469,55148731,'NM_001166534','DDX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176871183,176876573,'NM_016222','DDX41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134122359,134194710,'NM_014829','DDX46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',59928495,60031750,'NM_018369','DEPDC1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79957800,79986556,'NM_000791','DHFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54587829,54639278,'NM_019030','DHX29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140874771,140978806,'NM_005219','DIAPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',61720107,61735485,'NM_014473','DIMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',78329184,78401205,'NM_013391','DMGDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',118434982,118612721,'NM_005509','DMXL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',13743436,13997589,'NM_001369','DNAH5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138773790,138803113,'NM_152686','DNAJC18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',34965454,34994826,'NM_001012339','DNAJC21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140030564,140033355,'NM_194249','DND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',168996828,169442964,'NM_004946','DOCK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176861511,176870033,'NM_001144875','DOK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',146750563,146813453,'NM_001387','DPYSL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',174800280,174803769,'NM_000794','DRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',31436358,31568039,'NM_001100412','DROSHA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',118200467,118352139,'NM_173666','DTWD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172127697,172130809,'NM_004417','DUSP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',158055500,158459366,'NM_024007','EBF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138812143,138822504,'NM_001077693','ECSCR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',83273881,83716367,'NM_005711','EDIL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',171553780,171563063,'NM_001171183','EFCAB9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',106740488,107034495,'NM_001962','EFNA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',38294267,38501339,'NM_152403','EGFLAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137829079,137832903,'NM_001964','EGR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175990288,176006248,'NM_001099408','EIF4E1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139907434,139909347,'NM_003732','EIF4EBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',95246557,95323531,'NM_012081','ELL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',60083372,60175858,'NM_024930','ELOVL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',49727787,49772991,'NM_198449','EMB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',73958989,73973005,'NM_003633','ENC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',111526213,111782909,'NM_022140','EPB41L4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',111524121,111526097,'NR_015370','EPB41L4A-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',96135943,96169648,'NM_001040458','ERAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',96237399,96281162,'NM_001130140','ERAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',65258139,65412606,'NM_018695','ERBB2IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',60205415,60276662,'NM_000082','ERCC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172193828,172312294,'NM_001031711','ERGIC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54309451,54317171,'NM_001135604','ESM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137869682,137906831,'NM_004730','ETF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',496333,520409,'NM_007277','EXOC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176761744,176769183,'NM_000505','F12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',76047623,76067351,'NM_001992','F2R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',76150588,76166896,'NM_005242','F2RL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',75947062,75954996,'NM_004101','F2RL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159546951,159598307,'NM_001130958','FABP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175807961,175869681,'NM_014613','FAF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',14634890,14669287,'NM_019018','FAM105A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',14717782,14752842,'NM_138348','FAM105B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',153351457,153398690,'NM_018691','FAM114A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',16526146,16562031,'NM_019000','FAM134B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137301540,137396701,'NM_001101800','FAM13B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79819555,79874138,'NM_205548','FAM151B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',177082970,177140111,'NM_173663','FAM153A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175444514,175476063,'NM_001079529','FAM153B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',177366572,177408694,'NR_038353','FAM153C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',64021890,64049773,'NM_001164442','FAM159B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',74109154,74198371,'NM_015566','FAM169A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',118993152,118999416,'NM_001163991','FAM170A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',92979186,93473160,'NM_001163418','FAM172A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',10279437,10303014,'NM_199133','FAM173B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',99899022,99950339,'NM_198507','FAM174A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176879395,176914154,'NR_024019','FAM193B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',169223296,169340322,'NM_001129891','FAM196B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137701602,137713317,'NM_016605','FAM53C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',156521921,156525857,'NM_130899','FAM71B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',94752803,94811900,'NM_152548','FAM81B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',7912271,7922150,'NR_036553','FASTKD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150863845,150928698,'NM_001447','FAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',167889159,167890217,'NR_024356','FBLL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',127621499,127901634,'NM_001999','FBN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',107222632,107745698,'NM_001163315','FBXL17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',135293904,135305266,'NM_012159','FBXL21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',15553304,15992900,'NM_012304','FBXL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',147743738,147802592,'NM_030793','FBXO38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',41961112,41970942,'NM_033484','FBXO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',171221160,171366482,'NM_033645','FBXW11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',72287563,72422105,'NM_138782','FCHO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140999052,141011170,'NM_033449','FCHSD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',114884506,114908490,'NM_020177','FEM1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',108111421,108551272,'NM_005246','FER'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',141951926,142057819,'NM_001144935','FGF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',44340853,44424541,'NM_004465','FGF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',170779271,170817235,'NM_003862','FGF18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176449156,176457732,'NM_022963','FGFR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',111783178,111784574,'NR_027706','FLJ11235'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',6363553,6390405,'NR_028351','FLJ33360'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',127385142,127446665,'NR_015360','FLJ33630'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',98133221,98136688,'NR_033932','FLJ35946'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',153749521,153805575,'NR_037897','FLJ38109'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',92772257,92942709,'NR_021491','FLJ42709'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179967358,180009230,'NM_002020','FLT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',156701184,156705307,'NM_001001343','FNDC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131005305,131160655,'NM_133372','FNIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',72777840,72780108,'NM_004472','FOXD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',169465494,169469307,'NM_144769','FOXI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',52812020,52818061,'NM_013409','FST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132560050,132976122,'NM_015082','FSTL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',121215548,121216422,'NM_177478','FTMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',39141110,39255437,'NM_199335','FYB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',151131668,151165108,'NM_198395','G3BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',161208475,161259543,'NM_001127646','GABRA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',161045235,161062176,'NM_000811','GABRA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',160648013,160907708,'NM_000813','GABRB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',161427225,161515123,'NM_000816','GABRG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',170143300,170173628,'NM_014211','GABRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',153550487,153780736,'NM_198321','GALNT10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',57823086,57827942,'NM_152687','GAPT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',74359044,74362480,'NM_016591','GCNT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132224776,132228376,'NM_005260','GDF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',37848535,37875539,'NM_000514','GDNF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',154247168,154297969,'NM_015465','GEMIN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',74052786,74098798,'NM_170691','GFM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179660305,179712921,'NM_005110','GFPT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137615967,137638152,'NM_001496','GFRA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',42459633,42757737,'NM_000163','GHR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',102449602,102483741,'NM_017676','GIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',151182266,151284590,'NM_001146040','GLRA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',95175308,95184333,'NM_002064','GLRX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150612805,150630146,'NM_000405','GM2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',177544116,177547039,'NR_003281','GMCL1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180596533,180603512,'NM_006098','GNB2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',141360417,141372804,'NM_005471','GNPDA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',32160580,32210182,'NM_022130','GOLPH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',56507031,56596263,'NM_001127235','GPBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',94981735,94983040,'NM_199243','GPR150'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',145874609,145875869,'NM_194251','GPR151'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',89890372,90495789,'NR_003149','GPR98'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175955408,175969737,'NM_052899','GPRIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150380191,150388747,'NM_002084','GPX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54491740,54498886,'NM_001008397','GPX8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',125786767,125857752,'NM_001146321','GRAMD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',152850276,153173622,'NM_000827','GRIA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176786292,176802456,'NM_002082','GRK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',178337935,178354730,'NM_000843','GRM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',148705169,148714339,'NM_152407','GRPEL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',145219488,145232724,'NM_001080516','GRXCR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',70366706,70399253,'NM_001515','GTF2H2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',21495345,21510322,'NR_027027','GUSBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',68971045,69042028,'NR_027386','GUSBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',69206796,69247894,'NR_033968','GUSBP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54434230,54441837,'NM_006144','GZMA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54355863,54365717,'NM_002104','GZMK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134697969,134762827,'NM_138610','H2AFY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',153834724,153838017,'NM_004821','HAND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',82969772,83052652,'NM_001884','HAPLN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140033673,140051155,'NM_002109','HARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140051201,140059074,'NM_012208','HARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',156389108,156418065,'NM_001099414','HAVCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',156445420,156468716,'NM_032782','HAVCR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139692611,139706372,'NM_001945','HBEGF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',45290808,45731977,'NM_021072','HCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140980626,140996607,'NM_003883','HDAC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',41033878,41107201,'NM_173489','HEATR7B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',74016724,74052869,'NM_000521','HEXB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175748389,175749357,'NM_138820','HIGD2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',130522773,130528933,'NM_005340','HINT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176240475,176258939,'NM_002115','HK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',74668748,74693682,'NM_000859','HMGCR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',43325249,43349352,'NM_002130','HMGCS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149360361,149412899,'NM_014983','HMGXB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',143171918,143180477,'NM_021182','HMHB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',162820094,162851530,'NM_012485','HMMR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',173405329,173468788,'NM_015980','HMP19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137114971,137117938,'NM_006805','HNRNPA0'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',177564113,177570790,'NM_031266','HNRNPAB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',178973784,178983328,'NM_005520','HNRNPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',78705541,78845456,'NM_004272','HOMER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175017645,175045851,'NM_001131055','HRH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',118816036,118905929,'NM_001199292','HSD17B4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132415560,132468608,'NM_002154','HSPA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137918469,137939217,'NM_004134','HSPA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',53787187,53787971,'NM_006308','HSPB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',63292033,63293302,'NM_000524','HTR1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',147810787,147996817,'NM_199453','HTR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54551181,54558900,'NM_001190787','IDAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139485704,139488575,'NM_001007189','IGIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140007567,140022249,'NM_006083','IK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',158674368,158690059,'NM_002187','IL12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132021763,132024700,'NM_002188','IL13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',148734022,148739031,'NM_014443','IL17B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131424245,131426795,'NM_000588','IL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',55182963,55248922,'NM_139017','IL31RA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132037271,132046267,'NM_172348','IL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131905034,131907113,'NM_000879','IL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',55266681,55326578,'NM_001190981','IL6ST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',35892747,35912680,'NM_002185','IL7R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',135255833,135259415,'NM_000590','IL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',61750467,61960172,'NM_001134779','IPO11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',75734904,76039713,'NM_006633','IQGAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131845199,131854364,'NM_002198','IRF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150206277,150208424,'NM_001145805','IRGM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',3649167,3654517,'NM_024337','IRX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',2799278,2804769,'NM_033267','IRX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1930540,1935880,'NM_016358','IRX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',50714714,50726320,'NM_002202','ISL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',128458340,128477618,'NM_016048','ISOC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',52119892,52285242,'NM_181501','ITGA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',52320912,52426366,'NM_002203','ITGA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',156540484,156614687,'NM_005546','ITK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',146950898,147142445,'NM_014790','JAKMIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',78567680,78658794,'NM_152405','JMY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',169863625,170096214,'NM_014592','KCNIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',169737744,169749216,'NM_004137','KCNMB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',113725914,113860096,'NM_021614','KCNN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',143530629,143837137,'NM_020768','KCTD16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137716183,137800615,'NM_016604','KDM3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',141283568,141301796,'NM_014773','KIAA0141'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',93880673,93980065,'NM_173665','KIAA0825'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',5475806,5543338,'NM_015325','KIAA0947'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175705671,175721415,'NM_001079685','KIAA1191'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137542315,137551303,'NM_005733','KIF20A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',61637745,61718768,'NM_001098511','KIF2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132056221,132101164,'NM_007054','KIF3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',154373452,154377878,'NM_001099293','KIF4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',136981087,137099678,'NM_017415','KLHL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',154072654,154177356,'NM_015315','LARP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',145472781,145542487,'NM_020117','LARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',169607665,169657400,'NM_005565','LCP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132237256,132238481,'NM_052971','LEAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',135310498,135318622,'NM_002302','LECT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',77816793,77980404,'NM_005779','LHFPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',38510821,38592505,'NM_001127671','LIFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',87872352,88016376,'NR_015436','LINC00461'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',96453329,96504276,'NM_153234','LIX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176691168,176711491,'NM_006816','LMAN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',36139170,36187772,'NM_001007527','LMBRD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',126140743,126200611,'NM_001198557','LMNB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',96319911,96390871,'NM_175920','LNPEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',90711919,90752288,'NR_027435','LOC100129716'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',80569139,80633144,'NR_034123','LOC100131067'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',43101045,43102830,'NR_034127','LOC100132356'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',99743107,99751857,'NR_027503','LOC100133050'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',69459044,69557378,'NR_024054','LOC100170939'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172314390,172318384,'NR_026683','LOC100268168'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',68962735,68964784,'NR_027439','LOC100272216'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',98292737,98294613,'NR_036530','LOC100289230'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',109246781,109249099,'NR_033175','LOC100289673'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',65276388,65277157,'NR_028474','LOC100303749'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140918061,140925011,'NR_038333','LOC100505658'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',110875822,111103322,'NR_040093','LOC100505678'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',8510799,8516209,'NR_039989','LOC100505738'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',9599311,9603409,'NR_045196','LOC100505806'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',121523769,121546257,'NM_001195535','LOC100505841'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',87600454,87768247,'NR_039993','LOC100505894'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',40861120,40865001,'NR_037665','LOC100506548'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1041424,1050455,'NM_001242737','LOC100506688'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175479157,175484774,'NR_038402','LOC100507387'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',146919749,147021765,'NR_038902','LOC153469'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',43077992,43081127,'NR_015447','LOC153684'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176978106,177031884,'NR_026921','LOC202181'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',6635286,6641613,'NR_024423','LOC255167'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',169691012,169694682,'NR_026945','LOC257358'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',52441443,52446709,'NR_034107','LOC257396'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',3470265,3589208,'NR_033898','LOC285577'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172939251,172944681,'NR_027108','LOC285593'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',158691103,158722420,'NR_037889','LOC285626'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',158808141,158825862,'NR_027110','LOC285627'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',160291363,160298211,'NR_027111','LOC285629'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',9694426,9956936,'NR_027112','LOC285692'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',17183136,17270531,'NR_027253','LOC285696'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176797495,176807551,'NR_038915','LOC340037'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134599822,134611766,'NR_037895','LOC340073'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',135012270,135017523,'NR_027127','LOC340074'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',5087471,5123115,'NR_026994','LOC340094'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',24871145,24876449,'NR_037896','LOC340107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',32983305,32998330,'NR_033832','LOC340113'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',135555054,135556750,'NR_024418','LOC389332'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',17432014,17440419,'NR_033975','LOC401177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',7352486,7359827,'NR_033906','LOC442132'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131674867,131733507,'NR_037898','LOC553103'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175502693,175558904,'NR_036494','LOC643201'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',27508155,27532265,'NR_038848','LOC643401'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',115415061,115422726,'NM_001195581','LOC644100'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79630672,79632053,'NR_004845','LOC644936'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',68866398,68885276,'NR_026578','LOC647859'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',43050587,43054670,'NR_034086','LOC648987'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',177234867,177243875,'NR_003615','LOC728554'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1650671,1687120,'NR_003713','LOC728613'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',76418378,76479932,'NR_024398','LOC728723'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',141255374,141256444,'NR_033244','LOC729080'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',8386595,8510677,'NR_039984','LOC729506'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180189564,180195332,'NR_027183','LOC729678'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',28962733,28963177,'NR_033961','LOC729862'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',121426788,121440817,'NM_001178102','LOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1514541,1577076,'NM_024830','LPCAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',244625,248468,'NM_001080478','LRRC14B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',61910318,61913031,'NM_181506','LRRC70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138232977,138238956,'NM_015564','LRRTM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',157103332,157116324,'NM_173491','LSM11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179153591,179156119,'NM_145867','LTC4S'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',130534539,130569018,'NM_181705','LYRM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',89847200,89861157,'NM_198273','LYSMD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179092456,179136893,'NM_014757','MAML1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',109053054,109231328,'NM_002372','MAN2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',71438873,71541153,'NM_005909','MAP1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',56146656,56227735,'NM_005921','MAP3K1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179593200,179651677,'NM_002752','MAPK9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',16120473,16232897,'NM_001102562','MARCH11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',126231304,126394339,'NM_178450','MARCH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',10406827,10488491,'NM_005885','MARCH6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',68746694,68773646,'NM_001038603','MARVELD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',66160359,66501179,'NM_015183','MAST4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',162865162,162878906,'NM_013283','MAT2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138657231,138695265,'NM_018834','MATR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',89789775,89806341,'NM_203406','MBLAC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',112385694,112852426,'NM_001085377','MCC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',94068046,94646035,'NM_024717','MCTP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',6425038,6431639,'NM_032286','MED10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',156498028,156502499,'NM_004270','MED7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',88049813,88235678,'NM_001193347','MEF2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',126654354,126824809,'NM_032446','MEGF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',153398711,153417207,'NM_001242336','MFAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180150146,180169423,'NM_001114618','MGAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179157203,179166558,'NM_014275','MGAT4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',56251185,56283711,'NM_152622','MIER3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',167920478,167920556,'NR_029520','MIR103A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',167920486,167920548,'NR_031721','MIR103B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179157883,179157952,'NR_031598','MIR1229'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132791186,132791297,'NR_031621','MIR1289-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',148788673,148788779,'NR_029684','MIR143'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',148766632,148792592,'NR_027180','MIR143HG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',148790401,148790489,'NR_029686','MIR145'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159844936,159845035,'NR_029701','MIR146A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',168127728,168127838,'NR_029632','MIR218-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',92982157,92982250,'NR_031754','MIR2277'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',153955764,153955825,'NR_036094','MIR3141'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159833986,159834068,'NR_036095','MIR3142'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179374908,179375003,'NR_029885','MIR340'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',85952069,85952148,'NR_037402','MIR3607'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',38593360,38593420,'NR_037423','MIR3650'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140007612,140007695,'NR_037428','MIR3655'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',89348193,89348293,'NR_037433','MIR3660'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',133589346,133589442,'NR_037434','MIR3661'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',169388069,169388148,'NR_039609','MIR378E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',170746264,170746369,'NR_037474','MIR3912'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131729080,131729190,'NR_037500','MIR3936'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',82171729,82171799,'NR_039773','MIR3977'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1761899,1761983,'NR_036240','MIR4277'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',6880965,6881034,'NR_036242','MIR4278'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',31971964,31972022,'NR_036241','MIR4279'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',86446451,86446527,'NR_036243','MIR4280'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175989045,175989107,'NR_036239','MIR4281'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',7322415,7322467,'NR_039659','MIR4454'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',588954,588997,'NR_039661','MIR4456'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1362424,1362492,'NR_039662','MIR4457'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',8514037,8514112,'NR_039663','MIR4458'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',128760653,128760739,'NR_039665','MIR4460'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134291627,134291701,'NR_039666','MIR4461'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54502116,54502207,'NR_029960','MIR449A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54502230,54502327,'NR_030387','MIR449B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54503846,54503938,'NR_031572','MIR449C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',128461279,128461358,'NR_039776','MIR4633'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',174111342,174111396,'NR_039777','MIR4634'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1116010,1116089,'NR_039778','MIR4635'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',9106927,9107007,'NR_039779','MIR4636'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',14879037,14879121,'NR_039780','MIR4637'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180582171,180582239,'NR_039781','MIR4638'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',71501049,71501123,'NR_039967','MIR4803'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',72210173,72210246,'NR_039968','MIR4804'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',109049179,109225081,'NR_030347','MIR548C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159002884,159095000,'NR_030385','MIR548D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',109049179,109225081,'NR_037515','MIR548Z'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',36183750,36183847,'NR_030306','MIR580'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',53283090,53283186,'NR_030307','MIR581'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',95440597,95440672,'NR_030309','MIR583'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',168623182,168623276,'NR_030311','MIR585'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137011159,137011237,'NR_030588','MIR874'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',87998426,87998513,'NR_030741','MIR9-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',52429651,52441082,'NM_004531','MOCS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',154300825,154329164,'NM_014180','MRPL22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1851498,1852956,'NM_032479','MRPL36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',71550991,71651840,'NM_015084','MRPS27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',44844783,44851373,'NM_016640','MRPS30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',68549328,68561741,'NM_033281','MRPS36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79986049,80208390,'NM_002439','MSH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',174084180,174090508,'NM_002449','MSX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',32262867,32348871,'NM_001040446','MTMR12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79981574,79982610,'NM_001190470','MTRNR2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',7922216,7954235,'NM_002454','MTRR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79308294,79322844,'NM_001167741','MTX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176666811,176671898,'NM_031300','MXD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',16715015,16989385,'NM_012334','MYO10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137231443,137251439,'NM_006790','MYOT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150020596,150039118,'NM_133371','MYOZ3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138751155,138753504,'NM_016459','MZB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',177473161,177485713,'NM_015111','N4BP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',36228450,36277657,'NM_001085411','NADKD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',85614017,85629118,'NR_003719','NBPF22P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',76043518,76044442,'NR_028375','NCRUPAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',141468507,141514192,'NM_030571','NDFIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149867866,149917966,'NM_001543','NDST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140005131,140007554,'NM_001185012','NDUFA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',60276712,60484621,'NM_174889','NDUFAF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',52892221,53014928,'NM_002495','NDUFS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1854495,1869167,'NM_004553','NDUFS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172000880,172051138,'NM_001142651','NEURL1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134897870,134899538,'NM_006161','NEUROG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',177509071,177513567,'NM_017838','NHP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',43228083,43316709,'NM_153361','NIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',156819604,156834308,'NM_001099287','NIPAL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',36912617,37101678,'NM_133433','NIPBL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1062167,1091925,'NM_033120','NKD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172591712,172594921,'NM_004387','NKX2-5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',65053778,65160867,'NM_020726','NLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137478759,137503031,'NM_003551','NME5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',151751294,151765033,'NM_020167','NMUR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',43638547,43741425,'NM_012343','NNT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175743837,175748146,'NM_016391','NOP16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',170747312,170766336,'NM_001037738','NPM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',32747194,32827587,'NM_001204375','NPR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137164780,137174338,'NR_002713','NPY6R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',92944798,92955542,'NM_005654','NR2F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',142637688,142763447,'NM_001020825','NR3C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139206547,139403068,'NM_001184935','NRG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',74098858,74108490,'NM_014886','NSA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176492685,176659820,'NM_172349','NSD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',6652351,6686473,'NM_017755','NSUN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',162813163,162819721,'NM_145266','NUDCD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',102912454,102926389,'NM_031438','NUDT12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',37327697,37406954,'NM_153485','NUP155'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',166644420,167623740,'NM_001122679','ODZ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180514548,180515496,'NM_206880','OR2V2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180098728,180099664,'NM_001001657','OR2Y1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180726893,180727832,'NM_001005224','OR4F3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',38881857,38971500,'NM_003999','OSMR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',76960292,76970278,'NM_032109','OTP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',41765923,41906548,'NM_000436','OXCT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131556202,131591455,'NM_001142598','P4HA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',43562126,43592952,'NM_006451','PAIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138705417,138733308,'NM_016480','PAIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',102229425,102394707,'NR_033440','PAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',167915205,167939192,'NM_024594','PANK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',78943998,79018227,'NM_001114393','PAPD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',6767717,6810161,'NM_006999','PAPD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',49998528,50178113,'NM_001178056','PARP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',59819515,59858002,'NR_028509','PART1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134268708,134326235,'NM_032151','PCBD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',141222400,141238128,'NM_002587','PCDH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',141304713,141318811,'NM_016580','PCDH12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140146059,140372113,'NM_018900','PCDHA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140215817,140218352,'NM_031859','PCDHA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140228014,140231305,'NM_031861','PCDHA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140235114,140372113,'NM_018903','PCDHA12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140242037,140372113,'NM_018904','PCDHA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140154627,140157246,'NM_031495','PCDHA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140160966,140163441,'NM_031497','PCDHA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140166855,140169353,'NM_031500','PCDHA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140181544,140183995,'NM_031501','PCDHA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140187833,140372113,'NM_031849','PCDHA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140194152,140196522,'NM_031852','PCDHA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140201090,140203535,'NM_031856','PCDHA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140207540,140372113,'NM_031857','PCDHA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140286485,140372113,'NM_018898','PCDHAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140325930,140372113,'NM_018899','PCDHAC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140411162,140413696,'NM_013340','PCDHB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140552135,140555397,'NM_018930','PCDHB10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140559531,140562802,'NM_018931','PCDHB11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140568474,140571882,'NM_018932','PCDHB12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140573692,140577177,'NM_018933','PCDHB13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140583261,140586045,'NM_018934','PCDHB14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140605330,140607985,'NM_018935','PCDHB15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140541163,140545980,'NM_020957','PCDHB16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140515763,140518174,'NR_001280','PCDHB17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140594121,140597285,'NR_001281','PCDHB18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140599872,140604496,'NR_001282','PCDHB19P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140454420,140457148,'NM_018936','PCDHB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140460417,140463590,'NM_018937','PCDHB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140481764,140485385,'NM_018938','PCDHB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140494983,140497888,'NM_015669','PCDHB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140510022,140513052,'NM_018939','PCDHB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140532426,140536141,'NM_018940','PCDHB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140537554,140540265,'NM_019120','PCDHB8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140547076,140551295,'NM_019119','PCDHB9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140690435,140692907,'NM_031993','PCDHGA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140772926,140775479,'NM_032090','PCDHGA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140780720,140872730,'NM_032092','PCDHGA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140790341,140792973,'NM_032094','PCDHGA12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140698537,140872730,'NM_018915','PCDHGA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140703784,140706274,'NM_032011','PCDHGA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140714951,140872730,'NM_018917','PCDHGA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140724081,140872730,'NM_018918','PCDHGA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140733834,140872730,'NM_018919','PCDHGA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140742650,140745371,'NM_032087','PCDHGA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140751666,140872730,'NM_032088','PCDHGA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140762703,140765190,'NM_032089','PCDHGA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140710011,140872730,'NM_018922','PCDHGB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140719886,140872730,'NM_018923','PCDHGB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140730145,140872730,'NM_018924','PCDHGB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140747635,140872730,'NM_003736','PCDHGB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140757878,140760335,'NM_032099','PCDHGB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140767953,140770416,'NM_032100','PCDHGB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140777397,140780180,'NM_032101','PCDHGB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140786036,140788009,'NR_001297','PCDHGB8P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140835752,140872730,'NM_002588','PCDHGC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140844924,140847540,'NM_032406','PCDHGC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140848991,140851628,'NM_032407','PCDHGC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',95751795,95794741,'NM_000439','PCSK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',148717762,148729414,'NM_024028','PCYOX1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',324735,368089,'NM_013232','PDCD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',58300622,58371096,'NM_001197222','PDE4D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149217711,149304549,'NM_000440','PDE6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',76542461,76759836,'NM_003719','PDE8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149473594,149515615,'NM_002609','PDGFRB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131621249,131637046,'NM_003687','PDLIM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176849852,176857208,'NM_213636','PDLIM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',31834787,32146795,'NM_178140','PDZD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',52119530,52134209,'NM_015946','PELO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139604818,139662873,'NM_002622','PFDN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176759713,176760243,'NM_001029886','PFN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',114574425,114626468,'NM_005023','PGGT1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',125964505,125990843,'NM_032177','PHAX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',133889696,133946817,'NM_015288','PHF15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',67547339,67633405,'NM_181523','PIK3R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134391322,134397863,'NM_002653','PITX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',108698308,108773574,'NM_014819','PJA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137253023,137304055,'NM_014386','PKD2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',145444068,145464139,'NM_001029869','PLAC8L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',41342804,41546487,'NM_001005473','PLCXD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',193372,243087,'NM_052909','PLEKHG4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',57785566,57791670,'NM_006622','PLK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',22178217,22188136,'NR_003921','PMCHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',70707367,70717576,'NR_003922','PMCHL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',75005779,75049069,'NM_001099271','POC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',74843412,74931402,'NM_016218','POLK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',89806436,89846125,'NM_006467','POLR3G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',145698779,145700276,'NM_002700','POU4F3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',93101770,93103065,'NM_153216','POU5F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',523624,526080,'NR_024158','PP7080'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54756439,54866630,'NM_176895','PPAP2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149131695,149214778,'NM_001172699','PPARGC1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',122386976,122400324,'NM_000943','PPIC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',102493155,102566808,'NM_015216','PPIP5K2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',156210126,156212117,'NR_038443','PPP1R2P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',133560046,133589849,'NM_002715','PPP2CA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',145949260,146238352,'NM_004576','PPP2R2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',64894886,64919126,'NM_015342','PPWD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',122452739,122551644,'NM_001136239','PRDM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',23543480,23564463,'NM_020227','PRDM9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176663440,176666556,'NM_013237','PRELID1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',145118774,145195092,'NM_138492','PRELID2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',40795237,40834054,'NM_006251','PRKAA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',35100947,35153981,'NM_001204315','PRLR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',177351841,177355849,'NM_006261','PROP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',119827917,120050863,'NM_016644','PRR16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176806401,176815893,'NM_030567','PRR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',126881207,126918679,'NM_130809','PRRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139155589,139204232,'NM_032289','PSD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',71651955,71690936,'NM_024754','PTCD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',40715788,40729594,'NM_000958','PTGER4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159781442,159788324,'NM_004219','PTTG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139473891,139479185,'NM_005859','PURA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159435469,159479030,'NM_052927','PWWP2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176660804,176663350,'NM_130781','RAB24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',57914695,58183163,'NM_138453','RAB3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',104463073,104463698,'NR_000039','RAB9BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',34941122,34951488,'NR_026591','RAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',68701394,68746387,'NM_133338','RAD17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131920514,132008212,'NM_005732','RAD50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',34723420,34868474,'NM_001145523','RAI14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',170221473,170659624,'NM_022897','RANBP17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',36284860,36337768,'NM_001161429','RANBP3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',130827206,130998828,'NM_001164390','RAPGEF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',167846040,167878887,'NM_002887','RARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',86600496,86723499,'NM_022650','RASA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179460400,179568736,'NM_175062','RASGEF1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',80292313,80557709,'NM_006909','RASGRF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150050544,150060862,'NM_018047','RBM22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',145563355,145648977,'NM_018989','RBM27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137802674,137810557,'NM_016606','REEP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',112239979,112285930,'NM_005669','REEP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140996700,141000815,'NM_173828','RELL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',95008338,95018605,'NM_173362','RFESD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',98132898,98160098,'NM_001012761','RGMB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',72957738,73273574,'NM_001177693','RGNEF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176717449,176732205,'NM_006480','RGS14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',63838207,63943877,'NM_001029875','RGS7BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',95092605,95157827,'NM_014899','RHOBTB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',38973779,39110258,'NM_152756','RICTOR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',96522326,96544761,'NM_018343','RIOK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',177490633,177508085,'NM_022762','RMND5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179315079,179431715,'NM_018434','RNF130'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54860426,54866127,'NR_001575','RNF138P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',141328634,141350040,'NM_004290','RNF14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',158516994,158567412,'NM_144726','RNF145'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',63497426,63549095,'NM_178532','RNF180'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175886305,175897027,'NM_014901','RNF44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',10494973,10518138,'NM_001201466','ROPN1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172319044,172329380,'NM_016093','RPL26L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',40867186,40871144,'NM_000997','RPL37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149803984,149809512,'NM_005617','RPS14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',81604894,81609991,'NM_001025','RPS23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',178910176,178969625,'NM_025158','RUFY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',33972247,33974780,'NM_016568','RXFP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',76181581,76252812,'NM_130772','S100Z'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',153805709,153820806,'NM_001131063','SAP30L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',133964737,133996432,'NM_016103','SAR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',77692094,77812318,'NM_004866','SCAMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',82395778,82395912,'NR_003139','SCARNA18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179949710,179951093,'NM_052863','SCGB3A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',147238466,147241949,'NM_054023','SCGB3A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',271355,309814,'NM_004168','SDHA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1625072,1647646,'NR_003263','SDHAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134012377,134091500,'NM_021982','SEC24A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',9088137,9599233,'NM_003966','SEMA5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',115807149,115938450,'NM_020796','SEMA6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',42835738,42847781,'NM_005410','SEPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132119595,132140966,'NM_001098812','SEPT8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',69356833,69364279,'NM_001178087','SERF1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79442805,79587654,'NM_001174071','SERINC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',174838119,174888227,'NM_022754','SFXN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',155686344,156117648,'NM_172244','SGCD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',64997510,65053697,'NM_019072','SGTB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',171693107,171814132,'NM_001017995','SH3PXD2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',145296318,145423072,'NM_152550','SH3RF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',148341905,148422930,'NM_024577','SH3TC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132185731,132189901,'NM_133456','SHROOM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138310308,138561964,'NM_022464','SIL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54639332,54757166,'NM_015360','SKIV2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',133519980,133540623,'NM_006930','SKP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',36187901,36219899,'NM_005983','SKP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',127447381,127553279,'NM_001046','SLC12A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1103488,1165172,'NM_006598','SLC12A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',36642213,36645156,'NM_001166696','SLC1A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131658043,131707798,'NM_003059','SLC22A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',131733299,131759205,'NM_003060','SLC22A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138730783,138746938,'NM_005847','SLC23A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140662379,140663796,'NM_031947','SLC25A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',110102652,110126385,'NM_138773','SLC25A46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',135198263,135252225,'NM_145282','SLC25A48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149320492,149347156,'NM_000112','SLC26A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',128329108,128397234,'NM_014031','SLC27A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',68425537,68436323,'NM_024055','SLC30A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176744037,176750120,'NM_001167579','SLC34A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139924603,139928867,'NM_080670','SLC35A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150807355,150852133,'NM_078483','SLC36A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150674731,150707344,'NM_181776','SLC36A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150636118,150663527,'NM_181774','SLC36A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',54957432,55043920,'NM_173514','SLC38A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',33980477,34020537,'NM_016180','SLC45A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139719970,139734906,'NM_031467','SLC4A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1278469,1299304,'NM_182632','SLC6A18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1254709,1278230,'NM_001003841','SLC6A19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1445904,1498543,'NM_001044','SLC6A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149549712,149570828,'NM_014228','SLC6A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',526333,577549,'NM_004174','SLC9A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',101597590,101660152,'NM_180991','SLCO4C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',101735550,101862619,'NM_173488','SLCO6A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',168025648,168660711,'NM_003062','SLIT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159761225,159778746,'NM_006425','SLU7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',68713442,69917303,'NR_029426','SMA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',69812625,69917305,'NR_034021','SMA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',135496434,135546321,'NM_005903','SMAD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',135493100,135498478,'NR_026763','SMAD5-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',121675718,121827693,'NM_001242935','SNCAIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175979815,175990163,'NM_003085','SNCB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138637339,138643216,'NR_003141','SNHG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',111525080,111525213,'NR_002922','SNORA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',76412014,76412152,'NR_003014','SNORA47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138642367,138642567,'NR_002915','SNORA74A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172380334,172380538,'NR_002988','SNORA74B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',9601938,9602026,'NR_003689','SNORD123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137924630,137924698,'NR_002913','SNORD63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',40868514,40868594,'NR_002583','SNORD72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180602919,180602982,'NR_002591','SNORD95'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180601423,180601495,'NR_002592','SNORD96A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',53849349,53852591,'NM_052870','SNX18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',122138648,122193701,'NM_003100','SNX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',122209058,122372801,'NM_014035','SNX24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',156985264,157012006,'NM_178424','SOX30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',151021201,151046710,'NM_003118','SPARC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138760354,138767675,'NM_194296','SPATA24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',95019775,95044470,'NM_031952','SPATA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',35653745,35707433,'NM_144722','SPEF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',147184335,147191453,'NM_003122','SPINK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',147628615,147645966,'NM_001040129','SPINK13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',147529488,147535154,'NM_001001325','SPINK14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',147423727,147497118,'NM_001127698','SPINK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',147562549,147574893,'NM_001195290','SPINK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',147672182,147675674,'NM_032566','SPINK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',147695314,147699605,'NM_001040433','SPINK9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',136338885,136862917,'NM_004598','SPOCK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',141670175,141684804,'NM_030964','SPRY4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79651545,79653416,'NM_032567','SPZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179166608,179197683,'NM_001142299','SQSTM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139909836,139917862,'NM_001035235','SRA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',6686499,6722675,'NM_001047','SRD5A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',65475840,65512470,'NM_001077199','SREK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',64049733,64100252,'NM_173829','SREK1IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',121325554,121392194,'NM_152546','SRFBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',112224783,112231988,'NM_001204196','SRP19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',80751427,81082828,'NM_012446','SSBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',100170537,100266886,'NM_005668','ST8SIA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',110861920,110876056,'NM_139164','STARD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',172674331,172689112,'NM_003714','STC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',171401678,171547951,'NM_005990','STK10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',146594771,146743961,'NM_001112724','STK32A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',32621361,32639942,'NM_006713','SUB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',75415060,75657172,'NM_014979','SV2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149977398,150012096,'NM_001166209','SYNPO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140678240,140680535,'NM_005642','TAF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',68696325,68701165,'NM_003187','TAF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',12627968,12858295,'NR_033383','TAG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',33476654,33503953,'NM_152295','TARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',9682108,9683463,'NM_019599','TAS2R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',179221676,179267462,'NM_198868','TBC1D9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',77022750,77107941,'NM_004607','TBCA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',145807065,145871262,'NM_001040006','TCERG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',133479196,133511819,'NM_001134851','TCF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149717394,149760064,'NM_001135245','TCOF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',1306286,1348162,'NM_198253','TERT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',135392482,135427406,'NM_000358','TGFBI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79366925,79414863,'NM_003248','THBS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',157090900,157099350,'NM_017872','THG1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',175319139,175328151,'NM_032361','THOC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',114942237,114966075,'NM_021649','TICAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134812456,134815988,'NM_001099221','TIFAB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',149352878,149360923,'NM_030953','TIGD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',156278870,156322844,'NM_001146726','TIMD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',170668892,170671743,'NM_021025','TLX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',139999195,140005173,'NM_018502','TMCO6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',114976803,114989775,'NM_181836','TMED7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',114942237,114989775,'NM_001164469','TMED7-TICAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176951818,176955705,'NM_017510','TMED9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',87526778,87600421,'NM_153354','TMEM161B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',82384420,82409028,'NM_174909','TMEM167A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',72452143,72463400,'NM_173490','TMEM171'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138835296,138842527,'NM_198282','TMEM173'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',72504778,72506726,'NM_153217','TMEM174'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',109783096,110090349,'NM_001039763','TMEM232'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',118719494,118758193,'NM_014350','TNFAIP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150389698,150441190,'NM_006058','TNIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',72148173,72245971,'NM_002270','TNPO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',712976,746510,'NM_007030','TPPP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',64921262,64955943,'NM_033228','TRIM23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',114488357,114544142,'NM_018700','TRIM36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180582911,180595414,'NM_201627','TRIM41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180615991,180620725,'NM_032765','TRIM52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180553529,180560536,'NM_203297','TRIM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',14196828,14562458,'NM_007118','TRIO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',945968,971164,'NM_004237','TRIP13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',135576897,135729063,'NM_001167576','TRPC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',110436910,110441621,'NR_033425','TSLP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176006993,176018665,'NM_012171','TSPAN17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',112796149,112798627,'NM_032028','TSSK1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',159368757,159425128,'NM_003314','TTC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',34875025,34935321,'NM_144725','TTC23L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',40747434,40791829,'NM_012382','TTC33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',94825354,94916465,'NM_014639','TTC37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',134237358,134265222,'NM_024715','TXNDC15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',133734768,133755698,'NM_003337','UBE2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',138920934,138988202,'NM_003339','UBE2D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',6501735,6549834,'NM_001145161','UBE2QL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',158622666,158645626,'NM_145049','UBLCP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',171569254,171643400,'NM_152277','UBTD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',35988947,36027292,'NM_152404','UGT3A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',36070875,36102780,'NM_174914','UGT3A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176264611,176366049,'NM_016290','UIMC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176170165,176240505,'NM_133369','UNC5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132230217,132232435,'NM_014402','UQCRQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',72897353,72913550,'NM_032175','UTP15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',82803248,82913878,'NM_004385','VCAN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',133335464,133368723,'NM_003374','VDAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140071044,140071142,'NR_026703','VTRNA1-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140078694,140078782,'NR_026704','VTRNA1-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140085927,140086015,'NR_026705','VTRNA1-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',135444085,135444185,'NR_030583','VTRNA2-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',110455768,110494099,'NM_139281','WDR36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',76763824,76824088,'NM_018268','WDR41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140024567,140030737,'NM_017706','WDR55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',37415168,37788531,'NM_018034','WDR70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',137447672,137455098,'NM_058244','WNT8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',167651642,167831886,'NM_001161662','WWC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',82409072,82685335,'NM_022550','XRCC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',143517919,143530471,'NM_030799','YIPF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',112877289,112958883,'NM_022828','YTHDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',76408287,76418786,'NM_032367','ZBED3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',132360575,132390139,'NM_017665','ZCCHC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',80633157,80644721,'NM_001131035','ZCCHC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',848719,904101,'NM_024786','ZDHHC11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',178255521,178292816,'NM_030613','ZFP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',180207218,180220892,'NM_001172638','ZFP62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',32390212,32480601,'NM_016107','ZFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',79739593,79811254,'NM_001105251','ZFYVE16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',140060215,140066423,'NM_144723','ZMAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',43157398,43211580,'NM_003432','ZNF131'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150254146,150264738,'NM_052860','ZNF300'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',150290190,150306339,'NR_026867','ZNF300P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',176382302,176426351,'NM_012279','ZNF346'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',178071127,178090309,'NM_005649','ZNF354A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',178219559,178244030,'NM_058230','ZNF354B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',178420212,178440297,'NM_014594','ZNF354C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',71774989,71839005,'NM_152625','ZNF366'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',178300799,178325824,'NM_001178090','ZNF454'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',121493113,121517165,'NM_207317','ZNF474'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',124000508,124108704,'NM_020747','ZNF608'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',16504627,16518894,'NM_033414','ZNF622'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',178383381,178393994,'NM_001136116','ZNF879'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5',60663856,60877756,'NM_020928','ZSWIM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5_',71262,111099,'NM_176816','CCDC125'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5_',970346,1005316,'NR_033417','GTF2H2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5_',972663,1005315,'NM_001098728','GTF2H2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5_',973040,1005292,'NM_001042490','GTF2H2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5_',1543933,1615349,'NM_022132','MCCC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5_',393127,449737,'NM_004536','NAIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5_',1007434,1030855,'NM_002538','OCLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5_',499651,517541,'NM_021967','SERF1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5_',465175,493242,'NM_000344','SMN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr5_',465171,493242,'NM_022876','SMN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44374440,44389041,'NM_020745','AARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43507466,43526141,'NM_033450','ABCC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30647148,30667288,'NM_001090','ABCF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26705149,26708256,'NM_013375','ABT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160102978,160120077,'NM_005891','ACAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',24775241,24813274,'NM_018473','ACOT13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',143785661,143813534,'NM_182503','ADAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32256722,32260077,'NM_001206934','AGER'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32243960,32253866,'NM_032741','AGPAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',161471046,161615097,'NM_020133','AGPAT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',161501153,161503004,'NR_024277','AGPAT4-IT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',135646802,135860596,'NM_001134830','AHI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',143423715,143703134,'NM_016108','AIG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',107066422,107125027,'NM_001624','AIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',151688358,151721390,'NM_144497','AKAP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',131612991,131646368,'NM_138633','AKAP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',109920751,110119108,'NM_001145128','AKD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',88441296,88468704,'NM_018064','AKIRIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',88466913,88467960,'NR_002767','AKIRIN2-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',24603175,24645414,'NM_170740','ALDH5A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',135280220,135312953,'NM_022568','ALDH8A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',111302679,111323606,'NM_001634','AMD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',90199615,90400274,'NM_014942','ANKRD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34965015,35167168,'NM_015245','ANKS1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41128917,41140608,'NM_006789','APOBEC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31731649,31733966,'NM_019101','APOM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',131936036,131947165,'NM_000045','ARG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',129939932,130073063,'NM_033515','ARHGAP18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',157140755,157573605,'NM_020732','ARID1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',109276311,109402045,'NM_032131','ARMC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',101410899,101435945,'NM_022091','ASCC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',119263627,119272034,'NM_014034','ASF1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30702591,30720427,'NM_024909','ATAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32191022,32203995,'NM_001136153','ATF6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',106739044,106880388,'NM_004849','ATG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42803291,42803910,'NR_037141','ATP6V0CP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31620206,31622604,'NM_001204078','ATP6V1G2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',16407321,16869700,'NM_001128164','ATXN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33352894,33354580,'NM_003782','B3GALT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',71627789,71723509,'NM_080742','B3GAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',90692967,91063283,'NM_021813','BACH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',57145062,57157971,'NM_004282','BAG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',69402352,70156124,'NM_001704','BAI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33648300,33656048,'NM_001188','BAK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',80873062,81112706,'NM_183050','BCKDHB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',136619693,136652682,'NM_001077440','BCLAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',107493077,107542329,'NM_001080450','BEND3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',56927731,57000101,'NM_152731','BEND6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',116924343,116973466,'NM_001139444','BET3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',55728195,55848334,'NM_021073','BMP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',7672009,7826960,'NM_001718','BMP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',3063924,3098431,'NM_004332','BPHL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33046642,33057260,'NR_037625','BRD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',118929228,118931689,'NR_002730','BRD7P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',166698397,166716476,'NM_016098','BRP44L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36272527,36308545,'NM_015695','BRPF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',38244204,38671821,'NM_152733','BTBD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26609473,26618631,'NM_001732','BTN1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26566131,26577845,'NM_078476','BTN2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26491302,26503079,'NM_001197238','BTN2A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26529597,26538795,'NR_027795','BTN2A3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26510443,26523423,'NM_007048','BTN3A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26473376,26486519,'NM_001197247','BTN3A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26548678,26561622,'NM_001242803','BTN3A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32470490,32482878,'NM_019602','BTNL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',105651391,105691742,'NM_001199563','BVES'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41996942,42008762,'NM_004053','BYSL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32090549,32111173,'NM_007293','C4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32057812,32078436,'NM_001002029','C4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34322134,34324882,'NM_001008703','C6orf1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32368452,32447634,'NM_006781','C6orf10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',146961828,147178290,'NM_024694','C6orf103'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',11821873,11887266,'NM_001143948','C6orf105'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34663047,34772603,'NM_022758','C6orf106'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43301344,43305189,'NM_006443','C6orf108'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',105692254,105724512,'NR_037157','C6orf112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',139391511,139406132,'NM_021243','C6orf115'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',165613142,165643101,'NM_144980','C6orf118'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',169844181,169848327,'NM_001029863','C6orf120'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',167928067,167940388,'NR_026773','C6orf123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',167967418,167970325,'NR_027906','C6orf124'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33773323,33787482,'NM_032340','C6orf125'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35852369,35855307,'NM_207409','C6orf126'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35856808,35863819,'NM_001010886','C6orf127'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41142508,41148166,'NM_145063','C6orf130'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42176834,42218693,'NM_001164446','C6orf132'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',47975303,48144384,'NM_207499','C6orf138'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',49626071,49627767,'NM_001145652','C6orf141'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',3667834,3697245,'NM_183373','C6orf145'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',4013591,4024456,'NM_173563','C6orf146'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',74040582,74076809,'NR_027005','C6orf147'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31186978,31188311,'NM_014070','C6orf15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43582684,43586402,'NM_001012974','C6orf154'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',88089024,88108762,'NM_020425','C6orf162'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',88111289,88131900,'NM_001010868','C6orf163'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',88163560,88166178,'NR_026784','C6orf164'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',88174408,88230910,'NM_001031743','C6orf165'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',99827513,99904252,'NM_032511','C6orf168'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',121442325,121697343,'NM_152730','C6orf170'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',127801243,127882193,'NM_001012279','C6orf174'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',110673841,110786168,'NM_001123364','C6orf186'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',130194081,130224109,'NM_001010876','C6orf191'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',133132199,133161440,'NM_052831','C6orf192'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',2567970,2580297,'NM_152554','C6orf195'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',4024438,4075998,'NM_001085401','C6orf201'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',107456099,107479239,'NM_016487','C6orf203'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',118919287,119079713,'NM_206921','C6orf204'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',169932093,169944894,'NR_026780','C6orf208'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',151815114,151832925,'NM_024573','C6orf211'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',10536003,10543041,'NR_027793','C6orf218'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',74129120,74130619,'NM_001017361','C6orf221'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36391512,36412640,'NM_001010903','C6orf222'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44076314,44081672,'NM_153246','C6orf223'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',112515366,112530686,'NM_001033564','C6orf225'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42965980,42966532,'NM_001008739','C6orf226'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',11202251,11246955,'NM_001135575','C6orf228'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31799099,31802464,'NM_025260','C6orf25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31838751,31840603,'NM_001039651','C6orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31841349,31853087,'NM_025258','C6orf27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31734053,31736528,'NM_021184','C6orf47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31910671,31915520,'NM_001040438','C6orf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',10779636,10802825,'NM_001145020','C6orf52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',71333345,71355327,'NM_145267','C6orf57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',127940011,127954653,'NM_001010905','C6orf58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',24813068,24827382,'NM_030939','C6orf62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',39179817,39190843,'NM_018322','C6orf64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',80570022,80636856,'NM_001243308','C6orf7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',169893645,169923542,'NM_018341','C6orf70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',149929220,149953760,'NM_138785','C6orf72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35812836,35824663,'NM_145028','C6orf81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36961617,37004718,'NM_152734','C6orf89'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',144227265,144301176,'NM_001013623','C6orf94'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',151856867,151984021,'NM_025059','C6orf97'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',159229606,159251373,'NM_001195032','C6orf99'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',7274328,7334941,'NM_001170693','CAGE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',163754086,163754972,'NR_037593','CAHM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',17501714,17666002,'NM_006366','CAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44234525,44260117,'NM_007058','CAPN11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',90596339,90640876,'NM_001137668','CASP8AP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',109722198,109736116,'NR_028595','CCDC162P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',37558674,37575678,'NM_138493','CCDC167'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',139136349,139156149,'NM_015439','CCDC28A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',13894759,13922771,'NM_001031713','CCDC90A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',100096983,100123411,'NM_005190','CCNC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42010648,42017530,'NM_001760','CCND3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',167456230,167472619,'NM_031409','CCR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',74462228,74594761,'NM_001159588','CD109'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',109794409,109810455,'NM_006016','CD164'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',47553483,47702955,'NM_012120','CD2AP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',14225843,14245127,'NM_004233','CD83'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',110608316,110660115,'NM_015891','CDC40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44463279,44522758,'NM_001253','CDC5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',111037873,111243105,'NM_015076','CDK19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',20642666,21340613,'NM_017774','CDKAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36754464,36763095,'NM_001220778','CDKN1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',4835224,4900777,'NM_001143971','CDYL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',49539054,49568779,'NM_018132','CENPQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',126702945,126711447,'NM_001012507','CENPW'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',109523048,109591808,'NM_001083535','CEP57L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32021699,32027840,'NM_001710','CFB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',87851940,87861543,'NM_000735','CGA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',139735089,139737478,'NM_006079','CITED2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',155626838,155639374,'NM_001001346','CLDN20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',45974165,46091556,'NM_016929','CLIC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35870737,35873080,'NM_001832','CLPS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',123359280,123426762,'NM_001010852','CLVS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',25216179,25246599,'NR_027626','CMAHP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',154768124,154873445,'NM_173515','CNKSR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43004837,43014986,'NM_006586','CNPY3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',88906303,88932486,'NM_001160259','CNR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',116546777,116553989,'NM_000493','COL10A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',75850761,75972343,'NM_004370','COL12A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',70633168,70978878,'NM_001858','COL19A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',56029346,56220337,'NM_030820','COL21A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',70982463,71069507,'NM_001851','COL9A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',99924068,99948803,'NM_017421','COQ3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',76004110,76010364,'NM_001865','COX7A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36816532,36915198,'NM_020939','CPNE5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43381188,43384508,'NM_206922','CRIP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',49909940,49942177,'NM_170609','CRISP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',49768030,49789258,'NM_001142417','CRISP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',49803053,49820109,'NM_001190986','CRISP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31741635,31745822,'NM_001320','CSNK2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132071273,132073850,'NM_001145659','CTAGE9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132311009,132314211,'NM_001901','CTGF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43113332,43129661,'NM_001168370','CUL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43257899,43300303,'NM_015089','CUL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33492296,33494043,'NM_001014840','CUTA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',84626088,84726865,'NM_016230','CYB5R4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32081390,32084664,'NR_040090','CYP21A1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',46625403,46728482,'NM_016593','CYP39A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',39868136,39980631,'NM_001201427','DAAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',168450432,168463251,'NM_214462','DACT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',117910512,117997713,'NM_173674','DCBLD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',24279961,24491499,'NM_001195610','DCDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31802795,31806018,'NM_013974','DDAH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',110820075,110843446,'NM_004032','DDO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31605974,31618231,'NM_004640','DDX39B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',74161005,74184010,'NM_018665','DDX43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35373572,35397526,'NM_022047','DEF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',50094514,50097653,'NM_001037497','DEFB110'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',50119246,50124323,'NM_001037498','DEFB112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',50044348,50045297,'NM_001037729','DEFB113'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',50035963,50039777,'NM_001037499','DEFB114'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',50021772,50025116,'NM_001166478','DEFB133'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',18332378,18372778,'NM_003472','DEK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30728874,30748809,'NM_001164239','DHX16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',163679363,163688055,'NR_033862','DKFZp451B082'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',2933199,2936404,'NR_026855','DKFZP686I15217'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43526067,43531764,'NM_206539','DLK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',170433218,170441622,'NM_005618','DLL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',38791094,39106552,'NM_001206927','DNAH8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32045566,32048011,'NM_005510','DOM3Z'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',83834103,83934909,'NM_015018','DOPEY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',74119505,74120720,'NM_001025290','DPPA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',116707975,116866135,'NM_001080976','DSE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',7486868,7531945,'NM_004415','DSP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',56430743,56615653,'NM_015548','DST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',15631784,15771268,'NR_036448','DTNBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',237100,296355,'NM_020185','DUSP22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',158977494,158985792,'NM_006519','DYNLT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',20510115,20601924,'NM_001949','E2F3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',127651549,127706447,'NM_018479','ECHDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',4060925,4080830,'NM_006117','ECI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',139158940,139266900,'NM_001195037','ECT2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',12398514,12405413,'NM_001955','EDN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',74282193,74287476,'NM_001402','EEF1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',8024626,8047827,'NM_004280','EEF1E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',7958798,8047827,'NR_037618','EEF1E1-MUTED'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52392952,52468542,'NR_033327','EFHC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31955515,31973443,'NM_025256','EHMT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',11088978,11152610,'NM_017770','ELOVL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',80681247,80714034,'NM_022726','ELOVL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',53240154,53321936,'NM_001242830','ELOVL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132170848,132257988,'NM_006208','ENPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132000134,132110243,'NM_005021','ENPP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',46205659,46222395,'NM_014936','ENPP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',46235720,46246676,'NM_021572','ENPP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',131202180,131426109,'NM_001135555','EPB41L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',94006458,94186021,'NM_004440','EPHA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',145988132,146098684,'NM_005670','EPM2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',11210707,11220057,'NM_207582','ERVFRD-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',152168500,152466101,'NM_001122741','ESR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36441948,36463555,'NM_001207041','ETV7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',430137,638109,'NM_018303','EXOC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',133604187,133894951,'NM_172105','EYA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',64487834,66473839,'NM_001142800','EYS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',159106760,159160444,'NM_001111077','EZR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',6089309,6265923,'NM_000129','F13A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',123142344,123146917,'NM_001446','FABP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',170457768,170556162,'NM_032448','FAM120B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',71192862,71327598,'NM_001162529','FAM135A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',117180052,117193579,'NM_001085480','FAM162B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',119322694,119441511,'NM_024581','FAM184A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',116956887,116986724,'NM_153036','FAM26D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',116939500,116946402,'NM_153711','FAM26E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',116889248,116891627,'NM_001010919','FAM26F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',82512165,82519147,'NM_017633','FAM46A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',3794630,3796550,'NM_012135','FAM50B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',136593860,136613142,'NM_001099286','FAM54A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',24912491,25019174,'NM_014722','FAM65B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',54819527,54914778,'NM_001010872','FAM83B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',17708496,17719929,'NM_016255','FAM8A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35528115,35542859,'NM_021922','FANCE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',5206582,5716815,'NM_006567','FARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',99428321,99502570,'NM_012160','FBXL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',146160964,146177614,'NM_032145','FBXO30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',153333350,153346433,'NM_001142522','FBXO5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',53037754,53073629,'NM_033481','FBXO9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',37081400,37104823,'NM_173558','FGD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',167332805,167374056,'NM_194429','FGFR1OP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',97117144,97171233,'NM_020482','FHL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',110119116,110253327,'NM_014845','FIG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',76074519,76260216,'NM_015687','FILIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35656311,35764697,'NM_001145777','FKBP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32204461,32206045,'NM_022110','FKBPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27400556,27401720,'NM_032030','FKSG83'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',17210467,17239582,'NM_001190766','FLJ23152'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',114332243,114349499,'NR_027060','FLJ34503'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',40420061,40431723,'NR_038887','FLJ41649'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',139054497,139060118,'NR_033896','FLJ46906'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30803489,30818432,'NM_005803','FLOT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',159510416,159613130,'NM_032532','FNDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',1555679,1559128,'NM_001453','FOXC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',1335067,1340831,'NM_001452','FOXF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',108988761,109112664,'NM_001455','FOXO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41622141,41678100,'NM_138457','FOXP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',1257674,1259993,'NM_033260','FOXQ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',116369385,116488614,'NM_002031','FRK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',168199312,168219381,'NM_001122841','FRMD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41845891,41855608,'NM_006653','FRS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',37508884,37557262,'NM_015050','FTSJD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',143857641,143874713,'NM_032020','FUCA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',96570565,96770209,'NM_006581','FUT9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',112088227,112147958,'NM_153047','FYN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',89943941,89984215,'NM_002042','GABRR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',90023957,90081686,'NM_002043','GABRR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',53470098,53517886,'NM_001498','GCLC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',53099718,53121583,'NM_003643','GCM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',10981441,10990084,'NM_004752','GCM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',10629553,10737587,'NM_145649','GCNT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',13471565,13595848,'NM_018988','GFOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',55300225,55375250,'NM_207410','GFRAL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33659453,33664781,'NR_028361','GGNBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',121798443,121812572,'NM_000165','GJA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',90660908,90662540,'NM_032602','GJA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',88049415,88095715,'NM_198568','GJB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',38751679,38778930,'NM_006708','GLO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',39124534,39163498,'NM_002062','GLP1R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',49575629,49603736,'NM_001010904','GLYATL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',1569039,2190845,'NM_001500','GMDS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',24883142,24894257,'NM_015895','GMNN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',16346789,16403759,'NM_006877','GMPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30617133,30633350,'NM_005275','GNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43036477,43039596,'NM_018960','GNMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',117988125,118030398,'NM_020399','GOPC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31736984,31741618,'NM_001199238','GPANK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',24536383,24597829,'NM_001503','GPLD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',47075771,47118041,'NM_153840','GPR110'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',47732284,47773492,'NM_153839','GPR111'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',47774247,47797716,'NM_153838','GPR115'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',46928203,46997673,'NM_001098518','GPR116'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',142664748,142809096,'NM_020455','GPR126'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',167490349,167491309,'NM_005299','GPR31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',110406990,110408616,'NM_005284','GPR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',97352608,97392074,'NM_001143957','GPR63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',117219940,117256891,'NM_148963','GPRC6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32266520,32271278,'NM_022107','GPSM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28601767,28610707,'NM_001509','GPX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28579051,28591549,'NM_182701','GPX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',101953581,102624651,'NM_175768','GRIK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',146390474,146800424,'NM_001114329','GRM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34097605,34209421,'NM_000841','GRM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52764136,52776623,'NM_145740','GSTA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52722843,52736320,'NM_000846','GSTA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52869397,52882455,'NM_000847','GSTA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52950704,52968137,'NM_001512','GSTA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52804499,52818852,'NM_153699','GSTA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52712219,52717916,'NR_033760','GSTA7P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',111474314,111475450,'NR_002932','GSTM2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30983955,30989859,'NM_001517','GTF2H4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',158509366,158540364,'NM_207118','GTF2H5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',111386455,111395784,'NM_138408','GTF3C6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43696195,43704914,'NM_019096','GTPBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42231121,42255772,'NM_000409','GUCA1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42258999,42270672,'NM_002098','GUCA1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26947244,27032312,'NR_003504','GUSBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',58354117,58395683,'NR_003660','GUSBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',105282660,105414487,'NM_020771','HACE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',135398687,135417729,'NM_001145207','HBS1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26629912,26635591,'NR_026790','HCG11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30363152,30402906,'NR_024052','HCG18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31129962,31135632,'NR_003948','HCG22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32466264,32469446,'NR_044996','HCG23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33325290,33330645,'NR_044997','HCG25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31546984,31548164,'NR_002812','HCG26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31273515,31279724,'NR_026791','HCG27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29866786,29868829,'NR_002139','HCG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30000347,30001407,'NR_001317','HCG4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30050870,30054156,'NR_028032','HCG9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',55147029,55255377,'NM_001526','HCRTR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',114364012,114399052,'NM_001527','HDAC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',125638194,125664981,'NM_016063','HDDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',22677656,22678729,'NM_138574','HDGFL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',138767028,138776275,'NM_014320','HEBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',139497941,139543639,'NM_016217','HECA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',126112424,126124108,'NM_012259','HEY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26195487,26203448,'NM_139006','HFE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',168119452,168120468,'NM_001129895','HGC6.3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',126319553,126343082,'NM_138571','HINT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26125238,26126019,'NM_005325','HIST1H1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27942548,27943338,'NM_005322','HIST1H1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26163946,26164678,'NM_005319','HIST1H1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26342418,26343195,'NM_005320','HIST1H1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26264537,26265322,'NM_005321','HIST1H1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26215618,26216343,'NM_005323','HIST1H1T'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',25834269,25834769,'NM_170745','HIST1H2AA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26141298,26141775,'NM_003513','HIST1H2AB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26232351,26232897,'NM_003512','HIST1H2AC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26306990,26307450,'NM_021065','HIST1H2AD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26325126,26325690,'NM_021052','HIST1H2AE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27208795,27209293,'NM_021064','HIST1H2AG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27222886,27223325,'NM_080596','HIST1H2AH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27883955,27884424,'NM_003509','HIST1H2AI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27890058,27890497,'NM_021066','HIST1H2AJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27913636,27914096,'NM_003510','HIST1H2AK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27941085,27941555,'NM_003511','HIST1H2AL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27968455,27968942,'NM_003514','HIST1H2AM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',25840639,25841068,'NR_045125','HIST1H2APS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',25835115,25835552,'NM_170610','HIST1H2BA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26151433,26151864,'NM_021062','HIST1H2BB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26231673,26232111,'NM_003526','HIST1H2BC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26266327,26279555,'NM_138720','HIST1H2BD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26292002,26292437,'NM_003523','HIST1H2BE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26307765,26308195,'NM_003522','HIST1H2BF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26324407,26324851,'NM_003518','HIST1H2BG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26359857,26360282,'NM_003524','HIST1H2BH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26381182,26381619,'NM_003525','HIST1H2BI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27208073,27208554,'NM_021058','HIST1H2BJ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27214050,27222616,'NM_080593','HIST1H2BK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27883235,27883688,'NM_003519','HIST1H2BL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27890800,27891246,'NM_003521','HIST1H2BM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27914418,27914867,'NM_003520','HIST1H2BN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27969181,27969648,'NM_003527','HIST1H2BO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26128696,26129165,'NM_003529','HIST1H3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26139795,26140267,'NM_003537','HIST1H3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26153617,26154076,'NM_003531','HIST1H3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26304990,26307443,'NM_003530','HIST1H3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26333361,26333823,'NM_003532','HIST1H3E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26358348,26358814,'NM_021018','HIST1H3F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26379124,26379591,'NM_003534','HIST1H3G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27885820,27886293,'NM_003536','HIST1H3H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27947601,27948078,'NM_003533','HIST1H3I'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27966071,27966549,'NM_003535','HIST1H3J'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26129885,26130257,'NM_003538','HIST1H4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26135102,26135459,'NM_003544','HIST1H4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26212154,26212544,'NM_003542','HIST1H4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26296916,26297283,'NM_003539','HIST1H4D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26312851,26313228,'NM_003545','HIST1H4E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26348632,26349000,'NM_003540','HIST1H4F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26354817,26355184,'NM_003547','HIST1H4G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26393332,26393706,'NM_003543','HIST1H4H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27215066,27215436,'NM_003495','HIST1H4I'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27899881,27900237,'NM_021968','HIST1H4J'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27906930,27907284,'NM_003541','HIST1H4K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27948904,27949268,'NM_003546','HIST1H4L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',12120709,12273218,'NM_002114','HIVEP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',143114296,143308031,'NM_006734','HIVEP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31429627,31432968,'NM_005514','HLA-B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31344504,31347892,'NM_002117','HLA-C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33024368,33028877,'NM_006120','HLA-DMA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33079937,33085367,'NM_002119','HLA-DOA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33140323,33149432,'NM_033554','HLA-DPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33151680,33165451,'NM_002121','HLA-DPB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33188270,33204868,'NR_001435','HLA-DPB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32713160,32719407,'NM_002122','HLA-DQA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32817140,32822642,'NM_020056','HLA-DQA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32735218,32742444,'NM_002123','HLA-DQB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32831852,32839308,'NM_001198858','HLA-DQB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32515596,32520802,'NM_019111','HLA-DRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32593131,32605984,'NM_002125','HLA-DRB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32628467,32635757,'NR_001298','HLA-DRB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30565161,30569961,'NM_005516','HLA-E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29802356,29824805,'NR_026972','HLA-F-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29902734,29906878,'NM_002127','HLA-G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29963361,29966835,'NR_001434','HLA-H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30081726,30085712,'NR_024240','HLA-J'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30335317,30342707,'NR_027822','HLA-L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34312554,34321986,'NM_002131','HMGA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',134476800,134480511,'NR_037938','HMGA1P7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',55407129,55551971,'NM_019036','HMGCLL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',79967680,80001174,'NM_138730','HMGN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26646550,26655143,'NM_006353','HMGN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',114483442,114490734,'NM_153612','HS3ST5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33280396,33282585,'NM_014234','HSD17B8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',122762394,122795963,'NM_004506','HSF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44322826,44329592,'NM_007355','HSP90AB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31891269,31893698,'NM_005345','HSPA1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31903490,31906010,'NM_005346','HSPA1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31885374,31890814,'NM_005527','HSPA1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',78228666,78229839,'NM_000863','HTR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',87703742,87783116,'NM_000865','HTR1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',8597440,8599080,'NR_004855','HULC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',600938,601964,'NM_148959','HUS1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',144365727,144371560,'NR_002768','HYMAI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',82936674,83014167,'NM_015525','IBTK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52974056,53034559,'NM_014920','ICK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',19945595,19948894,'NM_001546','ID4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30818954,30820306,'NM_003897','IER3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29826562,29826904,'NR_001590','IFITM4P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',137560313,137582260,'NM_000416','IFNGR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160310120,160447573,'NM_000876','IGF2R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52159143,52163395,'NM_002190','IL17A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52209442,52217257,'NM_052872','IL17F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',137362800,137407991,'NM_014432','IL20RA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',137506649,137536478,'NM_181310','IL22RA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',76687781,76839055,'NM_001563','IMPG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33797420,33822740,'NM_001142883','IP6K3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',154517309,154719592,'NM_015553','IPCEF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',79633907,79665039,'NM_001010844','IRAK1BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',336738,356443,'NM_002460','IRF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33697133,33772326,'NM_002224','ITPR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150731720,150767458,'NM_001164695','IYD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',15354505,15630232,'NM_004973','JARID2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',24465109,24466491,'NM_181337','KAAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',149957703,150011633,'NM_007044','KATNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',39390451,39398308,'NM_032115','KCNK16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',39374754,39390215,'NM_001135111','KCNK17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',39264724,39305229,'NM_003740','KCNK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',73388291,73965294,'NM_001160130','KCNQ5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36518521,36566293,'NM_173562','KCTD20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',18263597,18332063,'NM_153042','KDM1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',74007758,74029628,'NM_030568','KHDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',73989988,73991896,'NM_001126063','KHDC1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',62447823,63054059,'NM_152688','KHDRBS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42896771,42944274,'NM_015349','KIAA0240'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',24652310,24754362,'NM_014809','KIAA0319'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',127801243,127822228,'NM_014702','KIAA0408'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',84890678,84994054,'NM_014895','KIAA1009'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',138524745,138707493,'NM_020340','KIAA1244'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',57019342,57027982,'NM_020931','KIAA1586'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',111687174,111696954,'NM_153369','KIAA1919'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30752144,30763651,'NM_133471','KIAA1949'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',17867392,18095833,'NM_001105568','KIF13A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',168161401,168188618,'NM_030615','KIF25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',39410853,39801159,'NM_145027','KIF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33467290,33485677,'NM_002263','KIFC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43135606,43150811,'NM_201523','KLC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43090199,43097014,'NM_001242872','KLHDC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',53620657,53638465,'NM_001003760','KLHL31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',97479216,97695351,'NM_052904','KLHL32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',117109059,117169723,'NM_002269','KPNA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',130381420,130504287,'NM_001007102','L3MBTL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',108722790,108950944,'NM_145315','LACE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',129245978,129879403,'NM_000426','LAMA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',112535826,112682521,'NM_002290','LAMA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150023743,150081085,'NM_004690','LATS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',80251426,80303866,'NM_001122769','LCA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33846967,33862697,'NM_001143944','LEMD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',64043814,64087841,'NM_001143940','LGSN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35881048,35899830,'NM_182548','LHFPL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',105511615,105637899,'NM_001004317','LIN28B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',109179549,109197838,'NR_033376','LINC00222'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27032750,27099732,'NR_026775','LINC00240'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',169930810,169940846,'NR_026781','LINC00242'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',135860631,136053669,'NR_026805','LINC00271'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',133450911,133469410,'NR_026969','LINC00326'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33661860,33669093,'NR_027908','LINC00336'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',21774653,22302595,'NR_015410','LINC00340'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',72180869,72187169,'NR_026807','LINC00472'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',166272937,166321517,'NR_026860','LINC00473'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',70442361,70563770,'NM_018368','LMBRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',149317087,149327513,'NR_038408','LOC100128176'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160101280,160103354,'NR_037166','LOC100129518'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',10520536,10524388,'NR_033910','LOC100130275'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',13387505,13403797,'NM_001242698','LOC100130357'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',100075590,100087780,'NM_001195131','LOC100130890'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',38982248,39028861,'NR_038401','LOC100131047'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27837501,27838945,'NR_038929','LOC100131289'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43966742,44013922,'NR_024478','LOC100132354'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',140133902,140223301,'NR_038399','LOC100132735'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27095123,27096064,'NR_026776','LOC100270746'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',119210563,119211274,'NR_037662','LOC100287632'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',46822612,46834913,'NM_001162435','LOC100287718'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',80000109,80003236,'NR_040671','LOC100288198'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',166676108,166684947,'NR_040022','LOC100289495'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32969930,32979513,'NR_037178','LOC100294145'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',107272019,107341993,'NR_033557','LOC100422737'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',8380854,8657525,'NR_038979','LOC100506207'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',11151976,11187363,'NR_038963','LOC100506409'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',76051449,76058300,'NR_040081','LOC100506804'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27769792,27785980,'NR_038293','LOC100507173'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',3128050,3141000,'NR_038295','LOC100507194'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',131190237,131199968,'NM_001195597','LOC100507203'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132496810,132532209,'NR_038981','LOC100507254'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29605161,29609324,'NR_037181','LOC100507362'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',139088040,139136509,'NM_001242740','LOC100507462'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32919840,32922255,'NR_037173','LOC100507463'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',143329251,143400412,'NR_038987','LOC100507489'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32228556,32230120,'NR_037170','LOC100507547'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',146097697,146249414,'NR_038246','LOC100507557'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33965265,33972662,'NR_038989','LOC100507584'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150226326,150282337,'NR_045126','LOC100652739'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',142889284,143000666,'NR_027311','LOC153910'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',134800546,134866851,'NR_038216','LOC154092'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',170405346,170413582,'NR_002787','LOC154449'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41176750,41216551,'NR_026938','LOC221442'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',143917159,143932169,'NR_027113','LOC285740'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',114295870,114301205,'NR_038863','LOC285758'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',906240,1046567,'NR_027115','LOC285768'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',163651006,163665495,'NR_028390','LOC285796'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26580150,26590716,'NR_038992','LOC285819'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35802516,35812702,'NR_027117','LOC285847'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',2965388,2970004,'NR_033884','LOC401233'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28935380,28939433,'NR_033379','LOC401242'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',166321028,166323093,'NR_027284','LOC441177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29867661,29873563,'NM_001207043','LOC554223'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',126037197,126083057,'NR_038906','LOC643623'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',139831824,139837426,'NR_033919','LOC645434'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',100548634,100631016,'NR_038384','LOC728012'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',147164497,147166653,'NR_003954','LOC729176'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',22242809,22255401,'NR_034143','LOC729177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',147204217,147567443,'NR_034115','LOC729178'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160434103,160437234,'NR_003288','LOC729603'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52637157,52641910,'NR_024403','LOC730101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160872504,161007397,'NM_005577','LPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160808207,160852146,'NR_028092','LPAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',40467350,40663104,'NM_020737','LRFN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150181586,150227173,'NM_032832','LRP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',53767736,53896878,'NM_018214','LRRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',25387634,25728737,'NM_017640','LRRC16A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31648071,31650077,'NM_000595','LTA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31656314,31658181,'NM_002341','LTB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',144206200,144226636,'NM_032860','LTV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31746706,31748206,'NM_021221','LY6G5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31752439,31756129,'NM_025262','LY6G5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31794403,31797490,'NM_025261','LY6G6C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31791111,31793560,'NM_021246','LY6G6D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31782662,31786351,'NM_001003693','LY6G6F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',6533932,6600215,'NM_004271','LY86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',6291696,6568058,'NR_026970','LY86-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',90398663,90404937,'NR_028494','LYRM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',5053651,5206171,'NM_020408','LYRM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43705256,43716666,'NM_001003690','MAD2L1BP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',10870941,10946774,'NM_005906','MAK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',119540965,119712625,'NM_005907','MAN1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',96132093,96164049,'NM_024641','MANEA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',161332811,161458407,'NM_005922','MAP3K4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',136919879,137155349,'NM_005923','MAP3K5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',91282073,91353628,'NM_003188','MAP3K7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',136705111,136889044,'NM_001198609','MAP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36206239,36215820,'NM_002754','MAPK13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36103431,36186991,'NM_001315','MAPK14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',114285219,114291345,'NM_002356','MARCKS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160247963,160249097,'NM_002377','MAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29562521,29563658,'NM_052967','MAS1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',74191576,74218764,'NM_138441','MB21D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',20208913,20320649,'NM_001080480','MBOAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',66554492,66556097,'NR_026540','MCART3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31604717,31605987,'NM_001011700','MCCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',100474506,100548835,'NM_032503','MCHR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52236770,52257541,'NM_002388','MCM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',119241314,119294602,'NM_017696','MCM9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30775562,30793437,'NM_014641','MDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41714172,41729960,'NM_005586','MDFI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',37708261,37773744,'NM_153487','MDGA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',90409951,90586163,'NM_014611','MDN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',83976828,84197657,'NM_002395','ME1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43087944,43089596,'NM_014623','MEA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41981069,41996855,'NM_004275','MED20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',131949565,131991056,'NM_004830','MED23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',46869052,46915478,'NM_005588','MEP1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',134183977,134216823,'NR_027030','MGC34034'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',2799889,2821743,'NR_033851','MGC39372'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',109871958,109883883,'NM_001159291','MICAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32032594,32032696,'NR_031601','MIR1236'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34075726,34075806,'NR_031681','MIR1275'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52121679,52121798,'NR_029903','MIR133B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',166842831,166842911,'NR_031734','MIR1913'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52117105,52117191,'NR_029713','MIR206'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',98579127,98579216,'NR_031579','MIR2113'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33283589,33283699,'NR_029633','MIR219-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',72169974,72170045,'NR_029504','MIR30A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',72143383,72143455,'NR_029598','MIR30C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27223383,27223446,'NR_036096','MIR3143'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',138798042,138798124,'NR_036099','MIR3145'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',135342168,135342263,'NR_037435','MIR3662'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',140568081,140568156,'NR_037441','MIR3668'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',5093465,5093555,'NR_037462','MIR3691'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',157870151,157870220,'NR_037463','MIR3692'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',159105680,159105773,'NR_037482','MIR3918'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36698190,36698267,'NR_037491','MIR3925'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',167331284,167331390,'NR_037504','MIR3939'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',73734130,73734197,'NR_036244','MIR4282'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',37631119,37631176,'NR_039669','MIR4462'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',91079181,91079273,'NR_039671','MIR4464'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',141046643,141046713,'NR_039675','MIR4465'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',157142503,157142557,'NR_039676','MIR4466'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',16249756,16249840,'NR_039782','MIR4639'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30966638,30966728,'NR_039783','MIR4640'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41674429,41674509,'NR_039784','MIR4641'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44511355,44511437,'NR_039785','MIR4642'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',92288098,92288176,'NR_039786','MIR4643'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',170481773,170481857,'NR_039787','MIR4644'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',2799263,2799340,'NR_039788','MIR4645'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31776784,31776847,'NR_039789','MIR4646'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44329920,44330000,'NR_039790','MIR4647'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',18679993,18680090,'NR_030312','MIR548A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',119431910,119432007,'NR_030315','MIR548B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',45273388,45273485,'NR_030313','MIR586'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30660087,30660173,'NR_030615','MIR877'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',53991672,54239037,'NM_138569','MLIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',167970519,168108642,'NM_001040000','MLLT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33870426,33879771,'NM_002418','MLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',97696757,97837773,'NM_198468','MMS22L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',39980011,40003433,'NM_005943','MOCS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29732736,29748128,'NM_002433','MOG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132658886,132764357,'NM_015529','MOXD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',84800138,84857324,'NM_138409','MRAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44189349,44203169,'NM_032111','MRPL14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160131481,160139451,'NM_014161','MRPL18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43129744,43135220,'NM_015950','MRPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42282516,42293611,'NM_018141','MRPS10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43746911,43763527,'NM_001193343','MRPS18A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',24511131,24533795,'NM_020662','MRS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',37043894,37061927,'NM_014341','MTCH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',151228507,151464716,'NM_015440','MTHFD1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',74228174,74267900,'NM_133645','MTO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',153350092,153365618,'NM_001114184','MTRF1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31059463,31065654,'NM_001010909','MUC21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',49506031,49539000,'NM_000255','MUT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',7958798,8009646,'NM_201280','MUTED'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',7826481,8009646,'NR_037616','MUTED-TXNDC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',135544145,135582004,'NM_001161660','MYB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',153060722,153087408,'NM_025107','MYCT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',16237295,16256457,'NM_013262','MYLIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',2608861,2696153,'NM_001012418','MYLK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',76515628,76685974,'NM_004999','MYO6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',126153601,126294869,'NM_001122842','NCOA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41411505,41426603,'NM_001199509','NCR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',97443907,97452488,'NM_014165','NDUFAF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',11291516,11490567,'NM_001142393','NEDD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31934807,31938688,'NM_000434','NEU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44333880,44341503,'NM_004556','NFKBIE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41148684,41178124,'NM_002505','NFYA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',137344988,137356061,'NR_027994','NHEG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',18228696,18230830,'NM_198586','NHLRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',138784873,138862272,'NM_001144060','NHSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',124166767,125188485,'NM_001040214','NKAIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28335076,28336715,'NM_001007531','NKAPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',142438437,142451629,'NM_002511','NMBR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',13723537,13729106,'NM_016167','NOL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32270597,32299822,'NM_004557','NOTCH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',155758193,155818729,'NM_015718','NOX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',2945065,2964993,'NM_000904','NQO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',108593907,108616706,'NM_003269','NR2E1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30763804,30766748,'NM_007243','NRM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',5943231,5952632,'NM_016588','NRN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',24234392,24255736,'NM_080723','NRSN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',116528691,116673546,'NM_152729','NT5DC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',86216020,86262228,'NM_002526','NT5E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34362950,34468435,'NM_006703','NUDT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',17723247,17814797,'NM_005124','NUP153'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150087149,150109381,'NM_198887','NUP43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',118103309,118138579,'NM_138459','NUS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',72055197,72068694,'NM_024576','OGFRL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',137855028,137857224,'NM_175747','OLIG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',74135000,74136236,'NM_001080507','OOEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',47857733,47902075,'NM_181744','OPN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',154373323,154482286,'NM_001145279','OPRM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29515694,29516733,'NM_013941','OR10C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29501259,29503488,'NM_013937','OR11A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29472394,29473427,'NM_013936','OR12D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29382445,29383411,'NM_030946','OR14J1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132063301,132064234,'NM_030908','OR2A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27986941,27988153,'NM_033057','OR2B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28032997,28033939,'NM_012367','OR2B6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29534208,29540078,'NM_030883','OR2H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29663661,29664724,'NM_007160','OR2H2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29187646,29188582,'NM_001005216','OR2J3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29119968,29120931,'NM_030903','OR2W1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29430985,29432033,'NM_030876','OR5V1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',88356503,88433891,'NM_012381','ORC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',159182145,159198652,'NR_028496','OSTCP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',108469305,108502634,'NM_014028','OSTM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',163068153,163656514,'NM_152410','PACRG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34590626,34612017,'NM_001199583','PACSIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',10803173,10817956,'NM_017906','PAK1IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52334884,52380534,'NM_133367','PAQR8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',161688579,163068824,'NM_004562','PARK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',138578819,138581320,'NM_021635','PBOV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32260487,32265941,'NM_002586','PBX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150112523,150174250,'NM_005389','PCMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',170732759,170735705,'NM_001199461','PDCD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',165660767,165995574,'NM_006661','PDE10A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',136214526,136558402,'NM_018945','PDE7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',107580453,107887472,'NM_020381','PDSS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',138451334,138470353,'NM_022121','PERP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',143813610,143853444,'NM_003630','PEX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43039588,43054959,'NM_000287','PEX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',137185394,137276765,'NM_000288','PEX7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28357292,28378305,'NM_001184743','PGBD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41816553,41823117,'NM_001166424','PGC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',49861322,49863012,'NM_138733','PGK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',83932567,83959731,'NM_001199919','PGM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',12825022,13396054,'NM_030948','PHACTR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',144040794,144194015,'NM_001100165','PHACTR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33486750,33492208,'NM_002636','PHF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',169845925,169866031,'NM_018288','PHF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',64414389,64482364,'NM_015153','PHF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',79700854,79844730,'NM_017934','PHIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',37030186,37040591,'NM_153370','PI16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',37245899,37251182,'NM_002648','PIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',7931333,7935576,'NR_027712','PIP5K1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',51693605,52060382,'NM_170724','PKHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',122973075,123089217,'NM_181795','PKIB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',46780011,46811389,'NM_001168357','PLA2G7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',144303129,144371234,'NM_001080956','PLAGL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150962691,151206492,'NM_001029884','PLEKHG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',161043214,161095075,'NM_000301','PLG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',118976134,118988280,'NM_002667','PLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',89912487,89932003,'NM_001010853','PM20D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',99954561,99979928,'NM_015491','PNISR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160141290,160161725,'NM_173516','PNLDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36346214,36384350,'NM_001145717','PNPLA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',89847147,89851598,'NM_006813','PNRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43651855,43696238,'NM_006502','POLH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43592754,43597224,'NM_203290','POLR1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27384820,27387990,'NM_033482','POM121L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',105712467,105730823,'NR_024539','POPDC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',99389300,99393387,'NM_005604','POU3F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31240092,31242594,'NM_001173531','POU5F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35418312,35501151,'NM_177435','PPARD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36930583,36950778,'NM_016059','PPIL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',149867323,149908931,'NM_139126','PPIL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',109818110,109869067,'NM_173672','PPIL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30142910,30146087,'NM_021959','PPP1R11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150505880,150613221,'NM_030949','PPP1R14C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',5030718,5032454,'NM_001145115','PPP1R3G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43060307,43088058,'NM_006245','PPP2R5D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',106653507,106664504,'NM_182907','PRDM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',100161370,100170175,'NM_021620','PRDM13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',105832134,105957692,'NM_002726','PREP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41856477,41863088,'NM_013397','PRICKLE4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',57290380,57621335,'NM_000947','PRIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',22395451,22411061,'NM_001163558','PRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',3966567,4010216,'NM_003913','PRPF4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42772310,42798336,'NM_000322','PRPH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',166639157,166641861,'NM_175922','PRR18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30632464,30640452,'NM_025263','PRR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32224117,32227698,'NM_030651','PRRT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27323480,27332378,'NM_005865','PRSS16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',84278912,84292140,'NM_001170423','PRSS35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',170686128,170704342,'NM_002793','PSMB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32929915,32935606,'NM_002800','PSMB9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',3204160,3209096,'NM_001135750','PSMG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31213289,31215106,'NM_014069','PSORS1C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31249490,31253655,'NR_026816','PSORS1C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42991704,43001553,'NM_001243170','PTCRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43152006,43237435,'NM_152881','PTK7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',64339878,64351448,'NM_003463','PTP4A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',128331616,128883512,'NM_002844','PTPRK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36466306,36518644,'NM_152990','PXT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',163755664,163919618,'NM_206855','QKI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',107184133,107222985,'NM_018292','QRSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',57161540,57195037,'NM_016277','RAB23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',146906520,146917779,'NM_006834','RAB32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150251293,150253863,'NM_001243325','RAET1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150279706,150285907,'NM_001001788','RAET1G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150360847,150367973,'NR_024045','RAET1K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150382958,150388361,'NM_130900','RAET1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',13729708,13819775,'NM_005493','RANBP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',88280814,88356454,'NM_020320','RARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',17390910,17402078,'NM_153020','RBM24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',46296427,46401490,'NM_005822','RCAN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32027842,32034843,'NM_002904','RDBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',139267312,139351091,'NM_031922','REPS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',111726926,111911107,'NM_002912','REV3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',112775224,112779191,'NM_001013734','RFPL4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',117305068,117360019,'NM_173560','RFX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33367408,33375143,'NM_001243738','RGL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',153373724,153494082,'NM_012419','RGS17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',49680848,49712546,'NM_000324','RHAG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',73133152,73169566,'NM_001168411','RIMS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',7335060,7363269,'NM_031480','RIOK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',3022056,3060420,'NM_003804','RIPK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',84619703,84623953,'NM_001009994','RIPPLY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',151767681,151815009,'NM_017909','RMND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',167262993,167290067,'NM_003730','RNASET2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',18495559,18577084,'NM_182757','RNF144B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',127629575,127651398,'NM_001242844','RNF146'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',14032655,14088219,'NM_001165034','RNF182'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',125346212,125446360,'NM_152553','RNF217'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30146021,30151605,'NM_170769','RNF39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32254139,32256548,'NM_006913','RNF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32254209,32256545,'NR_003129','RNF5P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',37429725,37470492,'NM_003958','RNF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',89376707,89730067,'NM_003800','RNGTT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',117716222,117853711,'NM_002944','ROS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',111409983,111453487,'NM_032194','RPF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35544155,35546536,'NM_007104','RPL10A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42955648,42962709,'NM_198486','RPL7L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30420884,30422614,'NM_024839','RPP21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',4940278,4949270,'NM_006638','RPP40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34493208,34501796,'NM_001203245','RPS10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34362950,34501880,'NM_001202470','RPS10-NUDT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',133177400,133180396,'NM_001016','RPS12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',166742843,166960716,'NM_021135','RPS6KA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',90131053,90178714,'NM_021244','RRAGD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',7053084,7197212,'NM_001003700','RREB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43097362,43105315,'NM_033112','RRP36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',159318253,159341186,'NM_031924','RSPH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',117044334,117060841,'NM_001161664','RSPH4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43720744,43746726,'NM_001193341','RSPH9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',127481740,127559877,'NM_032784','RSPO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',107125595,107184066,'NM_032730','RTN4IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',45404031,45626797,'NM_001015051','RUNX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',116999275,117021129,'NM_016104','RWDD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',83959750,83962975,'NM_033411','RWDD2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',130545825,130578187,'NM_152552','SAMD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',147871520,147932850,'NM_001030060','SAMD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',148705421,148914877,'NM_015278','SASH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',155096203,155196886,'NM_014892','SCAF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28647385,28663091,'NM_052923','SCAND3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',8031639,8031765,'NR_003703','SCARNA27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',25760407,25809987,'NM_006998','SCGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',108130056,108252214,'NM_198081','SCML4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35290167,35326587,'NM_152753','SCUBE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',108295652,108386175,'NM_007214','SEC63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',76368341,76484714,'NM_001100409','SENP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',158450523,158509300,'NM_032861','SERAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',122806191,122834651,'NM_020755','SERINC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',2778732,2787080,'NM_030666','SERPINB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',2893391,2917398,'NM_004568','SERPINB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',2832502,2848544,'NM_004155','SERPINB9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',109414332,109436884,'NM_001199934','SESN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',144457710,144458447,'NM_031287','SF3B5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',166653505,166675981,'NM_145169','SFT2D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31007105,31007931,'NM_205854','SFTA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',134532076,134537727,'NM_005627','SGK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',80397718,80470088,'NM_031469','SH3BGRL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',146247636,146326926,'NM_173082','SHPRH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',100943470,101018272,'NM_005068','SIM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',13682739,13723369,'NM_001242827','SIRT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32034559,32045511,'NM_006929','SKIV2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',111515473,111651299,'NM_018593','SLC16A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',25891104,25940266,'NM_005074','SLC17A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26020962,26038925,'NM_005835','SLC17A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',25953306,25982450,'NM_001098486','SLC17A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',25862905,25889382,'NM_005495','SLC17A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',74359822,74420458,'NM_012434','SLC17A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160462852,160499740,'NM_003057','SLC22A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',110852600,110904537,'NM_033125','SLC22A16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160557783,160599953,'NM_003058','SLC22A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',3214206,3401792,'NM_015482','SLC22A23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160689414,160796004,'NM_021977','SLC22A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43373975,43381254,'NM_006672','SLC22A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',46728610,46753886,'NM_001204052','SLC25A27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36019268,36100283,'NM_001193476','SLC26A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44295219,44309866,'NM_004955','SLC29A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',134350411,134415482,'NM_145176','SLC2A12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',88239361,88278776,'NM_006416','SLC35A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44329815,44333261,'NM_178148','SLC35B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',8358299,8380793,'NM_001142541','SLC35B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',137285094,137288469,'NM_001008783','SLC35D3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',118335381,118745532,'NM_001029858','SLC35F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33276580,33280192,'NM_006979','SLC39A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',71434199,71628437,'NM_021940','SMAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',168584679,168810599,'NM_022138','SMOC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',109868623,109871815,'NM_003080','SMPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',123151669,123172563,'NM_006714','SMPDL3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',84319323,84475566,'NM_001242792','SNAP91'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',86443443,86445170,'NR_003038','SNHG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160121271,160121403,'NR_002960','SNORA20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160126615,160126755,'NR_002965','SNORA29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',133180050,133180183,'NR_002436','SNORA33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31698834,31698966,'NR_002971','SNORA38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',133179633,133179709,'NR_002435','SNORD100'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',133178138,133178211,'NR_002434','SNORD101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31612129,31612205,'NR_003140','SNORD117'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29658007,29658084,'NR_003049','SNORD32B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31911018,31911082,'NR_002745','SNORD48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',86443730,86443805,'NR_002743','SNORD50A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',86444025,86444096,'NR_003044','SNORD50B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31912831,31912895,'NR_002742','SNORD52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31616856,31616934,'NR_003065','SNORD84'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',7535430,7557199,'NM_152551','SNRNP48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34832848,34849612,'NR_029472','SNRPC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',86271933,86360348,'NM_020468','SNX14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',108639409,108689157,'NM_003795','SNX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',158164281,158286097,'NM_016224','SNX9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',107918009,108089206,'NM_018013','SOBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160022744,160034343,'NM_000636','SOD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',21701950,21706828,'NM_003107','SOX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',88814225,88833269,'NM_030960','SPACA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44418374,44452882,'NM_145026','SPATS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34613557,34632069,'NM_012391','SPDEF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43246897,43257222,'NM_003131','SRF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35908788,35996935,'NM_003137','SRPK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',89862396,89884519,'NM_080743','SRSF12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36670067,36680222,'NM_003017','SRSF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',7226286,7258540,'NM_003144','SSR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32046930,32057202,'NR_026717','STK19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',36569646,36623225,'NM_007271','STK38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',125271087,125325872,'NR_026876','STL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',144513346,144554769,'NM_003764','STX11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132820355,132876030,'NM_003569','STX7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',147567186,147753305,'NM_001127715','STXBP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',149763187,149763875,'NM_001002255','SUMO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44905427,45453553,'NM_003599','SUPT3H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',10995049,11082527,'NM_001040274','SYCP2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',86374220,86409327,'NM_001159674','SYNCRIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',152484511,153000227,'NM_182961','SYNE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33495824,33529444,'NM_006772','SYNGAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',158358067,158440195,'NM_001178088','SYNJ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',158991033,159105896,'NM_001242395','SYTL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',166491075,166502121,'NM_003181','T'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',133007815,133008835,'NM_138327','TAAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132979981,132980925,'NM_014626','TAAR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132971056,132972134,'NR_028511','TAAR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132951423,132952570,'NM_003967','TAAR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132933153,132934191,'NM_175067','TAAR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132915524,132916553,'NM_053278','TAAR8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',132901119,132902168,'NM_175057','TAAR9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',149681128,149774440,'NM_015093','TAB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34953532,34963797,'NM_005643','TAF11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42126228,42156622,'NM_138572','TAF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',159379931,159386172,'NM_138810','TAGAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',37333525,37408724,'NM_017772','TBC1D22B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',13413162,13436766,'NM_001143966','TBC1D7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42820211,42821862,'NM_003192','TBCC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',170705345,170723883,'NM_001172085','TBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',134315993,134350322,'NM_004865','TBPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',85500875,85530618,'NM_001080508','TBX18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31234281,31239971,'NM_001077511','TCF19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',134251951,134258368,'NM_198392','TCF21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160119519,160130725,'NM_030752','TCP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',167706566,167717988,'NM_004610','TCP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',167504070,167516386,'NM_001145121','TCP10L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35193826,35217165,'NM_018679','TCP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44355874,44373436,'NM_182539','TCTE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',169882139,169893563,'NM_174910','TCTE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',24758183,24775094,'NM_016614','TDP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',46763570,46780015,'NM_001168359','TDRD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',40454140,40455609,'NR_024015','TDRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35549351,35572839,'NM_003214','TEAD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',10504901,10523456,'NM_003220','TFAP2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',50894397,50923285,'NM_003221','TFAP2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',50789215,50848705,'NM_172238','TFAP2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',155618955,155677309,'NM_016020','TFB1M'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41759693,41811975,'NM_001167827','TFEB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',169357799,169396062,'NM_003247','THBS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',128071031,128281469,'NM_001164687','THEMIS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',155453114,155620549,'NM_012454','TIAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',54281161,54362909,'NM_014464','TINAG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43553238,43582272,'NM_001146020','TJAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52643842,52659344,'NM_014051','TMEM14A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',10855980,10865200,'NM_030969','TMEM14B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',10831133,10839348,'NM_016462','TMEM14C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44346457,44355160,'NM_001137560','TMEM151B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',11646496,11691743,'NM_001100829','TMEM170B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',158877455,158976455,'NM_020823','TMEM181'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',130799954,130805903,'NM_052913','TMEM200A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',37287931,37333391,'NM_145316','TMEM217'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',76019357,76051352,'NM_001143958','TMEM30A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',44203353,44231234,'NM_018426','TMEM63B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31651328,31654091,'NM_000594','TNF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',138230273,138246142,'NM_006290','TNFAIP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',47307226,47385639,'NM_014452','TNFRSF21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',32084174,32088778,'NR_001284','TNXA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28291094,28294686,'NR_002936','TOB2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41863158,41865612,'NM_001134493','TOMM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',83129641,83133852,'NM_006670','TPBG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',125516577,125626343,'NM_003287','TPD52L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',116466586,116467800,'NR_027338','TPI1P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',18236523,18263353,'NM_000367','TPMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',111986835,111995214,'NM_001164283','TRAF3IP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',111911367,111931504,'NR_034111','TRAF3IP2-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',52470158,52549821,'NM_012288','TRAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',123579181,123999641,'NM_006073','TRDN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41350976,41362435,'NM_018643','TREM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41234223,41238900,'NM_018965','TREM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41225319,41230048,'NM_178174','TREML1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41265529,41276903,'NM_024807','TREML2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41325092,41325305,'NR_002794','TREML2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41284269,41293663,'NR_027256','TREML3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41304039,41314098,'NM_198153','TREML4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42300646,42527761,'NM_033502','TRERF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30238961,30248452,'NM_033229','TRIM15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28978757,28999747,'NM_006510','TRIM27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30178652,30188846,'NM_007028','TRIM31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26071049,26093331,'NM_006355','TRIM38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30402599,30419485,'NM_021253','TRIM39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30405066,30422614,'NM_001199119','TRIM39-RPP21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30212488,30224491,'NM_138700','TRIM40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',126349268,126402113,'NM_001031712','TRMT11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',94473521,94542920,'NR_015362','TSG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41118434,41120054,'NM_001159726','TSPO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',116702714,116707973,'NM_003309','TSPYL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',116677823,116681954,'NM_021648','TSPYL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43319199,43363975,'NM_032538','TTBK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',80771040,80808963,'NM_001166691','TTK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',167658563,167676167,'NM_031949','TTLL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30796135,30801174,'NM_178014','TUBB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',3098900,3102782,'NM_001069','TUBB2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',3169493,3172967,'NM_178012','TUBB2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',112498552,112515444,'NM_016262','TUBE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35573628,35588625,'NM_003322','TULP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',158653679,158852844,'NM_020245','TULP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',139602891,139654901,'NM_153235','TXLNB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',7826481,7855309,'NM_001145549','TXNDC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',83658905,83832264,'NM_198920','UBE2CBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',90093062,90119338,'NM_016021','UBE2J1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',42639737,42696067,'NM_001184801','UBR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',97076422,97109872,'NM_015323','UFL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',34867771,34953269,'NM_017754','UHRF1BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150326835,150336539,'NM_025218','ULBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150304828,150312061,'NM_025217','ULBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',150427435,150431895,'NM_024518','ULBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41102617,41114916,'NM_173561','UNC5CL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',167624792,167649492,'NM_001143947','UNC93A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',99986905,100069973,'NM_001080481','USP45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',41873360,41971077,'NM_018561','USP49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',149109963,149439819,'NM_005715','UST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',144654565,145215863,'NM_007124','UTRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31853275,31871691,'NM_006295','VARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43845923,43862201,'NM_001171629','VEGFA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',117693413,117701421,'NM_153453','VGLL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',153113625,153122593,'NM_003381','VIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',133043689,133076887,'NM_004666','VNN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',133106701,133126291,'NM_078488','VNN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',133085618,133097597,'NR_028291','VNN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33326026,33347640,'NM_022553','VPS52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',142510102,142583778,'NM_016485','VTA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',110527714,110607900,'NM_001024936','WASF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',169599227,169844084,'NM_001202550','WDR27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33354857,33365282,'NM_005452','WDR46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',112481970,112497580,'NM_003880','WISP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',2710664,2730978,'NM_020135','WRNIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',160068141,160097341,'NM_004906','WTAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43598045,43651790,'NM_020750','XPO5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43587542,43592706,'NM_015388','YIPF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',31975372,31977748,'NM_181842','ZBTB12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',151726942,151754370,'NM_020861','ZBTB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33390159,33393697,'NM_001145338','ZBTB22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',109908844,109911133,'NM_001164313','ZBTB24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',33530333,33533298,'NM_152735','ZBTB9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',149810458,149847841,'NM_207360','ZC3H12D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',157722544,158014965,'NM_153746','ZDHHC14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',37895284,38230377,'NM_021943','ZFAND3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29748147,29752910,'NM_001109809','ZFP57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28425669,28444933,'NM_024493','ZKSCAN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28320468,28327981,'NM_019110','ZKSCAN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28156460,28165319,'NM_003447','ZNF165'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27526499,27548876,'NM_007149','ZNF184'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28342766,28353959,'NM_001023560','ZNF187'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28217694,28233215,'NM_006298','ZNF192'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28301007,28309243,'NM_006299','ZNF193'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27433580,27447283,'NR_002722','ZNF204P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',87921987,88030125,'NM_015021','ZNF292'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',29070572,29081016,'NM_001010877','ZNF311'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',43411785,43445159,'NM_014345','ZNF318'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',26742589,26767959,'NM_001242799','ZNF322'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28400493,28411890,'NM_001243243','ZNF323'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',27464502,27477206,'NM_001076781','ZNF391'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',57062786,57143057,'NM_015555','ZNF451'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',35335487,35371738,'NM_003427','ZNF76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30137014,30140665,'NM_170783','ZNRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',30076766,30136940,'NR_026751','ZNRD1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28464705,28475523,'NM_001163391','ZSCAN12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28166907,28171472,'NR_024063','ZSCAN12P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28200365,28205835,'NM_025231','ZSCAN16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',28508410,28519258,'NM_001012455','ZSCAN23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6',117063473,117096666,'NM_145062','ZUFSP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3100851,3116975,'NM_001177515','ABHD16A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3029913,3030923,'NM_032955','AIF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2745623,2762243,'NR_037853','ATP6V1G2-DDX39B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3052922,3066603,'NM_004639','BAG6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3116514,3161190,'NM_001178063','C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',1861669,1867835,'NM_001109938','C6orf136'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',1510169,1545369,'NM_018452','C6orf35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2359996,2375364,'NM_001105563','CCHCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2534075,2539464,'NM_001264','CDSN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3144481,3150469,'NM_001288','CLIC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',4510632,4540408,'NM_080680','COL11A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3413250,3416605,'NM_000500','CYP21A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',4666475,4670938,'NR_024517','DAXX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2305069,2316540,'NM_001202522','DDR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2357196,2370408,'NM_080870','DPCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3539569,3543250,'NM_030652','EGFL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',1025320,1056279,'NM_001470','GABBR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2877117,2879747,'NR_040662','HCP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',1156971,1160401,'NM_002116','HLA-A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',4283256,4289698,'NM_002118','HLA-DMB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',4161396,4165682,'NM_002120','HLA-DOB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3674895,3751959,'NM_002124','HLA-DRB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3870633,3883702,'NM_022555','HLA-DRB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',1143812,1147765,'NM_001098479','HLA-F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',459326,499839,'NM_001195202','LOC100129636'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3197570,3218196,'NM_001242823','LOC100293534'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3211248,3220821,'NM_021177','LSM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2801542,2804275,'NM_205839','LST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3126237,3127962,'NR_003673','LY6G6E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2618763,2630581,'NM_001177519','MICA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2713520,2726545,'NM_005931','MICB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',1832339,1841028,'NM_014046','MRPS18B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2955309,2976981,'NM_002441','MSH5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2955309,2976981,'NR_037846','MSH5-C6orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2422155,2451709,'NM_001198815','MUC22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2804639,2808349,'NM_001145467','NCR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2961513,2972755,'NM_001144961','NFKBIL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',796640,798509,'NM_030959','OR12D3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',509364,510470,'NM_001005226','OR2B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',596689,597730,'NM_030905','OR2J2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',4637552,4638850,'NM_001185181','PFDN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',1815036,1831874,'NM_002714','PPP1R10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3528950,3538646,'NM_005155','PPT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3336735,3351029,'NR_037861','PPT2-EGFL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3034573,3051677,'NM_080686','PRRC2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3994547,3997870,'NM_148919','PSMB8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2332372,2357660,'NM_014068','PSORS1C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',4556442,4560656,'NM_002931','RING1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',4619988,4624418,'NM_022551','RPS18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',4347533,4354602,'NM_021976','RXRB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3277223,3293084,'NM_001178044','SLC44A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3999039,4007802,'NM_000593','TAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',4170466,4187402,'NM_018833','TAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',4647612,4662303,'NM_003190','TAPBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',3416089,3484320,'NM_019105','TNXB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',1366618,1375605,'NM_052828','TRIM10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',1399093,1428139,'NM_003449','TRIM26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',978705,983019,'NM_006398','UBD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr6_',2129039,2141178,'NM_001167734','VARS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',34724998,34840468,'NR_015356','AAA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',121500833,121571580,'NM_005763','AASS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',48208388,48657637,'NM_152701','ABCA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',86971114,87180575,'NM_000927','ABCB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',86869296,86942955,'NM_018849','ABCB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',20653490,20666542,'NM_001163942','ABCB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150356442,150375802,'NM_007188','ABCB8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150540508,150555250,'NM_007189','ABCF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72788360,72791120,'NM_001145364','ABHD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72787334,72788266,'NR_026690','ABHD11-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150180505,150189312,'NM_001091','ABP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150376537,150380776,'NM_020322','ACCN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100325550,100331477,'NM_000665','ACHE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',96583840,96649011,'NM_020186','ACN9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5533304,5536758,'NM_001101','ACTB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100078661,100092020,'NM_016188','ACTL6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',152087783,152183396,'NM_020445','ACTR3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149575233,149631002,'NM_001164459','ACTR3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',87401501,87670140,'NM_021723','ADAM22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',904062,960815,'NM_006869','ADAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',140019421,140041377,'NM_052853','ADCK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',45580649,45729239,'NM_021116','ADCY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',31058600,31117618,'NM_001199635','ADCYAP1R1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44110484,44120684,'NM_001129','AEBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150414758,150472456,'NM_031946','AGAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',134321798,134471070,'NM_178563','AGBL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99974769,100003779,'NM_006076','AGFG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',140897546,141000678,'NM_018238','AGK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',15206467,15568165,'NM_001004320','AGMO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',16798788,16811263,'NM_006408','AGR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',16865554,16888138,'NM_176813','AGR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128652090,128857288,'NM_001130720','AHCYL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',17304800,17352300,'NM_001621','AHR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6015407,6029991,'NM_006303','AIMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',91408124,91577923,'NM_005751','AKAP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',133777646,133794428,'NM_001628','AKR1B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',133862883,133876706,'NM_020299','AKR1B10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',133884388,133915132,'NM_001080538','AKR1B15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',137411717,137453590,'NM_001190906','AKR1D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101883671,101892326,'NM_017621','ALKBH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',38389821,38637692,'NM_139316','AMPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2685688,2721595,'NM_133463','AMZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',91713483,91868634,'NM_019004','ANKIB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',16605925,16651967,'NM_020319','ANKMY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',117651947,117670020,'NM_019644','ANKRD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',36395956,36459925,'NM_018685','ANLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',36519073,36730679,'NM_001177506','AOAH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100584405,100591277,'NM_001283','AP1S1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99537065,99542739,'NM_004722','AP4M1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30927629,30931656,'NM_001185061','AQP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127015641,127018995,'NM_001662','ARF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143514108,143523724,'NM_001003702','ARHGEF35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143683421,143708658,'NM_005435','ARHGEF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',12693435,12697083,'NM_005738','ARL4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102502563,102527446,'NM_001161009','ARMC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98761431,98801821,'NM_001190996','ARPC1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98810233,98830340,'NM_005720','ARPC1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150503717,150515411,'NM_001142459','ASB10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',123036347,123065168,'NM_080928','ASB15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',94953148,95007479,'NM_016116','ASB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',65178210,65195764,'NM_000048','ASL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',97319364,97339790,'NM_183356','ASNS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',116790604,116854813,'NR_023315','ASZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150340229,150352519,'NM_173681','ATG9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98893719,98901760,'NM_004889','ATP5J2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98852297,98901760,'NM_001198879','ATP5J2-PTCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138041578,138133481,'NM_020632','ATP6V0A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149200989,149208671,'NM_001100592','ATP6V0E2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128290092,128293139,'NM_004231','ATP6V1F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',105032456,105106845,'NM_138495','ATXN7L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',68701841,69895821,'NM_015570','AUTS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',32501700,32590304,'NM_015060','AVL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99402285,99411671,'NM_001185','AZGP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99416320,99419796,'NR_036679','AZGP1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',97758897,97868363,'NM_018842','BAIAP2L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72492663,72574551,'NM_032408','BAZ1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',33135676,33612205,'NM_014451','BBS9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',107007657,107050998,'NR_027830','BCAP29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72588618,72610001,'NM_001707','BCL7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',93458935,93471626,'NM_005868','BET1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',97679501,97680207,'NM_177455','BHLHA15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',43764796,43813466,'NM_000712','BLVRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',33911636,34160637,'NM_133468','BMPER'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',133982070,134015107,'NM_199186','BPGM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',140080281,140271033,'NM_004333','BRAF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2543969,2561918,'NM_152743','BRAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',97748914,97760211,'NM_001159491','BRI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98844536,98855175,'NM_003910','BUD31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',16652283,16712673,'NM_001159767','BZW2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',7188770,7254776,'NM_020156','C1GALT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',40141099,40866891,'NM_001193311','C7orf10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',40138866,40140776,'NM_138701','C7orf11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',156123820,156126109,'NR_026865','C7orf13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',31693155,31714594,'NM_001145123','C7orf16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',86663413,86686967,'NM_024315','C7orf23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',42915396,42918214,'NM_024054','C7orf25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6596439,6614880,'NM_024067','C7orf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6805090,6832451,'NM_198097','C7orf28B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149657870,149660743,'NM_138434','C7orf29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',23305464,23315705,'NM_138446','C7orf30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',25140840,25186342,'NM_138811','C7orf31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',147918589,147943885,'NM_145304','C7orf33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142346724,142348079,'NM_178829','C7orf34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',39572527,39579005,'NM_020192','C7orf36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44989151,44992784,'NR_003697','C7orf40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30141076,30168906,'NM_152793','C7orf41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',66023637,66060973,'NM_017994','C7orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99589978,99594238,'NM_018275','C7orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',43645383,43735608,'NM_018224','C7orf44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129634939,129643920,'NM_145268','C7orf45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',23686273,23708794,'NM_001127365','C7orf46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99870847,99872030,'NM_145030','C7orf47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',134501071,134504766,'NM_001243753','C7orf49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1003148,1144419,'NM_032350','C7orf50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99919485,99930358,'NM_173564','C7orf51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100600493,100610277,'NM_198571','C7orf52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',111908301,111918179,'NM_182597','C7orf53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127424797,127427366,'NR_027330','C7orf54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138676436,138681081,'NM_197964','C7orf55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',48041641,48067419,'NM_001100159','C7orf57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',120415986,120724734,'NM_024913','C7orf58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99584465,99589769,'NM_001008395','C7orf59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',112246437,112367168,'NM_152556','C7orf60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99892173,99899830,'NM_001004323','C7orf61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',88261355,88262967,'NM_152706','C7orf62'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',89712423,89778313,'NM_001160138','C7orf63'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',91996022,92004759,'NM_032120','C7orf64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',47661366,47667771,'NM_001123065','C7orf65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',108311273,108311873,'NM_001024607','C7orf66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127883119,127885708,'NM_013332','C7orf68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',47801413,47825969,'NM_025031','C7orf69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6335564,6355115,'NM_001037163','C7orf70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',26644014,26653449,'NM_001145531','C7orf71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',50106227,50169398,'NM_001161834','C7orf72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',134997760,135011700,'NM_001130929','C7orf73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',106084446,106088870,'NM_175884','C7orf74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',81417353,81910967,'NM_000722','CACNA2D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',121745713,122314049,'NM_017954','CADPS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',92891734,93041978,'NM_001164737','CALCR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',134114703,134306020,'NM_033157','CALD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',70882411,71515296,'NM_031468','CALN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128166581,128200713,'NM_001199671','CALU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44223273,44331755,'NM_172080','CAMK2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',116289798,116346549,'NM_006136','CAPZA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2912235,3050035,'NM_032415','CARD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',93977105,94024264,'NM_022900','CASD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142695429,142714911,'NM_032983','CASP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',115953582,115988475,'NM_001172896','CAV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',115926890,115935831,'NM_198212','CAV2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',107171514,107189319,'NM_024814','CBLL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',26207848,26219752,'NM_016587','CBX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',23603522,23650852,'NM_138771','CCDC126'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',31523502,31659828,'NM_194300','CCDC129'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',92699588,92826274,'NM_017667','CCDC132'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128218699,128249423,'NM_001201372','CCDC136'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',76589869,76762457,'NM_020879','CCDC146'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75279049,75280969,'NM_002991','CCL24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75236777,75257000,'NM_006072','CCL26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',45006311,45082594,'NM_031443','CCM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',56086871,56099176,'NM_001762','CCT6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',64853526,64866097,'NR_003110','CCT6P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',64136166,64172526,'NR_033416','CCT6P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5904866,5932129,'NM_015622','CCZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',80105767,80146529,'NM_001001548','CD36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',48934702,48937595,'NR_003595','CDC14C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',21907041,21952067,'NM_001127370','CDCA7L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',105390892,105464113,'NM_152750','CDHR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',39956483,40103258,'NM_031267','CDK13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',90176647,90677840,'NM_012395','CDK14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150381831,150385985,'NM_004935','CDK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',92072170,92303877,'NM_001145306','CDK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129823610,129868090,'NM_018718','CEP41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',116907252,117095954,'NM_000492','CFTR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',56136759,56141681,'NM_016139','CHCHD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',132120162,132417368,'NM_017812','CHCHD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',29486010,29520469,'NM_001039936','CHN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150560517,150566838,'NM_019015','CHPF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',136204371,136352311,'NM_000739','CHRM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2409720,2440742,'NM_001243794','CHST12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142723340,142759219,'NM_000083','CLCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',89870583,89883204,'NM_012129','CLDN12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100662092,100667947,'NM_014343','CLDN15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72821262,72822536,'NM_001306','CLDN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72883128,72884951,'NM_001305','CLDN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138859213,138880271,'NM_001080511','CLEC2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141273625,141293252,'NM_013252','CLEC5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73341740,73458209,'NM_032421','CLIP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',23590859,23592671,'NR_002711','CLK2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',134697086,134845415,'NM_013316','CNOT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',154986713,155019300,'NM_001103176','CNPY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99555200,99561064,'NM_152755','CNPY4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',145444385,147749021,'NM_014141','CNTNAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',51051402,51352009,'NM_015198','COBL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',106635533,106992195,'NM_001161520','COG5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',93861808,93898480,'NM_000089','COL1A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',7364768,7541985,'NM_001037763','COL28A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129933315,130004138,'NM_012133','COPG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99524518,99527758,'NM_006833','COPS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',971011,981761,'NM_001031617','COX19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129807525,129815185,'NM_001868','CPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129693938,129716873,'NM_001869','CPA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129720209,129751256,'NM_001163446','CPA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129771865,129795807,'NM_080385','CPA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98874498,98892932,'NM_001081559','CPSF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',29001771,29152678,'NM_031311','CPVL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',65217239,65256988,'NR_024548','CRCP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',137210264,137337386,'NM_194071','CREB3L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',28441758,28832036,'NM_004904','CREB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30658083,30688666,'NM_001202483','CRHR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',86812886,86867048,'NM_001143935','CROT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150757988,150768032,'NM_144727','CRYGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142979011,142981366,'NM_001008747','CTAGE15P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143511480,143514106,'NM_198495','CTAGE4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143083114,143085776,'NM_178561','CTAGE6P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',117137941,117300797,'NM_033427','CTTNBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148026865,148129135,'NM_003592','CUL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101245903,101713970,'NM_001202545','CUX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',25124794,25131505,'NM_018947','CYCS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',989360,995802,'NM_017781','CYP2W1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99192518,99219747,'NM_017460','CYP3A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99263571,99302109,'NM_022820','CYP3A43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99083748,99115557,'NR_033808','CYP3A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99140595,99170755,'NM_000765','CYP3A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',91579398,91601995,'NM_001146152','CYP51A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6167936,6278767,'NM_004227','CYTH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6415271,6454168,'NM_139179','DAGLB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',87343479,87376792,'NM_006716','DBF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44050763,44067840,'NM_014063','DBNL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',50493627,50600648,'NM_001082971','DDC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44571927,44580662,'NM_019082','DDX56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',139864688,139948811,'NM_015689','DENND2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',24704498,24764164,'NM_004403','DFNA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',14151198,14847600,'NM_004080','DGKB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',136724924,137182149,'NM_004717','DGKI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',56531409,56532471,'NR_026929','DKFZp434L192'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30376190,30378935,'NR_002186','DKFZP586I1420'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',107318821,107348879,'NM_000108','DLD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',96487637,96492079,'NM_005221','DLX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',96473225,96478288,'NM_005222','DLX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',96435762,96481313,'NR_015448','DLX6-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',86619612,86663584,'NR_024549','DMTF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',21549357,21907982,'NM_003777','DNAH11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',156822471,156902894,'NM_058246','DNAJB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',107997424,108002530,'NM_012328','DNAJB9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102740156,102772556,'NM_014377','DNAJC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72733183,72735717,'NM_032317','DNAJC30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',111153399,111633698,'NM_014705','DOCK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',153380709,154316928,'NM_130797','DPP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',34935017,35044178,'NM_015283','DPY19L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',32587077,32725305,'NR_036680','DPY19L1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',35095980,35113871,'NR_002833','DPY19L2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102602697,102707995,'NR_003561','DPY19L2P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',29691294,29694384,'NR_036482','DPY19L2P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',89586649,89592850,'NR_003551','DPY19L2P4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75928907,75973248,'NM_001102595','DTX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',76448074,76491012,'NR_023383','DTX2P1-UPK3BP1-PMS2P11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',106991667,107006204,'NM_181581','DUS4L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',95239753,95565672,'NM_004411','DYNC1I1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',36159360,36307677,'NM_030636','EEPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',104992815,105009212,'NR_027068','EFCAB10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',55054218,55242525,'NM_005228','EGFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6028403,6065386,'NM_001134335','EIF2AK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2360999,2386903,'NM_003751','EIF3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',109386519,109387506,'NR_003024','EIF3IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73226641,73249365,'NM_022170','EIF4H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1715323,1754116,'NM_001128636','ELFN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',36859035,36991242,'NM_001039459','ELMO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73080362,73122172,'NM_001081754','ELN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100792841,100989024,'NM_133457','EMID2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',154943584,154950287,'NM_001427','EN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',37927445,37958067,'NM_001242948','EPDR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142798326,142816107,'NM_005232','EPHA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100238122,100263079,'NM_004444','EPHB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142262913,142278969,'NM_004445','EPHB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100156358,100159259,'NM_000799','EPO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',64088167,64104559,'NM_001007253','ERV3-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',158216449,158315080,'NM_020728','ESYT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',13897380,13992664,'NM_001163151','ETV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27248688,27252717,'NM_001989','EVX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',132588362,133401053,'NM_021807','EXOC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148135396,148211534,'NM_001203249','EZH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',151764912,151771033,'NR_002935','FABP5P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143179393,143230211,'NM_001206938','FAM115A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143043871,143058106,'NM_001130026','FAM115C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',22947402,23020295,'NM_032581','FAM126A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142760614,142769295,'NM_014690','FAM131B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',92028007,92057642,'NM_152789','FAM133B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',135064885,135084134,'NM_205855','FAM180A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',38691470,38693214,'NR_028347','FAM183B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102176634,102236908,'NM_001145269','FAM185A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30777557,30898527,'NM_032222','FAM188B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98981858,98987693,'NM_145111','FAM200A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',288051,304059,'NM_020223','FAM20C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',120776140,120823658,'NM_014888','FAM3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128861509,128910708,'NM_001134336','FAM40B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128142678,128159033,'NM_032599','FAM71F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128099581,128110545,'NM_001128926','FAM71F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150404640,150408884,'NM_033015','FASTK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102240543,102502251,'NM_145032','FBXL13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5481953,5519925,'NM_024963','FBXL18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100025131,100036676,'NM_001163499','FBXO24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75937272,75942253,'NR_003262','FDPSL2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',19150929,19151569,'NM_152898','FERD3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',121728683,121731801,'NM_001160264','FEZF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',76660623,76667086,'NM_006682','FGL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',50479325,50485582,'NM_022116','FIGNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100669612,100675091,'NM_016068','FIS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30019408,30032793,'NM_017946','FKBP14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72380090,72410577,'NM_001135211','FKBP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',32963529,33013068,'NM_007270','FKBP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',55716260,55739754,'NR_003949','FKBP9L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44045222,44048607,'NR_015401','FLJ35390'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141050606,141084499,'NR_015392','FLJ40852'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',95948873,95970771,'NM_001201450','FLJ42280'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',130279458,130444102,'NR_015431','FLJ43663'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',526553,531395,'NR_033963','FLJ44511'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128068530,128088288,'NR_024368','FLJ45340'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',53690695,53847118,'NR_038371','FLJ45974'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128257718,128286564,'NM_001127487','FLNC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',4688455,4777600,'NM_001037165','FOXK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',113853792,114081434,'NM_001172767','FOXP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5598961,5612813,'NM_003088','FSCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127020924,127029087,'NM_020369','FSCN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2240451,2248359,'NM_013393','FTSJ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',90731718,90736068,'NM_003505','FZD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72486044,72488386,'NM_003508','FZD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99594800,99604309,'NM_024637','GAL3ST4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',151353710,151450360,'NM_022087','GALNT11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',151284396,151347952,'NM_145292','GALNTL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30600705,30640173,'NM_002047','GARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',91914700,91926678,'NM_021167','GATAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99636213,99707791,'NM_178831','GATS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',74017018,74076739,'NM_001145063','GATSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',74645540,74705277,'NM_001145064','GATSL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',55999763,56035369,'NM_001483','GBAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150476608,150495800,'NM_001098834','GBX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127007917,127012890,'NM_024523','GCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44150394,44165412,'NM_033508','GCK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',882716,902597,'NM_015949','GET4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30502761,30510982,'NM_024051','GGCT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30970160,30985671,'NM_000823','GHRHR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100115065,100124806,'NM_022574','GIGYF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150044577,150052301,'NM_130759','GIMAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150044577,150071670,'NM_001199577','GIMAP1-GIMAP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150013726,150021661,'NM_015660','GIMAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149895390,149901974,'NM_018326','GIMAP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150065368,150071670,'NM_018384','GIMAP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149953396,149960613,'NR_024115','GIMAP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149842877,149849094,'NM_153236','GIMAP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149778894,149807416,'NM_175571','GIMAP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99358827,99365179,'NM_181538','GJC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',7974947,8095234,'NM_138426','GLCCI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',41967072,42243143,'NM_000168','GLI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2734266,2850485,'NM_007353','GNA12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',79602075,79686661,'NM_002069','GNAI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',79925922,79979178,'NM_001102386','GNAT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100109298,100114728,'NM_005273','GNB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',93388951,93393762,'NM_004126','GNG11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',93373755,93378421,'NM_021955','GNGT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99605164,99612926,'NM_152742','GPC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1092968,1099977,'NM_001505','GPER'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',23252840,23281254,'NM_002510','GPNMB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',37746520,37747438,'NM_181791','GPR141'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1063666,1065423,'NM_138445','GPR146'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',106897737,106903361,'NM_005295','GPR22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',124173349,124192917,'NM_005302','GPR37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',112507703,112513778,'NM_001146267','GPR85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',50625253,50767544,'NM_005311','GRB10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6502933,6557592,'NM_001145118','GRID2IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',86111165,86332128,'NM_000840','GRM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',125865887,126670805,'NR_028041','GRM8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142670643,142676344,'NM_001143681','GSTK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73709965,73812958,'NM_001163636','GTF2I'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72206961,72259272,'NR_002206','GTF2IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73506055,73654856,'NM_001199207','GTF2IRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73848419,73905777,'NM_173537','GTF2IRD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',74146282,74203559,'NM_001003795','GTF2IRD2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72294837,72323594,'NR_002164','GTF2IRD2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',89813914,89858705,'NM_001042717','GTPBP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',65063107,65084736,'NM_000181','GUSB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',57237318,57251805,'NR_030766','GUSBP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44833012,44854250,'NM_138635','H2AFV'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',106596695,106630210,'NM_012257','HBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',18502409,18960464,'NM_058176','HDAC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',732863,792642,'NM_017802','HEATR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',43118722,43569463,'NM_015052','HECW1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',92655835,92693718,'NM_001039372','HEPACAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',35638794,35701297,'NM_022373','HERPUD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',81169379,81237388,'NM_000601','HGF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27531583,27669145,'NM_152740','HIBADH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75000554,75206219,'NM_005338','HIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138896855,139124162,'NM_001113239','HIPK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',26196080,26206938,'NM_002137','HNRNPA2B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27102237,27106402,'NR_038367','HOTAIRM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27206564,27212655,'NR_037843','HOTTIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27099138,27102150,'NM_005522','HOXA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27176734,27186405,'NR_037939','HOXA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27168581,27186405,'NR_037940','HOXA10-HOXA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27187300,27191360,'NM_005523','HOXA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27191551,27195437,'NR_002795','HOXA11-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27203023,27206250,'NM_000522','HOXA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27106497,27108919,'NM_006735','HOXA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27112333,27125739,'NM_030661','HOXA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27134650,27136924,'NM_002141','HOXA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27147195,27149812,'NM_019102','HOXA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27151726,27153918,'NM_024014','HOXA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27159862,27162821,'NM_006896','HOXA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27168581,27171674,'NM_152739','HOXA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',54236410,54237608,'NR_004422','HPVC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75769810,75771550,'NM_001540','HSPB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',154493478,154508392,'NM_024012','HTR5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',47969409,47985747,'NM_004507','HUS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',123272458,123304767,'NM_012269','HYAL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',123241428,123246720,'NR_002731','HYALP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',8119339,8268710,'NM_004968','ICA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',111877718,111904494,'NM_001550','IFRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',23316352,23476520,'NM_006547','IGF2BP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',45894483,45899792,'NM_000596','IGFBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',45918368,45927396,'NM_000598','IGFBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',50314923,50440292,'NM_001220776','IKZF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',22733290,22738146,'NM_000600','IL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',110090341,110989809,'NM_001244606','IMMP2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127819566,127837272,'NM_001142576','IMPDH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',120378052,120384270,'NM_198267','ING3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',41695125,41709231,'NM_002192','INHBA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30758275,30763743,'NM_001199219','INMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30758275,30898527,'NR_037598','INMT-FAM188B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',154720418,154732879,'NM_198337','INSIG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1476438,1510544,'NM_001080453','INTS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',64239037,64332035,'NR_027393','INTS4L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',64750211,64821067,'NR_027392','INTS4L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2565157,2620894,'NM_152558','IQCE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',122879471,122961954,'NM_178827','IQUB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128365506,128377324,'NM_032643','IRF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',16093676,16427472,'NM_001101417','ISPD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',20337249,20421907,'NM_002214','ITGB8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27836717,28186962,'NM_175061','JAZF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',139431014,139523210,'NM_030647','JHDM1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',32874302,32897993,'NM_015483','KBTBD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',119700957,120177623,'NM_012281','KCND2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150272976,150283850,'NM_172057','KCNH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128304154,128338009,'NM_001135914','KCP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',65731302,65745651,'NM_001167961','KCTD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6467236,6490374,'NM_001100603','KDELR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142348322,142369625,'NM_000420','KEL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',26539264,26544969,'NR_022006','KIAA0087'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',4781787,4800552,'NM_014855','KIAA0415'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',36330283,36396259,'NM_001100425','KIAA0895'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141002996,141048422,'NM_001080392','KIAA1147'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',86344158,86526950,'NM_001142749','KIAA1324L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138166666,138316604,'NM_001164665','KIAA1549'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1576234,1595787,'NR_021487','KIAA1908'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',130067935,130069428,'NM_138693','KLF14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129497584,129562796,'NM_014997','KLHDC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',23111877,23132194,'NR_033329','KLHL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138788627,138818997,'NM_198508','KLRG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98609132,98643025,'NM_001145715','KPNA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149043080,149062597,'NM_032534','KRBA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',91666218,91713350,'NM_194456','KRIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',107351481,107431040,'NM_002291','LAMB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',107451231,107558037,'NM_007356','LAMB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',55400634,55468929,'NM_018697','LANCL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73262022,73282100,'NM_014146','LAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127668566,127684918,'NM_000230','LEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2526004,2534589,'NM_001040167','LFNG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',103756339,104336239,'NM_199000','LHFPL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73136042,73174791,'NM_002314','LIMK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',65478465,65502830,'NR_026873','LINC00174'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',156025945,156026556,'NR_024119','LINC00244'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',39739691,39800747,'NR_026999','LINC00265'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',156166330,156378663,'NM_022458','LMBR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',123083096,123091383,'NM_207163','LMOD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',97574132,97676880,'NM_014916','LMTK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72206947,72259272,'NR_003580','LOC100093631'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141517438,141567562,'NR_003717','LOC100124692'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',28186600,28247521,'NR_034097','LOC100128081'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',154489710,154494200,'NR_038945','LOC100128264'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150077756,150118770,'NM_001162367','LOC100128542'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',151792141,151793563,'NR_027387','LOC100128822'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138752748,138762812,'NR_033999','LOC100129148'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',50566950,50578655,'NR_033845','LOC100129427'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100024959,100039597,'NR_038910','LOC100129845'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',32463034,32464631,'NR_038454','LOC100130673'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128293699,128299337,'NM_001195150','LOC100130705'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',56910571,56917333,'NR_038450','LOC100130849'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',137288633,137293252,'NM_001243523','LOC100130880'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150737254,150741065,'NR_034012','LOC100131176'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',7081925,7102942,'NR_034022','LOC100131257'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',154351159,154369493,'NR_024477','LOC100132707'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',76506732,76520291,'NR_028058','LOC100132832'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',76016593,76095235,'NR_029411','LOC100133091'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27153306,27162072,'NR_038831','LOC100133311'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',139523529,139525909,'NR_024451','LOC100134229'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',140041604,140043346,'NR_024454','LOC100134713'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',104438224,104441824,'NR_024586','LOC100216545'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',104409429,104418848,'NR_039981','LOC100216546'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128929555,128940009,'NM_001195243','LOC100287482'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',62446882,62449587,'NR_028348','LOC100287704'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',62446882,62449587,'NR_028349','LOC100287834'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99033837,99046392,'NM_001195543','LOC100289187'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101791027,101808081,'NM_001242713','LOC100289561'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',151205059,151207241,'NR_038926','LOC100505483'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',77151103,77164598,'NR_038361','LOC100505854'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',16216635,16276754,'NR_038946','LOC100506025'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',16533029,16587639,'NM_001195280','LOC100506049'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',63122230,63127915,'NR_039987','LOC100506050'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',96088904,96131586,'NR_038948','LOC100506136'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',22569480,22580142,'NR_038393','LOC100506178'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',28986107,29019510,'NR_038965','LOC100506497'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',157340037,157351543,'NR_038966','LOC100506585'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',38347702,38384763,'NR_040085','LOC100506776'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',43514851,43528666,'NR_038276','LOC100506895'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',140420500,140826648,'NM_001195278','LOC100507421'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101791027,101854134,'NR_038967','LOC100630923'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143139993,143164743,'NR_015421','LOC154761'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',158493805,158511690,'NR_024394','LOC154822'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',121730947,121737367,'NR_036484','LOC154860'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',124204581,124218100,'NM_001024603','LOC154872'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148613304,148625336,'NR_036573','LOC155060'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',154426075,154428346,'NR_028090','LOC202781'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',54592156,54606913,'NR_038994','LOC285878'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',155923243,155931043,'NR_038232','LOC285889'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',41700038,41785501,'NR_027118','LOC285954'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142815027,142930662,'NR_033897','LOC285965'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149761674,149776161,'NR_034033','LOC285972'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',107084196,107089479,'NR_028137','LOC286002'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5078216,5079380,'NR_015343','LOC389458'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',56149867,56151584,'NM_001145712','LOC389493'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30554497,30583920,'NR_038889','LOC401320'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',32764422,32769061,'NR_036501','LOC401321'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',35319990,35382611,'NR_038864','LOC401324'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',112544008,112545873,'NR_015442','LOC401397'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149195715,149201884,'NR_027040','LOC401431'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128553560,128555286,'NR_002144','LOC407835'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',26409631,26502511,'NR_015364','LOC441204'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',64749358,64873232,'NR_038378','LOC441242'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',65655987,65680933,'NR_002933','LOC493754'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',74859164,74862644,'NR_003602','LOC541473'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',63680422,63681564,'NR_033245','LOC641746'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',62389104,62401869,'NR_003952','LOC643955'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',156496311,156501879,'NR_038835','LOC645249'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',104224189,104231775,'NR_034141','LOC645591'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',130216290,130248609,'NR_034120','LOC646329'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',29652062,29691279,'NR_024278','LOC646762'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',39615610,39618212,'NR_024390','LOC646999'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',63531505,63533330,'NR_029404','LOC649395'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',56458890,56483562,'NR_029420','LOC650226'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',104322310,104354328,'NR_027374','LOC723809'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',92028303,92057632,'NR_034169','LOC728066'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143587021,143614029,'NR_033942','LOC728377'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149733772,149740491,'NR_027237','LOC728743'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',65912414,65947248,'NR_003934','LOC729156'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',7646866,7885376,'NR_034084','LOC729852'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141614583,141618551,'NR_036483','LOC730441'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141458017,141490252,'NR_003715','LOC93432'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100009569,100021712,'NM_002319','LRCH4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',133462644,133599473,'NM_144648','LRGUK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102340579,102372792,'NM_005824','LRRC17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127454359,127458238,'NM_022143','LRRC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149651228,149666178,'NM_023942','LRRC61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',91612133,91632526,'NM_001161528','LRRD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',110518297,110552745,'NM_018334','LRRN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101892394,101900617,'NM_152892','LRWD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',32491469,32497000,'NR_024466','LSM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138675644,138758743,'NM_001244585','LUC7L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',135262042,135312744,'NM_001128619','LUZP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',20140803,20223538,'NM_182762','MACC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1821953,2239109,'NM_003550','MAD1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1536893,1549205,'NM_002360','MAFK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',77484309,78920826,'NM_012301','MAGI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',78921211,78934719,'NR_038343','MAGI2-AS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99562255,99564057,'NM_203397','MBLAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99528339,99537363,'NM_005916','MCM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',114349444,114350956,'NM_001166346','MDFIC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75515328,75533866,'NM_005918','MDH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',15617361,15692833,'NM_005924','MEOX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99864348,99869685,'NM_001194992','MEPCE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129913281,129933367,'NM_177524','MEST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129914133,129918249,'NR_004382','MESTIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',116099694,116225676,'NM_001127500','MET'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127904018,127930214,'NM_018396','METTL2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141342147,141453016,'NM_004668','MGAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',47767598,47772895,'NR_038407','MGC16075'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',92005724,92007015,'NR_026902','MGC16142'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',97433843,97439574,'NR_002822','MGC72080'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1440520,1465635,'NM_182924','MICALL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',7573140,7613635,'NM_019005','MIOS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99529551,99529633,'NR_029831','MIR106B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',36925486,36925562,'NR_031604','MIR1200'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127635160,127635232,'NR_029596','MIR129-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',25956063,25956131,'NR_029597','MIR148A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',157059788,157059875,'NR_029689','MIR153-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129197458,129197568,'NR_029614','MIR182'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129201980,129202090,'NR_029615','MIR183'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27175623,27175707,'NR_029911','MIR196B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99529118,99529202,'NR_029498','MIR25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',130212045,130212109,'NR_029503','MIR29A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',130212757,130212838,'NR_029517','MIR29B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',19711505,19711584,'NR_036101','MIR3146'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',57476672,57476738,'NR_036102','MIR3147'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129923187,129923281,'NR_029899','MIR335'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1029094,1029188,'NR_029898','MIR339'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98317208,98317288,'NR_037403','MIR3609'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',114080635,114080746,'NR_037439','MIR3666'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150761507,150761658,'NR_037468','MIR3907'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',70410593,70410692,'NR_037477','MIR3914-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',70410595,70410690,'NR_037479','MIR3914-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',43157018,43157118,'NR_037508','MIR3943'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',57027433,57027513,'NR_036246','MIR4283-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',57027433,57027513,'NR_036270','MIR4283-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72763582,72763663,'NR_036247','MIR4284'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101723088,101723173,'NR_036245','MIR4285'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101898920,101898983,'NR_039677','MIR4467'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',137459043,137459107,'NR_039678','MIR4468'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2533233,2533312,'NR_039791','MIR4648'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44116965,44117048,'NR_039792','MIR4649'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',66216743,66216819,'NR_039793','MIR4650-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',66216743,66216819,'NR_039794','MIR4650-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75382450,75382523,'NR_039795','MIR4651'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',93184175,93184253,'NR_039796','MIR4652'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100589473,100589556,'NR_039797','MIR4653'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1850341,1850415,'NR_039799','MIR4655'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',4794721,4794796,'NR_039800','MIR4656'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44887871,44887924,'NR_039801','MIR4657'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99592163,99592228,'NR_039802','MIR4658'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',92951183,92951267,'NR_030164','MIR489'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',136238453,136238581,'NR_030165','MIR490'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',146706041,146706146,'NR_031645','MIR548F4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',147257617,147674860,'NR_036093','MIR548T'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30295934,30296031,'NR_030319','MIR550A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',32739117,32739214,'NR_030320','MIR550A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',29686874,29686969,'NR_039600','MIR550A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30295934,30296031,'NR_037513','MIR550B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',32739117,32739214,'NR_037514','MIR550B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5501975,5502074,'NR_030318','MIR589'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73243463,73243560,'NR_030321','MIR590'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',95686909,95687004,'NR_030322','MIR591'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',126485377,126485474,'NR_030323','MIR592'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127509148,127509248,'NR_030324','MIR593'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',158018170,158018266,'NR_030325','MIR595'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',92950007,92950103,'NR_030388','MIR653'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150566439,150566557,'NR_030407','MIR671'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99529326,99529406,'NR_029510','MIR93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129201768,129201845,'NR_029512','MIR96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',130663134,130831938,'NM_013255','MKLN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',139802451,139825838,'NM_001145125','MKRN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',151462942,151764023,'NM_170606','MLL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',104441872,104541768,'NM_018682','MLL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72645459,72676806,'NM_032954','MLXIPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',4912145,4965370,'NM_001100600','MMD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',156490307,156496108,'NM_005515','MNX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100625732,100631022,'NM_178176','MOGAT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100048049,100050936,'NM_023948','MOSPD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141587028,141593361,'NR_024346','MOXD2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',24579609,24694023,'NM_016447','MPP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',42938463,42943978,'NM_031903','MRPL32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',55987104,55990527,'NM_015969','MRPS17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',43872681,43875670,'NM_032014','MRPS24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',140352429,140361250,'NM_053035','MRPS33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',91339956,91347952,'NM_006980','MTERF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',135262042,135312744,'NM_145808','MTPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142053693,142055088,'NM_001190487','MTRNR2L6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100399623,100448950,'NM_001164462','MUC12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100450083,100488860,'NM_001040105','MUC17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98708859,98733530,'NR_002147','MYH16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101043324,101059296,'NM_138403','MYL10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44144987,44147441,'NM_021223','MYL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44968784,44985229,'NM_033054','MYO1G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',117611321,117631329,'NM_016200','NAA38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',45086560,45095018,'NM_001146334','NACAD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',105675967,105712874,'NM_005746','NAMPT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102527258,102576805,'NM_198990','NAPEPLD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',158116763,158190281,'NM_017760','NCAPG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73826244,73841595,'NM_000265','NCF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72272609,72287915,'NR_003186','NCF1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',74210319,74225752,'NR_003187','NCF1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',10938104,10946338,'NM_002489','NDUFA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',122968318,122985194,'NM_005000','NDUFA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',140042949,140052915,'NM_004546','NDUFB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',31343604,31347063,'NM_022728','NEUROD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',26158371,26193281,'NM_004289','NFE2L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143725265,143738253,'NM_001080413','NOBOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30430667,30484918,'NM_006092','NOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',156435177,156458637,'NM_138400','NOM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150321824,150331956,'NM_001160109','NOS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44518659,44547439,'NM_013389','NPC1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',34664421,34884469,'NM_207173','NPSR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98084532,98097117,'NM_002523','NPTX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',25230715,25234630,'NM_022150','NPVF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',24290331,24298009,'NM_000905','NPY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',107575306,107884077,'NM_001193582','NRCAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129038790,129184158,'NM_005011','NRF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72354449,72360800,'NM_148956','NSUN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',74877559,74884001,'NR_033322','NSUN5P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72056767,72063238,'NR_033323','NSUN5P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',33020266,33068934,'NR_029372','NT5C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150669779,150706480,'NM_001243351','NUB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44388489,44496910,'NM_015332','NUDCD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2248421,2257306,'NM_198952','NUDT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',134893201,134984039,'NM_015135','NUP205'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',23187970,23207155,'NM_007342','NUPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',8440109,8759118,'NM_152745','NXPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5886954,5892520,'NM_001097622','OCM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',97451948,97457352,'NM_006188','OCM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44612645,44715194,'NM_001165036','OGDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128199778,128203080,'NM_001708','OPN1SW'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143559936,143560869,'NM_001005287','OR2A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143423133,143424066,'NM_001004135','OR2A12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143457138,143458071,'NM_001001659','OR2A14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143437608,143438565,'NM_001005480','OR2A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143578699,143579629,'NR_002158','OR2A20P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143402245,143403178,'NM_001004488','OR2A25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143559936,143560869,'NM_001001802','OR2A42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143378427,143379363,'NM_012365','OR2A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143586721,143587654,'NM_001005328','OR2A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143578496,143579481,'NR_002157','OR2A9P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99311620,99312592,'NM_001005276','OR2AE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143287952,143289041,'NM_012369','OR2F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143263258,143264212,'NM_001004685','OR2F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143332022,143332958,'NM_001005281','OR6B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142459559,142460501,'NM_001001667','OR6V1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142469502,142471004,'NR_002140','OR6W1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142433408,142434341,'NM_001001658','OR9A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141265144,141266089,'NM_001001656','OR9A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101861000,101884273,'NM_001126340','ORAI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',103554023,103635731,'NM_002553','ORC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',24802688,24986285,'NM_145321','OSBPL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',4863894,4868151,'NM_020144','PAPOLB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',139370017,139409990,'NM_022750','PARP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127037581,127043016,'NM_006193','PAX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',154366332,154425615,'NM_007349','PAXIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',82287731,82630133,'NM_014510','PCLO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100037817,100043734,'NM_002593','PCOLCE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98830234,98844241,'NM_014891','PDAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',31795771,32076991,'NM_001191056','PDE1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',503422,526007,'NM_002607','PDGFA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148331086,148356715,'NM_004911','PDIA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',95050744,95063861,'NM_002612','PDK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',94123617,94136942,'NM_001172438','PEG10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',9640424,9641972,'NR_002790','PER4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',91954272,91995781,'NM_000466','PEX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44068850,44071711,'NM_000290','PGAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',10980023,11175775,'NR_033436','PHF14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',56116168,56128183,'NM_006213','PHKG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',77307382,77424757,'NM_001127357','PHTF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',106293159,106334828,'NM_002649','PIK3CG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99809003,99835658,'NM_013439','PILRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99771623,99803390,'NR_036569','PILRB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',76778003,76883653,'NM_017439','PION'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142539295,142546956,'NM_002652','PIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',47780774,47954596,'NM_138295','PKD1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30034501,30096884,'NM_032639','PLEKHA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100635977,100647731,'NM_001084','PLOD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',131820060,131983987,'NM_181775','PLXNA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102725108,102742369,'NM_004279','PMPCB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5979395,6015263,'NR_003085','PMS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6741460,6757757,'NR_002217','PMS2CL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72114615,72152902,'NR_003614','PMS2L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99756198,99771866,'NR_003613','PMS2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',74975004,74995389,'NR_028059','PMS2P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',66394857,66404841,'NR_022007','PMS2P4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73944829,73960266,'NR_027776','PMS2P5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',107899306,107953874,'NM_015723','PNPLA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',130835560,130891916,'NM_005397','PODXL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44120810,44129672,'NM_006230','POLD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44078371,44088654,'NM_013284','POLM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101900552,101906386,'NM_006234','POLR2J'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102064432,102099412,'NM_032959','POLR2J2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101965370,102099384,'NM_001097615','POLR2J3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',43947018,44025273,'NR_003655','POLR2J4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',71987871,72056774,'NM_172020','POM121'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',74884000,74953504,'NM_001099415','POM121C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',53070842,53072112,'NM_182595','POM121L12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',76077238,76094556,'NM_012230','POMZP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',94765604,94791820,'NM_000446','PON1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',94872109,94902320,'NM_000305','PON2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',94827119,94863623,'NM_000940','PON3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100141611,100143059,'NM_005837','POP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75382355,75454109,'NM_000941','POR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',124249675,124357273,'NM_015450','POT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',38984133,39470915,'NM_007252','POU6F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44802765,44809241,'NM_021130','PPIA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',113304117,113346318,'NM_002711','PPP1R3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',94374884,94763663,'NM_017650','PPP1R9A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150884133,151205249,'NM_016203','PRKAG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',555359,719103,'NM_001164762','PRKAR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',106472413,106589492,'NM_002736','PRKAR2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101823808,101854134,'NM_024653','PRKRIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',18032924,18034011,'NM_175886','PRPS1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',29569951,29573436,'NM_175887','PRR15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127777614,127788975,'NM_001114726','PRRT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142136892,142140501,'NM_002769','PRSS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142178777,142182363,'NM_002770','PRSS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141182546,141187690,'NM_001171951','PRSS37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141598435,141604355,'NM_001001317','PRSS58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',42922986,42938330,'NM_002787','PSMA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102775206,102797078,'NM_002803','PSMC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1573494,1576194,'NM_001134340','PSMG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',56046237,56086762,'NM_004577','PSPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98852297,98874398,'NM_015545','PTCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',136562634,136679086,'NM_002825','PTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',77005287,77107324,'NM_001131008','PTPN12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',157024510,158073243,'NM_130843','PTPRN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',121300394,121489326,'NM_001206839','PTPRZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44882416,44891485,'NM_033224','PURB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',104884195,104949921,'NM_019042','PUS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99654806,99657047,'NM_024070','PVRIG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',139750311,139772519,'NM_001008749','RAB19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',65843077,65913883,'NM_014504','RABGEF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100743367,100751813,'NM_001130820','RABL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6380650,6410123,'NM_018890','RAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',4805265,4889861,'NM_018059','RADIL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',39629676,39714248,'NM_005402','RALA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',45163891,45190375,'NM_005856','RAMP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',22124432,22363058,'NM_012294','RAPGEF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149666339,149669696,'NM_002889','RARRES2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102007167,102044425,'NM_006989','RASA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44035010,44046747,'NR_024116','RASA4P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5052078,5075645,'NM_021163','RBAK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5051977,5079380,'NM_001204513','RBAK-LOC389458'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127737671,127771198,'NM_018077','RBM28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',155129963,155266940,'NM_053043','RBM33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102899466,103417199,'NM_005045','RELN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149696811,149702066,'NM_013400','REPIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73283767,73306674,'NM_002914','RFC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75346252,75356180,'NM_001040457','RHBDD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150794030,150847943,'NM_005614','RHEB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',104959767,104995360,'NM_021930','RINT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',122125001,122126444,'NM_139175','RNF133'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',122128955,122130257,'NM_198085','RNF148'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5626197,5787887,'NM_207116','RNF216'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',4980141,5004326,'NR_015449','RNF216P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',156126201,156162581,'NM_001184996','RNF32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',33100934,33115527,'NM_203288','RP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',32922951,32949307,'NR_003500','RP9P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',7643099,7724763,'NM_002947','RPA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',77814494,77826706,'NR_003680','RPL13AP17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102568952,102570086,'NR_026660','RPL19P12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',20833441,20833964,'NR_026673','RPL23P8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',23496531,23497556,'NR_026676','RPS2P32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',77163678,77247056,'NM_198467','RSBN1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5932302,5976840,'NM_173565','RSPH10B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5932302,5976840,'NM_001099697','RSPH10B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',87095664,87299549,'NM_001134405','RUNDC3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',92566761,92585272,'NM_001193307','SAMD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',92597303,92615616,'NM_152703','SAMD9L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100007788,100009206,'NM_001168682','SAP25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',66090124,66098023,'NM_016038','SBDS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',71937887,71942522,'NR_001588','SBDSP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',12595672,12659753,'NM_033128','SCIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',29926243,29996259,'NM_001145513','SCRN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',4135842,4275157,'NR_027816','SDK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',54787433,54794433,'NM_014302','SEC61G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',83425594,83662153,'NM_006080','SEMA3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',80209789,80386603,'NM_006379','SEMA3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',84462807,84589183,'NM_152754','SEMA3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',82831157,83116415,'NM_012431','SEMA3E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',63947505,63951613,'NR_002789','SEPHS1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',55828730,55897976,'NM_207366','SEPT14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',35807120,35913240,'NM_001242956','SEPT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',45729910,45775142,'NR_024271','SEPT7P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100557098,100569267,'NM_000602','SERPINE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',37912059,37923050,'NM_003014','SFRP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',94052471,94123457,'NM_001099400','SGCE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101715124,101748898,'NM_020979','SH2B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',96156014,96177139,'NM_006304','SHFM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',155288318,155297728,'NM_000193','SHH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',26673212,26870866,'NM_003930','SKAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100288293,100302570,'NM_020246','SLC12A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',122540823,122627261,'NM_022444','SLC13A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',135016526,135063473,'NM_012450','SLC13A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',95587467,95789395,'NM_014251','SLC25A13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',87301749,87343628,'NM_018843','SLC25A40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',107193147,107230914,'NM_000111','SLC26A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',107088315,107145488,'NM_000441','SLC26A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102780412,102873860,'NM_206885','SLC26A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5289086,5310230,'NM_153247','SLC29A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',133624629,133652367,'NM_032826','SLC35B4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',139680020,139744780,'NM_207113','SLC37A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150387589,150404547,'NM_003040','SLC4A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150566991,150605164,'NM_003078','SMARCD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128615948,128640621,'NM_005631','SMO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98462993,98579679,'NM_001199847','SMURF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',127079437,127519895,'NM_014390','SND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75411036,75411170,'NR_002955','SNORA14A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',56095656,56095789,'NR_002957','SNORA15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',64857947,64858081,'NR_002961','SNORA22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',45110472,45110606,'NR_002919','SNORA5A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',45112091,45112223,'NR_002990','SNORA5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',45111029,45111166,'NR_002991','SNORA5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44991501,44991634,'NR_002952','SNORA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',22862756,22862830,'NR_003075','SNORD93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',26367028,26380474,'NM_001199837','SNX10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',17796909,17946656,'NM_015132','SNX13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2257930,2320625,'NM_013321','SNX8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',16467630,16471999,'NM_015464','SOSTDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',21434213,21520676,'NM_003112','SP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',20788418,20793033,'NM_182700','SP8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',123352521,123387336,'NM_153189','SPAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44007013,44016248,'NM_175064','SPDYE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101978777,101989855,'NM_001031618','SPDYE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101978777,101989855,'NM_001166339','SPDYE2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99743260,99757755,'NM_001004351','SPDYE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',74962234,74971564,'NM_001099435','SPDYE5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',101772911,101783609,'NM_001146210','SPDYE6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',71971253,71977591,'NR_003666','SPDYE7P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72128195,72138245,'NR_003664','SPDYE8P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75856581,75876948,'NM_080744','SRCRB4D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',87672367,87687329,'NM_003130','SRI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',104544058,104816577,'NM_182692','SRPK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75669151,75754541,'NM_001110199','SRRM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100310636,100324221,'NM_001128854','SRRT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141084644,141096726,'NM_003143','SSBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149104063,149161986,'NM_198455','SSPO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',116380616,116657311,'NM_018412','ST7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',116379736,116381624,'NR_002330','ST7-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',116539581,116572850,'NR_002331','ST7-AS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',116609970,116637227,'NR_002332','ST7-OT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',116381188,116387103,'NR_002329','ST7-OT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99613473,99649946,'NM_012447','STAG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',74826364,74834850,'NR_040583','STAG3L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',73936198,73944667,'NR_040584','STAG3L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72105924,72114384,'NR_040582','STAG3L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',66405059,66423948,'NR_040586','STAG3L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',38184332,38236797,'NM_032016','STARD3NL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',89621624,89632077,'NM_012449','STEAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',22425587,22506426,'NM_207342','STEAP1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',89678935,89704928,'NM_152999','STEAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',87743679,87774164,'NM_001205315','STEAP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',43589216,43633503,'NM_004760','STK17A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',23716521,23838652,'NM_032944','STK31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',134567270,134593784,'NM_182489','STRA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72751470,72771953,'NM_004603','STX1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75463590,75515257,'NM_016086','STYXL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',56099410,56115859,'NM_001146333','SUMF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',838667,881083,'NM_001130965','SUN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',47993270,48035241,'NM_152782','SUN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',137929569,137999509,'NM_174959','SVOPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',105518187,105539994,'NM_182715','SYPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',97199206,97207720,'NM_003182','TAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99542628,99554931,'NR_033792','TAF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',38265768,38279773,'NM_001003806','TARP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',122421994,122422990,'NM_016945','TAS2R16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141110365,141111466,'NM_016943','TAS2R3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141318899,141320042,'NM_176817','TAS2R38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142590633,142591650,'NM_176881','TAS2R39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141124757,141125657,'NM_016944','TAS2R4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142629293,142630265,'NM_176882','TAS2R40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142885087,142886011,'NM_176883','TAS2R41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141136485,141137635,'NM_018980','TAS2R5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142850667,142851624,'NM_177437','TAS2R60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',27746238,27835911,'NM_001079864','TAX1BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72621209,72630949,'NM_012453','TBL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',45106223,45117842,'NM_030900','TBRG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',35237636,35260236,'NM_001166220','TBX20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',139175420,139366594,'NM_001061','TBXAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',97683982,97719404,'NM_015395','TECPR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',115637782,115686073,'NM_015641','TES'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1620631,1622854,'NR_001288','TFAMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',115362437,115458103,'NM_001018058','TFEC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',93353680,93358001,'NM_006528','TFPI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100055974,100077109,'NM_003227','TFR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',107989906,107997403,'NM_001130475','THAP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',11376586,11838349,'NM_015204','THSD7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44585286,44588352,'NM_182547','TMED4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',12217372,12243415,'NM_018374','TMEM106B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75454090,75461928,'NM_031925','TMEM120A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98282046,98305609,'NM_152913','TMEM130'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142692161,142695263,'NM_001242776','TMEM139'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',134483305,134501507,'NM_018295','TMEM140'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',112193022,112217714,'NM_022484','TMEM168'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150128786,150133141,'NM_018487','TMEM176A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150119308,150128554,'NM_001101312','TMEM176B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1548396,1562592,'NM_001097620','TMEM184A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',19725462,19778929,'NM_152774','TMEM196'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129591790,129632574,'NM_032842','TMEM209'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138133278,138141309,'NM_001085429','TMEM213'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',123458205,123460759,'NM_001136002','TMEM229A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',77260980,77265683,'NM_032936','TMEM60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150409104,150411346,'NM_031434','TMUB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128381469,128482463,'NM_001191028','TNPO3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5312948,5429703,'NM_001080495','TNRC18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',47281276,47588267,'NM_022748','TNS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',22818776,22828946,'NM_019059','TOMM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',86792599,86812744,'NR_015381','TP53TG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128482512,128484529,'NR_002187','TPI1P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',143779966,144164079,'NM_022445','TPK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',65307693,65462873,'NM_003596','TPST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',23510925,23538181,'NM_013293','TRA2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',28959498,28964554,'NM_014817','TRIL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',137795618,137920872,'NM_003852','TRIM24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99325965,99355159,'NM_033017','TRIM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72364470,72380021,'NM_178125','TRIM50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100515505,100520609,'NM_030961','TRIM56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',74862838,74872824,'NM_198924','TRIM73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72067951,72077933,'NM_198853','TRIM74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100302885,100309012,'NM_003302','TRIP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142315769,142340942,'NM_019841','TRPV5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142279081,142293599,'NM_018646','TRPV6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98314048,98448802,'NM_001244580','TRRAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142158331,142161975,'NR_001296','TRY6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99902077,99914838,'NM_030935','TSC22D4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',130004025,130021946,'NM_052933','TSGA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',120214609,120285413,'NM_012338','TSPAN12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',16759875,16790686,'NM_014399','TSPAN13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',128571947,128596770,'NM_178562','TSPAN33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138469029,138525090,'NM_001144923','TTC26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',2638128,2670962,'NM_025250','TTYH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',19121615,19123820,'NM_000474','TWIST1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',19701609,19715185,'NM_001002926','TWISTNB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',37854723,37906527,'NM_016616','TXNDC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',66099251,66341933,'NM_018264','TYW1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',71677427,71936749,'NM_001145440','TYW1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',43932559,43962260,'NM_015983','UBE2D4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129257808,129380036,'NM_003344','UBE2H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',156624415,156754827,'NM_014671','UBE3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138566770,138643522,'NM_173569','UBN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100324279,100325275,'NM_001015072','UFSP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1239179,1243139,'NM_001080461','UNCX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75977680,75995135,'NM_030570','UPK3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',102064709,102070474,'NM_001114403','UPK3BL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',48094879,48114855,'NM_181597','UPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',43882025,43912756,'NM_017920','URGCP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',43872681,43912756,'NM_001204871','URGCP-MRPS24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6111075,6167720,'NM_032172','USP42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100592509,100595572,'NM_003378','VGF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',158513626,158630410,'NM_003382','VIPR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',64975691,65057235,'NM_173517','VKORC1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',55505799,55607694,'NM_030796','VOPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72720109,72724376,'NM_001077621','VPS37D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',38730067,38915325,'NM_014396','VPS41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',54577512,54604442,'NM_182546','VSTM2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',49783802,49922684,'NM_198570','VWC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',12337033,12410377,'NM_001135924','VWDE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',123109232,123176352,'NM_003941','WASL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',74094218,74127635,'NM_030798','WBSCR16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',70235724,70816520,'NM_022479','WBSCR17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72735833,72750478,'NM_001202560','WBSCR22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72886857,72894791,'NM_152559','WBSCR27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',72913424,72918159,'NM_182504','WBSCR28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',158342029,158431644,'NM_018051','WDR60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',150709139,150738057,'NM_198285','WDR86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',134519129,134546856,'NM_014149','WDR91'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',141054621,141077540,'NM_001105558','WEE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',29812694,29923207,'NM_001080529','WIPF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5196360,5240012,'NM_016003','WIPI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',120756325,120768394,'NM_057168','WNT16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',116703921,116750579,'NR_024047','WNT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',151974519,152004183,'NM_005431','XRCC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44207102,44220418,'NM_006555','YKT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75794043,75826278,'NM_012479','YWHAG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100169184,100233355,'NM_003386','ZAN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138378805,138445005,'NM_020119','ZC3HAV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',138360991,138371315,'NM_080660','ZC3HAV1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',129445361,129478469,'NM_016478','ZC3HC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99836430,99864238,'NM_017984','ZCWPW1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6583589,6595135,'NM_001134389','ZDHHC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',1159068,1166381,'NM_182491','ZFAND2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99451154,99473339,'NM_003439','ZKSCAN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98940508,98969381,'NM_014569','ZKSCAN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',44762311,44776004,'NM_174929','ZMIZ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',63763945,63808836,'NM_016220','ZNF107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',64072264,64088849,'NM_015852','ZNF117'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6694588,6713091,'NM_006956','ZNF12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',63892205,63931460,'NM_006524','ZNF138'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148567674,148583633,'NM_012256','ZNF212'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',64001054,64029390,'NR_003099','ZNF273'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',111633878,111771225,'NM_021994','ZNF277'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148523509,148554272,'NM_003575','ZNF282'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99505529,99517307,'NM_032924','ZNF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98928789,98935813,'NM_032164','ZNF394'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148475492,148511051,'NM_170686','ZNF398'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148430810,148454371,'NM_001001661','ZNF425'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149092384,149101228,'NM_207336','ZNF467'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',57191267,57211513,'NM_033273','ZNF479'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99052506,99067966,'NM_145115','ZNF498'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98993980,99000264,'NM_024061','ZNF655'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',63326286,63364744,'NM_153363','ZNF679'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',63622468,63660940,'NM_001130022','ZNF680'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',55947824,55975927,'NM_182633','ZNF713'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',57513824,57537207,'NM_001159279','ZNF716'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',63143255,63176362,'NM_001159522','ZNF727'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',63305015,63318103,'NM_001159524','ZNF735'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',63410620,63447452,'NM_001170905','ZNF736'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148800816,148825831,'NM_152557','ZNF746'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148875177,148952814,'NR_027789','ZNF767'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149707338,149726652,'NM_173680','ZNF775'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148759386,148788986,'NM_015694','ZNF777'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148590194,148613018,'NM_001195220','ZNF783'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',148397665,148418802,'NM_152411','ZNF786'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',98908450,98923153,'NM_213603','ZNF789'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',126797589,126820003,'NM_176814','ZNF800'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',88226688,88804282,'NM_181646','ZNF804B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5829316,5860592,'NR_023382','ZNF815'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',6622051,6630446,'NM_017560','ZNF853'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',149166441,149195501,'NM_001099220','ZNF862'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',5127466,5150703,'NR_034163','ZNF890P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',64476202,64503433,'NM_007139','ZNF92'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',100647704,100654191,'NM_006349','ZNHIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',30290447,30373833,'NM_147128','ZNRF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',32734086,32736120,'NR_003502','ZNRF2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',29690912,29691962,'NR_027347','ZNRF2P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',75864776,75909324,'NM_007155','ZP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',49947569,50103406,'NM_001159878','ZPBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',99485352,99500600,'NM_145914','ZSCAN21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7',142788481,142798327,'NM_003461','ZYX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr7_',205741,249523,'NM_001242480','LOC389831'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',107840886,107851648,'NM_139166','ABRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',39561243,39706740,'NM_014237','ADAM18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',39720411,39814936,'NM_001464','ADAM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',24207524,24249557,'NM_021777','ADAM28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',39084206,39261593,'NM_145004','ADAM32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',39427720,39499627,'NR_001569','ADAM3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',39291338,39379532,'NR_001448','ADAM5P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',24354453,24422165,'NM_003817','ADAM7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38973661,39081936,'NM_003816','ADAM9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',24297742,24319471,'NM_001145272','ADAMDEC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145568538,145589261,'NM_174922','ADCK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',131861728,132122017,'NM_001115','ADCY8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67507271,67543598,'NM_144650','ADHFE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',26683138,26778839,'NM_000680','ADRA1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',37939670,37943341,'NM_000025','ADRB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6553285,6606429,'NM_018361','AGPAT5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',41554863,41601677,'NM_178819','AGPAT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',108330885,108579430,'NM_001146','ANGPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6344580,6408192,'NM_001118888','ANGPT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',41629900,41641961,'NM_001142445','ANK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',101602175,101641188,'NM_198401','ANKRD46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124762214,124818828,'NM_004306','ANXA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42129620,42147858,'NM_006803','AP3M2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143689411,143692835,'NM_015193','ARC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',68272437,68418466,'NM_006421','ARFGEF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145725370,145809696,'NM_025251','ARHGAP39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',1759555,1894214,'NM_014629','ARHGEF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',66677244,66709006,'NM_018120','ARMC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',17958204,17986787,'NM_004315','ASAH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',131133534,131483399,'NM_018482','ASAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',131376782,131377961,'NR_002765','ASAP1-IT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38082167,38116385,'NM_004674','ASH2L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',62698822,62764962,'NM_001164752','ASPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124401271,124477886,'NM_014109','ATAD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',87180254,87235570,'NM_152565','ATP6V0D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',20098983,20123487,'NM_001693','ATP6V1B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',104102423,104154461,'NM_001695','ATP6V1C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',54790667,54918403,'NM_015941','ATP6V1H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',103907711,103945573,'NM_148174','AZIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',104222096,104311709,'NM_024812','BAALC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38153262,38189976,'NM_001204878','BAG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143542378,143623370,'NM_001702','BAI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',65655348,65658745,'NM_152414','BHLHE22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22533891,22582606,'NM_018688','BIN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11388929,11459517,'NM_001715','BLK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22078597,22125785,'NM_006129','BMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',26296439,26326561,'NM_004331','BNIP3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145456863,145485928,'NM_015201','BOP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144851272,144852571,'NR_015445','BREA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',37820555,37826589,'NM_018310','BRF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11263320,11333576,'NR_026814','C8orf12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',50147455,50151195,'NM_001007176','C8orf22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144192053,144207095,'NM_173687','C8orf31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',146248627,146252220,'NM_023080','C8orf33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',69405510,69610616,'NM_001195639','C8orf34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',96326316,96350638,'NM_177965','C8orf37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',96106396,96140114,'NM_152416','C8orf38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',94821514,94822223,'NR_027259','C8orf39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',40130145,40131978,'NM_020130','C8orf4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42515874,42527297,'NM_138436','C8orf40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',431645,485331,'NM_175075','C8orf42'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67742340,67755931,'NM_019607','C8orf44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67742340,67936811,'NM_001204173','C8orf44-SGK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67946290,67980153,'NM_001136160','C8orf45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67568044,67593313,'NM_152765','C8orf46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',99145925,99175014,'NM_173549','C8orf47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',13468722,13470168,'NM_001007090','C8orf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144520167,144522180,'NR_026785','C8orf51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143805622,143815352,'NM_016647','C8orf55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',104214366,104222746,'NR_027071','C8orf56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22513058,22517607,'NM_001198827','C8orf58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',86313539,86319895,'NM_001099673','C8orf59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',58354655,58359844,'NR_026772','C8orf71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144719505,144726071,'NM_001100878','C8orf73'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',10567556,10595513,'NM_001040032','C8orf74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',29634693,29661544,'NR_026765','C8orf75'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124301376,124322819,'NM_032847','C8orf76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',146199000,146202236,'NR_026974','C8orf77'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27935399,27997307,'NM_001010906','C8orf80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145722410,145725266,'NM_001001795','C8orf82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',93964933,94046993,'NM_001191036','C8orf83'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',74139331,74168061,'NM_153225','C8orf84'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',118019644,118025420,'NM_001025357','C8orf85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38487508,38505337,'NM_207412','C8orf86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145547693,145549313,'NR_015428','C8ORFK29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',86427709,86441195,'NM_001164830','CA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',86344967,86383554,'NM_198584','CA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',86563382,86580973,'NM_000067','CA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',86538307,86548519,'NM_005181','CA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',61263976,61356508,'NM_004056','CA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',91140013,91164283,'NM_004929','CALB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144860851,144862267,'NM_001162914','CCDC166'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27646751,27686089,'NM_018246','CCDC25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',95961628,95976658,'NM_057749','CCNE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',25372429,25421342,'NM_152562','CDCA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',95208569,95298707,'NM_001144663','CDH17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',48812028,48813279,'NM_005195','CEBPD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',57286868,57293730,'NM_024300','CHCHD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',61753877,61943140,'NM_017780','CHD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',82807242,82834303,'NM_152284','CHMP4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23157094,23175457,'NM_152272','CHMP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',141590578,141596434,'NR_023360','CHRAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27373194,27392730,'NM_000742','CHRNA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42726936,42743086,'NM_001199279','CHRNA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42671718,42711366,'NM_000749','CHRNB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',8597075,8599027,'NM_194284','CLDN23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',1699276,1722143,'NM_018941','CLN8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27510350,27528245,'NM_203339','CLU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',62363078,62576758,'NM_173519','CLVS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',87947791,88464071,'NM_173538','CNBD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',87655278,87825019,'NM_019098','CNGB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',17131110,17148758,'NM_013354','CNOT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',121206532,121453454,'NM_021110','COL14A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',139669659,139995418,'NM_152888','COL22A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',120148604,120188383,'NM_006438','COLEC10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',146046354,146049256,'NM_014066','COMMD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',68117868,68137116,'NM_006837','COPS5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',100959398,100975418,'NM_004374','COX6C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',68496958,68821174,'NM_020361','CPA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',87595771,87642842,'NM_003909','CPNE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145589253,145605541,'NM_013291','CPSF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67251165,67253400,'NM_000756','CRH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',76059262,76109350,'NM_031461','CRISPLD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',19305951,19584374,'NM_018371','CSGALNACT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',2780281,4839736,'NM_033225','CSMD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',113304332,114518418,'NM_198123','CSMD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',68139156,68271403,'NM_024790','CSPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',104452961,104464393,'NM_138455','CTHRC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11737442,11763055,'NM_147783','CTSB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145221947,145224416,'NM_001916','CYC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145646122,145661226,'NM_138496','CYHR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143950774,143958238,'NM_000497','CYP11B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143988976,143996261,'NM_000498','CYP11B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',59565290,59575274,'NM_000780','CYP7A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',65671082,65873902,'NM_004820','CYP7B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',104496117,104524856,'NM_015420','DCAF13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',88952086,88955412,'NM_152418','DCAF4L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',30133354,30160697,'NM_006571','DCTN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38208165,38215767,'NM_001164234','DDHD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',91082755,91133403,'NM_001359','DECR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6822580,6825024,'NM_004084','DEFA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6813072,6814045,'NR_029386','DEFA10P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6841697,6844134,'NM_001042500','DEFA1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6860800,6863226,'NM_005217','DEFA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6780754,6783196,'NM_001925','DEFA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6900238,6901669,'NM_021010','DEFA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6769625,6771008,'NM_001926','DEFA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6715508,6722939,'NM_005218','DEFB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7273900,7275280,'NM_001081551','DEFB103A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7273825,7275092,'NM_018661','DEFB103B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7315239,7320014,'NM_080389','DEFB104A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7731402,7736174,'NM_001040702','DEFB104B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7332652,7334483,'NM_152250','DEFB105A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7332652,7334483,'NM_001040703','DEFB105B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7327435,7331319,'NM_152251','DEFB106A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7327435,7331319,'NM_001040704','DEFB106B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7340777,7354243,'NM_001037668','DEFB107A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7340777,7354243,'NM_001040705','DEFB107B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12295163,12302245,'NR_024044','DEFB109P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7157777,7164883,'NR_003668','DEFB109P1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11959306,11966665,'NM_001037804','DEFB130'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11888897,11891169,'NM_001033019','DEFB134'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11877238,11879508,'NM_001033017','DEFB135'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11868854,11869517,'NM_001033018','DEFB136'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7789608,7791647,'NM_004942','DEFB4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7259794,7261764,'NM_001205266','DEFB4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6832109,6834653,'NR_036686','DEFT1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6832109,6834653,'NR_036687','DEFT1P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',142207901,142275082,'NM_014957','DENND3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',120955080,121132338,'NM_022783','DEPTOR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124094748,124123829,'NM_001134671','DERL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145509054,145521375,'NM_012079','DGAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42350742,42353831,'NM_014420','DKK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12985242,13035180,'NM_006094','DLC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',1436975,1644049,'NM_004745','DLGAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67096344,67175309,'NM_033105','DNAJC5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',25098203,25326536,'NM_024940','DOCK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',21822329,21827151,'NM_003974','DOK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',95801278,95875252,'NM_181787','DPY19L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',105460827,105548453,'NM_001385','DPYS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',26491256,26571610,'NM_001386','DPYSL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',120915361,120937351,'NM_024094','DSCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',33568392,33576981,'NM_024025','DUSP26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',29246497,29264186,'NM_001394','DUSP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',86276870,86314006,'NM_001951','E2F5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',110621485,110646567,'NM_004215','EBAG9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',25757489,25958309,'NM_022659','EBF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144733009,144750988,'NM_001960','EEF1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',49790026,49810423,'NM_001142857','EFCAB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',16929117,17024519,'NM_181723','EFHA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',132985537,133095068,'NM_015137','EFR3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22601118,22605847,'NM_001199880','EGR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',141610445,141714828,'NM_001164623','EIF2C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',109283147,109330135,'NM_001568','EIF3E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',117726235,117837243,'NM_003756','EIF3H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38007176,38037040,'NM_004095','EIF4EBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',28006502,28104588,'NM_018091','ELP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',120638499,120720287,'NM_006209','ENPP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23342609,23371189,'NM_001128930','ENTPD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',110415727,110427365,'NM_020189','ENY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',21972631,21995982,'NM_001978','EPB49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27404561,27458403,'NM_001979','EPHX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145011899,145019422,'NM_031308','EPPK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',8897723,8928259,'NM_153332','ERI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',604199,671226,'NM_207332','ERICH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',37713254,37734477,'NM_007175','ERLIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27687976,27718343,'NM_001017420','ESCO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',95722539,95788870,'NM_001122827','ESRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145205509,145207539,'NM_019037','EXOSC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',118880782,119193239,'NM_000127','EXT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',28615071,28667121,'NM_001440','EXTL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',72272221,72431533,'NM_172058','EYA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',82599835,82606105,'NM_001105281','FABP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',82553286,82558028,'NM_001442','FABP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',82355272,82359567,'NM_001444','FABP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',82533172,82536313,'NM_001080526','FABP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',59069666,59224831,'NM_147189','FAM110B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',139211447,139578247,'NM_015912','FAM135B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',53609149,53640574,'NM_207413','FAM150A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22002659,22017836,'NM_022749','FAM160B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',79740836,79794552,'NM_016010','FAM164A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11316382,11361686,'NM_053279','FAM167A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145264659,145267608,'NM_016458','FAM203A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',130922897,131021182,'NM_016623','FAM49B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12263898,12312881,'NR_026789','FAM66A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7146542,7200286,'NR_027423','FAM66B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12010699,12046107,'NR_027425','FAM66D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7849944,7903687,'NR_027424','FAM66E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',87553693,87590125,'NM_016033','FAM82B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124263932,124290388,'NM_032899','FAM83A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144878090,144887902,'NM_198488','FAM83H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',127633864,127639893,'NM_174911','FAM84B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12077021,12089033,'NR_003494','FAM86B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12327494,12338223,'NM_001137610','FAM86B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7663908,7666920,'NM_001164447','FAM90A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7101835,7104846,'NM_001164456','FAM90A13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7610374,7613385,'NM_001164452','FAM90A14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7618022,7621033,'NM_001164451','FAM90A18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7618022,7621033,'NM_001164449','FAM90A19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7139945,7142956,'NM_001164453','FAM90A20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12316400,12321466,'NR_036463','FAM90A25P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7132323,7135334,'NM_001164455','FAM90A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7401069,7404644,'NM_001136572','FAM90A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7633318,7636328,'NM_001164450','FAM90A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7656261,7659272,'NM_001164448','FAM90A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124850062,124896871,'NM_144963','FAM91A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',94781948,94809847,'NM_145269','FAM92A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145549898,145552940,'NM_012162','FBXL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',28341847,28403703,'NM_172366','FBXO16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',346807,409875,'NM_183420','FBXO25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124579307,124613564,'NM_148177','FBXO32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',101214763,101227275,'NR_036491','FBXO43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11697598,11734227,'NM_004462','FDFT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124933407,125201483,'NM_001039112','FER1L6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',125065558,125122204,'NR_040044','FER1L6-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',21956373,21962265,'NM_003867','FGF17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',16894704,16904045,'NM_019851','FGF20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38387812,38445509,'NM_001174064','FGFR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',17766179,17797327,'NM_004467','FGL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',8123501,8134962,'NR_024363','FLJ10661'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22553828,22555667,'NR_027715','FLJ14107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',75674655,75833142,'NR_033830','FLJ39080'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',102133457,102157655,'NR_033962','FLJ42969'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',142513110,142586512,'NM_207414','FLJ43860'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',43030598,43060088,'NM_002027','FNTA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145669922,145672526,'NM_003923','FOXH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',33347885,33450206,'NM_032664','FUT10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',28407640,28487704,'NM_145866','FZD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',104380234,104414270,'NM_003506','FZD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11599125,11654918,'NM_002052','GATA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',75425207,75441890,'NM_001040875','GDAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',97223733,97242196,'NM_001001557','GDF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',95330660,95343723,'NM_005261','GEM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',21593809,21702292,'NM_001165039','GFRA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',64090192,64114164,'NM_003878','GGH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',41505881,41521722,'NM_032336','GINS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144420981,144430476,'NM_138465','GLI4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143913218,143925264,'NM_002066','GML'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',25332690,25338473,'NM_000825','GNRH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',41467237,41487656,'NM_001174124','GOLGA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',37910959,37916804,'NM_152413','GOT1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145209511,145213107,'NM_003801','GPAA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144366442,144370419,'NM_178172','GPIHBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',37773558,37820662,'NM_032777','GPR124'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145553032,145555754,'NM_024531','GPR172A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',142435768,142446547,'NM_005293','GPR20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145700272,145703363,'NM_005309','GPT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',102573843,102751128,'NM_024915','GRHL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145136213,145139571,'NM_000837','GRINA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',130829623,130868316,'NM_031415','GSDMC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144706699,144716374,'NM_001166237','GSDMD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',30655119,30705028,'NM_000637','GSR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',30555572,30635280,'NM_002095','GTF2E2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',122694451,122722811,'NM_005328','HAS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',122720766,122726745,'NR_002835','HAS2-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145274906,145340356,'NM_001099281','HEATR7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',80838799,80842653,'NM_001040708','HEY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',43114748,43177127,'NM_152419','HGSNAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',133142914,133186694,'NM_001145095','HHLA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',28803829,28966161,'NM_001135726','HMBOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',76614757,76641616,'NM_004133','HNF4G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42871189,43004839,'NM_032410','HOOK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',133641926,133642908,'NR_026684','HPYR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22027876,22044510,'NM_005144','HR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',99183742,99198594,'NM_005836','HRSP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145486077,145509193,'NM_005526','HSF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38950824,38965338,'NM_153692','HTRA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',39890484,39905466,'NM_002164','IDO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',39911630,39993067,'NM_194294','IDO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42247976,42309328,'NR_033819','IKBKB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',79807561,79880313,'NM_000880','IL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',82731705,82761144,'NM_001144878','IMPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',58033041,58068981,'NM_017813','IMPAD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',19719197,19753866,'NM_018142','INTS10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',95904709,95961897,'NM_017864','INTS8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',28681093,28803617,'NR_026826','INTS9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',75309492,75396117,'NM_020647','JPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143735875,143748403,'NM_003724','JRK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',41906153,42028662,'NM_001099412','KAT6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',1909450,1942516,'NM_014867','KBTBD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',73612179,74013138,'NM_004770','KCNB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',140693985,140784481,'NM_016601','KCNK9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',133202286,133562186,'NM_004519','KCNQ3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',99508425,99512199,'NM_020697','KCNS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',36760999,36912801,'NM_001031836','KCNU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',111048408,111056135,'NM_014379','KCNV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',25341280,25371901,'NM_017634','KCTD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',136538897,136729030,'NM_006558','KHDRBS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',48336041,48811116,'NM_001080394','KIAA0146'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',126105684,126173243,'NM_014846','KIAA0196'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',95569180,95634922,'NM_015496','KIAA1429'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12847553,12931655,'NM_020844','KIAA1456'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145234616,145245206,'NR_024207','KIAA1875'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22518483,22533928,'NM_021174','KIAA1967'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',28980713,29176529,'NM_015254','KIF13B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145662545,145670307,'NM_145754','KIFC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',103730180,103737159,'NM_005655','KLF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124727095,124734371,'NM_001081675','KLHL38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',71712054,71744001,'NM_016027','LACTB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',98856984,98934006,'NM_018407','LAPTM4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',30072463,30085129,'NM_015344','LEPROTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38363115,38385219,'NM_001199659','LETM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22060287,22070289,'NM_139278','LGI3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143277623,143288271,'NR_024378','LINC00051'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11471452,11476259,'NR_040035','LINC00208'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',66235933,66255129,'NR_038901','LINC00251'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',47871672,47885094,'NR_027013','LINC00293'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',92039881,92066661,'NM_001190972','LOC100127983'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',74494862,74516307,'NR_038406','LOC100128126'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144888297,144900495,'NR_033849','LOC100128338'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',19085465,19147312,'NR_038919','LOC100128993'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',65448328,65453940,'NR_034102','LOC100130155'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',127022557,127032623,'NR_038446','LOC100130231'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',62041233,62042861,'NR_034003','LOC100130298'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',74316212,74334291,'NM_001243237','LOC100130301'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124282592,124284164,'NR_024479','LOC100131726'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7821268,7847345,'NM_001193630','LOC100132396'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',72917911,73131101,'NR_033652','LOC100132891'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11959306,11966665,'NM_001195257','LOC100133267'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144134822,144171182,'NR_026913','LOC100133669'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',77685668,77758065,'NR_024360','LOC100192378'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6248484,6251477,'NR_040040','LOC100287015'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',48220094,48223604,'NR_037168','LOC100287846'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143780671,143805393,'NR_038925','LOC100288181'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',95718688,95720871,'NR_034034','LOC100288748'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',104246912,104253544,'NR_034092','LOC100499183'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',97028388,97029752,'NR_036611','LOC100500773'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67266902,67272108,'NR_039979','LOC100505659'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67494375,67503766,'NR_040434','LOC100505676'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',69986591,70178979,'NR_039986','LOC100505718'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12338892,12468725,'NR_040092','LOC100506990'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23249665,23279583,'NR_038323','LOC100507156'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',30615658,30623011,'NM_001206847','LOC100507341'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',57593431,57634936,'NR_038236','LOC100507632'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',58294201,58307942,'NR_038235','LOC100507651'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',96350239,96891547,'NR_038201','LOC100616530'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6680485,6687385,'NR_045217','LOC100652791'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',9219970,9230000,'NR_040039','LOC157273'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',126023430,126032518,'NR_027321','LOC157381'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',9794983,9798249,'NR_024281','LOC157627'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22981686,22997077,'NR_038873','LOC286059'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',1231700,1238234,'NR_033895','LOC286083'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',136315555,136381144,'NR_026706','LOC286094'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',20875776,20896910,'NR_033894','LOC286114'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',29898570,29930665,'NR_024473','LOC286135'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',58336338,58341724,'NR_038874','LOC286177'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',64844541,64860608,'NR_038875','LOC286184'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',66601796,66637455,'NR_033893','LOC286186'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',69378256,69406280,'NR_038877','LOC286189'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',71683365,71738067,'NR_038881','LOC286190'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12667941,12713281,'NR_015383','LOC340357'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7105550,7108424,'NR_027000','LOC349196'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23138678,23144384,'NR_033928','LOC389641'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',94215499,94248255,'NM_001242668','LOC389676'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12022775,12024213,'NR_003275','LOC392196'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',73280087,73326423,'NR_033867','LOC392232'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',65649419,65652374,'NR_015374','LOC401463'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',94427870,94781837,'NR_033858','LOC642924'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',128524776,128563566,'NR_024393','LOC727677'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',37723231,37724722,'NR_003671','LOC728024'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',130297894,130322668,'NR_033916','LOC728724'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',142419829,142423902,'NR_024441','LOC731779'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12623776,12657363,'NM_152271','LONRF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23210354,23317667,'NM_002318','LOXL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',19840861,19869050,'NM_000237','LPL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',105570635,105670428,'NM_001135703','LRP12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145714170,145721367,'NM_014665','LRRC14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145718568,145723224,'NM_001024678','LRRC24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',133653628,133756995,'NM_012472','LRRC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',68062920,68103340,'NM_001013626','LRRC67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',92184022,92300640,'NM_001129890','LRRC69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',86206574,86245566,'NM_033402','LRRCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38140014,38153183,'NM_014462','LSM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143863299,143865010,'NM_003695','LY6D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144171276,144175202,'NM_001127213','LY6E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144310705,144312832,'NM_002347','LY6H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143778530,143782586,'NM_017527','LY6K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',75066117,75103861,'NM_015364','LY96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',56954939,57087560,'NM_002350','LYN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143842757,143856641,'NM_023946','LYNX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143828629,143830954,'NM_205545','LYPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',55121490,55177130,'NM_006330','LYPLA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',20147955,20157083,'NM_021020','LZTS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145231292,145234503,'NM_032272','MAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144581372,144583745,'NM_201589','MAFA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',33462226,33478320,'NM_032509','MAK16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',120289790,120327095,'NM_052886','MAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144870494,144876621,'NM_139021','MAPK15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',98950486,99118122,'NM_030583','MATN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',30108728,30121742,'NM_001100916','MBOAT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',49035315,49053272,'NM_182746','MCM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6251520,6488548,'NM_024596','MCPH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',118602145,118621682,'NM_080651','MED30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',8679408,8788541,'NM_004225','MFHAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145705359,145707397,'NM_138431','MFSD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',128877389,128877456,'NR_031609','MIR1204'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',129042060,129042123,'NR_031610','MIR1205'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',129090325,129090384,'NR_031611','MIR1206'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',129130579,129130666,'NR_031612','MIR1207'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',129231543,129231616,'NR_031613','MIR1208'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145596283,145596367,'NR_031600','MIR1234'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',9798307,9798392,'NR_029668','MIR124-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',65454259,65454368,'NR_029669','MIR124-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',10720292,10720363,'NR_031711','MIR1322'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',75780482,75780537,'NR_031744','MIR2052'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',113724897,113724988,'NR_031745','MIR2053'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',135881944,135882032,'NR_029666','MIR30B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',135886300,135886370,'NR_029599','MIR30D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',29934329,29934406,'NR_036104','MIR3148'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',96154317,96154397,'NR_036105','MIR3150A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',96154314,96154400,'NR_037484','MIR3150B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',104236017,104236093,'NR_036106','MIR3151'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22158419,22158501,'NR_029714','MIR320A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',117956147,117956220,'NR_037404','MIR3610'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27615112,27615195,'NR_037417','MIR3622A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27615108,27615203,'NR_037418','MIR3622B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',94997425,94997523,'NR_039602','MIR378D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',14755317,14755390,'NR_029875','MIR383'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12629111,12629184,'NR_037492','MIR3926-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12629116,12629179,'NR_037495','MIR3926-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',10561897,10561990,'NR_036248','MIR4286'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27799474,27799552,'NR_036249','MIR4287'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',28418551,28418618,'NR_036250','MIR4288'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42870496,42870575,'NR_039679','MIR4469'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',62789900,62789972,'NR_039680','MIR4470'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',101464166,101464249,'NR_039681','MIR4471'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143255606,143255686,'NR_039682','MIR4472-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6590092,6590173,'NR_039803','MIR4659A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6590096,6590169,'NR_039807','MIR4659B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',8943364,8943438,'NR_039804','MIR4660'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',92286888,92286962,'NR_039805','MIR4661'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',125903407,125903474,'NR_039806','MIR4662A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',125903400,125903481,'NR_039809','MIR4662B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124297208,124297284,'NR_039808','MIR4663'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144887240,144887311,'NR_039810','MIR4664'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',41637115,41637183,'NR_030161','MIR486'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7983872,7984021,'NR_031689','MIR548I3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',1752803,1752880,'NR_030326','MIR596'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',9636591,9636688,'NR_030327','MIR597'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',10930125,10930222,'NR_030328','MIR598'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',100618039,100618134,'NR_030329','MIR599'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145091346,145091435,'NR_030383','MIR661'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',100618189,100618265,'NR_030596','MIR875'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144967114,144967200,'NR_030633','MIR937'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145590171,145590253,'NR_030635','MIR939'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',89118575,89408833,'NM_005941','MMP16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',57188054,57189095,'NM_005372','MOS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',121477263,121526828,'NM_014078','MRPL13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',55210333,55223627,'NM_014175','MRPL15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',80993649,81105061,'NM_014018','MRPS28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',72916330,72919285,'NM_005098','MSC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',16009757,16094671,'NM_138716','MSR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',9990475,10323811,'NM_001135671','MSRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',121526846,121605056,'NM_022045','MTBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',98725582,98811664,'NM_178812','MTDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',97320820,97342972,'NM_015942','MTERFD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',66719441,66783127,'NM_001145839','MTFR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',17198676,17315411,'NM_004686','MTMR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11179409,11223064,'NM_015458','MTMR9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',125632208,125809911,'NM_014751','MTSS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',17545582,17702706,'NM_001001924','MTUS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67636963,67688034,'NM_001144755','MYBL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',128817496,128822862,'NM_002467','MYC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',1980564,2080787,'NM_003970','MYOM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',102450296,102450999,'NR_002182','NACAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144728097,144731656,'NM_145201','NAPRT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',18123456,18125478,'NM_001160174','NAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',18293034,18303003,'NM_000015','NAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',91014739,91066075,'NM_002485','NBN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',102767945,103205738,'NM_001040624','NCALD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',71186820,71478574,'NM_006540','NCOA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',134318595,134378729,'NM_006096','NDRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',125620523,125631408,'NM_005005','NDUFB9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',91873096,92040806,'NM_022351','NECAB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',24864385,24870048,'NM_006158','NEFL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',24828359,24832511,'NM_001105541','NEFM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11664580,11682263,'NM_001135746','NEIL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',99273562,99375797,'NM_024759','NIPAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',63324054,64066182,'NM_173688','NKAIN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23615908,23620056,'NM_001136271','NKX2-6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23592150,23596395,'NM_006167','NKX3-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',41622985,41624035,'NM_152568','NKX6-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',120497732,120505859,'NM_002514','NOV'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',54015020,54016007,'NM_005285','NPBWR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',21938299,21950354,'NM_182795','NPM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144987742,144995134,'NM_178564','NRBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',32525269,32705678,'NM_004495','NRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',59658617,59734958,'NM_003580','NSMAF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',126173264,126448549,'NM_173685','NSMCE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',110322323,110415526,'NM_032869','NUDCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22020327,22022877,'NM_024815','NUDT18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',133105648,133140809,'NM_001080399','OC90'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',103633023,103642421,'NM_024410','ODF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145178154,145187572,'NM_017570','OPLAH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',54300828,54326747,'NM_000912','OPRK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',106085,107024,'NM_001005504','OR4F21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',90983268,91009270,'NM_004337','OSGIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',100025806,100033502,'NM_001142462','OSR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',92151599,92168499,'NM_016023','OTUD6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',107807510,107834097,'NM_001198535','OXR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',101784319,101803491,'NM_002568','PABPC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',82042600,82186858,'NM_018440','PAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145123307,145132623,'NM_032789','PARP10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27723056,27751268,'NM_018492','PBK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',17824645,17931737,'NM_006197','PCM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',52892692,52974288,'NM_052937','PCMTD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',66789122,66863883,'NM_002603','PDE7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',17478214,17544922,'NM_006207','PDGFRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22493931,22507755,'NM_198042','PDLIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',94998258,95007472,'NM_018444','PDP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22626709,22841366,'NM_144962','PEBP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',57516066,57521147,'NM_006211','PENK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',78055048,78075835,'NM_001172087','PEX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',97726674,98224898,'NM_016134','PGCP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',133856785,133906769,'NM_032205','PHF20L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22133160,22145796,'NM_001099335','PHYHIP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',75899326,75929819,'NM_015886','PI15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',10660293,10734709,'NM_017884','PINX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22189024,22269529,'NM_001135721','PIWIL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',110443881,110612676,'NM_177531','PKHD1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',79590890,79680057,'NM_181839','PKIA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',57236021,57286413,'NM_002655','PLAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42151392,42184351,'NM_000930','PLAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145061308,145122901,'NM_000445','PLEC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38877909,38950587,'NM_021623','PLEKHA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',96215124,96238089,'NM_024613','PLEKHF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',82515118,82522274,'NM_002677','PMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',26418112,26427400,'NM_007257','PNMA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',28230567,28256787,'NM_006228','PNOC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42315129,42348488,'NM_002690','POLB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',101232014,101235406,'NM_005034','POLR2K'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22158563,22164625,'NM_001722','POLR3D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',99199243,99241245,'NM_015029','POP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',43266741,43337485,'NM_001005365','POTEA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',128497038,128498623,'NM_001159542','POU5F1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38239806,38245895,'NM_001102559','PPAPDC1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145692916,145698312,'NM_032902','PPP1R16A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',9031173,9045630,'NM_024607','PPP1R3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',30762667,30789894,'NM_001009552','PPP2CB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',26206648,26286112,'NM_001177591','PPP2R2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22354427,22454602,'NM_001243974','PPP3CC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',71126576,71146116,'NM_024504','PRDM14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',69027156,69180208,'NM_025170','PREX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',48848221,49035296,'NM_006904','PRKDC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',37739258,37756444,'NM_007198','PROSC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',10420465,10433743,'NM_198464','PRSS55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143758875,143761147,'NM_005672','PSCA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',18429092,18710685,'NM_206909','PSD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',87129806,87150967,'NM_033126','PSKH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',97343342,97415950,'NM_014754','PTDSS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',141737662,142080594,'NM_005607','PTK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27238997,27372825,'NM_173175','PTK2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',142501188,142510802,'NM_032611','PTP4A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67842185,67842794,'NR_002734','PTTG3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144970534,144983525,'NM_078480','PUF60'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',31007898,31009859,'NM_013357','PURG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',128875960,129182681,'NR_003367','PVT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',52394689,52884558,'NM_144651','PXDNL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144757225,144762927,'NM_023078','PYCRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23201556,23209737,'NM_001136108','R3HCC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',37835622,37876173,'NM_025151','RAB11FIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',61592022,61698757,'NM_002865','RAB2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',117927353,117956286,'NM_006265','RAD21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',117955843,117958288,'NR_033886','RAD21-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',95453363,95518356,'NM_001205263','RAD54B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',85258140,85996633,'NM_173848','RALYL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',53697570,53789579,'NM_014781','RB1CC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',94812903,94822400,'NM_203390','RBM12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',30361485,30549276,'NM_006867','RBPMS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',74369818,74400070,'NM_172037','RDH10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145707474,145714018,'NM_004260','RECQL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22051477,22055393,'NM_025232','REEP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',86755946,86762978,'NM_172239','REXO1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',86754079,86755157,'NR_003594','REXO1L2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',54926920,55034417,'NM_170587','RGS20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',101042451,101187520,'NM_015668','RGS22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22913036,22933655,'NM_015178','RHOBTB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144522399,144537533,'NM_052924','RHPN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',104900591,105335832,'NM_014677','RIMS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',90839109,90872433,'NM_003821','RIPK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',33524814,33544185,'NM_024787','RNF122'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',125556188,125570040,'NM_007218','RNF139'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42827594,42871023,'NM_030954','RNF170'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',101338463,101391503,'NM_183419','RNF19A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',55691179,55705947,'NM_006269','RP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',10501269,10550027,'NM_178857','RP1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',148344,172318,'NR_003572','RPL23AP53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',99123113,99126994,'NM_000989','RPL30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',74365427,74368423,'NM_000971','RPL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145985957,145988533,'NM_033301','RPL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',57147921,57149694,'NM_001023','RPS20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',103285904,103320522,'NM_001172478','RRM2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67503816,67505522,'NM_015169','RRS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',108980719,109165089,'NM_178565','RSPO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',93036370,93099084,'NM_175636','RUNX1T1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',119270875,119703365,'NM_001101676','SAMD12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',119702420,119807487,'NR_038210','SAMD12-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',56524310,56530435,'NR_027765','SBF1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27547495,27590205,'NM_182826','SCARA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27783317,27906288,'NM_173833','SCARA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144945077,144969537,'NM_182706','SCRIB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145525261,145530751,'NM_031309','SCRT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145393504,145395033,'NM_001008271','SCXA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145393504,145395033,'NM_001080514','SCXB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',97575057,97693213,'NM_002998','SDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',59628281,59657973,'NM_005625','SDCBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',57375123,57395795,'NM_138969','SDR16C5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',41238632,41286147,'NM_003012','SFRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22075128,22077936,'NM_003018','SFTPC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',13991743,15140163,'NM_139167','SGCZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',43067813,43097480,'NM_032237','SGK196'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',8212667,8276667,'NM_001080826','SGK223'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67787206,67936811,'NM_001033578','SGK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',19215360,19298009,'NM_022071','SH2D4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145225523,145231128,'NM_030974','SHARPIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',134118154,134141785,'NM_006748','SLA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',82768445,82769762,'NM_001010893','SLC10A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',20046645,20084997,'NM_003053','SLC18A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42393149,42516225,'NM_006749','SLC20A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',104480041,104496644,'NM_030780','SLC25A32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23442307,23486008,'NM_016612','SLC25A37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',92330691,92479554,'NM_052832','SLC26A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',118032370,118258134,'NM_001172815','SLC30A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11225904,11227105,'NM_054028','SLC35G5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22280706,22347585,'NM_001135154','SLC39A14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145608605,145612725,'NM_017767','SLC39A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',142290051,142307855,'NM_001080431','SLC45A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',87295403,87311720,'NM_138817','SLC7A13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',17440664,17472352,'NM_003046','SLC7A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',70747121,70908179,'NM_001146008','SLCO5A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143819363,143820831,'NM_020427','SLURP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',49992793,49996552,'NM_003068','SNAI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67996718,68000331,'NR_002599','SNHG6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',99123489,99123621,'NR_002581','SNORA72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',57148951,57149014,'NR_002437','SNORD54'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67997262,67997338,'NR_002598','SNORD87'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',121617165,121893490,'NM_021021','SNTB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',50987149,51867980,'NM_018967','SNTG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',82874372,82917076,'NM_022133','SNX16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',101654287,101731069,'NM_152628','SNX31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22465195,22488953,'NM_005775','SORBS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',55533047,55536009,'NM_022454','SOX17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',10618687,10625432,'NM_031439','SOX7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',101239738,101323308,'NM_003114','SPAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7742811,7758729,'NM_001081552','SPAG11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7292685,7308602,'NM_058200','SPAG11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145158569,145174003,'NM_198572','SPATC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',126079900,126103707,'NM_003129','SQLE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',53185944,53484992,'NM_014682','ST18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',134536272,134653365,'NM_173344','ST3GAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38119374,38127757,'NM_000349','STAR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',74495157,74821716,'NM_001164383','STAU2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23755378,23768265,'NM_003155','STC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',99536036,99907085,'NM_006281','STK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',80685603,80740965,'NM_007029','STMN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27149730,27171820,'NM_030795','STMN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',70567581,70735701,'NM_001128206','SULF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',110655580,110726227,'NM_001099754','SYBU'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38763878,38829703,'NM_001122824','TACC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',120812194,120914255,'NM_003184','TAF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',125569915,125620510,'NM_001146160','TATDN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',55041668,55097561,'NM_201437','TCEA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',75019926,75047076,'NM_005648','TCEB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',68021289,68037379,'NM_001193502','TCF24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11234555,11263371,'NR_001578','TDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',74083650,74122541,'NM_003218','TERF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',30808601,30826075,'NM_031271','TEX15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',133948386,134216325,'NM_003235','TG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',56848344,56900559,'NM_024831','TGS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42810973,42817631,'NM_018105','THAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144751216,144753628,'NM_032862','TIGD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38965483,38973198,'NM_078473','TM2D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',105421229,105438092,'NM_030788','TM7SF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',146191054,146195087,'NR_002807','TMED10P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',92075674,92122379,'NM_018710','TMEM55A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',91703398,91727309,'NM_001146273','TMEM64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',125392339,125454121,'NM_194291','TMEM65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',30040172,30060191,'NM_016127','TMEM66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',94836247,94900636,'NR_024522','TMEM67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',56813873,56848439,'NM_152417','TMEM68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',75050930,75057572,'NR_033334','TMEM70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',133791373,133842096,'NM_001145153','TMEM71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',109864521,109868946,'NM_153015','TMEM74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23104914,23138625,'NM_003844','TNFRSF10A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',22933592,22982645,'NR_027140','TNFRSF10B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23016271,23030895,'NM_003841','TNFRSF10C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',23049048,23077485,'NM_003840','TNFRSF10D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',120004976,120033564,'NM_002546','TNFRSF11B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',9450854,9677266,'NM_003747','TNKS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145624970,145640620,'NM_013432','TONSL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144462902,144488425,'NM_052963','TOP1MT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',59880530,60194321,'NM_014729','TOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',96007375,96030791,'NM_001135733','TP53INP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',81109659,81246391,'NM_005079','TPD52'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',71648006,71683248,'NM_014294','TRAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',140811767,141537860,'NM_031466','TRAPPC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',110168828,110200988,'NM_003301','TRHR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',126511744,126519826,'NM_025195','TRIB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',27198320,27224751,'NM_171982','TRIM35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67201831,67250272,'NM_184085','TRIM55'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',125532228,125534447,'NM_017956','TRMT12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',73096039,73150373,'NM_007332','TRPA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',116489899,116750402,'NM_014112','TRPS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',143291347,143482448,'NM_145003','TSNARE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',98354889,98359352,'NM_033512','TSPYL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144765930,144770875,'NM_003313','TSTA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',109525028,109568312,'NM_014673','TTC35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',33475777,33490245,'NM_001102401','TTI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',64134601,64161166,'NM_000370','TTPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',15441966,15668529,'NM_178234','TUSC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',49083547,49137007,'NM_003350','UBE2V2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',74865393,74953664,'NM_018299','UBE2W'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',103333677,103494093,'NM_015902','UBR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',59486376,59526614,'NM_001077619','UBXN2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',30721231,30744062,'NM_005671','UBXN8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',64052973,64060014,'NR_027378','UG0898H09'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',35212516,35771723,'NM_080872','UNC5D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',97308479,97317038,'NM_006294','UQCRB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',12032085,12033678,'NM_201402','USP17L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',117847922,117856102,'NM_032334','UTP23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',67705041,67742006,'NM_025054','VCPIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',42368502,42382572,'NM_001135694','VDAC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',100094669,100291191,'NM_015243','VPS13B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145619807,145624735,'NM_016208','VPS28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',17148771,17199904,'NM_001145152','VPS37A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124154100,124233573,'NM_145647','WDR67'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124498145,124523441,'NM_018024','WDYHV1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',38251717,38358947,'NM_023034','WHSC1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',134272463,134313114,'NM_001204870','WISP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',31010319,31150819,'NM_000553','WRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',87424109,87549294,'NM_007013','WWP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',56177570,56601264,'NM_052898','XKR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',6653449,6680576,'NM_207411','XKR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',10791066,11096285,'NM_173683','XKR6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',71744153,71810731,'NM_001011720','XKR9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',21833125,21920042,'NM_015024','XPO7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',64243674,64287900,'NM_152758','YTHDF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',101999979,102032736,'NM_001135701','YWHAZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',81561002,81597165,'NM_023929','ZBTB10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144590967,144694763,'NM_015117','ZC3H3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',17058206,17124612,'NM_016353','ZDHHC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',82776120,82796094,'NM_024699','ZFAND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',135559212,135794474,'NM_020863','ZFAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',135679495,135682114,'NR_002438','ZFAT-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',77756069,77942076,'NM_024721','ZFHX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144400483,144416250,'NM_173832','ZFP41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',106400322,106885943,'NM_012082','ZFPM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124329870,124355908,'NM_007222','ZHX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',124307609,124355908,'NM_001204180','ZHX1-C8ORF76'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',123863081,124055936,'NM_014943','ZHX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',40507267,40874500,'NM_024645','ZMAT4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',146126547,146147078,'NM_006958','ZNF16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',146073139,146097650,'NM_001109689','ZNF250'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145917102,145951775,'NM_138367','ZNF251'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',146169778,146199089,'NR_023392','ZNF252'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145969304,145983529,'NM_030580','ZNF34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',28259020,28299896,'NM_018660','ZNF395'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',145995064,146005333,'NM_213605','ZNF517'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',126054719,126060811,'NM_152412','ZNF572'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',172199,187339,'NM_173539','ZNF596'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144803096,144807043,'NM_014789','ZNF623'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144444933,144453495,'NM_030895','ZNF696'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',146023706,146039410,'NM_003416','ZNF7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',37672458,37675554,'NM_025069','ZNF703'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',81703240,81949571,'NM_001033723','ZNF704'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',11984255,12010434,'NM_001039615','ZNF705D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',7202907,7207900,'NM_001164457','ZNF705G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',102278441,102287136,'NM_016096','ZNF706'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr8',144838609,144849543,'NM_173831','ZNF707'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106583104,106730348,'NM_005502','ABCA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139021506,139042561,'NM_001606','ABCA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',132579088,132752883,'NM_007313','ABL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135120383,135140451,'NM_020469','ABO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',19398924,19442500,'NM_001010887','ACER2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',32374600,32440832,'NM_002197','ACO1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',110664423,110665856,'NM_006687','ACTL7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',110656689,110658096,'NM_006686','ACTL7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135276940,135314329,'NM_139027','ADAMTS13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',18464078,18674952,'NM_052866','ADAMTSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135387106,135430462,'NM_001145320','ADAMTSL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138687415,138701732,'NM_006412','AGPAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',87351273,87546764,'NM_015239','AGTPBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',132961683,132988360,'NM_031426','AIF1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129668579,129679843,'NM_000476','AK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',4699556,4731153,'NM_001199854','AK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134590785,134744019,'NM_152572','AK8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',111927601,111974612,'NM_001136562','AKAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',116136254,116196506,'NM_030767','AKNA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115188412,115203439,'NM_000031','ALAD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',74705397,74758053,'NM_000689','ALDH1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',38382660,38388662,'NM_000692','ALDH1B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',103222662,103237883,'NM_000035','ALDOB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',101018527,101024067,'NR_024532','ALG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115862228,115880573,'NM_001633','AMBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139189056,139202878,'NM_013366','ANAPC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',128889448,128924865,'NM_012098','ANGPTL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',38561360,38610360,'NM_147195','ANKRD18A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33514410,33563001,'NM_001244752','ANKRD18B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94611713,94640560,'NR_026868','ANKRD19P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',67516580,67559660,'NM_032250','ANKRD20A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',42358298,42401406,'NM_001012421','ANKRD20A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',42358298,42401859,'NM_001012419','ANKRD20A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',68671800,68714929,'NM_001098805','ANKRD20A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',100534111,100598615,'NM_173551','ANKS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99785309,99818045,'NM_006401','ANP32B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',74956600,74975127,'NM_000700','ANXA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33614222,33615532,'NR_003573','ANXA2P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',71232268,71477095,'NM_001163','APBA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',32962603,32991639,'NM_001195251','APTX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33431151,33437631,'NM_004925','AQP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33374947,33392517,'NM_001170','AQP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',66960034,66979312,'NR_002817','AQP7P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',42848147,42883133,'NR_026558','AQP7P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34611454,34618011,'NM_001017363','ARID3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126671304,126679517,'NM_030978','ARPC5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139619916,139629633,'NM_152285','ARRDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131436703,131444269,'NM_017873','ASB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94258309,94284665,'NM_001193335','ASPN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',132309914,132366482,'NM_000050','ASS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',118227324,118489315,'NM_198186','ASTN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',116389814,116400973,'NM_004888','ATP6V1G1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35396751,35441105,'NR_003582','ATP8B5P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',93015917,93164027,'NM_001698','AUH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33100638,33157356,'NM_001497','B4GALT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',103162519,103187108,'NM_001701','BAAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33242469,33254759,'NM_004323','BAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134447813,134455461,'NM_020064','BARHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',95753729,95757429,'NM_021570','BARX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99040528,99179398,'NR_036528','BDAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94513465,94566904,'NM_015250','BICD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',16399500,16860786,'NM_017637','BNC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135885266,135922962,'NM_007371','BRD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115151632,115173334,'NM_017688','BSPRY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',122754434,122852375,'NM_001735','C5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138959518,138961247,'NM_000606','C8G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35649340,35655278,'NM_032818','C9orf100'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',97677720,97770943,'NM_001010895','C9orf102'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',85427852,85448865,'NM_001190727','C9orf103'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131123115,131124703,'NM_001012715','C9orf106'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',27274653,27287137,'NM_001161585','C9orf11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130624165,130631906,'NM_016390','C9orf114'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137526846,137531582,'NM_001048265','C9orf116'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129509091,129516124,'NM_001012502','C9orf117'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',7786490,7789799,'NM_033428','C9orf123'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',103277428,103289296,'NM_032342','C9orf125'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35807013,35818744,'NM_001012446','C9orf128'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',95120301,95148517,'NM_001098808','C9orf129'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35032222,35035988,'NM_203299','C9orf131'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',71625550,71710968,'NM_001010940','C9orf135'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139041736,139051055,'NM_207511','C9orf139'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139076399,139084849,'NM_178448','C9orf140'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139006690,139008249,'NM_183241','C9orf142'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',13917969,13935606,'NR_038194','C9orf146'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',12765011,12813059,'NM_203403','C9orf150'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',112001666,112010234,'NM_001012993','C9orf152'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',88032045,88064339,'NM_001010907','C9orf153'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99706592,99724673,'NM_016481','C9orf156'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129962359,129966028,'NM_024112','C9orf16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138497767,138500340,'NM_152571','C9orf163'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139292100,139296914,'NM_017723','C9orf167'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',88953378,88964461,'NM_001001709','C9orf170'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134275431,134438496,'NM_207417','C9orf171'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138858687,138861618,'NM_001080482','C9orf172'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139265550,139267755,'NM_001004353','C9orf173'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99109730,99179398,'NM_020893','C9orf174'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98443353,98457420,'NM_153698','C9orf21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34600491,34602101,'NM_148179','C9orf23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34369016,34387849,'NM_032596','C9orf24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34388181,34448568,'NM_001184945','C9orf25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113404931,113415654,'NR_034087','C9orf29'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96528771,96889321,'NM_032823','C9orf3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',102229315,102253838,'NM_080655','C9orf30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',102244008,102379739,'NM_001198812','C9orf30-TMEFF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139629604,139633129,'NM_032937','C9orf37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',110939401,110969392,'NM_014334','C9orf4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',76751318,76757622,'NM_017998','C9orf40'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',76787692,76833130,'NM_152420','C9orf41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115212842,115231700,'NM_152786','C9orf43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',5347966,5427937,'NM_018465','C9orf46'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',90795597,90800877,'NM_001142413','C9orf47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',110817235,110922046,'NM_032012','C9orf5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131414324,131422876,'NM_199350','C9orf50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21957137,21957753,'NR_024274','C9orf53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',73856116,73865341,'NM_001128618','C9orf57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',85743046,85761483,'NM_032307','C9orf64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',203107,205893,'NM_152569','C9orf66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',4588315,4656674,'NM_001039395','C9orf68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138146247,138150552,'NM_152833','C9orf69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135314907,135325730,'NM_001242370','C9orf7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',70341317,70345603,'NM_153237','C9orf71'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',27550498,27563842,'NM_145005','C9orf72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131629384,131637393,'NM_016520','C9orf78'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',89687591,89693634,'NM_178828','C9orf79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',114488611,114520208,'NM_021218','C9orf80'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',26830682,26882826,'NM_001167575','C9orf82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113488721,113561634,'NM_001080551','C9orf84'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',73716242,73778191,'NM_182505','C9orf85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138822194,138855460,'NM_024718','C9orf86'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94898270,94915386,'NM_032310','C9orf89'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134744110,134755239,'NM_018956','C9orf9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',116413526,116448524,'NM_153045','C9orf91'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',15543096,15961897,'NM_173550','C9orf93'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',76865935,76892953,'NM_001127603','C9orf95'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135233104,135261041,'NM_153710','C9orf96'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35663914,35671154,'NM_001216','CA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139892061,140138897,'NM_000718','CACNA1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137840153,137938826,'NM_015447','CAMSAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138378228,138387954,'NM_052813','CARD9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',111037,169075,'NM_018491','CBWD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',69671819,69729997,'NM_201453','CBWD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',69671823,69729991,'NM_001024916','CBWD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',68494357,68552413,'NM_001085457','CBWD6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130635212,130684175,'NM_004059','CCBL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35648286,35651500,'NM_174923','CCDC107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',36159388,36161331,'NM_005893','CCIN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34679566,34681274,'NM_006274','CCL19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34699001,34700147,'NM_002989','CCL21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34651892,34652689,'NM_006664','CCL27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',5440502,5460567,'NM_014143','CD274'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35599975,35608424,'NM_001782','CD72'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98302215,98369024,'NM_001077181','CDC14B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115069111,115077690,'NM_139286','CDC26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',4669565,4696594,'NM_017913','CDC37L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',89771178,89779515,'NM_178432','CDK20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',122190967,122382258,'NM_018249','CDK5RAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129588125,129592873,'NM_001261','CDK9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21957750,21965132,'NM_000077','CDKN2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21992901,21999312,'NM_078487','CDKN2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21984789,22111093,'NR_003529','CDKN2B-AS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134927185,134937069,'NM_001807','CEL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134947746,134952299,'NR_001275','CELP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94127561,94417258,'NM_001012267','CENPP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',80040810,80071803,'NM_032171','CEP78'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',14709731,14712715,'NM_005454','CER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130222579,130239451,'NM_016174','CERCAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33254876,33272067,'NM_016410','CHMP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129968164,130006483,'NM_001131015','CIZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',91115932,91121438,'NM_001827','CKS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139008880,139010845,'NM_004669','CLIC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',36180852,36202059,'NM_001184762','CLTA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34541429,34579735,'NM_001842','CNTFR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',17125037,17493917,'NM_017738','CNTLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',39062763,39278300,'NM_033655','CNTNAP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',43624880,43862469,'NM_001201380','CNTNAP3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',122890394,122979707,'NM_007018','CNTRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139269579,139287821,'NM_015456','COBRA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',100745958,100872889,'NM_001855','COL15A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115958051,116112796,'NM_032888','COL27A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136673472,136876509,'NM_000093','COL5A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130124611,130136172,'NM_016035','COQ4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99923077,99994777,'NM_052820','CORO2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130896893,130912891,'NM_000755','CRAT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',125158268,125180853,'NM_173689','CRB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35722316,35727005,'NM_006368','CREB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',110744671,110815585,'NM_003798','CTNNAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',89530793,89536204,'NM_145918','CTSL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',89649479,89652159,'NR_033405','CTSL1P8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98831779,98841746,'NM_001201575','CTSL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',89577649,89591619,'NR_027917','CTSL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',104797413,104820591,'NM_001340','CYLC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',123369219,123587630,'NM_032552','DAB2IP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',89302575,89513369,'NM_004938','DAPK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',120968728,121171560,'NM_014618','DBC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135491305,135514287,'NM_000787','DBH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37790789,37857665,'NM_024345','DCAF10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34076380,34116771,'NM_015397','DCAF12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34603547,34610496,'NM_024348','DCTN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134503070,134535609,'NM_138620','DDX31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',32445299,32516322,'NM_014314','DDX58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',116943917,117204744,'NM_017418','DEC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',125181753,125732238,'NM_020946','DENND1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',19280748,19364139,'NM_017925','DENND4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',116204180,116307557,'NM_015404','DFNB31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',92411933,92444928,'NM_017594','DIRAS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138336818,138341600,'NR_026964','DKFZP434A062'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',831689,959090,'NM_021951','DMRT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',1040345,1047554,'NM_006557','DMRT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',966963,981732,'NM_021240','DMRT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',22436839,22442472,'NM_022160','DMRTA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34448810,34510982,'NM_012144','DNAI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33015208,33029062,'NM_001539','DNAJA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34979637,34988430,'NM_012266','DNAJB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113433452,113456452,'NR_037148','DNAJC25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113433452,113472347,'NM_004125','DNAJC25-GNG10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138376172,138378062,'NM_001080849','DNLZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130005483,130057348,'NM_001005336','DNM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',263047,455259,'NM_001190458','DOCK8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130747629,130749833,'NM_014908','DOLK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130883203,130892538,'NM_001135917','DOLPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129737194,129740584,'NM_003863','DPM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139124812,139129016,'NM_013379','DPP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94297414,94338195,'NM_001197295','ECM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138876391,138880559,'NM_003792','EDF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138677199,138686951,'NM_016215','EGFL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139633264,139850399,'NM_024757','EHMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',23680102,23811478,'NM_001171197','ELAVL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130620599,130624776,'NM_004435','ENDOG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129617111,129656868,'NM_000118','ENG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34511039,34513037,'NM_198573','ENHO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139062373,139068326,'NM_203468','ENTPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139448636,139455722,'NM_198585','ENTPD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',110974074,111122842,'NM_019114','EPB41L4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',5774571,5823081,'NM_024896','ERMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',101781283,101901151,'NM_015051','ERP44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139321168,139437535,'NM_017820','EXD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',132558978,132570273,'NM_014285','EXOSC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37770307,37775065,'NM_016042','EXOSC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129742681,129752814,'NM_203305','FAM102A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',73667187,73715968,'NM_016014','FAM108B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',95253993,95368218,'NM_014612','FAM120A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',95248602,95255695,'NM_198841','FAM120AOS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',70584783,70588429,'NM_138333','FAM122A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',128128943,128199733,'NM_001011703','FAM125B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129307438,129381089,'NM_001035534','FAM129B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',24393,25864,'NR_026822','FAM138C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',18917890,19023256,'NM_153707','FAM154A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',140226457,140253993,'NM_001145249','FAM157B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135433357,135435189,'NM_001080515','FAM163B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139257857,139262043,'NM_001001710','FAM166A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35551826,35553896,'NM_001099951','FAM166B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',71129307,71197190,'NM_001127608','FAM189A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',38611084,38613277,'NR_027294','FAM201A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34713049,34719535,'NM_001141917','FAM205A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34820263,34828583,'NR_024481','FAM205B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',110736493,110743058,'NM_017832','FAM206A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96120298,96130747,'NM_017561','FAM22F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98731106,98741521,'NM_001170741','FAM22G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',45617024,45618279,'NR_024060','FAM27A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',67382748,67384009,'NR_027422','FAM27B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',44930231,44931488,'NR_027421','FAM27C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138726844,138738991,'NM_152421','FAM69B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130839073,130874172,'NM_032809','FAM73B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',39890199,39897240,'NR_026803','FAM74A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',65227092,65234206,'NR_027461','FAM74A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',40705523,40712679,'NR_026801','FAM74A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',65227092,65234206,'NR_026802','FAM74A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',39345698,39351956,'NM_001085452','FAM75A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',39345698,39351959,'NM_001040065','FAM75A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',40690290,40696537,'NM_001083124','FAM75A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',41311106,41317397,'NM_001242613','FAM75A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',41311106,41317364,'NM_001113541','FAM75A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',43564497,43570726,'NM_001145196','FAM75A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',41311109,41317364,'NM_015667','FAM75A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',89722696,89728392,'NM_001145124','FAM75C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',89934039,89939720,'NM_001166137','FAM75C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',83793506,83799991,'NM_001001670','FAM75D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',83748234,83754829,'NM_207416','FAM75D3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',83733162,83739733,'NM_001145197','FAM75D4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',83718171,83724662,'NR_026851','FAM75D5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',133123285,133141727,'NM_033387','FAM78A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',42458584,42464234,'NR_026759','FAM95B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96901156,97119812,'NM_000136','FANCC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35063834,35070013,'NM_004629','FANCG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96405237,96442352,'NM_001127628','FBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96360823,96395896,'NM_003837','FBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37500888,37566250,'NM_012166','FBXO10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',122559074,122595561,'NM_012164','FBXW2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138954707,138958994,'NM_018998','FBXW5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136941251,136949627,'NM_002003','FCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136912478,136919187,'NM_004108','FCN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94749421,94838339,'NM_001083536','FGD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',132767645,132804276,'NM_001145106','FIBCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',114967620,115023462,'NM_015258','FKBP15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',107360231,107443220,'NM_001198963','FKTN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',2525654,2612373,'NR_015375','FLJ35024'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',22636198,22814212,'NR_038977','FLJ35282'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139777294,139779045,'NR_024341','FLJ40292'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',13396378,13421328,'NR_033863','FLJ41200'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131689286,131845294,'NM_015033','FNBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',78824390,78825689,'NM_001013735','FOXB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106233,108417,'NM_207305','FOXD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',69666442,69669551,'NM_001099279','FOXD4L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',70107602,70109820,'NM_199135','FOXD4L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',42707229,42710338,'NM_199244','FOXD4L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',69465526,69468635,'NM_001126334','FOXD4L5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',68489299,68492024,'NM_001085476','FOXD4L6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99655357,99658818,'NM_004473','FOXE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35850270,35855515,'NR_024006','FP588'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129604974,129616377,'NM_004957','FPGS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',14724663,14769531,'NM_001177704','FREM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',85052126,85343168,'NM_174938','FRMD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37641051,37736901,'NM_014907','FRMPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',107250135,107348904,'NM_001145313','FSD1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',132444780,132503560,'NM_003934','FUBP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139044446,139047113,'NM_004479','FUT7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',70840298,70883813,'NM_181425','FXN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',100090184,100511300,'NM_005458','GABBR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',91409746,91411289,'NM_006705','GADD45G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',100609801,100652184,'NM_024642','GALNT12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34636634,34640573,'NM_000155','GALT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',127063931,127167111,'NM_015635','GAPVD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129066576,129195649,'NM_032293','GARNL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',88749096,88751924,'NM_002048','GAS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35726862,35739225,'NM_020944','GBA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135018160,135029122,'NM_021996','GBGT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',78246401,78312152,'NM_001097634','GCNT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',73954088,74056960,'NM_001242505','GDA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134843918,134856905,'NM_001135031','GFI1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',123257139,123302127,'NR_003191','GGTA1P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',85544155,85622572,'NM_001135953','GKAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',6522463,6635692,'NM_000170','GLDC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130306791,130341977,'NM_001499','GLE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',36126741,36153903,'NM_022343','GLIPR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',3814127,4142183,'NM_152629','GLIS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',3888645,3891248,'NR_026663','GLIS3-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137655322,137671207,'NM_182974','GLT6D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',79227814,79453052,'NM_004297','GNA14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',79525010,79836039,'NM_002072','GNAQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',36204438,36267053,'NM_001190388','GNE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113463671,113472347,'NM_001198664','GNG10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126680393,126743207,'NM_002077','GOLGA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130057928,130078089,'NM_004486','GOLGA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',87830877,87904936,'NM_177937','GOLM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131855805,131942269,'NM_020960','GPR107'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126253243,126279200,'NM_001161808','GPR144'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124836666,124837716,'NM_005294','GPR21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138341752,138356109,'NM_015597','GPSM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37412706,37426986,'NM_012203','GRHPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139153429,139183035,'NM_001185090','GRIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',103371454,103540683,'NM_133445','GRIN3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',123070200,123134941,'NM_001127664','GSN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134535548,134555291,'NM_012204','GTF3C4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134895882,134923711,'NM_001122823','GTF3C5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98252234,98293439,'NM_014282','HABP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',19043140,19092902,'NM_017645','HAUS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115175518,115178162,'NM_031219','HDHD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99728893,99740347,'NM_197978','HEMGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96176653,96263023,'NM_032558','HIATL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98748147,98815683,'NR_002894','HIATL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35802956,35805042,'NM_032593','HINT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',85772817,85785389,'NM_031262','HNRNPK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35896188,35897138,'NM_001039792','HRCT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98037409,98104255,'NM_000197','HSD17B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',114182009,114274506,'NM_032303','HSDL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',127036947,127043487,'NM_005347','HSPA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94012445,94095859,'NM_002161','IARS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130977651,130980361,'NM_203434','IER5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21430452,21431315,'NM_024013','IFNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21196179,21197142,'NM_002171','IFNA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21357370,21358075,'NM_006900','IFNA13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21229200,21229978,'NM_002172','IFNA14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21206371,21207310,'NM_002173','IFNA16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21217241,21218221,'NM_021268','IFNA17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21374253,21375396,'NM_000605','IFNA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21155635,21156659,'NM_002175','IFNA21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21267686,21268562,'NR_036676','IFNA22P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21176617,21177598,'NM_021068','IFNA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21294612,21295312,'NM_002169','IFNA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21340316,21340886,'NM_021002','IFNA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21191467,21192204,'NM_021057','IFNA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21399145,21400184,'NM_002170','IFNA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21067103,21067943,'NM_002176','IFNB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21470838,21472312,'NM_176891','IFNE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',27514311,27516496,'NM_020124','IFNK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21130630,21132144,'NM_002177','IFNW1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',26937309,27052931,'NM_001099222','IFT74'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',38398990,38414444,'NM_001007563','IGFBPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',110669620,110736429,'NM_003640','IKBKAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34643931,34651884,'NM_004512','IL11RA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',6205785,6247983,'NM_033439','IL33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138442887,138454077,'NM_019892','INPP5E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',5221418,5223967,'NM_002195','INSL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',5153862,5175618,'NM_007179','INSL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',101901331,102103247,'NM_183245','INVS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94415286,94472368,'NM_022755','IPPK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',88069282,88087310,'NM_030940','ISCA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',4975244,5118183,'NM_004972','JAK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',696895,736103,'NM_153186','KANK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137733851,137824814,'NM_020822','KCNT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',2707525,2720037,'NM_133497','KCNV2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',6747640,7165648,'NM_015061','KDM4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',46623420,46684217,'NR_003674','KGFLP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',41948801,42009584,'NR_003670','KGFLP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',2794154,2834130,'NM_014878','KIAA0020'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113162793,113286846,'NM_001080398','KIAA0368'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137511468,137520560,'NM_014811','KIAA0649'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34948191,34972541,'NM_015297','KIAA1045'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34358906,34366894,'NM_020702','KIAA1161'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',5619118,5759454,'NM_001135920','KIAA1432'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35094117,35105893,'NM_025182','KIAA1539'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',20648308,20985954,'NM_017794','KIAA1797'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',114289068,114462527,'NM_133465','KIAA1958'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138810610,138822014,'NM_001039374','KIAA1984'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',5909007,5998003,'NM_001017969','KIAA2026'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115893738,115901158,'NM_138424','KIF12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34242377,34319198,'NM_194313','KIF24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',85641434,85726162,'NM_017576','KIF27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',109286953,109291868,'NM_004235','KLF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',72189332,72219393,'NM_001206','KLF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21321017,21325429,'NM_018847','KLHL9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',132874324,132958267,'NM_006059','LAMC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137553106,137558199,'NM_002297','LCN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138752439,138757232,'NM_001001712','LCN10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138966588,138969770,'NM_178536','LCN12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138773906,138778786,'NM_203347','LCN15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129951552,129955555,'NM_005564','LCN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138758290,138762801,'NM_198946','LCN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138768660,138772552,'NM_178469','LCN8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137694988,137697576,'NM_001001676','LCN9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138997265,139000031,'NM_207510','LCNL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',125813709,125835263,'NM_004789','LHX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138227916,138234825,'NM_014564','LHX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124004676,124030912,'NM_199160','LHX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',27235681,27272791,'NR_026679','LINC00032'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',97821834,97823858,'NR_024129','LINC00092'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135880381,135886540,'NR_015427','LINC00094'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',114914996,114921947,'NR_024366','LINC00256A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',114906823,114913778,'NR_024376','LINC00256B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',117690364,117727198,'NR_024032','LINC00474'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',93943569,93961711,'NR_027341','LINC00475'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',97672386,97678080,'NR_023389','LINC00476'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',27938527,28709303,'NM_152570','LINGO2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',128416542,128503132,'NM_002316','LMX1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',93934936,93940732,'NR_015444','LOC100128076'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94420152,94422636,'NR_036505','LOC100128361'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',118306382,118364393,'NR_033973','LOC100128505'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138760433,138764184,'NR_033913','LOC100128593'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126155572,126161284,'NR_027406','LOC100129034'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',32541141,32543015,'NR_033991','LOC100129250'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',92865396,92877235,'NR_033912','LOC100129316'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139264491,139267770,'NR_038389','LOC100129722'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137606591,137618779,'NR_034016','LOC100130954'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138818199,138823121,'NR_024580','LOC100131193'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96134578,96163051,'NR_033937','LOC100132077'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',68116360,68138192,'NR_034006','LOC100132352'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98671002,98674331,'NR_038890','LOC100132781'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',66757219,66770802,'NR_024443','LOC100133920'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',132442557,132444702,'NR_027440','LOC100272217'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',78981491,78982653,'NR_026668','LOC100286938'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',122595595,122600830,'NR_027442','LOC100288842'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129913270,129920834,'NR_033374','LOC100289019'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139099218,139101090,'NR_027447','LOC100289341'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99040528,99099417,'NR_036526','LOC100499484'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',116468534,116484190,'NM_001199233','LOC100505478'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131290759,131315786,'NR_038955','LOC100506190'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',26056672,26108406,'NM_001004352','LOC100506422'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137494385,137503916,'NR_038969','LOC100506599'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37069892,37080398,'NR_036592','LOC100506710'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',71957869,71980624,'NR_040076','LOC100507244'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',72020794,72063610,'NR_039990','LOC100507299'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',97265711,97272122,'NR_038982','LOC100507346'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35899479,35901617,'NR_024283','LOC158376'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',97867941,97904015,'NR_033838','LOC158435'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',122645140,122656472,'NR_024408','LOC253039'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',90451913,90456895,'NM_001100111','LOC286238'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99192939,99198794,'NR_026847','LOC286359'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106576453,106579866,'NR_024011','LOC286367'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',91822755,91843601,'NR_038882','LOC286370'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98877773,98884048,'NR_002942','LOC340508'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',92264533,92384848,'NR_034157','LOC340515'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',14983324,15009722,'NR_003920','LOC389705'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',87610736,87647614,'NR_029410','LOC389765'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129930628,129932734,'NR_024425','LOC389791'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',89662777,89663791,'NR_040117','LOC392364'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34558009,34573070,'NR_024369','LOC415056'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',88813185,88846861,'NR_027471','LOC440173'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',68464033,68470861,'NR_015361','LOC440896'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98711177,98712558,'NR_028350','LOC441454'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98527923,98529570,'NR_026792','LOC441455'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',101688420,101708704,'NR_038853','LOC441461'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',66234088,66242850,'NR_024496','LOC442421'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',88888620,88889960,'NR_036691','LOC494127'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',71624140,71625475,'NR_038833','LOC494558'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',70159928,70162577,'NR_015423','LOC572558'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',67917602,67944195,'NR_033907','LOC642236'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',43130532,43135480,'NR_027472','LOC642929'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',39433813,39454526,'NR_003528','LOC653501'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',112675874,112840186,'NM_057159','LPAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',102830851,103127238,'NM_207299','LPPR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',26983134,26995691,'NM_022901','LRRC19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139183032,139184312,'NM_001013653','LRRC26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130684211,130720138,'NM_019594','LRRC8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129253585,129305601,'NM_001190723','LRSAM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',71848316,72031708,'NM_153267','MAMDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138866639,138875072,'NM_206920','MAMDC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139101237,139123460,'NM_016219','MAN1B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',127239493,127509334,'NM_024117','MAPKAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37867571,37894350,'NR_024873','MCART1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135197575,135204793,'NM_181491','MED22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',133725319,133945074,'NM_004269','MED27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',122403016,122516586,'NM_001080497','MEGF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',36562904,36667679,'NM_014791','MELK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131428255,131437700,'NM_014064','METTL11A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',41942398,41945076,'NR_015363','MGC21881'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',4840296,4840375,'NR_029836','MIR101-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138684874,138684959,'NR_029695','MIR126'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',122047077,122047149,'NR_029604','MIR147'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126494541,126494651,'NR_029611','MIR181A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126460535,126500728,'NR_038975','MIR181A2HG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126495809,126495898,'NR_029782','MIR181B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130046820,130046930,'NR_029619','MIR199B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',72614710,72614820,'NR_029621','MIR204'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130194717,130194814,'NR_029837','MIR219-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96612064,96612160,'NR_031755','MIR2278'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96887310,96887407,'NR_029664','MIR23B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96888123,96888191,'NR_029496','MIR24-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96887547,96887644,'NR_029665','MIR27B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129588017,129588107,'NR_036055','MIR2861'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130194720,130194808,'NR_039815','MIR2964A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96888116,96888197,'NR_036109','MIR3074'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21502113,21502184,'NR_029505','MIR31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113798652,114152366,'NR_036085','MIR3134'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',18563303,18563377,'NR_036107','MIR3152'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',91116959,91117041,'NR_036108','MIR3153'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130047046,130047130,'NR_036110','MIR3154'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',93168238,93168456,'NR_036121','MIR3163'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21444266,21549697,'NR_027054','MIR31HG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',110848329,110848399,'NR_029506','MIR32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139183458,139183543,'NR_037416','MIR3621'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94094560,94094650,'NR_037424','MIR3651'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136881633,136882311,'NR_037460','MIR3689A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136881791,136881939,'NR_037469','MIR3689B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136880964,136881036,'NR_039691','MIR3689C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136881275,136881349,'NR_039693','MIR3689D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136881943,136882023,'NR_039694','MIR3689D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136882236,136882308,'NR_039695','MIR3689E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136882408,136882474,'NR_039696','MIR3689F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',93438353,93438464,'NR_037472','MIR3910-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',93438369,93438448,'NR_037489','MIR3910-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129492786,129492895,'NR_037473','MIR3911'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129587932,129588023,'NR_039767','MIR3960'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',90550570,90550640,'NR_036252','MIR4289'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',91825542,91825637,'NR_036253','MIR4290'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',95621459,95621524,'NR_036254','MIR4291'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138845229,138845296,'NR_036251','MIR4292'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',20401145,20401236,'NR_039684','MIR4473'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',20492262,20492340,'NR_039685','MIR4474'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',36813535,36813596,'NR_039686','MIR4475'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',36883458,36883528,'NR_039687','MIR4476'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',123922181,123922267,'NR_039690','MIR4478'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138901005,138901076,'NR_039697','MIR4479'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',36854250,36854305,'NR_039766','MIR4540'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',116011534,116011630,'NR_030255','MIR455'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',5997825,5997904,'NR_039811','MIR4665'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35598083,35598162,'NR_039813','MIR4667'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113734200,113734270,'NR_039814','MIR4668'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136411077,136411139,'NR_039816','MIR4669'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94330086,94330161,'NR_039817','MIR4670'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129671514,129671595,'NR_039819','MIR4672'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138533840,138533899,'NR_039820','MIR4673'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138560445,138560532,'NR_039821','MIR4674'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',20706103,20706187,'NR_030166','MIR491'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',123415762,123798763,'NR_037516','MIR548AA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',123415762,123798763,'NR_030382','MIR548D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124913645,124913743,'NR_030331','MIR600'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124911593,124917577,'NR_026677','MIR600HG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',125204624,125204703,'NR_030332','MIR601'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139852691,139852789,'NR_030333','MIR602'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',85774482,85774592,'NR_029605','MIR7-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',28878876,28878953,'NR_030618','MIR873'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',28853623,28853704,'NR_030597','MIR876'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',95978059,95978139,'NR_029476','MIRLET7A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',95980936,95981023,'NR_029481','MIRLET7D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',95978449,95978536,'NR_029483','MIRLET7F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',5880908,5899822,'NM_005511','MLANA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',20334967,20612514,'NM_004529','MLLT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',27315206,27519850,'NM_024761','MOB3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',123962010,124002188,'NM_198469','MORN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',13095702,13240365,'NM_003829','MPDZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139566129,139566828,'NM_032477','MRPL41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',103192069,103200740,'NM_019051','MRPL50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137532303,137536340,'NM_016034','MRPS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124072963,124125563,'NM_199177','MRRF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35742987,35744274,'NM_001044264','MSMP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',21792634,21855969,'NM_002451','MTAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',102380156,102389994,'NM_001018116','MURC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',112470871,112603099,'NM_001166280','MUSK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',87745876,87827037,'NM_024635','NAA35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138038203,138126952,'NM_144653','NACC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129863332,129869420,'NM_197956','NAIF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99858779,99885186,'NM_018946','NANS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99435525,99475850,'NM_002486','NCBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',132002692,132039404,'NM_001128826','NCS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139219939,139233634,'NM_001144028','NDOR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',123946158,123961919,'NM_014222','NDUFA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',32543523,32563182,'NM_182739','NDUFB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126094519,126154540,'NM_001166169','NEK6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139461843,139473607,'NM_001178064','NELF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',14071841,14388982,'NM_001190738','NFIB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',93211147,93225965,'NM_005384','NFIL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33280417,33361155,'NM_002504','NFX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94923591,94936391,'NM_004148','NINJ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106549789,106562224,'NM_015469','NIPSNAP3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106566271,106576112,'NM_018376','NIPSNAP3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33451350,33463941,'NM_022917','NOL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94099460,94127697,'NM_017948','NOL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138508716,138560059,'NM_017617','NOTCH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139437667,139448679,'NM_006647','NOXA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139053729,139060497,'NM_015392','NPDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35782405,35799728,'NM_003995','NPR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',101623957,101636162,'NM_173199','NR4A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126283335,126309520,'NM_004959','NR5A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126324523,126573397,'NM_001489','NR6A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139313903,139316524,'NM_001004354','NRARP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',128209874,128212604,'NR_045006','NRON'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134027154,134108041,'NM_032536','NTNG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',86473285,86828325,'NM_006180','NTRK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34319503,34333711,'NM_001161','NUDT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130749797,130809195,'NM_015354','NUP188'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',132990801,133098912,'NM_005085','NUP214'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',90339835,90380524,'NM_145283','NXNL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137577805,137581636,'NM_014582','OBP2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135070486,135074449,'NM_014581','OBP2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130258105,130303392,'NM_001242353','ODF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94186069,94206758,'NM_033014','OGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137106909,137152851,'NM_014279','OLFM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126579257,126616980,'NM_182487','OLFML2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94216347,94226657,'NM_005014','OMD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106406772,106407729,'NM_001004481','OR13C2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106337871,106338915,'NM_001001961','OR13C3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106328354,106329311,'NM_001001919','OR13C4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106400558,106401515,'NM_001004482','OR13C5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106371269,106372232,'NM_001004483','OR13C8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106419349,106420306,'NM_001001956','OR13C9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106496523,106497564,'NM_001004484','OR13D1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',106306364,106307324,'NM_001004485','OR13F1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35859459,35860398,'NM_001004487','OR13J1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124430678,124431635,'NM_001004450','OR1B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124279057,124280026,'NM_001004451','OR1J1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124312901,124313843,'NM_054107','OR1J2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124321240,124322182,'NM_001004452','OR1J4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124602222,124603173,'NM_080859','OR1K1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124463815,124464748,'NM_001005236','OR1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124477229,124478204,'NM_001005234','OR1L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124526089,124527025,'NM_001005235','OR1L4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124551947,124552883,'NM_001004453','OR1L6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124369647,124370577,'NM_001004454','OR1L8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124328457,124329393,'NM_012363','OR1N1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124355269,124356262,'NM_001004457','OR1N2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124416837,124417782,'NM_012364','OR1Q1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113129583,113130534,'NM_205859','OR2K2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35947104,35948151,'NM_019897','OR2S2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124591032,124591995,'NM_001001923','OR5C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',116125123,116128580,'NM_000607','ORM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',116131889,116135357,'NM_000608','ORM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',76893217,76951934,'NM_012383','OSTF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137593424,137598443,'NM_002571','PAEP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',111442888,111753577,'NM_001037293','PALM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',111582397,111974612,'NM_007203','PALM2-AKAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',117955891,118204421,'NM_002581','PAPPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',36828530,37024476,'NM_016734','PAX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',127550298,127769476,'NM_001134778','PBX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',78569173,78592285,'NR_015342','PCA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',77695379,78167075,'NM_001190482','PCSK5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',5500544,5561282,'NM_025239','PDCD1LG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124620196,124630756,'NM_005388','PDCL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',70161634,70335797,'NM_021965','PGM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',68370063,68437674,'NR_002836','PGM5P2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',122657751,122679427,'NM_015651','PHF19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',95378729,95481690,'NM_005392','PHF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138863076,138865311,'NM_014172','PHPT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130722994,130744141,'NM_001100876','PHYHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35078684,35086546,'NM_032634','PIGO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',70510435,70813911,'NM_003558','PIP5K1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129723628,129729591,'NM_173492','PIP5KL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130504622,130523020,'NM_013355','PKN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',26893367,26937468,'NM_001031689','PLAA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',19105758,19117604,'NM_001122','PLIN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138424936,138438034,'NM_015160','PMPCA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139474225,139564807,'NM_152286','PNPLA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115209339,115212850,'NM_017443','POLE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37475944,37493693,'NM_022490','POLR1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',133368109,133389014,'NM_001136113','POMT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',4652297,4655258,'NM_203453','PPAPDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',133154901,133174470,'NM_032728','PPAPDC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130913413,130951046,'NM_178000','PPP2R4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',103393717,103397104,'NM_147180','PPP3R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126948672,126992039,'NM_001123369','PPP6C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',132529801,132548205,'NM_021619','PRDM12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',70817268,70818859,'NM_002732','PRKACG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115077734,115095006,'NM_001244926','PRPF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',133295297,133365396,'NM_013318','PRRC2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131467740,131524772,'NM_016307','PRRX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33740463,33789229,'NM_001197097','PRSS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',78416111,78710823,'NM_015225','PRUNE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',80101878,80134829,'NM_058179','PSAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',15454064,15501003,'NM_001128217','PSIP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126155564,126217542,'NM_002799','PSMB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',122618152,122645027,'NM_005047','PSMD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',71514257,71564696,'NM_001099666','PTAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',97245084,97309520,'NM_001083606','PTCH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33663501,33667418,'NR_023917','PTENP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138991776,138996015,'NM_000954','PTGDS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131540435,131555165,'NM_004878','PTGES'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129922792,129930533,'NR_027812','PTGES2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113365067,113401956,'NM_001146108','PTGR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124173049,124197802,'NM_000962','PTGS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',95832896,95911957,'NM_177995','PTPDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',20996364,21021635,'NM_001010915','PTPLAD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',111177794,111253485,'NM_001145370','PTPN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',8304245,10602723,'NM_002839','PTPRD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129516047,129517757,'NM_001002913','PTRH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',132758635,132759046,'NM_198180','QRFP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138238003,138277508,'NM_181701','QSOX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',122980235,123004186,'NM_016322','RAB14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',127002641,127036259,'NM_001174152','RABEPK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124743108,124906968,'NM_012197','RABGAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',109085337,109134296,'NM_002874','RAD23B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134962927,135014409,'NM_001042368','RALGDS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',128716873,129025266,'NM_014636','RALGPS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',6001018,6005640,'NM_012416','RANBP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',133441977,133602746,'NM_005312','RAPGEF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',84787136,84867863,'NM_152573','RASEF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124041654,124066964,'NR_027126','RBM18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124655844,124707383,'NM_018835','RC3H2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',4782833,4851064,'NM_005772','RCL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',36026909,36114452,'NM_021111','RECK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135261006,135272985,'NM_020385','REXO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',78190252,78199264,'NM_018339','RFK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',3214646,3515983,'NM_134428','RFX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37743801,37768969,'NM_144964','RG9MTD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35739276,35743264,'NM_001080496','RGP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115265829,115344192,'NM_017790','RGS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',5324968,5329873,'NM_006911','RLN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',5289867,5294580,'NM_134441','RLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',85785456,85808807,'NM_024945','RMI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35647747,35648015,'NR_003051','RMRP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115099193,115101141,'NM_145051','RNF183'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',103335953,103365447,'NM_019592','RNF20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139234519,139235596,'NM_031297','RNF208'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139241838,139243911,'NM_001190228','RNF224'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',36326398,36390296,'NM_022781','RNF38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136019382,136019507,'NR_023344','RNU6ATAC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',114019815,114135127,'NM_001244898','ROD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',93524698,93752265,'NM_004560','ROR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',76302071,76491937,'NM_006914','RORB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129249773,129253532,'NM_000976','RPL12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126659978,126664061,'NM_007209','RPL35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135204889,135208101,'NM_000972','RPL7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',19366253,19370235,'NM_001010','RPS6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',78203334,78204774,'NR_026890','RPSAP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',19039371,19041021,'NM_006570','RRAGA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35480006,35551895,'NM_014806','RUSC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',136358136,136472252,'NM_002957','RXRA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',90796181,90809745,'NM_005226','S1PR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135518504,135593300,'NM_001134707','SARDH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126744708,126945659,'NM_173690','SCAI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',19053653,19053784,'NR_003009','SCARNA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138416194,138424875,'NM_006643','SDCCAG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138454368,138497328,'NM_014866','SEC16A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',101024390,101032722,'NM_006808','SEC61B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',91123231,91164381,'NM_024077','SECISBP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',91181971,91284431,'NM_006378','SEMA4D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130485754,130498496,'NM_001122821','SET'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134126647,134220193,'NM_015046','SETX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129540416,129573442,'NM_005489','SH2D3C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',17568952,17787122,'NM_003026','SH3GL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130810133,130830400,'NM_020145','SH3GLB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37905894,38059210,'NM_003028','SHB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',90810505,90983502,'NM_016848','SHC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34624718,34627768,'NM_147157','SIGMAR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35639296,35640947,'NM_014450','SIT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',4480426,4577469,'NM_004170','SLC1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',19497449,19777017,'NM_001193288','SLC24A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129900637,129911345,'NM_052901','SLC25A25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130142659,130163570,'NM_005094','SLC27A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',86080584,86145514,'NR_037638','SLC28A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135326036,135334097,'NM_017585','SLC2A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129199285,129209986,'NM_014580','SLC2A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115023628,115066593,'NM_001859','SLC31A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',114953058,114966243,'NM_001860','SLC31A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139245029,139250827,'NM_001177316','SLC34A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98122808,98185813,'NM_007001','SLC35D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',107046749,107193503,'NM_080546','SLC44A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',114681020,114693014,'NM_033051','SLC46A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',2005341,2183623,'NM_003070','SMARCA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',105896361,105943521,'NM_006444','SMC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',72063697,72159609,'NM_015110','SMC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33031849,33066714,'NM_018225','SMU1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',15412781,15451627,'NM_001039697','SNAPC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138389849,138412710,'NM_003086','SNAPC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138738866,138742457,'NR_024543','SNHG7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138741019,138741152,'NR_002958','SNORA17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138740376,138740510,'NR_002975','SNORA43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129250601,129250737,'NR_002449','SNORA65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',118983165,118983301,'NR_003708','SNORA70C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94094563,94094696,'NR_003704','SNORA84'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33942761,33942852,'NR_003685','SNORD121A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33924285,33924378,'NR_003690','SNORD121B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135206071,135206146,'NR_002447','SNORD24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135207131,135207203,'NR_002448','SNORD36A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135206769,135206840,'NR_000017','SNORD36B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135207521,135207588,'NR_000016','SNORD36C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',133350872,133350958,'NR_002914','SNORD62A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',133350872,133350958,'NR_003050','SNORD62B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124682312,124682419,'NR_003071','SNORD90'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',114552954,114677088,'NM_001012994','SNX30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137725075,137731195,'NM_001101677','SOHLH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35797781,35802259,'NM_172312','SPAG8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',90193116,90283442,'NM_006717','SPIN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33230195,33238565,'NM_014471','SPINK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130354657,130435765,'NM_001195532','SPTAN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',93833247,93917511,'NM_006415','SPTLC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139202874,139204643,'NM_003731','SSNA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129709985,129719126,'NM_175039','ST6GALNAC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129687421,129701692,'NM_013443','ST6GALNAC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',123141173,123172366,'NM_004099','STOM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35089888,35093154,'NM_013442','STOML2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124923728,125070676,'NM_001171137','STRBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',101708735,101776639,'NM_017919','STX17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129414306,129494816,'NM_003165','STXBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33494534,33501164,'NR_003667','SUGT1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135208486,135213182,'NM_003172','SURF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135213241,135217861,'NM_017503','SURF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135218160,135232791,'NM_033161','SURF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135187372,135192868,'NM_006753','SURF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113842881,113977377,'NM_022486','SUSD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94860809,94887236,'NM_145006','SUSD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',112167349,112381981,'NM_153366','SVEP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130078245,130091089,'NM_001040011','SWI5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',92604027,92700663,'NM_001174168','SYK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',32619451,32625667,'NM_153809','TAF1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',107464558,107465206,'NM_005421','TAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130589330,130612532,'NM_018201','TBC1D13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',100001100,100057824,'NM_018421','TBC1D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99214122,99298226,'NM_014290','TDRD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',27099146,27220172,'NM_000459','TEK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35595280,35600038,'NM_006285','TESK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',102104177,102154674,'NM_001161584','TEX10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',100907232,100956294,'NM_004612','TGFBR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',71009897,71059944,'NM_001170416','TJP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',83388417,83493416,'NM_005077','TLE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',81376697,81531476,'NM_007005','TLE4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35687333,35722392,'NM_006289','TLN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',119506280,119519587,'NM_138554','TLR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',74326536,74641087,'NM_138691','TMC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',102275340,102379739,'NM_003692','TMEFF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138805597,138807590,'NM_032928','TMEM141'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',73488101,73573620,'NM_001135820','TMEM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139218355,139219911,'NM_053045','TMEM203'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',32773496,32779199,'NM_212558','TMEM215'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',107496645,107577265,'NM_018112','TMEM38B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35819228,35844844,'NM_001042589','TMEM8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135369528,135379889,'NM_001080483','TMEM8C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99303282,99403846,'NM_001166116','TMOD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',116821675,116920357,'NM_002160','TNC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',116586735,116594631,'NM_001204344','TNFSF15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',116704944,116732591,'NM_001244','TNFSF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37578411,37582636,'NM_001134485','TOMM5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',32530541,32542626,'NM_001195622','TOPORS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131615041,131626262,'NM_000113','TOR1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131605252,131613381,'NM_014506','TOR1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129533623,129537425,'NM_130459','TOR2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',6318348,6320918,'NM_033516','TPD52L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35671989,35680053,'NM_213674','TPM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139205889,139214984,'NM_001128228','TPRN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',122704491,122728994,'NM_005658','TRAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',138900785,138940888,'NM_021138','TRAF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99886457,99921301,'NM_014788','TRIM14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',118489401,118503400,'NM_012210','TRIM32'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',72339785,72926334,'NM_001007471','TRPM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',76527230,76692830,'NM_017662','TRPM6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130111216,130124518,'NM_015679','TRUB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134756555,134809841,'NM_000368','TSC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99402182,99435783,'NM_139246','TSTD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129518178,129533700,'NM_144965','TTC16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',15160841,15297358,'NM_001168339','TTC39B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',134240757,134272059,'NM_007344','TTF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',123624024,123895706,'NM_001139442','TTLL11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139255531,139257980,'NM_006088','TUBB2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',140164385,140191706,'NR_027156','TUBBP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',25666386,25668856,'NM_001004125','TUSC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',112045912,112058741,'NM_001244938','TXN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',112105687,112139946,'NM_001003936','TXNDC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',12683385,12700266,'NM_000550','TYRP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139091773,139098811,'NM_207309','UAP1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',137964635,137993047,'NM_016172','UBAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',34169002,34242521,'NM_001171204','UBAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33911690,34038947,'NM_018449','UBAP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',33807181,33910401,'NM_017811','UBE2R2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',85464697,85512988,'NM_053067','UBQLN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',133389003,133396483,'NM_031432','UCK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113699026,113735254,'NM_003358','UGCG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',6403150,6497051,'NM_152896','UHRF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35151988,35395332,'NM_006377','UNC13B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',91444517,91524494,'NR_024280','UNQ6494'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130173418,130192836,'NM_001135947','URM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',131637516,131683928,'NM_006676','USP20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135616836,135847267,'NM_001134398','VAV2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',35046064,35062739,'NM_007126','VCP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',2611792,2644485,'NM_003383','VLDLR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',78982180,79222219,'NM_033305','VPS13A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',4510,19739,'NM_182905','WASH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115117751,115142441,'NM_145241','WDR31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130435760,130458950,'NM_052844','WDR34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',126655575,126659981,'NM_001045476','WDR38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',135994734,136014915,'NM_052821','WDR5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139569181,139593208,'NM_138778','WDR85'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94987032,95122675,'NM_006648','WNK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',99477011,99499512,'NR_027302','XPA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124720198,124733600,'NM_020924','ZBTB26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',128662764,128687977,'NM_001099270','ZBTB34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',128607105,128640308,'NM_001135776','ZBTB43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37428099,37455407,'NM_014872','ZBTB5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',124710155,124715430,'NM_006626','ZBTB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',88092467,88159222,'NM_001185059','ZCCHC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',37110468,37348145,'NM_032226','ZCCHC7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130522969,130526229,'NM_032799','ZDHHC12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',14601068,14683480,'NM_178566','ZDHHC21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',130531887,130574019,'NM_006336','ZER1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',74156160,74169983,'NM_001102420','ZFAND5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',114843994,114858817,'NM_003408','ZFP37'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',139596351,139604758,'NM_138462','ZMYND19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',96061398,96105112,'NM_194320','ZNF169'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',103200983,103212763,'NM_003452','ZNF189'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98188045,98220490,'NM_153695','ZNF367'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',108665198,108813617,'NM_021224','ZNF462'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',113327267,113346533,'NM_133464','ZNF483'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',94648171,94680111,'NM_031486','ZNF484'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98557967,98580149,'NM_014930','ZNF510'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',115678382,115858696,'NM_133374','ZNF618'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',40761401,40782112,'NM_033160','ZNF658'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',39433817,39437188,'NR_027861','ZNF658B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',98619093,98656210,'NM_001001662','ZNF782'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',129226473,129247472,'NM_007135','ZNF79'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9',114799220,114814293,'NM_001101338','ZNF883'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chr9_',1130466,1131586,'NM_199001','C9orf169'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',74189829,74292857,'NM_004299','ABCB7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152643516,152663410,'NM_000033','ABCD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15489076,15530113,'NM_021804','ACE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',23631697,23671328,'NM_001037171','ACOT9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70714598,70750158,'NM_052957','ACRC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',108771219,108863277,'NM_004458','ACSL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',127012621,127014063,'NM_138289','ACTRT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',147389830,147889899,'NM_001169124','AFF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',115215985,115220253,'NM_000686','AGTR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',129091018,129127542,'NM_001130847','AIFM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118913963,118938707,'NM_178813','AKAP14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',1670485,1681411,'NM_005088','AKAP17A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49842159,49851744,'NM_139289','AKAP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55052212,55074222,'NM_000032','ALAS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',110811001,110820279,'NR_033125','ALG13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',11221453,11228802,'NM_001142','AMELX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',109324069,109570117,'NM_001171689','AMMECR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',111904760,111953010,'NM_001113490','AMOT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118776603,118778193,'NM_001105576','ANKRD58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15753849,15783021,'NM_003916','AP1S2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55043504,55050937,'NM_014481','APEX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',128606916,128616614,'NM_017413','APLN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',23761385,23835978,'NM_024122','APOO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',84145553,84234979,'NM_198450','APOOL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',66680598,66867186,'NM_000044','AR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47305459,47316264,'NM_001654','ARAF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',130019896,130051538,'NM_144967','ARHGAP36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152826023,152844908,'NM_001164741','ARHGAP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',11065583,11593742,'NM_013427','ARHGAP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135575376,135691169,'NM_004840','ARHGEF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',62771572,62891756,'NM_015185','ARHGEF9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100111352,100132476,'NM_001162490','ARL13A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100692169,100696331,'NM_016608','ARMCX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100796925,100801519,'NM_177949','ARMCX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100765006,100769487,'NM_177948','ARMCX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100559921,100675102,'NR_028407','ARMCX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101740751,101745741,'NM_001168480','ARMCX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101740931,101859317,'NM_001199818','ARMCX5-GPRASP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100756763,100759647,'NM_019007','ARMCX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69404909,69418415,'NM_004312','ARR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',2832010,2857416,'NM_001669','ARSD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',2862672,2892494,'NM_000047','ARSE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',2994839,3040770,'NM_004042','ARSF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',2934653,2961426,'NM_001011719','ARSH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',24931731,24943986,'NM_139058','ARX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15209751,15243667,'NM_080873','ASB11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',63360796,63367236,'NM_130388','ASB12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15172029,15198510,'NM_001168531','ASB9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',1693940,1721974,'NM_001171038','ASMT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',107221554,107284557,'NM_052936','ATG4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',138636170,138742113,'NM_173694','ATP11C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119379967,119401132,'NM_012069','ATP1B4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152454773,152501581,'NM_021949','ATP2B3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153310171,153318056,'NM_001183','ATP6AP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',40325159,40350832,'NM_005765','ATP6AP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',77052849,77192548,'NM_000052','ATP7A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',76647011,76928375,'NM_000489','ATRX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',13246688,13248439,'NM_001135995','ATXN3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152821178,152825814,'NR_027419','AVPR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69371229,69377236,'NM_001013579','AWAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69177116,69186513,'NM_001002254','AWAT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152619140,152643032,'NM_005745','BCAP31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',39795442,39921526,'NM_001123384','BCOR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',128966844,129019739,'NM_021946','BCORL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',18098977,18148945,'NM_001184767','BEND2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102204236,102205824,'NM_018476','BEX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102450929,102452630,'NM_032621','BEX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102356675,102358784,'NM_001080425','BEX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101295334,101297642,'NM_001012978','BEX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152413540,152428198,'NM_001711','BGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101862297,101894025,'NM_001142525','BHLHB9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',50670474,50676381,'NM_005448','BMP15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15428820,15484573,'NM_203281','BMX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153952888,154004543,'NM_024332','BRCC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135397790,135402264,'NM_001727','BRS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',79811642,79951889,'NM_153252','BRWD3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100491090,100527868,'NM_000061','BTK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119643556,119648033,'NM_152692','C1GALT1C1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15666332,15715669,'NM_007220','CA5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15602959,15631395,'NR_026551','CA5BP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48948466,48976777,'NM_005183','CACNA1F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',110374982,110400430,'NM_014289','CAPN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',41259132,41667231,'NM_001126055','CASK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48803459,48814454,'NM_001163322','CCDC120'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133198742,133207474,'NM_001101357','CCDC160'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48978870,48993931,'NM_014008','CCDC22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',50044279,50111651,'NM_033031','CCNB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135558001,135570215,'NM_000074','CD40LG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',2619227,2669350,'NM_002414','CD99'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',149685466,149817947,'NM_134446','CD99L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',2537305,2585270,'NR_033380','CD99P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46967360,46974338,'NM_001170460','CDK16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',18370264,18581670,'NM_001037343','CDKL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',139693090,139694389,'NM_004065','CDR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',72583814,72591146,'NM_005193','CDX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100241453,100304634,'NM_006733','CENPI'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',51440884,51442187,'NR_033772','CENPVL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151746526,151749957,'NM_004344','CETN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47368555,47374648,'NM_002621','CFP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',72699708,72823662,'NM_001039840','CHIC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',85002840,85189222,'NM_000390','CHM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',109803739,109925942,'NM_001143983','CHRDL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46318135,46342782,'NM_019886','CHST7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71438212,71442489,'NM_001144887','CITED1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',10084984,10165699,'NM_001830','CLCN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49573964,49750632,'NM_001127898','CLCN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',106050261,106060747,'NM_020384','CLDN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',154158693,154217180,'NM_001289','CLIC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',150653873,150664692,'NM_005140','CNGA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',21302456,21570901,'NM_001168648','CNKSR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',107569809,107827431,'NM_033380','COL4A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',107285492,107568314,'NM_033641','COL4A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',77041616,77047537,'NM_001866','COX7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',87888881,87896441,'NM_001184771','CPXCR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151653883,151660174,'NM_153478','CSAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151678389,151679394,'NM_004909','CSAG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151627398,151628403,'NM_001129828','CSAG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',99962003,99982579,'NM_001325','CSTF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134674850,134684654,'NM_001017417','CT45A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134693879,134701934,'NM_152582','CT45A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134711153,134719185,'NM_001017435','CT45A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134693879,134719185,'NM_001017436','CT45A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134773316,134781660,'NM_001172288','CT45A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134790880,134798910,'NM_001017438','CT45A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119934281,119937599,'NM_001080146','CT47A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119895375,119898693,'NM_001080137','CT47A10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119909957,119913275,'NM_173571','CT47A11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119914817,119947319,'NM_001080145','CT47A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119929421,119932739,'NM_001080144','CT47A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119895375,119898693,'NM_001080143','CT47A4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119909957,119913275,'NM_001080142','CT47A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119905095,119908414,'NM_001080141','CT47A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119914817,119918135,'NM_001080140','CT47A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119905095,119908414,'NM_001080139','CT47A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119895375,119898693,'NM_001080138','CT47A9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119890479,119893807,'NM_001145718','CT47B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153466611,153468269,'NM_139250','CTAG1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153466611,153468269,'NM_001327','CTAG1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153533439,153535047,'NM_172377','CTAG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',16516042,16640980,'NM_019857','CTPS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119542473,119593712,'NM_003588','CUL4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70752490,70755092,'NM_001504','CXCR3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',144716619,144719062,'NM_004709','CXorf1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',30486861,30505954,'NM_025159','CXorf21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',35847771,35918190,'NM_152632','CXorf22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',19840900,19898303,'NM_198279','CXorf23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',75309172,75314436,'NM_016500','CXorf26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',37735013,37735514,'NM_012274','CXorf27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',3199860,3212694,'NR_038428','CXorf28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',36163971,36313355,'NM_001098843','CXorf30'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',44892561,44945090,'NM_176819','CXorf36'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',40371116,40391763,'NM_144970','CXorf38'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',148430424,148437218,'NM_178124','CXorf40A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',148851072,148857374,'NM_001013845','CXorf40B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',106336517,106374129,'NM_001169154','CXorf41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134118126,134133417,'NM_017863','CXorf48'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70850948,70854860,'NM_001145140','CXorf49'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70850948,70854860,'NM_001145139','CXorf49B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',145698993,145699621,'NM_001144064','CXorf51A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',145703313,145703941,'NM_001244892','CXorf51B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118556139,118583425,'NM_022101','CXorf56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',105741815,105809329,'NM_018015','CXorf57'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',23836043,23867545,'NM_152761','CXorf58'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',35974973,36073108,'NM_173695','CXorf59'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',115506879,115508165,'NM_001017978','CXorf61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',125781427,125783449,'NM_001122716','CXorf64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70240463,70243363,'NR_033212','CXorf65'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',138865549,138875343,'NM_001013403','CXorf66'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153704816,153716131,'NM_001162936','CXorf68'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133952633,133954169,'NM_001163438','CXorf69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47451533,47480971,'NR_033924','CXXC1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',37524213,37557658,'NM_000397','CYBB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',83002825,83028282,'NM_021118','CYLC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',77414785,77469743,'NM_006639','CYSLTR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',85404626,85974261,'NM_001139515','DACH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',125511046,125514523,'NM_178470','DCAF12L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',125125162,125127761,'NM_001013628','DCAF12L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',27906030,27909487,'NM_001017930','DCAF8L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',27674846,27676859,'NM_001136533','DCAF8L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',110423662,110542116,'NM_178153','DCX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134482220,134544126,'NM_182540','DDX26B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',41077594,41094468,'NM_001356','DDX3X'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',22927998,22930127,'NM_182699','DDX53'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69314060,69342278,'NM_198512','DGAT2L6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',50128618,50230461,'NM_001013742','DGKK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',2147552,2429015,'NM_145177','DHRSX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',95826317,96611493,'NM_007309','DIAPH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153644224,153659158,'NM_001363','DKC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',110641545,110652283,'NR_033974','DKFZp686D0853'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69588879,69642064,'NM_020730','DLG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',31047265,32083507,'NM_004021','DMD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71981600,71985361,'NM_033053','DMRTC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71981600,71985361,'NM_001080851','DMRTC1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153282772,153293621,'NM_001009934','DNASE1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',117513899,117704151,'NM_144658','DOCK11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100361588,100406141,'NM_001171184','DRP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',44588192,44589078,'NM_022076','DUSP21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152561090,152569975,'NM_001395','DUSP9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',37583032,37591833,'NM_006520','DYNLT3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48265107,48272048,'NM_006579','EBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',68752635,69176046,'NM_001399','EDA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',65732206,65775617,'NM_021783','EDA2R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',43892071,44087867,'NM_025184','EFHC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',67965564,67978731,'NM_004429','EFNB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',13497614,13561615,'NM_015507','EGFL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',20052556,20069887,'NM_001412','EIF1AX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',23982985,24006851,'NM_001415','EIF2S3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',129026575,129072369,'NM_001127197','ELF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47379863,47394947,'NM_005229','ELK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153260790,153263077,'NM_000117','EMD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',129585037,129864889,'NM_182314','ENOX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48572226,48573492,'NM_181532','ERAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71341231,71375583,'NM_017669','ERCC6L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',103381374,103386255,'NM_153448','ESX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153717257,153767771,'NM_019863','F8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153767828,153769530,'NM_012151','F8A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',154264957,154266073,'NM_001007523','F8A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153767843,153768959,'NM_001007524','F8A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',138440560,138473283,'NM_000133','F9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',57329834,57532354,'NM_174912','FAAH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55186259,55204353,'NM_138362','FAM104B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',54111481,54226439,'NM_017848','FAM120C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133731261,133758851,'NM_001166599','FAM122B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133768888,133816307,'NM_138819','FAM122C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',63321721,63342349,'NM_152424','FAM123B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133993998,133995241,'NM_001078171','FAM127A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134012628,134013887,'NM_001134321','FAM127B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133982199,133984232,'NM_001078173','FAM127C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',92815667,92853929,'NM_173698','FAM133A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',68641802,68669076,'NM_015686','FAM155B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52993188,53041376,'NM_001242495','FAM156A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52945133,52954310,'NM_001099684','FAM156B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',103297811,103327238,'NM_207318','FAM199X'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153386520,153397760,'NM_021806','FAM3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',79562601,79587466,'NM_152630','FAM46D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',34057789,34060368,'NM_203408','FAM47A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',34870833,34872955,'NM_152631','FAM47B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',36936352,36939660,'NM_001013736','FAM47C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',24290798,24293462,'NM_001136234','FAM48B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',24238899,24241353,'NM_001136233','FAM48B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153325678,153332196,'NM_004699','FAM50A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152506576,152517826,'NM_152274','FAM58A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119276532,119329419,'NM_001104545','FAM70A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',8718836,8729424,'NM_174951','FAM9A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',8953036,8961116,'NM_205849','FAM9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',12963656,12972838,'NM_174901','FAM9C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',14771449,14801105,'NM_001018113','FANCB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',150635163,150642320,'NM_033085','FATE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',54488611,54539324,'NM_004463','FGD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',137541399,137649181,'NM_033642','FGF13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',76596302,76598669,'NM_003868','FGF16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135106578,135121184,'NM_001159701','FHL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15273633,15312456,'NM_004469','FIGF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',64687226,64689026,'NR_033742','FKSG43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71280758,71298325,'NM_207422','FLJ44635'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70914743,70920953,'NR_034005','FLJ46446'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153230093,153256200,'NM_001456','FLNA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146801160,146840339,'NR_033700','FMR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146798640,146811368,'NR_024499','FMR1-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146870540,146915879,'NM_152578','FMR1NB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70232723,70240109,'NM_001170931','FOXO4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48993840,49008232,'NM_014009','FOXP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55666557,55669346,'NM_198451','FOXR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',131038701,131089731,'NM_194277','FRMD7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',12066505,12652563,'NM_014728','FRMPD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',30999278,31000091,'NM_031894','FTHL17'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48219492,48229696,'NM_177439','FTSJ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',73164695,73430134,'NR_028379','FTX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',44267828,44287165,'NM_173794','FUNDC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153908257,153938385,'NM_023934','FUNDC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153412799,153428427,'NM_000402','G6PD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153556720,153632542,'NM_080612','GAB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151086289,151370487,'NM_000808','GABRA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',150872251,150893807,'NM_004961','GABRE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151557292,151572481,'NM_018558','GABRQ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49250559,49260086,'NM_001468','GAGE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49047068,49063255,'NM_001098413','GAGE10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49202870,49210132,'NM_001127345','GAGE12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49183723,49191088,'NM_001098408','GAGE12C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49212377,49219765,'NM_001127199','GAGE12D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49193279,49200644,'NM_001098418','GAGE12E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49104714,49110793,'NM_001098405','GAGE12F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49212388,49219755,'NM_001098409','GAGE12G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49202835,49210196,'NM_001098410','GAGE12H'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49103620,49110887,'NM_001477','GAGE12I'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49065459,49072810,'NM_001098406','GAGE12J'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49075037,49082309,'NM_001098412','GAGE13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49241061,49248374,'NM_001127212','GAGE2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49122651,49129941,'NM_001098411','GAGE2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49084539,49101374,'NM_001472','GAGE2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49084506,49110887,'NM_001098407','GAGE2D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49103602,49181532,'NM_001127200','GAGE2E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49103592,49110883,'NM_001474','GAGE4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49103600,49110887,'NM_001475','GAGE5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49212423,49219751,'NM_001476','GAGE6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49103621,49110883,'NM_021123','GAGE7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49075047,49200644,'NM_012196','GAGE8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48529925,48537661,'NM_002049','GATA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153318452,153325009,'NM_001493','GDI1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69559605,69569966,'NM_001171193','GDPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',13934765,13957956,'NM_017856','GEMIN8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70359780,70361790,'NM_000166','GJB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',30581396,30659498,'NM_000167','GK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100539434,100549657,'NM_000169','GLA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48505097,48517008,'NM_001080489','GLOD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',14457340,14659854,'NM_001171942','GLRA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102848927,102870208,'NM_001024452','GLRA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',120009142,120011477,'NM_012084','GLUD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',54573368,54610445,'NM_019067','GNL3L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',132497441,132947339,'NM_004484','GPC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',132262729,132376871,'NM_001448','GPC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48855965,48867023,'NM_015698','GPKOW'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',13702017,13745235,'NM_005278','GPM6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135939972,135941499,'NM_054021','GPR101'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135210787,135326713,'NM_153834','GPR112'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',129345999,129347192,'NM_178471','GPR119'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',9653452,9694005,'NM_000273','GPR143'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',53095230,53126521,'NM_018969','GPR173'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',78313124,78314382,'NM_032553','GPR174'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',41433169,41441474,'NM_005300','GPR34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',150095713,150100595,'NM_004224','GPR50'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',18917345,19050676,'NM_001184836','GPR64'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',41468351,41474332,'NM_080817','GPR82'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101792949,101800666,'NM_001099411','GPRASP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101853759,101859317,'NM_001184876','GPRASP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',122145776,122452447,'NM_000828','GRIA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48715077,48743619,'NM_020137','GRIPAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',16051344,16081562,'NM_005314','GRPR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',51503220,51506066,'NM_018094','GSPT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',161425,170887,'NM_012227','GTPBP6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',108502790,108611941,'NM_001522','GUCY2F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',2756862,2810861,'NM_001184704','GYG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',154342273,154342790,'NM_001017990','H2AFB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',154263629,154263977,'NM_001017991','H2AFB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153766510,153767027,'NM_080720','H2AFB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',103181171,103183677,'NM_001164416','H2BFM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',103152374,103154912,'NM_001002916','H2BFWT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',103117157,103119441,'NR_003238','H2BFXP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152366316,152389797,'NM_017518','HAUS7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',11039326,11051125,'NM_001171991','HCCS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152866201,152890013,'NM_005334','HCFC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48545430,48568324,'NM_006044','HDAC6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71609990,71709678,'NM_001166419','HDAC8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',6976960,7076231,'NM_001135565','HDHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',83459537,83644143,'NM_144657','HDX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',65300833,65403955,'NM_014799','HEPH'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',149902420,149909906,'NM_005342','HMGB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',80255855,80344097,'NM_030763','HMGN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100549776,100555784,'NM_019597','HNRNPH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133421840,133462364,'NM_000194','HPRT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',131587718,131923093,'NM_001077188','HS6ST2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',53474930,53478048,'NM_004493','HSD17B10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',148481981,148484773,'NM_016153','HSFX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',148481970,148484773,'NM_001164415','HSFX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135407336,135422169,'NM_014500','HTATSF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',113724806,114050880,'NM_000868','HTR2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',53575787,53730398,'NM_031407','HUWE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152704414,152713161,'NM_174869','IDH3G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',148368200,148394789,'NM_000202','IDS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69270042,69302898,'NM_001551','IGBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',130245820,130251084,'NM_205833','IGSF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153428755,153446455,'NM_001145255','IKBKG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',117745586,117812524,'NM_001560','IL13RA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',114144793,114158463,'NM_000640','IL13RA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',28515601,29883938,'NM_014271','IL1RAPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',103697651,104898478,'NM_017416','IL1RAPL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70243978,70248206,'NM_000206','IL2RG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',1415508,1461582,'NM_002183','IL3RA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46949190,46950198,'NR_024616','INE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15713759,15715633,'NR_002725','INE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70628101,70629329,'NR_002226','INGX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',53278782,53327521,'NM_015075','IQSEC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152929150,152938536,'NM_001569','IRAK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',107862382,107866263,'NM_003604','IRS4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70438352,70441929,'NM_012278','ITGB1BP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',54792056,54841398,'NM_198510','ITIH5L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',78502536,78509705,'NM_001171581','ITM2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',73080883,73206942,'NR_024582','JPX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',8456914,8660227,'NM_000216','KAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48703582,48713195,'NM_004979','KCND1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',108753584,108755049,'NM_012282','KCNE1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',53237227,53271329,'NM_001146702','KDM5C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',44617366,44856789,'NM_021140','KDM6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118096625,118168570,'NM_020721','KIAA1210'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',73869415,74062012,'NM_001008537','KIAA2022'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69426603,69557499,'NM_012310','KIF4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',56275546,56331047,'NM_007250','KLF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',116915803,117134856,'NM_001168303','KLHL13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',23911753,23955224,'NM_030624','KLHL15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',21583529,21586369,'NM_153270','KLHL34'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',86659370,86811706,'NM_019117','KLHL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152780164,152794593,'NM_000425','L1CAM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153358434,153360790,'NM_006014','LAGE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119444030,119487232,'NM_002294','LAMP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',37315740,37421669,'NM_001170331','LANCL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',64649186,64671411,'NM_031206','LAS1L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',140097596,140098976,'NM_012317','LDOC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',111760534,111810031,'NM_178175','LHFPL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134383533,134387891,'NR_024359','LINC00086'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134056680,134060399,'NR_024493','LINC00087'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',2541031,2543388,'NR_037842','LINC00102'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153513932,153514642,'NR_027401','LINC00204A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153513932,153514642,'NR_027402','LINC00204B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71913621,71915644,'NR_026595','LINC00246A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',72078292,72080314,'NR_026594','LINC00246B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135549367,135552254,'NR_038461','LOC100128420'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71918413,71919209,'NR_034116','LOC100129407'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134080547,134082071,'NR_033941','LOC100129515'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',124281649,124284631,'NM_001195272','LOC100129520'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',137621934,137626429,'NR_038405','LOC100129662'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',148417016,148429203,'NR_027455','LOC100131434'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',18818334,18823014,'NR_029379','LOC100132163'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70914743,70920953,'NR_034004','LOC100132741'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',40575413,40577393,'NR_027761','LOC100132831'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47403175,47404454,'NR_028119','LOC100133957'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',148857423,148935676,'NR_027456','LOC100272228'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101910750,102026994,'NR_038988','LOC100287765'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',9895397,9896042,'NM_001195081','LOC100288814'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118484023,118487111,'NR_028443','LOC100303728'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',111006083,111033869,'NM_001195578','LOC100329135'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133511719,133522094,'NR_038998','LOC100506757'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119924561,119927879,'NM_001242922','LOC100507170'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',154349394,154376965,'NR_039991','LOC100507404'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47852320,47858638,'NM_001205103','LOC100509575'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',72660835,72699646,'NR_029423','LOC139201'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49528066,49530699,'NR_026742','LOC158572'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',137524557,137527465,'NR_026935','LOC158696'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',103253655,103255973,'NR_039980','LOC286437'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',39049153,39071560,'NR_038968','LOC286442'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',130664358,130792352,'NR_026975','LOC286467'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102828867,102834140,'NR_038978','LOC340544'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',40367761,40368332,'NM_001195522','LOC347411'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',3745575,3771935,'NR_034031','LOC389906'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46289871,46292614,'NR_015378','LOC401588'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',51440884,51442187,'NR_033773','LOC441495'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',56779945,56780742,'NR_002308','LOC442454'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',98603255,99081497,'NR_024608','LOC442459'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',56772442,56860729,'NR_015367','LOC550643'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',95478740,95479557,'NR_003539','LOC643486'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',19914855,19917818,'NR_024440','LOC729609'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',62563163,62697598,'NR_015353','LOC92249'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',117992740,118035977,'NM_024778','LONRF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',77889861,77899234,'NM_005296','LPAR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',114251438,114374891,'NM_020871','LRCH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',114430547,114448377,'NM_016383','LUZP4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152134715,152139310,'NM_004988','MAGEA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151053563,151057681,'NM_021048','MAGEA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151033181,151057681,'NM_001204811','MAGEA10-MAGEA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',148575476,148580667,'NM_005366','MAGEA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151649948,151653840,'NM_001166387','MAGEA12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151633774,151637751,'NM_175742','MAGEA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151636039,151637735,'NM_153488','MAGEA2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151685307,151688896,'NM_005362','MAGEA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',150835364,150844298,'NM_002362','MAGEA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151033181,151037100,'NM_021049','MAGEA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151617900,151621470,'NM_175868','MAGEA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',148770598,148775267,'NM_005364','MAGEA8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',148471104,148476904,'NM_005365','MAGEA9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',148471104,148476911,'NM_001080790','MAGEA9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',30171768,30180076,'NM_177415','MAGEB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',27736027,27751052,'NM_182506','MAGEB10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',35726379,35731773,'NM_001099921','MAGEB16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',26066380,26068774,'NM_173699','MAGEB18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',30143595,30148127,'NM_002364','MAGEB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',30158473,30165531,'NM_002365','MAGEB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',30169977,30172229,'NM_002367','MAGEB4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',26120477,26123684,'NM_173523','MAGEB6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',140819307,140824853,'NM_005462','MAGEC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',141117793,141120742,'NM_016249','MAGEC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',140753767,140813284,'NM_138702','MAGEC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',51653437,51662190,'NM_006986','MAGED1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',54850895,54859170,'NM_177433','MAGED2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',51944747,51952104,'NM_001098800','MAGED4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',51944658,51952104,'NM_001242362','MAGED4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',75564449,75568150,'NM_020932','MAGEE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',74919547,74921804,'NM_138703','MAGEE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55495262,55496724,'NM_014061','MAGEH1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48906124,48910780,'NM_024859','MAGIX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',76968517,77037721,'NM_032121','MAGT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',149364377,149433106,'NM_005491','MAMLD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',43400352,43491012,'NM_000240','MAOA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',43510800,43626665,'NM_000898','MAOB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',19288096,19443300,'NM_001001671','MAP3K15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',19934751,20045035,'NM_152780','MAP7D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135123044,135161404,'NM_001173517','MAP7D3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',131331023,131375284,'NM_001170701','MBNL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',21767576,21813462,'NM_015884','MBTPS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',103230553,103288364,'NM_001012755','MCART6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',138491595,138618047,'NM_001099855','MCF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119621771,119639042,'NM_014060','MCTS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152948879,153016382,'NM_001110792','MECP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70255130,70279029,'NM_005120','MED12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',40393738,40479748,'NM_004229','MED14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133505072,133508326,'NR_024607','MGC16121'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',10373349,10548674,'NM_033289','MID1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',38545628,38550727,'NM_001098790','MID1IP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',106955739,107061523,'NM_052817','MID2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151311346,151311427,'NR_029521','MIR105-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151313539,151313620,'NR_029522','MIR105-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133131893,133131974,'NR_029523','MIR106A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',154265942,154266041,'NR_036049','MIR1184-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153768828,153768927,'NR_036259','MIR1184-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153768828,153768927,'NR_036260','MIR1184-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',113793385,113793454,'NR_031563','MIR1264'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',117404384,117404462,'NR_031685','MIR1277'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',113855905,113856017,'NR_031578','MIR1298'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',62922606,62922692,'NR_031567','MIR1468'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49654848,49654934,'NR_029708','MIR188'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133131736,133131807,'NR_029949','MIR18B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',113903999,113904079,'NR_031732','MIR1911'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',113792274,113792354,'NR_031733','MIR1912'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133131366,133131462,'NR_029491','MIR19B2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133131504,133131573,'NR_029950','MIR20B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',149146896,149146976,'NR_031748','MIR2114'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',45490528,45490638,'NR_029635','MIR221'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',45491364,45491474,'NR_029636','MIR222'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',65155436,65155546,'NR_029637','MIR223'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',150877705,150877786,'NR_029638','MIR224'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',19945126,19945226,'NR_037414','MIR23C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152899741,152899822,'NR_036174','MIR3202-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152899742,152899821,'NR_036175','MIR3202-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',139836002,139836050,'NR_031725','MIR320D2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49660311,49660375,'NR_029850','MIR362'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133131073,133131148,'NR_029852','MIR363'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',1372810,1372885,'NR_037461','MIR3690'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',73423845,73423917,'NR_030785','MIR374A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',73355106,73355178,'NR_030620','MIR374B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',73355108,73355178,'NR_037511','MIR374C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',76056091,76056179,'NR_029909','MIR384'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',109212001,109212102,'NR_039774','MIR3978'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133508309,133508407,'NR_029946','MIR424'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',78043346,78043402,'NR_036258','MIR4328'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',111910601,111910672,'NR_036255','MIR4329'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',150087351,150087456,'NR_036256','MIR4330'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',113964272,113964383,'NR_029955','MIR448'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133502036,133502127,'NR_029962','MIR450A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133502203,133502303,'NR_030227','MIR450A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133501880,133501958,'NR_030587','MIR450B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',150878755,150878840,'NR_029973','MIR452'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55494617,55494678,'NR_039764','MIR4536'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',7075900,7075978,'NR_039924','MIR4767'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',17353924,17353998,'NR_039925','MIR4768'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47331771,47331848,'NR_039926','MIR4769'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',6311946,6312004,'NR_039927','MIR4770'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49659778,49659862,'NR_030224','MIR500A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49662019,49662098,'NR_036257','MIR500B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49661069,49661153,'NR_030225','MIR501'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49665945,49666031,'NR_030226','MIR502'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133508023,133508094,'NR_030228','MIR503'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',137577537,137577620,'NR_030229','MIR504'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',138833972,138834056,'NR_030230','MIR505'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146119929,146120053,'NR_030233','MIR506'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146120193,146120287,'NR_030234','MIR507'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146126122,146126237,'NR_030235','MIR508'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146147969,146148060,'NR_030236','MIR509-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146149744,146149835,'NR_030586','MIR509-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146148861,146148936,'NR_030629','MIR509-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146161544,146161618,'NR_030237','MIR510'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146168456,146168554,'NR_030238','MIR514-1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146171152,146171240,'NR_030239','MIR514-2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146171152,146171240,'NR_030240','MIR514-3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',146139360,146139440,'NR_036173','MIR514B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49654493,49654584,'NR_030241','MIR532'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133503036,133503133,'NR_030399','MIR542'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',73423663,73423769,'NR_030258','MIR545'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',94747891,95250028,'NR_039638','MIR548AE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',8055005,8055102,'NR_030380','MIR651'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49664588,49664685,'NR_030397','MIR660'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69159431,69159498,'NR_037494','MIR676'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152938564,152938634,'NR_031757','MIR718'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',113780173,113780258,'NR_031581','MIR764'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118664728,118664839,'NR_030413','MIR766'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151312548,151312657,'NR_030409','MIR767'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',144883993,144884070,'NR_030592','MIR888'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',144883484,144883561,'NR_030589','MIR890'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',144917003,144917082,'NR_030581','MIR891A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',144890262,144890341,'NR_030590','MIR891B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',144885878,144885953,'NR_030584','MIR892A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',144886407,144886484,'NR_030593','MIR892B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133131233,133131308,'NR_029509','MIR92A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135460702,135460785,'NR_030631','MIR934'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',53599908,53600027,'NR_029513','MIR98'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',53600877,53600960,'NR_029484','MIRLET7F2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134871896,134883800,'NM_173470','MMGT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',106070619,106130130,'NM_024657','MORC4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102817081,102829742,'NM_001142431','MORF4L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133849327,133876963,'NM_019556','MOSPD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',14813333,14849380,'NM_001177475','MOSPD2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153660152,153686996,'NM_001166461','MPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',11687655,11703793,'NM_006800','MSL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',64804235,64878518,'NM_002444','MSN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',130984925,131037652,'NM_016542','MST4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153945502,153952741,'NM_001018025','MTCP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153943093,153952741,'NM_001018024','MTCP1NB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',149487704,149592274,'NM_000252','MTM1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',149612526,149684233,'NM_003828','MTMR1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',63404685,63532058,'NM_017677','MTMR8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55224548,55225669,'NM_001190708','MTRNR2L10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',105298953,105339605,'NM_152423','MUM1L1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',3236607,3274684,'NM_015419','MXRA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152848570,152853662,'NM_003491','NAA10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',72348861,72351435,'NM_021963','NAP1L2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',92812580,92815338,'NM_004538','NAP1L3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',72262600,72264644,'NR_027291','NAP1L6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',43692967,43717865,'NM_000266','NDP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118889761,118894657,'NM_004541','NDUFA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46886558,46889553,'NR_024235','NDUFB11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102518764,102519655,'NM_014380','NGFRAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',17563333,17664034,'NM_001136024','NHS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71047662,71280149,'NM_001013627','NHSL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118943040,118961763,'NM_024528','NKAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119254335,119263150,'NR_027131','NKAPP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118606327,118611141,'NM_001173488','NKRF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70281405,70307776,'NM_018977','NLGN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',5818082,6155888,'NM_020742','NLGN4X'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70419766,70437743,'NM_001145409','NONO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',99984968,100015990,'NM_013955','NOX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',30232459,30237416,'NM_000475','NR0B1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',104953191,105089258,'NM_198465','NRK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151750166,151788563,'NM_001129765','NSDHL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',51091822,51097117,'NM_153183','NUDT10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',51249602,51256199,'NM_018159','NUDT11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',106253312,106336326,'NR_033676','NUP62CL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101388749,101468290,'NM_022053','NXF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101388749,101468290,'NM_001099686','NXF2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102217405,102234678,'NM_022052','NXF3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101691548,101713277,'NR_002216','NXF4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100973740,100999205,'NR_028089','NXF5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',108665665,108674583,'NM_018698','NXT2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',41191656,41219849,'NM_022567','NYX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',128501932,128554211,'NM_001587','OCRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',123337436,123925347,'NM_014253','ODZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',13662752,13697401,'NM_003611','OFD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70669636,70712472,'NM_181672','OGT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',67178910,67570024,'NM_002547','OPHN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153062918,153077701,'NM_020061','OPN1LW'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153101278,153115546,'NM_000513','OPN1MW'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153138396,153151949,'NM_001048181','OPN1MW2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',130505728,130506655,'NM_001004486','OR13H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',38096679,38165647,'NM_000531','OTC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48664246,48700592,'NM_001136159','OTUD5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69199065,69200754,'NM_207320','OTUD6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',78087484,78104094,'NM_014499','P2RY10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69394740,69396379,'NM_002565','P2RY4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',1541465,1616037,'NM_178129','P2RY8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',72213901,72216076,'NM_001012977','PABPC1L2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',72140076,72142276,'NM_001042506','PABPC1L2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',90576252,90580239,'NM_080832','PABPC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49339007,49347307,'NM_003785','PAGE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55132221,55135985,'NM_207339','PAGE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55118228,55122061,'NM_001015038','PAGE2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55301573,55307890,'NR_033460','PAGE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49480643,49485308,'NM_007003','PAGE4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55263515,55267266,'NM_130467','PAGE5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',110252960,110350829,'NM_001128172','PAK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',150482662,150595867,'NM_173493','PASD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',90976314,91021653,'NM_014522','PCDH11X'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',99433297,99551927,'NM_020766','PCDH19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48574449,48578904,'NM_013271','PCSK1N'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',24486124,24575376,'NM_004845','PCYT1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',19271931,19289746,'NM_000284','PDHA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',24393264,24478504,'NM_001142386','PDK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69422935,69426523,'NM_016484','PDZD11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152720816,152749197,'NM_032512','PDZD4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',54976314,55037236,'NM_002625','PFKFB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',77110113,77111791,'NM_001029891','PGAM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',77246321,77268980,'NM_000291','PGK1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118254238,118262457,'NM_006667','PGRMC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',21960841,22176399,'NM_000444','PHEX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46656811,46805585,'NM_014735','PHF16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133335007,133376987,'NM_032335','PHF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',53979837,54087332,'NM_001184897','PHF8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71715388,71850754,'NM_001172436','PHKA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',18820336,18912401,'NM_000292','PHKA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15247493,15263597,'NM_002641','PIGA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48655402,48661357,'NM_006875','PIM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71318250,71400539,'NM_001170747','PIN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15312844,15421632,'NM_003662','PIR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15273633,15419353,'NR_037859','PIR-FIGF'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',68297305,68302090,'NM_022368','PJA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',133527538,133620179,'NM_021796','PLAC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102918094,102934203,'NM_001128834','PLP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48915127,48918412,'NM_002668','PLP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',114734074,114791435,'NM_001136025','PLS3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153339816,153355179,'NM_017514','PLXNA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152682844,152697995,'NM_001163257','PLXNB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152588381,152591937,'NM_001135740','PNCK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151975421,151979483,'NM_013364','PNMA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151908023,151911417,'NM_052926','PNMA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151991494,151993301,'NM_032882','PNMA6A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151991474,151994058,'NM_001170944','PNMA6C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151994651,151996726,'NM_001242319','PNMA6D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',7826803,7855780,'NM_001172672','PNPLA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',84419050,84521404,'NM_024921','POF1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',24621984,24925023,'NM_016937','POLA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48252314,48264146,'NM_022825','PORCN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',82649924,82651431,'NM_000307','POU3F4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',18618965,18755955,'NM_152226','PPEF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',42521560,42522430,'NR_002191','PPP1R2P9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49013249,49031499,'NM_033215','PPP1R3F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',214667,267690,'NM_013239','PPP2R3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48640482,48645364,'NM_005710','PQBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48815761,48818606,'NM_007213','PRAF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',23595565,23614435,'NM_006406','PRDX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48918849,48929720,'NM_006150','PRICKLE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',3532383,3641675,'NM_005044','PRKX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',106758309,106780912,'NM_002764','PRPS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',12719394,12752267,'NM_002765','PRPS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',37093503,37201469,'NM_001173489','PRRG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',150614385,150620719,'NM_024082','PRRG3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',107214090,107221530,'NM_002814','PSMD10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',23262905,23324839,'NM_173495','PTCHD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',129133453,129146525,'NM_004794','RAB33A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',154140719,154147046,'NM_171998','RAB39B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102641336,102661073,'NM_080879','RAB40A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102078855,102079884,'NM_001031834','RAB40AL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69418746,69421577,'NM_001032726','RAB41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',13617160,13637866,'NM_001195328','RAB9A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102963910,102973868,'NM_016370','RAB9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',17728089,17788868,'NR_033349','RAI2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',131164733,131179870,'NM_021183','RAP2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',16772695,16798455,'NM_002893','RBBP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46889560,46931158,'NM_005676','RBM10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48317684,48324497,'NM_006743','RBM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',106196188,106248713,'NM_018301','RBM41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135783271,135790605,'NR_028477','RBMX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',129363623,129374998,'NM_016024','RBMX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',114330218,114333687,'NM_001145346','RBMXL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152853915,152863426,'NM_002910','RENBP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',16874734,17081324,'NM_001080975','REPS2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',109548940,109586218,'NM_020769','RGAG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71263685,71268476,'NM_001024455','RGAG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46822718,46837656,'NM_004683','RGN'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119127052,119133875,'NM_139282','RHOXF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119090268,119095735,'NM_032498','RHOXF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119090256,119095735,'NM_001099685','RHOXF2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',53466614,53474782,'NM_001031745','RIBC1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',106029948,106033217,'NM_138382','RIPPLY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',73719535,73751186,'NM_183353','RLIM'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118888522,118889819,'NM_006978','RNF113A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',105856549,105926902,'NM_194463','RNF128'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',139619589,139622060,'NR_028345','RP1-177G6.2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46581290,46626735,'NM_006915','RP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',96025562,96027106,'NM_013347','RPA4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',38013366,38071732,'NM_000328','RPGR'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153279764,153283874,'NR_026898','RPL10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100532533,100535496,'NM_001199972','RPL36A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100532533,100555784,'NM_001199974','RPL36A-HNRNPH2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118804496,118809634,'NM_001000','RPL39'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71180983,71181536,'NR_002309','RPS26P11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',71409177,71413866,'NM_001007','RPS4X'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',20077949,20194671,'NM_004586','RPS6KA3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',83200009,83329599,'NM_014496','RPS6KA6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55760834,55801932,'NM_016656','RRAGB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',18567728,18600144,'NM_000330','RS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',16578201,16582712,'NM_004057','S100G'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134803450,134822886,'NM_018666','SAGE1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',128741572,128756857,'NM_018990','SASH3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',23711195,23714248,'NM_002970','SAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',84233947,84250630,'NM_001012980','SATL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',24672478,24672608,'NR_003007','SCARNA23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',20064104,20064452,'NR_023358','SCARNA9L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',17665512,17683026,'NM_006746','SCML1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',18167353,18282765,'NR_033717','SCML2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118633715,118711361,'NM_145800','SEPT6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',105163845,105169374,'NM_000354','SERPINA7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',123307812,123334691,'NM_001114937','SH2D1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',80343958,80440702,'NM_003022','SH3BGRL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',19462003,19599040,'NM_001184960','SH3KBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',505078,540146,'NM_006883','SHOX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',9714495,9877481,'NM_001649','SHROOM2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',50351384,50573784,'NR_027121','SHROOM4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153368843,153372196,'NM_001142392','SLC10A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',73557809,73670477,'NM_006517','SLC16A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',129301727,129335016,'NM_022810','SLC25A14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118417285,118472465,'NM_145305','SLC25A43'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118486390,118489387,'NM_001152','SLC25A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',1465044,1471039,'NM_001636','SLC25A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48645402,48653861,'NM_005660','SLC35A2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48201870,48213588,'NM_033518','SLC38A5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',115481774,115506653,'NM_007231','SLC6A14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152606945,152615242,'NM_005629','SLC6A8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70062154,70067700,'NM_032803','SLC7A3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134895251,134957094,'NM_006359','SLC9A6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46351316,46503416,'NM_032591','SLC9A7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',144707038,144715052,'NM_001144005','SLITRK2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',142538260,142550685,'NM_173078','SLITRK4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',128408158,128485141,'NM_003069','SMARCA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',53417794,53466343,'NM_006306','SMC1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',27388248,27391379,'NR_002784','SMEK3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',21634011,21686151,'NM_014332','SMPX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',21868635,21922876,'NM_004595','SMS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',54857527,54857658,'NR_002953','SNORA11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47132992,47133119,'NR_003710','SNORA11C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',51823182,51823309,'NR_003711','SNORA11D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',51823182,51823309,'NR_003712','SNORA11E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',113771514,113771642,'NR_002993','SNORA35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153649996,153650126,'NR_002969','SNORA36A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153656466,153656595,'NR_002984','SNORA56'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118805343,118805475,'NR_002584','SNORA69'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153281815,153281950,'NR_000011','SNORA70'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135789023,135789096,'NR_002735','SNORD61'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',109354872,109354944,'NR_004379','SNORD96B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70197512,70204956,'NM_013346','SNX12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',139412817,139414891,'NM_005634','SOX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47871546,47876941,'NM_205856','SPACA5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47752113,47754070,'NM_001079900','SPACA5B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',140499471,140500502,'NM_013453','SPANXA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',140505500,140506565,'NM_145662','SPANXA2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',140418508,140565735,'NR_037183','SPANXA2-OT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',139912421,139913537,'NM_032461','SPANXB1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',139912421,139913537,'NM_145664','SPANXB2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',140163261,140164312,'NM_022661','SPANXC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',140613233,140614264,'NM_032417','SPANXD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',140613233,140614321,'NM_145665','SPANXE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',139912421,139913537,'NM_139019','SPANXF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',144136798,144145420,'NM_001009614','SPANXN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',142622720,142632182,'NM_001009615','SPANXN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',142424229,142432973,'NM_001009609','SPANXN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',141941369,141949732,'NM_001009613','SPANXN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52841910,52843113,'NM_001009616','SPANXN5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',57178807,57180783,'NM_019003','SPIN2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',57162839,57164704,'NM_001006683','SPIN2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',57019527,57038713,'NR_027139','SPIN3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',62483831,62487943,'NM_001012968','SPIN4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',154650644,154665311,'NM_005840','SPRY3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',138356643,138358798,'NR_028597','SRD5A1P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152699649,152704381,'NM_001170761','SRPK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',37893531,37965121,'NM_001170752','SRPX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',99785818,99812952,'NM_014467','SRPX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152713097,152717161,'NM_001204526','SSR4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47999740,48011823,'NM_005635','SSX1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52742670,52752974,'NM_175698','SSX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52742670,52752974,'NM_001164417','SSX2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48090806,48101086,'NM_021014','SSX3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48127911,48137729,'NM_005636','SSX4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48127911,48137725,'NM_001040612','SSX4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47930599,47941143,'NM_021015','SSX5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47852310,47865012,'NR_028366','SSX6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52689835,52700675,'NM_173358','SSX7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52668709,52679723,'NR_027250','SSX8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',122923236,123064186,'NM_001042751','STAG2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',67830206,67862409,'NM_001142504','STARD8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',7147471,7282682,'NM_000351','STS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48440074,48452350,'NM_003173','SUV39H1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',16647627,16690728,'NM_032796','SYAP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47316243,47364200,'NM_006950','SYN1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48931208,48943605,'NM_003179','SYP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',99816144,99873791,'NM_001129896','SYTL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',37750778,37873017,'NM_001163335','SYTL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',30755479,30817432,'NM_152787','TAB3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70502838,70602580,'NM_138923','TAF1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100409896,100434715,'NM_024885','TAF7L'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',77271900,77281835,'NM_015975','TAF9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153293070,153303257,'NM_181313','TAZ'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48283018,48305941,'NM_002536','TBC1D25'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',105932574,106006033,'NM_017752','TBC1D8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',9391334,9647780,'NM_001139467','TBL1X'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',79164397,79173924,'NM_016954','TBX22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102770547,102772532,'NM_004780','TCEAL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101267315,101269340,'NM_080390','TCEAL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102749489,102751511,'NM_032926','TCEAL3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102727074,102729311,'NM_024863','TCEAL4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102415273,102418453,'NM_001012979','TCEAL5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101281588,101284044,'NM_001006938','TCEAL6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102471769,102473907,'NM_152278','TCEAL7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102394578,102396777,'NM_153333','TCEAL8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',13581227,13592168,'NM_152634','TCEANC'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',109650195,109652905,'NR_002718','TDGF1P3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',69665514,70045292,'NM_001003811','TEX11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',104350266,104352014,'NM_031274','TEX13A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',107110749,107112256,'NM_031273','TEX13B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153152123,153176758,'NM_001205201','TEX28'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',132178362,132180042,'NM_016521','TFDP3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48771185,48787934,'NM_006521','TFE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',89063595,89064538,'NM_138960','TGIF2LX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',122562092,122694585,'NM_001081550','THOC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48635673,48640370,'NM_001167947','TIMM17B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100487299,100490613,'NM_004085','TIMM8A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47326633,47331134,'NM_003254','TIMP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153177220,153211907,'NM_001145933','TKTL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',12795122,12818401,'NM_016562','TLR7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',12834659,12851209,'NM_138636','TLR8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',12830856,12871340,'NR_030727','TLR8-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',109132997,109307672,'NM_032227','TMEM164'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',148486014,148521294,'NM_001174092','TMEM185A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152891184,152901840,'NM_003492','TMEM187'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15555361,15593075,'NM_020665','TMEM27'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102852492,102855616,'NM_182541','TMEM31'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100220491,100238011,'NM_021637','TMEM35'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',34555101,34585326,'NM_031442','TMEM47'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',154371866,154495816,'NM_018196','TMLHE'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101655265,101658355,'NM_021992','TMSB15A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',103103855,103107219,'NM_194324','TMSB15B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',12903146,12905267,'NM_021109','TMSB4X'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',99726445,99741538,'NM_022144','TNMD'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',13640281,13662675,'NM_001128835','TRAPPC2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152363371,152365139,'NM_080701','TREX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100150989,100193761,'NM_001167971','TRMT2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',54963973,54974590,'NM_177556','TRO'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',110904197,111212660,'NM_012471','TRPC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',106843107,106905673,'NM_198057','TSC22D3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',72928764,72965791,'NR_003255','TSIX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',99770450,99778450,'NM_003270','TSPAN6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',38305674,38433116,'NM_004615','TSPAN7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',53128266,53134453,'NM_022117','TSPYL2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',54483577,54488456,'NM_058163','TSR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',74877097,74879639,'NR_030737','TTC3P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',16714475,16772563,'NM_001168683','TXLNG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46938144,46959471,'NM_003334','UBA1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118592526,118602407,'NM_003336','UBE2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',84075812,84076552,'NR_024062','UBE2DNL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',142794838,142796023,'NM_001012989','UBE2NL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',153365249,153368126,'NM_014235','UBL4A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',56606750,56610168,'NM_013444','UBQLN2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',118852016,118871019,'NM_023010','UPF3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',74410618,74441457,'NR_030774','UPRT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46977257,46992671,'NM_004651','USP11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',131987172,131989966,'NM_031907','USP26'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',49531209,49533908,'NM_001145073','USP27X'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',55527773,55532356,'NM_201286','USP51'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',40829831,40980776,'NM_001039591','USP9X'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',128867777,128891419,'NM_001166221','UTP14A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47396139,47403504,'NM_004182','UXT'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',154097894,154121292,'NM_003372','VBP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',7770302,7772184,'NM_013452','VCX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',8097984,8099308,'NM_016378','VCX2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',6461658,6463159,'NM_016379','VCX3A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',8392870,8394551,'NM_001001888','VCX3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',26486374,26489090,'NR_001559','VENTXP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',135441976,135466632,'NM_016267','VGLL1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',150316314,150328494,'NM_001017980','VMA21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',107174855,107209070,'NM_182607','VSIG1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',65158304,65176692,'NM_007268','VSIG4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48427129,48434761,'NM_000377','WAS'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',102498035,102500053,'NM_016303','WBP5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48341167,48348526,'NM_001166426','WDR13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',117364063,117467951,'NM_019045','WDR44'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',48819035,48845003,'NM_007075','WDR45'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',54235980,54401163,'NM_020922','WNK3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',9943794,10072518,'NM_015691','WWC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52255687,52260678,'NM_001097593','XAGE1A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52557778,52562922,'NM_001097594','XAGE1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52528638,52533629,'NM_001097598','XAGE1C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52544884,52550028,'NM_020411','XAGE1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52271944,52277088,'NM_001097604','XAGE1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52128792,52135537,'NM_130777','XAGE2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52129872,52135449,'NM_001079538','XAGE2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52908282,52913057,'NM_130776','XAGE3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',52857952,52864047,'NM_130775','XAGE5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',2680092,2744541,'NM_001141920','XG'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',2680336,2703037,'NR_003254','XGPY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',122821342,122875510,'NM_001204401','XIAP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',72957219,72989313,'NR_001564','XIST'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',37430051,37476322,'NM_021083','XK'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',100055086,100070554,'NM_212559','XKRX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',128700626,128731206,'NM_003399','XPNPEP2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',67635348,67673852,'NM_173834','YIPF6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',21784025,21786766,'NM_206923','YY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',2414454,2428580,'NM_001171135','ZBED1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',119268637,119276279,'NM_001184742','ZBTB33'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',64625339,64644492,'NM_001010888','ZC3H12B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',64052406,64113138,'NM_001178033','ZC4H2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',117841814,117844959,'NM_173798','ZCCHC12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',73440749,73441594,'NM_203303','ZCCHC13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',111212908,111587129,'NM_001004308','ZCCHC16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',103243762,103247189,'NM_001143978','ZCCHC18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',77798221,77801481,'NM_152694','ZCCHC5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',74586879,74660062,'NM_001146257','ZDHHC15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',128764944,128805591,'NM_016032','ZDHHC9'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152336974,152340280,'NM_001136273','ZFP92'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',24077761,24144293,'NM_001178084','ZFX'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',136476011,136481925,'NM_003413','ZIC3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',101023915,101031849,'NR_036431','ZMAT1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',70385779,70391224,'NM_001171163','ZMYM3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47114942,47158042,'NM_003446','ZNF157'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47719193,47748338,'NM_001178099','ZNF182'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',151833641,151892681,'NM_007150','ZNF185'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',152252806,152271578,'NM_001080485','ZNF275'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',129164353,129230603,'NM_017666','ZNF280C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47190504,47227289,'NM_153380','ZNF41'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134306361,134325004,'NM_152695','ZNF449'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47802510,47815969,'NR_033730','ZNF630'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',22200950,22202497,'NM_152577','ZNF645'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46191567,46219018,'NM_017776','ZNF673'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',46242103,46289836,'NM_001190417','ZNF674'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',84385652,84415025,'NM_021998','ZNF711'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',134247388,134257631,'NM_001185063','ZNF75D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',47581244,47666599,'NM_007137','ZNF81'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',15718494,15751303,'NM_005089','ZRSR2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',57948588,57953792,'NM_007156','ZXDA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX',57634993,57640635,'NM_007157','ZXDB'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrX_',278959,281134,'NR_027232','PPP2R3B-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6793958,6802068,'NM_001143','AMELY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',1482031,1531870,'NM_001173474','ASMTL'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',1479423,1492479,'NR_026710','ASMTL-AS1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',20076704,20124427,'NR_002923','BCORP1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',23539797,23560998,'NM_004678','BPY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',23539797,23560998,'NM_001002760','BPY2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',25173538,25194740,'NM_001002761','BPY2C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',19611913,19614093,'NM_013230','CD24'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',24600763,24603549,'NM_004680','CDY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',24600763,24603549,'NM_001003895','CDY1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',18499534,18501494,'NM_004825','CDY2A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',18499533,18501493,'NM_001001722','CDY2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',1274893,1291530,'NM_022148','CRLF2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',1347692,1388828,'NM_001161532','CSF2RA'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',24738968,24742766,'NR_001554','CSPG4P1Y'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',20217829,20227086,'NM_032576','CYorf15B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',23684889,23754627,'NM_004081','DAZ1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',23774991,23846891,'NM_001005786','DAZ2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',23774968,23846891,'NM_020364','DAZ3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',23774968,23846891,'NM_020420','DAZ4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',13525412,13541784,'NM_001122665','DDX3Y'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',21146998,21164428,'NM_004681','EIF1AY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',9247188,9252791,'NR_001553','FAM197Y2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',18122231,18138016,'NR_028083','FAM41AY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',18122231,18138016,'NR_028084','FAM41AY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',24765501,24770366,'NR_001555','GOLGA2P2Y'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',24765501,24770366,'NR_002195','GOLGA2P3Y'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',13027922,13043397,'NR_033667','GYG2P1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',19167964,19210237,'NR_003510','HSFY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',19167944,19210237,'NR_003509','HSFY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',57739639,57752876,'NR_024033','IL9R'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',20326688,20366213,'NM_001146705','KDM5D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',18947806,18952100,'NR_002161','LINC00230A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',18947827,18952124,'NR_002160','LINC00230B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',19493774,19499502,'NR_001544','NCRNA00185'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',15145019,15465242,'NM_014893','NLGN4Y'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',4928266,5033485,'NM_032971','PCDH11Y'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',138060,160022,'NM_018390','PLCXD1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',7202012,7309588,'NR_028062','PRKY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22627290,22651542,'NM_004676','PRY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22627290,22651542,'NM_001002758','PRY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22082645,22097060,'NM_005058','RBMY1A1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',9214669,9220483,'NR_001547','RBMY1A3P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22082611,22097060,'NM_001006121','RBMY1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22082651,22097060,'NM_001006120','RBMY1D'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22082651,22097060,'NM_001006118','RBMY1E'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22724076,22738477,'NM_152585','RBMY1F'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22724076,22738477,'NM_001006117','RBMY1J'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',21966421,21972836,'NR_001574','RBMY2EP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22864393,22871740,'NR_002193','RBMY2FP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',10058329,10062762,'NR_001573','RBMY3AP'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',2769622,2794997,'NM_001008','RPS4Y1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',21327341,21352306,'NM_001039567','RPS4Y2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',2714895,2715792,'NM_003140','SRY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6838726,7019724,'NM_134259','TBL1Y'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',3507125,3508082,'NM_139214','TGIF2LY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',14324840,14327296,'NM_004202','TMSB4Y'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',9914563,9917358,'NM_003308','TSPY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6174263,6177053,'NM_022573','TSPY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',9296029,9298826,'NM_001077697','TSPY3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',9934921,9937690,'NM_001164471','TSPY4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',9255451,9258202,'NM_001243721','TSPY8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6318471,6339605,'NR_001538','TTTY1'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',21036941,21090502,'NR_001542','TTTY10'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',8711360,8745423,'NR_001548','TTTY11'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',7732964,7738723,'NR_001551','TTTY12'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22154873,22165940,'NR_001537','TTTY13'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',19553972,19698690,'NR_001543','TTTY14'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',13283691,13313547,'NR_001545','TTTY15'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',7627397,7629288,'NR_001552','TTTY16'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',23407118,23408250,'NR_001526','TTTY17A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',23407118,23408250,'NR_002180','TTTY17B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',23407118,23408250,'NR_002179','TTTY17C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',8611410,8611919,'NR_001550','TTTY18'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',8632512,8633324,'NR_001549','TTTY19'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6318441,6339605,'NR_003589','TTTY1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6334284,6356485,'NR_001536','TTTY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',9227488,9232441,'NR_001546','TTTY20'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6371474,6375118,'NR_001535','TTTY21'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6371474,6375118,'NR_003588','TTTY21B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',10248761,10260854,'NR_001539','TTTY22'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6170486,6171651,'NR_001540','TTTY23'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6170486,6171651,'NR_003593','TTTY23B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6334284,6356485,'NR_003590','TTTY2B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',24492261,24497157,'NR_001524','TTTY3'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',24492261,24497157,'NR_002176','TTTY3B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',25125736,25162560,'NR_001525','TTTY4'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',25125736,25162560,'NR_002178','TTTY4B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',25125736,25162560,'NR_002177','TTTY4C'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22852332,22854411,'NR_001541','TTTY5'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22700499,22702366,'NR_001527','TTTY6'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',22700521,22702369,'NR_002175','TTTY6B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6377508,6385947,'NR_001534','TTTY7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6377508,6385947,'NR_003592','TTTY7B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6399071,6401671,'NR_001533','TTTY8'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',6399071,6401671,'NR_003591','TTTY8B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',19202479,19211795,'NR_001530','TTTY9A'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',19202479,19211795,'NR_002159','TTTY9B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',20188622,20211697,'NM_001005852','TXLNG2P'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',13322553,13482162,'NM_004654','USP9Y'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',13869656,14101944,'NM_007125','UTY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',57623336,57685827,'NR_033715','VAMP7'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',14677491,14678232,'NM_004679','VCY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',14607045,14607782,'NM_181880','VCY1B'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',18390253,18391834,'NM_004677','XKRY'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',18390253,18391834,'NM_001002906','XKRY2'); +INSERT INTO random_forest.refgene (chr,start,end,name,alias) VALUES ('chrY',2863111,2910547,'NM_001145276','ZFY'); + +commit; diff --git a/src/dataimport/sql/rfex_admin.sql~ b/src/dataimport/sql/rfex_admin.sql~ new file mode 100755 index 0000000..a516da1 --- /dev/null +++ b/src/dataimport/sql/rfex_admin.sql~ @@ -0,0 +1,23351 @@ +DROP DATABASE IF EXISTS tcga; + +CREATE DATABASE tcga; + +CREATE TABLE `tcga`.`regulome_explorer_dataset` +( + `label` varchar(40) NOT NULL, + `method` varchar(100) default NULL, + `source` varchar(100) default 'TCGA', + `contact` varchar(50) default NULL, + `comments` longtext, + `pvalue_cutoff` double default NULL, + `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, + `default_display` bit(1) NOT NULL default b'0', + `description` varchar(255) default NULL, + `dataset_date` varchar(30) default NULL, + `max_logged_pvalue` float default NULL, + `input_files` varchar(255) default NULL, + PRIMARY KEY (`label`) +); + +CREATE TABLE `tcga`.`sample_meta` ( + `sample_key` varchar(20) NOT NULL default '', + `cancer_type` varchar(20) NOT NULL default '', + `dataset_label` varchar(50) NOT NULL default '', + `matrix_col_offset` int(11) default NULL, + `meta_json` text, + PRIMARY KEY (`sample_key`,`cancer_type`,`dataset_label`)); + +DROP DATABASE IF EXISTS random_forest; + +CREATE DATABASE random_forest; + +CREATE TABLE `random_forest`.`chrom_info` +( + chr_name varchar(20) PRIMARY KEY NOT NULL, + chr_length int NOT NULL, + organism varchar(50) default 'human', + build varchar(20) default 'hg18' +); + +CREATE TABLE `random_forest`.`refgene` +( + chr varchar(5) NOT NULL, + start int NOT NULL, + end int NOT NULL, + name varchar(30) DEFAULT 'NA' NOT NULL PRIMARY KEY, + alias varchar(30) DEFAULT 'NA' NOT NULL, + organism varchar(50) default 'human', + build varchar(20) default 'hg18' +); + +GRANT Select ON tcga.* TO visquick_ro@"localhost" IDENTIFIED BY 'v15qu1ck_r0'; +GRANT Select ON tcga.* TO visquick_ro@"giza.systemsbiology.net" IDENTIFIED BY 'v15qu1ck_r0'; +GRANT Select ON tcga.* TO visquick_ro@"%" IDENTIFIED BY 'v15qu1ck_r0'; + +GRANT ALL ON tcga.* TO visquick_rw@"localhost" IDENTIFIED BY 'v1sr3ad'; +GRANT ALL ON tcga.* TO visquick_rw@"giza.systemsbiology.net" IDENTIFIED BY 'v1sr3ad'; +GRANT ALL ON tcga.* TO visquick_rw@"%" IDENTIFIED BY 'v1sr3ad'; + +GRANT Select ON random_forest.* TO visquick_ro@"localhost" IDENTIFIED BY 'v15qu1ck_r0'; +GRANT Select ON random_forest.* TO visquick_ro@"giza.systemsbiology.net" IDENTIFIED BY 'v15qu1ck_r0'; +GRANT Select ON random_forest.* TO visquick_ro@"%" IDENTIFIED BY 'v15qu1ck_r0'; + +GRANT ALL ON random_forest.* TO visquick_rw@"localhost" IDENTIFIED BY 'v1sr3ad'; +GRANT ALL ON random_forest.* TO visquick_rw@"giza.systemsbiology.net" IDENTIFIED BY 'v1sr3ad'; +GRANT ALL ON random_forest.* TO visquick_rw@"%" IDENTIFIED BY 'v1sr3ad'; + +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('1',247249719); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('10',135374737); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('11',134452384); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('12',132349534); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('13',114142980); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('14',106368585); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('15',100338915); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('16',88827254); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('17',78774742); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('18',76117153); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('19',63811651); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('2',242951149); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('20',62435964); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('21',46944323); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('22',49691432); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('3',199501827); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('4',191273063); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('5',180857866); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('6',170899992); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('7',158821424); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('8',146274826); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('9',140273252); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('X',154913754); +INSERT INTO `random_forest`.`chrom_info` (chr_name,chr_length) VALUES ('Y',57772954); + +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12698704,12711313,'NM_001103169','AADACL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12627152,12649684,'NM_001013630','AADACL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',94230981,94359293,'NM_000350','ABCA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',227718951,227761065,'NM_012089','ABCB10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',94656520,94756807,'NM_002858','ABCD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',177335084,177465442,'NM_001168237','ABL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',75962630,76001943,'NM_001127328','ACADM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1217626,1233132,'NM_030649','ACAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224399002,224441046,'NM_022735','ACBD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',178523974,178738645,'NM_032360','ACBD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54786394,54873005,'NM_015547','ACOT11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6246918,6343351,'NM_181865','ACOT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',145585791,145609258,'NM_016361','ACP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',227633615,227636466,'NM_001100','ACTA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',17954394,18026145,'NM_030812','ACTL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',234916392,234994181,'NM_001103','ACTN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2927905,2929327,'NM_080431','ACTRT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153290385,153301876,'NM_207194','ADAM15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',120237678,120240670,'NM_021794','ADAM30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159426161,159435469,'NM_005099','ADAMTS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148788521,148800036,'NM_019032','ADAMTSL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152821157,152847348,'NM_015841','ADAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33319300,33358582,'NM_052998','ADC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',225194560,225241869,'NM_020247','ADCK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166045248,166150077,'NM_018417','ADCY10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201176583,201194108,'NM_015999','ADIPOR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201363458,201403156,'NM_000674','ADORA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111843573,111848266,'NM_000677','ADORA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36327039,36332120,'NM_017825','ADPRHL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',242638416,242682059,'NM_001126','ADSS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',48771113,50262213,'NM_032785','AGBL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100088632,100162167,'NM_000643','AGL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15770780,15784192,'NM_024758','AGMAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',945365,981362,'NM_198576','AGRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',228904891,228916959,'NM_000029','AGT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11718728,11733415,'NM_020350','AGTRAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245069024,245161349,'NM_015446','AHCTF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110328909,110367887,'NM_001242673','AHCYL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27733342,27802730,'NM_001029882','AHDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',220907977,220952487,'NM_022831','AIDA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26520936,26553208,'NM_001039775','AIM1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157298898,157313271,'NM_004833','AIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',4614964,4743711,'NM_018836','AJAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33246127,33275099,'NM_001199199','AK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',65385819,65470416,'NM_203464','AK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',77520249,77798242,'NM_174858','AK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39229502,39244324,'NM_001136275','AKIRIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109160047,109201239,'NM_152763','AKNAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45789041,45808310,'NM_001202414','AKR1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19503048,19511227,'NM_003689','AKR7A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',113267494,113268818,'NR_002796','AKR7A2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19481643,19487867,'NM_012067','AKR7A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19465062,19473155,'NR_040288','AKR7L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',241729643,242073509,'NM_001206729','AKT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19070510,19101880,'NM_170726','ALDH4A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',163898072,163934524,'NM_000696','ALDH9A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',95220866,95311095,'NM_144988','ALG14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',63605848,63676821,'NM_013339','ALG6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',21708444,21777492,'NM_001127501','ALPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110404519,110414845,'NM_006492','ALX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109850968,109853859,'NM_020703','AMIGO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',115017242,115039762,'NM_000036','AMPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109964798,109976200,'NM_004037','AMPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',103999824,104008696,'NM_004038','AMY1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',104031563,104040412,'NM_001008218','AMY1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',104093963,104102833,'NM_001008219','AMY1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',103961521,103969923,'NM_000699','AMY2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',103898844,103923672,'NM_020978','AMY2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',211232146,211255791,'NM_144567','ANGEL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',177085292,177106838,'NM_004673','ANGPTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',62835774,62843768,'NM_014495','ANGPTL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11171984,11178625,'NM_021146','ANGPTL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',70497272,70593005,'NM_030816','ANKRD13C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144181864,144187004,'NM_001039888','ANKRD34A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144260565,144279883,'NM_144698','ANKRD35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166481442,166483292,'NR_026844','ANKRD36BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',171844097,171905624,'NM_198493','ANKRD45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148457340,148475128,'NM_030920','ANP32E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149221122,149234738,'NM_003568','ANXA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114239199,114249264,'NM_006594','AP4B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157824239,157825285,'NM_001639','APCS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148504422,148508233,'NM_001077628','APH1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',10413390,10425459,'NR_036462','APITD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',10412745,10434647,'NM_199006','APITD1-CORT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154828181,154830715,'NM_144772','APOA1BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159458706,159460042,'NM_001643','APOA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',181882033,181889071,'NM_203454','APOBEC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152560215,152564425,'NM_080429','AQP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226336983,226353536,'NM_001658','ARF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',94407050,94475895,'NM_004815','ARHGAP29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159283355,159306384,'NM_181720','ARHGAP30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',17779634,17896957,'NM_001011722','ARHGEF10L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155171255,155281786,'NM_198236','ARHGEF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3361006,3387537,'NM_014448','ARHGEF16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16397185,16411691,'NM_153213','ARHGEF19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154183253,154214960,'NM_001162384','ARHGEF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26895108,26981188,'NM_139135','ARID1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',233396832,233557425,'NM_001206794','ARID4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200368599,200380489,'NM_138795','ARL8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149048804,149115868,'NM_001197325','ARNT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',181861954,181871608,'NM_005717','ARPC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44171578,44175499,'NM_001136215','ARTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229181445,229203102,'NM_022786','ARV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23627642,23683337,'NM_001143778','ASAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',76157145,76170704,'NR_026546','ASB17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153571675,153798948,'NM_018489','ASH1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',195319879,195382447,'NM_001206846','ASPM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',175096825,175400647,'NM_004319','ASTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1437772,1459930,'NM_001170536','ATAD3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1397026,1421445,'NM_031921','ATAD3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1374931,1395401,'NM_001039211','ATAD3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',210848616,210860739,'NM_001206485','ATF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',160002657,160200484,'NM_007348','ATF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',63022364,63103529,'NM_178221','ATG4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',17185039,17211010,'NM_001141973','ATP13A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',116727514,116748919,'NM_001160234','ATP1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',116749562,116762704,'NR_024126','ATP1A1OS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158352143,158379998,'NM_000702','ATP1A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158387975,158423391,'NM_144699','ATP1A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',167342570,167368584,'NM_001677','ATP1B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201862537,201979832,'NM_001684','ATP2B4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111793265,111806048,'NM_001688','ATP5F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44213188,44216559,'NM_001039457','ATP6V0B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',196758974,196776698,'NM_133326','ATP6V1G3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152566899,152590404,'NM_020452','ATP8B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46873297,46904137,'NM_001243728','ATPAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46910083,46911843,'NM_001145474','ATPAF1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28435188,28437203,'NM_178191','ATPIF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109828083,109836943,'NM_153340','ATXN7L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218506143,218507680,'NR_001587','AURKAPS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204390905,204398105,'NM_000707','AVPR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',177601477,177790493,'NM_144696','AXDND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',233677155,233734404,'NM_152490','B3GALNT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',191414482,191422366,'NM_003783','B3GALT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1157491,1160283,'NM_080605','B3GALT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44217460,44229430,'NM_003780','B4GALT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159407723,159414382,'NM_003779','B4GALT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31965304,32002235,'NM_001703','BAI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',90950166,90955382,'NM_020063','BARHL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',210926381,210939950,'NM_018664','BATF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154878363,154889888,'NM_198427','BCAN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',93799936,93919973,'NM_003567','BCAR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114911703,114925788,'NM_005872','BCAS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',85504047,85515175,'NM_003921','BCL10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114220958,114231692,'NM_001010922','BCL2L15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',145479805,145564639,'NM_004326','BCL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',48966126,49015134,'NM_024603','BEND5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45021843,45026013,'NM_153274','BEST4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154478574,154479747,'NM_199173','BGLAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',167603817,167632404,'NM_003666','BLZF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39729904,39768128,'NM_181809','BMP8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39996489,40027120,'NM_001720','BMP8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149275652,149286700,'NM_001159642','BNIPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148137778,148138972,'NM_016074','BOLA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218297446,218329814,'NM_006085','BPNT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',92187515,92252573,'NM_207189','BRDT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',220952528,220972729,'NM_144695','BROX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166152536,166172931,'NM_001143674','BRP44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32603291,32632649,'NM_018045','BSDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',55237204,55247053,'NM_057176','BSND'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45046740,45052388,'NM_001136537','BTBD19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',92318449,92385986,'NM_183242','BTBD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52294444,52328976,'NM_001136497','BTF3L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201541286,201545352,'NM_006763','BTG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',242582559,242619016,'NM_001012970','C1orf100'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',242691295,242870285,'NM_173807','C1orf101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',170656450,170704592,'NM_139240','C1orf105'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199127249,199151487,'NM_018265','C1orf106'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',37919828,37928779,'NM_017850','C1orf109'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',161090710,161105229,'NM_178550','C1orf110'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',160610138,160613268,'NM_182581','C1orf111'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',168031173,168088853,'NM_018186','C1orf112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',167630737,167663294,'NM_021179','C1orf114'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218930250,218939122,'NM_024709','C1orf115'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205258488,205272724,'NM_023938','C1orf116'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',38046059,38047713,'NM_001142726','C1orf122'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53452359,53458877,'NM_017887','C1orf123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229540304,229556612,'NM_032018','C1orf124'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15310897,15351547,'NR_027136','C1orf126'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',10929116,10964681,'NM_001170754','C1orf127'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',169171235,169300530,'NM_001163629','C1orf129'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24755153,24808405,'NM_001010980','C1orf130'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229426131,229443547,'NM_152379','C1orf131'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',208471426,208474089,'NR_024337','C1orf133'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26033083,26058435,'NM_024037','C1orf135'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',219569892,219576261,'NR_024236','C1orf140'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',67330446,67366808,'NM_001013674','C1orf141'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16566169,16597227,'NM_001114600','C1orf144'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',92456160,92483955,'NM_001012425','C1orf146'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245779073,245806471,'NM_145278','C1orf150'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19796057,19857536,'NM_001204089','C1orf151-NBL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12728749,12743689,'NM_152290','C1orf158'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1007060,1041599,'NM_017891','C1orf159'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111818126,111822657,'NM_174896','C1orf162'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',56957064,57057957,'NM_001004303','C1orf168'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',900441,907336,'NR_027693','C1orf170'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27148633,27159488,'NM_152365','C1orf172'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',74806382,74912010,'NM_001002912','C1orf173'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3795556,3806717,'NM_207356','C1orf174'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',55044323,55080525,'NM_152607','C1orf177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',84866500,84873291,'NR_027379','C1orf180'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154573728,154583409,'NM_144627','C1orf182'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',112066208,112083569,'NM_019099','C1orf183'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',51340493,51386342,'NM_001136508','C1orf185'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204405494,204455270,'NM_001007544','C1orf186'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11674367,11702923,'NM_198545','C1orf187'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152438471,152445433,'NM_001010979','C1orf189'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46441592,46459515,'NM_001013615','C1orf190'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159601144,159604288,'NM_001013625','C1orf192'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109450095,109458002,'NM_001122961','C1orf194'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229039487,229071958,'NM_001136494','C1orf198'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9635254,9637231,'NR_027045','C1orf200'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24556075,24612849,'NM_001199013','C1orf201'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158070887,158091761,'NM_001134233','C1orf204'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',182622772,182864778,'NM_030806','C1orf21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43520143,43523837,'NM_182517','C1orf210'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35088549,35097233,'NM_001164824','C1orf212'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23568297,23570917,'NR_033691','C1orf213'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35952063,35957377,'NM_152374','C1orf216'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',176778553,176784647,'NR_033186','C1orf220'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',160615319,160620125,'NM_001135240','C1orf226'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',211070107,211087614,'NM_001024601','C1orf227'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44912980,44963850,'NM_001145636','C1orf228'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245340084,245342342,'NM_207401','C1orf229'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',184611512,184657126,'NM_001164245','C1orf27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',232575836,232586418,'NM_001206641','C1orf31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226355050,226357645,'NM_024319','C1orf35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28071641,28085780,'NM_001105556','C1orf38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152445806,152459897,'NM_015449','C1orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',176748834,176758412,'NM_032126','C1orf49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43005502,43014000,'NM_024097','C1orf50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148521852,148526125,'NM_144697','C1orf51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',85488224,85497943,'NR_024113','C1orf52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',196138304,196143120,'NM_001024594','C1orf53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148511806,148519959,'NM_024579','C1orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224237025,224253689,'NM_152608','C1orf55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149286882,149290495,'NM_017860','C1orf56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154640678,154665808,'NM_006365','C1orf61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',25441326,25446572,'NM_020317','C1orf63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16203317,16205771,'NM_178840','C1orf64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',221633337,221635435,'NM_152610','C1orf65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150958621,150959529,'NM_001024679','C1orf68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1460020,1465603,'NM_001114748','C1orf70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',208022284,208024513,'NM_152485','C1orf74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154529107,154532073,'NM_144580','C1orf85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2105758,2129032,'NM_001146310','C1orf86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',60228653,60312030,'NM_152377','C1orf87'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111690717,111697162,'NM_181643','C1orf88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',170768882,170847596,'NM_014283','C1orf9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2508048,2512768,'NM_001195741','C1orf93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',34415139,34457318,'NM_001134734','C1orf94'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224803123,224863538,'NM_001003665','C1orf95'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',227523374,227545311,'NM_145257','C1orf96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',198578294,198609543,'NR_040064','C1orf98'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22835704,22838762,'NM_015991','C1QA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22852268,22860616,'NM_000491','C1QB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22842704,22847190,'NM_172369','C1QC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150076962,150079657,'NM_001136003','C2CD4D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205344229,205384940,'NM_000715','C4BPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205329206,205339960,'NM_000716','C4BPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',57093030,57156482,'NM_000562','C8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',57167470,57204276,'NM_000066','C8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148496841,148504102,'NM_012113','CA14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',8928508,8957735,'NM_001215','CA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',64709063,64931329,'NM_020925','CACHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',179719308,180042543,'NM_000721','CACNA1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199275262,199348317,'NM_000069','CACNA1S'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',173235514,173247786,'NM_014412','CACYBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157408000,157439556,'NM_021189','CADM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1836125,1838593,'NM_138705','CALML6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',207823667,207853907,'NM_020439','CAMK1G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20681470,20685315,'NM_018584','CAMK2N1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',198975308,199096454,'NM_203459','CAMSAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6767970,6854694,'NM_001195563','CAMTA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40278841,40310908,'NM_006367','CAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',221966741,222030343,'NM_001748','CAPN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',221781594,221920059,'NM_001143962','CAPN8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',228949752,229004141,'NM_006615','CAPN9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',112963597,113015764,'NM_006135','CAPZA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19537853,19684653,'NM_004930','CAPZB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15691355,15723527,'NM_001229','CASP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158426908,158438300,'NM_001231','CASQ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',116044148,116112949,'NM_001232','CASQ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',10629856,10779294,'NM_017766','CASZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26389705,26401620,'NM_198137','CATSPER4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52588852,52604465,'NM_032449','CC2D1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89174043,89231231,'NM_001008662','CCBL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45732184,45738338,'NR_033296','CCDC163P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45858302,45862318,'NM_001114938','CCDC17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',93418868,93516875,'NM_206886','CCDC18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158108777,158136530,'NM_012337','CCDC19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43045309,43055646,'NM_199342','CCDC23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44229866,44234785,'NM_152499','CCDC24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3658824,3678069,'NM_152492','CCDC27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32438788,32443578,'NM_024296','CCDC28B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',42773146,42892922,'NM_001080850','CCDC30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100371293,100388642,'NM_019083','CCDC76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1310953,1324581,'NM_030937','CCNL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154545375,154574830,'NM_005998','CCT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',117345904,117380690,'NM_004258','CD101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144407154,144426922,'NM_007053','CD160'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27578182,27582392,'NM_207397','CD164L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156490550,156494682,'NM_001763','CD1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156564363,156567945,'NM_001764','CD1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156526186,156531188,'NM_001765','CD1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156416360,156422840,'NM_001766','CD1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156590109,156593967,'NM_001185113','CD1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',117098608,117113374,'NM_001767','CD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159066573,159099316,'NM_001166664','CD244'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',165666500,165754471,'NM_198053','CD247'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',206126505,206151306,'NM_001773','CD34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205992005,206035484,'NM_002389','CD46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158915159,158948209,'NM_001778','CD48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26516997,26519601,'NM_001803','CD52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111217244,111244081,'NM_000560','CD53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205561439,205600934,'NM_001114752','CD55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',116858678,116915238,'NM_001779','CD58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156067327,156078258,'NM_005894','CD5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158777507,158815930,'NM_003874','CD84'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20788030,20817987,'NM_001785','CDA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100590610,100758421,'NM_003672','CDC14A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43597212,43601460,'NM_001255','CDC20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22251706,22289883,'NM_044472','CDC42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',225244188,225572449,'NM_003607','CDC42BPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149290070,149298749,'NM_020239','CDC42SE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',91739252,91763909,'NM_001134420','CDC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',191357710,191490565,'NM_024529','CDC73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',37930745,37947978,'NM_018101','CDCA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54377255,54392031,'NM_201546','CDCP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1624029,1645651,'NM_033529','CDK11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1560962,1645635,'NM_033493','CDK11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203740306,203768544,'NM_212502','CDK18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',51208229,51212897,'NM_078626','CDKN2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15655809,15671173,'NM_033440','CELA2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15675182,15690482,'NM_015849','CELA2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22200735,22211622,'NM_005747','CELA3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22176004,22188434,'NM_007352','CELA3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149939157,149955416,'NM_001172648','CELF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109594163,109619901,'NM_001408','CELSR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',212843154,212904537,'NM_016343','CENPF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172035310,172060400,'NM_033319','CENPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3718504,3763657,'NM_014704','CEP104'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',241354352,241485331,'NM_014812','CEP170'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',178190530,178350638,'NM_014810','CEP350'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26433279,26477886,'NM_022778','CEP85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111484355,111529247,'NM_006090','CEPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149204272,149214103,'NM_022075','CERS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',194887630,194937318,'NM_001014975','CFH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',195055483,195067942,'NM_002113','CFHR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',195179556,195194979,'NM_005666','CFHR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',195010552,195029826,'NM_001166624','CFHR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',195123766,195154466,'NM_006684','CFHR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',195213289,195245426,'NM_030787','CFHR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149750485,149777791,'NM_020770','CGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',145180914,145234067,'NM_004284','CHD1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6084433,6162781,'NM_015557','CHD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201414681,201422545,'NM_001276','CHI3L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111571803,111587585,'NM_001025197','CHI3L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111635060,111664708,'NM_201653','CHIA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201451829,201465483,'NM_003465','CHIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',239858789,239865855,'NM_001821','CHML'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',237858995,238139340,'NM_000740','CHRM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152806880,152818977,'NM_000748','CHRNB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151873081,151885406,'NM_015607','CHTOP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',41099314,41100605,'NM_133467','CITED4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153213741,153218349,'NR_024163','CKS1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',86707113,86738562,'NM_001285','CLCA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',86662356,86694828,'NM_006536','CLCA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',86872546,86893647,'NR_024604','CLCA3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',86785346,86819020,'NR_024602','CLCA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109273652,109307634,'NM_001048210','CLCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11788793,11810862,'NM_021737','CLCN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16221072,16233132,'NM_004070','CLCNKA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16242833,16256390,'NM_000085','CLCNKB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',42971350,42978512,'NM_001123395','CLDN19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24944346,25043402,'NM_013943','CLIC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153499282,153509905,'NM_003993','CLK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35970299,36008138,'NM_022111','CLSPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9711665,9807137,'NM_014944','CLSTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47572055,47617098,'NM_016308','CMPK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',222870801,222994872,'NM_152495','CNIH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',222611217,222630318,'NM_014184','CNIH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26376568,26388962,'NR_023345','CNKSR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',95135094,95165323,'NM_001839','CNN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24073046,24112404,'NM_001841','CNR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',244796261,244898507,'NM_152609','CNST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203278962,203313794,'NM_005076','CNTN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',228844824,228896354,'NM_007357','COG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',103114610,103346640,'NM_001190709','COL11A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31890434,31942355,'NM_001856','COL16A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',85967503,86394709,'NM_152890','COL24A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36333429,36338437,'NM_005202','COL8A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40538749,40555526,'NM_001852','COL9A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158525000,158579978,'NM_001098398','COPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',10432362,10434647,'NM_001302','CORT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1236827,1249909,'NM_017871','CPSF3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53434688,53452457,'NM_000098','CPT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205736095,205881733,'NM_000573','CR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205885080,205963659,'NM_175710','CR1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205694267,205729863,'NM_001006658','CR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154936023,154942232,'NM_001199723','CRABP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',195503956,195714208,'NM_001193640','CRB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150753601,150755105,'NM_019060','CRCT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152207020,152213456,'NM_130898','CREB3L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',165776874,165789680,'NM_003851','CREG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150648342,150653374,'NM_016190','CRNN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',17121031,17172061,'NM_014675','CROCC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16817337,16829988,'NR_026752','CROCCP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16666517,16691783,'NR_023386','CROCCP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157948702,157951003,'NM_000567','CRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152186771,152197756,'NM_181715','CRTC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',74943759,74971680,'NM_001889','CRYZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',115061056,115102194,'NM_001242892','CSDE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110254755,110275139,'NM_000757','CSF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36704230,36721502,'NM_172313','CSF3R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33752195,34404030,'NM_052896','CSMD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199719280,199743010,'NM_004078','CSRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',84791391,84812751,'NM_004388','CTBS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',70649488,70678122,'NM_001190463','CTH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9830920,9892903,'NM_020248','CTNNBIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',41217593,41250822,'NM_001905','CTPS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15637524,15645740,'NM_007272','CTRC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204484081,204498727,'NM_001910','CTSE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149035307,149047541,'NM_000396','CTSK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148969295,149005057,'NM_004079','CTSS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',112740322,112805309,'NM_018704','CTTNBP2NL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109838223,109844586,'NM_182580','CYB561D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201197624,201203027,'NM_016243','CYB5R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54410614,54438334,'NM_001031672','CYB5RL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155364777,155365087,'NR_001560','CYCSP52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110824910,110835414,'NR_003599','CYMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',60131567,60165011,'NM_000775','CYP2J2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47167432,47179743,'NM_000778','CYP4A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47375693,47387113,'NM_001010969','CYP4A22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47037256,47057608,'NM_000779','CYP4B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47261826,47289010,'NM_178033','CYP4X1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47305746,47356579,'NM_178134','CYP4Z1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47096492,47138734,'NR_002788','CYP4Z2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',85819031,85822236,'NM_001554','CYR61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',57236166,58488799,'NM_021080','DAB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153925508,153975424,'NM_004632','DAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157440426,157442914,'NM_002036','DARC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172060419,172094305,'NM_018122','DARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100425065,100487997,'NM_001918','DBT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166172420,166311705,'NM_018442','DCAF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158452128,158498974,'NM_015726','DCAF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32447281,32454384,'NM_001099434','DCDC2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114249437,114258231,'NM_022836','DCLRE1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153272905,153290030,'NM_152494','DCST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153257626,153272881,'NM_144622','DCST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',85556755,85816634,'NM_001134445','DDAH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15816539,15860139,'NM_032341','DDI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20850846,20860624,'NM_005216','DDOST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',160868851,161016871,'NM_006182','DDR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',112099712,112111722,'NM_007204','DDX20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',198879787,198905749,'NM_001031725','DDX59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159357391,159368880,'NM_001039712','DEDD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',222437550,222447765,'NM_003676','DEGS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40747019,40754801,'NM_022774','DEM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',195969761,196011246,'NM_001195216','DENND1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114928718,115014255,'NM_198459','DENND2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111531323,111544804,'NM_024901','DENND2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152168600,152185778,'NM_014856','DENND4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',68712422,68735387,'NM_017779','DEPDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',10443189,10455200,'NM_004401','DFFA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3763704,3791853,'NM_004402','DFFB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',55087887,55125509,'NM_014762','DHCR24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26631359,26670382,'NM_001243564','DHDDS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12550525,12600407,'NM_004753','DHRS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',181075061,181123740,'NM_001357','DHX9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',208067934,208097533,'NM_014388','DIEXF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54132448,54149347,'NM_001039716','DIO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',68284232,68289048,'NM_004675','DIRAS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229829183,230212023,'NM_001164547','DISC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',230016994,230020886,'NR_002227','DISC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',221055053,221245960,'NM_032890','DISP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',181696631,181707740,'NR_040063','DKFZP564C196'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',63787238,63788895,'NR_002771','DLEU2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35103623,35143571,'NM_001080418','DLGAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44451711,44458938,'NM_019100','DMAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46745254,46752473,'NM_172225','DMBX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',50655809,50661707,'NM_032110','DMRTA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53697659,53705746,'NM_033067','DMRTB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',223183985,223222249,'NM_144989','DNAH14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',102110154,102132887,'NR_033424','DNAJA1P5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',78243223,78255583,'NM_007034','DNAJB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6616814,6684553,'NM_018198','DNAJC11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15725938,15770815,'NM_015291','DNAJC16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',65503017,65654140,'NM_014787','DNAJC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28399376,28432129,'NM_014280','DNAJC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',37795106,37805045,'NM_003462','DNALI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',84636802,84653279,'NM_021233','DNASE2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',170077243,170648480,'NM_001136127','DNM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',170374346,170380598,'NR_038397','DNM3OS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',94107601,94117350,'NM_014597','DNTTIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',62692984,62926557,'NM_033407','DOCK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44208239,44211630,'NM_001384','DPH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',101227768,101263950,'NM_015958','DPH5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153378990,153379507,'NM_018973','DPM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166931318,166965066,'NM_001937','DPT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',97957901,98159203,'NM_001160301','DPYD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',93584065,93600736,'NM_001938','DR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111461476,111484361,'NM_178454','DRAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203378253,203447350,'NM_015375','DSTYK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',210275541,210344810,'NM_016448','DTL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',219941386,219982139,'NM_144729','DUSP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159986204,159993576,'NM_007240','DUSP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158017382,158018957,'NM_017823','DUSP23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',165330710,165365026,'NM_001080426','DUSP27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226847279,226854782,'NR_002834','DUSP5P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1260520,1274355,'NM_004421','DVL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204875503,204889165,'NM_003582','DYRK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23705506,23730299,'NM_004091','E2F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43402431,43410828,'NM_001159936','EBNA1BP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',21416326,21478770,'NM_001113347','ECE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53134169,53160034,'NM_001198961','ECHDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148747110,148752889,'NM_022664','ECM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',234625338,234714631,'NM_080738','EDARADD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',182926247,182990664,'NM_025191','EDEM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',41717032,41722931,'NM_001956','EDN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',243200253,243355153,'NM_001143943','EFCAB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',63761600,63810952,'NM_032437','EFCAB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15608977,15629426,'NM_024329','EFHD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153366972,153374010,'NM_182685','EFNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153317971,153326638,'NM_004952','EFNA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153302836,153308653,'NM_182689','EFNA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229566119,229627413,'NM_022051','EGLN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45088780,45224948,'NM_020365','EIF2B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36121396,36162486,'NM_012199','EIF2C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36169269,36294650,'NM_024852','EIF2C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36046414,36096077,'NM_017629','EIF2C4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204831597,204852527,'NM_006893','EIF2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32460557,32469792,'NM_003757','EIF3I'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',21005371,21310463,'NM_003760','EIF4G3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',50344550,50440127,'NM_001144775','ELAVL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200246312,200252938,'NM_004433','ELF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203855018,203868623,'NM_021795','ELK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43601658,43606286,'NM_022821','ELOVL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',79128036,79245083,'NM_022159','ELTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',120962432,121015209,'NR_003955','EMBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',223741156,223907468,'NM_018212','ENAH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',8843645,8861738,'NM_001428','ENO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',8861480,8862530,'NR_038351','ENO1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148866145,148868722,'NM_207168','ENSA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',29113674,29264320,'NM_001166006','EPB41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',37954232,38003411,'NM_001099439','EPHA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16323418,16355169,'NM_004431','EPHA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22762590,22802674,'NM_020526','EPHA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22909917,23114410,'NM_004442','EPHB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224064419,224099885,'NM_001136018','EPHX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',92268120,92301681,'NM_173567','EPHX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218208564,218286623,'NM_004446','EPRS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',51592522,51757583,'NM_001981','EPS15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110094224,110108167,'NM_139053','EPS8L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44459328,44593526,'NM_024066','ERI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43063835,43083247,'NM_018538','ERMAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',234445044,234511962,'NM_019891','ERO1LB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',7994365,8008980,'NM_018948','ERRFI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6407434,6443591,'NM_031475','ESPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16890299,16919239,'NR_026567','ESPNP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',214743210,214963437,'NM_001243519','ESRRG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202366812,202387930,'NM_018208','ETNK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155369599,155374801,'NM_005240','ETV3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155328458,155336224,'NM_001004341','ETV3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',92746840,93030549,'NM_005665','EVI5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',240078655,240119864,'NM_003686','EXO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229535104,229540201,'NM_175876','EXOC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11049262,11082525,'NM_002685','EXOSC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26220857,26235541,'NM_004455','EXTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',101110528,101133006,'NM_001439','EXTL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28169441,28287735,'NM_001990','EYA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159231624,159257757,'NM_016946','F11R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',195274943,195303020,'NM_001994','F13B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',94767319,94780001,'NM_001993','F3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',167747815,167822393,'NM_000130','F5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46632525,46652107,'NM_001441','FAAH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31610686,31618510,'NM_004102','FABP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',50679522,51198524,'NM_007051','FAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205143252,205161858,'NM_001193338','FAIM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',108904493,108983472,'NM_001010883','FAM102B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',183026788,183210305,'NM_052966','FAM129A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16256850,16272714,'NM_182623','FAM131C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1167688,1171965,'NM_001014980','FAM132A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24473,25944,'NR_026818','FAM138A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54847437,54861788,'NM_176782','FAM151A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52871653,52895325,'NM_001042693','FAM159A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',177978920,178051957,'NM_173509','FAM163A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32485404,32487048,'NM_032648','FAM167B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36560218,36562342,'NM_018166','FAM176B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',220977180,220990625,'NM_207468','FAM177B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43386180,43394654,'NM_001101376','FAM183A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153483619,153491898,'NM_006589','FAM189B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',113064711,113071379,'NM_182759','FAM19A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',177261696,177312325,'NM_014864','FAM20B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',243065261,243074982,'NM_198076','FAM36A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110378763,110398786,'NM_033088','FAM40A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',793313,802045,'NR_027055','FAM41C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20751518,20754100,'NM_207334','FAM43B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27204097,27211920,'NM_052943','FAM46B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',117950126,117972534,'NM_017709','FAM46C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26018983,26032020,'NM_001099627','FAM54B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',198449278,198450266,'NM_001105517','FAM58BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',175407255,175518181,'NM_021165','FAM5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',188333419,188713382,'NM_199051','FAM5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149235924,149245897,'NM_001163260','FAM63A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',93080308,93199667,'NM_001006605','FAM69A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',210864411,210866743,'NM_153606','FAM71A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204305533,204321697,'NM_001123168','FAM72A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',120640527,120657204,'NM_001100910','FAM72B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',78017896,78116669,'NM_198549','FAM73A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27925076,27962010,'NM_152660','FAM76A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',164305879,164402582,'NM_001017961','FAM78B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229221326,229242618,'NM_198552','FAM89A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',170894807,170902635,'NM_000639','FASLG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15957841,15985671,'NM_017556','FBLIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11631004,11637475,'NM_012168','FBXO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',222368413,222416372,'NM_001136115','FBXO28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16449145,16551535,'NM_018994','FBXO42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11637500,11645971,'NM_033182','FBXO44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11646736,11656996,'NM_018438','FBXO6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205197934,205210593,'NM_001122979','FCAMR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157526127,157544638,'NM_002001','FCER1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159451710,159455662,'NM_004106','FCER1G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148020873,148030698,'NM_000566','FCGR1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',120727650,120737467,'NM_001004340','FCGR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',147635917,147644921,'NR_027484','FCGR1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159741828,159755984,'NM_001136219','FCGR2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159899528,159915068,'NM_001190828','FCGR2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159817752,159836656,'NM_201563','FCGR2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159778174,159787037,'NM_001127593','FCGR3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159859611,159867876,'NM_001244753','FCGR3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27568187,27573902,'NM_173452','FCN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156030817,156056564,'NM_052938','FCRL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155982146,156013546,'NM_030764','FCRL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155914601,155937271,'NM_052939','FCRL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155810162,155834494,'NM_031282','FCRL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155749790,155788934,'NM_031281','FCRL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158038796,158052671,'NM_001004310','FCRL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159943385,159950766,'NM_001184873','FCRLA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159959080,159964557,'NM_001002901','FCRLB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153545162,153557081,'NM_001135822','FDPS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',59535212,60000990,'NM_001113411','FGGY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27811387,27834314,'NM_005248','FGR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',239727479,239749708,'NM_000143','FH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15446354,15597209,'NM_052929','FHAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',38235028,38243774,'NM_001243878','FHL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153222393,153232211,'NM_201398','FLAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150541274,150564303,'NM_002016','FLG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150587836,150599106,'NM_001014342','FLG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',178433766,178436482,'NR_026900','FLJ23867'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89862995,89871041,'NR_033981','FLJ27354'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',95712880,95717500,'NR_033966','FLJ31662'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43197306,43221616,'NR_033967','FLJ32224'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16033296,16047229,'NR_024279','FLJ37453'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',142510035,142535980,'NR_027468','FLJ39739'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53676630,53678281,'NR_002314','FLJ40434'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2966040,2974149,'NR_015440','FLJ42875'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',211098219,211139330,'NM_014053','FLVCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',211096568,211098103,'NR_027286','FLVCR1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',238321807,238705112,'NM_020066','FMN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',169484286,169521737,'NM_002021','FMO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',169421011,169448446,'NM_001460','FMO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',169326641,169353583,'NM_006894','FMO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',169550109,169577847,'NM_002022','FMO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',145124461,145163854,'NM_001144830','FMO5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',169373502,169397326,'NR_002601','FMO6P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',164839776,164861097,'NR_002925','FMO9P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201576374,201586912,'NM_002023','FMOD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',93686275,93792806,'NM_001164473','FNBP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33100455,33109001,'NM_001171940','FNDC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109057078,109086890,'NM_001144937','FNDC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47674275,47678950,'NM_004474','FOXD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',63561317,63563385,'NM_012183','FOXD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47654330,47656311,'NM_012186','FOXE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',42414796,42573490,'NM_014947','FOXJ3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',74436483,74446736,'NM_001199329','FPGT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',74436483,74782704,'NM_001112808','FPGT-TNNI3K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',99946846,100003937,'NM_001013660','FRRS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',78186178,78217365,'NM_003902','FUBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24044158,24067446,'NM_000147','FUCA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',207915292,207916358,'NM_015714','G0S2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149309703,149357631,'NM_144618','GABPB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1940627,1952052,'NM_000815','GABRD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',67923447,67926609,'NM_001199742','GADD45A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23994675,23999621,'NM_000403','GALE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',228269578,228484498,'NM_004481','GALNT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172099661,172103748,'NR_002578','GAS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152043826,152162075,'NM_020699','GATAD2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153470862,153481277,'NM_001171811','GBA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153450239,153463949,'NR_002188','GBAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89290574,89303631,'NM_002053','GBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89645825,89663081,'NR_003133','GBP1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89345897,89364387,'NM_004120','GBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89244947,89261137,'NM_018284','GBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89419418,89437221,'NM_052941','GBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89497221,89511132,'NM_052942','GBP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89602023,89626307,'NM_198460','GBP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89370021,89414311,'NM_207398','GBP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',94125177,94147600,'NM_002061','GCLM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',118207629,118273825,'NM_017686','GDAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',90231411,90233113,'NR_002830','GEMIN8P4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',92712905,92725021,'NM_005263','GFI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',233558491,233574467,'NR_036605','GGPS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',78284176,78375700,'NM_017655','GIPC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35031185,35033935,'NM_002060','GJA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',145694955,145699338,'NM_181703','GJA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',145841569,145848019,'NM_005267','GJA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39112325,39119885,'NM_030772','GJA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39100748,39119885,'NR_037633','GJA9-MYCBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35020497,35024554,'NM_001005752','GJB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',34997928,35001912,'NM_153212','GJB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',34993307,34996699,'NM_005268','GJB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226404037,226414150,'NM_020435','GJC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53744493,53972465,'NM_147193','GLIS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',92484542,92537154,'NM_053274','GLMN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',191332217,191341867,'NM_016066','GLRX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',182171588,182273486,'NM_015101','GLT25D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1250005,1254139,'NM_001029885','GLTPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',180617461,180627964,'NM_002065','GLUL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28867826,28914702,'NM_024482','GMEB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109892708,109939975,'NM_006496','GNAI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109947411,109957228,'NM_005272','GNAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1706584,1812386,'NM_002074','GNB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',67939736,68071743,'NM_018841','GNG12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',233777607,233879916,'NM_001098722','GNG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',84736593,84744850,'NM_005274','GNG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',37804999,37834173,'NM_013285','GNL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229443541,229480342,'NM_014236','GNPAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144221176,144227433,'NR_002328','GNRHR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148885324,148936296,'NM_018178','GOLPH3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202433910,202449843,'NM_198447','GOLT1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154001199,154093596,'NM_032292','GON4L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',168767886,168781553,'NM_001146039','GORAB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',165288705,165326492,'NM_005814','GPA33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',215670456,215871032,'NM_018040','GPATCH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27089565,27099549,'NM_022078','GPATCH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154830723,154837903,'NM_015590','GPATCH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45865562,45924889,'NM_021639','GPBP1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27078459,27089456,'NM_018066','GPN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',234372454,234438832,'NM_003272','GPR137B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6229992,6243622,'NM_207370','GPR153'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9087062,9111816,'NM_024980','GPR157'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166320620,166372248,'NM_153832','GPR161'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199108788,199109874,'NM_005298','GPR25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27591738,27594904,'NM_005281','GPR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200358651,200365257,'NM_004767','GPR37L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172683834,172685306,'NM_005684','GPR52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109884016,109889978,'NM_031936','GPR61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100776315,100780171,'NM_022049','GPR88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144475951,144538460,'NM_001097613','GPR89A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',145867129,145932377,'NM_016334','GPR89B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144595224,144635406,'NM_001097616','GPR89C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109221125,109274567,'NM_013296','GPSM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52840630,52847311,'NM_015696','GPX7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',238719495,238842085,'NM_022469','GREM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24518398,24563557,'NM_198174','GRHL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',37033714,37272431,'NM_000831','GRIK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26358097,26361706,'NM_024869','GRRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110031940,110037890,'NM_000561','GSTM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110012166,110028142,'NM_001142368','GSTM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110078076,110085183,'NR_024537','GSTM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110000220,110005854,'NR_024538','GSTM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110056386,110062414,'NM_000851','GSTM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89090908,89129889,'NM_001514','GTF2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',42400948,42402982,'NM_033553','GUCA2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',42391678,42394082,'NM_007102','GUCA2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226399026,226403278,'NM_001159391','GUK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224317030,224326326,'NM_002107','H3F3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224317050,224326326,'NR_002315','H3F3AP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9217449,9253981,'NM_004285','H6PD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',119712924,119738274,'NM_016527','HAO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154855709,154862141,'NM_021817','HAPLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152511662,152514975,'NM_001018837','HAX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110745399,110752069,'NM_006402','HBXIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153513997,153526262,'NM_020897','HCN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31855887,31865506,'NM_001525','HCRTR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32530294,32571811,'NM_004964','HDAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154978522,154988167,'NM_004494','HDGF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',234778927,234834464,'NM_018072','HEATR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54880014,54948527,'NR_026782','HEATR8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54880014,54980916,'NR_037640','HEATR8-TTC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45240806,45249614,'NM_024602','HECTD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',108992432,109005267,'NM_001102592','HENMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6397880,6402566,'NM_019089','HES2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6226838,6228225,'NM_001024598','HES3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',924204,925415,'NM_021170','HES4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2450043,2451544,'NM_001010926','HES5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39861689,39877935,'NM_014571','HEYL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144124547,144128902,'NM_202004','HFE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',91498910,91643014,'NM_001017975','HFM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',208568872,208916261,'NM_018194','HHAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',220762224,220788067,'NM_024746','HHIPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',70593080,70606293,'NM_001031693','HHLA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100276376,100321517,'NM_033055','HIAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114273518,114316218,'NM_152696','HIPK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148080408,148080942,'NM_003516','HIST2H2AA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148089251,148089785,'NM_001040874','HIST2H2AA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148125642,148126090,'NM_175065','HIST2H2AB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148125148,148125585,'NM_003517','HIST2H2AC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',120707556,120716365,'NR_027337','HIST2H2BA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148088382,148088964,'NR_036461','HIST2H2BC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148122633,148124856,'NM_003528','HIST2H2BE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148020868,148050552,'NM_001161334','HIST2H2BF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148078882,148079389,'NM_001005464','HIST2H3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148078882,148079389,'NM_021059','HIST2H3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148051403,148051860,'NM_001123375','HIST2H3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148070844,148071240,'NM_003548','HIST2H4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148070844,148071240,'NM_001034077','HIST2H4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226711687,226712183,'NM_033445','HIST3H2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226712430,226712882,'NM_175055','HIST3H2BB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226679168,226679649,'NM_003493','HIST3H3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',42085446,42274183,'NR_038261','HIVEP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',219119365,219125023,'NM_021958','HLX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',183970305,184426708,'NM_031935','HMCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',34102266,34102979,'NR_033264','HMGB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24000953,24024536,'NM_000191','HMGCL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',120092141,120113078,'NM_005518','HMGCS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26671488,26675720,'NM_005517','HMGN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12829847,12831165,'NM_001013631','HNRNPCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23508862,23543440,'NM_001102399','HNRNPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',243080224,243094450,'NM_031844','HNRNPU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',243070562,243076866,'NR_026778','HNRNPU-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',60053120,60114638,'NM_015888','HOOK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148937158,148959988,'NM_032132','HORMAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20941757,20985768,'NM_016287','HP1BP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33124684,33132834,'NM_002143','HPCA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39917231,39929676,'NM_016257','HPCAL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45565131,45566933,'NM_032756','HPDL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150451181,150463293,'NM_001009931','HRNR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',87152922,87336713,'NM_001134492','HS2ST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',207926147,207974918,'NM_181755','HSD11B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',161027119,161049232,'NM_016371','HSD17B7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',119851348,119859204,'NM_000862','HSD3B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',119759265,119767185,'NM_000198','HSD3B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',119908025,119916722,'NR_033781','HSD3BP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',59370195,59385067,'NR_027120','HSD52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',91873155,91881923,'NR_003130','HSP90B3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159760659,159763311,'NM_002155','HSPA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159842472,159844965,'NR_024151','HSPA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54159821,54183876,'NM_016126','HSPB11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16213109,16217872,'NM_014424','HSPB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22021323,22136337,'NM_005529','HSPG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23390974,23393809,'NM_000864','HTR1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19864366,19878642,'NM_000871','HTR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43689260,43692247,'NM_001190880','HYI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218334077,218388006,'NM_018060','IARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226420051,226436581,'NM_001010867','IBA57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6203839,6218631,'NM_012405','ICMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23757007,23758872,'NM_002167','ID3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',179324260,179326602,'NM_016545','IER5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19103360,19155413,'NM_001136265','IFFO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157246305,157291569,'NM_001206567','IFI16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',78888064,78902351,'NM_006417','IFI44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',78858675,78884418,'NM_006820','IFI44L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27865158,27871311,'NM_022872','IFI6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199426575,199464703,'NM_001164586','IGFN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',18306826,18577564,'NM_032880','IGSF21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',116918553,117011837,'NM_001542','IGSF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158327752,158335063,'NM_052868','IGSF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158163452,158182010,'NM_020789','IGSF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204710208,204736846,'NM_001193322','IKBKE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205007570,205012462,'NM_000572','IL10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',67545634,67635171,'NM_001559','IL12RB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205038837,205082950,'NM_153758','IL19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205105776,205109191,'NM_018724','IL20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24318847,24342362,'NM_021258','IL22RA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',67404756,67498238,'NM_144701','IL23R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205137410,205144107,'NM_001185158','IL24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24353233,24386352,'NM_170743','IL28RA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152644292,152708550,'NM_181359','IL6R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',165149064,165211185,'NM_199351','ILDR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151901137,151910103,'NM_004515','ILF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',61980736,62402179,'NM_176877','INADL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',38098955,38185316,'NM_005540','INPP5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',67036011,67039530,'NM_005478','INSL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155077288,155095336,'NM_014215','INSRR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151967190,152013179,'NM_023015','INTS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',210180363,210275625,'NM_015434','INTS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44185064,44206281,'NM_014652','IPO13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200064910,200120045,'NM_018085','IPO9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45932584,45989072,'NM_001145349','IPP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32443822,32446875,'NM_001160042','IQCC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154761820,154809020,'NM_178229','IQGAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',232806637,232811894,'NM_182972','IRF2BP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',208025590,208046143,'NM_001206696','IRF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',938709,939782,'NM_005101','ISG15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154959036,154964329,'NM_030980','ISG20L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144236346,144255225,'NM_003637','ITGA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',63679028,63761532,'NM_001206739','ITGB3BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159112953,159121584,'NM_017625','ITLN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159181439,159191213,'NM_080878','ITLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224886013,224993499,'NM_002221','ITPKB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151147662,151150986,'NM_005547','IVL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',183532144,183553084,'NM_006469','IVNS1ABP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',65071493,65204775,'NM_002227','JAK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',225985512,225989735,'NM_001161465','JMJD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152213368,152217075,'NM_006694','JTB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',59019050,59022373,'NM_002228','JUN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',62474424,62557671,'NM_181712','KANK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15128882,15267238,'NM_001018001','KAZN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110861361,110863320,'NM_005549','KCNA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110947298,110950498,'NM_004974','KCNA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111015832,111019178,'NM_002232','KCNA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6008659,6083840,'NM_172130','KCNAB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110554858,110578197,'NM_004978','KCNC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',112119976,112333300,'NM_004980','KCND3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',208918279,209374080,'NM_172362','KCNH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158273880,158306675,'NM_002241','KCNJ10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158317983,158325836,'NM_004983','KCNJ9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',231816372,231874881,'NM_002245','KCNK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',213323182,213477059,'NM_014217','KCNK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152936565,153109378,'NM_001204087','KCNN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',41022270,41078711,'NM_172163','KCNQ4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',194461535,194844122,'NM_198503','KCNT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',213807357,213861772,'NM_016121','KCTD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23218527,23282771,'NM_015013','KDM1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43888383,43943776,'NM_014663','KDM4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200963154,201044172,'NM_006618','KDM5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32252077,32282059,'NM_006559','KHDRBS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',173392745,173428572,'NM_001162895','KIAA0040'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19417170,19450633,'NM_015047','KIAA0090'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35671677,35795624,'NM_024874','KIAA0319L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46913417,46957323,'NM_014774','KIAA0494'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39647762,39654741,'NM_015038','KIAA0754'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154149459,154170812,'NM_014949','KIAA0907'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',92405196,92422868,'NM_015237','KIAA1107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109458107,109550926,'NM_020775','KIAA1324'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',231007260,231012715,'NM_019090','KIAA1383'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32980098,33013158,'NM_020888','KIAA1522'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',179148935,179181862,'NM_020950','KIAA1614'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1874611,1925136,'NM_001080484','KIAA1751'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',231530136,231587517,'NM_032435','KIAA1804'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11902231,11909072,'NM_138346','KIAA2013'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',198787247,198856485,'NM_014875','KIF14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20863093,20916904,'NM_020816','KIF17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',10193350,10364248,'NM_015074','KIF1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199205142,199259451,'NM_017596','KIF21B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',243384909,243933051,'NM_018012','KIF26B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44978076,45006025,'NM_006845','KIF2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',168157093,168310503,'NM_001204516','KIFAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156229686,156332468,'NM_018240','KIRREL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202426091,202432242,'NM_002256','KISS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44357108,44373396,'NM_173484','KLF17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',18680010,18685067,'NM_152375','KLHDC7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203572270,203592662,'NM_018203','KLHDC8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159334774,159336762,'NR_033385','KLHDC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201126852,201162994,'NM_021633','KLHL12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',885829,890962,'NM_198317','KLHL17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',171950702,172022463,'NM_014458','KLHL20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6573370,6585516,'NM_014851','KLHL21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',239762302,239825567,'NM_003679','KMO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46783902,46789474,'NM_001097611','KNCN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32346230,32414755,'NM_012316','KPNA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150997129,151001153,'NM_001025231','KPRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153408507,153412428,'NM_173852','KRTCAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52270364,52272060,'NM_138417','KTI12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',62433061,62450588,'NM_019079','L1TD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199616588,199635292,'NM_005558','LAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',207854840,207892297,'NM_001127641','LAMB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',181259217,181381350,'NM_002293','LAMC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',181421796,181477029,'NM_018891','LAMC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154291140,154294925,'NM_001145264','LAMTOR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',30977901,31003270,'NM_006762','LAPTM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202000906,202012103,'NM_017773','LAX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',223655826,223682438,'NM_002296','LBR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151066572,151067197,'NM_178348','LCE1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151051070,151052209,'NM_178349','LCE1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151043934,151045731,'NM_178351','LCE1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151035850,151037281,'NM_178352','LCE1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151025376,151027525,'NM_178353','LCE1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151015471,151016069,'NM_178354','LCE1F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150937463,150938542,'NM_178428','LCE2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150925222,150926500,'NM_014357','LCE2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150914394,150915673,'NM_178429','LCE2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150902495,150903759,'NM_178430','LCE2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150861933,150862203,'NM_178431','LCE3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150852910,150853198,'NM_178433','LCE3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150839761,150840186,'NM_178434','LCE3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150818483,150819604,'NM_032563','LCE3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150804753,150805872,'NM_178435','LCE3E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150948146,150948534,'NM_178356','LCE4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150749943,150751277,'NM_178438','LCE5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151081953,151083083,'NM_001128600','LCE6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32489426,32524353,'NM_005356','LCK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54247093,54256391,'NM_001010978','LDLRAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22011344,22024301,'NM_001013693','LDLRAD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',25742662,25767964,'NM_015627','LDLRAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224140604,224143469,'NM_020997','LEFTY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224190920,224195706,'NM_003240','LEFTY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151442542,151444220,'NM_001010857','LELP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203617129,203657837,'NM_001199052','LEMD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153232685,153233415,'NM_018655','LENEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',65658922,65875764,'NM_002303','LEPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',42984592,43005342,'NM_001243246','LEPRE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',65658718,65674278,'NM_017526','LEPROT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',234748136,234782902,'NM_201545','LGALS8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',234752991,234754431,'NR_034040','LGALS8-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200439527,200555512,'NM_021636','LGR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',178466055,178510811,'NM_033343','LHX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',75366706,75399806,'NM_001001933','LHX8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',196153139,196165896,'NM_020204','LHX9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26609855,26628806,'NM_024674','LIN28A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224485485,224563821,'NM_173083','LIN9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',751448,752765,'NR_024321','LINC00115'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',232831679,232837149,'NR_033927','LINC00184'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',180643378,180650571,'NR_034131','LINC00272'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202268197,202277015,'NR_027902','LINC00303'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22224293,22230302,'NR_023918','LINC00339'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',63397341,63555489,'NR_038252','LINC00466'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',209622719,209672500,'NR_026761','LINC00467'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150039388,150044506,'NM_001004432','LINGO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144188441,144210448,'NM_153713','LIX1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154351084,154374281,'NM_005572','LMNA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',87566738,87587194,'NM_006769','LMO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200132206,200182339,'NM_012134','LMOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',163437727,163592576,'NM_177398','LMX1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32599457,32600431,'NM_001167676','LOC100128071'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100865193,100885148,'NR_038914','LOC100128787'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',93830112,93838175,'NR_034091','LOC100129046'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',104417167,104421216,'NR_033990','LOC100129138'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',30964205,30972180,'NR_034182','LOC100129196'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111943151,111952463,'NR_034126','LOC100129269'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2271713,2273960,'NR_024489','LOC100129534'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',99242419,99386996,'NR_033940','LOC100129620'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43026247,43036488,'NM_001242750','LOC100129924'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',146341262,146368313,'NR_033189','LOC100130000'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',225982862,225988678,'NR_024485','LOC100130093'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46912294,46930356,'NR_038827','LOC100130197'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',236092097,236158242,'NR_027247','LOC100130331'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',842815,844680,'NR_026874','LOC100130417'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40927338,40930520,'NR_024567','LOC100130557'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',59023410,59137972,'NR_034014','LOC100131060'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',197043754,197173181,'NR_040073','LOC100131234'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',93548253,93583956,'NR_034089','LOC100131564'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157432398,157438836,'NR_037870','LOC100131825'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',313754,318444,'NR_028325','LOC100132062'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150077568,150083265,'NR_024237','LOC100132111'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',313754,318444,'NR_028322','LOC100132287'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',71284776,71305453,'NR_038420','LOC100132618'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43937995,43945599,'NR_033827','LOC100132774'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',313754,318444,'NR_028327','LOC100133331'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2485967,2487210,'NR_037844','LOC100133445'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3806827,3821871,'NR_024455','LOC100133612'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',142510035,142536110,'NR_027469','LOC100286793'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114200779,114245382,'NR_037864','LOC100287722'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229793660,229814459,'NR_034037','LOC100287814'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',690107,703931,'NR_033908','LOC100288069'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',183559601,183570794,'NR_038424','LOC100288079'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',68070558,68441258,'NR_040077','LOC100289178'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',145320537,145456323,'NR_038423','LOC100289211'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',176327265,176329751,'NR_027982','LOC100302401'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158197637,158215500,'NR_038849','LOC100505633'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153284291,153290265,'NR_040772','LOC100505666'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',87591797,87609926,'NR_038324','LOC100505768'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',163004976,163010502,'NR_038072','LOC100505795'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',212057717,212206231,'NR_037850','LOC100505832'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166636050,166658518,'NR_037851','LOC100505918'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',171470821,171712917,'NR_037845','LOC100506023'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172099008,172099703,'NR_037605','LOC100506046'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',112083985,112091943,'NR_038951','LOC100506343'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19492327,19494817,'NR_037847','LOC100506730'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',232730259,232734148,'NR_038426','LOC100506795'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',21492369,21498949,'NR_038404','LOC100506801'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',232926411,232934013,'NR_038856','LOC100506810'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23959458,23977374,'NR_038280','LOC100506963'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',41252848,41282149,'NR_037868','LOC100507178'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46776954,46808514,'NR_038403','LOC100507423'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53476869,53481043,'NR_038953','LOC100507564'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',55453668,55455716,'NR_038320','LOC100507634'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',178505420,178510439,'NR_037642','LOC100527964'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2471218,2474144,'NR_026927','LOC115110'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202604180,202605470,'NR_027022','LOC127841'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1324772,1327289,'NR_015434','LOC148413'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',206058346,206062564,'NR_026817','LOC148696'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201097504,201110992,'NR_002929','LOC148709'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245754603,245760729,'NR_027309','LOC148824'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31744425,31746754,'NR_034112','LOC149086'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245019541,245021411,'NR_015422','LOC149134'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1062259,1069297,'NR_038869','LOC254099'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',244745963,244754212,'NR_040002','LOC255654'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31756622,31762433,'NR_027085','LOC284551'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203609002,203623191,'NR_038425','LOC284576'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203790023,203792386,'NR_027086','LOC284578'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24399316,24410767,'NR_027087','LOC284632'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',180850897,180852387,'NR_036490','LOC284648'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',4371970,4384604,'NR_027088','LOC284661'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',168507169,168519973,'NR_026957','LOC284688'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',38447292,38453026,'NR_038928','LOC339442'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20558880,20627874,'NR_033887','LOC339505'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',87368035,87407474,'NR_026989','LOC339524'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',242147326,242277242,'NR_033883','LOC339529'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',236710306,236715940,'NR_015407','LOC339535'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3679211,3682406,'NM_001163724','LOC388588'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47998786,48235149,'NM_001194986','LOC388630'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',147546099,147558366,'NR_027002','LOC388692'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45542168,45543878,'NR_024270','LOC400752'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',163712702,163817965,'NR_026744','LOC400794'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201222202,201243016,'NR_036557','LOC401980'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',34107143,34123646,'NR_038372','LOC402779'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13105546,13106913,'NM_001136561','LOC440563'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110630520,110683316,'NR_036595','LOC440600'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',163934610,163945823,'NR_036683','LOC440700'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',188860642,189037411,'NR_033922','LOC440704'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1343662,1346687,'NM_001243536','LOC441869'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201060951,201062044,'NR_038135','LOC641515'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',207668790,207672515,'NM_001104548','LOC642587'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',113540926,113550398,'NR_038846','LOC643441'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',217320939,217413753,'NR_038845','LOC643723'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',752926,779603,'NR_015368','LOC643837'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1523250,1525339,'NM_001242659','LOC643988'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',119941847,119943437,'NR_036540','LOC644242'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27522951,27525603,'NR_033926','LOC644961'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',147194909,147218219,'NR_027356','LOC645166'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153798395,153800359,'NR_027023','LOC645676'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156368457,156377054,'NR_033946','LOC646268'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26019031,26022684,'NR_024498','LOC646471'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246969339,246969774,'NM_001085474','LOC646627'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',103913548,103915531,'NR_024438','LOC648740'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12829822,12830824,'NM_001146181','LOC649330'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35213886,35216894,'NR_037869','LOC653160'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',143387793,143391382,'NR_037182','LOC653513'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28294032,28295656,'NR_027268','LOC653566'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',37693066,37712631,'NR_038842','LOC728431'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3900531,3912503,'NR_040065','LOC728716'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',143011868,143052130,'NR_024510','LOC728855'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',143011873,143053112,'NR_024584','LOC728875'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144957518,144981223,'NR_024442','LOC728989'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23209913,23214930,'NM_001242521','LOC729059'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',126560,130429,'NR_039983','LOC729737'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',95166171,95201414,'NR_033998','LOC729970'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',176241897,176273765,'NR_037167','LOC730102'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',171871283,171872895,'NM_001195190','LOC730159'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201534508,201541076,'NR_034150','LOC730227'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',241286238,241331669,'NR_029401','LOC731275'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151498802,151501224,'NM_000427','LOR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',85051673,85131484,'NM_012152','LPAR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',209983421,210070737,'NM_014873','LPGAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',82038669,82230695,'NM_012302','LPHN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',99502435,99547726,'NM_014839','LPPR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',99128388,99243037,'NM_001037317','LPPR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111291334,111308089,'NM_018372','LRIF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',113417353,113468865,'NM_014813','LRIG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53480629,53566409,'NM_033300','LRP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13674031,13712829,'NM_001010847','LRRC38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100387000,100416359,'NM_144620','LRRC39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',70383072,70443949,'NM_017768','LRRC40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46516658,46541625,'NM_006369','LRRC41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54184624,54206427,'NM_052940','LRRC42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3686643,3702928,'NM_020710','LRRC47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',163780101,163799809,'NM_001005214','LRRC52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',69998445,70361759,'NM_020794','LRRC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155157047,155169504,'NM_144702','LRRC71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89796859,89836008,'NM_015350','LRRC8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89871231,89957682,'NM_032270','LRRC8C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',90059160,90174577,'NM_001134479','LRRC8D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',74264289,74436459,'NM_001105659','LRRIQ3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202852925,202921220,'NM_201630','LRRN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36631617,36636080,'NM_032881','LSM10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23283102,23367938,'NM_033631','LUZP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159032551,159064669,'NM_002348','LY9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23990232,23994616,'NM_007260','LYPLA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',217413814,217452830,'NM_138794','LYPLAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149398847,149405048,'NM_001136543','LYSMD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',233890968,234096843,'NM_000081','LYST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9912362,9925413,'NM_032368','LZIC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',116455898,116479384,'NM_152367','MAB21L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39319675,39725397,'NM_012090','MACF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11657123,11674265,'NM_001127325','MAD2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',165225142,165258071,'NM_032858','MAEL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',113734997,114030068,'NM_001142782','MAGI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53465151,53476870,'NM_002370','MAGOH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',117711607,117869843,'NM_006699','MAN1A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',25816545,25983845,'NM_020379','MAN1C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',38032360,38039865,'NM_001113482','MANEAL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',240225414,240229008,'NM_001004343','MAP1LC3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27554256,27565924,'NM_004672','MAP3K6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36394389,36419028,'NM_018067','MAP7D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204924987,204974253,'NM_004759','MAPKAPK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32572026,32574421,'NM_023009','MARCKSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218768190,218904422,'NM_018650','MARK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11027441,11029883,'NM_139208','MASP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46041871,46274383,'NM_015112','MAST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',30956710,30969019,'NM_002379','MATN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148813650,148818838,'NM_182763','MCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',85163853,85235384,'NM_153259','MCOLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',85256352,85286757,'NM_018298','MCOLN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202752129,202793871,'NM_002393','MDM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23826410,23839643,'NR_027042','MDS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',37730762,37752951,'NM_022756','MEAF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',29391971,29430041,'NM_016011','MECR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28528099,28535065,'NM_001127350','MED18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43622174,43628070,'NM_052877','MED8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154700142,154737153,'NM_005920','MEF2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3394365,3517919,'NM_001409','MEGF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',168381811,168403547,'NM_001136107','METTL11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',170017383,170033479,'NM_015935','METTL13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',168028295,168030655,'NM_033418','METTL18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154308427,154318413,'NM_001093725','MEX3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',17173585,17180668,'NM_001135247','MFAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11962824,11996159,'NM_014874','MFN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40193370,40208215,'NM_032793','MFSD2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203804734,203838669,'NM_181644','MFSD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47670392,47672900,'NR_026878','MGC12982'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',78467870,78607735,'NR_027310','MGC27382'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',167022802,167028750,'NR_024160','MGC4473'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',163866733,163891996,'NM_004528','MGST3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',220858066,220907974,'NM_198551','MIA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1541107,1555853,'NM_001170689','MIB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',67163165,67226890,'NM_020948','MIER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12001885,12014693,'NM_021933','MIIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19796057,19828902,'NM_001204082','MINOS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',65296704,65296779,'NR_029516','MIR101-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229222196,229222293,'NR_031593','MIR1182'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200044361,200044453,'NR_031599','MIR1231'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',68421788,68421881,'NR_031664','MIR1262'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',191372255,191372336,'NR_031691','MIR1278'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',169337492,169337571,'NR_031627','MIR1295'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203684052,203684149,'NR_029893','MIR135B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',98284213,98284315,'NR_029679','MIR137'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',234082922,234082983,'NR_031718','MIR1537'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',197094795,197094905,'NR_029626','MIR181A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',197094624,197094734,'NR_029612','MIR181B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',71305901,71305987,'NR_029707','MIR186'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152432764,152432843,'NR_030600','MIR190B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218358121,218358206,'NR_029711','MIR194-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109943037,109943112,'NR_029583','MIR197'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26753619,26753671,'NR_031740','MIR1976'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',170380297,170380407,'NR_029618','MIR199A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1093105,1093195,'NR_029834','MIR200A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1092346,1092441,'NR_029639','MIR200B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',207672100,207672210,'NR_029622','MIR205'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',170374560,170374670,'NR_029627','MIR214'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218357817,218357927,'NR_029628','MIR215'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',98283386,98283495,'NR_039604','MIR2682'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',206042410,206042491,'NR_029518','MIR29B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',206041819,206041907,'NR_029832','MIR29C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40995542,40995631,'NR_029833','MIR30C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40992613,40992705,'NR_029846','MIR30E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23243384,23243452,'NR_036057','MIR3115'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',66866710,66866788,'NR_036060','MIR3117'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',168387142,168387227,'NR_036064','MIR3119-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',168387142,168387227,'NR_036065','MIR3119-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',170374570,170374651,'NR_036066','MIR3120'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',178674071,178674148,'NR_036067','MIR3121'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',210317577,210317650,'NR_036068','MIR3122'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',239362194,239362269,'NR_036069','MIR3123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',247087198,247087265,'NR_036070','MIR3124'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',117015893,117015972,'NR_031564','MIR320B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',222511328,222511466,'NR_031574','MIR320B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9134313,9134423,'NR_029610','MIR34A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33570580,33570680,'NR_037400','MIR3605'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226351586,226351665,'NR_037415','MIR3620'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',164143781,164143837,'NR_037431','MIR3658'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',38327489,38327588,'NR_037432','MIR3659'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',65296025,65296113,'NR_037443','MIR3671'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16747995,16748069,'NR_037446','MIR3675'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24128146,24128224,'NR_039615','MIR378F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245431891,245431985,'NR_037480','MIR3916'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26105439,26105532,'NR_037481','MIR3917'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3034398,3034459,'NR_036215','MIR4251'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6412480,6412543,'NR_036218','MIR4252'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23062238,23062306,'NR_036214','MIR4253'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31996847,31996923,'NR_036216','MIR4254'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',37399750,37399822,'NR_036217','MIR4255'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',112805914,112805978,'NR_036210','MIR4256'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148791028,148791114,'NR_036211','MIR4257'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153214792,153214883,'NR_036212','MIR4258'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',207863411,207863478,'NR_036213','MIR4260'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1094247,1094330,'NR_029957','MIR429'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',5546717,5546790,'NR_039612','MIR4417'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',30984589,30984666,'NR_039616','MIR4420'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',55463901,55463984,'NR_039618','MIR4422'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',85372064,85372144,'NR_039619','MIR4423'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',176913506,176913592,'NR_039622','MIR4424'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',231826520,231826588,'NR_039625','MIR4427'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12174348,12174426,'NR_039775','MIR4632'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',160393520,160393596,'NR_039798','MIR4654'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226716397,226716476,'NR_039812','MIR4666'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',232508835,232508908,'NR_039818','MIR4671'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',241576100,241576180,'NR_039824','MIR4677'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22918596,22918678,'NR_039832','MIR4684'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',5845318,5845388,'NR_039838','MIR4689'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19082274,19082361,'NR_039844','MIR4695'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',59971486,59971556,'NR_039861','MIR4711'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',194818165,194818234,'NR_039888','MIR4735'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',222652551,222652636,'NR_039896','MIR4742'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',233419971,233420054,'NR_039908','MIR4753'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54292339,54292415,'NR_039942','MIR4781'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',64818117,64818192,'NR_039957','MIR4794'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',175265121,175265204,'NR_030163','MIR488'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',41292368,41493117,'NR_039970','MIR5095'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',102103142,102582572,'NR_039672','MIR548AI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',213146071,213334022,'NR_031644','MIR548F3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',105130113,105476802,'NR_031679','MIR548H3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3467119,3467214,'NR_030277','MIR551A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100519384,100519452,'NR_030279','MIR553'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149784895,149784991,'NR_030280','MIR554'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153582764,153582860,'NR_030282','MIR555'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',160578959,160579054,'NR_030283','MIR556'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166611385,166611483,'NR_030284','MIR557'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218440506,218440584,'NR_031705','MIR664'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',94084975,94085055,'NR_030621','MIR760'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52074603,52074662,'NR_031580','MIR761'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155172546,155172660,'NR_030527','MIR765'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154656756,154656845,'NR_029691','MIR9-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',164390603,164390659,'NR_030626','MIR921'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153431591,153431687,'NR_030281','MIR92B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',117438787,117438873,'NR_030640','MIR942'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224478005,224480136,'NM_031944','MIXL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46795676,46842553,'NR_024176','MKNK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149298774,149307597,'NM_006818','MLLT11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45738442,45749326,'NM_015506','MMACHC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2511940,2554341,'NM_033467','MMEL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1558021,1559890,'NR_002946','MMP23A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1557422,1559893,'NM_006983','MMP23B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157067791,157085894,'NM_002432','MNDA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46845973,46855150,'NM_201403','MOB3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2242555,2312853,'NM_024848','MORN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',219026661,219054364,'NM_022746','MOSC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218988298,219024219,'NM_017898','MOSC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',113018570,113044891,'NM_020963','MOV10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43576061,43592722,'NM_005373','MPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159541148,159546386,'NM_000530','MPZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',165957810,166027780,'NM_001146191','MPZL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',179269183,179297697,'NM_001531','MR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1327138,1332556,'NM_017971','MRPL20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154973717,154977547,'NM_024540','MRPL24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54438427,54456644,'NM_016491','MRPL37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226361002,226363636,'NM_181456','MRPL55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149998746,150002664,'NM_031420','MRPL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',173248716,173259214,'NM_022100','MRPS14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36693948,36702627,'NM_031280','MRPS15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148532892,148547443,'NM_031901','MRPS21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19450661,19459209,'NM_016183','MRTO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',76035143,76151511,'NM_002440','MSH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16844655,16849502,'NR_027504','MST1P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16953987,16963562,'NR_002729','MST1P9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153846630,153851382,'NM_018116','MSTO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153982232,153987993,'NR_024117','MSTO2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',38047825,38097879,'NM_005955','MTF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',93317379,93377226,'NM_001164392','MTF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11768373,11788747,'NM_005957','MTHFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148167166,148174890,'NM_181873','MTMR11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32469847,32479898,'NR_026850','MTMR9LP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11089174,11245195,'NM_004958','MTOR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',235025203,235133904,'NM_000254','MTR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153445113,153450238,'NM_002455','MTX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153424923,153429330,'NM_001204295','MUC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20698527,20707261,'NM_024544','MUL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45567500,45578729,'NM_012222','MUTYH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1277933,1283778,'NM_032348','MXRA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201403561,201411565,'NM_004997','MYBPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109636509,109651186,'NM_001010985','MYBPHL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39100748,39111637,'NR_037632','MYCBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40137870,40140274,'NM_005376','MYCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',169871179,169888396,'NM_000261','MYOC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201318879,201322000,'NM_002479','MYOG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24255117,24311252,'NM_152372','MYOM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',58892998,58938335,'NM_001085487','MYSM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1672530,1700157,'NM_001198993','NADK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45822246,45857165,'NM_002482','NASP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199884072,200062725,'NM_020443','NAV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19842309,19857536,'NM_182744','NBL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16762998,16812569,'NM_017940','NBPF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144004727,144080041,'NM_001039703','NBPF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144743898,144793990,'NM_183372','NBPF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',146470265,146492472,'NM_015383','NBPF14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',146824811,146862891,'NM_001170755','NBPF15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',146843980,146862891,'NM_001102663','NBPF16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',146042423,146076705,'NM_001101663','NBPF24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',21639217,21683980,'NM_032264','NBPF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',108567485,108588226,'NM_001143989','NBPF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',108794426,108814783,'NM_001143988','NBPF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',120178910,120189302,'NM_001047980','NBPF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',143326315,143540167,'NM_001037675','NBPF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35795979,35804967,'NM_014284','NCDN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',181791319,181826679,'NM_001127651','NCF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158579686,158595366,'NM_015331','NCSTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159438560,159450808,'NM_001166159','NDUFS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39264553,39272895,'NM_001184979','NDUFS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16639753,16659171,'NM_018090','NECAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',71641212,72520865,'NM_173808','NEGR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',209898221,209915595,'NM_001204182','NEK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',196392730,196558171,'NM_133494','NEK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',210672851,210686344,'NM_013349','NENF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154905179,154913813,'NM_006617','NES'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',78126787,78182166,'NM_001172309','NEXN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203064404,203212897,'NM_001160333','NFASC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',61320121,61701048,'NM_001145512','NFIA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40929828,41009862,'NM_001142588','NFYC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',115630059,115682380,'NM_002506','NGF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158603484,158609262,'NM_005598','NHLH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',116180521,116185270,'NM_005599','NHLH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',234205754,234295104,'NM_002508','NID1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24614831,24672060,'NM_020448','NIPAL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159354531,159357608,'NM_001185094','NIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31425178,31485321,'NM_024522','NKAIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245647973,245679029,'NM_001127462','NLRP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',167368396,167603810,'NM_197972','NME7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9926072,9968143,'NM_022787','NMNAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',181483994,181654257,'NM_015039','NMNAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',869445,884542,'NM_015658','NOC2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6503993,6537245,'NM_024654','NOL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',160306204,160606437,'NM_014697','NOS1AP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',120255698,120413840,'NM_024408','NOTCH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',143920467,143997269,'NM_203458','NOTCH2NL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',5845456,5975120,'NM_015102','NPHP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',177786296,177811707,'NM_014625','NPHS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',181025206,181066142,'NM_001200051','NPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11828353,11830427,'NM_006172','NPPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11822962,11830260,'NR_037806','NPPA-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11840107,11841579,'NM_002521','NPPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151917787,151933092,'NM_000906','NPR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27110561,27113154,'NM_021969','NR0B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159466079,159474624,'NM_005122','NR1I3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',198263392,198413173,'NM_003822','NR5A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',115048607,115061038,'NM_002524','NRAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52027453,52117197,'NM_001101662','NRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',210966117,211031762,'NM_001042549','NSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46578976,46603277,'NM_199044','NSUN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39897379,39910297,'NM_032526','NT5C1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',107484267,107825998,'NM_014917','NTNG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',231152992,231180842,'NM_032324','NTPCR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155097294,155118266,'NM_002529','NTRK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203537813,203557506,'NM_030952','NUAK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203948569,203985995,'NM_022731','NUCKS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27120810,27145474,'NM_006600','NUDC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144297849,144300792,'NM_001012758','NUDT17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',161558346,161592177,'NM_031423','NUF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',227643666,227710711,'NM_018230','NUP133'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152231789,152394216,'NM_001159484','NUP210L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',222481658,222584514,'NM_002533','NVL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150005754,150010430,'NM_016178','OAZ3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226462483,226633198,'NM_001098623','OBSCN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',184636326,184637210,'NM_022375','OCLM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',86585094,86634613,'NM_001184765','ODF2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',102040714,102235378,'NM_058170','OLFM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',160219605,160260268,'NM_015441','OLFML2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114323552,114326398,'NM_020190','OLFML3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',58718978,58785034,'NM_145243','OMA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',239823074,239870324,'NM_014322','OPN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',29011240,29062795,'NM_000911','OPRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201729893,201744700,'NM_014359','OPTC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157676135,157677224,'NM_012351','OR10J1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157550083,157551073,'NM_001004467','OR10J3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157771491,157772421,'NM_001004469','OR10J5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156701975,156702917,'NM_001004473','OR10K1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156656341,156657280,'NM_001004476','OR10K2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156716291,156717299,'NM_001004472','OR10R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156634935,156635880,'NM_001004475','OR10T2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156815332,156816313,'NM_001004477','OR10X1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156842852,156843794,'NM_001004478','OR10Z1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246070852,246071821,'NM_001001959','OR11L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245902042,245902966,'NM_001005487','OR13G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246044724,246045654,'NM_001001966','OR14A16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246578699,246579638,'NM_001001918','OR14C36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246911292,246912228,'NM_001004734','OR14I1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245987386,245988331,'NM_012353','OR1C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246195256,246196264,'NM_001004491','OR2AK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245680953,245681907,'NM_001004492','OR2B11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245760056,245763764,'NM_198074','OR2C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245818284,245819238,'NM_001001915','OR2G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245835510,245836440,'NM_001001914','OR2G3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246751570,246752521,'NM_001013355','OR2G6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246167115,246330847,'NM_175911','OR2L13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246220191,246221116,'NR_002145','OR2L1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246268096,246269230,'NM_001004686','OR2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246290606,246291545,'NM_001004687','OR2L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246178782,246179721,'NM_001001963','OR2L8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246352060,246352705,'NR_002141','OR2M1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246409910,246410954,'NM_001004688','OR2M2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246432992,246433931,'NM_001004689','OR2M3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246468853,246469789,'NM_017504','OR2M4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246375072,246376011,'NM_001004690','OR2M5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246553554,246554493,'NM_001004691','OR2M7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246635918,246637028,'NM_030904','OR2T1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246822753,246823692,'NM_001004693','OR2T10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246856101,246857052,'NM_001001964','OR2T11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246524540,246525503,'NM_001004692','OR2T12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246682721,246683696,'NM_001004136','OR2T2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246879854,246880808,'NM_001001824','OR2T27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246788467,246789415,'NM_001004694','OR2T29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246703274,246704231,'NM_001005495','OR2T3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246502776,246503739,'NM_001004695','OR2T33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246803724,246804681,'NM_001001821','OR2T34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246868210,246869182,'NM_001001827','OR2T35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246591505,246592552,'NM_001004696','OR2T4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246718512,246719460,'NM_001004697','OR2T5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246617532,246618459,'NM_001005471','OR2T6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246150942,246151881,'NM_001005522','OR2T8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246125511,246126456,'NM_001001957','OR2W3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245720992,245722334,'NM_001004698','OR2W5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',357521,358460,'NM_001005277','OR4F16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',357521,358460,'NM_001005221','OR4F29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',58953,59871,'NM_001005484','OR4F5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245941753,245942680,'NM_001005286','OR6F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156936091,156937066,'NM_001005279','OR6K2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156953581,156954529,'NM_001005327','OR6K3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156991229,156992261,'NM_001005184','OR6K6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157002157,157003096,'NM_001005185','OR6N1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157013095,157014049,'NM_001005278','OR6N2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156799064,156800018,'NM_001160325','OR6P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156783541,156784519,'NM_001005189','OR6Y1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52611088,52642731,'NM_004153','ORC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',51855133,52027479,'NM_148908','OSBPL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36656093,36688673,'NM_145047','OSCP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20081474,20112024,'NM_015207','OTUD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148178855,148249310,'NM_020205','OTUD7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111758459,111771922,'NM_002557','OVGP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40007783,40009607,'NM_022120','OXCT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39799071,39815108,'NM_003819','PABPC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',17404207,17445088,'NM_013358','PADI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',17265842,17318535,'NM_007365','PADI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',17448179,17483314,'NM_016233','PADI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',17507276,17563082,'NM_012387','PADI4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',17571327,17600782,'NM_207421','PADI6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26158844,26197235,'NM_000437','PAFAH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',99884018,99932685,'NM_017734','PALMD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2429834,2447895,'NM_018216','PANK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',174698929,175078593,'NM_020318','PAPPA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154479833,154484416,'NM_198406','PAQR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26060561,26070331,'NM_178422','PAQR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',7944300,7967929,'NM_001123377','PARK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224615014,224662424,'NM_001618','PARP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54995158,55002814,'NM_152268','PARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',18830086,18935219,'NM_002584','PAX7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',162795220,163087684,'NM_002585','PBX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153183179,153195191,'NM_020524','PBXIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',231186504,231498082,'NM_014801','PCNXL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159495140,159521864,'NM_001102566','PCP4L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',55277736,55303114,'NM_174936','PCSK9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',184679320,184684479,'NM_022576','PDC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',66031443,66612850,'NM_002600','PDE4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',143562783,143706379,'NM_014644','PDE4DIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',145116053,145118152,'NR_002305','PDIA3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26310242,26324626,'NM_001243532','PDIK1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13782838,13817039,'NM_006474','PDPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144439022,144475563,'NM_002614','PDZK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47421847,47428358,'NM_005764','PDZK1IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144635744,144653976,'NR_003377','PDZK1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158441748,158451786,'NM_003768','PEA15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155130146,155152850,'NM_001080471','PEAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31868049,31882805,'NR_033688','PEF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',7767349,7827824,'NM_016831','PER3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2326100,2333870,'NM_002617','PEX10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144227521,144235089,'NM_003846','PEX11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',10457589,10613405,'NM_004565','PEX14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158513222,158521565,'NM_001193644','PEX19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159336969,159354490,'NM_012394','PFDN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205293242,205317785,'NM_006212','PFKFB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',143322171,143324084,'NR_003242','PFN1P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',247167064,247179968,'NM_170725','PGBD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',228524014,228580014,'NM_024554','PGBD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111728663,111733996,'NR_029429','PGCP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',10381671,10402788,'NM_002631','PGD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151536961,151549818,'NM_052891','PGLYRP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151569220,151587646,'NM_020393','PGLYRP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',63831534,63898505,'NM_002633','PGM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28568679,28699468,'NM_001048183','PHACTR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33561810,33588086,'NM_004427','PHC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6596342,6606680,'NM_153812','PHF13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',120055941,120088372,'NM_006623','PHGDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199701244,199704922,'NM_012396','PHLDA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114041346,114103300,'NM_006608','PHTF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149530896,149566757,'NM_001198773','PI4KB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144287344,144297903,'NM_006099','PIAS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',170677219,170679853,'NM_002642','PIGC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',77327254,77457720,'NM_005482','PIGK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158264085,158268407,'NM_145167','PIGM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205168489,205186434,'NM_002644','PIGR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26987040,26997481,'NM_017837','PIGV'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202658380,202726097,'NM_002646','PIK3C2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9634376,9711759,'NM_005026','PIK3CD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46278398,46370967,'NM_003629','PIK3R3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',70157592,70158588,'NR_023916','PIN1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20832534,20850591,'NM_032409','PINK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149437644,149488631,'NM_003557','PIP5K1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23977462,23987309,'NM_020362','PITHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153525707,153537849,'NM_000298','PKLR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',88922509,89074526,'NM_006256','PKN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199519202,199568744,'NM_000299','PKP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20174510,20179519,'NM_000300','PLA2G2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20363070,20374274,'NM_001105572','PLA2G2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20311020,20318595,'NM_012400','PLA2G2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20119386,20122697,'NM_014589','PLA2G2E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20338409,20349466,'NM_022819','PLA2G2F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',185064654,185224736,'NM_024420','PLA2G4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20269287,20290981,'NM_000929','PLA2G5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2397613,2426824,'NM_014638','PLCH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',240318311,240679407,'NM_001195811','PLD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202454603,202595667,'NM_014935','PLEKHA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6448738,6502656,'NM_198681','PLEKHG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15883413,15933851,'NM_015164','PLEKHM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',891739,900347,'NM_001160184','PLEKHN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148388793,148398449,'NM_016274','PLEKHO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45038622,45044254,'NM_004073','PLK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11917310,11958186,'NM_000302','PLOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',206262210,206484288,'NM_025179','PLXNA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204063772,204085899,'NM_152491','PM20D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154449402,154476492,'NM_007221','PMF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154449402,154479747,'NM_001199661','PMF1-BGLAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153163831,153176108,'NM_006556','PMVK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24158887,24162536,'NM_017761','PNRC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53300311,53323762,'NM_001199082','PODN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',165075347,165090333,'NM_017542','POGK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149641823,149681305,'NM_207171','POGZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144303961,144322241,'NM_006468','POLR3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144167592,144181744,'NM_032305','POLR3GL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46426939,46436708,'NM_017739','POMGNT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',165564904,165663206,'NM_001198783','POU2F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',38282109,38285037,'NM_002699','POU3F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153669594,153670677,'NR_034180','POU5F1P4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',56733006,56817845,'NM_003713','PPAP2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',42694759,42698673,'NM_024664','PPCS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201286933,201314487,'NM_015053','PPFIA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',146421383,146422043,'NM_178230','PPIAL4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',143074818,143075603,'NM_001143883','PPIAL4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',143074818,143075603,'NM_001135789','PPIAL4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',146568375,146569160,'NM_001164261','PPIAL4D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',146568375,146569160,'NM_001144032','PPIAL4E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',146568375,146569160,'NM_001164262','PPIAL4F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',142558666,142559404,'NM_001123068','PPIAL4G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39977103,40002173,'NM_203456','PPIE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39760538,39797957,'NR_003929','PPIEL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',42896634,42915016,'NM_006347','PPIH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',113054138,113059473,'NM_005167','PPM1J'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159402804,159407634,'NM_000309','PPOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200584452,200824320,'NM_002481','PPP1R12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202639114,202647567,'NM_032833','PPP1R15B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28029911,28050770,'NM_138558','PPP1R8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',210525501,210601828,'NM_006243','PPP2R5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',242882974,242938957,'NM_016076','PPPDE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40310968,40335729,'NM_000310','PPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19511326,19528381,'NM_017765','PQLC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12774132,12779364,'NM_023013','PRAMEF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12875313,12880681,'NM_001039361','PRAMEF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12807054,12813851,'NM_001146344','PRAMEF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12757570,12760635,'NM_001080830','PRAMEF12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13540855,13546098,'NM_001024661','PRAMEF13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13320000,13325243,'NM_001099854','PRAMEF14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13293762,13300777,'NM_001098376','PRAMEF15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13367840,13370846,'NM_001045480','PRAMEF16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13588674,13591651,'NM_001099851','PRAMEF17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13346639,13350156,'NM_001099850','PRAMEF18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13346639,13350156,'NM_001099790','PRAMEF19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12839527,12844351,'NM_023014','PRAMEF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13388652,13399530,'NM_001099852','PRAMEF20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13394549,13399530,'NM_001100114','PRAMEF21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13201419,13204258,'NM_001100631','PRAMEF22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13200782,13204279,'NM_001013692','PRAMEF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12861619,12868612,'NM_001009611','PRAMEF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13031100,13040338,'NM_001013407','PRAMEF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12920888,12929993,'NM_001010889','PRAMEF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12900099,12902820,'NM_001012277','PRAMEF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12899036,12903155,'NM_001012276','PRAMEF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13293762,13300778,'NM_001010890','PRAMEF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155003897,155037233,'NM_005973','PRCC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2975601,3345045,'NM_199454','PRDM16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',13903936,14024161,'NM_012231','PRDM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45749293,45761149,'NM_001202431','PRDX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',171713108,171724569,'NM_004905','PRDX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201711505,201727102,'NM_201348','PRELP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',184532027,184550311,'NM_005807','PRG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',56883577,56953596,'NM_006252','PRKAA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',145093308,145110753,'NM_005399','PRKAB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',84382539,84476769,'NM_182948','PRKACB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1994945,2106694,'NM_001033581','PRKCZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',107400789,107403439,'NM_018137','PRMT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31233498,31234068,'NR_002762','PRO0611'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110795310,110801499,'NM_032414','PROK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',212228482,212276385,'NM_002763','PROX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148560551,148592328,'NM_004698','PRPF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52642806,52656580,'NM_032864','PRPF38A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109036454,109045945,'NM_018061','PRPF38B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151456683,151458417,'NM_001195571','PRR9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',169721289,169829273,'NM_015172','PRRC2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',168899936,168975165,'NM_022716','PRRX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226070040,226100794,'NM_183062','PRSS38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149247596,149274813,'NM_021222','PRUNE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',225124895,225150427,'NM_000447','PSEN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109743175,109770593,'NM_002790','PSMA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35837729,35879739,'NM_001199779','PSMB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149638664,149641036,'NM_002796','PSMB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149493820,149506578,'NM_002810','PSMD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109623698,109627313,'NM_032636','PSRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28346263,28376042,'NM_001164723','PTAFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',96959762,97053193,'NM_021190','PTBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45058102,45081203,'NM_001166292','PTCH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11461881,11520227,'NM_020780','PTCHD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',71090623,71286079,'NR_028294','PTGER3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',78729315,78778974,'NM_000959','PTGFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',117254211,117334495,'NM_020440','PTGFRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',184907566,184916182,'NM_000963','PTGS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32144608,32157846,'NM_001195101','PTP4A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',212588661,212791647,'NM_005401','PTPN14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114157955,114215898,'NM_001193431','PTPN22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200382763,200397339,'NR_037664','PTPN7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',196874759,196928957,'NM_080923','PTPRC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43769133,43861930,'NM_130440','PTPRF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',29435614,29525912,'NM_005704','PTPRU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200403801,200425200,'NR_002930','PTPRVP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31176939,31311151,'NM_014676','PUM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1233856,1236920,'NM_153339','PUSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159307404,159326009,'NM_030916','PVRL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224174202,224178588,'NM_013328','PYCR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153196125,153200882,'NM_138300','PYGO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',157167960,157213473,'NM_152501','PYHIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',178390590,178433792,'NM_002826','QSOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152220751,152225430,'NM_002870','RAB13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154297589,154306919,'NM_020387','RAB25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52146215,52229024,'NM_002867','RAB3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218388232,218512466,'NM_012414','RAB3GAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28791593,28793675,'NM_001193532','RAB42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',227473501,227507141,'NM_004578','RAB4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204003736,204011233,'NM_003929','RAB7L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172395174,173193950,'NM_014857','RABGAP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',76024473,76033352,'NM_004582','RABGGTB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201114708,201124886,'NM_002871','RABIF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46485953,46516732,'NM_003579','RAD54L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',176960922,177155860,'NM_152663','RALGPS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111963927,112057624,'NM_002884','RAP1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',21795294,21850935,'NM_001145658','RAP1GAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',176329486,176715271,'NM_170692','RASAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204797114,204829239,'NM_182665','RASSF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',64983365,65071502,'NM_018211','RAVER2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32889335,32924399,'NM_001135255','RBBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203321892,203357773,'NM_005057','RBBP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110683467,110690826,'NM_022768','RBM15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',233382425,233391194,'NM_001161533','RBM34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144218913,144224892,'NM_005105','RBM8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',89217726,89231231,'NM_019610','RBMXL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9979841,9998665,'NM_052960','RBP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172166974,172228833,'NM_172071','RC3H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24701973,24735014,'NM_013441','RCAN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28705041,28738295,'NR_030725','RCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',17605837,17638837,'NM_018715','RCC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',209499911,209556348,'NM_018254','RCOR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',165866097,165942110,'NM_052862','RCSD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',209716486,209732882,'NM_183059','RD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',120146468,120155726,'NM_001159353','REG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202390566,202402088,'NM_000537','REN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2313073,2326743,'NM_007033','RER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',8335050,8406334,'NM_001042682','RERE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',174180589,174442993,'NM_022457','RFWD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149579739,149586393,'NM_000449','RFX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',181871830,182164289,'NM_015149','RGL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',190811479,190815782,'NM_002922','RGS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',190871890,190896063,'NM_002927','RGS13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',180834380,180840171,'NM_002928','RGS16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',190394214,190421568,'NM_130782','RGS18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',191044791,191048030,'NM_002923','RGS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',190552744,190603037,'NM_001039152','RGS21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',161305019,161313216,'NM_001102445','RGS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',161378712,161439587,'NM_003617','RGS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',239005439,239587101,'NM_002924','RGS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',180882414,180908690,'NM_001102450','RGS8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',180685878,180796355,'NM_001137669','RGSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39124065,39180043,'NM_017821','RHBDL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154605626,154621635,'NR_026549','RHBG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',25561326,25619950,'NM_138618','RHCE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',25471567,25529523,'NM_016124','RHD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',113045271,113051201,'NM_001042679','RHOC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226847016,226949039,'NR_037962','RHOU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149960636,149968706,'NM_001144956','RIIAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',42619054,42662487,'NM_173642','RIMKLA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40858938,40903911,'NM_014747','RIMS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154134224,154147801,'NM_006912','RIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40399627,40479180,'NM_012421','RLF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',180809391,180825017,'NM_021133','RNASEL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',51474532,51511707,'NM_014372','RNF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144322392,144400133,'NM_014455','RNF115'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20013108,20014358,'NM_019062','RNF186'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226741690,226750512,'NM_001010858','RNF187'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33174636,33202873,'NM_001127361','RNF19B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',183281173,183338363,'NM_007212','RNF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6188775,6203946,'NM_207396','RNF207'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44643546,44889983,'NM_018150','RNF220'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',996988,999550,'NM_001205252','RNF223'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',103841165,103899382,'NM_017619','RNPC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200218388,200241898,'NM_020216','RNPEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28847698,28847833,'NR_004407','RNU11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218113241,218359400,'NR_002753','RNU5F-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',64012277,64417295,'NM_005012','ROR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150045170,150070972,'NM_005060','RORC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111624668,111630253,'NR_003928','RP11-165H20.1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28090635,28113823,'NM_002946','RPA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',92537109,92626320,'NM_024813','RPAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',68667094,68688230,'NM_000329','RPE65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',84717507,84736621,'NM_025065','RPF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23890855,23895502,'NM_001199802','RPL11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6167666,6182266,'NM_000983','RPL22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159920118,159921666,'NR_002595','RPL31P11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',93070181,93080069,'NM_000969','RPL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148603613,148715665,'NM_015203','RPRD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199755654,199756343,'NR_026667','RPS10P7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45884039,45884944,'NR_026768','RPS15AP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152229862,152231255,'NM_001030','RPS27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26728835,26774107,'NM_002953','RPS6KA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',211291210,211513431,'NM_001136138','RPS6KC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',238237446,238243183,'NR_036695','RPS7P5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45013832,45016999,'NM_001012','RPS8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150392694,150398328,'NM_001122965','RPTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39077605,39097927,'NM_022157','RRAGC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154964886,154973376,'NM_015997','RRNAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',216525251,216577948,'NM_016052','RRP15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114105976,114156593,'NM_018364','RSBN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15858950,15860804,'NM_006511','RSC1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16430768,16436246,'NM_030907','RSG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',37849537,37873182,'NM_001038633','RSPO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100504301,100530914,'NM_003729','RTCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',25098588,25129357,'NM_004350','RUNX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153557263,153567533,'NM_001105204','RUSC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153556874,153560562,'NM_001039517','RUSC1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',95472298,95485369,'NM_015485','RWDD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154178103,154179249,'NM_181885','RXFP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',163636782,163681216,'NM_006917','RXRG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',235272324,236063911,'NM_001035','RYR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151867496,151871137,'NM_006271','S100A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150222009,150233338,'NM_002966','S100A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150271605,150276135,'NM_005620','S100A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151612807,151614699,'NM_005621','S100A12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151857899,151867339,'NM_005979','S100A13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151853355,151855414,'NM_020672','S100A14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151845990,151852138,'NM_080388','S100A16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151800208,151804930,'NM_005978','S100A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151786432,151788358,'NM_002960','S100A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151782721,151784906,'NM_002961','S100A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151776246,151780865,'NM_002962','S100A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151773699,151775341,'NM_014624','S100A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151696843,151699761,'NM_002963','S100A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151655623,151662325,'NM_176823','S100A7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151676094,151679127,'NM_001045479','S100A7L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151629131,151630288,'NM_002964','S100A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151596953,151600127,'NM_002965','S100A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33055762,33097063,'NM_022753','S100PBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',101474892,101479664,'NM_001400','S1PR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',850983,869824,'NM_152486','SAMD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',84536636,84589069,'NM_001010971','SAMD13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109558037,109561639,'NR_034072','SARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100321689,100371099,'NM_194292','SASS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153492393,153498800,'NM_005698','SCAMP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28033498,28033664,'NR_002997','SCARNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109444337,109444757,'NR_003023','SCARNA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',174204155,174204299,'NR_002998','SCARNA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154162372,154162501,'NR_003005','SCARNA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',244954000,244998062,'NM_016002','SCCPDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',41265457,41398192,'NM_001172222','SCMH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149405121,149409397,'NM_001204856','SCNM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1205678,1217272,'NM_001130413','SCNN1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53165488,53289877,'NM_001193617','SCP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',168088427,168129700,'NM_020423','SCYL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31114899,31154067,'NM_014654','SDC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',241485929,241730016,'NM_006642','SDCCAG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1142150,1157310,'NM_016547','SDF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',17217811,17253252,'NM_003000','SDHB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159550789,159601159,'NM_001035512','SDHC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',176164864,176205673,'NM_033127','SEC16B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',143807763,143828279,'NM_004892','SEC22B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',167958404,167969844,'NM_000450','SELE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149603403,149611788,'NM_003944','SELENBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',167926429,167944621,'NR_029467','SELL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',167824711,167866001,'NM_003005','SELP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52924601,52936626,'NM_023077','SELRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154389945,154414166,'NM_022367','SEMA4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149370786,149385764,'NM_001178061','SEMA6C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',87100715,87152695,'NM_004261','SEP15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',25999253,26017300,'NM_020451','SEPN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',67646080,67668711,'NM_001018068','SERBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31654998,31680114,'NM_001199038','SERINC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172139564,172153139,'NM_000488','SERPINC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',208472817,208483063,'NM_019605','SERTAD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28458549,28481589,'NM_031459','SESN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149165438,149203844,'NM_001145415','SETDB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',38195238,38228348,'NM_006802','SF3A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148161832,148166768,'NM_005850','SF3B4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27062219,27063534,'NM_006142','SFN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35421787,35431330,'NM_005066','SFPQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166461878,166478712,'NM_199344','SFT2D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',66772412,66983356,'NM_032291','SGIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',160631679,160648552,'NM_053282','SH2D1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',155042658,155053264,'NM_001161441','SH2D2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20918811,20931720,'NM_001103160','SH2D5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26478799,26480600,'NM_031286','SH3BGRL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',247071273,247086777,'NM_030645','SH3BP5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36544580,36559535,'NM_001162530','SH3D21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',86942840,86986455,'NM_001206651','SH3GLB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153201397,153213583,'NM_003029','SHC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',181135622,181189176,'NM_030933','SHCBP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152718577,152741150,'NM_001010846','SHE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200124419,200128338,'NR_030775','SHISA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',115113627,115124831,'NM_001102396','SIKE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',230600334,230717866,'NM_020808','SIPA1L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2149993,2231512,'NM_003036','SKI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',48339973,48420687,'NR_026749','SKINTL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158846514,158883705,'NM_003037','SLAMF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158721443,158759676,'NM_001184715','SLAMF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158975700,158991225,'NM_021181','SLAMF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158063102,158073906,'NM_020125','SLAMF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158187905,158190668,'NM_001146173','SLAMF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',113255992,113300498,'NM_003051','SLC16A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110706995,110735227,'NM_004696','SLC16A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',167699772,167721832,'NM_006996','SLC19A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53325442,53380877,'NM_006671','SLC1A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',116320641,116414198,'NM_018420','SLC22A15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',108478969,108544497,'NM_013386','SLC25A24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9522114,9565418,'NM_032315','SLC25A33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15935395,15940471,'NM_207348','SLC25A34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154430353,154449211,'NM_014655','SLC25A44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204148799,204179211,'NM_052934','SLC26A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152014391,152019257,'NM_024330','SLC27A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43163632,43197434,'NM_006516','SLC2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9024013,9052474,'NM_001135585','SLC2A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',8985945,9008991,'NM_207420','SLC2A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',209815003,209818722,'NM_021194','SLC30A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218154228,218168616,'NM_018713','SLC30A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26237100,26245191,'NM_032513','SLC30A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',101134221,101219899,'NM_133496','SLC30A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100208127,100261594,'NM_012243','SLC35A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',67237602,67292668,'NM_015139','SLC35D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1648683,1667298,'NM_182838','SLC35E2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1582801,1614103,'NM_001110781','SLC35E2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',232107301,232526885,'NM_173508','SLC35F3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152198211,152206812,'NM_014437','SLC39A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204024843,204048784,'NM_173854','SLC41A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',95058488,95133390,'NM_001114106','SLC44A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',75444662,75849387,'NM_152697','SLC44A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',8306976,8326814,'NM_001080397','SLC45A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203893603,203916253,'NM_033102','SLC45A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153374911,153377958,'NM_018845','SLC50A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',48460943,48486903,'NM_001135181','SLC5A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110494654,110546346,'NM_001010898','SLC6A17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44234741,44255584,'NM_201649','SLC6A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27297886,27354038,'NM_003047','SLC9A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',171736226,171838856,'NM_178527','SLC9A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',41253855,41260014,'NM_144990','SLFNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40635058,40661585,'NM_001198980','SMAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151117421,151124147,'NM_030663','SMCP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154485638,154519244,'NM_015327','SMG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',181708128,181789951,'NM_201569','SMG7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28134090,28158250,'NM_014474','SMPDL3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',212521187,212577100,'NM_020197','SMYD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',243979264,244737267,'NM_001167740','SMYD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',225989319,226035555,'NM_053052','SNAP47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151897768,151900950,'NM_012437','SNAPIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28777636,28780953,'NR_024127','SNHG12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28705041,28709991,'NR_002909','SNHG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',37774728,37792490,'NM_024700','SNIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',233357740,233357875,'NR_002956','SNORA14B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28780018,28780152,'NR_003035','SNORA16A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',210592782,210592915,'NR_004389','SNORA16B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',218440512,218440641,'NR_002994','SNORA36B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154156323,154156457,'NR_002974','SNORA42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28779479,28779611,'NR_002976','SNORA44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',39805632,39805769,'NR_002983','SNORA55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12489886,12490038,'NR_003025','SNORA59A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12489886,12490038,'NR_003022','SNORA59B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28778862,28778992,'NR_002987','SNORA61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',93078863,93078996,'NR_002444','SNORA66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201965331,201965456,'NR_003019','SNORA77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31194551,31194639,'NR_004054','SNORD103A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31181122,31181210,'NR_033295','SNORD103B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',93075433,93075528,'NR_000006','SNORD21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45016100,45016171,'NR_001456','SNORD38A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45016648,45016717,'NR_001457','SNORD38B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172101728,172101789,'NR_002750','SNORD44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',76026161,76026245,'NR_002749','SNORD45A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',76027749,76027820,'NR_002748','SNORD45B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',76025344,76025422,'NR_003042','SNORD45C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45014750,45014848,'NR_000024','SNORD46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172100129,172100206,'NR_002746','SNORD47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45014123,45014197,'NR_000015','SNORD55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172103434,172103506,'NR_002579','SNORD74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172102639,172102699,'NR_003941','SNORD75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172102395,172102476,'NR_003942','SNORD76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172102071,172102132,'NR_003943','SNORD77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172101393,172101447,'NR_003944','SNORD78'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172101110,172101191,'NR_003939','SNORD79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172100593,172100664,'NR_003940','SNORD80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172099935,172099978,'NR_003938','SNORD81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31213596,31213671,'NR_003066','SNORD85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28777841,28777921,'NR_003077','SNORD99'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31505001,31542231,'NM_004814','SNRNP40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229678133,229678894,'NR_033826','SNRPD2P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202097362,202106903,'NM_003094','SNRPE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149851285,149938183,'NM_030918','SNX27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',98899823,98998644,'NM_152238','SNX7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',177529639,177591076,'NM_003101','SOAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109653709,109742086,'NM_002959','SORT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202308868,202363494,'NM_005686','SOX13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',118297810,118529371,'NM_206996','SPAG17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',215871317,216107107,'NM_138796','SPATA17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16597724,16636506,'NM_198546','SPATA21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',48533630,48710463,'NM_019073','SPATA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16046945,16139537,'NM_015001','SPEN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',227506751,227507873,'NM_006542','SPHAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32028611,32054167,'NM_144569','SPOCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151223187,151224914,'NM_001199828','SPRR1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151270302,151272000,'NM_003125','SPRR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151295219,151296612,'NM_005988','SPRR2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151309340,151310708,'NM_001017418','SPRR2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151379217,151380593,'NR_003062','SPRR2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151278824,151280218,'NM_006945','SPRR2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151332234,151333625,'NM_001024209','SPRR2E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151351236,151352613,'NM_001014450','SPRR2F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151388681,151390051,'NM_001014291','SPRR2G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151240846,151242956,'NM_005416','SPRR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',151209751,151211693,'NM_173080','SPRR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9275527,9352177,'NM_025106','SPSB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',156847119,156923130,'NM_003126','SPTA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109201361,109202669,'NR_034168','SRG7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',204582822,204704406,'NM_015326','SRGAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',142627087,142805834,'NR_034178','SRGAP2P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11037235,11042678,'NM_003132','SRM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224032137,224044791,'NM_003133','SRP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',24842180,24872359,'NM_005839','SRRM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',70443952,70490289,'NM_001190987','SRSF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',29346836,29381224,'NM_005626','SRSF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54464782,54644567,'NM_018070','SSBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154245462,154257382,'NM_003145','SSR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1466915,1500125,'NM_014188','SSU72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',84881977,84928828,'NM_001166293','SSX2IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43945804,44169418,'NM_174970','ST3GAL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',76312976,76869257,'NM_152996','ST6GALNAC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',77105773,77302325,'NM_030965','ST6GALNAC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',112885935,112963563,'NM_138729','ST7L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47488397,47552406,'NM_001048166','STIL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36577811,36624072,'NM_032017','STK40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26099193,26105955,'NM_203399','STMN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27972280,28023550,'NM_177424','STX12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',179208798,179258669,'NM_005819','STX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109090807,109153671,'NM_007269','STXBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158553678,158554884,'NR_002190','SUMO1P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',221460783,221604167,'NM_017982','SUSD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148141495,148156058,'NM_014849','SV2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',183392814,183527536,'NM_001105518','SWT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',115198977,115339513,'NM_003176','SYCP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',85395943,85439316,'NM_032184','SYDE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',25421353,25431600,'NM_015484','SYF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32918093,32940948,'NM_001161708','SYNC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109810622,109826287,'NM_001040709','SYPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154095883,154121614,'NM_152280','SYT11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',208178160,208404256,'NM_153262','SYT14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200826346,200879204,'NM_001136504','SYT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114433436,114497995,'NM_205848','SYT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27541069,27553010,'NM_001193308','SYTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43628142,43692505,'NM_015284','SZT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',58813682,58815754,'NM_002353','TACSTD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',165092372,165112278,'NM_053053','TADA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28802195,28842191,'NM_005644','TAF12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109408520,109420147,'NM_005645','TAF13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',220797866,220829898,'NM_139352','TAF1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',227795486,227828417,'NM_014409','TAF5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158154526,158161908,'NM_003564','TAGLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',47454549,47468030,'NM_003189','TAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',232593681,232681472,'NM_005646','TARBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',10995265,11008136,'NM_007375','TARDBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148726543,148746373,'NM_025150','TARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6537924,6562404,'NM_177540','TAS1R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19038679,19058742,'NM_152232','TAS1R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1256588,1259707,'NM_152228','TAS1R3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',211031792,211056790,'NM_001146169','TATDN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',233597350,233678903,'NM_003193','TBCE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',119227188,119333702,'NM_152380','TBX15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166516901,166550288,'NM_005149','TBX19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23580141,23623848,'NM_003196','TCEA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54291861,54338004,'NM_153035','TCEANC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23942442,23961136,'NM_003198','TCEB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150345416,150353180,'NM_007113','TCHH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150323243,150328164,'NM_001008536','TCHHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',66990727,67017318,'NM_152665','TCTEX1D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45044172,45045544,'NM_001013632','TCTEX1D4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152741318,152787247,'NM_001098475','TDRD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',177841984,177927030,'NM_001199092','TDRD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150010664,150029634,'NM_006862','TDRKH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',180633874,180636374,'NM_172000','TEDDM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36322262,36326463,'NM_014466','TEKT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45582141,45729427,'NM_007170','TESK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35811557,35833514,'NM_178548','TFAP2E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',244770485,244796188,'NM_022366','TFB2M'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',216585298,216684584,'NM_001135599','TGFB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',91918487,92144147,'NM_001195684','TGFBR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6607796,6618233,'NM_138350','THAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153432002,153444314,'NM_007112','THBS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150109966,150148985,'NM_053055','THEM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',150086200,150092797,'NM_182578','THEM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36462603,36543544,'NM_005119','THRAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43539250,43561366,'NM_005424','TIE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200191241,200206412,'NM_006335','TIMM17A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31814672,31825874,'NM_001204414','TINAGL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166414794,166437975,'NM_152902','TIPRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',221349370,221383247,'NM_003268','TLR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',61919306,61963683,'NM_032027','TM2D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203463660,203509094,'NM_014858','TMCC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',163960151,164004759,'NM_019026','TMCO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40486159,40489952,'NM_001008740','TMCO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19881292,19998997,'NM_181719','TMCO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',93387886,93418834,'NM_016040','TMED5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43508251,43512260,'NM_144626','TMEM125'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109434925,109441077,'NM_020141','TMEM167B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201243156,201259820,'NM_138391','TMEM183A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',201243158,201259291,'NM_001079809','TMEM183B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',29318523,29321600,'NM_001171868','TMEM200B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',9571518,9587607,'NM_001010866','TMEM201'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',210604438,210654866,'NM_001198862','TMEM206'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27521222,27535478,'NR_037580','TMEM222'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32454384,32460513,'NM_019118','TMEM234'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32311089,32341054,'NM_018056','TMEM39B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54003721,54076813,'NR_033142','TMEM48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',25537375,25561439,'NM_014313','TMEM50A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15352815,15419561,'NM_001136218','TMEM51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1838888,1840600,'NM_178545','TMEM52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',44892087,44912686,'NM_024587','TMEM53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33132782,33139540,'NM_033504','TMEM54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',95355481,95435749,'NM_152487','TMEM56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',95356066,95483097,'NM_001199691','TMEM56-RWDD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',25629974,25699285,'NM_018202','TMEM57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54269936,54291699,'NM_004872','TMEM59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',55219052,55230554,'NM_182532','TMEM61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',224099855,224137043,'NM_014698','TMEM63A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45926433,45932695,'NM_016486','TMEM69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154519327,154528858,'NR_026678','TMEM79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',203318879,203320211,'NM_203376','TMEM81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',15941503,15947064,'NM_001013641','TMEM82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1351370,1353030,'NM_001146685','TMEM88B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199370522,199390255,'NM_016456','TMEM9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149409086,149415171,'NM_013353','TMOD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149395728,149398849,'NM_024575','TNFAIP8L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149395728,149409397,'NM_001204848','TNFAIP8L2-SCNM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2479150,2486613,'NM_003820','TNFRSF14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1128750,1131952,'NM_148902','TNFRSF18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12149646,12191864,'NM_001066','TNFRSF1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6443800,6448842,'NM_148965','TNFRSF25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1136568,1139411,'NM_003327','TNFRSF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12046020,12126851,'NM_001243','TNFRSF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',7898517,7925812,'NM_001561','TNFRSF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',171276982,171286726,'NM_005092','TNFSF18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',171419492,171443094,'NM_003326','TNFSF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',173303616,173383825,'NM_022093','TNN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199639517,199657497,'NM_003281','TNNI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',74473658,74782704,'NM_015978','TNNI3K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',199594764,199613428,'NM_000364','TNNT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',173558557,173979375,'NM_003285','TNR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45577928,45582237,'NM_025077','TOE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',233339280,233358879,'NM_014765','TOMM20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159462456,159467031,'NM_032174','TOMM40L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',169574658,169577087,'NR_002719','TOP1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',178118042,178155834,'NM_015602','TOR1AIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',178094787,178113564,'NM_022347','TOR1AIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',177317734,177331752,'NM_022371','TOR3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',222034217,222100297,'NM_005426','TP53BP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3558988,3642625,'NM_005427','TP73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3642407,3653195,'NR_033712','TP73-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152394403,152422349,'NM_001043351','TPM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',184547408,184611080,'NM_003292','TPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3531415,3536554,'NM_182752','TPRG1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',207996016,208022291,'NM_025228','TRAF3IP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',209586328,209614909,'NM_145759','TRAF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',36374759,36387654,'NM_014408','TRAPPC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226647999,226661140,'NM_145214','TRIM11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226663097,226671206,'NM_001134855','TRIM17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',114736921,114855304,'NM_015906','TRIM33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',117455199,117465934,'NM_001145635','TRIM45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153412983,153424069,'NM_025058','TRIM46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',246087123,246110061,'NM_015431','TRIM58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33383589,33420258,'NM_018207','TRIM62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26250384,26266708,'NM_032588','TRIM63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229365296,229423937,'NM_001004342','TRIM67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40079292,40121764,'NM_017646','TRIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',183353840,183392739,'NM_030934','TRMT1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28752115,28777644,'NM_017846','TRNAU1AP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27192781,27199964,'NM_001013642','TRNP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',191295174,191321738,'NR_033393','TROVE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',182287433,182309967,'NR_023349','TSEN15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',115373937,115378464,'NM_000549','TSHB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229731021,229768892,'NM_005999','TSNAX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229731021,230021613,'NR_028396','TSNAX-DISC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46413335,46424221,'NM_005727','TSPAN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',115392155,115433644,'NM_005725','TSPAN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32600448,32602511,'NM_052841','TSSK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159274044,159275398,'NM_001113205','TSTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',229108609,229181241,'NM_024525','TTC13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',55019339,55039529,'NM_001114108','TTC22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154816142,154823186,'NM_001105669','TTC24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',2562666,2696090,'NM_001242672','TTC34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',51525517,51583373,'NM_001144832','TTC39A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54954082,54980916,'NM_004623','TTC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',117404471,117447014,'NM_003594','TTF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1099148,1123176,'NM_001130045','TTLL10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',84107644,84237421,'NM_024686','TTLL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149779404,149822683,'NM_001126337','TUFT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32417931,32436473,'NM_175852','TXLNA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52258391,52293635,'NM_015913','TXNDC12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',144149818,144153985,'NM_006472','TXNIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',74971427,75004948,'NM_138467','TYW3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',160797919,160836257,'NM_003115','UAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152459948,152509953,'NM_014847','UBAP2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1179154,1199097,'NM_058167','UBE2J2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',152787674,152797744,'NM_017582','UBE2Q1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',200567407,200577717,'NM_014176','UBE2T'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',64442077,64482615,'NM_152489','UBE2U'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',10015627,10163883,'NM_001105562','UBE4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',11255841,11271078,'NM_013319','UBIAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',110456584,110458092,'NM_203412','UBL4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154271715,154290140,'NM_020131','UBQLN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',19273586,19409333,'NM_020765','UBR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20385164,20392529,'NM_152376','UBXN10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26481359,26505782,'NM_001077262','UBXN11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',191254157,191295146,'NM_001199263','UCHL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',164063355,164147479,'NM_012474','UCK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159390157,159395270,'NM_016406','UFC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',160734218,160766043,'NM_175866','UHMK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',84603228,84636164,'NR_003927','UOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',46541966,46555034,'NM_006004','UQCRH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16006243,16006781,'NM_001089591','UQCRHL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',227828603,227862569,'NM_014777','URB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45250391,45253928,'NM_000374','UROD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159275664,159282381,'NM_007122','USF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',213862858,214663361,'NM_206933','USH2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',62674970,62690063,'NM_003368','USP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',159395877,159402140,'NM_012475','USP21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',55304619,55453627,'NM_015306','USP24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',77934261,77998125,'NM_015017','USP33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',21877378,21982275,'NM_032236','USP48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',38250970,38263084,'NM_016037','UTP11L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',7830258,7836138,'NM_021995','UTS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',7753915,7764079,'NM_004781','VAMP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',169935918,169978002,'NR_033704','VAMP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',115986096,116042368,'NM_138959','VANGL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158636987,158665092,'NM_020335','VANGL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',211190509,211231550,'NM_001136475','VASH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',107915304,108309068,'NM_006113','VAV3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',100957783,100977189,'NM_001199834','VCAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',154535038,154536052,'NM_001004319','VHLL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245485996,245487070,'NM_173858','VN1R5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',12212699,12494685,'NM_018156','VPS13D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',148305965,148384129,'NM_007259','VPS45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149415557,149429264,'NM_005997','VPS72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',158090729,158099071,'NM_001013661','VSIG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',117487731,117555072,'NM_024626','VTCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',1360765,1368125,'NM_199121','VWA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',20489998,20553974,'NM_001039500','VWA5B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',119375361,119484818,'NM_201263','WARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27603320,27689265,'NM_001201404','WASF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',4224,19233,'NR_024540','WASH7P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',222639467,222688624,'NM_001115113','WDR26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',118273894,118304572,'NM_006784','WDR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',109314359,109386373,'NM_014969','WDR47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',85300580,85371409,'NM_145172','WDR63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',239882202,240032057,'NM_144625','WDR64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43410587,43449136,'NM_152498','WDR65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',111784034,111793353,'NM_024102','WDR77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',67075869,67163158,'NM_207014','WDR78'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27433593,27507697,'NM_015023','WDTC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',68363628,68470872,'NM_024911','WLS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',112811562,112865433,'NM_004185','WNT2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226261345,226315595,'NM_033131','WNT3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22316384,22342106,'NM_030761','WNT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',226175787,226202299,'NM_003395','WNT9A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',3537190,3556531,'NM_017818','WRAP73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166812334,166817939,'NM_002995','XCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',166776626,166779859,'NM_003175','XCL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28159090,28167191,'NM_018053','XKR8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',178867768,179126038,'NM_004736','XPR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33013426,33056220,'NM_003680','YARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',42920652,42940607,'NM_004559','YBX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',54089979,54128075,'NM_018982','YIPF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',205283816,205291045,'NM_018566','YOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',38041200,38046452,'NM_024640','YRDC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',28935719,28968874,'NM_001173128','YTHDF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153895856,153916244,'NM_001198899','YY1AP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202033273,202036213,'NM_001174108','ZBED6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',16140950,16175214,'NM_001242884','ZBTB17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',172104115,172122397,'NM_001122770','ZBTB37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',22650930,22730237,'NM_014870','ZBTB40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',195389436,195436295,'NM_194314','ZBTB41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',6562649,6571927,'NM_005341','ZBTB48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',153241735,153257623,'NM_015872','ZBTB7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32777358,32844129,'NM_001040441','ZBTB8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32703244,32726046,'NM_001145720','ZBTB8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',32859893,32888772,'NM_178547','ZBTB8OS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',202031373,202089879,'NM_014827','ZC3H11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',37712705,37722565,'NM_025079','ZC3H12A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52661535,52791350,'NM_015269','ZCCHC11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',31542428,31610367,'NM_016505','ZCCHC17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',27025787,27054798,'NM_032283','ZDHHC18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52380633,52502307,'NM_007323','ZFYVE9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40496319,40532443,'NM_005857','ZMPSTE24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35317558,35354042,'NM_024772','ZMYM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35507154,35660132,'NM_005095','ZMYM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35224353,35270156,'NM_007167','ZMYM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',35219713,35223535,'NM_001195156','ZMYM6NB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',42668587,42694525,'NM_001146192','ZMYND12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245385825,245401941,'NM_003431','ZNF124'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',242281183,242287403,'NM_205768','ZNF238'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',198642042,198645789,'NM_012482','ZNF281'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',90233265,90266682,'NM_182976','ZNF326'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33494760,33538907,'NM_152493','ZNF362'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',23558527,23568944,'NM_001077195','ZNF436'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245530244,245561668,'NM_032752','ZNF496'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26368974,26369951,'NM_015871','ZNF593'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40715888,40734602,'NM_198494','ZNF642'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40688923,40701977,'NM_023070','ZNF643'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',91153444,91260400,'NM_201269','ZNF644'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',180290327,180297470,'NM_001009992','ZNF648'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245329886,245334297,'NM_024804','ZNF669'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245264562,245308738,'NM_001204220','ZNF670'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245175471,245308738,'NR_037894','ZNF670-ZNF695'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',247099152,247110337,'NM_024836','ZNF672'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',225817842,225916787,'NR_033184','ZNF678'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',26560711,26571853,'NM_001114759','ZNF683'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',40769819,40786428,'NM_152373','ZNF684'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',149521414,149531005,'NM_020832','ZNF687'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',43084830,43090733,'NM_015911','ZNF691'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',247110825,247119938,'NM_001193328','ZNF692'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',245215248,245238018,'NM_020394','ZNF695'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',119963522,119991913,'NM_001080470','ZNF697'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',225951355,225952031,'NR_036753','ZNF847P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',85887693,85946704,'NM_001170670','ZNHIT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',236107786,236120845,'NM_021186','ZP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',71301561,71319560,'NM_203350','ZRANB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',33710818,33734582,'NM_145238','ZSCAN20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',45254662,45444837,'NM_020883','ZSWIM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',53080770,53132835,'NM_001004339','ZYG11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',52964718,53065601,'NM_024646','ZYG11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1',77802777,77920931,'NM_015534','ZZZ3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',52229174,52315441,'NM_014576','A1CF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101532452,101601652,'NM_000392','ABCC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',27075530,27190022,'NM_001178123','ABI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',116180858,116434404,'NM_001003407','ABLIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124758418,124807796,'NM_001609','ACADSB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',27524148,27571074,'NR_024150','ACBD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',15157479,15170781,'NM_001039844','ACBD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',114125945,114178128,'NM_016234','ACSL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90684810,90741127,'NM_001141945','ACTA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104228975,104252502,'NM_005736','ACTR1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',39029732,39031377,'NR_045000','ACTR3BP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',127692894,128067117,'NM_003474','ADAM12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134925910,134940397,'NM_001164489','ADAM8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',72102564,72192201,'NM_080722','ADAMTS14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',1213252,1769670,'NM_018702','ADARB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',1558824,1589179,'NR_033387','ADARB2-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',111755715,111885313,'NM_019903','ADD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75606252,76139068,'NM_001123','ADK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',64234521,64238245,'NM_032804','ADO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',112826779,112830652,'NM_000681','ADRA2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',115793795,115796657,'NM_000684','ADRB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',116044572,116154505,'NM_032550','AFAP1L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88720477,88759940,'NM_133447','AGAP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',45641055,45662927,'NM_133446','AGAP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75104038,75127560,'NM_001144000','AGAP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',51418083,51440265,'NM_001077665','AGAP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',51134167,51156333,'NM_001077685','AGAP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50894693,50916541,'NM_001077686','AGAP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46611849,46633632,'NM_001190810','AGAP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71542028,71562696,'NM_032797','AIFM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',4995453,5010158,'NM_001353','AKR1C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5021964,5050207,'NM_205845','AKR1C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5126567,5139878,'NM_003739','AKR1C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5228797,5250910,'NM_001818','AKR1C4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5186654,5217150,'NR_027916','AKR1CL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',4858401,4880251,'NM_001040177','AKR1E2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',97355675,97406557,'NM_002860','ALDH18A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',45189634,45261569,'NM_000698','ALOX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',73645763,73665624,'NM_001242548','ANAPC16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',61456061,62163290,'NM_001204403','ANK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',92661836,92671012,'NM_014391','ANKRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5943694,5971866,'NM_019046','ANKRD16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99322245,99333631,'NM_001129981','ANKRD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90569638,90601712,'NM_144590','ANKRD22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',27333050,27429433,'NM_014915','ANKRD26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',37454790,37561501,'NM_052997','ANKRD30A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',47128239,47171452,'NR_003601','ANTXRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',45431044,45488257,'NM_001128324','ANUBL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',81904859,81955308,'NM_001157','ANXA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',66255290,66256640,'NR_001446','ANXA2P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74805194,74843847,'NM_001156','ANXA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46577989,46594128,'NM_001040084','ANXA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',47875312,47891369,'NM_001098845','ANXA8L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',47216925,47233046,'NM_001630','ANXA8L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75550020,75580832,'NM_012095','AP3M1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',26767271,26896738,'NM_019043','APBB1IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',32135230,32257776,'NM_018287','ARHGAP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',98971919,99042420,'NM_032900','ARHGAP19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',98902788,99042420,'NR_037909','ARHGAP19-SLIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',24912543,25052603,'NM_020824','ARHGAP21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',49324084,49483144,'NM_021226','ARHGAP22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',63331018,63526713,'NM_032199','ARID5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104423473,104464180,'NM_004311','ARL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',18988318,19006946,'NM_178815','ARL5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',23256959,23366520,'NM_173081','ARMC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',28141102,28327983,'NM_018076','ARMC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124204168,124206858,'NM_001099667','ARMS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104619199,104651645,'NM_020682','AS3MT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',51617005,51678376,'NM_001143974','ASAH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',52169713,52184575,'NM_001079516','ASAH2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5720825,5748564,'NR_024581','ASB13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',73526279,73645757,'NM_015947','ASCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',89502854,89567897,'NM_032810','ATAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',123492614,123677536,'NM_007041','ATE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',69660387,69661861,'NM_145178','ATOH7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',7870098,7889768,'NM_005174','ATP5C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',116843113,117698486,'NM_207303','ATRNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99427170,99437005,'NM_021732','AVPI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',121400871,121427319,'NM_004281','BAG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',29006429,29011874,'NM_012342','BAMBI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',112648477,112669114,'NM_001195307','BBIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',127502093,127521366,'NM_078469','BCCIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',13523093,13584982,'NM_001100912','BEND7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',59942909,60258851,'NM_001080512','BICC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',97941444,98021323,'NM_013314','BLNK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102023702,102036429,'NM_173809','BLOC1S2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',22650144,22660420,'NM_005180','BMI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88506375,88674925,'NM_004329','BMPR1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',42597959,42650391,'NM_014753','BMS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46157618,46182898,'NR_026566','BMS1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75128914,75160278,'NR_026592','BMS1P4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46157618,46182898,'NR_003611','BMS1P5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',133631193,133645425,'NM_004052','BNIP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',93673715,93780060,'NM_003972','BTAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124020810,124087666,'NM_144587','BTBD16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103103814,103307060,'NM_033637','BTRC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124903749,124914876,'NM_004725','BUB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',44791714,44794336,'NM_007021','C10orf10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74677130,74706748,'NR_038373','C10orf103'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',73141463,73149584,'NM_001164375','C10orf105'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',63092724,63196097,'NM_173554','C10orf107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',686016,701109,'NR_027152','C10orf108'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',77212524,77987132,'NM_032024','C10orf11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',15177389,15179324,'NM_153244','C10orf111'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',21454697,21475494,'NM_001010896','C10orf113'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',21823426,21826219,'NM_001010911','C10orf114'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88718167,88720646,'NM_006829','C10orf116'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',115871963,115924354,'NM_018017','C10orf118'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',98731030,98735575,'NM_015652','C10orf12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124447214,124449328,'NM_001010912','C10orf120'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',127334252,127361703,'NM_001128202','C10orf122'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135018647,135021519,'NM_198472','C10orf125'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50033896,50066413,'NM_001010863','C10orf128'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',96943946,96978676,'NM_207321','C10orf129'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',97657711,97688405,'NM_001130446','C10orf131'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',43660759,43666076,'NR_033923','C10orf136'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',127398073,127442702,'NM_001202438','C10orf137'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',21842414,21854617,'NM_207371','C10orf140'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102737282,102744148,'NM_001163813','C10orf2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',44813151,44816476,'NM_001039380','C10orf25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104493716,104566011,'NM_001083913','C10orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',72201000,72215163,'NM_152710','C10orf27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99884370,99994644,'NM_014472','C10orf28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104603956,104614708,'NM_001136200','C10orf32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104603956,104651645,'NR_037644','C10orf32-AS3MT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71060008,71063361,'NM_145306','C10orf35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',61387980,61390677,'NR_024340','C10orf40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',120430483,120504748,'NM_153810','C10orf46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',11905402,11954282,'NM_153256','C10orf47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50557689,50572954,'NM_001042427','C10orf53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',73177318,73203343,'NM_022153','C10orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75339732,75352541,'NM_001001791','C10orf55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',81828405,81842287,'NM_025125','C10orf57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',82158221,82182733,'NM_032333','C10orf58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99339439,99340681,'NM_001009997','C10orf62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',23645525,23673778,'NM_153714','C10orf67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',32896656,33211798,'NM_024688','C10orf68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50177192,50205543,'NM_001135196','C10orf71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103595345,103805922,'NM_024541','C10orf76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',115501202,115532182,'NM_001193435','C10orf81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118413196,118419471,'NM_144661','C10orf82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124680408,124703909,'NM_024942','C10orf88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',128103563,128200000,'NM_001004298','C10orf90'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134108703,134111815,'NM_173541','C10orf91'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134471885,134524353,'NM_001200049','C10orf92'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134592678,134606079,'NM_173572','C10orf93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104199583,104201290,'NM_024886','C10orf95'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118073929,118129531,'NM_198515','C10orf96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',85923533,85935030,'NM_207373','C10orf99'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',16595747,16604010,'NM_001010908','C1QL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',18469611,18870694,'NM_201593','CACNB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105203133,105208638,'NM_001001412','CALHM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105196532,105202152,'NR_024552','CALHM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105222550,105228987,'NM_001129742','CALHM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5556923,5558225,'NM_005185','CALML3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5530657,5531533,'NM_017422','CALML5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134988917,135000465,'NM_015722','CALY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',12431588,12911739,'NM_153498','CAMK1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75242264,75304355,'NM_172169','CAMK2G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',119796321,119959655,'NR_026940','CASC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',115429415,115480654,'NM_001227','CASP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',97749837,97782431,'NM_001159747','CC2D2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70150976,70221315,'NM_018237','CCAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',106103511,106204838,'NM_001008723','CCDC147'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',12978630,13083710,'NM_031455','CCDC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',61218511,61336420,'NM_005436','CCDC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',32775046,32903498,'NM_001026383','CCDC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',97793148,97810615,'NM_019084','CCNJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',35665807,35900853,'NM_145012','CCNY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',12277966,12332595,'NM_006023','CDC123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',72826696,73162487,'NM_001171930','CDH23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',85944391,85967101,'NM_033100','CDHR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',62208217,62216833,'NM_001170407','CDK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',14901256,14919989,'NM_001029954','CDNF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',11246998,11418678,'NM_001083591','CELF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',95246378,95278839,'NM_018131','CEP55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',89568049,89595349,'NR_028492','CFL1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90955673,90957051,'NM_003956','CH25H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50491159,50543156,'NM_020986','CHAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75211813,75213412,'NM_203298','CHCHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',125769158,125841920,'NM_014863','CHST15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',73394125,73443328,'NM_004273','CHST3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101938113,101979334,'NM_001278','CHUK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',59698900,59719025,'NM_018464','CISD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',129566103,129581201,'NM_152311','CLRN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101078845,101144077,'NM_020348','CNNM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104668103,104828230,'NM_017649','CNNM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71231649,71388910,'NM_080805','COL13A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105781035,105835628,'NM_000494','COL17A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',22645317,22649252,'NM_012071','COMMD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',22645317,22660420,'NM_001204062','COMMD3-BMI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',76663734,76665776,'NM_144589','COMTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101458494,101482413,'NM_078470','COX15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',93798376,93993016,'NM_001178137','CPEB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101792054,101831632,'NM_001308','CPN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',125495141,125641490,'NM_198148','CPXM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',35466715,35541892,'NM_183012','CREM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99614746,99780575,'NM_018058','CRTAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',42953939,43000755,'NM_018590','CSGALNACT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',53125251,53129361,'NM_015235','CSTF2T'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',131794262,131797091,'NR_044994','CTAGE7P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',126666407,126839614,'NM_001083914','CTBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',67349730,69125955,'NM_013266','CTNNA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',47775948,47778697,'NR_033407','CTSL1P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',16905970,17211822,'NM_001081','CUBN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104172991,104182413,'NM_024040','CUEDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',35337484,35403264,'NM_001198778','CUL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101481947,101505884,'NM_015960','CUTC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124581660,124595681,'NR_037912','CUZD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101982044,102017427,'NM_018294','CWF19L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',44185610,44200551,'NM_000609','CXCL12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104580277,104587280,'NM_000102','CYP17A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',94823221,94827631,'NM_057157','CYP26A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',94811010,94818444,'NM_183374','CYP26C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',96433240,96485937,'NM_000772','CYP2C18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',96512452,96602661,'NM_000769','CYP2C19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',96786518,96819244,'NM_001198855','CYP2C8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',96688404,96739138,'NM_000771','CYP2C9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135190856,135202610,'NM_000773','CYP2E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',115584473,115603849,'NM_014881','DCLRE1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',14988876,15036100,'NM_022487','DCLRE1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',73703682,73705803,'NM_019058','DDIT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70385897,70414285,'NM_004728','DDX21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70331039,70376609,'NM_024045','DDX50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',12150939,12205230,'NM_018706','DHTKD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',127514898,127559874,'NM_018180','DHX32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',310129,725608,'NM_014974','DIP2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',53744046,53747423,'NM_012242','DKK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',79220554,79356354,'NM_004747','DLG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124310170,124393242,'NM_017579','DMBT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',69843826,69901736,'NM_001080449','DNA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',73762593,73784913,'NM_017626','DNAJB12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',22085482,22332656,'NM_022365','DNAJC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',69226432,69267943,'NM_021800','DNAJC12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74672587,74677031,'NM_015190','DNAJC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101625323,101759666,'NM_015221','DNMBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101676955,101708745,'NR_024130','DNMBP-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',98054074,98088311,'NM_004088','DNTT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',128584012,129140770,'NM_001380','DOCK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103338078,103359400,'NM_015448','DPCD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',133850403,133869270,'NM_006426','DPYSL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50244166,50269913,'NM_001080520','DRGX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',76467599,76488278,'NM_001003892','DUPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',76524197,76529254,'NM_016364','DUSP13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',112247614,112261292,'NM_004419','DUSP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135330360,135335265,'NM_001164467','DUX4L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135330360,135335265,'NM_001127389','DUX4L5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135330360,135335265,'NM_001127388','DUX4L6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135330360,135335265,'NM_001127387','DUX4L7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',82085841,82106480,'NM_138812','DYDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',82106537,82117809,'NM_032372','DYDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',131523485,131652081,'NM_001005463','EBF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',22537748,22538918,'NM_001199938','EBLN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74564287,74597859,'NR_024203','ECD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',11824361,11846071,'NM_024693','ECHDC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135025976,135036898,'NM_004092','ECHS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',64241761,64246132,'NM_000399','EGR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',120784530,120830324,'NM_003750','EIF3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71833866,71858380,'NM_004096','EIF4EBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',80942362,80946198,'NM_001099692','EIF5AL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103976132,103979334,'NM_152310','ELOVL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',119291945,119299047,'NM_001165924','EMX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',119233793,119294569,'NR_002791','EMX2OS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',25310922,25345036,'NM_145010','ENKUR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118599012,118632102,'NM_001242699','ENO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',97505662,97627013,'NM_001164183','ENTPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101409252,101460992,'NM_020354','ENTPD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',32597864,32676119,'NM_025209','EPC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50334496,50417153,'NM_000124','ERCC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101899836,101935724,'NM_006459','ERLIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',94598204,94809241,'NM_019053','EXOC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99185655,99195758,'NM_016046','EXOSC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',14600564,14856902,'NM_031453','FAM107B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',60675894,60792358,'NM_198215','FAM13C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74597882,74671945,'NM_173348','FAM149B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',116571492,116614464,'NM_020940','FAM160B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50009206,50012071,'NM_001164484','FAM170B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',15293649,15453064,'NM_001010924','FAM171A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',126480343,126515229,'NM_032182','FAM175B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102662315,102709337,'NM_001136123','FAM178A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',15860180,15942525,'NM_024948','FAM188A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',86078389,86268256,'NM_018999','FAM190B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',128823679,128884412,'NM_001039762','FAM196A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',120058561,120091829,'NM_001134672','FAM204A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5766806,5845709,'NM_017782','FAM208B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',51497689,51563275,'NM_001005751','FAM21A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',47414028,47469423,'NM_018232','FAM21B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',45542653,45608418,'NM_001169107','FAM21C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88975184,88984713,'NM_001099338','FAM22A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',89107456,89120432,'NM_001009610','FAM22D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124660206,124662617,'NM_001029888','FAM24A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124598599,124629147,'NM_152644','FAM24B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124581660,124629147,'NR_037915','FAM24B-CUZD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88770025,88774467,'NM_001146157','FAM25A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46597226,46601694,'NM_001137556','FAM25B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46597226,46601694,'NM_001137548','FAM25C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',48873378,48877831,'NM_001137549','FAM25G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88844932,88941202,'NM_019054','FAM35A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46317646,46359151,'NR_027632','FAM35B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46799725,46841244,'NR_027634','FAM35B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',120853600,120887213,'NM_207009','FAM45A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',120853618,120887366,'NR_027141','FAM45B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',126297852,126422920,'NM_014661','FAM53B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',127575097,127688151,'NM_145235','FANK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90740267,90765522,'NM_152872','FAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90741160,90742712,'NR_028371','FAS-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104169560,104172883,'NM_024326','FBXL15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5976354,6019562,'NM_032807','FBXO18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103360410,103444733,'NM_022039','FBXW4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103519876,103530116,'NM_001206389','FGF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',93656324,93659238,'NM_152429','FGFBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',123227833,123343471,'NM_001144914','FGFR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',51450947,51497569,'NR_038275','FLJ31813'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',127383848,127398052,'NR_033847','FLJ37035'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',91441036,91447665,'NR_026835','FLJ37201'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102979340,102988606,'NR_029380','FLJ41350'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',8132418,8135453,'NR_024256','FLJ45983'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',133454723,133472525,'NR_038365','FLJ46300'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124506199,124547151,'NR_003570','FLJ46361'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',129425527,129429440,'NM_207426','FOXI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',95417629,95452319,'NM_145246','FRA10AC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99069011,99071662,'NM_005479','FRAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99082243,99084448,'NM_012083','FRAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135288592,135290289,'NM_001080998','FRG2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',13725711,14412872,'NM_018027','FRMD4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',49034607,49152947,'NM_001018071','FRMPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46077140,46095794,'NR_033172','FRMPD2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75202054,75205982,'NM_173540','FUT11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',43187097,43191789,'NM_173160','FXYD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',35967182,35970368,'NM_031866','FZD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',26545241,26630054,'NM_001134366','GAD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',8136672,8157170,'NM_002051','GATA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103995244,104132646,'NM_001199379','GBF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',48045793,48059144,'NM_004962','GDF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',48033097,48036859,'NM_016204','GDF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5847191,5895518,'NM_001115156','GDI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',117806431,118023116,'NM_005264','GFRA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',85889164,85903291,'NM_014394','GHITM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',35934343,35937869,'NM_153368','GJD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',131824628,131868636,'NM_001199868','GLRX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88799938,88844756,'NM_005271','GLUD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99599984,99621325,'NM_001010917','GOLGA7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101146616,101180520,'NM_002079','GOT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',113899611,113933515,'NM_020918','GPAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134751398,134795169,'NM_001083909','GPR123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',25504295,25931163,'NM_020752','GPR158'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',125415860,125446903,'NM_153442','GPR26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46413551,46420574,'NM_014696','GPRIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',87349291,88116230,'NM_017551','GRID1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',120957186,121205121,'NM_005308','GRK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',106003941,106017213,'NM_001191003','GSTO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',106024876,106049166,'NM_001191015','GSTO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',1024348,1053708,'NM_012341','GTPBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',114057925,114106343,'NR_028134','GUCY2GP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71482362,71542046,'NM_018649','H2AFY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',115300579,115339350,'NM_001177660','HABP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',93160075,93264500,'NM_182765','HECTD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',96295563,96351846,'NM_018063','HELLS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',69351661,69505109,'NM_022079','HERC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',94439660,94445388,'NM_002729','HHEX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102285630,102303671,'NM_017902','HIF1AN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70745615,70831643,'NM_033496','HK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70650064,70697321,'NM_025130','HKDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124897627,124900178,'NM_005519','HMX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124885556,124887237,'NM_001105574','HMX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',43602865,43605871,'NR_002726','HNRNPA3P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',43201070,43212800,'NM_001098207','HNRNPF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',69761773,69772959,'NM_012207','HNRNPH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99334091,99362545,'NM_001134670','HOGA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',100165944,100196694,'NM_000195','HPS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103815113,103817785,'NM_024747','HPS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',100206823,100985622,'NM_001166244','HPSE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',38685313,38707439,'NR_003086','HSD17B7P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118420692,118492075,'NM_025015','HSPA12A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',14920266,14953746,'NM_016299','HSPA14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',92490555,92607651,'NM_019860','HTR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124211030,124264414,'NM_002775','HTRA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',94201420,94247498,'NM_001165946','IDE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',1075963,1085061,'NM_004508','IDI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',1054846,1061799,'NM_033261','IDI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',1058576,1080141,'NR_024628','IDI2-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',91142301,91153724,'NM_001548','IFIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',91127792,91134942,'NM_001010987','IFIT1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',91051685,91059013,'NM_001547','IFIT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',91077581,91090705,'NM_001549','IFIT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',91164304,91170739,'NM_012420','IFIT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124743186,124758301,'NM_022466','IKZF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',6034339,6059580,'NM_172200','IL15RA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',6092662,6144339,'NM_000417','IL2RA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105026909,105040098,'NM_032727','INA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134201342,134446974,'NM_005539','INPP5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',121568758,121578652,'NM_001243194','INPP5F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',59621283,59697700,'NM_152230','IPMK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',15599093,15801776,'NM_003638','ITGA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',33229251,33287299,'NM_002211','ITGB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',7785241,7831489,'NM_002216','ITIH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',7641237,7748967,'NM_030569','ITIH5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',106061888,106083653,'NM_033397','ITPRIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',133768302,133848303,'NM_001105521','JAKMIP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',64596993,64895728,'NM_032776','JMJD1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',76256384,76462645,'NM_012330','KAT6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102810988,102815341,'NM_030929','KAZALD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103575720,103593667,'NM_173191','KCNIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118946989,118959800,'NM_181840','KCNK18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',78314640,79067583,'NM_002247','KCNMA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75215387,75231562,'NM_001242487','KIAA0913'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',24537725,24876778,'NM_019590','KIAA1217'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71908569,71998212,'NM_014431','KIAA1274'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70418482,70446745,'NM_015634','KIAA1279'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',30341734,30388494,'NM_020848','KIAA1462'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118634295,118755078,'NM_018330','KIAA1598'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',94342804,94405132,'NM_004523','KIF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',91451346,91524680,'NM_016195','KIF20B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',32337943,32385377,'NM_004521','KIF5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',7837372,7869950,'NM_012311','KIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',3808187,3817473,'NM_001300','KLF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',89608897,89613174,'NM_001126049','KLLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134823960,134889906,'NM_152643','KNDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',845483,921702,'NM_015155','LARP4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102976722,102978707,'NM_006562','LBX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',98582006,98714188,'NM_001170766','LCOR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103857314,103870200,'NM_001113407','LDB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88418300,88449790,'NM_001080116','LDB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',95507555,95547906,'NM_005097','LGI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',126140330,126292700,'NM_022126','LHPP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',1195707,1200612,'NR_015376','LINC00200'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',27260140,27270936,'NR_026795','LINC00202'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102123322,102138101,'NR_026762','LINC00263'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',26918799,26923257,'NR_026793','LINC00264'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90963309,91001640,'NM_000235','LIPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90414125,90428552,'NM_001198830','LIPF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90336498,90356713,'NM_001010939','LIPJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90474280,90502493,'NM_001080518','LIPK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90552466,90570283,'NM_001128215','LIPM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90511142,90527979,'NM_001102469','LIPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',96029036,96036817,'NR_033969','LOC100128054'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',17468940,17490291,'NR_034129','LOC100128098'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',79356575,79359589,'NR_024585','LOC100128292'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',25487006,25505211,'NR_027333','LOC100128811'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',38504604,38543279,'NR_024524','LOC100129055'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',18330720,18339497,'NR_038419','LOC100129213'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',22581006,22587483,'NR_038921','LOC100130992'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',79678387,79682408,'NR_038985','LOC100132987'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',44914929,44970050,'NR_024472','LOC100133308'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',127252929,127257004,'NR_023362','LOC100169752'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',93056698,93361197,'NR_024467','LOC100188947'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',15236726,15237352,'NR_036506','LOC100192204'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',4682376,4710262,'NR_024475','LOC100216001'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99467206,99467892,'NR_026754','LOC100270710'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',81654633,81681537,'NR_033857','LOC100288974'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103568814,103578636,'NR_045118','LOC100289509'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',22764359,22766864,'NR_036533','LOC100499489'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',98852502,98853494,'NR_038330','LOC100505540'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',34088646,34101614,'NR_038932','LOC100505583'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104199563,104206040,'NR_038938','LOC100505761'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105496526,105505157,'NR_038940','LOC100505839'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',111695306,111758129,'NR_038943','LOC100505933'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',49999889,50029598,'NR_038973','LOC100506733'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',43674864,43710887,'NR_038268','LOC100506835'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',53726613,53743894,'NR_038277','LOC100506939'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',3173792,3180821,'NR_038284','LOC100507034'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',6861565,6924874,'NR_038291','LOC100507127'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75226277,75231163,'NR_038357','LOC100507331'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',87327467,87356952,'NR_038986','LOC100507470'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',29118245,29124985,'NR_038375','LOC100507605'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',114600662,114605117,'NR_015409','LOC143188'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',86029715,86044395,'NR_038220','LOC170425'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',81795968,81828929,'NR_027429','LOC219347'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',11931612,11976715,'NR_038222','LOC219731'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',28848851,28861289,'NR_033805','LOC220906'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',44626477,44775143,'NR_033842','LOC220980'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',11016908,11034132,'NR_015413','LOC254312'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',2037666,2046542,'NR_040253','LOC282980'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',112618637,112620652,'NR_026932','LOC282997'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',43724757,43785361,'NR_033846','LOC283033'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',127361801,127388236,'NR_033848','LOC283038'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',80373088,80497211,'NR_015429','LOC283050'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',12915138,12917551,'NR_027322','LOC283070'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',122511313,122600681,'NR_033850','LOC283089'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',44970115,45001495,'NR_033891','LOC338579'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',4688347,4694606,'NR_015425','LOC338588'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',27574787,27581241,'NR_003525','LOC387646'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',29738506,29751305,'NR_003930','LOC387647'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',131752151,131799071,'NR_034125','LOC387723'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',2332512,2347268,'NR_038884','LOC399708'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',6359655,6417943,'NR_040079','LOC399715'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',38757079,38781087,'NR_024497','LOC399744'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',48888163,48909664,'NR_029396','LOC399753'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124629138,124648220,'NR_027282','LOC399815'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',6662392,6667329,'NR_036502','LOC439949'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',81957445,81969393,'NR_038464','LOC439990'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',89092147,89093311,'NR_029408','LOC439994'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',42147319,42183499,'NR_024380','LOC441666'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135117421,135131943,'NR_002934','LOC619207'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',81575637,81577338,'NR_029407','LOC642361'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46662695,46663500,'NR_024495','LOC642826'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',91579229,91590598,'NR_038382','LOC643529'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46516459,46571406,'NR_033957','LOC643650'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',81112736,81118656,'NR_027512','LOC650623'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88988403,89092295,'NR_024397','LOC728190'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50923913,51041322,'NR_029388','LOC728407'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',97502952,97839982,'NR_038444','LOC728558'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',60144780,60147299,'NR_027508','LOC728640'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46553300,46553842,'NR_003277','LOC728643'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',72646986,72647991,'NR_038453','LOC728978'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104995633,104997763,'NM_001143909','LOC729020'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',30693261,30703383,'NR_003524','LOC729668'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',26972042,26982389,'NR_026794','LOC731789'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',42290944,42310791,'NR_026827','LOC84856'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',64894994,64896328,'NR_027182','LOC84989'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99997432,100017997,'NM_032211','LOXL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',85981255,85991197,'NM_015613','LRIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',85970228,85975264,'NM_001017924','LRIT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',49787534,49792286,'NM_001006939','LRRC18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71728734,71812388,'NM_018205','LRRC20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134000600,134030499,'NR_026559','LRRC27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',68355797,68530873,'NM_178011','LRRTM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',29617995,29640164,'NM_032517','LYZL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',30940713,30958653,'NM_183058','LYZL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102746853,102757583,'NM_032429','LZTS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',61166753,61183209,'NR_038200','M1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',30762955,30790768,'NM_005204','MAP3K8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',49279692,49313189,'NM_002750','MAPK8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',94040899,94103701,'NM_017824','MARCH5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',45272822,45410360,'NM_145021','MARCH8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',94168222,94170390,'NR_038243','MARK2P9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99463454,99467899,'NM_031484','MARVELD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',27483758,27515854,'NM_001172304','MASTL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',82021555,82039414,'NM_000429','MAT1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',81669913,81672855,'NR_002724','MBL1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',54195145,54201466,'NM_000242','MBL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',13243559,13293110,'NM_018518','MCM10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',121578961,121622384,'NM_024834','MCMBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74121894,74317458,'NM_138357','MCU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',15041443,15054856,'NM_001080836','MEIG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',126437395,126470429,'NM_212554','METTL10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103534189,103568212,'NM_001142434','MGEA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',131155443,131455773,'NM_002412','MGMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',73797089,74055955,'NM_006077','MICU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',89254202,89303198,'NM_004897','MINPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',91342483,91342564,'NR_029524','MIR107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',14518580,14518666,'NR_031668','MIR1265'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',100144964,100145054,'NR_031619','MIR1287'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',64802722,64802814,'NR_031566','MIR1296'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105143999,105144148,'NR_031707','MIR1307'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104186258,104186331,'NR_030169','MIR146B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',21825496,21825576,'NR_031736','MIR1915'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134911005,134911115,'NR_030170','MIR202'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',115923853,115923928,'NR_031747','MIR2110'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',6234164,6234246,'NR_036111','MIR3155'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',6234176,6234231,'NR_039698','MIR3155B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',44979467,44979542,'NR_036112','MIR3156-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',97814061,97814146,'NR_036113','MIR3157'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103351163,103351244,'NR_036114','MIR3158-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103351163,103351244,'NR_036115','MIR3158-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88014430,88014525,'NR_029907','MIR346'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118917178,118917275,'NR_037436','MIR3663'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',132650840,132650921,'NR_036180','MIR378C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',58734244,58734325,'NR_037490','MIR3924'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124166470,124166573,'NR_037506','MIR3941'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135035049,135035157,'NR_037509','MIR3944'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',14465204,14465282,'NR_036181','MIR4293'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',49863562,49863638,'NR_036182','MIR4294'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',114383918,114384003,'NR_036177','MIR4295'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',126711341,126711429,'NR_036178','MIR4296'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',131531552,131531628,'NR_036179','MIR4297'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',12660757,12660828,'NR_039700','MIR4480'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',106018083,106018153,'NR_039702','MIR4482'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',115527741,115527803,'NR_039703','MIR4483'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',127498298,127498381,'NR_039704','MIR4484'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',20880904,20880981,'NR_039822','MIR4675'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74150792,74150864,'NR_039823','MIR4676'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',89253617,89253691,'NR_039825','MIR4678'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90813072,90813147,'NR_039826','MIR4679-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90813071,90813148,'NR_039827','MIR4679-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',112647832,112647906,'NR_039828','MIR4680'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',121127473,121127545,'NR_039829','MIR4681'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',121708014,121708094,'NR_039830','MIR4682'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',35970105,35970186,'NR_039831','MIR4683'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',100181028,100181105,'NR_039833','MIR4685'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',17927112,17927199,'NR_030167','MIR511-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',17927112,17927199,'NR_030168','MIR511-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',24604619,24604716,'NR_030334','MIR603'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',29873938,29874032,'NR_030335','MIR604'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',52729338,52729421,'NR_030336','MIR605'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102724731,102724831,'NR_030339','MIR608'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105968536,105968631,'NR_030340','MIR609'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105797836,105797934,'NR_030760','MIR936'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',29931198,29931281,'NR_030634','MIR938'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',129784913,129814458,'NM_001145966','MKI67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',28001808,28074784,'NM_001242702','MKX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',21863106,21886120,'NM_001195628','MLLT10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',127445015,127454380,'NM_147191','MMP21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88685277,88707405,'NM_024756','MMRN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99208070,99248356,'NM_022362','MMS19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99364299,99383903,'NM_001098831','MORN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',28379928,28611073,'NM_173496','MPP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',18138357,18240097,'NM_002438','MRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102731123,102737262,'NM_176793','MRPL43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74678606,74682457,'NM_016065','MRPS16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',51219558,51232523,'NM_138634','MSMB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',23424432,23450948,'NM_012228','MSRB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135057610,135084164,'NM_138384','MTG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',30638735,30678273,'NM_018109','MTPAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',57028755,57030493,'NM_001190478','MTRNR2L5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',37930371,37931865,'NM_001190489','MTRNR2L7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',111957352,112037113,'NM_130439','MXI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',26263007,26541471,'NM_017433','MYO3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',95056175,95232064,'NM_013451','MYOF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75061417,75071521,'NM_021245','MYOZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',69539255,69641779,'NM_032578','MYPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',120779217,120783844,'NM_199461','NANOS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',51235113,51260740,'NM_001145263','NCOA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75231674,75241595,'NM_003635','NDST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102273486,102279626,'NM_005004','NDUFB8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',21108908,21503122,'NM_001173484','NEBL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5444517,5490426,'NM_001047160','NET1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105243724,105342299,'NM_004210','NEURL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71001796,71003216,'NM_020999','NEUROG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104145421,104152271,'NM_002502','NFKB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',115604380,115662255,'NM_198514','NHLRC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',126125987,126128540,'NM_001146340','NKX1-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101282679,101286270,'NM_145285','NKX2-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134448309,134449527,'NM_177400','NKX6-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',15187776,15250701,'NM_004808','NMT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',96082978,96112673,'NM_022451','NOC3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71861697,71871471,'NM_018055','NODAL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103901922,103913617,'NM_004741','NOLC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71684718,71713456,'NM_022146','NPFFR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103531071,103533160,'NM_006993','NPM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',129237602,129240925,'NM_001030013','NPS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',115338572,115413795,'NM_006175','NRAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',64563012,64584792,'NM_030759','NRBF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',83627422,84736915,'NM_001165973','NRG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',33526552,33663839,'NM_001024628','NRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',123706592,123724733,'NM_017615','NSMCE4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',18874269,18980556,'NM_182543','NSUN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104837763,104943053,'NM_001134373','NT5C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74540215,74561587,'NM_015901','NUDT13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',12249578,12278149,'NM_014142','NUDT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',92901745,92902817,'NR_002779','NUDT9P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',95316411,95339819,'NM_001195755','O3FAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',126075861,126097535,'NM_000274','OAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105627307,105668035,'NM_024928','OBFC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50612692,50640431,'NM_001143997','OGDHL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74323344,74362793,'NM_152635','OIT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',15125900,15155857,'NM_018324','OLAH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',98092964,98109082,'NM_033207','OPALIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88404293,88416196,'NM_033282','OPN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',13182087,13220282,'NM_021980','OPTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',45118107,45131062,'NM_001004297','OR13A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',23768203,23771316,'NM_001145373','OTUD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74436985,74526738,'NM_001142595','P4HA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',91329233,91393628,'NM_148978','PANK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135042730,135055188,'NM_152911','PAOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',89409455,89497442,'NM_004670','PAPSS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',34641193,35144259,'NM_001184793','PARD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50696330,51041337,'NM_003631','PARG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102495457,102579688,'NM_003988','PAX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',69712422,69762690,'NM_022129','PBLD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',72313272,72318547,'NM_000281','PCBD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',55250865,56231057,'NM_001142763','PCDH15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',92970348,93034001,'NM_032373','PCGF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105052542,105100881,'NM_032154','PCGF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105146401,105196009,'NM_014976','PDCD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',112621542,112649754,'NM_001199492','PDCD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',95362334,95415419,'NM_006204','PDE6C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',96987319,97040771,'NM_020992','PDLIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',27026600,27075732,'NM_014317','PDSS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102757429,102780904,'NM_001195263','PDZD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',119032595,119124927,'NM_173791','PDZD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',6284845,6317513,'NM_004566','PFKFB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',3099711,3168997,'NM_002627','PFKP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99176016,99183188,'NM_002629','PGAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50393156,50402365,'NM_170753','PGBD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',13359801,13381752,'NM_001037537','PHYH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',60606353,60677540,'NM_032439','PHYHIPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99390432,99426177,'NM_018425','PI4K2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',98343058,98470269,'NM_152309','PIK3AP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',22863771,23043509,'NM_005028','PIP4K2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',95707886,95711662,'NR_002319','PIPSL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',3169918,3205033,'NM_014889','PITRM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103979935,103991221,'NM_005029','PITX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102037892,102080233,'NM_016112','PKD2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74364943,74384516,'NM_032562','PLA2G12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',81882237,81894764,'NM_001012973','PLAC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75340867,75347264,'NM_002658','PLAU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',95743735,96078138,'NM_016341','PLCE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124141808,124181861,'NM_021622','PLEKHA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',20145377,20609121,'NM_032812','PLXDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118295417,118317357,'NM_000936','PNLIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118340479,118358676,'NM_006229','PNLIPRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118370454,118394644,'NM_005396','PNLIPRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118177413,118227458,'NM_001011709','PNLIPRP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103328628,103338017,'NM_001174085','POLL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',79404912,79459304,'NM_007055','POLR3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71632591,71663196,'NM_021129','PPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',122206455,122339357,'NM_001030059','PPAPDC1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',80777225,80785095,'NM_005729','PPIF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',93378176,93382838,'NM_005398','PPP1R3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',133597949,133620043,'NM_018461','PPP2R2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74866568,74925788,'NM_021132','PPP3CB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',103882776,103900080,'NM_015062','PPRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46503539,46508326,'NM_005972','PPYR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135010833,135016177,'NM_001145201','PRAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',120917204,120928335,'NM_014098','PRDX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',72027109,72032537,'NM_005041','PRF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',24576059,24584981,'NR_023388','PRINS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',6509110,6662260,'NM_001242413','PRKCQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',52420916,53728116,'NM_001098512','PRKG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',120342905,120345150,'NM_004248','PRLHR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',13668944,13712874,'NM_003675','PRPF18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',25177559,25281539,'NM_020200','PRTFDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',73246060,73281088,'NM_001042465','PSAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104152365,104168891,'NM_002779','PSD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',124729545,124739896,'NM_153336','PSTK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',27727122,27743303,'NM_001034842','PTCHD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',89613174,89718512,'NM_000314','PTEN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',16518972,16595742,'NM_030664','PTER'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',23521465,23523187,'NM_178161','PTF1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',17671963,17699379,'NM_014241','PTPLA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',45970128,46061009,'NM_001042387','PTPN20A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',45970128,46061009,'NM_015605','PTPN20B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',129735802,129774154,'NM_130435','PTPRE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134060691,134081348,'NM_001098637','PWWP2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',100133311,100164968,'NM_032709','PYROXD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',119754416,119796104,'NM_014904','RAB11FIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',27833254,27869105,'NM_021252','RAB18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',43009989,43082373,'NM_145313','RASGEF1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',44775224,44810178,'NM_032023','RASSF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',6171314,6199428,'NM_001145547','RBM17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',112394144,112589217,'NM_001134363','RBM20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',48001492,48010997,'NM_002900','RBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',95341582,95350983,'NM_006744','RBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',64951128,65054889,'NM_001001330','REEP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',42892522,42942958,'NM_020630','RET'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',85994788,86008924,'NM_002921','RGR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',121249328,121286035,'NM_002925','RGS10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',62299203,62431204,'NR_024555','RHOBTB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90023600,90333062,'NM_018363','RNLS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',112686350,112687003,'NR_026715','RPL13AP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',92621688,92651927,'NM_006413','RPP30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',15179187,15186262,'NM_183005','RPP38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',79463523,79486577,'NM_001142285','RPS24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99106447,99151117,'NM_015179','RRP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',16672622,16899459,'NM_012425','RSU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',63622958,63698472,'NM_145307','RTKN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',69773280,69836952,'NM_017987','RUFY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',76541398,76611887,'NM_144660','SAMD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71579966,71600291,'NM_020150','SAR1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102096761,102114578,'NM_005063','SCD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',121642074,121694160,'NR_037771','SEC23IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75174136,75201939,'NM_004922','SEC24C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102236392,102269585,'NM_015490','SEC31B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',12211645,12251963,'NM_001142627','SEC61A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102722275,102735363,'NM_001203244','SEMA4G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',13399443,13430304,'NM_012247','SEPHS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',38712003,38731786,'NR_027269','SEPT7L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',7240591,7491309,'NM_001018039','SFMBT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105871805,105876133,'NM_145247','SFR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99516497,99521746,'NM_003015','SFRP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',10866407,10876883,'NR_027082','SFTA1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',81360646,81365151,'NM_005411','SFTPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',80985613,80990169,'NM_001098668','SFTPA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',81687475,81698841,'NM_003019','SFTPD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104464287,104488936,'NM_178858','SFXN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102780985,102790988,'NM_030971','SFXN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',120890414,120915194,'NM_213649','SFXN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',51735350,52053743,'NM_147156','SGMS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',72245709,72310938,'NM_003901','SGPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',82287637,82396296,'NM_207372','SH2D4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105343773,105605154,'NM_014631','SH3PXD2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',112669290,112763415,'NM_007373','SHOC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',69314944,69348153,'NM_001142498','SIRT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',91180030,91285293,'NM_213606','SLC16A12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',61080527,61139655,'NM_194298','SLC16A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118990573,119028931,'NM_003054','SLC18A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',50488352,50490772,'NM_003055','SLC18A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',69912095,69957286,'NM_152707','SLC25A16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101360264,101370211,'NM_031212','SLC25A28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',72749015,72793153,'NR_033414','SLC29A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',95643719,95652481,'NM_153226','SLC35G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',18280773,18372227,'NM_152725','SLC39A12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',98747784,98935673,'NM_003061','SLIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105717459,105777332,'NM_014720','SLK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',112317438,112354382,'NM_005445','SMC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',112042787,112054697,'NM_005871','SMNDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88708267,88712997,'NM_003087','SNCG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',101986902,101987049,'NR_002954','SNORA12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',120809514,120809640,'NR_002917','SNORA19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70184934,70185001,'NR_003076','SNORD98'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',97061519,97190927,'NM_006434','SORBS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',108323410,108914456,'NM_001206572','SORCS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',106390848,107014983,'NM_014978','SORCS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',22674404,22746545,'NM_012443','SPAG6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',73488797,73518796,'NM_014767','SPOCK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135084159,135088111,'NM_001012508','SPRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135230212,135233452,'NR_033789','SPRNP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70517833,70534573,'NR_036430','SRGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',17402681,17536260,'NM_001004470','ST8SIA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',17726129,17798827,'NM_003473','STAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',90630005,90673224,'NM_020799','STAMBPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',133870985,133971467,'NM_173575','STK32C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70257568,70322822,'NM_001130162','STOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104253708,104383204,'NM_016169','SUFU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70609998,70638855,'NM_003171','SUPV3L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',14960870,14986310,'NM_001193427','SUV39H2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',29786282,29963907,'NM_021738','SVIL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',135217393,135229128,'NM_001143763','SYCE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75074649,75080793,'NM_024875','SYNPO2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',46377886,46390607,'NM_031912','SYT15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',123913094,124004047,'NM_006997','TACC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70833963,70846680,'NM_001057','TACR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',7900678,8096720,'NM_031923','TAF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105117713,105138812,'NM_006951','TAF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',4903858,4948465,'NR_026743','tAKR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',96152175,96286079,'NM_015188','TBC1D12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',132780644,132999974,'NM_174937','TCERG1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',114699998,114917426,'NM_001198527','TCF7L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',97413142,97443890,'NM_015631','TCTN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',115929018,115982053,'NM_198795','TDRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',114033482,114053060,'NM_058222','TECTB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',69990122,70124245,'NM_030625','TET1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',59815181,59825903,'NM_003201','TFAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',25345513,25355599,'NM_024838','THNSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',121322967,121346531,'NM_003252','TIAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',51262093,51293342,'NM_006327','TIMM23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',98114352,98263673,'NM_012465','TLL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102881050,102887536,'NM_005521','TLX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102839067,102880893,'NM_001085398','TLX1NB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',98267856,98336799,'NM_020123','TM9SF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104211159,104226792,'NM_024789','TMEM180'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',18081223,18129860,'NM_001098844','TMEM236'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',62836406,62883214,'NM_178505','TMEM26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',44726769,44750648,'NM_001123376','TMEM72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',93548130,93615212,'NM_025235','TNKS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',17224987,17284076,'NM_004412','TRDMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',104394241,104408066,'NM_030912','TRIM8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',116687941,116727429,'NM_139169','TRUB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',82204017,82272371,'NM_030927','TSPAN14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70881231,70937429,'NM_012339','TSPAN15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74683521,74788623,'NM_145170','TTC18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5425060,5436793,'NM_001171864','TUBAL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',82827,85178,'NM_177987','TUBB8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134943127,134972634,'NM_006659','TUBGCP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',71567738,71576502,'NM_001040273','TYSND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',59764744,59800519,'NM_003338','UBE2D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99248757,99320950,'NM_024954','UBTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',13303772,13316334,'NM_145314','UCMA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',5396975,5406169,'NM_053049','UCN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',72642297,72732641,'NM_001244889','UNC5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',12002027,12125029,'NM_080599','UPF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',127467136,127501827,'NM_000375','UROS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105138797,105146260,'NM_001206427','USMG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74927301,75005439,'NM_152586','USP54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',11542514,11693685,'NM_014688','USP6NL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134893767,134895052,'NM_003577','UTF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',118882790,118887802,'NM_001112704','VAX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',75427877,75549920,'NM_014000','VCL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',76640305,76661212,'NR_033675','VDAC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134901397,134905423,'NM_014468','VENTX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',17310263,17319598,'NM_003380','VIM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',70553913,70602622,'NM_001035260','VPS26A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',49980222,49993565,'NM_144984','VSTM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',114196745,114568493,'NM_145206','VTI1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',115989007,116039741,'NM_198496','VWA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',28861427,28952047,'NR_024557','WAC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',88184992,88271521,'NM_015045','WAPAL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',49563523,49861007,'NM_020945','WDFY4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',122600676,122659028,'NM_018117','WDR11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',1092775,1168237,'NM_014023','WDR37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',105879635,105982110,'NM_025145','WDR96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',102212801,102233389,'NM_003393','WNT8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',111614513,111673301,'NM_020383','XPNPEP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',27439388,27483327,'NM_139312','YME1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',80812088,80875389,'NM_153367','ZCCHC24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99195936,99207117,'NM_198046','ZDHHC16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',114180047,114196662,'NM_022494','ZDHHC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',31648106,31858748,'NM_001174093','ZEB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',31645462,31648030,'NR_024284','ZEB1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',99486867,99510654,'NM_144588','ZFYVE27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',80498797,80746291,'NM_020338','ZMIZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',170404,290577,'NM_006624','ZMYND11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',74853342,74863325,'NM_001024593','ZMYND17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',44816278,44820783,'NM_006963','ZNF22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',43371798,43390072,'NM_001099284','ZNF239'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',38157904,38186492,'NM_021045','ZNF248'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',38278800,38305459,'NM_145011','ZNF25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',43459312,43464332,'NM_006973','ZNF32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',43444270,43490153,'NR_038867','ZNF32-AS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',38339583,38389001,'NM_006974','ZNF33A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',42404560,42453998,'NM_006955','ZNF33B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',63950212,64101777,'NM_199452','ZNF365'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',38423269,38452284,'NM_001178101','ZNF37A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',42328966,42368286,'NR_026777','ZNF37BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',31173570,31360872,'NM_182755','ZNF438'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',43421860,43433358,'NM_145312','ZNF485'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',43252579,43298013,'NR_026693','ZNF487P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',47975094,47993874,'NM_153034','ZNF488'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',76827608,76831519,'NM_032772','ZNF503'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',76726146,76791442,'NR_038224','ZNF503-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',76831291,76838746,'NR_024421','ZNF503-AS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',134972412,134976656,'NM_145806','ZNF511'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',97879461,97913507,'NM_014803','ZNF518A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',126620681,126665995,'NM_017580','ZRANB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr10',57787204,57791040,'NM_032997','ZWINT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',105453501,105474629,'NM_015423','AASDHPPT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',17371007,17455025,'NM_000352','ABCC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118525508,118538584,'NM_001142505','ABCG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',34129109,34336131,'NM_145804','ABTB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133628643,133640956,'NM_014384','ACAD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',107497467,107524101,'NM_000019','ACAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',44044304,44062145,'NM_001127219','ACCS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',44026106,44038103,'NM_001031854','ACCSL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',76249564,76412498,'NM_018367','ACER3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47223645,47227033,'NM_001131064','ACP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125047438,125056003,'NM_020108','ACRV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66070966,66087373,'NM_001104','ACTN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67166601,67174706,'NM_080658','ACY3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',129824078,129851749,'NM_139055','ADAMTS15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',129780027,129803749,'NM_007037','ADAMTS8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10283217,10285499,'NM_001124','ADM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66790480,66810605,'NM_001619','ADRBK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47637718,47693504,'NM_024783','AGBL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62039949,62070908,'NM_001620','AHNAK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67007080,67015155,'NM_003977','AIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8889276,8898202,'NM_001206645','AKIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67534365,67553319,'NM_000694','ALDH3B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67186208,67198678,'NM_000695','ALDH3B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77489635,77528347,'NM_024079','ALG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111158128,111247515,'NM_024740','ALG9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',43858932,43898401,'NM_139178','ALKBH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',106878662,106941671,'NM_138775','ALKBH8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',44238853,44288292,'NM_021926','ALX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46374539,46569490,'NM_017749','AMBRA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117569651,117589284,'NM_153206','AMICA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',94141155,94249566,'NM_130847','AMOTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10428443,10485702,'NM_001172431','AMPD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',101266614,101292463,'NM_178127','ANGPTL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',112763722,112776350,'NM_178510','ANKK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66813337,66826531,'NM_207354','ANKRD13D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',82582938,82637661,'NM_182603','ANKRD42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93866800,93872392,'NM_017704','ANKRD49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',69609163,69713299,'NR_030691','ANO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',26310253,26641412,'NM_031418','ANO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',22171297,22261489,'NM_001142649','ANO5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',407929,432011,'NM_001012302','ANO9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',915808,1002245,'NM_012305','AP2A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6372930,6397220,'NM_145689','APBB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',43290080,43322656,'NM_006595','API5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',34860418,34894515,'NM_015957','APIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56757627,56761503,'NR_027991','APLNR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',129444925,129519916,'NM_001142277','APLP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116211678,116213548,'NM_000039','APOA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116196627,116199221,'NM_000482','APOA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116165295,116168346,'NM_001166598','APOA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116205833,116208997,'NM_000040','APOC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',76978327,76999049,'NM_173039','AQP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',72073761,72111051,'NM_015242','ARAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117948311,117978957,'NM_001142281','ARCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47142424,47155252,'NM_001242832','ARFGAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6452488,6459285,'NM_012402','ARFIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46655207,46678696,'NM_004308','ARHGAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',109952975,110088661,'NM_020809','ARHGAP20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',128340164,128567303,'NM_001142685','ARHGAP32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',100063616,100366866,'NM_152432','ARHGAP42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',119712827,119865855,'NM_001198665','ARHGEF12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',72697310,72758073,'NM_014786','ARHGEF17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64538160,64546233,'NM_001667','ARL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64538160,64564620,'NR_037650','ARL2-SNX15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',13255900,13365388,'NM_001178','ARNTL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74648813,74740523,'NM_020251','ARRB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3622936,3642222,'NM_004314','ART1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3616311,3620061,'NM_053017','ART5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2246303,2248758,'NM_005170','ASCL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8915694,8921156,'NM_020646','ASCL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61861349,61917463,'NM_001083926','ASRGL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46595401,46654144,'NM_001205121','ATG13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',72203098,72218328,'NM_033388','ATG16L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64418579,64441298,'NM_015104','ATG2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',279137,285688,'NM_025092','ATHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63153012,63195659,'NM_015459','ATL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',107598768,107745036,'NM_000051','ATM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117777313,117785772,'NM_006476','ATP5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133753607,133787022,'NM_018644','B3GAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62139343,62146223,'NM_012200','B3GAT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65869418,65871737,'NM_006876','B3GNT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',76423082,76430653,'NM_138706','B3GNT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',359794,372117,'NM_178537','B4GALNT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',17329884,17355444,'NM_001202439','B7H6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116661611,116671596,'NM_001207049','BACE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116667271,116668067,'NR_037803','BACE1-AS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63793875,63808752,'NM_004322','BAD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65526125,65528193,'NM_001143985','BANF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',128751090,128827384,'NM_003658','BARX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64511992,64521093,'NM_138456','BATF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',27019084,27105930,'NM_003986','BBOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66034694,66057660,'NM_024649','BBS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118272060,118286823,'NM_182557','BCL9L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111552298,111594859,'NM_001037290','BCO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',27633017,27678611,'NM_001709','BDNF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',27484974,27676294,'NR_033313','BDNF-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61473931,61488511,'NM_004183','BEST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',192923,197422,'NM_001098787','BET1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',101723175,101754611,'NM_001166','BIRC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',101693390,101715344,'NM_001165','BIRC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',121491271,121492133,'NM_001001786','BLID'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65861379,65869158,'NM_015399','BRMS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1367704,1439904,'NM_003957','BRSK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62214309,62230363,'NM_001130702','BSCL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',122353566,122357589,'NM_001098169','BSX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',13366131,13441414,'NM_032320','BTBD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57267561,57275829,'NM_001145101','BTBD18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',110843465,110888274,'NM_017589','BTG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116124095,116148924,'NM_001159736','BUD13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111255157,111260007,'NM_022761','C11orf1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61313177,61316661,'NM_014206','C11orf10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8898198,8911129,'NM_020643','C11orf16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64620258,64635756,'NM_013265','C11orf2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63824438,63828815,'NM_001039496','C11orf20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2274082,2279719,'NR_024621','C11orf21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67785378,67796045,'NM_022338','C11orf24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',75833716,75940237,'NM_020193','C11orf30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57265297,57267459,'NM_170746','C11orf31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111624085,111636793,'NM_001145024','C11orf34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',544849,550779,'NM_173573','C11orf35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3196137,3200937,'NR_027138','C11orf36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4549228,4555626,'NM_144663','C11orf40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',33520452,33652222,'NM_012194','C11orf41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6183373,6188941,'NM_173525','C11orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',128274669,128280802,'NM_145013','C11orf45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',30301224,30315741,'NM_152316','C11orf46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62186864,62195817,'NM_024099','C11orf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46914826,47140374,'NM_024113','C11orf49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71498280,71501470,'NM_014042','C11orf51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111294810,111302805,'NM_080659','C11orf52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',110631916,110662182,'NM_198498','C11orf53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93114440,93135895,'NM_014039','C11orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111450177,111461084,'NM_001082969','C11orf57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',16716723,16736477,'NM_014267','C11orf58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124141603,124175509,'NM_024631','C11orf61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',122258682,122281793,'NM_199124','C11orf63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',107758936,107843468,'NM_152587','C11orf65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61005160,61014976,'NM_001170753','C11orf66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77209855,77261046,'NM_024684','C11orf67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65440858,65443107,'NM_001135635','C11orf68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',101423378,101460501,'NM_032930','C11orf70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113767379,113776349,'NM_019021','C11orf71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',85690900,85734633,'NR_024598','C11orf73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',36572668,36637393,'NM_138787','C11orf74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',92851286,92916194,'NM_020179','C11orf75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66268782,66367563,'NM_024650','C11orf80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',82290384,82323347,'NM_145018','C11orf82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62195701,62197738,'NM_001085372','C11orf83'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63337498,63351766,'NM_138471','C11orf84'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64462504,64484185,'NM_001037225','C11orf85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66499329,66501055,'NM_001136485','C11orf86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',108798055,108805103,'NM_207645','C11orf87'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',110890719,110912966,'NM_001100388','C11orf88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61276696,61312565,'NM_001127392','C11orf9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',33676229,33678862,'NM_001166692','C11orf91'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',110669323,110675749,'NR_034154','C11orf92'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',110675185,110684563,'NM_001136105','C11orf93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',45884661,45885409,'NM_001080446','C11orf94'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63283939,63292689,'NM_001144936','C11orf95'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',43920681,43922009,'NM_001145033','C11orf96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47567791,47572537,'NM_031909','C1QTNF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118714861,118722593,'NM_015645','C1QTNF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118483302,118493037,'NM_014807','C2CD2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73423127,73559712,'NM_015531','C2CD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67042993,67047475,'NM_016366','CABP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66979393,66985821,'NM_145200','CABP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',114549554,114880451,'NM_001098517','CADM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',14946623,14950408,'NM_001033952','CALCA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',15051721,15056753,'NM_000728','CALCB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64705879,64736053,'NR_040008','CAPN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',76455639,76514846,'NM_004055','CAPN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',34029805,34077183,'NM_203364','CAPRIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',104417262,104421261,'NM_052889','CARD16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',104468405,104477368,'NM_001007232','CARD17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',104513657,104515671,'NM_021571','CARD18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66939724,66949654,'NM_001166222','CARNS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2978727,3035257,'NM_001751','CARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',104401446,104411067,'NM_001223','CASP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',104262627,104274607,'NR_034068','CASP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',104318803,104344535,'NM_001225','CASP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',104370176,104399105,'NR_024239','CASP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',34417047,34450183,'NM_001752','CAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65540798,65550564,'NM_053054','CATSPER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118582199,118684069,'NM_005188','CBL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124329226,124416595,'NM_025004','CCDC15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118566172,118571794,'NM_001145018','CCDC153'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',27316636,27341371,'NM_030771','CCDC34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',92703530,92811284,'NM_181645','CCDC67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',32580201,32772763,'NM_001008391','CCDC73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',85763425,85811799,'NM_001156474','CCDC81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',95725576,95762731,'NM_024725','CCDC82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',85243791,85308699,'NM_173556','CCDC83'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118374061,118391665,'NM_198489','CCDC84'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65414450,65415682,'NM_006848','CCDC85B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60366004,60375137,'NM_024098','CCDC86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66114215,66117130,'NM_018219','CCDC87'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63864265,63881582,'NM_032251','CCDC88B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',85072540,85074968,'NM_152723','CCDC89'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',82650149,82675025,'NM_021825','CCDC90B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6237541,6249932,'NM_176875','CCKBR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',69165053,69178423,'NM_053056','CCND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66117265,66130066,'NM_005125','CCS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',822951,828835,'NM_139029','CD151'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65838533,65841091,'NM_020404','CD248'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117714998,117718669,'NM_000732','CD3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117680504,117692100,'NM_000733','CD3E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117720268,117729707,'NM_000073','CD3G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',35116992,35210525,'NM_001202556','CD44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60626505,60651899,'NM_014207','CD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',33681131,33701074,'NM_001127227','CD59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60495690,60544424,'NM_006725','CD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2355122,2375225,'NM_004356','CD81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',44543716,44597891,'NM_002231','CD82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64348237,64368617,'NM_017525','CDC42BPG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64838864,64846476,'NM_006779','CDC42EP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64601502,64608191,'NM_080668','CDCA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',606564,615067,'NM_021924','CDHR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67030543,67032678,'NM_005851','CDK2AP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2861023,2863571,'NM_001122630','CDKN1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125331922,125438397,'NM_016952','CDON'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47444064,47467152,'NM_001172640','CELF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',777109,780126,'NM_016564','CEND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116703780,116789192,'NM_014956','CEP164'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',95163272,95205506,'NM_001243776','CEP57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65378860,65382380,'NM_005507','CFL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73261360,73265538,'NM_016565','CHCHD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125000240,125051360,'NM_001114121','CHEK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',857858,900874,'NM_001142676','CHID1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67576901,67645434,'NM_212469','CHKA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89573245,89596180,'NM_012124','CHORDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74085121,74119834,'NM_015424','CHRDL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62432726,62445588,'NM_000738','CHRM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46363215,46364683,'NM_000741','CHRM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3643392,3649190,'NM_020402','CHRNA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',45625814,45643782,'NM_003654','CHST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46721659,46824435,'NM_014756','CKAP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66888214,66898224,'NM_001166212','CLCF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113155727,113156417,'NM_001101389','CLDN25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',122448242,122571217,'NM_024769','CLMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77004843,77026499,'NM_001293','CLNS1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57181791,57185913,'NM_006831','CLP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71681117,71823216,'NM_030813','CLPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6216897,6222283,'NM_001037329','CNGA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65802271,65808259,'NM_182553','CNIH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58146721,58149781,'NM_000614','CNTF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',98932085,99734826,'NM_175566','CNTN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',36250417,36267575,'NM_001101653','COMMD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',14435624,14478017,'NM_001144061','COPB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66962093,66967868,'NM_001018070','CORO1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63498654,63500591,'NM_004074','COX8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60926695,60953959,'NM_024811','CPSF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',68278926,68365975,'NM_001876','CPT1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46255803,46299548,'NM_052854','CREB3L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',85046255,85053830,'NM_001039618','CREBZF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',122214464,122248557,'NM_019604','CRTAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',45825532,45861375,'NM_021117','CRY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111284559,111287683,'NM_001885','CRYAB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',11329896,11331480,'NR_002207','CSNK2A1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',19160153,19180165,'NM_003476','CSRP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65536037,65537552,'NM_001323','CST6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',33062705,33139613,'NM_001326','CSTF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57285809,57343228,'NM_001085464','CTNND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10729386,10757866,'NM_014633','CTR9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',87693628,87710589,'NM_148170','CTSC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1730557,1741798,'NM_001909','CTSD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66087510,66092623,'NM_003793','CTSF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65403859,65407788,'NM_001335','CTSW'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',69922259,69960338,'NM_005231','CTTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',107384617,107483698,'NM_003478','CUL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',94335434,94346424,'NM_016403','CWC15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',106702281,106833782,'NM_152434','CWF19L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118259684,118272190,'NM_001716','CXCR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7642901,7651397,'NM_016229','CYB5R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60872795,60886331,'NM_001161454','CYBASC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',14856131,14870327,'NM_024514','CYP2R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61204480,61271050,'NM_006133','DAGLA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60857229,60872807,'NM_015533','DAK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',20134335,20138446,'NM_001029865','DBX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',31240746,31347933,'NM_181807','DCDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',30841725,30970809,'NM_020869','DCDC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6599133,6633650,'NM_003737','DCHS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125678856,125720854,'NM_014026','DCPS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',102426622,102468154,'NM_032299','DCUN1D5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60823494,60857242,'NM_001923','DDB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47193068,47217345,'NM_000107','DDB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',103412517,103415132,'NM_001001711','DDI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',108041025,108316858,'NM_004398','DDX10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125279481,125298215,'NM_013264','DDX25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118123682,118167182,'NM_004397','DDX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',634224,685740,'NM_021008','DEAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71221893,71226256,'NM_001002035','DEFB108B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',9116948,9243449,'NM_001243254','DENND5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',32993985,33011704,'NM_001077242','DEPDC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',75157425,75190227,'NM_032564','DGAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46323392,46358680,'NM_201533','DGKZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',70823104,70837125,'NM_001360','DHCR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111313136,111398517,'NM_001037954','DIXDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61278076,61281712,'NR_026882','DKFZP434K028'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',31794689,31865163,'NR_033971','DKFZp686K1684'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65299953,65304398,'NM_138368','DKFZp761E198'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',45749558,45750485,'NR_027134','DKFZp779M0652'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',11941118,11987205,'NM_015881','DKK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111400747,111440212,'NM_001931','DLAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',82843703,85015962,'NM_001142699','DLG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73339011,73358980,'NM_153614','DNAJB13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',31347952,31410958,'NM_181706','DNAJC24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63754328,63758329,'NM_005528','DNAJC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6475101,6549830,'NM_144666','DNHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67137570,67139711,'NR_033791','DOC2GP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118472422,118477995,'NM_001382','DPAGT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64857800,64877027,'NM_006268','DPF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66004455,66033706,'NM_130443','DPP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65443303,65445624,'NM_006442','DRAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',112785526,112851211,'NM_016574','DRD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',627304,630705,'NM_000797','DRD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116803698,117173186,'NM_020693','DSCAML1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58696387,58732636,'NM_015177','DTX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1531856,1549726,'NM_004420','DUSP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',102485369,102855801,'NM_001080463','DYNC2H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',19202185,19219083,'NM_024680','E2F8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',85633453,85667433,'NM_003797','EED'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62083648,62098036,'NM_001404','EEF1G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',817584,821991,'NM_173584','EFCAB4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65390487,65396981,'NM_016938','EFEMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65100084,65116692,'NM_001099409','EHBP1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64376783,64402767,'NM_006795','EHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',34599163,34641410,'NM_012153','EHF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124944507,124959785,'NM_004879','EI24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65520591,65526213,'NM_001242486','EIF1AD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7965442,7974294,'NM_003754','EIF3F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',32561966,32580590,'NM_006360','EIF3M'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10775168,10786119,'NM_001172705','EIF4G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',34456917,34489922,'NM_001243081','ELF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',106967026,107042715,'NM_018712','ELMOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',31487872,31761905,'NM_019040','ELP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62126266,62136813,'NM_153265','EML3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',94462621,94505463,'NM_015036','ENDOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',696119,717727,'NM_022772','EPS8L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124128228,124137433,'NM_138961','ESAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63829619,63840786,'NM_004451','ESRRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',127833865,127897415,'NM_001162422','ETS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',107881367,107969584,'NM_015065','EXPH5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',44073674,44223556,'NM_001178083','EXT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46697318,46717632,'NM_000506','F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',69726916,69731156,'NM_003824','FADD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61323672,61341105,'NM_013402','FADS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61352288,61391401,'NM_004265','FADS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61397573,61415582,'NM_021727','FADS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58668827,58679087,'NM_022074','FAM111A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58631233,58651464,'NM_001142704','FAM111B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125586828,125638089,'NM_024556','FAM118B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6189139,6212517,'NM_001098794','FAM160A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',72794675,72986876,'NM_015159','FAM168A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47564805,47567322,'NM_001164379','FAM180B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',82120693,82122554,'NM_175885','FAM181B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113897646,113935790,'NM_152315','FAM55A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',114054409,114082862,'NM_182495','FAM55B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113946522,113971694,'NM_017678','FAM55D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',95141753,95162602,'NM_144664','FAM76B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71176204,71189928,'NM_018172','FAM86C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67315813,67329383,'NR_024249','FAM86C2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65096395,65098245,'NM_001098785','FAM89B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1643404,1645662,'NR_026643','FAM99A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1661075,1663435,'NR_026642','FAM99B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',22600654,22603963,'NM_022725','FANCF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',13646781,13710469,'NM_032228','FAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',91724909,92269283,'NM_001008781','FAT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64644674,64646248,'NM_001997','FAU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',33719065,33752647,'NM_012175','FBXO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',72225437,72530791,'NM_014824','FCHSD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',109805870,109840818,'NM_004109','FDX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111249989,111255391,'NM_138378','FDXACB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61316684,61321290,'NM_004111','FEN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63730727,63747939,'NM_178443','FERMT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124863305,124871416,'NM_022549','FEZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',69222186,69228287,'NM_005117','FGF19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',69333916,69343129,'NM_005247','FGF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',69296977,69299352,'NM_002007','FGF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',26972203,26975208,'NM_203371','FIBIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65407786,65412586,'NM_004214','FIBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',35596310,35598997,'NM_014344','FJX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63764988,63768183,'NM_004470','FKBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',128069022,128188372,'NM_002017','FLI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125716821,125730692,'NR_033839','FLJ39051'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',70794439,70812048,'NR_038862','FLJ42102'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63627937,63643221,'NM_013280','FLRT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47694644,47745569,'NM_015308','FNBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',49124762,49186798,'NM_001193473','FOLH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89032112,89071534,'NM_153696','FOLH1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71578606,71585015,'NM_000802','FOLR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71605466,71610642,'NM_000803','FOLR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71524418,71528582,'NM_000804','FOLR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93678450,93680506,'NM_001199206','FOLR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65416267,65424573,'NM_005438','FOSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118347626,118357205,'NM_181721','FOXR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125644249,125653237,'NR_037648','FOXRED1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64910616,64937571,'NM_031904','FRMD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',30209138,30213400,'NM_000510','FSHB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61488332,61491708,'NM_002032','FTH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93916664,93922712,'NM_002033','FUT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6459252,6462487,'NM_012192','FXC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117195999,117204017,'NM_021603','FXYD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117212900,117252956,'NM_022003','FXYD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117195999,117252956,'NM_001204268','FXYD6-FXYD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',86334364,86344088,'NM_012193','FZD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77603983,77730574,'NM_012296','GAB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',68208558,68215219,'NM_015973','GAL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65564811,65573227,'NM_033036','GAL3ST3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',11248996,11600137,'NM_198516','GALNTL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62148873,62170680,'NM_198334','GANAB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',22652894,22791123,'NM_005256','GAS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',76605250,76676111,'NM_182833','GDPD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74823332,74914247,'NM_030792','GDPD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59353321,59369550,'NM_005142','GIF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133706977,133751428,'NM_138342','GLB1L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133651484,133694668,'NM_001080407','GLB1L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58232805,58256023,'NM_201648','GLYAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58467297,58481119,'NM_080661','GLYATL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58358115,58368573,'NM_145016','GLYATL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62231689,62233254,'NM_012202','GNG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64458518,64459936,'NM_130769','GPHA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63810157,63813548,'NM_001170880','GPR137'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66975347,66976776,'NM_206997','GPR152'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60374973,60380020,'NM_004778','GPR44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93750124,93774233,'NM_016540','GPR83'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',122901737,122998728,'NM_020716','GRAMD1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',104986620,105289441,'NM_001112812','GRIA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',120036237,120362179,'NM_014619','GRIK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',87877391,88420888,'NM_001143831','GRM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67107641,67110700,'NM_000852','GSTP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18300391,18345166,'NM_005316','GTF2H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',106063119,106394381,'NM_000855','GUCY1A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',76068857,76110481,'NR_024042','GUCY2E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6690953,6699686,'NR_003945','GVINP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',45899771,45907223,'NM_152312','GYLTL1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1972981,1975641,'NR_002196','H19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118469794,118471387,'NM_002105','H2AFX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46581431,46595353,'NM_173811','HARBI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5203271,5204877,'NM_000518','HBB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5219760,5221398,'NR_001589','HBBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5210634,5212434,'NM_000519','HBD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5246155,5247949,'NM_005330','HBE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5226077,5227663,'NM_000559','HBG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5230996,5232587,'NM_000184','HBG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124294355,124311518,'NM_152722','HEPACAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93394025,93487022,'NM_001098672','HEPHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124294355,124295783,'NM_001037558','HEPN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118497442,118510975,'NM_001243259','HINFP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',33235743,33332515,'NM_001048200','HIPK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118460796,118469469,'NM_000190','HMBS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',43239629,43247495,'NR_033868','HNRNPKP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62236672,62251433,'NM_001079559','HNRNPUL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62214309,62251432,'NR_037946','HNRNPUL2-BSCL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18256792,18300297,'NM_181508','HPS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6408843,6418830,'NM_000613','HPX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',522241,525550,'NM_005343','HRAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63076817,63087431,'NM_017878','HRASLS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62985451,63015256,'NM_001146729','HRASLS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',43658718,43834745,'NM_016142','HSD17B12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',122433409,122438111,'NM_153201','HSPA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111288669,111290027,'NM_001541','HSPB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111288669,111302805,'NR_037651','HSPB2-C11orf52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',20341864,20361905,'NM_001098520','HTATIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113353431,113366244,'NM_001161772','HTR3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113280727,113322493,'NM_006028','HTR3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125262164,125275751,'NM_001134793','HYLS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118420105,118433126,'NM_006389','HYOU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',303990,305272,'NM_003641','IFITM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1710215,1728400,'NM_001170820','IFITM10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',298106,299410,'NM_006435','IFITM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',309672,310914,'NM_021034','IFITM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',288202,289526,'NM_001025295','IFITM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117920452,117942001,'NM_020153','IFT46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2106922,2118917,'NM_001127598','IGF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2118333,2126472,'NR_028044','IGF2-AS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',68427894,68464645,'NM_002180','IGHMBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18682427,18704353,'NM_173588','IGSF22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133290394,133332090,'NM_014987','IGSF9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117362315,117377408,'NM_001558','IL10RA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111519183,111540050,'NM_001562','IL18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71387756,71391613,'NM_005699','IL18BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6581539,6588675,'NM_004517','ILK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',31410524,31487745,'NM_144981','IMMP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61648020,61677211,'NM_020238','INCENP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71613529,71627836,'NM_001567','INPPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2137584,2139015,'NM_000207','INS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2106917,2139015,'NR_003512','INS-IGF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',15093059,15225330,'NM_001042536','INSC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77267413,77383365,'NM_033547','INTS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62170895,62177350,'NM_030628','INTS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',9362744,9426250,'NM_006391','IPO7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',602554,605999,'NM_001572','IRF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133444029,133526862,'NM_032801','JAM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',95762805,95766375,'NM_003772','JRKL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65236048,65243653,'NM_182710','KAT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',105427034,105453675,'NM_152433','KBTBD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47550324,47557143,'NR_024222','KBTBD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',29987863,29995153,'NM_002233','KCNA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',17714070,17755953,'NM_004976','KCNC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73843533,73856248,'NM_005472','KCNE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',128213124,128217573,'NM_000220','KCNJ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',17363371,17366782,'NM_000525','KCNJ11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',128266522,128293161,'NM_000890','KCNJ5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63815368,63824079,'NM_033310','KCNK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65116901,65120043,'NM_005714','KCNK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2422796,2826916,'NM_000218','KCNQ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2847838,2849911,'NR_024627','KCNQ1DN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2618343,2677804,'NR_002728','KCNQ1OT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77404408,77411968,'NM_023930','KCTD14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77559945,77577312,'NM_001029859','KCTD21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',107848042,107874369,'NM_153705','KDELC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66643315,66782126,'NR_027473','KDM2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',94346492,94372324,'NM_018039','KDM4D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',94398069,94400408,'NM_001161630','KDM4DL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',101290955,101377003,'NM_020802','KIAA1377'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93034463,93103170,'NM_033395','KIAA1731'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',105383838,105398164,'NM_032424','KIAA1826'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',27998738,28086322,'NM_031217','KIF18A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125798605,126375976,'NM_032531','KIRREL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',126378014,126381163,'NR_040078','KIRREL3-AS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65781340,65791907,'NM_001134775','KLC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74811085,74819322,'NM_001039548','KLHL35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',9072485,9074313,'NR_027713','KRT8P41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1562147,1563089,'NM_001005922','KRTAP5-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',70954256,70955314,'NM_001012710','KRTAP5-10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',70970548,70971569,'NM_001005405','KRTAP5-11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1574982,1576100,'NM_001004325','KRTAP5-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1585370,1586269,'NM_001012708','KRTAP5-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1598763,1599944,'NM_001012709','KRTAP5-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1607608,1608735,'NM_001001480','KRTAP5-5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1675000,1675561,'NM_001012416','KRTAP5-6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',70915960,70916858,'NM_001012503','KRTAP5-7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',70926718,70927901,'NM_021046','KRTAP5-8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',70937113,70938301,'NM_005553','KRTAP5-9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71485985,71492081,'NM_017907','LAMTOR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',110916442,110936998,'NM_178834','LAYN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18372511,18386341,'NM_005566','LDHA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18433949,18457723,'NM_001144071','LDHAL6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18390428,18429369,'NM_002301','LDHC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',35922187,36209417,'NM_174902','LDLRAD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63030099,63040822,'NM_033101','LGALS12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',27344083,27450910,'NM_018490','LGR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',27472540,27484902,'NM_018362','LIN7C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',129377728,129380591,'NR_024233','LINC00167'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',33054271,33057576,'NR_015451','LINC00294'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60139799,60211197,'NR_026946','LINC00301'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73880570,73882403,'NM_001144869','LIPT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8202432,8241982,'NM_002315','LMO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',33836698,33848085,'NM_001142315','LMO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',19689055,19692722,'NR_015384','LOC100126784'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133407376,133416446,'NR_027276','LOC100128239'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71267146,71273255,'NM_001242853','LOC100129216'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10519362,10578055,'NR_034094','LOC100129827'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64612419,64613118,'NM_001242631','LOC100130348'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66841885,66915734,'NR_024469','LOC100130987'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116986,121920,'NR_028326','LOC100133161'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71254202,71317141,'NR_029192','LOC100133315'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',102159616,102212707,'NR_038390','LOC100288077'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',112645463,112649833,'NR_034101','LOC100288346'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118757697,118875154,'NR_034160','LOC100499227'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',22825044,22838548,'NM_001195637','LOC100500938'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',82460755,82462402,'NR_038903','LOC100506233'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',12957656,12967671,'NR_038904','LOC100506305'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',86344310,86389637,'NR_038905','LOC100506368'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18577926,18588378,'NR_038360','LOC100506540'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',42165868,42231816,'NR_038309','LOC100507205'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',43887415,43899070,'NR_038907','LOC100507300'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',128066776,128071128,'NR_038908','LOC100507392'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46824537,46852543,'NR_038909','LOC100507401'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117391696,117462718,'NR_038318','LOC100526771'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116571538,116577840,'NR_045215','LOC100652768'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',48953625,48959823,'NM_001206625','LOC120824'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',563807,565885,'NR_026967','LOC143666'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',44952028,44956154,'NR_026681','LOC221122'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65093266,65094460,'NR_038923','LOC254100'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1287513,1288513,'NR_029409','LOC255512'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',9736415,9789442,'NR_036485','LOC283104'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',49009727,49016105,'NM_001206626','LOC283116'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',115131258,115136128,'NR_034148','LOC283143'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133271539,133276845,'NR_024344','LOC283174'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133811585,133880765,'NR_033852','LOC283177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58457691,58582501,'NR_033853','LOC283194'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7828873,7884078,'NR_036678','LOC283299'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1550546,1576990,'NR_021489','LOC338651'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',33139778,33169718,'NR_034027','LOC338739'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',122393483,122395529,'NR_027288','LOC341056'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89284287,89290526,'NM_001206627','LOC399939'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89354261,89364486,'NR_038146','LOC399940'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',9732892,9737656,'NR_033972','LOC440028'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',49536655,49788545,'NR_027044','LOC440040'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',54817754,54822284,'NR_038174','LOC440041'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',50195574,50214209,'NR_003034','LOC441601'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74629597,74632397,'NM_001195528','LOC441617'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18187260,18189631,'NR_026541','LOC494141'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93885342,93904937,'NM_001190462','LOC643037'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',104277485,104294112,'NR_034079','LOC643733'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',106967680,106969159,'NR_028328','LOC643923'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',9437678,9438821,'NR_036539','LOC644656'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',50324893,50336378,'NR_024504','LOC646813'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',119625677,119641851,'NR_038829','LOC649133'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3358766,3386954,'NR_024248','LOC650368'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10836339,10857399,'NR_034137','LOC729013'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',43875428,43878000,'NR_026952','LOC729799'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58050919,58099966,'NM_004811','LPXN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66381451,66384522,'NM_024036','LRFN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46834843,46896749,'NM_002334','LRP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67836683,67973319,'NM_002335','LRP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61032847,61035066,'NM_001145077','LRRC10B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',76046215,76058692,'NM_005512','LRRC32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',40092328,40272240,'NM_020929','LRRC4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56705796,56715764,'NM_001005210','LRRC55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',527521,544916,'NM_198075','LRRC56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62210449,62213947,'NM_203422','LRRN4CL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71469024,71485586,'NM_145309','LRTOMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1830775,1870069,'NM_002339','LSP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65062605,65082275,'NM_001164266','LTBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',24475131,25060762,'NM_001009909','LUZP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10535988,10546941,'NM_006691','LYVE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63522605,63690161,'NM_014067','MACROD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47247774,47308158,'NM_003682','MADD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65021808,65030515,'NR_002819','MALAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',95351087,95715992,'NM_032427','MAML2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65121801,65138296,'NM_002419','MAP3K11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64313184,64327289,'NM_004579','MAP4K2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74991552,75057127,'NM_207577','MAP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',45863622,45884592,'NM_005456','MAPK8IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63362975,63435068,'NM_001163296','MARK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118684443,118693050,'NM_006500','MCAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46359794,46361951,'NM_002391','MDK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',85829797,86061326,'NM_001161586','ME3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93157052,93186144,'NM_004268','MED17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57227762,57236249,'NM_153450','MED19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64327561,64334764,'NM_130799','MEN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62189354,62191499,'NM_001043229','METTL12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',28086373,28311630,'NM_152636','METTL15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118714861,118722593,'NM_031433','MFRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',12088713,12241907,'NM_014632','MICAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',12265022,12337267,'NM_032867','MICALCL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',121528146,121528226,'NR_029515','MIR100'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',121465020,121578980,'NR_024430','MIR100HG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63892649,63892751,'NR_031602','MIR1237'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',121475674,121475762,'NR_029671','MIR125B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',95714249,95714338,'NR_036125','MIR1260B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',43559519,43559609,'NR_029697','MIR129-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93106487,93106578,'NR_031639','MIR1304'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57165246,57165335,'NR_029673','MIR130A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',34919959,34920043,'NR_039836','MIR1343'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',72003754,72003822,'NR_029603','MIR139'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61339208,61339288,'NR_031729','MIR1908'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64415184,64415294,'NR_029578','MIR192'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64415402,64415487,'NR_029829','MIR194-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',558088,558198,'NR_029623','MIR210'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',555656,558457,'NR_038262','MIR210HG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46429930,46430015,'NR_036117','MIR3160-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46429932,46430013,'NR_036118','MIR3160-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59119125,59119207,'NR_036120','MIR3162'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71460921,71460996,'NR_036123','MIR3165'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',126363563,126363648,'NR_036126','MIR3167'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74723783,74723878,'NR_029891','MIR326'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',110888872,110888956,'NR_029839','MIR34B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',110889373,110889450,'NR_029840','MIR34C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62084210,62084354,'NR_037427','MIR3654'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118394863,118394932,'NR_037429','MIR3656'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',70396022,70396121,'NR_037437','MIR3664'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',100895760,100895846,'NR_037485','MIR3920'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',35988223,35988330,'NR_039769','MIR3973'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1837269,1837342,'NR_036185','MIR4298'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',11634773,11634845,'NR_036184','MIR4299'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',81279430,81279526,'NR_036186','MIR4300'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',112825954,112826020,'NR_036183','MIR4301'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10486392,10486449,'NR_039705','MIR4485'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',19553432,19553495,'NR_039706','MIR4486'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61032643,61032705,'NR_039708','MIR4488'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65173238,65173300,'NR_039709','MIR4489'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89928589,89928673,'NR_039711','MIR4490'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',110723691,110723757,'NR_039712','MIR4491'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118286626,118286706,'NR_039713','MIR4492'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',122757357,122757430,'NR_039714','MIR4493'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2150868,2150944,'NR_039834','MIR4686'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3833867,3833947,'NR_039835','MIR4687'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46354527,46354610,'NR_039837','MIR4688'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65160356,65160416,'NR_039839','MIR4690'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67557939,67558024,'NR_039840','MIR4691'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',72172222,72172285,'NR_039841','MIR4692'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',103225843,103225918,'NR_039842','MIR4693'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',19738125,19738205,'NR_039843','MIR4694'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74108960,74109030,'NR_039845','MIR4696'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133273608,133273686,'NR_039846','MIR4697'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2111939,2112015,'NR_030158','MIR483'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',100288165,100288199,'NR_031662','MIR548G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',69807708,69807824,'NR_031624','MIR548K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',28034937,28035033,'NR_030341','MIR610'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61316542,61316609,'NR_030342','MIR611'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64968504,64968604,'NR_030343','MIR612'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',43537781,43537879,'NR_031577','MIR670'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1974564,1974637,'NR_030533','MIR675'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',121522439,121522511,'NR_029477','MIRLET7A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117812414,117902749,'NM_005933','MLL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',102165850,102174176,'NM_001145938','MMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',102146442,102156569,'NM_002425','MMP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',102238673,102250974,'NM_002426','MMP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',102318930,102331673,'NM_002427','MMP13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',101952775,102001273,'NM_004771','MMP20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4965999,4970235,'NM_021801','MMP26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',102067624,102081678,'NM_022122','MMP27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',102211737,102219552,'NM_002422','MMP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',101896448,101906688,'NM_002423','MMP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',102087735,102100895,'NM_002424','MMP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1447260,1464524,'NM_001172223','MOB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',75106581,75119979,'NM_025098','MOGAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58732558,58737070,'NM_001039396','MPEG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',30388193,30558616,'NM_001584','MPPED2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117629340,117640461,'NM_005797','MPZL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117605545,117628221,'NM_198275','MPZL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93790114,93866688,'NM_005591','MRE11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',68504065,68505031,'NM_198923','MRGPRD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3205616,3210192,'NM_001039165','MRGPRE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',68528437,68537426,'NM_001098515','MRGPRF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3195749,3196619,'NM_001164377','MRGPRG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18911935,18913125,'NM_147199','MRGPRX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',19032578,19038804,'NM_054030','MRGPRX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18099077,18116603,'NM_054031','MRGPRX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18150959,18152403,'NM_054032','MRGPRX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65959125,65962886,'NM_170739','MRPL11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59330183,59334921,'NM_017840','MRPL16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6658191,6661208,'NM_022061','MRPL17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',68415321,68427879,'NM_181514','MRPL21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1925077,1934415,'NM_021134','MRPL23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1961014,1967726,'NR_024471','MRPL23-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73176564,73253304,'NM_016055','MRPL48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64646291,64651417,'NR_037568','MRPL49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10551213,10672111,'NM_001206881','MRVI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59979857,59994801,'NM_021950','MS4A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60309396,60325354,'NM_206893','MS4A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60016826,60031477,'NM_001164470','MS4A12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60039461,60066767,'NM_001100909','MS4A13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59920062,59941804,'NM_001079692','MS4A14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60280915,60300780,'NM_001098835','MS4A15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59612712,59622516,'NM_000139','MS4A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59580676,59595164,'NM_006138','MS4A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59804589,59833021,'NM_148975','MS4A4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59953637,59971841,'NM_023945','MS4A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59696546,59707250,'NM_022349','MS4A6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59858930,59865017,'NM_139249','MS4A6E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59902533,59920002,'NM_021201','MS4A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60223622,60239861,'NM_031457','MS4A8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62117250,62125888,'NM_004739','MTA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47595433,47620782,'NM_014342','MTCH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',68231483,68275564,'NM_004923','MTL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',95205691,95297019,'NM_201281','MTMR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',92342436,92355596,'NM_005959','MTNR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10486009,10487299,'NM_001190702','MTRNR2L8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',26537154,26550391,'NM_001135092','MUC15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1064874,1094417,'NM_002457','MUC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1200870,1239982,'NM_002458','MUC5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1002823,1026706,'NM_005961','MUC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65384447,65390490,'NM_025128','MUS81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47309532,47330829,'NM_000256','MYBPC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',68818197,68821330,'NM_138768','MYEOV'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',76516963,76603934,'NM_001127180','MYO7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',17697685,17700254,'NM_002478','MYOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63463017,63481022,'NM_024771','NAA40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89507465,89565427,'NM_005467','NAALAD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64568870,64582585,'NM_005468','NAALADL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',70841864,70890229,'NM_018161','NADSYN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2922235,2970183,'NM_005969','NAP1L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77824654,77963557,'NM_001243251','NARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',34083686,34125034,'NM_001144030','NAT10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',19691456,20099723,'NM_182964','NAV2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',19489015,19502201,'NR_033989','NAV2-AS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',112337178,112641129,'NM_001242608','NCAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133527546,133599636,'NM_015261','NCAPD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77457040,77468913,'NM_001204054','NDUFC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77404408,77468913,'NM_001203260','NDUFC2-KCTD14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47557137,47562691,'NM_004551','NDUFS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67554659,67560690,'NM_002496','NDUFS8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67130898,67136588,'NM_001166102','NDUFV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64946844,64950579,'NR_028272','NEAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',20647692,21553805,'NM_201551','NELL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74377597,74396391,'NM_006656','NEU3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',129238879,129268114,'NM_006165','NFRKB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7937731,7941635,'NM_176821','NLRP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6998275,7049333,'NM_176822','NLRP14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',268569,275304,'NM_138329','NLRP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118544649,118559936,'NM_024618','NLRX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113671744,113688448,'NM_006169','NNMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',88697169,88962427,'NM_001143837','NOX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65945050,65950753,'NM_178864','NPAS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',107533327,107598575,'NM_002519','NPAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47227024,47246977,'NM_001130102','NR1H3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124115038,124122312,'NM_006176','NRGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8958698,8982172,'NM_020645','NRIP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64130221,64247236,'NM_015080','NRXN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',131285921,131690171,'NM_001144059','NTM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',17254861,17309646,'NM_005013','NUCB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63750313,63754064,'NM_001128613','NUDT22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67151984,67153984,'NM_181843','NUDT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71391558,71469221,'NM_006185','NUMA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47756245,47826633,'NM_015231','NUP160'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3652815,3775598,'NM_016320','NUP98'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62316173,62329540,'NM_006362','NXF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',119586956,119605860,'NM_178507','OAF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',186760,190258,'NM_053280','ODF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',78041975,78829343,'NM_001098816','ODZ4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7463175,7489182,'NM_198474','OLFML1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',76491533,76492025,'NM_006189','OMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',131790084,132318247,'NM_002545','OPCML'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6847561,6848473,'NM_001004460','OR10A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7916698,7917643,'NM_001003745','OR10A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6854431,6855426,'NM_207186','OR10A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6823489,6824443,'NM_178168','OR10A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7905840,7906785,'NM_001004461','OR10A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55491609,55492515,'NM_001005491','OR10AG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123391491,123392427,'NM_001004462','OR10G4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123413982,123414918,'NM_001004463','OR10G7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123405539,123406475,'NM_001004464','OR10G8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123398929,123399865,'NM_001001953','OR10G9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57751929,57752966,'NM_001004471','OR10Q1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123352612,123353608,'NM_001004474','OR10S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59236964,59237894,'NM_001005324','OR10V1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59272860,59273630,'NR_045005','OR10V2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57790839,57792308,'NM_207374','OR10W1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57738792,57739770,'NM_001004458','OR1S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57727251,57728229,'NM_001004459','OR1S2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6762823,6763821,'NM_001004489','OR2AG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6745813,6746764,'NM_001004490','OR2AG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74477443,74478406,'NM_001005285','OR2AT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6869380,6870307,'NM_003700','OR2D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6898808,6899801,'NM_001004684','OR2D3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',54891935,54892970,'NM_001005275','OR4A15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',54867252,54868239,'NM_001005274','OR4A16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',48466920,48467850,'NM_001005512','OR4A47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',51267953,51269024,'NM_001005272','OR4A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',48194937,48195867,'NM_001005470','OR4B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55127405,55128450,'NM_001004700','OR4C11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',49959584,49960647,'NM_001005270','OR4C12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',49930518,49931547,'NM_001001955','OR4C13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55078358,55079471,'NM_001001920','OR4C15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55096179,55097112,'NM_001004701','OR4C16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',48303068,48304058,'NM_001004702','OR4C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',48323475,48330575,'NM_001005513','OR4C45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',51371857,51372787,'NM_001004703','OR4C46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55189218,55190148,'NM_001004704','OR4C6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59001478,59002414,'NM_001004705','OR4D10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59027624,59028560,'NM_001004706','OR4D11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123315533,123316490,'NM_001001965','OR4D5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58981009,58981954,'NM_001004708','OR4D6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59038961,59039906,'NM_001004711','OR4D9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55162409,55163348,'NM_001004124','OR4P4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',48284350,48285280,'NM_001004725','OR4S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55174955,55175891,'NM_001004059','OR4S2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',48241988,48242906,'NM_001004726','OR4X1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',48223231,48224143,'NM_001004727','OR4X2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4932577,4933519,'NM_001004748','OR51A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4923964,4924906,'NM_001005329','OR51A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4885175,4886114,'NM_001004749','OR51A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5301103,5302158,'NM_033180','OR51B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5278819,5279752,'NM_033179','OR51B4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5320319,5483458,'NM_001005567','OR51B5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5329313,5330252,'NM_001004750','OR51B6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4617520,4618644,'NM_001004751','OR51D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4621731,4633292,'NM_152430','OR51E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4657976,4675652,'NM_030774','OR51E2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4746784,4747723,'NM_001004752','OR51F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4799191,4800220,'NM_001004753','OR51F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4901179,4902145,'NM_001005237','OR51G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4892524,4893469,'NM_001005238','OR51G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5418347,5419359,'NM_001005288','OR51I1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5431213,5432283,'NM_001004754','OR51I2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4976788,4977736,'NM_001004755','OR51L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5367182,5368240,'NM_001004756','OR51M1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5399916,5401012,'NM_001004757','OR51Q1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4826042,4827014,'NM_001004758','OR51S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4859624,4860689,'NM_001004759','OR51T1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5177540,5178506,'NM_001004760','OR51V1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5129236,5130175,'NM_012375','OR52A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5109497,5110448,'NM_001005160','OR52A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6147160,6148132,'NM_001004052','OR52B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4345068,4346192,'NM_001005161','OR52B4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5558682,5559690,'NM_001005162','OR52B6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5466490,5467554,'NM_001005163','OR52D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5036455,5037433,'NM_001005164','OR52E2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5862098,5863037,'NM_001005165','OR52E4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5818761,5819703,'NM_001005167','OR52E6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5834554,5835508,'NM_001005168','OR52E8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5522366,5523329,'NM_001005289','OR52H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4571844,4572819,'NM_001005169','OR52I1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4564596,4565711,'NM_001005170','OR52I2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5024331,5025267,'NM_001001916','OR52J3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4466684,4467714,'NM_001005171','OR52K1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4427100,4428167,'NM_001005172','OR52K2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5963697,5964791,'NM_001005173','OR52L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4522996,4523950,'NM_001004137','OR52M1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5765659,5766622,'NM_001001913','OR52N1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5798141,5799107,'NM_001005174','OR52N2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5732498,5733535,'NM_001005175','OR52N4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5755439,5756473,'NM_001001922','OR52N5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4781238,4782186,'NM_001005177','OR52R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6177029,6177992,'NM_001005178','OR52W1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6004476,6005547,'NM_001001917','OR56A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5925152,5926100,'NM_001003443','OR56A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5979856,5980954,'NM_001005179','OR56A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5945358,5946300,'NM_001146033','OR56A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5714253,5715344,'NM_001005180','OR56B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6085584,6086544,'NM_001005181','OR56B4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58967217,58968165,'NM_001004728','OR5A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58946027,58947002,'NM_001001954','OR5A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56512964,56513894,'NM_001005323','OR5AK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56561584,56562511,'NR_036445','OR5AK4P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58888507,58889443,'NM_001004729','OR5AN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56165540,56166491,'NM_001002925','OR5AP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56187737,56188670,'NM_001004730','OR5AR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55554470,55555445,'NM_001001921','OR5AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57963168,57964222,'NM_001004733','OR5B12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57882173,57883118,'NM_001005489','OR5B17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57946313,57947362,'NM_001005566','OR5B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58031224,58032154,'NM_001005218','OR5B21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57926513,57927458,'NM_001005469','OR5B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55297489,55298434,'NM_001001967','OR5D13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55319607,55320552,'NM_001004735','OR5D14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55362803,55363790,'NM_001005496','OR5D16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55343681,55344623,'NM_001001952','OR5D18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7827173,7827694,'NR_027711','OR5E1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55517732,55518677,'NM_003697','OR5F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55459507,55460452,'NM_006637','OR5I1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55700669,55701608,'NM_001005492','OR5J2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55335518,55336454,'NM_001004738','OR5L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55351270,55352206,'NM_001004739','OR5L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56136606,56137554,'NM_001004740','OR5M1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56100825,56101773,'NM_001004741','OR5M10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56066391,56067309,'NM_001005245','OR5M11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55993539,55994590,'NM_001004742','OR5M3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56014486,56015422,'NM_001005282','OR5M8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55986520,55987453,'NM_001004743','OR5M9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7774096,7775065,'NM_153444','OR5P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7803159,7804095,'NM_153445','OR5P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55941309,55942284,'NM_001004744','OR5R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55799690,55800671,'NM_001004745','OR5T1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55756157,55757237,'NM_001004746','OR5T2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55776251,55777274,'NM_001004747','OR5T3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55437701,55438634,'NM_001001960','OR5W2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6772331,6773715,'NM_003696','OR6A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123181325,123182267,'NM_001005325','OR6M1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57555000,57555954,'NM_001005186','OR6Q1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123318783,123319755,'NM_001005187','OR6T1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123129497,123130436,'NM_001005188','OR6X1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3368512,3369721,'NR_044999','OR7E12P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',17030008,17031167,'NR_045002','OR7E14P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',86245620,86246644,'NR_045004','OR7E2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55502754,55510457,'NR_027688','OR7E5P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123945174,123946155,'NM_001005194','OR8A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123917827,123918760,'NM_001005195','OR8B12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123757507,123758449,'NM_001005468','OR8B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123771515,123772457,'NM_001005467','OR8B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123799047,123799977,'NM_001005196','OR8B4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123815255,123816191,'NM_012378','OR8B8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123684945,123685872,'NM_001002917','OR8D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123694367,123695303,'NM_001002918','OR8D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123282348,123283293,'NM_001005197','OR8D4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123625632,123640966,'NM_001002905','OR8G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123600607,123601522,'NM_001007249','OR8G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123639932,123640973,'NM_001005198','OR8G5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55814178,55815114,'NM_001005199','OR8H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55629094,55630033,'NM_001005200','OR8H2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55646424,55647363,'NM_001005201','OR8H3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55617359,55618292,'NM_001003750','OR8I2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55884266,55885340,'NM_001005205','OR8J1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55660822,55661770,'NM_001004064','OR8J3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55870090,55871050,'NM_001002907','OR8K1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55842358,55843297,'NM_001005202','OR8K3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55683445,55684369,'NM_001004058','OR8K5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55899675,55900605,'NM_001005204','OR8U1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55899675,56265136,'NM_001013356','OR8U8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56224439,56225357,'NM_001005213','OR9G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56266879,56267863,'NM_001005284','OR9G4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56224439,56225357,'NM_001013358','OR9G9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57642547,57643492,'NM_001005211','OR9I1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57547928,57705614,'NM_001005212','OR9Q1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57714481,57715566,'NM_001005283','OR9Q2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',69189512,69199346,'NM_153451','ORAOV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59098446,59140193,'NM_002556','OSBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3064921,3143158,'NM_001144063','OSBPL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63509900,63522468,'NR_003089','OTUB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7669019,7684517,'NM_198185','OVCH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65311080,65321266,'NM_004561','OVOL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56862416,56894125,'NM_002559','P2RX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',72606991,72625043,'NM_176072','P2RY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',72660894,72687312,'NM_004154','P2RY6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73655349,73700347,'NM_182904','P4HA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73265680,73316427,'NM_025155','PAAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65594399,65768789,'NM_018026','PACS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47155648,47164586,'NM_001184974','PACSIN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116520209,116546971,'NM_002572','PAFAH1B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',76710707,76862756,'NM_002576','PAK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',35409951,35503752,'NM_001001991','PAMR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93501741,93554785,'NM_015368','PANX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123986662,123995461,'NM_052959','PANX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',12355601,12513479,'NM_018222','PARVA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125121397,125124953,'NM_138294','PATE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125151235,125153924,'NM_212555','PATE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125163215,125166705,'NM_001129883','PATE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125208420,125215177,'NM_001144874','PATE4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59160767,59193087,'NM_152716','PATL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',31762915,31796085,'NM_001127612','PAX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66372572,66482423,'NM_000920','PC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',82545784,82574483,'NM_015885','PCF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65140358,65161486,'NM_032223','PCNXL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116580997,116608021,'NM_004716','PCSK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',757222,767487,'NM_182612','PDDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71964831,72031152,'NM_001143839','PDE2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',14621844,14850180,'NM_000922','PDE3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',103283123,103540237,'NM_025208','PDGFD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',34894252,34974251,'NM_003477','PDHX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118561375,118566142,'NR_033122','PDZD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65990911,66001384,'NM_001098510','PELI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',45887795,45896250,'NM_057174','PEX16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60727559,60736926,'NM_001079807','PGA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60746396,60755755,'NM_001079808','PGA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60765219,60775505,'NM_014224','PGA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3786341,3804158,'NM_014489','PGAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73719008,73787150,'NM_173582','PGM2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',100405564,100505004,'NM_001202474','PGR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',45907445,46099561,'NM_001101802','PHF21A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2906078,2907226,'NM_003311','PHLDA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117983515,118033951,'NM_001144758','PHLDB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71627768,71632868,'NM_005169','PHOX2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',566482,602222,'NM_020901','PHRF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',85345861,85457787,'NM_001206946','PICALM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',789178,795250,'NM_145886','PIDD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111443732,111450105,'NM_138789','PIH1D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',17064699,17147930,'NM_002645','PIK3C2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67015814,67029419,'NM_001130848','PITPNM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93940121,93994235,'NM_152431','PIWIL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124539768,124808495,'NM_022062','PKNOX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',384216,394908,'NM_007183','PKP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63098519,63138485,'NM_007069','PLA2G16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59564323,59572092,'NM_173801','PLAC1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63775570,63793500,'NM_001184883','PLCB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',16765782,16992539,'NM_175058','PLEKHA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73034870,73051512,'NM_021200','PLEKHB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',808900,815571,'NM_020376','PNPLA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64786007,64821664,'NM_002689','POLA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73981276,74031413,'NM_006591','POLD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66875594,66877628,'NM_021173','POLD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62285586,62290763,'NM_002696','POLR2G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',829720,832529,'NM_021128','POLR2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',110728189,110755367,'NM_006235','POU2AF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',119612558,119695863,'NM_001244682','POU2F3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',69794470,69902146,'NM_177423','PPFIA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7491576,7631567,'NM_003621','PPFIBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73560015,73643396,'NM_016147','PPME1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66922227,66925952,'NM_002708','PPP1CA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63768526,63770989,'NM_138689','PPP1R14B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111113814,111142379,'NM_001177563','PPP2R1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64448718,64458526,'NM_006244','PPP2R5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67984761,68139377,'NM_018312','PPP6R3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',82213056,82289205,'NM_005040','PRCP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',129274810,129377940,'NM_020228','PRDM10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',45072139,45203479,'NM_020229','PRDM11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63842135,63845871,'NM_181652','PRDX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56911409,56914706,'NM_002728','PRG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56900817,56905199,'NM_006093','PRG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6296751,6298316,'NM_145040','PRKCDBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',75738651,75769528,'NM_004705','PRKRIR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',20365651,20487455,'NM_001145167','PRMT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60414595,60430637,'NM_014502','PRPF19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',36354110,36443330,'NM_024841','PRR5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',32808056,32836245,'NM_024081','PRRG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',86189138,86199921,'NM_007173','PRSS23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',14492087,14498567,'NM_001143937','PSMA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47396895,47404600,'NM_002804','PSMC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',226807,242984,'NM_002817','PSMD13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',440279,481387,'NM_030783','PTDSS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',13470176,13474143,'NM_000315','PTH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47543557,47551589,'NM_001143984','PTPMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18706050,18769965,'NM_032781','PTPN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66959556,66961729,'NM_005608','PTPRCAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47958685,48148970,'NM_002843','PTPRJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111602297,111609905,'NM_000317','PTS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125268589,125278326,'NM_031307','PUS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',119050308,119104645,'NM_203286','PVRL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64270436,64284763,'NM_001164716','PYGM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',32871367,32958390,'NM_001076786','QSER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65792631,65801539,'NM_030981','RAB1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',82370125,82460532,'NM_014488','RAB30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',87486062,87548283,'NM_022337','RAB38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',107304486,107339418,'NM_017516','RAB39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61421348,61441573,'NM_013401','RAB3IL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73064330,73149849,'NM_002869','RAB6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66915998,66922459,'NM_004584','RAD9A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',36546138,36557886,'NM_000448','RAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',36570068,36576405,'NM_000536','RAG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47415883,47427306,'NM_005055','RAPSN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63060848,63070506,'NM_004585','RARRES3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64250958,64269504,'NM_153819','RASGRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',12987545,12990229,'NM_001080521','RASSF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',551449,554025,'NM_003475','RASSF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66140628,66153973,'NM_001198837','RBM14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66140628,66170520,'NM_001198846','RBM14-RBM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66162663,66170520,'NM_002896','RBM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66189045,66201851,'NM_031492','RBM4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113776593,113784845,'NM_016090','RBM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7066740,7068955,'NM_014469','RBMXL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66367458,66370579,'NM_001032279','RCE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',32069052,32083848,'NM_002901','RCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63435268,63440892,'NM_173587','RCOR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',109605375,109672647,'NM_002906','RDX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65177642,65187019,'NM_021975','RELA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',72765052,72786167,'NM_152222','RELT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113815317,113826210,'NM_015523','REXO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66580864,66596064,'NM_014578','RHOD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3804783,3818789,'NM_001665','RHOG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8084172,8147166,'NM_001135109','RIC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',198529,205110,'NM_021932','RIC8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65856117,65860576,'NM_004292','RIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65241719,65244985,'NM_032193','RNASEH2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',71317415,71386291,'NR_024148','RNF121'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10489800,10519350,'NM_016422','RNF141'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74137560,74231106,'NM_001098638','RNF169'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116608661,116661614,'NM_001077239','RNF214'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118710446,118713232,'NM_032015','RNF26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',484511,497273,'NM_203388','RNH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124240514,124256580,'NM_022370','ROBO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124259323,124273041,'NM_019055','ROBO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62136788,62139168,'NM_000327','ROM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118378880,118379513,'NR_003040','RPL23AP64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8660570,8667995,'NM_000990','RPL27A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61139083,61163497,'NR_002775','RPLP0P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',799935,802876,'NM_001004','RPLP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',17052514,17055796,'NM_001017','RPS13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118391632,118394267,'NM_001028','RPS25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74788209,74794381,'NM_001005','RPS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63883200,63896263,'NM_003942','RPS6KA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66952510,66959455,'NM_003952','RPS6KB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125577198,125586797,'NM_001144827','RPUSD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',14256041,14336649,'NM_001102669','RRAS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4072499,4116682,'NM_001033','RRM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6577719,6581456,'NM_015324','RRP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77054921,77209528,'NM_016578','RSF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63205497,63283939,'NM_201430','RTN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56984914,57000960,'NM_178570','RTN4RL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18244383,18248099,'NM_199161','SAA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18223350,18226797,'NM_030754','SAA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18209477,18226797,'NM_001199744','SAA2-SAA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18090594,18094255,'NR_026576','SAA3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18209477,18214960,'NM_006512','SAA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18058465,18084214,'NM_138421','SAAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64564951,64568876,'NM_013299','SAC3D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65485735,65504183,'NM_005146','SART1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',9756789,10272330,'NM_030962','SBF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',120668597,120689329,'NM_006918','SC5DL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93094327,93094680,'NR_002569','SCARNA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61943082,61947254,'NM_003357','SCGB1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',183079,184573,'NM_145651','SCGB1C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61714285,61717585,'NM_006552','SCGB1D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61766299,61768856,'NM_006551','SCGB1D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61820329,61823112,'NM_206998','SCGB1D4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61732715,61737987,'NM_002407','SCGB2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61794205,61797204,'NM_002411','SCGB2A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117538728,117552547,'NM_004588','SCN2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123005104,123030525,'NM_001040151','SCN3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117509301,117528840,'NM_174934','SCN4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',616312,617173,'NM_021920','SCT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8997622,9069726,'NM_001170690','SCUBE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65049123,65062758,'NM_020680','SCYL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60954172,60970815,'NM_017841','SDHAF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111462780,111471728,'NM_003002','SDHD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',17766171,17991213,'NM_012139','SERGEF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57121602,57138902,'NM_000062','SERPING1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74950748,74961497,'NM_001207014','SERPINH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',94545780,94603894,'NM_144665','SESN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64288651,64302892,'NM_004630','SF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65576391,65592958,'NM_006842','SF3B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',69991608,70613456,'NM_012309','SHANK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124010894,124048987,'NM_170601','SIAE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116555148,116573371,'NM_001040455','SIDT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',395715,407397,'NM_021805','SIGIRR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',110978379,111102842,'NM_015191','SIK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116219327,116474203,'NM_025164','SIK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65164167,65174967,'NM_153253','SIPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',205029,226362,'NM_012239','SIRT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60461130,60475833,'NM_016582','SLC15A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',22316242,22357622,'NM_020346','SLC17A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',35229327,35397681,'NM_004171','SLC1A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62814005,62835822,'NM_001039752','SLC22A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64079673,64095575,'NM_018484','SLC22A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64114857,64126396,'NM_153378','SLC22A12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2880087,2903052,'NM_002555','SLC22A18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2865902,2881751,'NM_007105','SLC22A18AS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64737886,64766804,'NR_033396','SLC22A20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62603987,62668269,'NM_001136506','SLC22A24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62687871,62753700,'NM_199352','SLC22A25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62500644,62509071,'NM_004790','SLC22A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62516871,62539893,'NM_004254','SLC22A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62893836,62934288,'NM_080866','SLC22A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',780474,788269,'NM_001191061','SLC25A22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64899238,64906718,'NM_001077241','SLC25A45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65886567,65895867,'NM_001532','SLC29A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',45783216,45791143,'NM_018389','SLC35C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',107166926,107235124,'NM_017515','SLC35F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',92520497,92570743,'NM_152313','SLC36A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124438222,124465622,'NM_001145290','SLC37A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118400270,118406826,'NM_001164279','SLC37A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47386621,47394627,'NM_001128225','SLC39A13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62404919,62412931,'NM_001013251','SLC3A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57008579,57038934,'NM_001198810','SLC43A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56931002,56951629,'NM_017611','SLC43A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',26645141,26700150,'NM_178498','SLC5A12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',20577521,20633186,'NM_004211','SLC6A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74539679,74595093,'NM_007256','SLCO2B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',107083310,107087997,'NM_003063','SLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6368219,6372804,'NM_000543','SMPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57066689,57074323,'NM_001105565','SMTNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62376035,62379936,'NR_003098','SNHG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93104817,93104947,'NR_003026','SNORA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93106279,93106411,'NR_002959','SNORA18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',9406888,9407077,'NR_002962','SNORA23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93103328,93103460,'NR_003028','SNORA25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8662349,8662479,'NR_002580','SNORA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93103792,93103913,'NR_003032','SNORA32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93107923,93108050,'NR_002973','SNORA40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8663561,8663692,'NR_002977','SNORA45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',801680,801814,'NR_002585','SNORA52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2941576,2941699,'NR_002982','SNORA54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62189469,62189618,'NR_004390','SNORA57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',82430153,82430288,'NR_033347','SNORA70E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93105174,93105313,'NR_002920','SNORA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74789082,74789230,'NR_000005','SNORD15A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74793112,74793258,'NR_000025','SNORD15B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62376957,62377083,'NR_000008','SNORD22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62379612,62379679,'NR_002565','SNORD25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62379339,62379414,'NR_002564','SNORD26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62379059,62379131,'NR_002563','SNORD27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62378668,62378743,'NR_002562','SNORD28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62377951,62378016,'NR_002559','SNORD29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62377710,62377780,'NR_002561','SNORD30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62377373,62377441,'NR_002560','SNORD31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93106041,93106114,'NR_003033','SNORD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93104316,93104387,'NR_003036','SNORD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46740514,46740625,'NR_003056','SNORD67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10779589,10779731,'NR_004403','SNORD97'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64551455,64564620,'NM_013306','SNX15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',130250975,130291592,'NM_014758','SNX19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65357985,65377748,'NM_152760','SNX32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',120828121,121009681,'NM_003105','SORL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',15944570,16380989,'NM_017508','SOX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124048949,124069897,'NM_017425','SPA17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133215726,133220602,'NM_174927','SPATA19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74337939,74367724,'NM_014752','SPCS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64694282,64697264,'NM_001008778','SPDYC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',47332984,47356703,'NM_001080547','SPI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',13940759,14246255,'NM_006108','SPON1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',55407348,55415860,'NM_032681','SPRYD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66209295,66245446,'NM_006946','SPTBN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18584523,18612596,'NM_194285','SPTY2D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125638023,125644087,'NM_003139','SRPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',94439703,94444036,'NM_032102','SRSF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66827494,66836654,'NM_017857','SSH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56850034,56859927,'NM_003146','SSRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65094518,65095815,'NM_006396','SSSCA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',129534891,129585467,'NM_021978','ST14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125731305,125789743,'NM_006278','ST3GAL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8671474,8889074,'NM_005418','ST5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',72143421,72182398,'NM_006645','STARD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3833508,4071016,'NM_003156','STIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63710162,63728596,'NM_006819','STIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8369993,8572079,'NM_030906','STK33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124967948,124996490,'NM_152713','STT3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59279107,59329931,'NM_004177','STX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62330907,62356139,'NM_001244666','STX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67689761,67737360,'NM_016028','SUV420H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',22800173,22807958,'NM_148893','SVIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',9642203,9731083,'NM_015055','SWAP70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66546765,66574910,'NM_001177880','SYT12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',45218428,45264460,'NM_020826','SYT13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',61039360,61104874,'NM_004200','SYT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1812249,1815326,'NM_138567','SYT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',7229756,7446852,'NM_175733','SYT9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',85082912,85107844,'NM_206929','SYTL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64651326,64658579,'NM_172230','SYVN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6588623,6590051,'NM_006284','TAF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93108745,93114351,'NM_024116','TAF1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62295350,62311389,'NM_006473','TAF6L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116575249,116580718,'NM_003186','TAGLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',737431,755024,'NM_006755','TALDO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66927987,66934136,'NM_198517','TBC1D10C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',120400022,120465564,'NM_152715','TBCEL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123997951,124011032,'NR_016021','TBRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67155349,67163607,'NM_005995','TBX10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67563037,67574942,'NM_006019','TCIRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',59376856,59390617,'NM_001062','TCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',33017538,33051685,'NM_018393','TCP11L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',12652544,12922860,'NM_021961','TEAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',120478584,120566725,'NM_005422','TECTA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111543304,111548489,'NM_031275','TEX12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2141734,2149611,'NM_000360','TH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77452554,77457051,'NM_003251','THRSP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118793864,118799456,'NM_006288','THY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133623382,133628470,'NM_001037304','THYN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64878857,64881658,'NM_145719','TIGD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57052511,57054808,'NM_012456','TIMM10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',111460745,111462732,'NR_028383','TIMM8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',125658191,125668281,'NM_148910','TIRAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64635916,64640283,'NM_003273','TM7SF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60437946,60447491,'NM_024092','TMEM109'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',101772265,101828985,'NM_052932','TMEM123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',85036610,85045245,'NM_001244735','TMEM126A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',85017269,85025231,'NR_036465','TMEM126B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60448488,60461207,'NM_017870','TMEM132A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',100368020,100369876,'NM_032021','TMEM133'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66988394,66993307,'NM_001078650','TMEM134'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',86426533,86717524,'NR_033149','TMEM135'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',119701047,119709598,'NM_174926','TMEM136'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60886048,60893551,'NM_016464','TMEM138'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65815948,65820711,'NM_153266','TMEM151A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62311449,62314448,'NM_199337','TMEM179B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60916407,60922911,'NM_001173990','TMEM216'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124471608,124478415,'NM_001080546','TMEM218'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62314362,62316062,'NM_001080501','TMEM223'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123258842,123261550,'NM_001013743','TMEM225'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117907012,117922523,'NM_001144038','TMEM25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',9258777,9292891,'NR_028491','TMEM41B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',129190950,129235108,'NM_138788','TMEM45B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',685615,694129,'NM_001042463','TMEM80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18676926,18682908,'NM_153347','TMEM86A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8925415,8942565,'NM_020644','TMEM9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117283719,117305378,'NM_001206790','TMPRSS13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117452936,117495766,'NM_019894','TMPRSS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113063477,113082278,'NM_030770','TMPRSS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57236570,57265021,'NM_001144012','TMX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57236570,57343228,'NR_037646','TMX2-CTNND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',56823678,56848989,'NM_033396','TNKS1BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1818007,1819486,'NM_001145841','TNNI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1897374,1916512,'NM_001042782','TNNT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',1252173,1287468,'NM_019009','TOLLIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',128310479,128318504,'NM_022112','TP53AIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',44910474,44929184,'NM_006034','TP53I11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',68572925,68614648,'NM_139075','TPCN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',17998659,18018911,'NM_004179','TPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6590572,6597268,'NM_000391','TPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',36461892,36488439,'NM_004620','TRAF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118394450,118399594,'NM_016146','TRAPPC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118034151,118055591,'NM_007180','TREH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4362702,4371502,'NM_003141','TRIM21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5667392,5688669,'NM_001199573','TRIM22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',119487203,119514073,'NM_012101','TRIM29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6426418,6451781,'NM_006458','TRIM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5602782,5622201,'NM_021616','TRIM34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',35640928,35787506,'NM_017583','TRIM44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',54786233,54795171,'NM_024114','TRIM48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89170470,89181391,'NM_020358','TRIM49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89284226,89293224,'NM_001105522','TRIM49L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89403921,89414841,'NM_001195234','TRIM49L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5641000,5662915,'NM_033034','TRIM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89366358,89375324,'NR_028346','TRIM53P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5573906,5590764,'NM_058166','TRIM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5574440,5622201,'NM_001003819','TRIM6-TRIM34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89341319,89346888,'NM_001136486','TRIM64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89243253,89248833,'NM_001164397','TRIM64B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',49031841,49037240,'NM_001206631','TRIM64C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8590159,8636959,'NM_014818','TRIM66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',4576477,4586013,'NM_018073','TRIM68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89083114,89090688,'NM_001146162','TRIM77P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5620987,5644186,'NR_002777','TRIM78P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63840740,63841609,'NM_016404','TRMT112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3604289,3615365,'NR_002720','TRPC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',100827504,100959869,'NM_004621','TRPC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2382321,2400851,'NM_014555','TRPM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63747846,63750302,'NM_031472','TRPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18458433,18505079,'NM_006292','TSG101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65469690,65484010,'NM_152762','TSGA10IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',76171932,76186846,'NM_015516','TSKU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',44742551,44910553,'NM_130783','TSPAN18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2279818,2296006,'NM_139022','TSPAN32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',832823,857116,'NM_003271','TSPAN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',2380098,2381682,'NM_005706','TSSC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',112690460,112742324,'NM_017868','TTC12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',43337010,43473059,'NM_018259','TTC17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117903419,117906950,'NM_001080441','TTC36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62252527,62262684,'NM_173810','TTC9C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',8059484,8084230,'NM_177972','TUB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62099092,62115685,'NM_022830','TUT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',88550687,88668575,'NM_000372','TYR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',122031607,122190397,'NM_032873','UBASH3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57075703,57092379,'NM_198183','UBE2L6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',117735505,117775136,'NM_001204077','UBE4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5485105,5487729,'NM_017481','UBQLN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',5492198,5494532,'NM_145053','UBQLNL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',89458765,89459947,'NM_001143975','UBTFL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62200547,62203103,'NM_015853','UBXN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73363363,73371537,'NM_003355','UCP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',73388973,73397930,'NM_003356','UCP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',18509819,18566857,'NM_018314','UEVLD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',67515150,67528169,'NM_030930','UNC93B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118332217,118334479,'NM_006760','UPK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',17472017,17522539,'NM_005709','USH1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118731134,118757646,'NM_004205','USP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113173806,113251466,'NM_020886','USP28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',77577505,77603405,'NM_020798','USP35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',11819545,11937448,'NM_017944','USP47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',75203859,75532930,'NM_003369','UVRAG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',63758631,63763312,'NM_003377','VEGFB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',118443702,118457898,'NM_021729','VPS11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',133599770,133622896,'NM_052875','VPS26B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60654303,60685492,'NM_017966','VPS37C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',124122579,124127319,'NM_014312','VSIG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',93193382,93223316,'NM_001144871','VSTM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123491320,123522828,'NM_001130142','VWA5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60782333,60819364,'NM_152718','VWCE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62356958,62364204,'NM_018093','WDR74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',9551803,9567889,'NM_003390','WEE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',75575017,75595222,'NM_004626','WNT11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',32365897,32413657,'NM_024426','WT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',32413860,32418196,'NR_023920','WT1-AS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',74229602,74337880,'NM_182969','XRRA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',101486401,101609364,'NM_006106','YAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',65808626,65813214,'NM_020470','YIF1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57169135,57173993,'NM_145008','YPEL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',10830826,10836196,'NM_021211','ZBED5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113435640,113626607,'NM_006006','ZBTB16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',62275010,62278232,'NM_024784','ZBTB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',129601783,129689817,'NM_014155','ZBTB44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',109469296,109547776,'NM_033390','ZC3H12C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',19095267,19154543,'NM_019028','ZDHHC13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',66063310,66070247,'NM_207340','ZDHHC24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',57192049,57225235,'NM_015457','ZDHHC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58103162,58145599,'NM_053023','ZFP91'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',58103162,58149781,'NR_024091','ZFP91-CNTF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64608269,64612450,'NM_006782','ZFPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',9439087,9506647,'NM_003442','ZNF143'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',3335732,3357028,'NM_001130520','ZNF195'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',123100206,123117573,'NM_003455','ZNF202'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6977124,6998162,'NM_013249','ZNF214'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',6904229,6935854,'NM_013250','ZNF215'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',116154485,116163949,'NM_003904','ZNF259'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',46679219,46684042,'NM_001184751','ZNF408'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',64640450,64641746,'NM_014205','ZNHIT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',60391590,60399740,'NM_207341','ZP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr11',113109114,113149695,'NM_004724','ZW10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9111570,9159825,'NM_000014','A2M'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8866416,8920644,'NM_144670','A2ML1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9272395,9278070,'NR_040112','A2MP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51987506,52001679,'NM_001173466','AAAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',124115877,124193824,'NM_023928','AACS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121971450,122017009,'NM_001243014','ABCB9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',21841590,21980895,'NM_020297','ABCC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',38231288,38300110,'NM_005164','ABCD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108061584,108190413,'NM_001093','ACACB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',110608239,110679294,'NM_025247','ACAD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119647953,119662194,'NM_000017','ACADS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48737753,48763661,'NM_001095','ACCN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6617502,6626841,'NM_032489','ACRBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7348194,7372236,'NM_001080454','ACSM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',79995939,80173713,'NM_024560','ACSS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',99118704,99142332,'NM_022496','ACTR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50633430,50677130,'NM_020327','ACVR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50587468,50603412,'NM_000020','ACVRL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',110821249,110824089,'NR_036636','ADAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',42034278,42231991,'NM_025003','ADAMTS20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47446247,47469087,'NM_020983','ADCY6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',1670507,1768106,'NM_024551','ADIPOR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',19483874,19566440,'NM_001114176','AEBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56404342,56418296,'NM_001122772','AGAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8646028,8656709,'NM_020661','AICDA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',4594936,4624604,'NM_006422','AKAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',103937691,104002471,'NR_027752','ALDH1L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',110689073,110732172,'NM_000690','ALDH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',34066482,34072503,'NM_032834','ALG10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',36996823,37009795,'NM_001013620','ALG10B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108010375,108015676,'NM_001145375','ALKBH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',84198166,84219692,'NM_006982','ALX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',94861201,94886501,'NM_152435','AMDHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52103905,52111585,'NM_020547','AMHR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',45755756,45760001,'NM_181847','AMIGO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',31715337,31773375,'NM_001113402','AMN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120230430,120274648,'NM_016237','ANAPC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109297654,109325918,'NM_001137664','ANAPC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131812326,131848524,'NM_015114','ANKLE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108921617,108961618,'NM_033121','ANKRD13A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50568059,50571772,'NM_182608','ANKRD33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54917857,54938410,'NM_173595','ANKRD52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',97652699,98902563,'NM_152788','ANKS1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',5542077,5925659,'NM_020373','ANO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',99712504,100046550,'NM_178826','ANO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',43972732,44112401,'NM_001142678','ANO6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47152714,47153110,'NM_012404','ANP32D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',97563208,97653342,'NM_013229','APAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7693262,7709769,'NM_001644','APOBEC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55040621,55042850,'NM_001638','APOF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12770117,12835666,'NM_001130415','APOLD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',104091204,104154138,'NM_018171','APPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48630790,48638931,'NM_000486','AQP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48641545,48645728,'NM_001651','AQP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48652886,48657189,'NM_001652','AQP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47616258,47637519,'NM_001659','ARF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56152304,56157995,'NM_001080156','ARHGAP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',14986216,15005829,'NM_001175','ARHGDIB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56291484,56297293,'NM_182947','ARHGEF25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',44409886,44588086,'NM_152641','ARID2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',100311033,100325703,'NM_001177','ARL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122030832,122033413,'NM_016638','ARL6IP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',27377254,27464733,'NM_020183','ARNTL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109357088,109372541,'NM_005719','ARPC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',14873511,14887680,'NM_021071','ART4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46827838,46837644,'NM_024095','ASB8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',101875581,101878424,'NM_004316','ASCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',106692291,106694551,'NM_203436','ASCL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49444055,49501210,'NM_005171','ATF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52192109,52306466,'NM_001130060','ATF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',14409877,14542964,'NM_018179','ATF7IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6907740,6921745,'NM_001940','ATN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109203414,109273280,'NM_001681','ATP2A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',88505956,88573975,'NM_001682','ATP2B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55318225,55326119,'NM_001686','ATP5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52345210,52356779,'NM_001002031','ATP5G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122762817,122812254,'NM_012463','ATP6V0A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',110374400,110521863,'NM_002973','ATXN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',73217817,73221499,'NM_001136262','ATXN7L3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56477426,56496119,'NM_006576','AVIL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',61826482,61832857,'NM_000706','AVPR1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121254180,121258037,'NM_030765','B3GNT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56305817,56313252,'NM_001478','B4GALNT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',439803,541319,'NM_173593','B4GALNT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55275646,55316430,'NM_013449','BAZ2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',75262396,75266353,'NM_024685','BBS10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',24854224,24946589,'NM_001178094','BCAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48516092,48523179,'NM_181708','BCDIN3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12115144,12143894,'NM_138723','BCL2L14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120944243,120984333,'NM_020993','BCL7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',68333655,68379463,'NM_032735','BEST3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',26164225,26169270,'NM_030762','BHLHE41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',32151451,32422408,'NM_001714','BICD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49961088,50004205,'NM_016293','BIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54396084,54399758,'NM_001487','BLOC1S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54396084,54404793,'NR_037658','BLOC1S1-RDH5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',110564332,110608173,'NM_006768','BRAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',124044146,124076302,'NM_080626','BRI3BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',106236326,106577549,'NM_001018072','BTBD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',91058184,91063804,'NM_001731','BTG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51979736,51987232,'NM_021640','C12orf10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',26949378,26982521,'NM_018164','C12orf11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',89870122,89873084,'NM_152638','C12orf12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',105873673,105891943,'NM_152261','C12orf23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109390614,109412575,'NM_013300','C12orf24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',81276406,81397147,'NM_032230','C12orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',86953398,86968068,'NM_001009894','C12orf29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',2856625,2868887,'NR_027364','C12orf32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9099451,9108933,'NR_034140','C12orf33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108636569,108692695,'NM_032829','C12orf34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',32003619,32037308,'NM_018169','C12orf35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',13414871,13420946,'NR_036555','C12orf36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',89835930,89866577,'NR_038868','C12orf37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',21570522,21575477,'NM_030572','C12orf39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',4467161,4517898,'NM_020374','C12orf4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',38306238,38401985,'NM_001031748','C12orf40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47333261,47362302,'NM_017822','C12orf41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',102219862,102413879,'NM_001099336','C12orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119925230,119938683,'NM_022895','C12orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50750024,50757546,'NM_021934','C12orf44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',103904227,103912635,'NM_152318','C12orf45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',110761955,110765089,'NR_015404','C12orf47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',101038085,101115428,'NM_017915','C12orf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',115637978,115660226,'NM_024738','C12orf49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',4300619,4339451,'NM_020375','C12orf5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',86897946,86947307,'NM_152589','C12orf50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',111082374,111304279,'NM_001109662','C12orf51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',112107937,112114502,'NM_032848','C12orf52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6673217,6680270,'NM_153685','C12orf53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47162552,47176564,'NM_152319','C12orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',62947029,63070612,'NM_001099676','C12orf56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6923463,6925426,'NM_138425','C12orf57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10222823,10235670,'NM_153022','C12orf59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',14847772,14868058,'NM_175874','C12orf60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',61281797,61283481,'NM_175895','C12orf61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48792166,48800501,'NM_032901','C12orf62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122284243,122308459,'NM_001143905','C12orf65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',62872685,62902343,'NM_152440','C12orf66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46863632,46865976,'NM_001013635','C12orf68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',14848850,14858383,'NM_001013698','C12orf69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',27511009,27546385,'NM_001145010','C12orf70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',27125256,27126722,'NM_001080406','C12orf71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',102868110,102875123,'NM_001135570','C12orf73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',91620749,91626456,'NM_001037671','C12orf74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',104248543,104289426,'NM_001145199','C12orf75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108963365,108989883,'NM_207435','C12orf76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',25037631,25041640,'NM_001101339','C12orf77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48012466,48017238,'NM_001008223','C1QL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7057769,7136184,'NM_001733','C1R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7138286,7153145,'NM_016546','C1RL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7038240,7048596,'NM_001734','C1S'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8102185,8110222,'NM_004054','C3AR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119572753,119589510,'NM_031205','CABP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',2032676,2677376,'NM_001129832','CACNA1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',1771383,1898131,'NM_172364','CACNA2D4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47498520,47508993,'NM_000725','CACNB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52391169,52407574,'NM_001143682','CALCOCO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120159877,120220494,'NM_006549','CAMKK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',65949327,65994655,'NM_018448','CAND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',30753752,30798715,'NM_032156','CAPRIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',73956025,74010103,'NM_032606','CAPS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',18782311,18783389,'NM_033328','CAPZA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',25152489,25239361,'NM_001204102','CASC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52910996,52960182,'NM_012117','CBX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',94784956,94860559,'NM_182496','CCDC38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',93226186,93377895,'NM_016122','CCDC41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',112072045,112081464,'NM_001144872','CCDC42B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',100930847,100980029,'NM_016053','CCDC53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',81270213,81276715,'NR_033192','CCDC59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',118256899,118463235,'NM_178499','CCDC60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121825008,121877880,'NM_201435','CCDC62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109769193,109829721,'NM_152591','CCDC63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',118912030,119016682,'NM_207311','CCDC64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47584159,47601626,'NM_033124','CCDC65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',368776,422067,'NM_001130147','CCDC77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',28301399,28594366,'NM_018318','CCDC91'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122986907,123023116,'NM_025140','CCDC92'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',4253162,4284783,'NM_001759','CCND2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47373018,47397048,'NM_001240','CCNT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',68265474,68281624,'NM_006431','CCT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7514678,7547681,'NM_004244','CD163'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7398823,7488016,'NM_174941','CD163L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6424311,6431145,'NM_001242','CD27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6768898,6800237,'NM_001195017','CD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54405496,54409177,'NM_001780','CD63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9796348,9804764,'NM_001781','CD69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6179742,6217698,'NM_001769','CD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6828232,6830717,'NM_031299','CDCA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',95196169,95318497,'NM_001170464','CDK17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54646822,54652835,'NM_052827','CDK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122311492,122322640,'NM_004642','CDK2AP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56427776,56432497,'NM_000075','CDK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12761568,12766572,'NM_004064','CDKN1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50008493,50026730,'NM_001971','CELA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',86966920,87060124,'NM_025114','CEP290'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48809847,48847364,'NM_147190','CERS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6549508,6586812,'NM_001273','CHD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131927010,131974277,'NM_001161347','CHFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',100615547,100646977,'NM_020244','CHPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',103374821,103679922,'NM_001173982','CHST11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',118607977,118799478,'NM_007174','CIT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',105155788,105165843,'NM_006825','CKAP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10015274,10029461,'NM_201623','CLEC12A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10054497,10061815,'NM_205852','CLEC12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10114346,10142872,'NM_016511','CLEC1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10036928,10043166,'NM_016509','CLEC1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9957092,9976247,'NM_001130711','CLEC2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9896234,9913725,'NM_005127','CLEC2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9713597,9743418,'NM_001197319','CLEC2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8167494,8182470,'NM_016184','CLEC4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7773277,7793336,'NM_130441','CLEC4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8557402,8566227,'NM_080387','CLEC4D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8577167,8584825,'NM_014358','CLEC4E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8499857,8522193,'NM_001007033','CLEC6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10160646,10174135,'NM_022570','CLEC7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10074542,10109832,'NM_207345','CLEC9A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9766357,9777127,'NM_172004','CLECL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121321933,121473069,'NM_002956','CLIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',91339437,91348909,'NR_027933','CLLU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',91338000,91346055,'NM_001025232','CLLU1OS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7174233,7202797,'NM_014718','CLSTN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',22090425,22109869,'NM_018686','CMAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107205950,107257224,'NM_004072','CMKLR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',68923760,69035040,'NR_037615','CNOT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54994524,54996395,'NM_001190991','CNPY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',39372624,39750361,'NM_175038','CNTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46653014,46684552,'NM_001844','COL2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6703505,6711302,'NM_001164095','COPS7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53005177,53031900,'NM_016057','COPZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54947333,54951017,'NM_001099337','COQ10A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119425464,119451347,'NM_032314','COQ5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107563015,107649424,'NM_014325','CORO1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119360286,119362912,'NM_004373','COX6A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',67531222,67613246,'NM_198320','CPM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',37332268,37585687,'NM_153634','CPNE8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',67919583,67954405,'NM_007007','CPSF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',92595281,92768662,'NM_003805','CRADD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12656097,12689308,'NM_001310','CREBL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',105909271,106011728,'NM_004075','CRY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54951749,54980442,'NM_004077','CS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51837713,51860697,'NM_015989','CSAD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10742942,10767220,'NM_001145426','CSDA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49741254,49763704,'NR_045072','CSRNP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',75776626,75796930,'NM_001321','CSRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56499976,56527014,'NM_005730','CTDSP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109956210,110272741,'NM_015267','CUX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56442383,56447243,'NM_000785','CYP27B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107797985,107818839,'NM_001917','DAO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49918774,49923984,'NM_001136266','DAZAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',43694805,43731149,'NM_001004329','DBX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53324641,53328416,'NM_053283','DCD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',90063165,90096460,'NM_133507','DCN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',1925474,1983938,'NM_152640','DCP1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56210360,56227245,'NM_006400','DCTN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56196637,56200567,'NM_001195056','DDIT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47675199,47679355,'NM_015086','DDN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',31118045,31148992,'NM_152438','DDX11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9461553,9492035,'NR_033399','DDX12P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47509805,47532224,'NM_004818','DDX23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12857546,12874182,'NM_201224','DDX47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131187092,131194833,'NM_175066','DDX51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',112079360,112107667,'NM_001111322','DDX54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122652624,122671435,'NM_020936','DDX55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',31426423,31635219,'NM_144973','DENND5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121803323,121821906,'NM_003677','DENR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',99170172,99184988,'NM_152317','DEPDC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',15955452,16081582,'NM_015954','DERA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54612078,54634074,'NM_201444','DGKA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47769472,47774869,'NM_021044','DHH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',123997322,124039620,'NM_032656','DHX37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121258161,121278021,'NM_138929','DIABLO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49185034,49428717,'NM_173602','DIP2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122812994,122986220,'NM_207437','DNAH10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54501010,54509687,'NM_032364','DNAJC14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48027307,48031952,'NM_024902','DNAJC22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',32723403,32789851,'NM_012063','DNM1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7755355,7761419,'NM_199286','DPPA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',62238959,62348621,'NM_173812','DPY19L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',100795235,100841532,'NM_018370','DRAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6864106,6865211,'NR_033796','DSTNP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',111980044,112020216,'NM_004416','DTX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56284870,56289850,'NM_178502','DTX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12517482,12606715,'NM_030640','DUSP16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',88265967,88270427,'NM_022652','DUSP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119418241,119420681,'NM_003746','DYNLL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',66328778,66342711,'NM_006482','DYRK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',4569504,4593302,'NM_003845','DYRK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',75939156,75983491,'NM_203394','E2F7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',91690415,91847238,'NM_003566','EEA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',3627369,3732627,'NM_032680','EFCAB4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',103221639,103223112,'NM_001008394','EID3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122671522,122684276,'NM_001414','EIF2B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51686328,51722260,'NM_001417','EIF4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',95112337,95185737,'NM_005230','ELK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6950204,6955426,'NM_006331','EMG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',13240868,13260975,'NM_001423','EMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46389784,46405622,'NM_001172439','ENDOU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6893874,6903120,'NM_001975','ENO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131000417,131130964,'NM_015409','EP400'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131134780,131176838,'NR_003290','EP400NL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',15664341,15833777,'NM_004447','EPS8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',89881586,89922934,'NM_004950','EPYC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54760075,54783558,'NM_001982','ERBB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',970664,1475360,'NM_178040','ERC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',29384845,29425410,'NM_016570','ERGIC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',14958242,14982730,'NM_152321','ERP27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',110935534,110945407,'NM_006817','ERP29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51948349,51973694,'NM_012291','ESPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54808252,54824727,'NM_001184796','ESYT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',22669342,22734875,'NM_018638','ETNK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11694054,11939592,'NM_001987','ETV6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48546945,48584027,'NM_012306','FAIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',123339662,123366523,'NM_181709','FAM101A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',110282837,110291308,'NM_001177997','FAM109A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',45896318,45916710,'NM_138371','FAM113B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',18206,19673,'NR_026823','FAM138D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49007361,49076672,'NM_001145475','FAM186A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48267554,48285700,'NM_032130','FAM186B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',60388307,60872818,'NM_178539','FAM19A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',31324786,31370388,'NM_021238','FAM60A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8224071,8244863,'NR_026788','FAM66C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',98565658,98568023,'NM_153364','FAM71C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8274911,8286809,'NR_024254','FAM86FP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8265122,8271481,'NM_018088','FAM90A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',29267864,29378273,'NM_018099','FAR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131577229,131671846,'NM_001142641','FBRSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',1545419,1573592,'NM_152441','FBXL14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',116065967,116112683,'NM_015002','FBXO21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',115833143,115953336,'NM_012174','FBXW8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',32546307,32690251,'NM_139241','FGD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',93994655,94135371,'NM_018351','FGD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',4347653,4359155,'NM_020638','FGF23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',4413568,4425041,'NM_020996','FGF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',26982571,27004946,'NM_001171888','FGFR1OP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107433180,107437510,'NM_007076','FICD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50497942,50511968,'NM_001013690','FIGNL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47602008,47604931,'NM_001143781','FKBP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',2774368,2784848,'NM_002014','FKBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52738304,52802285,'NR_026655','FLJ12825'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',31368516,31370146,'NR_026806','FLJ13224'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',129202090,129212176,'NR_033834','FLJ31485'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',126932114,126949137,'NR_033987','FLJ37505'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',63563820,63657569,'NR_033988','FLJ41278'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48317990,48387464,'NM_198900','FMNL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8076625,8099385,'NM_018416','FOXJ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',2837107,2856582,'NM_001243088','FOXM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108200165,108231408,'NM_213596','FOXN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',68150395,68259829,'NM_006654','FRS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',129212956,129216238,'NM_007197','FZD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10256755,10266991,'NM_031412','GABARAPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',88437320,88442714,'NM_003774','GALNT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50032099,50071467,'NM_007210','GALNT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',4700012,4752153,'NM_017417','GALNT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131246869,131415978,'NM_001122636','GALNT9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6513917,6517797,'NM_002046','GAPDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',99491619,99542816,'NM_174942','GAS2L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119368623,119385939,'NR_033684','GATC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119049396,119116896,'NM_006836','GCN1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54423330,54432932,'NM_005811','GDF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7733647,7739627,'NM_020634','GDF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108851989,108918577,'NM_001135214','GIT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56140200,56152314,'NM_005269','GLI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',74160779,74181983,'NM_006851','GLIPR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',74014729,74050436,'NM_152779','GLIPR1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',74071155,74104087,'NM_152436','GLIPR1L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55151002,55168448,'NM_013267','GLS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',127904033,128035462,'NM_144669','GLT1D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',102906894,102968045,'NM_031302','GLT8D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108773130,108802676,'NM_016433','GLTP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53288237,53290513,'NR_003039','GLYCAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6819635,6826818,'NM_002075','GNB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',102761656,102848119,'NR_027249','GNN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',100663405,100748776,'NM_024312','GNPTAB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',63393488,63439493,'NM_002076','GNS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',99082958,99091252,'NR_024261','GOLGA2P5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131855567,131915361,'NM_005895','GOLGA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',21545965,21562604,'NM_016072','GOLT1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48784067,48791362,'NM_005276','GPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109374673,109390909,'NM_001164372','GPN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',130004404,130191961,'NM_198827','GPR133'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6801223,6806844,'NM_014449','GPR162'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55674621,55676736,'NM_007264','GPR182'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12705261,12740388,'NM_006143','GPR19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53042495,53044537,'NM_020370','GPR84'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12935222,12957867,'NM_003979','GPRC5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12984975,12994585,'NM_018654','GPRC5D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50687014,50695938,'NM_181711','GRASP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',13605676,14024289,'NM_000834','GRIN2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',65027477,65359192,'NM_001178074','GRIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',13127737,13140007,'NM_001206843','GSG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122684333,122711287,'NM_001516','GTF2H3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53136002,53153653,'NM_144594','GTSF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',14656834,14740786,'NM_004963','GUCY2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',40761914,40824940,'NM_173601','GXYLT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',21580389,21649048,'NM_021957','GYS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47009029,47010329,'NM_181788','H1FNT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',14818536,14822203,'NR_027716','H2AFJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',31835385,31836442,'NM_001013699','H3F3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',94891272,94914202,'NM_002108','HAL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121778105,121781082,'NM_032554','HCAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121751792,121753857,'NM_177551','HCAR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121765255,121767392,'NM_006018','HCAR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',102982365,103024433,'NM_013320','HCFC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46462773,46500030,'NM_015401','HDAC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',13019065,13044510,'NM_015987','HEBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',64982622,65018225,'NM_033647','HELB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49634048,49650556,'NM_001109619','HIGD1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121885991,121913460,'NM_003959','HIP1R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',14814920,14815332,'NM_175054','HIST4H4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',64504506,64595574,'NM_003484','HMGA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119900931,119924697,'NM_000545','HNF1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119892023,119894478,'NR_024345','HNF1A-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52960754,52965297,'NM_002136','HNRNPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52960799,52964930,'NR_002944','HNRNPA1P10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52642362,52648782,'NR_003716','HOTAIR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52665212,52670329,'NM_017409','HOXC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52653176,52656470,'NM_014212','HOXC11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52634980,52636617,'NM_173860','HOXC12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52618842,52626595,'NM_017410','HOXC13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52733927,52736081,'NM_153633','HOXC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52696908,52715411,'NR_003084','HOXC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52696908,52710874,'NM_153693','HOXC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52689156,52692812,'NM_022658','HOXC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52680143,52683387,'NM_006897','HOXC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120761815,120781152,'NM_002150','HPD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',115783409,115803615,'NM_003806','HRK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55443374,55467841,'NM_003725','HSD17B6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',102848318,102865833,'NM_003299','HSP90B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',118100977,118116934,'NM_014365','HSPB8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',13044642,13049031,'NR_002774','HTR7P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109570873,109612000,'NM_001040107','HVCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',21417068,21424181,'NM_000415','IAPP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6518954,6535510,'NR_036467','IFFO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',25544052,25597484,'NM_001145729','IFLTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',66834816,66839788,'NM_000619','IFNG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109046522,109090633,'NM_031473','IFT81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',101313774,101396559,'NM_001111284','IGF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51777702,51782395,'NM_002178','IGFBP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',97531312,97562720,'NM_201613','IKBIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54700955,54718486,'NM_022465','IKZF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',66928291,66933548,'NM_020525','IL22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55018929,55020461,'NM_016584','IL23A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',66881395,66905838,'NM_018402','IL26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121222529,121224699,'NM_001014336','IL31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6629964,6642569,'NM_001127586','ING4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56114809,56130876,'NM_005538','INHBC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56135362,56138058,'NM_031479','INHBE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',30673181,30740196,'NM_006390','IPO8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',112117628,112143263,'NM_138451','IQCD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56802,150755,'NM_015232','IQSEC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',64869244,64934661,'NM_001142523','IRAK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',42439013,42469613,'NM_001145256','IRAK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107480423,107487289,'NM_014301','ISCU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',2792047,2804498,'NM_018463','ITFG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53075311,53099317,'NM_002205','ITGA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54364620,54387953,'NM_002206','ITGA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51871373,51887267,'NM_000889','ITGB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',26379551,26877398,'NM_002223','ITPR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',4889333,4897683,'NM_000217','KCNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',5023345,5026210,'NM_002234','KCNA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',4788602,4830539,'NM_002235','KCNA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',73720162,73889778,'NM_153748','KCNC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48219206,48238344,'NM_012284','KCNH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',21809155,21819014,'NM_004982','KCNJ8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',69046328,69114339,'NM_014505','KCNMB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108370842,108399538,'NM_031954','KCTD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120351281,120503303,'NM_032590','KDM2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',259483,368881,'NM_001042603','KDM5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',89968401,89976262,'NM_007035','KERA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',22492784,22588719,'NM_014802','KIAA0528'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53630195,53661889,'NM_001098815','KIAA0748'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',104025621,104087036,'NM_015275','KIAA1033'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',13088581,13127650,'NM_020853','KIAA1467'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',37973296,38123459,'NM_001173464','KIF21A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56230113,56264821,'NM_004984','KIF5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',87410700,87498381,'NM_003994','KITLG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',27824453,27847240,'NM_020782','KLHDC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10632343,10643701,'NR_028045','KLRAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9639136,9651764,'NM_002258','KLRB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10489903,10497246,'NM_007328','KLRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10474470,10479859,'NM_002260','KLRC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10459449,10464461,'NM_007333','KLRC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10451249,10453623,'NM_013431','KLRC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10416218,10454012,'NM_001199805','KLRC4-KLRK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10351683,10361117,'NM_007334','KLRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9871343,9888870,'NM_016523','KLRF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9925354,9939699,'NM_001190765','KLRF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9033487,9054607,'NM_005810','KLRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10416218,10433920,'NM_007360','KLRK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121577761,121676900,'NM_014708','KNTC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',25249446,25295121,'NM_033360','KRAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',74177685,74191685,'NM_007043','KRR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51354786,51360458,'NM_006121','KRT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51628921,51632952,'NM_199187','KRT18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',93752360,93752935,'NR_036685','KRT19P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51324608,51332226,'NM_000423','KRT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51469735,51476159,'NM_057088','KRT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51486593,51494167,'NM_002272','KRT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51194625,51200510,'NM_000424','KRT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51167224,51173448,'NM_005554','KRT6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51126701,51132177,'NM_005555','KRT6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51148566,51153836,'NM_173086','KRT6C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50913220,50928976,'NM_005556','KRT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51223959,51233198,'NM_033448','KRT71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51265639,51281589,'NM_001146226','KRT72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51287620,51298610,'NM_175068','KRT73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51245869,51253876,'NM_175053','KRT74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51104120,51114377,'NM_004693','KRT75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51448205,51457396,'NM_015848','KRT76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51369676,51383514,'NM_175078','KRT77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51519012,51529045,'NM_173352','KRT78'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51501497,51514344,'NM_175834','KRT79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51577237,51585135,'NM_002273','KRT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50849046,50872051,'NM_001081492','KRT80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50965963,50971566,'NM_002281','KRT81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51074001,51086443,'NM_033033','KRT82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50994351,51001449,'NM_002282','KRT83'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51057862,51065684,'NM_033045','KRT84'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51040056,51047576,'NM_002283','KRT85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50981915,50989214,'NM_002284','KRT86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',116375199,116890411,'NM_173598','KSR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53310889,53314930,'NM_033277','LACRT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6751930,6757882,'NM_002286','LAG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47247733,47250096,'NM_002289','LALBA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49080858,49160055,'NM_052879','LARP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',21679541,21702056,'NM_002300','LDHB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',63849617,63928408,'NM_001167614','LEMD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6807832,6819279,'NM_014262','LEPREL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49728348,49740474,'NM_001243689','LETMD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',70120079,70264888,'NM_003667','LGR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',112385076,112394260,'NM_022363','LHX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48855829,48963620,'NM_016357','LIMA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',79715301,79855825,'NM_004664','LIN7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',115455609,115457709,'NR_027345','LINC00173'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',24611164,24628369,'NR_029451','LINC00477'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',101727190,101742307,'NR_033855','LINC00485'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',64803115,64810800,'NM_032338','LLPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47777189,47790947,'NM_018113','LMBR1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',16592572,16649580,'NM_001243611','LMO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',97430881,97434135,'NR_027157','LOC100128191'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',125492979,125523284,'NR_015398','LOC100128554'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11215046,11216990,'NR_036583','LOC100129361'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131362049,131367559,'NR_024563','LOC100130238'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56406289,56408406,'NR_027032','LOC100130776'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109858788,109859633,'NR_036513','LOC100131138'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107974228,107976153,'NR_038996','LOC100131733'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',129083951,129092840,'NR_024457','LOC100190940'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',45888469,45896493,'NR_026544','LOC100233209'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52782259,52782750,'NR_026657','LOC100240734'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52758889,52761874,'NR_026658','LOC100240735'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',1908628,1916003,'NR_036546','LOC100271702'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48508592,48521204,'NR_027499','LOC100286844'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',30839881,30846912,'NR_040245','LOC100287314'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',105414317,105692739,'NR_040246','LOC100287944'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',1479917,1483851,'NR_028415','LOC100292680'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48069223,48072383,'NR_033267','LOC100335030'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9283865,9286912,'NR_036466','LOC100499405'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',105598665,105602608,'NR_038912','LOC100505978'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',13024037,13028843,'NR_038920','LOC100506314'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',20058885,20143069,'NR_040098','LOC100506393'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',25998854,26003642,'NR_038228','LOC100506451'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119123476,119135014,'NR_038924','LOC100506649'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',31064963,31118048,'NR_038927','LOC100506660'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119412523,119418132,'NR_038854','LOC100506668'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56611498,56616214,'NR_038269','LOC100506844'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131689808,131697110,'NM_001195520','LOC100507055'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122131883,122135244,'NR_038290','LOC100507091'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',125787505,125796753,'NR_038256','LOC100507206'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',67354417,67366906,'NR_038930','LOC100507250'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',72813222,72972678,'NR_038300','LOC100507377'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',2816242,2839222,'NR_038933','LOC100507424'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',130215508,130263429,'NR_026670','LOC116437'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47368511,47372496,'NR_024266','LOC144438'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',92483534,92489305,'NR_038263','LOC144481'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',93377909,93380475,'NR_027035','LOC144486'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9109039,9111918,'NR_026971','LOC144571'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',118206012,118225568,'NR_024246','LOC144742'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47407484,47445835,'NR_029448','LOC255411'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',113330382,113335020,'NR_038440','LOC255480'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48588931,48591913,'NR_026948','LOC283332'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51723239,51734489,'NR_033854','LOC283335'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',70933553,70953556,'NR_026837','LOC283392'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50885631,50890906,'NM_001242696','LOC283403'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50890980,50903864,'NR_027358','LOC283404'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',2740626,2751096,'NR_033958','LOC283440'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',88626862,88629860,'NR_028138','LOC338758'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120717555,120725773,'NR_002809','LOC338799'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11592230,11608602,'NR_033890','LOC338817'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9691909,9702275,'NR_002814','LOC374443'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',125781199,125822761,'NR_033878','LOC387895'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8400826,8434615,'NR_024420','LOC389634'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',44405769,44407971,'NR_028408','LOC400027'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52806121,52812893,'NR_026656','LOC400043'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',125009186,125033873,'NR_034132','LOC400084'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54509658,54516297,'NR_036476','LOC440104'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',125919992,125925189,'NR_033970','LOC440117'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',116837,128593,'NR_033859','LOC574538'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9327519,9357951,'NR_024374','LOC642846'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',91921664,92295643,'NR_040096','LOC643339'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',97403452,97421764,'NR_038383','LOC643770'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6418427,6430944,'NR_015382','LOC678655'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',87929033,87937600,'NR_038385','LOC728084'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',17032947,17034829,'NR_036619','LOC728622'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',106821056,106821678,'NR_037629','LOC728739'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12401286,12511105,'NM_058169','LOH12CR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12399608,12401268,'NR_024061','LOH12CR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6598261,6615558,'NM_020400','LPAR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6955607,6996103,'NM_005768','LPCAT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',57552203,57600529,'NM_153377','LRIG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',25096447,25152536,'NM_001204127','LRMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55808548,55893392,'NM_002332','LRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12160227,12311078,'NM_002336','LRP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',68288611,68291209,'NM_201550','LRRC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6884157,6893667,'NM_006992','LRRC23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121233619,121253971,'NM_001098519','LRRC43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',83954229,84163014,'NM_001079910','LRRIQ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',38905079,39049353,'NM_198578','LRRK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',1799693,1816179,'NM_001163926','LRTM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',94918741,94953496,'NM_000895','LTA4H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6363617,6370993,'NM_002342','LTBR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',90021362,90029673,'NM_002345','LUM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',25239416,25249216,'NM_001001660','LYRM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',68028400,68034280,'NM_000239','LYZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8984223,8993624,'NM_001207024','M6PR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10647630,10657475,'NM_018048','MAGOHB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12373484,12394436,'NM_018050','MANSC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',27806865,27815476,'NM_001146221','MANSC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',115481568,115498808,'NM_001085481','MAP1LC3B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52160542,52179711,'NM_001193511','MAP3K12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',110764661,110815611,'NM_139078','MAPKAPK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56435147,56440460,'NM_138396','MARCH9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56168002,56196705,'NM_004990','MARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7152179,7165723,'NR_026947','MATL2963'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56202925,56210198,'NM_052897','MBD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48238352,48248178,'NM_006337','MCRS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',67005051,67012428,'NM_020128','MDM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',67488237,67525479,'NM_002392','MDM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',114880763,115199374,'NM_015335','MED13L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',27066749,27073949,'NM_004264','MED21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',94391952,94433744,'NM_006838','METAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56448617,56452181,'NM_023033','METTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',31691360,31713283,'NM_001135864','METTL20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56452649,56462591,'NM_015433','METTL21B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49604800,49612567,'NM_014033','METTL7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54361596,54364661,'NM_152637','METTL7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8689806,8706700,'NM_003480','MFAP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51932142,51934457,'NM_032889','MFSD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',84897167,85756812,'NM_013244','MGAT4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108655512,108695672,'NR_026661','MGC14436'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',14925381,14930120,'NM_001190839','MGP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',16397617,16408611,'NM_145764','MGST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55129552,55134702,'NM_012064','MIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',118635821,118635912,'NR_031589','MIR1178'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55874553,55874626,'NR_031597','MIR1228'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9283332,9283414,'NR_036052','MIR1244-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9283332,9283414,'NR_036262','MIR1244-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9283332,9283414,'NR_036263','MIR1244-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',96409817,96409887,'NR_031653','MIR1251'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',78337167,78337232,'NR_031700','MIR1252'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',67953203,67953265,'NR_031692','MIR1279'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47334493,47334580,'NR_031623','MIR1291'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48914191,48914262,'NR_031625','MIR1293'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',96481720,96481820,'NR_029678','MIR135A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6943520,6943615,'NR_029682','MIR141'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53017266,53017365,'NR_029894','MIR148B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',99107792,99107858,'NR_031728','MIR1827'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52671788,52671898,'NR_029617','MIR196A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6943122,6943190,'NR_029779','MIR200C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56504658,56504742,'NR_029847','MIR26A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52911447,52911527,'NR_039851','MIR3198-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',94226326,94226420,'NR_029895','MIR331'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',127344589,127344676,'NR_037406','MIR3612'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',1639741,1639807,'NR_037422','MIR3649'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',102848332,102848463,'NR_037425','MIR3652'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',94227829,94227891,'NR_037456','MIR3685'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122586908,122587034,'NR_037470','MIR3908'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',68264768,68264870,'NR_037475','MIR3913-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',68264769,68264869,'NR_037476','MIR3913-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',103509540,103509624,'NR_037487','MIR3922'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',17717499,17717595,'NR_039770','MIR3974'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',25918219,25918279,'NR_036188','MIR4302'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',96913291,96913357,'NR_036189','MIR4303'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122061166,122061228,'NR_036187','MIR4304'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',115350439,115350506,'NR_039683','MIR4472-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108755535,108755624,'NR_039718','MIR4497'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119077620,119077686,'NR_039719','MIR4498'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',45867861,45867941,'NR_039847','MIR4698'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',80076297,80076371,'NR_039848','MIR4699'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119645378,119645452,'NR_039849','MIR4700'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47452012,47452094,'NR_039850','MIR4701'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',93752304,93752420,'NR_030171','MIR492'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12808849,12808944,'NR_030344','MIR613'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12960029,12960119,'NR_030345','MIR614'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52714000,52714096,'NR_030753','MIR615'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',79750442,79750539,'NR_030348','MIR617'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',79853645,79853743,'NR_030349','MIR618'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',115070747,115070842,'NR_030351','MIR620'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',24256621,24256696,'NR_030625','MIR920'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',61283732,61283816,'NR_029661','MIRLET7I'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',86700793,86702619,'NR_033410','MKRN9P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119609331,119624050,'NM_014730','MLEC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6727418,6732897,'NR_026581','MLF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47699024,47735374,'NM_003482','MLL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121001142,121194920,'NM_014938','MLXIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108475903,108495741,'NM_052845','MMAB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',130878893,130902269,'NM_016155','MMP17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54515480,54523002,'NM_002429','MMP19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',61146863,61277630,'NM_015026','MON2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120573675,120591943,'NM_173855','MORN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122206898,122272394,'NM_022782','MPHOSPH9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',92385396,92421679,'NM_172177','MRPL42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6471576,6472732,'NM_016497','MRPL51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',27754972,27800504,'NM_001190864','MRPS35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',70528340,70531030,'NR_024072','MRS2P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119263515,119291341,'NM_002442','MSI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',63958689,64146954,'NM_198080','MSRB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',105895198,105905059,'NM_025198','MTERFD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53534565,53538441,'NM_058173','MUCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108495882,108519454,'NM_001114185','MVK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',100512877,100603789,'NM_002465','MYBPC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',79634838,79637578,'NM_005593','MYF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',79625538,79627387,'NM_002469','MYF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109833006,109842787,'NM_000432','MYL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54838311,54841633,'NM_021019','MYL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54832470,54838038,'NM_002475','MYL6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55708567,55730160,'NM_005379','MYO1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108310906,108370559,'NM_001101421','MYO1H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',110948875,111031018,'NM_024953','NAA25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55768943,55775526,'NM_005967','NAB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55392477,55405333,'NM_005594','NACA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7833261,7839922,'NM_024865','NANOG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7809078,7817984,'NM_001145465','NANOGNB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',74724938,74765005,'NM_139207','NAP1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',76749199,77130921,'NM_014903','NAV3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6473558,6511393,'NM_014865','NCAPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53177761,53223166,'NM_005337','NCKAP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48471195,48508475,'NM_001037806','NCKAP5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',123374909,123617963,'NM_001077261','NCOR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',93889240,93921642,'NM_018838','NDUFA12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55914952,55920742,'NM_020142','NDUFA4L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',4628524,4666981,'NM_005002','NDUFA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8126073,8141640,'NM_015509','NECAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',95825131,95871600,'NM_001135176','NEDD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',43188324,43555711,'NM_001145109','NELL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53699995,53710068,'NM_021191','NEUROD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52972162,52981058,'NM_001136023','NFE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',103034987,103056170,'NM_006166','NFYB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',543722,643016,'NM_016533','NINJ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131194945,131202939,'NM_024078','NOC4L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6536297,6547741,'NM_006170','NOP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',116130329,116231598,'NM_001204214','NOS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52186740,52187689,'NM_003717','NPFF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',99391681,99481776,'NM_001206978','NR1H4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',93948315,93991535,'NM_001032287','NR2C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50731452,50739558,'NM_173157','NR4A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',2804774,2814482,'NM_031474','NRIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',102690210,102759105,'NM_001031701','NT5DC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',5411540,5474726,'NM_001102654','NTF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',94575713,94708667,'NM_021229','NTN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',84792203,84800901,'NM_006183','NTS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',104981254,105057941,'NM_014840','NUAK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',92295831,92321155,'NM_019094','NUDT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',92295876,92320183,'NR_002212','NUDT4P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',67366997,67422740,'NM_020401','NUP107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',100992102,101036491,'NM_024057','NUP37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55896844,55906499,'NM_007224','NXPH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',111829121,111840214,'NM_002534','OAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',111900656,111932886,'NM_002535','OAS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',111860631,111895438,'NM_006187','OAS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119942477,119961163,'NM_003733','OASL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54904391,54909905,'NM_024068','OBFC2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122025306,122030541,'NM_024623','OGFOD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10202165,10216057,'NM_002543','OLR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53901075,53902026,'NM_001005280','OR10A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46882388,46883342,'NM_001004134','OR10AD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54316942,54317884,'NM_206899','OR10P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54000650,54001589,'NM_001005182','OR6C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54132264,54133203,'NM_054105','OR6C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54011751,54012687,'NM_054104','OR6C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54231277,54232207,'NM_001005494','OR6C4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53974338,53975283,'NM_001005493','OR6C6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54080579,54081518,'NM_001005518','OR6C65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54172428,54173367,'NM_001005519','OR6C68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54149250,54150189,'NM_001005499','OR6C70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53927338,53928277,'NM_001005490','OR6C74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54045161,54046100,'NM_001005497','OR6C75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54106304,54107243,'NM_001005183','OR6C76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47205681,47208153,'NM_001005203','OR8S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53809819,53810827,'NM_001005243','OR9K2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120548837,120564329,'NM_032790','ORAI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54498072,54501226,'NM_014182','ORMDL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56374004,56401607,'NM_006812','OS9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',75269708,75477720,'NM_001003712','OSBPL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',79127363,79297001,'NM_173591','OTOGL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',29471755,29541886,'NM_183378','OVCH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131705475,131709045,'NM_174873','P2RX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120132046,120156292,'NM_002560','P2RX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120055013,120108737,'NM_002562','P2RX7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54784369,54793961,'NM_006191','PA2G4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',101756233,101835511,'NM_000277','PAH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54996273,55014104,'NM_001166279','PAN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',3788287,3852869,'NM_020367','PARP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',78509875,78608921,'NM_002583','PAWR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52132152,52161213,'NM_031989','PCBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53241494,53259290,'NM_001165975','PDE1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',20413445,20728308,'NM_000921','PDE3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',15017222,15026066,'NM_006205','PDE6H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',40117807,40254659,'NM_013377','PDZRN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',117058252,117067773,'NM_002567','PEBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7233548,7255346,'NM_001131024','PEX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51975501,51979501,'NM_002624','PFDN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46802696,46826454,'NM_001166688','PFKM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131797465,131809396,'NM_001170544','PGAM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6944777,6950152,'NM_007273','PHB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8958582,8985327,'NM_004426','PHC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',74705493,74711823,'NM_007350','PHLDA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',18305740,18692619,'NM_004570','PIK3C2G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56271208,56283478,'NM_024779','PIP4K2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122033979,122160928,'NM_020845','PITPNM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',129388385,129422830,'NM_004764','PIWIL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',32834946,32941047,'NM_001005242','PKP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119244296,119249975,'NM_000928','PLA2G1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',14547863,14612058,'NM_024829','PLBD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',112280753,112311841,'NM_001159727','PLBD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',18727382,18782185,'NM_033123','PLCZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',19173892,19420600,'NM_019012','PLEKHA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',43853083,43896056,'NR_037144','PLEKHA8P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6289862,6307933,'NM_018173','PLEKHG6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',91654395,91689999,'NM_001004330','PLEKHG7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',93066629,93225582,'NM_005761','PLXNC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',101114366,101115744,'NM_002674','PMCH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54634155,54646113,'NM_001200054','PMEL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',88337628,88444170,'NR_037659','POC1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',88437320,88444170,'NM_001199782','POC1B-GALNT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131710420,131774018,'NM_006231','POLE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',105275989,105428106,'NM_001160708','POLR3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119501230,119503580,'NM_015918','POP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8177631,8178715,'NR_036440','POU5F1P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49866985,49897744,'NR_026893','POU6F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',80176175,80677240,'NM_003625','PPFIA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',27568311,27739764,'NM_001198915','PPFIBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',41006213,41128689,'NM_001143787','PPHLN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',61324030,61614932,'NM_020700','PPM1H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109641995,109665166,'NM_002710','PPP1CC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',78691473,78853109,'NM_002480','PPP1R12A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53259290,53268710,'NM_006741','PPP1R1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109456619,109505447,'NM_139283','PPTC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11396023,11399791,'NM_005039','PRB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11435740,11439765,'NM_006248','PRB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11310123,11313908,'NM_006249','PRB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11351281,11354633,'NM_002723','PRB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',106650772,106679044,'NM_012406','PRDM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10924826,10928141,'NM_006250','PRH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10889714,11215491,'NR_037918','PRH1-PRR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10973100,10978711,'NM_005042','PRH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',41138406,41164064,'NM_001144883','PRICKLE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55411630,55432413,'NM_000946','PRIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',118590143,118603812,'NM_006253','PRKAB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47682321,47698896,'NM_002733','PRKAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',3470685,3573399,'NM_019854','PRMT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48303669,48324716,'NM_012272','PRPF40B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47975175,47978748,'NM_006262','PRPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52121699,52126694,'NM_018457','PRR13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10889714,10893342,'NM_007244','PRR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120811028,120840154,'NM_002813','PSMD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55343391,55368345,'NM_006601','PTGES3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',28006520,28014161,'NM_198964','PTHLH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6745801,6750379,'NM_002824','PTMS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',111340918,111432100,'NM_002834','PTPN11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6930694,6940740,'NM_002831','PTPN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',69196898,69289891,'NM_001206972','PTPRB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',15366457,15642532,'NM_002848','PTPRO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',79362256,79598099,'NM_001145026','PTPRQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',69318119,69434806,'NM_001207016','PTPRR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',130979750,130994359,'NM_001002019','PUS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',42408678,42438863,'NM_031292','PUS7L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',106603719,106630387,'NM_007062','PWP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131774264,131791650,'NM_018663','PXMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119132624,119172347,'NM_025157','PXN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',21481804,21515449,'NM_024854','PYROXD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',9192702,9252233,'NM_002864','PZP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55933814,55990513,'NM_014925','R3HDM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',70434924,70467417,'NM_014999','RAB21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119017281,119039026,'NM_001167606','RAB35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',68419446,68503251,'NM_175625','RAB3IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54654128,54674755,'NM_002868','RAB5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48669211,48705574,'NM_013277','RACGAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',43742667,43745461,'NR_026583','RACGAP1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',4518210,4539474,'NM_006479','RAD51AP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',891515,929124,'NM_134424','RAD52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109424387,109454274,'NM_152442','RAD9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',129922569,129926779,'NM_006325','RAN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',67290918,67340641,'NM_015646','RAP1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46414719,46438448,'NM_001098532','RAPGEF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51890616,51900464,'NM_001042728','RARG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',112021006,112058427,'NM_004658','RASAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',63290559,63377614,'NM_178169','RASSF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',26003230,26117074,'NM_001164748','RASSF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',84722461,84754449,'NM_005447','RASSF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',112744241,112888559,'NM_016196','RBM19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55201875,55276247,'NM_002898','RBMS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7167553,7172733,'NM_031491','RBP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55631482,55637685,'NM_003708','RDH16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54400417,54404793,'NM_001199771','RDH5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',21513110,21545870,'NM_032941','RECQL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',27740694,27741833,'NM_001029874','REP15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',15151982,15265678,'NM_032918','RERG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',18125069,18134381,'NM_024730','RERGL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',116938888,116954425,'NM_181578','RFC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',105519044,105680712,'NM_001206691','RFX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47744734,47750042,'NM_144593','RHEBL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120700042,120715977,'NM_019034','RHOF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',105692528,105807224,'NM_018157','RIC8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122521861,122584218,'NM_178314','RILPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122465888,122487217,'NM_145058','RILPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',129446633,129568363,'NM_015347','RIMBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8741784,8821054,'NM_020734','RIMKLB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',96382929,96451675,'NR_024037','RMST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47537182,47545920,'NM_014470','RND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119456514,119499780,'NM_014868','RNF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120322284,120346538,'NM_025126','RNF34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54882554,54901982,'NR_040053','RNF41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',115660478,115775819,'NM_032814','RNFT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46341981,46386111,'NM_001146075','RPAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',111713931,111821067,'NM_001143854','RPH3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',12919677,12920337,'NR_003932','RPL13AP20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6863405,6864029,'NR_002803','RPL13P5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54796640,54797883,'NM_001035267','RPL41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',111327376,111331826,'NM_000970','RPL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119118885,119123397,'NM_001002','RPLP0'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54721952,54724274,'NM_001029','RPS26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',64438067,64507021,'NR_026825','RPSAP52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121555142,121577513,'NR_036434','RSRC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54432513,54497807,'NR_026723','SARNP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107440120,107479295,'NM_014706','SART3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122339608,122400941,'NM_001167856','SBNO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',44599180,44670668,'NM_004719','SCAF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',123828126,123914472,'NM_001082959','SCARB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6489648,6489978,'NR_004387','SCARNA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6560899,6561036,'NR_003012','SCARNA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6946760,6947030,'NR_003010','SCARNA12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50342814,50488566,'NM_001177984','SCN8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6326269,6354651,'NM_001159576','SCNN1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',99185679,99258045,'NM_017988','SCYL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55603204,55614456,'NM_148897','SDR9C7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',112314633,112326075,'NM_006843','SDS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',112344598,112360464,'NM_138432','SDSL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107539808,107549983,'NM_001206609','SELPLG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46723023,46785908,'NM_014554','SENP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120727020,120754945,'NM_015048','SETD1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122434656,122459853,'NM_020382','SETD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',130761587,130850235,'NM_004592','SFSWAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',110328134,110373810,'NM_005475','SH2B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55910377,55914985,'NM_001166359','SHMT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119224506,119235428,'NM_012240','SIRT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49666041,49706466,'NR_033421','SLC11A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',127843691,127874494,'NM_145648','SLC15A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',16232685,16321886,'NM_001170798','SLC15A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',58369392,58461675,'NM_004731','SLC16A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',99274987,99339968,'NM_139319','SLC17A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',112220953,112257308,'NM_024959','SLC24A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',97511533,97519909,'NM_002635','SLC25A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56299959,56306201,'NM_133489','SLC26A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',38435089,38785928,'NM_052885','SLC2A13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7857663,7916762,'NM_153449','SLC2A14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',7963090,7980159,'NM_006931','SLC2A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',67426202,67446120,'NM_018656','SLC35E3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',44863107,44949475,'NM_030674','SLC38A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',45038237,45052912,'NM_018976','SLC38A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',45444810,45506047,'NM_018018','SLC38A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54910767,54917896,'NM_001135195','SLC39A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',103721404,103846602,'NM_032148','SLC41A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46453233,46462803,'NM_017842','SLC48A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',50104860,50177917,'NM_004858','SLC4A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',100074124,100128147,'NM_145913','SLC5A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',169503,193124,'NM_001122847','SLC6A12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',200047,242300,'NM_001190997','SLC6A13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',83777397,83830737,'NM_001146335','SLC6A15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',97371749,97375054,'NR_033801','SLC9A7P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',21308800,21439638,'NM_134431','SLCO1A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',21175394,21283997,'NM_006446','SLCO1B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',20854904,20960925,'NM_019844','SLCO1B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',21059896,21134307,'NM_001009562','SLCO1B7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',20739665,20797587,'NM_017435','SLCO1C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49925399,49950469,'NM_001031628','SMAGP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54841902,54869618,'NM_003075','SMARCC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48765249,48780761,'NM_003076','SMARCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52860408,52869045,'NM_001243787','SMUG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47336697,47336832,'NR_002950','SNORA2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47347506,47347643,'NR_002951','SNORA2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47334431,47334568,'NR_002968','SNORA34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',131081721,131081858,'NR_002979','SNORA49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',97517543,97517793,'NR_003015','SNORA53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',67307280,67307422,'NR_033335','SNORA70G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55325077,55325152,'NR_002737','SNORD59A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55323730,55323805,'NR_003046','SNORD59B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122508603,122516890,'NM_022717','SNRNP35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',94776839,94784369,'NM_003095','SNRPF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51783540,51804590,'NM_003578','SOAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',92487728,92494109,'NM_003877','SOCS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',23576497,23993904,'NM_006940','SOX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52060245,52096493,'NM_138473','SP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52006626,52015804,'NM_152860','SP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48046954,48207474,'NM_023071','SPATS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',100394787,100404906,'NM_152323','SPIC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119684695,119826538,'NM_139015','SPPL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51744366,51759471,'NM_032840','SPRYD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55148567,55151034,'NM_207344','SPRYD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6850360,6852782,'NM_032641','SPSB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',62524807,62827880,'NM_020762','SRGAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',117903682,118085239,'NM_194286','SRRM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119383853,119391941,'NM_003769','SRSF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107700594,107775488,'NM_018984','SSH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',26239535,26278975,'NM_001135823','SSPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',22237591,22378915,'NM_003034','ST8SIA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',102505198,102684632,'NM_017564','STAB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55923508,55931236,'NM_145064','STAC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55021648,55040304,'NM_198332','STAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55775454,55790356,'NM_001178079','STAT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',27288344,27370157,'NM_015000','STK38L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',15926554,15947677,'NM_007178','STRAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',129840099,129889764,'NM_001980','STX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10662804,10718158,'NM_018423','STYK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',117298740,117340223,'NM_022491','SUDS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54677309,54685576,'NM_000456','SUOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107828786,107943228,'NM_018711','SVOP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',100646556,100657381,'NM_153694','SYCP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',77781903,78369919,'NM_001135805','SYT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',33419614,33484021,'NM_198992','SYT10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55690047,55696611,'NM_001178054','TAC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',117071988,117295133,'NM_016281','TAOK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6431437,6441749,'NM_018009','TAPBPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',52180971,52186482,'NM_004178','TARBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10869211,10870135,'NM_023921','TAS2R10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10951791,10953428,'NM_023920','TAS2R13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10982119,10983073,'NM_023922','TAS2R14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11065537,11066437,'NM_176888','TAS2R19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11039827,11041741,'NM_176889','TAS2R20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11177150,11178110,'NM_001097643','TAS2R30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11074252,11075273,'NM_176885','TAS2R31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11229865,11230810,'NM_181429','TAS2R42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11135152,11136179,'NM_176884','TAS2R43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11105230,11106160,'NM_176887','TAS2R46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',11029778,11030778,'NM_176890','TAS2R50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10845397,10846493,'NM_023919','TAS2R7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10849916,10850846,'NM_023918','TAS2R8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',10852959,10854034,'NM_023917','TAS2R9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',70519753,70606896,'NR_027449','TBC1D15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',63504618,63561065,'NM_015279','TBC1D30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',63132106,63182166,'NM_013254','TBK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',113592441,113606352,'NM_005996','TBX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',113288284,113326086,'NM_080718','TBX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108822705,108840257,'NM_032300','TCHP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',105220710,105264922,'NM_152772','TCP11L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109536214,109571318,'NM_001173976','TCTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122721612,122758901,'NM_001143850','TCTN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',102883722,102906786,'NM_003211','TDG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',2938738,3020103,'NM_201441','TEAD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51728999,51744429,'NM_015319','TENC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',115961110,116021634,'NM_017899','TESC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49773805,49853193,'NM_001173453','TFCP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',70343943,70360695,'NM_031435','THAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55096423,55129467,'NM_003920','TIMELESS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',27015772,27058606,'NM_016551','TM7SF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',64816983,64850074,'NM_016056','TMBIM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48421559,48444984,'NM_003217','TMBIM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',93485030,93568455,'NM_020698','TMCC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',122635028,122648641,'NM_006815','TMED2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46643596,46648928,'NM_001143843','TMEM106C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',110853469,110935406,'NM_001193531','TMEM116'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',42516228,43069808,'NM_032256','TMEM117'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107507750,107516023,'NM_181724','TMEM119'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120635040,120704357,'NM_001080825','TMEM120B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',124377114,124709542,'NM_052907','TMEM132B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',127317900,127758413,'NM_001136103','TMEM132C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',128122223,128954165,'NM_133448','TMEM132D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',70366144,70384106,'NM_018279','TMEM19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55735692,55758841,'NM_001130963','TMEM194A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',118515646,118563746,'NM_001136534','TMEM233'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',62459903,62489154,'NM_014254','TMEM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',97433481,97468288,'NM_001032284','TMPO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',49522967,49567930,'NM_182559','TMPRSS12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',29545012,29828010,'NM_001193451','TMTC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',81605064,82052196,'NM_152588','TMTC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',87060203,87117795,'NM_181783','TMTC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6308183,6321544,'NM_001065','TNFRSF1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',112143642,112220772,'NM_001143819','TPCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',70618892,70712488,'NM_173353','TPH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6847538,6850371,'NR_027483','TPI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',111047731,111075791,'NM_001143906','TRAFD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',70952795,71345689,'NM_013381','TRHDE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119366146,119368598,'NM_016399','TRIAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',48003237,48004438,'NM_001100620','TROAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108705274,108755595,'NM_021625','TRPV4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56462794,56477637,'NM_005726','TSFM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',30971104,31040804,'NM_001080509','TSPAN11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',83932224,83954186,'NM_001100917','TSPAN19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56425050,56428293,'NM_005981','TSPAN31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',69805143,69838046,'NM_004616','TSPAN8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',3056781,3265991,'NM_006675','TSPAN9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47864849,47869128,'NM_006009','TUBA1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47807832,47811571,'NM_006082','TUBA1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47945131,47953380,'NM_032704','TUBA1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',2870293,2920567,'NM_001160408','TULP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',42473792,42486445,'NM_001242397','TWF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',103204856,103268192,'NM_003330','TXNRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',123962144,123965540,'NM_021009','UBC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',92326218,92360157,'NM_003348','UBE2N'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108399821,108458890,'NM_183415','UBE3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',98954993,99060773,'NM_015054','UHRF1BP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',130945231,130973660,'NM_003565','ULK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',119632213,119645826,'NM_001080533','UNC119B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',108020305,108033181,'NM_003362','UNG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',60940453,61086165,'NM_006313','USP15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107974762,108010214,'NM_032663','USP30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',94435017,94469394,'NM_032147','USP44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6831551,6846056,'NM_003481','USP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',100198035,100304528,'NM_014503','UTP20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6441664,6450104,'NM_199245','VAMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',46521586,46585081,'NM_000376','VDR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',94135652,94220697,'NM_017599','VEZT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',109413712,109424299,'NM_016226','VPS29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121282046,121317021,'NM_022916','VPS33A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121915827,121946665,'NM_024667','VPS37B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',116985780,117026193,'NM_019086','VSIG10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',5928300,6104097,'NM_000552','VWF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',14830678,14847668,'NM_016312','WBP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',120840845,120894357,'NM_001178003','WDR66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54581463,54607176,'NM_001143853','WIBG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',63730670,63801613,'NM_007191','WIF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',732349,890879,'NM_018979','WNK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47658502,47662663,'NM_005430','WNT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47645389,47651908,'NM_003394','WNT10B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',1608672,1626639,'NM_032642','WNT5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',116954879,116983334,'NM_018639','WSB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',107047640,107168443,'NM_014653','WSCD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',63084419,63128730,'NM_007235','XPOT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',56621711,56637319,'NM_033276','XRCC6BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',40837173,40918418,'NR_034000','YAF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',32790744,32800154,'NM_001040436','YARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',68039798,68070843,'NM_006530','YEATS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',55678883,55686564,'NM_014830','ZBTB39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',54798296,54802545,'NM_032786','ZC3H10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',121522098,121551496,'NM_017612','ZCCHC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',40992154,41006199,'NM_033114','ZCRB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',75681984,75771605,'NM_015336','ZDHHC17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',70289648,70344016,'NM_144982','ZFC3H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',132217286,132246122,'NM_015394','ZNF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',132167109,132194331,'NM_003440','ZNF140'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',132073128,132099226,'NM_019591','ZNF26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',132268067,132289534,'NM_001165887','ZNF268'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',6645903,6668999,'NM_001135734','ZNF384'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',53049186,53071350,'NM_001130967','ZNF385A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',132008091,132042941,'NM_183238','ZNF605'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',47020059,47030941,'NM_152320','ZNF641'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',123023714,123065939,'NM_001204298','ZNF664'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',123023714,123366523,'NM_001204299','ZNF664-FAM101A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',8216416,8223909,'NM_001004328','ZNF705A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',51860801,51870921,'NM_001004304','ZNF740'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr12',132124052,132149958,'NM_001127372','ZNF84'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',99980418,99984057,'NM_033110','A2LD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',94546025,94751688,'NM_001105515','ABCC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',107668763,107684604,'NM_032859','ABHD13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113124260,113151458,'NM_199162','ADPRHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',41744288,41795403,'NM_016248','AKAP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51484523,51501781,'NR_036571','ALG11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',36421907,36471504,'NM_001142364','ALG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',30185614,30236565,'NM_001204406','ALOX5AP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',110328887,110365417,'NM_017664','ANKRD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',18306542,18344109,'NR_027995','ANKRD20A9P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',18734939,18817113,'NR_027248','ANKRD26P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',105993662,106018515,'NM_018011','ARGLU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',110565624,110745543,'NM_001113511','ARHGEF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49100435,49106009,'NM_138450','ARL11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',112392643,112589483,'NM_032189','ATP11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',24152548,24183923,'NM_001185085','ATP12A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113351122,113360514,'NM_000705','ATP4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',27417342,27417710,'NR_002162','ATP5EP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51404805,51483631,'NM_001005918','ATP7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',24844208,25493420,'NM_016529','ATP8A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',69579345,69611886,'NR_002717','ATXN8OS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',30672111,30804411,'NM_194318','B3GALTL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',22369168,22370320,'NR_033774','BASP1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',102249399,102291889,'NM_017693','BIVM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',102257496,102326352,'NM_001204425','BIVM-ERCC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',72200042,72228329,'NM_024808','BORA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',31787616,31871809,'NM_000059','BRCA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',76400585,76401225,'NR_026983','BTF3P11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40929541,40943013,'NM_014059','C13orf15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',110771015,110794595,'NM_152324','C13orf16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',30404833,30447153,'NM_152325','C13orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',102216463,102224150,'NM_138779','C13orf27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',42253685,42263685,'NM_182508','C13orf30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',30378311,30397709,'NM_032849','C13orf33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',112349358,112386812,'NM_207440','C13orf35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',23781715,23794669,'NM_178540','C1QTNF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',23363427,23369125,'NM_001007537','C1QTNF9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',23361591,23364242,'NM_001135816','C1QTNF9B-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',48780786,48873736,'NM_030925','CAB39L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',110065931,110090343,'NM_018210','CARKD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',110091757,110156481,'NM_024537','CARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',43308488,43351826,'NM_144974','CCDC122'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',102179717,102209423,'NM_001146197','CCDC168'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',35699178,35769992,'NM_001144984','CCDC169'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',35640344,35769992,'NM_001198910','CCDC169-SOHLH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51334117,51338373,'NM_031290','CCDC70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',35903966,35915019,'NM_001111047','CCNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',48720047,48765623,'NR_036439','CDADC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',114018463,114056252,'NM_001078645','CDC16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',25726755,25876569,'NM_001260','CDK8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',27434277,27441317,'NM_001265','CDX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',24354411,24395085,'NM_018451','CENPJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',31976642,31981532,'NR_026928','CG030'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51927495,51948764,'NM_018204','CKAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',94883853,95030011,'NM_182848','CLDN10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',76464059,76474653,'NM_006493','CLN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',99056919,99347389,'NM_206808','CLYBL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',44937030,45008834,'NM_031431','COG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',39127763,39224765,'NR_026745','COG6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',109599310,109757497,'NM_001845','COL4A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',109757631,109963374,'NM_001846','COL4A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',74997350,75009992,'NM_203495','COMMD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',45525322,45577212,'NM_016413','CPB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',19875805,19998012,'NM_015974','CRYL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',36575396,36577801,'NM_145203','CSNK1A1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49362545,49365517,'NR_003268','CTAGE10P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',74709889,74712518,'NR_027466','CTAGE11P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',112911086,112967393,'NM_003589','CUL4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',48178951,48181499,'NM_020377','CYSLTR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',70910098,71339331,'NM_004392','DACH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',104916216,104941384,'NM_001161814','DAOA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',104909406,104956031,'NR_040247','DAOA-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',35240788,35603514,'NM_004734','DCLK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',93889841,93929937,'NM_001922','DCT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113158134,113193024,'NM_001014283','DCUN1D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',41520842,41701891,'NM_152910','DGKH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51240131,51276294,'NM_024705','DHRS12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',59246297,59485344,'NM_030932','DIAPH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',72227540,72254345,'NM_014953','DIS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49554414,49577434,'NR_002605','DLEU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49454688,49597678,'NR_002612','DLEU2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',50184759,50315886,'NM_198989','DLEU7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',42495361,42581306,'NM_013238','DNAJC15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',95127393,95245244,'NM_006260','DNAJC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',98243741,98428339,'NM_001130048','DOCK9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',95028456,95094958,'NM_198968','DZIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49132810,49163624,'NM_032565','EBPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',77367616,77391904,'NM_001201397','EDNRB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',31318919,31431721,'NR_027062','EEF1DP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',20964827,21076355,'NM_152726','EFHA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',105940079,105985389,'NM_004093','EFNB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40404054,40454418,'NM_001145353','ELF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',42685665,43259116,'NM_017993','ENOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',42360121,42464377,'NM_033255','EPSTI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',102296191,102326352,'NM_000123','ERCC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',46243391,46269368,'NM_001984','ESD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',36472677,36481751,'NM_181503','EXOSC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',112825113,112851844,'NM_000504','F10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',112808105,112822996,'NM_019616','F7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',24640671,24643857,'NM_152704','FAM123A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',50694470,50756378,'NM_001242312','FAM124A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',106618879,107317461,'NM_001080396','FAM155A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',45013432,45087875,'NM_182542','FAM194B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',36481450,36531850,'NM_017569','FAM48A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113599043,113651873,'NM_182614','FAM70B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',97593434,97900024,'NM_005766','FARP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',76477389,76499332,'NM_012158','FBXL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',101171205,101852125,'NM_175929','FGF14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',101742670,101844870,'NR_036486','FGF14-IT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',21143214,21176640,'NM_002010','FGF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',98801674,98802282,'NR_024013','FKSG29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',37007076,37023673,'NR_040244','FLJ34747'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113565222,113568650,'NR_044995','FLJ41484'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',39666645,39692639,'NR_033877','FLJ42392'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113487457,113527333,'NR_024609','FLJ44054'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',27772482,27967265,'NM_002019','FLT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',27475410,27572729,'NM_004119','FLT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',48448048,48681916,'NM_001079673','FNDC3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40027800,40138734,'NM_002015','FOXO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',38159172,38359267,'NM_207361','FREM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',31503436,31768776,'NM_023037','FRY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113546896,113590421,'NM_000820','GAS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',19610394,19633183,'NM_021954','GJA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',19659603,19665114,'NM_004004','GJB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',19694100,19703372,'NM_006783','GJB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',90848935,92317488,'NM_004466','GPC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',92677078,93858274,'NM_005708','GPC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',26227338,26232922,'NM_005288','GPR12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',98704967,98708683,'NM_005292','GPR18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',94052104,94084900,'NM_180989','GPR180'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',98744789,98757750,'NM_004951','GPR183'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113369597,113373973,'NM_002929','GRK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113026505,113066464,'NM_024719','GRTP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',27264779,27266089,'NM_145657','GSX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',44592630,44756239,'NM_004128','GTF2F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',26896680,26907846,'NM_002097','GTF3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',50466647,50538294,'NR_003923','GUCY1B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',29930878,29938081,'NM_002128','HMGB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',52089605,52115920,'NM_001011724','HNRNPA1L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',95541093,96289813,'NM_153456','HS6ST3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',30608762,30634117,'NM_006644','HSPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',46305513,46369170,'NM_001165947','HTR2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',20039207,20163576,'NM_175605','IFT88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',20175481,20195237,'NM_138284','IL17D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',110163625,110171422,'NM_198219','ING1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',50833701,50925276,'NM_012141','INTS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',97403929,97474551,'NM_002271','IPO5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',109204184,109236915,'NM_003749','IRS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',100902966,101166795,'NM_004791','ITGBL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',47705274,47734233,'NM_021999','ITM2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',29674766,29779584,'NM_032116','KATNAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40599708,40604936,'NM_152903','KBTBD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40663710,40666702,'NM_032138','KBTBD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49487390,49493059,'NM_173605','KCNRG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',76352304,76358541,'NM_138444','KCTD12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',44664987,44673175,'NM_198404','KCTD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',102234631,102249405,'NM_024089','KDELC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',45814137,45859636,'NM_025113','KIAA0226L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',41038960,41433221,'NM_015058','KIAA0564'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',44461686,44500404,'NM_018559','KIAA1704'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',32488570,32538282,'NM_004795','KL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',73158149,73606067,'NM_007249','KLF12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',72531142,72549677,'NM_001730','KLF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',69172725,69580626,'NM_020866','KLHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49171443,49265058,'NM_002267','KPNA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',43351968,43366068,'NM_153218','LACC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',112999469,113025742,'NM_005561','LAMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',20445175,20533722,'NM_014572','LATS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',45598058,45654460,'NM_002298','LCP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',52175399,52211948,'NM_007015','LECT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',38815028,39075356,'NM_005780','LHFP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',107657792,107665883,'NM_206937','LIG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',24048,60768,'NR_027278','LINC00281'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51285483,51317287,'NR_027048','LINC00282'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',43494470,43502599,'NR_026955','LINC00284'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',22941650,22959603,'NR_038995','LINC00327'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',110314334,110320656,'NR_027701','LINC00346'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',74024980,74029258,'NR_034025','LINC00347'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',90341208,90376852,'NR_027039','LINC00410'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',18817188,18818889,'NR_034026','LINC00421'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',29812406,29846036,'NR_024464','LINC00426'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',18480398,18484774,'NR_026852','LINC00442'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',105826911,105828141,'NR_034119','LINC00460'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',75092570,75332007,'NM_005358','LMO7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',27018049,27092720,'NM_153371','LNX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',44813479,44863618,'NR_024458','LOC100190939'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113544137,113546793,'NR_044993','LOC100506394'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',30354971,30404745,'NR_038287','LOC100507064'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',41433304,41453701,'NR_039974','LOC100507240'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40269120,40393886,'NR_038259','LOC100616668'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',102330449,102346384,'NR_026965','LOC121952'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',44271639,44281766,'NR_038433','LOC144817'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',101844928,101846056,'NR_036487','LOC283481'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',68333417,68357458,'NR_038878','LOC338862'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',29408667,29422625,'NR_033889','LOC440131'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',44048031,44052568,'NR_038381','LOC641467'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',20770263,20804210,'NR_038939','LOC650794'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',47883182,47916841,'NM_005767','LPAR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',46025296,46217037,'NM_015116','LRCH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',34945925,34948832,'NM_005584','MAB21L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',96672574,96844375,'NM_207304','MBNL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',112704028,112802054,'NM_024979','MCF2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',112669798,112670953,'NR_034002','MCF2L-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',47548092,47567241,'NM_014166','MED4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',102136097,102144855,'NM_001010977','METTL21C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',23202327,23361587,'NM_005932','MIPEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',53784107,53784184,'NR_031628','MIR1297'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49521255,49521338,'NR_029485','MIR15A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49521109,49521198,'NR_029486','MIR16-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',90800859,90800943,'NR_029487','MIR17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',90798074,90804830,'NR_027349','MIR17HG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',90801005,90801076,'NR_029488','MIR18A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',90801145,90801227,'NR_029489','MIR19A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',90801446,90801533,'NR_029490','MIR19B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',90801319,90801390,'NR_029492','MIR20A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',23634554,23634643,'NR_031753','MIR2276'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',101417992,101418097,'NR_039603','MIR2681'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',60671932,60672015,'NR_036128','MIR3169'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',97658778,97658855,'NR_036129','MIR3170'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40199963,40200011,'NR_031723','MIR320D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49468551,49468638,'NR_037407','MIR3613'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',77170147,77170252,'NR_037438','MIR3665'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',39136170,39136272,'NR_036190','MIR4305'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',99093313,99093404,'NR_036191','MIR4306'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',19905916,19905985,'NR_039721','MIR4499'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',87068920,87068996,'NR_039722','MIR4500'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',86894242,87121219,'NR_033829','MIR4500HG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51024725,51024804,'NR_039852','MIR4703'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',65690382,65690457,'NR_039853','MIR4704'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',101496284,101496355,'NR_039854','MIR4705'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',78340249,78743319,'NR_030317','MIR548A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',61232425,61510626,'NR_039765','MIR548AN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',83421116,83836270,'NR_031642','MIR548F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',34946405,35413382,'NR_031646','MIR548F5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',68241343,68469887,'NR_031680','MIR548H4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',72062976,72111734,'NR_031690','MIR548I4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',65438462,65438562,'NR_039692','MIR548X2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40282901,40282997,'NR_030352','MIR621'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',89681436,89681532,'NR_030754','MIR622'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',98806385,98806483,'NR_030353','MIR623'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',52282185,52282276,'NR_031582','MIR759'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',90801568,90801646,'NR_029508','MIR92A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',48692474,48694514,'NM_001507','MLNR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',19105787,19145599,'NM_017520','MPHOSPH8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',20648371,20651220,'NM_024026','MRP63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40201431,40243347,'NM_005830','MRPS31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',26907775,26922739,'NM_152912','MTIF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',24718340,24759704,'NM_004685','MTMR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40688515,40735713,'NM_004294','MTRF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',28900776,28978084,'NM_015233','MTUS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',76516792,76799178,'NM_015057','MYCBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',108046500,108658356,'NM_015011','MYO16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',72180495,72199939,'NM_001071775','MZT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',31872859,31900315,'NM_052818','N4BP2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',31989029,32010932,'NM_014887','N4BP2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',20201072,20246057,'NM_174928','N6AMT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40783340,40830854,'NM_018527','NAA16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',100504130,100866814,'NM_052867','NALCN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',34948885,35144874,'NM_001204197','NBEA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',78953259,79028213,'NM_001161407','NDFIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51604779,51631997,'NM_001146099','NEK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51536900,51601215,'NM_199289','NEK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',38510454,38522246,'NM_001012754','NHLRC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',47509703,47519283,'NM_018283','NUDT15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',44411383,44461613,'NM_012345','NUFIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',24773665,24814561,'NM_014089','NUPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',52500876,52524197,'NM_006418','OLFM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',63209568,63214702,'NR_002171','OR7E156P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40914699,40915902,'NR_002163','OR7E37P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',96435973,96444605,'NM_080818','OXGR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',24568275,24570704,'NM_030979','PABPC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',27610642,27767475,'NM_175854','PAN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',27608979,27611311,'NR_029383','PAN3-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',23893068,23984948,'NM_006437','PARP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',99539269,99980692,'NM_001178004','PCCA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',57103789,57201066,'NM_001040429','PCDH17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',60881819,60887656,'NM_022843','PCDH20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',52316109,52320776,'NM_002590','PCDH8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',65774966,66702469,'NM_020403','PCDH9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',112879925,112911030,'NM_018386','PCID2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',32058563,32250158,'NM_015032','PDS5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',27392167,27398451,'NM_000209','PDX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',48967801,49001118,'NM_001040443','PHF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',18518292,18590423,'NR_002801','PHF2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',72254230,72488592,'NM_006346','PIBF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',27093915,27095590,'NM_015972','POLR1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',28131140,28151093,'NM_015932','POMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',37034718,37070981,'NM_006475','POSTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',78071230,78075696,'NM_006237','POU4F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',27450242,27460774,'NM_001105577','PRHOXNB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',38482001,38510252,'NM_025138','PROSER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',112860968,112874695,'NM_003891','PROZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',56613052,56616074,'NM_198441','PRR20A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',56632766,56635788,'NM_001130404','PRR20B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',56613052,56616074,'NM_001130405','PRR20C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',56619622,56622644,'NM_001130406','PRR20D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',56626195,56629217,'NM_001130407','PRR20E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',19175008,19255159,'NM_001042414','PSPC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',109973413,110012072,'NM_017817','RAB20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',96884475,96918253,'NM_021033','RAP2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113765295,113916197,'NM_007368','RASA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',26742463,26745827,'NM_206827','RASL11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',47775883,47954027,'NM_000321','RB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',78792099,78877924,'NM_022118','RBM26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',78878444,78896469,'NR_038991','RBM26-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49004082,49057720,'NM_018191','RCBTB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',47961099,48005317,'NM_001268','RCBTB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',33290205,33309644,'NM_002915','RFC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',36291338,36301740,'NM_000538','RFXAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',50381814,50442597,'NM_001142279','RNASEH2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',97626039,97627522,'NM_178861','RNF113B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',24236300,24352058,'NM_001184993','RNF17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',78086421,78131315,'NM_024546','RNF219'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',25684904,25693894,'NM_183044','RNF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',26723691,26728702,'NM_000982','RPL21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',26723692,26728699,'NR_026911','RPL21P28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',31211678,31275009,'NM_130806','RXFP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',22800964,22905841,'NM_014363','SACS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',20612652,20621224,'NM_005870','SAP18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',77007809,77117399,'NM_001160706','SCEL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',43845977,43869850,'NM_001010897','SERP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',50813168,50834240,'NM_001101320','SERPINE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',36146048,36169975,'NM_203451','SERTM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',48916429,48967140,'NM_031915','SETDB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',22653059,22797304,'NM_000231','SGCG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',25516734,25523198,'NM_001007538','SHISA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',45252416,45323847,'NM_198849','SIAH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',20625733,20648741,'NM_145061','SKA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',77213295,77236378,'NM_001242870','SLAIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',102494348,102517197,'NM_000452','SLC10A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',98134055,98202930,'NM_005073','SLC15A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40261546,40284596,'NM_014252','SLC25A15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',44865453,44890516,'NM_001010875','SLC25A30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',28172217,28191150,'NM_001135919','SLC46A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',28981550,29067825,'NM_003045','SLC7A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',83349343,83354529,'NM_052910','SLITRK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',87122870,87129871,'NM_015567','SLITRK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',85264922,85271484,'NM_032229','SLITRK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',36316967,36392409,'NM_005905','SMAD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',26727537,26727663,'NR_002575','SNORA27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',44809614,44809744,'NR_002967','SNORA31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',26727200,26727272,'NR_002574','SNORD102'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',35640344,35686752,'NM_017826','SOHLH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',111769913,111774021,'NM_005986','SOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',94159879,94162390,'NM_007084','SOX21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',112078651,112137010,'NM_145248','SPACA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',23632860,23779212,'NM_153023','SPATA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',45174446,45186694,'NM_152719','SPERT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',35773774,35818646,'NM_015087','SPG20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',35818567,35841872,'NR_045180','SPG20OS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',79808112,79813087,'NM_005842','SPRY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49384842,49408626,'NR_023351','SPRYD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49644154,49645752,'NR_002183','ST13P4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',32575271,33148932,'NM_001243476','STARD13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',97900455,97972342,'NM_003576','STK24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',38438061,38462996,'NM_145286','STOML3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',47414791,47473463,'NM_003850','SUCLA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',52124831,52160434,'NM_001130912','SUGT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40384024,40393910,'NR_003365','SUGT1P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',74756809,74954251,'NM_014832','TBC1D4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',59868591,60046014,'NM_030794','TDRD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113287056,113343789,'NM_007111','TFDP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',94024308,94046512,'NM_014305','TGDS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51849303,51878630,'NM_199263','THSD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51639847,51666603,'NR_002816','THSD1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',98951728,99013277,'NM_004800','TM9SF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',113193308,113252545,'NM_017905','TMCO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',100054090,100125104,'NM_001079669','TMTC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',23051498,23141412,'NM_018647','TNFRSF19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',42034871,42080149,'NM_033012','TNFSF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',107719977,107758833,'NM_006573','TNFSF13B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',102047286,102129524,'NM_003291','TPP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',44809303,44813297,'NM_003295','TPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',18895018,19008903,'NM_199254','TPTE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',24400892,24440607,'NR_026730','TPTE2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51961128,52059226,'NR_002793','TPTE2P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',24052345,24069812,'NR_002815','TPTE2P6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',49469143,49490604,'NM_005798','TRIM13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',37108772,37341939,'NM_001135956','TRPC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',43904278,43909060,'NM_006022','TSC22D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',39819270,39953143,'NR_024507','TTL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',18645909,18653992,'NM_006001','TUBA3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',112187328,112290482,'NM_006322','TUBGCP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',98650679,98836754,'NM_001144072','UBAC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',98646628,98651010,'NR_036532','UBAC2-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',29236544,29322820,'NM_007106','UBL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',75021927,75078069,'NM_006002','UCHL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',37821941,37835143,'NM_016617','UFM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',95251836,95503737,'NM_020121','UGGT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',114065160,114089393,'NM_023011','UPF3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',26538286,26644033,'NM_182488','USP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',30089829,30131686,'NM_005800','USPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51496827,51505737,'NM_021645','UTP14C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51884737,51922764,'NM_016075','VPS36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',26029839,26161082,'NM_006646','WASF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',40533696,40556139,'NM_007187','WBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',51056484,51234172,'NM_052950','WDFY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',20249467,20374913,'NM_022459','XPO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',31775907,31784091,'NM_001136571','ZAR1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',45434314,45524895,'NM_015070','ZC3H13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',20844709,20931508,'NM_153251','ZDHHC20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',99432026,99437020,'NM_007129','ZIC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',99413275,99422179,'NM_033132','ZIC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',19430809,19563968,'NM_197968','ZMYM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',19309592,19335776,'NM_001039650','ZMYM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr13',114098066,114110905,'NM_032436','ZNF828'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73821732,73839520,'NM_005050','ABCD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',50408627,50441438,'NM_181814','ABHD12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22136986,22151105,'NM_022060','ABHD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22597613,22634663,'NM_001164814','ACIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73073680,73080251,'NM_001037161','ACOT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73105524,73112112,'NM_006821','ACOT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73128162,73132223,'NM_152331','ACOT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73153300,73156345,'NM_001037162','ACOT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',68410592,68515836,'NM_001102','ACTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',57736585,57772106,'NM_018477','ACTR10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74589680,74600489,'NM_203488','ACYP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',70058830,70071485,'NM_003814','ADAM20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69988626,69996375,'NM_003813','ADAM21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69782222,69784271,'NR_003951','ADAM21P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',105506863,105509403,'NR_002224','ADAM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',77336178,77470050,'NM_001142545','ADCK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23857394,23874117,'NM_001198568','ADCY4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104267272,104284692,'NM_199165','ADSSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104474635,104515739,'NM_138420','AHNAK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76994125,77005568,'NM_012111','AHSA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95928200,96024865,'NM_152327','AK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64001969,64010974,'NM_004857','AKAP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',31868229,32372019,'NM_004274','AKAP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104306731,104330983,'NM_005163','AKT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73596624,73620949,'NM_005589','ALDH6A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',77208501,77244109,'NM_006020','ALKBH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',102458745,102466932,'NM_030943','AMN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20222175,20232185,'NM_001145','ANG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76323338,76349036,'NM_015305','ANGEL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',102042950,102045881,'NM_152326','ANKRD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23098616,23107119,'NM_003917','AP1G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',30564433,30632389,'NM_001128126','AP4S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19993129,19995771,'NM_080648','APEX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103099051,103126989,'NM_032374','APOPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49429485,49433522,'NM_001663','ARF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',67156331,67188189,'NM_001172','ARG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',31616245,31698685,'NM_001173','ARHGAP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20608366,20627876,'NM_018071','ARHGEF40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',57834974,57910204,'NM_023000','ARID4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93470251,93493520,'NM_016150','ASB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103621775,103648799,'NM_001080464','ASPG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54902861,54948329,'NM_014924','ATG14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95817347,95899431,'NM_018036','ATG2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',50096492,50169534,'NM_015915','ATL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49848796,49862696,'NM_001003803','ATP5S'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',66874333,66896473,'NM_015994','ATP6V1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',91594648,91642718,'NM_001127697','ATXN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103092633,103098408,'NM_001015049','BAG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',75058536,75083087,'NM_006399','BATF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',34291687,34414604,'NM_182648','BAZ1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',98705377,98807575,'NM_022898','BCL11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22845810,22850808,'NM_004050','BCL2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22845810,22865234,'NM_001199864','BCL2L2-PABPN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',75406357,75658553,'NR_001568','BCYRN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95792299,95800853,'NM_000710','BDKRB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95740887,95780419,'NM_000623','BDKRB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100073236,100104160,'NM_001159531','BEGAIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',53486204,53491020,'NM_130851','BMP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104746667,104838374,'NM_001519','BRF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',35365347,35410920,'NM_032352','BRMS1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104785923,104788475,'NM_033271','BTBD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92823726,92869138,'NM_018167','BTBD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',75186985,75197291,'NM_007176','C14orf1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',56116263,56185985,'NM_017799','C14orf101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',89814150,89868234,'NM_017970','C14orf102'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',57006347,57030329,'NM_018168','C14orf105'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92721048,92723184,'NM_015676','C14orf109'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',75688011,75738887,'NM_017972','C14orf118'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22634627,22639505,'NM_017924','C14orf119'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',30984993,30996431,'NM_080664','C14orf126'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',31614375,31615656,'NR_027263','C14orf128'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95915774,95923316,'NM_016472','C14orf129'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95575414,95629888,'NR_023938','C14orf132'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76962770,76993736,'NM_001193315','C14orf133'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',59628381,59671285,'NM_022495','C14orf135'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92738989,92743212,'NM_032490','C14orf142'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',59009158,59020826,'NM_144581','C14orf149'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',90650109,90761456,'NM_001102366','C14orf159'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69106283,69107671,'NR_024630','C14orf162'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23461296,23473617,'NR_024081','C14orf165'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',51525977,51541170,'NM_016039','C14orf166'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76362477,76406398,'NM_194287','C14orf166B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23477779,23493232,'NR_023921','C14orf167'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73027396,73029858,'NM_024644','C14orf169'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20636935,20641723,'NM_001146683','C14orf176'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',98247702,98253856,'NM_182560','C14orf177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',77296925,77305838,'NM_174943','C14orf178'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104117100,104127228,'NM_001008404','C14orf180'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49518179,49543988,'NM_001012706','C14orf182'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49620118,49629111,'NM_001014830','C14orf183'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',34478878,34479453,'NR_002937','C14orf19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103448377,103457656,'NM_004894','C14orf2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23838937,23844214,'NM_174913','C14orf21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',28311660,28317517,'NR_026732','C14orf23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',44436256,44446210,'NM_001017923','C14orf28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',55112627,55116563,'NR_027123','C14orf33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',55317605,55333145,'NR_026796','C14orf34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',57540560,57688600,'NM_001001872','C14orf37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',59041537,59113302,'NM_001164399','C14orf38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',59972426,60022517,'NM_174978','C14orf39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73251577,73323649,'NM_001043318','C14orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73555811,73602548,'NM_025057','C14orf45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93533394,93544962,'NR_024184','C14orf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',94953583,95011926,'NM_152592','C14orf49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64086372,64125849,'NM_172365','C14orf50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',70005348,70020226,'NR_037933','C14orf55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',97461699,97514214,'NR_015430','C14orf64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100193357,100208834,'NR_024096','C14orf70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104523660,104532900,'NM_174891','C14orf79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',105027564,105036630,'NM_001134877','C14orf80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',51185984,51188212,'NR_037676','C14orf82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93440828,93462471,'NR_027004','C14orf86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22525949,22549200,'NM_001130706','C14orf93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',89933079,89944372,'NM_006888','CALM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',91116870,91268166,'NM_024764','CATSPERB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23965579,23968571,'NM_001039771','CBLN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99047355,99140480,'NM_001144995','CCDC85C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',90807419,90953941,'NM_001080414','CCDC88C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19849368,19867373,'NM_182852','CCNB1IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99017491,99047605,'NM_001099402','CCNK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',102468468,102593495,'NM_006035','CDC42BPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104546954,104558470,'NM_017955','CDCA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22586109,22596587,'NM_144985','CDH24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49866469,49932367,'NM_004196','CDKL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',53933422,53956684,'NM_005192','CDKN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22656354,22658314,'NM_001805','CEBPE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',80032573,80475637,'NM_152446','CEP128'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',34249338,34253780,'NM_138638','CFL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54046336,54075084,'NM_006568','CGRRF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20923192,20975297,'NM_020920','CHD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92459197,92471393,'NM_001275','CHGA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23748626,23752876,'NM_014169','CHMP4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64450831,64471837,'NM_145165','CHURC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64450831,64599126,'NM_001202559','CHURC1-FNTB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23844232,23850416,'NM_014430','CIDEB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',101884371,101899006,'NM_001177612','CINP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103055748,103058923,'NM_001823','CKB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',37793069,37795325,'NM_175060','CLEC14A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',94718028,94855998,'NM_024734','CLMN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',24044551,24047311,'NM_001836','CMA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22915856,22918821,'NM_001037288','CMTM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',53963396,53977898,'NM_005776','CNIH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',30413491,30429573,'NM_004086','COCH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73486707,73499566,'NM_182476','COQ6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69861550,69896201,'NM_001204090','COX16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92883289,92884453,'NM_182971','COX8C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23610595,23617136,'NM_006032','CPNE6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',91658050,91700296,'NM_017437','CPSF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',105024301,105026169,'NM_001311','CRIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',105012175,105017545,'NM_001312','CRIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',38806078,38890148,'NM_203355','CTAGE5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',24112563,24115306,'NM_001911','CTSG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99220507,99263391,'NM_006668','CYP46A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',58725151,58906224,'NM_014992','DAAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',58174509,58184791,'NM_016651','DACT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22103646,22127983,'NM_001344','DAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23653745,23664291,'NM_001163484','DCAF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',72462792,72496110,'NM_015604','DCAF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',68587389,68689667,'NM_003861','DCAF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',52573207,52689796,'NM_030637','DDHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93587020,93617311,'NM_020414','DDX24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99682505,99695765,'NM_206918','DEGS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23829643,23838879,'NM_001136050','DHRS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23175412,23184688,'NM_182908','DHRS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23492804,23508328,'NM_021004','DHRS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23575549,23590420,'NM_001082488','DHRS4L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23508922,23545459,'NM_001193636','DHRS4L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',59681251,59701964,'NM_016029','DHRS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',94622317,94669593,'NM_001195573','DICER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',94693777,94716023,'NR_015415','DICER1-AS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',79733620,79747617,'NM_001242503','DIO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',101097440,101099542,'NM_001362','DIO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',101088312,101091766,'NR_002770','DIO3OS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54684586,54728149,'NM_001146015','DLGAP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100262954,100271220,'NM_003836','DLK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74418346,74440203,'NR_033814','DLST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49161641,49171698,'NM_018139','DNAAF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73181330,73240184,'NM_031427','DNAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',72206412,72430562,'NM_012074','DPF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',101500617,101586888,'NM_001376','DYNC1H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',34054885,34078694,'NM_018453','EAPP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20457339,20458175,'NR_033909','ECRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20283938,20286379,'NM_006683','EDDM3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20306425,20308947,'NM_022360','EDDM3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',89333221,89490842,'NM_145231','EFCAB11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22895450,22904682,'NM_032459','EFS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',33463171,33490035,'NM_022073','EGLN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74539364,74546047,'NM_014239','EIF2B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',66896786,66922986,'NM_004094','EIF2S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',102870245,102881114,'NM_001969','EIF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99329497,99478148,'NM_004434','EML1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',88150926,88328849,'NM_183387','EML5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73502933,73555779,'NM_001249','ENTPD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',68916592,68934774,'NM_004450','ERH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',52178354,52232169,'NM_014584','ERO1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',63763503,63830881,'NM_001040275','ESR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',75907442,76037933,'NM_004452','ESRRB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99601503,99680326,'NM_016337','EVL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',68728235,68780490,'NM_001193363','EXD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',102636233,102646647,'NM_001077594','EXOC3L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',56738946,56805370,'NM_006544','EXOC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23678013,23680637,'NM_016049','FAM158A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73469447,73486870,'NM_152445','FAM161B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74606051,74614552,'NM_024643','FAM164C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',34583863,34622340,'NM_001079519','FAM177A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',44501165,44613384,'NM_015091','FAM179B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93454992,93465707,'NM_138344','FAM181A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',66725862,66765020,'NM_173526','FAM71D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',44674885,44739843,'NM_020937','FANCM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',91405507,91483799,'NM_006329','FBLN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',38935327,38971455,'NM_203301','FBXO33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54807773,54890082,'NM_017943','FBXO34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74249602,74273143,'NM_015962','FCF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',52393738,52487565,'NM_001134999','FERMT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23670514,23671898,'NM_203402','FITM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',44654551,44673482,'NM_002013','FKBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',61107010,61191184,'NR_039985','FLJ22447'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',57801835,57834608,'NR_029434','FLJ31306'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',61653827,61670656,'NR_015358','FLJ43390'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',85066240,85164023,'NM_013231','FLRT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',75114692,75184265,'NM_017791','FLVCR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64523259,64599123,'NM_002028','FNTB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74815233,74818690,'NM_005252','FOS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',37128941,37134240,'NM_004496','FOXA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',28306037,28308622,'NM_005249','FOXG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',88692268,88953207,'NM_005197','FOXN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',51188325,51267194,'NM_152330','FRMD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',44043101,44046249,'NM_032135','FSCB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64947062,65280592,'NM_178156','FUT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',30098079,30158797,'NM_017769','G2E3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',87469110,87529368,'NM_000153','GALC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',68796433,68890943,'NM_020692','GALNTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54378473,54439292,'NM_000161','GCH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',38653238,38675928,'NM_003616','GEMIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95071075,95080808,'NM_016417','GLRX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54010958,54025494,'NM_004124','GMFB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23771942,23778287,'NM_016576','GMPR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',51396771,51506268,'NM_001243773','GNG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',52311660,52328136,'NM_198066','GNPNAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92330402,92376057,'NM_005113','GOLGA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',62849301,62855346,'NM_145171','GPHB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',66043877,66718278,'NM_020806','GPHN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104586781,104602799,'NM_013345','GPR132'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',58999992,59001812,'NM_022571','GPR135'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',52089615,52174181,'NM_001099652','GPR137C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',31021900,31026902,'NM_001197184','GPR33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',87541220,87550908,'NM_003608','GPR65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',90768628,90780605,'NM_001177676','GPR68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64475624,64479284,'NM_002083','GPX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',94304312,94306252,'NM_173849','GSC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76857458,76867693,'NM_001513','GSTZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',80716146,80757328,'NM_201595','GTF2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',24170001,24173272,'NM_004131','GZMB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',24145532,24148704,'NM_033423','GZMH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22485276,22496191,'NM_001166269','HAUS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73014941,73095404,'NM_001220484','HEATR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',30830744,30959539,'NM_015473','HEATR5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',30639074,30746440,'NM_015382','HECTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99181232,99212764,'NM_001127258','HHIPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',61231871,61284730,'NM_001530','HIF1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20747135,20807478,'NM_031314','HNRNPC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22812683,22825149,'NM_020834','HOMEZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',101616827,101675839,'NM_001017963','HSP90AA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64076938,64079707,'NM_021979','HSPA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93646831,93652786,'NM_001130080','IFI27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93617391,93638813,'NM_145249','IFI27L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93663870,93665710,'NM_032036','IFI27L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',75521848,75619845,'NM_052873','IFT43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22911909,22915452,'NM_022789','IL25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104226987,104256992,'NM_022489','INF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',35072998,35076011,'NM_032594','INSM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23719264,23727964,'NM_024658','IPO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76560638,76564787,'NM_024496','IRF2BPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23700261,23705614,'NM_006084','IRF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74030202,74032024,'NM_194279','ISCA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',77010490,77034963,'NM_182509','ISM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92473011,92652016,'NM_001142594','ITPK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92603549,92608231,'NR_002808','ITPK1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104679120,104706206,'NM_002226','JAG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74964812,75009157,'NM_130469','JDP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',59020913,59041834,'NM_016475','JKAMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23107083,23117849,'NM_032452','JPH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22510249,22521688,'NM_032876','JUB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',62243697,62581708,'NM_139318','KCNH5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',87716204,87807008,'NM_138318','KCNK10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',89597860,89721948,'NM_022054','KCNK13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23968980,23980387,'NM_015299','KHNYN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',105454882,105469547,'NR_026800','KIAA0125'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69148062,69251614,'NM_014734','KIAA0247'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104402694,104434152,'NM_015005','KIAA0284'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74197707,74249560,'NM_001039479','KIAA0317'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',34661526,34813021,'NM_014672','KIAA0391'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',57964462,58085302,'NM_014749','KIAA0586'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76634330,76653383,'NM_033426','KIAA1737'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103674812,103716988,'NM_015656','KIF26A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103165277,103222321,'NM_005552','KLC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49229572,49289620,'NM_172193','KLHDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49304536,49319606,'NM_014315','KLHDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',44463276,44500929,'NM_017658','KLHL28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19966809,19973641,'NM_001109997','KLHL33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',55116677,55221055,'NM_182926','KTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49778901,49848697,'NM_024884','L2HGDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54665687,54681901,'NM_002306','LGALS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92239904,92284800,'NM_005606','LGMN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73621408,73736870,'NM_001024674','LIN52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',106009499,106022574,'NR_027457','LINC00221'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',105815313,105816011,'NR_033375','LINC00226'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',66022861,66035024,'NR_024338','LINC00238'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',101266526,101268615,'NR_026774','LINC00239'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',94943356,94946180,'NR_026779','LINC00341'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',97168736,97222748,'NR_033943','LOC100129345'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',36710981,36712749,'NR_033240','LOC100129794'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',102723310,102725118,'NR_033938','LOC100131366'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',38804657,38806016,'NR_038935','LOC100288846'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69302752,69304183,'NR_029378','LOC100289511'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',27151633,27178682,'NR_039992','LOC100505967'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',30415135,30428765,'NR_038356','LOC100506071'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64626388,64630782,'NR_045122','LOC100506321'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',47303905,47333967,'NR_039996','LOC100506433'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95412861,95461661,'NR_038861','LOC100507043'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',79747514,79991563,'NR_038355','LOC100628307'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103383810,103394139,'NR_038436','LOC145216'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',71024330,71026173,'NR_027046','LOC145474'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',38288293,38455837,'NR_039982','LOC283547'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',50869860,50902025,'NR_038358','LOC283553'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',86441874,86458852,'NR_038445','LOC283585'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20738077,20744899,'NR_038971','LOC283624'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',88953450,88955890,'NR_036500','LOC400236'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',89991326,89995002,'NR_033986','LOC400238'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64947063,64949088,'NR_024334','LOC645431'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74830859,74832864,'NR_038421','LOC731223'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',41146513,41443504,'NM_152447','LRFN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22410799,22417131,'NM_014045','LRP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49135164,49151140,'NM_203467','LRR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23591045,23608777,'NM_138360','LRRC16B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23852152,23857082,'NM_181657','LTB4R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23849196,23851099,'NM_019839','LTB4R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74034638,74148787,'NM_000428','LTBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',70264606,70345641,'NM_033141','MAP3K9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49954960,50069126,'NM_006575','MAP4K5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54588114,54606665,'NM_144578','MAPK1IP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',102921453,103039919,'NM_001128921','MARK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64611597,64638980,'NM_145112','MAX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',35837514,35859633,'NM_016586','MBIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',46378577,46882188,'NM_182830','MDGA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23752982,23755116,'NM_001199822','MDP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',70120709,70137137,'NM_005466','MED6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100362197,100397113,'NR_003530','MEG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100430859,100443058,'NR_024149','MEG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20527804,20535034,'NM_022734','METTL17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49645099,49653047,'NM_024558','METTL21D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',21036121,21049297,'NM_019852','METTL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49157238,49159949,'NM_002408','MGAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104358582,104361100,'NR_024396','MGC23270'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',38772875,38792326,'NM_054024','MIA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',36736868,37090215,'NM_138731','MIPOL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100579066,100579151,'NR_031575','MIR1185-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100580287,100580372,'NR_031571','MIR1185-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100566141,100566219,'NR_036132','MIR1193'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100561653,100561741,'NR_031713','MIR1197'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',101096376,101096512,'NR_031649','MIR1247'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76802313,76802386,'NR_031661','MIR1260'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100419068,100419165,'NR_029696','MIR127'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100590776,100590849,'NR_029698','MIR134'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100420791,100420873,'NR_029699','MIR136'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100595844,100595928,'NR_029704','MIR154'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103653494,103653604,'NR_029620','MIR203'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22927644,22927715,'NR_029595','MIR208A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22957035,22957112,'NR_030624','MIR208B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100350580,100350664,'NR_039729','MIR2392'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100559883,100559946,'NR_029841','MIR299'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100577452,100577534,'NR_030582','MIR300'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',94674008,94674076,'NR_036131','MIR3173'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100561821,100561907,'NR_029890','MIR323'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100592308,100592390,'NR_036133','MIR323B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100562874,100562954,'NR_029967','MIR329-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100563189,100563273,'NR_029968','MIR329-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100410582,100410675,'NR_029889','MIR337'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99645744,99645843,'NR_029888','MIR342'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99843948,99844046,'NR_029906','MIR345'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103653507,103653593,'NR_039859','MIR3545'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100601687,100601757,'NR_029862','MIR369'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100576871,100576939,'NR_029868','MIR376A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100576158,100576238,'NR_030266','MIR376A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100576525,100576625,'NR_030157','MIR376B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100575779,100575845,'NR_029861','MIR376C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100598139,100598208,'NR_029869','MIR377'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100558155,100558222,'NR_029871','MIR379'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100561106,100561167,'NR_029872','MIR380'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100582009,100582084,'NR_029873','MIR381'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100590395,100590471,'NR_029874','MIR382'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100601389,100601468,'NR_029975','MIR409'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100602001,100602081,'NR_030156','MIR410'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100559414,100559510,'NR_030389','MIR411'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100601536,100601627,'NR_030155','MIR412'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',26447687,26447771,'NR_036193','MIR4307'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54414580,54414661,'NR_036194','MIR4308'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',102075733,102075816,'NR_036192','MIR4309'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100417096,100417210,'NR_029965','MIR431'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100420572,100420666,'NR_030173','MIR432'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100417975,100418068,'NR_029966','MIR433'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',36491264,36491347,'NR_039725','MIR4503'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73295202,73295275,'NR_039727','MIR4505'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64581158,64581240,'NR_039855','MIR4706'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22495998,22496078,'NR_039856','MIR4707'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64871588,64871654,'NR_039857','MIR4708'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74016588,74016660,'NR_039858','MIR4709'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104215075,104215131,'NR_039860','MIR4710'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100591508,100591581,'NR_030160','MIR485'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100588535,100588615,'NR_030162','MIR487A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100582544,100582628,'NR_030267','MIR487B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100405149,100405238,'NR_030172','MIR493'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100565723,100565804,'NR_030174','MIR494'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100569844,100569926,'NR_030175','MIR495'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100596662,100596764,'NR_030176','MIR496'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100583410,100583488,'NR_030256','MIR539'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100600584,100600668,'NR_030594','MIR541'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100568076,100568154,'NR_030619','MIR543'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',47299947,47300057,'NR_037503','MIR548Y'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',30553602,30553699,'NR_030354','MIR624'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100576308,100576389,'NR_030390','MIR654'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100585639,100585736,'NR_030391','MIR655'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100602813,100602891,'NR_030392','MIR656'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100411122,100411194,'NR_030617','MIR665'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100591347,100591413,'NR_030408','MIR668'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100562109,100562197,'NR_030406','MIR758'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100388479,100388577,'NR_030528','MIR770'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100583990,100584069,'NR_030595','MIR889'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',44742142,44792355,'NM_018353','MIS18BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74550219,74587988,'NM_014381','MLH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22375632,22386643,'NM_004995','MMP14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',60271211,60505151,'NM_002431','MNAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92718293,92721002,'NM_022151','MOAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',101764930,101841284,'NM_014226','MOK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',66777773,66872289,'NM_022474','MPP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22368931,22374086,'NM_178336','MRPL52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104957230,105008102,'NM_004689','MTA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',63924511,63996478,'NM_005956','MTHFD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',56805358,56826550,'NR_026895','MUDENG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22921038,22947326,'NM_002471','MYH6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22951786,22974710,'NM_000257','MYH7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',56927023,56949219,'NM_001011713','NAA30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20554761,20563775,'NM_201535','NDRG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',91652220,91657906,'NM_004545','NDUFB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23755896,23771416,'NM_006156','NEDD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23752982,23771416,'NM_001199823','NEDD8-MDP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74618570,74663531,'NM_033116','NEK9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49320281,49389289,'NM_004713','NEMF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23908141,23918650,'NM_001198966','NFATC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',34940466,34943711,'NM_020529','NFKBIA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76801586,76807408,'NM_021257','NGB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23008737,23017242,'NM_015514','NGDN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',51541269,51605696,'NM_007361','NID2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',50256230,50367589,'NM_020921','NIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',36055352,36058654,'NM_003317','NKX2-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',36118966,36121537,'NM_014360','NKX2-8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',25984928,26136800,'NM_002515','NOVA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76930117,76959152,'NM_001113475','NOXRED1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',32478209,33343133,'NM_173159','NPAS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74016395,74029837,'NM_006432','NPC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23619155,23623672,'NM_006177','NRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',78815406,79400513,'NM_001105250','NRXN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',31253525,31400180,'NM_001201574','NUBPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104710320,104718705,'NM_177533','NUDT14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',72811670,72995039,'NM_003744','NUMB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23937831,23958334,'NM_025081','NYNRIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',21171905,21172838,'NM_001005466','OR10G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',21107773,21108715,'NM_001005465','OR10G3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19735334,19736372,'NM_001005503','OR11G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',18447593,18448574,'NM_001013354','OR11H12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19250902,19252331,'NM_001197287','OR11H2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19780790,19781765,'NM_001004479','OR11H4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19761708,19762701,'NM_001004480','OR11H6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',21203136,21204078,'NM_001001912','OR4E2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19473606,19474682,'NM_001004063','OR4K1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19571842,19572757,'NM_001004714','OR4K13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19552259,19553192,'NM_001004712','OR4K14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19513517,19514564,'NM_001005486','OR4K15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19655405,19656437,'NM_001004715','OR4K17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19414266,19415211,'NM_001005501','OR4K2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19458605,19459577,'NM_001005483','OR4K5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19598043,19598982,'NM_001004717','OR4L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19318321,19319263,'NM_001005500','OR4M1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19365447,19366371,'NM_001004723','OR4N2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19681734,19682661,'NM_001004724','OR4N5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19285426,19286368,'NM_172194','OR4Q3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20692935,20694024,'NM_001004731','OR5AU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20178694,20179690,'NM_001001968','OR6S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19985046,19993107,'NM_017807','OSGEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93562476,93585029,'NM_023112','OTUB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',56337177,56346937,'NM_021728','OTX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',56349653,56467303,'NR_029385','OTX2OS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22305570,22310838,'NM_005015','OXA1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22859236,22865234,'NM_004643','PABPN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104838214,104935529,'NM_001243127','PACS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',72773957,72811100,'NM_173462','PAPLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',96038472,96103201,'NM_032632','PAPOLA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19881612,19895903,'NM_005484','PARP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',36196523,36216762,'NM_006194','PAX9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23633322,23639610,'NM_001018073','PCK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',70443874,70651852,'NM_014982','PCNX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',55654845,55837784,'NM_021255','PELI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74478285,74492220,'NM_002632','PGF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',67125775,67136770,'NM_004569','PIGH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104462231,104470618,'NM_138790','PLD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',66923452,66948581,'NM_016445','PLEK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69021223,69064968,'NM_001161498','PLEKHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64240945,64280813,'NM_015549','PLEKHG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',67069760,67126008,'NM_020715','PLEKHH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73248238,73250881,'NM_006029','PNMA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',38714137,38722173,'NM_002687','PNN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20007377,20016005,'NM_000270','PNP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49180019,49224848,'NM_001197330','POLE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76811051,76856978,'NM_013382','POMT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',18623364,18654942,'NR_027480','POTEG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19053953,19090272,'NM_001145442','POTEM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',59785718,59825025,'NM_177951','PPM1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103269840,103383680,'NM_015316','PPP1R13B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22834951,22841897,'NR_026862','PPP1R3E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',34624428,34661270,'NM_017917','PPP2R3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',101345892,101448715,'NM_178587','PPP2R5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',62911107,63079832,'NM_006246','PPP2R5E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93710401,93815825,'NM_058237','PPP4R4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93254396,93324519,'NM_178013','PRIMA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',60858267,61087451,'NM_006255','PRKCH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',29115437,29466650,'NM_002742','PRKD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22459572,22468501,'NM_006109','PRMT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',89112312,89113573,'NR_024620','PRO1768'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74389488,74400290,'NM_001243007','PROX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',44623051,44654554,'NM_017922','PRPF39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',72672895,72760152,'NM_000021','PSEN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',57781275,57808480,'NM_152132','PSMA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',34831324,34856431,'NM_002791','PSMA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22581215,22583109,'NM_001099780','PSMB11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22564899,22574194,'NM_001144932','PSMB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',89792646,89808719,'NM_002802','PSMC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',52243645,52264466,'NM_002806','PSMC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23675217,23678016,'NM_176783','PSME1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23682413,23685695,'NM_002818','PSME2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',51804180,51813192,'NM_000953','PTGDR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',51850765,51865072,'NM_000956','PTGER2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73388299,73421921,'NM_001146155','PTGR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',88001874,88090876,'NM_007039','PTPN21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',50441684,50480998,'NM_001163940','PYGL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64482284,64508628,'NM_198686','RAB15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20997018,21014672,'NM_001163380','RAB2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23804583,23810643,'NM_182836','RABGGTA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',67356248,68034351,'NM_002877','RAD51B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',35077308,35348183,'NM_014990','RALGAPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22439693,22458236,'NM_018107','RBM23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',72594973,72657829,'NM_021239','RBM25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',102128748,102266666,'NM_015156','RCOR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',67213270,67232263,'NM_016026','RDH11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',67238355,67270921,'NM_152443','RDH12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23711073,23719303,'NM_005132','REC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22422271,22426729,'NM_173527','REM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',71469538,72099215,'NM_001204422','RGS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',62740897,62828312,'NM_020663','RHOJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92049877,92225087,'NM_024832','RIN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23875066,23879082,'NM_006871','RIPK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20339354,20340876,'NM_198235','RNASE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20048470,20049121,'NM_001012975','RNASE10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20120891,20128257,'NM_145250','RNASE11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20128078,20128822,'NM_001024822','RNASE12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20570818,20572784,'NM_001012264','RNASE13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20493469,20494434,'NM_002934','RNASE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20429401,20430347,'NM_002935','RNASE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20226771,20238598,'NM_194431','RNASE4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20319049,20320466,'NM_005615','RNASE6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20580224,20582232,'NM_032572','RNASE7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20595891,20596356,'NM_138331','RNASE8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20094091,20098930,'NM_001110357','RNASE9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23686498,23699710,'NM_017999','RNF31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20825975,20889300,'NM_020366','RPGRIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',46189969,46190778,'NM_080746','RPL10L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',55302715,55304188,'NR_004844','RPL13AP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49155156,49157099,'NM_001001','RPL36AL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19881069,19881410,'NR_002312','RPPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49120039,49122844,'NM_001032','RPS29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',90430071,90596746,'NM_182398','RPS6KA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74440409,74458898,'NM_031464','RPS6KL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100416744,100420937,'NM_001134888','RTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',59132446,59167285,'NM_206852','RTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',21059071,21075177,'NM_005407','SALL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76913514,76927340,'NM_001010860','SAMD15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54104079,54329783,'NM_001161576','SAMD4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',50170109,50204773,'NM_021818','SAV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95069444,95069719,'NR_003002','SCARNA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',30161271,30274769,'NM_182835','SCFD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23978811,23981847,'NM_020195','SDR39U1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',38570873,38642188,'NM_006364','SEC23A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',81008991,81069958,'NM_005065','SEL1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93912836,93924906,'NM_000295','SERPINA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93819402,93829349,'NM_001100607','SERPINA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93978553,93988875,'NM_001080451','SERPINA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',94023372,94053934,'NM_173850','SERPINA12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',94176814,94183084,'NR_015340','SERPINA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',94148466,94160143,'NM_001085','SERPINA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',94097535,94105996,'NM_006215','SERPINA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',94117483,94129210,'NM_000624','SERPINA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93840337,93859441,'NM_001756','SERPINA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',93998810,94012423,'NM_001042518','SERPINA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',98933835,99016979,'NM_032233','SETD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',36012243,36052741,'NM_001101341','SFTA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',63220687,63264509,'NM_030791','SGPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',71065794,71275873,'NM_015556','SIPA1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104290514,104297041,'NM_006427','SIVA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',60181169,60185908,'NM_005982','SIX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',60246008,60260605,'NM_017420','SIX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',60045690,60048278,'NM_007374','SIX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69312304,69333759,'NM_003049','SLC10A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22885366,22891319,'NM_020372','SLC22A17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',91858677,92037578,'NM_153648','SLC24A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',36216876,36711616,'NM_001171170','SLC25A21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99827205,99842613,'NM_001039355','SLC25A29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99859431,99866468,'NM_207117','SLC25A47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',57100392,57402345,'NM_001206920','SLC35F4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',60517717,60620204,'NR_033344','SLC38A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20537253,20539874,'NR_033419','SLC39A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',68935159,68998860,'NM_018375','SLC39A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22312271,22358860,'NM_001126106','SLC7A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',22664343,22693450,'NM_182728','SLC7A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69580686,69725540,'NM_033262','SLC8A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',77244177,77253696,'NM_031210','SLIRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',90993708,91046397,'NM_032560','SMEK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69415866,69568836,'NM_001034852','SMOC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',61298827,61332899,'NM_003082','SNAPC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95069001,95070962,'NR_001459','SNHG10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',90662522,90662649,'NR_003709','SNORA11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',102873938,102874064,'NR_002964','SNORA28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',80738791,80738931,'NR_003021','SNORA79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100434009,100434086,'NR_003080','SNORD112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100460910,100460980,'NR_003229','SNORD113-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100463431,100463502,'NR_003230','SNORD113-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100466008,100466079,'NR_003231','SNORD113-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100472580,100472654,'NR_003232','SNORD113-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100474276,100474353,'NR_003233','SNORD113-5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100475645,100475719,'NR_003234','SNORD113-6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100477215,100477291,'NR_003235','SNORD113-7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100479540,100479613,'NR_003236','SNORD113-8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100481738,100481809,'NR_003237','SNORD113-9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100485922,100485993,'NR_003193','SNORD114-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100503141,100503212,'NR_003203','SNORD114-10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100504200,100504274,'NR_003204','SNORD114-11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100505037,100505111,'NR_003205','SNORD114-12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100505968,100506041,'NR_003206','SNORD114-13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100508192,100508266,'NR_003207','SNORD114-14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100508759,100508830,'NR_003208','SNORD114-15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100509684,100509753,'NR_003209','SNORD114-16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100510895,100510969,'NR_003210','SNORD114-17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100511914,100511985,'NR_003211','SNORD114-18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100512566,100512640,'NR_003212','SNORD114-19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100487945,100488022,'NR_003194','SNORD114-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100517093,100517164,'NR_003213','SNORD114-20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100518064,100518135,'NR_003214','SNORD114-21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100519015,100519086,'NR_003215','SNORD114-22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100519965,100520036,'NR_003216','SNORD114-23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100520866,100520937,'NR_003217','SNORD114-24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100522146,100522217,'NR_003218','SNORD114-25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100523135,100523206,'NR_003219','SNORD114-26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100524250,100524319,'NR_003220','SNORD114-27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100525219,100525290,'NR_003221','SNORD114-28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100526180,100526249,'NR_003222','SNORD114-29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100489438,100489512,'NR_003195','SNORD114-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100528008,100528079,'NR_003223','SNORD114-30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100529325,100529399,'NR_003224','SNORD114-31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100490433,100490537,'NR_003196','SNORD114-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100491459,100491528,'NR_003197','SNORD114-5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100493255,100493326,'NR_003198','SNORD114-6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100499143,100499219,'NR_003199','SNORD114-7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100500870,100500941,'NR_003200','SNORD114-8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',100502118,100502189,'NR_003201','SNORD114-9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19864439,19864538,'NR_003693','SNORD126'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',44649827,44649926,'NR_003691','SNORD127'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',70934806,70934877,'NR_001276','SNORD56B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20935291,20935400,'NR_002916','SNORD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20930149,20930252,'NR_003029','SNORD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',77253696,77297250,'NM_012245','SNW1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',34100368,34169066,'NM_021249','SNX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54563593,54585959,'NM_080867','SOCS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',49653595,49767849,'NM_006939','SOS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',87921740,87974557,'NM_018418','SPATA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64302869,64359619,'NM_000347','SPTB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',77042092,77152863,'NM_004863','SPTLC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',33971894,34001219,'NM_138288','SPTSSA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',34521854,34568524,'NM_003136','SRP54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69303586,69308475,'NM_006925','SRSF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',37746954,37752019,'NM_001049','SSTR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',80806661,80934680,'NM_033104','STON2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',30432755,30565358,'NM_014574','STRN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',24351143,24588935,'NM_014178','STXBP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',52266632,52311455,'NM_145251','STYX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20889470,20922265,'NM_007192','SUPT16H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73942348,73962558,'NM_001105579','SYNDIG1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',63750611,63762922,'NM_182913','SYNE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69902965,69953560,'NM_018373','SYNJ2BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',69861550,69953560,'NM_001202547','SYNJ2BP-COX16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',61532293,61638180,'NM_031914','SYT16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54950682,54977016,'NM_199047','TBPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',91316019,91372602,'NM_152332','TC2N'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95246056,95250286,'NM_001098725','TCL1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95222506,95228733,'NM_004918','TCL1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',95187267,95209542,'NR_028288','TCL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',89491998,89580861,'NM_018319','TDP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103464569,103588757,'NM_153046','TDRD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',101899052,102001761,'NM_001172631','TECPR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19903665,19951419,'NM_007110','TEP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',63881943,63884082,'NR_033777','TEX21P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104935964,104951241,'NM_001195082','TEX22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',75494194,75517845,'NM_003239','TGFB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23788159,23802256,'NM_000359','TGM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23095037,23098627,'NR_023314','THTPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',57945122,57963985,'NM_012460','TIMM9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23778690,23781720,'NM_001099274','TINF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23729083,23734722,'NM_001014842','TM9SF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74667923,74713102,'NM_006827','TMED10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76877866,76913149,'NM_213601','TMED8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',105063997,105067584,'NM_025268','TMEM121'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104131464,104142142,'NM_207379','TMEM179'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',67006735,67051774,'NM_182526','TMEM229B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',60813841,60818283,'NM_001017970','TMEM30B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19995851,19999477,'NM_144568','TMEM55B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76717854,76795591,'NM_020431','TMEM63C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',50776635,50794122,'NM_030755','TMX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',102662416,102673529,'NM_006291','TNFAIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',57932396,57945172,'NM_207377','TOMM20L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',21015174,21037159,'NM_014828','TOX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20568184,20570172,'NM_173846','TPPP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',102313568,102447590,'NM_003300','TRAF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',38686765,38709385,'NM_177452','TRAPPC6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',50532534,50632172,'NM_052978','TRIM9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',91503995,91576156,'NM_004239','TRIP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',60507919,60517535,'NM_020810','TRMT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103065261,103073163,'NM_152307','TRMT61A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',80491621,80682399,'NM_000369','TSHR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23744765,23747294,'NM_001184739','TSSK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',19827140,19843993,'NM_138376','TTC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',90076684,90352514,'NM_001010854','TTC7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',88360730,88414088,'NM_198309','TTC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',70178256,70211830,'NM_015351','TTC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',75197303,75491178,'NM_015072','TTLL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',51967057,52089051,'NM_001160047','TXNDC16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92743153,92765314,'NM_175748','UBR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',92869317,93243442,'NM_020818','UNC79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76297987,76319116,'NM_014909','VASH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',96333436,96417704,'NM_003384','VRK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73884918,73896464,'NM_018228','VRTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73775927,73799194,'NM_182894','VSX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',67187618,67211355,'NM_006370','VTI1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99869877,99911680,'NM_213646','WARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',54475405,54563569,'NM_007086','WDHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',101675941,101751094,'NM_001242415','WDR20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99912585,100066393,'NM_024515','WDR25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',63133509,63178344,'NM_080666','WDR89'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103233706,103251576,'NM_005432','XRCC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',74299821,74373766,'NM_019589','YLPM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',99774854,99814557,'NM_003403','YY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64041044,64070161,'NM_014950','ZBTB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',64023307,64040307,'NM_006977','ZBTB25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',104337977,104342093,'NM_001137601','ZBTB42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',88099005,88149606,'NM_207660','ZC3H14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',76667365,76677887,'NM_174976','ZDHHC22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',23059903,23090698,'NM_033400','ZFHX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',68324124,68330384,'NM_001244698','ZFP36L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',72505911,72523417,'NM_178441','ZFYVE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',103251833,103269758,'NM_024071','ZFYVE21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',67282989,67353059,'NM_015346','ZFYVE26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',20628044,20642703,'NM_001102454','ZNF219'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',73423070,73468744,'NM_021188','ZNF410'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr14',101855848,101878797,'NM_018335','ZNF839'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',65280420,65334128,'NM_024666','AAGAB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87432384,87546595,'NM_007011','ABHD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87147677,87219589,'NM_013227','ACAN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76250241,76314104,'NM_015162','ACSBG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32867588,32875219,'NM_005159','ACTC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41410163,41433388,'NM_001159280','ADAL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',56675801,56829469,'NM_001110','ADAM10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',98329165,98699706,'NM_139057','ADAMTS17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76838599,76890828,'NM_014272','ADAMTS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82113841,82499597,'NM_207517','ADAMTSL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70830760,70863179,'NR_023319','ADPGK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',86965530,86976516,'NM_022767','AEN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',84486245,85373287,'NM_152336','AGBL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76586960,76616770,'NM_001083612','AGPHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',80551132,80585378,'NR_026811','AGSK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',84021271,84093590,'NM_144767','AKAP13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',56032913,56093587,'NM_170697','ALDH1A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',99237531,99274353,'NM_000693','ALDH1A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',83160914,83217717,'NM_020778','ALPK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62991153,63038094,'NM_182703','ANKDD1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',77362200,77377636,'NM_001146341','ANKRD34C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38360936,38362079,'NM_001190479','ANKRD63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',66857928,66900315,'NM_006305','ANP32A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',66883213,66886494,'NR_026808','ANP32A-IT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',33316818,33317556,'NR_003144','ANP32AP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88129129,88159076,'NM_001150','ANPEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',58426641,58477477,'NM_001136015','ANXA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81125087,81175689,'NM_004644','AP3B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88174834,88238621,'NM_005829','AP3S2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',48988237,49085389,'NM_007347','AP4E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',27001131,27197808,'NM_001130414','APBA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',61356801,61388378,'NM_001145646','APH1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',56217699,56265402,'NM_020980','AQP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32935843,33049287,'NM_014691','AQR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',30694982,30715674,'NM_199357','ARHGAP11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',28706170,28718305,'NM_001039841','ARHGAP11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72620600,72677525,'NM_006465','ARID3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70553720,70665950,'NM_005744','ARIH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',78483746,78677332,'NM_014862','ARNT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',50626723,50648505,'NM_006628','ARPP19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',96304936,96318072,'NM_183376','ARRDC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',98960277,99009427,'NM_198243','ASB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',91139717,91141342,'NR_033769','ASB9P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23474952,23659442,'NM_024490','ATP10A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',47937726,48198711,'NM_024837','ATP8B4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',33450461,33625696,'NM_080650','ATPBD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',31945719,32118595,'NM_020371','AVEN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',42790976,42797649,'NM_004048','B2M'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38520702,38547733,'NM_014952','BAHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70765578,70817870,'NM_033028','BBS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',78040286,78050698,'NM_001114735','BCL2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',50189113,50192264,'NM_020396','BCL2L10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',89061582,89159690,'NM_000057','BLM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38167382,38185931,'NM_033503','BMF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81715658,81744472,'NM_001717','BNC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',57742353,57768934,'NM_004330','BNIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81476184,81527110,'NM_025238','BTBD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38240501,38300629,'NM_001211','BUB1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72979380,72986515,'NM_020447','C15orf17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22471633,22479686,'NM_018958','C15orf2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38462213,38473781,'NM_001142761','C15orf23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32163515,32181345,'NM_020154','C15orf24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',79213698,79228571,'NM_173528','C15orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',74139353,74284359,'NM_152335','C15orf27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32220166,32289589,'NM_024713','C15orf29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',90815910,90845351,'NM_153040','C15orf32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',47407883,47700410,'NM_152647','C15orf33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70455507,70458183,'NR_027262','C15orf34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',78002167,78004251,'NR_028330','C15orf37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88244835,88257226,'NM_182616','C15orf38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88174834,88257226,'NM_001199058','C15orf38-AP3S2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73281273,73291563,'NM_015492','C15orf39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81464148,81471397,'NR_027650','C15orf40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',34720097,34889741,'NM_032499','C15orf41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87919821,87972257,'NM_152259','C15orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43036194,43058713,'NM_152448','C15orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63658148,63690527,'NR_045105','C15orf44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43510054,43512939,'NM_197955','C15orf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',75303304,75304801,'NR_026813','C15orf5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',67914626,67922360,'NR_026764','C15orf50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38410944,38420460,'NM_207380','C15orf52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',36776090,36779531,'NM_207444','C15orf53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',37330176,37334340,'NM_207445','C15orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32425357,32437223,'NM_175741','C15orf55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38330159,38332402,'NM_001039905','C15orf56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38632589,38644544,'NM_052849','C15orf57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88578490,88586316,'NM_001013657','C15orf58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',71819193,71830869,'NM_001039614','C15orf59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',71522551,71639406,'NM_001042367','C15orf60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',65600575,65606695,'NM_001143936','C15orf61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38849450,38851939,'NM_001130448','C15orf62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41879910,41882061,'NM_001199885','C15orf63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',60146467,60150408,'NM_207322','C2CD4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',60243028,60244774,'NM_001007595','C2CD4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',61402782,61461128,'NM_001218','CA12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',66270096,66285502,'NM_001031733','CALML4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40484268,40491807,'NM_173090','CAPN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',42368200,42495251,'NM_177974','CASC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38673738,38742173,'NM_144508','CASC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41718925,41728331,'NM_172097','CATSPER2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41815433,41825788,'NR_002318','CATSPER2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72315719,72415535,'NM_025055','CCDC33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',57184575,57204536,'NM_004701','CCNB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41265429,41275521,'NM_037370','CCNDBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',53434712,53488000,'NM_020739','CCPG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',71763674,71793912,'NM_025240','CD276'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40803051,40816709,'NM_138477','CDAN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70364121,70399341,'NM_001172684','CELF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',46817426,46890635,'NM_014985','CEP152'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',98758122,98902448,'NM_178842','CERS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',55455996,55630213,'NM_032866','CGNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39032927,39036009,'NM_024111','CHAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',91244554,91372241,'NM_001271','CHD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39310728,39361375,'NM_007236','CHP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',28440734,28473156,'NM_148911','CHRFAM7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32048380,32144579,'NM_012125','CHRM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76674701,76700692,'NM_000743','CHRNA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76644916,76674666,'NM_000745','CHRNA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',30109982,30249676,'NM_000746','CHRNA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76703690,76720642,'NM_000750','CHRNB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38550451,38552649,'NM_130468','CHST14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',99533450,99609660,'NM_014918','CHSY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88574480,88578283,'NM_006384','CIB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76184045,76210933,'NM_006383','CIB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63275389,63290893,'NM_003613','CILP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41772375,41778712,'NM_001015001','CKMT1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41672543,41678896,'NM_020990','CKMT1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72694387,72709595,'NM_001130028','CLK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',66286383,66309134,'NM_017882','CLN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63229836,63264616,'NM_006660','CLPX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73415426,73419667,'NM_017828','COMMD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',47204762,47235146,'NM_001143887','COPS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',66658361,66807198,'NM_006091','CORO2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72999669,73017548,'NM_004255','COX5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81009005,81113783,'NM_030594','CPEB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72906003,72911189,'NM_001030005','CPLX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76419720,76427627,'NM_004378','CRABP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88874201,88989581,'NM_001042574','CRTC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72861477,72882592,'NM_001127190','CSK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',34878592,34897999,'NR_027320','CSNK1A1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62244768,62435495,'NM_022048','CSNK1G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73753717,73792244,'NM_001897','CSPG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',69189636,69194893,'NM_001102658','CT62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',42506870,42606721,'NM_016396','CTDSPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',77001146,77024475,'NM_004390','CTSH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',46271158,46283243,'NM_001145668','CTXN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',19267797,19270255,'NR_024387','CXADRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20444124,20555044,'NM_014608','CYFIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72417155,72447134,'NM_000781','CYP11A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',49287545,49418087,'NM_031226','CYP19A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72798935,72804930,'NM_000499','CYP1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72828236,72835994,'NM_000761','CYP1A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',61986287,62125574,'NM_014326','DAPK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',100334283,100336819,'NR_034090','DDX11L9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63740010,63871685,'NM_005848','DENND4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',86856717,86890916,'NR_026645','DET1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64372686,64413290,'NM_133375','DIS3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38437725,38450548,'NM_033510','DISP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',28275530,28294035,'NR_026771','DKFZP434L187'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39008822,39018550,'NM_019074','DLL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',49527212,49702259,'NM_015263','DMXL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76343541,76361593,'NM_018602','DNAJA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38847358,38886968,'NM_018163','DNAJC17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73807065,73872079,'NR_024595','DNM1P35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82626302,82630740,'NR_033787','DNM1P41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',98147883,98164655,'NR_003260','DNM1P46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63525050,63596662,'NM_197960','DPP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',47700517,47724625,'NM_020234','DTWD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43209483,43245066,'NM_175940','DUOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43172143,43193651,'NM_014080','DUOX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43196977,43209349,'NM_144565','DUOXA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43193814,43197593,'NM_207581','DUOXA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',46410912,46422862,'NM_001025249','DUT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',53509797,53587724,'NM_130810','DYX1C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',53434712,53578074,'NR_037923','DYX1C1-CCPG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72709951,72775439,'NM_001142444','EDC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',80209615,80342159,'NM_024580','EFTUD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39978930,40052047,'NM_139265','EHD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',46957581,46959672,'NM_014335','EID1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38013638,38115089,'NM_001013703','EIF2AK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',42616557,42642293,'NM_003758','EIF3J'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41852089,41856794,'NM_025165','ELL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41276717,41300615,'NM_000119','EPB42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',74295683,74390865,'NM_001127716','ETFA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39262222,39310187,'NM_152596','EXD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',78232287,78265979,'NM_000137','FAH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81445998,81450427,'NM_031452','FAM103A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',78774706,78835017,'NM_021214','FAM108C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',100312610,100314081,'NR_026819','FAM138E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',80342206,80364322,'NM_001008226','FAM154B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',96797913,96875134,'NM_182562','FAM169B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',90961682,91000035,'NM_207446','FAM174B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',27199746,27650219,'NM_015307','FAM189A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',56850684,56937026,'NM_001040453','FAM63B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',28183041,28211229,'NR_026858','FAM7A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',28183041,28211229,'NR_027470','FAM7A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',28183226,28211240,'NR_026859','FAM7A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',57517663,57603043,'NM_152450','FAM81A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38815377,38834750,'NM_018145','FAM82A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62151813,62173260,'NM_032231','FAM96A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',36533619,36561121,'NM_001042429','FAM98B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',28983367,29022602,'NM_014967','FAN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87588197,87661366,'NM_018193','FANCI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',46487794,46725277,'NM_000138','FBN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',61676604,61681673,'NM_203373','FBXL22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73983254,74010263,'NM_012170','FBXO22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',74012078,74012526,'NR_003136','FBXO22-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',66357194,66370694,'NM_015322','FEM1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',89228691,89240010,'NM_002005','FES'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',47502666,47566815,'NM_002009','FGF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',48428424,48434368,'NR_026891','FLJ10038'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',53488014,53498202,'NM_001198784','FLJ27352'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',98702184,98707961,'NR_028140','FLJ42289'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',30845038,31147377,'NM_001103184','FMN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',58083712,58085434,'NM_012182','FOXB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41953021,42274721,'NM_032892','FRMD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81225077,81271860,'NM_001007122','FSD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',37679523,37862331,'NM_152597','FSIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',89212888,89227691,'NM_002569','FURIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88690766,88693683,'NR_028287','GABARAPL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',48356680,48434897,'NM_005254','GABPB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',24663365,24777103,'NM_001165037','GABRA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',24339786,24570028,'NM_021912','GABRB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',24799174,25451968,'NM_033223','GABRG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',47249713,47409294,'NM_002044','GALK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40353657,40433156,'NM_198141','GANC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43440613,43458272,'NM_001482','GATM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38843576,38847203,'NM_005258','GCHFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',57691273,57699502,'NM_004751','GCNT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',55671393,55764854,'NM_001018100','GCOM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32831970,32833981,'NM_020660','GJD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',67240026,67351598,'NM_015554','GLCE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',49421004,49487501,'NM_181789','GLDN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',50200414,50259454,'NM_006578','GNB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72149250,72161944,'NM_001038640','GOLGA6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70734091,70746791,'NM_018652','GOLGA6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73337951,73352849,'NM_001164404','GOLGA6C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73362234,73375201,'NM_001145224','GOLGA6D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20287609,20297366,'NM_001001413','GOLGA6L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',80420177,80428761,'NM_001164465','GOLGA6L10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82848741,82861082,'NR_003246','GOLGA6L5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',18997107,19007128,'NM_001145004','GOLGA6L6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',80509239,80518641,'NM_198181','GOLGA6L9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32458561,32469293,'NM_181077','GOLGA8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32604775,32663063,'NR_027410','GOLGA8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',19027687,19041040,'NR_027411','GOLGA8C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20253648,20267092,'NR_027407','GOLGA8DP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20986510,20999864,'NR_033350','GOLGA8E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',26564556,26577184,'NR_033351','GOLGA8F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',26297378,26310766,'NR_033353','GOLGA8G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20806682,20814184,'NR_024074','GOLGA8IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',100199844,100208050,'NM_001195021','GPCRLTM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',37880222,38000385,'NM_007223','GPR176'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70239200,70277190,'NM_001012642','GRAMD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',30797496,30814162,'NM_001191323','GREM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',55786192,55797045,'NM_015532','GRINL1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',57717552,57737029,'NM_004492','GTF2A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87221522,87239774,'NM_178232','HAPLN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40628302,40649482,'NM_001130447','HAUS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',71399252,71448658,'NM_005477','HCN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',48321437,48345454,'NM_002112','HDC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',89275158,89276778,'NM_198527','HDDC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81597819,81667325,'NM_016073','HDGFRP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',61687869,61913200,'NM_003922','HERC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',26029782,26240890,'NM_004667','HERC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20833705,20929700,'NR_002824','HERC2P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',18873663,18971447,'NR_036432','HERC2P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20942162,20945384,'NR_036470','HERC2P7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',26698628,26729451,'NR_036443','HERC2P9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70422831,70455574,'NM_000520','HEXA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70755175,70765543,'NR_002780','HIGD2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',75500297,75565000,'NM_018200','HMG20A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43590625,43636220,'NR_022014','HMGN2P46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81314782,81412480,'NM_004839','HOMER2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',56770593,56772616,'NR_002927','HSP90AB4P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88428215,88446712,'NM_002168','IDH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76228773,76249939,'NM_005530','IDH3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63406517,63457431,'NM_004884','IGDCC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63460877,63502463,'NM_020962','IGDCC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',97010283,97325282,'NM_000875','IGF1R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',79376308,79392159,'NM_004513','IL16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73718480,73719719,'NM_018285','IMP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39058370,39195632,'NM_017553','INO80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22912784,22918716,'NR_023915','IPW'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',65334191,65386615,'NM_022784','IQCH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88732476,88846479,'NM_003870','IQGAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76517572,76580853,'NM_004136','IREB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',86983042,86999883,'NM_002201','ISG20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',74416201,74421871,'NM_145805','ISL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72253139,72256265,'NM_005545','ISLR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72209795,72216196,'NM_020851','ISLR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',66381095,66511546,'NM_001004439','ITGA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39573347,39583049,'NM_002220','ITPKA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38484977,38500804,'NM_001159508','IVD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39907574,39917077,'NM_001114632','JMJD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39907574,39927638,'NM_001198588','JMJD7-PLA2G4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63156206,63159329,'NM_001101362','KBTBD13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62444263,62460755,'NM_014736','KIAA0101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',77511912,77551697,'NM_015206','KIAA1024'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',78858766,79031054,'NM_018689','KIAA1199'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',50660809,50758112,'NM_019600','KIAA1370'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',67493680,67527818,'NM_004856','KIF23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87972204,87999686,'NM_198525','KIF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',29406374,29457394,'NM_015995','KLF13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',84103562,84139193,'NM_022480','KLHL25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',61201051,61209079,'NM_171846','LACTB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',68930821,68933552,'NM_197958','LARP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41407265,41410112,'NM_014793','LCMT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64627590,64644889,'NM_207338','LCTL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',57286333,57288001,'NM_033195','LDHAL6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',50017513,50051250,'NM_138792','LEO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',85921163,85923921,'NR_026869','LINC00052'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',67160243,67175217,'NR_026949','LINC00277'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',75692423,75711764,'NM_032808','LINGO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',98926950,98959968,'NM_001040616','LINS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',56511466,56648365,'NM_000236','LIPC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72892246,72905152,'NM_021819','LMAN1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23698599,23849360,'NR_040082','LOC100128714'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',48433662,48437795,'NR_024490','LOC100129387'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',61666961,61680079,'NR_034080','LOC100130855'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38118803,38136493,'NR_040061','LOC100131089'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',49023617,49026054,'NR_027642','LOC100132724'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',90912051,90916497,'NR_021493','LOC100144604'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70862228,70877593,'NR_040107','LOC100287559'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',71996861,72007180,'NR_040066','LOC100287616'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',30599340,30613234,'NR_036650','LOC100288615'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',28738211,28852501,'NR_038254','LOC100288637'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',100331044,100334331,'NR_028269','LOC100288778'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',26832429,26833579,'NR_036475','LOC100289656'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',47235786,47238114,'NR_036507','LOC100306975'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38773244,38774595,'NR_040058','LOC100505648'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82632245,82641989,'NM_001243531','LOC100505679'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',65483002,65601236,'NR_040051','LOC100506686'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82914883,82924416,'NR_038274','LOC100506874'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',91227529,91242981,'NR_037602','LOC100507217'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',33625687,33938494,'NR_038251','LOC100507466'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43458189,43459613,'NR_033252','LOC145663'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',54965659,54997989,'NR_015419','LOC145783'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',93777325,93852080,'NR_027132','LOC145820'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',67641112,67650833,'NR_026979','LOC145837'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',34943935,34966026,'NR_024264','LOC145845'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',75721160,75728636,'NM_001242772','LOC253044'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87722276,87742722,'NR_015411','LOC254559'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',55379854,55387259,'NR_024433','LOC283663'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20645771,20666695,'NR_040057','LOC283683'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',78342464,78421202,'NR_033833','LOC283688'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81191703,81205586,'NR_036446','LOC283693'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',29302262,29310342,'NM_001243538','LOC283710'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72205766,72208672,'NR_027073','LOC283731'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',86596964,86615301,'NR_038229','LOC283738'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87849164,87868269,'NR_027074','LOC283761'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81176276,81179799,'NR_034139','LOC338963'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',19410425,19463292,'NR_040094','LOC348120'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82658603,82689924,'NR_027001','LOC388152'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',93623522,93671333,'NR_034095','LOC400456'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72540658,72560686,'NR_038448','LOC440288'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',80927087,80943038,'NR_033579','LOC440297'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82651603,82669029,'NR_033738','LOC440300'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23912052,23922611,'NR_038851','LOC503519'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',42613994,42616390,'NR_034171','LOC645212'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',75993613,76006243,'NR_027024','LOC645752'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',18748010,18756825,'NR_038836','LOC646096'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',19185890,19194116,'NR_027053','LOC646214'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',26834020,26891023,'NR_037599','LOC646278'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76831433,76832789,'NR_036495','LOC646938'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82539942,82586357,'NR_036652','LOC648809'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',21151335,21164912,'NR_038843','LOC653061'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',28215281,28226687,'NR_033933','LOC653075'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',80741847,80773318,'NR_033936','LOC727849'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',19779395,19872452,'NR_015416','LOC727924'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41955315,41957661,'NR_003571','LOC728758'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39363492,39379087,'NR_026757','LOC729082'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72440945,72441435,'NR_045207','LOC729739'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',77271103,77363342,'NR_038997','LOC729911'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76072629,76073622,'NR_026998','LOC91450'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',96086849,96218663,'NR_024173','LOC91948'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72005841,72031531,'NM_005576','LOXL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32438380,32446687,'NM_153613','LPCAT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',97609174,97744021,'NM_144598','LRRC28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',68972072,69129490,'NM_001199018','LRRC49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40622011,40628294,'NM_153260','LRRC57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',99276982,99427840,'NM_024652','LRRK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39583131,39593377,'NM_001135685','LTK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',49802552,49830942,'NM_001143917','LYSMD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',98085134,98091149,'NM_152449','LYSMD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',21439788,21444086,'NM_019066','MAGEL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',89248423,89266819,'NM_006122','MAN2A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73435185,73447994,'NM_006715','MAN2C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41597097,41611110,'NM_002373','MAP1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64466264,64570936,'NM_002755','MAP2K1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',65622074,65886509,'NM_002757','MAP2K5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',50098702,50145754,'NM_002748','MAPK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39853923,39907345,'NM_001128608','MAPKBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',92642433,92828185,'NM_018349','MCTP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',97923655,98074152,'NM_005587','MEF2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63974687,64333129,'NM_032445','MEGF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',34970513,35180033,'NM_170677','MEIS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',79080349,79083400,'NM_022566','MESDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',79055149,79069260,'NM_015154','MESDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88094101,88095544,'NM_018670','MESP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88120592,88122986,'NM_001039958','MESP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',80121182,80125416,'NM_032246','MEX3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41884024,41904243,'NM_005926','MFAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87242917,87257667,'NM_001114614','MFGE8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39739901,39849433,'NM_001164273','MGA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',60716662,60724672,'NR_026897','MGC15885'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',86952341,86952432,'NR_031590','MIR1179'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32461561,32461643,'NR_036050','MIR1233-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32461561,32461643,'NR_036261','MIR1233-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',50356605,50356689,'NR_031670','MIR1266'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62841638,62841767,'NR_031674','MIR1272'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',84114730,84114813,'NR_031682','MIR1276'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41873148,41873249,'NR_031695','MIR1282'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',94677493,94677540,'NR_031715','MIR1469'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43512539,43512619,'NR_030599','MIR147B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',77289184,77289268,'NR_029705','MIR184'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',60903208,60903293,'NR_029709','MIR190'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',29144526,29144636,'NR_029624','MIR211'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',57250673,57250753,'NR_031750','MIR2116'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',91248632,91248709,'NR_036136','MIR3175'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',86956081,86956159,'NR_039867','MIR3529'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',33451748,33451857,'NR_037507','MIR3942'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39945984,39946041,'NR_036195','MIR4310'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64119624,64119724,'NR_036196','MIR4311'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',66881242,66881318,'NR_036197','MIR4312'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73841610,73841711,'NR_036198','MIR4313'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',21358301,21358371,'NR_039731','MIR4508'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20226511,20226605,'NR_039732','MIR4509-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20226511,20226605,'NR_039733','MIR4509-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20226511,20226605,'NR_039734','MIR4509-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',34006348,34006416,'NR_039735','MIR4510'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63798637,63798724,'NR_039736','MIR4511'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72868065,72868151,'NR_039738','MIR4513'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',79076812,79076869,'NR_039739','MIR4514'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81527090,81527171,'NR_039740','MIR4515'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',48439817,48439899,'NR_039862','MIR4712'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',49321678,49321753,'NR_039863','MIR4713'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',97145177,97145254,'NR_039864','MIR4714'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23644986,23645065,'NR_039865','MIR4715'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',47248558,47248642,'NR_039866','MIR4716'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',44584616,45037887,'NR_030330','MIR548A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',45037053,45037886,'NR_036097','MIR548U'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',78921373,78921469,'NR_030393','MIR549'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39771074,39771168,'NR_030356','MIR626'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40279059,40279156,'NR_030357','MIR627'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',53452429,53452524,'NR_030358','MIR628'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',68158764,68158861,'NR_030714','MIR629'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70666611,70666708,'NR_030359','MIR630'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73433004,73433079,'NR_030360','MIR631'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',86956059,86956169,'NR_029606','MIR7-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87712251,87712341,'NR_029692','MIR9-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',21361546,21364259,'NM_005664','MKRN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',54508220,54544627,'NM_018365','MNS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76952226,76977129,'NM_006791','MORF4L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72969462,72977618,'NM_002435','MPI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38611374,38612041,'NR_002208','MRPL42P5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',86803712,86811637,'NM_022163','MRPL46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',86811687,86822865,'NM_022839','MRPS11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63080902,63109030,'NM_139242','MTFMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',77922943,77976446,'NM_006441','MTHFS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',29018435,29071099,'NM_017762','MTMR10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',46218920,46257850,'NM_016132','MYEF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',57215854,57452363,'NM_004998','MYO1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',50386772,50608539,'NM_000259','MYO5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',50271806,50375287,'NM_018728','MYO5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',69905414,70197476,'NM_006901','MYO9A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',58499099,58558636,'NM_024611','NARG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',19134810,19221496,'NR_027992','NBEAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',21481646,21483543,'NM_002487','NDN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',27347644,27349312,'NM_138704','NDNL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39466842,39481934,'NM_016013','NDUFAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',53906413,53996621,'NM_198400','NEDD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73426383,73434641,'NM_024608','NEIL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',71131877,71384600,'NM_002499','NEO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',19386652,19399284,'NR_028506','NF1P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88609898,88616447,'NR_028052','NGRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20594719,20638284,'NM_001142275','NIPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20556124,20585868,'NM_030922','NIPA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82999363,83002806,'NM_021077','NMB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32421208,32422654,'NM_018648','NOP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',67094087,67136555,'NM_024505','NOX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',71639396,71712806,'NM_017455','NPTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',69889947,69897651,'NM_014249','NR2E3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',94675114,94684496,'NM_021005','NR2F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',74021382,74091840,'NM_138573','NRG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',86220991,86600966,'NM_002530','NTRK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39412183,39460540,'NM_018454','NUSAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62766825,62782515,'NM_002537','OAZ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',25673615,26018053,'NM_000275','OCA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73803373,73807082,'NM_175881','ODF3L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39388757,39412111,'NM_007280','OIP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',50836644,50869501,'NM_004498','ONECUT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',100175912,100176851,'NM_001001674','OR4F15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',100279867,100280785,'NM_001004195','OR4F4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',100163445,100164384,'NM_001005326','OR4F6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',19869841,19870925,'NM_001004719','OR4M2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',19914825,19915759,'NR_028067','OR4N3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',19883836,19885179,'NM_001005241','OR4N4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63124760,63132787,'NM_178859','OSTBETA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',29562620,29734834,'NM_130901','OTUD7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38296920,38356980,'NM_001128628','PAK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',67378347,67487030,'NM_017705','PAQR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22778233,22780030,'NR_022011','PAR-SN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22931881,22934293,'NR_022009','PAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23007931,23008273,'NR_022010','PAR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22781099,22784472,'NR_022008','PAR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63337489,63366071,'NM_017851','PARP16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70320575,70350682,'NM_020214','PARP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',42745221,42756378,'NM_001145112','PATL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',99741475,99847710,'NM_138322','PCSK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63196769,63213227,'NM_005707','PDCD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',83326208,83483376,'NM_173454','PDE8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41825881,41852096,'NM_005313','PDIA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',75187552,75499501,'NM_024776','PEAK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88027290,88034962,'NM_003847','PEX11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32181565,32183883,'NM_152595','PGBD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',97328981,97368547,'NM_001167902','PGPEP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38430525,38435926,'NM_001145643','PHGR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',66133625,66267458,'NM_016166','PIAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62894886,62904891,'NM_025049','PIF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',53398424,53435138,'NM_004855','PIGB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70278423,70309117,'NM_001206799','PKM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39918302,39927638,'NM_001114633','PLA2G4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40147172,40174044,'NM_178034','PLA2G4D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40061071,40130193,'NM_001206670','PLA2G4E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40220623,40236131,'NR_033151','PLA2G4F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38367389,38387466,'NM_004573','PLCB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43666708,43689201,'NM_012388','PLDN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62921134,62947254,'NM_001195059','PLEKHO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88008602,88023652,'NM_002666','PLIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72074066,72115788,'NM_033240','PML'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87660539,87679030,'NM_002693','POLG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',19305252,19336667,'NM_207355','POTEB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73102979,73130120,'NM_021823','PPCDC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62235066,62242407,'NM_000942','PPIB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41612951,41669743,'NM_001130859','PPIP5K1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38894934,38908199,'NM_001130143','PPP1R14D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',89310271,89338808,'NM_199414','PRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',53691030,53822469,'NM_173814','PRTG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76619801,76628618,'NM_002789','PSMA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',75074519,75116726,'NM_003978','PSTPIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63609879,63657746,'NM_016395','PTPLAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73546514,73658680,'NM_002833','PTPN9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22354396,22384019,'NR_026646','PWRN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',21961018,21966146,'NR_026647','PWRN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',53625512,53668342,'NM_015617','PYGO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63948850,63971383,'NM_001206836','RAB11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',53282456,53349884,'NM_004580','RAB27A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',61268780,61347026,'NM_016530','RAB8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38774618,38811648,'NM_001164270','RAD51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',77039343,77085057,'NM_153815','RASGRF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',36567593,36644299,'NM_005739','RASGRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63132727,63147441,'NM_016563','RASL12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62819147,62854823,'NM_194272','RBPMS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',89299109,89307359,'NM_033544','RCCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',75011016,75029656,'NM_002902','RCN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20047928,20072195,'NR_033735','REREP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',54170022,54322775,'NM_022841','RFX7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',91387639,91433447,'NM_020211','RGMA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87815643,87840803,'NM_016321','RHCG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38951703,38953779,'NM_133639','RHOV'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',87554101,87565926,'NM_000326','RLBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',57067156,57176545,'NM_017610','RNF111'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',58567774,58707021,'NM_002943','RORA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39596666,39623756,'NM_015540','RPAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64578706,64584247,'NM_000968','RPL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',67532212,67534938,'NM_213725','RPLP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73034495,73036828,'NM_017793','RPP25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',80608215,80611920,'NM_001021','RPS17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',80608215,80611920,'NM_001199057','RPS17L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',61232591,61236794,'NM_015920','RPS27L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38648828,38653953,'NM_152260','RPUSD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',53260803,53276523,'NM_016304','RSL24D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39496593,39563053,'NM_015138','RTF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',31390468,31945595,'NM_001036','RYR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72924249,72952723,'NM_005697','SCAMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73074928,73100889,'NM_001178112','SCAMP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82975694,82986698,'NR_003654','SCAND2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',74427581,74941340,'NM_001145923','SCAPER'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64426597,64426734,'NR_004388','SCARNA14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81221750,81221877,'NR_003011','SCARNA15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',49760841,49800515,'NM_013243','SCG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',30721161,30776590,'NM_001144757','SCG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',83013778,83060678,'NM_014300','SEC11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',47068127,47126052,'NM_014701','SECISBP2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',99628736,99635223,'NM_203472','SELS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88545565,88573896,'NM_198925','SEMA4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',45797977,45853712,'NM_020858','SEMA6D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72488682,72513352,'NM_003612','SEMA7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70197684,70220365,'NM_001172111','SENP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41871465,41875579,'NM_001199875','SERF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41871465,41882061,'NR_037673','SERF2-C15ORF63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41874456,41879547,'NM_001033517','SERINC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76171981,76183448,'NM_001101404','SH2D7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81907094,82078497,'NM_003027','SH3GL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',46903225,47042933,'NM_203349','SHC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43246703,43280665,'NM_138356','SHF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73448772,73531140,'NM_001145358','SIN3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',65904994,65913228,'NM_001031807','SKOR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',46285789,46383568,'NM_001184832','SLC12A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32309488,32398313,'NM_005135','SLC12A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63701322,63735652,'NM_004727','SLC24A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',46200460,46221881,'NM_205850','SLC24A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',48261684,48315881,'NM_001159629','SLC27A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',83228916,83240272,'NM_201651','SLC28A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43331719,43355424,'NM_004212','SLC28A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43561969,43602294,'NM_013309','SLC30A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',90197941,90510141,'NM_013272','SLCO3A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',56958535,57013144,'NM_024755','SLTM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',65217412,65274587,'NM_001145103','SMAD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64781727,64861391,'NR_027654','SMAD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40574795,40612551,'NM_130798','SNAP23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64569719,64577200,'NM_006049','SNAPC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22778233,22778308,'NR_001293','SNORD107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22783164,22783233,'NR_001292','SNORD108'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22838213,22838280,'NR_001295','SNORD109A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22838213,22838280,'NR_001289','SNORD109B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22966962,22967044,'NR_001291','SNORD115-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22974980,22975059,'NR_003302','SNORD115-10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22985653,22985735,'NR_003303','SNORD115-11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22974980,22975059,'NR_003304','SNORD115-12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22989560,22989642,'NR_003305','SNORD115-13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22991160,22991241,'NR_003306','SNORD115-14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22993815,22993896,'NR_003307','SNORD115-15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22995687,22995769,'NR_003308','SNORD115-16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22997562,22997644,'NR_003309','SNORD115-17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22997562,22997644,'NR_003310','SNORD115-18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22997562,22997644,'NR_003311','SNORD115-19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22968874,22968956,'NR_003294','SNORD115-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23002501,23002583,'NR_003312','SNORD115-20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23002501,23028708,'NR_003313','SNORD115-21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23006157,23006239,'NR_003314','SNORD115-22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23008035,23008117,'NR_003315','SNORD115-23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23009898,23009969,'NR_003495','SNORD115-24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23011780,23011862,'NR_003342','SNORD115-25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23014856,23014938,'NR_003343','SNORD115-26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23016742,23016818,'NR_003496','SNORD115-27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23018593,23018667,'NR_003497','SNORD115-28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22985653,22985735,'NR_003344','SNORD115-29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22971166,22971248,'NR_003295','SNORD115-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23021442,23021524,'NR_003345','SNORD115-30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23023348,23023430,'NR_003346','SNORD115-31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23025206,23025288,'NR_003347','SNORD115-32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23027077,23027159,'NR_003348','SNORD115-33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23028626,23028708,'NR_003349','SNORD115-34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23030486,23030568,'NR_003350','SNORD115-35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22985653,22985735,'NR_003351','SNORD115-36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23034225,23034307,'NR_003352','SNORD115-37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23036077,23036159,'NR_003353','SNORD115-38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23037985,23038067,'NR_003354','SNORD115-39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22973071,22973153,'NR_003296','SNORD115-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23039853,23039935,'NR_003355','SNORD115-40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23041717,23041799,'NR_003356','SNORD115-41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23043584,23043666,'NR_003357','SNORD115-42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22985653,22985735,'NR_003358','SNORD115-43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23047098,23047180,'NR_003359','SNORD115-44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23060766,23060819,'NR_003498','SNORD115-45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23064756,23064789,'NR_003499','SNORD115-47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23066022,23066098,'NR_003362','SNORD115-48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22974977,22975059,'NR_003297','SNORD115-5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22976736,22976818,'NR_003298','SNORD115-6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22978624,22978706,'NR_003299','SNORD115-7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22980545,22980627,'NR_003300','SNORD115-8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22974980,22975059,'NR_003301','SNORD115-9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22847715,22847812,'NR_003316','SNORD116-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22870352,22870456,'NR_003325','SNORD116-10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22872167,22872261,'NR_003326','SNORD116-11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22873289,22873383,'NR_003327','SNORD116-12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22875296,22875390,'NR_003328','SNORD116-13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22876380,22876474,'NR_003329','SNORD116-14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22877525,22877619,'NR_003330','SNORD116-15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22879006,22879100,'NR_003331','SNORD116-16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22879826,22879920,'NR_003332','SNORD116-17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22881623,22881717,'NR_003333','SNORD116-18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22879826,22879920,'NR_001290','SNORD116-19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22850448,22850545,'NR_003317','SNORD116-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22883900,22883994,'NR_003334','SNORD116-20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22885042,22885136,'NR_003335','SNORD116-21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22886161,22886255,'NR_003336','SNORD116-22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22888024,22888118,'NR_003337','SNORD116-23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22890275,22890369,'NR_003338','SNORD116-24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22893901,22893995,'NR_003339','SNORD116-25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22895737,22895835,'NR_003340','SNORD116-26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22897813,22897907,'NR_003341','SNORD116-27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22900880,22900973,'NR_003361','SNORD116-28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22902759,22902844,'NR_003360','SNORD116-29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22853098,22853195,'NR_003318','SNORD116-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22855776,22855874,'NR_003319','SNORD116-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22858571,22858668,'NR_003320','SNORD116-5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22861264,22861362,'NR_003321','SNORD116-6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22858571,22858668,'NR_003322','SNORD116-7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22866670,22866767,'NR_003323','SNORD116-8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22853098,22853195,'NR_003324','SNORD116-9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64582202,64582302,'NR_002440','SNORD16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64582636,64582706,'NR_002441','SNORD18A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64581413,64581483,'NR_002442','SNORD18B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64580643,64580710,'NR_002443','SNORD18C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22781339,22781406,'NR_001294','SNORD64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',99639237,99652983,'NM_003090','SNRPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22751227,22774822,'NM_003097','SNRPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73677478,73705501,'NM_005701','SNUPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',22751227,22774822,'NM_005678','SNURF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62175135,62223486,'NM_001242933','SNX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62230968,62236733,'NM_024798','SNX22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73728402,73738023,'NM_153271','SNX33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43102593,43154579,'NR_034039','SORD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43481810,43500908,'NM_024063','SPATA5L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',95127682,95129849,'NM_173499','SPATA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',67009892,67026204,'NM_145658','SPESP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',42642185,42743168,'NM_025137','SPG11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63042415,63068865,'NM_001127889','SPG21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38923537,38937145,'NM_003710','SPINT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',48787028,48845202,'NM_032802','SPPL2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',36332343,36436742,'NM_152594','SPRED1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39927635,39973567,'NM_016642','SPTBN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',43714547,43770771,'NM_021199','SQRDL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38115182,38118681,'NM_003134','SRP14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',77978236,78003151,'NR_037652','ST20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',77922943,78002503,'NM_001199760','ST20-MTHFS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',90738143,90812962,'NM_006011','ST8SIA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',79392061,79403579,'NM_181900','STARD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40655148,40800488,'NM_020759','STARD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72062612,72071688,'NM_004809','STOML1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72258860,72282273,'NM_022369','STRA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41679052,41698290,'NM_153700','STRC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',89444185,89645543,'NM_001167580','SV2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',97462808,97493323,'NM_015286','SYNM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',100011477,100082168,'NM_152334','TARSL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',71953020,71968608,'NM_153356','TBC1D21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76074381,76157049,'NM_015079','TBC1D2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',54998124,55368006,'NM_207037','TCF12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',54444935,54525364,'NM_198524','TEX9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41312084,41346347,'NM_201631','TGM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41355770,41381745,'NM_052955','TGM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',68960734,68971826,'NM_020147','THAP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',37660571,37676960,'NM_003246','THBS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',69220841,69862776,'NM_024817','THSD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64416061,64436108,'NM_017858','TIPIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',27779648,27901998,'NM_175610','TJP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',68127596,68177310,'NM_005078','TLE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',60726801,60923882,'NM_015059','TLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',99999571,100010117,'NM_078474','TM2D3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81567327,81597115,'NM_023003','TM6SF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',79411814,79453473,'NM_001080532','TMC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',36014748,36030915,'NM_152453','TMCO5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',77390545,77402244,'NM_007364','TMED3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',70477721,70487762,'NM_001080462','TMEM202'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41213013,41264633,'NM_024956','TMEM62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',32304536,32309644,'NM_016454','TMEM85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40290017,40353047,'NM_015497','TMEM87A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',49831049,49895850,'NM_014548','TMOD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',49909116,49991623,'NM_014547','TMOD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',49136090,49184765,'NM_207381','TNFAIP8L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41486703,41589999,'NM_005657','TP53BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',61121890,61145345,'NM_000366','TPM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',42815851,42847317,'NM_182985','TRIM69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62467055,62534555,'NM_016213','TRIP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',29080842,29181216,'NM_002420','TRPM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',48636643,48766304,'NM_017672','TRPM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',75123414,75150625,'NM_001168412','TSPAN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40823835,41000299,'NM_173500','TTBK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',97494050,97607338,'NM_022905','TTC23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88593767,88603316,'NM_001029964','TTLL13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41450604,41485532,'NM_014444','TUBGCP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20384835,20425332,'NM_052903','TUBGCP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',39638511,39658828,'NM_006293','TYRO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',74338684,74339548,'NR_028510','TYRO3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',68733946,68842904,'NM_018003','UACA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',63172394,63185750,'NM_001163692','UBAP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',73922676,73980443,'NM_173469','UBE2Q2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82871430,82915030,'NR_003661','UBE2Q2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',80434340,80494871,'NR_004847','UBE2Q2P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',80434340,80495259,'NR_024474','UBE2Q2P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',23133488,23235268,'NM_000462','UBE3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72525370,72540563,'NM_032907','UBL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41022389,41185578,'NM_174916','UBR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',72915511,72922605,'NM_001099436','ULK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',52092392,52708098,'NM_001080534','UNC13C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',89279218,89298327,'NM_018671','UNC45A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',61583862,61670716,'NM_006537','USP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',48580050,48626194,'NM_203494','USP50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',48503870,48580569,'NM_005154','USP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',59931881,60139956,'NM_020821','VPS13C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38973919,38983465,'NM_020857','VPS18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',89342777,89366837,'NM_018668','VPS33B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40238190,40287794,'NM_015289','VPS39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',100318538,100334331,'NR_003659','WASH3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',76362632,76378995,'NM_025234','WDR61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',51593229,51839151,'NM_182758','WDR72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82987014,82998525,'NM_032856','WDR73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41906403,41947909,'NM_001167941','WDR76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88035031,88087873,'NM_020212','WDR93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',81275026,81300667,'NM_001080435','WHAMM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',26781769,26802549,'NR_026589','WHAMMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',20739169,20759798,'NR_003521','WHAMMP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',78138964,78217790,'NM_019006','ZFAND6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',40492312,40537022,'NM_022473','ZFP106'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',38886565,38894059,'NM_001077268','ZFYVE19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',54709665,54813079,'NM_017661','ZNF280D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',83092821,83150667,'NM_014630','ZNF592'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',62578671,62765319,'NM_015042','ZNF609'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88345755,88426436,'NM_198526','ZNF710'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',33057833,33067789,'NM_014106','ZNF770'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',88696480,88705719,'NM_001004309','ZNF774'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',82945252,82951120,'NM_017894','ZSCAN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',41437661,41449550,'NM_152455','ZSCAN29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr15',64584484,64628876,'NM_017975','ZWILCH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68843797,68880913,'NM_001605','AARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',8714326,8785933,'NM_000663','ABAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2330923,2416701,'NR_003574','ABCA17P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2265879,2330748,'NM_001089','ABCA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',15950934,16144431,'NM_019898','ABCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',46758322,46826589,'NM_145186','ABCC11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',46674384,46738182,'NM_033226','ABCC12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',16222544,16224829,'NM_001079528','ABCC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',18490070,18517108,'NR_003569','ABCC6P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14823789,14826060,'NR_023387','ABCC6P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66248915,66252219,'NM_022914','ACD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87687717,87749672,'NR_023316','ACSF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20542059,20610079,'NM_052956','ACSM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20370359,20406492,'NM_001010845','ACSM2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20455583,20495196,'NM_001105069','ACSM2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20682812,20705139,'NM_202000','ACSM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20328356,20359782,'NM_017888','ACSM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82782223,82788273,'NM_139174','ADAD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',75873525,76026512,'NM_199355','ADAMTS18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',74189747,74214722,'NR_036460','ADAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',48879323,48909544,'NM_001114','ADCY7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3952650,4106187,'NM_001116','ADCY9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88566488,88594696,'NR_003228','AFG3L1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66073974,66075217,'NM_001138','AGRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31446703,31447625,'NM_016633','AHSP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',52082692,52094671,'NM_022476','AKTIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29983318,29989242,'NM_001127617','ALDOA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',5061810,5077381,'NM_019109','ALG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2510363,2519733,'NM_015944','AMDHD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54952864,55016945,'NM_001144','AMFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87861535,88084470,'NM_013275','ANKRD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',45060749,45160510,'NR_026556','ANKRD26P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4686511,4724164,'NM_133450','ANKS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21152516,21171251,'NM_145865','ANKS4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70320405,70400477,'NM_001128','AP1G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28413470,28417792,'NM_018690','APOBR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87403377,87405843,'NM_000485','APRT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',25135785,25147754,'NM_001169','AQP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',24838212,24934176,'NM_018054','ARHGAP17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',270606,273004,'NM_001176','ARHGDIG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55836538,55845046,'NM_012106','ARL2BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',18710491,18720358,'NM_015161','ARL6IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31377817,31385989,'NM_001105247','ARMC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29819647,29824878,'NM_181718','ASPHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',10430225,10484996,'NM_024997','ATF7IP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',79626958,79638452,'NM_015251','ATMIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28797309,28823331,'NM_004320','ATP2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82959633,83055294,'NM_014861','ATP2C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2503871,2510225,'NM_001694','ATP6V0C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66029417,66072590,'NM_004691','ATP6V0D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70437399,70448732,'NM_001137675','ATXN1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28741914,28756059,'NM_007245','ATXN2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',277440,342677,'NM_003502','AXIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65739505,65742403,'NM_033309','B3GNT9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1323606,1339443,'NM_001199097','BAIAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',86561124,86668425,'NM_001173543','BANP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55075759,55111509,'NM_031885','BBS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73820428,73857406,'NM_001170714','BCAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11821192,11830190,'NR_024050','BCAR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31027162,31031613,'NM_005881','BCKDK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30806616,30812900,'NM_004765','BCL7C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',79829796,79882248,'NM_017429','BCMO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65018316,65074246,'NM_001136106','BEAN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14634168,14670594,'NM_016561','BFAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29372414,29373786,'NM_001031827','BOLA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29372414,29373786,'NM_001039182','BOLA2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',48910429,48960346,'NM_001173984','BRD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',550422,555530,'NM_145270','C16orf11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',624429,626348,'NM_001040162','C16orf13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88622816,88623810,'NM_001214','C16orf3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1339241,1341874,'NM_001001410','C16orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',15435825,15589617,'NM_033201','C16orf45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',79644602,79668373,'NM_001100873','C16orf46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66254350,66258129,'NM_032140','C16orf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4500677,4528817,'NM_001199055','C16orf5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21926956,22003473,'NM_001164579','C16orf52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29735028,29741317,'NM_024516','C16orf53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29661286,29664841,'NM_175900','C16orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88251710,88265176,'NM_153025','C16orf55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56592777,56613028,'NM_024598','C16orf57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31408313,31427207,'NM_022744','C16orf58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2450115,2454965,'NM_025108','C16orf59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',79567199,79598003,'NM_020188','C16orf61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',19474237,19619986,'NM_020314','C16orf62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88301041,88314895,'NM_004913','C16orf7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65701415,65739943,'NM_025187','C16orf70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4724289,4739398,'NM_139170','C16orf71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',9093037,9121056,'NM_014117','C16orf72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1823984,1862180,'NM_001163560','C16orf73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',84298624,84342190,'NM_206967','C16orf74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',47965308,47990820,'NM_144602','C16orf78'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2199254,2201070,'NM_182563','C16orf79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56704997,56720797,'NM_013242','C16orf80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',26985719,26987988,'NM_001145545','C16orf82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66258217,66260162,'NM_001012984','C16orf86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',45393459,45422575,'NM_001001436','C16orf87'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',19625174,19636993,'NM_001012991','C16orf88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',5034123,5056147,'NM_001098514','C16orf89'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3483484,3485422,'NM_001080524','C16orf90'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1409944,1419346,'NM_001010878','C16orf91'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29942155,29943524,'NM_001109659','C16orf92'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30678858,30681066,'NM_001195620','C16orf93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',85893904,85908527,'NM_001195125','C16orf95'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4546491,4590319,'NM_001145011','C16orf96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1078226,1086245,'NM_207419','C1QTNF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',86479125,86527613,'NM_001739','CA5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65436341,65445550,'NM_001014435','CA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1143241,1211773,'NM_021098','CACNA1H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',24174374,24281238,'NM_006539','CACNG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',69950116,69981843,'NM_007088','CALB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54158084,54159093,'NM_032330','CAPNS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',8854302,8869749,'NM_001042476','CARHSP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2167184,2186466,'NM_020764','CASKIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87468763,87535109,'NM_175931','CBFA2T3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65620550,65692459,'NM_022845','CBFB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',47869329,47873243,'NM_004352','CBLN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28472749,28510612,'NM_138414','CCDC101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56103590,56127978,'NM_033212','CCDC102A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56841340,56875235,'NM_014157','CCDC113'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56286213,56322868,'NM_032269','CCDC135'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1424389,1434491,'NM_001143980','CCDC154'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3017868,3025543,'NM_001103175','CCDC64B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',712582,716474,'NM_001031737','CCDC78'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65346379,65393024,'NM_001136505','CCDC79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55996179,56007475,'NM_002987','CCL17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55950195,55957603,'NM_002990','CCL22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2419395,2448860,'NM_001761','CCNF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',19442679,19472229,'NM_001199022','CCP110'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28850760,28858169,'NM_001178098','CD19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30269587,30274183,'NM_006110','CD2BP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67328695,67426945,'NM_004360','CDH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',63538183,63713420,'NM_001797','CDH11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',81217899,81772131,'NM_001220492','CDH13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87765663,87789401,'NM_004933','CDH15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65499525,65510388,'NM_001204744','CDH16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67235651,67290458,'NM_001793','CDH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',64958025,64996190,'NM_001795','CDH5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',60243415,60628240,'NM_001796','CDH8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29777178,29782079,'NM_006319','CDIPT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88280576,88290273,'NM_052988','CDK10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',22264757,22293439,'NM_001802','CDR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87397686,87403167,'NM_030928','CDT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',79195176,79395676,'NM_152342','CDYL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2520036,2521410,'NM_001048212','CEMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88563683,88566741,'NM_145039','CENPBD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',79597603,79613988,'NM_018455','CENPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66419560,66438862,'NM_025082','CENPT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54394264,54424576,'NM_001025194','CES1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54352011,54366327,'NR_003276','CES1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54316337,54341624,'NR_033740','CES1P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65525847,65536495,'NM_198061','CES2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65558878,65566553,'NM_001185176','CES3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65591916,65601160,'NM_001190201','CES4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54437566,54466783,'NM_001143685','CES5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55553335,55575257,'NM_000078','CETP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73885108,74024888,'NM_006324','CFDP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',51646445,51918915,'NM_025134','CHD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88238344,88251630,'NM_002768','CHMP1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23673448,23677757,'NM_022097','CHP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70117654,70129994,'NM_001166395','CHST4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',74119928,74126569,'NM_024533','CHST5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',74064522,74086427,'NM_021615','CHST6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',778622,788075,'NM_022092','CHTF18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67709412,67723572,'NM_001040146','CHTF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56019587,56038870,'NM_020313','CIAPIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',10878555,10926341,'NM_000246','CIITA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67723999,67760438,'NM_032830','CIRH1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65143966,65157691,'NM_016326','CKLF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65143966,65170539,'NM_001204099','CKLF-CMTM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1434935,1465086,'NM_001287','CLCN7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3004713,3008189,'NM_021195','CLDN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3002457,3004507,'NM_020982','CLDN9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',10945845,11183547,'NM_015226','CLEC16A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68542126,68555390,'NM_001136214','CLEC18A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73000029,73012869,'NM_001011880','CLEC18B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68765428,68778299,'NM_173619','CLEC18C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',76613943,76623502,'NM_005752','CLEC3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28396100,28410904,'NM_000086','CLN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3490963,3526586,'NM_015041','CLUAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',80036275,80302868,'NM_198390','CMIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65157794,65170539,'NM_181270','CMTM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65170851,65179678,'NM_144673','CMTM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65195435,65205296,'NR_037613','CMTM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65206153,65288111,'NM_181521','CMTM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56546080,56562521,'NM_001135639','CNGB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',57134732,57221251,'NM_206999','CNOT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',74868676,75150636,'NM_033401','CNTNAP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',69071972,69114958,'NM_001195139','COG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23307314,23372013,'NM_153603','COG7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67920024,67931027,'NM_032382','COG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',18986417,18998918,'NM_016138','COQ7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56038837,56052688,'NM_020312','COQ9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30102231,30107898,'NM_001193333','CORO1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4344543,4406963,'NM_024535','CORO7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4330252,4406963,'NM_001201479','CORO7-PAM16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',83156704,83209170,'NM_021149','COTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',84390673,84398108,'NM_001861','COX4I1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',84369731,84390649,'NM_006067','COX4NB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31346552,31347250,'NM_005205','COX6A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55683955,55739379,'NM_152727','CPNE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88169676,88191155,'NM_153636','CPNE7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',12661156,12805245,'NM_001099455','CPPED1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1604641,1667910,'NM_020825','CRAMP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3715056,3870122,'NM_004380','CREBBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',83411087,83500617,'NM_031476','CRISPLD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',53510278,53520580,'NR_034105','CRNDE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21177339,21221905,'NM_001888','CRYM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21219670,21237413,'NR_026675','CRYM-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31486588,31488346,'NR_027011','CSDAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56749312,56789283,'NM_001896','CSNK2A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66153810,66230589,'NM_001191022','CTCF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30815428,30822382,'NM_001142544','CTF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73810384,73816323,'NM_001906','CTRB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73795494,73798573,'NM_001025200','CTRB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66520973,66523279,'NM_001907','CTRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87300391,87309287,'NM_001012759','CTU2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55963914,55976457,'NM_002996','CX3CL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68015998,68057668,'NM_030579','CYB5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87237197,87244958,'NM_000101','CYBA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',49333461,49393347,'NM_001042355','CYLD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88598779,88613438,'NM_001042610','DBNDD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23560187,23569969,'NM_001199011','DCTN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30342519,30348874,'NM_024096','DCTPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20776896,20819062,'NM_173475','DCUN1D3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1554,4090,'NR_045117','DDX11L10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68938324,68964782,'NM_018332','DDX19A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68890572,68925232,'NM_007242','DDX19B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66612677,66615271,'NM_018380','DDX28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',391858,402488,'NM_020664','DECR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88542639,88553275,'NM_017702','DEF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',10930248,10943758,'NM_014015','DEXI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70600143,70616817,'NM_001361','DHODH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70685115,70704312,'NM_014003','DHX38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54784029,54785938,'NR_026889','DKFZP434H168'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82736365,82769025,'NM_178452','DNAAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20851976,21078263,'NM_017539','DNAH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',45546774,45565126,'NM_005880','DNAJA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4415806,4446776,'NM_001135110','DNAJA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3642940,3648097,'NM_005223','DNASE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2226468,2228713,'NM_001374','DNASE1L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29924335,29929902,'NM_003586','DOC2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56063370,56077886,'NM_018110','DOK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88207216,88232340,'NM_001128141','DPEP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66578793,66590865,'NM_022355','DPEP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66567066,66571953,'NM_001129758','DPEP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66614704,66670685,'NM_017803','DUS2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65312299,65343026,'NM_006141','DYNC1LI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',79132354,79142042,'NM_130897','DYNLRB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65783568,65790322,'NM_001950','E2F4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2213567,2225744,'NM_004424','E4F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23440834,23476197,'NR_003501','EARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2229873,2241603,'NM_001919','ECI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66464499,66475907,'NM_014329','EDC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',22125092,22207567,'NM_013302','EEF2K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28298403,28322666,'NM_003752','EIF3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28298400,28322663,'NM_001099661','EIF3CL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65790528,65795428,'NM_024712','ELMO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1763229,1766240,'NM_001010865','EME2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',10529779,10582040,'NM_001424','EMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',13921514,13953706,'NM_005236','ERCC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20715164,20725296,'NM_001142725','ERI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23609126,23632322,'NM_033266','ERN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66819950,66827637,'NM_024939','ESRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65775782,65781608,'NM_178516','EXOC3L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68841634,68843334,'NM_058219','EXOSC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73304356,73366230,'NM_024306','FA2H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1817225,1818909,'NM_031208','FAHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4598884,4604928,'NM_145253','FAM100A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',711158,712591,'NM_023933','FAM173A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',10768033,10820122,'NM_001079512','FAM18A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55743878,55777477,'NM_024946','FAM192A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',631849,638475,'NM_138418','FAM195A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29943248,29949687,'NM_031478','FAM57B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66120217,66138192,'NM_024519','FAM65A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',5074301,5087790,'NM_201400','FAM86A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',83689465,83703615,'NM_198491','FAM92B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65523458,65525821,'NM_016062','FAM96B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88331459,88410566,'NM_000135','FANCA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30583278,30589632,'NM_001105079','FBRS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',682500,695826,'NM_153350','FBXL16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30843396,30867605,'NM_001099784','FBXL19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30838140,30842091,'NR_024348','FBXL19-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65751391,65755578,'NM_018378','FBXL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',85920442,85983209,'NR_024568','FBXO31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65820792,65838926,'NM_013241','FHOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',27187026,27209290,'NR_037184','FLJ21408'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',34838423,34848496,'NR_033985','FLJ26245'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',85146426,85148406,'NR_026674','FLJ30679'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3253768,3257567,'NR_033904','FLJ39639'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2628983,2636131,'NR_024492','FLJ42627'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2901980,2941210,'NM_032296','FLYWCH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2873196,2889384,'NM_138439','FLYWCH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',15867077,15889948,'NM_144600','FOPNL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',85158357,85160038,'NM_005251','FOXC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',85101633,85105571,'NM_001451','FOXF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',85169615,85172805,'NM_005250','FOXL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',52295375,52705880,'NM_001080432','FTO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',69873703,69880816,'NM_001099642','FTSJD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',69045998,69071678,'NM_145059','FUK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31098931,31113693,'NM_001170634','FUS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',74157749,74169280,'NM_007285','GABARAPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87407642,87450875,'NM_000512','GALNS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',79906071,79971304,'NM_022041','GAN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88616508,88638853,'NR_023348','GAS8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',79673052,79687481,'NM_004483','GCSH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',19420515,19440951,'NM_016641','GDE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30023631,30032379,'NM_024307','GDPD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1974150,1977751,'NM_005262','GFER'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66265936,66310774,'NM_030819','GFOD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23382363,23429316,'NM_015044','GGA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',84268780,84280089,'NM_016095','GINS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56983798,56997549,'NM_022770','GINS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73038826,73198543,'NR_027265','GLG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4322225,4329599,'NM_032575','GLIS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4793204,4837304,'NM_032569','GLYR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54782751,54948857,'NM_020988','GNAO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',788041,790734,'NM_016541','GNG13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1341900,1353353,'NM_032520','GNPTG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',57298535,57325747,'NM_002080','GOT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20229311,20246336,'NM_001502','GP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56134101,56168601,'NM_153837','GPR114'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',19950543,19992601,'NM_001002911','GPR139'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56219919,56256445,'NM_001145771','GPR56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56259657,56280791,'NM_170776','GPR97'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',19777793,19803652,'NM_016235','GPRC5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',45475808,45522702,'NM_133443','GPT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',9754765,10184112,'NM_000833','GRIN2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',27706350,27982331,'NM_001109763','GSG1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11869485,11917326,'NM_001130006','GSPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',27379434,27468752,'NM_001520','GTF3C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1799104,1817196,'NM_005326','HAGH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',717266,719716,'NM_032304','HAGHL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67697629,67710120,'NM_138612','HAS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',166678,167520,'NM_000558','HBA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',162845,163709,'NM_000517','HBA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',155972,156767,'NM_001003938','HBM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',170332,171178,'NM_005331','HBQ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',142853,144504,'NM_005332','HBZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3012626,3014288,'NM_001002018','HCFC1R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',48657381,48696876,'NM_182922','HEATR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',32070109,32071375,'NR_002827','HERC2P4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55523248,55535294,'NM_014685','HERPUD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29911142,29914918,'NM_001197323','HIRIP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4485859,4500349,'NM_001127205','HMOX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1668278,1692074,'NM_144570','HN1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70646008,70652456,'NM_005143','HP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70654625,70668646,'NM_020995','HPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',22733360,22835160,'NM_006043','HS3ST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',25610847,26056510,'NM_006040','HS3ST4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1901465,1908232,'NM_001009606','HS3ST6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82399093,82404095,'NM_001537','HSBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66022536,66028955,'NM_000196','HSD11B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',80626358,80689640,'NM_002153','HSD17B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30904019,30907974,'NM_025193','HSD3B7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82713244,82736301,'NM_031463','HSDL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65754788,65761349,'NM_001040667','HSF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',71683748,71685173,'NR_027756','HTA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',69618513,69822093,'NM_017558','HYDIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1500428,1602110,'NM_014714','IFT140'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1780414,1784910,'NR_027389','IGFALS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21560105,21571488,'NM_005849','IGSF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87232501,87234383,'NM_013278','IL17C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',27346079,27370864,'NM_021798','IL21R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28418183,28425656,'NM_145659','IL27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3055313,3059669,'NM_004221','IL32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',69171298,69252086,'NM_001172771','IL34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',27232751,27283600,'NM_000418','IL4R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29915031,29924613,'NM_173618','INO80E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',19635278,19776360,'NM_153208','IQCK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',84490274,84513712,'NM_002163','IRF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',52874712,52877879,'NM_024336','IRX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',53522611,53525896,'NM_005853','IRX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',53915971,53922173,'NM_024335','IRX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70486946,70520407,'NM_014761','IST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',45746798,46052516,'NM_030790','ITFG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',224801,256120,'NM_032039','ITFG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31312133,31345327,'NM_005353','ITGAD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30391483,30442007,'NM_001114380','ITGAL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31178788,31251714,'NM_001145808','ITGAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31274009,31301819,'NM_000887','ITGAX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',19032754,19040453,'NR_028028','ITPRIPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',27122307,27140590,'NM_024773','JMJD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',671667,674440,'NM_001005920','JMJD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',86193999,86289262,'NM_020655','JPH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',74219122,74239086,'NM_005548','KARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31036485,31050215,'NM_182958','KAT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56327160,56348663,'NM_005886','KATNB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82812241,82830857,'NM_172347','KCNG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29825161,29845046,'NM_178863','KCTD13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65880893,65918162,'NM_001100915','KCTD19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2672495,2699032,'NM_018992','KCTD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',84204424,84267313,'NM_014615','KIAA0182'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',15595726,15644524,'NM_001184999','KIAA0430'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',83618910,83685329,'NM_014732','KIAA0513'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',27468968,27699193,'NM_015202','KIAA0556'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31619434,31626246,'NR_024034','KIAA0664L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65767005,65775384,'NM_001040715','KIAA0895L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',83067466,83095789,'NM_020947','KIAA1609'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',89374,104032,'NM_007317','KIF22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56349629,56393940,'NM_005550','KIFC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',86298918,86357099,'NM_001184854','KLHDC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',83239631,83253417,'NM_024731','KLHL36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2954217,2958382,'NM_024507','KREMEN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28903887,28909605,'NM_014387','LAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66531287,66535516,'NM_000229','LCAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',25030547,25097052,'NM_016309','LCMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73703258,73708171,'NM_153486','LDHD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',516847,517408,'NR_024121','LINC00235'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1868286,1874233,'NR_033914','LINC00254'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',33868552,33870004,'NR_038368','LINC00273'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87753128,87757584,'NR_024347','LINC00304'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',83874064,83879186,'NR_038859','LINC00311'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11549078,11588307,'NM_001136473','LITAF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',965761,971319,'NR_036442','LMF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2727077,2742602,'NR_027275','LOC100128788'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88305764,88312074,'NR_036480','LOC100128881'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',80256459,80258380,'NR_045112','LOC100129617'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88633669,88641534,'NR_027335','LOC100130015'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',34596958,34598341,'NR_034018','LOC100130700'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',69346463,69364655,'NR_034083','LOC100130894'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',22432344,22455342,'NM_001135865','LOC100132247'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',372241,382961,'NR_024453','LOC100134368'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21783121,21785557,'NR_024456','LOC100190986'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30032933,30033327,'NR_027081','LOC100271831'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21365504,21421103,'NR_027155','LOC100271836'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87915041,87919019,'NM_001242885','LOC100287036'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',50674477,50676522,'NR_038233','LOC100505619'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68907043,68938151,'NR_039997','LOC100506083'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',71978204,72012796,'NR_038234','LOC100506172'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',25059392,25067854,'NR_039998','LOC100506655'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2648390,2663441,'NR_040023','LOC100507321'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4235826,4243791,'NR_039999','LOC100507501'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',46947096,46954411,'NR_040677','LOC100507577'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',5023703,5032973,'NR_038913','LOC100507589'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1054082,1068732,'NR_027242','LOC146336'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',34569285,34572468,'NR_026980','LOC146481'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',84877537,84884496,'NR_038438','LOC146513'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54684399,54782507,'NR_027078','LOC283856'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',63875902,64167704,'NR_027755','LOC283867'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2979055,2984511,'NR_033861','LOC283875'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',27366491,27372215,'NR_037158','LOC283888'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',34455287,34483585,'NR_027080','LOC283914'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',72923804,72959654,'NR_026950','LOC283922'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29383789,29386400,'NR_002556','LOC388242'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',50617764,50665348,'NM_001242473','LOC388276'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',32208368,32208803,'NR_033866','LOC390705'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',83728256,83740550,'NR_033984','LOC400548'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',85065631,85099967,'NR_033925','LOC400550'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4778398,4786283,'NR_029453','LOC440335'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29446429,29485041,'NR_002473','LOC440354'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29782504,29786875,'NR_024370','LOC440356'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',24950562,24951599,'NR_038379','LOC554206'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30186414,30254196,'NR_002453','LOC595101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29368166,29368737,'NR_002454','LOC606724'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30141850,30164433,'NR_002555','LOC613037'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29383789,29386400,'NR_002557','LOC613038'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',22355829,22411042,'NR_027154','LOC641298'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',51143499,51198388,'NR_033920','LOC643714'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',51960774,51962542,'NM_001207030','LOC643802'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',58345545,58346596,'NR_028471','LOC644649'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2593385,2620496,'NR_015441','LOC652276'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',33113085,33115060,'NM_001205259','LOC653550'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',22464519,22495687,'NR_003676','LOC653786'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',83877415,83894503,'NR_038858','LOC727710'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',32172150,32174744,'NM_001243722','LOC729264'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68810984,68817437,'NR_033959','LOC729513'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',84922956,84936786,'NR_024406','LOC732275'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20725267,20768491,'NM_001199053','LOC81691'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',46835711,46944908,'NM_031490','LONP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54100413,54178083,'NM_017839','LPCAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65798542,65818402,'NM_001004055','LRRC29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65938758,65976610,'NM_001161575','LRRC36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',178974,219450,'NM_201412','LUC7L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20819057,20843834,'NM_020424','LYRM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',78185245,78192123,'NM_005360','MAF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',85983301,85995881,'NM_022818','MAP1LC3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30032926,30042131,'NM_002746','MAPK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1696221,1760319,'NM_015133','MAPK8IP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70217570,70233369,'NM_001017967','MARVELD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29725355,29730005,'NM_002383','MAZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82644869,82708018,'NM_003791','MBTPS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88511787,88514886,'NM_002386','MC1R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3232028,3246628,'NM_001198536','MEFV'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',705173,707481,'NM_024042','METRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',8623027,8647580,'NM_024109','METTL22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21518356,21576293,'NM_016025','METTL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87257281,87269415,'NR_024402','MGC23284'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3100461,3105600,'NR_024167','MGC3771'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4614825,4680976,'NM_001142289','MGRN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2080196,2080286,'NR_030646','MIR1225'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55449930,55450014,'NR_029680','MIR138-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68524484,68524584,'NR_029681','MIR140'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68157211,68157272,'NR_031719','MIR1538'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',84332727,84332807,'NR_031731','MIR1910'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14305324,14305407,'NR_030177','MIR193B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68621749,68621826,'NR_036054','MIR1972-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68621749,68621826,'NR_036265','MIR1972-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',533277,533367,'NR_036137','MIR3176'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1724986,1725068,'NR_036138','MIR3177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2521923,2522007,'NR_036139','MIR3178'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14902865,14902949,'NR_036140','MIR3179-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14902865,14902949,'NR_036143','MIR3179-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14902865,14902949,'NR_036145','MIR3179-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',18403535,18403629,'NR_036141','MIR3180-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14912581,14912669,'NR_036142','MIR3180-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14912577,14912671,'NR_036144','MIR3180-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',15156207,15156360,'NR_037466','MIR3180-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2125978,2126131,'NR_037467','MIR3180-5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82099451,82099514,'NR_036147','MIR3182'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65793724,65793799,'NR_029887','MIR328'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14310642,14310729,'NR_029854','MIR365-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2260714,2260774,'NR_037448','MIR3677'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54836932,54837036,'NR_037499','MIR3935'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2123120,2123206,'NR_039741','MIR4516'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28877404,28877483,'NR_039742','MIR4517'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30422740,30422823,'NR_039743','MIR4518'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30794087,30794145,'NR_039744','MIR4519'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2264621,2264693,'NR_039868','MIR4717'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',12721678,12721729,'NR_039869','MIR4718'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',75460333,75460417,'NR_039870','MIR4719'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',79976123,79976199,'NR_039871','MIR4720'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28762740,28762829,'NR_039872','MIR4721'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87310186,87310246,'NR_039873','MIR4722'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',15644651,15644730,'NR_030159','MIR484'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',46832103,46978060,'NR_039639','MIR548AE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',9236274,9236304,'NR_036166','MIR548X'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',760183,760278,'NR_030384','MIR662'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30812724,30812807,'NR_031576','MIR762'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2261748,2261842,'NR_030636','MIR940'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14072696,14268131,'NM_014048','MKL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73263253,73292290,'NM_152649','MLKL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2195178,2199419,'NM_022372','MLST8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82490230,82507288,'NM_012213','MLYCD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56616782,56638305,'NM_002428','MMP15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54070581,54098087,'NM_004530','MMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3036682,3050725,'NM_022468','MMP25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',75782336,75791044,'NM_014940','MON1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68168,75843,'NM_002434','MPG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',80739267,80761330,'NM_005792','MPHOSPH6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',15397111,15411044,'NM_001128423','MPV17L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',357384,360570,'NM_006428','MRPL28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1761896,1763141,'NM_023936','MRPS34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',751073,758866,'NM_013404','MSLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',759428,772927,'NM_001025190','MSLNL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55230078,55231500,'NM_005946','MT1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55243311,55244617,'NM_005947','MT1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55235099,55236354,'NR_027781','MT1DP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55217085,55218525,'NM_175617','MT1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55249355,55250716,'NM_005949','MT1F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55258153,55259478,'NM_005950','MT1G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55261226,55262542,'NM_005951','MT1H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55267149,55269154,'NR_003669','MT1IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55227151,55228499,'NR_036677','MT1JP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55208873,55210231,'NR_001447','MT1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55224034,55225399,'NM_176870','MT1M'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55273882,55275609,'NM_005952','MT1X'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55199978,55200910,'NM_005953','MT2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55180767,55182501,'NM_005954','MT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55156461,55160370,'NM_032935','MT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',85121282,85146342,'NM_022764','MTHFSD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3361053,3362284,'NM_001190476','MTRNR2L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',69252607,69277455,'NM_138383','MTSS1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87245848,87256996,'NM_002461','MVD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29739215,29766861,'NM_017458','MVP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',15704492,15858388,'NM_002474','MYH11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',45293694,45339722,'NM_182493','MYLK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30293623,30296811,'NM_013292','MYLPF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',47130137,47201621,'NM_153029','N4BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3447992,3476964,'NM_024845','NAA60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65394281,65422380,'NM_003905','NAE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',5014845,5023943,'NM_016256','NAGPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',719769,730998,'NM_022493','NARFL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',15651583,15727709,'NM_017668','NDE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',57055049,57105024,'NM_020465','NDRG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23499835,23515140,'NM_005003','NDUFAB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1949517,1951977,'NM_004548','NDUFB10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82559737,82593880,'NM_019065','NECAB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',45672931,45735437,'NM_001201477','NETO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68157369,68287092,'NM_173215','NFAT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28869818,28885268,'NM_032815','NFATC2IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66676769,66820663,'NM_173163','NFATC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',557032,559496,'NM_176677','NHLRC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67930915,67934514,'NM_016101','NIP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',49139741,49232272,'NM_033119','NKD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3529036,3567393,'NM_178844','NLRC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55580910,55674937,'NM_032206','NLRC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1760321,1761711,'NM_002513','NME3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',387192,390755,'NM_005009','NME4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4451695,4464897,'NM_020677','NMRAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68333274,68346330,'NM_014062','NOB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',49288550,49324488,'NM_022162','NOD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65761905,65767144,'NM_001185058','NOL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14835143,14897515,'NM_014287','NOMO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',18418682,18480935,'NM_173614','NOMO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',16233889,16296169,'NM_001004067','NOMO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1969041,1971185,'NM_172168','NOXO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14938800,14953432,'NM_006985','NPIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21320955,21344159,'NM_130464','NPIPL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',75803,128697,'NM_001243249','NPRL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2009521,2010757,'NM_001099456','NPW'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68300804,68318034,'NM_000903','NQO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66476281,66477772,'NM_198443','NRN1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',27143815,27187614,'NM_145080','NSMCE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',15039215,15057334,'NM_173474','NTAN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2029816,2037868,'NM_002528','NTHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2461500,2464147,'NM_006181','NTN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',10745198,10770709,'NM_002484','NUBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1772933,1779193,'NM_012225','NUBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4683694,4685861,'NM_001193452','NUDT16L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55020548,55042762,'NM_007006','NUDT21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',76313889,76333658,'NM_001105663','NUDT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55373204,55436362,'NM_001242795','NUP93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28456162,28457996,'NM_012385','NUPR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66438319,66462720,'NM_005796','NUTF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55042924,55068908,'NM_018233','OGFOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3194247,3195186,'NM_012360','OR1F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3205562,3206547,'NR_002169','OR1F2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3345889,3346925,'NM_012368','OR2C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30867905,30873760,'NM_152288','ORAI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',45281058,45289807,'NR_037620','ORC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82544327,82557438,'NM_182981','OSGIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21597335,21679551,'NM_144672','OTOA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87457248,87460569,'NM_001080487','PABPN1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23521983,23560179,'NM_024675','PALB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4330252,4341374,'NM_016069','PAM16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',48744329,48826720,'NM_001040284','PAPD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2959342,2963486,'NM_152341','PAQR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66252351,66254182,'NM_016948','PARD6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14437057,14631629,'NM_001242992','PARN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67920024,67921999,'NM_022341','PDF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',273118,277210,'NM_006849','PDIA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20277992,20323534,'NM_174924','PDILT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65471883,65482503,'NM_020786','PDP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2527970,2593190,'NM_002613','PDPK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68705029,68752685,'NM_017990','PDPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14976333,15039053,'NM_015027','PDXDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68567702,68657352,'NR_003610','PDXDC2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21902686,21919932,'NR_033694','PDZD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2201603,2204823,'NM_001042371','PGP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',46052710,46292935,'NM_000293','PHKB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30667120,30679998,'NM_000294','PHKG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70236352,70306205,'NM_015020','PHLPP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87309246,87378873,'NM_001142864','PIEZO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',560004,574110,'NM_148920','PIGQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2078711,2125900,'NM_000296','PKD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',79691984,79811476,'NM_052892','PKD1L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70520941,70591378,'NM_181536','PKD1L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',16318966,16351966,'NR_036447','PKD1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2962792,2970541,'NM_182687','PKMYT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',14673905,14696027,'NM_003561','PLA2G10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66836747,66852462,'NM_012320','PLA2G15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',80370399,80549400,'NM_002661','PLCG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65868913,65880904,'NM_015432','PLEKHG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23597701,23609189,'NM_005030','PLK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55847509,55876085,'NM_015993','PLLP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70710496,70763565,'NM_031293','PMFBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',8799170,8850695,'NM_000303','PMM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56054051,56063422,'NM_032940','POLR2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',22216241,22252844,'NM_018119','POLR3E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',36978,43632,'NM_016310','POLR3K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4872508,4927137,'NM_002705','PPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29994884,30004196,'NM_002720','PPP4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88650474,88656234,'NM_052996','PRDM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23754800,24139433,'NM_212535','PRKCB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11282193,11282693,'NM_002761','PRM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11276993,11277838,'NM_002762','PRM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11274644,11274953,'NM_021247','PRM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66902377,66948670,'NM_019023','PRMT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30569741,30575235,'NM_024031','PRR14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',795443,803862,'NM_001013638','PRR25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29730909,29734703,'NM_145239','PRRT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2807164,2811719,'NM_144957','PRSS21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2842728,2848172,'NM_022119','PRSS22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2702423,2710553,'NM_031948','PRSS27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2829574,2832753,'NR_026864','PRSS30P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2773954,2776709,'NM_152891','PRSS33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31057748,31068916,'NM_173502','PRSS36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2788486,2795134,'NM_001135086','PRSS41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31002245,31007631,'NM_001039503','PRSS53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56871401,56886452,'NM_001080492','PRSS54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31050254,31054652,'NM_002773','PRSS8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66484675,66521082,'NM_006742','PSKH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66525907,66528281,'NM_002801','PSMB10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',72888173,72897687,'NM_002811','PSMD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1475940,1478469,'NM_001013658','PTX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31120307,31121598,'NM_013258','PYCARD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31134783,31135896,'NM_152901','PYDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29597941,29616815,'NM_014298','QPRT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',415668,512482,'NM_014700','RAB11FIP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2138651,2144142,'NM_014353','RAB26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',580077,619274,'NM_001172666','RAB40C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28823242,28844033,'NM_024816','RABEP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66314505,66398056,'NM_020850','RANBP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',24458408,24468223,'NM_032626','RBBP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',6763810,7703341,'NM_001142334','RBFOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',52025851,52083061,'NM_005611','RBL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73212797,73258280,'NM_018124','RFWD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',258310,265915,'NM_003834','RGS11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',48057,62629,'NM_022450','RHBDF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',666075,668268,'NM_003961','RHBDL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',658133,664172,'NM_138769','RHOT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66236530,66248973,'NM_001013838','RLTPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11346811,11353118,'NM_152308','RMI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1956875,1958977,'NM_174903','RNF151'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87290403,87297526,'NM_001171816','RNF166'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30680433,30695129,'NM_001207033','RNF40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2243100,2257859,'NM_006711','RNPS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4786969,4792675,'NM_024589','ROGDI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',52191318,52295272,'NM_015272','RPGRIP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88154619,88160738,'NM_033251','RPL13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1934580,1944680,'NM_005061','RPL3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',18701777,18709157,'NM_001030009','RPS15A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1952062,1954828,'NM_002952','RPS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',774974,778384,'NM_058192','RPUSD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65513082,65516940,'NM_004165','RRAD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',15061379,15095659,'NM_018427','RRN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21715451,21737996,'NR_003370','RRN3P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28993663,29035539,'NR_003369','RRN3P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',22338367,22356537,'NR_027460','RRN3P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11835555,11852943,'NM_015659','RSL1D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55777741,55830448,'NM_133368','RSPRY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21268184,21304755,'NR_045011','RUNDC2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29221108,29283881,'NR_002939','RUNDC2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',49727386,49742684,'NM_002968','SALL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28211340,28242671,'NM_001024401','SBK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23221091,23300121,'NM_000336','SCNN1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23101540,23135701,'NM_001039','SCNN1G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',80588751,80602594,'NM_145168','SDR42E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4948318,5009157,'NM_014692','SEC14L5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30362452,30364725,'NM_012248','SEPHS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30296954,30301672,'NM_052838','SEPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4767615,4778523,'NM_001154458','SEPT12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1928234,1933295,'NM_016332','SEPX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30876115,30903482,'NM_014712','SETD1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',57106883,57111932,'NM_024860','SETD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29789980,29818086,'NM_201575','SEZ6L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',69115191,69169072,'NM_012426','SF3B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28782578,28793035,'NM_001145796','SH2B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',45171968,45212812,'NM_024745','SHCBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',12902977,12913008,'NM_001145205','SHISA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',46951954,46976730,'NM_003031','SIAH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',55456619,55507263,'NM_000339','SLC12A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66534877,66560098,'NM_001145962','SLC12A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87789669,87794030,'NM_001242757','SLC22A31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',57257798,57276175,'NM_018231','SLC38A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82600889,82633263,'NM_001080442','SLC38A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',24765052,24830445,'NM_052944','SLC5A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31401939,31409592,'NM_003041','SLC5A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',32796297,32803964,'NR_003083','SLC6A10P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',54247852,54295201,'NM_001043','SLC6A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',86421129,86460601,'NM_003486','SLC7A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29531924,29532539,'NR_002593','SLC7A5P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21436730,21439266,'NR_002594','SLC7A5P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66855919,66893227,'NM_003983','SLC7A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66892018,66902369,'NM_032178','SLC7A6OS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2016888,2029028,'NM_001130012','SLC9A3R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65840355,65863595,'NM_004594','SLC9A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29373322,29377046,'NM_001015000','SLX1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29373912,29383802,'NR_037608','SLX1A-SULT1A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29373322,29377046,'NM_024044','SLX1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29373912,29383802,'NR_037609','SLX1B-SULT1A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3571183,3601586,'NM_032444','SLX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',18723675,18845227,'NM_015092','SMG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66949730,67039910,'NM_018667','SMPD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87271590,87280383,'NM_178310','SNAI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1954997,1955506,'NR_003142','SNHG9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11669789,11680516,'NM_003498','SNN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1952335,1952468,'NR_002327','SNORA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30629358,30629487,'NR_002966','SNORA30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',57139903,57140038,'NR_002978','SNORA46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',57151200,57151336,'NR_002980','SNORA50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1952974,1953108,'NR_002326','SNORA64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70289970,70290105,'NR_033337','SNORA70D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1955185,1955312,'NR_003020','SNORA78'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',69129408,69129502,'NR_003079','SNORD111'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',69120905,69120999,'NR_003696','SNORD111B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2145024,2145107,'NR_002736','SNORD60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88155338,88155410,'NR_002450','SNORD68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70349805,70349891,'NR_003059','SNORD71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',43828,47669,'NM_024571','SNRNP25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67778550,67900456,'NM_006750','SNTB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',49257711,49272765,'NM_001144972','SNX20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11978102,12575647,'NM_032167','SNX29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11255774,11257540,'NM_003745','SOCS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',517856,544637,'NM_005632','SOLH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',971808,976980,'NM_014587','SOX8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88290265,88295622,'NM_152339','SPATA2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88102305,88131630,'NM_199367','SPG7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88422407,88465228,'NM_032451','SPIRE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29582080,29589324,'NM_003123','SPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28893596,28903370,'NM_032038','SPNS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1766713,1772582,'NM_080861','SPSB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30617962,30658951,'NM_006662','SRCAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4179375,4232082,'NM_001098814','SRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2742330,2761414,'NM_016333','SRRM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1062756,1071455,'NM_001172560','SSTR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68970838,69030492,'NM_006927','ST3GAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',670115,672769,'NM_005861','STUB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30908077,30929330,'NM_052874','STX1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30952403,30958986,'NM_004604','STX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28524408,28528866,'NM_001055','SULT1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28510764,28515892,'NM_001054','SULT1A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29378707,29383802,'NM_177552','SULT1A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29378707,29383802,'NM_001017390','SULT1A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',75790849,75804477,'NM_001129979','SYCE1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1979946,1984277,'NM_004209','SYNGR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',19087138,19186055,'NM_016524','SYT17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82768953,82778177,'NM_001243159','TAF1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29892722,29911082,'NM_004783','TAOK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70158254,70168499,'NM_000353','TAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30275922,30289023,'NM_015527','TBC1D10B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2465147,2495735,'NM_020705','TBC1D24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1962064,1968752,'NM_006453','TBL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30004615,30010706,'NM_004608','TBX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2761415,2767298,'NM_007108','TCEB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88467494,88505293,'NM_014972','TCF25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',10628861,10696303,'NM_144674','TEKT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1483352,1500461,'NM_016111','TELO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56567839,56579518,'NM_199046','TEPP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67946964,67977375,'NM_005652','TERF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',74239135,74248842,'NM_018975','TERF2IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4247187,4263002,'NM_003223','TFAP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31391029,31396782,'NM_001164719','TGFB1I1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66433713,66435599,'NM_020457','THAP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3014032,3017757,'NM_024339','THOC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20652489,20660700,'NM_017736','THUMPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3288808,3295440,'NM_033208','TIGD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65099406,65141816,'NM_004614','TK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',19375272,19417935,'NM_024780','TMC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',18902756,18982763,'NM_024847','TMC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67435009,67676586,'NM_024562','TMCO7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67934649,67943213,'NM_144676','TMED6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',8559502,8562227,'NM_001146336','TMEM114'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21077412,21099438,'NM_020422','TMEM159'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',74038423,74056085,'NM_145254','TMEM170A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',8796537,8799006,'NM_015421','TMEM186'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',48616689,48628500,'NM_153261','TMEM188'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1524231,1545244,'NM_024600','TMEM204'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65818516,65820683,'NM_014187','TMEM208'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29880851,29891874,'NM_194280','TMEM219'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',74129515,74147637,'NM_001077416','TMEM231'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',360776,371951,'NM_021259','TMEM8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3010313,3012384,'NM_016639','TNFRSF12A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11966464,11969426,'NM_001192','TNFRSF17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11269214,11270661,'NM_005425','TNP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',24648549,24745048,'NM_014494','TNRC6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',51029418,51139215,'NM_001146188','TOX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',32592349,32595554,'NM_016212','TP53TG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',32592349,32594949,'NM_001099687','TP53TG3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65981212,65984922,'NM_015964','TPPP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1230678,1232556,'NM_003294','TPSAB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1218336,1220186,'NM_024164','TPSB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1246273,1248495,'NM_012217','TPSD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1211652,1215255,'NM_012467','TPSG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65745589,65751313,'NM_003789','TRADD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2145799,2168131,'NM_032271','TRAF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3648038,3707599,'NM_016292','TRAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87451006,87455021,'NM_016209','TRAPPC2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31132842,31144011,'NM_001008274','TRIM72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2037990,2078714,'NM_001114382','TSC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',66398510,66419472,'NM_018430','TSNAXIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88515917,88530006,'NM_001197181','TUBB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28761232,28765230,'NM_003321','TUFM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11680443,11744149,'NM_015914','TXNDC11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70676256,70685040,'NM_017853','TXNL4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1299628,1317020,'NM_003345','UBE2I'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',34261302,34262263,'NR_002837','UBE2MP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',23476362,23493211,'NM_019116','UBFD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4837912,4872364,'NM_001079514','UBN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',20251873,20271538,'NM_003361','UMOD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1388306,1404706,'NM_001037125','UNKL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21872109,21902169,'NM_003366','UQCRC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',83291055,83371028,'NM_005153','USP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',22980228,23068092,'NM_020718','USP31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',8893451,8964842,'NM_003470','USP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',69278842,69392562,'NM_018052','VAC14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4361849,4373530,'NM_138440','VASN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',76379983,76571502,'NM_020927','VAT1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31009675,31013777,'NM_206824','VKORC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',45251089,45280645,'NM_018206','VPS35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67902787,67916447,'NM_013245','VPS4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',22011363,22075788,'NM_173615','VWA3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',674702,680401,'NM_032259','WDR24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73464971,73576518,'NM_030581','WDR59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',639363,657830,'NM_145294','WDR90'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',82885901,82920951,'NM_021197','WFDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',621012,624117,'NM_053284','WFIKKN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',76690827,76691597,'NM_130844','WWOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',68353774,68533144,'NM_007014','WWP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',28016816,28130691,'NM_015171','XPO6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',17103681,17472239,'NM_022166','XYLT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30011137,30015038,'NM_001145524','YPEL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87164289,87225873,'NM_144604','ZC3H18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',11751942,11798615,'NM_014153','ZC3H7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',85997352,86082961,'NM_015144','ZCCHC14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',65985822,66007840,'NM_013304','ZDHHC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',83565567,83602642,'NM_001145548','ZDHHC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',71374286,71639775,'NM_006885','ZFHX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73739921,73763633,'NM_153688','ZFP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',67131161,67158540,'NM_133458','ZFP90'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87047514,87129075,'NM_153813','ZFPM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',29697061,29700470,'NM_152338','ZG16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',2820173,2822286,'NM_145252','ZG16B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',25154822,25176356,'NM_001012981','ZKSCAN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3391190,3399365,'NM_003450','ZNF174'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70065476,70080755,'NM_006961','ZNF19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3212325,3225458,'NM_001145446','ZNF200'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3102563,3110519,'NM_001042428','ZNF205'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3125134,3132806,'NM_001134655','ZNF213'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70039003,70053618,'NM_145911','ZNF23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3273487,3281460,'NM_005741','ZNF263'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31792579,31836128,'NM_003414','ZNF267'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',88315452,88334833,'NM_001113525','ZNF276'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',56586073,56591263,'NM_020807','ZNF319'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',48082021,48418419,'NM_015069','ZNF423'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3372085,3391026,'NM_017810','ZNF434'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87021379,87034666,'NM_001127464','ZNF469'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30314240,30318930,'NM_152652','ZNF48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',4740815,4757167,'NM_021646','ZNF500'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3426110,3433491,'NM_152457','ZNF597'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',1987768,1999764,'NM_178167','ZNF598'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30697270,30706024,'NM_001080417','ZNF629'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30993243,31002334,'NM_014699','ZNF646'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30979664,30983910,'NM_001172670','ZNF668'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30488523,30491229,'NM_145271','ZNF688'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30522200,30529183,'NM_138447','ZNF689'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31632050,31680387,'NM_001130913','ZNF720'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30450279,30453695,'NM_023931','ZNF747'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3295433,3308577,'NM_153028','ZNF75A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30472585,30477143,'NM_001172679','ZNF764'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30442822,30445411,'NM_024671','ZNF768'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30326235,30337417,'NM_016643','ZNF771'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',87811611,87823466,'NM_001201407','ZNF778'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',30499494,30504593,'NM_152458','ZNF785'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',70451083,70474945,'NM_001201553','ZNF821'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',31354385,31361849,'NM_001136509','ZNF843'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',73590415,73702393,'NM_032268','ZNRF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',21116273,21130369,'NM_003460','ZP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr16',3078895,3082862,'NM_032805','ZSCAN10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',28880918,28884892,'NR_037584','AA06'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71961027,71977794,'NM_001166579','AANAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38356068,38385546,'NM_025267','AARSD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',32380287,32488284,'NM_012138','AATF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76705690,76720343,'NM_004920','AATK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76753901,76771559,'NR_027255','AATK-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',64655742,64752551,'NM_080282','ABCA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',64752170,64823369,'NM_018672','ABCA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',64586441,64649610,'NM_080284','ABCA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',64375025,64463128,'NM_007168','ABCA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',64482367,64568731,'NM_080283','ABCA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46067216,46100287,'NM_001144070','ABCC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24911814,24918168,'NM_198147','ABHD15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44642587,44655586,'NM_016428','ABI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',853508,1037366,'NM_001159746','ABR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',32516039,32841015,'NM_198839','ACACA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7063876,7069309,'NM_000018','ACADVL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7180571,7195517,'NM_014716','ACAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40568539,40577326,'NM_024722','ACBD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',28364218,28644119,'NM_183377','ACCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',58908153,58929473,'NM_000789','ACE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37276704,37328798,'NM_001096','ACLY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71449186,71487110,'NM_007292','ACOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45858517,45907199,'NM_025149','ACSF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77091591,77094487,'NM_001199954','ACTG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40192093,40214740,'NM_002390','ADAM11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26272879,26310337,'NM_018404','ADAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15788955,15819935,'NM_000676','ADORA2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73694992,73705236,'NR_027083','AFMID'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6267782,6279243,'NM_014336','AIPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',52518076,52553704,'NM_001242903','AKAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19749341,19821721,'NM_007202','AKAP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19581889,19589364,'NM_001135168','ALDH3A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19492655,19521500,'NM_000382','ALDH3A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23924259,23928078,'NM_005165','ALDOC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18027591,18053992,'NM_017758','ALKBH5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6840107,6854779,'NM_000697','ALOX12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7916678,7931746,'NM_001139','ALOX12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6697618,6744392,'NR_002710','ALOX12P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4480962,4491709,'NM_001140','ALOX15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7883082,7893176,'NM_001039131','ALOX15B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7939942,7962959,'NM_001165960','ALOXE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',63755739,63764900,'NM_016627','AMZ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',60393129,60402165,'NR_026903','AMZ2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77442894,77451655,'NM_016476','ANAPC11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',51585834,51915006,'NM_153228','ANKFN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4044521,4114023,'NM_020740','ANKFY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24944652,24965905,'NM_152345','ANKRD13B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46125549,46140269,'NM_052855','ANKRD40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38250134,38256251,'NM_001158','AOC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38256726,38263666,'NM_003734','AOC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38272687,38274760,'NR_002773','AOC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30938394,31077549,'NM_001282','AP2B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',61638608,61656018,'NM_000042','APOH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55875301,55958362,'NM_006380','APPBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27501499,27502703,'NR_002222','ARGFXP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',33838245,33922154,'NM_001199417','ARHGAP23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40862500,40866065,'NM_174919','ARHGAP27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',12633553,12835685,'NM_014859','ARHGAP44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77418885,77422079,'NM_001185077','ARHGDIA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8154864,8166559,'NM_025014','ARHGEF15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77258628,77261359,'NM_001040025','ARL16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41949383,42012404,'NM_016632','ARL17A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41732689,41794876,'NM_001103154','ARL17B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38831878,38834030,'NM_001661','ARL4D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34566672,34575940,'NM_001143968','ARL5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70617676,70637955,'NM_024585','ARMC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4560537,4571544,'NM_004313','ARRB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',63766917,63928595,'NM_014960','ARSG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39603599,39611977,'NM_080863','ASB16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7017474,7023607,'NM_001197216','ASGR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6945364,6958854,'NM_001181','ASGR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3324153,3349450,'NM_001128085','ASPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77528714,77568571,'NM_024083','ASPSCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26183148,26246421,'NM_024857','ATAD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7494978,7501814,'NM_001678','ATP1B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3773911,3814507,'NM_174953','ATP2A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44325146,44328231,'NM_001002027','ATP5G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70546549,70554669,'NM_006356','ATP5H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37864387,37928123,'NM_005177','ATP6V0A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17862058,17883205,'NM_145691','ATPAF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39624698,39631055,'NM_020218','ATXN7L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8048773,8054608,'NM_004217','AURKB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',60955144,60988202,'NM_004655','AXIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76777987,76811346,'NM_001009811','AZI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',78494955,78602975,'NM_001009905','B3GNTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44565327,44602350,'NM_153446','B4GALNT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19187075,19206639,'NM_001243473','B9D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76988134,77047953,'NM_001080519','BAHCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76623541,76705827,'NM_001144888','BAIAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',56109953,56824981,'NM_017679','BCAS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6867092,6873685,'NM_181844','BCL6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38215675,38229836,'NM_003766','BECN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1120607,1121315,'NM_001164405','BHLHA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73721871,73733311,'NM_001168','BIRC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',25599338,25643310,'NM_000386','BLMH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',63252241,63410956,'NM_004459','BPTF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38449837,38529658,'NM_007298','BRCA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',57111328,57295702,'NM_032043','BRIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',69864150,69869553,'NM_001080466','BTBD17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53733592,53761151,'NM_004758','BZRAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6495782,6497341,'NM_001105520','C17orf100'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77940374,77969802,'NR_033265','C17orf101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',29925254,29930501,'NM_207454','C17orf102'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',21082775,21097171,'NM_152914','C17orf103'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40089287,40108691,'NM_001145080','C17orf104'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39213328,39217580,'NM_001136483','C17orf105'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71486892,71513675,'NR_037709','C17orf106-CDK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4743726,4747006,'NM_001145536','C17orf107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23229466,23244536,'NM_001076680','C17orf108'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71141108,71149081,'NM_001162995','C17orf109'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71154240,71155652,'NM_001162997','C17orf110'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70458433,70480495,'NM_030630','C17orf28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17883335,17912443,'NM_024052','C17orf39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26250126,26257412,'NM_024683','C17orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40687542,40695262,'NM_152343','C17orf46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53973946,53976732,'NM_001038704','C17orf47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',10541651,10555600,'NM_020233','C17orf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6858779,6861567,'NM_001142799','C17orf49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31112028,31116211,'NM_145272','C17orf50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',21372163,21395534,'NM_001113434','C17orf51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39574799,39595370,'NM_001171251','C17orf53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76816671,76827486,'NM_144679','C17orf56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',42756325,42873676,'NM_152347','C17orf57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',63417678,63420227,'NM_181656','C17orf58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8032375,8034289,'NM_017622','C17orf59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7247016,7248174,'NM_152766','C17orf61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7233770,7248174,'NR_037719','C17orf61-PLSCR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77993751,78001996,'NM_001193653','C17orf62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24107122,24193967,'NM_018182','C17orf63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55854646,55863569,'NM_181707','C17orf64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39608877,39619608,'NM_178542','C17orf65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31206072,31220008,'NM_152781','C17orf66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',52224272,52248249,'NM_001085430','C17orf67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41072123,41075454,'NR_026905','C17orf69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77117386,77129871,'NM_025161','C17orf70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59429442,59435376,'NM_001191029','C17orf72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7269658,7271610,'NM_175734','C17orf74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27679572,27693341,'NM_022344','C17orf75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16286052,16336205,'NM_207387','C17orf76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16283025,16286065,'NR_027162','C17orf76-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70092651,70101943,'NM_152460','C17orf77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',32807097,32823775,'NM_173625','C17orf78'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27202996,27210439,'NM_018405','C17orf79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',68740370,68756690,'NM_017941','C17orf80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7096274,7103983,'NM_015362','C17orf81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',56843893,56845423,'NM_203425','C17orf82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3661208,3696289,'NM_018553','C17orf85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5054624,5078807,'NM_207103','C17orf87'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39350101,39350881,'NR_026770','C17orf88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76827705,76829693,'NM_001086521','C17orf89'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77242470,77244023,'NM_001039842','C17orf90'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34081484,34084713,'NM_001130677','C17orf96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',260433,264803,'NM_001013672','C17orf97'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34244866,34251168,'NM_001080465','C17orf98'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73654028,73673959,'NM_001163075','C17orf99'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5276822,5283195,'NM_001212','C1QBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40392586,40401170,'NM_006688','C1QL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',74531845,74557465,'NM_198594','C1QTNF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',47062672,47592160,'NM_001082533','CA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55582083,55591688,'NM_000717','CA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45993447,46059430,'NM_198382','CACNA1G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34586914,34607427,'NM_199248','CACNB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',62471113,62483373,'NM_000727','CACNG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',62391441,62459980,'NM_014405','CACNG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',62303852,62311857,'NM_145811','CACNG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44263370,44297228,'NM_005831','CALCOCO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3715199,3743086,'NM_172207','CAMKK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4812010,4831684,'NM_001171166','CAMTA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',74499392,74517494,'NM_001159773','CANT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75766875,75797446,'NM_024110','CARD14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35550032,35581957,'NM_007359','CASC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71007936,71023222,'NM_020753','CASKIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43502412,43533882,'NM_001127228','CBX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75366571,75376044,'NM_005189','CBX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75421549,75427808,'NM_003655','CBX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75382770,75385510,'NM_020649','CBX8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40332679,40336155,'NM_213607','CCDC103'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77244165,77251341,'NM_199287','CCDC137'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16534363,16619036,'NM_014695','CCDC144A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18381839,18469655,'NR_036647','CCDC144B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',20165078,20246096,'NR_023380','CCDC144C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',20707299,20740045,'NM_001004306','CCDC144NL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75625025,75689007,'NM_017950','CCDC40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8573970,8588879,'NM_001158261','CCDC42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40110330,40122691,'NM_001099225','CCDC43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59176341,59204820,'NM_020198','CCDC47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38203177,38204230,'NM_001040431','CCDC56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77652634,77763978,'NM_198082','CCDC57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',29711511,29714365,'NM_002981','CCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',29636799,29639312,'NM_002986','CCL11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',29707583,29709742,'NM_005408','CCL13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31334804,31337877,'NM_032963','CCL14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31334804,31353197,'NR_027922','CCL14-CCL15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31348730,31353197,'NM_032965','CCL15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31327647,31332636,'NM_004590','CCL16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31415755,31422954,'NM_002988','CCL18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',29606408,29608333,'NM_002982','CCL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31364209,31369118,'NM_005064','CCL23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31439715,31441619,'NM_002983','CCL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31546381,31548269,'NM_021006','CCL3L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31546381,31548260,'NM_001001437','CCL3L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31455332,31457127,'NM_002984','CCL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31562580,31564387,'NM_001001435','CCL4L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31562580,31564387,'NM_207007','CCL4L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31222608,31231490,'NM_002985','CCL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',29621352,29623369,'NM_006273','CCL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',29670178,29672534,'NM_005623','CCL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38084945,38087371,'NM_016602','CCR10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35963547,35975262,'NM_001838','CCR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30278990,30312641,'NM_001193530','CCT6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',69974116,69992528,'NM_007261','CD300A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70048841,70053877,'NM_006678','CD300C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70117616,70131492,'NM_181449','CD300E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70028907,70039208,'NM_174892','CD300LB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70087705,70099965,'NM_001115152','CD300LD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70202046,70220703,'NM_139018','CD300LF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39280041,39290654,'NM_001168324','CD300LG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7423528,7426153,'NM_001251','CD68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77866034,77868769,'NM_006137','CD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59359829,59363436,'NM_000626','CD79B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',42550309,42621664,'NM_001256','CDC27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',68791357,68819738,'NM_012121','CDC42EP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35697671,35712939,'NM_001254','CDC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34871264,34944326,'NM_015083','CDK12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71508581,71513675,'NM_001258','CDK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27838217,27842384,'NM_003885','CDK5R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43403427,43414146,'NM_176096','CDK5RAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70495321,70513487,'NM_014603','CDR2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15432701,15463743,'NM_006382','CDRT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',14079897,14080875,'NM_001007530','CDRT15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',20423628,20424816,'NM_001190790','CDRT15L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',13868539,13869640,'NR_003261','CDRT15P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15608741,15609728,'NR_033865','CDRT15P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15280056,15311650,'NM_001204477','CDRT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',14875016,14875999,'NR_033371','CDRT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16186572,16197537,'NM_181716','CENPV'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',61062119,61618674,'NM_001199165','CEP112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59933619,59964524,'NM_138363','CEP95'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45896851,45901226,'NM_001267','CHAD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7732893,7756800,'NM_001005273','CHD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76580235,76588528,'NM_024591','CHMP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7289129,7301656,'NM_000747','CHRNB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4741839,4747148,'NM_000080','CHRNE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34140035,34145384,'NM_001136498','CISD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7103945,7106988,'NM_001185023','CLDN7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6918579,6924324,'NM_182906','CLEC10A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55051831,55129099,'NM_004859','CLTC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37372284,37383280,'NM_033133','CNP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38204379,38217131,'NM_173478','CNTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38088157,38105537,'NM_003632','CNTNAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7776166,7793962,'NM_053051','CNTROB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37967617,37971821,'NM_001042529','COASY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',68700767,68716240,'NM_018714','COG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',52370559,52393410,'NM_004645','COIL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45616455,45633999,'NM_000088','COL1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17090662,17124737,'NM_001199125','COPS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43458531,43470151,'NM_016429','COPZ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24965899,24972567,'NM_032854','CORO6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',13913443,14052721,'NM_001303','COX10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',50384257,50401063,'NR_027942','COX11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',25730067,25820801,'NM_001304','CPD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',68756182,68769614,'NM_001129885','CPSF4L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41217408,41268975,'NM_001145146','CRHR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1272207,1306294,'NM_005206','CRK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26133827,26175904,'NM_015986','CRLF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24598000,24605628,'NM_005208','CRYBA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35425139,35427592,'NM_172220','CSF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59325999,59327753,'NM_001317','CSH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59303103,59304821,'NM_022645','CSH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59340696,59342350,'NM_022581','CSHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77793825,77824883,'NM_139062','CSNK1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8068863,8092138,'NM_025099','CTC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7087629,7095983,'NM_015343','CTDNEP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3486510,3513146,'NM_004937','CTNS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53295335,53335749,'NM_017949','CUEDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34210971,34235115,'NM_017748','CWC25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4583576,4589972,'NM_022059','CXCL16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',58863396,58877454,'NM_001915','CYB561'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7701788,7706325,'NM_144607','CYB5D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3993210,4007740,'NR_023347','CYB5D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72035034,72045377,'NM_134268','CYGB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',74181724,74289971,'NM_004762','CYTH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40141501,40185162,'NM_025104','DBF4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',602649,605326,'NR_024120','DBIL5P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',58981553,59025373,'NM_005828','DCAF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40456231,40493999,'NM_024819','DCAKD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77587045,77588862,'NM_001195218','DCXR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59205298,59250409,'NM_203499','DDX42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59924835,59932946,'NM_004396','DDX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',33046475,33077606,'NM_007010','DDX52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5318336,5330218,'NM_016041','DERL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',52266458,52301035,'NM_003647','DGKE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',32022338,32031346,'NM_024308','DHRS11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24248924,24254215,'NM_144683','DHRS13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',20970849,21035428,'NM_015510','DHRS7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',9615475,9635339,'NM_001220493','DHRS7C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5284955,5313104,'NM_020162','DHX33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',54997667,55040495,'NM_024612','DHX40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37506949,37518277,'NM_024119','DHX58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38916859,38957206,'NM_004941','DHX8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7033933,7061652,'NM_001128827','DLG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45422367,45427587,'NM_005220','DLX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45401560,45407322,'NM_138281','DLX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73931372,74085071,'NM_173628','DNAH17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7563763,7677783,'NM_020877','DNAH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',11442472,11813790,'NM_001372','DNAH9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',69781980,69822618,'NM_001172810','DNAI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37381964,37423241,'NR_029431','DNAJC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',633000,666689,'NM_003585','DOC2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1880180,1893475,'NM_001383','DPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26326478,26327143,'NR_002221','DPRXP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17932007,17952017,'NM_001388','DRG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77609039,77616969,'NM_022156','DUS1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',32924063,32947701,'NM_007026','DUSP14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39199014,39211894,'NM_004090','DUSP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7069384,7078587,'NM_004422','DVL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53515778,53522617,'NM_080677','DYNLL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77384656,77386215,'NM_001007533','DYSFIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',57811645,57847571,'NM_173503','EFCAB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',25292748,25425769,'NR_026738','EFCAB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7549244,7555418,'NM_001406','EFNB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40283180,40332519,'NM_001142605','EFTUD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37098652,37101424,'NM_005801','EIF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7416747,7423048,'NM_001204510','EIF4A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75723607,75735577,'NM_014740','EIF4A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7152417,7156506,'NM_001143762','EIF5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',12835653,12862106,'NM_001165962','ELAC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45805579,45813819,'NM_152463','EME1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76003561,76018766,'NM_001164638','ENDOV'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',74582613,74596276,'NM_001042573','ENGASE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4795128,4801150,'NM_001976','ENO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75319476,75330616,'NM_178543','ENPP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19081282,19180621,'NM_148921','EPN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45965046,45976110,'NM_017957','EPN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53625087,53637534,'NM_000502','EPX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24206168,24212198,'NM_005702','ERAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35109779,35138441,'NM_004448','ERBB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59474121,59561234,'NM_001433','ERN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38960736,38978831,'NM_001986','ETV4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26667553,26672893,'NM_014210','EVI2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26654913,26665256,'NM_006495','EVI2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71514521,71535102,'NM_001988','EVPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18221803,18233685,'NM_001145127','EVPLL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71588680,71611463,'NM_001145297','EXOC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38105818,38150597,'NM_001991','EZH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70385067,70401300,'NM_178128','FADS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71772880,71778974,'NM_182565','FAM100B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',289998,295959,'NM_182705','FAM101B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',68715086,68740128,'NM_032837','FAM104A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18368604,18370885,'NR_026809','FAM106A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16632781,16634540,'NR_026810','FAM106CP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45142685,45196517,'NM_030802','FAM117A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37985051,38014971,'NM_178126','FAM134C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39786626,39796761,'NM_198475','FAM171A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18625306,18650751,'NM_016078','FAM18B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15381018,15407670,'NM_001135036','FAM18B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15280056,15407670,'NM_001204478','FAM18B2-CDRT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2338651,2340800,'NM_001093767','FAM195B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',64042851,64066163,'NR_027751','FAM20A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',21749496,21750626,'NR_028336','FAM27L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',582596,592825,'NM_024792','FAM57A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6288458,6295109,'NM_019013','FAM64A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18815105,18848785,'NM_001039999','FAM83G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77629502,77649395,'NM_004104','FASN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71418212,71448714,'NM_001080542','FBF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34662422,34811435,'NM_032875','FBXL20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6620275,6631689,'NM_153230','FBXO39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34346210,34377181,'NM_001008777','FBXO47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18588050,18623387,'NM_031456','FBXW10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70370213,70380751,'NM_024417','FDXR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7283412,7288975,'NM_004112','FGF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37222487,37232995,'NM_021939','FKBP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17065209,17081227,'NM_144606','FLCN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18088877,18102780,'NM_002018','FLII'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',68105774,68148206,'NR_033876','FLJ26484'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',12394009,12481229,'NR_034144','FLJ34690'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',21828188,21837197,'NR_027084','FLJ36000'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',65674696,65677138,'NR_036534','FLJ36644'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44680603,44691026,'NR_034161','FLJ40194'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',816054,829962,'NR_029406','FLJ43681'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34439684,34462984,'NR_033753','FLJ43826'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73386677,73391764,'NR_028337','FLJ45079'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45278270,45281198,'NM_001242791','FLJ45513'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76617527,76623114,'NR_026857','FLJ90757'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24230482,24248841,'NM_004475','FLOT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40655074,40680466,'NM_005892','FMNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',78286740,78302362,'NM_022158','FN3K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',78267870,78279182,'NM_024619','FN3KRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30472743,30481864,'NM_017559','FNDC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71644009,71648975,'NM_001454','FOXJ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',78070882,78155772,'NM_004514','FOXK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23875085,23889302,'NM_003593','FOXN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18509960,18517219,'NR_026718','FOXO3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77110011,77114632,'NM_001077182','FSCN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59250524,59258763,'NM_017647','FTSJ3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7435271,7458940,'NM_004860','FXR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39990337,39994156,'NM_001466','FZD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38306340,38318912,'NM_000151','G6PC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39503623,39509238,'NR_028581','G6PC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75689949,75708274,'NM_000152','GAA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7084461,7086477,'NM_007278','GABARAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71265612,71272875,'NM_000154','GALK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71582486,71585168,'NM_003857','GALR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31095642,31104010,'NM_139285','GAS2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',9754650,9870348,'NM_001130831','GAS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37122138,37125747,'NM_000805','GAST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2320446,2330382,'NM_000160','GCGR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',54652609,54708112,'NM_182569','GDPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',594410,602251,'NM_015721','GEMIN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40338519,40348446,'NM_002055','GFAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70744288,70769302,'NM_138619','GGA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31974849,32020389,'NM_024835','GGNBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4406970,4410625,'NM_153338','GGT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59348294,59349930,'NM_022560','GH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59311307,59312955,'NM_002059','GH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37594630,37600076,'NM_032484','GHDC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44390916,44400954,'NM_004123','GIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24924612,24940736,'NM_014030','GIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40231341,40263133,'NM_005497','GJC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35770430,35774471,'NM_152219','GJD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',609298,632321,'NM_016080','GLOD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',9670105,9733747,'NM_004246','GLP2R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4638993,4640624,'NM_001014985','GLTPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',60435868,60483382,'NM_006572','GNA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44638594,44641742,'NM_031498','GNGT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',25828551,25877958,'NM_004871','GOSR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',42355484,42373732,'NM_054022','GOSR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4776371,4779067,'NM_000173','GP1BA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39828170,39936483,'NR_036474','GPATCH8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',69875239,69880334,'NM_181790','GPR142'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4876620,4879451,'NM_001104577','GPR172B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',33735018,33753219,'NM_001004334','GPR179'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',69941430,69955163,'NM_018653','GPRC5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77603051,77608635,'NM_004127','GPS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7156701,7159382,'NM_004489','GPS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18864714,18891061,'NM_006613','GRAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18971506,19002873,'NM_001129778','GRAPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70825751,70913385,'NM_203506','GRB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35147687,35157064,'NM_005310','GRB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70349762,70367602,'NM_000835','GRIN2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39778016,39785996,'NM_002087','GRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35372751,35387545,'NM_178171','GSDMA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35314373,35327319,'NM_018530','GSDMB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3573945,3576741,'NM_031965','GSG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7846712,7864383,'NM_000180','GUCY2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71284109,71287455,'NM_005324','H3F3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37132416,37144424,'NM_177977','HAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37589603,37590996,'NM_001524','HCRT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39509646,39556540,'NM_005474','HDAC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55475333,55511074,'NM_022070','HEATR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',62497015,62671781,'NM_014877','HELZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7964632,7968135,'NM_032580','HES7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77969540,77993805,'NM_173620','HEXDC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40580466,40585251,'NM_006460','HEXIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40594046,40603189,'NM_144608','HEXIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77261366,77279556,'NM_004712','HGS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1905142,1909731,'NM_006497','HIC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40280804,40283374,'NM_016438','HIGD1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45603787,45604836,'NR_024193','HILS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',50697319,50757425,'NM_002126','HLF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70642938,70662370,'NM_016185','HN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',33120546,33179209,'NM_000458','HNF1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43961805,43963271,'NM_002144','HOXB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44157124,44161110,'NM_006361','HOXB13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44155540,44157118,'NR_024103','HOXB13-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43975017,43977392,'NM_002145','HOXB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43981230,44006809,'NM_002146','HOXB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44007867,44010742,'NM_024015','HOXB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44023617,44026102,'NM_002147','HOXB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44028097,44037333,'NM_018952','HOXB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44039593,44043382,'NM_004502','HOXB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44044706,44047300,'NM_024016','HOXB8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44053517,44058834,'NM_024017','HOXB9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',13339730,13445969,'NM_006042','HS3ST3A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',14145230,14190217,'NM_006041','HS3ST3B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37957509,37960758,'NM_000413','HSD17B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53852527,53920758,'NM_001080439','HSF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37528281,37528897,'NM_033194','HSPB9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59433686,59451726,'NM_001099786','ICAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70520374,70528951,'NM_001545','ICT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38412267,38420002,'NM_005533','IFI35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23679479,23686622,'NM_174887','IFT20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44429772,44488506,'NM_001160423','IGF2BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35853201,35867508,'NM_001552','IGFBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35174724,35273967,'NM_012481','IKZF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41278035,41280218,'NM_175882','IMP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4832148,4841629,'NM_001167985','INCA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1344620,1366932,'NM_001135642','INPP5K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',57297509,57360159,'NM_020748','INTS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39805075,39822399,'NM_000419','ITGA2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45488338,45522848,'NM_005501','ITGA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3564667,3651286,'NM_002208','ITGAE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',42686206,42745076,'NM_000212','ITGB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71229110,71265494,'NM_000213','ITGB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72220508,72234476,'NM_001081461','JMJD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37164384,37196490,'NM_021991','JUP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37518654,37526908,'NM_021078','KAT2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45220979,45261457,'NM_001199158','KAT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7766751,7773478,'NM_004732','KCNAB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37562435,37586822,'NM_012285','KCNH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',58954426,58980070,'NM_173092','KCNH6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',21220291,21263772,'NM_021012','KCNJ12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',65583020,65643341,'NM_018658','KCNJ16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',21249040,21261075,'NM_001194958','KCNJ18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',65677270,65687778,'NM_000891','KCNJ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7195931,7198986,'NM_001002914','KCTD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70554873,70573576,'NM_015353','KCTD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7683959,7698843,'NM_001080424','KDM6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23965584,23996304,'NM_014680','KIAA0100'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70964258,71008128,'NM_014738','KIAA0195'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2539429,2561677,'NM_015229','KIAA0664'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6422368,6484971,'NM_014804','KIAA0753'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41463128,41625943,'NM_001193466','KIAA1267'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40358973,40380608,'NM_001080443','KIF18B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',69833945,69863554,'NM_153209','KIF19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4841966,4872418,'NM_006612','KIF1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',49255237,49257572,'NM_032559','KIF2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37247568,37258125,'NM_152467','KLHL10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37263324,37275155,'NM_018143','KLHL11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',63462309,63473432,'NM_002266','KPNA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43082273,43116003,'NM_002265','KPNB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8212697,8215583,'NM_213597','KRBA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36227894,36232389,'NM_000421','KRT10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36270955,36276988,'NM_000223','KRT12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36910758,36915391,'NM_153490','KRT13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36992056,36996673,'NM_000526','KRT14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36923522,36928796,'NM_002275','KRT15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37019556,37022605,'NM_005557','KRT16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16674521,16676872,'NR_029392','KRT16P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',20345418,20348403,'NR_029393','KRT16P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37029217,37034408,'NM_000422','KRT17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23627138,23658535,'NR_028334','KRT18P55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36933394,36938167,'NM_002276','KRT19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36285666,36295021,'NM_019010','KRT20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36065397,36074942,'NM_152349','KRT222'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36332477,36347362,'NM_015515','KRT23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36107768,36113528,'NM_019016','KRT24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36157798,36165110,'NM_181534','KRT25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36176015,36181937,'NM_181539','KRT26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36186585,36192312,'NM_181537','KRT27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36201973,36209737,'NM_181535','KRT28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36803502,36807370,'NM_002277','KRT31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36869290,36877164,'NM_002278','KRT32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36755896,36760582,'NM_004138','KRT33A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36773271,36779573,'NM_002279','KRT33B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36787446,36792162,'NM_021013','KRT34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36886466,36890918,'NM_002280','KRT35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36895913,36899642,'NM_003771','KRT36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36830334,36834348,'NM_003770','KRT37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36846146,36851122,'NM_006771','KRT38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36368194,36376670,'NM_213656','KRT39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36387493,36396913,'NM_182497','KRT40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37036104,37049977,'NR_033415','KRT42P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36975619,36981836,'NM_000226','KRT9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36450336,36451239,'NM_030967','KRTAP1-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36443662,36444633,'NM_030966','KRTAP1-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36435804,36436980,'NM_031957','KRTAP1-5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36717477,36719031,'NM_001146182','KRTAP16-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36724694,36725473,'NM_031964','KRTAP17-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36456321,36457094,'NM_001123387','KRTAP2-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',298010,298828,'NM_033032','KRTAP2-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36474893,36475657,'NM_033184','KRTAP2-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36418299,36418892,'NM_031958','KRTAP3-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36408970,36409664,'NM_031959','KRTAP3-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36403207,36403911,'NM_033185','KRTAP3-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36593877,36594673,'NM_033060','KRTAP4-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36526959,36528132,'NM_033059','KRTAP4-11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36532870,36533945,'NM_031854','KRTAP4-12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36587223,36587986,'NM_033062','KRTAP4-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36577008,36577950,'NM_033187','KRTAP4-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36569431,36570509,'NM_032524','KRTAP4-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36558701,36559580,'NM_033188','KRTAP4-5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36549210,36550265,'NM_030976','KRTAP4-6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36493984,36494922,'NM_033061','KRTAP4-7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36506759,36507901,'NM_031960','KRTAP4-8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36515166,36516266,'NM_001146041','KRTAP4-9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36599664,36600417,'NM_001190460','KRTAP9-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36636425,36637430,'NM_031961','KRTAP9-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36642240,36643232,'NM_031962','KRTAP9-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36659464,36660431,'NM_033191','KRTAP9-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36647795,36648782,'NM_031963','KRTAP9-8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36665161,36666142,'NM_030975','KRTAP9-9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',22823162,22974845,'NM_014238','KSR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34279637,34331549,'NM_006148','LASP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37211730,37221977,'NM_006455','LEPREL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',74478929,74487656,'NM_005567','LGALS3BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',22982300,23000713,'NR_024043','LGALS9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',20293767,20311440,'NM_001042685','LGALS9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18320823,18338984,'NM_001040078','LGALS9C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',32368884,32376028,'NM_005568','LHX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30331629,30354304,'NM_002311','LIG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59126980,59131251,'NM_030576','LIMD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8064672,8068086,'NR_026951','LINC00324'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72596319,72602663,'NR_027058','LINC00338'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',69257003,69336271,'NR_027146','LINC00469'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76891218,76897643,'NR_038080','LINC00482'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46189757,46199917,'NR_024626','LINC00483'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18069660,18088913,'NM_004140','LLGL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71033377,71082885,'NM_004524','LLGL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8202455,8204584,'NR_024447','LOC100128288'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41276501,41328675,'NR_024559','LOC100128977'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41328944,41331960,'NR_024560','LOC100130148'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38808821,38821792,'NR_027413','LOC100130581'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5036102,5079655,'NR_034082','LOC100130950'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73615077,73619475,'NR_040071','LOC100131096'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34466797,34491230,'NR_036551','LOC100131347'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40695340,40701780,'NR_024435','LOC100133991'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38159472,38166801,'NR_024462','LOC100190938'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70778974,70781571,'NR_036520','LOC100287042'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',10638954,10648141,'NR_036581','LOC100289255'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75940225,76003563,'NR_029376','LOC100294362'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1366962,1368140,'NR_028514','LOC100306951'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',63609332,63643665,'NR_027418','LOC100499466'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',67911057,68100538,'NR_036488','LOC100499467'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34334946,34339163,'NR_038847','LOC100505576'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36812193,36822366,'NR_040111','LOC100505782'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',180995,183279,'NR_040011','LOC100506388'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',48417878,48420011,'NM_001243552','LOC100506650'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6829165,6856377,'NR_040089','LOC100506713'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53761297,53786087,'NR_038411','LOC100506779'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71648231,71662324,'NR_040017','LOC100507218'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72065440,72073025,'NR_038108','LOC100507246'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73054617,73072698,'NR_040050','LOC100507351'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',74526885,74535332,'NR_040018','LOC100507410'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',74398256,74410894,'NM_001243540','LOC100653515'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',60204718,60208084,'NR_027487','LOC146880'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36959383,36964273,'NR_038442','LOC147093'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16630930,16648544,'NR_003190','LOC162632'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18355300,18365291,'NR_003554','LOC220594'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45988566,45994468,'NR_038439','LOC253962'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2257024,2265480,'NR_028335','LOC284009'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7757364,7759990,'NR_024349','LOC284023'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45482711,45488102,'NR_038230','LOC284080'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',33276685,33318476,'NR_024178','LOC284100'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5616277,5774740,'NR_040000','LOC339166'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18266219,18269372,'NR_001443','LOC339240'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38280216,38304277,'NR_027254','LOC388387'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46299038,46300731,'NR_038458','LOC400604'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',69294555,69308529,'NR_040020','LOC400620'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44022821,44038773,'NR_033201','LOC404266'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',22769157,22782776,'NR_033892','LOC440419'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',33605594,33667082,'NR_036750','LOC440434'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',63706395,63708038,'NR_027283','LOC440461'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41033277,41035531,'NR_026901','LOC644172'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41626715,41629866,'NR_034172','LOC644246'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55515708,55520610,'NR_030732','LOC645638'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',674184,675630,'NM_001097610','LOC653486'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55533902,55535062,'NR_027408','LOC653653'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5343470,5345043,'NM_001162371','LOC728392'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36469018,36469870,'NM_001165252','LOC730755'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77478995,77481920,'NR_015454','LOC92659'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53670785,53700878,'NR_027647','LPO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41728273,41770918,'NM_014834','LRRC37A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41945391,41988330,'NM_001006607','LRRC37A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',60280949,60345365,'NM_199340','LRRC37A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40939031,40953672,'NR_002940','LRRC37A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27372267,27404632,'NM_052888','LRRC37B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',25927608,25988610,'NR_015341','LRRC37BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35351252,35354513,'NM_001195545','LRRC3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77574568,77582316,'NM_144999','LRRC45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43263991,43270078,'NM_033413','LRRC46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17816851,17851867,'NM_001130092','LRRC48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45813592,45829913,'NM_018509','LRRC59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39467528,39500513,'NM_152344','LSM12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7700727,7701897,'NM_032356','LSMD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46151924,46185071,'NM_006107','LUC7L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31285635,31294816,'NM_001199951','LYZL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77469436,77474737,'NM_032711','MAFG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',21131940,21159144,'NM_002756','MAP2K3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',11864859,11987776,'NM_003010','MAP2K4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',64922432,65050065,'NM_002758','MAP2K6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40696270,40750197,'NM_003954','MAP3K14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59053532,59127402,'NM_203351','MAP3K3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19222366,19227450,'NM_139034','MAPK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41327541,41461546,'NM_001123066','MAPT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',58132406,58239437,'NM_152598','MARCH10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46609784,46692426,'NM_017643','MBTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34814063,34861053,'NM_004774','MED1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4581471,4583645,'NM_001001683','MED11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',57374747,57497425,'NM_005121','MED13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35428875,35464415,'NM_001079518','MED24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6487356,6495678,'NM_016060','MED31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17321024,17337259,'NM_018019','MED9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15630888,15633744,'NR_002211','MEIS3P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39073283,39094457,'NM_004527','MEOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',78630855,78646011,'NM_001004431','METRNL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2266097,2361950,'NM_024086','METTL16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72234506,72241557,'NM_001206983','METTL23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',57854977,57881186,'NM_181725','METTL2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19227347,19231125,'NM_001198695','MFAP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72245177,72286931,'NM_024311','MFSD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8641152,8643392,'NM_152599','MFSD6L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72380323,72458066,'NM_198955','MGAT5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',14147781,14149787,'NR_026880','MGC12916'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',69717729,69721055,'NR_026914','MGC16275'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41053763,41071112,'NR_027295','MGC57346'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',116622,119732,'NR_003682','MGC70870'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35138934,35140314,'NM_032339','MIEN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70773905,70778906,'NM_020679','MIF4GD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59875701,59895222,'NM_001085423','MILR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4683302,4742135,'NM_153827','MINK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44012198,44012308,'NR_029608','MIR10A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19188411,19188480,'NR_031591','MIR1180'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43588787,43588872,'NR_031607','MIR1203'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76721590,76721703,'NR_031652','MIR1250'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2598121,2598226,'NR_031654','MIR1253'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16126052,16126127,'NR_031698','MIR1288'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1899951,1900052,'NR_029674','MIR132'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53763591,53763678,'NR_029683','MIR142'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24212676,24212762,'NR_029685','MIR144'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43469525,43469612,'NR_029687','MIR152'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26911127,26911215,'NR_029710','MIR193A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6861657,6861744,'NR_029712','MIR195'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44064850,44064920,'NR_029582','MIR196A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55273408,55273480,'NR_029493','MIR21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38877699,38877779,'NR_031751','MIR2117'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1900314,1900424,'NR_029625','MIR212'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1563946,1564031,'NR_029494','MIR22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1561547,1566316,'NR_028503','MIR22HG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',32465154,32465223,'NR_036056','MIR2909'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',54583278,54583364,'NR_029842','MIR301A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59927345,59927429,'NR_039891','MIR3064'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76714271,76714350,'NR_036151','MIR3065'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',872465,872549,'NR_036148','MIR3183'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',25468229,25468304,'NR_036149','MIR3184'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44156768,44156836,'NR_036150','MIR3185'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77032724,77032809,'NR_036152','MIR3186'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7067339,7067422,'NR_029896','MIR324'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76714277,76714344,'NR_029897','MIR338'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17657874,17657970,'NR_030361','MIR33B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',52323629,52323715,'NR_037408','MIR3614'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70256346,70256433,'NR_037409','MIR3615'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26926542,26926653,'NR_029856','MIR365-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8031217,8031302,'NR_037447','MIR3676'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70913744,70913838,'NR_037449','MIR3678'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',25468222,25468316,'NR_029945','MIR423'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7932098,7932190,'NR_036201','MIR4314'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40908511,40908584,'NR_036199','MIR4315-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40908511,40908584,'NR_036271','MIR4315-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72904660,72904731,'NR_036200','MIR4316'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24212512,24212584,'NR_029970','MIR451'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24212514,24212582,'NR_039876','MIR451B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6499482,6499552,'NR_039745','MIR4520A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6499491,6499545,'NR_039874','MIR4520B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8030987,8031047,'NR_039746','MIR4521'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',22645062,22645149,'NR_039748','MIR4522'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24741805,24741874,'NR_039749','MIR4523'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',64607299,64607368,'NR_039750','MIR4524'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',54569900,54570015,'NR_030411','MIR454'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23711802,23711886,'NR_039875','MIR4723'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26886020,26886109,'NR_039877','MIR4724'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26926400,26926490,'NR_039878','MIR4725'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34129469,34129527,'NR_039879','MIR4726'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34235616,34235671,'NR_039880','MIR4727'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35136257,35136345,'NR_039881','MIR4728'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',54798225,54798297,'NR_039882','MIR4729'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76007812,76007888,'NR_039883','MIR4730'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15095668,15095738,'NR_039884','MIR4731'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24212798,24212874,'NR_039885','MIR4732'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26445493,26445569,'NR_039886','MIR4733'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34112040,34112110,'NR_039887','MIR4734'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53768335,53768382,'NR_039889','MIR4736'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55475167,55475248,'NR_039890','MIR4737'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71292196,71292283,'NR_039892','MIR4738'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75295579,75295653,'NR_039893','MIR4739'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76989110,76989173,'NR_039894','MIR4740'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6861953,6862065,'NR_030178','MIR497'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6859860,6863697,'NR_038310','MIR497HG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59927793,59927893,'NR_039969','MIR5047'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',62898066,62898163,'NR_037517','MIR548AA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',28547065,28547096,'NR_039621','MIR548AC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',60821545,60847231,'NR_039605','MIR548O2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',58152589,58622466,'NR_036146','MIR548W'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27701240,27701334,'NR_030362','MIR632'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',62213651,62213748,'NR_030364','MIR634'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',63932186,63932284,'NR_030365','MIR635'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72244126,72244225,'NR_030366','MIR636'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76713670,76713768,'NR_030394','MIR657'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',11925940,11926038,'NR_030613','MIR744'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5330970,5334854,'NM_024039','MIS12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53637795,53651965,'NM_001165927','MKS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34115398,34139582,'NM_005937','MLLT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37972603,37978747,'NM_170607','MLX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',50824972,50854340,'NM_012329','MMD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31116988,31146753,'NM_024302','MMP28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2234103,2251008,'NM_020310','MNT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7427688,7432251,'NR_024603','MPDU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53702215,53713295,'NM_000250','MPO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39308252,39340639,'NM_005374','MPP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39233692,39266073,'NM_001932','MPP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16886798,17036687,'NM_201274','MPRIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',58058493,58124684,'NM_006039','MRC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',32032137,32039520,'NM_024864','MRM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43255636,43263906,'NM_145255','MRPL10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77280804,77284961,'NM_002949','MRPL12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45800226,45805561,'NM_016504','MRPL27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71406318,71412776,'NM_032478','MRPL38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',33706507,33732628,'NM_032351','MRPL45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',42882591,42924985,'NR_033934','MRPL45P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53271285,53282432,'NM_016070','MRPS23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70769343,70774052,'NM_015971','MRPS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',52688929,53112298,'NM_138962','MSI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35532315,35546568,'NM_001012241','MSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53589318,53591479,'NR_002307','MSX2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53921891,53950250,'NM_004687','MTMR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',21946563,21948118,'NM_001190452','MTRNR2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',52316461,52317273,'NR_027025','MTVR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72183403,72218651,'NM_001008528','MXRA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77490811,77498400,'NM_001145113','MYADML2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4388939,4405430,'NM_001105538','MYBBP1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45940743,45963861,'NM_032133','MYCBPAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',10336348,10362584,'NM_005963','MYH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8318254,8474761,'NM_005964','MYH10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',10144907,10217047,'NM_003802','MYH13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',10365189,10393665,'NM_001100112','MYH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',10472567,10501351,'NM_002470','MYH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',10287332,10313601,'NM_017533','MYH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',10234366,10265992,'NM_002472','MYH8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',42641712,42656044,'NM_002476','MYL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17952744,18023841,'NM_016239','MYO15A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71095733,71134522,'NR_003587','MYO15B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24424653,24531533,'NM_078471','MYO18A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31925711,31965418,'NM_001163735','MYO19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1314229,1341722,'NM_033375','MYO1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27843740,28228015,'NM_015194','MYO1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',12509931,12611376,'NM_001146312','MYOCD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',57022575,57023345,'NM_199290','NACA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37941476,37949992,'NM_000263','NAGLU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39437557,39441962,'NM_153006','NAGS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',78009348,78039432,'NM_001038618','NARF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70278280,70284065,'NM_015654','NAT9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38576036,38719233,'NM_031858','NBR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38531125,38550651,'NR_003108','NBR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15874132,16038678,'NM_001190440','NCOR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8279903,8312206,'NM_030808','NDEL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24079958,24093911,'NM_178170','NEK8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7159674,7173362,'NM_032442','NEURL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35013546,35017701,'NM_006160','NEUROD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26446070,26728821,'NM_001042492','NF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43480684,43493906,'NM_003204','NFE2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44927653,44947381,'NM_002507','NGFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37425612,37431182,'NM_001144929','NKIRAS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30482480,30493435,'NM_018096','NLE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7252225,7263903,'NM_020795','NLGN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23393814,23547531,'NM_016231','NLK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5358161,5428556,'NM_033007','NLRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46585918,46594449,'NM_198175','NME1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46585895,46604104,'NR_037149','NME1-NME2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46598631,46604104,'NM_002512','NME2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40494205,40541908,'NM_021079','NMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',52026058,52027950,'NM_005450','NOG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',63144522,63170728,'NM_015462','NOL11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23107918,23151682,'NM_000625','NOS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77503672,77512347,'NM_178493','NOTUM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2419653,2420365,'NM_148896','NPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',42963442,43055641,'NM_006310','NPEPPS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77134356,77214543,'NM_017921','NPLOC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76055227,76064999,'NM_002522','NPTX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35502562,35510499,'NM_021724','NR1D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',42023350,42189995,'NM_006178','NSF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41805921,41855899,'NR_033799','NSFP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',25467959,25537612,'NM_032141','NSRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70637917,70639472,'NM_014595','NT5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37234859,37246049,'NR_033465','NT5C3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17147404,17191702,'NM_020201','NT5M'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8865583,9088042,'NM_004822','NTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24606979,24645292,'NM_020772','NUFIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70713191,70743449,'NM_024844','NUP85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5230069,5263783,'NM_002532','NUP88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',649302,829748,'NM_022463','NXN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45008296,45016170,'NM_007225','NXPH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8183912,8190088,'NM_153007','ODF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26645793,26648506,'NM_002544','OMG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3065664,3066594,'NM_014565','OR1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3047562,3048492,'NM_012352','OR1A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2942101,2943040,'NM_002548','OR1D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3090719,3091309,'NR_033795','OR1D4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2912712,2913651,'NM_014566','OR1D5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3247509,3248454,'NM_003553','OR1E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3282913,3283885,'NM_003554','OR1E2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2976653,2977595,'NM_003555','OR1G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3141678,3142626,'NM_002550','OR3A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3127933,3129018,'NM_002551','OR3A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3270611,3271577,'NM_012373','OR3A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3160288,3161490,'NR_024128','OR3A4P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53587513,53588446,'NM_012374','OR4D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53602015,53602939,'NM_001004707','OR4D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35330821,35337410,'NM_139280','ORMDL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43239731,43254146,'NM_145798','OSBPL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70431964,70441601,'NM_178160','OTOP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70443491,70457106,'NM_178233','OTOP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1892026,1893475,'NM_080822','OVCA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3746633,3766709,'NM_002558','P2RX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3523270,3546447,'NM_002561','P2RX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3512935,3546447,'NR_037928','P2RX5-TAX1BP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77394322,77411833,'NM_000918','P4HB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2443672,2535659,'NM_000430','PAFAH1B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34143675,34158084,'NM_007144','PCGF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',51183338,51209747,'NM_021213','PCTP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77454068,77462369,'NR_033685','PCYT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77227893,77234012,'NM_002602','PDE6G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45527099,45543732,'NM_001199898','PDK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59750508,59817743,'NM_000442','PECAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4521427,4554381,'NM_014389','PELP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17349601,17426470,'NM_007169','PEMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7984512,7996478,'NM_002616','PER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30925926,30929769,'NM_000286','PEX12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8093320,8114534,'NM_012393','PFAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4789691,4792570,'NM_005022','PFN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35080900,35097836,'NM_033419','PGAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73886329,73932234,'NM_024419','PGS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44836418,44847241,'NM_002634','PHB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24263287,24302634,'NM_020889','PHF12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7079070,7083549,'NM_024297','PHF23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44655730,44663127,'NM_178500','PHOSPHO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16061233,16170298,'NM_004278','PIGL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23904532,23923014,'NM_033198','PIGS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31965515,31969263,'NM_178517','PIGW'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8722957,8756559,'NM_014308','PIK3R5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8646779,8711719,'NM_001010855','PIK3R6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34175469,34209684,'NM_003559','PIP4K2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24394043,24408362,'NM_016518','PIPOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',10666516,10682143,'NM_001101387','PIRT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1368032,1412860,'NM_006224','PITPNA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',62804385,63120109,'NM_181671','PITPNC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6295306,6400601,'NM_001165966','PITPNM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40544533,40565417,'NM_133373','PLCD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4657352,4673694,'NM_001243108','PLD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17045033,17050371,'NM_178836','PLD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38073458,38082574,'NM_024927','PLEKHH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',40869048,40923929,'NM_014798','PLEKHM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',60211420,60263764,'NR_024386','PLEKHM1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7233770,7238886,'NM_001201576','PLSCR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34473081,34561428,'NM_020405','PLXDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15073821,15104818,'NM_153322','PMP22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35078032,35080254,'NM_002686','PNMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43373887,43381673,'NM_018129','PNPO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23697785,23708730,'NM_015584','POLDIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59904363,59923646,'NM_007215','POLG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7328421,7358659,'NM_000937','POLR2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',56032325,56098422,'NM_003620','PPM1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',54188230,54417316,'NM_014906','PPM1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35036702,35046404,'NM_032192','PPP1R1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45566099,45582876,'NM_032595','PPP1R9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39373697,39375359,'NM_002722','PPY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23598596,23599442,'NR_002181','PPY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44154080,44154881,'NM_032391','PRAC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72035262,72053053,'NR_033357','PRCD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',64019704,64040505,'NM_212471','PRKAR1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',61729387,62237324,'NM_002737','PRKCA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24054660,24062999,'NM_152465','PROCA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1500672,1534926,'NM_006445','PRPF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71818462,71861825,'NM_002766','PRPSAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18702105,18775324,'NM_002767','PRPSAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',54587641,54638852,'NM_018304','PRR11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43384332,43390109,'NM_024320','PRR15L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34162527,34174004,'NM_002795','PSMB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4646414,4648748,'NM_002798','PSMB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37977854,37983273,'NM_016556','PSMC3IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59258775,59263119,'NM_001199163','PSMC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27795614,27832155,'NM_002815','PSMD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',62767080,62793183,'NM_002816','PSMD12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35390585,35407738,'NM_002809','PSMD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38238948,38249303,'NM_176863','PSME3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37807992,37828864,'NM_012232','PTRF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55129448,55139638,'NM_016077','PTRH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2308040,2312779,'NM_153824','PYCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39385632,39437363,'NM_004160','PYY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23577715,23579212,'NR_003064','PYY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71781724,71815356,'NM_032134','QRICH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26742767,26889352,'NM_032932','RAB11FIP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24065425,24069035,'NM_001144942','RAB34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70244950,70255069,'NM_001163990','RAB37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',78208231,78249887,'NM_006822','RAB40B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37530522,37560548,'NM_201434','RAB5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5126281,5229856,'NM_004703','RABEP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77582820,77585369,'NM_005052','RAC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',54124961,54127694,'NM_002876','RAD51C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30450924,30471001,'NM_133629','RAD51D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30360243,30472654,'NR_037714','RAD51L3-RFFL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17525511,17655490,'NM_030665','RAI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38166737,38168585,'NM_005854','RAMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8132693,8134134,'NM_001177801','RANGRF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2646481,2887785,'NM_015085','RAP1GAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35587767,35605432,'NM_016339','RAPGEFL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35718948,35767421,'NM_000964','RARA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17338477,17340434,'NM_001199989','RASD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31082791,31094653,'NM_033315','RASL10B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',74597021,74990158,'NM_001082575','RBFOX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',9741751,9749409,'NM_002903','RCVRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31269197,31281416,'NM_001163130','RDM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71157388,71174864,'NM_001003716','RECQL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30360243,30414872,'NM_001017368','RFFL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77599066,77602939,'NM_002917','RFNG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',60563917,60654283,'NM_001081955','RGS9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71978569,72009104,'NM_024599','RHBDF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27617307,27675793,'NM_138328','RHBDL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27493585,27576859,'NM_001033566','RHOT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1496194,1500142,'NM_031430','RILP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6856459,6858576,'NR_037716','RNASEK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6856459,6861567,'NR_037717','RNASEK-C17ORF49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38430783,38437584,'NM_005440','RND2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19255083,19261181,'NM_007148','RNF112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',52477837,52479155,'NR_002818','RNF126P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26322081,26351053,'NM_197939','RNF135'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71650128,71747985,'NM_052916','RNF157'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4784374,4789262,'NM_015528','RNF167'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75849261,75909857,'NM_020954','RNF213'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8234747,8241869,'NM_001146684','RNF222'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53786036,53849930,'NM_017763','RNF43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55384504,55396899,'NM_016125','RNFT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',632262,642491,'NM_018146','RNMTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1680022,1749598,'NM_002945','RPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5263684,5277064,'NM_001160266','RPAIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',62179,202633,'NM_006987','RPH3AL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34610061,34614506,'NM_000981','RPL19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34259846,34263579,'NM_000978','RPL23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24071126,24075501,'NM_000984','RPL23A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8221558,8227290,'NM_000987','RPL26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38403971,38408497,'NM_000988','RPL27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7598362,7599011,'NR_002778','RPL29P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',69711389,69717614,'NM_000999','RPL38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',42410520,42411613,'NM_203400','RPRML'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55325224,55382568,'NM_003161','RPS6KB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76133219,76554768,'NM_020761','RPTOR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45911188,45918335,'NM_018346','RSAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1784720,1874928,'NM_178568','RTN4RL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38386107,38399233,'NM_173079','RUNDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39741452,39750764,'NM_006695','RUNDC3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45545033,45562166,'NM_174920','SAMD14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71174993,71215734,'NM_013260','SAP30BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23723113,23752192,'NM_015077','SARM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7470280,7471919,'NM_133491','SAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1483901,1495791,'NR_028076','SCARF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72596983,72597170,'NR_003013','SCARNA16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55663658,55663788,'NR_002999','SCARNA20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7750165,7750303,'NR_003000','SCARNA21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59369645,59404010,'NM_000334','SCN4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',10524373,10541610,'NM_004589','SCO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',52410466,52439128,'NM_021626','SCPEP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43270045,43273698,'NM_138355','SCRN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23999733,24013060,'NM_006923','SDF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',68842117,69151822,'NM_001144952','SDK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23715416,23716392,'NM_001080837','SEBOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72692889,72724776,'NM_001144001','SEC14L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77872188,77885210,'NM_003004','SECTM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7406032,7416011,'NM_015670','SENP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7406032,7423048,'NR_037926','SENP3-EIF4A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53952609,53961777,'NM_004574','SEPT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72827191,73008273,'NM_006640','SEPT9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1612008,1627609,'NM_002615','SERPINF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1592879,1605309,'NM_000934','SERPINF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24306072,24357207,'NM_001098635','SEZ6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45598364,45608292,'NM_000023','SGCA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23959108,23965338,'NM_001174103','SGK494'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75797673,75808794,'NM_000199','SGSH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2187555,2231098,'NM_014853','SGSM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27391467,27393964,'NR_033412','SH3GL1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',25975461,25977951,'NR_033420','SH3GL1P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7474177,7477425,'NM_001146280','SHBG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',11085464,11408105,'NM_207386','SHISA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18171911,18207581,'NM_148918','SHMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3458304,3486365,'NM_013276','SHPK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77463106,77469350,'NM_016538','SIRT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',54542089,54587582,'NM_001100595','SKA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43565800,43862593,'NM_001075099','SKAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23824790,23848925,'NM_001145975','SLC13A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6528762,6557464,'NM_177550','SLC13A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6885672,6887966,'NM_153357','SLC16A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6880117,6884164,'NM_201566','SLC16A13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77783396,77790664,'NM_001042423','SLC16A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70595649,70613843,'NM_004695','SLC16A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',63774761,63799000,'NM_001174166','SLC16A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77289775,77298447,'NM_012140','SLC25A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4781169,4784207,'NM_003562','SLC25A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70780655,70797125,'NM_021734','SLC25A19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8131806,8138895,'NM_201520','SLC25A35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39752518,39757743,'NM_001143780','SLC25A39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75808794,75841903,'NM_173626','SLC26A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7125777,7132091,'NM_001042','SLC2A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45133688,45140281,'NM_005827','SLC35B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30543651,30545525,'NM_152462','SLC35G3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7325444,7327107,'NM_001102614','SLC35G6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76833393,76883691,'NM_001037984','SLC38A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',68153679,68600448,'NM_001159770','SLC39A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1424445,1478880,'NM_152346','SLC43A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23745787,23757357,'NM_080669','SLC46A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19377758,19422938,'NM_018242','SLC47A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19522219,19560635,'NM_001099646','SLC47A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39681283,39701028,'NM_000342','SLC4A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18796202,18864728,'NM_152351','SLC5A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',25547503,25587080,'NM_001045','SLC6A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70256357,70277094,'NM_004252','SLC9A3R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30701440,30724833,'NM_001104589','SLFN11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30762193,30783656,'NM_018042','SLFN12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30826054,30838871,'NM_001195790','SLFN12L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30786227,30799969,'NM_144682','SLFN13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30899256,30909223,'NM_001129820','SLFN14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30594198,30618874,'NM_144975','SLFN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59263172,59274083,'NM_001098426','SMARCD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36037505,36057629,'NM_003079','SMARCE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17620724,17623568,'NR_024007','SMCR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18104572,18109820,'NM_139162','SMCR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18159318,18172095,'NM_144775','SMCR8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17263382,17267453,'NM_001243312','SMCR9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1909882,2153563,'NM_001170957','SMG6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',54642152,54647393,'NM_018149','SMG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4434582,4458363,'NM_001114974','SMTNL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59971196,60088848,'NM_022739','SMURF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1629578,1679925,'NM_052928','SMYD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44362457,44377153,'NM_007241','SNF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34262641,34262774,'NR_002576','SNORA21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',63167247,63167379,'NR_003706','SNORA38B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7418754,7418889,'NR_002918','SNORA48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7421996,7422133,'NR_002912','SNORA67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59577430,59577563,'NR_002995','SNORA76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7420852,7421000,'NR_002604','SNORD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59577169,59577249,'NR_004380','SNORD104'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35437320,35437424,'NR_003692','SNORD124'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72069309,72069383,'NR_004395','SNORD1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72068784,72068870,'NR_004396','SNORD1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72066468,72066546,'NR_004397','SNORD1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24074573,24074636,'NR_000014','SNORD42A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24071694,24071761,'NR_000013','SNORD42B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16284074,16284145,'NR_002744','SNORD49A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16283547,16283595,'NR_003043','SNORD49B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24073726,24073798,'NR_000010','SNORD4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24074825,24074899,'NR_000009','SNORD4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16285264,16285337,'NR_003054','SNORD65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30924788,30924885,'NR_003037','SNORD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2180322,2180414,'NR_003072','SNORD91A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2179168,2179254,'NR_003073','SNORD91B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43539918,43555104,'NM_152244','SNX11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73864456,73867753,'NM_003955','SOCS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',33761532,33815372,'NM_014598','SOCS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39186624,39191682,'NM_025237','SOST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7432221,7434212,'NM_006942','SOX15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',67628755,67634155,'NM_000346','SOX9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43328514,43361322,'NM_003110','SP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43277278,43288239,'NM_199262','SP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',28342994,28349005,'NM_173847','SPACA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23928709,23950183,'NM_006461','SPAG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23950277,23968522,'NR_040012','SPAG5-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4803243,4811856,'NM_004890','SPAG7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46394533,46553225,'NM_003971','SPAG9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45979560,45988212,'NM_022827','SPATA20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3290055,3321817,'NM_001170699','SPATA22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8597148,8602602,'NM_001128076','SPDYE4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19853240,20158664,'NM_001243439','SPECC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7264402,7265675,'NM_199339','SPEM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71892284,71895536,'NM_021972','SPHK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4348877,4389977,'NM_001124758','SPNS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4283967,4338248,'NM_182538','SPNS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45031244,45110524,'NM_003563','SPOP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',33939784,34015709,'NM_025248','SRCIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17655387,17681050,'NM_004176','SREBF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71546785,71580202,'NM_014230','SRP68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2153997,2175303,'NM_021947','SRR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53433278,53439706,'NM_006924','SRSF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72241791,72245088,'NM_001195427','SRSF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24977090,25281144,'NM_033389','SSH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',68672754,68679657,'NM_001050','SSTR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72132439,72151489,'NM_018414','ST6GALNAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',72073055,72093740,'NM_006456','ST6GALNAC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',34620314,34635566,'NM_198993','STAC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35046858,35073980,'NM_006804','STARD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37718868,37793931,'NM_213662','STAT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37693090,37717486,'NM_003152','STAT5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37604720,37681950,'NM_012448','STAT5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',41432452,41432897,'NM_001007532','STH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77569867,77574062,'NM_144998','STRA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59133923,59173062,'NM_153335','STRADA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',9094512,9420000,'NR_033656','STX8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',50401124,50596448,'NM_178509','STXBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70675419,70690693,'NM_006937','SUMO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53777537,53784562,'NM_003168','SUPT4H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24013428,24053376,'NM_003170','SUPT6H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27288156,27352170,'NM_015355','SUZ12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',26060751,26121194,'NR_024187','SUZ12P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73676265,73680604,'NM_004710','SYNGR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',32949012,33043599,'NM_007247','SYNRG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45270669,45280378,'NM_170685','TAC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59031962,59039457,'NM_016360','TACO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',32841424,32911339,'NM_001488','TADA2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31160600,31198351,'NM_003487','TAF15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',58440629,58858799,'NM_025185','TANC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24742068,24903047,'NM_020791','TAOK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3512935,3518722,'NM_014604','TAX1BP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',75528413,75624242,'NM_019020','TBC1D16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15576315,15588823,'NM_178571','TBC1D26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18479566,18488465,'NM_001039397','TBC1D28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',25910709,25914635,'NM_015594','TBC1D29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',33541107,33552247,'NM_001123391','TBC1D3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31517173,31528101,'NM_001001417','TBC1D3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31605197,31616145,'NM_001001418','TBC1D3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31820231,31831163,'NM_032258','TBC1D3F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31871287,31882216,'NM_001040282','TBC1D3G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31820048,31831163,'NM_001123392','TBC1D3H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55408166,55451118,'NR_002924','TBC1D3P1-DHX40P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',57696848,57707798,'NR_027486','TBC1D3P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',78303228,78494351,'NM_005993','TBCD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43127628,43144428,'NM_014726','TBKBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',56832038,56841609,'NM_005994','TBX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',43165608,43178484,'NM_013351','TBX21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',56888588,56916446,'NM_018488','TBX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59288107,59295471,'NR_002947','TCAM1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35075124,35076333,'NM_003673','TCAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6644023,6675784,'NM_053285','TEKT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15147853,15185683,'NM_031898','TEKT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71486892,71508262,'NM_001113324','TEN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53989036,54124415,'NM_198393','TEX14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77910411,77914941,'NM_207459','TEX19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',59578526,59694385,'NM_018469','TEX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77439006,77442758,'NM_005782','THOC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35471971,35503646,'NM_001190919','THRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24424664,24426753,'NM_004740','TIAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',847106,852140,'NM_013337','TIMM22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',74360653,74433067,'NM_003255','TIMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73681754,73694880,'NM_003258','TK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24075492,24078076,'NM_001160407','TLCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1552833,1560412,'NM_001164407','TLCD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',57910117,58046573,'NM_001112707','TLK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4621935,4633253,'NM_003963','TM4SF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73620593,73640083,'NM_007267','TMC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73638453,73650644,'NM_152468','TMC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',51151986,51164481,'NM_001099640','TMEM100'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39444081,39447871,'NM_032376','TMEM101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7279485,7281722,'NM_178518','TMEM102'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70284216,70347517,'NM_017728','TMEM104'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',76899666,76919069,'NM_178520','TMEM105'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38719419,38727115,'NM_145041','TMEM106A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8017020,8020439,'NM_032354','TMEM107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',21041854,21058500,'NR_024547','TMEM11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',29931880,29990450,'NM_207313','TMEM132E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23708813,23713216,'NM_152464','TMEM199'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',10557363,10574371,'NM_001004313','TMEM220'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73738985,73748663,'NM_001204212','TMEM235'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7699108,7700142,'NM_203411','TMEM88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45703765,45713845,'NM_001168215','TMEM92'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3518838,3519711,'NM_031298','TMEM93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7199220,7201262,'NM_198154','TMEM95'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23670247,23679838,'NM_014573','TMEM97'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',28279040,28292780,'NM_015544','TMEM98'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',36228962,36246052,'NM_001195386','TMEM99'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',25667491,25685191,'NM_206832','TMIGD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39620099,39624625,'NM_177441','TMUB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23686674,23698162,'NM_021137','TNFAIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16783122,16816127,'NM_012452','TNFRSF13B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7393098,7401931,'NM_003809','TNFSF12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7393098,7405649,'NM_172089','TNFSF12-TNFSF13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7402332,7405649,'NM_003808','TNFSF13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7225088,7233816,'NM_003985','TNK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',73511912,73616511,'NM_001142640','TNRC6C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35885605,35911380,'NM_032865','TNS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46294585,46298714,'NM_005749','TOB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',50333050,50394327,'NM_005486','TOM1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',17687546,17816509,'NM_001082968','TOM1L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35798298,35827728,'NM_001067','TOP2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18117959,18159046,'NM_004618','TOP3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7512444,7519536,'NM_001126116','TP53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24919864,24924301,'NM_138349','TP53I13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',24095149,24102103,'NM_004295','TRAF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7774387,7775992,'NM_021210','TRAPPC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15472004,15526918,'NM_006470','TRIM16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18566126,18580156,'NM_001037330','TRIM16L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',52320268,52346408,'NM_005082','TRIM25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',54430342,54539048,'NM_015294','TRIM37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71381839,71386251,'NM_033452','TRIM47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71396635,71404649,'NM_173547','TRIM65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3415489,3442920,'NM_080706','TRPV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16259580,16281042,'NM_016113','TRPV2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3363235,3408039,'NM_145068','TRPV3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71024203,71032415,'NM_207346','TSEN54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77219753,77226184,'NM_031945','TSPAN10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',2172731,2187428,'NM_018128','TSR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15843418,15873448,'NM_017775','TTC19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37340413,37371194,'NM_031421','TTC25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44194591,44226685,'NM_173623','TTLL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',69756099,69769752,'NM_052869','TTYH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55291621,55325088,'NM_001193613','TUBD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38014883,38020782,'NM_001070','TUBG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38064791,38072550,'NM_016437','TUBG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1129706,1151031,'NM_172367','TUSC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6484945,6488585,'NM_032731','TXNDC17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16225091,16226779,'NM_018955','UBB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4119260,4216718,'NM_003342','UBE2G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71897207,71960883,'NM_022066','UBE2O'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44340729,44361421,'NM_023079','UBE2Z'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',39637926,39653776,'NM_001076683','UBTF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',19614734,19711831,'NM_014683','ULK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23897851,23903773,'NM_005148','UNC119'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71334901,71352393,'NM_199242','UNC13D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30498948,30540477,'NM_001033576','UNC45B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71292514,71333481,'NM_001080419','UNK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',70423770,70430946,'NM_173477','USH1G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',20843497,20886944,'NM_015276','USP22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55609472,55824368,'NM_032582','USP32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',74304559,74348564,'NM_025090','USP36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',9489674,9573728,'NM_153210','USP43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4972410,5019048,'NM_004505','USP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46692895,46730291,'NM_016001','UTP18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27214302,27252842,'NM_018428','UTP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',77925489,77926659,'NM_018949','UTS2R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',8003189,8007018,'NM_014232','VAMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38420147,38427985,'NM_006373','VAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',53403908,53420614,'NM_007146','VEZF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4635319,4636469,'NM_182566','VMO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',55139644,55272734,'NM_030938','VMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38178979,38185143,'NM_032353','VPS25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',382282,564846,'NM_018289','VPS53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',23718425,23721500,'NM_000638','VTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71353374,71363096,'NM_012478','WBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',9420668,9487501,'NM_001080556','WDR16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',78165726,78199700,'NM_019613','WDR45L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1574583,1588643,'NM_001163811','WDR81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',46267603,46274708,'NM_175575','WFIKKN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35629099,35691965,'NM_133264','WIPF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',63929016,63965248,'NM_017983','WIPI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',38186174,38202610,'NM_032387','WNK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',42196856,42251081,'NM_030753','WNT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',42283966,42309436,'NM_003396','WNT9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7531482,7547545,'NM_001143991','WRAP53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',22645232,22664772,'NM_134265','WSB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5914657,5968471,'NM_015253','WSCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',6599879,6619688,'NM_199139','XAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',45778391,45793511,'NM_022167','XYLT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7132294,7138600,'NM_015982','YBX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',54763834,54833877,'NM_001005404','YPEL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',1194583,1250306,'NM_006761','YWHAE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',71586857,71590480,'NM_180990','ZACN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',7303408,7323668,'NM_001128833','ZBTB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4922477,4940393,'NM_153018','ZFP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4590067,4596159,'NM_001136046','ZMYND15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',11821486,11841414,'NM_144680','ZNF18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',27701269,27721581,'NM_001098507','ZNF207'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',4949754,4967121,'NM_014519','ZNF232'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15543615,15564825,'NM_001130842','ZNF286A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',18502467,18526297,'NM_001145045','ZNF286B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16394355,16413245,'NM_020653','ZNF287'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',37431119,37443570,'NM_001242704','ZNF385C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',5023554,5035902,'NM_032530','ZNF594'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',16464772,16497892,'NM_020787','ZNF624'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',44721566,44794475,'NM_001145365','ZNF652'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',78380598,78391220,'NM_024702','ZNF750'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',30312661,30314318,'NM_052857','ZNF830'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',31916585,31925775,'NM_004773','ZNHIT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',35277980,35287675,'NM_198844','ZPBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',15820599,15843731,'NM_001042697','ZSWIM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr17',3854487,3993002,'NM_015113','ZZEF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',17484855,17538764,'NM_138340','ABHD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',45563871,45594249,'NM_006111','ACAA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',894943,902173,'NM_001099733','ADCYAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',75967902,75999219,'NM_014913','ADNP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',12318942,12367275,'NM_006796','AFG3L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',54299461,54447169,'NM_052947','ALPK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',9127560,9275983,'NM_001204056','ANKRD12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',14169095,14217049,'NR_040113','ANKRD20A5P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',19433975,19496847,'NM_173505','ANKRD29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',14738238,14842737,'NM_001145029','ANKRD30B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',10444624,10478698,'NM_153000','APCDD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',22686004,22696573,'NM_004028','AQP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',6824431,6905712,'NM_001010000','ARHGAP28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',29412538,29581397,'NM_030632','ASXL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',41918107,41932285,'NM_004046','ATP5A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',53464656,53621325,'NM_005603','ATP8B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',74930384,75239270,'NM_198531','ATP9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',27456206,27518684,'NM_004775','B4GALT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',58941558,59137593,'NM_000633','BCL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',52965290,52968637,'NR_033372','BOD1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',13208785,13642753,'NM_181481','C18orf1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',32630031,32663156,'NM_015476','C18orf10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',5226722,5228028,'NR_026849','C18orf18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',13653345,13716591,'NM_152352','C18orf19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31806585,31813248,'NM_001201476','C18orf21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',42007985,42100953,'NM_001008239','C18orf25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',50409387,50417722,'NM_173629','C18orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',45261545,45267642,'NM_001199346','C18orf32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',28771363,29274043,'NM_001105528','C18orf34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',5133671,5187255,'NM_001145194','C18orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',19129976,19271923,'NM_032933','C18orf45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',50139168,50162402,'NM_173529','C18orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',69966725,69977184,'NM_014177','C18orf55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',639619,648340,'NM_001012716','C18orf56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',71250814,71268577,'NM_001037331','C18orf62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',70134089,70177402,'NM_001174123','C18orf63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',19337459,19365742,'NM_013326','C18orf8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',18968525,19094432,'NR_023359','CABLES1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',19972952,19995562,'NM_153768','CABYR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',68354894,68362703,'NM_182511','CBLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',2642168,2645394,'NR_033754','CBX3P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',55249150,55515624,'NM_133459','CCBE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',64616296,64873406,'NM_024781','CCDC102B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',46007561,46046863,'NM_145020','CCDC11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',8707368,8822775,'NM_015210','CCDC165'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',50719737,50776277,'NM_001143829','CCDC68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',65681172,65775212,'NM_006566','CD226'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',62322300,62422196,'NM_021153','CDH19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',23784927,24011443,'NM_001792','CDH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',57308754,57373345,'NM_031891','CDH20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',61569136,61699154,'NM_004361','CDH7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',33077005,33399998,'NM_020180','CELF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',12981360,13115051,'NM_032142','CEP192'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',12662630,12692703,'NM_024899','CEP76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',570368,571524,'NM_004066','CETN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',11841388,11844448,'NM_020412','CHMP1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',22749592,23019287,'NM_031422','CHST9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',22699269,22769908,'NR_026908','CHST9-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',12244359,12267594,'NR_036468','CIDEA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',606699,640293,'NM_199167','CLUL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',70352671,70403241,'NM_032649','CNDP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',70314479,70341669,'NM_018235','CNDP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',309354,490729,'NM_130386','COLEC12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',55113615,55136861,'NM_181654','CPLX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',18247561,18251876,'NM_172241','CTAGE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',75540788,75615498,'NM_048368','CTDP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',44319424,44643584,'NM_014772','CTIF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',14467953,14488705,'NR_024076','CXADRP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',46062710,46068690,'NM_014593','CXXC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',70071506,70110231,'NM_148923','CYB5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',48120539,49316271,'NM_005215','DCC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',3486029,3835358,'NM_001003809','DLGAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',65219263,65667302,'NM_152721','DOK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',26963211,26996817,'NM_024421','DSC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',26899939,26936386,'NM_004949','DSC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',26824049,26876779,'NM_001941','DSC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',63324798,63334947,'NM_032160','DSEL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',27152049,27191391,'NM_001942','DSG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',27332024,27382812,'NM_001943','DSG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',27281729,27312663,'NM_001944','DSG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',27210737,27247878,'NM_177986','DSG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',30652244,30725806,'NM_001198944','DTNA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',44824169,45241077,'NM_017653','DYM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',46748384,46768488,'NM_018696','ELAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31963834,32008686,'NM_018255','ELP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',2837027,2904090,'NM_032048','EMILIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',660323,702517,'NM_202758','ENOSF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',5382387,5533986,'NM_012307','EPB41L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',41681571,41801303,'NM_020964','EPG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',17363259,17434691,'NM_052911','ESCO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',28097481,28304445,'NM_022751','FAM59A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',70253942,70275483,'NM_001044369','FAM69C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',69891567,69966080,'NM_001142958','FBXO15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',53363070,53404967,'NM_000140','FECH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',32131699,32614016,'NM_025135','FHOD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',3584111,3587377,'NR_024101','FLJ35776'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31488530,31545796,'NM_020474','GALNT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',73090995,73111084,'NM_001480','GALR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',18003413,18036225,'NM_005257','GATA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',11741561,11873144,'NM_002071','GNAL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',17076200,17356789,'NM_001142966','GREB1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',55038379,55048982,'NM_002091','GRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',41938295,41962297,'NM_138443','HAUS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',42887778,42930869,'NM_032124','HDHD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59767567,59778625,'NM_001123366','HMSD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',20294590,20313919,'NM_021624','HRH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',75825569,75831811,'NM_001136180','HSBP1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',42935410,42956743,'NM_016097','IER3IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',11971426,12020885,'NM_014214','IMPA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',20260606,20287492,'NM_018439','IMPACT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31302288,31331953,'NM_001098817','INO80C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',42780784,42882612,'NM_031303','KATNAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',37314233,37354559,'NR_002838','KC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',75724655,75760804,'NM_012283','KCNG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',22288871,22382498,'NM_001142730','KCTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59145950,59185486,'NM_002035','KDSR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',32663077,33059286,'NM_020776','KIAA1328'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',58005503,58125335,'NM_020854','KIAA1468'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',28506631,28606972,'NM_020805','KLHL14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',5944704,6404910,'NM_173464','L3MBTL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',6931742,7107813,'NM_005559','LAMA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',19523559,19789027,'NM_001127717','LAMA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59898222,59967240,'NR_027245','LINC00305'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',1258311,1349630,'NR_023927','LINC00470'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',45342424,45373276,'NM_006033','LIPG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',55146035,55177488,'NM_005570','LMAN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',6501414,6580652,'NM_001243517','LOC100130480'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',76006797,76030607,'NR_028339','LOC100130522'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',72635675,72663239,'NR_040024','LOC100131655'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',8350817,8357032,'NR_024419','LOC100192426'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',47172409,47342837,'NR_040074','LOC100287225'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',13409497,13417533,'NR_040031','LOC100288122'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',51901584,51955765,'NR_040025','LOC100505474'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',53448531,53487506,'NM_001242804','LOC100505549'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',67338179,67397172,'NR_038325','LOC100505776'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',69143155,69168104,'NR_038340','LOC100505817'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',42796728,42798605,'NM_001242907','LOC100506888'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',27376106,27390872,'NR_045216','LOC100652770'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',3868179,3887069,'NR_038895','LOC201477'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',4254601,4286000,'NR_036489','LOC284215'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',14327421,14332523,'NR_026756','LOC284233'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',72369599,72400772,'NR_015417','LOC284276'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59922304,60241807,'NR_033881','LOC284294'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',5228098,5236505,'NR_015389','LOC339290'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',71963940,71986198,'NR_040034','LOC339298'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',54853950,54871426,'NR_024021','LOC390858'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',6915472,6919868,'NR_034100','LOC400643'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',60031297,60078270,'NR_033983','LOC400654'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',68972272,69082713,'NR_034133','LOC400655'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',70409989,70416051,'NR_024484','LOC400657'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',63334762,63717836,'NR_033921','LOC643542'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',15303554,15315918,'NR_027417','LOC644669'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',5738817,5785900,'NR_038839','LOC645355'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',35040885,35585957,'NR_024391','LOC647946'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',2933212,2936621,'NR_026659','LOC727896'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',22521582,22537600,'NR_024259','LOC728606'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',20462143,20496160,'NR_040033','LOC729950'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',42310932,42353047,'NM_001173129','LOXHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',2906991,3001945,'NM_014646','LPIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',7221136,7222042,'NM_001105581','LRRC30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',54489597,54568350,'NM_006785','MALT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',46340481,46512194,'NM_002747','MAPK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',30812205,30976376,'NM_001143827','MAPRE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',46049213,46062142,'NM_001204142','MBD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',49931968,50005156,'NM_003927','MBD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',72819776,72858043,'NM_002385','MBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',13872042,13905535,'NM_000529','MC2R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',56189543,56190981,'NM_005912','MC4R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',13815542,13816861,'NM_005913','MC5R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',27593656,27594841,'NM_001034172','MCART2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',46659429,46730160,'NM_002396','ME2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',28023984,28054364,'NM_005925','MEP1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',2527523,2561489,'NM_022840','METTL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',46954917,46978049,'NM_016626','MEX3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',17575542,17704910,'NM_020774','MIB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',17662962,17663047,'NR_029662','MIR1-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',54269285,54269370,'NR_029667','MIR122'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',17659656,17659744,'NR_029675','MIR133A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',45267740,45267790,'NR_031720','MIR1539'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31738778,31738887,'NR_029616','MIR187'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',26132873,26132924,'NR_031684','MIR302F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',14820164,14820241,'NR_036153','MIR3156-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',17517468,17517556,'NR_031565','MIR320C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',20155647,20155697,'NR_031724','MIR320C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',54269291,54269364,'NR_039899','MIR3591'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31425698,31425768,'NR_039771','MIR3975'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',5830693,5830832,'NR_039772','MIR3976'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',6364359,6364424,'NR_036205','MIR4317'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',33491095,33491176,'NR_036202','MIR4318'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',40804044,40804129,'NR_036203','MIR4319'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',45906866,45906931,'NR_036204','MIR4320'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',13601112,13601199,'NR_039752','MIR4526'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',51297449,51297527,'NR_039754','MIR4529'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',18767309,18767399,'NR_039895','MIR4741'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',44450960,44451050,'NR_039897','MIR4743'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',44830054,44830136,'NR_039898','MIR4744'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',32021477,32102683,'NM_017947','MOCOS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',11873471,11898796,'NR_040243','MPPE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',46575487,46600432,'NM_001127176','MRO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',3237527,3246234,'NM_006471','MYL12A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',3252716,3268282,'NM_001144945','MYL12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',45603153,45975449,'NM_001080467','MYO5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',3056804,3210106,'NM_019856','MYOM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',10515872,10542766,'NM_003826','NAPG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',53418891,53440175,'NM_004539','NARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',2561509,2606634,'NM_006101','NDC80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',9092627,9124343,'NM_021074','NDUFV2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',53967562,54219752,'NM_001144965','NEDD4L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',68560528,68685790,'NM_001201465','NETO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',75256759,75390311,'NM_006162','NFATC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',29685061,30057513,'NM_001198546','NOL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',19365460,19420579,'NM_000271','NPC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',53253914,53309528,'NM_004852','ONECUT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',19996008,20106194,'NM_018030','OSBPL1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',76016105,76106388,'NM_032510','PARD6G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',58533651,58798646,'NM_194449','PHLPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',42644019,42751493,'NM_004671','PIAS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',10660243,11138761,'NM_022068','PIEZO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',57862437,58005269,'NM_176787','PIGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',37789196,37915444,'NM_002647','PIK3C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',55718171,55722518,'NM_021127','PMAIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',50049846,50078602,'NM_007195','POLI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',14501736,14533599,'NM_001137671','POTEC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',9536791,9604600,'NM_001042388','PPP4R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',75763407,75812641,'NM_001146345','PQLC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',21967813,22027317,'NM_144662','PSMA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',12692986,12715739,'NM_020232','PSMG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',41817499,41906248,'NM_024430','PSTPIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',12775476,12874334,'NM_080423','PTPN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',7557313,8396859,'NM_002845','PTPRM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',8599442,8629380,'NM_001025300','RAB12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',50646705,50713745,'NM_004163','RAB27B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',9698227,9852553,'NM_006868','RAB31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',9465529,9528106,'NM_006788','RALBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',55085246,55091605,'NM_013435','RAX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',18767292,18860447,'NM_002894','RBBP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',75895333,75911640,'NM_001171967','RBFA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',19286784,19317097,'NM_003831','RIOK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',38577189,38949655,'NM_002930','RIT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',27852442,27907152,'NM_017831','RNF125'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',27926566,27965522,'NM_001191324','RNF138'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',57633283,57711284,'NM_173557','RNF152'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',42168184,42294781,'NM_152470','RNF165'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',13716703,13754554,'NM_003799','RNMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',16783700,16945810,'NM_005406','ROCK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',99064,112222,'NR_033770','ROCK1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',45268848,45272832,'NM_001199344','RPL17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',45261545,45272933,'NM_001199356','RPL17-C18ORF32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31823789,31901371,'NM_018170','RPRD1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',65822020,66023942,'NM_173630','RTTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',74841262,74859181,'NM_171999','SALL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',45594390,45594811,'NR_003003','SCARNA17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',54958104,54977043,'NM_033280','SEC11C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',12937982,12977536,'NM_031216','SEH1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59733724,59753456,'NM_005024','SERPINB10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59521173,59542102,'NM_080475','SERPINB11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59374372,59385224,'NM_080474','SERPINB12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59405513,59417413,'NM_012397','SERPINB13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59705918,59722104,'NM_001143818','SERPINB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59473410,59480177,'NM_006919','SERPINB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59455472,59462482,'NM_002974','SERPINB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59295123,59323298,'NM_002639','SERPINB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59571256,59623583,'NM_001040147','SERPINB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59788242,59807588,'NM_002640','SERPINB8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',40514860,40902473,'NM_015559','SETBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',41659542,41676519,'NM_213602','SIGLEC15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',46155389,46174536,'NM_001039535','SKA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',41558089,41586483,'NM_001128588','SLC14A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',41448763,41517058,'NM_007163','SLC14A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31944960,31963355,'NM_001099406','SLC39A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',12397894,12422236,'NM_006553','SLMO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',43613463,43711513,'NM_001135937','SMAD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',46810580,46865409,'NM_005359','SMAD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',44700220,44731079,'NM_005904','SMAD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',2645885,2795015,'NM_015295','SMCHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',50002651,50002780,'NR_002970','SNORA37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',45271650,45271715,'NR_002571','SNORD58A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',45272031,45272097,'NR_002572','SNORD58B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',45269602,45269692,'NR_003701','SNORD58C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',17446257,17464206,'NM_006938','SNRPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',66107116,66148414,'NM_004232','SOCS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',12436510,12647912,'NM_020148','SPIRE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',21850214,21924609,'NM_005637','SS18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',53170718,53187159,'NM_015879','ST8SIA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',42513078,42591037,'NM_013305','ST8SIA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',50105059,50134941,'NM_139171','STARD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',39101854,39111613,'NM_020783','SYT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',22060406,22225647,'NM_005640','TAF4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',42812940,42815986,'NM_016427','TCEB3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',42802655,42804532,'NM_145653','TCEB3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',42796728,42798369,'NM_001100817','TCEB3CL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',51040559,51406858,'NM_001243230','TCF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',3441590,3448406,'NM_173210','TGIF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',204519,258059,'NM_005131','THOC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',5880183,5882103,'NM_001080209','TMEM200C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',64491904,64533333,'NM_019022','TMX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',58143527,58204484,'NM_003839','TNFRSF11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',27663133,27777089,'NM_014939','TRAPPC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',71051718,71130889,'NM_005786','TSHZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',19848381,19854260,'NM_001243425','TTC39C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',27425727,27432984,'NM_000371','TTR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',12298256,12316568,'NM_032525','TUBB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',9324764,9392418,'NM_020648','TWSG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',9875722,9878156,'NM_032243','TXNDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',52421050,52456918,'NM_004786','TXNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',75833854,75849520,'NM_006701','TXNL4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',647603,663499,'NM_001071','TYMS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',148482,203739,'NM_005151','USP14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',9903954,9950018,'NM_194434','VAPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',59207404,59240732,'NM_004869','VPS4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',28345623,28348595,'NR_003558','WBP11P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',52469613,52848034,'NM_015285','WDR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',711591,802327,'NM_005433','YES1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',71038265,71050269,'NM_175907','ZADH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',43807636,43917678,'NM_001039360','ZBTB7C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',58341637,58396798,'NM_017742','ZCCHC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',5279017,5285701,'NM_001243702','ZFP161'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',72665103,72811670,'NM_007345','ZNF236'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31166175,31178424,'NM_006965','ZNF24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31124233,31144728,'NR_024566','ZNF271'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31200658,31211299,'NM_145756','ZNF396'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31074991,31092395,'NM_032347','ZNF397'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',70471906,70906616,'NM_017757','ZNF407'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',72198624,72336134,'NM_014643','ZNF516'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',14065988,14122489,'NR_033354','ZNF519'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',20895885,21186212,'NM_015461','ZNF521'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',54681040,54804689,'NM_018181','ZNF532'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr18',31085020,31124194,'NM_001112734','ZSCAN30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63549983,63556677,'NM_130786','A1BG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63555147,63558361,'NR_015380','A1BG-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',991101,1016570,'NM_019112','ABCA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17263939,17275282,'NM_024527','ABHD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6257509,6284640,'NM_133492','ACER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11546474,11550801,'NM_001111036','ACP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55985483,55990293,'NM_033068','ACPT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6086709,6144112,'NM_030924','ACSBG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8668750,8670172,'NM_178525','ACTL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43830106,43913011,'NM_004924','ACTN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8551125,8581588,'NM_030957','ADAMTS10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1456016,1464188,'NM_213604','ADAMTSL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1856416,1864446,'NM_138422','ADAT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45889273,45914630,'NM_024876','ADCK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3003907,3013371,'NM_198970','AES'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15325331,15351612,'NM_005858','AKAP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15351858,15390833,'NM_014371','AKAP8L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55064108,55072424,'NM_001098633','AKT1S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45428063,45483142,'NM_001243028','AKT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54648284,54666117,'NM_153329','ALDH16A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41191862,41196981,'NM_198867','ALKBH6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6323443,6326261,'NM_032306','ALKBH7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2200112,2203072,'NM_000479','AMH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8335010,8345257,'NM_139314','ANGPTL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10064012,10074425,'NM_031917','ANGPTL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17253453,17259454,'NM_152363','ANKLE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4134350,4175811,'NM_133475','ANKRD24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',37779746,37857942,'NM_032139','ANKRD27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17295031,17306638,'NM_020959','ANO8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16169664,16207156,'NM_032493','AP1M1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10544346,10558991,'NM_005498','AP1M2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54961991,55002181,'NM_014203','AP2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52033262,52046043,'NM_021575','AP2S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2051993,2102556,'NM_003938','AP3D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3701770,3712673,'NM_004886','APBA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1401147,1424243,'NM_005883','APC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41051240,41062539,'NM_005166','APLP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50109760,50114446,'NM_001645','APOC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50121899,50126483,'NR_028413','APOC1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50141078,50144662,'NM_000483','APOC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50137334,50140593,'NM_001646','APOC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50137334,50144662,'NR_037932','APOC4-APOC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50100878,50104490,'NM_000041','APOE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40958256,40971564,'NM_052948','ARHGAP33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52113772,52200173,'NM_004491','ARHGAP35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47079106,47103444,'NM_004706','ARHGEF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7410573,7443371,'NM_001130955','ARHGEF18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',877036,923803,'NM_005224','ARID3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19005386,19029987,'NM_033415','ARMC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17972943,17985911,'NM_001025604','ARRDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4841448,4853879,'NM_001080523','ARRDC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14091320,14108440,'NM_018154','ASF1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12709305,12720137,'NM_004317','ASNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55706668,55708954,'NM_001114598','ASPDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3831617,3879080,'NM_033064','ATCAY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55124211,55129005,'NM_001193646','ATF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10515646,10525094,'NM_032885','ATG4D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19617009,19635503,'NM_020410','ATP13A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47162573,47190222,'NM_152296','ATP1A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40732934,40746400,'NM_000704','ATP4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1192748,1195824,'NM_001687','ATP5D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46629062,46637683,'NM_018035','ATP5SL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1733073,1763270,'NM_138813','ATP8B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62434188,62438728,'NM_003160','AURKC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46416947,46459511,'NM_021913','AXL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',778830,783017,'NM_001700','AZU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17766918,17785385,'NM_014256','B3GNT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46623103,46626475,'NM_198540','B3GNT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46552161,46561918,'NM_030578','B9D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17239231,17251162,'NM_001033549','BABAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54149928,54156331,'NM_004324','BAX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52415918,52426291,'NM_014417','BBC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50004177,50016518,'NM_005581','BCAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53990130,54006132,'NM_001190','BCAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46595533,46622750,'NM_000709','BCKDHA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54860210,54868985,'NM_138639','BCL2L12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49943817,49955141,'NM_005178','BCL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12724406,12730271,'NM_017682','BEST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58484665,58486687,'NM_033341','BIRC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50373842,50376898,'NM_212550','BLOC1S3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45645530,45663565,'NM_000713','BLVRB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15209300,15252262,'NM_058243','BRD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60487345,60515715,'NM_032430','BRSK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',522324,534493,'NM_198591','BSG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53163114,53187239,'NM_001128326','BSPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17374754,17377384,'NM_004335','BST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1936446,1966702,'NM_017797','BTBD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4608556,4621415,'NM_019107','C19orf10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',34881632,34897803,'NM_001031726','C19orf12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63161616,63177714,'NM_152474','C19orf18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',35125264,35198453,'NM_003796','C19orf2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',458496,470654,'NM_033513','C19orf20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',702145,715318,'NM_173481','C19orf21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',847502,864225,'NM_138774','C19orf22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1218469,1221259,'NR_027271','C19orf23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1226519,1230243,'NM_017914','C19orf24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1424199,1430228,'NM_152482','C19orf25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1180946,1188990,'NM_152769','C19orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3489262,3508571,'NM_021731','C19orf28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3561626,3577813,'NM_001080543','C19orf29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3558244,3564928,'NR_038865','C19orf29-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43486643,43487486,'NM_033520','C19orf33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1903525,1905548,'NR_033400','C19orf34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2225630,2233181,'NM_198532','C19orf35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10820105,10841360,'NM_001136482','C19orf38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11346382,11348627,'NM_175871','C19orf39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38154987,38159800,'NM_152266','C19orf40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16617958,16631968,'NM_024104','C19orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12702453,12706529,'NM_024038','C19orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16468204,16493163,'NM_032207','C19orf44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7468444,7479336,'NM_198534','C19orf45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41185841,41191512,'NM_001039876','C19orf46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45518810,45546133,'NM_178830','C19orf47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55992772,55999786,'NM_199249','C19orf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18529571,18541197,'NM_001171949','C19orf50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60361842,60369830,'NM_178837','C19orf51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10900423,10901916,'NM_138358','C19orf52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13746256,13750586,'NM_014047','C19orf53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45938600,45947668,'NM_198476','C19orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40940883,40951917,'NM_001039887','C19orf55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12639880,12641465,'NM_016145','C19orf56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13854167,13877909,'NM_024323','C19orf57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7647942,7650719,'NM_174918','C19orf59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',960649,972141,'NM_033420','C19orf6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18560494,18564147,'NM_001100418','C19orf60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55671547,55678420,'NM_175063','C19orf63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10057805,10064928,'NM_018381','C19orf66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46640902,46642510,'NM_001130514','C19orf69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5629432,5631911,'NM_205767','C19orf70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3490154,3495028,'NM_001135580','C19orf71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54313465,54314209,'NM_018111','C19orf73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56452775,56464394,'NM_173635','C19orf75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54883753,54886059,'NM_001101340','C19orf76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3425404,3431540,'NM_001136503','C19orf77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7600670,7602510,'NR_033242','C19orf79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11211294,11213619,'NM_018687','C19orf80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55844513,55854379,'NM_001195076','C19orf81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',356442,360170,'NM_001136263','C2CD4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6628845,6671662,'NM_000064','C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10013031,10045813,'NR_027300','C3P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52504943,52517167,'NM_001736','C5AR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53833083,53841263,'NM_001217','CA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53224451,53239123,'NM_019855','CABP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13178256,13478274,'NM_001174080','CACNA1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59187353,59207732,'NM_031897','CACNG6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59107802,59138781,'NM_031896','CACNG7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59158101,59185281,'NM_031895','CACNG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48818361,48835831,'NM_145296','CADM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51796351,51805879,'NM_005184','CALM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12910413,12916304,'NM_004343','CALR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16450874,16468003,'NM_145046','CALR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7566787,7589196,'NM_020902','CAMSAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43912671,43926954,'NM_144691','CAPN12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41322757,41333095,'NM_001749','CAPNS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5865192,5867222,'NM_004058','CAPS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53403154,53444916,'NM_014959','CARD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10843252,10894448,'NM_199141','CARM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15021290,15030103,'NM_012114','CASP14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43518282,43553429,'NM_021185','CATSPERG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49972965,49995743,'NM_012116','CBLC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13877955,13902693,'NM_017721','CC2D1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14982538,14995083,'NM_173482','CCDC105'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60850765,60856338,'NM_013301','CCDC106'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53491520,53515144,'NM_144577','CCDC114'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17906904,17915794,'NM_138442','CCDC124'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13719752,13735106,'NM_030818','CCDC130'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11392271,11406980,'NM_145045','CCDC151'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54583286,54613068,'NM_144688','CCDC155'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11318180,11326620,'NM_001080503','CCDC159'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51190178,51213714,'NM_001080402','CCDC61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51605425,51608759,'NM_032040','CCDC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52451570,52467050,'NM_015603','CCDC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4198110,4220085,'NM_018074','CCDC94'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46507933,46522628,'NM_052848','CCDC97'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8023645,8033547,'NM_005624','CCL25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',34994740,35007055,'NM_001238','CCNE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48549664,48559320,'NM_020406','CD177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7710879,7718464,'NM_001144895','CD209'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40511911,40530104,'NM_001185100','CD22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8273010,8279240,'NM_016579','CD320'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56420146,56435086,'NM_001082618','CD33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54530488,54535673,'NM_001774','CD37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50601306,50605864,'NM_012099','CD3EAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6536849,6542163,'NM_001252','CD70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47073029,47077279,'NM_001783','CD79A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14352955,14380537,'NM_078481','CD97'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',482732,493087,'NM_004359','CDC34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10362808,10375271,'NM_007065','CDC37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59668021,59676234,'NM_145057','CDC42EP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10538137,10540655,'NM_079421','CDKN2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47703297,47724501,'NM_001205344','CEACAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49894260,49905826,'NM_001039213','CEACAM16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56671649,56678423,'NM_001080405','CEACAM18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49866563,49879467,'NM_020219','CEACAM19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49702050,49725388,'NM_001102598','CEACAM20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46774370,46785037,'NM_001098506','CEACAM21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49732884,49751990,'NR_027754','CEACAM22P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46992373,47007431,'NM_001815','CEACAM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46817183,46825282,'NM_001817','CEACAM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46904369,46926277,'NM_004363','CEACAM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46951237,46967953,'NM_002483','CEACAM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46869074,46883936,'NM_006890','CEACAM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47776234,47790922,'NM_001816','CEACAM8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38482679,38485270,'NM_004364','CEBPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38556448,38565432,'NM_001806','CEBPG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3176482,3248073,'NR_033342','CELF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38061743,38154709,'NM_032816','CEP89'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18840360,18867953,'NM_021267','CERS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8180216,8233304,'NM_024552','CERS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',810664,814610,'NM_001928','CFD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54217938,54219405,'NM_000737','CGB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54230637,54232003,'NM_033377','CGB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54226941,54228307,'NM_033378','CGB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54238913,54240380,'NM_033043','CGB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54249342,54250809,'NM_033142','CGB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54242706,54244180,'NM_033183','CGB8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4353659,4394394,'NM_005483','CHAF1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16489699,16514263,'NM_006387','CHERP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63754744,63758298,'NM_014453','CHMP2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38804712,38956254,'NM_001127896','CHST8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16133178,16145286,'NM_054113','CIB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47480656,47491789,'NM_015125','CIC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19510073,19518468,'NM_153221','CILP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1220266,1225809,'NR_023312','CIRBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50501510,50518073,'NM_001824','CKM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50234137,50266054,'NM_007056','CLASRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44913734,44920508,'NM_001828','CLC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56562163,56564069,'NM_152353','CLDND2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55918416,55920793,'NM_002975','CLEC11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14554895,14582956,'NM_207390','CLEC17A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7699842,7703057,'NM_001244856','CLEC4G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7758369,7761898,'NR_002931','CLEC4GP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7734034,7740491,'NM_001144909','CLEC4M'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41197401,41215413,'NM_001199570','CLIP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6312462,6319915,'NM_006012','CLPP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50150438,50188444,'NM_001294','CLPTM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47583010,47586284,'NM_032488','CNFN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11510578,11522138,'NM_001299','CNN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',977297,990064,'NM_201277','CNN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59333247,59351258,'NM_014516','CNOT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45419954,45424437,'NM_024877','CNTD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9931236,9982147,'NM_015719','COL5A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18754582,18763114,'NM_000095','COMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18871322,18891199,'NM_199444','COPE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40830964,40841526,'NM_001863','COX6B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60552881,60557994,'NM_144613','COX6B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41333663,41335611,'NM_001864','COX7A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16864761,16998625,'NM_015692','CPAMD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54886176,54908800,'NM_001199753','CPT1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6415259,6418230,'NM_139161','CRB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4104628,4124048,'NM_032607','CREB3L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18565034,18578660,'NM_004750','CRLF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18655424,18754143,'NM_015321','CRTC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53016910,53038398,'NM_000554','CRX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1892160,1932336,'NM_001319','CSNK1G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56292674,56303459,'NM_145232','CTU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7895380,7897051,'NM_206833','CTXN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47624534,47638976,'NM_198477','CXCL17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46286207,46293939,'NM_000766','CYP2A13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46041282,46048192,'NM_000762','CYP2A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46073183,46080497,'NM_030589','CYP2A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46189043,46216141,'NM_000767','CYP2B6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46122009,46148405,'NR_001278','CYP2B7P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46312192,46326121,'NM_000774','CYP2F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46088570,46098253,'NR_040249','CYP2G1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46390954,46405284,'NM_030622','CYP2S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15884179,15906676,'NM_021187','CYP4F11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15644827,15668984,'NM_023944','CYP4F12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15849833,15869884,'NM_001082','CYP4F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15480335,15524128,'NM_173483','CYP4F22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15731143,15751798,'NR_033864','CYP4F24P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15612706,15632570,'NM_001199209','CYP4F3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15587028,15601447,'NM_007253','CYP4F8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53664276,53677383,'NM_017457','CYTH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51842708,51856235,'NM_145056','DACT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12941431,12946567,'NM_152654','DAND5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3909451,3920826,'NM_001348','DAPK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1358583,1386682,'NM_170711','DAZAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53825628,53832451,'NM_001352','DBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13924318,13933256,'NM_138353','DCAF15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17281336,17295106,'NM_024050','DDA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14380609,14391195,'NM_005804','DDX39A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18891483,18900442,'NM_019070','DDX49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47394591,47413653,'NM_133328','DEDD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6418217,6432798,'NM_024898','DENND1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54128750,54140038,'NM_014475','DHDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12647530,12653701,'NM_013406','DHPS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52544377,52577795,'NM_014681','DHX34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2665564,2672390,'NM_145173','DIRAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51405338,51409934,'NR_027003','DKFZp434J0226'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',36332622,36333151,'NR_026894','DKFZp566F0947'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54558798,54570185,'NM_001197302','DKKL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44681396,44690961,'NM_016941','DLL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40679958,40696400,'NM_001190347','DMKN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50964815,50977655,'NM_001081562','DMPK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47040925,47048237,'NM_001040283','DMRTC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50978103,50987900,'NM_004943','DMWD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14486581,14490201,'NM_006145','DNAJB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12847024,12853335,'NM_001375','DNASE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10689728,10803586,'NM_001005362','DNM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10105021,10166755,'NM_001130823','DNMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11170970,11234157,'NM_020812','DOCK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3441818,3451621,'NM_031304','DOHH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2115147,2183577,'NM_032482','DOT1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43393488,43406730,'NM_001135155','DPF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4626243,4674855,'NM_139159','DPP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58827121,58832075,'NM_001012728','DPRX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',37588861,37668639,'NM_207325','DPY19L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5736152,5742249,'NM_020175','DUS3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62354905,62370668,'NM_001012729','DUXA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45007829,45016681,'NM_006484','DYRK1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4180539,4188524,'NM_005755','EBI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43997901,44014337,'NM_001398','ECH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11477730,11500987,'NM_001142464','ECSIT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3927053,3936461,'NM_001961','EEF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1237152,1252429,'NM_001405','EFNA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45997173,46006186,'NM_053046','EGLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52908412,52938203,'NM_014601','EHD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44721286,44722678,'NM_153232','EID2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44713469,44715334,'NM_152361','EID2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10086689,10091599,'NM_003755','EIF3G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43801561,43819435,'NM_013234','EIF3K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',803290,807246,'NM_001972','ELANE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7929456,7976529,'NM_001419','ELAVL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11423142,11452803,'NM_032281','ELAVL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18414472,18493937,'NM_006532','ELL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11524857,11531051,'NM_032377','ELOF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53189719,53220222,'NM_022142','ELSPBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50804497,50840615,'NM_001193268','EML2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53520440,53525622,'NM_001425','EMP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6838581,6891464,'NM_001974','EMR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14704204,14750353,'NM_152916','EMR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14591050,14646730,'NM_032571','EMR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6903510,6941857,'NR_024075','EMR4P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15198732,15204858,'NM_001142886','EPHX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60878372,60898945,'NM_013333','EPN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11348880,11356018,'NM_000121','EPOR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16333407,16443762,'NM_021235','EPS15L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60283571,60291103,'NM_017729','EPS8L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50602430,50619017,'NM_001166049','ERCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50546488,50565685,'NM_000400','ERCC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47443556,47451149,'NM_006494','ERF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58209155,58211645,'NM_152473','ERVV-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58239802,58246192,'NM_001191055','ERVV-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56540220,56561484,'NM_001985','ETFB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48702710,48723236,'NM_014297','ETHE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40824486,40827613,'NM_014209','ETV2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7801160,7835862,'NM_145245','EVI5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50407718,50429309,'NM_138568','EXOC3L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46584115,46595096,'NM_020158','EXOSC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16860825,16863830,'NM_003950','F2RL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1827974,1836518,'NM_031213','FAM108A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17391911,17397140,'NM_138401','FAM125A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17495109,17523835,'NM_001098524','FAM129C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',27219,28690,'NR_026820','FAM138F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40407543,40411468,'NM_152481','FAM187B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16157234,16163857,'NM_014077','FAM32A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55661856,55671815,'NM_138411','FAM71E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60558087,60566432,'NM_001145402','FAM71E2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53795668,53808506,'NM_017708','FAM83E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43585614,43591568,'NM_174905','FAM98C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12894283,12905558,'NM_004461','FARSA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45016932,45028894,'NM_001436','FBL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8036286,8118385,'NM_032447','FBN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9781942,9790731,'NM_017703','FBXL12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44123881,44135167,'NM_148169','FBXO17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44206502,44215038,'NM_178820','FBXO27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50905726,50925991,'NM_001080469','FBXO46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12660729,12668455,'NM_032301','FBXW9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60077360,60093651,'NM_133274','FCAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7659642,7670365,'NM_001207019','FCER2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45045802,45132373,'NM_003890','FCGBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54708247,54721497,'NM_004107','FCGRT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17723285,17760377,'NM_015122','FCHO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10281890,10287691,'NM_001031734','FDX1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4742727,4746571,'NM_018708','FEM1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40534284,40535207,'NM_005303','FFAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40632456,40634509,'NM_005306','FFAR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40541327,40543229,'NM_005304','FFAR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53951155,53953394,'NM_019113','FGF21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',590925,594604,'NM_020637','FGF22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60794548,60802705,'NM_032836','FIZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63028478,63030642,'NR_024162','FKBP1AP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18503567,18515383,'NM_012181','FKBP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51941142,51953672,'NM_001039885','FKRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7839604,7845326,'NM_001190467','FLJ22184'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16004285,16013918,'NR_024336','FLJ25328'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6955963,6957426,'NR_024372','FLJ25758'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55245748,55261864,'NR_027257','FLJ26850'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56786847,56789445,'NR_034159','FLJ30403'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',148015,153209,'NR_028324','FLJ45445'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54669629,54681300,'NM_001204503','FLT3LG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50663092,50670277,'NM_001114171','FOSB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51059357,51068895,'NM_004497','FOXA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56940834,56946962,'NM_001193306','FPR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56958453,56965591,'NM_001462','FPR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56990222,57021146,'NM_002030','FPR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4255590,4274843,'NM_024333','FSD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',627388,634392,'NM_005860','FSTL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54160377,54161948,'NM_000146','FTL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53943079,53950459,'NM_000148','FUT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53891039,53901003,'NM_000511','FUT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5793898,5802485,'NM_000149','FUT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5816836,5821551,'NM_002034','FUT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5781636,5790742,'NM_000150','FUT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55001935,55008379,'NM_025129','FUZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40321571,40325794,'NM_021902','FXYD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40298571,40304409,'NM_001136010','FXYD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40337684,40352628,'NM_001164605','FXYD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40325993,40337045,'NM_022006','FXYD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3473953,3487755,'NM_001136197','FZR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2427122,2429257,'NM_015675','GADD45B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12925971,12929050,'NM_052850','GADD45GIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61379200,61388956,'NM_001145546','GALP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1348087,1352552,'NM_000156','GAMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40716153,40728061,'NM_014364','GAPDHS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19357641,19480741,'NM_017660','GATAD2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12862973,12871783,'NM_000159','GCDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18840360,18867953,'NM_001492','GDF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18357967,18360986,'NM_004864','GDF15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50274369,50286622,'NM_024707','GEMIN7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43566831,43570508,'NM_152657','GGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14449570,14467944,'NM_005716','GIPC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3536568,3544539,'NM_133261','GIPC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50863341,50877557,'NM_000164','GIPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17527510,17554965,'NM_024656','GLT25D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52803264,52898346,'NM_015711','GLTSCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52940604,52952135,'NM_015710','GLTSCR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44510838,44518566,'NM_004877','GMFG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19601284,19615455,'NM_016573','GMIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3045407,3072454,'NM_002067','GNA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3087190,3114766,'NM_002068','GNA15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2462217,2653746,'NM_052847','GNG7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51829172,51829779,'NM_033258','GNG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60216886,60241444,'NM_016363','GP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38263625,38313158,'NM_018025','GPATCH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39547484,39585158,'NM_001184722','GPI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6680924,6688633,'NM_001080452','GPR108'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55965669,55966740,'NM_001506','GPR32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50784862,50797306,'NM_005282','GPR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52532210,52537112,'NM_018485','GPR77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1054935,1057787,'NM_001039847','GPX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40183085,40209213,'NM_020895','GRAMD1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47194312,47261797,'NM_002088','GRIK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53589943,53640000,'NM_000836','GRIN2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',951436,960723,'NM_138690','GRIN3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53640841,53648976,'NM_031485','GRWD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47426177,47438576,'NM_019884','GSK3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6330579,6344291,'NM_002096','GTF2F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17309325,17314540,'NM_032620','GTPBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54163193,54188422,'NM_001161587','GYS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',495026,500919,'NM_005317','GZMM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40465249,40467885,'NM_021175','HAMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19227450,19234596,'NM_023002','HAPLN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56908176,56919033,'NM_001523','HAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40795485,40808091,'NM_015302','HAUS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17021570,17047343,'NM_033417','HAUS8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',540892,568159,'NM_001194','HCN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41085221,41087013,'NM_001007469','HCST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4423254,4453222,'NM_032631','HDGFRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51498695,51538530,'NM_152794','HIF3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45577017,45587934,'NM_144685','HIPK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42517419,42547197,'NM_181786','HKR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3523942,3530081,'NM_006339','HMG20B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1018173,1037627,'NM_012292','HMHA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44018867,44032457,'NM_001533','HNRNPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8415802,8460002,'NM_005968','HNRNPM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46461959,46505651,'NM_007040','HNRNPUL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18901009,18913041,'NM_004838','HOMER3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12734816,12747434,'NM_013312','HOOK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40223249,40249317,'NM_182983','HPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54346267,54350493,'NM_002152','HRC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5632074,5639533,'NM_198708','HSD11B1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54008085,54031746,'NM_016246','HSD17B14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16105837,16130377,'NM_032855','HSH2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40937309,40939770,'NM_144617','HSPB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60465402,60483563,'NM_001130106','HSPBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10242516,10258291,'NM_000201','ICAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10305451,10311345,'NM_002162','ICAM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10258642,10260260,'NM_001544','ICAM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10261654,10268454,'NM_003259','ICAM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13122281,13126718,'NM_004907','IER2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18145578,18149927,'NM_006332','IFI30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51424848,51426340,'NM_198541','IGFL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51343339,51356401,'NM_001135113','IGFL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51315167,51319771,'NM_207393','IGFL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51234845,51236114,'NM_001002923','IGFL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40921990,40925191,'NM_024660','IGFLR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56506913,56525914,'NM_001101372','IGLON5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49808779,49831921,'NM_001205280','IGSF23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60567568,60573626,'NM_000641','IL11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18031370,18058697,'NM_005535','IL12RB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14003261,14025026,'NM_004843','IL27RA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44450996,44452572,'NM_172138','IL28A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44426111,44427451,'NM_172139','IL28B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44478804,44481152,'NM_172140','IL29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55084722,55124574,'NM_172374','IL4I1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10625936,10664095,'NM_012218','ILF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15086784,15097577,'NM_006844','ILVBL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17788321,17793320,'NM_005543','INSL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7063265,7245011,'NM_000208','INSR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51078705,51081216,'NM_015649','IRF2BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54854637,54860944,'NM_001197128','IRF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48912053,48916009,'NM_019612','IRGC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48780358,48792127,'NM_001007561','IRGQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60656156,60664861,'NM_001136201','ISOC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18406197,18410111,'NM_001170938','ISYNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3884100,3893414,'NM_170678','ITGB1BP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45914847,45938605,'NM_025194','ITPKC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53935956,53941978,'NM_182575','IZUMO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55347616,55358350,'NM_152358','IZUMO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2047867,2050583,'NM_001031735','IZUMO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17796592,17819841,'NM_000215','JAK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55701070,55706157,'NM_138334','JOSD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2203249,2207422,'NM_144616','JSRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12763309,12765125,'NM_002229','JUNB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18251562,18253432,'NM_005354','JUND'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11135942,11166266,'NM_015493','KANK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8293467,8314146,'NM_198471','KANK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54262486,54268010,'NM_031886','KCNA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55510576,55524446,'NM_004977','KCNC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53650577,53661179,'NM_013348','KCNJ14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43502323,43511489,'NM_004823','KCNK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17923110,17970930,'NM_002248','KCNN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48962524,48977249,'NM_002250','KCNN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38979590,38998506,'NM_024076','KCTD15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53577638,53586622,'NM_006801','KDELR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4920123,5104608,'NM_015015','KDM4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10457795,10475054,'NM_203500','KEAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6364118,6375822,'NM_003685','KHSRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39437295,39538311,'NM_014686','KIAA0355'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18228905,18246319,'NM_025249','KIAA1683'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59973076,59987590,'NM_014218','KIR2DL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',164599,179138,'NM_014219','KIR2DL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59941785,59956316,'NM_015868','KIR2DL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',199897,210812,'NM_001080770','KIR2DL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',229379,238844,'NM_020535','KIR2DL5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',229434,238935,'NM_001018081','KIR2DL5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',257787,271802,'NM_014512','KIR2DS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',274137,288434,'NM_012312','KIR2DS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',240823,255356,'NM_012313','KIR2DS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60035985,60051835,'NM_012314','KIR2DS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',240800,255821,'NM_014513','KIR2DS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60019704,60034045,'NM_013289','KIR3DL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60053709,60070482,'NM_006737','KIR3DL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59927795,59939815,'NM_153443','KIR3DL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',212785,227347,'NM_001083539','KIR3DS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59735720,59747007,'NR_026716','KIR3DX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41039649,41049888,'NM_199180','KIRREL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',868341,872015,'NM_032551','KISS1R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50535837,50546618,'NM_177417','KLC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12856236,12859017,'NM_006563','KLF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1803397,1814564,'NM_031918','KLF16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16296650,16299339,'NM_016270','KLF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18608837,18642302,'NM_018316','KLHL26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56014215,56018855,'NM_002257','KLK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56207811,56215094,'NM_002776','KLK10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56217298,56221684,'NM_001136032','KLK11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56224159,56229960,'NM_019598','KLK12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56251274,56260179,'NM_015596','KLK13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56272965,56279314,'NM_022046','KLK14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56020356,56026591,'NM_138564','KLK15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56068500,56075635,'NM_005551','KLK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56049982,56055832,'NM_001648','KLK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56101419,56105806,'NM_004917','KLK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56138370,56148156,'NM_012427','KLK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56153698,56164741,'NM_002774','KLK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56171546,56179132,'NM_001243126','KLK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56191075,56196770,'NM_144505','KLK8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56197580,56204702,'NM_012315','KLK9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56077163,56091466,'NR_002948','KLKP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52670211,52679333,'NM_007059','KPTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10524760,10537702,'NM_023008','KRI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40670065,40673273,'NM_001244847','KRTDAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59557046,59568533,'NM_002287','LAIR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59705824,59713712,'NM_021270','LAIR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11061037,11105505,'NM_001195799','LDLR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59351190,59355258,'NM_024316','LENG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59651876,59665008,'NM_052925','LENG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59664790,59666706,'NM_198988','LENG9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44959073,44968615,'NM_001143832','LEUTX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44785008,44789954,'NM_013268','LGALS13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44886785,44891928,'NM_020129','LGALS14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44838397,44843127,'NM_001190441','LGALS16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44861853,44868853,'NR_034156','LGALS17A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43984150,43995580,'NM_006149','LGALS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43953447,43955997,'NM_002307','LGALS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43971689,43974234,'NM_001042507','LGALS7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40307256,40318018,'NM_139284','LGI4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54211048,54212159,'NM_000894','LHB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53310514,53365372,'NM_000234','LIG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59796924,59804352,'NM_006863','LILRA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59777068,59790839,'NM_006866','LILRA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59491666,59496077,'NM_006865','LILRA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59536503,59542233,'NM_012276','LILRA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59510164,59516221,'NM_021250','LILRA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59432280,59438536,'NM_024318','LILRA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59820440,59840816,'NM_006669','LILRB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59469486,59476845,'NM_001080978','LILRB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59411958,59418771,'NM_001081450','LILRB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59865935,59871658,'NM_001081438','LILRB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59446081,59452979,'NM_006840','LILRB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59911412,59916699,'NR_003061','LILRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56574974,56583022,'NM_030657','LIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40931101,40937260,'NM_019104','LIN37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54309429,54313529,'NM_022165','LIN7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56888404,56900255,'NR_024330','LINC00085'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2240773,2259156,'NM_001101391','LINGO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47597505,47623418,'NM_005357','LIPE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2379163,2407958,'NM_032737','LMNB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53680339,53708258,'NM_001080434','LMTK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',24136834,24138089,'NR_003603','LOC100101266'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61681304,61698617,'NR_036522','LOC100128252'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63206073,63210386,'NR_036508','LOC100128398'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7443722,7444247,'NR_024491','LOC100128573'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40241802,40289048,'NR_024562','LOC100128675'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40588348,40599582,'NR_040046','LOC100128682'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56610971,56612491,'NR_033235','LOC100129083'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44821164,44824881,'NR_026870','LOC100129935'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39828617,39828797,'NR_045208','LOC100130342'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4630293,4636960,'NM_001242901','LOC100131094'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63762364,63777976,'NR_027334','LOC100131691'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41494084,41495410,'NR_029389','LOC100134317'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50836744,50837932,'NM_001242348','LOC100287177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1773087,1775542,'NR_034114','LOC100288123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48017854,48022870,'NR_036584','LOC100289650'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63033473,63049418,'NM_001204818','LOC100293516'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49301331,49309176,'NR_033341','LOC100379224'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46651913,46698394,'NR_040109','LOC100505495'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47328620,47333091,'NR_038332','LOC100505622'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52679350,52696666,'NR_038452','LOC100505681'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49087795,49097795,'NR_038334','LOC100505715'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53450743,53453262,'NR_040599','LOC100505812'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',34185301,34196702,'NR_040036','LOC100505835'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51675884,51796297,'NM_001205281','LOC100506012'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55033714,55046745,'NR_040037','LOC100506033'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51855460,51872553,'NR_040042','LOC100506068'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40723479,40728771,'NR_038396','LOC100506469'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41502457,41514460,'NR_038278','LOC100506930'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54621499,54623887,'NM_001195256','LOC100507003'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14108963,14143075,'NR_045214','LOC100507373'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42731690,42770088,'NR_038247','LOC100507433'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8345259,8361575,'NR_038237','LOC100507567'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43006202,43037676,'NR_040015','LOC100631378'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14044820,14046874,'NR_024282','LOC113230'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15987443,15999272,'NR_026828','LOC126536'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56583354,56585640,'NM_001193623','LOC147646'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61846338,61860426,'NM_001193628','LOC147670'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10623537,10625548,'NR_024333','LOC147727'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58627038,58639737,'NR_003148','LOC147804'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',34147877,34151895,'NR_027318','LOC148145'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',32973240,32976688,'NR_027301','LOC148189'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48407782,48444638,'NR_033888','LOC284344'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58794696,58798563,'NR_002938','LOC284379'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9593157,9606538,'NM_001242812','LOC284385'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',34469757,34708499,'NR_040029','LOC284395'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41980291,42010853,'NR_040027','LOC284408'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42448680,42451752,'NR_029390','LOC284412'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19728180,19748222,'NR_026956','LOC284440'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13806329,13808103,'NR_036515','LOC284454'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61596856,61602351,'NR_037159','LOC386758'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7849516,7851117,'NR_033250','LOC388499'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50934727,50954588,'NR_038267','LOC388553'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48772791,48778096,'NM_001193621','LOC390940'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',21458356,21477880,'NR_037194','LOC400680'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39998897,40015613,'NR_033982','LOC400685'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',22570898,22578192,'NR_033899','LOC440518'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',21725386,21728080,'NR_024523','LOC641367'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44091459,44094638,'NM_001243212','LOC643669'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39759477,39760436,'NR_027620','LOC643719'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41603915,41605639,'NR_033748','LOC644189'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42999890,43009118,'NR_040013','LOC644554'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7887031,7889980,'NM_001195259','LOC645781'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58476622,58480012,'NM_001195187','LOC646508'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63599268,63600258,'NM_001195135','LOC646862'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41672368,41673782,'NR_036504','LOC728752'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18221759,18227229,'NR_036575','LOC729966'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38485602,38487803,'NR_026887','LOC80054'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5642844,5671176,'NM_004793','LONP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19595465,19600039,'NM_004720','LPAR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14119548,14177997,'NM_014921','LPHN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11327061,11337374,'NM_001170635','LPPR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',763517,772952,'NM_024888','LPPR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44489296,44497816,'NM_020862','LRFN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41119861,41127937,'NM_024509','LRFN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4488226,4491036,'NM_052972','LRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38377438,38391613,'NM_002333','LRP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18362953,18369415,'NM_145256','LRRC25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55711961,55763114,'NM_001080457','LRRC4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50288270,50342383,'NM_019121','LRRC68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7859389,7872908,'NM_025061','LRRC8E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39355191,39412260,'NM_015578','LSM14A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18278716,18295001,'NM_012321','LSM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2272519,2279614,'NM_016199','LSM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40431398,40450707,'NM_205835','LSR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45794980,45827565,'NM_001042544','LTBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13070841,13074974,'NM_005583','LYL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48656785,48661671,'NM_014400','LYPD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47032989,47040348,'NM_173506','LYPD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48991918,49016648,'NM_182573','LYPD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',447489,456343,'NM_130762','MADCAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40474828,40496549,'NM_001199216','MAG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53908066,53912026,'NM_182574','MAMSTR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12618321,12638591,'NM_001173498','MAN2B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17691302,17706324,'NM_018174','MAP1S'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4041319,4075126,'NM_030662','MAP2K2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7874764,7885363,'NM_145185','MAP2K7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45389490,45413322,'NM_002446','MAP3K10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43770120,43800483,'NM_001042600','MAP4K1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8384186,8409899,'NM_016496','MARCH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50446355,50500381,'NM_031417','MARK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12810258,12846766,'NM_014975','MAST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18069602,18123499,'NM_015016','MAST3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3728966,3737415,'NM_139355','MATK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19292629,19330563,'NM_015329','MAU2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1527677,1543652,'NM_003926','MBD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8814268,8815016,'NM_145208','MBD3L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7000350,7002746,'NM_144614','MBD3L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7007215,7009645,'NM_001164425','MBD3L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6988754,6991184,'NM_001164419','MBD3L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6981593,6984022,'NM_001136507','MBD3L5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59368917,59385545,'NM_001146083','MBOAT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7493495,7504895,'NM_020533','MCOLN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',818961,844218,'NM_005481','MED16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55013347,55032049,'NM_030973','MED25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16546717,16600015,'NM_004831','MED26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44573802,44583043,'NM_017592','MED29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19117375,19142098,'NM_001145785','MEF2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19148712,19164400,'NM_001145784','MEF2BNB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19117375,19164400,'NR_027308','MEF2BNB-MEF2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47521600,47574761,'NM_001410','MEGF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52598194,52614597,'NM_020160','MEIS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1505667,1519057,'NM_203304','MEX3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63778577,63787574,'NR_026052','MGC2752'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56012748,56013946,'NR_038359','MGC45922'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45972921,45975238,'NM_001202553','MIA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45973281,45994689,'NR_037775','MIA-RAB4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1199551,1210142,'NM_177401','MIDN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',256574,295791,'NM_017550','MIER2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62044081,62051734,'NR_024059','MIMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10375133,10375214,'NR_031592','MIR1181'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2185060,2185148,'NR_031596','MIR1227'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10523797,10523880,'NR_031603','MIR1238'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56888318,56888404,'NR_029693','MIR125A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',20371079,20371162,'NR_036053','MIR1270-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',20371079,20371162,'NR_036264','MIR1270-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58883546,58883633,'NR_031573','MIR1283-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58953297,58953384,'NR_031696','MIR1283-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58867033,58867106,'NR_031568','MIR1323'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15421358,15421419,'NR_031716','MIR1470'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54695853,54695937,'NR_029703','MIR150'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13846512,13846622,'NR_029613','MIR181C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13846688,13846825,'NR_030179','MIR181D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1767157,1767237,'NR_031730','MIR1909'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10789101,10789172,'NR_029586','MIR199A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13808400,13808473,'NR_029495','MIR23A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13808100,13808173,'NR_029497','MIR24-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13808253,13808331,'NR_029501','MIR27A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',764583,764653,'NR_036154','MIR3187'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18253886,18253971,'NR_036155','MIR3188'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18358371,18358444,'NR_036156','MIR3189'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52422038,52422118,'NR_036158','MIR3190'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52422040,52422116,'NR_036159','MIR3191'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51904389,51904442,'NR_036157','MIR320E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50834091,50834185,'NR_029886','MIR330'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58982740,58982807,'NR_029864','MIR371'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58982742,58982808,'NR_039909','MIR371B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58982955,58983022,'NR_029865','MIR372'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58983770,58983839,'NR_029866','MIR373'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6367420,6367522,'NR_037505','MIR3940'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2201637,2201717,'NR_036207','MIR4321'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10202088,10202161,'NR_036206','MIR4322'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47329436,47329505,'NR_036208','MIR4323'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54503865,54503937,'NR_036209','MIR4324'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44592102,44592158,'NR_039755','MIR4530'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49848795,49848842,'NR_039756','MIR4531'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',755931,756023,'NR_039900','MIR4745'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4396974,4397045,'NR_039901','MIR4746'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4883698,4883752,'NR_039902','MIR4747'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10751929,10752011,'NR_039903','MIR4748'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55049652,55049729,'NR_039904','MIR4749'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55083239,55083306,'NR_039905','MIR4750'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55128132,55128206,'NR_039906','MIR4751'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59477775,59477847,'NR_039907','MIR4752'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63589948,63590037,'NR_039910','MIR4754'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58869262,58869386,'NR_030182','MIR498'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58861744,58861828,'NR_030180','MIR512-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58861738,58861836,'NR_030181','MIR512-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58874068,58874151,'NR_030184','MIR515-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58874068,58874151,'NR_030187','MIR515-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58951806,58951896,'NR_030220','MIR516A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58956198,58956288,'NR_030221','MIR516A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58931910,58932000,'NR_030212','MIR516B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58920507,58920592,'NR_030207','MIR516B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58907333,58907420,'NR_030201','MIR517A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58916141,58916208,'NR_030205','MIR517B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58936378,58936473,'NR_030214','MIR517C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58926071,58926156,'NR_030210','MIR518A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58934398,58934485,'NR_030213','MIR518A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58897802,58897885,'NR_030196','MIR518B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58903800,58903901,'NR_030199','MIR518C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58929942,58930029,'NR_030211','MIR518D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58924903,58924991,'NR_030209','MIR518E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58895080,58895167,'NR_030194','MIR518F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58947462,58947547,'NR_030218','MIR519A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58957409,58957496,'NR_030222','MIR519A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58890278,58890359,'NR_030191','MIR519B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58881534,58881621,'NR_030188','MIR519C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58908412,58908500,'NR_030202','MIR519D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58875005,58875089,'NR_030185','MIR519E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58885946,58886031,'NR_030189','MIR520A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58896292,58896353,'NR_030195','MIR520B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58902518,58902605,'NR_030198','MIR520C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58915161,58915248,'NR_030204','MIR520D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58870776,58870863,'NR_030183','MIR520E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58877224,58877311,'NR_030186','MIR520F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58917231,58917321,'NR_030206','MIR520G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58937577,58937665,'NR_030215','MIR520H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58943701,58943788,'NR_030216','MIR521-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58911659,58911746,'NR_030203','MIR521-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58946276,58946363,'NR_030217','MIR522'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58893450,58893537,'NR_030193','MIR523'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58906067,58906154,'NR_030200','MIR524'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58892598,58892683,'NR_030192','MIR525'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58901317,58901402,'NR_030197','MIR526A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58921987,58922052,'NR_030208','MIR526A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58889458,58889541,'NR_030190','MIR526B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58949083,58949168,'NR_030219','MIR527'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3912411,3912510,'NR_030367','MIR637'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10690079,10690179,'NR_030368','MIR638'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14501354,14501452,'NR_030369','MIR639'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45480289,45480388,'NR_030371','MIR641'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50870025,50870122,'NR_030372','MIR642A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50870029,50870106,'NR_037512','MIR642B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57476861,57476955,'NR_030373','MIR643'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4721681,4721791,'NR_029607','MIR7-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4720116,4723568,'NR_027148','MIR7-3HG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51214029,51214147,'NR_030412','MIR769'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59177372,59177463,'NR_030632','MIR935'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56887676,56887746,'NR_029843','MIR99B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56887850,56887929,'NR_029482','MIRLET7E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1988469,2002243,'NM_199054','MKNK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40900760,40921619,'NM_014727','MLL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6161391,6230959,'NM_005934','MLLT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2022034,2047269,'NM_130807','MOB3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4294523,4311083,'NM_032868','MPND'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18165039,18168550,'NM_032683','MPV17L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13736336,13746096,'NM_001031727','MRI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17277476,17278652,'NM_023937','MRPL34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10223639,10231721,'NM_146387','MRPL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3713664,3718563,'NM_172251','MRPL54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44113187,44115499,'NM_033362','MRPS12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8820519,8953018,'NM_024690','MUC16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1307322,1329430,'NR_024247','MUM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59062948,59071501,'NM_138373','MYADM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55627971,55661395,'NM_004533','MYBPC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55398696,55505613,'NM_024729','MYH14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8491673,8548331,'NM_012335','MYO1F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17047590,17185104,'NM_001130065','MYO9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51085120,51097702,'NM_001012643','MYPOP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63765095,63776754,'NM_198055','MZF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13090108,13112959,'NM_052876','NACC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51108312,51109876,'NM_001029861','NANOS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13849062,13852571,'NM_001098622','NANOS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52682702,52710327,'NM_003827','NAPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55553545,55560743,'NM_004851','NAPSA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55528868,55539817,'NR_002798','NAPSB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60688368,60690747,'NM_020378','NAT14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19183781,19224061,'NM_004386','NCAN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44379443,44384362,'NM_001001414','NCCRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3136874,3160573,'NM_020170','NCLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60109319,60116251,'NM_001145458','NCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5845680,5855024,'NM_175614','NDUFA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19488018,19500013,'NM_015965','NDUFA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59297971,59302093,'NM_004542','NDUFA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8282183,8292280,'NM_005001','NDUFA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14537889,14543889,'NM_004146','NDUFB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1334882,1346588,'NM_024407','NDUFS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3317572,3414603,'NM_005597','NFIC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12967583,13070610,'NM_002501','NFIX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44082179,44091374,'NM_001243116','NFKBIB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41070982,41083392,'NM_139239','NFKBID'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56566685,56567772,'NM_005601','NKG7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50344847,50355248,'NM_198478','NKPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60988574,61039940,'NM_145007','NLRP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58988666,59019460,'NM_144687','NLRP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61099122,61135514,'NM_176810','NLRP13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60169522,60204322,'NM_001174083','NLRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61039755,61085032,'NM_134444','NLRP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61202903,61264986,'NM_153447','NLRP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60126688,60150685,'NM_001127255','NLRP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61151009,61191807,'NM_176811','NLRP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60911609,60941580,'NM_176820','NLRP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54750779,54775615,'NM_015953','NOSIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15131443,15172792,'NM_000435','NOTCH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51134610,51168497,'NM_002516','NOVA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52215982,52240857,'NM_002517','NPAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41008113,41034735,'NM_004646','NPHS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55571496,55578079,'NM_007121','NR1H2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19173223,19175238,'NM_176880','NR2C2AP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17203693,17217151,'NM_005234','NR2F6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5774817,5779335,'NM_004558','NRTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54256208,54258936,'NM_006179','NTF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53856475,53868076,'NM_145807','NTN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54095118,54118352,'NM_006184','NUCB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',37874706,37896542,'NM_001105570','NUDT19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45863651,45888396,'NM_004756','NUMBL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55101893,55124800,'NM_016553','NUP62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16691786,16789774,'NM_001007525','NWD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17427233,17432725,'NM_138454','NXNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2220519,2224487,'NM_004152','OAZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17198054,17201028,'NM_024578','OCEL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',414345,425983,'NM_182577','ODF3L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9825393,9908070,'NM_058164','OLFM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1704661,1726444,'NM_001080488','ONECUT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50722864,50779962,'NM_001017989','OPA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15778816,15779936,'NM_013940','OR10H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15699833,15700862,'NM_013939','OR10H2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15713202,15714153,'NM_013938','OR10H3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15920817,15921768,'NM_001004465','OR10H4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15765858,15766806,'NM_001004466','OR10H5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15058876,15059944,'NM_001004713','OR1I1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9064920,9065862,'NM_001004456','OR1M1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8702390,8703335,'NM_001004699','OR2Z1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61678,62596,'NM_001005240','OR4F17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14812759,14813689,'NM_001005190','OR7A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14852237,14853167,'NM_030901','OR7A17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14798138,14800276,'NM_017506','OR7A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14770985,14771948,'NM_198944','OR7C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14913300,14914260,'NM_012377','OR7C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9157269,9160493,'NM_175883','OR7D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9185525,9186547,'NM_001005191','OR7D4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9222719,9223739,'NM_001079935','OR7E24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9086503,9087439,'NM_001005192','OR7G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9073944,9074982,'NM_001005193','OR7G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9097687,9098626,'NM_001001958','OR7G3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59289744,59295960,'NM_206818','OSCAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10083196,10087064,'NM_002566','P2RY11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44568109,44573519,'NM_019088','PAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47493024,47498769,'NM_001145939','PAFAH1B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44308259,44361886,'NM_005884','PAK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',659952,699330,'NM_001040134','PALM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14025178,14030971,'NM_001145028','PALM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44266784,44293968,'NM_001004318','PAPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19533515,19590725,'NM_025245','PBX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7602506,7604570,'NM_174895','PCP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1432426,1441407,'NM_017573','PCSK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39587142,39608912,'NM_032346','PDCD2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',37763933,37770198,'NM_004708','PDCD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10404110,10441307,'NM_001111309','PDE4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18179770,18220010,'NM_000923','PDE4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62013256,62043906,'NM_001146184','PEG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62015659,62016973,'NR_023847','PEG3-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38569694,38704639,'NM_000285','PEPD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7447760,7459905,'NM_080662','PEX11G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17483431,17493097,'NM_012088','PGLS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51214251,51218396,'NM_005091','PGLYRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15440456,15451315,'NM_052890','PGLYRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18312407,18341763,'NM_017712','PGPEP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48671094,48700825,'NM_198850','PHLDB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3958748,3989067,'NM_015897','PIAS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54641361,54646927,'NM_017916','PIH1D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18125015,18142343,'NM_005027','PIK3R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9806882,9821365,'NM_006221','PIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3581178,3651477,'NM_001195733','PIP5K1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14412085,14443679,'NM_213560','PKN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53242911,53305921,'NM_001159323','PLA2G4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5509177,5519005,'NR_027064','PLAC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48844562,48866338,'NM_002659','PLAUR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45546171,45576230,'NM_012268','PLD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54032165,54063696,'NM_020904','PLEKHA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',34848166,34858223,'NM_024310','PLEKHF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44595589,44610895,'NM_022835','PLEKHG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2184154,2187328,'NM_018049','PLEKHJ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4789345,4818780,'NM_001164194','PLIN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4453191,4468716,'NM_001080400','PLIN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4473543,4486208,'NM_001013706','PLIN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1475072,1486455,'NM_001243079','PLK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17323263,17349137,'NM_031310','PLVAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55056271,55062634,'NM_007254','PNKP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51661587,51666660,'NM_018215','PNMAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51686287,51691009,'NM_020709','PNMAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7506588,7532653,'NM_001166114','PNPLA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13902999,13925204,'NM_001146254','PODNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55579404,55613083,'NM_002691','POLD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1037577,1046391,'NM_002695','POLR2E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41296450,41298046,'NM_006233','POLR2I'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',568222,584568,'NM_005035','POLRMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',34789009,34800002,'NM_006627','POP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47285347,47328465,'NM_002698','POU2F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10077898,10082975,'NM_020230','PPAN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10077898,10087064,'NM_001198690','PPAN-P2RY11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',232043,242169,'NM_177543','PPAP2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54314474,54346092,'NM_003660','PPFIA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50693570,50697604,'NM_001080401','PPM1N'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60294092,60320739,'NM_017607','PPP1R12C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50574731,50601447,'NM_001142502','PPP1R13L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43433716,43439071,'NM_001243947','PPP1R14A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54067460,54071131,'NM_014330','PPP1R15A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57384866,57421490,'NM_014225','PPP2R1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51542090,51586072,'NM_006247','PPP5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60432958,60461850,'NM_014931','PPP6R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8460939,8473538,'NM_032152','PRAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12768633,12773694,'NM_005809','PRDX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48545047,48545540,'NR_026881','PRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14063506,14085992,'NM_207518','PRKACA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59077278,59102713,'NM_002739','PRKCG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11407268,11422782,'NM_002743','PRKCSH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51869412,51909417,'NM_001079882','PRKD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54872220,54883516,'NR_033397','PRMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40982731,40996041,'NM_021232','PRODH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59310601,59326962,'NM_015629','PRPF31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54786723,54821508,'NM_020719','PRR12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47498123,47506813,'NM_199285','PRR19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5733970,5735776,'NM_001134316','PRR22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52469498,52470820,'NR_037675','PRR24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54776398,54786077,'NM_000951','PRRG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',636545,646461,'NM_214710','PRSS57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',791984,799175,'NM_002777','PRTN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45591510,45611111,'NM_020956','PRX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40928333,40929743,'NM_172341','PSENEN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48062452,48075711,'NM_001184825','PSG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48032988,48051710,'NR_026824','PSG10P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48203648,48222471,'NM_001113410','PSG11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48260201,48278733,'NM_031246','PSG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47917633,47936508,'NM_021016','PSG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48388693,48401630,'NM_002780','PSG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48363734,48382528,'NM_001130014','PSG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48099607,48113829,'NM_002782','PSG6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48120123,48133170,'NM_002783','PSG7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47948678,47961671,'NM_001130168','PSG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48449274,48465522,'NM_002784','PSG9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45168912,45179193,'NM_153001','PSMC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43557029,43566304,'NM_002812','PSMD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6326304,6326860,'NM_004158','PSPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',748391,763327,'NM_002819','PTBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14444277,14447174,'NM_000955','PTGER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51815564,51820194,'NM_000960','PTGIR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54617482,54618510,'NM_178449','PTH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55046227,55055811,'NM_017432','PTOV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60384426,60412686,'NM_001161440','PTPRH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5156518,5291814,'NM_002850','PTPRS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49838937,49861268,'NM_001135769','PVR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50041232,50074038,'NM_002856','PVRL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50887580,50899088,'NM_001163377','QPCTL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10673111,10685043,'NM_031209','QTRT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8361204,8375317,'NM_004218','RAB11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18168610,18175874,'NM_002866','RAB3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11293721,11311344,'NM_004283','RAB3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45975963,45994689,'NM_016154','RAB4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45975963,46006186,'NR_037791','RAB4B-EGLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16083489,16105445,'NM_005370','RAB8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47152672,47155368,'NM_006423','RABAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12917653,12925455,'NM_005053','RAD23A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5867151,5929320,'NM_007320','RANBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15423437,15436382,'NM_022904','RASAL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43591537,43608785,'NM_001146203','RASGRP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53915653,53935782,'NM_017805','RASIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10287888,10305314,'NM_133452','RAVER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3720088,3723219,'NM_032753','RAX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40811819,40820427,'NM_024321','RBM42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54722686,54738702,'NM_020650','RCN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60247503,60266397,'NM_001145971','RDH13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9984924,9993954,'NM_015725','RDH8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1442164,1448924,'NM_138393','REEP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50196546,50233296,'NM_006509','RELB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7639971,7641340,'NM_001193374','RETN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1766244,1799452,'NM_020695','REXO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60962318,60966353,'NM_001145014','RFPL4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13933341,13978134,'NM_002918','RFX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5944174,6061664,'NM_000635','RFX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19164007,19173678,'NM_134440','RFXANK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11365731,11391018,'NM_001161616','RGL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',37858152,37861046,'NM_207391','RGS9BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38161337,38247664,'NM_033103','RHPN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44050311,44060759,'NM_198445','RINL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14000016,14002783,'NM_080864','RLN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12778427,12785462,'NM_006397','RNASEH2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',598525,614233,'NM_194460','RNF126'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54682676,54687376,'NM_012423','RPL13A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54682676,54686908,'NR_026712','RPL13AP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53810399,53814245,'NM_000979','RPL18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17831730,17835124,'NM_000980','RPL18A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60589111,60595263,'NM_001136134','RPL28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5641271,5642678,'NM_033643','RPL36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54691445,54694756,'NM_001015','RPS11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1389362,1391492,'NM_001018','RPS15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44615686,44618458,'NM_001020','RPS16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47055827,47067324,'NM_001022','RPS19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8292383,8293280,'NM_001031','RPS28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63590447,63597983,'NM_001009','RPS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59396537,59403327,'NM_001013','RPS9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',23737655,23802759,'NR_003662','RPSAP58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54830363,54835212,'NM_006270','RRAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50990807,51010445,'NM_030785','RSPH6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12797295,12807230,'NM_031429','RTBDN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50680389,50688314,'NM_206901','RTN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54188967,54210994,'NM_006666','RUVBL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43616179,43770044,'NM_000540','RYR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10193108,10202948,'NM_004230','S1PR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3129735,3131330,'NM_003775','S1PR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10484417,10489126,'NM_030760','S1PR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52325919,52405733,'NM_005500','SAE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5574045,5619489,'NM_001201338','SAFB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5538009,5573938,'NM_014649','SAFB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14060228,14062232,'NM_138352','SAMD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44524947,44567377,'NM_018028','SAMD4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44097743,44113376,'NM_001145901','SARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60732911,60740247,'NM_001101401','SBK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1058632,1125282,'NM_014963','SBNO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40706108,40711093,'NM_001166035','SBSN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54837193,54853718,'NM_021228','SCAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1856372,1877012,'NM_079834','SCAMP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39776185,39777330,'NM_001025591','SCGBL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40213431,40217014,'NM_199037','SCN1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41177929,41179060,'NM_001042631','SDHAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53833107,53877314,'NR_004401','SEC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44697592,44703166,'NM_182704','SELV'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4493599,4510771,'NM_032108','SEMA6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52973653,52979755,'NM_003009','SEPW1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45620248,45623772,'NM_013376','SERTAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45638587,45642122,'NM_203344','SERTAD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2187815,2199678,'NM_007165','SF3A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60743834,60748721,'NM_001199824','SGK110'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2705711,2734354,'NM_003021','SGTA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6703172,6718523,'NM_005490','SH2D3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4311363,4351415,'NM_001199944','SH3GL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55856895,55912007,'NM_016148','SHANK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',367582,411996,'NM_012435','SHC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4229597,4241720,'NM_020209','SHD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60631916,60646042,'NM_001145176','SHISA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45774596,45789145,'NM_138392','SHKBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56605086,56612869,'NM_001171161','SIGLEC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55144061,55156241,'NM_052884','SIGLEC11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56686424,56695459,'NM_033329','SIGLEC12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56837617,56841944,'NM_001098612','SIGLEC14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55164723,55170888,'NR_002825','SIGLEC16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56806592,56825539,'NM_003830','SIGLEC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56714595,56726922,'NM_001245','SIGLEC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56337369,56348595,'NM_014385','SIGLEC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56646062,56653520,'NM_014442','SIGLEC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56319948,56325379,'NM_014441','SIGLEC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56362396,56368592,'NR_002804','SIGLECP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16801208,16852164,'NM_015260','SIN3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43089707,43390848,'NM_015073','SIPA1L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44061034,44082342,'NM_001193286','SIRT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4125105,4133596,'NM_001193285','SIRT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50959882,50964337,'NM_175875','SIX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54624466,54636620,'NM_020309','SLC17A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51969979,51983682,'NM_005628','SLC1A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14921990,14944730,'NM_005071','SLC1A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6391074,6410781,'NM_024103','SLC25A23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6377047,6384790,'NM_173637','SLC25A41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19035802,19084704,'NM_178526','SLC25A42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17442299,17477977,'NM_198580','SLC27A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63701511,63715244,'NM_012254','SLC27A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16521647,16544193,'NM_024881','SLC35E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2683522,2691074,'NM_144564','SLC39A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10574120,10616235,'NM_001145056','SLC44A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17843781,17866983,'NM_000453','SLC5A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54484703,54520286,'NM_014037','SLC6A16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38391409,38408596,'NM_019849','SLC7A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38013258,38052523,'NM_001243036','SLC7A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52623090,52667119,'NM_015063','SLC8A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10955827,11033958,'NM_001128847','SMARCA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48927140,48950982,'NM_019108','SMG9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7891866,7894136,'NR_030717','SNAPC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53113497,53113619,'NR_004435','SNAR-A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024229','SNAR-A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024225','SNAR-A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53102746,53102868,'NR_004437','SNAR-A12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53102746,53102868,'NR_024216','SNAR-A13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024242','SNAR-A14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53113497,53113619,'NR_004436','SNAR-A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024214','SNAR-A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024215','SNAR-A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024223','SNAR-A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024227','SNAR-A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024224','SNAR-A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024228','SNAR-A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53118847,53118968,'NR_024226','SNAR-A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55328813,55328933,'NR_024231','SNAR-B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55328813,55328933,'NR_024230','SNAR-B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53108119,53108239,'NR_024220','SNAR-C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53108119,53108239,'NR_024217','SNAR-C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53145364,53145483,'NR_024221','SNAR-C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53134609,53134729,'NR_024218','SNAR-C4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53108119,53108239,'NR_024219','SNAR-C5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55335270,55335389,'NR_024243','SNAR-D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52025681,52025801,'NR_024258','SNAR-E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55800031,55800154,'NR_004384','SNAR-F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54232088,54232216,'NR_004383','SNAR-G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54226737,54226856,'NR_024244','SNAR-G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17834396,17834529,'NR_000012','SNORA68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10079326,10079411,'NR_004381','SNORD105'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10081424,10081516,'NR_003688','SNORD105B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52950921,52951031,'NR_003048','SNORD23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54685034,54685116,'NR_000021','SNORD32A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54685685,54685768,'NR_000020','SNORD33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54685975,54686041,'NR_000019','SNORD34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54686243,54686329,'NR_000018','SNORD35A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54692787,54692874,'NR_001285','SNORD35B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3933504,3933570,'NR_002602','SNORD37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12678262,12678332,'NR_002751','SNORD41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55994507,55994604,'NR_003067','SNORD88A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55994097,55994194,'NR_003068','SNORD88B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55997393,55997490,'NR_003069','SNORD88C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54280276,54303682,'NM_003089','SNRNP70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45948598,45963137,'NM_004596','SNRPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50882551,50887283,'NM_177542','SNRPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53801811,53802783,'NM_133498','SPACA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11118830,11127484,'NM_182513','SPC24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53820020,53825475,'NM_001204160','SPHK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55614006,55626121,'NM_001243998','SPIB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43446937,43475094,'NM_001166103','SPINT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2279628,2306100,'NM_152988','SPPL2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43572778,43576956,'NM_001039616','SPRED3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45664965,45774205,'NM_020971','SPTBN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48808092,48810490,'NM_001145641','SRRM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18391145,18406372,'NM_032627','SSBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60691681,60707503,'NM_001195267','SSC5D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4275039,4289847,'NM_017720','STAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1156797,1179434,'NM_000455','STK11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51914607,51941560,'NM_001039877','STRN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13116223,13121987,'NM_003765','STX10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7607990,7618759,'NM_001127396','STXBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19248321,19292321,'NM_172231','SUGP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18962696,19005380,'NM_014884','SUGP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53065534,53081466,'NM_003167','SULT2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53747240,53794496,'NM_177973','SULT2B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44628025,44659148,'NM_001130824','SUPT5H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60543032,60551301,'NM_032701','SUV420H2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12870893,12891086,'NM_001105578','SYCE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44385401,44386746,'NM_001080468','SYCN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15079213,15086789,'NM_033025','SYDE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',51010539,51058388,'NM_004819','SYMPK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53559462,53571446,'NM_012451','SYNGR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55817045,55834904,'NM_001160329','SYT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60376280,60383532,'NM_003180','SYT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59265012,59276446,'NM_001135686','TARM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55072493,55083819,'NM_024682','TBC1D17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41297727,41308689,'NM_001281','TBCB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3545503,3557831,'NM_201636','TBXA2R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1560288,1601286,'NM_001136139','TCF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',37902518,37973554,'NM_001110822','TDRD12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54535666,54557526,'NM_003598','TEAD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14501378,14537792,'NM_138501','TECR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48610874,48614607,'NM_001130011','TEX101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59302131,59310867,'NM_013342','TFPT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46528651,46551671,'NM_000660','TGFB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41217726,41237504,'NM_152658','THAP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',313056,327009,'NM_016585','THEG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',36775026,36775785,'NM_001205273','THEG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2736505,2764599,'NM_003249','THOP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4766937,4782737,'NM_182919','TICAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2376621,2378875,'NM_012458','TIMM13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7897602,7914708,'NM_006351','TIMM44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44662891,44673368,'NM_001001563','TIMM50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3679373,3701682,'NM_014428','TJP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2948635,2980612,'NM_001144762','TLE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2928535,2946182,'NM_001143986','TLE6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19236173,19245074,'NM_001001524','TM6SF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59355645,59368756,'NM_001145303','TMC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10804113,10807983,'NM_006858','TMED1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53527427,53558998,'NM_018273','TMEM143'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47509316,47521054,'NM_173633','TMEM145'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5671687,5729742,'NM_152784','TMEM146'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40728341,40730269,'NM_032635','TMEM147'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60516038,60528520,'NM_001085488','TMEM150B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52241006,52243722,'NM_017854','TMEM160'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19091429,19110267,'NM_017814','TMEM161A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60580015,60581424,'NM_139172','TMEM190'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11314451,11317981,'NM_001145416','TMEM205'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17407317,17420376,'NM_001190844','TMEM221'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60582423,60587439,'NM_001190764','TMEM238'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16632937,16660816,'NM_024074','TMEM38A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18584681,18592849,'NM_012109','TMEM59L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60429813,60432444,'NM_173804','TMEM86B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',46574277,46581827,'NM_001098824','TMEM91'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4243224,4253428,'NM_144615','TMIGD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2340783,2377086,'NM_182973','TMPRSS9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4591028,4606580,'NM_001167942','TNFAIP8L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6614147,6621599,'NM_003807','TNFSF14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6482009,6486939,'NM_003811','TNFSF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60354947,60360912,'NM_000363','TNNI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60335972,60352418,'NM_001126133','TNNT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12671007,12694105,'NM_013433','TNPO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50086316,50098786,'NM_006114','TOMM40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',16039316,16074813,'NM_001145160','TPM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52996311,52998673,'NM_198479','TPRX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62566690,62568533,'NR_002166','TRAPPC2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7651706,7653748,'NM_001042462','TRAPPC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50358025,50373325,'NM_024108','TRAPPC6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63747647,63753894,'NM_005762','TRIM28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6690706,6702529,'NM_004240','TRIP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13076713,13088463,'NM_017722','TRMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54352827,54406910,'NM_001195227','TRPM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59385930,59390206,'NM_024075','TSEN34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',36457690,36532030,'NM_020856','TSHZ3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54934822,54958327,'NM_021733','TSKS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11267823,11298672,'NM_012466','TSPAN16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19486027,19487469,'NM_032037','TSSK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45413804,45416146,'NM_152479','TTC9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59618416,59639711,'NM_020659','TTYH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6445329,6453330,'NM_006087','TUBB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',54076033,54093808,'NM_003323','TULP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10322203,10352248,'NM_003331','TYK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41087142,41091051,'NM_001173515','TYROBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40925267,40928176,'NM_144987','U2AF1L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60857227,60877894,'NM_007279','U2AF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39611107,39652638,'NM_005499','UBA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18543613,18549270,'NM_003333','UBA52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63758890,63762155,'NM_003969','UBE2M'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60604461,60611137,'NM_014501','UBE2S'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9799567,9801797,'NM_024292','UBL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4396002,4408791,'NM_025241','UBXN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15800756,15807230,'NR_015379','UCA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',4861565,4913165,'NM_013282','UHRF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17573136,17660008,'NM_001080421','UNC13A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',18803743,18840039,'NM_002911','UPF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40849554,40861207,'NM_007000','UPK1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',1548153,1556483,'NM_006830','UQCR11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',34390006,34395976,'NM_006003','UQCRFS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17187154,17191638,'NM_018467','USE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40451735,40462558,'NM_207291','USF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',17221848,17236544,'NM_031941','USHBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62323320,62335105,'NM_020903','USP29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50702527,50722080,'NM_003370','VASP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',6723721,6808371,'NM_005428','VAV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5855851,5861263,'NM_001017921','VMAC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62658353,62659919,'NM_020633','VN1R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58453356,58454667,'NM_173856','VN1R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58461824,58462730,'NM_173857','VN1R4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55171535,55220617,'NM_016440','VRK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56526606,56537190,'NM_001163922','VSIG10L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',59235891,59259019,'NM_198481','VSTM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',34709330,34747066,'NM_001146339','VSTM2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11950,21966,'NR_033266','WASH5P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',935327,945569,'NM_024100','WDR18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41237622,41287852,'NM_173636','WDR62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12638617,12647646,'NR_029375','WDR83'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43067311,43089157,'NM_031951','WDR87'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',38314837,38358543,'NM_173479','WDR88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',15393317,15421762,'NM_021241','WIZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39664719,39683925,'NM_001080436','WTIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7590410,7600439,'NM_020196','XAB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48739303,48771570,'NM_006297','XRCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',43486039,43498446,'NM_001039672','YIF1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10894443,10900357,'NM_024029','YIPF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19500669,19509393,'NM_198537','YJEFN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40895669,40899780,'NM_014383','ZBTB32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63716708,63722733,'NM_032792','ZBTB45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3996215,4017816,'NM_015898','ZBTB7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52259286,52308849,'NM_015168','ZC3H4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49522545,49552696,'NM_013380','ZFP112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41517194,41561945,'NM_020917','ZFP14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61742128,61759982,'NM_020828','ZFP28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42815228,42838153,'NM_014898','ZFP30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',44589326,44591885,'NM_003407','ZFP36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41574700,41601390,'NM_133466','ZFP82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',3755021,3820027,'NM_015174','ZFR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',10276478,10281233,'NM_001103167','ZGLP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62787439,62795570,'NM_001010879','ZIK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61977739,62043909,'NM_015363','ZIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62337275,62348382,'NM_052882','ZIM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',21698682,21742270,'NM_173531','ZNF100'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19640662,19652138,'NM_033204','ZNF101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',53466465,53482675,'NM_153608','ZNF114'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9537291,9556209,'NM_001008727','ZNF121'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63635992,63643401,'NM_003433','ZNF132'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62817641,62825448,'NM_003435','ZNF134'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63262418,63272922,'NM_003436','ZNF135'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12134871,12161064,'NM_003437','ZNF136'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57791748,57795217,'NR_023311','ZNF137P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19682280,19704921,'NM_021030','ZNF14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41397343,41421515,'NM_001099639','ZNF146'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62903621,62912391,'NM_001085384','ZNF154'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49180194,49194317,'NM_198089','ZNF155'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58261678,58298499,'NM_001102603','ZNF160'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62614340,62625119,'NM_006959','ZNF17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',56766342,56784803,'NM_007147','ZNF175'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9347991,9354293,'NM_001172651','ZNF177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49671698,49696414,'NM_013256','ZNF180'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39917319,39925614,'NM_001145665','ZNF181'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12103167,12112222,'NM_021143','ZNF20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',21940736,21985585,'NM_007153','ZNF208'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62836346,62845959,'NM_198855','ZNF211'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49147236,49163592,'NM_013359','ZNF221'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49221333,49229102,'NM_013360','ZNF222'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49248003,49263982,'NM_013361','ZNF223'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49290321,49304319,'NM_013398','ZNF224'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49309387,49329095,'NM_013362','ZNF225'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49361054,49371422,'NM_001146220','ZNF226'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49408530,49433261,'NM_182490','ZNF227'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49622265,49644505,'NM_014518','ZNF229'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49198916,49209912,'NM_006300','ZNF230'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49455906,49471310,'NM_181756','ZNF233'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49337549,49356302,'NM_006630','ZNF234'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49482340,49501018,'NM_004234','ZNF235'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19837713,19865293,'NM_021047','ZNF253'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',24061815,24104494,'NM_203282','ZNF254'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63144012,63150889,'NM_005773','ZNF256'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',22027105,22065743,'NM_033468','ZNF257'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41693428,41711088,'NM_001166036','ZNF260'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62394679,62426026,'NM_003417','ZNF264'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9384270,9407234,'NM_198058','ZNF266'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63386207,63416739,'NM_016325','ZNF274'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57992472,58016734,'NR_036599','ZNF28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49023312,49044890,'NM_181845','ZNF283'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49268136,49283463,'NM_001037813','ZNF284'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49581647,49597617,'NM_152354','ZNF285'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',50266597,50271528,'NM_145288','ZNF296'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40109646,40127916,'NM_001099438','ZNF30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39860406,39869142,'NM_018443','ZNF302'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62554456,62563077,'NM_020657','ZNF304'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9112055,9135091,'NM_020933','ZNF317'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58071236,58086411,'NM_207333','ZNF320'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58122199,58137659,'NR_037805','ZNF321P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63670223,63676757,'NM_014347','ZNF324'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63654782,63661011,'NM_207395','ZNF324B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63329506,63353960,'NM_024620','ZNF329'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58715988,58775335,'NM_018555','ZNF331'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',14661869,14692772,'NM_032433','ZNF333'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42034392,42062317,'NM_001242476','ZNF345'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58333768,58354134,'NM_001172675','ZNF347'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57159404,57181891,'NM_021632','ZNF350'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7487003,7491911,'NM_018083','ZNF358'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41788060,41811339,'NM_032825','ZNF382'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42409205,42426414,'NM_152604','ZNF383'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49068354,49076128,'NM_001033719','ZNF404'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8481461,8485048,'NM_001146175','ZNF414'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58302943,58327983,'NM_001164309','ZNF415'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62774745,62782055,'NM_017879','ZNF416'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63108953,63119790,'NM_152475','ZNF417'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63125063,63138552,'NM_133460','ZNF418'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62690890,62697860,'NM_001098496','ZNF419'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42261221,42312491,'NM_144689','ZNF420'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9499680,9510303,'NM_024106','ZNF426'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48803215,48815854,'NM_182498','ZNF428'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',21480276,21512919,'NM_001001415','ZNF429'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',21779591,21810810,'NM_003423','ZNF43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',20995265,21034692,'NM_001172671','ZNF430'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',21116679,21160645,'NM_133473','ZNF431'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57228488,57243885,'NM_014650','ZNF432'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11986531,12007525,'NM_001080411','ZNF433'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11837843,11841306,'NM_152262','ZNF439'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12243624,12266714,'NM_001164276','ZNF44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11786106,11807016,'NM_152357','ZNF440'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11738814,11755893,'NM_152355','ZNF441'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12321184,12337475,'NM_030824','ZNF442'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12401519,12412926,'NM_005815','ZNF443'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61344367,61364074,'NM_018337','ZNF444'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63679606,63684409,'NM_017908','ZNF446'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',49108615,49131251,'NM_003425','ZNF45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62483664,62497248,'NM_006635','ZNF460'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41820122,41849579,'NM_153257','ZNF461'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58033596,58052714,'NM_199132','ZNF468'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61770701,61786074,'NM_001001668','ZNF470'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61711023,61732081,'NM_020813','ZNF471'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',55221023,55243843,'NM_015428','ZNF473'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57492237,57520986,'NM_144684','ZNF480'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',20139082,20169984,'NM_052852','ZNF486'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12547919,12582623,'NM_020714','ZNF490'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11770390,11780306,'NM_152356','ZNF491'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',22608965,22642312,'NM_020855','ZNF492'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',21371760,21383441,'NM_145326','ZNF493'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63557534,63566026,'NM_198458','ZNF497'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19764519,19793560,'NM_001145404','ZNF506'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',37528353,37570413,'NM_001136156','ZNF507'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60803541,60806316,'NM_153219','ZNF524'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58560779,58581653,'NR_003699','ZNF525'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47416331,47424193,'NM_133444','ZNF526'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42553898,42575806,'NM_032453','ZNF527'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57592932,57613469,'NM_032423','ZNF528'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41762994,41788018,'NR_027239','ZNF529'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62803064,62811449,'NM_020880','ZNF530'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57626478,57634511,'NM_001143939','ZNF534'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',35555167,35740805,'NM_014717','ZNF536'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42734147,42796840,'NM_152606','ZNF540'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',52715758,52750925,'NM_001101419','ZNF541'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61571301,61583008,'NR_033418','ZNF542'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62523676,62533956,'NM_213598','ZNF543'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63431881,63466820,'NM_014480','ZNF544'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45194782,45215354,'NM_178544','ZNF546'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62566702,62582737,'NM_173631','ZNF547'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62593029,62605731,'NM_001172773','ZNF548'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62730504,62744056,'NM_001199295','ZNF549'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62750154,62759537,'NM_001039654','ZNF550'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62885168,62892981,'NM_138347','ZNF551'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63010261,63018093,'NM_024762','ZNF552'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2770871,2787733,'NM_001102651','ZNF554'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2792432,2811472,'NM_152791','ZNF555'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2818332,2829501,'NM_024967','ZNF556'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',7020470,7038978,'NM_024341','ZNF557'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',8781381,8794565,'NM_144693','ZNF558'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9295447,9315521,'NM_032497','ZNF559'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9296370,9354293,'NM_001202425','ZNF559-ZNF177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9438030,9470279,'NM_152476','ZNF560'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9579001,9592916,'NM_152289','ZNF561'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9620337,9646776,'NM_017656','ZNF562'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12289303,12305534,'NM_145276','ZNF563'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12497183,12523356,'NM_144976','ZNF564'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41365026,41397406,'NM_152477','ZNF565'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41627860,41672177,'NM_032838','ZNF566'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41872141,41904065,'NM_152603','ZNF567'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42099070,42180674,'NM_001204839','ZNF568'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42593899,42650179,'NM_152484','ZNF569'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2851895,2869474,'NM_173480','ZNF57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42651821,42668082,'NM_144694','ZNF570'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42746994,42777513,'NM_016536','ZNF571'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42921042,42962070,'NM_001172689','ZNF573'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',47272129,47277560,'NM_022752','ZNF574'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48729179,48732124,'NM_174945','ZNF575'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',48792383,48796427,'NM_024327','ZNF576'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57050867,57083001,'NR_024181','ZNF577'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57648640,57711943,'NM_001099694','ZNF578'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60780702,60784023,'NM_152600','ZNF579'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60845274,60846648,'NM_001163423','ZNF580'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60846797,60848801,'NM_016535','ZNF581'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61586459,61596701,'NM_144690','ZNF582'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61607505,61628212,'NM_152478','ZNF583'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63611874,63621504,'NM_173548','ZNF584'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42332840,42355455,'NM_152655','ZNF585A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42364320,42393291,'NM_152279','ZNF585B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62972831,62983796,'NM_001204814','ZNF586'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63052992,63068303,'NM_032828','ZNF587'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',39940818,39955974,'NM_001007248','ZNF599'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57960559,57981846,'NM_198457','ZNF600'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63180252,63206526,'NM_025027','ZNF606'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42879103,42901929,'NM_001172677','ZNF607'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57531309,57562188,'NM_001161425','ZNF610'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57897877,57924947,'NM_030972','ZNF611'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57122499,57140823,'NM_024840','ZNF613'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57208388,57223492,'NM_025040','ZNF614'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57186398,57203295,'NM_198480','ZNF615'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57309464,57335003,'NM_178523','ZNF616'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12116708,12128546,'NR_037801','ZNF625'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12103167,12128546,'NR_037802','ZNF625-ZNF20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',20619348,20636242,'NM_145297','ZNF626'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11569234,11590974,'NM_145295','ZNF627'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60679510,60687666,'NM_033113','ZNF628'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57084299,57100117,'NM_023074','ZNF649'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11455241,11477738,'NM_138783','ZNF653'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58358363,58388431,'NM_024733','ZNF665'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61642504,61680582,'NM_022103','ZNF667'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62922930,62930807,'NM_024833','ZNF671'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',23627547,23661857,'NM_138330','ZNF675'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',22153742,22171593,'NM_001001411','ZNF676'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58430449,58449923,'NM_182609','ZNF677'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',23713836,23733533,'NM_138286','ZNF681'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19976226,20011277,'NM_033196','ZNF682'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11859669,11886365,'NM_021915','ZNF69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9266985,9276795,'NM_198535','ZNF699'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11896899,11922578,'NM_144566','ZNF700'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57765337,57782239,'NM_018260','ZNF701'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58163315,58188596,'NR_003578','ZNF702P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',21265802,21304052,'NM_021269','ZNF708'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12432997,12456632,'NM_152601','ZNF709'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61798475,61827356,'NM_021216','ZNF71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',21056792,21099723,'NM_182515','ZNF714'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',23889523,23898357,'NM_001190829','ZNF726'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',22261091,22291818,'NM_001242680','ZNF729'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',20512637,20540466,'NM_001159293','ZNF737'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',21333574,21363224,'NR_027130','ZNF738'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62638504,62649003,'NM_001023561','ZNF749'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58627038,58653327,'NM_001008401','ZNF761'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11936868,11952198,'NM_001012753','ZNF763'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58590208,58607074,'NM_001040185','ZNF765'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57464635,57487788,'NM_001010851','ZNF766'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',2884215,2895969,'NM_021217','ZNF77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62672765,62680750,'NM_001144068','ZNF772'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62703120,62711322,'NM_198542','ZNF773'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62949975,62961339,'NM_173632','ZNF776'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45270738,45288685,'NM_001142577','ZNF780A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',45226006,45253955,'NM_001005851','ZNF780B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42850489,42875056,'NM_152605','ZNF781'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60823918,60827753,'NM_203374','ZNF784'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61290543,61324461,'NM_001002836','ZNF787'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12064077,12086493,'NR_027049','ZNF788'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42001063,42020769,'NM_001242802','ZNF790'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12582731,12601676,'NM_153358','ZNF791'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',40139097,40146793,'NM_175872','ZNF792'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42689680,42726079,'NM_001013659','ZNF793'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12361827,12373088,'NM_001080821','ZNF799'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63482129,63499066,'NM_021089','ZNF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62443864,62465918,'NM_001145078','ZNF805'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57722720,57751115,'NM_001039886','ZNF808'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9661813,9672493,'NM_001199814','ZNF812'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58662800,58689358,'NM_001004301','ZNF813'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63072558,63092254,'NM_001144989','ZNF814'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58144443,58157976,'NM_001202457','ZNF816'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58122199,58157976,'NM_001202473','ZNF816-ZNF321P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11693079,11710760,'NM_001080493','ZNF823'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',20370465,20399611,'NR_036455','ZNF826P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',42070865,42099033,'NM_001037232','ZNF829'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57807429,57833456,'NM_001105554','ZNF83'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',11645812,11658384,'NR_028594','ZNF833P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61865831,61874935,'NM_001005850','ZNF835'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57349936,57366708,'NM_001102657','ZNF836'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63570801,63584201,'NM_138466','ZNF837'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57259530,57290830,'NM_001136499','ZNF841'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12036545,12049626,'NM_001136501','ZNF844'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',58528813,58549934,'NM_138374','ZNF845'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',9729150,9740410,'NM_001077624','ZNF846'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',20897898,20918623,'NR_034060','ZNF85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',41926219,41955556,'NM_001193552','ZNF850'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',60816770,60821719,'NM_001195605','ZNF865'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',12015619,12024782,'NM_001080404','ZNF878'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',57564981,57580858,'NM_001145434','ZNF880'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',20049802,20092977,'NM_007138','ZNF90'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',23332337,23370109,'NM_003430','ZNF91'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',19872721,19907382,'NM_031218','ZNF93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',22365738,22396988,'NM_001098626','ZNF98'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',22726824,22758813,'NM_001080409','ZNF99'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',5406425,5407867,'NM_181710','ZNRF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63237245,63257811,'NM_182572','ZSCAN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63310783,63321605,'NR_027135','ZSCAN18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',63530196,63545524,'NM_181846','ZSCAN22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',62872114,62882332,'NM_152677','ZSCAN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61424490,61431471,'NM_024303','ZSCAN5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',61392869,61396233,'NM_001080456','ZSCAN5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr19',13767273,13804044,'NM_023072','ZSWIM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1_',384719,386171,'NM_001127230','AURKAIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1_',873196,889888,'NM_207418','FAM72D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr1_',1500601,1514610,'NM_006625','SRSF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',69538630,69724481,'NM_014911','AAK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218837095,218843137,'NM_001087','AAMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',215504510,215605055,'NM_015657','ABCA12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',169487694,169596079,'NM_003742','ABCB11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219782731,219791956,'NM_005689','ABCB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',43893114,43919462,'NM_022436','ABCG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',43919606,43959109,'NM_022437','ABCG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27200160,27207184,'NM_032604','ABHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',203901247,204005137,'NM_005759','ABI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',210760960,210798460,'NM_001608','ACADL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',220087135,220111738,'NM_182847','ACCN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',135312655,135376072,'NM_138326','ACMSD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',111206620,111592270,'NM_001142807','ACOXL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',254868,268282,'NR_024080','ACP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',223433975,223516363,'NM_004457','ACSL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73973600,74000288,'NM_001199893','ACTG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',97638833,97646993,'NM_005735','ACTR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',65308332,65351891,'NM_005722','ACTR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',114364006,114432637,'NM_005721','ACTR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',91492885,91494223,'NR_027714','ACTR3BP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',158301204,158439869,'NM_001105','ACVR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',158091524,158193645,'NM_001111032','ACVR1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',148319039,148404863,'NM_001616','ACVR2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',54195913,54385939,'NM_138448','ACYP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',9546861,9613368,'NM_003183','ADAM17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',207016612,207190924,'NM_003812','ADAM23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24895541,24995559,'NM_004036','ADCY3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70742723,70848883,'NM_017488','ADD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',3480696,3502354,'NM_018269','ADI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96142349,96145615,'NM_000682','ADRA2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',99530147,100125469,'NM_002285','AFF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',64604942,64673642,'NM_203437','AFTPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',236067471,236426585,'NM_001244888','AGAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27127994,27135907,'NM_001035507','AGBL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',228045131,228134182,'NM_001135189','AGFG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',177965716,178116810,'NM_003659','AGPS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241456834,241467209,'NM_000030','AGXT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',61258058,61268190,'NM_152392','AHSA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',29269143,29997981,'NM_004304','ALK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',3683660,3728135,'NM_018436','ALLC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73466393,73690554,'NM_015120','ALMS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73725553,73766202,'NR_003683','ALMS1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233029076,233032986,'NM_001631','ALPI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232951591,232955843,'NM_001632','ALPP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232979795,232983669,'NM_031313','ALPPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202273230,202354140,'NM_020919','ALS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202107287,202192150,'NM_001168217','ALS2CR11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201861391,201930346,'NM_139163','ALS2CR12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',203485222,203559305,'NM_001104586','ALS2CR8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',128335675,128358904,'NM_031445','AMMECR1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',112243110,112358212,'NM_022662','ANAPC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',190248955,190319621,'NM_144708','ANKAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241067511,241146078,'NM_017844','ANKMY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',94790399,94886547,'NR_003366','ANKRD20A8P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96867377,96873485,'NM_144994','ANKRD23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',132621636,132635995,'NR_027019','ANKRD30BL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',97142959,97279633,'NM_001164315','ANKRD36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',97487692,97572860,'NM_025190','ANKRD36B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',88846533,88887224,'NR_015424','ANKRD36BP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96877450,96887483,'NM_016466','ANKRD39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',197672439,197883766,'NM_153697','ANKRD44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',71059082,71066137,'NM_024933','ANKRD53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',109729199,109733853,'NM_023016','ANKRD57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219802722,219809635,'NM_018089','ANKZF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241776596,241813464,'NM_001001891','ANO7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',69093779,69253193,'NM_053034','ANTXR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',69822630,69907100,'NM_001153','ANXA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201158975,201244462,'NM_001159','AOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201268690,201367186,'NR_001557','AOX2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',224328290,224410563,'NM_001039569','AP1S3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',68548194,68660798,'NM_173545','APLF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',21077805,21120450,'NM_000384','APOB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241279934,241286573,'NM_198998','AQP12A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241264507,241270990,'NM_001102467','AQP12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',143603368,144242391,'NM_018460','ARHGAP15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',68815416,68907461,'NM_001166277','ARHGAP25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',39000007,39056094,'NM_001145451','ARHGEF33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131390693,131521306,'NM_015320','ARHGEF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96566190,96582098,'NM_212481','ARID5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',235066424,235070432,'NM_005737','ARL4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',152365725,152393255,'NM_177985','ARL5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',153282652,153326013,'NM_152522','ARL6IP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231771585,231918158,'NM_025139','ARMC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218790364,218827316,'NM_005731','ARPC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',9264344,9463263,'NM_003887','ASAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',239000364,239025630,'NM_001040445','ASB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',236768253,236837727,'NM_212556','ASB18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',53750620,53867489,'NM_001201965','ASB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',190234369,190243802,'NM_019048','ASNSD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70040727,70042901,'NM_152792','ASPRV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96153315,96167902,'NM_001002036','ASTL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',25815756,25954816,'NM_018263','ASXL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',23825037,24003440,'NM_017552','ATAD2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',175647251,175741143,'NM_001880','ATF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233824955,233869059,'NM_001190267','ATG16L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',242225699,242261944,'NM_013325','ATG4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219792345,219802605,'NM_001077198','ATG9A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',215884923,215922741,'NM_004044','ATIC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',38375532,38457936,'NR_024191','ATL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85834419,85872017,'NM_032827','ATOH8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',175749231,175754736,'NM_001689','ATP5G3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',71016505,71046069,'NM_001692','ATP6V1B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10779225,10842687,'NM_001039362','ATP6V1C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',46592489,46600600,'NM_080653','ATP6V1E2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74607282,74610482,'NM_181575','AUP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',168383427,168435612,'NM_020981','B3GALT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',62276765,62305370,'NM_006577','B3GNT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231968578,231974119,'NM_145236','B3GNT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',215301519,215382673,'NM_000465','BARD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',159883735,160181305,'NM_013450','BAZ2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',170044251,170071411,'NM_152384','BBS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',60531805,60634137,'NM_018014','BCL11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',111594961,111642493,'NM_138627','BCL2L11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219232622,219236410,'NM_004328','BCS1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',127522068,127581373,'NM_139344','BIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',32435599,32697469,'NM_016252','BIRC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',68946116,68952153,'NM_014482','BMP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202949294,203140719,'NM_001204','BMPR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',242146818,242162226,'NM_032515','BOK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',242132473,242147231,'NR_033346','BOK-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74216035,74228547,'NM_001035505','BOLA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',198299847,198358319,'NM_033030','BOLL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27967060,28415271,'NM_004899','BRE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',111111880,111152155,'NM_004336','BUB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201384513,201396814,'NM_014670','BZW1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',68122835,68143663,'NM_006333','C1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',119630288,119632941,'NM_182528','C1QL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',99124616,99134360,'NM_144706','C2orf15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27652892,27659093,'NM_032266','C2orf16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26840645,26857603,'NM_017877','C2orf18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',132196533,132241447,'NM_013310','C2orf27A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',132269003,132275704,'NM_214461','C2orf27B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27288722,27293550,'NM_016085','C2orf28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',101235776,101253210,'NM_017546','C2orf29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',75743339,75791240,'NM_001201334','C2orf3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',106048544,106061041,'NM_032411','C2orf40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70230520,70271655,'NM_017880','C2orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',20748298,20886308,'NM_021925','C2orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24105709,24123800,'NM_025203','C2orf44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',200528284,200537092,'NM_024520','C2orf47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10199431,10268393,'NM_182626','C2orf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',105320444,105328416,'NM_024093','C2orf49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',11190629,11204367,'NM_182500','C2orf50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',88605283,88610218,'NM_152670','C2orf51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27213218,27215836,'NM_178553','C2orf53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241474137,241484246,'NM_001085437','C2orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',98776740,98919116,'NM_207362','C2orf55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',37312277,37329807,'NM_001083946','C2orf56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232165818,232167238,'NM_152614','C2orf57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',47167633,47236021,'NM_001163561','C2orf61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218929822,218941061,'NM_198559','C2orf62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',55253187,55312953,'NM_152385','C2orf63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74638517,74728672,'NM_138804','C2orf65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',197378253,197383245,'NM_213608','C2orf66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',210593679,210744296,'NM_152519','C2orf67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85685886,85692690,'NM_001013649','C2orf68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',200484223,200501241,'NM_153689','C2orf69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26638984,26655899,'NM_001105519','C2orf70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',29138061,29150631,'NM_001029883','C2orf71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231610524,231622671,'NM_001144994','C2orf72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',54411574,54442218,'NM_001100396','C2orf73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',61225746,61245468,'NM_001143960','C2orf74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',119776489,119840728,'NM_001017927','C2orf76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',170210180,170259177,'NM_001085447','C2orf77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73864823,73897782,'NM_001080474','C2orf78'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208738315,208763018,'NM_001099334','C2orf80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74494810,74498352,'NM_001145054','C2orf81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233443237,233449351,'NM_206895','C2orf82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',228183049,228206280,'NM_001162483','C2orf83'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24251475,24268071,'NM_001040710','C2orf84'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',242460558,242464155,'NM_173821','C2orf85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',190753833,190776455,'NM_001042519','C2orf88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',84902306,84961763,'NM_001080824','C2orf89'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231286506,231394034,'NM_001130850','CAB39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',152397531,152538731,'NM_001005747','CACNB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27293761,27320158,'NM_004341','CAD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',187916093,188021266,'NM_005795','CALCRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',47240724,47257244,'NM_001743','CALM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',44442546,44853233,'NM_024766','CAMKMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85475381,85491187,'NM_001747','CAPG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241174805,241187199,'NM_023085','CAPN10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',30799141,30883815,'NM_144575','CAPN13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',31249425,31293915,'NM_001145122','CAPN14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201755865,201794628,'NM_001230','CASP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201806410,201860679,'NM_001228','CASP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113911737,113970251,'NM_172003','CBWD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',55600243,55625720,'NM_080667','CCDC104'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219606657,219614489,'NM_152389','CCDC108'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130812285,130816392,'NM_032357','CCDC115'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27702009,27705402,'NM_024584','CCDC121'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',108769650,108859279,'NM_144978','CCDC138'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',222871109,222878180,'NM_153038','CCDC140'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',179402728,179623031,'NM_173648','CCDC141'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74553466,74563865,'NM_032779','CCDC142'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',158736114,159021511,'NM_138803','CCDC148'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',197212600,197305775,'NM_001080539','CCDC150'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26478287,26533083,'NM_145038','CCDC164'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',132001961,132007709,'NM_138770','CCDC74A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130613331,130619101,'NM_207310','CCDC74B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',37165097,37177242,'NM_174931','CCDC75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',56264761,56466813,'NM_001080433','CCDC85A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',55368481,55500561,'NM_001135597','CCDC88A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',118389523,118488209,'NM_019044','CCDC93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',228386801,228390524,'NM_001130046','CCL20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',135392861,135433385,'NM_001241','CCNT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208284508,208329141,'NM_152523','CCNYL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',61948765,61969295,'NM_006430','CCT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73314871,73333658,'NM_001166285','CCT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70910850,70916461,'NM_015717','CD207'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',204279442,204311880,'NM_006139','CD28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',160333384,160363012,'NM_014880','CD302'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86865238,86889030,'NM_001145873','CD8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86895970,86942558,'NM_001178100','CD8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',37724246,37752830,'NM_006449','CDC42EP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',173927806,173941964,'NM_031942','CDCA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202379442,202466508,'NM_139158','CDK15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219532641,219535121,'NM_003936','CDK5R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',39259191,39310177,'NM_001009565','CDKL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',37282278,37312244,'NM_005760','CEBPZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26862385,26870959,'NM_001809','CENPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24869834,24898749,'NM_024322','CENPO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',65136998,65167646,'NM_015147','CEP68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',182109645,182230079,'NM_201548','CERKL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',169021080,169339398,'NM_203463','CERS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130995305,131002053,'NM_032545','CFC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131066822,131073721,'NM_001079530','CFC1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201689121,201745656,'NM_001202517','CFLAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201713256,201730760,'NR_040030','CFLAR-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27175724,27195499,'NM_001166240','CGREF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',53848432,53855791,'NM_001008708','CHAC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113058506,113063088,'NM_032309','CHCHD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86584063,86644131,'NM_001005753','CHMP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',175372287,175578227,'NM_001822','CHN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',220111912,220116731,'NM_024536','CHPF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',175320568,175337446,'NM_000079','CHRNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233099165,233108449,'NM_000751','CHRND'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233112680,233119282,'NM_005199','CHRNG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',100374753,100400562,'NM_004854','CHST10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96295610,96303627,'NM_004804','CIAO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26657576,26717715,'NM_001029881','CIB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',174921123,174968689,'NM_004882','CIR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113211914,113238725,'NM_152515','CKAP2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',121811821,122123522,'NM_015282','CLASP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70889284,70901240,'NM_173535','CLEC4F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',29191811,29260183,'NM_024692','CLIP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201425976,201437712,'NR_027856','CLK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',6905901,6923387,'NM_207315','CMPK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',98329049,98381496,'NM_001298','CNGA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96845717,96864848,'NM_017623','CNNM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96790365,96841355,'NM_020184','CNNM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219744862,219749946,'NM_015680','CNPPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',68373645,68400687,'NM_015463','CNRIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',124499333,125389333,'NM_130773','CNTNAP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',98582296,98591387,'NM_001008215','COA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',165249503,165406174,'NM_014900','COBLL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',189547343,189585717,'NM_000090','COL3A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',227737524,227887752,'NM_000091','COL4A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',227575670,227737519,'NM_000092','COL4A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',189604885,189752850,'NM_000393','COL5A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',237897393,237987589,'NM_004369','COL6A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',3620511,3669922,'NM_024027','COLEC11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',61986306,62216709,'NM_152516','COMMD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232359405,232381678,'NM_022730','COPS7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',237658822,237672228,'NM_006710','COPS8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',198026475,198048096,'NM_025147','COQ10B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',97628952,97631089,'NM_001862','COX5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',42431147,42441860,'NM_004718','COX7A2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',207512522,207542443,'NM_173077','CPO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',211166323,211252076,'NM_001122634','CPS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',211190539,211192844,'NR_002763','CPS1-IT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',9481318,9530678,'NM_016207','CPSF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208102860,208178529,'NM_004379','CREB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',101331247,101370397,'NM_153836','CREG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',36436873,36631782,'NM_016441','CRIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',46697828,46706385,'NM_014171','CRIPT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219563155,219566365,'NM_005209','CRYBA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208733708,208736542,'NM_014617','CRYGA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208715541,208719122,'NM_005210','CRYGB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208701105,208702799,'NM_020989','CRYGC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208694575,208697558,'NM_006891','CRYGD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',166137091,166254163,'NM_024969','CSRNP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218971304,218978908,'NM_001206878','CTDSP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',204440755,204446928,'NM_005214','CTLA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',79593567,80729499,'NM_004389','CTNNA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',225043112,225158354,'NM_003590','CUL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',180517848,180580025,'NM_020943','CWC22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218735812,218739961,'NM_000634','CXCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218698257,218710221,'NM_001168298','CXCR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218632122,218634258,'NR_002712','CXCR2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',136588388,136592195,'NM_003467','CXCR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',237143118,237155733,'NM_020311','CXCR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',172087111,172122889,'NM_001127383','CYBRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',38148249,38156827,'NM_000104','CYP1B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',38211750,38262497,'NR_027252','CYP1B1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',203811408,203878808,'NM_177538','CYP20A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',72209874,72228471,'NM_019885','CYP26B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219354715,219388260,'NM_000784','CYP27A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',127657881,127679813,'NM_001001665','CYP27C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131154092,131159905,'NR_023391','CYP4F30P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10114376,10137989,'NM_001037160','CYS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',157979376,158008850,'NM_004288','CYTIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',242322702,242356904,'NM_152783','D2HGDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',159360074,159380742,'NM_001017920','DAPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',136380723,136459692,'NM_001349','DARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',119841298,119846592,'NM_001178017','DBI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',63198489,63200181,'NR_036635','DBIL5P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',171999006,172049808,'NM_001164821','DCAF17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74441788,74455370,'NM_023019','DCTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',15649220,15688676,'NM_004939','DDX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',114073074,114075623,'NR_024005','DDX11L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',118288724,118306423,'NM_006773','DDX18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219991342,219999705,'NM_001927','DES'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',179024408,179034356,'NM_001042702','DFNB59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233927891,234045482,'NM_152879','DGKD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74007460,74039596,'NM_080918','DGUOK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',169629544,169660923,'NM_005771','DHRS9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',38878378,38956525,'NM_198963','DHX57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',189306709,189363076,'NM_052952','DIRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',217856990,218329561,'NR_026597','DIRC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232534536,232910152,'NM_152383','DIS3L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',145142003,145550761,'NR_033870','DKFZp686O1327'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',172658453,172662647,'NM_001038493','DLX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',172672411,172675724,'NM_004405','DLX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',84597089,84900224,'NM_001370','DNAH6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',196310671,196641781,'NM_018897','DNAH7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219852283,219859866,'NM_001039550','DNAJB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234316134,234317400,'NM_001001394','DNAJB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',183289243,183351500,'NM_018981','DNAJC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',25020008,25048467,'NM_016544','DNAJC27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',25048484,25116069,'NR_034113','DNAJC27-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27351792,27357800,'NM_173650','DNAJC5G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',229930588,230287530,'NM_139072','DNER'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',25357824,25418963,'NM_175630','DNMT3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219946423,219960906,'NM_012100','DNPEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',225338050,225615574,'NM_014689','DOCK10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74629654,74638186,'NM_001197260','DOK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',114916368,116318796,'NM_020868','DPP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',162557000,162639298,'NM_001935','DPP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',32102475,32118348,'NM_032574','DPY30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26924472,27026723,'NM_020134','DPYSL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74598765,74606916,'NM_133637','DQX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',25453615,25750007,'NM_021907','DTNB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73842832,73860792,'NM_003584','DUSP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',183651531,183672967,'NM_001142314','DUSP19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96172634,96174906,'NM_004418','DUSP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241148143,241152104,'NM_001033575','DUSP28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',172252227,172313165,'NM_001378','DYNC1I2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',43854681,43890653,'NM_016008','DYNC2LI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',71547339,71767401,'NM_001130983','DYSF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',207224589,207291365,'NM_001093730','DYTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',11501951,11523748,'NM_198256','E2F6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233052780,233060776,'NM_004826','ECEL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232958703,232959998,'NR_028501','ECEL1P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',108877358,108972260,'NM_022336','EDAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',206732562,206735898,'NM_001959','EEF1B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',55946600,56004802,'NM_001039349','EFEMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233179010,233255735,'NM_001243252','EFHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',25118476,25235508,'NM_014971','EFR3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73371564,73374337,'NM_001965','EGR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',62786504,63127125,'NM_001142616','EHBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',31310383,31344764,'NM_014600','EHD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',37187202,37228469,'NM_001135652','EIF2AK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',88637373,88708209,'NM_004836','EIF2AK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27440722,27446423,'NM_172195','EIF2B4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233123600,233142164,'NM_004846','EIF4E2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',99320265,99383160,'NM_015904','EIF5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85435353,85472386,'NM_032213','ELMOD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27154938,27162769,'NM_007046','EMILIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',42249993,42413192,'NM_019063','EML4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',54805652,55052660,'NM_001039753','EML6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',72998111,73015528,'NM_004097','EMX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',119316216,119322229,'NM_001426','EN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',46378044,46467346,'NM_001430','EPAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',120487073,120653167,'NM_001184937','EPB41L5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',149119029,149261606,'NM_015630','EPC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',47449790,47467671,'NM_002354','EPCAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',221990990,222145254,'NM_004438','EPHA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26422457,26472263,'NM_033505','EPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',211948686,213111597,'NM_001042599','ERBB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',127731335,127768222,'NM_000122','ERCC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',53867571,53899460,'NM_001127397','ERLEC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',157883370,157890662,'NM_020711','ERMN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238673689,238706667,'NM_194312','ESPNL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',67477945,67491037,'NM_019002','ETAA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176653080,176656936,'NM_001080458','EVX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',72259951,72906685,'NM_015189','EXOC6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',88203622,88208765,'NM_001443','FABP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',95432174,95442606,'NM_016044','FAHD2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',97113049,97124309,'NM_199336','FAHD2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',28813,36588,'NM_001077710','FAM110C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',203208145,203342725,'NM_173511','FAM117B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131229693,131242177,'NM_001105193','FAM123C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',224951658,224974955,'NM_001122779','FAM124B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201546685,201644637,'NM_173822','FAM126B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219751182,219758441,'NM_024293','FAM134A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70376611,70382724,'NM_032822','FAM136A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',114051428,114052899,'NR_026821','FAM138B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',269560,278308,'NM_001002919','FAM150B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',61905486,61934782,'NM_032180','FAM161A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131521918,131567474,'NM_001009993','FAM168B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',187267033,187336757,'NM_177454','FAM171B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',75572951,75641600,'NM_001135032','FAM176A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96905345,96924626,'NM_001172667','FAM178B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',29057667,29128600,'NM_199280','FAM179A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',16594210,16710615,'NM_030797','FAM49A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26249463,26266036,'NM_001168241','FAM59B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',38031099,38147789,'NM_144713','FAM82A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',14690260,14697619,'NM_145175','FAM84A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',33662232,33677866,'NM_015475','FAM98A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',58239881,58322019,'NM_018062','FANCL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',162735445,162808291,'NM_004460','FAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241944336,242082929,'NM_014808','FARP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',223144405,223229071,'NM_005687','FARSB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',170094508,170138670,'NM_024622','FASTKD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',207338356,207369156,'NM_014929','FASTKD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',112612432,112662262,'NM_153214','FBLN7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',47887562,47986436,'NM_001190274','FBXO11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',230495450,230586069,'NM_174899','FBXO36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73335317,73350266,'NM_001080410','FBXO41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',68543008,68547894,'NM_001024680','FBXO48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96672300,96734351,'NM_001113382','FER1L5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219554052,219558623,'NM_017521','FEV'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',36632907,36678836,'NM_005102','FEZ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',105343714,105382113,'NM_001450','FHL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70857949,70871283,'NM_001004311','FIGLA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',164172363,164300759,'NM_018086','FIGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24126087,24140054,'NM_054033','FKBP1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',179036636,179051601,'NM_001135212','FKBP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',19932095,19948289,'NR_033875','FLJ12334'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',60928398,60961953,'NR_033980','FLJ16341'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',58601391,59144405,'NR_033873','FLJ30838'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',200041065,200045726,'NR_026830','FLJ32063'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',11157427,11189753,'NR_040080','FLJ33534'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113115877,113118228,'NR_033871','FLJ42351'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',239505934,239512902,'NR_034162','FLJ43879'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',152899996,153214594,'NM_052905','FMNL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',215933423,216009036,'NM_002026','FN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27568253,27571630,'NM_022823','FNDC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',200333503,200424141,'NR_034096','FONG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',28469282,28491020,'NM_005253','FOSL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113973130,113975197,'NM_012184','FOXD4L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',88528840,88533168,'NM_001135649','FOXI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',48395298,48459938,'NM_002158','FOXN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',183406249,183439743,'NM_001463','FRZB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',49042799,49235170,'NM_000145','FSHR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',186311599,186406261,'NM_173651','FSIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27468993,27469947,'NR_002201','FTH1P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',84371316,84372835,'NR_003663','FUNDC2P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208335554,208342388,'NM_003468','FZD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202607554,202611405,'NM_003507','FZD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',169465995,169474756,'NM_021176','G6PC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',171381445,171407515,'NM_013445','GAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',242364912,242392375,'NM_022134','GAL3ST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',38746555,38815413,'NM_138801','GALM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',154436671,155018735,'NM_052917','GALNT13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',30986836,31215075,'NM_024572','GALNT14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',166312558,166359049,'NM_004482','GALNT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',157822585,157876159,'NM_014568','GALNT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',236739045,236741391,'NM_001485','GBX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',162908828,162927394,'NM_012198','GCA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',108432008,108492286,'NR_028063','GCC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',162707630,162717160,'NM_002054','GCG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27573209,27600054,'NM_001486','GCKR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',20729904,20734731,'NM_182828','GDF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',38858830,38862610,'NM_024775','GEMIN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',17798894,17830113,'NM_001130009','GEN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',69400404,69467890,'NM_001244710','GFPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85625488,85642168,'NM_000821','GGCX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',91327094,91333880,'NR_003503','GGT8P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233270258,233433531,'NM_001103147','GIGYF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',69055208,69061616,'NM_019617','GKN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',69025867,69033606,'NM_182536','GKN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219809746,219818375,'NM_024506','GLB1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',121271336,121466699,'NM_005270','GLI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',191453791,191538021,'NM_014905','GLS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',69910321,69960231,'NM_178439','GMCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',220071860,220079962,'NM_205847','GMPPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85774924,85779386,'NM_006433','GNLY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',171493193,171531889,'NM_001201428','GORASP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96051420,96064454,'NM_207328','GPAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218833982,218836826,'NM_001077194','GPBAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241023787,241056168,'NM_002081','GPC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',157001145,157151161,'NM_000408','GPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27705366,27727217,'NM_007266','GPN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',206748284,206791016,'NM_005279','GPR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26384544,26423189,'NM_153835','GPR113'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131203112,131204379,'NM_207364','GPR148'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',175004620,175060057,'NM_152529','GPR155'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',128119908,128126683,'NM_005291','GPR17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241213334,241219349,'NM_005301','GPR35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',132890616,133120639,'NM_001508','GPR39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',105224631,105226356,'NM_007227','GPR45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231480286,231498185,'NM_005683','GPR55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',53933553,53940674,'NM_006794','GPR75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',53750957,53940674,'NM_001164165','GPR75-ASB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',165057568,165186606,'NM_004490','GRB14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',11600301,11649723,'NM_033090','GREB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10009242,10059863,'NM_198182','GRHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',144420050,144806553,'NM_001164629','GTDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',48698440,48760252,'NM_001193487','GTF2A1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27402224,27433372,'NM_001521','GTF3C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',197353057,197372737,'NM_001206774','GTF3C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',188865634,189168897,'NM_016315','GULP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',127130153,127170716,'NM_002101','GYPC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',42847732,42873255,'NM_012205','HAAO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26267007,26321098,'NM_000182','HADHA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26321119,26366837,'NM_000183','HADHB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',172487180,172556846,'NR_027862','HAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',239634800,239987580,'NM_006037','HDAC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241815354,241860919,'NM_001243900','HDLBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',37061656,37164989,'NM_019024','HEATR5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',196772221,197165580,'NM_020760','HECW2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238811646,238813420,'NM_018645','HES6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',190777604,190893016,'NM_198047','HIBCH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234410224,234427951,'NM_018410','HJURP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74913289,74973989,'NM_000189','HK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',138438277,138490404,'NM_006895','HNMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',177785667,177796931,'NM_194247','HNRNPA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',38643831,38683682,'NM_138394','HNRPLL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176761552,176763881,'NM_024501','HOXD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176689737,176692916,'NM_002148','HOXD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176680329,176682562,'NM_021192','HOXD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176672775,176673734,'NM_021193','HOXD12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176665777,176668912,'NM_000523','HOXD13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176737050,176746072,'NM_006898','HOXD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176724358,176726195,'NM_014621','HOXD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176702713,176705669,'NM_019558','HOXD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176695658,176697891,'NM_014213','HOXD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10361276,10485194,'NM_134421','HPCAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',20681044,20714345,'NM_022460','HS1BP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',128739523,128792641,'NM_004807','HS6ST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',198059552,198073243,'NM_199440','HSPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',198072965,198076432,'NM_002157','HSPE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',198072965,198126668,'NM_001202485','HSPE1-PHOCN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231681192,231698068,'NM_000867','HTR2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74610039,74614191,'NM_013247','HTRA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',9532120,9546042,'NM_001039613','IAH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',203346117,203444616,'NM_138468','ICA1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',204509715,204534543,'NM_012092','ICOS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',8739563,8742034,'NM_002166','ID2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208809197,208828051,'NM_005896','IDH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',162831834,162883285,'NM_022168','IFIH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27520743,27566075,'NM_015662','IFT172'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',217206371,217237403,'NM_000597','IGFBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',217245072,217268517,'NM_000599','IGFBP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219627385,219633482,'NM_002181','IHH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',213572655,213724578,'NM_001079526','IKZF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',102345528,102381649,'NM_003855','IL18R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',102401685,102435456,'NM_003853','IL18RAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113247962,113259442,'NM_000575','IL1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113303807,113310827,'NM_000576','IL1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113542017,113549898,'NM_173161','IL1F10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',102136833,102162766,'NM_000877','IL1R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',101974737,102011316,'NM_004633','IL1R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',102294393,102334929,'NM_016232','IL1RL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',102169864,102222243,'NM_003854','IL1RL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113591940,113608064,'NM_000577','IL1RN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113479919,113482092,'NM_014440','IL36A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113501606,113526911,'NM_173178','IL36B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113452076,113459698,'NM_019618','IL36G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113532685,113538791,'NM_173170','IL36RN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113389240,113392929,'NM_173205','IL37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238743781,238777063,'NM_030768','ILKAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86224565,86276404,'NM_001100169','IMMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130816958,130820667,'NM_033416','IMP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',242290128,242317569,'NM_032329','ING5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',220145197,220148679,'NM_002191','INHA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',120820188,120825853,'NM_002193','INHBB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74535657,74538595,'NM_031288','INO80B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74535657,74541526,'NR_037849','INO80B-WBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',206566689,206659151,'NM_017759','INO80D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',190916440,190944636,'NM_002194','INPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',98427752,98573928,'NM_004027','INPP4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233633279,233781288,'NM_005541','INPP5D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',118562519,118584067,'NM_016133','INSIG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',236897532,237080831,'NM_024726','IQCA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',227304276,227371750,'NM_005544','IRS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',182029863,182110713,'NM_000885','ITGA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',173000559,173079427,'NM_000210','ITGA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',187163034,187253873,'NM_002210','ITGAV'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',9463265,9481094,'NM_004763','ITGB1BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',160666478,160764836,'NM_000888','ITGB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231437864,231452207,'NM_030926','ITM2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96355661,96357818,'NM_178495','ITPRIPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24279238,24436901,'NM_006277','ITSN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',127954852,128000557,'NM_017969','IWS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',170074457,170091018,'NM_006063','KBTBD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85051741,85140106,'NM_020122','KCMF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',223625105,223628599,'NM_080671','KCNE4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10969513,10971802,'NM_002236','KCNF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',42522660,42574741,'NM_172344','KCNG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',162988002,163403503,'NM_173162','KCNH7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',95326798,95415552,'NM_013434','KCNIP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233338755,233349519,'NM_001172416','KCNJ13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',155263338,155421260,'NM_002239','KCNJ3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',47601418,47650974,'NM_022055','KCNK12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26769084,26807570,'NM_002246','KCNK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',17923425,17977706,'NM_002252','KCNS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201061928,201083037,'NM_152387','KCTD18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86521781,86573350,'NM_018433','KDM3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27163114,27177123,'NM_006488','KHK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96622633,96667842,'NM_001115016','KIAA1310'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',225973845,226226978,'NM_020864','KIAA1486'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176498655,176575264,'NM_030650','KIAA1715'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',61146866,61218673,'NM_032506','KIAA1841'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',8786437,8895206,'NM_020738','KIDINS220'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241301853,241408398,'NM_004321','KIF1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26002958,26058947,'NM_002254','KIF3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',149349288,149591519,'NM_004522','KIF5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10101822,10112414,'NM_001177718','KLF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',207653773,207738859,'NM_003709','KLF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',170298601,170316642,'NM_144711','KLHL23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',23461802,23784987,'NM_052920','KLHL29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238712101,238726286,'NM_198582','KLHL30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',48521411,48596035,'NM_001193475','KLRAQ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',88107838,88136363,'NM_016618','KRCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27518736,27522852,'NM_001168364','KRTCAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',143351664,143516355,'NM_003937','KYNU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',211004217,211049744,'NM_001136575','LANCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',20095891,20115270,'NM_014713','LAPTM4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',30307900,30336403,'NM_030915','LBH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74578151,74583951,'NM_001009812','LBX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',30523640,30720595,'NM_001002257','LCLAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',136261884,136311220,'NM_002299','LCT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',64534830,64542021,'NM_014181','LGALSL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',48767416,48836384,'NM_000233','LHCGR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',108517242,108670134,'NM_001193483','LIMS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',128112465,128149234,'NM_001161403','LIMS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',110013297,110021322,'NM_033514','LIMS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',110013297,110083438,'NR_027145','LIMS3-LOC440895'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',110657164,110665189,'NM_001205288','LIMS3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',110326394,110337806,'NR_027063','LINC00116'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',87536088,87602145,'NR_024204','LINC00152'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',8065351,8386000,'NR_034135','LINC00299'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',64265716,64286123,'NR_033837','LINC00309'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232081380,232087294,'NR_024079','LINC00471'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',32904013,33007710,'NR_027098','LINC00486'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',6786750,6827893,'NR_038369','LINC00487'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',99137968,99146045,'NM_001204830','LIPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96735393,96769540,'NR_024521','LMAN2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',39998277,40335853,'NR_038441','LOC100128590'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',43307853,43309498,'NR_027251','LOC100129726'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',135340672,135392646,'NR_036549','LOC100129961'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',213849521,213857174,'NM_001242575','LOC100130451'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',197273603,197285981,'NR_034036','LOC100130452'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',177856481,177965665,'NR_026966','LOC100130691'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130440634,130454515,'NR_036537','LOC100131320'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',63124608,63128350,'NR_027069','LOC100132215'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70204671,70205952,'NR_024444','LOC100133985'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',46908506,46939649,'NR_024452','LOC100134259'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74466352,74474516,'NR_024463','LOC100189589'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',33005697,33024706,'NR_027097','LOC100271832'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234327700,234328730,'NR_037694','LOC100286922'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86942458,86975676,'NR_037931','LOC100286979'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',104361739,104391222,'NR_037885','LOC100287010'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',109110215,109113007,'NR_029193','LOC100287216'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',110595032,110615930,'NR_037627','LOC100288570'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',36435395,36436217,'NR_037631','LOC100288911'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27965826,27967485,'NR_028308','LOC100302650'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',206688541,206689541,'NR_033248','LOC100329109'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',114451715,114454031,'NR_034130','LOC100499194'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27411912,27414174,'NR_038427','LOC100505624'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',28384061,28386830,'NR_038319','LOC100505716'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',37277138,37285390,'NR_037879','LOC100505876'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',3983120,3999497,'NR_037881','LOC100505964'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',3583851,3587215,'NR_038430','LOC100506054'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',97447959,97457332,'NR_040097','LOC100506123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',166498612,166513077,'NR_038984','LOC100506134'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',7478842,7507832,'NR_038432','LOC100506274'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',104788314,104834366,'NR_037883','LOC100506421'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',13024358,13064589,'NR_038434','LOC100506474'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176707814,176710072,'NR_038435','LOC100506783'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',179096163,179193189,'NR_038271','LOC100506866'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201285272,201308145,'NR_037886','LOC100507140'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',110062555,110083464,'NR_037626','LOC100507334'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208692097,208729731,'NR_038437','LOC100507443'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85618100,85619520,'NR_038942','LOC100630918'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131010612,131023938,'NR_027314','LOC150527'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',104417236,104495647,'NR_015399','LOC150568'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',5990269,6037801,'NR_026832','LOC150622'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131966855,131995619,'NR_026922','LOC150776'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',240349490,240387293,'NR_037808','LOC150935'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',110567222,110576650,'NR_027244','LOC151009'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',134923429,134928662,'NR_024275','LOC151162'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',239084069,239128879,'NR_037809','LOC151171'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238798492,238805057,'NR_026926','LOC151174'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219549249,219550888,'NR_015390','LOC151300'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231263879,231273488,'NR_040038','LOC151475'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231459504,231477476,'NR_038238','LOC151484'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74583251,74585700,'NR_024606','LOC151534'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',82937437,82938404,'NR_033423','LOC1720'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',207215386,207222418,'NM_001102659','LOC200726'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241542708,241555541,'NR_033841','LOC200772'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',122123699,122125584,'NR_037858','LOC254128'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85895763,85907422,'NR_038888','LOC284950'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',104729526,104740609,'NR_038231','LOC284998'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',105575985,105593448,'NR_038891','LOC285000'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96269703,96271428,'NM_001037228','LOC285033'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',87111308,87157047,'NR_026846','LOC285074'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',174899000,174903616,'NR_038897','LOC285084'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130603665,130613456,'NR_033903','LOC285103'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',7980006,8034396,'NR_015405','LOC339788'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',61222233,61225614,'NR_036496','LOC339803'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',64687949,64697120,'NR_034023','LOC339807'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',769836,854112,'NR_033880','LOC339822'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231557326,231568991,'NR_033879','LOC348761'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24199853,24246011,'NM_001145710','LOC375190'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',39039932,39040989,'NR_028386','LOC375196'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',177202554,177210548,'NR_040001','LOC375295'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',6969857,6976264,'NR_033997','LOC386597'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',41958198,41974690,'NR_033996','LOC388942'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',46560207,46565068,'NM_001145051','LOC388946'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',46897310,46903303,'NR_034099','LOC388948'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',115618094,115635390,'NR_036580','LOC389023'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130396904,130408360,'NR_026740','LOC389033'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131876943,131882271,'NR_036499','LOC389043'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',6039560,6045815,'NR_026833','LOC400940'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',42016011,42034447,'NM_001242815','LOC400950'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',64982477,65013085,'NR_036586','LOC400958'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131916203,131918937,'NR_002826','LOC401010'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176746169,176761932,'NR_033979','LOC401022'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',110062555,110083438,'NR_027143','LOC440895'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',114453615,114481357,'NR_034128','LOC440900'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130500043,130525174,'NR_026758','LOC440905'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131753332,131773862,'NR_030728','LOC440910'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',171277194,171279323,'NR_027433','LOC440925'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',94898156,94976814,'NR_037597','LOC442028'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',111841061,111969163,'NR_015395','LOC541471'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',158731407,158800927,'NR_038850','LOC554201'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238805065,238807724,'NR_026923','LOC643387'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',67203992,67295955,'NR_038844','LOC644838'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',21763810,21787029,'NR_038837','LOC645949'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',216184530,216416504,'NR_037195','LOC646324'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131010612,131023958,'NR_033930','LOC646743'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',139371363,139373214,'NR_033658','LOC647012'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',91188435,91211702,'NR_027238','LOC654342'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113710316,113741050,'NR_015377','LOC654433'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',4653682,4681687,'NR_034134','LOC727982'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',242679516,242751142,'NR_024437','LOC728323'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',97652637,97685961,'NR_038386','LOC728537'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',39518060,39681988,'NR_037875','LOC728730'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',43755795,43756965,'NM_001101330','LOC728819'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',107805951,107809015,'NR_024439','LOC729121'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96040025,96052611,'NR_003698','LOC729234'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',2302010,2309887,'NR_024468','LOC730811'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',120938380,120940395,'NR_027181','LOC84931'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',94784797,94790656,'NR_038409','LOC90499'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86100849,86104502,'NR_026984','LOC90784'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',173296162,173309180,'NR_026995','LOC91149'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',100256184,100305627,'NM_198461','LONRF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74613453,74634570,'NM_032603','LOXL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',11804190,11884984,'NM_145693','LPIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',140705465,142605740,'NM_018557','LRP1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',169691864,169927368,'NM_004525','LRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',43966866,44076648,'NM_133259','LRPPRC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238265545,238355029,'NM_001137551','LRRFIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',80382513,80384998,'NM_178839','LRRTM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',77597294,77603010,'NM_024993','LRRTM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',33213167,33478079,'NM_001166265','LTBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',160368113,160469513,'NM_002349','LY75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',160333384,160469513,'NM_001198759','LY75-CD302'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',99267132,99284071,'NM_174898','LYG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',99225142,99238002,'NM_175735','LYG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',133118806,133145540,'NM_001077427','LYPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',149895274,150038905,'NM_194317','LYPD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',149603226,149780018,'NM_177964','LYPD6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',95055205,95083462,'NM_002371','MAL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',110198735,110231432,'NM_005434','MALL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',210152647,210307079,'NM_002374','MAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',127772714,127817275,'NM_006609','MAP3K2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',39329925,39517723,'NM_003618','MAP4K3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',101680596,101877584,'NM_001242560','MAP4K4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27047028,27103591,'NM_012326','MAPRE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',216830829,216944995,'NM_020814','MARCH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',160277255,160333330,'NM_022826','MARCH7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',119416214,119468706,'NM_006770','MARCO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',198278272,198281359,'NM_138395','MARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85619611,85625914,'NM_005911','MAT2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',20055293,20075936,'NM_002381','MATN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',148495049,148987514,'NM_018328','MBD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',8914151,9061327,'NM_138799','MBOAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',71190313,71210902,'NM_032601','MCEE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',46982512,46996755,'NM_001171507','MCFD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',136313665,136350481,'NM_005915','MCM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',63669788,63687834,'NM_001199111','MDH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',207310733,207338295,'NM_001039845','MDH1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',66516035,66653395,'NM_002398','MEIS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',31946397,32089202,'NM_001137602','MEMO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',112372661,112503416,'NM_006343','MERTK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',172573049,172653833,'NM_199227','METAP1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208182083,208197941,'NM_145280','METTL21A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',170376513,170389599,'NM_014168','METTL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',171882158,171999558,'NM_024770','METTL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',227900471,227930793,'NM_020194','MFF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24086456,24100649,'NM_001080473','MFSD2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',190981325,191075286,'NM_017694','MFSD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',102700097,102719769,'NM_032718','MFSD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',98602000,98714021,'NM_012214','MGAT4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',134728299,134928662,'NM_002410','MGAT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',239779963,239782090,'NR_026664','MGC16025'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176723276,176723386,'NR_029609','MIR10B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',189551062,189551131,'NR_031647','MIR1245'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',189551064,189551132,'NR_039947','MIR1245B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',177173953,177174026,'NR_031648','MIR1246'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',180433807,180433880,'NR_031659','MIR1258'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',136139436,136139518,'NR_029672','MIR128-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',25405012,25405094,'NR_031570','MIR1301'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232465195,232465252,'NR_031717','MIR1471'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241044090,241044179,'NR_029702','MIR149'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219867076,219867166,'NR_029688','MIR153-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',56069588,56069698,'NR_029629','MIR216A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',56081352,56081434,'NR_030623','MIR216B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',56063605,56063715,'NR_029630','MIR217'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',207682955,207683042,'NR_036227','MIR2355'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',239938355,239938436,'NR_039948','MIR2467'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218975612,218975689,'NR_029500','MIR26B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',12794943,12795021,'NR_036072','MIR3125'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',69184317,69184391,'NR_036073','MIR3126'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96827741,96827817,'NR_036074','MIR3127'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',177828918,177828984,'NR_036075','MIR3128'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',189706006,189706082,'NR_036076','MIR3129'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',207356202,207356277,'NR_036077','MIR3130-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',207356202,207356277,'NR_036078','MIR3130-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219631653,219631716,'NR_036081','MIR3131'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',220122038,220122113,'NR_036082','MIR3132'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',189568600,189568663,'NR_037401','MIR3606'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',134601165,134601233,'NR_037450','MIR3679'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',12256706,12256778,'NR_037452','MIR3681'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',53929762,53929846,'NR_037453','MIR3682'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219574610,219574674,'NR_029867','MIR375'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10250190,10250248,'NR_036222','MIR4261'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',11894509,11894563,'NR_036226','MIR4262'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',28072737,28072820,'NR_036230','MIR4263'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',79729927,79729993,'NR_036231','MIR4264'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',109124377,109124476,'NR_036223','MIR4265'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',109296458,109296513,'NR_036224','MIR4266'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',110184826,110184908,'NR_036225','MIR4267'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',220479466,220479530,'NR_036228','MIR4268'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',239892093,239892177,'NR_036229','MIR4269'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',55314803,55315489,'NR_039624','MIR4426'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',11598181,11598254,'NR_039627','MIR4429'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',60468000,60468084,'NR_039631','MIR4432'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',64606150,64606203,'NR_039633','MIR4434'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',87710388,87710468,'NR_039634','MIR4435-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',87710393,87710467,'NR_039636','MIR4435-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',88892998,88893083,'NR_039635','MIR4436A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',181878564,181878624,'NR_039637','MIR4437'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',225583421,225583501,'NR_039641','MIR4439'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',239655449,239655547,'NR_039642','MIR4440'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',239672459,239672559,'NR_039643','MIR4441'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',19411670,19411747,'NR_039914','MIR4757'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',32713825,32713902,'NR_039922','MIR4765'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',87275419,87275493,'NR_039928','MIR4771-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',87275419,87275493,'NR_039929','MIR4771-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',102415180,102415258,'NR_039930','MIR4772'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',151933093,151933171,'NR_039931','MIR4773-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',151933093,151933171,'NR_039932','MIR4773-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',169147698,169147774,'NR_039933','MIR4774'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208327775,208327850,'NR_039934','MIR4775'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',213499225,213499305,'NR_039935','MIR4776-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',213499225,213499305,'NR_039936','MIR4776-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231935662,231935748,'NR_039937','MIR4777'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',66438884,66438964,'NR_039938','MIR4778'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86273659,86273742,'NR_039939','MIR4779'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',88163152,88163233,'NR_039940','MIR4780'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',114195336,114195415,'NR_039943','MIR4782'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',127897582,127897664,'NR_039944','MIR4783'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131965202,131965279,'NR_039945','MIR4784'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',160972566,160972639,'NR_039946','MIR4785'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',240531104,240531184,'NR_039949','MIR4786'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',44630133,44630163,'NR_039629','MIR548AD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',212999231,212999329,'NR_031643','MIR548F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',178955050,179249254,'NR_031666','MIR548N'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',145958784,146090904,'NR_031752','MIR548Q'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',32610723,32610817,'NR_030285','MIR558'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',47458317,47458413,'NR_030286','MIR559'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',188870463,188870560,'NR_030287','MIR561'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',132731008,132731123,'NR_031608','MIR663B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',175740606,175740683,'NR_030630','MIR933'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',99152157,99163924,'NM_138798','MITD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',122200990,122210973,'NM_032390','MKI67IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',173770686,173855010,'NR_033882','MLK7-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238060616,238128700,'NM_001042467','MLPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',150134392,150152576,'NM_015702','MMADHC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74236718,74259503,'NM_018221','MOB1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',198089011,198126668,'NM_015387','MOB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',223244700,223282893,'NM_058165','MOGAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74541691,74546045,'NM_001146158','MOGS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',38956606,38963354,'NM_001145450','MORN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',71210951,71230740,'NM_005791','MPHOSPH10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202217841,202271662,'NM_033066','MPP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27385863,27399473,'NM_002437','MPV17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',216515558,216586591,'NM_018000','MREG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',75727416,75742842,'NM_014763','MRPL19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',99163973,99182452,'NM_145212','MRPL30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27848087,27856112,'NM_004891','MRPL33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86280066,86293988,'NM_016622','MRPL35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',224530364,224540675,'NM_022915','MRPL44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74552592,74553450,'NM_053050','MRPL53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',95116678,95151481,'NM_031902','MRPS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',105020914,105082850,'NM_182640','MRPS9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',17861266,17861848,'NM_001105569','MSGN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',47483766,47563864,'NM_000251','MSH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',47863724,47887596,'NM_000179','MSH6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234438826,234441794,'NR_024322','MSL3P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',190628670,190635700,'NM_005259','MSTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',42649174,42789857,'NM_020744','MTA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241675181,241690420,'NR_028051','MTERFD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74279197,74295932,'NM_006636','MTHFD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',55317259,55349888,'NM_002453','MTIF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',176842368,176910999,'NR_027850','MTX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',69995676,70023580,'NM_001202513','MXD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',33804631,33806788,'NR_003143','MYADML'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',15998133,16004580,'NM_005378','MYCN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',15997470,15999296,'NR_026766','MYCNOS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',240714652,240724437,'NM_138336','MYEOV2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',210863112,210876584,'NM_079422','MYL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',191818498,191998360,'NM_001161819','MYO1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',170742900,171219920,'NM_138995','MYO3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',128009847,128111773,'NM_001080527','MYO7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',1771891,2314052,'NM_015025','MYT1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131958002,131966534,'NM_001085365','MZT2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130655970,130664770,'NM_025029','MZT2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',191222092,191265737,'NM_005966','NAB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',71148915,71159506,'NM_017567','NAGK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73721357,73723045,'NM_003960','NAT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73781143,73781975,'NM_016347','NAT8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',15224482,15618905,'NM_015909','NBAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',203587846,203790962,'NM_001114132','NBEAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96365210,96405001,'NM_015341','NCAPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',105727951,105877162,'NM_003581','NCK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',183497849,183611474,'NM_013436','NCKAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',133145841,134042501,'NM_207363','NCKAP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232027702,232037449,'NM_005381','NCL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24660849,24847074,'NM_003743','NCOA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',240545461,240613492,'NM_004544','NDUFA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201644706,201658718,'NM_002491','NDUFB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',206696047,206732488,'NM_001199982','NDUFS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',152050098,152299247,'NM_001164508','NEB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233605625,233608011,'NM_005383','NEU2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',242398832,242407412,'NM_001167600','NEU4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96527109,96537573,'NR_026875','NEURL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',182249077,182253637,'NM_002500','NEUROD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',177803278,177838105,'NM_006164','NFE2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',69476756,69518257,'NM_015700','NFU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233451639,233501105,'NM_001114090','NGEF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219648289,219733831,'NM_024782','NHEJ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201462294,201476900,'NM_001136039','NIF3L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',32303021,32344316,'NM_021209','NLRC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',151835227,151854676,'NM_004688','NMI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',100453375,100466174,'NM_001011717','NMS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232096114,232103426,'NM_006056','NMUR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10628344,10747563,'NM_024894','NOL10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202838759,202876629,'NM_015934','NOP58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',169367345,169430095,'NM_001039724','NOSTRIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73282893,73291848,'NM_001134462','NOTO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',100803044,100979719,'NM_002518','NPAS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',110238202,110319928,'NM_207181','NPHP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232495048,232499282,'NM_024409','NPPC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',156889189,156897533,'NM_006186','NR4A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27504976,27518628,'NM_013392','NRBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',206255468,206350125,'NM_018534','NRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',49999146,50428398,'NM_138735','NRXN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',18607617,18634327,'NM_001199087','NT5C1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',18599469,18634327,'NM_001199103','NT5C1B-RDH14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',11715754,11727780,'NM_012344','NTSR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',183697327,183734653,'NM_138285','NUP35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',139143196,139254281,'NM_007226','NXPH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',192251042,192261493,'NR_024415','OBFC2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',220123693,220144512,'NM_015311','OBSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10497958,10505904,'NM_002539','ODC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',174645420,174821611,'NM_013341','OLA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',240617580,240618519,'NM_001005853','OR6B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',240633166,240634162,'NM_173351','OR6B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',71104712,71110568,'NR_002185','OR7E91P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201483138,201536669,'NM_006190','ORC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',148404435,148494776,'NM_001190882','ORC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',190343237,190357342,'NM_001128150','ORMDL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',178893216,178972406,'NM_145739','OSBPL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',190319630,190336169,'NM_022353','OSGEPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',19414726,19421853,'NM_145260','OSR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27146845,27148071,'NM_001134693','OST4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26533574,26554414,'NM_004802','OTOF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',240727118,240728746,'NM_148961','OTOS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',63130695,63138470,'NM_001199770','OTX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',42843142,42844905,'NM_148962','OXER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',147061094,147065028,'NR_026904','PABPC1P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',71263375,71307741,'NM_020459','PAIP2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',60836868,60882725,'NM_022894','PAPOLG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',205118760,206193131,'NM_205863','PARD3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241694187,241737551,'NM_015148','PASK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',222866592,222871959,'NM_000438','PAX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113690044,113752968,'NM_003466','PAX8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70168088,70169838,'NM_006196','PCBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70042898,70167651,'NR_033872','PCBP1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',120018494,120130707,'NM_001029996','PCDP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',193322815,193349870,'NR_002769','PCGEM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74585677,74588329,'NM_032673','PCGF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70338734,70361821,'NM_016297','PCYOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',242440705,242449731,'NM_005018','PDCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',100545849,100559633,'NM_024065','PDCL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',178196222,178645728,'NM_016953','PDE11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',182715427,183095498,'NM_005019','PDE1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232305390,232354218,'NM_002601','PDE6D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10840967,10870411,'NM_005742','PDIA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',173129024,173172108,'NM_002610','PDK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',216611355,216654784,'NM_018441','PECR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',64173289,64225109,'NM_020651','PELI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238817417,238861946,'NM_022817','PER2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',61098315,61132629,'NM_002618','PEX13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24191747,24199655,'NM_199346','PFN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',197405972,197499699,'NM_024989','PGAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',170259209,170266465,'NM_001199285','PHOSPHO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',170259209,170316642,'NM_001199290','PHOSPHO2-KLHL23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',229596932,229844301,'NM_017933','PID1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',46661916,46697755,'NM_002643','PIGF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208839235,208878516,'NM_001178000','PIKFYVE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',42128664,42139172,'NM_138370','PKDCC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',216789856,216793160,'NR_037701','PKI55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',159021721,159246186,'NM_003628','PKP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',160505505,160627372,'NM_007366','PLA2R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',28572441,28720157,'NM_153021','PLB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219180731,219210153,'NM_032726','PLCD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',198377670,198722853,'NM_006226','PLCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',68445825,68478089,'NM_002664','PLEK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',179053444,179078028,'NM_019091','PLEKHA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131578889,131623895,'NM_001100623','PLEKHB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',43717942,43848630,'NM_172069','PLEKHH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208394256,208598529,'NM_001080475','PLEKHM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',106369200,106374283,'NR_003506','PLGLA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',87091098,87102480,'NM_001032392','PLGLB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',87091098,87102484,'NM_002665','PLGLB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',190357055,190450600,'NM_001128143','PMS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218896145,218919760,'NM_022572','PNKD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',68238508,68256595,'NM_020143','PNO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',55714701,55774515,'NM_033109','PNPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',75039282,75050367,'NM_019896','POLE4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86106961,86186789,'NM_015425','POLR1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113015962,113051198,'NM_019014','POLR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',128320309,128332199,'NM_004805','POLR2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',25237225,25245063,'NM_000939','POMC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131692393,131738886,'NM_001083538','POTEE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130547577,130603265,'NM_001099771','POTEF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',132065737,132101469,'NR_033885','POTEKP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',104838400,104839903,'NM_006236','POU3F3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241037508,241044790,'NR_024014','PP14571'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',170149095,170202500,'NM_004792','PPIG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201443923,201462094,'NM_032472','PPIL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',44249503,44312115,'NM_177969','PPM1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27457564,27486000,'NM_177983','PPM1G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',28828129,28879310,'NM_002709','PPP1CB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',182558795,182690664,'NM_001080545','PPP1R1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241738574,241771112,'NM_002712','PPP1R7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',68259492,68333155,'NM_000945','PPP3R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',11212990,11236449,'NM_152391','PQLC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73308641,73313864,'NM_032319','PRADC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27207128,27211046,'NM_013388','PREB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',44398251,44440392,'NM_001042386','PREPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219395349,219404756,'NM_017431','PRKAG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',45732546,46268633,'NM_005400','PRKCE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',37331149,37397726,'NM_005813','PRKD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',179004386,179023730,'NM_001139517','PRKRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238139955,238140557,'NM_015893','PRLH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',127892465,127903292,'NM_000312','PROC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',68726457,68736212,'NM_138964','PROKR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',95303927,95320782,'NM_144707','PROM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',55362958,55365111,'NR_027258','PRORSD1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',153216352,153282221,'NM_017892','PRPF40A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',240629902,240631072,'NM_001080835','PRR21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233093416,233098669,'NM_001195129','PRSS56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113648030,113677148,'NM_012455','PSD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231629821,231745784,'NM_002807','PSMD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',161873031,161976472,'NM_005805','PSMD14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',53944707,54051481,'NM_014614','PSME4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86186815,86222791,'NM_017952','PTCD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208979800,209067476,'NM_005048','PTH2R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232281478,232286494,'NM_002823','PTMA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130830049,130849452,'NM_001142370','PTPN18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',120233676,120451507,'NM_002830','PTPN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219862588,219882539,'NM_002846','PTPRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24866639,24869755,'NM_001013663','PTRHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',20311933,20390625,'NM_015317','PUM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',61021051,61098869,'NM_144709','PUS10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',1614665,1727298,'NM_012293','PXDN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',37425256,37453969,'NM_012413','QPCT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',136005552,136199309,'NM_015361','R3HDM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',26110232,26213827,'NM_016131','RAB10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73154017,73193654,'NM_015470','RAB11FIP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238147703,238164508,'NM_022449','RAB17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',65167491,65210939,'NM_015543','RAB1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',135526304,135644749,'NM_012233','RAB3GAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130453704,130456781,'NM_032144','RAB6C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',114101286,114117445,'NM_007082','RABL2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',17555466,17563187,'NM_001099218','RAD51AP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',120726883,120768756,'NM_002881','RALB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238432925,238485494,'NM_005855','RAMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',108702368,108768699,'NM_006267','RANBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',173394560,173625866,'NM_001100397','RAPGEF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',204014436,204108303,'NM_203365','RAPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',33592445,33643302,'NM_015376','RASGRP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27857769,27966727,'NM_022128','RBKS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',151812973,151826635,'NM_198557','RBM43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238372126,238416190,'NM_001080504','RBM44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',178685427,178702628,'NM_152945','RBM45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',160836907,161058564,'NM_002897','RBMS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',18599469,18605440,'NM_020905','RDH14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86294630,86418288,'NM_001164732','REEP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',79201091,79204053,'NM_002909','REG1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',79165656,79168658,'NM_006507','REG1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',79216136,79219061,'NR_002714','REG1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',79237639,79240388,'NM_002580','REG3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',79106333,79109136,'NM_198448','REG3G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',60962255,61003682,'NM_002908','REL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219900374,219906143,'NM_001007089','RESP18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85422588,85435332,'NM_017750','RETSAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',99383369,99472912,'NM_016316','REV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',198143771,198248829,'NM_144629','RFTN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',101380254,101457597,'NM_001145664','RFX8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86998248,87094610,'NM_001024457','RGPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',87837834,87906401,'NM_001078170','RGPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',106387567,106451233,'NM_001144013','RGPD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',107809819,107875432,'NM_182588','RGPD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',109909254,109972552,'NM_005054','RGPD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',110705915,110771303,'NM_001123363','RGPD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',109909139,109972571,'NM_001164463','RGPD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',227408914,227572167,'NM_032276','RHBDD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',20510315,20512682,'NM_004040','RHOB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',46623370,46665331,'NM_012249','RHOQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',151974642,152042106,'NM_018151','RIF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86800924,86858675,'NM_022780','RMND5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',3570565,3583815,'NM_002936','RNASEH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',151032954,151052426,'NM_005168','RND3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86697050,86704511,'NM_001198952','RNF103'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86584063,86801756,'NM_001198954','RNF103-VPS24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',6974973,7101760,'NM_014746','RNF144A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',101258494,101291610,'NM_173647','RNF149'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85676347,85678342,'NM_016494','RNF181'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219236830,219245025,'NM_022453','RNF25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241156676,241166822,'NM_018226','RNPEPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',122004925,122005055,'NR_023343','RNU4ATAC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',11239228,11402162,'NM_004850','ROCK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',210575596,210594195,'NM_006916','RPE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',88772290,88831567,'NM_144563','RPIA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',54609862,54610482,'NR_002229','RPL23AP32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',114095772,114101185,'NR_024531','RPL23AP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',100985122,100989317,'NM_000993','RPL31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',217071764,217074433,'NM_000998','RPL37A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',154042097,154043568,'NM_019845','RPRM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',55313044,55316493,'NM_002954','RPS27A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',3600727,3606384,'NM_001011','RPS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219141921,219167243,'NM_005444','RQCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10180313,10188997,'NM_001034','RRM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',6935246,6955814,'NM_080657','RSAD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74506495,74521218,'NM_033046','RTKN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',55052830,55131238,'NM_020532','RTN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218607901,218663549,'NR_034176','RUFY4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233881047,233920440,'NM_000541','SAG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',128415260,128501339,'NM_001145928','SAP130'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',199842467,200044234,'NM_015265','SATB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233849110,233849388,'NR_003008','SCARNA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233862060,233862326,'NR_003006','SCARNA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',224169901,224175461,'NM_003469','SCG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238634303,238672793,'NM_016510','SCLY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',166553915,166638395,'NM_001165964','SCN1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',165858586,165957066,'NM_021007','SCN2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',165652275,165768823,'NM_001081677','SCN3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',166968328,167051727,'NM_002976','SCN7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',166759942,166940743,'NM_002977','SCN9A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',174968702,175002549,'NM_024583','SCRN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',119913888,119998498,'NM_002980','SCTR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',20264038,20288408,'NM_002997','SDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',192407276,192420251,'NM_004657','SDPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96889199,96899462,'NM_017789','SEMA4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74734900,74762693,'NM_004263','SEMA4F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',109657664,109729072,'NM_144710','SEPT10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241903953,241942114,'NM_004404','SEPT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',224548008,224612280,'NM_006216','SERPINE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',64712258,64734550,'NM_014755','SERTAD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',179674663,179837595,'NM_178123','SESTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',197964942,198008016,'NM_012433','SF3B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24143957,24152818,'NM_016047','SF3B14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',128175066,128177877,'NM_032740','SFT2D3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85737950,85749375,'NM_198843','SFTPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73022672,73152473,'NM_144579','SFXN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201099109,201153636,'NM_001160046','SGOL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',222997565,223131861,'NM_152386','SGPP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85515428,85517663,'NM_198482','SH2D6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',235525366,235629097,'NM_014521','SH3BP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',109112428,109619489,'NM_001099289','SH3RF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',208135,254068,'NM_001159597','SH3YL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',45085827,45090046,'NM_016932','SIX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',45022540,45026720,'NM_005413','SIX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218954995,218969861,'NM_000578','SLC11A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',230607933,230641959,'NM_152527','SLC16A14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',228258169,228290989,'NM_025243','SLC19A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',65069082,65104503,'NM_001193493','SLC1A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',113119904,113137871,'NM_005415','SLC20A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219734424,219743061,'NM_001144890','SLC23A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',172348160,172459059,'NM_003705','SLC25A12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27330943,27339464,'NM_003459','SLC30A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',32244413,32302685,'NM_017964','SLC30A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',114188402,114230870,'NM_025181','SLC35F5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',165462954,165520281,'NM_173512','SLC38A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',196229776,196310671,'NM_001127257','SLC39A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',44356100,44401466,'NM_000341','SLC3A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',190133560,190153782,'NM_014585','SLC40A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',162189090,162550032,'NM_001178015','SLC4A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27739841,27771351,'NM_018158','SLC4A1AP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',220200535,220214946,'NM_201574','SLC4A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74302068,74395660,'NM_021196','SLC4A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27275958,27288679,'NM_021095','SLC5A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',107969426,107996875,'NM_021815','SLC5A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',40192789,40510948,'NM_021097','SLC8A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',102602597,102694241,'NM_003048','SLC9A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',102456193,102516863,'NM_001011552','SLC9A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',216985381,217056019,'NM_014140','SMARCAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',17708559,17798577,'NM_001142286','SMC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',55629017,55698300,'NM_020463','SMEK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130625434,130655800,'NM_017951','SMPD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',88148413,88194017,'NM_198274','SMYD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73294873,73307863,'NM_006062','SMYD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',78035540,78035660,'NR_024342','SNAR-H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',241586927,241682316,'NM_001080437','SNED1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',69600680,69600807,'NR_003705','SNORA36C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',206735196,206735328,'NR_002590','SNORA41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',61497882,61498016,'NR_003707','SNORA70B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',165252398,165252533,'NR_033309','SNORA70F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232028754,232028891,'NR_002921','SNORA75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',10504290,10504426,'NR_028374','SNORA80B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202866018,202866102,'NR_003031','SNORD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202864284,202864396,'NR_003694','SNORD11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232029398,232029478,'NR_002908','SNORD20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',206734849,206734919,'NR_002589','SNORD51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',29003436,29003512,'NR_002741','SNORD53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202849398,202849486,'NR_003058','SNORD70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',232033322,232033397,'NR_004398','SNORD82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',101255829,101255943,'NR_003070','SNORD89'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',28990031,28990120,'NR_003074','SNORD92'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',86216503,86216640,'NR_004378','SNORD94'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96303800,96335034,'NM_014014','SNRNP200'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',69974578,69985872,'NM_006857','SNRNP27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70362009,70374373,'NM_003096','SNRPG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',936553,1350391,'NM_018968','SNTG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27446892,27453498,'NM_014748','SNX17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',46779602,46843431,'NM_014011','SOCS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',39062193,39201108,'NM_005633','SOS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',5750249,5758968,'NM_003108','SOX11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',230989114,231081105,'NM_001206701','SP100'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',230741889,230793071,'NM_080424','SP110'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',230798688,230886174,'NM_007237','SP140'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',230900137,230976689,'NM_138402','SP140L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',174479432,174538676,'NM_001172712','SP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',171280102,171282744,'NM_001003845','SP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',174908066,174910514,'NM_001145250','SP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',213857360,214983470,'NM_024532','SPAG16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',32142183,32236210,'NM_014946','SPAST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',231569082,231580243,'NM_139073','SPATA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',200879229,201055231,'NM_001100424','SPATS2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',169435646,169455190,'NM_020675','SPC25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',28887203,28926979,'NM_182756','SPDYA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',220033777,220039828,'NM_001173476','SPEG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',228552913,228754605,'NM_030623','SPHKAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',138975819,139047277,'NM_001001664','SPOPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234624084,234650515,'NM_006944','SPP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',72968019,72972797,'NM_003124','SPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',65391488,65447435,'NM_001128210','SPRED2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',54639034,54742949,'NM_178313','SPTBN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',45469322,45691937,'NM_018079','SRBD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',31603159,31659544,'NM_000348','SRD5A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',38824244,38832140,'NM_001031684','SRSF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',170363634,170376821,'NM_003142','SSB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',182464716,182503709,'NM_001130445','SSFA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85919782,85948304,'NM_001042437','ST3GAL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',106784487,106869042,'NM_001142351','ST6GAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',152681560,152740752,'NM_005843','STAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73909550,73947803,'NM_201647','STAMBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96214329,96238300,'NM_020151','STARD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',191542006,191587221,'NM_007315','STAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',191602546,191724231,'NM_003151','STAT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',119697853,119739697,'NM_001008410','STEAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',220170839,220189417,'NM_052902','STK11IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219818444,219823303,'NR_026909','STK16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',196706551,196744581,'NM_004226','STK17B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',242083104,242096707,'NM_006374','STK25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219244992,219275684,'NM_015690','STK36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',168518775,168812351,'NM_013233','STK39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',48610811,48679158,'NM_001198595','STON1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',48649662,48760252,'NM_172311','STON1-GTF2A1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202024636,202053819,'NM_018571','STRADB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',36918344,37047119,'NM_003162','STRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',84504157,84540097,'NM_003849','SUCLG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',108271526,108292803,'NM_001056','SULT1C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',108305125,108336686,'NR_037191','SULT1C2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',108230082,108248239,'NM_001008743','SULT1C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',108360852,108370702,'NM_006588','SULT1C4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',37248466,37269194,'NM_001032377','SULT6B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202779147,202811567,'NM_003352','SUMO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27727182,27739953,'NM_014860','SUPT7L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',75131670,75280153,'NM_015727','TACR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',9901021,9991996,'NM_005680','TAF1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',159533391,159797416,'NM_033394','TANC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',161701711,161800928,'NM_004180','TANK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',100990121,101134278,'NM_001102426','TBC1D8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',161980865,161989819,'NM_006593','TBR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27225448,27229323,'NM_175769','TCF23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85214093,85391022,'NM_031283','TCF7L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',94900958,94906295,'NM_144705','TEKT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74126957,74188810,'NM_144993','TET3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',71066575,71075509,'NM_144582','TEX261'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',121690633,121759248,'NM_014553','TFCP2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',188037202,188127464,'NM_006287','TFPI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70527919,70634655,'NM_001099691','TGFA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',105249971,105312580,'NM_001142621','TGFBRAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85398651,85408930,'NM_001206840','TGOLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',43311478,43676617,'NM_001083953','THADA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',242172492,242225398,'NM_015963','THAP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',88250928,88267271,'NM_001244676','THNSL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',137464931,138151757,'NM_001080427','THSD7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',39816703,39859920,'NR_028102','THUMPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70290079,70329283,'NM_022037','TIA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',233121022,233123470,'NM_145702','TIGD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131044888,131058204,'NR_027313','TISP43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',171555578,171725656,'NM_012290','TLK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74595103,74597783,'NM_016170','TLX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',227935117,227952266,'NM_024795','TM4SF20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218847160,218865524,'NM_022152','TMBIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',192522991,192767889,'NM_016192','TMEFF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',96279672,96295478,'NM_001193304','TMEM127'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',97739232,97978786,'NM_015348','TMEM131'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85679180,85683333,'NR_033179','TMEM150A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',134929799,135193041,'NM_030923','TMEM163'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',216654833,216675751,'NM_001142310','TMEM169'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',62580859,62587108,'NM_198276','TMEM17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',120153212,120156164,'NM_030577','TMEM177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',39746538,39798607,'NM_152390','TMEM178'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',657972,667439,'NM_152834','TMEM18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',102744921,102800570,'NM_144632','TMEM182'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',120691516,120697454,'NM_024121','TMEM185B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',191079863,191107713,'NM_001142645','TMEM194B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',220116988,220123561,'NM_001005209','TMEM198'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27109277,27118069,'NM_017727','TMEM214'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',202193151,202215655,'NM_152388','TMEM237'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',119905915,119912566,'NM_183240','TMEM37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',112529270,112593366,'NM_032824','TMEM87B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',84986273,84987310,'NM_021103','TMSB10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',151922351,151944808,'NM_007115','TNFAIP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',217432426,217433027,'NM_003284','TNP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218372756,218517041,'NM_022648','TNS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24153806,24160705,'NM_001206802','TP53I3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',1396239,1525506,'NM_175719','TPO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',73810464,73818025,'NM_016058','TPRKB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238893923,238974280,'NM_015650','TRAF3IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',201950174,202024564,'NM_015049','TRAK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',12774448,12800309,'NR_027303','TRIB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',95621492,95629196,'NM_138800','TRIM43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',95506441,95514206,'NM_001164464','TRIM43B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27358800,27383811,'NM_187841','TRIM54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',230340173,230494899,'NM_004238','TRIP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',28926191,28946679,'NM_017910','TRMT61B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234490781,234592905,'NM_024080','TRPM8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',98980155,99124469,'NM_182911','TSGA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',122229590,122241898,'NM_004622','TSN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',54333818,54336913,'NM_001003937','TSPYL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',3171747,3360660,'NM_003310','TSSC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',3362452,3462349,'NM_016030','TTC15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',166438698,166518594,'NM_024753','TTC21B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',32706590,32899622,'NM_017735','TTC27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',178187271,178191940,'NM_152275','TTC30A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',178123126,178125770,'NM_152517','TTC30B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74563707,74575199,'NM_022492','TTC31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',19959994,19965225,'NM_001008237','TTC32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',47021816,47156779,'NM_020458','TTC7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219283811,219328382,'NM_014640','TTLL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',179098963,179380395,'NM_133378','TTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131950049,131956977,'NM_080386','TUBA3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',130665787,130672504,'NM_207312','TUBA3E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219823244,219826882,'NM_006000','TUBA4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219826208,219845154,'NR_003063','TUBA4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',239460355,239460830,'NM_057179','TWIST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',99301918,99319292,'NM_005783','TXNDC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',200501878,200528704,'NR_004862','TYW5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',181553586,181636395,'NM_006357','UBE2E3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238540325,238616162,'NM_080678','UBE2F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',238540325,238672793,'NR_037904','UBE2F-SCLY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',170392263,170648885,'NM_172070','UBR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',24016879,24077197,'NM_181713','UBXN2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',136215658,136259103,'NM_014607','UBXN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27383768,27384634,'NM_003353','UCN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',128565223,128669719,'NM_020120','UGGT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',63922517,63972200,'NM_006759','UGP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234333657,234346684,'NM_000463','UGT1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234209861,234346690,'NM_019075','UGT1A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234302511,234346684,'NM_019093','UGT1A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234292176,234346684,'NM_007120','UGT1A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234286376,234346684,'NM_019078','UGT1A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234266250,234346690,'NM_001072','UGT1A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234255322,234346684,'NM_019077','UGT1A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234191029,234346684,'NM_019076','UGT1A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234245282,234346690,'NM_021027','UGT1A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',98591473,98601409,'NM_014044','UNC50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',210344961,210572269,'NM_032504','UNC80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',45254983,45335584,'NR_033831','UNQ6975'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',158666627,158700912,'NM_173355','UPP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',61268093,61551353,'NM_014709','USP34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219023217,219141328,'NM_020935','USP37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85696793,85729917,'NM_006590','USP39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',234048903,234134606,'NM_018218','USP40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',106076190,106177227,'NM_025076','UXS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85665041,85674022,'NM_006634','VAMP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',85658124,85662667,'NM_003761','VAMP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',70981227,71014083,'NM_012476','VAX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',218992081,219022492,'NM_007127','VIL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',36777336,36840322,'NM_001177972','VIT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',63973170,64099718,'NM_001005739','VPS54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',58127280,58240559,'NM_001130480','VRK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',17585287,17701187,'NM_003385','VSNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',98070026,98295842,'NM_144992','VWA3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',214984705,215148898,'NM_001080500','VWC2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',114057699,114073083,'NR_024077','WASH2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74539034,74541526,'NM_012477','WBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',224448308,224518296,'NM_020830','WDFY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',63202038,63669371,'NM_015910','WDPCP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',203453567,203485194,'NM_018256','WDR12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',128209423,128285231,'NM_001006623','WDR33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',19973509,20053365,'NM_020779','WDR35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',28971036,29024584,'NM_015131','WDR43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',74502392,74506390,'NM_032118','WDR54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',228444570,228497270,'NM_178821','WDR69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',190014403,190048509,'NM_032168','WDR75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',68210784,68238160,'NM_138458','WDR92'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',159800549,159851349,'NM_001128213','WDSUB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',175132547,175207553,'NM_003387','WIPF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219453498,219466895,'NM_025216','WNT10A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219432789,219447198,'NM_006522','WNT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',131834534,131838201,'NM_001077637','WTH3DI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',31410691,31491115,'NM_000379','XDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',167453242,167824507,'NM_152381','XIRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',61558572,61618922,'NM_003400','XPO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',216682264,216779261,'NM_021141','XRCC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',32356461,32385162,'NM_032312','YIPF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',30223253,30236903,'NM_016061','YPEL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',135438742,135498718,'NM_025052','YSK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',9641556,9688557,'NM_006826','YWHAQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',173648810,173800119,'NM_133646','ZAK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',97696462,97722755,'NM_001079','ZAP70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',187059129,187082332,'NM_018471','ZC3H15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',112749648,112814111,'NM_198581','ZC3H6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',112689910,112729135,'NM_032494','ZC3H8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',206847767,206887393,'NM_020923','ZDBF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',144858411,144994428,'NM_001171653','ZEB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',144993650,144994936,'NR_040248','ZEB2-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219779781,219782614,'NM_138802','ZFAND2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',43303044,43307249,'NM_006887','ZFP36L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',219210883,219232505,'NM_001105537','ZNF142'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',95194909,95213791,'NM_021088','ZNF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',180014955,180135560,'NM_001113398','ZNF385B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27659396,27699467,'NM_032434','ZNF512'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',27453601,27457115,'NM_144631','ZNF513'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',95177126,95188990,'NM_032788','ZNF514'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',71412396,71515697,'NM_014497','ZNF638'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',185171337,185512459,'NM_194250','ZNF804A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',135674043,136005276,'NM_032143','ZRANB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2',187400451,187422142,'NM_182521','ZSWIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',25223378,25319618,'NM_015600','ABHD12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61963009,61964785,'NM_080622','ABHD16B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43903766,43919455,'NM_005469','ACOT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',24934872,24987616,'NM_032501','ACSS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32927988,32979430,'NM_018677','ACSS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36810510,36834503,'NM_024855','ACTR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42681576,42713790,'NM_000022','ADA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3596619,3610738,'NM_153202','ADAM33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36643251,36650518,'NM_001018082','ADIG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48940289,48980934,'NM_181442','ADNP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',4149277,4177659,'NM_000678','ADRA1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60311421,60317313,'NM_007002','ADRM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32331731,32354876,'NM_000687','AHCY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',801296,844960,'NM_015985','ANGPT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',9963696,9985407,'NM_022096','ANKRD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56467831,56523355,'NM_153360','APCDD1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61374609,61391587,'NM_175609','ARFGAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',46971681,47086637,'NM_006420','ARFGEF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61800438,61809799,'NM_003224','ARFRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36663990,36712709,'NM_001164431','ARHGAP40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32311831,32320809,'NM_001672','ASIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30409807,30424013,'NM_001164603','ASXL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57037127,57040817,'NM_001001977','ATP5E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',49646720,49818315,'NM_006045','ATP9A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3399664,3544550,'NM_139322','ATRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',54377851,54400758,'NM_198433','AURKA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3011201,3013370,'NM_000490','AVP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47682889,47763828,'NM_004776','B4GALT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',17622319,17664517,'NM_001159495','BANF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',51993485,52120711,'NM_003657','BCAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48844873,48927121,'NM_017843','BCAS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29715921,29774317,'NM_001191','BCL2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',17422549,17460013,'NM_001195','BFSP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61107775,61108832,'NM_080606','BHLHE23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61337720,61342299,'NM_139317','BIRC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',35579232,35589747,'NM_006698','BLCAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',6696744,6708910,'NM_001200','BMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',55177215,55275114,'NM_001719','BMP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36365965,36399319,'NM_001725','BPI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31287462,31294776,'NM_016583','BPIFA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31219620,31232884,'NM_080574','BPIFA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31268795,31279220,'NM_001042439','BPIFA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31245071,31261929,'NR_026760','BPIFA4P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31334601,31361345,'NM_033197','BPIFB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31059067,31075176,'NM_025227','BPIFB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31106890,31125095,'NM_182658','BPIFB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31132978,31163218,'NM_182519','BPIFB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31083114,31095514,'NM_174897','BPIFB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',11846564,11855243,'NM_014962','BTBD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',9443004,9459171,'NM_001199897','C20orf103'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',54533191,54534615,'NM_001012971','C20orf106'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',54541708,54544983,'NM_001013646','C20orf107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',54367389,54377125,'NM_080821','C20orf108'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61039885,61050272,'NM_017896','C20orf11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42257994,42272960,'NM_016470','C20orf111'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30494522,30534949,'NM_080616','C20orf112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34937983,34956046,'NM_080628','C20orf118'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44602991,44612620,'NM_080721','C20orf123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',35163042,35241388,'NM_152503','C20orf132'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31717964,31719992,'NM_001024675','C20orf134'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2743656,2744476,'NM_080739','C20orf141'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31713752,31715382,'NM_080825','C20orf144'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60418687,60436024,'NM_080833','C20orf151'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34019942,34082036,'NM_080834','C20orf152'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30061905,30083645,'NM_080625','C20orf160'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43948536,43949645,'NM_080608','C20orf165'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60558104,60578416,'NM_178463','C20orf166'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60551882,60559213,'NR_033263','C20orf166-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33578212,33580895,'NM_001145350','C20orf173'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57948838,57957097,'NM_001190827','C20orf177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3177947,3336255,'NM_001009984','C20orf194'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61654816,61658479,'NM_024059','C20orf195'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5679042,5792559,'NM_152504','C20orf196'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',58064374,58081403,'NM_173644','C20orf197'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60898249,60902390,'NM_018270','C20orf20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62185176,62186156,'NM_001007125','C20orf201'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1132097,1136918,'NM_001009612','C20orf202'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30683087,30703444,'NM_182584','C20orf203'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34667550,34674374,'NM_018840','C20orf24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',19985289,20100977,'NM_001167816','C20orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3682157,3696452,'NM_001039140','C20orf27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3749170,3753954,'NM_018347','C20orf29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',24891579,24921425,'NM_020531','C20orf3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5028483,5041733,'NM_014145','C20orf30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34287860,34308267,'NM_015511','C20orf4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',54477053,54527349,'NM_016407','C20orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1109214,1113117,'NM_018354','C20orf46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',688723,697228,'NM_033409','C20orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',13713671,13747067,'NR_029377','C20orf7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',17897761,17919762,'NM_052865','C20orf72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18742369,18743035,'NM_178483','C20orf79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56159388,56169589,'NM_178456','C20orf85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',10363950,10552027,'NM_001009608','C20orf94'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',199503,219419,'NM_080571','C20orf96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60397080,60415734,'NM_031215','CABLES2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',54420574,54467803,'NM_001164116','CASS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31613831,31701498,'NM_005093','CBFA2T2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',54005902,54013419,'NM_080617','CBLN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44180312,44191791,'NM_001250','CD40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23007992,23014977,'NM_012072','CD93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3724400,3734761,'NM_021873','CDC25B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44235782,44313741,'NM_021248','CDH22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57966865,58021563,'NM_177980','CDH26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',59260953,59945694,'NM_001794','CDH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31410305,31452998,'NM_016408','CDK5RAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5055406,5126533,'NM_003818','CDS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48240782,48242619,'NM_005194','CEBPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3712497,3715337,'NM_001810','CENPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33506636,33563217,'NM_007186','CEP250'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',39464583,39680547,'NM_032221','CHD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5839973,5854005,'NM_001819','CHGB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31862770,31905834,'NM_176812','CHMP4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61445108,61463139,'NM_000744','CHRNA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61394982,61432729,'NM_020882','COL20A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60918858,60942956,'NM_001853','COL9A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30754153,30795475,'NM_001099339','COMMD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29689351,29696461,'NM_032609','COX4I2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33677366,33716292,'NM_152925','CPNE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2722714,2729292,'NM_001184699','CPXM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5934738,5968697,'NM_019095','CRLS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',19963011,19984690,'NM_016652','CRNKL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47096244,47146893,'NM_001316','CSE1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',411337,472482,'NM_177560','CSNK2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18073742,18117031,'NR_028402','CSRP2BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23676189,23679574,'NM_001898','CST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23379040,23381482,'NM_130794','CST11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23752403,23755312,'NM_001322','CST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23562293,23566574,'NM_000099','CST3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23614276,23617662,'NM_001899','CST4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23804571,23808380,'NM_001900','CST5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',24877865,24888564,'NM_003650','CST7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23419765,23424655,'NM_005492','CST8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23531046,23534610,'NM_001008693','CST9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23493369,23497386,'NM_080610','CST9L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',54400980,54412989,'NM_001324','CSTF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23368321,23373567,'NM_138283','CSTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23447782,23470655,'NR_001279','CSTT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',55505629,55533560,'NM_080618','CTCFL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',35755847,35933934,'NM_030877','CTNNBL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43952997,43960865,'NM_000308','CTSA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57003636,57015704,'NM_001336','CTSZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',52203394,52223923,'NM_000782','CYP24A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43468234,43472664,'NM_001197140','DBNDD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3119011,3133295,'NM_023935','DDRGK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47269238,47294021,'NM_017895','DDX27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29309127,29311096,'NM_001037730','DEFB115'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29354675,29360049,'NM_001037731','DEFB116'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29420081,29425366,'NM_054112','DEFB118'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29440431,29442067,'NM_153323','DEFB119'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29456308,29464302,'NM_001171832','DEFB121'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29472902,29480638,'NR_002577','DEFB122'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29492071,29501721,'NM_153324','DEFB123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29516969,29524477,'NM_001037500','DEFB124'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',16350,25296,'NM_153325','DEFB125'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',71251,74392,'NM_030931','DEFB126'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',86185,87804,'NM_139074','DEFB127'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',116526,118264,'NM_001037732','DEFB128'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',155898,158527,'NM_080831','DEFB129'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',186376,189736,'NM_207469','DEFB132'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',37024394,37101780,'NR_033905','DHX35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60989011,61039749,'NM_080797','DIDO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34523555,34590454,'NM_183006','DLGAP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61996898,62037828,'NM_025219','DNAJC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30831318,30860823,'NM_175850','DNMT3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43853982,43873473,'NM_052951','DNTTIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',52525672,52701117,'NM_018431','DOK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60946920,60947988,'NM_080750','DPH3P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48984811,49008467,'NM_003859','DPM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34813607,34835568,'NM_024918','DSN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',17498598,17536652,'NM_006870','DSTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18516555,18692560,'NM_080820','DTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29912530,29921672,'NM_177991','DUSP15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32567864,32592423,'NM_014183','DYNLRB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18312010,18395829,'NM_001099407','DZANK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31726952,31737871,'NM_005225','E2F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2621523,2688754,'NM_001110514','EBF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33166820,33198822,'NR_026728','EDEM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57308893,57334442,'NM_207034','EDN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61589809,61600949,'NM_001958','EEF1A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32139775,32163746,'NM_003908','EIF2S2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33330138,33336008,'NM_002212','EIF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44428096,44468678,'NM_133171','ELMO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',39422019,39428912,'NM_052846','EMILIN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',25124338,25155360,'NM_001247','ENTPD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34206075,34284135,'NM_012156','EPB41L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33593191,33608819,'NM_015966','ERGIC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',13642968,13713532,'NM_016649','ESF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44956669,45250899,'NM_172110','EYA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',773284,774922,'NM_031424','FAM110A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2763970,2769332,'NM_022760','FAM113A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',25983249,26015553,'NR_026713','FAM182A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',25692101,25724878,'NR_027061','FAM182B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48636052,48686833,'NM_080829','FAM65C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33336947,33343639,'NM_178468','FAM83C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36988368,37015117,'NM_030919','FAM83D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3075164,3088532,'NM_021826','FASTKD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33609920,33658898,'NR_024377','FER1L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',6003491,6052191,'NM_017671','FERMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42368610,42373303,'NM_001080472','FITM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1297620,1321816,'NM_001199786','FKBP1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1238554,1321816,'NR_037661','FKBP1A-SDCBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61355774,61363412,'NR_024389','FLJ16779'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',24128402,24153224,'NR_040102','FLJ33581'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',14252638,14266313,'NM_198391','FLRT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',22509641,22513101,'NM_021784','FOXA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29895763,29897081,'NM_004118','FOXS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',28225539,28247668,'NR_003579','FRG1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60471947,60484421,'NM_080473','GATA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',54499954,54534388,'NM_080615','GCNT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42309321,42342427,'NM_024034','GDAP1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33484562,33489441,'NM_000557','GDF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3587938,3592046,'NM_145762','GFRA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32896183,32924322,'NM_178026','GGT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23913689,23915512,'NM_178312','GGTLC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',35312903,35318713,'NM_001184731','GHRH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',25336322,25377191,'NM_021067','GINS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61689398,61728825,'NM_012384','GMEB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56848189,56919645,'NM_016592','GNAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56827367,56859353,'NR_002785','GNAS-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2972267,2974391,'NM_178332','GNRH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5473079,5539672,'NM_019593','GPCPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32979896,33007262,'NM_000178','GSS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60191475,60211205,'NM_015666','GTPBP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',41788214,41789056,'NM_176791','GTSF1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23293020,23301683,'NM_022482','GZF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',7811630,7869093,'NM_017545','HAO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61203088,61206182,'NR_003244','HAR1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61197289,61204116,'NR_003245','HAR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30103651,30153318,'NM_002110','HCK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29565901,29591257,'NM_178582','HM13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32885038,32885926,'NR_002165','HMGB3P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42417854,42491725,'NM_175914','HNF4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60223411,60228718,'NM_007232','HRH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3661316,3681758,'NM_001197327','HSPA12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18716614,18722626,'NR_026884','HSPC072'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29656746,29657978,'NM_002165','ID1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2587040,2592843,'NM_174855','IDH3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',41652992,41709276,'NM_016004','IFT52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',20296764,20299592,'NM_002196','INSM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',13150417,13229297,'NM_080826','ISM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32414722,32562858,'NM_031483','ITCH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3138055,3152506,'NM_033453','ITPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',10566331,10602694,'NM_000214','JAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42238870,42249632,'NM_175913','JPH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47421911,47532588,'NM_004975','KCNB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',49053599,49073082,'NM_002237','KCNG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42807901,42814368,'NM_022358','KCNK15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61507985,61574437,'NM_172106','KCNQ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43154363,43163167,'NM_002251','KCNS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34839258,34921690,'NM_199181','KIAA0889'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36272320,36322588,'NM_001029864','KIAA1755'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',16295487,16502079,'NM_001199866','KIF16B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30329114,30386472,'NM_004798','KIF3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',41569733,41603949,'NM_032107','L3MBTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60317515,60375763,'NM_005560','LAMA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36408298,36439067,'NM_004139','LBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61838421,61840904,'NM_017806','LIME1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29537241,29539038,'NR_024358','LINC00028'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61136013,61138825,'NR_028295','LINC00029'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62136140,62141759,'NR_027686','LINC00176'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',22489191,22507280,'NR_001558','LINC00261'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62392181,62405151,'NR_040415','LINC00266-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60764823,60768418,'NR_024470','LOC100127888'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18738371,18758839,'NM_001242671','LOC100128496'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',19170945,19213240,'NR_024564','LOC100130264'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',9952459,10148154,'NR_040710','LOC100131208'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',45380652,45382905,'NR_024594','LOC100131496'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3035556,3079513,'NR_038395','LOC100134015'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',25938434,25950430,'NR_004846','LOC100134868'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61139807,61155660,'NR_033369','LOC100144597'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',21982727,22003292,'NR_038394','LOC100270679'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18722692,18724709,'NR_026885','LOC100270804'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',35738725,35745050,'NR_040021','LOC100287792'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1702010,1708392,'NR_037142','LOC100289473'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',13166066,13168334,'NR_040043','LOC100505536'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42273135,42288081,'NR_038338','LOC100505783'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43025853,43028513,'NR_038341','LOC100505826'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57634913,57636739,'NR_040513','LOC100506384'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1253986,1307379,'NR_040047','LOC100507495'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5360602,5374394,'NR_038239','LOC100507629'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56523840,56628355,'NR_034147','LOC149773'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5427217,5433242,'NR_015406','LOC149837'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30638941,30660355,'NR_034152','LOC149950'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23053704,23061273,'NR_034149','LOC200261'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',46422060,46432788,'NR_026958','LOC284749'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48342663,48364863,'NR_034124','LOC284751'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',22328970,22349281,'NR_027090','LOC284788'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',25069433,25076629,'NR_027093','LOC284798'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',26115654,26137869,'NR_040095','LOC284801'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',37275837,37286805,'NR_027124','LOC339568'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',11195306,11202031,'NR_038972','LOC339593'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18496072,18498203,'NR_015432','LOC388789'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36482652,36497432,'NR_027241','LOC388796'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61111179,61186868,'NR_033370','LOC63930'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5399841,5405780,'NR_029405','LOC643406'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34096953,34102296,'NR_027451','LOC647979'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',4121736,4124600,'NR_033917','LOC728228'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42718506,42733794,'NR_034104','LOC79015'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',39402973,39422636,'NM_022896','LPIN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5969424,5982694,'NM_152611','LRRN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60130911,60143829,'NM_144703','LSM14B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',13924145,15981841,'NM_080676','MACROD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',14812898,14858142,'NR_037841','MACROD2-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',38747930,38751290,'NM_005461','MAFB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',35351464,35379077,'NM_022077','MANBAL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32598352,32611810,'NM_181509','MAP1LC3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30871359,30901872,'NM_012325','MAPRE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43355500,43370381,'NM_030592','MATN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3775445,3804770,'NM_001206491','MAVS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',54257194,54258278,'NM_019888','MC3R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5879297,5923831,'NM_032485','MCM8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18307692,18310127,'NR_034167','MGC44328'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60561957,60562028,'NR_029780','MIR1-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3846140,3846218,'NR_029519','MIR103A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3846148,3846210,'NR_031722','MIR103B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61280296,61280383,'NR_029670','MIR124-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',59961996,59962113,'NR_031658','MIR1257'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2581422,2581488,'NR_031699','MIR1292'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60572563,60572665,'NR_029676','MIR133A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62043261,62043341,'NR_031735','MIR1914'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56826064,56826144,'NR_029844','MIR296'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56826675,56826763,'NR_030580','MIR298'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18399258,18399335,'NR_036160','MIR3192'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29658649,29658704,'NR_036161','MIR3193'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',49502848,49502921,'NR_036162','MIR3194'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61340575,61340639,'NR_036163','MIR3196'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',45229015,45229107,'NR_037410','MIR3616'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42470173,42470257,'NR_037419','MIR3646'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',55329964,55330054,'NR_036219','MIR4325'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61388604,61388663,'NR_036220','MIR4326'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',55903855,55903906,'NR_039757','MIR4532'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',58486563,58486634,'NR_039758','MIR4533'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32100585,32100657,'NR_039911','MIR4755'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',52118353,52118431,'NR_039913','MIR4756'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60340923,60341011,'NR_039915','MIR4758'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33041839,33041961,'NR_030223','MIR499'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33041863,33041936,'NR_039912','MIR499A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32517790,32517884,'NR_030374','MIR644'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48635729,48635823,'NR_030375','MIR645'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',58316926,58317020,'NR_030376','MIR646'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62044427,62044523,'NR_030377','MIR647'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',26136821,26136914,'NR_030386','MIR663'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62021221,62021338,'NR_030637','MIR941-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62021333,62021450,'NR_030638','MIR941-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62021333,62021447,'NR_030639','MIR941-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62021336,62021450,'NR_040032','MIR941-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',10333832,10360570,'NM_018848','MKKS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44525705,44527338,'NR_026640','MKRN7P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',28251244,28251799,'NR_045115','MLLT10P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33278116,33328218,'NM_006690','MMP24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44070953,44078607,'NM_004994','MMP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',49008769,49011227,'NM_014484','MOCS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2974674,2976896,'NM_030811','MRPS26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',55366902,55368285,'NM_001190472','MTRNR2L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',41729122,41778536,'NM_002466','MYBL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33007364,33053901,'NM_020884','MYH7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34603310,34611640,'NM_181526','MYL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29870838,29886161,'NM_033118','MYLK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62266270,62344050,'NM_004535','MYT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',19945933,19962273,'NM_016100','NAA20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',25541572,25552648,'NM_152667','NANP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23303155,23350156,'NM_022080','NAPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',45564007,45719028,'NM_006534','NCOA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44123032,44151987,'NM_020967','NCOA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32766238,32877094,'NM_014071','NCOA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',26032051,26042677,'NR_003678','NCOR1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34713582,34807955,'NM_022477','NDRG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31708553,31725925,'NM_031231','NECAB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43950673,43953308,'NM_080749','NEURL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',49441171,49592665,'NM_173091','NFATC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33720023,33750701,'NM_001198989','NFS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',25381337,25514153,'NM_025176','NINL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61342580,61356337,'NM_152864','NKAIN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',21439659,21442664,'NM_002509','NKX2-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',21324004,21326047,'NM_033176','NKX2-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',35583020,35585504,'NM_005386','NNAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2581177,2587039,'NM_006392','NOP56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62207626,62208628,'NM_005286','NPBWR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56697592,56724307,'NM_001204873','NPEPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',275369,283512,'NM_024958','NRSN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1370806,1396337,'NM_016143','NSFL1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60810633,60864568,'NM_002531','NTSR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',23279372,23283408,'NM_013248','NXT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60906621,60915797,'NM_007346','OGFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62186812,62202440,'NM_001200019','OPRL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60246974,60304664,'NM_014835','OSBPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',16677002,16680809,'NM_020157','OTOR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',17952795,17986521,'NM_021220','OVOL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3000265,3001162,'NM_000915','OXT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42972116,43001376,'NM_001124756','PABPC1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',9466036,9767687,'NM_177990','PAK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3818462,3852502,'NM_153640','PANK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48781487,48803685,'NM_032521','PARD6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',21634296,21644620,'NM_006192','PAX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43996723,44010069,'NM_022104','PCIF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',55569542,55574919,'NM_002591','PCK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62357491,62378023,'NM_018257','PCMTD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5043598,5055268,'NM_002592','PCNA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5048231,5048615,'NR_028370','PCNA-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',17155596,17413222,'NM_001201529','PCSK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29996418,30003544,'NM_030815','PDRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1907401,1922394,'NM_001190900','PDYN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18066498,18071812,'NM_001164811','PET117'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',52257908,52269899,'NM_002623','PFDN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57585958,57856161,'NM_001199505','PHACTR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33823336,34001702,'NM_016436','PHF20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43236953,43238599,'NM_002638','PI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43478120,43488298,'NM_015937','PIGT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32612006,32728750,'NM_080476','PIGU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42593849,42681092,'NM_181805','PKIG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30243967,30259207,'NM_002657','PLAGL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',8061295,8813547,'NM_182734','PLCB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',8997700,9409462,'NM_001172646','PLCB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',39199574,39237771,'NM_182811','PLCG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',21054623,21175258,'NM_001163022','PLK1S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43960665,43973040,'NM_001242921','PLTP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',55656857,55718437,'NM_020182','PMEPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30259356,30269387,'NM_172236','POFUT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18396032,18413286,'NM_006466','POLR3F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61622576,61623968,'NM_024299','PPDPF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36867761,36985081,'NM_015568','PPP1R16B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57945281,57948747,'NM_006242','PPP1R3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56241238,56317901,'NR_003505','PPP4R1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',46674199,46877827,'NM_020820','PREX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61659882,61669551,'NM_033405','PRIC285'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',4650555,4657106,'NM_012409','PRND'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',4614796,4630234,'NM_000311','PRNP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',4659927,4669314,'NR_024269','PRNT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33223434,33228826,'NM_006404','PROCR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5230685,5243015,'NM_144773','PROKR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3091272,3097207,'NM_014731','ProSAPiP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62082874,62134897,'NM_012469','PRPF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29598845,29599680,'NR_003677','PSIMCT-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60145185,60151869,'NM_002792','PSMA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1041905,1096426,'NM_178578','PSMF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47553817,47618114,'NM_000961','PTGIS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61630219,61639151,'NM_005975','PTK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48560297,48634493,'NM_002827','PTPN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2792840,2967315,'NM_002836','PTPRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',40134805,41251971,'NM_133170','PTPRT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31754210,31771797,'NM_007238','PXMP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',25176705,25226648,'NM_002862','PYGB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42399039,42413289,'NM_178491','R3HDML'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56318176,56375969,'NM_020673','RAB22A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1154763,1183145,'NM_001136566','RAD21L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',55359551,55386926,'NM_003610','RAE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',20318271,20641266,'NM_020343','RALGAPA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36534899,36640918,'NM_020336','RALGAPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32045118,32134652,'NM_016732','RALY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',4708669,4752291,'NM_014737','RASSF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18415187,18425887,'NM_006606','RBBP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',336708,359610,'NM_031229','RBCK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',35059591,35157824,'NM_002895','RBL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33700260,33716292,'NM_152838','RBM12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',55399860,55417792,'NM_183425','RBM38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33754944,33793672,'NR_040724','RBM39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43368904,43379878,'NM_014276','RBPJL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29526765,29536369,'NM_014012','REM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62174978,62181289,'NM_005873','RGS19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42813858,42872393,'NM_001205317','RIMS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',19818209,19931103,'NM_018993','RIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47986320,48003829,'NM_018683','RNF114'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3860068,3944216,'NM_001134338','RNF24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33750645,33752316,'NM_080748','ROMO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',35240869,35303439,'NM_002951','RPN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36095361,36154180,'NM_021215','RPRD1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60395515,60396971,'NM_001024','RPS21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',17542322,17610928,'NM_001042576','RRBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',887095,930907,'NM_001040007','RSPO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61759606,61798050,'NM_032957','RTEL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61759606,61800495,'NR_037882','RTEL1-TNFRSF6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',49833989,49852455,'NM_020436','SALL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62075909,62081439,'NM_080621','SAMD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34953640,35013660,'NM_015474','SAMHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34004952,34006695,'NM_016558','SCAND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',590239,604823,'NM_033129','SCRT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43387342,43410478,'NM_002999','SDC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1238554,1242317,'NM_015685','SDCBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18436187,18490050,'NM_006363','SEC23B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',13778049,13919262,'NM_025229','SEL1L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43269051,43271828,'NM_003007','SEMG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43283423,43286513,'NM_003008','SEMG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42561314,42584140,'NM_006811','SERINC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',41621048,41647687,'NM_170693','SGK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3615616,3635775,'NM_023068','SIGLEC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1823424,1868540,'NM_080792','SIRPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1525985,1548689,'NM_001135844','SIRPB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1403235,1420233,'NM_001122962','SIRPB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1462896,1486343,'NM_178460','SIRPD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1557797,1586425,'NM_001039508','SIRPG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34674335,34707972,'NM_032214','SLA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44091227,44122196,'NM_020708','SLC12A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44619868,44713507,'NM_022829','SLC13A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61054443,61070394,'NM_022082','SLC17A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',4781001,4938939,'NM_203327','SLC23A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',19141289,19651541,'NM_020689','SLC24A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44771685,44798392,'NM_030777','SLC2A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61841654,61845847,'NM_020062','SLC2A4RG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36786518,36791429,'NM_080552','SLC32A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44411583,44426471,'NM_173073','SLC35C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3156062,3166835,'NM_001174090','SLC4A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47862656,47942179,'NM_015266','SLC9A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60744241,60774092,'NM_016354','SLCO4A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57041594,57051296,'NM_016045','SLMO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57037127,57051296,'NR_037930','SLMO2-ATP5E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43314292,43316620,'NM_003064','SLPI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',4077449,4116369,'NM_175839','SMOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48032919,48038827,'NM_005985','SNAI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',10147476,10236066,'NM_130811','SNAP25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36508710,36512978,'NR_003239','SNHG11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36510139,36510275,'NR_002972','SNORA39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2583712,2583844,'NR_002981','SNORA51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36511425,36511561,'NR_002986','SNORA60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36489362,36489500,'NR_002911','SNORA71A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36487256,36487392,'NR_002910','SNORA71B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36491723,36491861,'NR_003017','SNORA71C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36495918,36496056,'NR_003018','SNORA71D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2582857,2582932,'NR_003078','SNORD110'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2391597,2391693,'NR_003684','SNORD119'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47330626,47330716,'NR_003030','SNORD12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47330256,47330359,'NR_003695','SNORD12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47328888,47328967,'NR_002433','SNORD12C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',17891352,17891589,'NR_003045','SNORD17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2585269,2585340,'NR_002739','SNORD56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2585584,2585656,'NR_002738','SNORD57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2584742,2584828,'NR_004399','SNORD86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',1194959,1237971,'NM_014723','SNPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2390280,2399499,'NM_003091','SNRPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',16658608,16670417,'NM_198220','SNRPB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31459423,31495359,'NM_003098','SNTA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43895876,43905321,'NM_033421','SNX21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',17870243,17897490,'NM_152227','SNX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',254238,258867,'NM_006943','SOX12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62149522,62151423,'NM_018419','SOX18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33667222,33672379,'NM_003116','SPAG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47953335,47965487,'NM_006038','SPATA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3706150,3710102,'NM_015417','SPEF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43602678,43609479,'NM_020398','SPINLW1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43598332,43609479,'NM_001198986','SPINLW1-WFDC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43574514,43577678,'NM_006652','SPINT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43784401,43787749,'NM_178455','SPINT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',55338237,55352456,'NM_198265','SPO11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',12937626,13095411,'NM_018327','SPTLC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',35407970,35467235,'NM_198291','SRC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61642606,61649301,'NM_080823','SRMS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',41519917,41525658,'NR_034009','SRSF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',575267,581890,'NM_080725','SRXN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60152216,60190961,'NM_198935','SS18L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',22964056,22965314,'NM_001052','SSTR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47163282,47238311,'NM_017454','STAU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2030527,2077198,'NM_080836','STK35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43028533,43142007,'NM_006282','STK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61741504,61755224,'NM_015894','STMN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56659714,56687988,'NR_037943','STX16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56659714,56724307,'NR_037945','STX16-NPEPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',45719556,45848767,'NM_001161841','SULF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',51924446,51925655,'NR_002189','SUMO1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31035241,31055900,'NM_080675','SUN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57872012,57940604,'NM_014258','SYCP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',24397834,24595167,'NM_024893','SYNDIG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43423990,43431276,'NM_001197129','SYS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43425222,43472664,'NR_003189','SYS1-DBNDD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',59983248,60074261,'NM_003185','TAF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',13318035,13567583,'NM_017714','TASP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',364123,391187,'NM_144628','TBC1D20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62164453,62174144,'NM_003195','TCEA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',532636,538910,'NM_004609','TCF15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',60942911,60963560,'NM_006602','TCFL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',54637764,54647745,'NM_003222','TFAP2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34635289,34655769,'NM_001199514','TGIF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',34636370,34674374,'NM_001199535','TGIF2-C20ORF24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36190277,36227114,'NM_004613','TGM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2224612,2269725,'NM_003245','TGM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2309553,2361399,'NM_198994','TGM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56989705,57003583,'NM_198976','TH1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',22974269,22978301,'NM_000361','THBD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30160969,30218722,'NM_014742','TM9SF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2465252,2570430,'NM_080751','TMC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48173680,48203742,'NM_199129','TMEM189'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48131067,48203742,'NM_199203','TMEM189-UBE2V1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2744975,2745804,'NM_001167670','TMEM239'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',7909715,7948393,'NM_021156','TMX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61798447,61800495,'NM_003823','TNFRSF6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43885261,43889360,'NM_003279','TNNC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43004184,43022528,'NM_006809','TOMM34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',39090875,39186540,'NM_003286','TOP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42007949,42131668,'NM_001098798','TOX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',32755808,32764898,'NM_021202','TP53INP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44746410,44751683,'NM_033550','TP53RK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43435933,43440371,'NM_014477','TP53TG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61967024,61993342,'NM_001243891','TPD52L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29790564,29853264,'NM_012112','TPX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',309307,326203,'NM_021158','TRIB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',5866485,5879173,'NM_015939','TRMT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33053867,33144279,'NM_015638','TRPC4AP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',51022352,51545276,'NM_173485','TSHZ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30240609,30241824,'NR_002781','TSPY26P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',36044836,36095247,'NM_014657','TTI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',29922165,29994519,'NM_001008409','TTLL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42537960,42556658,'NM_024331','TTPAL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57027703,57035104,'NM_030773','TUBB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43874661,43879003,'NM_007019','UBE2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',48131067,48163117,'NM_001032288','UBE2V1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',3036218,3088540,'NM_014948','UBOX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62041625,62052971,'NM_001193379','UCKL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62055180,62058782,'NR_027287','UCKL1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',33353782,33463359,'NM_001184977','UQCC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',56397580,56459562,'NM_001195677','VAPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2769372,2795378,'NM_022575','VPS16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',35964912,36007161,'NM_080607','VSTM2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',25007194,25010767,'NM_199425','VSX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43691798,43693245,'NM_080753','WFDC10A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43746703,43767072,'NM_172131','WFDC10B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43710615,43732292,'NM_147197','WFDC11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43185480,43186520,'NM_080869','WFDC12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43764068,43770870,'NM_172005','WFDC13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43531807,43543586,'NM_006103','WFDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43836253,43853954,'NM_080614','WFDC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43171506,43177227,'NM_145652','WFDC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43596249,43601548,'NM_080827','WFDC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43613204,43641379,'NM_181510','WFDC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43669991,43693321,'NM_147198','WFDC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42777298,42789866,'NM_003881','WISP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',30019465,30049917,'NM_001011718','XKR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',21231941,21318463,'NM_012255','XRN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61297226,61317983,'NM_017798','YTHDF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',42947757,42970575,'NM_139323','YWHAB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',55612307,55629038,'NM_001160418','ZBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61845464,61907300,'NM_025224','ZBTB46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',226203,228963,'NM_033089','ZCCHC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',50201223,50241931,'NM_018197','ZFP64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',61809823,61837938,'NM_001195654','ZGPAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',39240502,39362153,'NM_015035','ZHX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',45271787,45418881,'NM_012408','ZMYND8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',18217120,18245640,'NM_003434','ZNF133'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',51617016,51633043,'NM_006526','ZNF217'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44563113,44575601,'NM_199441','ZNF334'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',44010698,44034240,'NM_022095','ZNF335'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',25602850,25625469,'NM_015655','ZNF337'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',31783468,31843736,'NM_032819','ZNF341'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',2410466,2437778,'NM_024325','ZNF343'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',62058498,62071662,'NM_020713','ZNF512B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',57199469,57267562,'NM_178457','ZNF831'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47295845,47328163,'NM_021035','ZNFX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',47328121,47339202,'NR_003605','ZNFX1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43943254,43947312,'NM_080603','ZSWIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr20',43919626,43941176,'NM_080752','ZSWIM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',14567990,14585577,'NR_003088','ABCC13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42513076,42590423,'NM_207174','ABCG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',27130476,27139599,'NM_006988','ADAMTS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',27212101,27261310,'NM_007038','ADAMTS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45318920,45470906,'NM_001112','ADARB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44109543,44231903,'NM_020132','AGPAT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44530190,44542530,'NM_000383','AIRE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',13332357,13412442,'NR_026916','ANKRD30BP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',26174731,26465317,'NM_001136131','APP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',26018661,26029836,'NM_001685','ATP5J'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',34197626,34210028,'NM_001697','ATP5O'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',39951123,39956685,'NM_033173','B3GALT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',41461597,41570394,'NM_012105','BACE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',29599430,29656088,'NR_027655','BACH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',10079666,10120808,'NM_001187','BAGE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',10042712,10120796,'NM_182482','BAGE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',10042712,10120796,'NM_182481','BAGE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',10042712,10120796,'NM_181704','BAGE4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',10042712,10120796,'NM_182484','BAGE5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',39479273,39607582,'NM_018963','BRWD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',39607730,39608758,'NR_033800','BRWD1-IT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',17887838,17907139,'NM_006806','BTG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',32687312,32688137,'NR_026845','C21orf119'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42395312,42401713,'NR_027243','C21orf128'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',14137324,14142556,'NR_026755','C21orf15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44573254,44583713,'NM_004928','C21orf2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44377921,44390033,'NM_198155','C21orf33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',17733078,17743374,'NR_037585','C21orf37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33066281,33091886,'NR_024622','C21orf49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33459645,33464411,'NR_024102','C21orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46405489,46428801,'NM_001142854','C21orf56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46545474,46568213,'NM_058180','C21orf58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',32895854,32906789,'NM_021254','C21orf59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33084854,33107923,'NM_001162496','C21orf62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',32706622,32809568,'NM_058187','C21orf63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45179068,45184256,'NR_027129','C21orf67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',29374743,29470073,'NM_020152','C21orf7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',25876957,25877407,'NR_024092','C21orf71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',14237966,14274636,'NR_027270','C21orf81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',39890944,39906619,'NR_026542','C21orf88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44761525,44763288,'NR_026548','C21orf90'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',18083154,18113574,'NM_001100420','C21orf91'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',18071591,18086697,'NR_038871','C21orf91-OT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',35332102,35333593,'NR_026812','C21orf96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42178287,42247068,'NM_015500','C2CD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',36364154,36367332,'NM_001757','CBR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',36429132,36440730,'NM_001236','CBR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',43346369,43369109,'NM_000071','CBS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',29350518,29367881,'NM_006585','CCT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',36679558,36710995,'NM_005441','CHAF1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',18540062,18561558,'NM_001204174','CHODL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',18129859,18179796,'NR_024354','CHODL-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',36754789,36774258,'NM_001146079','CLDN14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30460111,30460842,'NM_012131','CLDN17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30508194,30510340,'NM_199328','CLDN8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',34963557,35012389,'NM_053277','CLIC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45649524,45758062,'NM_130445','COL18A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45664058,45669413,'NR_027498','COL18A1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46226090,46249391,'NM_001848','COL6A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46342460,46374147,'NM_058175','COL6A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',43462209,43465982,'NM_000394','CRYAA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33883517,33936030,'NM_145858','CRYZL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44018258,44020687,'NM_000100','CSTB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',17807094,17864300,'NM_001338','CXADR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',26760398,26867452,'NM_052954','CYYR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',23655296,23679027,'NR_040254','D21S2088E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46703289,46791548,'NM_206890','DIP2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33782107,33785660,'NM_017833','DNAJC28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44490650,44506527,'NM_175867','DNMT3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33872080,33882884,'NM_017613','DONSON'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',36458708,36588442,'NM_005128','DOPEY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',40306212,41140909,'NM_001389','DSCAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',40676880,40679155,'NR_038899','DSCAM-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',38500119,38502608,'NR_027695','DSCR10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',37517595,37561703,'NM_006052','DSCR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',38348182,38415324,'NM_005867','DSCR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',37300732,37313828,'NM_018962','DSCR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',38415414,38450475,'NR_026838','DSCR8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',37502824,37514763,'NR_026719','DSCR9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',37713076,37809549,'NM_130436','DYRK1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',38673819,38792298,'NM_001136155','ERG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',39099718,39118748,'NM_005239','ETS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',34669618,34683322,'NM_058182','FAM165B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45184382,45221316,'NM_058190','FAM207A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',41610530,41651524,'NM_058186','FAM3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46381121,46399909,'NM_206965','FTCD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',26029128,26066642,'NM_001197297','GABPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33798107,33837065,'NM_001136005','GART'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33035520,33066040,'NM_013329','GCFC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33022295,33027095,'NR_038880','GCFC1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',29831124,30234153,'NM_175611','GRIK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30042364,30058196,'NR_027021','GRIK1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',29890230,29924938,'NR_033368','GRIK1-AS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',37045058,37275134,'NM_001242785','HLCS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',39636110,39642917,'NM_004965','HMGN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',43773499,43903802,'NM_007031','HSF2BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',14665307,14677380,'NM_006948','HSPA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',32167498,32298248,'NM_014586','HUNK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44471149,44485262,'NM_015259','ICOSLG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33619083,33653998,'NM_000629','IFNAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33524100,33556932,'NM_000874','IFNAR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33697071,33731698,'NM_005534','IFNGR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',40039203,40095893,'NM_001080444','IGSF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33560541,33591390,'NM_000628','IL10RB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45130296,45173181,'NM_001127491','ITGB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33936653,34183479,'NM_003024','ITSN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',25933459,26009106,'NM_021219','JAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',34740857,34753772,'NM_001127669','KCNE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',34658192,34665310,'NM_172201','KCNE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',38566298,38595616,'NM_170737','KCNJ15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',37918656,38210566,'NM_002240','KCNJ6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44783495,44784506,'NM_198691','KRTAP10-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44881700,44882800,'NM_181688','KRTAP10-10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44890758,44891994,'NM_198692','KRTAP10-11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44941514,44942387,'NM_198699','KRTAP10-12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44794745,44795816,'NM_198693','KRTAP10-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44802333,44803071,'NM_198696','KRTAP10-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44818033,44819415,'NM_198687','KRTAP10-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44823991,44824909,'NM_198694','KRTAP10-5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44835576,44836814,'NM_198688','KRTAP10-6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44844924,44846519,'NM_198689','KRTAP10-7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44856423,44857299,'NM_198695','KRTAP10-8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44871467,44872723,'NM_198690','KRTAP10-9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',31174834,31175745,'NM_175858','KRTAP11-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44925918,44926506,'NM_181686','KRTAP12-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44910533,44911272,'NM_181684','KRTAP12-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44902276,44902686,'NM_198697','KRTAP12-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44898557,44899004,'NM_198698','KRTAP12-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30690262,30691009,'NM_181599','KRTAP13-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30665579,30666428,'NM_181621','KRTAP13-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30719581,30720101,'NM_181622','KRTAP13-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30724464,30724947,'NM_181600','KRTAP13-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30734516,30734969,'NM_181623','KRTAP15-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30774234,30774507,'NM_181607','KRTAP19-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30781379,30781538,'NM_181608','KRTAP19-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30785652,30786146,'NM_181609','KRTAP19-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30791044,30791299,'NM_181610','KRTAP19-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30796060,30796279,'NM_181611','KRTAP19-5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30835724,30836052,'NM_181612','KRTAP19-6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30855287,30855479,'NM_181614','KRTAP19-7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',31332348,31332666,'NM_001099219','KRTAP19-8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30910644,30910815,'NM_181615','KRTAP20-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30929453,30929651,'NM_181616','KRTAP20-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30937053,30937326,'NM_001128077','KRTAP20-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30914816,30915040,'NR_023342','KRTAP20-4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',31049327,31049567,'NM_181619','KRTAP21-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',31041139,31041391,'NM_181617','KRTAP21-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',31012713,31012966,'NM_001164435','KRTAP21-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30895310,30895457,'NM_181620','KRTAP22-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30884294,30884587,'NM_001164434','KRTAP22-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30642587,30642795,'NM_181624','KRTAP23-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30575497,30577147,'NM_001085455','KRTAP24-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30583333,30583703,'NM_001128598','KRTAP25-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30613320,30614478,'NM_203405','KRTAP26-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30631201,30631883,'NM_001077711','KRTAP27-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30907875,30908094,'NM_181602','KRTAP6-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30892875,30893064,'NM_181604','KRTAP6-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30886629,30887245,'NM_181605','KRTAP6-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',31123228,31123922,'NM_181606','KRTAP7-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',31106885,31107441,'NM_175857','KRTAP8-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',39699639,39737998,'NM_152505','LCA5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',41972530,41990565,'NR_024367','LINC00111'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42009664,42010811,'NR_024028','LINC00112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',28016568,28045423,'NR_024357','LINC00113'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',39032818,39067271,'NR_027065','LINC00114'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',25680003,25725884,'NR_024027','LINC00158'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',32374664,32380479,'NR_038033','LINC00159'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',35017974,35031349,'NR_024351','LINC00160'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',28833510,28834548,'NR_026552','LINC00161'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45243554,45249070,'NR_024089','LINC00162'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45234206,45238429,'NR_033840','LINC00163'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',29487671,29582397,'NR_027072','LINC00189'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30503339,30505972,'NR_038855','LINC00307'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',22392806,22410718,'NR_038400','LINC00308'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',34474847,34477416,'NR_027267','LINC00310'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',43706401,43722531,'NR_026863','LINC00313'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',28307552,28317399,'NR_027246','LINC00314'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',22017483,22031510,'NR_038872','LINC00317'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',43694331,43698199,'NR_026960','LINC00319'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',21036783,21097297,'NR_024090','LINC00320'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',41435296,41441861,'NR_024100','LINC00323'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',16364712,16903965,'NR_027790','LINC00478'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42004748,42009004,'NR_027272','LINC00479'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',14403005,14501125,'NM_198996','LIPI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46072182,46080761,'NR_038876','LOC100129027'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',36363809,36420808,'NR_040084','LOC100133286'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33559806,33560435,'NR_038974','LOC100288432'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45165377,45174023,'NR_038311','LOC100505746'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',34225385,34265357,'NR_038883','LOC100506334'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',35039991,35042534,'NR_038886','LOC100506385'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',36425934,36450476,'NR_038892','LOC100506428'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44050066,44056876,'NR_026961','LOC284837'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45532394,45541697,'NR_026943','LOC642852'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44699820,44703167,'NM_030891','LRRC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46433465,46473166,'NM_001145436','LSS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',29222336,29287148,'NM_015565','LTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46479475,46529664,'NM_003906','MCM3AP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46473585,46496032,'NR_002776','MCM3AP-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',16884427,16884516,'NR_029694','MIR125B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',25868162,25868227,'NR_030784','MIR155'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',25856327,25869351,'NR_001458','MIR155HG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',13700575,13700652,'NR_036164','MIR3156-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',41461353,41461426,'NR_036167','MIR3197'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',1679119,1679299,'NR_037421','MIR3648'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',1678867,1678928,'NR_037458','MIR3687'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',30669482,30669567,'NR_036221','MIR4327'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',27248150,27248233,'NR_039916','MIR4759'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',40506148,40506228,'NR_039917','MIR4760'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',36014882,36014976,'NR_030414','MIR802'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',16833279,16833360,'NR_029514','MIR99A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',16834018,16834102,'NR_029480','MIRLET7C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',32562400,32573247,'NM_018944','MIS18A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',36614356,36670814,'NM_015358','MORC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',32585994,32606470,'NM_178817','MRAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',25879838,25901672,'NM_017446','MRPL39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',34367692,34437204,'NM_032476','MRPS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',41719972,41753011,'NM_001178046','MX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',41655819,41702739,'NM_002463','MX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',29166383,29179564,'NM_182749','N6AMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',21292503,21834388,'NM_004540','NCAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',43186446,43202842,'NM_021075','NDUFV3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',15255426,15358997,'NM_003489','NRIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33364319,33366598,'NM_138983','OLIG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33320085,33323373,'NM_005806','OLIG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46094302,46186796,'NM_001130141','PCBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46568463,46690110,'NM_006031','PCNT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',40161216,40223192,'NM_006198','PCP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42946930,43068687,'NM_002606','PDE9A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',43963405,44006616,'NM_003681','PDXK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44544357,44571684,'NM_002626','PFKL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',37359533,37367328,'NR_028352','PIGP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',43267711,43326757,'NM_004571','PKNOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',41469027,41479036,'NM_182832','PLAC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45508270,45532239,'NR_004858','POFUT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',13904368,13935777,'NM_174981','POTED'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42091453,42172651,'NM_001040424','PRDM15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46879934,46909583,'NM_206962','PRMT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',39469253,39477310,'NM_003720','PSMG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45093927,45118246,'NM_004339','PTTG1IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44351635,44375491,'NM_005049','PWP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',14510336,14522564,'NM_144770','RBM11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',34810653,34908615,'NM_203417','RCAN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42032597,42060318,'NM_020639','RIPK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44033845,44048411,'NM_003683','RRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',43903859,43940388,'NM_015056','RRP1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42765665,42789470,'NM_080860','RSPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',35081967,35343465,'NM_001754','RUNX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',29299950,29313556,'NM_016940','RWDD2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46842958,46849463,'NM_006272','S100B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',14779419,14840535,'NM_022136','SAMSN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',31965183,32026302,'NM_020706','SCAF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',36337851,36354481,'NM_001007259','SETD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',39745649,39809303,'NM_007341','SH3BGR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',43658826,43671430,'NM_173354','SIK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',36993860,37044380,'NM_005069','SIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45759056,45786813,'NM_194255','SLC19A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42792810,42874619,'NM_018964','SLC37A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',34367739,34400431,'NM_006933','SLC5A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',32671366,32671502,'NR_002996','SNORA80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',31953805,31963114,'NM_000454','SOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33837219,33871682,'NM_138927','SON'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45315298,45317554,'NR_027292','SSR4P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45049959,45062472,'NM_006936','SUMO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',32922939,33022222,'NM_203446','SYNJ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',32869021,32879716,'NM_144659','TCP10L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',1536537,1597942,'NR_038327','TEKT4P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42655459,42659713,'NM_003225','TFF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42639535,42644277,'NM_005423','TFF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42604845,42608775,'NM_003226','TFF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',31412606,31853161,'NM_003253','TIAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',33743317,33774186,'NM_006134','TMEM50B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',18563303,18697841,'NM_002772','TMPRSS15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',41758347,41801955,'NM_005656','TMPRSS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42675053,42689269,'NM_032405','TMPRSS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',9928613,10012791,'NM_199259','TPTE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44256633,44350860,'NM_003274','TRAPPC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44597911,44687392,'NM_003307','TRPM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',44742202,44955923,'NM_144991','TSPEAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',37377116,37497278,'NM_003316','TTC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',43386134,43400757,'NM_006758','U2AF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42697039,42740859,'NM_018961','UBASH3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',45012922,45046179,'NM_001202489','UBE2G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42356136,42436174,'NM_001199527','UMODL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',32605200,32687183,'NM_014825','URB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',29318808,29348678,'NM_006447','USP16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',16024366,16174248,'NM_013396','USP25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',43142404,43172747,'NM_018669','WDR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',39681561,39691685,'NM_001146218','WRB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',46530694,46542093,'NM_058181','YBEY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42280008,42303565,'NM_001098403','ZNF295'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr21',42315181,42318129,'NR_027273','ZNF295-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41418070,41446820,'NM_017436','A4GALT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40195074,40254939,'NM_001098','ACO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49523517,49530593,'NM_001097','ACR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49266877,49271732,'NM_024866','ADM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23153529,23168325,'NM_000675','ADORA2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',24290860,24455258,'NM_005160','ADRBK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39072449,39092521,'NM_001123378','ADSL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19651446,19665649,'NR_027464','AIFM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48682856,48698110,'NM_024105','ALG12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36556807,36570299,'NR_036556','ANKRD54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',15514598,15536430,'NR_040115','ANKRD62P1-PARP4P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28053668,28114572,'NM_001127','AP1B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30847963,30859456,'NR_040114','AP1B1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37683472,37718729,'NM_001193289','APOBEC3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37708350,37718729,'NM_004900','APOBEC3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37740210,37744771,'NM_014508','APOBEC3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37747063,37759202,'NM_152426','APOBEC3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37766618,37770374,'NM_001006666','APOBEC3F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37802955,37813694,'NM_021822','APOBEC3G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37823174,37830018,'NM_001166003','APOBEC3H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34979062,34993523,'NM_001136540','APOL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34952200,34965635,'NM_030882','APOL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34866316,34886923,'NR_027835','APOL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34915121,34930825,'NM_030643','APOL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34443864,34455475,'NM_030642','APOL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34374369,34394402,'NM_030641','APOL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41522475,41583352,'NM_001142293','ARFGAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',43527101,43637328,'NM_001198726','ARHGAP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49408047,49413467,'NM_000487','ARSA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18337401,18384309,'NM_001670','ARVCF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28514596,28564293,'NM_032204','ASCC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',25155279,25170978,'NM_020437','ASPHD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38246514,38248637,'NM_182810','ATF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41365752,41366551,'NM_001165877','ATP5L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16454902,16491588,'NM_001039367','ATP6V1E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44446341,44619851,'NM_013236','ATXN10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36810841,36836622,'NM_025045','BAIAP2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16501484,16591989,'NM_015367','BCL2L13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21852551,21990224,'NM_021574','BCR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19787304,19806575,'NR_037566','BCRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23358881,23379327,'NR_024494','BCRP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16596905,16636808,'NM_001244572','BID'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41836697,41855662,'NM_001197','BIK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40678136,40684892,'NR_024355','BK250D10.8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',31139833,31183373,'NM_174932','BPIFC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48552940,48604456,'NM_014577','BRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35906151,35914276,'NM_031910','C1QTNF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23266407,23281275,'NM_031444','C22orf13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22435207,22438050,'NM_182520','C22orf15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36669002,36679600,'NM_032561','C22orf23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30659506,30671336,'NM_015372','C22orf24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18388630,18433447,'NM_152906','C22orf25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44825002,44828688,'NM_018280','C22orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',31113561,31138274,'NM_014306','C22orf28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18213660,18222371,'NM_024627','C22orf29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',27784659,27787907,'NM_015370','C22orf31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40805640,40810234,'NM_033318','C22orf32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35717105,35733823,'NM_001163857','C22orf33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48399293,48437194,'NR_026997','C22orf34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23311590,23319035,'NM_207644','C22orf36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17808409,17815755,'NM_001166242','C22orf39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',45018573,45024857,'NM_207327','C22orf40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49336406,49348194,'NM_001123225','C22orf41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30875518,30885243,'NM_001010859','C22orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22280638,22304508,'NM_016449','C22orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23155177,23220783,'NR_028484','C22orf45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40416492,40424086,'NM_001142964','C22orf46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22737819,22904596,'NM_001199281','CABIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28446343,28457820,'NM_182527','CABP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38296703,38415687,'NM_021096','CACNA1I'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35286861,35428636,'NM_006078','CACNG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36216345,36245156,'NM_014550','CARD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37590193,37598204,'NM_014292','CBX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37856724,37878484,'NM_175709','CBX7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37382603,37399801,'NM_015373','CBY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20317085,20321616,'NM_152612','CCDC116'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',27498661,27515283,'NM_173510','CCDC117'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40526623,40552249,'NM_024821','CCDC134'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29082626,29102818,'NM_001017437','CCDC157'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',15451647,15453700,'NM_014406','CCT8L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36286416,36295356,'NM_152243','CDC42EP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17847413,17888135,'NM_001178011','CDC45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16040191,16060545,'NM_177405','CECR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16336627,16413845,'NM_031413','CECR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16117749,16127623,'NR_038398','CECR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',15998409,16020169,'NM_033070','CECR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16020278,16026335,'NR_024483','CECR5-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',15977188,15982257,'NM_001163079','CECR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',15897459,15919682,'NR_015352','CECR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',45135394,45311731,'NM_014246','CELSR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40664686,40673094,'NM_024053','CENPM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',45458970,45512816,'NM_022766','CERK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22031792,22054313,'NR_037839','CES5AP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39955459,39966881,'NM_138481','CHADL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22438020,22440141,'NM_213720','CHCHD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',27413730,27467822,'NM_007194','CHEK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49364252,49368294,'NM_005198','CHKB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49354155,49368294,'NR_027928','CHKB-CPT1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17890546,17892860,'NM_001130861','CLDN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17546986,17659239,'NM_001835','CLTCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',45069703,45071221,'NR_024009','CN5H6.4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18330069,18337498,'NM_007310','COMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49354155,49363760,'NM_152246','CPT1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48698286,48707190,'NM_024324','CRELD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19601713,19638037,'NM_005207','CRKL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',25347927,25356636,'NM_001886','CRYBA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',25325361,25343991,'NM_001887','CRYBB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23945611,23957836,'NM_000496','CRYBB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',24174053,24187645,'NR_033734','CRYBB2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23925824,23933324,'NM_004076','CRYBB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40286959,40302616,'NM_014460','CSDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35639620,35666425,'NM_000395','CSF2RB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37016642,37043359,'NM_152221','CSNK1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41343789,41372939,'NM_001129819','CYB5R3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40852444,40856827,'NM_000106','CYP2D6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40866157,40870519,'NR_002570','CYP2D7P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36008440,36041335,'NM_013385','CYTH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22643553,22652019,'NM_001355','DDT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22639025,22644748,'NM_001084393','DDTL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37209388,37232291,'NM_001098504','DDX17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30480008,30541977,'NM_001007188','DEPDC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22506689,22511199,'NM_001135751','DERL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17390136,17391063,'NR_026651','DGCR10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17413674,17415888,'NR_024157','DGCR11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17497791,17512190,'NM_022719','DGCR14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17403794,17489967,'NR_033674','DGCR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17338010,17362142,'NR_002733','DGCR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17273735,17279601,'NM_005675','DGCR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18681760,18687628,'NM_033257','DGCR6L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18447754,18479400,'NM_022720','DGCR8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17385346,17387761,'NR_024159','DGCR9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37244899,37296135,'NM_007068','DMC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39585499,39588076,'NM_145174','DNAJB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37504458,37520107,'NM_005740','DNAL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30125538,30160172,'NM_004147','DRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29388038,29393872,'NM_152511','DUSP18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',42255956,42539550,'NM_198856','EFCAB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35236842,35255223,'NM_003753','EIF3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36575324,36614735,'NM_001242923','EIF3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30165344,30215874,'NM_001164502','EIF4ENIF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36093945,36153451,'NM_052906','ELFN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',27931952,27985586,'NM_133455','EMID1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38468994,38619740,'NM_152512','ENTHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39818559,39906027,'NM_001429','EP300'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',27993997,28016672,'NM_001163287','EWSR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40800200,40805388,'NM_001002034','FAM109B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49092963,49100010,'NM_001001794','FAM116B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44083744,44116500,'NM_001104595','FAM118A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',47263951,47533750,'NM_001082967','FAM19A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38720898,38755989,'NM_138435','FAM83F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44277382,44340245,'NM_006485','FBLN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',31200706,31224818,'NM_012179','FBXO7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21934953,21937186,'NR_033408','FBXW4P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19686210,19687561,'NR_027052','FLJ39582'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16892150,16900734,'NR_024417','FLJ41941'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',139254,183917,'NR_033856','FLJ43315'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',46395455,46405982,'NR_033377','FLJ46257'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35213178,35233036,'NM_024955','FOXRED2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',15822826,15869112,'NM_001037814','GAB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29280623,29290876,'NM_004861','GAL3ST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36549334,36551448,'NM_003614','GALR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28032996,28038774,'NM_006478','GAS2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29011106,29015616,'NM_001037666','GATSL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36533857,36542852,'NM_014291','GCAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36334426,36359517,'NM_013365','GGA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23309717,23354972,'NM_013430','GGT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17141201,17159474,'NR_003267','GGT3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22945621,22971110,'NM_001099781','GGT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21318781,21320368,'NM_199127','GGTLC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21742668,21797221,'NM_002073','GNAZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18155933,18222462,'NM_053004','GNB1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18091065,18092297,'NM_000407','GP1BB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',45401321,45454352,'NM_015124','GRAMD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38627031,38697330,'NM_004810','GRAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17516503,17517796,'NM_005315','GSC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22706138,22714284,'NM_000853','GSTT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22652313,22656106,'NM_000854','GSTT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22629600,22633368,'NM_001080843','GSTT2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22670594,22677258,'NR_003081','GSTTP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22715937,22731899,'NR_003082','GSTTP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37431752,37459538,'NM_004286','GTPBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',45071301,45105371,'NM_016426','GTSE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22310674,22389610,'NR_024448','GUSBP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36531059,36533389,'NM_005318','H1F0'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49025739,49031961,'NM_032019','HDAC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20101692,20135750,'NM_015094','HIC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17698223,17799219,'NM_003325','HIRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',33983444,34021800,'NR_027780','HMGXB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34107059,34120207,'NM_002133','HMOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28806452,28903062,'NM_152510','HORMAD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',25177445,25209820,'NM_022081','HPS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',27468042,27483496,'NM_172002','HSCB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',15688363,15690225,'NR_003607','HSFY1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35484191,35494020,'NM_001177702','IFT27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22245312,22252495,'NM_020070','IGLL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',24044223,24046193,'NR_029395','IGLL3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21559959,21568013,'NM_001178126','IGLL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',15945850,15976584,'NM_014339','IL17RA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48775068,48793182,'NM_001001694','IL17REL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35851825,35875908,'NM_000878','IL2RB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29848960,29860683,'NM_001002837','INPP5J'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',33792129,33813380,'NM_001008494','ISX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37411493,37426405,'NM_014876','JOSD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37152278,37169979,'NM_004981','KCNJ4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35777724,35789376,'NM_024681','KCTD17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37194028,37207583,'NM_016657','KDELR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',43966786,43987011,'NM_015264','KIAA0930'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',42970889,43040064,'NM_001099294','KIAA1644'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23753940,23923415,'NM_001145206','KIAA1671'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49333327,49336318,'NM_138433','KLHDC7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19125805,19180170,'NR_033825','KLHL22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',27799065,27894321,'NM_032045','KREMEN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39931258,39957221,'NM_031488','L3MBTL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',31999061,32646416,'NM_004737','LARGE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',43267113,43272669,'NM_032287','LDOC1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36401558,36405755,'NM_002305','LGALS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36296198,36305970,'NM_006498','LGALS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28966441,28972796,'NM_002309','LIF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29974347,30006066,'NM_016733','LIMK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',43343883,43346993,'NR_028410','LINC00207'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',43380871,43399963,'NR_044991','LINC00229'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49288241,49293001,'NM_033200','LMF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23828383,23838659,'NR_038941','LOC100128531'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',47648585,47680202,'NR_038944','LOC100128946'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38758281,38762527,'NR_039988','LOC100130899'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40816882,40851298,'NR_034118','LOC100132273'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49368320,49369221,'NR_021492','LOC100144603'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44814450,44819412,'NR_027036','LOC100271722'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',32450971,32476803,'NR_038949','LOC100506195'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35691234,35694159,'NR_038954','LOC100506241'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38158110,38163079,'NR_040535','LOC100506472'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',43908302,43927129,'NR_038957','LOC100506714'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17933652,17934362,'NR_024381','LOC150185'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18573854,18576060,'NR_026919','LOC150197'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44828389,44833066,'NR_027034','LOC150381'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18566252,18572441,'NR_038460','LOC284865'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22565896,22571117,'NR_038911','LOC284889'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',47313375,47321863,'NR_038917','LOC284933'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',31102650,31110329,'NR_038918','LOC339666'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',46119984,46147955,'NR_038922','LOC339685'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18516108,18517431,'NM_001243537','LOC388849'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40995702,41000812,'NR_036498','LOC388906'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22703116,22704043,'NM_001144931','LOC391322'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19730248,19748457,'NR_027006','LOC400891'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37070615,37124877,'NR_002821','LOC400927'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37304070,37382580,'NM_001013647','LOC646851'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21231755,21239007,'NR_027426','LOC648691'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18705589,18730461,'NR_038388','LOC729444'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44781159,44785321,'NR_027240','LOC730668'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48557541,48559962,'NR_026993','LOC90834'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20982462,21007324,'NR_027293','LOC96610'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',24077384,24107544,'NM_001135772','LRP5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19666557,19683326,'NM_006767','LZTR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36927884,36942463,'NM_001161574','MAFF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20453318,20551970,'NM_138957','MAPK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49044268,49050906,'NM_002751','MAPK11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49033457,49042216,'NM_002969','MAPK12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49388427,49396845,'NM_016431','MAPK8IP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34332756,34343330,'NM_005368','MB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41858155,41869347,'NM_014507','MCAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39405127,39408764,'NM_005297','MCHR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34126115,34150495,'NM_006739','MCM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19191885,19271919,'NM_015889','MED15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40425463,40525405,'NM_152513','MEI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36195046,36212371,'NM_001166343','MFNG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38213174,38218145,'NM_001098270','MGAT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19692495,19698576,'NR_003608','MGC16703'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',25383445,25402440,'NR_033319','MIAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16650415,16887325,'NM_015241','MICAL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36632100,36668411,'NM_033386','MICALL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22566564,22567409,'NM_002415','MIF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49272078,49275616,'NM_017584','MIOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',43975498,43975564,'NR_031651','MIR1249'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39818462,39818516,'NR_031694','MIR1281'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18616656,18616734,'NR_031618','MIR1286'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',24513500,25125579,'NR_031631','MIR1302-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18453580,18453665,'NR_031706','MIR1306'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20337592,20337674,'NR_029845','MIR130B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18400661,18400743,'NR_029706','MIR185'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20337269,20337347,'NR_030622','MIR301B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16626945,16627025,'NR_036168','MIR3198-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',26646512,26646600,'NR_036169','MIR3199-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',26646513,26646599,'NR_036170','MIR3199-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29457543,29457628,'NR_036171','MIR3200'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',47048839,47048891,'NR_036172','MIR3201'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40626893,40626962,'NR_029507','MIR33A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18453268,18453356,'NR_037412','MIR3618'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44865587,44865670,'NR_037413','MIR3619'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28059146,28059256,'NR_037426','MIR3653'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34061632,34061751,'NR_037471','MIR3909'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29886047,29886105,'NR_037496','MIR3928'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36714746,36714806,'NR_039759','MIR4534'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',47562112,47562171,'NR_039761','MIR4535'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18331275,18331357,'NR_039918','MIR4761'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44535067,44535142,'NR_039919','MIR4762'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44888109,44888201,'NR_039920','MIR4763'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',32162567,32162655,'NR_039921','MIR4764'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39539832,39539908,'NR_039923','MIR4766'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',26559027,27069985,'NR_039762','MIR548AM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',25281177,25281289,'NR_031615','MIR548J'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21495269,21495365,'NR_030755','MIR650'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36570224,36570324,'NR_030395','MIR658'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36573630,36573727,'NR_030396','MIR659'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44887292,44887366,'NR_029478','MIRLET7A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44888229,44888312,'NR_029479','MIRLET7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44860540,44888472,'NR_027033','MIRLET7BHG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39136237,39362636,'NM_020831','MKL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48839946,48865908,'NM_139202','MLC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22445035,22456503,'NM_005940','MMP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',26474264,26527486,'NM_002430','MN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29652599,29694187,'NM_014941','MORC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29648294,29652640,'NR_026920','MORC2-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48870561,48942243,'NM_001164104','MOV10L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',42137963,42234129,'NM_001044370','MPPED1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35745647,35755809,'NM_021126','MPST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17800035,17803596,'NM_003776','MRPL40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29151610,29155041,'NM_016498','MTFP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28609157,28756857,'NM_153051','MTMR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35007268,35114009,'NM_002473','MYH9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',24468119,24757007,'NM_032608','MYO18B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40784283,40796792,'NM_000262','NAGA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49293510,49310075,'NM_152299','NCAPH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35586975,35604005,'NM_000631','NCF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40811475,40816834,'NM_002490','NDUFA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28206180,28217277,'NM_021076','NEFH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28329544,28424589,'NM_016418','NF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41106357,41158345,'NM_145912','NFAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40399882,40414859,'NM_001003796','NHP2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28280797,28307326,'NM_003634','NIPSNAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36412289,36419431,'NM_024313','NOL12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37544401,37569963,'NM_014293','NPTXR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',43939215,43962554,'NM_153645','NUP50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49315703,49317874,'NM_001014440','ODF3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',14828823,14829804,'NM_001005239','OR11H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29420792,29633811,'NM_030758','OSBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28988818,28992829,'NM_020530','OSM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19699441,19712302,'NM_001159554','P2RX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19726680,19728538,'NR_002829','P2RX6P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41595715,41685831,'NM_001184971','PACSIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48951286,48960851,'NM_052839','PANX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',42796329,42896445,'NM_001243385','PARVB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',42908589,42934368,'NM_001137606','PARVG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30051789,30072249,'NM_032052','PATZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37949630,37966860,'NM_033016','PDGFB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36384682,36392885,'NM_020315','PDXP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29302611,29317927,'NM_014303','PES1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16940759,16953797,'NM_001127649','PEX26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',43655706,43783538,'NM_001242450','PHF21B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40185666,40194654,'NM_032758','PHF5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19391978,19418955,'NM_002650','PI4KA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18763730,18778695,'NR_003563','PI4KAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20157286,20201780,'NR_003700','PI4KAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36783207,36801654,'NM_012407','PICK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30007578,30018520,'NM_052880','PIK3IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48740146,48743724,'NM_001001852','PIM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30344478,30356810,'NM_014338','PISD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',26577656,26645255,'NM_012399','PITPNB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23445000,23500683,'NM_001008496','PIWIL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',45030223,45037883,'NM_006071','PKDREJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29860792,29866469,'NM_015715','PLA2G3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36837447,36907782,'NM_001199562','PLA2G6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49055534,49075336,'NM_012401','PLXNB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40302835,40315817,'NM_002676','PMM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',42650951,42674781,'NM_025225','PNPLA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',42606890,42619226,'NM_138814','PNPLA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41309670,41340906,'NM_032311','POLDIP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36679619,36695265,'NM_021974','POLR2F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40251751,40270422,'NM_138338','POLR3H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23371132,23385114,'NR_024593','POM121L10P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21304027,21317012,'NR_024591','POM121L1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19373842,19376009,'NR_024592','POM121L4P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19966713,19982015,'NR_024583','POM121L8P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22977588,22991492,'NR_003714','POM121L9P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',14636331,14667937,'NM_001136213','POTEH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44925162,45018317,'NM_001001928','PPARA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20350272,20382202,'NM_014337','PPIL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20603791,20637250,'NM_014634','PPM1F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49128611,49230384,'NM_001242898','PPP6R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40323977,40347007,'NM_015704','PPPDE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21220122,21231550,'NM_206956','PRAME'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17280286,17304066,'NM_016335','PRODH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30407333,30476120,'NM_173566','PRR14L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',43451351,43512225,'NM_001198721','PRR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',43477045,43637328,'NM_181334','PRR5-ARHGAP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',15462800,15509720,'NR_001591','psiTPTE22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35526690,35545463,'NM_002854','PVALB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21817512,21836531,'NM_004914','RAB36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49552785,49568953,'NM_001130921','RABL2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35951255,35970251,'NM_002872','RAC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18485023,18494704,'NM_002882','RANBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39971560,40012162,'NM_002883','RANGAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34267297,34279991,'NM_014310','RASD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28038921,28041748,'NM_006477','RASL10A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34464728,34566576,'NM_001082576','RBFOX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39677296,39698965,'NM_014248','RBX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28164571,28168444,'NM_021026','RFPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28163003,28168118,'NR_002727','RFPL1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30916421,30928537,'NM_001159546','RFPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',31080871,31087148,'NM_006604','RFPL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',31085894,31096972,'NR_001450','RFPL3-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22363047,22371363,'NM_153615','RGL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',27985843,27993914,'NM_012265','RHBDD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44188237,44206959,'NM_015653','RIBC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18835993,18841786,'NM_015672','RIMBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20068039,20073455,'NM_001128635','RIMBP3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20067662,20073455,'NM_001128633','RIMBP3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29886137,29933005,'NM_152267','RNF185'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29104802,29113302,'NM_001017981','RNF215'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41341194,41341343,'NR_029422','RNU12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38042792,38042847,'NR_000026','RNU86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49569022,49584931,'NR_026982','RPL23AP82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38038832,38045616,'NM_000967','RPL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38255043,38258806,'NM_194326','RPS19BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41234284,41245773,'NM_015703','RRP7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41299209,41307961,'NR_002184','RRP7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21731592,21814241,'NM_014433','RTDR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18608937,18635816,'NM_023004','RTN4R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',42682593,42723745,'NM_015380','SAMM50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49230296,49260330,'NM_002972','SBF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19108873,19122146,'NM_153334','SCARF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49308862,49310899,'NM_001169111','SCO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41929172,42069338,'NM_173050','SCUBE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29207276,29207743,'NR_001580','SDC4P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20326541,20328588,'NM_022044','SDF2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29122929,29142964,'NM_033382','SEC14L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29185215,29198034,'NM_174975','SEC14L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29214897,29231698,'NM_001161368','SEC14L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29250916,29272669,'NM_001193336','SEC14L6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29830762,29833551,'NM_080430','SELM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48981534,48998172,'NM_031454','SELO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40702876,40724171,'NM_145733','SEPT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18081986,18090845,'NM_002688','SEPT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18085991,18092297,'NR_037612','SEPT5-GP1BB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41226528,41238510,'NR_027786','SERHL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41279868,41300332,'NM_014509','SERHL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19458382,19472008,'NM_000185','SERPIND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',24895439,25109563,'NM_001184774','SEZ6L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29057976,29082913,'NM_005877','SF3A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30222260,30344534,'NM_014775','SFI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23532135,23652813,'NM_133454','SGSM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39096540,39136239,'NM_015705','SGSM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36365629,36381996,'NM_018957','SH3BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49459935,49518507,'NM_001080420','SHANK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40635503,40640617,'NM_001207020','SHISA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36804089,36809116,'NM_013356','SLC16A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17543093,17546034,'NR_033687','SLC25A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39495584,39545338,'NM_006358','SLC25A17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16423182,16453647,'NM_031481','SLC25A18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22529058,22557725,'NM_030807','SLC2A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29361792,29373862,'NM_001001479','SLC35E4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30785156,30839011,'NR_033411','SLC5A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30944462,30981318,'NM_014227','SLC5A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19713006,19716847,'NM_004173','SLC7A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22459149,22506705,'NM_003073','SMARCB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44118608,44188164,'NM_148674','SMC1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38228229,38244083,'NM_019008','SMCR7L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29807281,29830610,'NM_006932','SMTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19543291,19575501,'NM_004782','SNAP29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28059151,28059247,'NR_003686','SNORD125'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38045002,38045064,'NR_002439','SNORD43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38041163,38041258,'NR_000027','SNORD83A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38039769,38039862,'NR_000028','SNORD83B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23281617,23298509,'NM_004175','SNRPD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36698264,36710485,'NM_006941','SOX10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22996785,23143708,'NM_015330','SPECC1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40559051,40632321,'NM_004599','SREBF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',25209849,25217904,'NM_001013694','SRRD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35932190,35938299,'NM_001051','SSTR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39550546,39582633,'NM_003932','ST13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',42551719,42589711,'NM_014351','SULT4A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37460664,37481413,'NM_001199580','SUN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22907443,22915074,'NM_019601','SUSD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',31238539,31784377,'NM_001135774','SYN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38075899,38111539,'NM_004711','SYNGR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38125704,38163078,'NM_153497','TAB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29017978,29052955,'NM_001204240','TBC1D10A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',45537181,45950006,'NM_014346','TBC1D22A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18124225,18134855,'NM_080647','TBX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40885962,40941389,'NM_005650','TCF20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29333069,29353047,'NM_001184726','TCN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40107908,40125276,'NM_003216','TEF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',25217894,25238437,'NM_012143','TFIP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19684060,19686404,'NM_030573','THAP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28234155,28279736,'NM_003678','THOC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',31526801,31589028,'NM_000362','TIMP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36945243,36998986,'NM_012264','TMEM184B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19385401,19388891,'NR_026815','TMEM191A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18757668,18760440,'NM_001242313','TMEM191B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20151458,20154224,'NM_001207052','TMEM191C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23661207,23665314,'NM_001001663','TMEM211'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35791424,35829639,'NM_153609','TMPRSS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40650981,40652767,'NM_052945','TNFRSF13C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',38903874,39061758,'NM_001162501','TNRC6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40159437,40172973,'NM_016272','TOB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',34025796,34073987,'NM_005488','TOM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',37407899,37410711,'NM_020243','TOMM22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23490467,23491986,'NR_001283','TOP1P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20641402,20667147,'NM_003935','TOP3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',25251713,25316089,'NM_003595','TPST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48966486,48980154,'NM_025204','TRABD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',36472186,36485907,'NM_138632','TRIOBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18479397,18484768,'NM_182984','TRMT2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',45109961,45131901,'NM_018006','TRMU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41877478,41889192,'NM_007311','TSPO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17498320,17500136,'NM_053006','TSSK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35736851,35745437,'NM_003312','TST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',26704001,27405853,'NM_001145418','TTC28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',26645363,26728667,'NR_026963','TTC28-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',45042524,45068569,'NM_017931','TTC38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41765466,41815378,'NR_027779','TTLL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',41892571,41913081,'NM_015140','TTLL12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',16973452,16994498,'NM_018943','TUBA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48998244,49025527,'NM_020461','TUBGCP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',29695633,29705380,'NR_002323','TUG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',35193038,35207633,'NM_012473','TXN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18243039,18309359,'NM_006440','TXNRD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',49311047,49315380,'NM_001953','TYMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20251956,20308323,'NM_003347','UBE2L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17817463,17846738,'NM_005659','UFD1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',23221250,23252553,'NM_016327','UPB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44059531,44070419,'NM_001167574','UPK3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28493357,28496402,'NM_013387','UQCR10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',17012757,17040162,'NM_017414','USP18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20929199,20929926,'NM_007128','VPREB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22424929,22426630,'NM_013378','VPREB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40724674,40754423,'NM_152613','WBP2NL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',44694911,44751672,'NM_058238','WNT7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',27520547,27526560,'NM_005080','XBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',15644305,15682584,'NM_175878','XKR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',39583030,39658769,'NM_022098','XPNPEP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40347240,40389998,'NM_001469','XRCC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20312378,20314340,'NM_001017964','YDJC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',20381825,20420071,'NM_013313','YPEL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',30670478,30683590,'NM_003405','YWHAH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',48633500,48669730,'NM_014838','ZBED4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',40027512,40086097,'NM_017590','ZC3H7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',18499363,18515530,'NM_001185024','ZDHHC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22062791,22074799,'NR_003950','ZDHHC8P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',28456944,28492969,'NM_019103','ZMAT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21198060,21204613,'NM_080740','ZNF280A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',21168771,21193505,'NM_080764','ZNF280B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',22413771,22423279,'NM_021916','ZNF70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',19078479,19092752,'NR_003253','ZNF74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr22',27643376,27783476,'NM_032173','ZNRF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr2_',92952,104179,'NM_012145','DTYMK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',139325249,139333919,'NM_016161','A4GNT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',153014550,153028966,'NM_001086','AADAC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',152934393,152958246,'NM_207365','AADACL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185120417,185218421,'NM_005688','ABCC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185386556,185394489,'NM_018358','ABCF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113180517,113194900,'NM_018394','ABHD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51984081,51990256,'NM_015407','ABHD14A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51984081,51998258,'NR_037192','ABHD14A-ACY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51977565,51983686,'NM_032750','ABHD14B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',43707378,43739221,'NM_016006','ABHD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',58198298,58255501,'NM_020676','ABHD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',101950868,102195024,'NM_015429','ABI3BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',128874470,128882459,'NM_032548','ABTB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38139204,38153737,'NM_001607','ACAA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',133759671,133861665,'NM_032169','ACAD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130081022,130114647,'NR_033426','ACAD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',196476753,196645106,'NM_012287','ACAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',58465902,58497969,'NM_003500','ACOX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',142433371,142496176,'NM_001037172','ACPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',133518900,133560380,'NM_001099','ACPP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',180763401,180788887,'NM_177989','ACTL6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',53876133,53891269,'NM_022899','ACTR8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38470793,38509637,'NM_001106','ACVR2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51992339,51998258,'NM_000666','ACY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',64476370,64648405,'NM_182920','ADAMTS9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',64645585,64972183,'NR_038264','ADAMTS9-AS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',124483832,124617879,'NM_001199642','ADCY5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',188043156,188058946,'NM_001177800','ADIPOQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120781212,120791482,'NM_001125','ADPRH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',149898347,149943480,'NM_000685','AGTR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187813543,187821802,'NM_001622','AHSG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52207183,52223383,'NM_000688','ALAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',106568246,106726920,'NM_001243283','ALCAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127305097,127382175,'NM_012190','ALDH1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127130807,127138577,'NM_001195223','ALG1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',131283363,131299923,'NM_001136152','ALG1L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185442810,185449453,'NR_024534','ALG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46685488,46710198,'NR_033815','ALS2CL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49729270,49732242,'NM_198722','AMIGO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',135556879,135576096,'NM_016201','AMOTL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49429214,49435115,'NM_001164711','AMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',135679235,135687553,'NM_015391','ANAPC13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15683747,15814695,'NM_001195098','ANKRD28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150961579,150993300,'NM_001144960','ANKUB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',43382821,43638564,'NM_018075','ANO10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185375327,185384573,'NM_004068','AP2M1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49686438,49695938,'NM_001640','APEH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',196776861,196792365,'NM_001647','APOD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',57236804,57282538,'NM_012096','APPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',57532129,57558255,'NM_001660','ARF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',122769467,122792159,'NM_001012659','ARGFX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120495909,120621013,'NM_020754','ARHGAP31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',155321838,155458310,'NM_015595','ARHGEF26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',155224879,155321689,'NR_037901','ARHGEF26-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',56736485,57088376,'NM_001128615','ARHGEF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48931284,48997975,'NM_006321','ARIH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',95181672,95257212,'NR_033427','ARL13B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',161877641,161878929,'NM_025047','ARL14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',98966284,99000063,'NM_177976','ARL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',69216779,69237929,'NM_006407','ARL6IP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',5138929,5197601,'NM_018184','ARL8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',139388837,139498909,'NM_015396','ARMC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9809231,9823789,'NM_005718','ARPC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9809231,9853040,'NM_001198793','ARPC4-TTLL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',170967404,170970377,'NM_032487','ARPM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',35658852,35810992,'NM_016300','ARPP21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',57277418,57301750,'NM_001142733','ASB14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',132215410,132228336,'NM_014065','ASTE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113734048,113763175,'NM_022488','ATG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',11289009,11574139,'NM_001136031','ATG7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',183993984,184122115,'NM_014616','ATP11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195604691,195670257,'NM_024524','ATP13A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',194602559,194755390,'NM_032279','ATP13A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',194475524,194579208,'NM_198505','ATP13A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',143078159,143128072,'NM_001679','ATP1B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10340706,10522268,'NM_001683','ATP2B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',132095981,132204736,'NM_014382','ATP2C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',114948555,115013595,'NM_001690','ATP6V1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',143650766,143780358,'NM_001184','ATR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48463221,48482058,'NM_032166','ATRIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',63928459,63964176,'NM_001128149','ATXN7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',28338848,28365622,'NM_022461','AZI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',162284364,162305854,'NM_001038628','B3GALNT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',184453725,184473873,'NM_032047','B3GNT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120413278,120442442,'NM_212543','B4GALT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52410064,52419049,'NM_004656','BAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',108724472,109012739,'NM_020235','BBX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',166973385,167037947,'NM_000055','BCHE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',188921858,188936979,'NM_001130845','BCL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198721050,198767255,'NM_004051','BDH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',134601479,134676746,'NM_003571','BFSP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',4996096,5001865,'NM_003670','BHLHE40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',114414064,114488995,'NM_033254','BOC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',140305716,140326695,'NR_026783','BPESC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10132332,10143874,'NM_018462','BRK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9748433,9764699,'NM_004634','BRPF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49566925,49683986,'NM_003458','BSN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49561742,49566803,'NR_038866','BSN-AS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15618258,15662329,'NM_000060','BTD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113665502,113701098,'NM_181780','BTLA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',62280435,62294360,'NM_020685','C3orf14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120904558,120968639,'NM_033364','C3orf15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',114203981,114221245,'NR_027796','C3orf17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50570459,50580227,'NM_001171740','C3orf18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',14668256,14689170,'NM_016474','C3orf19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',14691609,14789547,'NM_001184957','C3orf20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',196270301,196473184,'NM_152531','C3orf21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127751208,127760448,'NM_152533','C3orf22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44354947,44425944,'NM_173826','C3orf23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10098003,10124915,'NM_173472','C3orf24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130602853,130630184,'NM_207307','C3orf25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',101019367,101380166,'NM_032359','C3orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',129773532,129777619,'NM_007354','C3orf27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120347686,120352992,'NM_152539','C3orf30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',8636319,8668737,'NM_015931','C3orf32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',156963094,157006749,'NM_173657','C3orf33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',37415971,37434869,'NM_178342','C3orf35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',135129679,135131346,'NM_025041','C3orf36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130480373,130506825,'NM_020187','C3orf37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',88281582,88289805,'NM_173824','C3orf38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',43095732,43122569,'NM_032806','C3orf39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197718146,197726634,'NM_001077657','C3orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50291521,50300549,'NM_153215','C3orf45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',63780080,63809352,'NR_026866','C3orf49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',55666279,55668537,'NR_024615','C3orf51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113287871,113319734,'NM_024616','C3orf52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49815690,49817467,'NM_203370','C3orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',158743826,158770395,'NR_024016','C3orf55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',145174856,145193900,'NM_001134470','C3orf58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49281033,49289512,'NM_198562','C3orf62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',69107057,69145464,'NM_173654','C3orf64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',186913733,186918649,'NR_027317','C3orf65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',58702776,59010755,'NM_198463','C3orf67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',186278531,186353496,'NM_001025266','C3orf70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48930224,48931822,'NM_001123040','C3orf71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',140148765,140155520,'NM_001040061','C3orf72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52071149,52074168,'NR_027331','C3orf74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47512133,47530203,'NM_001031703','C3orf75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44258381,44348594,'NM_001145030','C3orf77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52545660,52549626,'NM_001124767','C3orf78'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',154684973,154703176,'NM_001101337','C3orf79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',161426116,161428694,'NM_001168214','C3orf80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',53504070,53821532,'NM_001128839','CACNA1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50375234,50515896,'NM_006030','CACNA2D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',54131732,55083624,'NM_018398','CACNA2D3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',85858321,86206269,'NM_153184','CADM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',62359060,62836104,'NM_003716','CADPS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9774028,9786668,'NM_003656','CAMK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185459696,185461945,'NM_033259','CAMK2N2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49870425,49882373,'NM_024046','CAMKV'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48239840,48241985,'NM_004345','CAMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',12813170,12851313,'NM_012298','CAND2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15222736,15269427,'NM_014296','CAPN7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123385870,123488034,'NM_001178065','CASR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',8750485,8763451,'NM_033337','CAV3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',106859798,107070577,'NM_170662','CBLB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42825967,42883779,'NM_001296','CCBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46938223,46993274,'NM_144716','CCDC12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42724877,42789749,'NM_144719','CCDC13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',125114963,125162945,'NM_022757','CCDC14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49210864,49270541,'NM_178173','CCDC36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127596471,127638088,'NM_182628','CCDC37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',181814489,181879977,'NM_181426','CCDC39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130203161,130242275,'NM_024768','CCDC48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',192529567,192599153,'NM_178335','CCDC50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48448583,48456533,'NM_024661','CCDC51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',108578877,108580171,'NM_032600','CCDC54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123561125,123584764,'NM_001017928','CCDC58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',56566223,56630888,'NR_024460','CCDC66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49174971,49178789,'NM_022903','CCDC71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48456689,48460541,'NM_015933','CCDC72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113806098,113842667,'NM_199512','CCDC80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42274321,42282666,'NM_000729','CCK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',158348279,158361176,'NM_020307','CCNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46218203,46224836,'NM_001295','CCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46370238,46375872,'NM_001123396','CCR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46258875,46283201,'NM_001837','CCR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',32968069,32971407,'NM_005508','CCR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39346200,39350175,'NM_005201','CCR8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',45902999,45919671,'NM_031200','CCR9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',133798783,133804072,'NM_016557','CCRL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113534605,113564348,'NM_005944','CD200'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',114124221,114176627,'NM_138806','CD200R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',114017245,114047487,'NM_001199215','CD200R1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',109244630,109292625,'NM_198793','CD47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120725829,120761171,'NM_005191','CD80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123256898,123322678,'NM_175862','CD86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',112743615,112853896,'NM_005816','CD96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48173671,48204805,'NM_001789','CDC25A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',45126734,45162918,'NM_178181','CDCP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49803170,49812258,'NM_001007540','CDHR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',134775123,134791808,'NM_001134422','CDV3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48648899,48675352,'NM_001407','CELSR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197917544,197923520,'NM_032898','CEP19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',135687736,135766560,'NM_025180','CEP63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',139695876,139795819,'NM_024491','CEP70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',102926183,102968871,'NM_024548','CEP97'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',88183789,88281706,'NM_001195308','CGGBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',14128577,14141372,'NM_001098502','CHCHD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127905807,128161934,'NM_032343','CHCHD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',53825363,53855460,'NM_018397','CHDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',213649,426097,'NM_006614','CHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',87359102,87387388,'NM_014043','CHMP2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185580554,185590311,'NM_003741','CHRD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127725820,127744824,'NM_152889','CHST13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',144321307,144325546,'NM_004267','CHST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9883393,9896938,'NM_001199552','CIDEC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10034236,10042820,'NR_002786','CIDECP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50618888,50624266,'NM_013324','CISH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',33512741,33734709,'NM_015097','CLASP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185546669,185562085,'NM_001171089','CLCN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',191506183,191522929,'NM_021101','CLDN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',171619346,171635173,'NM_005602','CLDN11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',191588354,191612626,'NM_006580','CLDN16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',139200347,139235184,'NM_001002026','CLDN18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99717006,99724600,'NM_001040182','CLDND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',45042762,45052567,'NM_003278','CLEC3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',152127043,152173476,'NM_174878','CLRN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',152173154,152280307,'NR_024066','CLRN1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',141136716,141769609,'NM_022131','CLSTN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',28258127,28336267,'NM_182523','CMC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',32497807,32519407,'NM_017801','CMTM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',32408166,32471337,'NM_181472','CMTM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',32255174,32386817,'NM_178868','CMTM8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130369347,130385500,'NM_001127195','CNBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',32701701,32790358,'NM_015442','CNOT10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',74394411,74653033,'NM_020872','CNTN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',2115549,3074645,'NM_175607','CNTN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',1109628,1420278,'NM_014461','CNTN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15181872,15222470,'NR_027927','COL6A4P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',131414352,131475339,'NR_027898','COL6A4P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',131547048,131686378,'NR_022012','COL6A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',131761867,131878578,'NM_001102608','COL6A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48576509,48607597,'NM_000094','COL7A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',100840143,100997848,'NM_001850','COL8A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15466643,15538262,'NM_005677','COLQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150938946,150952976,'NM_016094','COMMD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',140559122,140591212,'NR_023350','COPB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130451142,130479306,'NM_016128','COPG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120871061,120878933,'NM_005694','COX17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150372979,150422522,'NM_000096','CP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150065732,150097562,'NM_001870','CPA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150028277,150060662,'NM_001871','CPB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195542188,195553350,'NM_001080513','CPN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',132736266,133236534,'NM_130808','CPNE4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9720509,9746592,'NM_153635','CPNE9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99780979,99795145,'NM_000097','CPOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',3166316,3196401,'NM_001173482','CRBN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9950524,9962097,'NM_001077415','CRELD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',33130453,33164269,'NM_006371','CRTAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187738925,187744861,'NM_017541','CRYGS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47578731,47595363,'NM_006574','CSPG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39158345,39170106,'NM_033027','CSRNP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123526700,123543505,'NM_005213','CSTA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',37878672,38000964,'NM_005808','CTDSPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',41215945,41256943,'NM_001098210','CTNNB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39279988,39296934,'NM_001171172','CX3CR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',45959976,45964849,'NM_006564','CXCR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50363300,50366500,'NM_007022','CYB561D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42888687,42892637,'NM_004391','CYP8B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49482568,49548052,'NM_001177641','DAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49027438,49033471,'NM_018114','DALRD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',16603304,16622010,'NM_001351','DAZL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',139362519,139376481,'NM_016216','DBR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99997503,100103223,'NM_080927','DCBLD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',36728916,36756356,'NM_033403','DCLK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',53292484,53356694,'NM_018403','DCP1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',184143252,184181020,'NM_020640','DCUN1D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187347683,187562717,'NM_001346','DGKG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',95259455,95264521,'NM_176815','DHFRL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47819402,47866690,'NM_138615','DHX30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',155476150,155524980,'NM_001114397','DHX36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123996590,124082676,'NM_032839','DIRC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38055699,38139232,'NM_007335','DLEC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198253827,198509844,'NM_004087','DLG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52325374,52409553,'NM_015512','DNAH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',57458770,57505111,'NM_198564','DNAH12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187771160,187786283,'NM_016306','DNAJB11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',129663971,129668781,'NM_153330','DNAJB8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',129665126,129673850,'NR_037890','DNAJB8-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',133619242,133740566,'NM_015268','DNAJC13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',182187661,182190256,'NR_033725','DNAJC19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',58153393,58175438,'NM_004944','DNASE1L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50687675,51396669,'NM_004947','DOCK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',16273571,16281500,'NM_001047434','DPH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',110495324,110518054,'NM_138815','DPPA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',110527677,110539109,'NM_018189','DPPA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',115330246,115380589,'NM_033663','DRD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123765874,123776739,'NM_138287','DTX3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52057976,52065501,'NM_001947','DUSP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185355977,185374008,'NM_004423','DVL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',32542466,32587370,'NM_016141','DYNC1LI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',139263516,139317141,'NM_173543','DZIP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',109791026,109896383,'NM_014648','DZIP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15444067,15459124,'NM_033083','EAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123036723,123088063,'NM_018456','EAF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',73193499,73195161,'NM_018029','EBLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185476492,185493513,'NM_001100121','ECE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',173954991,174021957,'NM_018098','ECT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',5204358,5236650,'NM_014674','EDEM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',129355002,129610179,'NM_021937','EEFSEC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',19895969,19950710,'NM_144715','EFHB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',169450003,170031068,'NR_021485','EGFEM1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',4765877,4768274,'NR_004428','EGOT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',186391105,186454580,'NM_001966','EHHADH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',40326176,40328919,'NM_005875','EIF1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',151747263,151786493,'NM_032025','EIF2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185335503,185345793,'NM_003907','EIF2B5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187984054,187990379,'NM_001967','EIF4A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',71811129,71886614,'NM_173359','EIF4E3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185514976,185535840,'NM_198241','EIF4G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',172088897,172109120,'NM_020390','EIF5A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',40403676,40445114,'NM_001248','ENTPD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',40407445,40469803,'NR_040100','ENTPD3-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',27732889,27738789,'NM_005442','EOMES'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',89239363,89613974,'NM_005233','EPHA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',98641179,98850111,'NM_173655','EPHA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',135996788,136461997,'NM_004441','EPHB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185762280,185782890,'NM_004443','EPHB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',37002360,37009799,'NM_014805','EPM2AIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',55517375,56477431,'NM_015576','ERC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',54641190,54648924,'NR_027122','ESRG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',139636104,139679946,'NM_031913','ESYT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187246799,187309595,'NM_004454','ETV5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38512766,38542800,'NM_001145464','EXOG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44992744,45027966,'NM_015004','EXOSC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',139810608,139834903,'NM_018147','FAIM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',58524884,58538531,'NM_007177','FAM107A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',57586220,57653856,'NM_152678','FAM116A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185536410,185546757,'NM_001171093','FAM131A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',199363633,199392125,'NM_001145248','FAM157A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123585712,123611651,'NM_014367','FAM162A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',102720400,102725421,'NR_036433','FAM172BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',151860364,151904432,'NM_152394','FAM194A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42995762,43074211,'NM_001129908','FAM198A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',68136143,68677461,'NM_213609','FAM19A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',68863606,69064401,'NM_182522','FAM19A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',56629199,56692175,'NM_001112736','FAM208A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',58594709,58627601,'NM_138805','FAM3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195887910,195891055,'NM_153690','FAM43A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',102980975,103029765,'NM_001134456','FAM55C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',75553392,75566956,'NR_024241','FAM86DP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',131299314,131312966,'NR_024252','FAM86HP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10043112,10116344,'NM_033084','FANCD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',13585239,13654923,'NM_001165035','FBLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',33293937,33403761,'NM_012157','FBXL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',122794859,122831829,'NM_016298','FBXO40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197780121,197800327,'NM_001105573','FBXO45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48388712,48411194,'NM_001159929','FBXW12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187840842,187853491,'NM_014375','FETUB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',62330386,62334230,'NM_018008','FEZF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',14835472,14951076,'NM_152536','FGD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',193339875,193609532,'NM_021032','FGF12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',59710075,61212173,'NM_001166243','FHIT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',101049461,101077736,'NM_014890','FILIP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',75796170,75799058,'NR_037925','FLJ20518'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',110338250,110351641,'NR_033977','FLJ22763'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',110611526,110696704,'NM_001145553','FLJ25363'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',40189641,40326193,'NR_033965','FLJ33065'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195689157,195690563,'NR_033929','FLJ34208'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47180863,47260610,'NR_033373','FLJ39534'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',189379024,189381290,'NR_024413','FLJ42393'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',183647451,183686844,'NR_040105','FLJ46066'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',57969166,58133022,'NM_001164319','FLNB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',173241037,173601186,'NM_001135095','FNDC3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',140145755,140148672,'NM_023067','FOXL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',71086554,71196764,'NM_001244813','FOXP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',75796176,75799058,'NM_001124759','FRG2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',69301835,69518120,'NM_015123','FRMD4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',121595750,121652608,'NM_007085','FSTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',182112927,182183233,'NM_005087','FXR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',45934398,46012311,'NM_024513','FYCO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198961020,198995714,'NM_032288','FYTTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99188216,99236838,'NM_001105580','GABRR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',30742695,30911157,'NM_207359','GADL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',16191187,16246257,'NM_054110','GALNTL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',116824840,116923024,'NM_001130064','GAP43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',129680954,129689454,'NM_001145662','GATA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',81621539,81893640,'NM_000158','GBE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113322377,113334842,'NM_001190260','GCET2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',159845010,159893054,'NM_024996','GFM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10302433,10307419,'NM_001134941','GHRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10302437,10310133,'NR_024144','GHRLOS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10301102,10302430,'NR_026829','GHRLOS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',173643775,173648940,'NM_198407','GHSR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',143359058,143427139,'NM_001039547','GK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',33013103,33113698,'NM_001135602','GLB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52703543,52715088,'NM_018446','GLT8D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52296875,52304312,'NM_145262','GLYCTK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',192053219,192063159,'NM_001146686','GMNC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49733935,49736388,'NM_021971','GMPPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',157071018,157138214,'NM_003875','GMPS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50259329,50271790,'NM_001166425','GNAI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50204046,50210133,'NM_144499','GNAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',180596569,180652065,'NM_021629','GNB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52694975,52703550,'NM_014366','GNL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',37259685,37383374,'NM_002078','GOLGA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',122864737,122951292,'NM_004487','GOLGB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',169210347,169296111,'NM_014498','GOLIM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39113094,39124134,'NM_031899','GORASP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195596838,195601284,'NM_004488','GP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130262334,130263943,'NM_000174','GP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',32123006,32185211,'NM_015141','GPD1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',101811122,101897013,'NM_032787','GPR128'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',155538154,155630198,'NM_001038705','GPR149'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99733567,99734650,'NM_005290','GPR15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',121367017,121445832,'NM_001168271','GPR156'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',171238428,171285877,'NM_014373','GPR160'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',152398308,152403678,'NM_013308','GPR171'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',71885890,71887018,'NM_018971','GPR27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51964369,51966560,'NM_080865','GPR62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',152494565,152517326,'NM_023915','GPR87'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49369612,49370795,'NM_000581','GPX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',115099007,115148711,'NM_001172105','GRAMD1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',14505622,14558592,'NM_001080423','GRIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',142979732,143018582,'NM_139209','GRK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51716120,51727665,'NM_001130063','GRM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',6877801,7758218,'NM_000844','GRM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',121023491,121295954,'NM_001146156','GSK3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',121944247,121984606,'NM_005513','GTF2E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',114192489,114202911,'NM_138485','GTPBP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',110109331,110155367,'NM_005459','GUCA1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',73020074,73107212,'NM_001080393','GXYLT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150191884,150228146,'NM_004130','GYG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130744746,130752894,'NM_153833','H1FOO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130516303,130517810,'NM_006026','H1FX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130517803,130526102,'NR_026991','H1FX-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15577243,15618134,'NM_012260','HACL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',122832935,122862481,'NM_005335','HCLS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',13496843,13522924,'NM_001136041','HDAC11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',126167243,126257492,'NM_020733','HEG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50581912,50597425,'NM_016173','HEMK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195336624,195339095,'NM_005524','HES1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',57206983,57209320,'NM_003865','HESX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',121829704,121884108,'NM_000187','HGD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42709158,42719323,'NM_020707','HHATL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',109504021,109579816,'NM_007072','HHLA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42799403,42821031,'NM_014056','HIGD1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150230593,150287031,'NM_003071','HLTF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150330060,150373995,'NM_032383','HPS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',194441611,194471338,'NM_020386','HRASLS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187866491,187878717,'NM_000412','HRG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',11153778,11279939,'NM_001098213','HRH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123941533,123995356,'NM_024610','HSPBAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',88114415,88125609,'NM_000866','HTR1F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185253528,185261155,'NM_130770','HTR3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185233312,185239851,'NM_001163646','HTR3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185300660,185307477,'NM_182589','HTR3E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50312324,50316008,'NM_007312','HYAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50330224,50335285,'NM_033158','HYAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50305262,50311297,'NM_001200029','HYAL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',62084198,62085432,'NR_026582','ID2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50300166,50305030,'NM_006764','IFRD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130641657,130721881,'NM_052985','IFT122'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',109362348,109424107,'NM_018010','IFT57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',161457467,161584248,'NM_001190242','IFT80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',186844220,187025521,'NM_006548','IGF2BP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',152636467,152659187,'NM_178822','IGSF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120102168,120347588,'NM_152538','IGSF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',161189316,161196500,'NM_000882','IL12A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',53855616,53874867,'NM_018725','IL17RB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9933757,9950305,'NM_032732','IL17RC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',57099049,57174443,'NM_017563','IL17RD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9919511,9933084,'NM_001193380','IL17RE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',191714533,191852002,'NM_002182','IL1RAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',138159396,138212616,'NM_144717','IL20RB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',3083007,3127058,'NM_000564','IL5RA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123188859,123223817,'NM_001199799','ILDR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49036765,49041879,'NM_000884','IMPDH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',102424079,102522109,'NM_016247','IMPG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49736731,49798631,'NM_001242829','IP6K1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48705886,48729715,'NM_001146179','IP6K2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',122971299,123036616,'NM_001023571','IQCB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51903931,51912426,'NM_152397','IQCF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51870684,51872480,'NM_203424','IQCF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51835938,51839914,'NM_001207023','IQCF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51826658,51827395,'NR_038215','IQCF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51882776,51884640,'NM_001145059','IQCF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51787616,51788243,'NM_001143833','IQCF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',199100342,199171283,'NM_032263','IQCG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',160269734,160464229,'NM_001042706','IQCJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',160269734,161097849,'NM_001197113','IQCJ-SCHIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',12913718,12983960,'NM_014869','IQSEC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10181562,10260427,'NM_001570','IRAK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130328948,130362763,'NM_020701','ISY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130289101,130362763,'NM_001204890','ISY1-RAB43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',37468816,37836285,'NM_002207','ITGA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',125964484,126088834,'NM_002213','ITGB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52788976,52801117,'NM_001166436','ITIH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52803823,52818065,'NM_002217','ITIH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52822045,52839757,'NM_002218','ITIH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',4510031,4864524,'NM_002222','ITPR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9907270,9911031,'NM_032492','JAGN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',125296247,125721388,'NM_003947','KALRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',20056527,20170900,'NM_003884','KAT2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',129124591,129189204,'NM_207335','KBTBD12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42702014,42708942,'NM_152393','KBTBD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',67131416,67144322,'NM_032505','KBTBD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',157343444,157739621,'NM_003471','KCNAB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',19165020,19552139,'NM_144633','KCNH8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',179736917,180044911,'NM_181361','KCNMB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',180440230,180467532,'NM_001163677','KCNMB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',58459131,58463127,'NM_153331','KCTD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198882710,198960965,'NM_001145642','KIAA0226'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44765239,44778177,'NM_020696','KIAA1143'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130172471,130195676,'NM_020741','KIAA1257'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',115165673,115258150,'NM_020817','KIAA1407'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',109751407,109791181,'NM_020890','KIAA1524'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',114849922,114898183,'NM_001009899','KIAA2018'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44778212,44869752,'NM_020242','KIF15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47244519,47299341,'NM_182902','KIF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127544167,127558926,'NM_014079','KLF15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49184021,49188923,'NM_173546','KLHDC8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47299333,47363310,'NM_025010','KLHL18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',184836104,184884998,'NM_017644','KLHL24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',184688012,184756193,'NM_130446','KLHL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187917791,187944893,'NM_000893','KNG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123623437,123716476,'NM_002264','KPNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',161695476,161766070,'NM_002268','KPNA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42952837,42959287,'NM_001205272','KRBOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',135801454,135852554,'NM_178554','KY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49133550,49145603,'NM_002292','LAMB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49165295,49166838,'NR_004405','LAMB2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',184322696,184363361,'NM_014398','LAMP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',45405078,45565332,'NM_015340','LARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',158026841,158125739,'NM_001193283','LEKR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',191157210,191321602,'NM_018192','LEPREL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9515044,9570486,'NM_198560','LHFPL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',45611326,45697759,'NM_014240','LIMD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',8588467,8591354,'NR_024065','LINC00312'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',110379701,110386798,'NR_026767','LINC00488'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',186708263,186753063,'NM_139248','LIPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',8518510,8584806,'NM_014583','LMCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',199171467,199254988,'NM_001136049','LMLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',69238728,69254436,'NM_198271','LMOD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',101602726,101657860,'NM_001085451','LNP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',102877963,102880747,'NR_024407','LOC100009676'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127118133,127131557,'NR_024251','LOC100125556'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195193576,195194721,'NR_027764','LOC100128023'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',171144465,171167216,'NR_027622','LOC100128164'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38467521,38471315,'NR_028389','LOC100128640'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',12556279,12561963,'NM_001195279','LOC100129480'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',124088049,124093953,'NR_024618','LOC100129550'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195501682,195513287,'NR_024480','LOC100131551'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',188902847,188932897,'NR_034062','LOC100131635'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46628928,46643037,'NM_001195442','LOC100132146'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',13949553,13953445,'NR_036481','LOC100132526'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',64039076,64048079,'NR_033978','LOC100287879'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',8237833,8518344,'NR_033378','LOC100288428'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',144202376,144202999,'NR_034032','LOC100289361'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',108311326,108442175,'NR_028303','LOC100302640'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',158290363,158301618,'NR_034008','LOC100498859'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',184648089,184656494,'NR_038302','LOC100505687'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',62222533,62279662,'NR_038281','LOC100506994'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',131095403,131110445,'NR_037893','LOC100507032'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',63964737,63972957,'NR_038286','LOC100507062'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198509514,198515018,'NR_038289','LOC100507086'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',144128206,144144068,'NR_038455','LOC100507389'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195910438,195984186,'NR_037891','LOC100507391'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',156490714,156494183,'NR_037902','LOC100507537'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',4914913,4923186,'NR_037903','LOC100507582'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',109043198,109079605,'NR_015414','LOC151658'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',24116468,24119742,'NR_026834','LOC152024'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198153890,198155281,'NR_024388','LOC152217'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',103142392,103199460,'NR_026934','LOC152225'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',72283097,72306180,'NR_038221','LOC201617'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',152970933,152985372,'NR_026915','LOC201651'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198825294,198839149,'NR_003266','LOC220729'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187655463,187694144,'NR_033844','LOC253573'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',96139796,96192859,'NR_015400','LOC255025'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',109084741,109130443,'NR_015394','LOC285205'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',25875026,25890190,'NR_034055','LOC285326'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',102913967,102914950,'NR_002941','LOC285359'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10776168,10780877,'NR_027102','LOC285370'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',13667221,13763133,'NR_027103','LOC285375'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',63063403,63085777,'NR_027104','LOC285401'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',132526625,132583009,'NR_038976','LOC339874'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',158282149,158323485,'NR_034007','LOC339894'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',186363382,186392437,'NR_038990','LOC339926'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',108442228,108528501,'NR_028302','LOC344595'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187160451,187181359,'NR_033752','LOC344887'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',199268798,199291939,'NR_003291','LOC348840'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10023101,10027779,'NM_001008737','LOC401052'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',75804121,75811144,'NR_040005','LOC401074'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',153463094,153470105,'NR_027038','LOC401093'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197353903,197372158,'NR_034088','LOC401109'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9405536,9414174,'NR_027007','LOC440944'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',84770245,85001416,'NR_033860','LOC440970'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',45694660,45705378,'NR_033947','LOC644714'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',28591772,28774832,'NR_038840','LOC645206'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',169096429,169124491,'NR_033843','LOC646168'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49190072,49204295,'NM_001080528','LOC646498'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',151171755,151173719,'NR_036538','LOC646903'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',164377724,164503783,'NR_033945','LOC647107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195157854,195204142,'NR_033944','LOC647323'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130063040,130073074,'NR_034179','LOC653712'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',157947825,158017545,'NR_038387','LOC730091'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',129709367,129712119,'NR_026954','LOC90246'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',189354356,190091154,'NM_001167672','LPP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',189351687,189354570,'NR_036497','LPP-AS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',199002541,199082853,'NM_032773','LRCH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',66511910,66633535,'NM_015541','LRIG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195557270,195571761,'NM_130830','LRRC15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46531881,46583044,'NM_024512','LRRC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',171039722,171070354,'NM_024727','LRRC31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197851052,197873271,'NM_198565','LRRC33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',170993909,171013268,'NM_001172779','LRRC34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',26639303,26727269,'NM_052953','LRRC3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',121526265,121550876,'NM_001099678','LRRC58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',37069120,37192855,'NM_017724','LRRFIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',171022403,171038254,'NM_001080460','LRRIQ4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',3816120,3864387,'NM_020873','LRRN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',54927420,54937112,'NM_020678','LRTM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',117003899,117647075,'NM_002338','LSAMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',117911324,117918577,'NR_015391','LSAMP-AS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195842805,195874495,'NM_018385','LSG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',14195231,14214873,'NM_014463','LSM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46452499,46480165,'NM_001199149','LTF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',159866896,159873176,'NM_020169','LXN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42413578,42427069,'NM_144634','LYZL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',45840449,45858625,'NM_020347','LZTFL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185910848,185912530,'NM_022149','MAGEF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',65314945,65999549,'NM_015520','MAGI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51397731,51401868,'NM_006010','MANF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',186483422,186689576,'NM_001242314','MAP3K13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47989572,48105773,'NM_030885','MAP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185016357,185026087,'NM_024871','MAP6D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50624296,50661732,'NM_001243926','MAPKAPK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',188434563,188492504,'NR_033519','MASP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',193997298,194118644,'NM_178496','MB21D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130632482,130641542,'NM_003925','MBD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',153499883,153666259,'NM_207294','MBNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',184215699,184300059,'NM_020166','MCCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',184378524,184628549,'NM_015078','MCF2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',128799942,128823968,'NM_004526','MCM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',170283980,170346787,'NM_005241','MECOM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',152287365,152637155,'NM_053002','MED12L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15426380,15444046,'NM_152396','METTL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198230220,198241083,'NM_033316','MFI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198214173,198216012,'NR_038285','MFI2-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',180548173,180593702,'NM_033540','MFN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',160002408,160030202,'NM_022736','MFSD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',194442261,194444455,'NR_026877','MGC2889'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',128890598,129024741,'NM_001003794','MGLL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99143350,99173914,'NM_032778','MINA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185441886,185441971,'NR_030410','MIR1224'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47866048,47866123,'NR_031595','MIR1226'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187987154,187987260,'NR_031650','MIR1248'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',35760971,35761055,'NR_029824','MIR128-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',129563697,129563791,'NR_031703','MIR1280'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',71673810,71673930,'NR_031697','MIR1284'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',53318410,53409557,'NR_031638','MIR1303'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',75762603,75762699,'NR_031714','MIR1324'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52303274,52303364,'NR_029677','MIR135A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44130707,44130806,'NR_029700','MIR138-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',161605069,161605167,'NR_029663','MIR15B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',161605226,161605307,'NR_029525','MIR16-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49033054,49033146,'NR_029690','MIR191'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',121597204,121597266,'NR_029584','MIR198'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',37985898,37985975,'NR_029499','MIR26A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',69180798,69180876,'NR_036087','MIR3136'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',16949691,16949756,'NR_037465','MIR3714'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',160483128,160483217,'NR_037483','MIR3919'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',101165847,101165932,'NR_037486','MIR3921'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',55861559,55861662,'NR_037502','MIR3938'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49032584,49032671,'NR_029948','MIR425'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15512749,15512819,'NR_036232','MIR4270'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49286556,49286623,'NR_036233','MIR4271'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',67358577,67358641,'NR_036234','MIR4272'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',75870120,75870204,'NR_036235','MIR4273'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',25681367,25681434,'NR_039644','MIR4442'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48213057,48213110,'NR_039645','MIR4443'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',114796412,114796479,'NR_039648','MIR4446'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50687514,50687598,'NR_039950','MIR4787'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',135639358,135639438,'NR_039951','MIR4788'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',176570022,176570104,'NR_039952','MIR4789'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',5266861,5266940,'NR_039953','MIR4790'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',19331343,19331427,'NR_039954','MIR4791'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',24537856,24537930,'NR_039955','MIR4792'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48656630,48656717,'NR_039956','MIR4793'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',87358028,87358117,'NR_039958','MIR4795'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',115944981,115945062,'NR_039959','MIR4796'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198505145,198505216,'NR_039960','MIR4797'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',152830009,153025084,'NR_031678','MIR548H2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',126991936,126992085,'NR_031687','MIR548I1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',169752335,169752431,'NR_030294','MIR551B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15890281,15890360,'NR_030289','MIR563'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44878383,44878477,'NR_030290','MIR564'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113314337,113314435,'NR_030292','MIR567'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',115518011,115518106,'NR_030293','MIR568'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',172307146,172307242,'NR_030295','MIR569'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',196911451,196911548,'NR_030296','MIR570'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48591338,48591414,'NR_031756','MIR711'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10411172,10411246,'NR_030614','MIR885'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198885763,198885844,'NR_030627','MIR922'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',191030404,191030492,'NR_030642','MIR944'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52277333,52277417,'NR_029660','MIRLET7G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',70068440,70100178,'NM_198178','MITF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',12573593,12600210,'NM_014160','MKRN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',159771646,159806943,'NM_001195434','MLF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',37010271,37067341,'NM_001167618','MLH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',156280646,156384212,'NM_007288','MME'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39484073,39542861,'NR_003090','MOBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49921305,49942449,'NM_032355','MON1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',110159776,110319683,'NM_014429','MORC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',139549314,139607067,'NM_012219','MRAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',132663734,132704550,'NM_007208','MRPL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',180788948,180805128,'NM_177988','MRPL47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',140545550,140558577,'NM_020191','MRPS22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15065022,15081820,'NM_022497','MRPS25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',137350449,137396000,'NM_001145417','MSL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49696383,49701200,'NM_020998','MST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49899439,49916310,'NM_002447','MST1R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9666116,9719078,'NM_022485','MTMR14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',126106978,126136285,'NM_033049','MUC13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',196933423,196950211,'NM_152673','MUC20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',196959308,197023241,'NM_004532','MUC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52842170,52844275,'NM_205853','MUSTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38154972,38159516,'NM_001172569','MYD88'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',109581905,109730859,'NM_014981','MYH15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46874360,46879977,'NM_000258','MYL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',124813832,124822220,'NM_053032','MYLK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',124787092,124832356,'NR_038266','MYLK-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',170973546,170990198,'NM_018657','MYNN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39826306,40276815,'NM_015460','MYRIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',114917996,114947810,'NM_025146','NAA50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',176059804,177006122,'NM_207015','NAALADL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50308836,50311856,'NM_012191','NAT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46996176,47026197,'NM_015175','NBEAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198146669,198153861,'NM_001042540','NCBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',173831128,173911702,'NM_001146277','NCEH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',138132006,138150658,'NM_001190796','NCK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48686281,48698338,'NM_016453','NCKIPSD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49033621,49035930,'NM_199073','NDUFAF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',121797817,121803948,'NM_001168331','NDUFB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',180805268,180824982,'NM_001199957','NDUFB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',27232100,27385916,'NM_199347','NEK10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',132228383,132551999,'NM_024800','NEK11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52719835,52780005,'NM_003157','NEK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',103051047,103062559,'NM_031419','NFKBIZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',25735438,25799993,'NM_001145293','NGLY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49434769,49441761,'NM_032316','NICN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52464563,52502128,'NM_007184','NISCH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',101536251,101557168,'NM_020202','NIT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',23908575,23933541,'NM_020345','NKIRAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42617150,42665237,'NM_005385','NKTR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',174598937,175483810,'NM_014932','NLGN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',162421792,162452489,'NM_015938','NMD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48310592,48317852,'NM_005793','NME6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',139462968,139531418,'NM_178130','NME9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',140761712,140879575,'NM_001200047','NMNAT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',133882142,133923993,'NM_153240','NPHP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',133759671,133923993,'NR_037804','NPHP3-ACAD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',133923875,134075740,'NR_002811','NPHP3-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50359922,50363490,'NM_006545','NPRL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',23962615,23997113,'NM_001145425','NR1D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120982020,121020022,'NM_033013','NR1I2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',14964239,15065784,'NM_003298','NR2C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47028035,47029961,'NR_024046','NRADDP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',95264544,95328320,'NM_022072','NSUN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52533424,52542833,'NM_001134231','NT5DC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',132583314,132590364,'NR_033268','NUDT16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',132563378,132566656,'NR_002949','NUDT16P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',13332736,13436809,'NM_024923','NUP210'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127863613,127873472,'NR_034158','NUP210P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9766627,9783353,'NM_016827','OGG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',194793626,194898294,'NM_130831','OPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99288706,99289636,'NM_054106','OR5AC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99334231,99335173,'NM_001005338','OR5H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99350919,99351852,'NM_001005514','OR5H14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99370233,99371175,'NM_001005515','OR5H15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99484421,99485366,'NM_001005482','OR5H2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99465818,99466796,'NM_001005479','OR5H6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99671110,99672062,'NM_001004736','OR5K1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99699214,99700165,'NM_001004737','OR5K2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99592199,99593165,'NM_001005516','OR5K3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99555387,99556353,'NM_001005517','OR5K4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',31677320,31998346,'NM_017784','OSBPL10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',126730391,126797071,'NM_022776','OSBPL11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197427779,197444698,'NM_152672','OSTalpha'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',192413015,192450604,'NM_198184','OSTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',162697289,162704424,'NM_001080440','OTOL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',16281670,16322598,'NM_138381','OXNAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',25806566,25811029,'NR_026937','OXSM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38182029,38271983,'NM_005109','OXSR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',8767094,8786300,'NM_000916','OXTR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',154035425,154038533,'NM_002563','P2RY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',152538065,152585234,'NM_022788','P2RY12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',152526785,152530027,'NM_176894','P2RY13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',152412594,152478920,'NM_014879','P2RY14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49002344,49019585,'NM_177938','P4HTM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',158009753,158012504,'NR_003284','PA2G4P4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197951124,198043915,'NM_002577','PAK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',144162763,144164868,'NM_198504','PAQR9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185029866,185085387,'NM_018622','PARL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123882361,123932377,'NM_017554','PARP14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123817214,123838226,'NM_152615','PARP15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51951400,51957923,'NM_005485','PARP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123733309,123765884,'NM_001146106','PARP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52554407,52694906,'NM_018313','PBRM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51966509,51976522,'NM_033008','PCBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',137451856,137531703,'NM_001178014','PCCB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',102775731,102795971,'NM_020357','PCNP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',144019391,144090735,'NM_013363','PCOLCE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197449649,197498981,'NM_005017','PCYT1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',168884388,168935288,'NM_007217','PDCD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',33815069,33843760,'NR_027868','PDCD6IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',57517020,57522808,'NM_177966','PDE12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',58388396,58394619,'NM_001173468','PDHB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',124268545,124363643,'NM_006810','PDIA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',73514341,73756762,'NM_015009','PDZRN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',181000743,181237211,'NM_016559','PEX5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48530120,48569231,'NM_004567','PFKFB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',151165380,151171431,'NM_053024','PFN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',171288061,171382231,'NM_024947','PHC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52419566,52432697,'NM_173341','PHF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113060716,113178054,'NM_001134438','PHLDB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197923641,197947273,'NM_001166304','PIGX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198157610,198180101,'NM_025163','PIGZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',180349004,180435191,'NM_006218','PIK3CA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',139856920,139960875,'NM_006219','PIK3CB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',131880467,131948386,'NM_014602','PIK3R4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',140434523,140435054,'NR_027070','PISRT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120799384,120831348,'NM_015900','PLA1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38023990,38041282,'NM_001130964','PLCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',156680364,156876799,'NM_001130960','PLCH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',16901455,17107102,'NM_001144382','PLCL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',112876212,113047984,'NM_001185106','PLCXD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',172800888,173010978,'NM_002662','PLD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',147269917,147361972,'NM_000935','PLOD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',143858428,143915195,'NM_001172312','PLS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',147715656,147745318,'NM_021105','PLSCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',147633764,147696468,'NM_001199979','PLSCR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',147392813,147451656,'NR_033438','PLSCR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',147786314,147806693,'NM_001085420','PLSCR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',128190126,128238925,'NM_032242','PLXNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48420264,48445876,'NM_002673','PLXNB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130756745,130808272,'NM_015103','PLXND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52084288,52163746,'NM_001161580','POC1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',128830728,128874342,'NM_015720','PODXL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120670474,120696244,'NR_024265','POGLUT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',122632962,122747543,'NM_199420','POLQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185563887,185569057,'NM_006232','POLR2H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120843597,120862094,'NM_022135','POPDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',87391472,87408427,'NM_001122757','POU1F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',19996456,20028769,'NR_027694','PP2D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',12304348,12450855,'NM_138712','PPARG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',161956689,162271511,'NM_139245','PPM1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52255225,52259655,'NM_001122870','PPM1M'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',196722509,196751513,'NM_006241','PPP1R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',137224266,137349442,'NM_181897','PPP2R3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',73128808,73197701,'NM_174907','PPP4R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',64054565,64186171,'NM_198859','PRICKLE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48763096,48860274,'NM_004157','PRKAR2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',53170262,53201773,'NM_212539','PRKCD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',171422913,171506464,'NM_002740','PRKCI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',71903495,71917047,'NM_021935','PROK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',95074570,95175624,'NM_000313','PROS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',140205493,140207800,'NM_001134659','PRR23A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',140220562,140222458,'NM_001013650','PRR23B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',140243633,140246424,'NM_001134657','PRR23C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9962225,9969078,'NM_207351','PRRT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46846897,46850589,'NM_182702','PRSS42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46758584,46761249,'NM_199183','PRSS45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46736076,46752925,'NM_001205271','PRSS46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46728609,46734377,'NM_013270','PRSS50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185499715,185509534,'NM_002808','PSMD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',63971270,63984160,'NM_014814','PSMD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46898742,46920293,'NM_001184744','PTH1R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',124696052,124786614,'NM_198402','PTPLB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47397494,47429935,'NM_015466','PTPN23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',61522282,62255613,'NM_002841','PTPRG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',158637273,158644111,'NM_002852','PTX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',112273295,112339097,'NM_001243286','PVRL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',112246852,112271496,'NR_045114','PVRL3-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',58293656,58385918,'NM_017771','PXK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',192661645,192661939,'NM_001083308','PYDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49108368,49117175,'NM_005051','QARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49042145,49106508,'NM_017730','QRICH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',115258300,115289958,'NM_024638','QTRTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130289101,130323455,'NM_001204885','RAB43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',19963575,20001671,'NM_004162','RAB5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',135025769,135097381,'NM_016577','RAB6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',129927668,130016331,'NM_004637','RAB7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',121888217,121944074,'NM_173825','RABL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',8893879,8980159,'NM_020165','RAD18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51550635,51672652,'NM_015106','RAD54L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',12600099,12680700,'NM_002880','RAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',154362718,154368953,'NM_002886','RAP2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',25444757,25614426,'NM_016152','RARB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',159905133,159932969,'NM_002888','RARRES1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',142688615,142813887,'NM_006506','RASA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50342220,50353371,'NM_007182','RASSF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51403738,51410376,'NM_013286','RBM15B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50101355,50131396,'NM_005778','RBM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49952480,50089689,'NM_005777','RBM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',29297806,30026890,'NM_001003793','RBMS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',140718965,140741361,'NM_002899','RBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',140654415,140678042,'NM_004164','RBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',109957175,109958820,'NM_032579','RETNLB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187990375,188007178,'NM_181573','RFC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',53097540,53139510,'NM_052859','RFT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',16332355,16530226,'NM_015150','RFTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',102763401,102767779,'NM_017819','RG9MTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130730171,130736877,'NM_000539','RHO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49371582,49424530,'NM_001664','RHOA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49701993,49733966,'NM_022064','RNF123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',151013164,151162615,'NM_007282','RNF13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197680053,197715036,'NM_152617','RNF168'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',142939740,142948335,'NM_014245','RNF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',78729077,79899749,'NM_002941','ROBO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',77171983,77781804,'NM_002942','ROBO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',125170568,125192889,'NM_017578','ROPN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127170717,127184986,'NM_001012337','ROPN1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',40473804,40478863,'NM_003973','RPL14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',23933642,23937336,'NM_002948','RPL15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',172065358,172070739,'NM_001099645','RPL22L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',102882623,102888253,'NM_000986','RPL24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52002683,52004998,'NM_000992','RPL29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',12851443,12858081,'NM_000994','RPL32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130584366,130600972,'NR_003111','RPL32P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',199161448,199167118,'NM_000996','RPL35A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',188321434,188339957,'NM_052969','RPL39L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',129821502,129852409,'NM_002950','RPN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',58267013,58280960,'NM_007042','RPP14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39423207,39429036,'NM_002295','RPSA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9854532,9860702,'NM_173659','RPUSD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51942485,51950962,'NM_004704','RRP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',159310585,159745270,'NM_016625','RSRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',188397967,188401947,'NM_153708','RTP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',188898740,188903039,'NM_001004312','RTP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46514488,46517443,'NM_031440','RTP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',188568861,188572063,'NM_022147','RTP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',129282489,129325361,'NM_003707','RUVBL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',72506433,72578464,'NM_012234','RYBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',135358667,135452276,'NM_002958','RYK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',45705757,45761904,'NM_014016','SACM1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',171112175,171139642,'NM_182610','SAMD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',18364136,18441833,'NM_001195470','SATB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47430187,47492449,'NM_012235','SCAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',161715388,161715718,'NR_003001','SCARNA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',160473729,161097849,'NM_001197108','SCHIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38713840,38810505,'NM_006514','SCN10A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38862263,38967056,'NM_014139','SCN11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38564556,38666167,'NM_001099404','SCN5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197171188,197201547,'NR_003264','SDHAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',196870090,196900916,'NR_003265','SDHAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10317614,10337855,'NM_183352','SEC13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',124403463,124475672,'NM_012430','SEC22A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42564462,42598524,'NM_001201584','SEC22C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',129253901,129273216,'NM_013336','SEC61A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',171167273,171198855,'NM_003262','SEC62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',53894265,53901029,'NM_021237','SELK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',151803755,151830924,'NM_016275','SELT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50280043,50289576,'NM_004636','SEMA3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50167851,50201512,'NM_004186','SEMA3F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52442307,52454083,'NM_020163','SEMA3G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',124110732,124229266,'NM_001031702','SEMA5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',186786724,186831579,'NM_021627','SENP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',198079123,198145981,'NM_152699','SENP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',102525807,102714775,'NM_020654','SENP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',151742469,151747118,'NM_014445','SERP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',168936125,169026051,'NM_001122752','SERPINI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',168642416,168674512,'NM_006217','SERPINI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47032901,47180471,'NM_014159','SETD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9414402,9494838,'NM_001080517','SETD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',4319987,4333949,'NM_006515','SETMAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52912622,53055129,'NM_016329','SFMBT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',20177088,20202728,'NM_001199257','SGOL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15271360,15349108,'NM_004844','SH3BP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48484200,48516665,'NM_016479','SHISA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',159296493,159306646,'NM_003030','SHOX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',72881117,72980288,'NM_018130','SHQ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',166179379,166278977,'NM_001041','SI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',151941599,151963953,'NM_005067','SIAH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',114733907,114831112,'NM_017699','SIDT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',171558166,171593644,'NM_001145098','SKIL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',126284169,126412933,'NM_001195483','SLC12A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123095860,123145724,'NM_001145998','SLC15A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38282301,38294810,'NM_004256','SLC22A13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38322448,38334863,'NM_004803','SLC22A14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48869359,48911430,'NM_000387','SLC25A20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',66094324,66512041,'NM_173471','SLC25A26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',142143351,142181475,'NM_018155','SLC25A36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39399818,39413823,'NM_017875','SLC25A38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48638159,48647930,'NM_134263','SLC26A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',172196830,172227462,'NM_000340','SLC2A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',157026994,157054942,'NM_004733','SLC33A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113763584,113785693,'NM_017945','SLC35A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50217695,50233410,'NM_006841','SLC38A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127207889,127285824,'NM_017836','SLC41A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',27389217,27473249,'NM_003615','SLC4A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',11009419,11055935,'NM_003042','SLC6A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10832916,10955146,'NM_014229','SLC6A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',45771944,45813039,'NM_020208','SLC6A20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',14419109,14464697,'NM_001134368','SLC6A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',171660035,171786557,'NM_020949','SLC7A14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113342441,113495764,'NM_183061','SLC9A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',144466753,145050063,'NM_173653','SLC9A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',135134229,135231610,'NM_005630','SLCO2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',166387201,166397163,'NM_014926','SLITRK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',57718213,57889934,'NM_007159','SLMAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',47602381,47798409,'NM_003074','SMARCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',161600123,161635435,'NM_001002800','SMC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',192078412,192078533,'NR_024343','SNAR-I'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187988095,187988232,'NR_002588','SNORA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',132680531,132680767,'NR_002985','SNORA58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39424885,39425034,'NR_002325','SNORA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39427548,39427702,'NR_002324','SNORA62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187987781,187987916,'NR_002586','SNORA63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',12856810,12856949,'NR_002582','SNORA7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130598742,130598881,'NR_002992','SNORA7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187987157,187987335,'NR_002989','SNORA81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52698295,52698371,'NR_003047','SNORD19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52699793,52699886,'NR_003687','SNORD19B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187985278,187985348,'NR_002587','SNORD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185526177,185526253,'NR_003055','SNORD66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52701791,52701868,'NR_003057','SNORD69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',43303007,43367638,'NM_017719','SNRK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',63613383,63625931,'NM_001080537','SNTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',126648183,126721748,'NM_003794','SNX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',138965823,138967862,'NM_004189','SOX14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',182912405,182914917,'NM_003106','SOX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',182810844,182941699,'NR_004053','SOX2-OT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',57069508,57084500,'NM_181727','SPATA12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',174089840,174341752,'NM_031955','SPATA16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52714896,52717237,'NM_014041','SPCS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',114644254,114716724,'NM_144718','SPICE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48323339,48344835,'NM_001080525','SPINK8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',142253432,142350143,'NM_080862','SPSB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',162545273,162572565,'NM_001040100','SPTSSB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',8997277,9266311,'NM_014850','SRGAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',134985566,135023026,'NM_021203','SRPRB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42607301,42611494,'NM_016305','SS18L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',157740622,157755667,'NM_007107','SSR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',188869387,188870895,'NM_001048','SST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',99934261,99995926,'NM_006100','ST3GAL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',188131008,188279035,'NM_173217','ST6GAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52504395,52533551,'NM_015136','STAB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',36397100,36564500,'NM_003149','STAC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',137538688,137953935,'NM_005862','STAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',31549494,31652560,'NM_178862','STT3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',95215904,95230144,'NM_001001850','STX19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',122109739,122626298,'NM_014980','STXBP5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',67493573,67787728,'NM_001177599','SUCLG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',153074120,153082566,'NM_033050','SUCNR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',4377828,4483966,'NM_182760','SUMF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',33166540,33235711,'NM_015551','SUSD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',12020861,12208532,'NM_133625','SYN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',63238953,63577637,'NM_001130003','SYNPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9799811,9809420,'NM_133480','TADA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113200275,113215425,'NM_013259','TAGLN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',11806918,11863352,'NM_138807','TAMM41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10265176,10297906,'NM_014760','TATDN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',101462375,101526784,'NM_018309','TBC1D23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',17173657,17757403,'NM_014744','TBC1D5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187746549,187767835,'NM_018138','TBCCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',178221235,178397742,'NM_024665','TBL1XR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49424642,49428913,'NM_022171','TCTA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197502486,197529562,'NM_152773','TCTEX1D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46591048,46598956,'NM_001174136','TDGF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',170965091,170965542,'NR_001566','TERC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51680261,51713379,'NM_001129884','TEX264'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',134947666,134980540,'NM_001063','TF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',143145959,143230197,'NM_006286','TFDP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',101911075,101950501,'NM_001195478','TFG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197260551,197293358,'NM_003234','TFRC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',30622997,30710637,'NM_003242','TGFBR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44891101,44931092,'NM_003241','TGM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',63794585,63824637,'NM_025075','THOC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185572466,185578626,'NM_001177597','THPO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',24133648,24511317,'NM_001128177','THRB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9379716,9403475,'NM_015453','THUMPD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',115495522,115511825,'NM_173799','TIGIT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120700057,120725815,'NM_016589','TIMMDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',12169567,12175851,'NM_003256','TIMP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',157874898,157907251,'NM_015508','TIPARP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',157873653,157876196,'NR_027954','TIPARP-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',53234692,53265170,'NM_001064','TKT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52230135,52235219,'NM_017442','TLR9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150569494,150578258,'NM_014220','TM4SF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150518974,150533949,'NM_001184723','TM4SF18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197534813,197549688,'NM_001204898','TM4SF19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197527352,197549688,'NR_037950','TM4SF19-TCTEX1D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150675057,150703871,'NM_004617','TM4SF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',130849324,131095109,'NM_001128224','TMCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',134239860,134599309,'NM_023943','TMEM108'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52845811,52906637,'NM_198563','TMEM110'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52842170,52906637,'NM_001198974','TMEM110-MUSTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9980635,10003522,'NM_018447','TMEM111'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50367183,50371943,'NM_007024','TMEM115'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',153540176,153541469,'NM_001123228','TMEM14E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',45240959,45242818,'NM_015444','TMEM158'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',191629139,191650359,'NM_207316','TMEM207'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',173043832,173059802,'NM_001164436','TMEM212'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',138020550,138057424,'NM_001097600','TMEM22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',101387357,101391728,'NR_028358','TMEM30C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120632390,120665161,'NM_018266','TMEM39A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',12750391,12775808,'NM_018306','TMEM40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',186690082,186699539,'NM_080652','TMEM41A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44878411,44882158,'NM_144638','TMEM42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',14141440,14160181,'NM_024334','TMEM43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',195789690,195835439,'NM_001166305','TMEM44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',101694152,101778975,'NM_018004','TMEM45A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48633278,48634193,'NM_001008269','TMEM89'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',69151667,69184174,'NM_007114','TMF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46717826,46727417,'NM_147196','TMIE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',33106911,33113297,'NM_001136238','TMPPE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',113241154,113282806,'NR_026734','TMPRSS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',173705991,173723991,'NR_033994','TNFSF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',172262985,172660891,'NM_001161563','TNIK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197074632,197106829,'NM_001010938','TNK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52460146,52463097,'NM_003280','TNNC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',101564996,101602915,'NM_014820','TOMM70A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',25614478,25680792,'NM_001068','TOP2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',134802138,134863427,'NM_007027','TOPBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',190831909,191081978,'NM_001114979','TP63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',128774604,128792186,'NM_001136053','TPRA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',190372456,190523965,'NM_198485','TPRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',13953807,14082482,'NR_002223','TPRXL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',187115051,187138618,'NM_004593','TRA2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49841031,49868996,'NM_005879','TRAIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42176664,42229113,'NM_014965','TRAK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',36843311,36961552,'NM_014831','TRANK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',110024320,110056404,'NM_016388','TRAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48482232,48484048,'NM_033629','TREX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',131175803,131179469,'NM_007117','TRH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',141879555,141902682,'NM_152616','TRIM42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',161635984,161650320,'NM_173084','TRIM59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',32834513,32908775,'NM_001039111','TRIM71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',3143599,3165706,'NM_182916','TRNT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',143925955,144009419,'NM_003304','TRPC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',151609477,151660305,'NM_014779','TSC22D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',12501009,12547512,'NM_001145395','TSEN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',181802611,181811612,'NM_133462','TTC14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39124155,39155398,'NM_145755','TTC21A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',9826643,9853040,'NM_001025930','TTLL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50337344,50340672,'NM_007275','TUSC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52237665,52248223,'NM_007284','TWF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127808584,127856657,'NM_001173513','TXNRD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127773311,127810088,'NM_001039783','TXNRD3NB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',144203061,144262257,'NM_001080415','U2SURP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',69186570,69212214,'NM_003968','UBA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',133855979,133879634,'NM_198329','UBA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49817641,49826395,'NM_003335','UBA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',23822387,23908135,'NM_003341','UBE2E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',23219787,23607300,'NM_152653','UBE2E2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',33404831,33456874,'NM_014517','UBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197564765,197643742,'NM_015562','UBXN7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48574154,48576205,'NM_033199','UCN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',41263093,41978664,'NM_017886','ULK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',125931902,125950809,'NR_033437','UMPS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',120375114,120406690,'NM_006952','UPK1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48611435,48622102,'NM_003365','UQCRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127682697,127719306,'NM_001165974','UROC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',180853626,180989883,'NM_003940','USP13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49120482,49133375,'NM_001199161','USP19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49289580,49352540,'NM_199443','USP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',192467637,192531019,'NM_198152','UTS2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',21422221,21423181,'NR_002311','VENTXP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',158660103,158704109,'NM_001167916','VEPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',87069812,87122947,'NM_016206','VGLL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',11572543,11598836,'NM_001128220','VGLL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',10158318,10170354,'NM_000551','VHL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38010081,38023680,'NM_015873','VILL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42519107,42554069,'NM_004624','VIPR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',51408337,51509058,'NM_001171904','VPRBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',186012624,186253096,'NM_015303','VPS8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',185431010,185442811,'NM_138345','VWA5B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39068510,39112885,'NM_020839','WDR48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',168679166,168853983,'NM_178824','WDR49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',114488466,114643051,'NM_001164496','WDR52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197765455,197779810,'NM_182627','WDR53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',123613389,123617572,'NM_019069','WDR5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',49019640,49028390,'NM_018031','WDR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',52263477,52287699,'NM_025222','WDR82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',55474782,55496371,'NM_003392','WNT5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',13835082,13896619,'NM_004625','WNT7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150717711,150858578,'NM_015472','WWTR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',150858686,150861839,'NR_040250','WWTR1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',46037294,46043983,'NM_005283','XCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',39199709,39209089,'NM_001198621','XIRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',14161648,14195176,'NM_001145769','XPC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',143508138,143649543,'NM_019001','XRN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',38363254,38431471,'NM_005108','XYLB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',184898299,185013107,'NM_018023','YEATS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',168440770,168580779,'NM_001199201','ZBBX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',112794436,112796872,'NM_024508','ZBED2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',102850972,102878678,'NM_014415','ZBTB11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',115539636,116348817,'NM_015642','ZBTB20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',115553347,115590515,'NR_038993','ZBTB20-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',142525744,142651322,'NM_001080412','ZBTB38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42670179,42684076,'NM_145166','ZBTB47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',28406990,28541636,'NM_001040432','ZCWPW2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',197408719,197422697,'NM_001039617','ZDHHC19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',115149437,115164517,'NM_173570','ZDHHC23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44931756,44992678,'NM_016598','ZDHHC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',15086583,15115659,'NM_022340','ZFYVE20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',148609870,148617196,'NM_003412','ZIC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',148586524,148607286,'NM_032153','ZIC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',180217706,180272350,'NM_022470','ZMAT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',50353540,50358160,'NM_015896','ZMYND10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',126427202,126576888,'NM_021964','ZNF148'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44571716,44588654,'NM_018651','ZNF167'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44641514,44661756,'NM_006991','ZNF197'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44665236,44677287,'NM_003420','ZNF35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',21437493,21767820,'NM_024697','ZNF385D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44456265,44494166,'NM_181489','ZNF445'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44746127,44753579,'NM_145044','ZNF501'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44729138,44740327,'NM_001134442','ZNF502'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',48257599,48287483,'NM_016089','ZNF589'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',40493636,40505073,'NM_001145083','ZNF619'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',40522533,40534203,'NR_024114','ZNF620'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',40541379,40556047,'NM_001098414','ZNF621'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',180524244,180536014,'NM_016331','ZNF639'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',88270951,88276504,'NM_018293','ZNF654'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',44601459,44612561,'NM_173658','ZNF660'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',42922405,42935829,'NM_207404','ZNF662'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',75868718,75916945,'NM_001128223','ZNF717'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',115436169,115439115,'NM_007136','ZNF80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',31998269,32008232,'NM_001137674','ZNF860'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',103636548,103681375,'NM_175056','ZPLD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3',127639133,127677452,'NM_025112','ZXDC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3_',664914,670974,'NM_001100168','CCR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr3_',701979,704273,'NM_003965','CCRL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',110570567,110574422,'NR_039978','1/2-SBSRNA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',171217947,171247758,'NM_016228','AADAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',56899213,56948395,'NM_181806','AASDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',409223,457998,'NR_002451','ABCA11P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',146238605,146270126,'NM_002940','ABCE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',89230439,89299035,'NM_004827','ABCG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8059647,8211459,'NM_001130088','ABLIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',156970330,157006875,'NM_017419','ACCN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8418908,8493352,'NM_001101667','ACOX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',185913742,185984209,'NM_001995','ACSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',123520044,123570397,'NM_001159285','ADAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',176076083,176135906,'NM_014269','ADAM29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',73365549,73653380,'NM_014243','ADAMTS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2815381,2901600,'NM_176801','ADD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100416545,100431208,'NM_000667','ADH1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100446549,100461595,'NM_000668','ADH1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100476671,100492940,'NM_000669','ADH1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100263855,100284472,'NM_000670','ADH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100211152,100228954,'NM_000671','ADH5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100342817,100359426,'NM_001102470','ADH6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100552440,100575690,'NM_000673','ADH7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',3738093,3740051,'NM_000683','ADRA2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',7811339,7992553,'NM_001134647','AFAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',7806716,7831554,'NR_026892','AFAP1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',88147176,88281215,'NM_005935','AFF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',74566325,74588582,'NM_001133','AFM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',74520796,74540356,'NM_001134','AFP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',178588922,178600651,'NM_001171988','AGA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',84676676,84746050,'NM_032717','AGPAT9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',109882650,109903684,'NM_001146590','AGXT2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',107457112,107489830,'NM_001142416','AIMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',74488835,74505993,'NM_000477','ALB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113437947,113583213,'NM_001102406','ALPK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71492563,71507593,'NM_016519','AMBN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71418886,71433048,'NM_212557','AMTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',146135759,146238818,'NM_014885','ANAPC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',24987945,25029218,'NM_013367','ANAPC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113958687,114524345,'NM_001127493','ANK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',74159365,74343366,'NM_032217','ANKRD17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186554833,186558384,'NM_181726','ANKRD37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',125804656,125853337,'NM_001167882','ANKRD50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',78035105,78038026,'NM_001029870','ANKRD56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',165337608,165338313,'NM_012403','ANP32C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',81041794,81213501,'NM_058172','ANTXR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',169250262,169345468,'NM_007193','ANXA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',154448070,154449413,'NR_001562','ANXA2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',79691765,79750629,'NM_005139','ANXA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',122808601,122837597,'NM_001154','ANXA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113372343,113410660,'NM_001128426','AP1AR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',40506800,40553966,'NM_001166054','APBB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',35744014,35922374,'NM_015230','ARAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',75529716,75539590,'NM_001657','AREG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',153920561,154052513,'NM_014447','ARFIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',148872902,149213377,'NM_024605','ARHGAP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',86918874,87142847,'NM_001042669','ARHGAP24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',106693225,106772286,'NM_017700','ARHGEF38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',57066131,57084815,'NM_206919','ARL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',115040888,115120327,'NM_024590','ARSJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77214886,77252979,'NM_001179','ART3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',177371819,177427367,'NM_080874','ASB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',94969100,94970165,'NM_005172','ATOH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',47182166,47290260,'NM_020453','ATP10D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',656224,658127,'NR_033743','ATP5I'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',42105148,42353879,'NM_006095','ATP8A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',102930786,103214992,'NM_001127507','BANK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',123873306,123885548,'NM_001178007','BBS12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',122964933,123011102,'NM_176824','BBS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',104218230,104240473,'NM_020139','BDH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',41807626,41849652,'NM_001159547','BEND4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',79916555,80019618,'NM_017593','BMP2K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',82171142,82197709,'NM_001201','BMP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',95898150,96298624,'NM_001203','BMPR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',13179463,13238426,'NM_148894','BOD1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',15313670,15342894,'NM_004334','BST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',75890471,75938906,'NM_001729','BTC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',15038726,15056889,'NM_031911','C1QTNF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2907075,2922592,'NR_015453','C4orf10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',83753289,83761614,'NR_024087','C4orf11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',57524272,57538583,'NM_032313','C4orf14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100651183,100682483,'NM_032149','C4orf17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',37262249,37271527,'NM_018302','C4orf19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113679937,113777600,'NM_018392','C4orf21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',81475897,82103934,'NM_152770','C4orf22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',76700281,76710127,'NM_001206981','C4orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',170887193,170915668,'NM_017867','C4orf27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',129105910,129171905,'NM_001039717','C4orf29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',120437021,120445048,'NM_001170330','C4orf3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113286001,113329686,'NM_152400','C4orf32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',130234278,130253293,'NM_173487','C4orf33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',39228940,39316876,'NM_174921','C4orf34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',88016381,88032599,'NM_144645','C4orf36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',98699047,99283414,'NM_174952','C4orf37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',184255167,184257346,'NR_024008','C4orf38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',166097549,166099723,'NM_153027','C4orf39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71054492,71066915,'NM_214711','C4orf40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',184817439,184871739,'NM_021942','C4orf41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1233227,1236795,'NR_033339','C4orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',164635122,164661141,'NM_018352','C4orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',3220564,3228140,'NM_001042690','C4orf44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',160034133,160175783,'NM_152543','C4orf45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',159807280,159812652,'NM_001008393','C4orf46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186587538,186607815,'NM_001114357','C4orf47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2013574,2015495,'NM_001141936','C4orf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',140406766,140420942,'NM_032623','C4orf49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',146820805,146873398,'NM_001080531','C4orf51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',25524911,25540599,'NM_001145432','C4orf52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',5577783,5580428,'NM_005750','C4orf6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71126403,71135557,'NM_152997','C4orf7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71235259,71237422,'NM_033122','CABS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',114591636,114902532,'NM_172128','CAMK2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',185785843,185807623,'NM_004346','CASP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',110829233,110844078,'NM_001226','CASP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',170145316,170168043,'NM_032783','CBR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',15080586,15212278,'NM_001080522','CC2D2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',110700803,110828321,'NM_017918','CCDC109B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186603329,186629907,'NM_152775','CCDC110'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',185807760,185853106,'NM_152683','CCDC111'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',24416836,24590924,'NM_173463','CCDC149'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77453215,77547482,'NM_001042784','CCDC158'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',7093477,7095629,'NM_153376','CCDC96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',26092115,26101140,'NM_000730','CCKAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',122957048,122964538,'NM_001237','CCNA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',78297380,78310237,'NM_004354','CCNG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',78188198,78216149,'NM_006835','CCNI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',140156392,140186543,'NM_012118','CCRN4L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',15389028,15459804,'NM_001775','CD38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',76720727,76774745,'NM_003948','CDKL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',184602782,184606043,'NM_017632','CDKN2AIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',85723080,85791517,'NM_001263','CDS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68020583,68093851,'NM_001812','CENPC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',104246411,104339015,'NM_001813','CENPE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',56509793,56594284,'NM_025009','CEP135'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',119656942,119694807,'NR_003135','CEP170P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',175441629,175491106,'NM_001145314','CEP44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',123870793,123873063,'NR_024041','CETN4P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',110881296,110942784,'NM_000204','CFI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',54570714,54625572,'NM_012110','CHIC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',40032225,40051730,'NM_017581','CHRNA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',104009575,104033412,'NM_001008388','CISD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',170778246,170880913,'NM_001829','CLCN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',184476213,184478921,'NM_001111319','CLDN22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',184479910,184480573,'NM_001185149','CLDN24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',141529056,141568265,'NM_004362','CLGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',10100935,10295484,'NM_052964','CLNK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',55993416,56107754,'NM_004898','CLOCK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',17125885,17137825,'NM_001079827','CLRN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',47632750,47709718,'NM_000087','CNGA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',6768742,6770288,'NM_018366','CNO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',78853564,78959568,'NM_144571','CNOT6L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',109954420,110443248,'NM_198721','COL25A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',47147567,47160433,'NM_017845','COMMD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',84175262,84215995,'NM_016129','COPS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',84404000,84425091,'NM_015697','COQ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',47290774,47534816,'NM_006587','CORIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',74139279,74154336,'NM_173827','COX18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',46431603,46606009,'NM_130902','COX7B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',166519546,166638932,'NM_001873','CPE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',14613395,14680875,'NM_001177381','CPEB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',768744,809945,'NM_006651','CPLX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8645286,8672388,'NM_003652','CPZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1375339,1379782,'NM_175918','CRIPAK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',5873391,5941216,'NM_001313','CRMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70831387,70846877,'NM_001890','CSN1S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70967691,70985577,'NR_003720','CSN1S2AP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71033909,71047010,'NR_033311','CSN1S2BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70855562,70861315,'NM_001891','CSN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71142921,71151734,'NM_005212','CSN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1195227,1232908,'NM_001328','CTBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',157064719,157094498,'NM_001334','CTSO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',48683021,48758852,'NM_025087','CWH43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',74953972,74955819,'NM_001511','CXCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77161292,77163713,'NM_001565','CXCL10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77173863,77176374,'NM_005409','CXCL11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',78651930,78752014,'NM_006419','CXCL13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',75181617,75183861,'NM_002089','CXCL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',75121175,75123354,'NM_002090','CXCL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',75080222,75083280,'NM_002994','CXCL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',74921136,74923341,'NM_002993','CXCL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77141646,77147665,'NM_002416','CXCL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',105612791,105631916,'NM_025212','CXXC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',109072165,109094062,'NM_183075','CYP2U1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',187349667,187371611,'NM_207352','CYP4V2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',5067214,5072098,'NM_018659','CYTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',4438883,4471685,'NM_014392','D4S234E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100957003,101010369,'NM_014395','DAPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',17411375,17421479,'NM_017741','DCAF16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',41678469,41683241,'NM_001029955','DCAF4L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',155627044,155632380,'NM_001142553','DCHS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',72078128,72115493,'NM_000788','DCK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',151218875,151398058,'NM_001040261','DCLK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',184048237,184075624,'NM_001921','DCTD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',52404032,52477760,'NM_015115','DCUN1D4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',101326049,101330678,'NM_145244','DDIT4L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',169374016,169476533,'NM_017631','DDX60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',169514460,169638213,'NM_001012967','DDX60L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',9055357,9061338,'NM_001040448','DEFB131'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',942674,957344,'NM_001347','DGKQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',24138185,24195282,'NM_001358','DHX15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',153676865,153679865,'NR_033797','DKFZP434I0714'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',108062407,108176902,'NM_014421','DKK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',88790477,88804536,'NM_004407','DMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',101039732,101086902,'NM_001031723','DNAJB14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',3434830,3466007,'NM_173660','DOK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',9392355,9394731,'NM_000798','DRD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',88748704,88757049,'NM_014208','DSPP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',35959638,36023773,'NM_001136536','DTHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',191239324,191240864,'NM_012147','DUX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',191245840,191247457,'NM_033178','DUX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',191242546,191244157,'NM_001127386','DUX4L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',191226073,191227684,'NM_001177376','DUX4L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',148621518,148685556,'NM_001166055','EDNRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',111053488,111153567,'NM_001178130','EGF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100018629,100070809,'NM_001968','EIF4E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',140198320,140225097,'NM_006874','ELF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',141664761,141694374,'NM_153702','ELMOD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',111189677,111339220,'NM_001130721','ELOVL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',101535520,101658273,'NM_016242','EMCN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71713324,71731400,'NM_031889','ENAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',83570749,83601268,'NM_021204','ENOPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',111616677,111703942,'NM_001977','ENPEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',185246852,185376108,'NM_153343','ENPP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',75393067,75398171,'NM_001013442','EPGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',65867875,66218248,'NM_182472','EPHA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',75449723,75473341,'NM_001432','EREG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',53304440,53312564,'NM_001242690','ERVMER34-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',159812726,159849291,'NM_004453','ETFDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',5763824,5866932,'NM_153717','EVC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',5615046,5762176,'NM_001166136','EVC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',56414572,56466001,'NM_178237','EXOC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',122941921,122957626,'NM_005033','EXOSC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',187424111,187447829,'NM_000128','F11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',120457852,120462764,'NM_000134','FABP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',38545748,38623760,'NM_138389','FAM114A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',89866128,90197346,'NM_014883','FAM13A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',89849962,89870277,'NR_002806','FAM13A-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',187302988,187330811,'NM_015398','FAM149A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',152549847,152804234,'NM_001109977','FAM160A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',84601119,84625314,'NM_139076','FAM175A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',17242806,17392233,'NM_015688','FAM184B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',91267706,92742393,'NM_001145065','FAM190A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2596956,2704100,'NM_003704','FAM193A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',159265181,159313652,'NM_001128424','FAM198B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',15292449,15301168,'NM_001145191','FAM200B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77391876,77423960,'NM_001136570','FAM47E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77391876,77451307,'NM_001242939','FAM47E-STBD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1611604,1655786,'NM_001174070','FAM53A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',3994598,4008070,'NR_024253','FAM86EP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',184195811,184198266,'NR_003612','FAM92A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',187745930,187881981,'NM_005245','FAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',126457016,126633537,'NM_024582','FAT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',15215104,15266133,'NR_036464','FBXL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',175394384,175441977,'NM_012180','FBXO8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',153461859,153493560,'NM_018315','FBXW7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',155723729,155731347,'NM_000508','FGA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',155703581,155713365,'NM_005141','FGB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',123967312,124038840,'NM_002006','FGF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',81406765,81431195,'NM_004464','FGF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',15546289,15549069,'NM_005130','FGFBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',15570960,15573957,'NM_031950','FGFBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1764836,1780397,'NM_000142','FGFR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',996251,1010686,'NM_021923','FGFRL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',155744735,155753352,'NM_000509','FGG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',154083584,154120298,'NM_033393','FHDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',53938576,54020860,'NM_001134937','FIP1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',38290716,38342644,'NR_026804','FLJ13197'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',120546125,120551263,'NR_037596','FLJ14186'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',102487956,102489063,'NR_033874','FLJ20021'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',3548393,3562510,'NR_040045','FLJ35424'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',7150051,7156004,'NR_027441','FLJ36777'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',15837383,15868908,'NR_027696','FLJ39653'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',159909631,160047404,'NM_020840','FNIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',79197747,79684447,'NM_025074','FRAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',144718010,144841278,'NM_001168235','FREM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',191098967,191121353,'NM_004477','FRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',191182516,191185406,'NM_001005217','FRG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',48194136,48477073,'NM_015030','FRYL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',162524498,163304636,'NM_001128428','FSTL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68730604,68760783,'NR_015446','FTLP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',76786976,76817367,'NM_012297','G3BP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',144477432,144615168,'NM_207123','GAB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',45946338,46086153,'NM_001114175','GABRA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',46615673,46691181,'NM_000809','GABRA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',46728051,47123204,'NM_000812','GABRB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',45732543,45820839,'NM_173536','GABRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',833064,916174,'NM_005255','GAK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',174326478,174481693,'NM_017423','GALNT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',172971149,174198133,'NM_001034845','GALNTL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',110956114,110965342,'NM_032993','GAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',22303645,22430290,'NM_001128432','GBA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',72826274,72868943,'NM_000583','GC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',80967648,81003425,'NR_026555','GDEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',80546530,80548396,'NM_033214','GK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',166418393,166420625,'NR_026575','GK3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',175799772,175987040,'NM_001042543','GLRA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',158216726,158312692,'NM_000824','GLRB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',44398924,44423369,'NM_138335','GNPDA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68285693,68304399,'NM_000406','GNRHR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',176791081,177160642,'NM_201592','GPM6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',21998096,22126770,'NM_145290','GPR125'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8633190,8640420,'NM_080819','GPR78'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',90384451,90448184,'NM_198281','GPRIN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',158361185,158506676,'NM_000826','GRIA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',93444572,94912672,'NM_001510','GRID2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2935140,3012272,'NM_001004057','GRK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',7112680,7120701,'NM_025196','GRPEL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71900362,71924084,'NM_001098477','GRSF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',42590039,42727432,'NM_001080476','GRXCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',106849389,106988331,'NM_024751','GSTCD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',54661004,54662879,'NM_133267','GSX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',156807311,156862835,'NM_001130687','GUCY1A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',156899575,156948233,'NM_000857','GUCY1B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',44375189,44397454,'NM_021927','GUF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',144700074,144702063,'NR_003675','GUSBP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',145249905,145281354,'NM_002099','GYPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',145136706,145159946,'NM_002100','GYPB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',145011468,145046166,'NM_198682','GYPE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',101088266,101090535,'NM_002106','H2AFZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',109130318,109175780,'NM_001184705','HADH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',174684226,174687953,'NM_021973','HAND2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2199893,2213658,'NM_024511','HAUS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',84547522,84596049,'NM_133636','HELQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186177076,186178920,'NM_001029887','HELT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',89732669,89848709,'NM_014606','HERC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',89597290,89646337,'NM_016323','HERC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',89518914,89583272,'NM_017912','HERC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',3413523,3421011,'NM_001528','HGFAC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',145786597,145879331,'NM_022475','HHIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',174489101,174492170,'NM_002129','HMGB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',83493490,83514173,'NM_031370','HNRNPD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',83562740,83570402,'NM_031372','HNRPDL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',57208910,57242629,'NM_001145460','HOPX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',175647902,175680619,'NR_027332','HPGD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',95438729,95483050,'NM_014485','HPGDS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',84432637,84475330,'NM_006665','HPSE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',11009085,11039635,'NM_005114','HS3ST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',88476714,88531479,'NM_016245','HSD17B11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',88443964,88463080,'NM_001136230','HSD17B13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',190631292,190633338,'NR_036692','HSP90AA4P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',171739195,171762710,'NR_036751','HSP90AA6P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',12944134,12949023,'NR_003132','HSP90AB2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',89032018,89034191,'NR_036694','HSP90AB3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',128922902,128973976,'NM_014278','HSPA4L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70950747,70959148,'NM_002159','HTN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70928718,70936844,'NM_000200','HTN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8322388,8359738,'NM_053044','HTRA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',3046205,3215485,'NM_002111','HTT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',88939725,88952625,'NM_004967','IBSP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',970784,988317,'NM_000203','IDUA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',57592000,57671296,'NM_001553','IGFBP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71740121,71751212,'NM_144646','IGJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',142777198,142874590,'NM_172175','IL15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',123592075,123597100,'NM_000586','IL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',123753232,123761661,'NM_021803','IL21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',74825086,74828297,'NM_000584','IL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',184663213,184669243,'NM_001564','ING2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',143168631,143987054,'NM_001101669','INPP4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',106823233,106849330,'NM_020395','INTS12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',128773536,128857384,'NM_015693','INTU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',185545869,185632720,'NM_002199','IRF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',6078826,6253219,'NM_001099433','JAKMIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',20339336,20493431,'NM_025221','KCNIP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',21454061,21463909,'NR_002813','KCNIP4-IT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',43870676,44145581,'NM_198353','KCTD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',55639182,55686519,'NM_002253','KDR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',6835359,6936800,'NM_014743','KIAA0232'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',154606947,154777312,'NM_001131007','KIAA0922'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',123311207,123503364,'NM_015312','KIAA1109'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',56731117,56891647,'NM_020722','KIAA1211'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',36923084,37127482,'NM_001144990','KIAA1239'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186317812,186362176,'NM_020827','KIAA1430'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1331103,1371837,'NM_020894','KIAA1530'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',55218851,55301638,'NM_000222','KIT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',39084867,39129548,'NM_175737','KLB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',38342184,38379524,'NM_016531','KLF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',166348219,166463758,'NM_007246','KLHL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',38740246,38804248,'NM_015990','KLHL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',88301237,88360698,'NM_020803','KLHL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',187385665,187416619,'NM_000892','KLKB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',101018517,101034726,'NR_024170','LAMTOR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',17188024,17218688,'NM_015907','LAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',129201952,129351739,'NM_018078','LARP1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113777568,113798191,'NM_016648','LARP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',17491315,17632581,'NM_001166139','LCORL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',16112261,16509522,'NM_001290','LDB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',109188149,109309561,'NM_016269','LEF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1783003,1827772,'NM_012318','LETM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',24609568,24641512,'NM_018176','LGI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',39137059,39155666,'NM_006859','LIAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',41057560,41396818,'NM_014988','LIMCH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',84064780,84153064,'NM_001115007','LIN54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',182222236,182317296,'NR_033918','LINC00290'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',54021193,54119193,'NM_032622','LNX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',141424329,141513996,'NR_033939','LOC100129858'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',763936,765636,'NR_036511','LOC100129917'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',7083181,7098859,'NR_033828','LOC100129931'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1179570,1192750,'NR_024569','LOC100130872'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',3645117,3649380,'NR_034136','LOC100133461'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',66218273,66241699,'NR_034138','LOC100144602'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',191182516,191185406,'NM_001199232','LOC100288255'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',84033628,84041093,'NR_034077','LOC100499177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',147250056,147262515,'NR_038331','LOC100505545'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',79786171,79824679,'NR_038303','LOC100505702'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',80111925,80448977,'NR_038342','LOC100505875'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',21938087,21950387,'NR_037877','LOC100505912'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',165894732,165944397,'NR_038834','LOC100505989'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',166017605,166038126,'NR_038825','LOC100506013'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',80632770,80716638,'NR_038826','LOC100506035'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',171075486,171133628,'NR_037878','LOC100506085'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',172198327,172216886,'NR_038838','LOC100506122'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186051147,186057609,'NR_039976','LOC100506229'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',55927524,55946504,'NR_037969','LOC100506462'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',88065069,88075026,'NR_038841','LOC100506746'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100229030,100441536,'NR_037884','LOC100507053'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',107498788,107508041,'NM_001195138','LOC100507096'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',4594758,4763565,'NR_037888','LOC100507266'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',53350917,53376388,'NR_040106','LOC152578'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',13722689,13750774,'NR_033931','LOC152742'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',57670684,57766222,'NR_034081','LOC255130'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',101090658,101092643,'NR_002799','LOC256880'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',124793389,125070968,'NR_027105','LOC285419'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',187444245,187659206,'NR_033900','LOC285441'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',109678794,109761062,'NR_026968','LOC285456'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',6253360,6286564,'NR_037863','LOC285484'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',178886904,179148898,'NR_028342','LOC285501'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',24771391,24809225,'NR_037934','LOC285540'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',13137040,13142139,'NR_034054','LOC285547'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',13156797,13158546,'NR_015450','LOC285548'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',188462230,188663761,'NR_038931','LOC339975'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',158713091,158716753,'NR_026992','LOC340017'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',39720931,39735214,'NR_027277','LOC344967'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',184652883,184662662,'NR_033995','LOC389247'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',39158269,39159918,'NR_026854','LOC401127'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',65462593,65552813,'NR_033976','LOC401134'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',189613725,189760056,'NR_033869','LOC401164'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2390498,2434488,'NM_001193282','LOC402160'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',14520682,14612767,'NR_038857','LOC441009'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',76498309,76506800,'NR_033964','LOC441025'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68249590,68270817,'NR_015439','LOC550112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',139229617,139318781,'NR_038380','LOC641364'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',139168026,139271289,'NR_037866','LOC641365'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',109308129,109317035,'NR_029374','LOC641518'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',56380993,56398187,'NR_003935','LOC644145'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',120595385,120640195,'NR_037630','LOC645513'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',145783517,145786621,'NR_037595','LOC646576'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',9094611,9095260,'NM_001040071','LOC650293'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',185499177,185512124,'NR_040108','LOC728175'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8935988,8937581,'NM_001242327','LOC728369'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8935988,8937581,'NM_001242326','LOC728373'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8935988,8937581,'NM_001242328','LOC728379'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8935988,8937581,'NM_001242330','LOC728393'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8954971,8956564,'NM_001242331','LOC728400'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8935988,8937581,'NM_001242332','LOC728405'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186001443,186005194,'NR_037867','LOC731424'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',6726721,6728675,'NR_015433','LOC93622'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',62045433,62620763,'NM_015236','LPHN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',155884612,155893720,'NM_004744','LRAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',151405260,152155869,'NM_001199282','LRBA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',110991934,111012920,'NM_198506','LRIT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186522025,186537146,'NM_018409','LRP2BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',3475121,3504022,'NM_002337','LRPAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',52554622,52578543,'NM_001024611','LRRC66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',147316284,147330663,'NM_007080','LSM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',4320329,4342797,'NM_017816','LYAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',151722526,151725295,'NM_006439','MAB21L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',121200024,121207461,'NM_002358','MAD2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1273671,1323925,'NM_005882','MAEA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',140856995,141294683,'NM_018717','MAML3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',6627802,6675089,'NM_015274','MAN2B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',103771690,103901196,'NM_005908','MANBA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',156483261,156517572,'NM_001039580','MAP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',87155299,87247830,'NM_138981','MAPK10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',164664899,165523857,'NM_001166373','MARCH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',17225370,17235258,'NM_025205','MED28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',88973144,88986992,'NM_020203','MEPE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100135810,100202983,'NM_015143','METAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',119826021,119851525,'NM_020961','METTL14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8493431,8529182,'NM_152544','METTL19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',171144322,171184004,'NM_021647','MFAP3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2902085,2905762,'NM_001120','MFSD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',665617,672973,'NM_032219','MFSD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',129058409,129106589,'NM_152778','MFSD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',183297152,183302662,'NR_027107','MGC45800'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',140806371,140844856,'NM_002413','MGST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',114247467,114247560,'NR_031641','MIR1243'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',177196341,177331125,'NR_031671','MIR1267'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',183327439,183327525,'NR_031640','MIR1305'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',117440329,117440373,'NR_031737','MIR1973'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',20138995,20139105,'NR_029631','MIR218-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113788787,113788856,'NR_029835','MIR302A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113789089,113789162,'NR_029857','MIR302B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113788967,113789035,'NR_029858','MIR302C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113788608,113788676,'NR_029859','MIR302D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',9689332,9689414,'NR_036090','MIR3138'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',144484062,144484138,'NR_036091','MIR3139'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',153629928,153630018,'NR_036092','MIR3140'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113788478,113788546,'NR_029860','MIR367'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100137560,100137634,'NR_037455','MIR3684'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',160269403,160269496,'NR_037459','MIR3688-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',160269406,160269493,'NR_039963','MIR3688-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',5975902,5975956,'NR_039608','MIR378D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186009160,186009258,'NR_037510','MIR3945'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',7512654,7512745,'NR_036238','MIR4274'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',28430301,28430388,'NR_036237','MIR4275'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',175581520,175581590,'NR_036236','MIR4276'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',53273605,53273671,'NR_039651','MIR4449'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77713744,77713809,'NR_039654','MIR4450'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',86862644,86862710,'NR_039656','MIR4451'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',153677029,153677118,'NR_039658','MIR4453'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',7363077,7363152,'NR_039961','MIR4798'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',148923195,148923269,'NR_039962','MIR4799'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2221601,2221681,'NR_039964','MIR4800'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',36919926,36920008,'NR_039965','MIR4801'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',40198813,40198893,'NR_039966','MIR4802'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',183713765,183720064,'NR_039611','MIR548AB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',67035636,67150423,'NR_039674','MIR548AJ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',9166886,9167035,'NR_031688','MIR548I2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',42116908,42257678,'NR_031667','MIR548M'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',10979548,10979643,'NR_030298','MIR572'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',24130912,24131011,'NR_030299','MIR573'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',38546047,38546143,'NR_030300','MIR574'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',83893513,83893607,'NR_030301','MIR575'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',115797363,115797459,'NR_030303','MIR577'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',166526843,166526939,'NR_030304','MIR578'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1957908,1958002,'NR_030641','MIR943'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',185852212,185892280,'NM_024629','MLF1IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',146759989,146800637,'NM_172250','MMAA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',91035074,91094803,'NM_007351','MMRN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',154485250,154555693,'NM_032117','MND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71986920,72061324,'NM_001244767','MOB1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',6693345,6695350,'NM_033296','MRFAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',6760329,6762507,'NM_203462','MRFAP1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',79002828,79092968,'NM_020236','MRPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',84596141,84601953,'NM_016067','MRPS18C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',166468267,166483764,'NM_001017369','MSMO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',4912292,4916561,'NM_002448','MSX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',75242692,75387678,'NM_001144978','MTHFD2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',187691802,187713531,'NM_005958','MTNR1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100704262,100764177,'NM_000253','MTTP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71330797,71383303,'NM_001145006','MUC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2218957,2233537,'NM_006454','MXD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',661710,665817,'NM_002477','MYL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',120276386,120328392,'NM_016599','MYOZ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',39734918,39836267,'NM_018177','N4BP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',80457295,80466195,'NM_032693','NAA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',140442125,140531385,'NM_057175','NAA15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77053832,77081190,'NM_014435','NAAA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',164269272,164307523,'NM_138386','NAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',89836088,89838046,'NM_153757','NAP1L5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2031036,2040614,'NM_178557','NAT8L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',174688183,174699556,'NR_003679','NBLA00301'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',17421622,17455585,'NM_022346','NCAPG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',122176231,122213123,'NM_024574','NDNF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',119174947,119399237,'NM_004784','NDST3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',115968375,116254481,'NM_022569','NDST4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',140430520,140441814,'NM_001184991','NDUFC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',178467984,178521086,'NM_018248','NEIL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',170550995,170770353,'NM_001199397','NEK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113654120,113656777,'NM_024019','NEUROG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',103641517,103757507,'NM_003998','NFKB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',47544013,47611390,'NM_152995','NFXL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',47713547,47733837,'NM_207330','NIPAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',13151551,13155212,'NM_001189','NKX3-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',85633459,85638411,'NM_006168','NKX6-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',56156154,56197222,'NM_006681','NMU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2909461,2934916,'NM_003703','NOP14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',73116384,73232782,'NM_004885','NPFFR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',107036045,107112277,'NM_001184690','NPNT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',164464566,164473397,'NM_000909','NPY1R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',156349230,156357678,'NM_000910','NPY2R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',164484540,164492536,'NM_006174','NPY5R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',149219364,149583122,'NM_001166104','NR3C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',40446670,40506759,'NM_024677','NSUN7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',124033248,124063209,'NM_007083','NUDT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',88562758,88598523,'NM_024047','NUDT9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77254840,77288679,'NM_017426','NUP54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',48527816,48558591,'NM_017830','OCIAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',48582161,48603572,'NM_152398','OCIAD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71096832,71104882,'NM_017855','ODAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',183482130,183961171,'NM_001080477','ODZ3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',109791189,109808429,'NM_021227','OSTC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',4241430,4279522,'NM_177998','OTOP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',146299738,146315346,'NM_017493','OTUD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',135336938,135342353,'NM_001114734','PABPC4L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',20311133,20339078,'NM_001130727','PACRGL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',56996671,57022291,'NM_006452','PAICS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',169989730,170086183,'NM_001166110','PALLD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',108754270,108860868,'NM_005443','PAPSS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',80058117,80079606,'NM_001040202','PAQR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',76077308,76194349,'NM_015393','PARM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',134289919,134293854,'NM_020815','PCDH10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',138659521,138673079,'NM_019035','PCDH18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',30331134,30757521,'NM_001173523','PCDH7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',689572,754427,'NM_006315','PCGF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100300773,100301827,'NR_028270','PCNAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',56117448,56153136,'NM_152401','PDCL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',120634997,120768687,'NM_033437','PDE5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',609362,654681,'NM_000283','PDE6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',157902212,158111996,'NM_016205','PDGFC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',54790020,54859169,'NM_006206','PDGFRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',96980261,96981648,'NM_005390','PDHA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186658808,186693706,'NM_014476','PDLIM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',95592060,95808400,'NR_024179','PDLIM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',39575985,39655971,'NM_001100400','PDS5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',152811258,152901625,'NM_004564','PET112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',75065659,75066579,'NM_002619','PF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',74937876,74939062,'NM_002620','PF4V1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',37504676,37540954,'NM_018290','PGM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',129409841,129429434,'NM_006320','PGRMC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',129950228,130005237,'NM_024900','PHF17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',41440855,41445744,'NM_003924','PHOX2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',24844750,24889929,'NM_018323','PI4K2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',482988,523320,'NM_017733','PIGG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',89661157,89663978,'NM_032906','PIGY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',111758028,111782728,'NM_153427','PITX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',89147822,89217955,'NM_000297','PKD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',110850593,110870691,'NM_030821','PLA2G12A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',84230234,84250036,'NM_001130716','PLAC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',129021465,129039827,'NM_014264','PLK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',155675598,155691035,'NM_002669','PLRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2043442,2200756,'NM_181808','POLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',57539865,57592091,'NM_000938','POLR2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',147779494,147783073,'NM_004575','POU4F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',122905189,122907413,'NR_024365','PP12613'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',106509682,106614676,'NM_176866','PPA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',23402741,23500798,'NM_013261','PPARGC1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',56954285,56996559,'NM_002703','PPAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',75071019,75072771,'NM_002704','PPBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',75138618,75139980,'NR_026769','PPBPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77000049,77042705,'NM_006239','PPEF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',159849728,159864002,'NM_005038','PPID'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',89400555,89424912,'NM_152542','PPM1K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',6373205,6434498,'NM_181876','PPP2R2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',102163609,102487651,'NM_000944','PPP3CA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',121835378,122063463,'NM_018699','PRDM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',81325447,81344506,'NM_020226','PRDM8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',82228860,82345239,'NM_006259','PRKG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',148778982,148824730,'NM_138364','PRMT10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71298187,71310503,'NM_021225','PROL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',15578946,15694721,'NM_001145848','PROM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',119420640,119493370,'NM_003619','PRSS12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',152417774,152432055,'NM_183375','PRSS48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',7482921,7487600,'NM_001085382','PSAPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',87734491,87955352,'NM_080685','PTPN13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',37638450,37639026,'NM_006607','PTTG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',17097113,17122955,'NM_000320','QDPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',122469246,122521631,'NM_198179','QRFPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',12978444,13095087,'NM_001159601','RAB28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',140594410,140616519,'NM_031296','RAB33B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',99401549,99584035,'NM_001100426','RAP1GDS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',160408447,160500751,'NM_014247','RAPGEF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',82567242,82612085,'NM_152545','RASGEF1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',53423251,53427759,'NM_023940','RASL11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',74657725,74705204,'NM_201431','RASSF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',155921876,155969415,'NM_144979','RBM46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',40120028,40326640,'NM_001098634','RBM47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',25931545,26042376,'NM_203284','RBPJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',76623270,76658664,'NM_015436','RCHY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',37268816,37364394,'NM_001085399','RELL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',57469835,57496767,'NM_001193508','REST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',38965463,39044396,'NM_002913','RFC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',100686886,100704212,'NM_001134666','RG9MTD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',3285671,3411438,'NM_198229','RGS12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',39874921,39922676,'NM_004310','RHOH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',142006174,142274066,'NM_020724','RNF150'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',154850761,154900837,'NM_173662','RNF175'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1077095,1097352,'NM_001193318','RNF212'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2440592,2487384,'NM_001185010','RNF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',54546422,54548206,'NR_027153','RPL21P44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',109761170,109771088,'NM_000995','RPL34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',39132139,39136963,'NM_000661','RPL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',152240203,152245254,'NM_001006','RPS3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',110968598,110985310,'NM_006583','RRH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71806559,71878138,'NM_014961','RUFY3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',184797782,184817325,'NM_152682','RWDD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',159662496,159792713,'NM_021634','RXFP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',6746466,6749798,'NM_005980','S100P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',174528667,174535258,'NM_003864','SAP30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77298914,77354076,'NM_001204255','SCARB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1946160,1946285,'NR_003004','SCARNA22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',83800063,83939034,'NM_024906','SCD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',53433907,53926999,'NM_152540','SCFD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',130024601,130234214,'NM_144643','SCLT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',141484064,141523160,'NM_001153690','SCOC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',174545873,174557192,'NM_007281','SCRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77090091,77131137,'NM_018115','SDAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',110574419,110681064,'NM_006323','SEC24B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',119863425,119976774,'NM_014822','SEC24D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',83958837,84031359,'NM_001191049','SEC31A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',25358146,25473708,'NM_015187','SEL1L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',24730724,24771302,'NM_016955','SEPSECS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',78089918,78178792,'NM_018243','SEPT11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',140646641,140697027,'NM_030648','SETD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',154921191,154929678,'NM_003013','SFRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',52581617,52599242,'NM_000232','SGCB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',108965169,109055652,'NM_001136258','SGMS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2789709,2812621,'NM_001145856','SH3BP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',152260882,152368632,'NM_001243349','SH3D19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',170251981,170428824,'NM_020870','SH3RF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8251959,8293730,'NM_018986','SH3TC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',42094612,42099261,'NM_001080505','SHISA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77575276,77923429,'NM_020859','SHROOM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',48038369,48122972,'NM_020846','SLAIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1664324,1683828,'NM_006527','SLBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',48180116,48186298,'NM_152679','SLC10A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',87963644,87989440,'NM_197965','SLC10A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',147582269,147662573,'NM_032128','SLC10A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',128871004,128914897,'NM_031291','SLC25A31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186301410,186308532,'NM_001151','SLC25A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',962862,977183,'NM_134425','SLC26A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',9436945,9632212,'NM_020041','SLC2A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',41687279,41784308,'NM_006345','SLC30A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',25267183,25289466,'NM_001177999','SLC34A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',103391220,103485433,'NM_001135147','SLC39A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',72271866,72656668,'NM_001098484','SLC4A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',139304697,139382953,'NM_014331','SLC7A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',104041533,104160345,'NM_139173','SLC9B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',104166100,104217619,'NM_178833','SLC9B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',185956446,185957194,'NR_003542','SLED1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',19864332,20229886,'NM_004787','SLIT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',20002909,20005577,'NR_037876','SLIT2-IT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',146623406,146699775,'NM_001003688','SMAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',144654065,144698092,'NM_003601','SMARCA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',95348038,95431466,'NM_001128429','SMARCAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71261081,71267412,'NM_012390','SMR3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71283383,71290550,'NM_006685','SMR3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',90864272,90977150,'NM_007308','SNCA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',53273377,53275062,'NR_024031','SNHG13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',119419364,119420426,'NR_003584','SNHG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',119419792,119419923,'NR_002963','SNORA24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',53274172,53274294,'NR_003016','SNORA26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',152244428,152244493,'NR_000007','SNORD73A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186368277,186522114,'NM_031953','SNX25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',24406182,24411565,'NM_003102','SOD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186743591,186934060,'NM_001145673','SORBS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',7245274,7795464,'NM_020777','SORCS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',88613511,88669679,'NM_001128310','SPARCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',52612349,52658215,'NM_145263','SPATA18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',177342718,177353816,'NM_144644','SPATA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',124063674,124460054,'NM_145207','SPATA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',177478083,177490390,'NM_021928','SPCS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',57370790,57382650,'NM_021114','SPINK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',167891110,168392316,'NM_016950','SPOCK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1150720,1156999,'NM_001128325','SPON2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',89115825,89123587,'NM_001040058','SPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',124540132,124544359,'NM_005841','SPRY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',55907144,55934023,'NM_024592','SRD5A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',57028518,57064604,'NM_006947','SRP72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68107040,68155211,'NM_012108','STAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70896236,70902762,'NM_003154','STATH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',77446202,77451307,'NM_003943','STBD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',26471410,26636101,'NM_001169118','STIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',5104427,5553626,'NM_018401','STK32B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',185063502,185175869,'NM_020225','STOX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',4471596,4594676,'NM_016930','STX18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70627274,70661019,'NM_014465','SULT1B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70741518,70760459,'NM_005420','SULT1E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',120029443,120179117,'NM_001128934','SYNPO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68608922,68611610,'NR_027094','SYT14L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1693063,1716695,'NM_006342','TACC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',104730073,104860422,'NM_001059','TACR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',7096056,7110578,'NM_152293','TADA2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',15771225,15837259,'NM_153365','TAPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',37569114,37817189,'NM_015173','TBC1D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',7039789,7085746,'NM_001113363','TBC1D14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',26194643,26366015,'NM_018317','TBC1D19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',141761385,141896921,'NM_015130','TBC1D9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',107186681,107456872,'NM_001163435','TBCK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',157044296,157061000,'NM_005651','TDO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',47832556,47966571,'NM_003215','TEC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',64826771,64957773,'NM_001010874','TECRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',106286480,106383377,'NM_017628','TET2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',76658677,76674260,'NM_144721','THAP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',84040860,84060308,'NM_024672','THAP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',113416230,113426508,'NM_052864','TIFA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',90252990,90255075,'NM_145715','TIGD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',153909955,153920366,'NM_145720','TIGD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',164611696,164614497,'NM_032136','TKTL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',167013859,167171561,'NM_001204760','TLL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',38474270,38482807,'NM_003263','TLR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',38450254,38461006,'NM_030956','TLR10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',154824890,154846692,'NM_003264','TLR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',187227302,187243246,'NM_003265','TLR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',38501723,38534833,'NM_006068','TLR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1098984,1106952,'NR_033768','TMED11P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',4288169,4300835,'NM_032927','TMEM128'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1687476,1692882,'NM_001127266','TMEM129'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',159350850,159395889,'NM_018342','TMEM144'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',83624627,83702150,'NM_001080506','TMEM150C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',153766715,153820767,'NM_152680','TMEM154'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',122899534,122905790,'NM_152399','TMEM155'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',38644835,38710436,'NM_024943','TMEM156'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',55956846,55987099,'NM_018475','TMEM165'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',916261,942443,'NM_032326','TMEM175'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',148757988,148776122,'NM_018241','TMEM184C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',166216679,166253474,'NM_001100389','TMEM192'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',41631893,41657581,'NM_018126','TMEM33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68458613,68511827,'NM_001114387','TMPRSS11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68774965,68794007,'NM_182502','TMPRSS11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68736836,68766393,'NM_001129907','TMPRSS11BNL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68369188,68432311,'NM_004262','TMPRSS11D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',69465107,69515259,'NM_014058','TMPRSS11E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68601510,68678182,'NM_207407','TMPRSS11F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2713184,2727901,'NM_024309','TNIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',122272013,122304945,'NM_024873','TNIP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',118224157,118226184,'NM_152402','TRAM1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',154345047,154479924,'NM_015271','TRIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',166172600,166182346,'NM_152620','TRIM60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',166095047,166118268,'NM_001012414','TRIM61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',189297591,189305643,'NM_178556','TRIML1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',189249420,189263402,'NM_173553','TRIML2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',123019632,123092359,'NM_001130698','TRPC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',99610540,99798835,'NM_005723','TSPAN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',147847628,148086484,'NM_031956','TTC29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',47763166,47831030,'NM_003328','TXK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68164073,68249484,'NM_018227','UBA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',103936216,103968243,'NM_003340','UBE2D3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',39376058,39460805,'NM_005339','UBE2K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',40953654,40965203,'NM_004181','UCHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',141700499,141709409,'NM_021833','UCP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',186557687,186584133,'NR_028085','UFSP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',39176770,39205613,'NM_001184701','UGDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70488723,70548006,'NM_006798','UGT2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70488723,70539949,'NM_001105677','UGT2A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',69828765,69852098,'NR_024010','UGT2A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',69716301,69732330,'NM_001144767','UGT2B10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70100635,70115038,'NM_001073','UGT2B11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',69194909,69218969,'NM_001076','UGT2B15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',69085497,69116840,'NM_001077','UGT2B17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70180805,70195357,'NM_053039','UGT2B28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',70380471,70396215,'NM_021139','UGT2B4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',69996781,70013294,'NM_001074','UGT2B7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',115762971,115817651,'NM_003360','UGT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',96302678,96689384,'NM_003728','UNC5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',76868852,76954390,'NM_003715','USO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8954971,8956564,'NM_001105662','USP17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8940734,8942327,'NM_001242329','USP17L5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',8978697,8979894,'NR_027279','USP17L6P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',144325519,144362591,'NM_032557','USP38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',53151883,53220259,'NM_022832','USP46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',120353229,120436121,'NM_019050','USP53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',71773059,71775132,'NM_020368','UTP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',177841684,177950889,'NM_005429','VEGFC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',85809716,86106568,'NM_014991','WDFY3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',86106994,86147192,'NR_015359','WDFY3-AS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',9685060,9727671,'NM_017491','WDR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',177223978,177340973,'NM_181265','WDR17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',38860418,38963825,'NM_025132','WDR19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',6322477,6355893,'NM_001145853','WFS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1864306,1953732,'NM_133335','WHSC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',1954238,1980760,'NM_005663','WHSC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',184257456,184478923,'NM_024949','WWC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',44319110,44348415,'NM_182592','YIPF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',68858699,68898419,'NM_001031732','YTHDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',48187065,48191179,'NM_175619','ZAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',4342824,4374414,'NM_145291','ZBTB49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',24923493,24981103,'NM_024936','ZCCHC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',189153918,189163193,'NM_174900','ZFP42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',2241121,2390168,'NM_020972','ZFYVE28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',321595,357691,'NM_003441','ZNF141'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',142361498,142375300,'NM_014487','ZNF330'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',10050601,10068130,'NM_053042','ZNF518B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',43226,78099,'NM_182524','ZNF595'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',43276,146490,'NM_001039127','ZNF718'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',423778,483442,'NM_133474','ZNF721'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',254463,279944,'NM_001137608','ZNF732'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',146901337,147079057,'NM_178835','ZNF827'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4',196388,239773,'NR_027481','ZNF876P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4_',279193,283964,'NM_018942','HMX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4_',720286,778955,'NR_037872','LOC100233156'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4_',728345,736550,'NR_027420','LOC389834'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4_',493620,555042,'NM_001190825','MAFIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr4_',49162,88375,'NR_038377','MGC39584'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',178124469,178135883,'NR_024035','AACSP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',148501246,148620192,'NM_014945','ABLIM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',80661702,80725744,'NM_130767','ACOT12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131313565,131375254,'NM_015256','ACSL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',56811599,56814393,'NM_001017992','ACTBL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',156836889,156935361,'NM_033274','ADAM19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',33563043,33927881,'NM_030955','ADAMTS12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',5193442,5373412,'NM_139056','ADAMTS16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',128824001,129102275,'NM_133638','ADAMTS19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',178510491,178705037,'NM_021599','ADAMTS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',64480318,64813460,'NM_197941','ADAMTS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',7449342,7883194,'NM_020546','ADCY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159276317,159332595,'NM_000679','ADRA1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',148186348,148188390,'NM_000024','ADRB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',148631593,148701560,'NM_152406','AFAP1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132238969,132327253,'NM_014423','AFF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',76361965,76396814,'NM_018046','AGGF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',35033962,35083997,'NM_031900','AGXT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',177568145,177592409,'NM_153373','AGXT2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',357290,491405,'NM_020731','AHRR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',125905431,125958981,'NM_001202404','ALDH7A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',34022847,34043977,'NM_001167595','AMACR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',14757908,14924887,'NM_054027','ANKH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139761582,139832246,'NM_017978','ANKHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139761582,139909347,'NM_020690','ANKHD1-EIF4EBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',72883780,72897267,'NM_023039','ANKRA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',74399877,74568459,'NM_001164443','ANKRD31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',93980146,94057329,'NM_032290','ANKRD32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',10617434,10710928,'NM_001164440','ANKRD33B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79888329,79902060,'NM_001004441','ANKRD34B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132176931,132180388,'NM_175873','ANKRD43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',55431263,55564943,'NM_024669','ANKRD55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150460459,150501409,'NM_001193544','ANXA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',77333905,77626284,'NM_003664','AP3B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',115205517,115277677,'NM_001284','AP3S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139918036,139924373,'NM_133172','APBB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',112101454,112209835,'NM_001127510','APC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',115326049,115391198,'NM_173800','AQPEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',141013151,141041984,'NM_022481','ARAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',142130475,142588765,'NM_001135608','ARHGAP26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',148941327,148994720,'NM_001001669','ARHGEF37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175725107,175733109,'NM_173664','ARL10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',53216370,53642160,'NM_019087','ARL15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',90700296,90714905,'NM_020801','ARRDC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',78108792,78318113,'NM_000046','ARSB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149656101,149662718,'NM_001012301','ARSI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',94916580,94966562,'NM_198150','ARSK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',81303599,81586973,'NM_001131028','ATG10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',115191792,115205447,'NM_004707','ATG12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',151102575,151118403,'NM_004045','ATOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159922704,160211797,'NM_025153','ATP10B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',81636921,81649903,'NM_001017971','ATP6AP1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172343368,172394506,'NM_003945','ATP6V0E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176959724,176969952,'NM_007255','B4GALT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',17270749,17329943,'NM_006317','BASP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',70787197,70899405,'NM_018429','BDP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',78443359,78463869,'NM_001713','BHMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',78401302,78421653,'NM_001178005','BHMT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172504050,172523996,'NM_013979','BNIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172966753,172976272,'NM_138369','BOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137503357,137542257,'NM_139199','BRD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',916849,945939,'NR_027633','BRD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',34951576,34961545,'NM_018321','BRIX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',72830005,72837204,'NM_001207','BTF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180348450,180366333,'NM_197975','BTNL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180258682,180310512,'NM_001159707','BTNL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180399830,180421129,'NM_152547','BTNL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159707352,159730226,'NM_031908','C1QTNF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',34053719,34079128,'NM_030945','C1QTNF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',34022847,34160390,'NR_037951','C1QTNF3-AMACR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',111092898,111340527,'NM_001142475','C5orf13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',133319096,133332305,'NM_020199','C5orf15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134807802,134810937,'NM_130848','C5orf20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',31568129,31590922,'NM_018356','C5orf22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134209556,134223324,'NM_001135586','C5orf24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175597975,175705596,'NM_198567','C5orf25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',95213691,95221592,'NR_026936','C5orf27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',43480110,43519749,'NM_022483','C5orf28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',102622340,102642260,'NM_033211','C5orf30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139534836,139603558,'NM_032412','C5orf32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',43522559,43551030,'NM_198566','C5orf34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',56240843,56248922,'NM_153706','C5orf35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',2805261,2808511,'NM_178569','C5orf38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',43074938,43076204,'NM_001014279','C5orf39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',154178244,154210406,'NM_032385','C5orf4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172415960,172498897,'NM_153607','C5orf41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',37142086,37285287,'NM_023073','C5orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',60489292,60494059,'NM_001048249','C5orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',64956313,64962288,'NR_003545','C5orf44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179196871,179218446,'NM_016175','C5orf45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',147252463,147266294,'NM_206966','C5orf46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',173348767,173365749,'NM_001144954','C5orf47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',125995312,125999873,'NM_207408','C5orf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',7884510,7904264,'NM_001089584','C5orf49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',41940226,41957495,'NM_175921','C5orf51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',157031138,157039740,'NM_001145132','C5orf52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159752732,159759638,'NM_022090','C5orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',494642,496258,'NM_138464','C5orf55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131774363,131821927,'NM_001207003','C5orf56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',169592527,169605813,'NM_001102609','C5orf58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179001163,179004653,'NM_001142306','C5orf60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150137700,150156491,'NM_032947','C5orf62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',126406148,126437083,'NM_001164479','C5orf63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',60969392,61038119,'NM_173667','C5orf64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138755533,138758784,'NM_001161546','C5orf65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',41178092,41297297,'NM_001115131','C6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',40945355,41018798,'NM_000587','C7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',39320134,39400412,'NM_001737','C9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149579246,149649596,'NM_015981','CAMK2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',110587845,110848647,'NM_001744','CAMK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134102068,134115749,'NM_001745','CAMLG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179058535,179091245,'NM_001746','CANX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',35940154,35974494,'NM_001042625','CAPSL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',40877166,40891213,'NM_032587','CARD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',71050745,71052631,'NM_004291','CARTPT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',96023662,96136141,'NM_001042440','CAST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134331494,134375296,'NM_178019','CATSPER3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179038164,179040581,'NM_001164444','CBY3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',114630783,114659886,'NM_152549','CCDC112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',257874,271297,'NM_145265','CCDC127'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',42792676,42838296,'NM_001134848','CCDC152'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150540805,150583847,'NM_015621','CCDC69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',168943215,168964359,'NM_017785','CCDC99'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',43417356,43448245,'NM_148672','CCL28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',68498668,68509826,'NM_031966','CCNB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',162797154,162804600,'NM_004060','CCNG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',86725834,86744606,'NM_001239','CCNH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132111035,132117755,'NM_001039780','CCNI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159611248,159672151,'NM_024565','CCNJL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54562737,54565265,'NM_021147','CCNO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',10303281,10319501,'NM_012073','CCT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139991496,139993470,'NM_001174105','CD14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',66513859,66528373,'NM_005582','CD180'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149761392,149772692,'NM_004355','CD74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54444555,54504762,'NM_001145734','CDC20B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137551235,137576931,'NM_004661','CDC23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137648857,137695415,'NM_001790','CDC25C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',130627600,130758281,'NM_001038702','CDC42SE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',24522965,24680842,'NM_006727','CDH10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',21786729,22889488,'NM_004061','CDH12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',19508911,20024110,'NM_001167667','CDH18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',31229518,31365010,'NM_004932','CDH6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',26916465,27074446,'NM_016279','CDH9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175902117,175955375,'NM_001171976','CDHR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',68566377,68609013,'NM_001799','CDK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',133671590,133730664,'NM_016508','CDKL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',133765654,133775497,'NM_080656','CDKN2AIPNL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',115168328,115180304,'NM_001801','CDO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149526536,149544314,'NM_001804','CDX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',68521130,68541940,'NM_022909','CENPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',64849348,64894751,'NM_022145','CENPK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',122708477,122787185,'NM_001166226','CEP120'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',665404,706666,'NM_018140','CEP72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',89725284,89741359,'NM_004365','CETN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',98218807,98290138,'NM_001270','CHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',129268421,129550226,'NM_175856','CHSY3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',80564894,80597973,'NM_001099736','CKMT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',157145328,157218761,'NM_001195556','CLINT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',177962270,177986660,'NM_020666','CLK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1370999,1398002,'NM_030782','CLPTM1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175752061,175776146,'NM_007097','CLTB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',10330706,10361168,'NM_138809','CMBL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79021414,79131805,'NM_153610','CMYA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179854022,179937959,'NM_015455','CNOT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',154218390,154236545,'NM_004779','CNOT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',177597222,177950162,'NM_173465','COL23A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',74702683,74843562,'NM_001130105','COL4A3BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',115448625,115656877,'NM_016144','COMMD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',85949539,85952339,'NM_001867','COX7C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',173247936,173319919,'NM_030627','CPEB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175231106,175243629,'NM_001008220','CPLX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',76284435,76301055,'NM_001882','CRHBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79682179,79683541,'NR_003665','CRSP8P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149413046,149473128,'NM_005211','CSF1R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131437383,131439758,'NM_000758','CSF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',148855037,148911200,'NM_001892','CSNK1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',122875691,122980363,'NM_001044722','CSNK1G3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138117005,138298622,'NM_001903','CTNNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',11024951,11957110,'NM_001332','CTNND2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',127012611,127022221,'NM_001048252','CTXN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',64100510,64350346,'NM_005869','CWC27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134934267,134942868,'NM_004887','CXCL14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139008484,139042864,'NM_016463','CXXC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',156625764,156755184,'NM_001037332','CYFIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',39407532,39461092,'NM_001343','DAB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',10732341,10814387,'NM_004394','DAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176816219,176833300,'NM_004395','DBN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',112340305,112385791,'NM_152624','DCP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150068501,150118850,'NM_016221','DCTN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',55098469,55148731,'NM_001166534','DDX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176871183,176876573,'NM_016222','DDX41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134122359,134194710,'NM_014829','DDX46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',59928495,60031750,'NM_018369','DEPDC1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79957800,79986556,'NM_000791','DHFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54587829,54639278,'NM_019030','DHX29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140874771,140978806,'NM_005219','DIAPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',61720107,61735485,'NM_014473','DIMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',78329184,78401205,'NM_013391','DMGDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',118434982,118612721,'NM_005509','DMXL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',13743436,13997589,'NM_001369','DNAH5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138773790,138803113,'NM_152686','DNAJC18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',34965454,34994826,'NM_001012339','DNAJC21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140030564,140033355,'NM_194249','DND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',168996828,169442964,'NM_004946','DOCK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176861511,176870033,'NM_001144875','DOK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',146750563,146813453,'NM_001387','DPYSL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',174800280,174803769,'NM_000794','DRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',31436358,31568039,'NM_001100412','DROSHA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',118200467,118352139,'NM_173666','DTWD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172127697,172130809,'NM_004417','DUSP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',158055500,158459366,'NM_024007','EBF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138812143,138822504,'NM_001077693','ECSCR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',83273881,83716367,'NM_005711','EDIL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',171553780,171563063,'NM_001171183','EFCAB9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',106740488,107034495,'NM_001962','EFNA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',38294267,38501339,'NM_152403','EGFLAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137829079,137832903,'NM_001964','EGR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175990288,176006248,'NM_001099408','EIF4E1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139907434,139909347,'NM_003732','EIF4EBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',95246557,95323531,'NM_012081','ELL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',60083372,60175858,'NM_024930','ELOVL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',49727787,49772991,'NM_198449','EMB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',73958989,73973005,'NM_003633','ENC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',111526213,111782909,'NM_022140','EPB41L4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',111524121,111526097,'NR_015370','EPB41L4A-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',96135943,96169648,'NM_001040458','ERAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',96237399,96281162,'NM_001130140','ERAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',65258139,65412606,'NM_018695','ERBB2IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',60205415,60276662,'NM_000082','ERCC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172193828,172312294,'NM_001031711','ERGIC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54309451,54317171,'NM_001135604','ESM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137869682,137906831,'NM_004730','ETF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',496333,520409,'NM_007277','EXOC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176761744,176769183,'NM_000505','F12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',76047623,76067351,'NM_001992','F2R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',76150588,76166896,'NM_005242','F2RL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',75947062,75954996,'NM_004101','F2RL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159546951,159598307,'NM_001130958','FABP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175807961,175869681,'NM_014613','FAF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',14634890,14669287,'NM_019018','FAM105A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',14717782,14752842,'NM_138348','FAM105B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',153351457,153398690,'NM_018691','FAM114A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',16526146,16562031,'NM_019000','FAM134B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137301540,137396701,'NM_001101800','FAM13B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79819555,79874138,'NM_205548','FAM151B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',177082970,177140111,'NM_173663','FAM153A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175444514,175476063,'NM_001079529','FAM153B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',177366572,177408694,'NR_038353','FAM153C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',64021890,64049773,'NM_001164442','FAM159B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',74109154,74198371,'NM_015566','FAM169A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',118993152,118999416,'NM_001163991','FAM170A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',92979186,93473160,'NM_001163418','FAM172A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',10279437,10303014,'NM_199133','FAM173B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',99899022,99950339,'NM_198507','FAM174A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176879395,176914154,'NR_024019','FAM193B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',169223296,169340322,'NM_001129891','FAM196B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137701602,137713317,'NM_016605','FAM53C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',156521921,156525857,'NM_130899','FAM71B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',94752803,94811900,'NM_152548','FAM81B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',7912271,7922150,'NR_036553','FASTKD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150863845,150928698,'NM_001447','FAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',167889159,167890217,'NR_024356','FBLL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',127621499,127901634,'NM_001999','FBN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',107222632,107745698,'NM_001163315','FBXL17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',135293904,135305266,'NM_012159','FBXL21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',15553304,15992900,'NM_012304','FBXL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',147743738,147802592,'NM_030793','FBXO38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',41961112,41970942,'NM_033484','FBXO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',171221160,171366482,'NM_033645','FBXW11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',72287563,72422105,'NM_138782','FCHO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140999052,141011170,'NM_033449','FCHSD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',114884506,114908490,'NM_020177','FEM1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',108111421,108551272,'NM_005246','FER'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',141951926,142057819,'NM_001144935','FGF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',44340853,44424541,'NM_004465','FGF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',170779271,170817235,'NM_003862','FGF18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176449156,176457732,'NM_022963','FGFR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',111783178,111784574,'NR_027706','FLJ11235'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',6363553,6390405,'NR_028351','FLJ33360'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',127385142,127446665,'NR_015360','FLJ33630'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',98133221,98136688,'NR_033932','FLJ35946'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',153749521,153805575,'NR_037897','FLJ38109'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',92772257,92942709,'NR_021491','FLJ42709'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179967358,180009230,'NM_002020','FLT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',156701184,156705307,'NM_001001343','FNDC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131005305,131160655,'NM_133372','FNIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',72777840,72780108,'NM_004472','FOXD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',169465494,169469307,'NM_144769','FOXI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',52812020,52818061,'NM_013409','FST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132560050,132976122,'NM_015082','FSTL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',121215548,121216422,'NM_177478','FTMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',39141110,39255437,'NM_199335','FYB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',151131668,151165108,'NM_198395','G3BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',161208475,161259543,'NM_001127646','GABRA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',161045235,161062176,'NM_000811','GABRA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',160648013,160907708,'NM_000813','GABRB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',161427225,161515123,'NM_000816','GABRG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',170143300,170173628,'NM_014211','GABRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',153550487,153780736,'NM_198321','GALNT10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',57823086,57827942,'NM_152687','GAPT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',74359044,74362480,'NM_016591','GCNT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132224776,132228376,'NM_005260','GDF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',37848535,37875539,'NM_000514','GDNF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',154247168,154297969,'NM_015465','GEMIN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',74052786,74098798,'NM_170691','GFM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179660305,179712921,'NM_005110','GFPT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137615967,137638152,'NM_001496','GFRA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',42459633,42757737,'NM_000163','GHR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',102449602,102483741,'NM_017676','GIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',151182266,151284590,'NM_001146040','GLRA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',95175308,95184333,'NM_002064','GLRX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150612805,150630146,'NM_000405','GM2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',177544116,177547039,'NR_003281','GMCL1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180596533,180603512,'NM_006098','GNB2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',141360417,141372804,'NM_005471','GNPDA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',32160580,32210182,'NM_022130','GOLPH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',56507031,56596263,'NM_001127235','GPBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',94981735,94983040,'NM_199243','GPR150'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',145874609,145875869,'NM_194251','GPR151'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',89890372,90495789,'NR_003149','GPR98'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175955408,175969737,'NM_052899','GPRIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150380191,150388747,'NM_002084','GPX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54491740,54498886,'NM_001008397','GPX8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',125786767,125857752,'NM_001146321','GRAMD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',152850276,153173622,'NM_000827','GRIA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176786292,176802456,'NM_002082','GRK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',178337935,178354730,'NM_000843','GRM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',148705169,148714339,'NM_152407','GRPEL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',145219488,145232724,'NM_001080516','GRXCR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',70366706,70399253,'NM_001515','GTF2H2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',21495345,21510322,'NR_027027','GUSBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',68971045,69042028,'NR_027386','GUSBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',69206796,69247894,'NR_033968','GUSBP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54434230,54441837,'NM_006144','GZMA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54355863,54365717,'NM_002104','GZMK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134697969,134762827,'NM_138610','H2AFY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',153834724,153838017,'NM_004821','HAND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',82969772,83052652,'NM_001884','HAPLN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140033673,140051155,'NM_002109','HARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140051201,140059074,'NM_012208','HARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',156389108,156418065,'NM_001099414','HAVCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',156445420,156468716,'NM_032782','HAVCR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139692611,139706372,'NM_001945','HBEGF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',45290808,45731977,'NM_021072','HCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140980626,140996607,'NM_003883','HDAC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',41033878,41107201,'NM_173489','HEATR7B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',74016724,74052869,'NM_000521','HEXB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175748389,175749357,'NM_138820','HIGD2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',130522773,130528933,'NM_005340','HINT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176240475,176258939,'NM_002115','HK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',74668748,74693682,'NM_000859','HMGCR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',43325249,43349352,'NM_002130','HMGCS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149360361,149412899,'NM_014983','HMGXB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',143171918,143180477,'NM_021182','HMHB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',162820094,162851530,'NM_012485','HMMR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',173405329,173468788,'NM_015980','HMP19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137114971,137117938,'NM_006805','HNRNPA0'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',177564113,177570790,'NM_031266','HNRNPAB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',178973784,178983328,'NM_005520','HNRNPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',78705541,78845456,'NM_004272','HOMER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175017645,175045851,'NM_001131055','HRH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',118816036,118905929,'NM_001199292','HSD17B4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132415560,132468608,'NM_002154','HSPA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137918469,137939217,'NM_004134','HSPA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',53787187,53787971,'NM_006308','HSPB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',63292033,63293302,'NM_000524','HTR1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',147810787,147996817,'NM_199453','HTR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54551181,54558900,'NM_001190787','IDAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139485704,139488575,'NM_001007189','IGIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140007567,140022249,'NM_006083','IK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',158674368,158690059,'NM_002187','IL12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132021763,132024700,'NM_002188','IL13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',148734022,148739031,'NM_014443','IL17B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131424245,131426795,'NM_000588','IL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',55182963,55248922,'NM_139017','IL31RA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132037271,132046267,'NM_172348','IL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131905034,131907113,'NM_000879','IL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',55266681,55326578,'NM_001190981','IL6ST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',35892747,35912680,'NM_002185','IL7R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',135255833,135259415,'NM_000590','IL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',61750467,61960172,'NM_001134779','IPO11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',75734904,76039713,'NM_006633','IQGAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131845199,131854364,'NM_002198','IRF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150206277,150208424,'NM_001145805','IRGM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',3649167,3654517,'NM_024337','IRX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',2799278,2804769,'NM_033267','IRX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1930540,1935880,'NM_016358','IRX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',50714714,50726320,'NM_002202','ISL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',128458340,128477618,'NM_016048','ISOC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',52119892,52285242,'NM_181501','ITGA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',52320912,52426366,'NM_002203','ITGA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',156540484,156614687,'NM_005546','ITK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',146950898,147142445,'NM_014790','JAKMIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',78567680,78658794,'NM_152405','JMY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',169863625,170096214,'NM_014592','KCNIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',169737744,169749216,'NM_004137','KCNMB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',113725914,113860096,'NM_021614','KCNN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',143530629,143837137,'NM_020768','KCTD16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137716183,137800615,'NM_016604','KDM3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',141283568,141301796,'NM_014773','KIAA0141'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',93880673,93980065,'NM_173665','KIAA0825'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',5475806,5543338,'NM_015325','KIAA0947'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175705671,175721415,'NM_001079685','KIAA1191'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137542315,137551303,'NM_005733','KIF20A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',61637745,61718768,'NM_001098511','KIF2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132056221,132101164,'NM_007054','KIF3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',154373452,154377878,'NM_001099293','KIF4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',136981087,137099678,'NM_017415','KLHL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',154072654,154177356,'NM_015315','LARP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',145472781,145542487,'NM_020117','LARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',169607665,169657400,'NM_005565','LCP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132237256,132238481,'NM_052971','LEAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',135310498,135318622,'NM_002302','LECT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',77816793,77980404,'NM_005779','LHFPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',38510821,38592505,'NM_001127671','LIFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',87872352,88016376,'NR_015436','LINC00461'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',96453329,96504276,'NM_153234','LIX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176691168,176711491,'NM_006816','LMAN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',36139170,36187772,'NM_001007527','LMBRD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',126140743,126200611,'NM_001198557','LMNB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',96319911,96390871,'NM_175920','LNPEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',90711919,90752288,'NR_027435','LOC100129716'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',80569139,80633144,'NR_034123','LOC100131067'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',43101045,43102830,'NR_034127','LOC100132356'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',99743107,99751857,'NR_027503','LOC100133050'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',69459044,69557378,'NR_024054','LOC100170939'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172314390,172318384,'NR_026683','LOC100268168'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',68962735,68964784,'NR_027439','LOC100272216'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',98292737,98294613,'NR_036530','LOC100289230'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',109246781,109249099,'NR_033175','LOC100289673'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',65276388,65277157,'NR_028474','LOC100303749'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140918061,140925011,'NR_038333','LOC100505658'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',110875822,111103322,'NR_040093','LOC100505678'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',8510799,8516209,'NR_039989','LOC100505738'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',9599311,9603409,'NR_045196','LOC100505806'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',121523769,121546257,'NM_001195535','LOC100505841'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',87600454,87768247,'NR_039993','LOC100505894'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',40861120,40865001,'NR_037665','LOC100506548'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1041424,1050455,'NM_001242737','LOC100506688'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175479157,175484774,'NR_038402','LOC100507387'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',146919749,147021765,'NR_038902','LOC153469'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',43077992,43081127,'NR_015447','LOC153684'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176978106,177031884,'NR_026921','LOC202181'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',6635286,6641613,'NR_024423','LOC255167'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',169691012,169694682,'NR_026945','LOC257358'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',52441443,52446709,'NR_034107','LOC257396'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',3470265,3589208,'NR_033898','LOC285577'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172939251,172944681,'NR_027108','LOC285593'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',158691103,158722420,'NR_037889','LOC285626'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',158808141,158825862,'NR_027110','LOC285627'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',160291363,160298211,'NR_027111','LOC285629'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',9694426,9956936,'NR_027112','LOC285692'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',17183136,17270531,'NR_027253','LOC285696'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176797495,176807551,'NR_038915','LOC340037'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134599822,134611766,'NR_037895','LOC340073'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',135012270,135017523,'NR_027127','LOC340074'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',5087471,5123115,'NR_026994','LOC340094'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',24871145,24876449,'NR_037896','LOC340107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',32983305,32998330,'NR_033832','LOC340113'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',135555054,135556750,'NR_024418','LOC389332'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',17432014,17440419,'NR_033975','LOC401177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',7352486,7359827,'NR_033906','LOC442132'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131674867,131733507,'NR_037898','LOC553103'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175502693,175558904,'NR_036494','LOC643201'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',27508155,27532265,'NR_038848','LOC643401'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',115415061,115422726,'NM_001195581','LOC644100'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79630672,79632053,'NR_004845','LOC644936'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',68866398,68885276,'NR_026578','LOC647859'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',43050587,43054670,'NR_034086','LOC648987'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',177234867,177243875,'NR_003615','LOC728554'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1650671,1687120,'NR_003713','LOC728613'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',76418378,76479932,'NR_024398','LOC728723'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',141255374,141256444,'NR_033244','LOC729080'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',8386595,8510677,'NR_039984','LOC729506'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180189564,180195332,'NR_027183','LOC729678'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',28962733,28963177,'NR_033961','LOC729862'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',121426788,121440817,'NM_001178102','LOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1514541,1577076,'NM_024830','LPCAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',244625,248468,'NM_001080478','LRRC14B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',61910318,61913031,'NM_181506','LRRC70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138232977,138238956,'NM_015564','LRRTM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',157103332,157116324,'NM_173491','LSM11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179153591,179156119,'NM_145867','LTC4S'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',130534539,130569018,'NM_181705','LYRM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',89847200,89861157,'NM_198273','LYSMD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179092456,179136893,'NM_014757','MAML1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',109053054,109231328,'NM_002372','MAN2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',71438873,71541153,'NM_005909','MAP1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',56146656,56227735,'NM_005921','MAP3K1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179593200,179651677,'NM_002752','MAPK9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',16120473,16232897,'NM_001102562','MARCH11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',126231304,126394339,'NM_178450','MARCH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',10406827,10488491,'NM_005885','MARCH6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',68746694,68773646,'NM_001038603','MARVELD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',66160359,66501179,'NM_015183','MAST4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',162865162,162878906,'NM_013283','MAT2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138657231,138695265,'NM_018834','MATR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',89789775,89806341,'NM_203406','MBLAC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',112385694,112852426,'NM_001085377','MCC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',94068046,94646035,'NM_024717','MCTP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',6425038,6431639,'NM_032286','MED10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',156498028,156502499,'NM_004270','MED7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',88049813,88235678,'NM_001193347','MEF2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',126654354,126824809,'NM_032446','MEGF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',153398711,153417207,'NM_001242336','MFAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180150146,180169423,'NM_001114618','MGAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179157203,179166558,'NM_014275','MGAT4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',56251185,56283711,'NM_152622','MIER3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',167920478,167920556,'NR_029520','MIR103A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',167920486,167920548,'NR_031721','MIR103B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179157883,179157952,'NR_031598','MIR1229'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132791186,132791297,'NR_031621','MIR1289-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',148788673,148788779,'NR_029684','MIR143'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',148766632,148792592,'NR_027180','MIR143HG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',148790401,148790489,'NR_029686','MIR145'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159844936,159845035,'NR_029701','MIR146A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',168127728,168127838,'NR_029632','MIR218-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',92982157,92982250,'NR_031754','MIR2277'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',153955764,153955825,'NR_036094','MIR3141'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159833986,159834068,'NR_036095','MIR3142'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179374908,179375003,'NR_029885','MIR340'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',85952069,85952148,'NR_037402','MIR3607'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',38593360,38593420,'NR_037423','MIR3650'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140007612,140007695,'NR_037428','MIR3655'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',89348193,89348293,'NR_037433','MIR3660'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',133589346,133589442,'NR_037434','MIR3661'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',169388069,169388148,'NR_039609','MIR378E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',170746264,170746369,'NR_037474','MIR3912'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131729080,131729190,'NR_037500','MIR3936'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',82171729,82171799,'NR_039773','MIR3977'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1761899,1761983,'NR_036240','MIR4277'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',6880965,6881034,'NR_036242','MIR4278'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',31971964,31972022,'NR_036241','MIR4279'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',86446451,86446527,'NR_036243','MIR4280'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175989045,175989107,'NR_036239','MIR4281'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',7322415,7322467,'NR_039659','MIR4454'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',588954,588997,'NR_039661','MIR4456'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1362424,1362492,'NR_039662','MIR4457'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',8514037,8514112,'NR_039663','MIR4458'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',128760653,128760739,'NR_039665','MIR4460'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134291627,134291701,'NR_039666','MIR4461'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54502116,54502207,'NR_029960','MIR449A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54502230,54502327,'NR_030387','MIR449B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54503846,54503938,'NR_031572','MIR449C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',128461279,128461358,'NR_039776','MIR4633'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',174111342,174111396,'NR_039777','MIR4634'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1116010,1116089,'NR_039778','MIR4635'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',9106927,9107007,'NR_039779','MIR4636'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',14879037,14879121,'NR_039780','MIR4637'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180582171,180582239,'NR_039781','MIR4638'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',71501049,71501123,'NR_039967','MIR4803'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',72210173,72210246,'NR_039968','MIR4804'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',109049179,109225081,'NR_030347','MIR548C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159002884,159095000,'NR_030385','MIR548D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',109049179,109225081,'NR_037515','MIR548Z'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',36183750,36183847,'NR_030306','MIR580'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',53283090,53283186,'NR_030307','MIR581'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',95440597,95440672,'NR_030309','MIR583'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',168623182,168623276,'NR_030311','MIR585'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137011159,137011237,'NR_030588','MIR874'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',87998426,87998513,'NR_030741','MIR9-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',52429651,52441082,'NM_004531','MOCS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',154300825,154329164,'NM_014180','MRPL22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1851498,1852956,'NM_032479','MRPL36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',71550991,71651840,'NM_015084','MRPS27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',44844783,44851373,'NM_016640','MRPS30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',68549328,68561741,'NM_033281','MRPS36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79986049,80208390,'NM_002439','MSH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',174084180,174090508,'NM_002449','MSX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',32262867,32348871,'NM_001040446','MTMR12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79981574,79982610,'NM_001190470','MTRNR2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',7922216,7954235,'NM_002454','MTRR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79308294,79322844,'NM_001167741','MTX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176666811,176671898,'NM_031300','MXD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',16715015,16989385,'NM_012334','MYO10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137231443,137251439,'NM_006790','MYOT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150020596,150039118,'NM_133371','MYOZ3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138751155,138753504,'NM_016459','MZB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',177473161,177485713,'NM_015111','N4BP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',36228450,36277657,'NM_001085411','NADKD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',85614017,85629118,'NR_003719','NBPF22P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',76043518,76044442,'NR_028375','NCRUPAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',141468507,141514192,'NM_030571','NDFIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149867866,149917966,'NM_001543','NDST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140005131,140007554,'NM_001185012','NDUFA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',60276712,60484621,'NM_174889','NDUFAF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',52892221,53014928,'NM_002495','NDUFS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1854495,1869167,'NM_004553','NDUFS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172000880,172051138,'NM_001142651','NEURL1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134897870,134899538,'NM_006161','NEUROG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',177509071,177513567,'NM_017838','NHP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',43228083,43316709,'NM_153361','NIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',156819604,156834308,'NM_001099287','NIPAL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',36912617,37101678,'NM_133433','NIPBL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1062167,1091925,'NM_033120','NKD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172591712,172594921,'NM_004387','NKX2-5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',65053778,65160867,'NM_020726','NLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137478759,137503031,'NM_003551','NME5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',151751294,151765033,'NM_020167','NMUR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',43638547,43741425,'NM_012343','NNT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175743837,175748146,'NM_016391','NOP16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',170747312,170766336,'NM_001037738','NPM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',32747194,32827587,'NM_001204375','NPR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137164780,137174338,'NR_002713','NPY6R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',92944798,92955542,'NM_005654','NR2F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',142637688,142763447,'NM_001020825','NR3C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139206547,139403068,'NM_001184935','NRG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',74098858,74108490,'NM_014886','NSA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176492685,176659820,'NM_172349','NSD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',6652351,6686473,'NM_017755','NSUN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',162813163,162819721,'NM_145266','NUDCD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',102912454,102926389,'NM_031438','NUDT12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',37327697,37406954,'NM_153485','NUP155'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',166644420,167623740,'NM_001122679','ODZ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180514548,180515496,'NM_206880','OR2V2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180098728,180099664,'NM_001001657','OR2Y1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180726893,180727832,'NM_001005224','OR4F3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',38881857,38971500,'NM_003999','OSMR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',76960292,76970278,'NM_032109','OTP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',41765923,41906548,'NM_000436','OXCT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131556202,131591455,'NM_001142598','P4HA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',43562126,43592952,'NM_006451','PAIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138705417,138733308,'NM_016480','PAIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',102229425,102394707,'NR_033440','PAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',167915205,167939192,'NM_024594','PANK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',78943998,79018227,'NM_001114393','PAPD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',6767717,6810161,'NM_006999','PAPD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',49998528,50178113,'NM_001178056','PARP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',59819515,59858002,'NR_028509','PART1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134268708,134326235,'NM_032151','PCBD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',141222400,141238128,'NM_002587','PCDH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',141304713,141318811,'NM_016580','PCDH12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140146059,140372113,'NM_018900','PCDHA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140215817,140218352,'NM_031859','PCDHA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140228014,140231305,'NM_031861','PCDHA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140235114,140372113,'NM_018903','PCDHA12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140242037,140372113,'NM_018904','PCDHA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140154627,140157246,'NM_031495','PCDHA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140160966,140163441,'NM_031497','PCDHA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140166855,140169353,'NM_031500','PCDHA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140181544,140183995,'NM_031501','PCDHA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140187833,140372113,'NM_031849','PCDHA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140194152,140196522,'NM_031852','PCDHA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140201090,140203535,'NM_031856','PCDHA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140207540,140372113,'NM_031857','PCDHA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140286485,140372113,'NM_018898','PCDHAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140325930,140372113,'NM_018899','PCDHAC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140411162,140413696,'NM_013340','PCDHB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140552135,140555397,'NM_018930','PCDHB10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140559531,140562802,'NM_018931','PCDHB11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140568474,140571882,'NM_018932','PCDHB12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140573692,140577177,'NM_018933','PCDHB13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140583261,140586045,'NM_018934','PCDHB14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140605330,140607985,'NM_018935','PCDHB15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140541163,140545980,'NM_020957','PCDHB16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140515763,140518174,'NR_001280','PCDHB17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140594121,140597285,'NR_001281','PCDHB18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140599872,140604496,'NR_001282','PCDHB19P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140454420,140457148,'NM_018936','PCDHB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140460417,140463590,'NM_018937','PCDHB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140481764,140485385,'NM_018938','PCDHB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140494983,140497888,'NM_015669','PCDHB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140510022,140513052,'NM_018939','PCDHB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140532426,140536141,'NM_018940','PCDHB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140537554,140540265,'NM_019120','PCDHB8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140547076,140551295,'NM_019119','PCDHB9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140690435,140692907,'NM_031993','PCDHGA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140772926,140775479,'NM_032090','PCDHGA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140780720,140872730,'NM_032092','PCDHGA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140790341,140792973,'NM_032094','PCDHGA12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140698537,140872730,'NM_018915','PCDHGA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140703784,140706274,'NM_032011','PCDHGA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140714951,140872730,'NM_018917','PCDHGA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140724081,140872730,'NM_018918','PCDHGA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140733834,140872730,'NM_018919','PCDHGA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140742650,140745371,'NM_032087','PCDHGA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140751666,140872730,'NM_032088','PCDHGA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140762703,140765190,'NM_032089','PCDHGA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140710011,140872730,'NM_018922','PCDHGB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140719886,140872730,'NM_018923','PCDHGB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140730145,140872730,'NM_018924','PCDHGB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140747635,140872730,'NM_003736','PCDHGB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140757878,140760335,'NM_032099','PCDHGB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140767953,140770416,'NM_032100','PCDHGB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140777397,140780180,'NM_032101','PCDHGB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140786036,140788009,'NR_001297','PCDHGB8P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140835752,140872730,'NM_002588','PCDHGC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140844924,140847540,'NM_032406','PCDHGC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140848991,140851628,'NM_032407','PCDHGC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',95751795,95794741,'NM_000439','PCSK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',148717762,148729414,'NM_024028','PCYOX1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',324735,368089,'NM_013232','PDCD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',58300622,58371096,'NM_001197222','PDE4D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149217711,149304549,'NM_000440','PDE6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',76542461,76759836,'NM_003719','PDE8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149473594,149515615,'NM_002609','PDGFRB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131621249,131637046,'NM_003687','PDLIM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176849852,176857208,'NM_213636','PDLIM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',31834787,32146795,'NM_178140','PDZD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',52119530,52134209,'NM_015946','PELO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139604818,139662873,'NM_002622','PFDN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176759713,176760243,'NM_001029886','PFN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',114574425,114626468,'NM_005023','PGGT1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',125964505,125990843,'NM_032177','PHAX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',133889696,133946817,'NM_015288','PHF15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',67547339,67633405,'NM_181523','PIK3R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134391322,134397863,'NM_002653','PITX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',108698308,108773574,'NM_014819','PJA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137253023,137304055,'NM_014386','PKD2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',145444068,145464139,'NM_001029869','PLAC8L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',41342804,41546487,'NM_001005473','PLCXD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',193372,243087,'NM_052909','PLEKHG4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',57785566,57791670,'NM_006622','PLK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',22178217,22188136,'NR_003921','PMCHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',70707367,70717576,'NR_003922','PMCHL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',75005779,75049069,'NM_001099271','POC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',74843412,74931402,'NM_016218','POLK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',89806436,89846125,'NM_006467','POLR3G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',145698779,145700276,'NM_002700','POU4F3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',93101770,93103065,'NM_153216','POU5F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',523624,526080,'NR_024158','PP7080'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54756439,54866630,'NM_176895','PPAP2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149131695,149214778,'NM_001172699','PPARGC1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',122386976,122400324,'NM_000943','PPIC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',102493155,102566808,'NM_015216','PPIP5K2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',156210126,156212117,'NR_038443','PPP1R2P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',133560046,133589849,'NM_002715','PPP2CA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',145949260,146238352,'NM_004576','PPP2R2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',64894886,64919126,'NM_015342','PPWD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',122452739,122551644,'NM_001136239','PRDM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',23543480,23564463,'NM_020227','PRDM9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176663440,176666556,'NM_013237','PRELID1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',145118774,145195092,'NM_138492','PRELID2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',40795237,40834054,'NM_006251','PRKAA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',35100947,35153981,'NM_001204315','PRLR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',177351841,177355849,'NM_006261','PROP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',119827917,120050863,'NM_016644','PRR16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176806401,176815893,'NM_030567','PRR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',126881207,126918679,'NM_130809','PRRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139155589,139204232,'NM_032289','PSD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',71651955,71690936,'NM_024754','PTCD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',40715788,40729594,'NM_000958','PTGER4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159781442,159788324,'NM_004219','PTTG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139473891,139479185,'NM_005859','PURA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159435469,159479030,'NM_052927','PWWP2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176660804,176663350,'NM_130781','RAB24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',57914695,58183163,'NM_138453','RAB3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',104463073,104463698,'NR_000039','RAB9BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',34941122,34951488,'NR_026591','RAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',68701394,68746387,'NM_133338','RAD17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131920514,132008212,'NM_005732','RAD50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',34723420,34868474,'NM_001145523','RAI14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',170221473,170659624,'NM_022897','RANBP17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',36284860,36337768,'NM_001161429','RANBP3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',130827206,130998828,'NM_001164390','RAPGEF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',167846040,167878887,'NM_002887','RARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',86600496,86723499,'NM_022650','RASA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179460400,179568736,'NM_175062','RASGEF1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',80292313,80557709,'NM_006909','RASGRF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150050544,150060862,'NM_018047','RBM22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',145563355,145648977,'NM_018989','RBM27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137802674,137810557,'NM_016606','REEP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',112239979,112285930,'NM_005669','REEP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140996700,141000815,'NM_173828','RELL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',95008338,95018605,'NM_173362','RFESD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',98132898,98160098,'NM_001012761','RGMB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',72957738,73273574,'NM_001177693','RGNEF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176717449,176732205,'NM_006480','RGS14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',63838207,63943877,'NM_001029875','RGS7BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',95092605,95157827,'NM_014899','RHOBTB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',38973779,39110258,'NM_152756','RICTOR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',96522326,96544761,'NM_018343','RIOK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',177490633,177508085,'NM_022762','RMND5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179315079,179431715,'NM_018434','RNF130'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54860426,54866127,'NR_001575','RNF138P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',141328634,141350040,'NM_004290','RNF14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',158516994,158567412,'NM_144726','RNF145'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',63497426,63549095,'NM_178532','RNF180'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175886305,175897027,'NM_014901','RNF44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',10494973,10518138,'NM_001201466','ROPN1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172319044,172329380,'NM_016093','RPL26L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',40867186,40871144,'NM_000997','RPL37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149803984,149809512,'NM_005617','RPS14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',81604894,81609991,'NM_001025','RPS23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',178910176,178969625,'NM_025158','RUFY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',33972247,33974780,'NM_016568','RXFP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',76181581,76252812,'NM_130772','S100Z'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',153805709,153820806,'NM_001131063','SAP30L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',133964737,133996432,'NM_016103','SAR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',77692094,77812318,'NM_004866','SCAMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',82395778,82395912,'NR_003139','SCARNA18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179949710,179951093,'NM_052863','SCGB3A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',147238466,147241949,'NM_054023','SCGB3A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',271355,309814,'NM_004168','SDHA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1625072,1647646,'NR_003263','SDHAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134012377,134091500,'NM_021982','SEC24A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',9088137,9599233,'NM_003966','SEMA5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',115807149,115938450,'NM_020796','SEMA6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',42835738,42847781,'NM_005410','SEPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132119595,132140966,'NM_001098812','SEPT8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',69356833,69364279,'NM_001178087','SERF1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79442805,79587654,'NM_001174071','SERINC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',174838119,174888227,'NM_022754','SFXN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',155686344,156117648,'NM_172244','SGCD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',64997510,65053697,'NM_019072','SGTB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',171693107,171814132,'NM_001017995','SH3PXD2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',145296318,145423072,'NM_152550','SH3RF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',148341905,148422930,'NM_024577','SH3TC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132185731,132189901,'NM_133456','SHROOM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138310308,138561964,'NM_022464','SIL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54639332,54757166,'NM_015360','SKIV2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',133519980,133540623,'NM_006930','SKP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',36187901,36219899,'NM_005983','SKP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',127447381,127553279,'NM_001046','SLC12A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1103488,1165172,'NM_006598','SLC12A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',36642213,36645156,'NM_001166696','SLC1A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131658043,131707798,'NM_003059','SLC22A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',131733299,131759205,'NM_003060','SLC22A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138730783,138746938,'NM_005847','SLC23A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140662379,140663796,'NM_031947','SLC25A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',110102652,110126385,'NM_138773','SLC25A46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',135198263,135252225,'NM_145282','SLC25A48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149320492,149347156,'NM_000112','SLC26A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',128329108,128397234,'NM_014031','SLC27A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',68425537,68436323,'NM_024055','SLC30A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176744037,176750120,'NM_001167579','SLC34A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139924603,139928867,'NM_080670','SLC35A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150807355,150852133,'NM_078483','SLC36A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150674731,150707344,'NM_181776','SLC36A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150636118,150663527,'NM_181774','SLC36A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',54957432,55043920,'NM_173514','SLC38A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',33980477,34020537,'NM_016180','SLC45A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139719970,139734906,'NM_031467','SLC4A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1278469,1299304,'NM_182632','SLC6A18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1254709,1278230,'NM_001003841','SLC6A19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1445904,1498543,'NM_001044','SLC6A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149549712,149570828,'NM_014228','SLC6A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',526333,577549,'NM_004174','SLC9A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',101597590,101660152,'NM_180991','SLCO4C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',101735550,101862619,'NM_173488','SLCO6A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',168025648,168660711,'NM_003062','SLIT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159761225,159778746,'NM_006425','SLU7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',68713442,69917303,'NR_029426','SMA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',69812625,69917305,'NR_034021','SMA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',135496434,135546321,'NM_005903','SMAD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',135493100,135498478,'NR_026763','SMAD5-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',121675718,121827693,'NM_001242935','SNCAIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175979815,175990163,'NM_003085','SNCB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138637339,138643216,'NR_003141','SNHG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',111525080,111525213,'NR_002922','SNORA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',76412014,76412152,'NR_003014','SNORA47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138642367,138642567,'NR_002915','SNORA74A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172380334,172380538,'NR_002988','SNORA74B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',9601938,9602026,'NR_003689','SNORD123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137924630,137924698,'NR_002913','SNORD63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',40868514,40868594,'NR_002583','SNORD72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180602919,180602982,'NR_002591','SNORD95'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180601423,180601495,'NR_002592','SNORD96A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',53849349,53852591,'NM_052870','SNX18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',122138648,122193701,'NM_003100','SNX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',122209058,122372801,'NM_014035','SNX24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',156985264,157012006,'NM_178424','SOX30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',151021201,151046710,'NM_003118','SPARC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138760354,138767675,'NM_194296','SPATA24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',95019775,95044470,'NM_031952','SPATA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',35653745,35707433,'NM_144722','SPEF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',147184335,147191453,'NM_003122','SPINK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',147628615,147645966,'NM_001040129','SPINK13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',147529488,147535154,'NM_001001325','SPINK14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',147423727,147497118,'NM_001127698','SPINK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',147562549,147574893,'NM_001195290','SPINK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',147672182,147675674,'NM_032566','SPINK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',147695314,147699605,'NM_001040433','SPINK9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',136338885,136862917,'NM_004598','SPOCK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',141670175,141684804,'NM_030964','SPRY4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79651545,79653416,'NM_032567','SPZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179166608,179197683,'NM_001142299','SQSTM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139909836,139917862,'NM_001035235','SRA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',6686499,6722675,'NM_001047','SRD5A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',65475840,65512470,'NM_001077199','SREK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',64049733,64100252,'NM_173829','SREK1IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',121325554,121392194,'NM_152546','SRFBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',112224783,112231988,'NM_001204196','SRP19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',80751427,81082828,'NM_012446','SSBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',100170537,100266886,'NM_005668','ST8SIA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',110861920,110876056,'NM_139164','STARD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',172674331,172689112,'NM_003714','STC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',171401678,171547951,'NM_005990','STK10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',146594771,146743961,'NM_001112724','STK32A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',32621361,32639942,'NM_006713','SUB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',75415060,75657172,'NM_014979','SV2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149977398,150012096,'NM_001166209','SYNPO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140678240,140680535,'NM_005642','TAF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',68696325,68701165,'NM_003187','TAF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',12627968,12858295,'NR_033383','TAG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',33476654,33503953,'NM_152295','TARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',9682108,9683463,'NM_019599','TAS2R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',179221676,179267462,'NM_198868','TBC1D9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',77022750,77107941,'NM_004607','TBCA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',145807065,145871262,'NM_001040006','TCERG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',133479196,133511819,'NM_001134851','TCF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149717394,149760064,'NM_001135245','TCOF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',1306286,1348162,'NM_198253','TERT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',135392482,135427406,'NM_000358','TGFBI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79366925,79414863,'NM_003248','THBS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',157090900,157099350,'NM_017872','THG1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',175319139,175328151,'NM_032361','THOC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',114942237,114966075,'NM_021649','TICAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134812456,134815988,'NM_001099221','TIFAB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',149352878,149360923,'NM_030953','TIGD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',156278870,156322844,'NM_001146726','TIMD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',170668892,170671743,'NM_021025','TLX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',139999195,140005173,'NM_018502','TMCO6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',114976803,114989775,'NM_181836','TMED7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',114942237,114989775,'NM_001164469','TMED7-TICAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176951818,176955705,'NM_017510','TMED9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',87526778,87600421,'NM_153354','TMEM161B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',82384420,82409028,'NM_174909','TMEM167A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',72452143,72463400,'NM_173490','TMEM171'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138835296,138842527,'NM_198282','TMEM173'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',72504778,72506726,'NM_153217','TMEM174'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',109783096,110090349,'NM_001039763','TMEM232'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',118719494,118758193,'NM_014350','TNFAIP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150389698,150441190,'NM_006058','TNIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',72148173,72245971,'NM_002270','TNPO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',712976,746510,'NM_007030','TPPP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',64921262,64955943,'NM_033228','TRIM23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',114488357,114544142,'NM_018700','TRIM36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180582911,180595414,'NM_201627','TRIM41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180615991,180620725,'NM_032765','TRIM52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180553529,180560536,'NM_203297','TRIM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',14196828,14562458,'NM_007118','TRIO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',945968,971164,'NM_004237','TRIP13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',135576897,135729063,'NM_001167576','TRPC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',110436910,110441621,'NR_033425','TSLP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176006993,176018665,'NM_012171','TSPAN17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',112796149,112798627,'NM_032028','TSSK1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',159368757,159425128,'NM_003314','TTC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',34875025,34935321,'NM_144725','TTC23L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',40747434,40791829,'NM_012382','TTC33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',94825354,94916465,'NM_014639','TTC37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',134237358,134265222,'NM_024715','TXNDC15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',133734768,133755698,'NM_003337','UBE2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',138920934,138988202,'NM_003339','UBE2D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',6501735,6549834,'NM_001145161','UBE2QL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',158622666,158645626,'NM_145049','UBLCP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',171569254,171643400,'NM_152277','UBTD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',35988947,36027292,'NM_152404','UGT3A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',36070875,36102780,'NM_174914','UGT3A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176264611,176366049,'NM_016290','UIMC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176170165,176240505,'NM_133369','UNC5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132230217,132232435,'NM_014402','UQCRQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',72897353,72913550,'NM_032175','UTP15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',82803248,82913878,'NM_004385','VCAN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',133335464,133368723,'NM_003374','VDAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140071044,140071142,'NR_026703','VTRNA1-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140078694,140078782,'NR_026704','VTRNA1-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140085927,140086015,'NR_026705','VTRNA1-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',135444085,135444185,'NR_030583','VTRNA2-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',110455768,110494099,'NM_139281','WDR36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',76763824,76824088,'NM_018268','WDR41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140024567,140030737,'NM_017706','WDR55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',37415168,37788531,'NM_018034','WDR70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',137447672,137455098,'NM_058244','WNT8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',167651642,167831886,'NM_001161662','WWC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',82409072,82685335,'NM_022550','XRCC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',143517919,143530471,'NM_030799','YIPF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',112877289,112958883,'NM_022828','YTHDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',76408287,76418786,'NM_032367','ZBED3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',132360575,132390139,'NM_017665','ZCCHC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',80633157,80644721,'NM_001131035','ZCCHC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',848719,904101,'NM_024786','ZDHHC11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',178255521,178292816,'NM_030613','ZFP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',180207218,180220892,'NM_001172638','ZFP62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',32390212,32480601,'NM_016107','ZFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',79739593,79811254,'NM_001105251','ZFYVE16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',140060215,140066423,'NM_144723','ZMAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',43157398,43211580,'NM_003432','ZNF131'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150254146,150264738,'NM_052860','ZNF300'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',150290190,150306339,'NR_026867','ZNF300P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',176382302,176426351,'NM_012279','ZNF346'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',178071127,178090309,'NM_005649','ZNF354A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',178219559,178244030,'NM_058230','ZNF354B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',178420212,178440297,'NM_014594','ZNF354C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',71774989,71839005,'NM_152625','ZNF366'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',178300799,178325824,'NM_001178090','ZNF454'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',121493113,121517165,'NM_207317','ZNF474'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',124000508,124108704,'NM_020747','ZNF608'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',16504627,16518894,'NM_033414','ZNF622'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',178383381,178393994,'NM_001136116','ZNF879'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5',60663856,60877756,'NM_020928','ZSWIM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5_',71262,111099,'NM_176816','CCDC125'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5_',970346,1005316,'NR_033417','GTF2H2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5_',972663,1005315,'NM_001098728','GTF2H2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5_',973040,1005292,'NM_001042490','GTF2H2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5_',1543933,1615349,'NM_022132','MCCC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5_',393127,449737,'NM_004536','NAIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5_',1007434,1030855,'NM_002538','OCLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5_',499651,517541,'NM_021967','SERF1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5_',465175,493242,'NM_000344','SMN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr5_',465171,493242,'NM_022876','SMN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44374440,44389041,'NM_020745','AARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43507466,43526141,'NM_033450','ABCC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30647148,30667288,'NM_001090','ABCF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26705149,26708256,'NM_013375','ABT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160102978,160120077,'NM_005891','ACAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',24775241,24813274,'NM_018473','ACOT13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',143785661,143813534,'NM_182503','ADAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32256722,32260077,'NM_001206934','AGER'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32243960,32253866,'NM_032741','AGPAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',161471046,161615097,'NM_020133','AGPAT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',161501153,161503004,'NR_024277','AGPAT4-IT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',135646802,135860596,'NM_001134830','AHI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',143423715,143703134,'NM_016108','AIG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',107066422,107125027,'NM_001624','AIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',151688358,151721390,'NM_144497','AKAP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',131612991,131646368,'NM_138633','AKAP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',109920751,110119108,'NM_001145128','AKD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',88441296,88468704,'NM_018064','AKIRIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',88466913,88467960,'NR_002767','AKIRIN2-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',24603175,24645414,'NM_170740','ALDH5A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',135280220,135312953,'NM_022568','ALDH8A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',111302679,111323606,'NM_001634','AMD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',90199615,90400274,'NM_014942','ANKRD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34965015,35167168,'NM_015245','ANKS1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41128917,41140608,'NM_006789','APOBEC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31731649,31733966,'NM_019101','APOM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',131936036,131947165,'NM_000045','ARG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',129939932,130073063,'NM_033515','ARHGAP18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',157140755,157573605,'NM_020732','ARID1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',109276311,109402045,'NM_032131','ARMC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',101410899,101435945,'NM_022091','ASCC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',119263627,119272034,'NM_014034','ASF1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30702591,30720427,'NM_024909','ATAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32191022,32203995,'NM_001136153','ATF6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',106739044,106880388,'NM_004849','ATG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42803291,42803910,'NR_037141','ATP6V0CP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31620206,31622604,'NM_001204078','ATP6V1G2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',16407321,16869700,'NM_001128164','ATXN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33352894,33354580,'NM_003782','B3GALT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',71627789,71723509,'NM_080742','B3GAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',90692967,91063283,'NM_021813','BACH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',57145062,57157971,'NM_004282','BAG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',69402352,70156124,'NM_001704','BAI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33648300,33656048,'NM_001188','BAK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',80873062,81112706,'NM_183050','BCKDHB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',136619693,136652682,'NM_001077440','BCLAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',107493077,107542329,'NM_001080450','BEND3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',56927731,57000101,'NM_152731','BEND6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',116924343,116973466,'NM_001139444','BET3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',55728195,55848334,'NM_021073','BMP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',7672009,7826960,'NM_001718','BMP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',3063924,3098431,'NM_004332','BPHL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33046642,33057260,'NR_037625','BRD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',118929228,118931689,'NR_002730','BRD7P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',166698397,166716476,'NM_016098','BRP44L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36272527,36308545,'NM_015695','BRPF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',38244204,38671821,'NM_152733','BTBD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26609473,26618631,'NM_001732','BTN1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26566131,26577845,'NM_078476','BTN2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26491302,26503079,'NM_001197238','BTN2A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26529597,26538795,'NR_027795','BTN2A3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26510443,26523423,'NM_007048','BTN3A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26473376,26486519,'NM_001197247','BTN3A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26548678,26561622,'NM_001242803','BTN3A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32470490,32482878,'NM_019602','BTNL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',105651391,105691742,'NM_001199563','BVES'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41996942,42008762,'NM_004053','BYSL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32090549,32111173,'NM_007293','C4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32057812,32078436,'NM_001002029','C4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34322134,34324882,'NM_001008703','C6orf1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32368452,32447634,'NM_006781','C6orf10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',146961828,147178290,'NM_024694','C6orf103'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',11821873,11887266,'NM_001143948','C6orf105'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34663047,34772603,'NM_022758','C6orf106'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43301344,43305189,'NM_006443','C6orf108'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',105692254,105724512,'NR_037157','C6orf112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',139391511,139406132,'NM_021243','C6orf115'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',165613142,165643101,'NM_144980','C6orf118'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',169844181,169848327,'NM_001029863','C6orf120'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',167928067,167940388,'NR_026773','C6orf123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',167967418,167970325,'NR_027906','C6orf124'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33773323,33787482,'NM_032340','C6orf125'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35852369,35855307,'NM_207409','C6orf126'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35856808,35863819,'NM_001010886','C6orf127'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41142508,41148166,'NM_145063','C6orf130'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42176834,42218693,'NM_001164446','C6orf132'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',47975303,48144384,'NM_207499','C6orf138'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',49626071,49627767,'NM_001145652','C6orf141'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',3667834,3697245,'NM_183373','C6orf145'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',4013591,4024456,'NM_173563','C6orf146'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',74040582,74076809,'NR_027005','C6orf147'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31186978,31188311,'NM_014070','C6orf15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43582684,43586402,'NM_001012974','C6orf154'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',88089024,88108762,'NM_020425','C6orf162'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',88111289,88131900,'NM_001010868','C6orf163'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',88163560,88166178,'NR_026784','C6orf164'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',88174408,88230910,'NM_001031743','C6orf165'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',99827513,99904252,'NM_032511','C6orf168'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',121442325,121697343,'NM_152730','C6orf170'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',127801243,127882193,'NM_001012279','C6orf174'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',110673841,110786168,'NM_001123364','C6orf186'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',130194081,130224109,'NM_001010876','C6orf191'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',133132199,133161440,'NM_052831','C6orf192'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',2567970,2580297,'NM_152554','C6orf195'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',4024438,4075998,'NM_001085401','C6orf201'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',107456099,107479239,'NM_016487','C6orf203'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',118919287,119079713,'NM_206921','C6orf204'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',169932093,169944894,'NR_026780','C6orf208'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',151815114,151832925,'NM_024573','C6orf211'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',10536003,10543041,'NR_027793','C6orf218'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',74129120,74130619,'NM_001017361','C6orf221'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36391512,36412640,'NM_001010903','C6orf222'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44076314,44081672,'NM_153246','C6orf223'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',112515366,112530686,'NM_001033564','C6orf225'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42965980,42966532,'NM_001008739','C6orf226'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',11202251,11246955,'NM_001135575','C6orf228'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31799099,31802464,'NM_025260','C6orf25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31838751,31840603,'NM_001039651','C6orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31841349,31853087,'NM_025258','C6orf27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31734053,31736528,'NM_021184','C6orf47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31910671,31915520,'NM_001040438','C6orf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',10779636,10802825,'NM_001145020','C6orf52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',71333345,71355327,'NM_145267','C6orf57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',127940011,127954653,'NM_001010905','C6orf58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',24813068,24827382,'NM_030939','C6orf62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',39179817,39190843,'NM_018322','C6orf64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',80570022,80636856,'NM_001243308','C6orf7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',169893645,169923542,'NM_018341','C6orf70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',149929220,149953760,'NM_138785','C6orf72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35812836,35824663,'NM_145028','C6orf81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36961617,37004718,'NM_152734','C6orf89'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',144227265,144301176,'NM_001013623','C6orf94'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',151856867,151984021,'NM_025059','C6orf97'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',159229606,159251373,'NM_001195032','C6orf99'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',7274328,7334941,'NM_001170693','CAGE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',163754086,163754972,'NR_037593','CAHM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',17501714,17666002,'NM_006366','CAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44234525,44260117,'NM_007058','CAPN11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',90596339,90640876,'NM_001137668','CASP8AP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',109722198,109736116,'NR_028595','CCDC162P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',37558674,37575678,'NM_138493','CCDC167'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',139136349,139156149,'NM_015439','CCDC28A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',13894759,13922771,'NM_001031713','CCDC90A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',100096983,100123411,'NM_005190','CCNC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42010648,42017530,'NM_001760','CCND3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',167456230,167472619,'NM_031409','CCR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',74462228,74594761,'NM_001159588','CD109'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',109794409,109810455,'NM_006016','CD164'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',47553483,47702955,'NM_012120','CD2AP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',14225843,14245127,'NM_004233','CD83'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',110608316,110660115,'NM_015891','CDC40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44463279,44522758,'NM_001253','CDC5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',111037873,111243105,'NM_015076','CDK19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',20642666,21340613,'NM_017774','CDKAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36754464,36763095,'NM_001220778','CDKN1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',4835224,4900777,'NM_001143971','CDYL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',49539054,49568779,'NM_018132','CENPQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',126702945,126711447,'NM_001012507','CENPW'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',109523048,109591808,'NM_001083535','CEP57L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32021699,32027840,'NM_001710','CFB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',87851940,87861543,'NM_000735','CGA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',139735089,139737478,'NM_006079','CITED2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',155626838,155639374,'NM_001001346','CLDN20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',45974165,46091556,'NM_016929','CLIC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35870737,35873080,'NM_001832','CLPS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',123359280,123426762,'NM_001010852','CLVS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',25216179,25246599,'NR_027626','CMAHP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',154768124,154873445,'NM_173515','CNKSR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43004837,43014986,'NM_006586','CNPY3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',88906303,88932486,'NM_001160259','CNR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',116546777,116553989,'NM_000493','COL10A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',75850761,75972343,'NM_004370','COL12A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',70633168,70978878,'NM_001858','COL19A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',56029346,56220337,'NM_030820','COL21A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',70982463,71069507,'NM_001851','COL9A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',99924068,99948803,'NM_017421','COQ3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',76004110,76010364,'NM_001865','COX7A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36816532,36915198,'NM_020939','CPNE5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43381188,43384508,'NM_206922','CRIP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',49909940,49942177,'NM_170609','CRISP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',49768030,49789258,'NM_001142417','CRISP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',49803053,49820109,'NM_001190986','CRISP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31741635,31745822,'NM_001320','CSNK2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132071273,132073850,'NM_001145659','CTAGE9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132311009,132314211,'NM_001901','CTGF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43113332,43129661,'NM_001168370','CUL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43257899,43300303,'NM_015089','CUL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33492296,33494043,'NM_001014840','CUTA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',84626088,84726865,'NM_016230','CYB5R4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32081390,32084664,'NR_040090','CYP21A1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',46625403,46728482,'NM_016593','CYP39A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',39868136,39980631,'NM_001201427','DAAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',168450432,168463251,'NM_214462','DACT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',117910512,117997713,'NM_173674','DCBLD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',24279961,24491499,'NM_001195610','DCDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31802795,31806018,'NM_013974','DDAH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',110820075,110843446,'NM_004032','DDO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31605974,31618231,'NM_004640','DDX39B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',74161005,74184010,'NM_018665','DDX43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35373572,35397526,'NM_022047','DEF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',50094514,50097653,'NM_001037497','DEFB110'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',50119246,50124323,'NM_001037498','DEFB112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',50044348,50045297,'NM_001037729','DEFB113'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',50035963,50039777,'NM_001037499','DEFB114'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',50021772,50025116,'NM_001166478','DEFB133'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',18332378,18372778,'NM_003472','DEK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30728874,30748809,'NM_001164239','DHX16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',163679363,163688055,'NR_033862','DKFZp451B082'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',2933199,2936404,'NR_026855','DKFZP686I15217'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43526067,43531764,'NM_206539','DLK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',170433218,170441622,'NM_005618','DLL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',38791094,39106552,'NM_001206927','DNAH8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32045566,32048011,'NM_005510','DOM3Z'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',83834103,83934909,'NM_015018','DOPEY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',74119505,74120720,'NM_001025290','DPPA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',116707975,116866135,'NM_001080976','DSE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',7486868,7531945,'NM_004415','DSP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',56430743,56615653,'NM_015548','DST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',15631784,15771268,'NR_036448','DTNBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',237100,296355,'NM_020185','DUSP22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',158977494,158985792,'NM_006519','DYNLT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',20510115,20601924,'NM_001949','E2F3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',127651549,127706447,'NM_018479','ECHDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',4060925,4080830,'NM_006117','ECI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',139158940,139266900,'NM_001195037','ECT2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',12398514,12405413,'NM_001955','EDN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',74282193,74287476,'NM_001402','EEF1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',8024626,8047827,'NM_004280','EEF1E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',7958798,8047827,'NR_037618','EEF1E1-MUTED'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52392952,52468542,'NR_033327','EFHC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31955515,31973443,'NM_025256','EHMT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',11088978,11152610,'NM_017770','ELOVL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',80681247,80714034,'NM_022726','ELOVL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',53240154,53321936,'NM_001242830','ELOVL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132170848,132257988,'NM_006208','ENPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132000134,132110243,'NM_005021','ENPP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',46205659,46222395,'NM_014936','ENPP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',46235720,46246676,'NM_021572','ENPP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',131202180,131426109,'NM_001135555','EPB41L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',94006458,94186021,'NM_004440','EPHA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',145988132,146098684,'NM_005670','EPM2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',11210707,11220057,'NM_207582','ERVFRD-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',152168500,152466101,'NM_001122741','ESR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36441948,36463555,'NM_001207041','ETV7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',430137,638109,'NM_018303','EXOC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',133604187,133894951,'NM_172105','EYA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',64487834,66473839,'NM_001142800','EYS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',159106760,159160444,'NM_001111077','EZR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',6089309,6265923,'NM_000129','F13A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',123142344,123146917,'NM_001446','FABP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',170457768,170556162,'NM_032448','FAM120B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',71192862,71327598,'NM_001162529','FAM135A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',117180052,117193579,'NM_001085480','FAM162B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',119322694,119441511,'NM_024581','FAM184A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',116956887,116986724,'NM_153036','FAM26D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',116939500,116946402,'NM_153711','FAM26E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',116889248,116891627,'NM_001010919','FAM26F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',82512165,82519147,'NM_017633','FAM46A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',3794630,3796550,'NM_012135','FAM50B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',136593860,136613142,'NM_001099286','FAM54A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',24912491,25019174,'NM_014722','FAM65B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',54819527,54914778,'NM_001010872','FAM83B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',17708496,17719929,'NM_016255','FAM8A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35528115,35542859,'NM_021922','FANCE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',5206582,5716815,'NM_006567','FARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',99428321,99502570,'NM_012160','FBXL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',146160964,146177614,'NM_032145','FBXO30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',153333350,153346433,'NM_001142522','FBXO5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',53037754,53073629,'NM_033481','FBXO9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',37081400,37104823,'NM_173558','FGD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',167332805,167374056,'NM_194429','FGFR1OP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',97117144,97171233,'NM_020482','FHL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',110119116,110253327,'NM_014845','FIG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',76074519,76260216,'NM_015687','FILIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35656311,35764697,'NM_001145777','FKBP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32204461,32206045,'NM_022110','FKBPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27400556,27401720,'NM_032030','FKSG83'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',17210467,17239582,'NM_001190766','FLJ23152'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',114332243,114349499,'NR_027060','FLJ34503'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',40420061,40431723,'NR_038887','FLJ41649'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',139054497,139060118,'NR_033896','FLJ46906'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30803489,30818432,'NM_005803','FLOT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',159510416,159613130,'NM_032532','FNDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',1555679,1559128,'NM_001453','FOXC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',1335067,1340831,'NM_001452','FOXF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',108988761,109112664,'NM_001455','FOXO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41622141,41678100,'NM_138457','FOXP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',1257674,1259993,'NM_033260','FOXQ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',116369385,116488614,'NM_002031','FRK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',168199312,168219381,'NM_001122841','FRMD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41845891,41855608,'NM_006653','FRS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',37508884,37557262,'NM_015050','FTSJD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',143857641,143874713,'NM_032020','FUCA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',96570565,96770209,'NM_006581','FUT9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',112088227,112147958,'NM_153047','FYN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',89943941,89984215,'NM_002042','GABRR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',90023957,90081686,'NM_002043','GABRR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',53470098,53517886,'NM_001498','GCLC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',53099718,53121583,'NM_003643','GCM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',10981441,10990084,'NM_004752','GCM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',10629553,10737587,'NM_145649','GCNT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',13471565,13595848,'NM_018988','GFOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',55300225,55375250,'NM_207410','GFRAL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33659453,33664781,'NR_028361','GGNBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',121798443,121812572,'NM_000165','GJA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',90660908,90662540,'NM_032602','GJA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',88049415,88095715,'NM_198568','GJB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',38751679,38778930,'NM_006708','GLO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',39124534,39163498,'NM_002062','GLP1R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',49575629,49603736,'NM_001010904','GLYATL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',1569039,2190845,'NM_001500','GMDS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',24883142,24894257,'NM_015895','GMNN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',16346789,16403759,'NM_006877','GMPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30617133,30633350,'NM_005275','GNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43036477,43039596,'NM_018960','GNMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',117988125,118030398,'NM_020399','GOPC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31736984,31741618,'NM_001199238','GPANK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',24536383,24597829,'NM_001503','GPLD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',47075771,47118041,'NM_153840','GPR110'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',47732284,47773492,'NM_153839','GPR111'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',47774247,47797716,'NM_153838','GPR115'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',46928203,46997673,'NM_001098518','GPR116'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',142664748,142809096,'NM_020455','GPR126'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',167490349,167491309,'NM_005299','GPR31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',110406990,110408616,'NM_005284','GPR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',97352608,97392074,'NM_001143957','GPR63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',117219940,117256891,'NM_148963','GPRC6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32266520,32271278,'NM_022107','GPSM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28601767,28610707,'NM_001509','GPX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28579051,28591549,'NM_182701','GPX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',101953581,102624651,'NM_175768','GRIK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',146390474,146800424,'NM_001114329','GRM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34097605,34209421,'NM_000841','GRM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52764136,52776623,'NM_145740','GSTA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52722843,52736320,'NM_000846','GSTA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52869397,52882455,'NM_000847','GSTA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52950704,52968137,'NM_001512','GSTA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52804499,52818852,'NM_153699','GSTA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52712219,52717916,'NR_033760','GSTA7P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',111474314,111475450,'NR_002932','GSTM2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30983955,30989859,'NM_001517','GTF2H4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',158509366,158540364,'NM_207118','GTF2H5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',111386455,111395784,'NM_138408','GTF3C6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43696195,43704914,'NM_019096','GTPBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42231121,42255772,'NM_000409','GUCA1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42258999,42270672,'NM_002098','GUCA1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26947244,27032312,'NR_003504','GUSBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',58354117,58395683,'NR_003660','GUSBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',105282660,105414487,'NM_020771','HACE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',135398687,135417729,'NM_001145207','HBS1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26629912,26635591,'NR_026790','HCG11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30363152,30402906,'NR_024052','HCG18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31129962,31135632,'NR_003948','HCG22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32466264,32469446,'NR_044996','HCG23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33325290,33330645,'NR_044997','HCG25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31546984,31548164,'NR_002812','HCG26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31273515,31279724,'NR_026791','HCG27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29866786,29868829,'NR_002139','HCG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30000347,30001407,'NR_001317','HCG4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30050870,30054156,'NR_028032','HCG9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',55147029,55255377,'NM_001526','HCRTR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',114364012,114399052,'NM_001527','HDAC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',125638194,125664981,'NM_016063','HDDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',22677656,22678729,'NM_138574','HDGFL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',138767028,138776275,'NM_014320','HEBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',139497941,139543639,'NM_016217','HECA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',126112424,126124108,'NM_012259','HEY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26195487,26203448,'NM_139006','HFE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',168119452,168120468,'NM_001129895','HGC6.3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',126319553,126343082,'NM_138571','HINT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26125238,26126019,'NM_005325','HIST1H1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27942548,27943338,'NM_005322','HIST1H1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26163946,26164678,'NM_005319','HIST1H1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26342418,26343195,'NM_005320','HIST1H1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26264537,26265322,'NM_005321','HIST1H1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26215618,26216343,'NM_005323','HIST1H1T'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',25834269,25834769,'NM_170745','HIST1H2AA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26141298,26141775,'NM_003513','HIST1H2AB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26232351,26232897,'NM_003512','HIST1H2AC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26306990,26307450,'NM_021065','HIST1H2AD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26325126,26325690,'NM_021052','HIST1H2AE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27208795,27209293,'NM_021064','HIST1H2AG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27222886,27223325,'NM_080596','HIST1H2AH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27883955,27884424,'NM_003509','HIST1H2AI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27890058,27890497,'NM_021066','HIST1H2AJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27913636,27914096,'NM_003510','HIST1H2AK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27941085,27941555,'NM_003511','HIST1H2AL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27968455,27968942,'NM_003514','HIST1H2AM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',25840639,25841068,'NR_045125','HIST1H2APS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',25835115,25835552,'NM_170610','HIST1H2BA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26151433,26151864,'NM_021062','HIST1H2BB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26231673,26232111,'NM_003526','HIST1H2BC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26266327,26279555,'NM_138720','HIST1H2BD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26292002,26292437,'NM_003523','HIST1H2BE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26307765,26308195,'NM_003522','HIST1H2BF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26324407,26324851,'NM_003518','HIST1H2BG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26359857,26360282,'NM_003524','HIST1H2BH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26381182,26381619,'NM_003525','HIST1H2BI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27208073,27208554,'NM_021058','HIST1H2BJ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27214050,27222616,'NM_080593','HIST1H2BK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27883235,27883688,'NM_003519','HIST1H2BL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27890800,27891246,'NM_003521','HIST1H2BM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27914418,27914867,'NM_003520','HIST1H2BN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27969181,27969648,'NM_003527','HIST1H2BO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26128696,26129165,'NM_003529','HIST1H3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26139795,26140267,'NM_003537','HIST1H3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26153617,26154076,'NM_003531','HIST1H3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26304990,26307443,'NM_003530','HIST1H3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26333361,26333823,'NM_003532','HIST1H3E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26358348,26358814,'NM_021018','HIST1H3F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26379124,26379591,'NM_003534','HIST1H3G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27885820,27886293,'NM_003536','HIST1H3H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27947601,27948078,'NM_003533','HIST1H3I'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27966071,27966549,'NM_003535','HIST1H3J'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26129885,26130257,'NM_003538','HIST1H4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26135102,26135459,'NM_003544','HIST1H4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26212154,26212544,'NM_003542','HIST1H4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26296916,26297283,'NM_003539','HIST1H4D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26312851,26313228,'NM_003545','HIST1H4E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26348632,26349000,'NM_003540','HIST1H4F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26354817,26355184,'NM_003547','HIST1H4G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26393332,26393706,'NM_003543','HIST1H4H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27215066,27215436,'NM_003495','HIST1H4I'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27899881,27900237,'NM_021968','HIST1H4J'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27906930,27907284,'NM_003541','HIST1H4K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27948904,27949268,'NM_003546','HIST1H4L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',12120709,12273218,'NM_002114','HIVEP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',143114296,143308031,'NM_006734','HIVEP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31429627,31432968,'NM_005514','HLA-B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31344504,31347892,'NM_002117','HLA-C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33024368,33028877,'NM_006120','HLA-DMA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33079937,33085367,'NM_002119','HLA-DOA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33140323,33149432,'NM_033554','HLA-DPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33151680,33165451,'NM_002121','HLA-DPB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33188270,33204868,'NR_001435','HLA-DPB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32713160,32719407,'NM_002122','HLA-DQA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32817140,32822642,'NM_020056','HLA-DQA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32735218,32742444,'NM_002123','HLA-DQB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32831852,32839308,'NM_001198858','HLA-DQB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32515596,32520802,'NM_019111','HLA-DRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32593131,32605984,'NM_002125','HLA-DRB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32628467,32635757,'NR_001298','HLA-DRB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30565161,30569961,'NM_005516','HLA-E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29802356,29824805,'NR_026972','HLA-F-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29902734,29906878,'NM_002127','HLA-G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29963361,29966835,'NR_001434','HLA-H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30081726,30085712,'NR_024240','HLA-J'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30335317,30342707,'NR_027822','HLA-L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34312554,34321986,'NM_002131','HMGA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',134476800,134480511,'NR_037938','HMGA1P7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',55407129,55551971,'NM_019036','HMGCLL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',79967680,80001174,'NM_138730','HMGN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26646550,26655143,'NM_006353','HMGN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',114483442,114490734,'NM_153612','HS3ST5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33280396,33282585,'NM_014234','HSD17B8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',122762394,122795963,'NM_004506','HSF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44322826,44329592,'NM_007355','HSP90AB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31891269,31893698,'NM_005345','HSPA1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31903490,31906010,'NM_005346','HSPA1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31885374,31890814,'NM_005527','HSPA1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',78228666,78229839,'NM_000863','HTR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',87703742,87783116,'NM_000865','HTR1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',8597440,8599080,'NR_004855','HULC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',600938,601964,'NM_148959','HUS1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',144365727,144371560,'NR_002768','HYMAI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',82936674,83014167,'NM_015525','IBTK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52974056,53034559,'NM_014920','ICK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',19945595,19948894,'NM_001546','ID4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30818954,30820306,'NM_003897','IER3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29826562,29826904,'NR_001590','IFITM4P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',137560313,137582260,'NM_000416','IFNGR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160310120,160447573,'NM_000876','IGF2R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52159143,52163395,'NM_002190','IL17A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52209442,52217257,'NM_052872','IL17F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',137362800,137407991,'NM_014432','IL20RA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',137506649,137536478,'NM_181310','IL22RA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',76687781,76839055,'NM_001563','IMPG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33797420,33822740,'NM_001142883','IP6K3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',154517309,154719592,'NM_015553','IPCEF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',79633907,79665039,'NM_001010844','IRAK1BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',336738,356443,'NM_002460','IRF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33697133,33772326,'NM_002224','ITPR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150731720,150767458,'NM_001164695','IYD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',15354505,15630232,'NM_004973','JARID2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',24465109,24466491,'NM_181337','KAAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',149957703,150011633,'NM_007044','KATNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',39390451,39398308,'NM_032115','KCNK16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',39374754,39390215,'NM_001135111','KCNK17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',39264724,39305229,'NM_003740','KCNK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',73388291,73965294,'NM_001160130','KCNQ5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36518521,36566293,'NM_173562','KCTD20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',18263597,18332063,'NM_153042','KDM1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',74007758,74029628,'NM_030568','KHDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',73989988,73991896,'NM_001126063','KHDC1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',62447823,63054059,'NM_152688','KHDRBS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42896771,42944274,'NM_015349','KIAA0240'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',24652310,24754362,'NM_014809','KIAA0319'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',127801243,127822228,'NM_014702','KIAA0408'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',84890678,84994054,'NM_014895','KIAA1009'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',138524745,138707493,'NM_020340','KIAA1244'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',57019342,57027982,'NM_020931','KIAA1586'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',111687174,111696954,'NM_153369','KIAA1919'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30752144,30763651,'NM_133471','KIAA1949'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',17867392,18095833,'NM_001105568','KIF13A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',168161401,168188618,'NM_030615','KIF25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',39410853,39801159,'NM_145027','KIF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33467290,33485677,'NM_002263','KIFC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43135606,43150811,'NM_201523','KLC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43090199,43097014,'NM_001242872','KLHDC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',53620657,53638465,'NM_001003760','KLHL31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',97479216,97695351,'NM_052904','KLHL32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',117109059,117169723,'NM_002269','KPNA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',130381420,130504287,'NM_001007102','L3MBTL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',108722790,108950944,'NM_145315','LACE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',129245978,129879403,'NM_000426','LAMA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',112535826,112682521,'NM_002290','LAMA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150023743,150081085,'NM_004690','LATS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',80251426,80303866,'NM_001122769','LCA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33846967,33862697,'NM_001143944','LEMD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',64043814,64087841,'NM_001143940','LGSN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35881048,35899830,'NM_182548','LHFPL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',105511615,105637899,'NM_001004317','LIN28B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',109179549,109197838,'NR_033376','LINC00222'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27032750,27099732,'NR_026775','LINC00240'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',169930810,169940846,'NR_026781','LINC00242'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',135860631,136053669,'NR_026805','LINC00271'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',133450911,133469410,'NR_026969','LINC00326'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33661860,33669093,'NR_027908','LINC00336'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',21774653,22302595,'NR_015410','LINC00340'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',72180869,72187169,'NR_026807','LINC00472'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',166272937,166321517,'NR_026860','LINC00473'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',70442361,70563770,'NM_018368','LMBRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',149317087,149327513,'NR_038408','LOC100128176'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160101280,160103354,'NR_037166','LOC100129518'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',10520536,10524388,'NR_033910','LOC100130275'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',13387505,13403797,'NM_001242698','LOC100130357'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',100075590,100087780,'NM_001195131','LOC100130890'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',38982248,39028861,'NR_038401','LOC100131047'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27837501,27838945,'NR_038929','LOC100131289'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43966742,44013922,'NR_024478','LOC100132354'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',140133902,140223301,'NR_038399','LOC100132735'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27095123,27096064,'NR_026776','LOC100270746'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',119210563,119211274,'NR_037662','LOC100287632'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',46822612,46834913,'NM_001162435','LOC100287718'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',80000109,80003236,'NR_040671','LOC100288198'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',166676108,166684947,'NR_040022','LOC100289495'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32969930,32979513,'NR_037178','LOC100294145'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',107272019,107341993,'NR_033557','LOC100422737'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',8380854,8657525,'NR_038979','LOC100506207'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',11151976,11187363,'NR_038963','LOC100506409'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',76051449,76058300,'NR_040081','LOC100506804'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27769792,27785980,'NR_038293','LOC100507173'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',3128050,3141000,'NR_038295','LOC100507194'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',131190237,131199968,'NM_001195597','LOC100507203'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132496810,132532209,'NR_038981','LOC100507254'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29605161,29609324,'NR_037181','LOC100507362'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',139088040,139136509,'NM_001242740','LOC100507462'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32919840,32922255,'NR_037173','LOC100507463'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',143329251,143400412,'NR_038987','LOC100507489'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32228556,32230120,'NR_037170','LOC100507547'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',146097697,146249414,'NR_038246','LOC100507557'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33965265,33972662,'NR_038989','LOC100507584'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150226326,150282337,'NR_045126','LOC100652739'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',142889284,143000666,'NR_027311','LOC153910'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',134800546,134866851,'NR_038216','LOC154092'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',170405346,170413582,'NR_002787','LOC154449'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41176750,41216551,'NR_026938','LOC221442'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',143917159,143932169,'NR_027113','LOC285740'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',114295870,114301205,'NR_038863','LOC285758'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',906240,1046567,'NR_027115','LOC285768'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',163651006,163665495,'NR_028390','LOC285796'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26580150,26590716,'NR_038992','LOC285819'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35802516,35812702,'NR_027117','LOC285847'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',2965388,2970004,'NR_033884','LOC401233'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28935380,28939433,'NR_033379','LOC401242'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',166321028,166323093,'NR_027284','LOC441177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29867661,29873563,'NM_001207043','LOC554223'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',126037197,126083057,'NR_038906','LOC643623'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',139831824,139837426,'NR_033919','LOC645434'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',100548634,100631016,'NR_038384','LOC728012'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',147164497,147166653,'NR_003954','LOC729176'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',22242809,22255401,'NR_034143','LOC729177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',147204217,147567443,'NR_034115','LOC729178'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160434103,160437234,'NR_003288','LOC729603'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52637157,52641910,'NR_024403','LOC730101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160872504,161007397,'NM_005577','LPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160808207,160852146,'NR_028092','LPAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',40467350,40663104,'NM_020737','LRFN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150181586,150227173,'NM_032832','LRP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',53767736,53896878,'NM_018214','LRRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',25387634,25728737,'NM_017640','LRRC16A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31648071,31650077,'NM_000595','LTA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31656314,31658181,'NM_002341','LTB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',144206200,144226636,'NM_032860','LTV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31746706,31748206,'NM_021221','LY6G5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31752439,31756129,'NM_025262','LY6G5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31794403,31797490,'NM_025261','LY6G6C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31791111,31793560,'NM_021246','LY6G6D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31782662,31786351,'NM_001003693','LY6G6F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',6533932,6600215,'NM_004271','LY86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',6291696,6568058,'NR_026970','LY86-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',90398663,90404937,'NR_028494','LYRM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',5053651,5206171,'NM_020408','LYRM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43705256,43716666,'NM_001003690','MAD2L1BP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',10870941,10946774,'NM_005906','MAK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',119540965,119712625,'NM_005907','MAN1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',96132093,96164049,'NM_024641','MANEA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',161332811,161458407,'NM_005922','MAP3K4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',136919879,137155349,'NM_005923','MAP3K5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',91282073,91353628,'NM_003188','MAP3K7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',136705111,136889044,'NM_001198609','MAP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36206239,36215820,'NM_002754','MAPK13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36103431,36186991,'NM_001315','MAPK14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',114285219,114291345,'NM_002356','MARCKS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160247963,160249097,'NM_002377','MAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29562521,29563658,'NM_052967','MAS1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',74191576,74218764,'NM_138441','MB21D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',20208913,20320649,'NM_001080480','MBOAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',66554492,66556097,'NR_026540','MCART3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31604717,31605987,'NM_001011700','MCCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',100474506,100548835,'NM_032503','MCHR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52236770,52257541,'NM_002388','MCM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',119241314,119294602,'NM_017696','MCM9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30775562,30793437,'NM_014641','MDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41714172,41729960,'NM_005586','MDFI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',37708261,37773744,'NM_153487','MDGA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',90409951,90586163,'NM_014611','MDN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',83976828,84197657,'NM_002395','ME1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43087944,43089596,'NM_014623','MEA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41981069,41996855,'NM_004275','MED20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',131949565,131991056,'NM_004830','MED23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',46869052,46915478,'NM_005588','MEP1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',134183977,134216823,'NR_027030','MGC34034'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',2799889,2821743,'NR_033851','MGC39372'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',109871958,109883883,'NM_001159291','MICAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32032594,32032696,'NR_031601','MIR1236'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34075726,34075806,'NR_031681','MIR1275'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52121679,52121798,'NR_029903','MIR133B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',166842831,166842911,'NR_031734','MIR1913'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52117105,52117191,'NR_029713','MIR206'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',98579127,98579216,'NR_031579','MIR2113'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33283589,33283699,'NR_029633','MIR219-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',72169974,72170045,'NR_029504','MIR30A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',72143383,72143455,'NR_029598','MIR30C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27223383,27223446,'NR_036096','MIR3143'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',138798042,138798124,'NR_036099','MIR3145'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',135342168,135342263,'NR_037435','MIR3662'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',140568081,140568156,'NR_037441','MIR3668'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',5093465,5093555,'NR_037462','MIR3691'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',157870151,157870220,'NR_037463','MIR3692'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',159105680,159105773,'NR_037482','MIR3918'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36698190,36698267,'NR_037491','MIR3925'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',167331284,167331390,'NR_037504','MIR3939'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',73734130,73734197,'NR_036244','MIR4282'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',37631119,37631176,'NR_039669','MIR4462'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',91079181,91079273,'NR_039671','MIR4464'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',141046643,141046713,'NR_039675','MIR4465'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',157142503,157142557,'NR_039676','MIR4466'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',16249756,16249840,'NR_039782','MIR4639'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30966638,30966728,'NR_039783','MIR4640'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41674429,41674509,'NR_039784','MIR4641'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44511355,44511437,'NR_039785','MIR4642'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',92288098,92288176,'NR_039786','MIR4643'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',170481773,170481857,'NR_039787','MIR4644'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',2799263,2799340,'NR_039788','MIR4645'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31776784,31776847,'NR_039789','MIR4646'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44329920,44330000,'NR_039790','MIR4647'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',18679993,18680090,'NR_030312','MIR548A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',119431910,119432007,'NR_030315','MIR548B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',45273388,45273485,'NR_030313','MIR586'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30660087,30660173,'NR_030615','MIR877'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',53991672,54239037,'NM_138569','MLIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',167970519,168108642,'NM_001040000','MLLT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33870426,33879771,'NM_002418','MLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',97696757,97837773,'NM_198468','MMS22L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',39980011,40003433,'NM_005943','MOCS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29732736,29748128,'NM_002433','MOG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132658886,132764357,'NM_015529','MOXD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',84800138,84857324,'NM_138409','MRAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44189349,44203169,'NM_032111','MRPL14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160131481,160139451,'NM_014161','MRPL18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43129744,43135220,'NM_015950','MRPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42282516,42293611,'NM_018141','MRPS10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43746911,43763527,'NM_001193343','MRPS18A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',24511131,24533795,'NM_020662','MRS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',37043894,37061927,'NM_014341','MTCH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',151228507,151464716,'NM_015440','MTHFD1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',74228174,74267900,'NM_133645','MTO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',153350092,153365618,'NM_001114184','MTRF1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31059463,31065654,'NM_001010909','MUC21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',49506031,49539000,'NM_000255','MUT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',7958798,8009646,'NM_201280','MUTED'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',7826481,8009646,'NR_037616','MUTED-TXNDC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',135544145,135582004,'NM_001161660','MYB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',153060722,153087408,'NM_025107','MYCT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',16237295,16256457,'NM_013262','MYLIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',2608861,2696153,'NM_001012418','MYLK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',76515628,76685974,'NM_004999','MYO6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',126153601,126294869,'NM_001122842','NCOA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41411505,41426603,'NM_001199509','NCR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',97443907,97452488,'NM_014165','NDUFAF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',11291516,11490567,'NM_001142393','NEDD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31934807,31938688,'NM_000434','NEU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44333880,44341503,'NM_004556','NFKBIE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41148684,41178124,'NM_002505','NFYA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',137344988,137356061,'NR_027994','NHEG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',18228696,18230830,'NM_198586','NHLRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',138784873,138862272,'NM_001144060','NHSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',124166767,125188485,'NM_001040214','NKAIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28335076,28336715,'NM_001007531','NKAPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',142438437,142451629,'NM_002511','NMBR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',13723537,13729106,'NM_016167','NOL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32270597,32299822,'NM_004557','NOTCH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',155758193,155818729,'NM_015718','NOX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',2945065,2964993,'NM_000904','NQO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',108593907,108616706,'NM_003269','NR2E1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30763804,30766748,'NM_007243','NRM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',5943231,5952632,'NM_016588','NRN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',24234392,24255736,'NM_080723','NRSN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',116528691,116673546,'NM_152729','NT5DC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',86216020,86262228,'NM_002526','NT5E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34362950,34468435,'NM_006703','NUDT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',17723247,17814797,'NM_005124','NUP153'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150087149,150109381,'NM_198887','NUP43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',118103309,118138579,'NM_138459','NUS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',72055197,72068694,'NM_024576','OGFRL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',137855028,137857224,'NM_175747','OLIG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',74135000,74136236,'NM_001080507','OOEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',47857733,47902075,'NM_181744','OPN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',154373323,154482286,'NM_001145279','OPRM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29515694,29516733,'NM_013941','OR10C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29501259,29503488,'NM_013937','OR11A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29472394,29473427,'NM_013936','OR12D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29382445,29383411,'NM_030946','OR14J1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132063301,132064234,'NM_030908','OR2A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27986941,27988153,'NM_033057','OR2B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28032997,28033939,'NM_012367','OR2B6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29534208,29540078,'NM_030883','OR2H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29663661,29664724,'NM_007160','OR2H2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29187646,29188582,'NM_001005216','OR2J3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29119968,29120931,'NM_030903','OR2W1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29430985,29432033,'NM_030876','OR5V1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',88356503,88433891,'NM_012381','ORC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',159182145,159198652,'NR_028496','OSTCP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',108469305,108502634,'NM_014028','OSTM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',163068153,163656514,'NM_152410','PACRG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34590626,34612017,'NM_001199583','PACSIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',10803173,10817956,'NM_017906','PAK1IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52334884,52380534,'NM_133367','PAQR8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',161688579,163068824,'NM_004562','PARK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',138578819,138581320,'NM_021635','PBOV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32260487,32265941,'NM_002586','PBX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150112523,150174250,'NM_005389','PCMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',170732759,170735705,'NM_001199461','PDCD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',165660767,165995574,'NM_006661','PDE10A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',136214526,136558402,'NM_018945','PDE7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',107580453,107887472,'NM_020381','PDSS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',138451334,138470353,'NM_022121','PERP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',143813610,143853444,'NM_003630','PEX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43039588,43054959,'NM_000287','PEX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',137185394,137276765,'NM_000288','PEX7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28357292,28378305,'NM_001184743','PGBD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41816553,41823117,'NM_001166424','PGC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',49861322,49863012,'NM_138733','PGK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',83932567,83959731,'NM_001199919','PGM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',12825022,13396054,'NM_030948','PHACTR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',144040794,144194015,'NM_001100165','PHACTR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33486750,33492208,'NM_002636','PHF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',169845925,169866031,'NM_018288','PHF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',64414389,64482364,'NM_015153','PHF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',79700854,79844730,'NM_017934','PHIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',37030186,37040591,'NM_153370','PI16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',37245899,37251182,'NM_002648','PIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',7931333,7935576,'NR_027712','PIP5K1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',51693605,52060382,'NM_170724','PKHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',122973075,123089217,'NM_181795','PKIB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',46780011,46811389,'NM_001168357','PLA2G7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',144303129,144371234,'NM_001080956','PLAGL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150962691,151206492,'NM_001029884','PLEKHG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',161043214,161095075,'NM_000301','PLG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',118976134,118988280,'NM_002667','PLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',89912487,89932003,'NM_001010853','PM20D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',99954561,99979928,'NM_015491','PNISR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160141290,160161725,'NM_173516','PNLDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36346214,36384350,'NM_001145717','PNPLA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',89847147,89851598,'NM_006813','PNRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43651855,43696238,'NM_006502','POLH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43592754,43597224,'NM_203290','POLR1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27384820,27387990,'NM_033482','POM121L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',105712467,105730823,'NR_024539','POPDC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',99389300,99393387,'NM_005604','POU3F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31240092,31242594,'NM_001173531','POU5F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35418312,35501151,'NM_177435','PPARD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36930583,36950778,'NM_016059','PPIL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',149867323,149908931,'NM_139126','PPIL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',109818110,109869067,'NM_173672','PPIL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30142910,30146087,'NM_021959','PPP1R11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150505880,150613221,'NM_030949','PPP1R14C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',5030718,5032454,'NM_001145115','PPP1R3G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43060307,43088058,'NM_006245','PPP2R5D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',106653507,106664504,'NM_182907','PRDM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',100161370,100170175,'NM_021620','PRDM13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',105832134,105957692,'NM_002726','PREP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41856477,41863088,'NM_013397','PRICKLE4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',57290380,57621335,'NM_000947','PRIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',22395451,22411061,'NM_001163558','PRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',3966567,4010216,'NM_003913','PRPF4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42772310,42798336,'NM_000322','PRPH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',166639157,166641861,'NM_175922','PRR18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30632464,30640452,'NM_025263','PRR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32224117,32227698,'NM_030651','PRRT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27323480,27332378,'NM_005865','PRSS16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',84278912,84292140,'NM_001170423','PRSS35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',170686128,170704342,'NM_002793','PSMB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32929915,32935606,'NM_002800','PSMB9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',3204160,3209096,'NM_001135750','PSMG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31213289,31215106,'NM_014069','PSORS1C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31249490,31253655,'NR_026816','PSORS1C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42991704,43001553,'NM_001243170','PTCRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43152006,43237435,'NM_152881','PTK7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',64339878,64351448,'NM_003463','PTP4A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',128331616,128883512,'NM_002844','PTPRK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36466306,36518644,'NM_152990','PXT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',163755664,163919618,'NM_206855','QKI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',107184133,107222985,'NM_018292','QRSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',57161540,57195037,'NM_016277','RAB23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',146906520,146917779,'NM_006834','RAB32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150251293,150253863,'NM_001243325','RAET1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150279706,150285907,'NM_001001788','RAET1G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150360847,150367973,'NR_024045','RAET1K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150382958,150388361,'NM_130900','RAET1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',13729708,13819775,'NM_005493','RANBP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',88280814,88356454,'NM_020320','RARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',17390910,17402078,'NM_153020','RBM24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',46296427,46401490,'NM_005822','RCAN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32027842,32034843,'NM_002904','RDBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',139267312,139351091,'NM_031922','REPS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',111726926,111911107,'NM_002912','REV3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',112775224,112779191,'NM_001013734','RFPL4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',117305068,117360019,'NM_173560','RFX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33367408,33375143,'NM_001243738','RGL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',153373724,153494082,'NM_012419','RGS17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',49680848,49712546,'NM_000324','RHAG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',73133152,73169566,'NM_001168411','RIMS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',7335060,7363269,'NM_031480','RIOK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',3022056,3060420,'NM_003804','RIPK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',84619703,84623953,'NM_001009994','RIPPLY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',151767681,151815009,'NM_017909','RMND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',167262993,167290067,'NM_003730','RNASET2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',18495559,18577084,'NM_182757','RNF144B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',127629575,127651398,'NM_001242844','RNF146'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',14032655,14088219,'NM_001165034','RNF182'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',125346212,125446360,'NM_152553','RNF217'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30146021,30151605,'NM_170769','RNF39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32254139,32256548,'NM_006913','RNF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32254209,32256545,'NR_003129','RNF5P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',37429725,37470492,'NM_003958','RNF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',89376707,89730067,'NM_003800','RNGTT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',117716222,117853711,'NM_002944','ROS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',111409983,111453487,'NM_032194','RPF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35544155,35546536,'NM_007104','RPL10A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42955648,42962709,'NM_198486','RPL7L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30420884,30422614,'NM_024839','RPP21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',4940278,4949270,'NM_006638','RPP40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34493208,34501796,'NM_001203245','RPS10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34362950,34501880,'NM_001202470','RPS10-NUDT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',133177400,133180396,'NM_001016','RPS12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',166742843,166960716,'NM_021135','RPS6KA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',90131053,90178714,'NM_021244','RRAGD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',7053084,7197212,'NM_001003700','RREB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43097362,43105315,'NM_033112','RRP36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',159318253,159341186,'NM_031924','RSPH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',117044334,117060841,'NM_001161664','RSPH4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43720744,43746726,'NM_001193341','RSPH9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',127481740,127559877,'NM_032784','RSPO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',107125595,107184066,'NM_032730','RTN4IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',45404031,45626797,'NM_001015051','RUNX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',116999275,117021129,'NM_016104','RWDD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',83959750,83962975,'NM_033411','RWDD2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',130545825,130578187,'NM_152552','SAMD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',147871520,147932850,'NM_001030060','SAMD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',148705421,148914877,'NM_015278','SASH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',155096203,155196886,'NM_014892','SCAF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28647385,28663091,'NM_052923','SCAND3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',8031639,8031765,'NR_003703','SCARNA27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',25760407,25809987,'NM_006998','SCGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',108130056,108252214,'NM_198081','SCML4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35290167,35326587,'NM_152753','SCUBE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',108295652,108386175,'NM_007214','SEC63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',76368341,76484714,'NM_001100409','SENP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',158450523,158509300,'NM_032861','SERAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',122806191,122834651,'NM_020755','SERINC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',2778732,2787080,'NM_030666','SERPINB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',2893391,2917398,'NM_004568','SERPINB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',2832502,2848544,'NM_004155','SERPINB9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',109414332,109436884,'NM_001199934','SESN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',144457710,144458447,'NM_031287','SF3B5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',166653505,166675981,'NM_145169','SFT2D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31007105,31007931,'NM_205854','SFTA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',134532076,134537727,'NM_005627','SGK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',80397718,80470088,'NM_031469','SH3BGRL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',146247636,146326926,'NM_173082','SHPRH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',100943470,101018272,'NM_005068','SIM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',13682739,13723369,'NM_001242827','SIRT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32034559,32045511,'NM_006929','SKIV2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',111515473,111651299,'NM_018593','SLC16A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',25891104,25940266,'NM_005074','SLC17A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26020962,26038925,'NM_005835','SLC17A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',25953306,25982450,'NM_001098486','SLC17A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',25862905,25889382,'NM_005495','SLC17A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',74359822,74420458,'NM_012434','SLC17A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160462852,160499740,'NM_003057','SLC22A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',110852600,110904537,'NM_033125','SLC22A16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160557783,160599953,'NM_003058','SLC22A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',3214206,3401792,'NM_015482','SLC22A23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160689414,160796004,'NM_021977','SLC22A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43373975,43381254,'NM_006672','SLC22A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',46728610,46753886,'NM_001204052','SLC25A27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36019268,36100283,'NM_001193476','SLC26A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44295219,44309866,'NM_004955','SLC29A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',134350411,134415482,'NM_145176','SLC2A12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',88239361,88278776,'NM_006416','SLC35A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44329815,44333261,'NM_178148','SLC35B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',8358299,8380793,'NM_001142541','SLC35B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',137285094,137288469,'NM_001008783','SLC35D3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',118335381,118745532,'NM_001029858','SLC35F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33276580,33280192,'NM_006979','SLC39A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',71434199,71628437,'NM_021940','SMAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',168584679,168810599,'NM_022138','SMOC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',109868623,109871815,'NM_003080','SMPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',123151669,123172563,'NM_006714','SMPDL3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',84319323,84475566,'NM_001242792','SNAP91'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',86443443,86445170,'NR_003038','SNHG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160121271,160121403,'NR_002960','SNORA20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160126615,160126755,'NR_002965','SNORA29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',133180050,133180183,'NR_002436','SNORA33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31698834,31698966,'NR_002971','SNORA38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',133179633,133179709,'NR_002435','SNORD100'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',133178138,133178211,'NR_002434','SNORD101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31612129,31612205,'NR_003140','SNORD117'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29658007,29658084,'NR_003049','SNORD32B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31911018,31911082,'NR_002745','SNORD48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',86443730,86443805,'NR_002743','SNORD50A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',86444025,86444096,'NR_003044','SNORD50B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31912831,31912895,'NR_002742','SNORD52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31616856,31616934,'NR_003065','SNORD84'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',7535430,7557199,'NM_152551','SNRNP48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34832848,34849612,'NR_029472','SNRPC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',86271933,86360348,'NM_020468','SNX14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',108639409,108689157,'NM_003795','SNX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',158164281,158286097,'NM_016224','SNX9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',107918009,108089206,'NM_018013','SOBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160022744,160034343,'NM_000636','SOD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',21701950,21706828,'NM_003107','SOX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',88814225,88833269,'NM_030960','SPACA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44418374,44452882,'NM_145026','SPATS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34613557,34632069,'NM_012391','SPDEF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43246897,43257222,'NM_003131','SRF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35908788,35996935,'NM_003137','SRPK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',89862396,89884519,'NM_080743','SRSF12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36670067,36680222,'NM_003017','SRSF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',7226286,7258540,'NM_003144','SSR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32046930,32057202,'NR_026717','STK19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',36569646,36623225,'NM_007271','STK38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',125271087,125325872,'NR_026876','STL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',144513346,144554769,'NM_003764','STX11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132820355,132876030,'NM_003569','STX7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',147567186,147753305,'NM_001127715','STXBP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',149763187,149763875,'NM_001002255','SUMO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44905427,45453553,'NM_003599','SUPT3H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',10995049,11082527,'NM_001040274','SYCP2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',86374220,86409327,'NM_001159674','SYNCRIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',152484511,153000227,'NM_182961','SYNE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33495824,33529444,'NM_006772','SYNGAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',158358067,158440195,'NM_001178088','SYNJ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',158991033,159105896,'NM_001242395','SYTL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',166491075,166502121,'NM_003181','T'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',133007815,133008835,'NM_138327','TAAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132979981,132980925,'NM_014626','TAAR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132971056,132972134,'NR_028511','TAAR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132951423,132952570,'NM_003967','TAAR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132933153,132934191,'NM_175067','TAAR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132915524,132916553,'NM_053278','TAAR8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',132901119,132902168,'NM_175057','TAAR9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',149681128,149774440,'NM_015093','TAB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34953532,34963797,'NM_005643','TAF11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42126228,42156622,'NM_138572','TAF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',159379931,159386172,'NM_138810','TAGAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',37333525,37408724,'NM_017772','TBC1D22B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',13413162,13436766,'NM_001143966','TBC1D7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42820211,42821862,'NM_003192','TBCC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',170705345,170723883,'NM_001172085','TBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',134315993,134350322,'NM_004865','TBPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',85500875,85530618,'NM_001080508','TBX18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31234281,31239971,'NM_001077511','TCF19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',134251951,134258368,'NM_198392','TCF21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160119519,160130725,'NM_030752','TCP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',167706566,167717988,'NM_004610','TCP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',167504070,167516386,'NM_001145121','TCP10L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35193826,35217165,'NM_018679','TCP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44355874,44373436,'NM_182539','TCTE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',169882139,169893563,'NM_174910','TCTE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',24758183,24775094,'NM_016614','TDP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',46763570,46780015,'NM_001168359','TDRD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',40454140,40455609,'NR_024015','TDRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35549351,35572839,'NM_003214','TEAD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',10504901,10523456,'NM_003220','TFAP2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',50894397,50923285,'NM_003221','TFAP2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',50789215,50848705,'NM_172238','TFAP2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',155618955,155677309,'NM_016020','TFB1M'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41759693,41811975,'NM_001167827','TFEB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',169357799,169396062,'NM_003247','THBS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',128071031,128281469,'NM_001164687','THEMIS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',155453114,155620549,'NM_012454','TIAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',54281161,54362909,'NM_014464','TINAG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43553238,43582272,'NM_001146020','TJAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52643842,52659344,'NM_014051','TMEM14A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',10855980,10865200,'NM_030969','TMEM14B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',10831133,10839348,'NM_016462','TMEM14C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44346457,44355160,'NM_001137560','TMEM151B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',11646496,11691743,'NM_001100829','TMEM170B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',158877455,158976455,'NM_020823','TMEM181'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',130799954,130805903,'NM_052913','TMEM200A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',37287931,37333391,'NM_145316','TMEM217'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',76019357,76051352,'NM_001143958','TMEM30A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',44203353,44231234,'NM_018426','TMEM63B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31651328,31654091,'NM_000594','TNF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',138230273,138246142,'NM_006290','TNFAIP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',47307226,47385639,'NM_014452','TNFRSF21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',32084174,32088778,'NR_001284','TNXA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28291094,28294686,'NR_002936','TOB2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41863158,41865612,'NM_001134493','TOMM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',83129641,83133852,'NM_006670','TPBG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',125516577,125626343,'NM_003287','TPD52L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',116466586,116467800,'NR_027338','TPI1P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',18236523,18263353,'NM_000367','TPMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',111986835,111995214,'NM_001164283','TRAF3IP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',111911367,111931504,'NR_034111','TRAF3IP2-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',52470158,52549821,'NM_012288','TRAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',123579181,123999641,'NM_006073','TRDN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41350976,41362435,'NM_018643','TREM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41234223,41238900,'NM_018965','TREM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41225319,41230048,'NM_178174','TREML1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41265529,41276903,'NM_024807','TREML2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41325092,41325305,'NR_002794','TREML2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41284269,41293663,'NR_027256','TREML3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41304039,41314098,'NM_198153','TREML4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42300646,42527761,'NM_033502','TRERF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30238961,30248452,'NM_033229','TRIM15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28978757,28999747,'NM_006510','TRIM27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30178652,30188846,'NM_007028','TRIM31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26071049,26093331,'NM_006355','TRIM38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30402599,30419485,'NM_021253','TRIM39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30405066,30422614,'NM_001199119','TRIM39-RPP21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30212488,30224491,'NM_138700','TRIM40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',126349268,126402113,'NM_001031712','TRMT11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',94473521,94542920,'NR_015362','TSG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41118434,41120054,'NM_001159726','TSPO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',116702714,116707973,'NM_003309','TSPYL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',116677823,116681954,'NM_021648','TSPYL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43319199,43363975,'NM_032538','TTBK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',80771040,80808963,'NM_001166691','TTK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',167658563,167676167,'NM_031949','TTLL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30796135,30801174,'NM_178014','TUBB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',3098900,3102782,'NM_001069','TUBB2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',3169493,3172967,'NM_178012','TUBB2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',112498552,112515444,'NM_016262','TUBE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35573628,35588625,'NM_003322','TULP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',158653679,158852844,'NM_020245','TULP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',139602891,139654901,'NM_153235','TXLNB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',7826481,7855309,'NM_001145549','TXNDC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',83658905,83832264,'NM_198920','UBE2CBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',90093062,90119338,'NM_016021','UBE2J1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',42639737,42696067,'NM_001184801','UBR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',97076422,97109872,'NM_015323','UFL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',34867771,34953269,'NM_017754','UHRF1BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150326835,150336539,'NM_025218','ULBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150304828,150312061,'NM_025217','ULBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',150427435,150431895,'NM_024518','ULBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41102617,41114916,'NM_173561','UNC5CL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',167624792,167649492,'NM_001143947','UNC93A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',99986905,100069973,'NM_001080481','USP45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',41873360,41971077,'NM_018561','USP49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',149109963,149439819,'NM_005715','UST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',144654565,145215863,'NM_007124','UTRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31853275,31871691,'NM_006295','VARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43845923,43862201,'NM_001171629','VEGFA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',117693413,117701421,'NM_153453','VGLL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',153113625,153122593,'NM_003381','VIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',133043689,133076887,'NM_004666','VNN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',133106701,133126291,'NM_078488','VNN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',133085618,133097597,'NR_028291','VNN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33326026,33347640,'NM_022553','VPS52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',142510102,142583778,'NM_016485','VTA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',110527714,110607900,'NM_001024936','WASF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',169599227,169844084,'NM_001202550','WDR27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33354857,33365282,'NM_005452','WDR46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',112481970,112497580,'NM_003880','WISP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',2710664,2730978,'NM_020135','WRNIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',160068141,160097341,'NM_004906','WTAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43598045,43651790,'NM_020750','XPO5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43587542,43592706,'NM_015388','YIPF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',31975372,31977748,'NM_181842','ZBTB12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',151726942,151754370,'NM_020861','ZBTB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33390159,33393697,'NM_001145338','ZBTB22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',109908844,109911133,'NM_001164313','ZBTB24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',33530333,33533298,'NM_152735','ZBTB9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',149810458,149847841,'NM_207360','ZC3H12D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',157722544,158014965,'NM_153746','ZDHHC14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',37895284,38230377,'NM_021943','ZFAND3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29748147,29752910,'NM_001109809','ZFP57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28425669,28444933,'NM_024493','ZKSCAN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28320468,28327981,'NM_019110','ZKSCAN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28156460,28165319,'NM_003447','ZNF165'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27526499,27548876,'NM_007149','ZNF184'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28342766,28353959,'NM_001023560','ZNF187'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28217694,28233215,'NM_006298','ZNF192'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28301007,28309243,'NM_006299','ZNF193'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27433580,27447283,'NR_002722','ZNF204P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',87921987,88030125,'NM_015021','ZNF292'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',29070572,29081016,'NM_001010877','ZNF311'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',43411785,43445159,'NM_014345','ZNF318'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',26742589,26767959,'NM_001242799','ZNF322'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28400493,28411890,'NM_001243243','ZNF323'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',27464502,27477206,'NM_001076781','ZNF391'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',57062786,57143057,'NM_015555','ZNF451'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',35335487,35371738,'NM_003427','ZNF76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30137014,30140665,'NM_170783','ZNRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',30076766,30136940,'NR_026751','ZNRD1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28464705,28475523,'NM_001163391','ZSCAN12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28166907,28171472,'NR_024063','ZSCAN12P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28200365,28205835,'NM_025231','ZSCAN16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',28508410,28519258,'NM_001012455','ZSCAN23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6',117063473,117096666,'NM_145062','ZUFSP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3100851,3116975,'NM_001177515','ABHD16A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3029913,3030923,'NM_032955','AIF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2745623,2762243,'NR_037853','ATP6V1G2-DDX39B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3052922,3066603,'NM_004639','BAG6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3116514,3161190,'NM_001178063','C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',1861669,1867835,'NM_001109938','C6orf136'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',1510169,1545369,'NM_018452','C6orf35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2359996,2375364,'NM_001105563','CCHCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2534075,2539464,'NM_001264','CDSN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3144481,3150469,'NM_001288','CLIC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',4510632,4540408,'NM_080680','COL11A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3413250,3416605,'NM_000500','CYP21A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',4666475,4670938,'NR_024517','DAXX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2305069,2316540,'NM_001202522','DDR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2357196,2370408,'NM_080870','DPCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3539569,3543250,'NM_030652','EGFL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',1025320,1056279,'NM_001470','GABBR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2877117,2879747,'NR_040662','HCP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',1156971,1160401,'NM_002116','HLA-A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',4283256,4289698,'NM_002118','HLA-DMB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',4161396,4165682,'NM_002120','HLA-DOB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3674895,3751959,'NM_002124','HLA-DRB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3870633,3883702,'NM_022555','HLA-DRB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',1143812,1147765,'NM_001098479','HLA-F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',459326,499839,'NM_001195202','LOC100129636'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3197570,3218196,'NM_001242823','LOC100293534'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3211248,3220821,'NM_021177','LSM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2801542,2804275,'NM_205839','LST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3126237,3127962,'NR_003673','LY6G6E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2618763,2630581,'NM_001177519','MICA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2713520,2726545,'NM_005931','MICB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',1832339,1841028,'NM_014046','MRPS18B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2955309,2976981,'NM_002441','MSH5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2955309,2976981,'NR_037846','MSH5-C6orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2422155,2451709,'NM_001198815','MUC22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2804639,2808349,'NM_001145467','NCR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2961513,2972755,'NM_001144961','NFKBIL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',796640,798509,'NM_030959','OR12D3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',509364,510470,'NM_001005226','OR2B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',596689,597730,'NM_030905','OR2J2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',4637552,4638850,'NM_001185181','PFDN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',1815036,1831874,'NM_002714','PPP1R10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3528950,3538646,'NM_005155','PPT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3336735,3351029,'NR_037861','PPT2-EGFL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3034573,3051677,'NM_080686','PRRC2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3994547,3997870,'NM_148919','PSMB8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2332372,2357660,'NM_014068','PSORS1C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',4556442,4560656,'NM_002931','RING1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',4619988,4624418,'NM_022551','RPS18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',4347533,4354602,'NM_021976','RXRB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3277223,3293084,'NM_001178044','SLC44A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3999039,4007802,'NM_000593','TAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',4170466,4187402,'NM_018833','TAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',4647612,4662303,'NM_003190','TAPBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',3416089,3484320,'NM_019105','TNXB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',1366618,1375605,'NM_052828','TRIM10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',1399093,1428139,'NM_003449','TRIM26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',978705,983019,'NM_006398','UBD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr6_',2129039,2141178,'NM_001167734','VARS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',34724998,34840468,'NR_015356','AAA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',121500833,121571580,'NM_005763','AASS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',48208388,48657637,'NM_152701','ABCA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',86971114,87180575,'NM_000927','ABCB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',86869296,86942955,'NM_018849','ABCB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',20653490,20666542,'NM_001163942','ABCB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150356442,150375802,'NM_007188','ABCB8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150540508,150555250,'NM_007189','ABCF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72788360,72791120,'NM_001145364','ABHD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72787334,72788266,'NR_026690','ABHD11-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150180505,150189312,'NM_001091','ABP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150376537,150380776,'NM_020322','ACCN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100325550,100331477,'NM_000665','ACHE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',96583840,96649011,'NM_020186','ACN9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5533304,5536758,'NM_001101','ACTB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100078661,100092020,'NM_016188','ACTL6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',152087783,152183396,'NM_020445','ACTR3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149575233,149631002,'NM_001164459','ACTR3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',87401501,87670140,'NM_021723','ADAM22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',904062,960815,'NM_006869','ADAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',140019421,140041377,'NM_052853','ADCK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',45580649,45729239,'NM_021116','ADCY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',31058600,31117618,'NM_001199635','ADCYAP1R1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44110484,44120684,'NM_001129','AEBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150414758,150472456,'NM_031946','AGAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',134321798,134471070,'NM_178563','AGBL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99974769,100003779,'NM_006076','AGFG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',140897546,141000678,'NM_018238','AGK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',15206467,15568165,'NM_001004320','AGMO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',16798788,16811263,'NM_006408','AGR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',16865554,16888138,'NM_176813','AGR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128652090,128857288,'NM_001130720','AHCYL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',17304800,17352300,'NM_001621','AHR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6015407,6029991,'NM_006303','AIMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',91408124,91577923,'NM_005751','AKAP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',133777646,133794428,'NM_001628','AKR1B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',133862883,133876706,'NM_020299','AKR1B10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',133884388,133915132,'NM_001080538','AKR1B15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',137411717,137453590,'NM_001190906','AKR1D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101883671,101892326,'NM_017621','ALKBH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',38389821,38637692,'NM_139316','AMPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2685688,2721595,'NM_133463','AMZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',91713483,91868634,'NM_019004','ANKIB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',16605925,16651967,'NM_020319','ANKMY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',117651947,117670020,'NM_019644','ANKRD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',36395956,36459925,'NM_018685','ANLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',36519073,36730679,'NM_001177506','AOAH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100584405,100591277,'NM_001283','AP1S1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99537065,99542739,'NM_004722','AP4M1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30927629,30931656,'NM_001185061','AQP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127015641,127018995,'NM_001662','ARF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143514108,143523724,'NM_001003702','ARHGEF35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143683421,143708658,'NM_005435','ARHGEF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',12693435,12697083,'NM_005738','ARL4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102502563,102527446,'NM_001161009','ARMC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98761431,98801821,'NM_001190996','ARPC1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98810233,98830340,'NM_005720','ARPC1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150503717,150515411,'NM_001142459','ASB10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',123036347,123065168,'NM_080928','ASB15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',94953148,95007479,'NM_016116','ASB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',65178210,65195764,'NM_000048','ASL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',97319364,97339790,'NM_183356','ASNS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',116790604,116854813,'NR_023315','ASZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150340229,150352519,'NM_173681','ATG9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98893719,98901760,'NM_004889','ATP5J2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98852297,98901760,'NM_001198879','ATP5J2-PTCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138041578,138133481,'NM_020632','ATP6V0A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149200989,149208671,'NM_001100592','ATP6V0E2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128290092,128293139,'NM_004231','ATP6V1F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',105032456,105106845,'NM_138495','ATXN7L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',68701841,69895821,'NM_015570','AUTS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',32501700,32590304,'NM_015060','AVL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99402285,99411671,'NM_001185','AZGP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99416320,99419796,'NR_036679','AZGP1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',97758897,97868363,'NM_018842','BAIAP2L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72492663,72574551,'NM_032408','BAZ1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',33135676,33612205,'NM_014451','BBS9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',107007657,107050998,'NR_027830','BCAP29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72588618,72610001,'NM_001707','BCL7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',93458935,93471626,'NM_005868','BET1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',97679501,97680207,'NM_177455','BHLHA15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',43764796,43813466,'NM_000712','BLVRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',33911636,34160637,'NM_133468','BMPER'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',133982070,134015107,'NM_199186','BPGM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',140080281,140271033,'NM_004333','BRAF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2543969,2561918,'NM_152743','BRAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',97748914,97760211,'NM_001159491','BRI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98844536,98855175,'NM_003910','BUD31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',16652283,16712673,'NM_001159767','BZW2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',7188770,7254776,'NM_020156','C1GALT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',40141099,40866891,'NM_001193311','C7orf10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',40138866,40140776,'NM_138701','C7orf11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',156123820,156126109,'NR_026865','C7orf13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',31693155,31714594,'NM_001145123','C7orf16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',86663413,86686967,'NM_024315','C7orf23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',42915396,42918214,'NM_024054','C7orf25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6596439,6614880,'NM_024067','C7orf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6805090,6832451,'NM_198097','C7orf28B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149657870,149660743,'NM_138434','C7orf29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',23305464,23315705,'NM_138446','C7orf30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',25140840,25186342,'NM_138811','C7orf31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',147918589,147943885,'NM_145304','C7orf33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142346724,142348079,'NM_178829','C7orf34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',39572527,39579005,'NM_020192','C7orf36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44989151,44992784,'NR_003697','C7orf40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30141076,30168906,'NM_152793','C7orf41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',66023637,66060973,'NM_017994','C7orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99589978,99594238,'NM_018275','C7orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',43645383,43735608,'NM_018224','C7orf44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129634939,129643920,'NM_145268','C7orf45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',23686273,23708794,'NM_001127365','C7orf46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99870847,99872030,'NM_145030','C7orf47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',134501071,134504766,'NM_001243753','C7orf49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1003148,1144419,'NM_032350','C7orf50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99919485,99930358,'NM_173564','C7orf51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100600493,100610277,'NM_198571','C7orf52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',111908301,111918179,'NM_182597','C7orf53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127424797,127427366,'NR_027330','C7orf54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138676436,138681081,'NM_197964','C7orf55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',48041641,48067419,'NM_001100159','C7orf57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',120415986,120724734,'NM_024913','C7orf58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99584465,99589769,'NM_001008395','C7orf59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',112246437,112367168,'NM_152556','C7orf60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99892173,99899830,'NM_001004323','C7orf61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',88261355,88262967,'NM_152706','C7orf62'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',89712423,89778313,'NM_001160138','C7orf63'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',91996022,92004759,'NM_032120','C7orf64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',47661366,47667771,'NM_001123065','C7orf65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',108311273,108311873,'NM_001024607','C7orf66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127883119,127885708,'NM_013332','C7orf68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',47801413,47825969,'NM_025031','C7orf69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6335564,6355115,'NM_001037163','C7orf70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',26644014,26653449,'NM_001145531','C7orf71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',50106227,50169398,'NM_001161834','C7orf72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',134997760,135011700,'NM_001130929','C7orf73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',106084446,106088870,'NM_175884','C7orf74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',81417353,81910967,'NM_000722','CACNA2D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',121745713,122314049,'NM_017954','CADPS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',92891734,93041978,'NM_001164737','CALCR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',134114703,134306020,'NM_033157','CALD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',70882411,71515296,'NM_031468','CALN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128166581,128200713,'NM_001199671','CALU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44223273,44331755,'NM_172080','CAMK2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',116289798,116346549,'NM_006136','CAPZA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2912235,3050035,'NM_032415','CARD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',93977105,94024264,'NM_022900','CASD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142695429,142714911,'NM_032983','CASP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',115953582,115988475,'NM_001172896','CAV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',115926890,115935831,'NM_198212','CAV2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',107171514,107189319,'NM_024814','CBLL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',26207848,26219752,'NM_016587','CBX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',23603522,23650852,'NM_138771','CCDC126'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',31523502,31659828,'NM_194300','CCDC129'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',92699588,92826274,'NM_017667','CCDC132'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128218699,128249423,'NM_001201372','CCDC136'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',76589869,76762457,'NM_020879','CCDC146'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75279049,75280969,'NM_002991','CCL24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75236777,75257000,'NM_006072','CCL26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',45006311,45082594,'NM_031443','CCM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',56086871,56099176,'NM_001762','CCT6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',64853526,64866097,'NR_003110','CCT6P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',64136166,64172526,'NR_033416','CCT6P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5904866,5932129,'NM_015622','CCZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',80105767,80146529,'NM_001001548','CD36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',48934702,48937595,'NR_003595','CDC14C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',21907041,21952067,'NM_001127370','CDCA7L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',105390892,105464113,'NM_152750','CDHR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',39956483,40103258,'NM_031267','CDK13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',90176647,90677840,'NM_012395','CDK14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150381831,150385985,'NM_004935','CDK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',92072170,92303877,'NM_001145306','CDK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129823610,129868090,'NM_018718','CEP41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',116907252,117095954,'NM_000492','CFTR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',56136759,56141681,'NM_016139','CHCHD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',132120162,132417368,'NM_017812','CHCHD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',29486010,29520469,'NM_001039936','CHN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150560517,150566838,'NM_019015','CHPF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',136204371,136352311,'NM_000739','CHRM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2409720,2440742,'NM_001243794','CHST12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142723340,142759219,'NM_000083','CLCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',89870583,89883204,'NM_012129','CLDN12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100662092,100667947,'NM_014343','CLDN15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72821262,72822536,'NM_001306','CLDN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72883128,72884951,'NM_001305','CLDN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138859213,138880271,'NM_001080511','CLEC2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141273625,141293252,'NM_013252','CLEC5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73341740,73458209,'NM_032421','CLIP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',23590859,23592671,'NR_002711','CLK2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',134697086,134845415,'NM_013316','CNOT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',154986713,155019300,'NM_001103176','CNPY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99555200,99561064,'NM_152755','CNPY4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',145444385,147749021,'NM_014141','CNTNAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',51051402,51352009,'NM_015198','COBL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',106635533,106992195,'NM_001161520','COG5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',93861808,93898480,'NM_000089','COL1A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',7364768,7541985,'NM_001037763','COL28A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129933315,130004138,'NM_012133','COPG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99524518,99527758,'NM_006833','COPS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',971011,981761,'NM_001031617','COX19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129807525,129815185,'NM_001868','CPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129693938,129716873,'NM_001869','CPA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129720209,129751256,'NM_001163446','CPA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129771865,129795807,'NM_080385','CPA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98874498,98892932,'NM_001081559','CPSF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',29001771,29152678,'NM_031311','CPVL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',65217239,65256988,'NR_024548','CRCP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',137210264,137337386,'NM_194071','CREB3L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',28441758,28832036,'NM_004904','CREB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30658083,30688666,'NM_001202483','CRHR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',86812886,86867048,'NM_001143935','CROT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150757988,150768032,'NM_144727','CRYGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142979011,142981366,'NM_001008747','CTAGE15P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143511480,143514106,'NM_198495','CTAGE4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143083114,143085776,'NM_178561','CTAGE6P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',117137941,117300797,'NM_033427','CTTNBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148026865,148129135,'NM_003592','CUL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101245903,101713970,'NM_001202545','CUX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',25124794,25131505,'NM_018947','CYCS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',989360,995802,'NM_017781','CYP2W1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99192518,99219747,'NM_017460','CYP3A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99263571,99302109,'NM_022820','CYP3A43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99083748,99115557,'NR_033808','CYP3A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99140595,99170755,'NM_000765','CYP3A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',91579398,91601995,'NM_001146152','CYP51A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6167936,6278767,'NM_004227','CYTH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6415271,6454168,'NM_139179','DAGLB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',87343479,87376792,'NM_006716','DBF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44050763,44067840,'NM_014063','DBNL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',50493627,50600648,'NM_001082971','DDC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44571927,44580662,'NM_019082','DDX56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',139864688,139948811,'NM_015689','DENND2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',24704498,24764164,'NM_004403','DFNA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',14151198,14847600,'NM_004080','DGKB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',136724924,137182149,'NM_004717','DGKI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',56531409,56532471,'NR_026929','DKFZp434L192'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30376190,30378935,'NR_002186','DKFZP586I1420'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',107318821,107348879,'NM_000108','DLD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',96487637,96492079,'NM_005221','DLX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',96473225,96478288,'NM_005222','DLX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',96435762,96481313,'NR_015448','DLX6-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',86619612,86663584,'NR_024549','DMTF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',21549357,21907982,'NM_003777','DNAH11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',156822471,156902894,'NM_058246','DNAJB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',107997424,108002530,'NM_012328','DNAJB9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102740156,102772556,'NM_014377','DNAJC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72733183,72735717,'NM_032317','DNAJC30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',111153399,111633698,'NM_014705','DOCK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',153380709,154316928,'NM_130797','DPP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',34935017,35044178,'NM_015283','DPY19L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',32587077,32725305,'NR_036680','DPY19L1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',35095980,35113871,'NR_002833','DPY19L2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102602697,102707995,'NR_003561','DPY19L2P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',29691294,29694384,'NR_036482','DPY19L2P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',89586649,89592850,'NR_003551','DPY19L2P4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75928907,75973248,'NM_001102595','DTX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',76448074,76491012,'NR_023383','DTX2P1-UPK3BP1-PMS2P11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',106991667,107006204,'NM_181581','DUS4L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',95239753,95565672,'NM_004411','DYNC1I1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',36159360,36307677,'NM_030636','EEPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',104992815,105009212,'NR_027068','EFCAB10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',55054218,55242525,'NM_005228','EGFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6028403,6065386,'NM_001134335','EIF2AK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2360999,2386903,'NM_003751','EIF3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',109386519,109387506,'NR_003024','EIF3IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73226641,73249365,'NM_022170','EIF4H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1715323,1754116,'NM_001128636','ELFN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',36859035,36991242,'NM_001039459','ELMO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73080362,73122172,'NM_001081754','ELN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100792841,100989024,'NM_133457','EMID2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',154943584,154950287,'NM_001427','EN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',37927445,37958067,'NM_001242948','EPDR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142798326,142816107,'NM_005232','EPHA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100238122,100263079,'NM_004444','EPHB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142262913,142278969,'NM_004445','EPHB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100156358,100159259,'NM_000799','EPO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',64088167,64104559,'NM_001007253','ERV3-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',158216449,158315080,'NM_020728','ESYT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',13897380,13992664,'NM_001163151','ETV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27248688,27252717,'NM_001989','EVX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',132588362,133401053,'NM_021807','EXOC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148135396,148211534,'NM_001203249','EZH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',151764912,151771033,'NR_002935','FABP5P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143179393,143230211,'NM_001206938','FAM115A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143043871,143058106,'NM_001130026','FAM115C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',22947402,23020295,'NM_032581','FAM126A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142760614,142769295,'NM_014690','FAM131B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',92028007,92057642,'NM_152789','FAM133B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',135064885,135084134,'NM_205855','FAM180A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',38691470,38693214,'NR_028347','FAM183B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102176634,102236908,'NM_001145269','FAM185A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30777557,30898527,'NM_032222','FAM188B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98981858,98987693,'NM_145111','FAM200A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',288051,304059,'NM_020223','FAM20C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',120776140,120823658,'NM_014888','FAM3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128861509,128910708,'NM_001134336','FAM40B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128142678,128159033,'NM_032599','FAM71F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128099581,128110545,'NM_001128926','FAM71F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150404640,150408884,'NM_033015','FASTK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102240543,102502251,'NM_145032','FBXL13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5481953,5519925,'NM_024963','FBXL18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100025131,100036676,'NM_001163499','FBXO24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75937272,75942253,'NR_003262','FDPSL2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',19150929,19151569,'NM_152898','FERD3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',121728683,121731801,'NM_001160264','FEZF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',76660623,76667086,'NM_006682','FGL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',50479325,50485582,'NM_022116','FIGNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100669612,100675091,'NM_016068','FIS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30019408,30032793,'NM_017946','FKBP14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72380090,72410577,'NM_001135211','FKBP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',32963529,33013068,'NM_007270','FKBP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',55716260,55739754,'NR_003949','FKBP9L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44045222,44048607,'NR_015401','FLJ35390'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141050606,141084499,'NR_015392','FLJ40852'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',95948873,95970771,'NM_001201450','FLJ42280'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',130279458,130444102,'NR_015431','FLJ43663'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',526553,531395,'NR_033963','FLJ44511'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128068530,128088288,'NR_024368','FLJ45340'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',53690695,53847118,'NR_038371','FLJ45974'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128257718,128286564,'NM_001127487','FLNC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',4688455,4777600,'NM_001037165','FOXK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',113853792,114081434,'NM_001172767','FOXP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5598961,5612813,'NM_003088','FSCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127020924,127029087,'NM_020369','FSCN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2240451,2248359,'NM_013393','FTSJ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',90731718,90736068,'NM_003505','FZD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72486044,72488386,'NM_003508','FZD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99594800,99604309,'NM_024637','GAL3ST4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',151353710,151450360,'NM_022087','GALNT11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',151284396,151347952,'NM_145292','GALNTL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30600705,30640173,'NM_002047','GARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',91914700,91926678,'NM_021167','GATAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99636213,99707791,'NM_178831','GATS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',74017018,74076739,'NM_001145063','GATSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',74645540,74705277,'NM_001145064','GATSL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',55999763,56035369,'NM_001483','GBAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150476608,150495800,'NM_001098834','GBX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127007917,127012890,'NM_024523','GCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44150394,44165412,'NM_033508','GCK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',882716,902597,'NM_015949','GET4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30502761,30510982,'NM_024051','GGCT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30970160,30985671,'NM_000823','GHRHR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100115065,100124806,'NM_022574','GIGYF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150044577,150052301,'NM_130759','GIMAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150044577,150071670,'NM_001199577','GIMAP1-GIMAP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150013726,150021661,'NM_015660','GIMAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149895390,149901974,'NM_018326','GIMAP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150065368,150071670,'NM_018384','GIMAP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149953396,149960613,'NR_024115','GIMAP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149842877,149849094,'NM_153236','GIMAP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149778894,149807416,'NM_175571','GIMAP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99358827,99365179,'NM_181538','GJC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',7974947,8095234,'NM_138426','GLCCI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',41967072,42243143,'NM_000168','GLI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2734266,2850485,'NM_007353','GNA12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',79602075,79686661,'NM_002069','GNAI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',79925922,79979178,'NM_001102386','GNAT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100109298,100114728,'NM_005273','GNB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',93388951,93393762,'NM_004126','GNG11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',93373755,93378421,'NM_021955','GNGT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99605164,99612926,'NM_152742','GPC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1092968,1099977,'NM_001505','GPER'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',23252840,23281254,'NM_002510','GPNMB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',37746520,37747438,'NM_181791','GPR141'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1063666,1065423,'NM_138445','GPR146'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',106897737,106903361,'NM_005295','GPR22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',124173349,124192917,'NM_005302','GPR37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',112507703,112513778,'NM_001146267','GPR85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',50625253,50767544,'NM_005311','GRB10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6502933,6557592,'NM_001145118','GRID2IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',86111165,86332128,'NM_000840','GRM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',125865887,126670805,'NR_028041','GRM8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142670643,142676344,'NM_001143681','GSTK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73709965,73812958,'NM_001163636','GTF2I'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72206961,72259272,'NR_002206','GTF2IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73506055,73654856,'NM_001199207','GTF2IRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73848419,73905777,'NM_173537','GTF2IRD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',74146282,74203559,'NM_001003795','GTF2IRD2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72294837,72323594,'NR_002164','GTF2IRD2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',89813914,89858705,'NM_001042717','GTPBP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',65063107,65084736,'NM_000181','GUSB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',57237318,57251805,'NR_030766','GUSBP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44833012,44854250,'NM_138635','H2AFV'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',106596695,106630210,'NM_012257','HBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',18502409,18960464,'NM_058176','HDAC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',732863,792642,'NM_017802','HEATR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',43118722,43569463,'NM_015052','HECW1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',92655835,92693718,'NM_001039372','HEPACAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',35638794,35701297,'NM_022373','HERPUD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',81169379,81237388,'NM_000601','HGF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27531583,27669145,'NM_152740','HIBADH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75000554,75206219,'NM_005338','HIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138896855,139124162,'NM_001113239','HIPK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',26196080,26206938,'NM_002137','HNRNPA2B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27102237,27106402,'NR_038367','HOTAIRM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27206564,27212655,'NR_037843','HOTTIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27099138,27102150,'NM_005522','HOXA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27176734,27186405,'NR_037939','HOXA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27168581,27186405,'NR_037940','HOXA10-HOXA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27187300,27191360,'NM_005523','HOXA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27191551,27195437,'NR_002795','HOXA11-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27203023,27206250,'NM_000522','HOXA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27106497,27108919,'NM_006735','HOXA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27112333,27125739,'NM_030661','HOXA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27134650,27136924,'NM_002141','HOXA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27147195,27149812,'NM_019102','HOXA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27151726,27153918,'NM_024014','HOXA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27159862,27162821,'NM_006896','HOXA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27168581,27171674,'NM_152739','HOXA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',54236410,54237608,'NR_004422','HPVC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75769810,75771550,'NM_001540','HSPB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',154493478,154508392,'NM_024012','HTR5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',47969409,47985747,'NM_004507','HUS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',123272458,123304767,'NM_012269','HYAL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',123241428,123246720,'NR_002731','HYALP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',8119339,8268710,'NM_004968','ICA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',111877718,111904494,'NM_001550','IFRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',23316352,23476520,'NM_006547','IGF2BP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',45894483,45899792,'NM_000596','IGFBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',45918368,45927396,'NM_000598','IGFBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',50314923,50440292,'NM_001220776','IKZF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',22733290,22738146,'NM_000600','IL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',110090341,110989809,'NM_001244606','IMMP2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127819566,127837272,'NM_001142576','IMPDH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',120378052,120384270,'NM_198267','ING3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',41695125,41709231,'NM_002192','INHBA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30758275,30763743,'NM_001199219','INMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30758275,30898527,'NR_037598','INMT-FAM188B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',154720418,154732879,'NM_198337','INSIG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1476438,1510544,'NM_001080453','INTS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',64239037,64332035,'NR_027393','INTS4L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',64750211,64821067,'NR_027392','INTS4L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2565157,2620894,'NM_152558','IQCE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',122879471,122961954,'NM_178827','IQUB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128365506,128377324,'NM_032643','IRF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',16093676,16427472,'NM_001101417','ISPD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',20337249,20421907,'NM_002214','ITGB8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27836717,28186962,'NM_175061','JAZF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',139431014,139523210,'NM_030647','JHDM1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',32874302,32897993,'NM_015483','KBTBD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',119700957,120177623,'NM_012281','KCND2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150272976,150283850,'NM_172057','KCNH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128304154,128338009,'NM_001135914','KCP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',65731302,65745651,'NM_001167961','KCTD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6467236,6490374,'NM_001100603','KDELR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142348322,142369625,'NM_000420','KEL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',26539264,26544969,'NR_022006','KIAA0087'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',4781787,4800552,'NM_014855','KIAA0415'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',36330283,36396259,'NM_001100425','KIAA0895'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141002996,141048422,'NM_001080392','KIAA1147'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',86344158,86526950,'NM_001142749','KIAA1324L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138166666,138316604,'NM_001164665','KIAA1549'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1576234,1595787,'NR_021487','KIAA1908'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',130067935,130069428,'NM_138693','KLF14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129497584,129562796,'NM_014997','KLHDC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',23111877,23132194,'NR_033329','KLHL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138788627,138818997,'NM_198508','KLRG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98609132,98643025,'NM_001145715','KPNA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149043080,149062597,'NM_032534','KRBA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',91666218,91713350,'NM_194456','KRIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',107351481,107431040,'NM_002291','LAMB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',107451231,107558037,'NM_007356','LAMB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',55400634,55468929,'NM_018697','LANCL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73262022,73282100,'NM_014146','LAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127668566,127684918,'NM_000230','LEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2526004,2534589,'NM_001040167','LFNG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',103756339,104336239,'NM_199000','LHFPL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73136042,73174791,'NM_002314','LIMK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',65478465,65502830,'NR_026873','LINC00174'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',156025945,156026556,'NR_024119','LINC00244'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',39739691,39800747,'NR_026999','LINC00265'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',156166330,156378663,'NM_022458','LMBR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',123083096,123091383,'NM_207163','LMOD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',97574132,97676880,'NM_014916','LMTK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72206947,72259272,'NR_003580','LOC100093631'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141517438,141567562,'NR_003717','LOC100124692'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',28186600,28247521,'NR_034097','LOC100128081'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',154489710,154494200,'NR_038945','LOC100128264'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150077756,150118770,'NM_001162367','LOC100128542'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',151792141,151793563,'NR_027387','LOC100128822'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138752748,138762812,'NR_033999','LOC100129148'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',50566950,50578655,'NR_033845','LOC100129427'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100024959,100039597,'NR_038910','LOC100129845'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',32463034,32464631,'NR_038454','LOC100130673'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128293699,128299337,'NM_001195150','LOC100130705'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',56910571,56917333,'NR_038450','LOC100130849'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',137288633,137293252,'NM_001243523','LOC100130880'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150737254,150741065,'NR_034012','LOC100131176'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',7081925,7102942,'NR_034022','LOC100131257'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',154351159,154369493,'NR_024477','LOC100132707'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',76506732,76520291,'NR_028058','LOC100132832'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',76016593,76095235,'NR_029411','LOC100133091'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27153306,27162072,'NR_038831','LOC100133311'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',139523529,139525909,'NR_024451','LOC100134229'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',140041604,140043346,'NR_024454','LOC100134713'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',104438224,104441824,'NR_024586','LOC100216545'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',104409429,104418848,'NR_039981','LOC100216546'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128929555,128940009,'NM_001195243','LOC100287482'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',62446882,62449587,'NR_028348','LOC100287704'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',62446882,62449587,'NR_028349','LOC100287834'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99033837,99046392,'NM_001195543','LOC100289187'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101791027,101808081,'NM_001242713','LOC100289561'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',151205059,151207241,'NR_038926','LOC100505483'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',77151103,77164598,'NR_038361','LOC100505854'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',16216635,16276754,'NR_038946','LOC100506025'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',16533029,16587639,'NM_001195280','LOC100506049'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',63122230,63127915,'NR_039987','LOC100506050'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',96088904,96131586,'NR_038948','LOC100506136'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',22569480,22580142,'NR_038393','LOC100506178'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',28986107,29019510,'NR_038965','LOC100506497'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',157340037,157351543,'NR_038966','LOC100506585'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',38347702,38384763,'NR_040085','LOC100506776'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',43514851,43528666,'NR_038276','LOC100506895'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',140420500,140826648,'NM_001195278','LOC100507421'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101791027,101854134,'NR_038967','LOC100630923'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143139993,143164743,'NR_015421','LOC154761'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',158493805,158511690,'NR_024394','LOC154822'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',121730947,121737367,'NR_036484','LOC154860'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',124204581,124218100,'NM_001024603','LOC154872'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148613304,148625336,'NR_036573','LOC155060'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',154426075,154428346,'NR_028090','LOC202781'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',54592156,54606913,'NR_038994','LOC285878'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',155923243,155931043,'NR_038232','LOC285889'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',41700038,41785501,'NR_027118','LOC285954'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142815027,142930662,'NR_033897','LOC285965'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149761674,149776161,'NR_034033','LOC285972'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',107084196,107089479,'NR_028137','LOC286002'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5078216,5079380,'NR_015343','LOC389458'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',56149867,56151584,'NM_001145712','LOC389493'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30554497,30583920,'NR_038889','LOC401320'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',32764422,32769061,'NR_036501','LOC401321'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',35319990,35382611,'NR_038864','LOC401324'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',112544008,112545873,'NR_015442','LOC401397'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149195715,149201884,'NR_027040','LOC401431'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128553560,128555286,'NR_002144','LOC407835'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',26409631,26502511,'NR_015364','LOC441204'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',64749358,64873232,'NR_038378','LOC441242'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',65655987,65680933,'NR_002933','LOC493754'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',74859164,74862644,'NR_003602','LOC541473'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',63680422,63681564,'NR_033245','LOC641746'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',62389104,62401869,'NR_003952','LOC643955'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',156496311,156501879,'NR_038835','LOC645249'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',104224189,104231775,'NR_034141','LOC645591'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',130216290,130248609,'NR_034120','LOC646329'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',29652062,29691279,'NR_024278','LOC646762'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',39615610,39618212,'NR_024390','LOC646999'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',63531505,63533330,'NR_029404','LOC649395'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',56458890,56483562,'NR_029420','LOC650226'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',104322310,104354328,'NR_027374','LOC723809'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',92028303,92057632,'NR_034169','LOC728066'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143587021,143614029,'NR_033942','LOC728377'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149733772,149740491,'NR_027237','LOC728743'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',65912414,65947248,'NR_003934','LOC729156'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',7646866,7885376,'NR_034084','LOC729852'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141614583,141618551,'NR_036483','LOC730441'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141458017,141490252,'NR_003715','LOC93432'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100009569,100021712,'NM_002319','LRCH4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',133462644,133599473,'NM_144648','LRGUK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102340579,102372792,'NM_005824','LRRC17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127454359,127458238,'NM_022143','LRRC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149651228,149666178,'NM_023942','LRRC61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',91612133,91632526,'NM_001161528','LRRD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',110518297,110552745,'NM_018334','LRRN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101892394,101900617,'NM_152892','LRWD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',32491469,32497000,'NR_024466','LSM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138675644,138758743,'NM_001244585','LUC7L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',135262042,135312744,'NM_001128619','LUZP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',20140803,20223538,'NM_182762','MACC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1821953,2239109,'NM_003550','MAD1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1536893,1549205,'NM_002360','MAFK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',77484309,78920826,'NM_012301','MAGI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',78921211,78934719,'NR_038343','MAGI2-AS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99562255,99564057,'NM_203397','MBLAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99528339,99537363,'NM_005916','MCM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',114349444,114350956,'NM_001166346','MDFIC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75515328,75533866,'NM_005918','MDH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',15617361,15692833,'NM_005924','MEOX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99864348,99869685,'NM_001194992','MEPCE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129913281,129933367,'NM_177524','MEST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129914133,129918249,'NR_004382','MESTIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',116099694,116225676,'NM_001127500','MET'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127904018,127930214,'NM_018396','METTL2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141342147,141453016,'NM_004668','MGAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',47767598,47772895,'NR_038407','MGC16075'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',92005724,92007015,'NR_026902','MGC16142'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',97433843,97439574,'NR_002822','MGC72080'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1440520,1465635,'NM_182924','MICALL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',7573140,7613635,'NM_019005','MIOS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99529551,99529633,'NR_029831','MIR106B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',36925486,36925562,'NR_031604','MIR1200'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127635160,127635232,'NR_029596','MIR129-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',25956063,25956131,'NR_029597','MIR148A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',157059788,157059875,'NR_029689','MIR153-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129197458,129197568,'NR_029614','MIR182'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129201980,129202090,'NR_029615','MIR183'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27175623,27175707,'NR_029911','MIR196B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99529118,99529202,'NR_029498','MIR25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',130212045,130212109,'NR_029503','MIR29A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',130212757,130212838,'NR_029517','MIR29B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',19711505,19711584,'NR_036101','MIR3146'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',57476672,57476738,'NR_036102','MIR3147'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129923187,129923281,'NR_029899','MIR335'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1029094,1029188,'NR_029898','MIR339'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98317208,98317288,'NR_037403','MIR3609'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',114080635,114080746,'NR_037439','MIR3666'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150761507,150761658,'NR_037468','MIR3907'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',70410593,70410692,'NR_037477','MIR3914-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',70410595,70410690,'NR_037479','MIR3914-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',43157018,43157118,'NR_037508','MIR3943'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',57027433,57027513,'NR_036246','MIR4283-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',57027433,57027513,'NR_036270','MIR4283-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72763582,72763663,'NR_036247','MIR4284'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101723088,101723173,'NR_036245','MIR4285'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101898920,101898983,'NR_039677','MIR4467'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',137459043,137459107,'NR_039678','MIR4468'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2533233,2533312,'NR_039791','MIR4648'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44116965,44117048,'NR_039792','MIR4649'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',66216743,66216819,'NR_039793','MIR4650-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',66216743,66216819,'NR_039794','MIR4650-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75382450,75382523,'NR_039795','MIR4651'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',93184175,93184253,'NR_039796','MIR4652'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100589473,100589556,'NR_039797','MIR4653'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1850341,1850415,'NR_039799','MIR4655'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',4794721,4794796,'NR_039800','MIR4656'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44887871,44887924,'NR_039801','MIR4657'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99592163,99592228,'NR_039802','MIR4658'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',92951183,92951267,'NR_030164','MIR489'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',136238453,136238581,'NR_030165','MIR490'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',146706041,146706146,'NR_031645','MIR548F4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',147257617,147674860,'NR_036093','MIR548T'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30295934,30296031,'NR_030319','MIR550A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',32739117,32739214,'NR_030320','MIR550A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',29686874,29686969,'NR_039600','MIR550A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30295934,30296031,'NR_037513','MIR550B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',32739117,32739214,'NR_037514','MIR550B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5501975,5502074,'NR_030318','MIR589'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73243463,73243560,'NR_030321','MIR590'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',95686909,95687004,'NR_030322','MIR591'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',126485377,126485474,'NR_030323','MIR592'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127509148,127509248,'NR_030324','MIR593'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',158018170,158018266,'NR_030325','MIR595'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',92950007,92950103,'NR_030388','MIR653'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150566439,150566557,'NR_030407','MIR671'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99529326,99529406,'NR_029510','MIR93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129201768,129201845,'NR_029512','MIR96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',130663134,130831938,'NM_013255','MKLN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',139802451,139825838,'NM_001145125','MKRN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',151462942,151764023,'NM_170606','MLL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',104441872,104541768,'NM_018682','MLL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72645459,72676806,'NM_032954','MLXIPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',4912145,4965370,'NM_001100600','MMD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',156490307,156496108,'NM_005515','MNX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100625732,100631022,'NM_178176','MOGAT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100048049,100050936,'NM_023948','MOSPD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141587028,141593361,'NR_024346','MOXD2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',24579609,24694023,'NM_016447','MPP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',42938463,42943978,'NM_031903','MRPL32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',55987104,55990527,'NM_015969','MRPS17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',43872681,43875670,'NM_032014','MRPS24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',140352429,140361250,'NM_053035','MRPS33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',91339956,91347952,'NM_006980','MTERF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',135262042,135312744,'NM_145808','MTPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142053693,142055088,'NM_001190487','MTRNR2L6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100399623,100448950,'NM_001164462','MUC12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100450083,100488860,'NM_001040105','MUC17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98708859,98733530,'NR_002147','MYH16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101043324,101059296,'NM_138403','MYL10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44144987,44147441,'NM_021223','MYL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44968784,44985229,'NM_033054','MYO1G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',117611321,117631329,'NM_016200','NAA38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',45086560,45095018,'NM_001146334','NACAD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',105675967,105712874,'NM_005746','NAMPT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102527258,102576805,'NM_198990','NAPEPLD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',158116763,158190281,'NM_017760','NCAPG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73826244,73841595,'NM_000265','NCF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72272609,72287915,'NR_003186','NCF1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',74210319,74225752,'NR_003187','NCF1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',10938104,10946338,'NM_002489','NDUFA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',122968318,122985194,'NM_005000','NDUFA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',140042949,140052915,'NM_004546','NDUFB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',31343604,31347063,'NM_022728','NEUROD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',26158371,26193281,'NM_004289','NFE2L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143725265,143738253,'NM_001080413','NOBOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30430667,30484918,'NM_006092','NOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',156435177,156458637,'NM_138400','NOM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150321824,150331956,'NM_001160109','NOS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44518659,44547439,'NM_013389','NPC1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',34664421,34884469,'NM_207173','NPSR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98084532,98097117,'NM_002523','NPTX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',25230715,25234630,'NM_022150','NPVF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',24290331,24298009,'NM_000905','NPY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',107575306,107884077,'NM_001193582','NRCAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129038790,129184158,'NM_005011','NRF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72354449,72360800,'NM_148956','NSUN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',74877559,74884001,'NR_033322','NSUN5P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72056767,72063238,'NR_033323','NSUN5P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',33020266,33068934,'NR_029372','NT5C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150669779,150706480,'NM_001243351','NUB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44388489,44496910,'NM_015332','NUDCD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2248421,2257306,'NM_198952','NUDT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',134893201,134984039,'NM_015135','NUP205'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',23187970,23207155,'NM_007342','NUPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',8440109,8759118,'NM_152745','NXPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5886954,5892520,'NM_001097622','OCM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',97451948,97457352,'NM_006188','OCM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44612645,44715194,'NM_001165036','OGDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128199778,128203080,'NM_001708','OPN1SW'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143559936,143560869,'NM_001005287','OR2A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143423133,143424066,'NM_001004135','OR2A12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143457138,143458071,'NM_001001659','OR2A14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143437608,143438565,'NM_001005480','OR2A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143578699,143579629,'NR_002158','OR2A20P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143402245,143403178,'NM_001004488','OR2A25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143559936,143560869,'NM_001001802','OR2A42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143378427,143379363,'NM_012365','OR2A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143586721,143587654,'NM_001005328','OR2A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143578496,143579481,'NR_002157','OR2A9P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99311620,99312592,'NM_001005276','OR2AE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143287952,143289041,'NM_012369','OR2F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143263258,143264212,'NM_001004685','OR2F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143332022,143332958,'NM_001005281','OR6B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142459559,142460501,'NM_001001667','OR6V1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142469502,142471004,'NR_002140','OR6W1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142433408,142434341,'NM_001001658','OR9A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141265144,141266089,'NM_001001656','OR9A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101861000,101884273,'NM_001126340','ORAI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',103554023,103635731,'NM_002553','ORC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',24802688,24986285,'NM_145321','OSBPL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',4863894,4868151,'NM_020144','PAPOLB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',139370017,139409990,'NM_022750','PARP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127037581,127043016,'NM_006193','PAX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',154366332,154425615,'NM_007349','PAXIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',82287731,82630133,'NM_014510','PCLO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100037817,100043734,'NM_002593','PCOLCE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98830234,98844241,'NM_014891','PDAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',31795771,32076991,'NM_001191056','PDE1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',503422,526007,'NM_002607','PDGFA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148331086,148356715,'NM_004911','PDIA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',95050744,95063861,'NM_002612','PDK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',94123617,94136942,'NM_001172438','PEG10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',9640424,9641972,'NR_002790','PER4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',91954272,91995781,'NM_000466','PEX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44068850,44071711,'NM_000290','PGAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',10980023,11175775,'NR_033436','PHF14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',56116168,56128183,'NM_006213','PHKG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',77307382,77424757,'NM_001127357','PHTF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',106293159,106334828,'NM_002649','PIK3CG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99809003,99835658,'NM_013439','PILRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99771623,99803390,'NR_036569','PILRB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',76778003,76883653,'NM_017439','PION'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142539295,142546956,'NM_002652','PIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',47780774,47954596,'NM_138295','PKD1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30034501,30096884,'NM_032639','PLEKHA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100635977,100647731,'NM_001084','PLOD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',131820060,131983987,'NM_181775','PLXNA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102725108,102742369,'NM_004279','PMPCB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5979395,6015263,'NR_003085','PMS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6741460,6757757,'NR_002217','PMS2CL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72114615,72152902,'NR_003614','PMS2L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99756198,99771866,'NR_003613','PMS2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',74975004,74995389,'NR_028059','PMS2P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',66394857,66404841,'NR_022007','PMS2P4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73944829,73960266,'NR_027776','PMS2P5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',107899306,107953874,'NM_015723','PNPLA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',130835560,130891916,'NM_005397','PODXL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44120810,44129672,'NM_006230','POLD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44078371,44088654,'NM_013284','POLM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101900552,101906386,'NM_006234','POLR2J'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102064432,102099412,'NM_032959','POLR2J2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101965370,102099384,'NM_001097615','POLR2J3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',43947018,44025273,'NR_003655','POLR2J4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',71987871,72056774,'NM_172020','POM121'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',74884000,74953504,'NM_001099415','POM121C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',53070842,53072112,'NM_182595','POM121L12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',76077238,76094556,'NM_012230','POMZP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',94765604,94791820,'NM_000446','PON1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',94872109,94902320,'NM_000305','PON2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',94827119,94863623,'NM_000940','PON3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100141611,100143059,'NM_005837','POP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75382355,75454109,'NM_000941','POR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',124249675,124357273,'NM_015450','POT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',38984133,39470915,'NM_007252','POU6F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44802765,44809241,'NM_021130','PPIA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',113304117,113346318,'NM_002711','PPP1R3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',94374884,94763663,'NM_017650','PPP1R9A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150884133,151205249,'NM_016203','PRKAG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',555359,719103,'NM_001164762','PRKAR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',106472413,106589492,'NM_002736','PRKAR2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101823808,101854134,'NM_024653','PRKRIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',18032924,18034011,'NM_175886','PRPS1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',29569951,29573436,'NM_175887','PRR15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127777614,127788975,'NM_001114726','PRRT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142136892,142140501,'NM_002769','PRSS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142178777,142182363,'NM_002770','PRSS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141182546,141187690,'NM_001171951','PRSS37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141598435,141604355,'NM_001001317','PRSS58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',42922986,42938330,'NM_002787','PSMA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102775206,102797078,'NM_002803','PSMC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1573494,1576194,'NM_001134340','PSMG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',56046237,56086762,'NM_004577','PSPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98852297,98874398,'NM_015545','PTCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',136562634,136679086,'NM_002825','PTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',77005287,77107324,'NM_001131008','PTPN12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',157024510,158073243,'NM_130843','PTPRN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',121300394,121489326,'NM_001206839','PTPRZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44882416,44891485,'NM_033224','PURB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',104884195,104949921,'NM_019042','PUS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99654806,99657047,'NM_024070','PVRIG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',139750311,139772519,'NM_001008749','RAB19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',65843077,65913883,'NM_014504','RABGEF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100743367,100751813,'NM_001130820','RABL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6380650,6410123,'NM_018890','RAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',4805265,4889861,'NM_018059','RADIL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',39629676,39714248,'NM_005402','RALA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',45163891,45190375,'NM_005856','RAMP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',22124432,22363058,'NM_012294','RAPGEF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149666339,149669696,'NM_002889','RARRES2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102007167,102044425,'NM_006989','RASA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44035010,44046747,'NR_024116','RASA4P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5052078,5075645,'NM_021163','RBAK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5051977,5079380,'NM_001204513','RBAK-LOC389458'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127737671,127771198,'NM_018077','RBM28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',155129963,155266940,'NM_053043','RBM33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102899466,103417199,'NM_005045','RELN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149696811,149702066,'NM_013400','REPIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73283767,73306674,'NM_002914','RFC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75346252,75356180,'NM_001040457','RHBDD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150794030,150847943,'NM_005614','RHEB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',104959767,104995360,'NM_021930','RINT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',122125001,122126444,'NM_139175','RNF133'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',122128955,122130257,'NM_198085','RNF148'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5626197,5787887,'NM_207116','RNF216'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',4980141,5004326,'NR_015449','RNF216P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',156126201,156162581,'NM_001184996','RNF32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',33100934,33115527,'NM_203288','RP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',32922951,32949307,'NR_003500','RP9P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',7643099,7724763,'NM_002947','RPA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',77814494,77826706,'NR_003680','RPL13AP17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102568952,102570086,'NR_026660','RPL19P12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',20833441,20833964,'NR_026673','RPL23P8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',23496531,23497556,'NR_026676','RPS2P32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',77163678,77247056,'NM_198467','RSBN1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5932302,5976840,'NM_173565','RSPH10B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5932302,5976840,'NM_001099697','RSPH10B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',87095664,87299549,'NM_001134405','RUNDC3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',92566761,92585272,'NM_001193307','SAMD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',92597303,92615616,'NM_152703','SAMD9L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100007788,100009206,'NM_001168682','SAP25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',66090124,66098023,'NM_016038','SBDS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',71937887,71942522,'NR_001588','SBDSP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',12595672,12659753,'NM_033128','SCIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',29926243,29996259,'NM_001145513','SCRN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',4135842,4275157,'NR_027816','SDK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',54787433,54794433,'NM_014302','SEC61G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',83425594,83662153,'NM_006080','SEMA3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',80209789,80386603,'NM_006379','SEMA3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',84462807,84589183,'NM_152754','SEMA3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',82831157,83116415,'NM_012431','SEMA3E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',63947505,63951613,'NR_002789','SEPHS1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',55828730,55897976,'NM_207366','SEPT14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',35807120,35913240,'NM_001242956','SEPT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',45729910,45775142,'NR_024271','SEPT7P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100557098,100569267,'NM_000602','SERPINE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',37912059,37923050,'NM_003014','SFRP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',94052471,94123457,'NM_001099400','SGCE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101715124,101748898,'NM_020979','SH2B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',96156014,96177139,'NM_006304','SHFM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',155288318,155297728,'NM_000193','SHH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',26673212,26870866,'NM_003930','SKAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100288293,100302570,'NM_020246','SLC12A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',122540823,122627261,'NM_022444','SLC13A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',135016526,135063473,'NM_012450','SLC13A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',95587467,95789395,'NM_014251','SLC25A13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',87301749,87343628,'NM_018843','SLC25A40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',107193147,107230914,'NM_000111','SLC26A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',107088315,107145488,'NM_000441','SLC26A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102780412,102873860,'NM_206885','SLC26A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5289086,5310230,'NM_153247','SLC29A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',133624629,133652367,'NM_032826','SLC35B4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',139680020,139744780,'NM_207113','SLC37A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150387589,150404547,'NM_003040','SLC4A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150566991,150605164,'NM_003078','SMARCD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128615948,128640621,'NM_005631','SMO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98462993,98579679,'NM_001199847','SMURF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',127079437,127519895,'NM_014390','SND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75411036,75411170,'NR_002955','SNORA14A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',56095656,56095789,'NR_002957','SNORA15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',64857947,64858081,'NR_002961','SNORA22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',45110472,45110606,'NR_002919','SNORA5A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',45112091,45112223,'NR_002990','SNORA5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',45111029,45111166,'NR_002991','SNORA5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44991501,44991634,'NR_002952','SNORA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',22862756,22862830,'NR_003075','SNORD93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',26367028,26380474,'NM_001199837','SNX10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',17796909,17946656,'NM_015132','SNX13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2257930,2320625,'NM_013321','SNX8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',16467630,16471999,'NM_015464','SOSTDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',21434213,21520676,'NM_003112','SP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',20788418,20793033,'NM_182700','SP8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',123352521,123387336,'NM_153189','SPAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44007013,44016248,'NM_175064','SPDYE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101978777,101989855,'NM_001031618','SPDYE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101978777,101989855,'NM_001166339','SPDYE2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99743260,99757755,'NM_001004351','SPDYE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',74962234,74971564,'NM_001099435','SPDYE5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',101772911,101783609,'NM_001146210','SPDYE6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',71971253,71977591,'NR_003666','SPDYE7P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72128195,72138245,'NR_003664','SPDYE8P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75856581,75876948,'NM_080744','SRCRB4D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',87672367,87687329,'NM_003130','SRI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',104544058,104816577,'NM_182692','SRPK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75669151,75754541,'NM_001110199','SRRM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100310636,100324221,'NM_001128854','SRRT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141084644,141096726,'NM_003143','SSBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149104063,149161986,'NM_198455','SSPO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',116380616,116657311,'NM_018412','ST7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',116379736,116381624,'NR_002330','ST7-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',116539581,116572850,'NR_002331','ST7-AS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',116609970,116637227,'NR_002332','ST7-OT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',116381188,116387103,'NR_002329','ST7-OT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99613473,99649946,'NM_012447','STAG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',74826364,74834850,'NR_040583','STAG3L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',73936198,73944667,'NR_040584','STAG3L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72105924,72114384,'NR_040582','STAG3L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',66405059,66423948,'NR_040586','STAG3L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',38184332,38236797,'NM_032016','STARD3NL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',89621624,89632077,'NM_012449','STEAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',22425587,22506426,'NM_207342','STEAP1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',89678935,89704928,'NM_152999','STEAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',87743679,87774164,'NM_001205315','STEAP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',43589216,43633503,'NM_004760','STK17A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',23716521,23838652,'NM_032944','STK31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',134567270,134593784,'NM_182489','STRA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72751470,72771953,'NM_004603','STX1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75463590,75515257,'NM_016086','STYXL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',56099410,56115859,'NM_001146333','SUMF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',838667,881083,'NM_001130965','SUN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',47993270,48035241,'NM_152782','SUN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',137929569,137999509,'NM_174959','SVOPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',105518187,105539994,'NM_182715','SYPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',97199206,97207720,'NM_003182','TAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99542628,99554931,'NR_033792','TAF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',38265768,38279773,'NM_001003806','TARP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',122421994,122422990,'NM_016945','TAS2R16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141110365,141111466,'NM_016943','TAS2R3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141318899,141320042,'NM_176817','TAS2R38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142590633,142591650,'NM_176881','TAS2R39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141124757,141125657,'NM_016944','TAS2R4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142629293,142630265,'NM_176882','TAS2R40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142885087,142886011,'NM_176883','TAS2R41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141136485,141137635,'NM_018980','TAS2R5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142850667,142851624,'NM_177437','TAS2R60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',27746238,27835911,'NM_001079864','TAX1BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72621209,72630949,'NM_012453','TBL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',45106223,45117842,'NM_030900','TBRG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',35237636,35260236,'NM_001166220','TBX20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',139175420,139366594,'NM_001061','TBXAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',97683982,97719404,'NM_015395','TECPR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',115637782,115686073,'NM_015641','TES'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1620631,1622854,'NR_001288','TFAMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',115362437,115458103,'NM_001018058','TFEC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',93353680,93358001,'NM_006528','TFPI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100055974,100077109,'NM_003227','TFR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',107989906,107997403,'NM_001130475','THAP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',11376586,11838349,'NM_015204','THSD7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44585286,44588352,'NM_182547','TMED4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',12217372,12243415,'NM_018374','TMEM106B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75454090,75461928,'NM_031925','TMEM120A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98282046,98305609,'NM_152913','TMEM130'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142692161,142695263,'NM_001242776','TMEM139'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',134483305,134501507,'NM_018295','TMEM140'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',112193022,112217714,'NM_022484','TMEM168'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150128786,150133141,'NM_018487','TMEM176A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150119308,150128554,'NM_001101312','TMEM176B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1548396,1562592,'NM_001097620','TMEM184A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',19725462,19778929,'NM_152774','TMEM196'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129591790,129632574,'NM_032842','TMEM209'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138133278,138141309,'NM_001085429','TMEM213'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',123458205,123460759,'NM_001136002','TMEM229A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',77260980,77265683,'NM_032936','TMEM60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150409104,150411346,'NM_031434','TMUB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128381469,128482463,'NM_001191028','TNPO3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5312948,5429703,'NM_001080495','TNRC18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',47281276,47588267,'NM_022748','TNS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',22818776,22828946,'NM_019059','TOMM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',86792599,86812744,'NR_015381','TP53TG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128482512,128484529,'NR_002187','TPI1P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',143779966,144164079,'NM_022445','TPK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',65307693,65462873,'NM_003596','TPST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',23510925,23538181,'NM_013293','TRA2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',28959498,28964554,'NM_014817','TRIL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',137795618,137920872,'NM_003852','TRIM24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99325965,99355159,'NM_033017','TRIM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72364470,72380021,'NM_178125','TRIM50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100515505,100520609,'NM_030961','TRIM56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',74862838,74872824,'NM_198924','TRIM73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72067951,72077933,'NM_198853','TRIM74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100302885,100309012,'NM_003302','TRIP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142315769,142340942,'NM_019841','TRPV5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142279081,142293599,'NM_018646','TRPV6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98314048,98448802,'NM_001244580','TRRAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142158331,142161975,'NR_001296','TRY6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99902077,99914838,'NM_030935','TSC22D4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',130004025,130021946,'NM_052933','TSGA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',120214609,120285413,'NM_012338','TSPAN12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',16759875,16790686,'NM_014399','TSPAN13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',128571947,128596770,'NM_178562','TSPAN33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138469029,138525090,'NM_001144923','TTC26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',2638128,2670962,'NM_025250','TTYH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',19121615,19123820,'NM_000474','TWIST1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',19701609,19715185,'NM_001002926','TWISTNB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',37854723,37906527,'NM_016616','TXNDC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',66099251,66341933,'NM_018264','TYW1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',71677427,71936749,'NM_001145440','TYW1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',43932559,43962260,'NM_015983','UBE2D4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129257808,129380036,'NM_003344','UBE2H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',156624415,156754827,'NM_014671','UBE3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138566770,138643522,'NM_173569','UBN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100324279,100325275,'NM_001015072','UFSP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1239179,1243139,'NM_001080461','UNCX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75977680,75995135,'NM_030570','UPK3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',102064709,102070474,'NM_001114403','UPK3BL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',48094879,48114855,'NM_181597','UPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',43882025,43912756,'NM_017920','URGCP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',43872681,43912756,'NM_001204871','URGCP-MRPS24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6111075,6167720,'NM_032172','USP42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100592509,100595572,'NM_003378','VGF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',158513626,158630410,'NM_003382','VIPR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',64975691,65057235,'NM_173517','VKORC1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',55505799,55607694,'NM_030796','VOPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72720109,72724376,'NM_001077621','VPS37D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',38730067,38915325,'NM_014396','VPS41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',54577512,54604442,'NM_182546','VSTM2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',49783802,49922684,'NM_198570','VWC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',12337033,12410377,'NM_001135924','VWDE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',123109232,123176352,'NM_003941','WASL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',74094218,74127635,'NM_030798','WBSCR16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',70235724,70816520,'NM_022479','WBSCR17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72735833,72750478,'NM_001202560','WBSCR22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72886857,72894791,'NM_152559','WBSCR27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',72913424,72918159,'NM_182504','WBSCR28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',158342029,158431644,'NM_018051','WDR60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',150709139,150738057,'NM_198285','WDR86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',134519129,134546856,'NM_014149','WDR91'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',141054621,141077540,'NM_001105558','WEE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',29812694,29923207,'NM_001080529','WIPF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5196360,5240012,'NM_016003','WIPI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',120756325,120768394,'NM_057168','WNT16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',116703921,116750579,'NR_024047','WNT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',151974519,152004183,'NM_005431','XRCC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44207102,44220418,'NM_006555','YKT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75794043,75826278,'NM_012479','YWHAG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100169184,100233355,'NM_003386','ZAN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138378805,138445005,'NM_020119','ZC3HAV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',138360991,138371315,'NM_080660','ZC3HAV1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',129445361,129478469,'NM_016478','ZC3HC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99836430,99864238,'NM_017984','ZCWPW1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6583589,6595135,'NM_001134389','ZDHHC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',1159068,1166381,'NM_182491','ZFAND2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99451154,99473339,'NM_003439','ZKSCAN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98940508,98969381,'NM_014569','ZKSCAN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',44762311,44776004,'NM_174929','ZMIZ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',63763945,63808836,'NM_016220','ZNF107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',64072264,64088849,'NM_015852','ZNF117'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6694588,6713091,'NM_006956','ZNF12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',63892205,63931460,'NM_006524','ZNF138'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148567674,148583633,'NM_012256','ZNF212'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',64001054,64029390,'NR_003099','ZNF273'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',111633878,111771225,'NM_021994','ZNF277'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148523509,148554272,'NM_003575','ZNF282'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99505529,99517307,'NM_032924','ZNF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98928789,98935813,'NM_032164','ZNF394'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148475492,148511051,'NM_170686','ZNF398'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148430810,148454371,'NM_001001661','ZNF425'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149092384,149101228,'NM_207336','ZNF467'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',57191267,57211513,'NM_033273','ZNF479'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99052506,99067966,'NM_145115','ZNF498'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98993980,99000264,'NM_024061','ZNF655'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',63326286,63364744,'NM_153363','ZNF679'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',63622468,63660940,'NM_001130022','ZNF680'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',55947824,55975927,'NM_182633','ZNF713'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',57513824,57537207,'NM_001159279','ZNF716'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',63143255,63176362,'NM_001159522','ZNF727'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',63305015,63318103,'NM_001159524','ZNF735'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',63410620,63447452,'NM_001170905','ZNF736'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148800816,148825831,'NM_152557','ZNF746'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148875177,148952814,'NR_027789','ZNF767'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149707338,149726652,'NM_173680','ZNF775'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148759386,148788986,'NM_015694','ZNF777'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148590194,148613018,'NM_001195220','ZNF783'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',148397665,148418802,'NM_152411','ZNF786'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',98908450,98923153,'NM_213603','ZNF789'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',126797589,126820003,'NM_176814','ZNF800'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',88226688,88804282,'NM_181646','ZNF804B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5829316,5860592,'NR_023382','ZNF815'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',6622051,6630446,'NM_017560','ZNF853'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',149166441,149195501,'NM_001099220','ZNF862'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',5127466,5150703,'NR_034163','ZNF890P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',64476202,64503433,'NM_007139','ZNF92'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',100647704,100654191,'NM_006349','ZNHIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',30290447,30373833,'NM_147128','ZNRF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',32734086,32736120,'NR_003502','ZNRF2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',29690912,29691962,'NR_027347','ZNRF2P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',75864776,75909324,'NM_007155','ZP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',49947569,50103406,'NM_001159878','ZPBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',99485352,99500600,'NM_145914','ZSCAN21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7',142788481,142798327,'NM_003461','ZYX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr7_',205741,249523,'NM_001242480','LOC389831'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',107840886,107851648,'NM_139166','ABRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',39561243,39706740,'NM_014237','ADAM18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',39720411,39814936,'NM_001464','ADAM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',24207524,24249557,'NM_021777','ADAM28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',39084206,39261593,'NM_145004','ADAM32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',39427720,39499627,'NR_001569','ADAM3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',39291338,39379532,'NR_001448','ADAM5P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',24354453,24422165,'NM_003817','ADAM7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38973661,39081936,'NM_003816','ADAM9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',24297742,24319471,'NM_001145272','ADAMDEC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145568538,145589261,'NM_174922','ADCK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',131861728,132122017,'NM_001115','ADCY8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67507271,67543598,'NM_144650','ADHFE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',26683138,26778839,'NM_000680','ADRA1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',37939670,37943341,'NM_000025','ADRB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6553285,6606429,'NM_018361','AGPAT5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',41554863,41601677,'NM_178819','AGPAT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',108330885,108579430,'NM_001146','ANGPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6344580,6408192,'NM_001118888','ANGPT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',41629900,41641961,'NM_001142445','ANK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',101602175,101641188,'NM_198401','ANKRD46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124762214,124818828,'NM_004306','ANXA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42129620,42147858,'NM_006803','AP3M2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143689411,143692835,'NM_015193','ARC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',68272437,68418466,'NM_006421','ARFGEF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145725370,145809696,'NM_025251','ARHGAP39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',1759555,1894214,'NM_014629','ARHGEF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',66677244,66709006,'NM_018120','ARMC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',17958204,17986787,'NM_004315','ASAH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',131133534,131483399,'NM_018482','ASAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',131376782,131377961,'NR_002765','ASAP1-IT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38082167,38116385,'NM_004674','ASH2L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',62698822,62764962,'NM_001164752','ASPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124401271,124477886,'NM_014109','ATAD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',87180254,87235570,'NM_152565','ATP6V0D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',20098983,20123487,'NM_001693','ATP6V1B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',104102423,104154461,'NM_001695','ATP6V1C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',54790667,54918403,'NM_015941','ATP6V1H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',103907711,103945573,'NM_148174','AZIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',104222096,104311709,'NM_024812','BAALC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38153262,38189976,'NM_001204878','BAG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143542378,143623370,'NM_001702','BAI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',65655348,65658745,'NM_152414','BHLHE22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22533891,22582606,'NM_018688','BIN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11388929,11459517,'NM_001715','BLK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22078597,22125785,'NM_006129','BMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',26296439,26326561,'NM_004331','BNIP3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145456863,145485928,'NM_015201','BOP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144851272,144852571,'NR_015445','BREA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',37820555,37826589,'NM_018310','BRF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11263320,11333576,'NR_026814','C8orf12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',50147455,50151195,'NM_001007176','C8orf22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144192053,144207095,'NM_173687','C8orf31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',146248627,146252220,'NM_023080','C8orf33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',69405510,69610616,'NM_001195639','C8orf34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',96326316,96350638,'NM_177965','C8orf37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',96106396,96140114,'NM_152416','C8orf38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',94821514,94822223,'NR_027259','C8orf39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',40130145,40131978,'NM_020130','C8orf4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42515874,42527297,'NM_138436','C8orf40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',431645,485331,'NM_175075','C8orf42'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67742340,67755931,'NM_019607','C8orf44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67742340,67936811,'NM_001204173','C8orf44-SGK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67946290,67980153,'NM_001136160','C8orf45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67568044,67593313,'NM_152765','C8orf46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',99145925,99175014,'NM_173549','C8orf47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',13468722,13470168,'NM_001007090','C8orf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144520167,144522180,'NR_026785','C8orf51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143805622,143815352,'NM_016647','C8orf55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',104214366,104222746,'NR_027071','C8orf56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22513058,22517607,'NM_001198827','C8orf58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',86313539,86319895,'NM_001099673','C8orf59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',58354655,58359844,'NR_026772','C8orf71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144719505,144726071,'NM_001100878','C8orf73'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',10567556,10595513,'NM_001040032','C8orf74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',29634693,29661544,'NR_026765','C8orf75'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124301376,124322819,'NM_032847','C8orf76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',146199000,146202236,'NR_026974','C8orf77'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27935399,27997307,'NM_001010906','C8orf80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145722410,145725266,'NM_001001795','C8orf82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',93964933,94046993,'NM_001191036','C8orf83'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',74139331,74168061,'NM_153225','C8orf84'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',118019644,118025420,'NM_001025357','C8orf85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38487508,38505337,'NM_207412','C8orf86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145547693,145549313,'NR_015428','C8ORFK29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',86427709,86441195,'NM_001164830','CA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',86344967,86383554,'NM_198584','CA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',86563382,86580973,'NM_000067','CA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',86538307,86548519,'NM_005181','CA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',61263976,61356508,'NM_004056','CA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',91140013,91164283,'NM_004929','CALB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144860851,144862267,'NM_001162914','CCDC166'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27646751,27686089,'NM_018246','CCDC25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',95961628,95976658,'NM_057749','CCNE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',25372429,25421342,'NM_152562','CDCA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',95208569,95298707,'NM_001144663','CDH17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',48812028,48813279,'NM_005195','CEBPD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',57286868,57293730,'NM_024300','CHCHD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',61753877,61943140,'NM_017780','CHD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',82807242,82834303,'NM_152284','CHMP4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23157094,23175457,'NM_152272','CHMP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',141590578,141596434,'NR_023360','CHRAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27373194,27392730,'NM_000742','CHRNA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42726936,42743086,'NM_001199279','CHRNA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42671718,42711366,'NM_000749','CHRNB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',8597075,8599027,'NM_194284','CLDN23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',1699276,1722143,'NM_018941','CLN8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27510350,27528245,'NM_203339','CLU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',62363078,62576758,'NM_173519','CLVS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',87947791,88464071,'NM_173538','CNBD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',87655278,87825019,'NM_019098','CNGB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',17131110,17148758,'NM_013354','CNOT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',121206532,121453454,'NM_021110','COL14A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',139669659,139995418,'NM_152888','COL22A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',120148604,120188383,'NM_006438','COLEC10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',146046354,146049256,'NM_014066','COMMD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',68117868,68137116,'NM_006837','COPS5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',100959398,100975418,'NM_004374','COX6C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',68496958,68821174,'NM_020361','CPA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',87595771,87642842,'NM_003909','CPNE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145589253,145605541,'NM_013291','CPSF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67251165,67253400,'NM_000756','CRH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',76059262,76109350,'NM_031461','CRISPLD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',19305951,19584374,'NM_018371','CSGALNACT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',2780281,4839736,'NM_033225','CSMD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',113304332,114518418,'NM_198123','CSMD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',68139156,68271403,'NM_024790','CSPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',104452961,104464393,'NM_138455','CTHRC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11737442,11763055,'NM_147783','CTSB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145221947,145224416,'NM_001916','CYC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145646122,145661226,'NM_138496','CYHR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143950774,143958238,'NM_000497','CYP11B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143988976,143996261,'NM_000498','CYP11B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',59565290,59575274,'NM_000780','CYP7A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',65671082,65873902,'NM_004820','CYP7B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',104496117,104524856,'NM_015420','DCAF13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',88952086,88955412,'NM_152418','DCAF4L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',30133354,30160697,'NM_006571','DCTN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38208165,38215767,'NM_001164234','DDHD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',91082755,91133403,'NM_001359','DECR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6822580,6825024,'NM_004084','DEFA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6813072,6814045,'NR_029386','DEFA10P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6841697,6844134,'NM_001042500','DEFA1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6860800,6863226,'NM_005217','DEFA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6780754,6783196,'NM_001925','DEFA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6900238,6901669,'NM_021010','DEFA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6769625,6771008,'NM_001926','DEFA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6715508,6722939,'NM_005218','DEFB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7273900,7275280,'NM_001081551','DEFB103A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7273825,7275092,'NM_018661','DEFB103B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7315239,7320014,'NM_080389','DEFB104A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7731402,7736174,'NM_001040702','DEFB104B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7332652,7334483,'NM_152250','DEFB105A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7332652,7334483,'NM_001040703','DEFB105B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7327435,7331319,'NM_152251','DEFB106A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7327435,7331319,'NM_001040704','DEFB106B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7340777,7354243,'NM_001037668','DEFB107A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7340777,7354243,'NM_001040705','DEFB107B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12295163,12302245,'NR_024044','DEFB109P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7157777,7164883,'NR_003668','DEFB109P1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11959306,11966665,'NM_001037804','DEFB130'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11888897,11891169,'NM_001033019','DEFB134'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11877238,11879508,'NM_001033017','DEFB135'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11868854,11869517,'NM_001033018','DEFB136'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7789608,7791647,'NM_004942','DEFB4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7259794,7261764,'NM_001205266','DEFB4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6832109,6834653,'NR_036686','DEFT1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6832109,6834653,'NR_036687','DEFT1P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',142207901,142275082,'NM_014957','DENND3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',120955080,121132338,'NM_022783','DEPTOR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124094748,124123829,'NM_001134671','DERL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145509054,145521375,'NM_012079','DGAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42350742,42353831,'NM_014420','DKK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12985242,13035180,'NM_006094','DLC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',1436975,1644049,'NM_004745','DLGAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67096344,67175309,'NM_033105','DNAJC5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',25098203,25326536,'NM_024940','DOCK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',21822329,21827151,'NM_003974','DOK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',95801278,95875252,'NM_181787','DPY19L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',105460827,105548453,'NM_001385','DPYS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',26491256,26571610,'NM_001386','DPYSL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',120915361,120937351,'NM_024094','DSCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',33568392,33576981,'NM_024025','DUSP26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',29246497,29264186,'NM_001394','DUSP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',86276870,86314006,'NM_001951','E2F5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',110621485,110646567,'NM_004215','EBAG9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',25757489,25958309,'NM_022659','EBF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144733009,144750988,'NM_001960','EEF1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',49790026,49810423,'NM_001142857','EFCAB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',16929117,17024519,'NM_181723','EFHA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',132985537,133095068,'NM_015137','EFR3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22601118,22605847,'NM_001199880','EGR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',141610445,141714828,'NM_001164623','EIF2C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',109283147,109330135,'NM_001568','EIF3E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',117726235,117837243,'NM_003756','EIF3H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38007176,38037040,'NM_004095','EIF4EBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',28006502,28104588,'NM_018091','ELP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',120638499,120720287,'NM_006209','ENPP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23342609,23371189,'NM_001128930','ENTPD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',110415727,110427365,'NM_020189','ENY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',21972631,21995982,'NM_001978','EPB49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27404561,27458403,'NM_001979','EPHX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145011899,145019422,'NM_031308','EPPK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',8897723,8928259,'NM_153332','ERI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',604199,671226,'NM_207332','ERICH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',37713254,37734477,'NM_007175','ERLIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27687976,27718343,'NM_001017420','ESCO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',95722539,95788870,'NM_001122827','ESRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145205509,145207539,'NM_019037','EXOSC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',118880782,119193239,'NM_000127','EXT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',28615071,28667121,'NM_001440','EXTL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',72272221,72431533,'NM_172058','EYA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',82599835,82606105,'NM_001105281','FABP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',82553286,82558028,'NM_001442','FABP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',82355272,82359567,'NM_001444','FABP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',82533172,82536313,'NM_001080526','FABP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',59069666,59224831,'NM_147189','FAM110B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',139211447,139578247,'NM_015912','FAM135B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',53609149,53640574,'NM_207413','FAM150A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22002659,22017836,'NM_022749','FAM160B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',79740836,79794552,'NM_016010','FAM164A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11316382,11361686,'NM_053279','FAM167A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145264659,145267608,'NM_016458','FAM203A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',130922897,131021182,'NM_016623','FAM49B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12263898,12312881,'NR_026789','FAM66A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7146542,7200286,'NR_027423','FAM66B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12010699,12046107,'NR_027425','FAM66D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7849944,7903687,'NR_027424','FAM66E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',87553693,87590125,'NM_016033','FAM82B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124263932,124290388,'NM_032899','FAM83A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144878090,144887902,'NM_198488','FAM83H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',127633864,127639893,'NM_174911','FAM84B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12077021,12089033,'NR_003494','FAM86B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12327494,12338223,'NM_001137610','FAM86B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7663908,7666920,'NM_001164447','FAM90A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7101835,7104846,'NM_001164456','FAM90A13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7610374,7613385,'NM_001164452','FAM90A14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7618022,7621033,'NM_001164451','FAM90A18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7618022,7621033,'NM_001164449','FAM90A19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7139945,7142956,'NM_001164453','FAM90A20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12316400,12321466,'NR_036463','FAM90A25P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7132323,7135334,'NM_001164455','FAM90A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7401069,7404644,'NM_001136572','FAM90A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7633318,7636328,'NM_001164450','FAM90A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7656261,7659272,'NM_001164448','FAM90A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124850062,124896871,'NM_144963','FAM91A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',94781948,94809847,'NM_145269','FAM92A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145549898,145552940,'NM_012162','FBXL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',28341847,28403703,'NM_172366','FBXO16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',346807,409875,'NM_183420','FBXO25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124579307,124613564,'NM_148177','FBXO32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',101214763,101227275,'NR_036491','FBXO43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11697598,11734227,'NM_004462','FDFT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124933407,125201483,'NM_001039112','FER1L6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',125065558,125122204,'NR_040044','FER1L6-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',21956373,21962265,'NM_003867','FGF17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',16894704,16904045,'NM_019851','FGF20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38387812,38445509,'NM_001174064','FGFR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',17766179,17797327,'NM_004467','FGL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',8123501,8134962,'NR_024363','FLJ10661'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22553828,22555667,'NR_027715','FLJ14107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',75674655,75833142,'NR_033830','FLJ39080'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',102133457,102157655,'NR_033962','FLJ42969'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',142513110,142586512,'NM_207414','FLJ43860'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',43030598,43060088,'NM_002027','FNTA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145669922,145672526,'NM_003923','FOXH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',33347885,33450206,'NM_032664','FUT10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',28407640,28487704,'NM_145866','FZD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',104380234,104414270,'NM_003506','FZD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11599125,11654918,'NM_002052','GATA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',75425207,75441890,'NM_001040875','GDAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',97223733,97242196,'NM_001001557','GDF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',95330660,95343723,'NM_005261','GEM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',21593809,21702292,'NM_001165039','GFRA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',64090192,64114164,'NM_003878','GGH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',41505881,41521722,'NM_032336','GINS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144420981,144430476,'NM_138465','GLI4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143913218,143925264,'NM_002066','GML'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',25332690,25338473,'NM_000825','GNRH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',41467237,41487656,'NM_001174124','GOLGA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',37910959,37916804,'NM_152413','GOT1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145209511,145213107,'NM_003801','GPAA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144366442,144370419,'NM_178172','GPIHBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',37773558,37820662,'NM_032777','GPR124'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145553032,145555754,'NM_024531','GPR172A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',142435768,142446547,'NM_005293','GPR20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145700272,145703363,'NM_005309','GPT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',102573843,102751128,'NM_024915','GRHL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145136213,145139571,'NM_000837','GRINA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',130829623,130868316,'NM_031415','GSDMC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144706699,144716374,'NM_001166237','GSDMD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',30655119,30705028,'NM_000637','GSR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',30555572,30635280,'NM_002095','GTF2E2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',122694451,122722811,'NM_005328','HAS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',122720766,122726745,'NR_002835','HAS2-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145274906,145340356,'NM_001099281','HEATR7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',80838799,80842653,'NM_001040708','HEY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',43114748,43177127,'NM_152419','HGSNAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',133142914,133186694,'NM_001145095','HHLA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',28803829,28966161,'NM_001135726','HMBOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',76614757,76641616,'NM_004133','HNF4G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42871189,43004839,'NM_032410','HOOK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',133641926,133642908,'NR_026684','HPYR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22027876,22044510,'NM_005144','HR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',99183742,99198594,'NM_005836','HRSP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145486077,145509193,'NM_005526','HSF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38950824,38965338,'NM_153692','HTRA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',39890484,39905466,'NM_002164','IDO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',39911630,39993067,'NM_194294','IDO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42247976,42309328,'NR_033819','IKBKB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',79807561,79880313,'NM_000880','IL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',82731705,82761144,'NM_001144878','IMPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',58033041,58068981,'NM_017813','IMPAD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',19719197,19753866,'NM_018142','INTS10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',95904709,95961897,'NM_017864','INTS8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',28681093,28803617,'NR_026826','INTS9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',75309492,75396117,'NM_020647','JPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143735875,143748403,'NM_003724','JRK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',41906153,42028662,'NM_001099412','KAT6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',1909450,1942516,'NM_014867','KBTBD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',73612179,74013138,'NM_004770','KCNB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',140693985,140784481,'NM_016601','KCNK9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',133202286,133562186,'NM_004519','KCNQ3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',99508425,99512199,'NM_020697','KCNS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',36760999,36912801,'NM_001031836','KCNU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',111048408,111056135,'NM_014379','KCNV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',25341280,25371901,'NM_017634','KCTD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',136538897,136729030,'NM_006558','KHDRBS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',48336041,48811116,'NM_001080394','KIAA0146'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',126105684,126173243,'NM_014846','KIAA0196'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',95569180,95634922,'NM_015496','KIAA1429'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12847553,12931655,'NM_020844','KIAA1456'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145234616,145245206,'NR_024207','KIAA1875'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22518483,22533928,'NM_021174','KIAA1967'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',28980713,29176529,'NM_015254','KIF13B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145662545,145670307,'NM_145754','KIFC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',103730180,103737159,'NM_005655','KLF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124727095,124734371,'NM_001081675','KLHL38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',71712054,71744001,'NM_016027','LACTB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',98856984,98934006,'NM_018407','LAPTM4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',30072463,30085129,'NM_015344','LEPROTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38363115,38385219,'NM_001199659','LETM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22060287,22070289,'NM_139278','LGI3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143277623,143288271,'NR_024378','LINC00051'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11471452,11476259,'NR_040035','LINC00208'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',66235933,66255129,'NR_038901','LINC00251'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',47871672,47885094,'NR_027013','LINC00293'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',92039881,92066661,'NM_001190972','LOC100127983'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',74494862,74516307,'NR_038406','LOC100128126'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144888297,144900495,'NR_033849','LOC100128338'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',19085465,19147312,'NR_038919','LOC100128993'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',65448328,65453940,'NR_034102','LOC100130155'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',127022557,127032623,'NR_038446','LOC100130231'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',62041233,62042861,'NR_034003','LOC100130298'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',74316212,74334291,'NM_001243237','LOC100130301'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124282592,124284164,'NR_024479','LOC100131726'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7821268,7847345,'NM_001193630','LOC100132396'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',72917911,73131101,'NR_033652','LOC100132891'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11959306,11966665,'NM_001195257','LOC100133267'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144134822,144171182,'NR_026913','LOC100133669'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',77685668,77758065,'NR_024360','LOC100192378'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6248484,6251477,'NR_040040','LOC100287015'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',48220094,48223604,'NR_037168','LOC100287846'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143780671,143805393,'NR_038925','LOC100288181'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',95718688,95720871,'NR_034034','LOC100288748'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',104246912,104253544,'NR_034092','LOC100499183'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',97028388,97029752,'NR_036611','LOC100500773'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67266902,67272108,'NR_039979','LOC100505659'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67494375,67503766,'NR_040434','LOC100505676'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',69986591,70178979,'NR_039986','LOC100505718'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12338892,12468725,'NR_040092','LOC100506990'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23249665,23279583,'NR_038323','LOC100507156'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',30615658,30623011,'NM_001206847','LOC100507341'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',57593431,57634936,'NR_038236','LOC100507632'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',58294201,58307942,'NR_038235','LOC100507651'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',96350239,96891547,'NR_038201','LOC100616530'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6680485,6687385,'NR_045217','LOC100652791'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',9219970,9230000,'NR_040039','LOC157273'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',126023430,126032518,'NR_027321','LOC157381'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',9794983,9798249,'NR_024281','LOC157627'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22981686,22997077,'NR_038873','LOC286059'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',1231700,1238234,'NR_033895','LOC286083'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',136315555,136381144,'NR_026706','LOC286094'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',20875776,20896910,'NR_033894','LOC286114'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',29898570,29930665,'NR_024473','LOC286135'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',58336338,58341724,'NR_038874','LOC286177'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',64844541,64860608,'NR_038875','LOC286184'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',66601796,66637455,'NR_033893','LOC286186'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',69378256,69406280,'NR_038877','LOC286189'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',71683365,71738067,'NR_038881','LOC286190'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12667941,12713281,'NR_015383','LOC340357'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7105550,7108424,'NR_027000','LOC349196'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23138678,23144384,'NR_033928','LOC389641'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',94215499,94248255,'NM_001242668','LOC389676'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12022775,12024213,'NR_003275','LOC392196'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',73280087,73326423,'NR_033867','LOC392232'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',65649419,65652374,'NR_015374','LOC401463'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',94427870,94781837,'NR_033858','LOC642924'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',128524776,128563566,'NR_024393','LOC727677'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',37723231,37724722,'NR_003671','LOC728024'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',130297894,130322668,'NR_033916','LOC728724'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',142419829,142423902,'NR_024441','LOC731779'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12623776,12657363,'NM_152271','LONRF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23210354,23317667,'NM_002318','LOXL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',19840861,19869050,'NM_000237','LPL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',105570635,105670428,'NM_001135703','LRP12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145714170,145721367,'NM_014665','LRRC14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145718568,145723224,'NM_001024678','LRRC24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',133653628,133756995,'NM_012472','LRRC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',68062920,68103340,'NM_001013626','LRRC67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',92184022,92300640,'NM_001129890','LRRC69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',86206574,86245566,'NM_033402','LRRCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38140014,38153183,'NM_014462','LSM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143863299,143865010,'NM_003695','LY6D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144171276,144175202,'NM_001127213','LY6E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144310705,144312832,'NM_002347','LY6H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143778530,143782586,'NM_017527','LY6K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',75066117,75103861,'NM_015364','LY96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',56954939,57087560,'NM_002350','LYN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143842757,143856641,'NM_023946','LYNX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143828629,143830954,'NM_205545','LYPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',55121490,55177130,'NM_006330','LYPLA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',20147955,20157083,'NM_021020','LZTS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145231292,145234503,'NM_032272','MAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144581372,144583745,'NM_201589','MAFA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',33462226,33478320,'NM_032509','MAK16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',120289790,120327095,'NM_052886','MAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144870494,144876621,'NM_139021','MAPK15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',98950486,99118122,'NM_030583','MATN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',30108728,30121742,'NM_001100916','MBOAT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',49035315,49053272,'NM_182746','MCM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6251520,6488548,'NM_024596','MCPH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',118602145,118621682,'NM_080651','MED30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',8679408,8788541,'NM_004225','MFHAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145705359,145707397,'NM_138431','MFSD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',128877389,128877456,'NR_031609','MIR1204'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',129042060,129042123,'NR_031610','MIR1205'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',129090325,129090384,'NR_031611','MIR1206'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',129130579,129130666,'NR_031612','MIR1207'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',129231543,129231616,'NR_031613','MIR1208'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145596283,145596367,'NR_031600','MIR1234'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',9798307,9798392,'NR_029668','MIR124-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',65454259,65454368,'NR_029669','MIR124-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',10720292,10720363,'NR_031711','MIR1322'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',75780482,75780537,'NR_031744','MIR2052'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',113724897,113724988,'NR_031745','MIR2053'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',135881944,135882032,'NR_029666','MIR30B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',135886300,135886370,'NR_029599','MIR30D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',29934329,29934406,'NR_036104','MIR3148'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',96154317,96154397,'NR_036105','MIR3150A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',96154314,96154400,'NR_037484','MIR3150B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',104236017,104236093,'NR_036106','MIR3151'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22158419,22158501,'NR_029714','MIR320A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',117956147,117956220,'NR_037404','MIR3610'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27615112,27615195,'NR_037417','MIR3622A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27615108,27615203,'NR_037418','MIR3622B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',94997425,94997523,'NR_039602','MIR378D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',14755317,14755390,'NR_029875','MIR383'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12629111,12629184,'NR_037492','MIR3926-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12629116,12629179,'NR_037495','MIR3926-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',10561897,10561990,'NR_036248','MIR4286'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27799474,27799552,'NR_036249','MIR4287'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',28418551,28418618,'NR_036250','MIR4288'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42870496,42870575,'NR_039679','MIR4469'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',62789900,62789972,'NR_039680','MIR4470'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',101464166,101464249,'NR_039681','MIR4471'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143255606,143255686,'NR_039682','MIR4472-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6590092,6590173,'NR_039803','MIR4659A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6590096,6590169,'NR_039807','MIR4659B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',8943364,8943438,'NR_039804','MIR4660'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',92286888,92286962,'NR_039805','MIR4661'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',125903407,125903474,'NR_039806','MIR4662A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',125903400,125903481,'NR_039809','MIR4662B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124297208,124297284,'NR_039808','MIR4663'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144887240,144887311,'NR_039810','MIR4664'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',41637115,41637183,'NR_030161','MIR486'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7983872,7984021,'NR_031689','MIR548I3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',1752803,1752880,'NR_030326','MIR596'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',9636591,9636688,'NR_030327','MIR597'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',10930125,10930222,'NR_030328','MIR598'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',100618039,100618134,'NR_030329','MIR599'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145091346,145091435,'NR_030383','MIR661'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',100618189,100618265,'NR_030596','MIR875'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144967114,144967200,'NR_030633','MIR937'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145590171,145590253,'NR_030635','MIR939'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',89118575,89408833,'NM_005941','MMP16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',57188054,57189095,'NM_005372','MOS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',121477263,121526828,'NM_014078','MRPL13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',55210333,55223627,'NM_014175','MRPL15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',80993649,81105061,'NM_014018','MRPS28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',72916330,72919285,'NM_005098','MSC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',16009757,16094671,'NM_138716','MSR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',9990475,10323811,'NM_001135671','MSRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',121526846,121605056,'NM_022045','MTBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',98725582,98811664,'NM_178812','MTDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',97320820,97342972,'NM_015942','MTERFD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',66719441,66783127,'NM_001145839','MTFR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',17198676,17315411,'NM_004686','MTMR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11179409,11223064,'NM_015458','MTMR9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',125632208,125809911,'NM_014751','MTSS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',17545582,17702706,'NM_001001924','MTUS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67636963,67688034,'NM_001144755','MYBL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',128817496,128822862,'NM_002467','MYC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',1980564,2080787,'NM_003970','MYOM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',102450296,102450999,'NR_002182','NACAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144728097,144731656,'NM_145201','NAPRT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',18123456,18125478,'NM_001160174','NAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',18293034,18303003,'NM_000015','NAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',91014739,91066075,'NM_002485','NBN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',102767945,103205738,'NM_001040624','NCALD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',71186820,71478574,'NM_006540','NCOA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',134318595,134378729,'NM_006096','NDRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',125620523,125631408,'NM_005005','NDUFB9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',91873096,92040806,'NM_022351','NECAB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',24864385,24870048,'NM_006158','NEFL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',24828359,24832511,'NM_001105541','NEFM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11664580,11682263,'NM_001135746','NEIL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',99273562,99375797,'NM_024759','NIPAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',63324054,64066182,'NM_173688','NKAIN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23615908,23620056,'NM_001136271','NKX2-6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23592150,23596395,'NM_006167','NKX3-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',41622985,41624035,'NM_152568','NKX6-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',120497732,120505859,'NM_002514','NOV'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',54015020,54016007,'NM_005285','NPBWR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',21938299,21950354,'NM_182795','NPM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144987742,144995134,'NM_178564','NRBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',32525269,32705678,'NM_004495','NRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',59658617,59734958,'NM_003580','NSMAF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',126173264,126448549,'NM_173685','NSMCE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',110322323,110415526,'NM_032869','NUDCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22020327,22022877,'NM_024815','NUDT18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',133105648,133140809,'NM_001080399','OC90'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',103633023,103642421,'NM_024410','ODF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145178154,145187572,'NM_017570','OPLAH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',54300828,54326747,'NM_000912','OPRK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',106085,107024,'NM_001005504','OR4F21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',90983268,91009270,'NM_004337','OSGIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',100025806,100033502,'NM_001142462','OSR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',92151599,92168499,'NM_016023','OTUD6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',107807510,107834097,'NM_001198535','OXR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',101784319,101803491,'NM_002568','PABPC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',82042600,82186858,'NM_018440','PAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145123307,145132623,'NM_032789','PARP10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27723056,27751268,'NM_018492','PBK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',17824645,17931737,'NM_006197','PCM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',52892692,52974288,'NM_052937','PCMTD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',66789122,66863883,'NM_002603','PDE7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',17478214,17544922,'NM_006207','PDGFRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22493931,22507755,'NM_198042','PDLIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',94998258,95007472,'NM_018444','PDP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22626709,22841366,'NM_144962','PEBP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',57516066,57521147,'NM_006211','PENK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',78055048,78075835,'NM_001172087','PEX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',97726674,98224898,'NM_016134','PGCP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',133856785,133906769,'NM_032205','PHF20L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22133160,22145796,'NM_001099335','PHYHIP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',75899326,75929819,'NM_015886','PI15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',10660293,10734709,'NM_017884','PINX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22189024,22269529,'NM_001135721','PIWIL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',110443881,110612676,'NM_177531','PKHD1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',79590890,79680057,'NM_181839','PKIA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',57236021,57286413,'NM_002655','PLAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42151392,42184351,'NM_000930','PLAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145061308,145122901,'NM_000445','PLEC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38877909,38950587,'NM_021623','PLEKHA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',96215124,96238089,'NM_024613','PLEKHF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',82515118,82522274,'NM_002677','PMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',26418112,26427400,'NM_007257','PNMA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',28230567,28256787,'NM_006228','PNOC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42315129,42348488,'NM_002690','POLB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',101232014,101235406,'NM_005034','POLR2K'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22158563,22164625,'NM_001722','POLR3D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',99199243,99241245,'NM_015029','POP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',43266741,43337485,'NM_001005365','POTEA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',128497038,128498623,'NM_001159542','POU5F1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38239806,38245895,'NM_001102559','PPAPDC1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145692916,145698312,'NM_032902','PPP1R16A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',9031173,9045630,'NM_024607','PPP1R3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',30762667,30789894,'NM_001009552','PPP2CB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',26206648,26286112,'NM_001177591','PPP2R2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22354427,22454602,'NM_001243974','PPP3CC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',71126576,71146116,'NM_024504','PRDM14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',69027156,69180208,'NM_025170','PREX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',48848221,49035296,'NM_006904','PRKDC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',37739258,37756444,'NM_007198','PROSC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',10420465,10433743,'NM_198464','PRSS55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143758875,143761147,'NM_005672','PSCA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',18429092,18710685,'NM_206909','PSD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',87129806,87150967,'NM_033126','PSKH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',97343342,97415950,'NM_014754','PTDSS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',141737662,142080594,'NM_005607','PTK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27238997,27372825,'NM_173175','PTK2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',142501188,142510802,'NM_032611','PTP4A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67842185,67842794,'NR_002734','PTTG3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144970534,144983525,'NM_078480','PUF60'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',31007898,31009859,'NM_013357','PURG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',128875960,129182681,'NR_003367','PVT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',52394689,52884558,'NM_144651','PXDNL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144757225,144762927,'NM_023078','PYCRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23201556,23209737,'NM_001136108','R3HCC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',37835622,37876173,'NM_025151','RAB11FIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',61592022,61698757,'NM_002865','RAB2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',117927353,117956286,'NM_006265','RAD21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',117955843,117958288,'NR_033886','RAD21-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',95453363,95518356,'NM_001205263','RAD54B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',85258140,85996633,'NM_173848','RALYL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',53697570,53789579,'NM_014781','RB1CC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',94812903,94822400,'NM_203390','RBM12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',30361485,30549276,'NM_006867','RBPMS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',74369818,74400070,'NM_172037','RDH10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145707474,145714018,'NM_004260','RECQL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22051477,22055393,'NM_025232','REEP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',86755946,86762978,'NM_172239','REXO1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',86754079,86755157,'NR_003594','REXO1L2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',54926920,55034417,'NM_170587','RGS20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',101042451,101187520,'NM_015668','RGS22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22913036,22933655,'NM_015178','RHOBTB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144522399,144537533,'NM_052924','RHPN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',104900591,105335832,'NM_014677','RIMS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',90839109,90872433,'NM_003821','RIPK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',33524814,33544185,'NM_024787','RNF122'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',125556188,125570040,'NM_007218','RNF139'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42827594,42871023,'NM_030954','RNF170'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',101338463,101391503,'NM_183419','RNF19A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',55691179,55705947,'NM_006269','RP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',10501269,10550027,'NM_178857','RP1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',148344,172318,'NR_003572','RPL23AP53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',99123113,99126994,'NM_000989','RPL30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',74365427,74368423,'NM_000971','RPL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145985957,145988533,'NM_033301','RPL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',57147921,57149694,'NM_001023','RPS20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',103285904,103320522,'NM_001172478','RRM2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67503816,67505522,'NM_015169','RRS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',108980719,109165089,'NM_178565','RSPO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',93036370,93099084,'NM_175636','RUNX1T1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',119270875,119703365,'NM_001101676','SAMD12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',119702420,119807487,'NR_038210','SAMD12-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',56524310,56530435,'NR_027765','SBF1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27547495,27590205,'NM_182826','SCARA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27783317,27906288,'NM_173833','SCARA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144945077,144969537,'NM_182706','SCRIB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145525261,145530751,'NM_031309','SCRT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145393504,145395033,'NM_001008271','SCXA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145393504,145395033,'NM_001080514','SCXB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',97575057,97693213,'NM_002998','SDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',59628281,59657973,'NM_005625','SDCBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',57375123,57395795,'NM_138969','SDR16C5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',41238632,41286147,'NM_003012','SFRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22075128,22077936,'NM_003018','SFTPC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',13991743,15140163,'NM_139167','SGCZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',43067813,43097480,'NM_032237','SGK196'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',8212667,8276667,'NM_001080826','SGK223'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67787206,67936811,'NM_001033578','SGK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',19215360,19298009,'NM_022071','SH2D4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145225523,145231128,'NM_030974','SHARPIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',134118154,134141785,'NM_006748','SLA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',82768445,82769762,'NM_001010893','SLC10A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',20046645,20084997,'NM_003053','SLC18A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42393149,42516225,'NM_006749','SLC20A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',104480041,104496644,'NM_030780','SLC25A32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23442307,23486008,'NM_016612','SLC25A37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',92330691,92479554,'NM_052832','SLC26A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',118032370,118258134,'NM_001172815','SLC30A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11225904,11227105,'NM_054028','SLC35G5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22280706,22347585,'NM_001135154','SLC39A14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145608605,145612725,'NM_017767','SLC39A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',142290051,142307855,'NM_001080431','SLC45A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',87295403,87311720,'NM_138817','SLC7A13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',17440664,17472352,'NM_003046','SLC7A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',70747121,70908179,'NM_001146008','SLCO5A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143819363,143820831,'NM_020427','SLURP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',49992793,49996552,'NM_003068','SNAI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67996718,68000331,'NR_002599','SNHG6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',99123489,99123621,'NR_002581','SNORA72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',57148951,57149014,'NR_002437','SNORD54'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67997262,67997338,'NR_002598','SNORD87'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',121617165,121893490,'NM_021021','SNTB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',50987149,51867980,'NM_018967','SNTG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',82874372,82917076,'NM_022133','SNX16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',101654287,101731069,'NM_152628','SNX31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22465195,22488953,'NM_005775','SORBS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',55533047,55536009,'NM_022454','SOX17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',10618687,10625432,'NM_031439','SOX7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',101239738,101323308,'NM_003114','SPAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7742811,7758729,'NM_001081552','SPAG11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7292685,7308602,'NM_058200','SPAG11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145158569,145174003,'NM_198572','SPATC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',126079900,126103707,'NM_003129','SQLE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',53185944,53484992,'NM_014682','ST18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',134536272,134653365,'NM_173344','ST3GAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38119374,38127757,'NM_000349','STAR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',74495157,74821716,'NM_001164383','STAU2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23755378,23768265,'NM_003155','STC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',99536036,99907085,'NM_006281','STK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',80685603,80740965,'NM_007029','STMN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27149730,27171820,'NM_030795','STMN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',70567581,70735701,'NM_001128206','SULF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',110655580,110726227,'NM_001099754','SYBU'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38763878,38829703,'NM_001122824','TACC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',120812194,120914255,'NM_003184','TAF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',125569915,125620510,'NM_001146160','TATDN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',55041668,55097561,'NM_201437','TCEA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',75019926,75047076,'NM_005648','TCEB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',68021289,68037379,'NM_001193502','TCF24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11234555,11263371,'NR_001578','TDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',74083650,74122541,'NM_003218','TERF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',30808601,30826075,'NM_031271','TEX15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',133948386,134216325,'NM_003235','TG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',56848344,56900559,'NM_024831','TGS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42810973,42817631,'NM_018105','THAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144751216,144753628,'NM_032862','TIGD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38965483,38973198,'NM_078473','TM2D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',105421229,105438092,'NM_030788','TM7SF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',146191054,146195087,'NR_002807','TMED10P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',92075674,92122379,'NM_018710','TMEM55A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',91703398,91727309,'NM_001146273','TMEM64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',125392339,125454121,'NM_194291','TMEM65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',30040172,30060191,'NM_016127','TMEM66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',94836247,94900636,'NR_024522','TMEM67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',56813873,56848439,'NM_152417','TMEM68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',75050930,75057572,'NR_033334','TMEM70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',133791373,133842096,'NM_001145153','TMEM71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',109864521,109868946,'NM_153015','TMEM74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23104914,23138625,'NM_003844','TNFRSF10A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',22933592,22982645,'NR_027140','TNFRSF10B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23016271,23030895,'NM_003841','TNFRSF10C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',23049048,23077485,'NM_003840','TNFRSF10D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',120004976,120033564,'NM_002546','TNFRSF11B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',9450854,9677266,'NM_003747','TNKS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145624970,145640620,'NM_013432','TONSL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144462902,144488425,'NM_052963','TOP1MT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',59880530,60194321,'NM_014729','TOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',96007375,96030791,'NM_001135733','TP53INP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',81109659,81246391,'NM_005079','TPD52'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',71648006,71683248,'NM_014294','TRAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',140811767,141537860,'NM_031466','TRAPPC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',110168828,110200988,'NM_003301','TRHR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',126511744,126519826,'NM_025195','TRIB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',27198320,27224751,'NM_171982','TRIM35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67201831,67250272,'NM_184085','TRIM55'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',125532228,125534447,'NM_017956','TRMT12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',73096039,73150373,'NM_007332','TRPA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',116489899,116750402,'NM_014112','TRPS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',143291347,143482448,'NM_145003','TSNARE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',98354889,98359352,'NM_033512','TSPYL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144765930,144770875,'NM_003313','TSTA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',109525028,109568312,'NM_014673','TTC35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',33475777,33490245,'NM_001102401','TTI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',64134601,64161166,'NM_000370','TTPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',15441966,15668529,'NM_178234','TUSC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',49083547,49137007,'NM_003350','UBE2V2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',74865393,74953664,'NM_018299','UBE2W'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',103333677,103494093,'NM_015902','UBR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',59486376,59526614,'NM_001077619','UBXN2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',30721231,30744062,'NM_005671','UBXN8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',64052973,64060014,'NR_027378','UG0898H09'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',35212516,35771723,'NM_080872','UNC5D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',97308479,97317038,'NM_006294','UQCRB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',12032085,12033678,'NM_201402','USP17L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',117847922,117856102,'NM_032334','UTP23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',67705041,67742006,'NM_025054','VCPIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',42368502,42382572,'NM_001135694','VDAC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',100094669,100291191,'NM_015243','VPS13B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145619807,145624735,'NM_016208','VPS28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',17148771,17199904,'NM_001145152','VPS37A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124154100,124233573,'NM_145647','WDR67'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124498145,124523441,'NM_018024','WDYHV1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',38251717,38358947,'NM_023034','WHSC1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',134272463,134313114,'NM_001204870','WISP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',31010319,31150819,'NM_000553','WRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',87424109,87549294,'NM_007013','WWP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',56177570,56601264,'NM_052898','XKR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',6653449,6680576,'NM_207411','XKR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',10791066,11096285,'NM_173683','XKR6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',71744153,71810731,'NM_001011720','XKR9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',21833125,21920042,'NM_015024','XPO7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',64243674,64287900,'NM_152758','YTHDF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',101999979,102032736,'NM_001135701','YWHAZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',81561002,81597165,'NM_023929','ZBTB10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144590967,144694763,'NM_015117','ZC3H3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',17058206,17124612,'NM_016353','ZDHHC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',82776120,82796094,'NM_024699','ZFAND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',135559212,135794474,'NM_020863','ZFAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',135679495,135682114,'NR_002438','ZFAT-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',77756069,77942076,'NM_024721','ZFHX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144400483,144416250,'NM_173832','ZFP41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',106400322,106885943,'NM_012082','ZFPM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124329870,124355908,'NM_007222','ZHX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',124307609,124355908,'NM_001204180','ZHX1-C8ORF76'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',123863081,124055936,'NM_014943','ZHX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',40507267,40874500,'NM_024645','ZMAT4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',146126547,146147078,'NM_006958','ZNF16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',146073139,146097650,'NM_001109689','ZNF250'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145917102,145951775,'NM_138367','ZNF251'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',146169778,146199089,'NR_023392','ZNF252'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145969304,145983529,'NM_030580','ZNF34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',28259020,28299896,'NM_018660','ZNF395'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',145995064,146005333,'NM_213605','ZNF517'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',126054719,126060811,'NM_152412','ZNF572'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',172199,187339,'NM_173539','ZNF596'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144803096,144807043,'NM_014789','ZNF623'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144444933,144453495,'NM_030895','ZNF696'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',146023706,146039410,'NM_003416','ZNF7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',37672458,37675554,'NM_025069','ZNF703'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',81703240,81949571,'NM_001033723','ZNF704'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',11984255,12010434,'NM_001039615','ZNF705D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',7202907,7207900,'NM_001164457','ZNF705G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',102278441,102287136,'NM_016096','ZNF706'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr8',144838609,144849543,'NM_173831','ZNF707'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106583104,106730348,'NM_005502','ABCA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139021506,139042561,'NM_001606','ABCA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',132579088,132752883,'NM_007313','ABL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135120383,135140451,'NM_020469','ABO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',19398924,19442500,'NM_001010887','ACER2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',32374600,32440832,'NM_002197','ACO1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',110664423,110665856,'NM_006687','ACTL7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',110656689,110658096,'NM_006686','ACTL7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135276940,135314329,'NM_139027','ADAMTS13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',18464078,18674952,'NM_052866','ADAMTSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135387106,135430462,'NM_001145320','ADAMTSL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138687415,138701732,'NM_006412','AGPAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',87351273,87546764,'NM_015239','AGTPBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',132961683,132988360,'NM_031426','AIF1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129668579,129679843,'NM_000476','AK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',4699556,4731153,'NM_001199854','AK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134590785,134744019,'NM_152572','AK8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',111927601,111974612,'NM_001136562','AKAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',116136254,116196506,'NM_030767','AKNA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115188412,115203439,'NM_000031','ALAD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',74705397,74758053,'NM_000689','ALDH1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',38382660,38388662,'NM_000692','ALDH1B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',103222662,103237883,'NM_000035','ALDOB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',101018527,101024067,'NR_024532','ALG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115862228,115880573,'NM_001633','AMBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139189056,139202878,'NM_013366','ANAPC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',128889448,128924865,'NM_012098','ANGPTL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',38561360,38610360,'NM_147195','ANKRD18A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33514410,33563001,'NM_001244752','ANKRD18B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94611713,94640560,'NR_026868','ANKRD19P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',67516580,67559660,'NM_032250','ANKRD20A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',42358298,42401406,'NM_001012421','ANKRD20A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',42358298,42401859,'NM_001012419','ANKRD20A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',68671800,68714929,'NM_001098805','ANKRD20A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',100534111,100598615,'NM_173551','ANKS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99785309,99818045,'NM_006401','ANP32B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',74956600,74975127,'NM_000700','ANXA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33614222,33615532,'NR_003573','ANXA2P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',71232268,71477095,'NM_001163','APBA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',32962603,32991639,'NM_001195251','APTX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33431151,33437631,'NM_004925','AQP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33374947,33392517,'NM_001170','AQP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',66960034,66979312,'NR_002817','AQP7P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',42848147,42883133,'NR_026558','AQP7P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34611454,34618011,'NM_001017363','ARID3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126671304,126679517,'NM_030978','ARPC5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139619916,139629633,'NM_152285','ARRDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131436703,131444269,'NM_017873','ASB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94258309,94284665,'NM_001193335','ASPN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',132309914,132366482,'NM_000050','ASS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',118227324,118489315,'NM_198186','ASTN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',116389814,116400973,'NM_004888','ATP6V1G1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35396751,35441105,'NR_003582','ATP8B5P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',93015917,93164027,'NM_001698','AUH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33100638,33157356,'NM_001497','B4GALT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',103162519,103187108,'NM_001701','BAAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33242469,33254759,'NM_004323','BAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134447813,134455461,'NM_020064','BARHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',95753729,95757429,'NM_021570','BARX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99040528,99179398,'NR_036528','BDAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94513465,94566904,'NM_015250','BICD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',16399500,16860786,'NM_017637','BNC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135885266,135922962,'NM_007371','BRD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115151632,115173334,'NM_017688','BSPRY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',122754434,122852375,'NM_001735','C5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138959518,138961247,'NM_000606','C8G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35649340,35655278,'NM_032818','C9orf100'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',97677720,97770943,'NM_001010895','C9orf102'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',85427852,85448865,'NM_001190727','C9orf103'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131123115,131124703,'NM_001012715','C9orf106'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',27274653,27287137,'NM_001161585','C9orf11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130624165,130631906,'NM_016390','C9orf114'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137526846,137531582,'NM_001048265','C9orf116'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129509091,129516124,'NM_001012502','C9orf117'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',7786490,7789799,'NM_033428','C9orf123'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',103277428,103289296,'NM_032342','C9orf125'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35807013,35818744,'NM_001012446','C9orf128'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',95120301,95148517,'NM_001098808','C9orf129'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35032222,35035988,'NM_203299','C9orf131'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',71625550,71710968,'NM_001010940','C9orf135'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139041736,139051055,'NM_207511','C9orf139'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139076399,139084849,'NM_178448','C9orf140'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139006690,139008249,'NM_183241','C9orf142'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',13917969,13935606,'NR_038194','C9orf146'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',12765011,12813059,'NM_203403','C9orf150'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',112001666,112010234,'NM_001012993','C9orf152'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',88032045,88064339,'NM_001010907','C9orf153'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99706592,99724673,'NM_016481','C9orf156'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129962359,129966028,'NM_024112','C9orf16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138497767,138500340,'NM_152571','C9orf163'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139292100,139296914,'NM_017723','C9orf167'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',88953378,88964461,'NM_001001709','C9orf170'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134275431,134438496,'NM_207417','C9orf171'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138858687,138861618,'NM_001080482','C9orf172'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139265550,139267755,'NM_001004353','C9orf173'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99109730,99179398,'NM_020893','C9orf174'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98443353,98457420,'NM_153698','C9orf21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34600491,34602101,'NM_148179','C9orf23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34369016,34387849,'NM_032596','C9orf24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34388181,34448568,'NM_001184945','C9orf25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113404931,113415654,'NR_034087','C9orf29'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96528771,96889321,'NM_032823','C9orf3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',102229315,102253838,'NM_080655','C9orf30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',102244008,102379739,'NM_001198812','C9orf30-TMEFF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139629604,139633129,'NM_032937','C9orf37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',110939401,110969392,'NM_014334','C9orf4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',76751318,76757622,'NM_017998','C9orf40'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',76787692,76833130,'NM_152420','C9orf41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115212842,115231700,'NM_152786','C9orf43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',5347966,5427937,'NM_018465','C9orf46'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',90795597,90800877,'NM_001142413','C9orf47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',110817235,110922046,'NM_032012','C9orf5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131414324,131422876,'NM_199350','C9orf50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21957137,21957753,'NR_024274','C9orf53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',73856116,73865341,'NM_001128618','C9orf57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',85743046,85761483,'NM_032307','C9orf64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',203107,205893,'NM_152569','C9orf66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',4588315,4656674,'NM_001039395','C9orf68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138146247,138150552,'NM_152833','C9orf69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135314907,135325730,'NM_001242370','C9orf7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',70341317,70345603,'NM_153237','C9orf71'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',27550498,27563842,'NM_145005','C9orf72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131629384,131637393,'NM_016520','C9orf78'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',89687591,89693634,'NM_178828','C9orf79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',114488611,114520208,'NM_021218','C9orf80'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',26830682,26882826,'NM_001167575','C9orf82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113488721,113561634,'NM_001080551','C9orf84'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',73716242,73778191,'NM_182505','C9orf85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138822194,138855460,'NM_024718','C9orf86'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94898270,94915386,'NM_032310','C9orf89'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134744110,134755239,'NM_018956','C9orf9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',116413526,116448524,'NM_153045','C9orf91'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',15543096,15961897,'NM_173550','C9orf93'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',76865935,76892953,'NM_001127603','C9orf95'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135233104,135261041,'NM_153710','C9orf96'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35663914,35671154,'NM_001216','CA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139892061,140138897,'NM_000718','CACNA1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137840153,137938826,'NM_015447','CAMSAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138378228,138387954,'NM_052813','CARD9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',111037,169075,'NM_018491','CBWD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',69671819,69729997,'NM_201453','CBWD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',69671823,69729991,'NM_001024916','CBWD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',68494357,68552413,'NM_001085457','CBWD6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130635212,130684175,'NM_004059','CCBL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35648286,35651500,'NM_174923','CCDC107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',36159388,36161331,'NM_005893','CCIN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34679566,34681274,'NM_006274','CCL19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34699001,34700147,'NM_002989','CCL21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34651892,34652689,'NM_006664','CCL27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',5440502,5460567,'NM_014143','CD274'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35599975,35608424,'NM_001782','CD72'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98302215,98369024,'NM_001077181','CDC14B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115069111,115077690,'NM_139286','CDC26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',4669565,4696594,'NM_017913','CDC37L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',89771178,89779515,'NM_178432','CDK20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',122190967,122382258,'NM_018249','CDK5RAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129588125,129592873,'NM_001261','CDK9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21957750,21965132,'NM_000077','CDKN2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21992901,21999312,'NM_078487','CDKN2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21984789,22111093,'NR_003529','CDKN2B-AS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134927185,134937069,'NM_001807','CEL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134947746,134952299,'NR_001275','CELP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94127561,94417258,'NM_001012267','CENPP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',80040810,80071803,'NM_032171','CEP78'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',14709731,14712715,'NM_005454','CER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130222579,130239451,'NM_016174','CERCAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33254876,33272067,'NM_016410','CHMP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129968164,130006483,'NM_001131015','CIZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',91115932,91121438,'NM_001827','CKS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139008880,139010845,'NM_004669','CLIC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',36180852,36202059,'NM_001184762','CLTA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34541429,34579735,'NM_001842','CNTFR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',17125037,17493917,'NM_017738','CNTLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',39062763,39278300,'NM_033655','CNTNAP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',43624880,43862469,'NM_001201380','CNTNAP3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',122890394,122979707,'NM_007018','CNTRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139269579,139287821,'NM_015456','COBRA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',100745958,100872889,'NM_001855','COL15A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115958051,116112796,'NM_032888','COL27A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136673472,136876509,'NM_000093','COL5A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130124611,130136172,'NM_016035','COQ4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99923077,99994777,'NM_052820','CORO2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130896893,130912891,'NM_000755','CRAT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',125158268,125180853,'NM_173689','CRB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35722316,35727005,'NM_006368','CREB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',110744671,110815585,'NM_003798','CTNNAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',89530793,89536204,'NM_145918','CTSL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',89649479,89652159,'NR_033405','CTSL1P8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98831779,98841746,'NM_001201575','CTSL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',89577649,89591619,'NR_027917','CTSL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',104797413,104820591,'NM_001340','CYLC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',123369219,123587630,'NM_032552','DAB2IP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',89302575,89513369,'NM_004938','DAPK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',120968728,121171560,'NM_014618','DBC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135491305,135514287,'NM_000787','DBH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37790789,37857665,'NM_024345','DCAF10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34076380,34116771,'NM_015397','DCAF12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34603547,34610496,'NM_024348','DCTN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134503070,134535609,'NM_138620','DDX31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',32445299,32516322,'NM_014314','DDX58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',116943917,117204744,'NM_017418','DEC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',125181753,125732238,'NM_020946','DENND1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',19280748,19364139,'NM_017925','DENND4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',116204180,116307557,'NM_015404','DFNB31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',92411933,92444928,'NM_017594','DIRAS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138336818,138341600,'NR_026964','DKFZP434A062'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',831689,959090,'NM_021951','DMRT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',1040345,1047554,'NM_006557','DMRT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',966963,981732,'NM_021240','DMRT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',22436839,22442472,'NM_022160','DMRTA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34448810,34510982,'NM_012144','DNAI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33015208,33029062,'NM_001539','DNAJA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34979637,34988430,'NM_012266','DNAJB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113433452,113456452,'NR_037148','DNAJC25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113433452,113472347,'NM_004125','DNAJC25-GNG10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138376172,138378062,'NM_001080849','DNLZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130005483,130057348,'NM_001005336','DNM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',263047,455259,'NM_001190458','DOCK8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130747629,130749833,'NM_014908','DOLK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130883203,130892538,'NM_001135917','DOLPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129737194,129740584,'NM_003863','DPM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139124812,139129016,'NM_013379','DPP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94297414,94338195,'NM_001197295','ECM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138876391,138880559,'NM_003792','EDF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138677199,138686951,'NM_016215','EGFL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139633264,139850399,'NM_024757','EHMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',23680102,23811478,'NM_001171197','ELAVL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130620599,130624776,'NM_004435','ENDOG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129617111,129656868,'NM_000118','ENG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34511039,34513037,'NM_198573','ENHO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139062373,139068326,'NM_203468','ENTPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139448636,139455722,'NM_198585','ENTPD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',110974074,111122842,'NM_019114','EPB41L4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',5774571,5823081,'NM_024896','ERMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',101781283,101901151,'NM_015051','ERP44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139321168,139437535,'NM_017820','EXD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',132558978,132570273,'NM_014285','EXOSC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37770307,37775065,'NM_016042','EXOSC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129742681,129752814,'NM_203305','FAM102A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',73667187,73715968,'NM_016014','FAM108B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',95253993,95368218,'NM_014612','FAM120A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',95248602,95255695,'NM_198841','FAM120AOS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',70584783,70588429,'NM_138333','FAM122A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',128128943,128199733,'NM_001011703','FAM125B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129307438,129381089,'NM_001035534','FAM129B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',24393,25864,'NR_026822','FAM138C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',18917890,19023256,'NM_153707','FAM154A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',140226457,140253993,'NM_001145249','FAM157B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135433357,135435189,'NM_001080515','FAM163B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139257857,139262043,'NM_001001710','FAM166A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35551826,35553896,'NM_001099951','FAM166B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',71129307,71197190,'NM_001127608','FAM189A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',38611084,38613277,'NR_027294','FAM201A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34713049,34719535,'NM_001141917','FAM205A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34820263,34828583,'NR_024481','FAM205B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',110736493,110743058,'NM_017832','FAM206A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96120298,96130747,'NM_017561','FAM22F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98731106,98741521,'NM_001170741','FAM22G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',45617024,45618279,'NR_024060','FAM27A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',67382748,67384009,'NR_027422','FAM27B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',44930231,44931488,'NR_027421','FAM27C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138726844,138738991,'NM_152421','FAM69B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130839073,130874172,'NM_032809','FAM73B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',39890199,39897240,'NR_026803','FAM74A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',65227092,65234206,'NR_027461','FAM74A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',40705523,40712679,'NR_026801','FAM74A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',65227092,65234206,'NR_026802','FAM74A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',39345698,39351956,'NM_001085452','FAM75A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',39345698,39351959,'NM_001040065','FAM75A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',40690290,40696537,'NM_001083124','FAM75A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',41311106,41317397,'NM_001242613','FAM75A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',41311106,41317364,'NM_001113541','FAM75A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',43564497,43570726,'NM_001145196','FAM75A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',41311109,41317364,'NM_015667','FAM75A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',89722696,89728392,'NM_001145124','FAM75C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',89934039,89939720,'NM_001166137','FAM75C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',83793506,83799991,'NM_001001670','FAM75D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',83748234,83754829,'NM_207416','FAM75D3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',83733162,83739733,'NM_001145197','FAM75D4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',83718171,83724662,'NR_026851','FAM75D5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',133123285,133141727,'NM_033387','FAM78A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',42458584,42464234,'NR_026759','FAM95B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96901156,97119812,'NM_000136','FANCC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35063834,35070013,'NM_004629','FANCG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96405237,96442352,'NM_001127628','FBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96360823,96395896,'NM_003837','FBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37500888,37566250,'NM_012166','FBXO10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',122559074,122595561,'NM_012164','FBXW2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138954707,138958994,'NM_018998','FBXW5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136941251,136949627,'NM_002003','FCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136912478,136919187,'NM_004108','FCN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94749421,94838339,'NM_001083536','FGD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',132767645,132804276,'NM_001145106','FIBCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',114967620,115023462,'NM_015258','FKBP15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',107360231,107443220,'NM_001198963','FKTN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',2525654,2612373,'NR_015375','FLJ35024'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',22636198,22814212,'NR_038977','FLJ35282'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139777294,139779045,'NR_024341','FLJ40292'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',13396378,13421328,'NR_033863','FLJ41200'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131689286,131845294,'NM_015033','FNBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',78824390,78825689,'NM_001013735','FOXB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106233,108417,'NM_207305','FOXD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',69666442,69669551,'NM_001099279','FOXD4L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',70107602,70109820,'NM_199135','FOXD4L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',42707229,42710338,'NM_199244','FOXD4L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',69465526,69468635,'NM_001126334','FOXD4L5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',68489299,68492024,'NM_001085476','FOXD4L6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99655357,99658818,'NM_004473','FOXE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35850270,35855515,'NR_024006','FP588'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129604974,129616377,'NM_004957','FPGS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',14724663,14769531,'NM_001177704','FREM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',85052126,85343168,'NM_174938','FRMD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37641051,37736901,'NM_014907','FRMPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',107250135,107348904,'NM_001145313','FSD1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',132444780,132503560,'NM_003934','FUBP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139044446,139047113,'NM_004479','FUT7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',70840298,70883813,'NM_181425','FXN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',100090184,100511300,'NM_005458','GABBR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',91409746,91411289,'NM_006705','GADD45G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',100609801,100652184,'NM_024642','GALNT12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34636634,34640573,'NM_000155','GALT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',127063931,127167111,'NM_015635','GAPVD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129066576,129195649,'NM_032293','GARNL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',88749096,88751924,'NM_002048','GAS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35726862,35739225,'NM_020944','GBA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135018160,135029122,'NM_021996','GBGT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',78246401,78312152,'NM_001097634','GCNT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',73954088,74056960,'NM_001242505','GDA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134843918,134856905,'NM_001135031','GFI1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',123257139,123302127,'NR_003191','GGTA1P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',85544155,85622572,'NM_001135953','GKAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',6522463,6635692,'NM_000170','GLDC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130306791,130341977,'NM_001499','GLE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',36126741,36153903,'NM_022343','GLIPR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',3814127,4142183,'NM_152629','GLIS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',3888645,3891248,'NR_026663','GLIS3-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137655322,137671207,'NM_182974','GLT6D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',79227814,79453052,'NM_004297','GNA14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',79525010,79836039,'NM_002072','GNAQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',36204438,36267053,'NM_001190388','GNE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113463671,113472347,'NM_001198664','GNG10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126680393,126743207,'NM_002077','GOLGA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130057928,130078089,'NM_004486','GOLGA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',87830877,87904936,'NM_177937','GOLM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131855805,131942269,'NM_020960','GPR107'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126253243,126279200,'NM_001161808','GPR144'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124836666,124837716,'NM_005294','GPR21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138341752,138356109,'NM_015597','GPSM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37412706,37426986,'NM_012203','GRHPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139153429,139183035,'NM_001185090','GRIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',103371454,103540683,'NM_133445','GRIN3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',123070200,123134941,'NM_001127664','GSN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134535548,134555291,'NM_012204','GTF3C4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134895882,134923711,'NM_001122823','GTF3C5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98252234,98293439,'NM_014282','HABP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',19043140,19092902,'NM_017645','HAUS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115175518,115178162,'NM_031219','HDHD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99728893,99740347,'NM_197978','HEMGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96176653,96263023,'NM_032558','HIATL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98748147,98815683,'NR_002894','HIATL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35802956,35805042,'NM_032593','HINT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',85772817,85785389,'NM_031262','HNRNPK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35896188,35897138,'NM_001039792','HRCT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98037409,98104255,'NM_000197','HSD17B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',114182009,114274506,'NM_032303','HSDL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',127036947,127043487,'NM_005347','HSPA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94012445,94095859,'NM_002161','IARS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130977651,130980361,'NM_203434','IER5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21430452,21431315,'NM_024013','IFNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21196179,21197142,'NM_002171','IFNA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21357370,21358075,'NM_006900','IFNA13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21229200,21229978,'NM_002172','IFNA14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21206371,21207310,'NM_002173','IFNA16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21217241,21218221,'NM_021268','IFNA17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21374253,21375396,'NM_000605','IFNA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21155635,21156659,'NM_002175','IFNA21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21267686,21268562,'NR_036676','IFNA22P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21176617,21177598,'NM_021068','IFNA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21294612,21295312,'NM_002169','IFNA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21340316,21340886,'NM_021002','IFNA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21191467,21192204,'NM_021057','IFNA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21399145,21400184,'NM_002170','IFNA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21067103,21067943,'NM_002176','IFNB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21470838,21472312,'NM_176891','IFNE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',27514311,27516496,'NM_020124','IFNK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21130630,21132144,'NM_002177','IFNW1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',26937309,27052931,'NM_001099222','IFT74'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',38398990,38414444,'NM_001007563','IGFBPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',110669620,110736429,'NM_003640','IKBKAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34643931,34651884,'NM_004512','IL11RA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',6205785,6247983,'NM_033439','IL33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138442887,138454077,'NM_019892','INPP5E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',5221418,5223967,'NM_002195','INSL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',5153862,5175618,'NM_007179','INSL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',101901331,102103247,'NM_183245','INVS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94415286,94472368,'NM_022755','IPPK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',88069282,88087310,'NM_030940','ISCA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',4975244,5118183,'NM_004972','JAK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',696895,736103,'NM_153186','KANK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137733851,137824814,'NM_020822','KCNT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',2707525,2720037,'NM_133497','KCNV2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',6747640,7165648,'NM_015061','KDM4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',46623420,46684217,'NR_003674','KGFLP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',41948801,42009584,'NR_003670','KGFLP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',2794154,2834130,'NM_014878','KIAA0020'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113162793,113286846,'NM_001080398','KIAA0368'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137511468,137520560,'NM_014811','KIAA0649'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34948191,34972541,'NM_015297','KIAA1045'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34358906,34366894,'NM_020702','KIAA1161'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',5619118,5759454,'NM_001135920','KIAA1432'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35094117,35105893,'NM_025182','KIAA1539'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',20648308,20985954,'NM_017794','KIAA1797'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',114289068,114462527,'NM_133465','KIAA1958'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138810610,138822014,'NM_001039374','KIAA1984'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',5909007,5998003,'NM_001017969','KIAA2026'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115893738,115901158,'NM_138424','KIF12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34242377,34319198,'NM_194313','KIF24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',85641434,85726162,'NM_017576','KIF27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',109286953,109291868,'NM_004235','KLF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',72189332,72219393,'NM_001206','KLF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21321017,21325429,'NM_018847','KLHL9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',132874324,132958267,'NM_006059','LAMC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137553106,137558199,'NM_002297','LCN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138752439,138757232,'NM_001001712','LCN10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138966588,138969770,'NM_178536','LCN12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138773906,138778786,'NM_203347','LCN15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129951552,129955555,'NM_005564','LCN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138758290,138762801,'NM_198946','LCN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138768660,138772552,'NM_178469','LCN8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137694988,137697576,'NM_001001676','LCN9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138997265,139000031,'NM_207510','LCNL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',125813709,125835263,'NM_004789','LHX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138227916,138234825,'NM_014564','LHX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124004676,124030912,'NM_199160','LHX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',27235681,27272791,'NR_026679','LINC00032'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',97821834,97823858,'NR_024129','LINC00092'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135880381,135886540,'NR_015427','LINC00094'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',114914996,114921947,'NR_024366','LINC00256A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',114906823,114913778,'NR_024376','LINC00256B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',117690364,117727198,'NR_024032','LINC00474'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',93943569,93961711,'NR_027341','LINC00475'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',97672386,97678080,'NR_023389','LINC00476'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',27938527,28709303,'NM_152570','LINGO2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',128416542,128503132,'NM_002316','LMX1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',93934936,93940732,'NR_015444','LOC100128076'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94420152,94422636,'NR_036505','LOC100128361'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',118306382,118364393,'NR_033973','LOC100128505'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138760433,138764184,'NR_033913','LOC100128593'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126155572,126161284,'NR_027406','LOC100129034'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',32541141,32543015,'NR_033991','LOC100129250'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',92865396,92877235,'NR_033912','LOC100129316'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139264491,139267770,'NR_038389','LOC100129722'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137606591,137618779,'NR_034016','LOC100130954'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138818199,138823121,'NR_024580','LOC100131193'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96134578,96163051,'NR_033937','LOC100132077'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',68116360,68138192,'NR_034006','LOC100132352'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98671002,98674331,'NR_038890','LOC100132781'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',66757219,66770802,'NR_024443','LOC100133920'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',132442557,132444702,'NR_027440','LOC100272217'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',78981491,78982653,'NR_026668','LOC100286938'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',122595595,122600830,'NR_027442','LOC100288842'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129913270,129920834,'NR_033374','LOC100289019'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139099218,139101090,'NR_027447','LOC100289341'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99040528,99099417,'NR_036526','LOC100499484'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',116468534,116484190,'NM_001199233','LOC100505478'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131290759,131315786,'NR_038955','LOC100506190'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',26056672,26108406,'NM_001004352','LOC100506422'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137494385,137503916,'NR_038969','LOC100506599'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37069892,37080398,'NR_036592','LOC100506710'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',71957869,71980624,'NR_040076','LOC100507244'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',72020794,72063610,'NR_039990','LOC100507299'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',97265711,97272122,'NR_038982','LOC100507346'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35899479,35901617,'NR_024283','LOC158376'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',97867941,97904015,'NR_033838','LOC158435'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',122645140,122656472,'NR_024408','LOC253039'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',90451913,90456895,'NM_001100111','LOC286238'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99192939,99198794,'NR_026847','LOC286359'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106576453,106579866,'NR_024011','LOC286367'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',91822755,91843601,'NR_038882','LOC286370'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98877773,98884048,'NR_002942','LOC340508'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',92264533,92384848,'NR_034157','LOC340515'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',14983324,15009722,'NR_003920','LOC389705'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',87610736,87647614,'NR_029410','LOC389765'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129930628,129932734,'NR_024425','LOC389791'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',89662777,89663791,'NR_040117','LOC392364'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34558009,34573070,'NR_024369','LOC415056'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',88813185,88846861,'NR_027471','LOC440173'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',68464033,68470861,'NR_015361','LOC440896'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98711177,98712558,'NR_028350','LOC441454'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98527923,98529570,'NR_026792','LOC441455'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',101688420,101708704,'NR_038853','LOC441461'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',66234088,66242850,'NR_024496','LOC442421'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',88888620,88889960,'NR_036691','LOC494127'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',71624140,71625475,'NR_038833','LOC494558'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',70159928,70162577,'NR_015423','LOC572558'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',67917602,67944195,'NR_033907','LOC642236'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',43130532,43135480,'NR_027472','LOC642929'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',39433813,39454526,'NR_003528','LOC653501'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',112675874,112840186,'NM_057159','LPAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',102830851,103127238,'NM_207299','LPPR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',26983134,26995691,'NM_022901','LRRC19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139183032,139184312,'NM_001013653','LRRC26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130684211,130720138,'NM_019594','LRRC8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129253585,129305601,'NM_001190723','LRSAM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',71848316,72031708,'NM_153267','MAMDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138866639,138875072,'NM_206920','MAMDC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139101237,139123460,'NM_016219','MAN1B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',127239493,127509334,'NM_024117','MAPKAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37867571,37894350,'NR_024873','MCART1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135197575,135204793,'NM_181491','MED22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',133725319,133945074,'NM_004269','MED27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',122403016,122516586,'NM_001080497','MEGF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',36562904,36667679,'NM_014791','MELK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131428255,131437700,'NM_014064','METTL11A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',41942398,41945076,'NR_015363','MGC21881'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',4840296,4840375,'NR_029836','MIR101-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138684874,138684959,'NR_029695','MIR126'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',122047077,122047149,'NR_029604','MIR147'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126494541,126494651,'NR_029611','MIR181A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126460535,126500728,'NR_038975','MIR181A2HG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126495809,126495898,'NR_029782','MIR181B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130046820,130046930,'NR_029619','MIR199B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',72614710,72614820,'NR_029621','MIR204'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130194717,130194814,'NR_029837','MIR219-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96612064,96612160,'NR_031755','MIR2278'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96887310,96887407,'NR_029664','MIR23B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96888123,96888191,'NR_029496','MIR24-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96887547,96887644,'NR_029665','MIR27B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129588017,129588107,'NR_036055','MIR2861'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130194720,130194808,'NR_039815','MIR2964A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96888116,96888197,'NR_036109','MIR3074'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21502113,21502184,'NR_029505','MIR31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113798652,114152366,'NR_036085','MIR3134'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',18563303,18563377,'NR_036107','MIR3152'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',91116959,91117041,'NR_036108','MIR3153'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130047046,130047130,'NR_036110','MIR3154'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',93168238,93168456,'NR_036121','MIR3163'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21444266,21549697,'NR_027054','MIR31HG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',110848329,110848399,'NR_029506','MIR32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139183458,139183543,'NR_037416','MIR3621'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94094560,94094650,'NR_037424','MIR3651'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136881633,136882311,'NR_037460','MIR3689A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136881791,136881939,'NR_037469','MIR3689B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136880964,136881036,'NR_039691','MIR3689C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136881275,136881349,'NR_039693','MIR3689D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136881943,136882023,'NR_039694','MIR3689D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136882236,136882308,'NR_039695','MIR3689E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136882408,136882474,'NR_039696','MIR3689F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',93438353,93438464,'NR_037472','MIR3910-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',93438369,93438448,'NR_037489','MIR3910-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129492786,129492895,'NR_037473','MIR3911'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129587932,129588023,'NR_039767','MIR3960'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',90550570,90550640,'NR_036252','MIR4289'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',91825542,91825637,'NR_036253','MIR4290'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',95621459,95621524,'NR_036254','MIR4291'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138845229,138845296,'NR_036251','MIR4292'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',20401145,20401236,'NR_039684','MIR4473'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',20492262,20492340,'NR_039685','MIR4474'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',36813535,36813596,'NR_039686','MIR4475'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',36883458,36883528,'NR_039687','MIR4476'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',123922181,123922267,'NR_039690','MIR4478'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138901005,138901076,'NR_039697','MIR4479'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',36854250,36854305,'NR_039766','MIR4540'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',116011534,116011630,'NR_030255','MIR455'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',5997825,5997904,'NR_039811','MIR4665'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35598083,35598162,'NR_039813','MIR4667'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113734200,113734270,'NR_039814','MIR4668'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136411077,136411139,'NR_039816','MIR4669'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94330086,94330161,'NR_039817','MIR4670'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129671514,129671595,'NR_039819','MIR4672'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138533840,138533899,'NR_039820','MIR4673'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138560445,138560532,'NR_039821','MIR4674'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',20706103,20706187,'NR_030166','MIR491'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',123415762,123798763,'NR_037516','MIR548AA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',123415762,123798763,'NR_030382','MIR548D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124913645,124913743,'NR_030331','MIR600'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124911593,124917577,'NR_026677','MIR600HG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',125204624,125204703,'NR_030332','MIR601'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139852691,139852789,'NR_030333','MIR602'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',85774482,85774592,'NR_029605','MIR7-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',28878876,28878953,'NR_030618','MIR873'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',28853623,28853704,'NR_030597','MIR876'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',95978059,95978139,'NR_029476','MIRLET7A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',95980936,95981023,'NR_029481','MIRLET7D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',95978449,95978536,'NR_029483','MIRLET7F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',5880908,5899822,'NM_005511','MLANA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',20334967,20612514,'NM_004529','MLLT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',27315206,27519850,'NM_024761','MOB3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',123962010,124002188,'NM_198469','MORN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',13095702,13240365,'NM_003829','MPDZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139566129,139566828,'NM_032477','MRPL41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',103192069,103200740,'NM_019051','MRPL50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137532303,137536340,'NM_016034','MRPS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124072963,124125563,'NM_199177','MRRF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35742987,35744274,'NM_001044264','MSMP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',21792634,21855969,'NM_002451','MTAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',102380156,102389994,'NM_001018116','MURC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',112470871,112603099,'NM_001166280','MUSK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',87745876,87827037,'NM_024635','NAA35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138038203,138126952,'NM_144653','NACC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129863332,129869420,'NM_197956','NAIF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99858779,99885186,'NM_018946','NANS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99435525,99475850,'NM_002486','NCBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',132002692,132039404,'NM_001128826','NCS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139219939,139233634,'NM_001144028','NDOR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',123946158,123961919,'NM_014222','NDUFA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',32543523,32563182,'NM_182739','NDUFB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126094519,126154540,'NM_001166169','NEK6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139461843,139473607,'NM_001178064','NELF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',14071841,14388982,'NM_001190738','NFIB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',93211147,93225965,'NM_005384','NFIL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33280417,33361155,'NM_002504','NFX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94923591,94936391,'NM_004148','NINJ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106549789,106562224,'NM_015469','NIPSNAP3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106566271,106576112,'NM_018376','NIPSNAP3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33451350,33463941,'NM_022917','NOL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94099460,94127697,'NM_017948','NOL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138508716,138560059,'NM_017617','NOTCH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139437667,139448679,'NM_006647','NOXA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139053729,139060497,'NM_015392','NPDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35782405,35799728,'NM_003995','NPR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',101623957,101636162,'NM_173199','NR4A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126283335,126309520,'NM_004959','NR5A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126324523,126573397,'NM_001489','NR6A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139313903,139316524,'NM_001004354','NRARP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',128209874,128212604,'NR_045006','NRON'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134027154,134108041,'NM_032536','NTNG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',86473285,86828325,'NM_006180','NTRK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34319503,34333711,'NM_001161','NUDT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130749797,130809195,'NM_015354','NUP188'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',132990801,133098912,'NM_005085','NUP214'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',90339835,90380524,'NM_145283','NXNL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137577805,137581636,'NM_014582','OBP2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135070486,135074449,'NM_014581','OBP2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130258105,130303392,'NM_001242353','ODF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94186069,94206758,'NM_033014','OGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137106909,137152851,'NM_014279','OLFM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126579257,126616980,'NM_182487','OLFML2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94216347,94226657,'NM_005014','OMD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106406772,106407729,'NM_001004481','OR13C2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106337871,106338915,'NM_001001961','OR13C3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106328354,106329311,'NM_001001919','OR13C4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106400558,106401515,'NM_001004482','OR13C5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106371269,106372232,'NM_001004483','OR13C8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106419349,106420306,'NM_001001956','OR13C9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106496523,106497564,'NM_001004484','OR13D1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',106306364,106307324,'NM_001004485','OR13F1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35859459,35860398,'NM_001004487','OR13J1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124430678,124431635,'NM_001004450','OR1B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124279057,124280026,'NM_001004451','OR1J1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124312901,124313843,'NM_054107','OR1J2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124321240,124322182,'NM_001004452','OR1J4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124602222,124603173,'NM_080859','OR1K1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124463815,124464748,'NM_001005236','OR1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124477229,124478204,'NM_001005234','OR1L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124526089,124527025,'NM_001005235','OR1L4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124551947,124552883,'NM_001004453','OR1L6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124369647,124370577,'NM_001004454','OR1L8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124328457,124329393,'NM_012363','OR1N1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124355269,124356262,'NM_001004457','OR1N2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124416837,124417782,'NM_012364','OR1Q1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113129583,113130534,'NM_205859','OR2K2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35947104,35948151,'NM_019897','OR2S2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124591032,124591995,'NM_001001923','OR5C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',116125123,116128580,'NM_000607','ORM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',116131889,116135357,'NM_000608','ORM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',76893217,76951934,'NM_012383','OSTF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137593424,137598443,'NM_002571','PAEP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',111442888,111753577,'NM_001037293','PALM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',111582397,111974612,'NM_007203','PALM2-AKAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',117955891,118204421,'NM_002581','PAPPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',36828530,37024476,'NM_016734','PAX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',127550298,127769476,'NM_001134778','PBX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',78569173,78592285,'NR_015342','PCA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',77695379,78167075,'NM_001190482','PCSK5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',5500544,5561282,'NM_025239','PDCD1LG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124620196,124630756,'NM_005388','PDCL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',70161634,70335797,'NM_021965','PGM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',68370063,68437674,'NR_002836','PGM5P2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',122657751,122679427,'NM_015651','PHF19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',95378729,95481690,'NM_005392','PHF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138863076,138865311,'NM_014172','PHPT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130722994,130744141,'NM_001100876','PHYHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35078684,35086546,'NM_032634','PIGO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',70510435,70813911,'NM_003558','PIP5K1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129723628,129729591,'NM_173492','PIP5KL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130504622,130523020,'NM_013355','PKN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',26893367,26937468,'NM_001031689','PLAA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',19105758,19117604,'NM_001122','PLIN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138424936,138438034,'NM_015160','PMPCA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139474225,139564807,'NM_152286','PNPLA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115209339,115212850,'NM_017443','POLE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37475944,37493693,'NM_022490','POLR1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',133368109,133389014,'NM_001136113','POMT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',4652297,4655258,'NM_203453','PPAPDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',133154901,133174470,'NM_032728','PPAPDC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130913413,130951046,'NM_178000','PPP2R4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',103393717,103397104,'NM_147180','PPP3R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126948672,126992039,'NM_001123369','PPP6C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',132529801,132548205,'NM_021619','PRDM12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',70817268,70818859,'NM_002732','PRKACG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115077734,115095006,'NM_001244926','PRPF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',133295297,133365396,'NM_013318','PRRC2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131467740,131524772,'NM_016307','PRRX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33740463,33789229,'NM_001197097','PRSS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',78416111,78710823,'NM_015225','PRUNE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',80101878,80134829,'NM_058179','PSAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',15454064,15501003,'NM_001128217','PSIP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126155564,126217542,'NM_002799','PSMB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',122618152,122645027,'NM_005047','PSMD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',71514257,71564696,'NM_001099666','PTAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',97245084,97309520,'NM_001083606','PTCH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33663501,33667418,'NR_023917','PTENP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138991776,138996015,'NM_000954','PTGDS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131540435,131555165,'NM_004878','PTGES'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129922792,129930533,'NR_027812','PTGES2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113365067,113401956,'NM_001146108','PTGR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124173049,124197802,'NM_000962','PTGS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',95832896,95911957,'NM_177995','PTPDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',20996364,21021635,'NM_001010915','PTPLAD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',111177794,111253485,'NM_001145370','PTPN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',8304245,10602723,'NM_002839','PTPRD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129516047,129517757,'NM_001002913','PTRH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',132758635,132759046,'NM_198180','QRFP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138238003,138277508,'NM_181701','QSOX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',122980235,123004186,'NM_016322','RAB14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',127002641,127036259,'NM_001174152','RABEPK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124743108,124906968,'NM_012197','RABGAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',109085337,109134296,'NM_002874','RAD23B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134962927,135014409,'NM_001042368','RALGDS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',128716873,129025266,'NM_014636','RALGPS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',6001018,6005640,'NM_012416','RANBP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',133441977,133602746,'NM_005312','RAPGEF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',84787136,84867863,'NM_152573','RASEF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124041654,124066964,'NR_027126','RBM18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124655844,124707383,'NM_018835','RC3H2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',4782833,4851064,'NM_005772','RCL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',36026909,36114452,'NM_021111','RECK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135261006,135272985,'NM_020385','REXO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',78190252,78199264,'NM_018339','RFK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',3214646,3515983,'NM_134428','RFX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37743801,37768969,'NM_144964','RG9MTD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35739276,35743264,'NM_001080496','RGP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115265829,115344192,'NM_017790','RGS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',5324968,5329873,'NM_006911','RLN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',5289867,5294580,'NM_134441','RLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',85785456,85808807,'NM_024945','RMI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35647747,35648015,'NR_003051','RMRP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115099193,115101141,'NM_145051','RNF183'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',103335953,103365447,'NM_019592','RNF20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139234519,139235596,'NM_031297','RNF208'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139241838,139243911,'NM_001190228','RNF224'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',36326398,36390296,'NM_022781','RNF38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136019382,136019507,'NR_023344','RNU6ATAC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',114019815,114135127,'NM_001244898','ROD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',93524698,93752265,'NM_004560','ROR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',76302071,76491937,'NM_006914','RORB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129249773,129253532,'NM_000976','RPL12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126659978,126664061,'NM_007209','RPL35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135204889,135208101,'NM_000972','RPL7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',19366253,19370235,'NM_001010','RPS6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',78203334,78204774,'NR_026890','RPSAP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',19039371,19041021,'NM_006570','RRAGA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35480006,35551895,'NM_014806','RUSC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',136358136,136472252,'NM_002957','RXRA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',90796181,90809745,'NM_005226','S1PR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135518504,135593300,'NM_001134707','SARDH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126744708,126945659,'NM_173690','SCAI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',19053653,19053784,'NR_003009','SCARNA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138416194,138424875,'NM_006643','SDCCAG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138454368,138497328,'NM_014866','SEC16A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',101024390,101032722,'NM_006808','SEC61B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',91123231,91164381,'NM_024077','SECISBP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',91181971,91284431,'NM_006378','SEMA4D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130485754,130498496,'NM_001122821','SET'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134126647,134220193,'NM_015046','SETX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129540416,129573442,'NM_005489','SH2D3C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',17568952,17787122,'NM_003026','SH3GL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130810133,130830400,'NM_020145','SH3GLB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37905894,38059210,'NM_003028','SHB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',90810505,90983502,'NM_016848','SHC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34624718,34627768,'NM_147157','SIGMAR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35639296,35640947,'NM_014450','SIT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',4480426,4577469,'NM_004170','SLC1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',19497449,19777017,'NM_001193288','SLC24A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129900637,129911345,'NM_052901','SLC25A25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130142659,130163570,'NM_005094','SLC27A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',86080584,86145514,'NR_037638','SLC28A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135326036,135334097,'NM_017585','SLC2A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129199285,129209986,'NM_014580','SLC2A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115023628,115066593,'NM_001859','SLC31A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',114953058,114966243,'NM_001860','SLC31A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139245029,139250827,'NM_001177316','SLC34A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98122808,98185813,'NM_007001','SLC35D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',107046749,107193503,'NM_080546','SLC44A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',114681020,114693014,'NM_033051','SLC46A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',2005341,2183623,'NM_003070','SMARCA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',105896361,105943521,'NM_006444','SMC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',72063697,72159609,'NM_015110','SMC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33031849,33066714,'NM_018225','SMU1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',15412781,15451627,'NM_001039697','SNAPC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138389849,138412710,'NM_003086','SNAPC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138738866,138742457,'NR_024543','SNHG7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138741019,138741152,'NR_002958','SNORA17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138740376,138740510,'NR_002975','SNORA43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129250601,129250737,'NR_002449','SNORA65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',118983165,118983301,'NR_003708','SNORA70C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94094563,94094696,'NR_003704','SNORA84'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33942761,33942852,'NR_003685','SNORD121A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33924285,33924378,'NR_003690','SNORD121B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135206071,135206146,'NR_002447','SNORD24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135207131,135207203,'NR_002448','SNORD36A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135206769,135206840,'NR_000017','SNORD36B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135207521,135207588,'NR_000016','SNORD36C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',133350872,133350958,'NR_002914','SNORD62A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',133350872,133350958,'NR_003050','SNORD62B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124682312,124682419,'NR_003071','SNORD90'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',114552954,114677088,'NM_001012994','SNX30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137725075,137731195,'NM_001101677','SOHLH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35797781,35802259,'NM_172312','SPAG8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',90193116,90283442,'NM_006717','SPIN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33230195,33238565,'NM_014471','SPINK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130354657,130435765,'NM_001195532','SPTAN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',93833247,93917511,'NM_006415','SPTLC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139202874,139204643,'NM_003731','SSNA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129709985,129719126,'NM_175039','ST6GALNAC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129687421,129701692,'NM_013443','ST6GALNAC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',123141173,123172366,'NM_004099','STOM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35089888,35093154,'NM_013442','STOML2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124923728,125070676,'NM_001171137','STRBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',101708735,101776639,'NM_017919','STX17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129414306,129494816,'NM_003165','STXBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33494534,33501164,'NR_003667','SUGT1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135208486,135213182,'NM_003172','SURF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135213241,135217861,'NM_017503','SURF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135218160,135232791,'NM_033161','SURF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135187372,135192868,'NM_006753','SURF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113842881,113977377,'NM_022486','SUSD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94860809,94887236,'NM_145006','SUSD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',112167349,112381981,'NM_153366','SVEP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130078245,130091089,'NM_001040011','SWI5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',92604027,92700663,'NM_001174168','SYK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',32619451,32625667,'NM_153809','TAF1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',107464558,107465206,'NM_005421','TAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130589330,130612532,'NM_018201','TBC1D13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',100001100,100057824,'NM_018421','TBC1D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99214122,99298226,'NM_014290','TDRD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',27099146,27220172,'NM_000459','TEK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35595280,35600038,'NM_006285','TESK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',102104177,102154674,'NM_001161584','TEX10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',100907232,100956294,'NM_004612','TGFBR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',71009897,71059944,'NM_001170416','TJP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',83388417,83493416,'NM_005077','TLE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',81376697,81531476,'NM_007005','TLE4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35687333,35722392,'NM_006289','TLN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',119506280,119519587,'NM_138554','TLR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',74326536,74641087,'NM_138691','TMC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',102275340,102379739,'NM_003692','TMEFF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138805597,138807590,'NM_032928','TMEM141'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',73488101,73573620,'NM_001135820','TMEM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139218355,139219911,'NM_053045','TMEM203'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',32773496,32779199,'NM_212558','TMEM215'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',107496645,107577265,'NM_018112','TMEM38B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35819228,35844844,'NM_001042589','TMEM8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135369528,135379889,'NM_001080483','TMEM8C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99303282,99403846,'NM_001166116','TMOD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',116821675,116920357,'NM_002160','TNC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',116586735,116594631,'NM_001204344','TNFSF15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',116704944,116732591,'NM_001244','TNFSF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37578411,37582636,'NM_001134485','TOMM5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',32530541,32542626,'NM_001195622','TOPORS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131615041,131626262,'NM_000113','TOR1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131605252,131613381,'NM_014506','TOR1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129533623,129537425,'NM_130459','TOR2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',6318348,6320918,'NM_033516','TPD52L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35671989,35680053,'NM_213674','TPM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139205889,139214984,'NM_001128228','TPRN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',122704491,122728994,'NM_005658','TRAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',138900785,138940888,'NM_021138','TRAF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99886457,99921301,'NM_014788','TRIM14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',118489401,118503400,'NM_012210','TRIM32'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',72339785,72926334,'NM_001007471','TRPM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',76527230,76692830,'NM_017662','TRPM6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130111216,130124518,'NM_015679','TRUB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134756555,134809841,'NM_000368','TSC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99402182,99435783,'NM_139246','TSTD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129518178,129533700,'NM_144965','TTC16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',15160841,15297358,'NM_001168339','TTC39B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',134240757,134272059,'NM_007344','TTF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',123624024,123895706,'NM_001139442','TTLL11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139255531,139257980,'NM_006088','TUBB2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',140164385,140191706,'NR_027156','TUBBP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',25666386,25668856,'NM_001004125','TUSC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',112045912,112058741,'NM_001244938','TXN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',112105687,112139946,'NM_001003936','TXNDC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',12683385,12700266,'NM_000550','TYRP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139091773,139098811,'NM_207309','UAP1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',137964635,137993047,'NM_016172','UBAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',34169002,34242521,'NM_001171204','UBAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33911690,34038947,'NM_018449','UBAP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',33807181,33910401,'NM_017811','UBE2R2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',85464697,85512988,'NM_053067','UBQLN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',133389003,133396483,'NM_031432','UCK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113699026,113735254,'NM_003358','UGCG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',6403150,6497051,'NM_152896','UHRF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35151988,35395332,'NM_006377','UNC13B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',91444517,91524494,'NR_024280','UNQ6494'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130173418,130192836,'NM_001135947','URM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',131637516,131683928,'NM_006676','USP20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135616836,135847267,'NM_001134398','VAV2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',35046064,35062739,'NM_007126','VCP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',2611792,2644485,'NM_003383','VLDLR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',78982180,79222219,'NM_033305','VPS13A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',4510,19739,'NM_182905','WASH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115117751,115142441,'NM_145241','WDR31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130435760,130458950,'NM_052844','WDR34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',126655575,126659981,'NM_001045476','WDR38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',135994734,136014915,'NM_052821','WDR5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139569181,139593208,'NM_138778','WDR85'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94987032,95122675,'NM_006648','WNK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',99477011,99499512,'NR_027302','XPA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124720198,124733600,'NM_020924','ZBTB26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',128662764,128687977,'NM_001099270','ZBTB34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',128607105,128640308,'NM_001135776','ZBTB43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37428099,37455407,'NM_014872','ZBTB5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',124710155,124715430,'NM_006626','ZBTB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',88092467,88159222,'NM_001185059','ZCCHC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',37110468,37348145,'NM_032226','ZCCHC7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130522969,130526229,'NM_032799','ZDHHC12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',14601068,14683480,'NM_178566','ZDHHC21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',130531887,130574019,'NM_006336','ZER1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',74156160,74169983,'NM_001102420','ZFAND5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',114843994,114858817,'NM_003408','ZFP37'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',139596351,139604758,'NM_138462','ZMYND19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',96061398,96105112,'NM_194320','ZNF169'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',103200983,103212763,'NM_003452','ZNF189'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98188045,98220490,'NM_153695','ZNF367'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',108665198,108813617,'NM_021224','ZNF462'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',113327267,113346533,'NM_133464','ZNF483'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',94648171,94680111,'NM_031486','ZNF484'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98557967,98580149,'NM_014930','ZNF510'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',115678382,115858696,'NM_133374','ZNF618'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',40761401,40782112,'NM_033160','ZNF658'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',39433817,39437188,'NR_027861','ZNF658B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',98619093,98656210,'NM_001001662','ZNF782'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',129226473,129247472,'NM_007135','ZNF79'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9',114799220,114814293,'NM_001101338','ZNF883'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chr9_',1130466,1131586,'NM_199001','C9orf169'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',74189829,74292857,'NM_004299','ABCB7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152643516,152663410,'NM_000033','ABCD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15489076,15530113,'NM_021804','ACE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',23631697,23671328,'NM_001037171','ACOT9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70714598,70750158,'NM_052957','ACRC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',108771219,108863277,'NM_004458','ACSL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',127012621,127014063,'NM_138289','ACTRT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',147389830,147889899,'NM_001169124','AFF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',115215985,115220253,'NM_000686','AGTR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',129091018,129127542,'NM_001130847','AIFM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118913963,118938707,'NM_178813','AKAP14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',1670485,1681411,'NM_005088','AKAP17A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49842159,49851744,'NM_139289','AKAP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55052212,55074222,'NM_000032','ALAS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',110811001,110820279,'NR_033125','ALG13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',11221453,11228802,'NM_001142','AMELX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',109324069,109570117,'NM_001171689','AMMECR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',111904760,111953010,'NM_001113490','AMOT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118776603,118778193,'NM_001105576','ANKRD58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15753849,15783021,'NM_003916','AP1S2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55043504,55050937,'NM_014481','APEX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',128606916,128616614,'NM_017413','APLN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',23761385,23835978,'NM_024122','APOO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',84145553,84234979,'NM_198450','APOOL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',66680598,66867186,'NM_000044','AR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47305459,47316264,'NM_001654','ARAF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',130019896,130051538,'NM_144967','ARHGAP36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152826023,152844908,'NM_001164741','ARHGAP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',11065583,11593742,'NM_013427','ARHGAP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135575376,135691169,'NM_004840','ARHGEF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',62771572,62891756,'NM_015185','ARHGEF9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100111352,100132476,'NM_001162490','ARL13A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100692169,100696331,'NM_016608','ARMCX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100796925,100801519,'NM_177949','ARMCX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100765006,100769487,'NM_177948','ARMCX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100559921,100675102,'NR_028407','ARMCX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101740751,101745741,'NM_001168480','ARMCX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101740931,101859317,'NM_001199818','ARMCX5-GPRASP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100756763,100759647,'NM_019007','ARMCX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69404909,69418415,'NM_004312','ARR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',2832010,2857416,'NM_001669','ARSD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',2862672,2892494,'NM_000047','ARSE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',2994839,3040770,'NM_004042','ARSF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',2934653,2961426,'NM_001011719','ARSH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',24931731,24943986,'NM_139058','ARX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15209751,15243667,'NM_080873','ASB11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',63360796,63367236,'NM_130388','ASB12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15172029,15198510,'NM_001168531','ASB9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',1693940,1721974,'NM_001171038','ASMT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',107221554,107284557,'NM_052936','ATG4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',138636170,138742113,'NM_173694','ATP11C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119379967,119401132,'NM_012069','ATP1B4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152454773,152501581,'NM_021949','ATP2B3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153310171,153318056,'NM_001183','ATP6AP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',40325159,40350832,'NM_005765','ATP6AP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',77052849,77192548,'NM_000052','ATP7A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',76647011,76928375,'NM_000489','ATRX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',13246688,13248439,'NM_001135995','ATXN3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152821178,152825814,'NR_027419','AVPR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69371229,69377236,'NM_001013579','AWAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69177116,69186513,'NM_001002254','AWAT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152619140,152643032,'NM_005745','BCAP31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',39795442,39921526,'NM_001123384','BCOR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',128966844,129019739,'NM_021946','BCORL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',18098977,18148945,'NM_001184767','BEND2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102204236,102205824,'NM_018476','BEX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102450929,102452630,'NM_032621','BEX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102356675,102358784,'NM_001080425','BEX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101295334,101297642,'NM_001012978','BEX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152413540,152428198,'NM_001711','BGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101862297,101894025,'NM_001142525','BHLHB9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',50670474,50676381,'NM_005448','BMP15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15428820,15484573,'NM_203281','BMX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153952888,154004543,'NM_024332','BRCC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135397790,135402264,'NM_001727','BRS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',79811642,79951889,'NM_153252','BRWD3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100491090,100527868,'NM_000061','BTK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119643556,119648033,'NM_152692','C1GALT1C1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15666332,15715669,'NM_007220','CA5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15602959,15631395,'NR_026551','CA5BP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48948466,48976777,'NM_005183','CACNA1F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',110374982,110400430,'NM_014289','CAPN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',41259132,41667231,'NM_001126055','CASK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48803459,48814454,'NM_001163322','CCDC120'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133198742,133207474,'NM_001101357','CCDC160'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48978870,48993931,'NM_014008','CCDC22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',50044279,50111651,'NM_033031','CCNB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135558001,135570215,'NM_000074','CD40LG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',2619227,2669350,'NM_002414','CD99'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',149685466,149817947,'NM_134446','CD99L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',2537305,2585270,'NR_033380','CD99P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46967360,46974338,'NM_001170460','CDK16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',18370264,18581670,'NM_001037343','CDKL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',139693090,139694389,'NM_004065','CDR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',72583814,72591146,'NM_005193','CDX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100241453,100304634,'NM_006733','CENPI'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',51440884,51442187,'NR_033772','CENPVL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151746526,151749957,'NM_004344','CETN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47368555,47374648,'NM_002621','CFP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',72699708,72823662,'NM_001039840','CHIC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',85002840,85189222,'NM_000390','CHM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',109803739,109925942,'NM_001143983','CHRDL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46318135,46342782,'NM_019886','CHST7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71438212,71442489,'NM_001144887','CITED1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',10084984,10165699,'NM_001830','CLCN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49573964,49750632,'NM_001127898','CLCN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',106050261,106060747,'NM_020384','CLDN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',154158693,154217180,'NM_001289','CLIC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',150653873,150664692,'NM_005140','CNGA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',21302456,21570901,'NM_001168648','CNKSR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',107569809,107827431,'NM_033380','COL4A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',107285492,107568314,'NM_033641','COL4A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',77041616,77047537,'NM_001866','COX7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',87888881,87896441,'NM_001184771','CPXCR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151653883,151660174,'NM_153478','CSAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151678389,151679394,'NM_004909','CSAG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151627398,151628403,'NM_001129828','CSAG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',99962003,99982579,'NM_001325','CSTF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134674850,134684654,'NM_001017417','CT45A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134693879,134701934,'NM_152582','CT45A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134711153,134719185,'NM_001017435','CT45A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134693879,134719185,'NM_001017436','CT45A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134773316,134781660,'NM_001172288','CT45A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134790880,134798910,'NM_001017438','CT45A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119934281,119937599,'NM_001080146','CT47A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119895375,119898693,'NM_001080137','CT47A10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119909957,119913275,'NM_173571','CT47A11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119914817,119947319,'NM_001080145','CT47A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119929421,119932739,'NM_001080144','CT47A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119895375,119898693,'NM_001080143','CT47A4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119909957,119913275,'NM_001080142','CT47A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119905095,119908414,'NM_001080141','CT47A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119914817,119918135,'NM_001080140','CT47A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119905095,119908414,'NM_001080139','CT47A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119895375,119898693,'NM_001080138','CT47A9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119890479,119893807,'NM_001145718','CT47B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153466611,153468269,'NM_139250','CTAG1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153466611,153468269,'NM_001327','CTAG1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153533439,153535047,'NM_172377','CTAG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',16516042,16640980,'NM_019857','CTPS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119542473,119593712,'NM_003588','CUL4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70752490,70755092,'NM_001504','CXCR3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',144716619,144719062,'NM_004709','CXorf1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',30486861,30505954,'NM_025159','CXorf21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',35847771,35918190,'NM_152632','CXorf22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',19840900,19898303,'NM_198279','CXorf23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',75309172,75314436,'NM_016500','CXorf26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',37735013,37735514,'NM_012274','CXorf27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',3199860,3212694,'NR_038428','CXorf28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',36163971,36313355,'NM_001098843','CXorf30'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',44892561,44945090,'NM_176819','CXorf36'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',40371116,40391763,'NM_144970','CXorf38'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',148430424,148437218,'NM_178124','CXorf40A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',148851072,148857374,'NM_001013845','CXorf40B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',106336517,106374129,'NM_001169154','CXorf41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134118126,134133417,'NM_017863','CXorf48'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70850948,70854860,'NM_001145140','CXorf49'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70850948,70854860,'NM_001145139','CXorf49B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',145698993,145699621,'NM_001144064','CXorf51A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',145703313,145703941,'NM_001244892','CXorf51B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118556139,118583425,'NM_022101','CXorf56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',105741815,105809329,'NM_018015','CXorf57'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',23836043,23867545,'NM_152761','CXorf58'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',35974973,36073108,'NM_173695','CXorf59'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',115506879,115508165,'NM_001017978','CXorf61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',125781427,125783449,'NM_001122716','CXorf64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70240463,70243363,'NR_033212','CXorf65'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',138865549,138875343,'NM_001013403','CXorf66'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153704816,153716131,'NM_001162936','CXorf68'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133952633,133954169,'NM_001163438','CXorf69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47451533,47480971,'NR_033924','CXXC1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',37524213,37557658,'NM_000397','CYBB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',83002825,83028282,'NM_021118','CYLC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',77414785,77469743,'NM_006639','CYSLTR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',85404626,85974261,'NM_001139515','DACH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',125511046,125514523,'NM_178470','DCAF12L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',125125162,125127761,'NM_001013628','DCAF12L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',27906030,27909487,'NM_001017930','DCAF8L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',27674846,27676859,'NM_001136533','DCAF8L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',110423662,110542116,'NM_178153','DCX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134482220,134544126,'NM_182540','DDX26B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',41077594,41094468,'NM_001356','DDX3X'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',22927998,22930127,'NM_182699','DDX53'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69314060,69342278,'NM_198512','DGAT2L6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',50128618,50230461,'NM_001013742','DGKK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',2147552,2429015,'NM_145177','DHRSX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',95826317,96611493,'NM_007309','DIAPH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153644224,153659158,'NM_001363','DKC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',110641545,110652283,'NR_033974','DKFZp686D0853'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69588879,69642064,'NM_020730','DLG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',31047265,32083507,'NM_004021','DMD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71981600,71985361,'NM_033053','DMRTC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71981600,71985361,'NM_001080851','DMRTC1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153282772,153293621,'NM_001009934','DNASE1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',117513899,117704151,'NM_144658','DOCK11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100361588,100406141,'NM_001171184','DRP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',44588192,44589078,'NM_022076','DUSP21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152561090,152569975,'NM_001395','DUSP9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',37583032,37591833,'NM_006520','DYNLT3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48265107,48272048,'NM_006579','EBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',68752635,69176046,'NM_001399','EDA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',65732206,65775617,'NM_021783','EDA2R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',43892071,44087867,'NM_025184','EFHC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',67965564,67978731,'NM_004429','EFNB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',13497614,13561615,'NM_015507','EGFL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',20052556,20069887,'NM_001412','EIF1AX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',23982985,24006851,'NM_001415','EIF2S3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',129026575,129072369,'NM_001127197','ELF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47379863,47394947,'NM_005229','ELK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153260790,153263077,'NM_000117','EMD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',129585037,129864889,'NM_182314','ENOX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48572226,48573492,'NM_181532','ERAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71341231,71375583,'NM_017669','ERCC6L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',103381374,103386255,'NM_153448','ESX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153717257,153767771,'NM_019863','F8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153767828,153769530,'NM_012151','F8A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',154264957,154266073,'NM_001007523','F8A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153767843,153768959,'NM_001007524','F8A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',138440560,138473283,'NM_000133','F9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',57329834,57532354,'NM_174912','FAAH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55186259,55204353,'NM_138362','FAM104B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',54111481,54226439,'NM_017848','FAM120C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133731261,133758851,'NM_001166599','FAM122B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133768888,133816307,'NM_138819','FAM122C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',63321721,63342349,'NM_152424','FAM123B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133993998,133995241,'NM_001078171','FAM127A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134012628,134013887,'NM_001134321','FAM127B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133982199,133984232,'NM_001078173','FAM127C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',92815667,92853929,'NM_173698','FAM133A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',68641802,68669076,'NM_015686','FAM155B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52993188,53041376,'NM_001242495','FAM156A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52945133,52954310,'NM_001099684','FAM156B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',103297811,103327238,'NM_207318','FAM199X'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153386520,153397760,'NM_021806','FAM3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',79562601,79587466,'NM_152630','FAM46D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',34057789,34060368,'NM_203408','FAM47A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',34870833,34872955,'NM_152631','FAM47B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',36936352,36939660,'NM_001013736','FAM47C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',24290798,24293462,'NM_001136234','FAM48B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',24238899,24241353,'NM_001136233','FAM48B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153325678,153332196,'NM_004699','FAM50A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152506576,152517826,'NM_152274','FAM58A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119276532,119329419,'NM_001104545','FAM70A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',8718836,8729424,'NM_174951','FAM9A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',8953036,8961116,'NM_205849','FAM9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',12963656,12972838,'NM_174901','FAM9C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',14771449,14801105,'NM_001018113','FANCB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',150635163,150642320,'NM_033085','FATE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',54488611,54539324,'NM_004463','FGD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',137541399,137649181,'NM_033642','FGF13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',76596302,76598669,'NM_003868','FGF16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135106578,135121184,'NM_001159701','FHL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15273633,15312456,'NM_004469','FIGF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',64687226,64689026,'NR_033742','FKSG43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71280758,71298325,'NM_207422','FLJ44635'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70914743,70920953,'NR_034005','FLJ46446'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153230093,153256200,'NM_001456','FLNA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146801160,146840339,'NR_033700','FMR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146798640,146811368,'NR_024499','FMR1-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146870540,146915879,'NM_152578','FMR1NB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70232723,70240109,'NM_001170931','FOXO4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48993840,49008232,'NM_014009','FOXP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55666557,55669346,'NM_198451','FOXR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',131038701,131089731,'NM_194277','FRMD7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',12066505,12652563,'NM_014728','FRMPD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',30999278,31000091,'NM_031894','FTHL17'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48219492,48229696,'NM_177439','FTSJ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',73164695,73430134,'NR_028379','FTX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',44267828,44287165,'NM_173794','FUNDC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153908257,153938385,'NM_023934','FUNDC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153412799,153428427,'NM_000402','G6PD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153556720,153632542,'NM_080612','GAB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151086289,151370487,'NM_000808','GABRA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',150872251,150893807,'NM_004961','GABRE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151557292,151572481,'NM_018558','GABRQ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49250559,49260086,'NM_001468','GAGE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49047068,49063255,'NM_001098413','GAGE10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49202870,49210132,'NM_001127345','GAGE12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49183723,49191088,'NM_001098408','GAGE12C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49212377,49219765,'NM_001127199','GAGE12D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49193279,49200644,'NM_001098418','GAGE12E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49104714,49110793,'NM_001098405','GAGE12F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49212388,49219755,'NM_001098409','GAGE12G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49202835,49210196,'NM_001098410','GAGE12H'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49103620,49110887,'NM_001477','GAGE12I'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49065459,49072810,'NM_001098406','GAGE12J'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49075037,49082309,'NM_001098412','GAGE13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49241061,49248374,'NM_001127212','GAGE2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49122651,49129941,'NM_001098411','GAGE2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49084539,49101374,'NM_001472','GAGE2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49084506,49110887,'NM_001098407','GAGE2D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49103602,49181532,'NM_001127200','GAGE2E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49103592,49110883,'NM_001474','GAGE4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49103600,49110887,'NM_001475','GAGE5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49212423,49219751,'NM_001476','GAGE6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49103621,49110883,'NM_021123','GAGE7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49075047,49200644,'NM_012196','GAGE8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48529925,48537661,'NM_002049','GATA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153318452,153325009,'NM_001493','GDI1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69559605,69569966,'NM_001171193','GDPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',13934765,13957956,'NM_017856','GEMIN8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70359780,70361790,'NM_000166','GJB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',30581396,30659498,'NM_000167','GK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100539434,100549657,'NM_000169','GLA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48505097,48517008,'NM_001080489','GLOD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',14457340,14659854,'NM_001171942','GLRA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102848927,102870208,'NM_001024452','GLRA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',120009142,120011477,'NM_012084','GLUD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',54573368,54610445,'NM_019067','GNL3L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',132497441,132947339,'NM_004484','GPC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',132262729,132376871,'NM_001448','GPC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48855965,48867023,'NM_015698','GPKOW'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',13702017,13745235,'NM_005278','GPM6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135939972,135941499,'NM_054021','GPR101'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135210787,135326713,'NM_153834','GPR112'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',129345999,129347192,'NM_178471','GPR119'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',9653452,9694005,'NM_000273','GPR143'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',53095230,53126521,'NM_018969','GPR173'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',78313124,78314382,'NM_032553','GPR174'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',41433169,41441474,'NM_005300','GPR34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',150095713,150100595,'NM_004224','GPR50'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',18917345,19050676,'NM_001184836','GPR64'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',41468351,41474332,'NM_080817','GPR82'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101792949,101800666,'NM_001099411','GPRASP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101853759,101859317,'NM_001184876','GPRASP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',122145776,122452447,'NM_000828','GRIA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48715077,48743619,'NM_020137','GRIPAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',16051344,16081562,'NM_005314','GRPR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',51503220,51506066,'NM_018094','GSPT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',161425,170887,'NM_012227','GTPBP6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',108502790,108611941,'NM_001522','GUCY2F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',2756862,2810861,'NM_001184704','GYG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',154342273,154342790,'NM_001017990','H2AFB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',154263629,154263977,'NM_001017991','H2AFB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153766510,153767027,'NM_080720','H2AFB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',103181171,103183677,'NM_001164416','H2BFM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',103152374,103154912,'NM_001002916','H2BFWT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',103117157,103119441,'NR_003238','H2BFXP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152366316,152389797,'NM_017518','HAUS7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',11039326,11051125,'NM_001171991','HCCS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152866201,152890013,'NM_005334','HCFC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48545430,48568324,'NM_006044','HDAC6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71609990,71709678,'NM_001166419','HDAC8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',6976960,7076231,'NM_001135565','HDHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',83459537,83644143,'NM_144657','HDX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',65300833,65403955,'NM_014799','HEPH'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',149902420,149909906,'NM_005342','HMGB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',80255855,80344097,'NM_030763','HMGN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100549776,100555784,'NM_019597','HNRNPH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133421840,133462364,'NM_000194','HPRT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',131587718,131923093,'NM_001077188','HS6ST2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',53474930,53478048,'NM_004493','HSD17B10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',148481981,148484773,'NM_016153','HSFX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',148481970,148484773,'NM_001164415','HSFX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135407336,135422169,'NM_014500','HTATSF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',113724806,114050880,'NM_000868','HTR2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',53575787,53730398,'NM_031407','HUWE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152704414,152713161,'NM_174869','IDH3G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',148368200,148394789,'NM_000202','IDS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69270042,69302898,'NM_001551','IGBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',130245820,130251084,'NM_205833','IGSF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153428755,153446455,'NM_001145255','IKBKG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',117745586,117812524,'NM_001560','IL13RA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',114144793,114158463,'NM_000640','IL13RA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',28515601,29883938,'NM_014271','IL1RAPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',103697651,104898478,'NM_017416','IL1RAPL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70243978,70248206,'NM_000206','IL2RG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',1415508,1461582,'NM_002183','IL3RA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46949190,46950198,'NR_024616','INE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15713759,15715633,'NR_002725','INE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70628101,70629329,'NR_002226','INGX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',53278782,53327521,'NM_015075','IQSEC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152929150,152938536,'NM_001569','IRAK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',107862382,107866263,'NM_003604','IRS4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70438352,70441929,'NM_012278','ITGB1BP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',54792056,54841398,'NM_198510','ITIH5L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',78502536,78509705,'NM_001171581','ITM2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',73080883,73206942,'NR_024582','JPX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',8456914,8660227,'NM_000216','KAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48703582,48713195,'NM_004979','KCND1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',108753584,108755049,'NM_012282','KCNE1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',53237227,53271329,'NM_001146702','KDM5C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',44617366,44856789,'NM_021140','KDM6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118096625,118168570,'NM_020721','KIAA1210'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',73869415,74062012,'NM_001008537','KIAA2022'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69426603,69557499,'NM_012310','KIF4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',56275546,56331047,'NM_007250','KLF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',116915803,117134856,'NM_001168303','KLHL13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',23911753,23955224,'NM_030624','KLHL15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',21583529,21586369,'NM_153270','KLHL34'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',86659370,86811706,'NM_019117','KLHL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152780164,152794593,'NM_000425','L1CAM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153358434,153360790,'NM_006014','LAGE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119444030,119487232,'NM_002294','LAMP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',37315740,37421669,'NM_001170331','LANCL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',64649186,64671411,'NM_031206','LAS1L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',140097596,140098976,'NM_012317','LDOC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',111760534,111810031,'NM_178175','LHFPL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134383533,134387891,'NR_024359','LINC00086'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134056680,134060399,'NR_024493','LINC00087'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',2541031,2543388,'NR_037842','LINC00102'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153513932,153514642,'NR_027401','LINC00204A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153513932,153514642,'NR_027402','LINC00204B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71913621,71915644,'NR_026595','LINC00246A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',72078292,72080314,'NR_026594','LINC00246B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135549367,135552254,'NR_038461','LOC100128420'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71918413,71919209,'NR_034116','LOC100129407'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134080547,134082071,'NR_033941','LOC100129515'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',124281649,124284631,'NM_001195272','LOC100129520'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',137621934,137626429,'NR_038405','LOC100129662'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',148417016,148429203,'NR_027455','LOC100131434'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',18818334,18823014,'NR_029379','LOC100132163'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70914743,70920953,'NR_034004','LOC100132741'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',40575413,40577393,'NR_027761','LOC100132831'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47403175,47404454,'NR_028119','LOC100133957'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',148857423,148935676,'NR_027456','LOC100272228'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101910750,102026994,'NR_038988','LOC100287765'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',9895397,9896042,'NM_001195081','LOC100288814'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118484023,118487111,'NR_028443','LOC100303728'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',111006083,111033869,'NM_001195578','LOC100329135'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133511719,133522094,'NR_038998','LOC100506757'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119924561,119927879,'NM_001242922','LOC100507170'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',154349394,154376965,'NR_039991','LOC100507404'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47852320,47858638,'NM_001205103','LOC100509575'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',72660835,72699646,'NR_029423','LOC139201'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49528066,49530699,'NR_026742','LOC158572'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',137524557,137527465,'NR_026935','LOC158696'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',103253655,103255973,'NR_039980','LOC286437'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',39049153,39071560,'NR_038968','LOC286442'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',130664358,130792352,'NR_026975','LOC286467'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102828867,102834140,'NR_038978','LOC340544'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',40367761,40368332,'NM_001195522','LOC347411'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',3745575,3771935,'NR_034031','LOC389906'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46289871,46292614,'NR_015378','LOC401588'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',51440884,51442187,'NR_033773','LOC441495'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',56779945,56780742,'NR_002308','LOC442454'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',98603255,99081497,'NR_024608','LOC442459'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',56772442,56860729,'NR_015367','LOC550643'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',95478740,95479557,'NR_003539','LOC643486'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',19914855,19917818,'NR_024440','LOC729609'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',62563163,62697598,'NR_015353','LOC92249'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',117992740,118035977,'NM_024778','LONRF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',77889861,77899234,'NM_005296','LPAR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',114251438,114374891,'NM_020871','LRCH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',114430547,114448377,'NM_016383','LUZP4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152134715,152139310,'NM_004988','MAGEA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151053563,151057681,'NM_021048','MAGEA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151033181,151057681,'NM_001204811','MAGEA10-MAGEA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',148575476,148580667,'NM_005366','MAGEA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151649948,151653840,'NM_001166387','MAGEA12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151633774,151637751,'NM_175742','MAGEA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151636039,151637735,'NM_153488','MAGEA2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151685307,151688896,'NM_005362','MAGEA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',150835364,150844298,'NM_002362','MAGEA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151033181,151037100,'NM_021049','MAGEA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151617900,151621470,'NM_175868','MAGEA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',148770598,148775267,'NM_005364','MAGEA8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',148471104,148476904,'NM_005365','MAGEA9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',148471104,148476911,'NM_001080790','MAGEA9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',30171768,30180076,'NM_177415','MAGEB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',27736027,27751052,'NM_182506','MAGEB10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',35726379,35731773,'NM_001099921','MAGEB16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',26066380,26068774,'NM_173699','MAGEB18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',30143595,30148127,'NM_002364','MAGEB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',30158473,30165531,'NM_002365','MAGEB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',30169977,30172229,'NM_002367','MAGEB4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',26120477,26123684,'NM_173523','MAGEB6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',140819307,140824853,'NM_005462','MAGEC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',141117793,141120742,'NM_016249','MAGEC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',140753767,140813284,'NM_138702','MAGEC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',51653437,51662190,'NM_006986','MAGED1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',54850895,54859170,'NM_177433','MAGED2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',51944747,51952104,'NM_001098800','MAGED4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',51944658,51952104,'NM_001242362','MAGED4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',75564449,75568150,'NM_020932','MAGEE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',74919547,74921804,'NM_138703','MAGEE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55495262,55496724,'NM_014061','MAGEH1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48906124,48910780,'NM_024859','MAGIX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',76968517,77037721,'NM_032121','MAGT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',149364377,149433106,'NM_005491','MAMLD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',43400352,43491012,'NM_000240','MAOA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',43510800,43626665,'NM_000898','MAOB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',19288096,19443300,'NM_001001671','MAP3K15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',19934751,20045035,'NM_152780','MAP7D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135123044,135161404,'NM_001173517','MAP7D3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',131331023,131375284,'NM_001170701','MBNL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',21767576,21813462,'NM_015884','MBTPS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',103230553,103288364,'NM_001012755','MCART6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',138491595,138618047,'NM_001099855','MCF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119621771,119639042,'NM_014060','MCTS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152948879,153016382,'NM_001110792','MECP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70255130,70279029,'NM_005120','MED12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',40393738,40479748,'NM_004229','MED14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133505072,133508326,'NR_024607','MGC16121'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',10373349,10548674,'NM_033289','MID1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',38545628,38550727,'NM_001098790','MID1IP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',106955739,107061523,'NM_052817','MID2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151311346,151311427,'NR_029521','MIR105-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151313539,151313620,'NR_029522','MIR105-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133131893,133131974,'NR_029523','MIR106A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',154265942,154266041,'NR_036049','MIR1184-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153768828,153768927,'NR_036259','MIR1184-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153768828,153768927,'NR_036260','MIR1184-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',113793385,113793454,'NR_031563','MIR1264'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',117404384,117404462,'NR_031685','MIR1277'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',113855905,113856017,'NR_031578','MIR1298'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',62922606,62922692,'NR_031567','MIR1468'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49654848,49654934,'NR_029708','MIR188'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133131736,133131807,'NR_029949','MIR18B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',113903999,113904079,'NR_031732','MIR1911'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',113792274,113792354,'NR_031733','MIR1912'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133131366,133131462,'NR_029491','MIR19B2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133131504,133131573,'NR_029950','MIR20B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',149146896,149146976,'NR_031748','MIR2114'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',45490528,45490638,'NR_029635','MIR221'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',45491364,45491474,'NR_029636','MIR222'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',65155436,65155546,'NR_029637','MIR223'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',150877705,150877786,'NR_029638','MIR224'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',19945126,19945226,'NR_037414','MIR23C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152899741,152899822,'NR_036174','MIR3202-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152899742,152899821,'NR_036175','MIR3202-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',139836002,139836050,'NR_031725','MIR320D2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49660311,49660375,'NR_029850','MIR362'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133131073,133131148,'NR_029852','MIR363'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',1372810,1372885,'NR_037461','MIR3690'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',73423845,73423917,'NR_030785','MIR374A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',73355106,73355178,'NR_030620','MIR374B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',73355108,73355178,'NR_037511','MIR374C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',76056091,76056179,'NR_029909','MIR384'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',109212001,109212102,'NR_039774','MIR3978'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133508309,133508407,'NR_029946','MIR424'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',78043346,78043402,'NR_036258','MIR4328'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',111910601,111910672,'NR_036255','MIR4329'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',150087351,150087456,'NR_036256','MIR4330'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',113964272,113964383,'NR_029955','MIR448'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133502036,133502127,'NR_029962','MIR450A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133502203,133502303,'NR_030227','MIR450A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133501880,133501958,'NR_030587','MIR450B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',150878755,150878840,'NR_029973','MIR452'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55494617,55494678,'NR_039764','MIR4536'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',7075900,7075978,'NR_039924','MIR4767'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',17353924,17353998,'NR_039925','MIR4768'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47331771,47331848,'NR_039926','MIR4769'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',6311946,6312004,'NR_039927','MIR4770'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49659778,49659862,'NR_030224','MIR500A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49662019,49662098,'NR_036257','MIR500B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49661069,49661153,'NR_030225','MIR501'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49665945,49666031,'NR_030226','MIR502'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133508023,133508094,'NR_030228','MIR503'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',137577537,137577620,'NR_030229','MIR504'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',138833972,138834056,'NR_030230','MIR505'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146119929,146120053,'NR_030233','MIR506'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146120193,146120287,'NR_030234','MIR507'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146126122,146126237,'NR_030235','MIR508'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146147969,146148060,'NR_030236','MIR509-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146149744,146149835,'NR_030586','MIR509-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146148861,146148936,'NR_030629','MIR509-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146161544,146161618,'NR_030237','MIR510'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146168456,146168554,'NR_030238','MIR514-1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146171152,146171240,'NR_030239','MIR514-2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146171152,146171240,'NR_030240','MIR514-3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',146139360,146139440,'NR_036173','MIR514B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49654493,49654584,'NR_030241','MIR532'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133503036,133503133,'NR_030399','MIR542'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',73423663,73423769,'NR_030258','MIR545'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',94747891,95250028,'NR_039638','MIR548AE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',8055005,8055102,'NR_030380','MIR651'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49664588,49664685,'NR_030397','MIR660'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69159431,69159498,'NR_037494','MIR676'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152938564,152938634,'NR_031757','MIR718'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',113780173,113780258,'NR_031581','MIR764'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118664728,118664839,'NR_030413','MIR766'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151312548,151312657,'NR_030409','MIR767'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',144883993,144884070,'NR_030592','MIR888'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',144883484,144883561,'NR_030589','MIR890'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',144917003,144917082,'NR_030581','MIR891A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',144890262,144890341,'NR_030590','MIR891B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',144885878,144885953,'NR_030584','MIR892A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',144886407,144886484,'NR_030593','MIR892B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133131233,133131308,'NR_029509','MIR92A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135460702,135460785,'NR_030631','MIR934'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',53599908,53600027,'NR_029513','MIR98'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',53600877,53600960,'NR_029484','MIRLET7F2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134871896,134883800,'NM_173470','MMGT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',106070619,106130130,'NM_024657','MORC4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102817081,102829742,'NM_001142431','MORF4L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133849327,133876963,'NM_019556','MOSPD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',14813333,14849380,'NM_001177475','MOSPD2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153660152,153686996,'NM_001166461','MPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',11687655,11703793,'NM_006800','MSL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',64804235,64878518,'NM_002444','MSN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',130984925,131037652,'NM_016542','MST4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153945502,153952741,'NM_001018025','MTCP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153943093,153952741,'NM_001018024','MTCP1NB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',149487704,149592274,'NM_000252','MTM1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',149612526,149684233,'NM_003828','MTMR1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',63404685,63532058,'NM_017677','MTMR8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55224548,55225669,'NM_001190708','MTRNR2L10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',105298953,105339605,'NM_152423','MUM1L1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',3236607,3274684,'NM_015419','MXRA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152848570,152853662,'NM_003491','NAA10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',72348861,72351435,'NM_021963','NAP1L2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',92812580,92815338,'NM_004538','NAP1L3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',72262600,72264644,'NR_027291','NAP1L6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',43692967,43717865,'NM_000266','NDP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118889761,118894657,'NM_004541','NDUFA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46886558,46889553,'NR_024235','NDUFB11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102518764,102519655,'NM_014380','NGFRAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',17563333,17664034,'NM_001136024','NHS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71047662,71280149,'NM_001013627','NHSL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118943040,118961763,'NM_024528','NKAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119254335,119263150,'NR_027131','NKAPP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118606327,118611141,'NM_001173488','NKRF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70281405,70307776,'NM_018977','NLGN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',5818082,6155888,'NM_020742','NLGN4X'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70419766,70437743,'NM_001145409','NONO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',99984968,100015990,'NM_013955','NOX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',30232459,30237416,'NM_000475','NR0B1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',104953191,105089258,'NM_198465','NRK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151750166,151788563,'NM_001129765','NSDHL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',51091822,51097117,'NM_153183','NUDT10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',51249602,51256199,'NM_018159','NUDT11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',106253312,106336326,'NR_033676','NUP62CL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101388749,101468290,'NM_022053','NXF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101388749,101468290,'NM_001099686','NXF2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102217405,102234678,'NM_022052','NXF3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101691548,101713277,'NR_002216','NXF4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100973740,100999205,'NR_028089','NXF5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',108665665,108674583,'NM_018698','NXT2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',41191656,41219849,'NM_022567','NYX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',128501932,128554211,'NM_001587','OCRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',123337436,123925347,'NM_014253','ODZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',13662752,13697401,'NM_003611','OFD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70669636,70712472,'NM_181672','OGT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',67178910,67570024,'NM_002547','OPHN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153062918,153077701,'NM_020061','OPN1LW'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153101278,153115546,'NM_000513','OPN1MW'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153138396,153151949,'NM_001048181','OPN1MW2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',130505728,130506655,'NM_001004486','OR13H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',38096679,38165647,'NM_000531','OTC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48664246,48700592,'NM_001136159','OTUD5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69199065,69200754,'NM_207320','OTUD6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',78087484,78104094,'NM_014499','P2RY10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69394740,69396379,'NM_002565','P2RY4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',1541465,1616037,'NM_178129','P2RY8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',72213901,72216076,'NM_001012977','PABPC1L2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',72140076,72142276,'NM_001042506','PABPC1L2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',90576252,90580239,'NM_080832','PABPC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49339007,49347307,'NM_003785','PAGE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55132221,55135985,'NM_207339','PAGE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55118228,55122061,'NM_001015038','PAGE2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55301573,55307890,'NR_033460','PAGE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49480643,49485308,'NM_007003','PAGE4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55263515,55267266,'NM_130467','PAGE5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',110252960,110350829,'NM_001128172','PAK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',150482662,150595867,'NM_173493','PASD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',90976314,91021653,'NM_014522','PCDH11X'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',99433297,99551927,'NM_020766','PCDH19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48574449,48578904,'NM_013271','PCSK1N'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',24486124,24575376,'NM_004845','PCYT1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',19271931,19289746,'NM_000284','PDHA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',24393264,24478504,'NM_001142386','PDK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69422935,69426523,'NM_016484','PDZD11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152720816,152749197,'NM_032512','PDZD4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',54976314,55037236,'NM_002625','PFKFB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',77110113,77111791,'NM_001029891','PGAM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',77246321,77268980,'NM_000291','PGK1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118254238,118262457,'NM_006667','PGRMC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',21960841,22176399,'NM_000444','PHEX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46656811,46805585,'NM_014735','PHF16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133335007,133376987,'NM_032335','PHF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',53979837,54087332,'NM_001184897','PHF8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71715388,71850754,'NM_001172436','PHKA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',18820336,18912401,'NM_000292','PHKA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15247493,15263597,'NM_002641','PIGA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48655402,48661357,'NM_006875','PIM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71318250,71400539,'NM_001170747','PIN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15312844,15421632,'NM_003662','PIR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15273633,15419353,'NR_037859','PIR-FIGF'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',68297305,68302090,'NM_022368','PJA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',133527538,133620179,'NM_021796','PLAC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102918094,102934203,'NM_001128834','PLP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48915127,48918412,'NM_002668','PLP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',114734074,114791435,'NM_001136025','PLS3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153339816,153355179,'NM_017514','PLXNA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152682844,152697995,'NM_001163257','PLXNB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152588381,152591937,'NM_001135740','PNCK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151975421,151979483,'NM_013364','PNMA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151908023,151911417,'NM_052926','PNMA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151991494,151993301,'NM_032882','PNMA6A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151991474,151994058,'NM_001170944','PNMA6C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151994651,151996726,'NM_001242319','PNMA6D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',7826803,7855780,'NM_001172672','PNPLA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',84419050,84521404,'NM_024921','POF1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',24621984,24925023,'NM_016937','POLA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48252314,48264146,'NM_022825','PORCN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',82649924,82651431,'NM_000307','POU3F4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',18618965,18755955,'NM_152226','PPEF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',42521560,42522430,'NR_002191','PPP1R2P9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49013249,49031499,'NM_033215','PPP1R3F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',214667,267690,'NM_013239','PPP2R3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48640482,48645364,'NM_005710','PQBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48815761,48818606,'NM_007213','PRAF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',23595565,23614435,'NM_006406','PRDX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48918849,48929720,'NM_006150','PRICKLE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',3532383,3641675,'NM_005044','PRKX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',106758309,106780912,'NM_002764','PRPS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',12719394,12752267,'NM_002765','PRPS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',37093503,37201469,'NM_001173489','PRRG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',150614385,150620719,'NM_024082','PRRG3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',107214090,107221530,'NM_002814','PSMD10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',23262905,23324839,'NM_173495','PTCHD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',129133453,129146525,'NM_004794','RAB33A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',154140719,154147046,'NM_171998','RAB39B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102641336,102661073,'NM_080879','RAB40A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102078855,102079884,'NM_001031834','RAB40AL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69418746,69421577,'NM_001032726','RAB41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',13617160,13637866,'NM_001195328','RAB9A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102963910,102973868,'NM_016370','RAB9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',17728089,17788868,'NR_033349','RAI2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',131164733,131179870,'NM_021183','RAP2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',16772695,16798455,'NM_002893','RBBP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46889560,46931158,'NM_005676','RBM10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48317684,48324497,'NM_006743','RBM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',106196188,106248713,'NM_018301','RBM41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135783271,135790605,'NR_028477','RBMX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',129363623,129374998,'NM_016024','RBMX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',114330218,114333687,'NM_001145346','RBMXL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152853915,152863426,'NM_002910','RENBP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',16874734,17081324,'NM_001080975','REPS2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',109548940,109586218,'NM_020769','RGAG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71263685,71268476,'NM_001024455','RGAG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46822718,46837656,'NM_004683','RGN'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119127052,119133875,'NM_139282','RHOXF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119090268,119095735,'NM_032498','RHOXF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119090256,119095735,'NM_001099685','RHOXF2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',53466614,53474782,'NM_001031745','RIBC1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',106029948,106033217,'NM_138382','RIPPLY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',73719535,73751186,'NM_183353','RLIM'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118888522,118889819,'NM_006978','RNF113A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',105856549,105926902,'NM_194463','RNF128'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',139619589,139622060,'NR_028345','RP1-177G6.2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46581290,46626735,'NM_006915','RP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',96025562,96027106,'NM_013347','RPA4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',38013366,38071732,'NM_000328','RPGR'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153279764,153283874,'NR_026898','RPL10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100532533,100535496,'NM_001199972','RPL36A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100532533,100555784,'NM_001199974','RPL36A-HNRNPH2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118804496,118809634,'NM_001000','RPL39'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71180983,71181536,'NR_002309','RPS26P11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',71409177,71413866,'NM_001007','RPS4X'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',20077949,20194671,'NM_004586','RPS6KA3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',83200009,83329599,'NM_014496','RPS6KA6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55760834,55801932,'NM_016656','RRAGB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',18567728,18600144,'NM_000330','RS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',16578201,16582712,'NM_004057','S100G'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134803450,134822886,'NM_018666','SAGE1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',128741572,128756857,'NM_018990','SASH3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',23711195,23714248,'NM_002970','SAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',84233947,84250630,'NM_001012980','SATL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',24672478,24672608,'NR_003007','SCARNA23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',20064104,20064452,'NR_023358','SCARNA9L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',17665512,17683026,'NM_006746','SCML1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',18167353,18282765,'NR_033717','SCML2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118633715,118711361,'NM_145800','SEPT6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',105163845,105169374,'NM_000354','SERPINA7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',123307812,123334691,'NM_001114937','SH2D1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',80343958,80440702,'NM_003022','SH3BGRL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',19462003,19599040,'NM_001184960','SH3KBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',505078,540146,'NM_006883','SHOX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',9714495,9877481,'NM_001649','SHROOM2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',50351384,50573784,'NR_027121','SHROOM4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153368843,153372196,'NM_001142392','SLC10A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',73557809,73670477,'NM_006517','SLC16A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',129301727,129335016,'NM_022810','SLC25A14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118417285,118472465,'NM_145305','SLC25A43'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118486390,118489387,'NM_001152','SLC25A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',1465044,1471039,'NM_001636','SLC25A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48645402,48653861,'NM_005660','SLC35A2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48201870,48213588,'NM_033518','SLC38A5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',115481774,115506653,'NM_007231','SLC6A14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152606945,152615242,'NM_005629','SLC6A8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70062154,70067700,'NM_032803','SLC7A3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134895251,134957094,'NM_006359','SLC9A6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46351316,46503416,'NM_032591','SLC9A7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',144707038,144715052,'NM_001144005','SLITRK2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',142538260,142550685,'NM_173078','SLITRK4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',128408158,128485141,'NM_003069','SMARCA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',53417794,53466343,'NM_006306','SMC1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',27388248,27391379,'NR_002784','SMEK3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',21634011,21686151,'NM_014332','SMPX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',21868635,21922876,'NM_004595','SMS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',54857527,54857658,'NR_002953','SNORA11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47132992,47133119,'NR_003710','SNORA11C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',51823182,51823309,'NR_003711','SNORA11D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',51823182,51823309,'NR_003712','SNORA11E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',113771514,113771642,'NR_002993','SNORA35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153649996,153650126,'NR_002969','SNORA36A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153656466,153656595,'NR_002984','SNORA56'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118805343,118805475,'NR_002584','SNORA69'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153281815,153281950,'NR_000011','SNORA70'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135789023,135789096,'NR_002735','SNORD61'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',109354872,109354944,'NR_004379','SNORD96B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70197512,70204956,'NM_013346','SNX12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',139412817,139414891,'NM_005634','SOX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47871546,47876941,'NM_205856','SPACA5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47752113,47754070,'NM_001079900','SPACA5B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',140499471,140500502,'NM_013453','SPANXA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',140505500,140506565,'NM_145662','SPANXA2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',140418508,140565735,'NR_037183','SPANXA2-OT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',139912421,139913537,'NM_032461','SPANXB1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',139912421,139913537,'NM_145664','SPANXB2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',140163261,140164312,'NM_022661','SPANXC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',140613233,140614264,'NM_032417','SPANXD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',140613233,140614321,'NM_145665','SPANXE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',139912421,139913537,'NM_139019','SPANXF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',144136798,144145420,'NM_001009614','SPANXN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',142622720,142632182,'NM_001009615','SPANXN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',142424229,142432973,'NM_001009609','SPANXN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',141941369,141949732,'NM_001009613','SPANXN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52841910,52843113,'NM_001009616','SPANXN5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',57178807,57180783,'NM_019003','SPIN2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',57162839,57164704,'NM_001006683','SPIN2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',57019527,57038713,'NR_027139','SPIN3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',62483831,62487943,'NM_001012968','SPIN4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',154650644,154665311,'NM_005840','SPRY3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',138356643,138358798,'NR_028597','SRD5A1P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152699649,152704381,'NM_001170761','SRPK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',37893531,37965121,'NM_001170752','SRPX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',99785818,99812952,'NM_014467','SRPX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152713097,152717161,'NM_001204526','SSR4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47999740,48011823,'NM_005635','SSX1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52742670,52752974,'NM_175698','SSX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52742670,52752974,'NM_001164417','SSX2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48090806,48101086,'NM_021014','SSX3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48127911,48137729,'NM_005636','SSX4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48127911,48137725,'NM_001040612','SSX4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47930599,47941143,'NM_021015','SSX5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47852310,47865012,'NR_028366','SSX6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52689835,52700675,'NM_173358','SSX7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52668709,52679723,'NR_027250','SSX8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',122923236,123064186,'NM_001042751','STAG2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',67830206,67862409,'NM_001142504','STARD8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',7147471,7282682,'NM_000351','STS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48440074,48452350,'NM_003173','SUV39H1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',16647627,16690728,'NM_032796','SYAP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47316243,47364200,'NM_006950','SYN1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48931208,48943605,'NM_003179','SYP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',99816144,99873791,'NM_001129896','SYTL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',37750778,37873017,'NM_001163335','SYTL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',30755479,30817432,'NM_152787','TAB3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70502838,70602580,'NM_138923','TAF1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100409896,100434715,'NM_024885','TAF7L'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',77271900,77281835,'NM_015975','TAF9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153293070,153303257,'NM_181313','TAZ'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48283018,48305941,'NM_002536','TBC1D25'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',105932574,106006033,'NM_017752','TBC1D8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',9391334,9647780,'NM_001139467','TBL1X'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',79164397,79173924,'NM_016954','TBX22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102770547,102772532,'NM_004780','TCEAL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101267315,101269340,'NM_080390','TCEAL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102749489,102751511,'NM_032926','TCEAL3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102727074,102729311,'NM_024863','TCEAL4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102415273,102418453,'NM_001012979','TCEAL5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101281588,101284044,'NM_001006938','TCEAL6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102471769,102473907,'NM_152278','TCEAL7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102394578,102396777,'NM_153333','TCEAL8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',13581227,13592168,'NM_152634','TCEANC'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',109650195,109652905,'NR_002718','TDGF1P3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',69665514,70045292,'NM_001003811','TEX11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',104350266,104352014,'NM_031274','TEX13A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',107110749,107112256,'NM_031273','TEX13B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153152123,153176758,'NM_001205201','TEX28'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',132178362,132180042,'NM_016521','TFDP3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48771185,48787934,'NM_006521','TFE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',89063595,89064538,'NM_138960','TGIF2LX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',122562092,122694585,'NM_001081550','THOC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48635673,48640370,'NM_001167947','TIMM17B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100487299,100490613,'NM_004085','TIMM8A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47326633,47331134,'NM_003254','TIMP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153177220,153211907,'NM_001145933','TKTL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',12795122,12818401,'NM_016562','TLR7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',12834659,12851209,'NM_138636','TLR8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',12830856,12871340,'NR_030727','TLR8-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',109132997,109307672,'NM_032227','TMEM164'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',148486014,148521294,'NM_001174092','TMEM185A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152891184,152901840,'NM_003492','TMEM187'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15555361,15593075,'NM_020665','TMEM27'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102852492,102855616,'NM_182541','TMEM31'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100220491,100238011,'NM_021637','TMEM35'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',34555101,34585326,'NM_031442','TMEM47'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',154371866,154495816,'NM_018196','TMLHE'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101655265,101658355,'NM_021992','TMSB15A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',103103855,103107219,'NM_194324','TMSB15B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',12903146,12905267,'NM_021109','TMSB4X'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',99726445,99741538,'NM_022144','TNMD'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',13640281,13662675,'NM_001128835','TRAPPC2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152363371,152365139,'NM_080701','TREX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100150989,100193761,'NM_001167971','TRMT2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',54963973,54974590,'NM_177556','TRO'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',110904197,111212660,'NM_012471','TRPC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',106843107,106905673,'NM_198057','TSC22D3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',72928764,72965791,'NR_003255','TSIX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',99770450,99778450,'NM_003270','TSPAN6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',38305674,38433116,'NM_004615','TSPAN7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',53128266,53134453,'NM_022117','TSPYL2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',54483577,54488456,'NM_058163','TSR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',74877097,74879639,'NR_030737','TTC3P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',16714475,16772563,'NM_001168683','TXLNG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46938144,46959471,'NM_003334','UBA1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118592526,118602407,'NM_003336','UBE2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',84075812,84076552,'NR_024062','UBE2DNL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',142794838,142796023,'NM_001012989','UBE2NL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',153365249,153368126,'NM_014235','UBL4A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',56606750,56610168,'NM_013444','UBQLN2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',118852016,118871019,'NM_023010','UPF3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',74410618,74441457,'NR_030774','UPRT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46977257,46992671,'NM_004651','USP11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',131987172,131989966,'NM_031907','USP26'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',49531209,49533908,'NM_001145073','USP27X'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',55527773,55532356,'NM_201286','USP51'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',40829831,40980776,'NM_001039591','USP9X'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',128867777,128891419,'NM_001166221','UTP14A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47396139,47403504,'NM_004182','UXT'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',154097894,154121292,'NM_003372','VBP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',7770302,7772184,'NM_013452','VCX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',8097984,8099308,'NM_016378','VCX2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',6461658,6463159,'NM_016379','VCX3A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',8392870,8394551,'NM_001001888','VCX3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',26486374,26489090,'NR_001559','VENTXP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',135441976,135466632,'NM_016267','VGLL1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',150316314,150328494,'NM_001017980','VMA21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',107174855,107209070,'NM_182607','VSIG1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',65158304,65176692,'NM_007268','VSIG4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48427129,48434761,'NM_000377','WAS'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',102498035,102500053,'NM_016303','WBP5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48341167,48348526,'NM_001166426','WDR13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',117364063,117467951,'NM_019045','WDR44'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',48819035,48845003,'NM_007075','WDR45'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',54235980,54401163,'NM_020922','WNK3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',9943794,10072518,'NM_015691','WWC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52255687,52260678,'NM_001097593','XAGE1A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52557778,52562922,'NM_001097594','XAGE1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52528638,52533629,'NM_001097598','XAGE1C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52544884,52550028,'NM_020411','XAGE1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52271944,52277088,'NM_001097604','XAGE1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52128792,52135537,'NM_130777','XAGE2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52129872,52135449,'NM_001079538','XAGE2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52908282,52913057,'NM_130776','XAGE3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',52857952,52864047,'NM_130775','XAGE5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',2680092,2744541,'NM_001141920','XG'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',2680336,2703037,'NR_003254','XGPY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',122821342,122875510,'NM_001204401','XIAP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',72957219,72989313,'NR_001564','XIST'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',37430051,37476322,'NM_021083','XK'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',100055086,100070554,'NM_212559','XKRX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',128700626,128731206,'NM_003399','XPNPEP2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',67635348,67673852,'NM_173834','YIPF6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',21784025,21786766,'NM_206923','YY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',2414454,2428580,'NM_001171135','ZBED1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',119268637,119276279,'NM_001184742','ZBTB33'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',64625339,64644492,'NM_001010888','ZC3H12B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',64052406,64113138,'NM_001178033','ZC4H2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',117841814,117844959,'NM_173798','ZCCHC12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',73440749,73441594,'NM_203303','ZCCHC13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',111212908,111587129,'NM_001004308','ZCCHC16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',103243762,103247189,'NM_001143978','ZCCHC18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',77798221,77801481,'NM_152694','ZCCHC5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',74586879,74660062,'NM_001146257','ZDHHC15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',128764944,128805591,'NM_016032','ZDHHC9'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152336974,152340280,'NM_001136273','ZFP92'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',24077761,24144293,'NM_001178084','ZFX'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',136476011,136481925,'NM_003413','ZIC3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',101023915,101031849,'NR_036431','ZMAT1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',70385779,70391224,'NM_001171163','ZMYM3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47114942,47158042,'NM_003446','ZNF157'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47719193,47748338,'NM_001178099','ZNF182'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',151833641,151892681,'NM_007150','ZNF185'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',152252806,152271578,'NM_001080485','ZNF275'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',129164353,129230603,'NM_017666','ZNF280C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47190504,47227289,'NM_153380','ZNF41'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134306361,134325004,'NM_152695','ZNF449'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47802510,47815969,'NR_033730','ZNF630'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',22200950,22202497,'NM_152577','ZNF645'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46191567,46219018,'NM_017776','ZNF673'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',46242103,46289836,'NM_001190417','ZNF674'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',84385652,84415025,'NM_021998','ZNF711'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',134247388,134257631,'NM_001185063','ZNF75D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',47581244,47666599,'NM_007137','ZNF81'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',15718494,15751303,'NM_005089','ZRSR2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',57948588,57953792,'NM_007156','ZXDA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX',57634993,57640635,'NM_007157','ZXDB'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrX_',278959,281134,'NR_027232','PPP2R3B-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6793958,6802068,'NM_001143','AMELY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',1482031,1531870,'NM_001173474','ASMTL'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',1479423,1492479,'NR_026710','ASMTL-AS1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',20076704,20124427,'NR_002923','BCORP1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',23539797,23560998,'NM_004678','BPY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',23539797,23560998,'NM_001002760','BPY2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',25173538,25194740,'NM_001002761','BPY2C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',19611913,19614093,'NM_013230','CD24'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',24600763,24603549,'NM_004680','CDY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',24600763,24603549,'NM_001003895','CDY1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',18499534,18501494,'NM_004825','CDY2A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',18499533,18501493,'NM_001001722','CDY2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',1274893,1291530,'NM_022148','CRLF2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',1347692,1388828,'NM_001161532','CSF2RA'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',24738968,24742766,'NR_001554','CSPG4P1Y'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',20217829,20227086,'NM_032576','CYorf15B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',23684889,23754627,'NM_004081','DAZ1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',23774991,23846891,'NM_001005786','DAZ2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',23774968,23846891,'NM_020364','DAZ3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',23774968,23846891,'NM_020420','DAZ4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',13525412,13541784,'NM_001122665','DDX3Y'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',21146998,21164428,'NM_004681','EIF1AY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',9247188,9252791,'NR_001553','FAM197Y2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',18122231,18138016,'NR_028083','FAM41AY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',18122231,18138016,'NR_028084','FAM41AY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',24765501,24770366,'NR_001555','GOLGA2P2Y'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',24765501,24770366,'NR_002195','GOLGA2P3Y'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',13027922,13043397,'NR_033667','GYG2P1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',19167964,19210237,'NR_003510','HSFY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',19167944,19210237,'NR_003509','HSFY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',57739639,57752876,'NR_024033','IL9R'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',20326688,20366213,'NM_001146705','KDM5D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',18947806,18952100,'NR_002161','LINC00230A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',18947827,18952124,'NR_002160','LINC00230B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',19493774,19499502,'NR_001544','NCRNA00185'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',15145019,15465242,'NM_014893','NLGN4Y'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',4928266,5033485,'NM_032971','PCDH11Y'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',138060,160022,'NM_018390','PLCXD1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',7202012,7309588,'NR_028062','PRKY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22627290,22651542,'NM_004676','PRY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22627290,22651542,'NM_001002758','PRY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22082645,22097060,'NM_005058','RBMY1A1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',9214669,9220483,'NR_001547','RBMY1A3P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22082611,22097060,'NM_001006121','RBMY1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22082651,22097060,'NM_001006120','RBMY1D'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22082651,22097060,'NM_001006118','RBMY1E'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22724076,22738477,'NM_152585','RBMY1F'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22724076,22738477,'NM_001006117','RBMY1J'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',21966421,21972836,'NR_001574','RBMY2EP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22864393,22871740,'NR_002193','RBMY2FP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',10058329,10062762,'NR_001573','RBMY3AP'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',2769622,2794997,'NM_001008','RPS4Y1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',21327341,21352306,'NM_001039567','RPS4Y2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',2714895,2715792,'NM_003140','SRY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6838726,7019724,'NM_134259','TBL1Y'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',3507125,3508082,'NM_139214','TGIF2LY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',14324840,14327296,'NM_004202','TMSB4Y'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',9914563,9917358,'NM_003308','TSPY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6174263,6177053,'NM_022573','TSPY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',9296029,9298826,'NM_001077697','TSPY3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',9934921,9937690,'NM_001164471','TSPY4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',9255451,9258202,'NM_001243721','TSPY8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6318471,6339605,'NR_001538','TTTY1'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',21036941,21090502,'NR_001542','TTTY10'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',8711360,8745423,'NR_001548','TTTY11'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',7732964,7738723,'NR_001551','TTTY12'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22154873,22165940,'NR_001537','TTTY13'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',19553972,19698690,'NR_001543','TTTY14'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',13283691,13313547,'NR_001545','TTTY15'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',7627397,7629288,'NR_001552','TTTY16'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',23407118,23408250,'NR_001526','TTTY17A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',23407118,23408250,'NR_002180','TTTY17B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',23407118,23408250,'NR_002179','TTTY17C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',8611410,8611919,'NR_001550','TTTY18'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',8632512,8633324,'NR_001549','TTTY19'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6318441,6339605,'NR_003589','TTTY1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6334284,6356485,'NR_001536','TTTY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',9227488,9232441,'NR_001546','TTTY20'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6371474,6375118,'NR_001535','TTTY21'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6371474,6375118,'NR_003588','TTTY21B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',10248761,10260854,'NR_001539','TTTY22'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6170486,6171651,'NR_001540','TTTY23'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6170486,6171651,'NR_003593','TTTY23B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6334284,6356485,'NR_003590','TTTY2B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',24492261,24497157,'NR_001524','TTTY3'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',24492261,24497157,'NR_002176','TTTY3B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',25125736,25162560,'NR_001525','TTTY4'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',25125736,25162560,'NR_002178','TTTY4B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',25125736,25162560,'NR_002177','TTTY4C'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22852332,22854411,'NR_001541','TTTY5'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22700499,22702366,'NR_001527','TTTY6'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',22700521,22702369,'NR_002175','TTTY6B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6377508,6385947,'NR_001534','TTTY7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6377508,6385947,'NR_003592','TTTY7B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6399071,6401671,'NR_001533','TTTY8'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',6399071,6401671,'NR_003591','TTTY8B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',19202479,19211795,'NR_001530','TTTY9A'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',19202479,19211795,'NR_002159','TTTY9B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',20188622,20211697,'NM_001005852','TXLNG2P'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',13322553,13482162,'NM_004654','USP9Y'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',13869656,14101944,'NM_007125','UTY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',57623336,57685827,'NR_033715','VAMP7'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',14677491,14678232,'NM_004679','VCY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',14607045,14607782,'NM_181880','VCY1B'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',18390253,18391834,'NM_004677','XKRY'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',18390253,18391834,'NM_001002906','XKRY2'); +INSERT INTO `random_forest`.`refgene` (chr,start,end,name,alias) VALUES ('chrY',2863111,2910547,'NM_001145276','ZFY'); + +commit; diff --git a/src/instances/all_pairs/appspot.html b/src/instances/all_pairs/appspot.html new file mode 100644 index 0000000..595afa0 --- /dev/null +++ b/src/instances/all_pairs/appspot.html @@ -0,0 +1,75 @@ + + + + + All Pairs Significance Explorer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/src/instances/all_pairs/appspot/globals.js b/src/instances/all_pairs/appspot/globals.js new file mode 100644 index 0000000..efcfbec --- /dev/null +++ b/src/instances/all_pairs/appspot/globals.js @@ -0,0 +1,425 @@ +/* + globals.js + + Import this before MVC scripts. + */ +if (re === undefined) { + re = {}; +} + +vq.utils.VisUtils.extend(re, { + + title: 'All Pairs Significance Explorer', + google: { + analytics_id: 'UA-20488457-2' + }, + analysis: { + dataset_method_clause: ' where method=\'pairwise\'', + directed_association: false + }, + state: { + once_loaded: false, + query_cancel: false, + network_query: '' + }, + node: { + uri: '/addama/proxies/node', + services: { + data: '/data', + lookup:'/lookup/label/entrez' + } + }, + rest: { + query: '/query', + echo: '/echo', + convert: '/convert' + }, + params: { + json_out: '&tqx=out:json_array', + query: 'tq=' + }, + databases: { + base_uri: '', + metadata: { + uri: '/addama/datasources/csacr' + }, + rf_ace: { + uri: '/addama/datasources/tcga' + }, + solr: { + uri: '/addama/indexes/solr', + select: '/select/' + + } + }, + tables: { + dataset: '/regulome_explorer_dataset', + label_lookup: '/refgene', + chrom_info: '/chrom_info', + current_data: '', + network_uri: '', + feature_uri: '', + clin_uri: '', + patient_uri: '', + feature_data_uri: '', + pathway_uri: '' + }, + /* + * URL's + * addresses to pathways used by MEDLINE tab + */ + help: { + links: { + user_guide: '/help/crc_agg/user_guide.html', + quick_start: '/help/crc_agg/quick_start.html', + contact_us: '/help/crc_agg/contact_us.html', + analysis_summary: '/help/crc_agg/analysis/analysis_summary.html', + bug_report: 'http://code.google.com/p/regulome-explorer/issues/entry', + user_group: 'http://groups.google.com/group/regulome-explorer', + ideogram: '/help/msae/images/ideogram.png' + } + }, + pathways: { + wikipw_url: 'http://www.wikipathways.org/index.php?title=Special%3ASearchPathways&doSearch=1&sa=Search&species=Homo+sapiens&query=', + biocarta_url: 'http://www.biocarta.com/pathfiles/h_', + kegg_url: 'http://www.genome.jp/kegg-bin/search_pathway_text?map=map&mode=1&viewImage=true&keyword=', + pw_commons_url: 'http://www.pathwaycommons.org/pc/webservice.do?version=3.0&snapshot_id=GLOBAL_FILTER_SETTINGS&record_type=PATHWAY&format=html&cmd=get_by_keyword&q=' + }, + + display_options: { + circvis: { + rings: { + karyotype: { + hidden: false + }, + cnvr: { + hidden: false + }, + pairwise_scores: { + value_field: re.model.association.types[0].query.id, + hidden: false, + + + manual_y_color_scale:false, + min_y_color:'#0000FF', + max_y_color:'#FF0000', + manual_y_values: false, + min_y_value:0, + max_y_value:1 + } + }, + tooltips: { + feature: { + Feature: function(node) { + var pos = node.label.indexOf('_'); + var label = (pos > 0 ? node.label.slice(0, pos) : node.label); + label = (label == 'GisticArm' ? "Arm " + node.label.split('_')[1] : label); + return label; + }, + Source: function(node) { + return re.label_map[node.source] + }, + 'Location': function(node) { + return 'Chr' + node.chr + ' ' + node.start + (node.end == '' ? '' : '-' + node.end) + ' '; + }, + Annotations: parseAnnotationList + }, + unlocated_feature : {}, + karyotype_feature: {}, + edge: {}, + link_objects: [{ + label: 'UCSC Genome Browser', + url: 'http://genome.ucsc.edu/cgi-bin/hgTracks', + uri: '?db=hg18&position=chr', + config_object: function(feature) { + return 'http://genome.ucsc.edu/cgi-bin/hgTracks?db=hg18&position=chr' + feature.chr + ':' + feature.start + (feature.end == '' ? '' : '-' + feature.end); + } + }, //ucsc_genome_browser + { + label: 'Ensemble', + url: 'http://uswest.ensembl.org/Homo_sapiens/Location/View', + uri: '?r=', + config_object: function(feature) { + return 'http://uswest.ensembl.org/Homo_sapiens/Location/View?r=' + feature.chr + ':' + feature.start + (feature.end == '' ? '' : '-' + feature.end); + } + }, //ensemble + { + label: 'Cosmic', + url: 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic', + uri: '?action=bygene&ln=', + config_object: function(feature) { + return ['CNVR', 'MIRN','METH'].indexOf(feature.source) < 0 ? 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic?action=bygene&ln=' + feature.label : null; + } + }, { + label: 'NCBI', + url: 'http://www.ncbi.nlm.nih.gov/gene/', + uri: '', + selector : Ext.DomQuery.compile('a[href*=zzzZZZzzz]'), + config_object: function(feature) { + if (['CNVR', 'MIRN','METH'].indexOf(feature.source) >= 0) return null; + Ext.Ajax.request({url:re.node.uri + re.node.services.lookup+'/'+feature.label,success:entrezHandler, failure: lookupFailed}); + + function lookupFailed() { + var node = re.display_options.circvis.tooltips.link_objects[3].selector('')[0]; + node.setAttribute('href','http://www.ncbi.nlm.nih.gov/gene?term='+feature.label); + } + + function entrezHandler(response) { + var gene,entrez; + var node = re.display_options.circvis.tooltips.link_objects[3].selector('')[0]; + try { + gene = Ext.decode(response.responseText); + entrez = gene[Object.keys(gene)[0]]; + node.setAttribute('href',node.getAttribute('href').replace('zzzZZZzzz',entrez)); + } catch (err) { + lookupFailed(); + } + } + return 'http://www.ncbi.nlm.nih.gov/gene/' + 'zzzZZZzzz'; + } + }, { + label: 'miRBase', + url: 'http://mirbase.org/cgi-bin/query.pl', + uri: '?terms=', + config_object: function(feature) { + return feature.source == 'MIRN' ? 'http://www.mirbase.org/cgi-bin/query.pl?terms=' + feature.label : null; + } + } + ], + //link_objects + edge_links: {}, + feature_links : {} + }, + ticks: { + tick_overlap_distance: null, + tile_ticks_manually: false, + wedge_width: 1, + wedge_width_manually: false, + wedge_height: 1, + wedge_height_manually: false + }, + network: { + tile_nodes: false, + node_overlap_distance: null + }, + width: 800, + height: 800, + ring_radius: 55, + rotation: 0, + chrom_keys: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "X", "Y"] + }, + cytoscape: { + frame_ready: false, + ready: false, + layout: 'force_directed' + } + }, + circvis_obj: {}, + cytoscape: { + obj: {}, + data: [], + swfPath: "https://informatics-apps.systemsbiology.net/cytoscapeweb_v1.0/swf/CytoscapeWeb", + flashInstallerPath: "https://informatics-apps.systemsbiology.net/cytoscapeweb_v1.0/swf/playerProductInstall" + }, + plot: { + locatable_source_list: ['GEXP', 'METH', 'CNVR', 'MIRN', 'GNAB', 'RPPA'], + unlocatable_source_list: ['CLIN', 'SAMP', 'PRDM'], + link_sources_array: [], + + colors: { + link_type_colors: pv.colors("#c2c4ff", "#e7cb94", "#cedb9c", "#e7969c", "#e1daf9", "#b8e2ef"), + link_sources_colors: {}, + source_color_scale: pv.Colors.category10(), + stroke_style_attribute: 'white', + getStrokeStyleAttribute: function() { + return re.plot.colors.stroke_style_attribute; + }, + setStrokeStyleAttribute: function(attr) { + re.plot.colors.stroke_style_attribute = attr; + } + }, + inter_scale: pv.Scale.linear(0.00005, 0.0004).range('lightpink', 'red'), + linear_unit: 100000, + chrome_length: [], + + scatterplot_data: null + }, + ui: { + filters: { + single_feature: true + }, + chromosomes: [], + dataset_labels: [], + getDatasetLabels: function() { + return re.ui.dataset_labels; + }, + setDatasetLabels: function(obj) { + re.ui.dataset_labels = obj; + }, + /* + * Order combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + limit_list: [{ + value: 10, + label: '10' + }, { + value: 20, + label: '20' + }, { + value: 40, + label: '40' + }, { + value: 100, + label: '100' + }, { + value: 200, + label: '200' + }, { + value: 1000, + label: '1000' + }, { + value: 2000, + label: '2000' + }], + /* + * Limit combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + order_list: [] + }, + +/* + Window handles + global handles to the masks and windows used by events + */ + + windows: { + details_window: null, + helpWindowReference: null, + masks: { + details_window_mask: null, + network_mask: null + } + }, + data: { + parsed_data: { + network: null, + unlocated: null, + features: null, + unlocated_features: null, + located_features: null + }, + responses: { + network: null + }, + patients: { + data: null + } + } +}); + + +(function() { + re.ui.chromosomes.push({ + value: '*', + label: 'All' + }); + for (var i = 1; i <= 22; i++) { + re.ui.chromosomes.push({ + value: i + '', + label: i + '' + }); + } + re.ui.chromosomes.push({ + value: 'X', + label: 'X' + }); + re.ui.chromosomes.push({ + value: 'Y', + label: 'Y' + }); + +/* + Label map + Hash maps feature type id to feature type label + */ + re.label_map = { + '*': 'All', + 'GEXP': 'Gene Expression', + 'METH': 'Methylation', + 'CNVR': 'Copy # Var Region', + 'CLIN': 'Clinical', + 'MIRN': 'microRNA', + 'GNAB': 'Gene Aberration', + 'SAMP': 'Tumor Sample', + 'PRDM': 'Paradigm Feature', + 'RPPA': 'RPPA' + }; + re.plot.all_source_list = pv.blend([re.plot.locatable_source_list, re.plot.unlocatable_source_list]); + re.plot.all_source_map = pv.numerate(re.plot.all_source_list); + re.plot.locatable_source_map = pv.numerate(re.plot.locatable_source_list); + + re.plot.proximal_distance = 2.5 * re.plot.linear_unit; + + re.plot.colors.features = { + 'GEXP': '#1f77b4', + //blue + 'METH': '#2ca02c', + //green + 'CNVR': '#ff7f0e', + //orange + 'MIRN': '#9467bd', + //purple + 'GNAB': '#d62728', + //red + 'PRDM': '#8c564b', + //pink + 'RPPA': '#e377c2', + //brown + 'CLIN': '#7f7f7f', + 'SAMP': '#bcbd22' + //#17becf + }; + + re.plot.colors.node_colors = function(source) { + if (source in re.plot.colors.features) { + return pv.color(re.plot.colors.features[source]); + } + return "blue"; + }; + re.model.association.types.forEach(function(obj) { + re.ui.order_list.push({ + value: obj.id, + label: obj.label + }); + }); + + + if (re.analysis.directed_association) { + re.ui.feature1 = { + label: 'Target', + id: 'target' + }; + re.ui.feature2 = { + label: 'Predictor', + id: 'predictor' + }; + } else { + re.ui.feature1 = { + label: 'Feature 1', + id: 'feature1' + }; + re.ui.feature2 = { + label: 'Feature 2', + id: 'feature2' + }; + } + + re.build_tooltips(); + +})(); \ No newline at end of file diff --git a/src/instances/all_pairs/appspot/globals.js.orig b/src/instances/all_pairs/appspot/globals.js.orig new file mode 100644 index 0000000..1ea514c --- /dev/null +++ b/src/instances/all_pairs/appspot/globals.js.orig @@ -0,0 +1,428 @@ +/* + globals.js + + Import this before MVC scripts. + */ +if (re === undefined) { + re = {}; +} + +vq.utils.VisUtils.extend(re, { + + title: 'All Pairs Significance Explorer', + google: { + analytics_id: 'UA-20488457-2' + }, + analysis: { + dataset_method_clause: ' where method=\'pairwise\'', + directed_association: false + }, + state: { + once_loaded: false, + query_cancel: false, + network_query: '' + }, + node: { + uri: '/node', + services: { + data: '/data', + lookup:'/lookup/label/entrez' + } + }, + rest: { + query: '/query', + echo: '/echo', + convert: '/convert' + }, + params: { + json_out: '&tqx=out:json_array', + query: 'tq=' + }, + databases: { + base_uri: '', + metadata: { + uri: '/addama/datasources/csacr' + }, + rf_ace: { + uri: '/addama/datasources/tcga' + }, + solr: { + uri: '/addama/indexes/solr', + select: '/select/' + + } + }, + tables: { + dataset: '/regulome_explorer_dataset', + label_lookup: '/refgene', + chrom_info: '/chrom_info', + current_data: '', + network_uri: '', + feature_uri: '', + clin_uri: '', + patient_uri: '', + feature_data_uri: '', + pathway_uri: '' + }, + /* + * URL's + * addresses to pathways used by MEDLINE tab + */ + help: { + links: { + user_guide: '/help/crc_agg/user_guide.html', + quick_start: '/help/crc_agg/quick_start.html', + contact_us: '/help/crc_agg/contact_us.html', + analysis_summary: '/help/crc_agg/analysis/analysis_summary.html', + bug_report: 'http://code.google.com/p/regulome-explorer/issues/entry', + user_group: 'http://groups.google.com/group/regulome-explorer' + } + }, + pathways: { + wikipw_url: 'http://www.wikipathways.org/index.php?title=Special%3ASearchPathways&doSearch=1&sa=Search&species=Homo+sapiens&query=', + biocarta_url: 'http://www.biocarta.com/pathfiles/h_', + kegg_url: 'http://www.genome.jp/kegg-bin/search_pathway_text?map=map&mode=1&viewImage=true&keyword=', + pw_commons_url: 'http://www.pathwaycommons.org/pc/webservice.do?version=3.0&snapshot_id=GLOBAL_FILTER_SETTINGS&record_type=PATHWAY&format=html&cmd=get_by_keyword&q=' + }, + + display_options: { + circvis: { + rings: { + karyotype: { + hidden: false + }, + cnvr: { + hidden: false + }, + pairwise_scores: { + value_field: re.model.association.types[0].query.id, + hidden: false, + + + manual_y_color_scale:false, + min_y_color:'#0000FF', + max_y_color:'#FF0000', + manual_y_values: false, + min_y_value:0, + max_y_value:1 + } + }, + tooltips: { + feature: { + Feature: function(node) { + var pos = node.label.indexOf('_'); + return pos > 0 ? node.label.slice(0, pos) : node.label; + }, + Source: function(node) { + return re.label_map[node.source] + }, + 'Location': function(node) { + return 'Chr' + node.chr + ' ' + node.start + (node.end == '' ? '' : '-' + node.end) + ' '; + }, + Annotations: parseAnnotationList + }, + edge: function(edge) {}, + link_objects: [{ + label: 'UCSC Genome Browser', + url: 'http://genome.ucsc.edu/cgi-bin/hgTracks', + uri: '?db=hg18&position=chr', + config_object: function(feature) { + return 'http://genome.ucsc.edu/cgi-bin/hgTracks?db=hg18&position=chr' + feature.chr + ':' + feature.start + (feature.end == '' ? '' : '-' + feature.end); + } + }, //ucsc_genome_browser + { + label: 'Ensemble', + url: 'http://uswest.ensembl.org/Homo_sapiens/Location/View', + uri: '?r=', + config_object: function(feature) { + return 'http://uswest.ensembl.org/Homo_sapiens/Location/View?r=' + feature.chr + ':' + feature.start + (feature.end == '' ? '' : '-' + feature.end); + } + }, //ensemble + { + label: 'Cosmic', + url: 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic', + uri: '?action=bygene&ln=', + config_object: function(feature) { + return ['CNVR', 'MIRN'].indexOf(feature.source) < 0 ? 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic?action=bygene&ln=' + feature.label : null; + } + }, { + label: 'NCBI', + url: 'http://www.ncbi.nlm.nih.gov/gene/', + uri: '', + selector : Ext.DomQuery.compile('a[href*=zzzZZZzzz]'), + config_object: function(feature) { + if (['CNVR', 'MIRN','METH'].indexOf(feature.source) >= 0) return null; + Ext.Ajax.request({url:re.node.uri + re.node.services.lookup+'/'+feature.label,success:entrezHandler, failure: lookupFailed}); + + function lookupFailed() { + var node = re.display_options.circvis.tooltips.link_objects[3].selector('')[0]; + node.setAttribute('href','http://www.ncbi.nlm.nih.gov/gene?term='+feature.label); + } + + function entrezHandler(response) { + var gene,entrez; + var node = re.display_options.circvis.tooltips.link_objects[3].selector('')[0]; + try { + gene = Ext.decode(response.responseText); + entrez = gene[Object.keys(gene)[0]]; + node.setAttribute('href',node.getAttribute('href').replace('zzzZZZzzz',entrez)); + } catch (err) { + lookupFailed(); + } + } + return 'http://www.ncbi.nlm.nih.gov/gene/' + 'zzzZZZzzz'; + } + }, { + label: 'miRBase', + url: 'http://mirbase.org/cgi-bin/query.pl', + uri: '?terms=', + config_object: function(feature) { + return feature.source == 'MIRN' ? 'http://www.mirbase.org/cgi-bin/query.pl?terms=' + feature.label : null; + } + }, + ], + //link_objects + links: {} + }, + ticks: { + tick_overlap_distance: null, + tile_ticks_manually: false, + wedge_width: 1, + wedge_width_manually: false, + wedge_height: 1, + wedge_height_manually: false + }, + network: { + tile_nodes: false, + node_overlap_distance: null + }, + width: 800, + height: 800, + ring_radius: 55, + rotation: 0, + chrom_keys: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "X", "Y"] + }, + cytoscape: { + frame_ready: false, + ready: false, + layout: 'force_directed' + } + }, + circvis_obj: {}, + cytoscape: { + obj: {}, + data: [], + swfPath: "http://cdn.cancerregulome.org/js/cytoscape_web/1.0/swf/CytoscapeWeb", + flashInstallerPath: "http://cdn.cancerregulome.org/js/cytoscape_web/1.0/swf/playerProductInstall" + }, + plot: { + locatable_source_list: ['GEXP', 'METH', 'CNVR', 'MIRN', 'GNAB', 'RPPA'], + unlocatable_source_list: ['CLIN', 'SAMP', 'PRDM'], + link_sources_array: [], + + colors: { + link_type_colors: pv.colors("#c2c4ff", "#e7cb94", "#cedb9c", "#e7969c", "#e1daf9", "#b8e2ef"), + link_sources_colors: {}, + source_color_scale: pv.Colors.category10(), + stroke_style_attribute: 'white', + getStrokeStyleAttribute: function() { + return re.plot.colors.stroke_style_attribute; + }, + setStrokeStyleAttribute: function(attr) { + re.plot.colors.stroke_style_attribute = attr; + } + }, + inter_scale: pv.Scale.linear(0.00005, 0.0004).range('lightpink', 'red'), + linear_unit: 100000, + chrome_length: [], + + scatterplot_data: null + }, + ui: { + filters: { + single_feature: true + }, + chromosomes: [], + dataset_labels: [], + getDatasetLabels: function() { + return re.ui.dataset_labels; + }, + setDatasetLabels: function(obj) { + re.ui.dataset_labels = obj; + }, + /* + * Order combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + limit_list: [{ + value: 10, + label: '10' + }, { + value: 20, + label: '20' + }, { + value: 40, + label: '40' + }, { + value: 100, + label: '100' + }, { + value: 200, + label: '200' + }, { + value: 1000, + label: '1000' + }, { + value: 2000, + label: '2000' + }], + /* + * Limit combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + order_list: [] + }, + +/* + Window handles + global handles to the masks and windows used by events + */ + + windows: { + details_window: null, + helpWindowReference: null, + masks: { + details_window_mask: null, + network_mask: null + } + }, + data: { + parsed_data: { + network: null, + unlocated: null, + features: null, + unlocated_features: null, + located_features: null + }, + responses: { + network: null + }, + patients: { + data: null + } + } +}); + + +(function() { + re.ui.chromosomes.push({ + value: '*', + label: 'All' + }); + for (var i = 1; i <= 22; i++) { + re.ui.chromosomes.push({ + value: i + '', + label: i + '' + }); + } + re.ui.chromosomes.push({ + value: 'X', + label: 'X' + }); + re.ui.chromosomes.push({ + value: 'Y', + label: 'Y' + }); + +/* + Label map + Hash maps feature type id to feature type label + */ + re.label_map = { + '*': 'All', + 'GEXP': 'Gene Expression', + 'METH': 'Methylation', + 'CNVR': 'Copy # Var Region', + 'CLIN': 'Clinical', + 'MIRN': 'microRNA', + 'GNAB': 'Gene Aberration', + 'SAMP': 'Tumor Sample', + 'PRDM': 'Paradigm Feature', + 'RPPA': 'RPPA' + }; + re.plot.all_source_list = pv.blend([re.plot.locatable_source_list, re.plot.unlocatable_source_list]); + re.plot.all_source_map = pv.numerate(re.plot.all_source_list); + re.plot.locatable_source_map = pv.numerate(re.plot.locatable_source_list); + + re.plot.proximal_distance = 2.5 * re.plot.linear_unit; + + re.plot.colors.features = { + 'GEXP': '#1f77b4', + //blue + 'METH': '#2ca02c', + //green + 'CNVR': '#ff7f0e', + //orange + 'MIRN': '#9467bd', + //purple + 'GNAB': '#d62728', + //red + 'PRDM': '#8c564b', + //pink + 'RPPA': '#e377c2', + //brown + 'CLIN': '#7f7f7f', + 'SAMP': '#bcbd22' + //#17becf + }; + + re.plot.colors.node_colors = function(source) { + if (source in re.plot.colors.features) { + return pv.color(re.plot.colors.features[source]); + } + return "blue"; + }; + re.model.association.types.forEach(function(obj) { + re.ui.order_list.push({ + value: obj.id, + label: obj.label + }); + }); + + + if (re.analysis.directed_association) { + re.ui.feature1 = { + label: 'Target', + id: 'target' + }; + re.ui.feature2 = { + label: 'Predictor', + id: 'predictor' + }; + } else { + re.ui.feature1 = { + label: 'Feature 1', + id: 'feature1' + }; + re.ui.feature2 = { + label: 'Feature 2', + id: 'feature2' + }; + } + re.display_options.circvis.tooltips.link_objects.forEach(function(link) { + re.display_options.circvis.tooltips.links[link.label] = link.config_object; + }); + + re.display_options.circvis.tooltips.link_objects.forEach(function(link) { + re.display_options.circvis.tooltips.links[link.label] = link.config_object; + }); + + re.model.association.types.forEach(function(assoc) { + vq.utils.VisUtils.extend(re.display_options.circvis.tooltips.feature, assoc.vis.tooltip.entry); + }); + +})(); \ No newline at end of file diff --git a/src/instances/all_pairs/appspot/topbar.css b/src/instances/all_pairs/appspot/topbar.css new file mode 100644 index 0000000..42616b7 --- /dev/null +++ b/src/instances/all_pairs/appspot/topbar.css @@ -0,0 +1,65 @@ +.floating_topbar { + border-radius: 6px; + background: #F6F6F6; + border: 2px solid #ccc; + height: 50px; + width: 25px; + float: right; + z-index: 1000; + box-shadow: 5px 5px 5px #ccc; +} + +.floating_topbar img { + width: 50px; + position: absolute; + top: -10px; + right: 10px; + z-index: 1000; +} + +.floating_topbar div { + width: 750px; + padding: 5px 30px 5px 5px; + z-index: 999; + top: 3px; + float: inherit; + border-radius: 8px 0 0 8px; +} + +/*MESSAGE STYLES*/ +.msg { + font-size:14px; + border-radius: 8px; + background: #F6F6F6; + border: 2px solid #ccc; + margin-top: 2px; + padding: 10px 15px; + color: #555; +} + +.msg-error { + font-size:14px; + border-radius: 8px; + background: #FFB2B2; + border: 2px solid #ccc; + margin-top: 2px; + padding: 10px 15px; + color: #555; +} + +.msg-container { + position:absolute; + left:35%; + top:10px; + width:300px; + z-index:20000; +} + +.msg-container h3 { + margin: 0 0 8px; + font-weight: bold; + font-size: 15px; +} +.msg-container p { + margin: 0; +} \ No newline at end of file diff --git a/src/instances/all_pairs/index.html b/src/instances/all_pairs/index.html new file mode 100755 index 0000000..61f399c --- /dev/null +++ b/src/instances/all_pairs/index.html @@ -0,0 +1,111 @@ + + + + + Regulome Explorer: All Pairs + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/src/instances/all_pairs/index_debug.html b/src/instances/all_pairs/index_debug.html new file mode 100644 index 0000000..3f8e97e --- /dev/null +++ b/src/instances/all_pairs/index_debug.html @@ -0,0 +1,107 @@ + + + + + All Pairs Significance Explorer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/src/instances/all_pairs/index_local.html b/src/instances/all_pairs/index_local.html new file mode 100644 index 0000000..26e1568 --- /dev/null +++ b/src/instances/all_pairs/index_local.html @@ -0,0 +1,109 @@ + + + + + Regulome Explorer: All Pairs + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/src/instances/all_pairs/js/association.js b/src/instances/all_pairs/js/association.js new file mode 100644 index 0000000..54ae370 --- /dev/null +++ b/src/instances/all_pairs/js/association.js @@ -0,0 +1,177 @@ +if (re.model === undefined) re.model = {}; + +re.model.association = { + types : [ + { id : 'logged_pvalue_bonf', + label : 'Adjusted -log10(p)', + ui : { + grid : { + column : { header : "Adjusted -log10(p)", width : 50 , id: 'adj_logged_pvalue' , dataIndex : 'adj_logged_pvalue', hidden: false}, + store_index : 'adj_logged_pvalue' + } + }, + query : { + id : 'logged_pvalue_bonf', + clause : '', + order_direction : 'desc' + }, + vis : { + network : { + edgeSchema : {name: "adj_logged_pvalue", type: "number" } + }, + tooltip : { + entry : { 'Adjusted -log10(p)' : 'adj_logged_pvalue' } + }, + scatterplot: { + values: { + min:0, + floor : 0, + ceil: 300 + }, + color_scale : pv.Scale.linear(0,50).range('blue','red') + } + } + }, + { id : 'logged_pvalue', + label : '-log10(p)', + ui : { + filter : { + component: { + xtype : 'numberfield', + id:'logged_pvalue', + name :'logged_pvalue', + allowNegative: true, + decimalPrecision : 0, + emptyText : 'Input value...', + invalidText:'This value is not valid.', + maxValue:300, + minValue:0.0, + tabIndex : 1, + validateOnBlur : true, + fieldLabel : '-log10(p) ≥', + defaultValue: 6, + value : 6 + } + }, + grid : { + column : { header : "-log10(p)", width : 50 , id: 'logged_pvalue' , dataIndex : 'logged_pvalue', hidden: false}, + store_index : 'logged_pvalue' + } + }, + query : { + id : 'logged_pvalue', + clause : 'logged_pvalue >= ', + order_direction : 'DESC' + }, + vis : { + network : { + edgeSchema : {name: "logged_pvalue", type: "number" } + }, + tooltip : { + entry : { '-log10(p)' : 'logged_pvalue' } + }, + scatterplot: { + values: { + min:0, + floor : 0, + ceil: 300 + }, + color_scale : pv.Scale.linear(0,50).range('blue','red') + } + } + }, + { id : 'correlation', + label : 'Correlation', + ui : { + filter : { + component: new re.multirangeField( + { id:'correlation', + label: 'Correlation', + decimalPrecision : 3, + emptyText : 'Input value...', + invalidText:'This value is not valid.', + validateOnBlur : true, + default_value: 0, + min_value: -1, + max_value: 1, + defaultValue: 0, + value : 0 + } + ) + }, + grid : { + column : { header: "Correlation", width:50, id:'correlation',dataIndex:'correlation'}, + store_index : 'correlation' + } + }, + query : { + id : 'correlation', + clause : flex_field_query, + order_direction : 'DESC' + }, + vis : { + network : { + edgeSchema : { name: "correlation", type: "number" } + }, + tooltip : { + entry : { Correlation : 'correlation'} + }, + scatterplot : { + scale_type :'linear', + values : { + min:-1, + max:1 + }, + color_scale : pv.Scale.linear(-1,1).range('blue','red') + } + } + }, + { id : 'num_nonna', + label : '# of samples', + ui : { + filter : { + component: { + xtype : 'numberfield', + id:'num_nonna', + name :'num_nonna', + allowNegative: false, + decimalPrecision : 2, + emptyText : 'Input value...', + invalidText:'This value is not valid.', + minValue:0, + tabIndex : 1, + validateOnBlur : true, + fieldLabel : '# of samples ≥', + defaultValue: 0, + value : 0 + } + }, + grid : { + column : { header: "# of samples", width:50, id:'num_nonna',dataIndex:'num_nonna' }, + store_index : 'num_nonna' + } + }, + query : { + id : 'num_nonna', + clause : 'num_nonna >= ', + order_direction : 'DESC' + }, + vis : { + network : { + edgeSchema : { name: "num_nonna", type: "number" } + }, + tooltip : { + entry : { ' # of samples' : 'num_nonna'} + }, + scatterplot : { + scale_type :'linear', + values : { + }, + color_scale : pv.Scale.linear(0,400).range('blue','red') + } + } + } + ] +}; + +re.model.association_map = pv.numerate(re.model.association.types, function(obj) { return obj.id;}); \ No newline at end of file diff --git a/src/instances/all_pairs/js/globals.js b/src/instances/all_pairs/js/globals.js new file mode 100755 index 0000000..a05b0f5 --- /dev/null +++ b/src/instances/all_pairs/js/globals.js @@ -0,0 +1,515 @@ +/* + globals.js + + Import this before MVC scripts. + */ +if (re === undefined) { + re = {}; +} + +vq.utils.VisUtils.extend(re, { + + title: 'Regulome Explorer: All Pairs', + google: { + analytics_id: 'UA-20488457-2' + }, + analysis: { + dataset_method_clause: ' where method=\'pairwise\'', + directed_association: false, + hidden: false + }, + state: { + once_loaded: false, + query_cancel: false, + network_query: '' + }, + node: { + uri: '/node', + services: { + data: '/data', + lookup:'/lookup/label/entrez' + } + }, + rest: { + query: '/query', + echo: '/echo', + convert: '/convert', + select: '/distributed_select' + }, + params: { + json_out: '&tqx=out:json_array', + query: 'tq=', + network_query: 'q=', + network_json_out: '&wt=json', + network_dataset_select: '&fq=%2Bdataset%3A' + }, + databases: { + base_uri: '', + metadata: { + uri: '/google-dsapi-svc/addama/datasources/csacr' + }, + rf_ace: { + uri: '/google-dsapi-svc/addama/datasources/re' + }, + networks: { + uri: '/data' + }, + medline: { + uri: '/solr/core0', + select: '/select/' + }, + ffn : { + uri: '/addama/services/datastores/dev_ffn_20140520' + } + }, + tables: { + dataset: '/regulome_explorer_dataset', + label_lookup: '/refgene', + chrom_info: '/chrom_info', + entrez_gene: '/entrez_gene', + current_data: '', + network_uri: '', + feature_uri: '', + features_uri: '', + clin_uri: '', + patient_uri: '', + feature_data_uri: '', + pathway_uri: '', + pathways:'/pathways', + ffn: '/feature_matrix' + }, + /* + * URL's + * addresses to pathways used by MEDLINE tab + */ + help: { + strings: { + // help strings + filteringHelpString: 'The Filter Panel can be used to specify the type of associations to display in the View Panels. Queries may specify attributes of each feature, as well as the attributes of the association.', + pathwaysHelpString: 'The Pathway Panel provides a view onto the individual members of the selected pathway. It displays the distribution of assoication types for each member. Hovering over a member activates a highlight mode on the cirular layout panel. Clicking on a feature locks that highlight mode in.', + toolsHelpString: 'The Tool Panel provides a way for filtering, selecting, and exporting different datasets. ' + 'The Panel can also be minimized by clicking the `>>` icon, which then expands main panel view. ' + 'See each individual tool help for further details on their capabilities.', + dataLevelViewHelpString: 'The Data-level View is a data table displaying the feature selected in the Genome-level ' + 'view and its related links. This view allows the user to easily navigate all the related data values ' + 'associated with a single feature.', + chromosomeLevelHelpString: 'The Chromosome-level View provides a way to navigate the features of a given dataset on ' + 'a single chromosome level. The view will be populated with chromosome information once a chromosome is ' + 'selected by either clicking on a specific chromosome number or end-point of a link in the Genome-level view.

' + 'Feature information on a given chromosome is displayed in 4 different plots. The Distal Intra-Chromosome ' + 'Correlates plot shows the location of the predictors for a target within a chromosome. The Proximal Feature ' + 'Predictors plot also displays feature associations within the chromosome, but only displays ones where the ' + 'start and end location of a predictor is less than 250,000 bp in length. The Unmapped Feature Coorelates ' + 'shows features for which there does not exist a mapped location. Finally, the Feature Locations plot shows ' + 'the locations of the various targets involved in the links. All plots have tooltips giving more details of ' + 'the underlying data. Coorelation scatterplots are displayed when an item is selected within a plot.

' + 'A sliding scale showing all feature locations is given at the bottom of the view. A range can be selected to zoom ' + 'in on a given chromosome location by clicking the mouse and dragging it over a region. The same zoom and ' + 'selection capability is also available within the top 4 plots.', + genomeLevelHelpString: 'The Genome-level View is an interactive circular plot showing the links between target and ' + 'predictor features within the dataset. Tooltips over various points give the underlying data associated with ' + 'a node or link. Clicking on the links within the plot will display a coorelation scatterplot of the associated ' + 'features. Mouse clicks on chromosomes, links, and nodes within the plot also bring up drill-down information ' + 'in the Chromosome-level and Data-level views.

' + 'The subset of data shown in the circular plot can be filtered by using the tools panel filtering section. Once a plot ' + 'of interest has been found, an export of the plot can be achieved by using the tools panel export option. ' + 'The mouse-click behavior of the interactive plot can be changed by choosing different options in the tools ' + 'panel selection area.' + }, + links: { + user_guide: 'http://wiki.cancerregulome.org', + quick_start: 'http://wiki.cancerregulome.org/bin/view/All+Pairs+Analysis/8.1+Quick+Walk-through+for+One+Feature', + contact_us: 'http://wiki.cancerregulome.org', + analysis_summary: '/help/all_pairs/analysis.html', + bug_report: 'http://code.google.com/p/regulome-explorer/issues/entry', + user_group: 'http://groups.google.com/group/regulome-explorer', + ideogram: '/help/msae/images/ideogram.png' + } + }, + pathways: { + wikipw_url: 'http://www.wikipathways.org/index.php?title=Special%3ASearchPathways&doSearch=1&sa=Search&species=Homo+sapiens&query=', + biocarta_url: 'http://www.biocarta.com/pathfiles/h_', + kegg_url: 'http://www.genome.jp/kegg-bin/search_pathway_text?map=map&mode=1&viewImage=true&keyword=', + pw_commons_url: 'http://www.pathwaycommons.org/pc/webservice.do?version=3.0&snapshot_id=GLOBAL_FILTER_SETTINGS&record_type=PATHWAY&format=html&cmd=get_by_keyword&q=' + }, + + display_options: { + circvis: { + rings: { + karyotype: { + hidden: false, + radius: 28 + }, + cnvr: { + hidden: true, + radius: 40 + }, + pairwise_scores: { + value_field: re.model.association.types[0].query.id, + hidden: false, + + manual_y_color_scale:false, + min_y_color:'#0000FF', + max_y_color:'#FF0000', + manual_y_values: false, + min_y_value:0, + max_y_value:1 + } + }, + quantiled_data: { + GEXP: true, + CNVR: true, + METH: true + }, + tooltips: { + feature: { + Feature: function(node) { + var pos = node.label.indexOf('_'); + var label = (pos > 0 ? node.label.slice(0, pos) : node.label); + label = (label == 'GisticArm' ? "Arm " + node.label.split('_')[1] : label); + return label; + }, + Source: function(node) { + return re.label_map[node.source]; + }, + 'Location': function(node) { + return 'Chr' + node.chr + ' ' + node.start + (node.end === '' ? '' : '-' + node.end) + ' '; + }, + Annotations: parseAnnotationList + }, + unlocated_feature : {}, + karyotype_feature: {}, + edge: {}, + link_objects: [ + { + label: 'Pubcrawl', + url: 'http://explorer.cancerregulome.org/pubcrawl/', + uri: '?term=fbxw7&dataset=gbm_1031', + config_object: function(feature) { + return 'http://explorer.cancerregulome.org/pubcrawl/?term='+feature.label+'&dataset=' + re.tables.current_data; + } + }, //pubcrawl + { + label: 'UCSC Genome Browser', + url: 'http://genome.ucsc.edu/cgi-bin/hgTracks', + uri: '?db=hg19&position=chr', + config_object: function(feature) { + return 'http://genome.ucsc.edu/cgi-bin/hgTracks?db=hg19&position=chr' + feature.chr + ':' + feature.start + (feature.end === '' ? '' : '-' + feature.end); + } + }, //ucsc_genome_browser + { + label: 'Ensemble', + url: 'http://uswest.ensembl.org/Homo_sapiens/Location/View', + uri: '?r=', + config_object: function(feature) { + return 'http://uswest.ensembl.org/Homo_sapiens/Location/View?r=' + feature.chr + ':' + feature.start + (feature.end === '' ? '' : '-' + feature.end); + } + }, //ensemble + { + label: 'Cosmic', + url: 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic', + uri: '?action=bygene&ln=', + config_object: function(feature) { + return ['CNVR', 'MIRN','METH'].indexOf(feature.source) < 0 ? 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic?action=bygene&ln=' + feature.label : null; + } + }, { + label: 'NCBI', + url: 'http://www.ncbi.nlm.nih.gov/gene/', + uri: '', + selector : Ext.DomQuery.compile('a[href*=zzzZZZzzz]'), + config_object: function(feature) { + return 'http://www.ncbi.nlm.nih.gov/gene?term='+feature.label; + } + }, { + label: 'miRBase', + url: 'http://mirbase.org/cgi-bin/query.pl', + uri: '?terms=', + config_object: function(feature) { + return feature.source == 'MIRN' ? 'http://www.mirbase.org/cgi-bin/query.pl?terms=' + feature.label : null; + } + } + ], + //link_objects + edge_links: new Object(null), + feature_links : new Object(null) + }, + ticks: { + tick_overlap_distance: null, + tile_ticks_manually: false, + wedge_width: 1, + wedge_width_manually: false, + wedge_height: 1, + wedge_height_manually: false + }, + network: { + tile_nodes: false, + node_overlap_distance: null + }, + width: 800, + height: 800, + ring_radius: 55, + rotation: 0, + chrom_keys: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "X", "Y"] + }, + cytoscape: { + frame_ready: false, + ready: false, + layout: 'force_directed' + } + }, + circvis_obj: {}, + cytoscape: { + obj: {}, + data: [], + swfPath: "http://cdn.cancerregulome.org/js/cytoscape_web/1.0/swf/CytoscapeWeb", + flashInstallerPath: "http://cdn.cancerregulome.org/js/cytoscape_web/1.0/swf/playerProductInstall" + }, + plot: { + locatable_source_list: ['GEXP', 'METH', 'CNVR', 'MIRN', 'GNAB', 'RPPA'], + unlocatable_source_list: ['CLIN', 'SAMP', 'PRDM'], + link_sources_array: [], + + colors: { + link_type_colors: pv.colors("#c2c4ff", "#e7cb94", "#cedb9c", "#e7969c", "#e1daf9", "#b8e2ef"), + link_sources_colors: {}, + source_color_scale: pv.Colors.category10(), + stroke_style_attribute: 'white', + getStrokeStyleAttribute: function() { + return re.plot.colors.stroke_style_attribute; + }, + setStrokeStyleAttribute: function(attr) { + re.plot.colors.stroke_style_attribute = attr; + }, + + categorical_values: { + 'NA' :'#444444', + '0': '#1f77b4', //blue + '1': '#ff7f0e', //orange + }, + category_colors : [ + '#2ca02c', + '#9467bd', + '#d62728', + '#8c564b', + '#e377c2', + '#7f7f7f', + '#bcbd22', + "#c2c4ff", + "#e7cb94", + "#cedb9c", + "#e7969c", + "#e1daf9", + "#b8e2ef" + ] + }, + inter_scale: pv.Scale.linear(0.00005, 0.0004).range('lightpink', 'red'), + linear_unit: 100000, + chrome_length: [], + legend: {}, + scatterplot_data: null, + default_colorby_feature_alias: '', + category_equivalents :{ + 'NEG': '0' , + 'NEGATIVE' : '0', + 'TUMOR_FREE' : '0', + 'NO': '0', + 'POS': '1', + 'POSITIVE' : '1', + 'WITH_TUMOR' : '1', + 'YES': '1' + } + }, + ui: { + filters: { + single_feature: true, + link_distance: true + }, + chromosomes: [], + dataset_labels: [], + categorical_sources_map : {}, + + // Removes heading and trailing whitespaces from a string + getDatasetLabels: function() { + return re.ui.dataset_labels; + }, + setDatasetLabels: function(obj) { + re.ui.dataset_labels = obj; + }, + current_pathway_members: [], + getCurrentPathwayMembers: function() { + return re.ui.current_pathway_members; + }, + setCurrentPathwayMembers: function(obj) { + re.ui.current_pathway_members = obj; + }, + pathway_members_query_counts: {}, + getPathwayMembersQueryCounts: function() { + return re.ui.pathway_members_query_counts; + }, + setPathwayMembersQueryCounts: function(obj, ct) { + re.ui.pathway_members_query_counts[obj] = ct; + }, + pathway_bar_mouseover_behavior: {}, + getPathwayBarBehavior: function() { + return re.ui.pathway_bar_mouseover_behavior; + }, + setPathwayBarBehavior: function(obj) { + re.ui.pathway_bar_mouseover_behavior = obj; + }, + pathway_bar_mouseover_behavior_reset: {}, + getPathwayBarBehaviorReset: function() { + return re.ui.pathway_bar_mouseover_behavior_reset; + }, + setPathwayBarBehaviorReset: function(obj) { + re.ui.pathway_bar_mouseover_behavior_reset = obj; + }, + /* + * Order combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + limit_list: [{ + value: 10, + label: '10' + }, { + value: 20, + label: '20' + }, { + value: 40, + label: '40' + }, { + value: 100, + label: '100' + }, { + value: 200, + label: '200' + }, { + value: 1000, + label: '1000' + }, { + value: 2000, + label: '2000' + }], + /* + * Limit combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + order_list: [] + }, + + /* + Window handles + global handles to the masks and windows used by events + */ + + windows: { + details_window: null, + helpWindowReference: null, + masks: { + details_window_mask: null, + network_mask: null + } + }, + data: { + parsed_data: { + network: null, + unlocated: null, + features: null, + unlocated_features: null, + located_features: null + }, + responses: { + network: null + }, + patients: { + data: null + }, + lookups: { + friendleFeatureNames: [] + } + } +}); + + +(function() { + re.ui.chromosomes.push({ + value: '*', + label: 'All' + }); + for (var i = 1; i <= 22; i++) { + re.ui.chromosomes.push({ + value: i + '', + label: i + '' + }); + } + re.ui.chromosomes.push({ + value: 'X', + label: 'X' + }); + re.ui.chromosomes.push({ + value: 'Y', + label: 'Y' + }); + + /* + Label map + Hash maps feature type id to feature type label + */ + re.label_map = { + '*': 'All', + 'GEXP': 'Gene Expression', + 'METH': 'DNA Methylation', + 'CNVR': 'Somatic Copy Number', + 'CLIN': 'Clinical', + 'MIRN': 'MicroRNA Expression', + 'GNAB': 'Somatic Mutation', + 'SAMP': 'Tumor Sample', + 'PRDM': 'Paradigm Feature', + 'RPPA': 'Protein Level - RPPA' + }; + re.plot.all_source_list = pv.blend([re.plot.locatable_source_list, re.plot.unlocatable_source_list]); + re.plot.all_source_map = pv.numerate(re.plot.all_source_list); + re.plot.locatable_source_map = pv.numerate(re.plot.locatable_source_list); + + re.plot.proximal_distance = 2.5 * re.plot.linear_unit; + + re.plot.colors.features = { + 'GEXP': '#1f77b4', + //blue + 'METH': '#2ca02c', + //green + 'CNVR': '#ff7f0e', + //orange + 'MIRN': '#9467bd', + //purple + 'GNAB': '#d62728', + //red + 'PRDM': '#8c564b', + //pink + 'RPPA': '#e377c2', + //brown + 'CLIN': '#7f7f7f', + 'SAMP': '#bcbd22' + //#17becf + }; + + re.plot.legend.dataRingTypes = ['1. Cytoband','2. Gene Expression','3. Methylation','4. Copy Number','5. Unmapped Associations']; + re.plot.colors.quants = {"Q1":"#000099", "Q2":"#66A3FF","Q3":"#959595","Q4":"#FF8080","Q5":"#800000"}; + re.plot.colors.quantinfo = {"Q1":"<5%", "Q2":"5-25%","Q3":"25-75%","Q4":"75-95%","Q5":">95%"};//,"Q6":"90-95%","Q7":">95%"}; + + re.plot.colors.node_colors = function(source) { + if (source in re.plot.colors.features) { + return pv.color(re.plot.colors.features[source]); + } + return "blue"; + }; + re.model.association.types.forEach(function(obj) { + if ( obj.ui.filter === undefined || obj.ui.filter.component === undefined) { return; } + re.ui.order_list.push({ + value: obj.id, + label: obj.label + }); + }); + + if (re.analysis.directed_association) { + re.ui.feature1 = { + label: 'Target', + id: 'target' + }; + re.ui.feature2 = { + label: 'Predictor', + id: 'predictor' + }; + } else { + re.ui.feature1 = { + label: 'Feature 1', + id: 'feature1' + }; + re.ui.feature2 = { + label: 'Feature 2', + id: 'feature2' + }; + } + + re.build_tooltips(); + +})(); \ No newline at end of file diff --git a/src/instances/gtown/js/globals.js b/src/instances/gtown/js/globals.js new file mode 100755 index 0000000..44b4f4d --- /dev/null +++ b/src/instances/gtown/js/globals.js @@ -0,0 +1,495 @@ +/* + globals.js + + Import this before MVC scripts. + */ +if (re === undefined) { + re = {}; +} + +vq.utils.VisUtils.extend(re, { + + title: 'Regulome Explorer: Georgetown', + google: { + analytics_id: 'UA-20488457-2' + }, + analysis: { + dataset_method_clause: ' where method=\'gtown\'', + directed_association: true, + hidden: false + }, + state: { + once_loaded: false, + query_cancel: false, + network_query: '' + }, + node: { + uri: '/node', + services: { + data: '/data', + lookup:'/lookup/label/entrez' + } + }, + rest: { + query: '/query', + echo: '/echo', + convert: '/convert', + select: '/distributed_select' + }, + params: { + json_out: '&tqx=out:json_array', + query: 'tq=', + network_query: 'q=', + network_json_out: '&wt=json', + network_dataset_select: '&fq=%2Bdataset%3A' + }, + databases: { + base_uri: '', + metadata: { + uri: '/google-dsapi-svc/addama/datasources/csacr' + }, + rf_ace: { + uri: '/google-dsapi-svc/addama/datasources/re' + }, + networks: { + uri: '/data' + }, + medline: { + uri: '/solr/core0', + select: '/select/' + } + }, + tables: { + dataset: '/regulome_explorer_dataset', + label_lookup: '/refgene', + chrom_info: '/chrom_info', + entrez_gene: '/entrez_gene', + current_data: '', + network_uri: '', + feature_uri: '', + features_uri: '', + clin_uri: '', + patient_uri: '', + feature_data_uri: '', + pathway_uri: '', + pathways:'/pathways' + }, + /* + * URL's + * addresses to pathways used by MEDLINE tab + */ + help: { + links: { + user_guide: 'http://wiki.cancerregulome.org', + quick_start: 'http://wiki.cancerregulome.org/bin/view/All+Pairs+Analysis/8.1+Quick+Walk-through+for+One+Feature', + contact_us: 'http://wiki.cancerregulome.org', + analysis_summary: '/help/all_pairs/analysis.html', + bug_report: 'http://code.google.com/p/regulome-explorer/issues/entry', + user_group: 'http://groups.google.com/group/regulome-explorer', + ideogram: '/help/msae/images/ideogram.png' + } + }, + pathways: { + wikipw_url: 'http://www.wikipathways.org/index.php?title=Special%3ASearchPathways&doSearch=1&sa=Search&species=Homo+sapiens&query=', + biocarta_url: 'http://www.biocarta.com/pathfiles/h_', + kegg_url: 'http://www.genome.jp/kegg-bin/search_pathway_text?map=map&mode=1&viewImage=true&keyword=', + pw_commons_url: 'http://www.pathwaycommons.org/pc/webservice.do?version=3.0&snapshot_id=GLOBAL_FILTER_SETTINGS&record_type=PATHWAY&format=html&cmd=get_by_keyword&q=' + }, + + display_options: { + circvis: { + rings: { + karyotype: { + hidden: false, + radius: 28 + }, + cnvr: { + hidden: true, + radius: 40 + }, + pairwise_scores: { + value_field: re.model.association.types[0].query.id, + hidden: false, + + manual_y_color_scale:false, + min_y_color:'#0000FF', + max_y_color:'#FF0000', + manual_y_values: false, + min_y_value:0, + max_y_value:1 + } + }, + quantiled_data: { + GEXP: false, + CNVR: false, + METH: false + }, + tooltips: { + feature: { + Feature: function(node) { + var pos = node.label.indexOf('_'); + var label = (pos > 0 ? node.label.slice(0, pos) : node.label); + label = (label == 'GisticArm' ? "Arm " + node.label.split('_')[1] : label); + return label; + }, + Source: function(node) { + return re.label_map[node.source]; + }, + 'Location': function(node) { + return 'Chr' + node.chr + ' ' + node.start + (node.end == '' ? '' : '-' + node.end) + ' '; + }, + Annotations: parseAnnotationList + }, + unlocated_feature : {}, + karyotype_feature: {}, + edge: {}, + link_objects: [ + { + label: 'Pubcrawl', + url: 'http://explorer.cancerregulome.org/pubcrawl/', + uri: '?term=fbxw7&dataset=gbm_1031', + config_object: function(feature) { + return 'http://explorer.cancerregulome.org/pubcrawl/?term='+feature.label+'&dataset=' + re.tables.current_data; + } + }, //pubcrawl + { + label: 'UCSC Genome Browser', + url: 'http://genome.ucsc.edu/cgi-bin/hgTracks', + uri: '?db=hg18&position=chr', + config_object: function(feature) { + return 'http://genome.ucsc.edu/cgi-bin/hgTracks?db=hg18&position=chr' + feature.chr + ':' + feature.start + (feature.end == '' ? '' : '-' + feature.end); + } + }, //ucsc_genome_browser + { + label: 'Ensemble', + url: 'http://uswest.ensembl.org/Homo_sapiens/Location/View', + uri: '?r=', + config_object: function(feature) { + return 'http://uswest.ensembl.org/Homo_sapiens/Location/View?r=' + feature.chr + ':' + feature.start + (feature.end == '' ? '' : '-' + feature.end); + } + }, //ensemble + { + label: 'Cosmic', + url: 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic', + uri: '?action=bygene&ln=', + config_object: function(feature) { + return ['CNVR', 'MIRN','METH'].indexOf(feature.source) < 0 ? 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic?action=bygene&ln=' + feature.label : null; + } + }, { + label: 'NCBI', + url: 'http://www.ncbi.nlm.nih.gov/gene/', + uri: '', + selector : Ext.DomQuery.compile('a[href*=zzzZZZzzz]'), + config_object: function(feature) { + return 'http://www.ncbi.nlm.nih.gov/gene?term='+feature.label; + } + }, { + label: 'miRBase', + url: 'http://mirbase.org/cgi-bin/query.pl', + uri: '?terms=', + config_object: function(feature) { + return feature.source == 'MIRN' ? 'http://www.mirbase.org/cgi-bin/query.pl?terms=' + feature.label : null; + } + } + ], + //link_objects + edge_links: new Object(null), + feature_links : new Object(null) + }, + ticks: { + tick_overlap_distance: null, + tile_ticks_manually: false, + wedge_width: 1, + wedge_width_manually: false, + wedge_height: 1, + wedge_height_manually: false + }, + network: { + tile_nodes: false, + node_overlap_distance: null + }, + width: 800, + height: 800, + ring_radius: 55, + rotation: 0, + chrom_keys: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "X", "Y"] + }, + cytoscape: { + frame_ready: false, + ready: false, + layout: 'force_directed' + } + }, + circvis_obj: {}, + cytoscape: { + obj: {}, + data: [], + swfPath: "http://cdn.cancerregulome.org/js/cytoscape_web/1.0/swf/CytoscapeWeb", + flashInstallerPath: "http://cdn.cancerregulome.org/js/cytoscape_web/1.0/swf/playerProductInstall" + }, + plot: { + locatable_source_list: ['GEXP', 'CNVR', 'MIRN' ], + unlocatable_source_list: ['CLIN', 'METB_Serum', 'METB_Urine'], + link_sources_array: [], + + colors: { + link_type_colors: pv.colors("#c2c4ff", "#e7cb94", "#cedb9c", "#e7969c", "#e1daf9", "#b8e2ef"), + link_sources_colors: {}, + source_color_scale: pv.Colors.category10(), + stroke_style_attribute: 'white', + getStrokeStyleAttribute: function() { + return re.plot.colors.stroke_style_attribute; + }, + setStrokeStyleAttribute: function(attr) { + re.plot.colors.stroke_style_attribute = attr; + }, + + categorical_values: { + 'NA' :'#444444', + '0': '#1f77b4', //blue + '1': '#ff7f0e', //orange + }, + category_colors : [ + '#2ca02c', + '#9467bd', + '#d62728', + '#8c564b', + '#e377c2', + '#7f7f7f', + '#bcbd22', + "#c2c4ff", + "#e7cb94", + "#cedb9c", + "#e7969c", + "#e1daf9", + "#b8e2ef" + ] + }, + inter_scale: pv.Scale.linear(0.00005, 0.0004).range('lightpink', 'red'), + linear_unit: 100000, + chrome_length: [], + legend: {}, + scatterplot_data: null, + default_colorby_feature_alias: '', + category_equivalents :{ + 'NEG': '0' , + 'NEGATIVE' : '0', + 'TUMOR_FREE' : '0', + 'NO': '0', + 'POS': '1', + 'POSITIVE' : '1', + 'WITH_TUMOR' : '1', + 'YES': '1' + } + }, + ui: { + filters: { + single_feature: true, + link_distance: true + }, + chromosomes: [], + dataset_labels: [], + categorical_sources_map : {}, + + // Removes heading and trailing whitespaces from a string + getDatasetLabels: function() { + return re.ui.dataset_labels; + }, + setDatasetLabels: function(obj) { + re.ui.dataset_labels = obj; + }, + current_pathway_members: [], + getCurrentPathwayMembers: function() { + return re.ui.current_pathway_members; + }, + setCurrentPathwayMembers: function(obj) { + re.ui.current_pathway_members = obj; + }, + pathway_members_query_counts: {}, + getPathwayMembersQueryCounts: function() { + return re.ui.pathway_members_query_counts; + }, + setPathwayMembersQueryCounts: function(obj, ct) { + re.ui.pathway_members_query_counts[obj] = ct; + }, + pathway_bar_mouseover_behavior: {}, + getPathwayBarBehavior: function() { + return re.ui.pathway_bar_mouseover_behavior; + }, + setPathwayBarBehavior: function(obj) { + re.ui.pathway_bar_mouseover_behavior = obj; + }, + pathway_bar_mouseover_behavior_reset: {}, + getPathwayBarBehaviorReset: function() { + return re.ui.pathway_bar_mouseover_behavior_reset; + }, + setPathwayBarBehaviorReset: function(obj) { + re.ui.pathway_bar_mouseover_behavior_reset = obj; + }, + /* + * Order combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + limit_list: [{ + value: 10, + label: '10' + }, { + value: 20, + label: '20' + }, { + value: 40, + label: '40' + }, { + value: 100, + label: '100' + }, { + value: 200, + label: '200' + }, { + value: 1000, + label: '1000' + }, { + value: 2000, + label: '2000' + }], + /* + * Limit combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + order_list: [] + }, + + /* + Window handles + global handles to the masks and windows used by events + */ + + windows: { + details_window: null, + helpWindowReference: null, + masks: { + details_window_mask: null, + network_mask: null + } + }, + data: { + parsed_data: { + network: null, + unlocated: null, + features: null, + unlocated_features: null, + located_features: null + }, + responses: { + network: null + }, + patients: { + data: null + } + } +}); + + +(function() { + re.ui.chromosomes.push({ + value: '*', + label: 'All' + }); + for (var i = 1; i <= 22; i++) { + re.ui.chromosomes.push({ + value: i + '', + label: i + '' + }); + } + re.ui.chromosomes.push({ + value: 'X', + label: 'X' + }); + re.ui.chromosomes.push({ + value: 'Y', + label: 'Y' + }); + + /* + Label map + Hash maps feature type id to feature type label + */ + re.label_map = { + '*': 'All', + 'GEXP': 'Gene Expression', + 'CNVR': 'Somatic Copy Number', + 'CLIN': 'Clinical', + 'MIRN': 'MicroRNA Expression', + 'METB_Urine': 'Metabolic - Urine', + 'METB_Serum': 'Metabolic - Serum' + }; + re.plot.all_source_list = pv.blend([re.plot.locatable_source_list, re.plot.unlocatable_source_list]); + re.plot.all_source_map = pv.numerate(re.plot.all_source_list); + re.plot.locatable_source_map = pv.numerate(re.plot.locatable_source_list); + + re.plot.proximal_distance = 2.5 * re.plot.linear_unit; + + re.plot.colors.features = { + 'GEXP': '#1f77b4', + //blue + 'METH': '#2ca02c', + //green + 'CNVR': '#ff7f0e', + //orange + 'MIRN': '#9467bd', + //purple + 'METB_Urine': '#d62728', + //red + 'METB_Serum': '#8c564b', + //pink + 'RPPA': '#e377c2', + //brown + 'CLIN': '#7f7f7f', + 'SAMP': '#bcbd22' + //#17becf + }; + + re.plot.legend.dataRingTypes = ['1. Cytoband','2. Gene Expression','3. Methylation','4. Copy Number','5. Unmapped Associations']; + re.plot.colors.quants = {"Q1":"#000099", "Q2":"#66A3FF","Q3":"#959595","Q4":"#FF8080","Q5":"#800000"}; + re.plot.colors.quantinfo = {"Q1":"<5%", "Q2":"5-25%","Q3":"25-75%","Q4":"75-95%","Q5":">95%"};//,"Q6":"90-95%","Q7":">95%"}; + + re.plot.colors.node_colors = function(source) { + if (source in re.plot.colors.features) { + return pv.color(re.plot.colors.features[source]); + } + return "blue"; + }; + re.model.association.types.forEach(function(obj) { + re.ui.order_list.push({ + value: obj.id, + label: obj.label + }); + }); + + if (re.analysis.directed_association) { + re.ui.feature1 = { + label: 'Target', + id: 'target' + }; + re.ui.feature2 = { + label: 'Predictor', + id: 'predictor' + }; + } else { + re.ui.feature1 = { + label: 'Feature 1', + id: 'feature1' + }; + re.ui.feature2 = { + label: 'Feature 2', + id: 'feature2' + }; + } + + re.build_tooltips(); + +})(); \ No newline at end of file diff --git a/src/instances/random_forest/appspot.html b/src/instances/random_forest/appspot.html new file mode 100644 index 0000000..8dff732 --- /dev/null +++ b/src/instances/random_forest/appspot.html @@ -0,0 +1,99 @@ + + + + + Random Forest Associations Explorer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

+ + diff --git a/src/instances/random_forest/appspot/globals.js b/src/instances/random_forest/appspot/globals.js new file mode 100644 index 0000000..04437b3 --- /dev/null +++ b/src/instances/random_forest/appspot/globals.js @@ -0,0 +1,421 @@ +/* + globals.js + + Import this before MVC scripts. + */ +if (re === undefined) { + re = {}; +} + +vq.utils.VisUtils.extend(re, { + + title: 'Random Forest Associations Explorer', + google: { + analytics_id: 'UA-20488457-2' + }, + analysis: { + dataset_method_clause: ' where method=\'RF-ACE\'', + directed_association: true + }, + state: { + once_loaded: false, + query_cancel: false, + network_query: '' + }, + node: { + uri: '/addama/proxies/node', + services: { + data: '/data', + lookup:'/lookup/label/entrez' + } + }, + rest: { + query: '/query', + echo: '/echo', + convert: '/convert' + }, + params: { + json_out: '&tqx=out:json_array', + query: 'tq=' + }, + databases: { + base_uri: '', + metadata: { + uri: '/addama/datasources/csacr' + }, + rf_ace: { + uri: '/addama/datasources/tcga' + }, + solr: { + uri: '/addama/indexes/solr', + select: '/select/' + } + }, + tables: { + dataset: '/regulome_explorer_dataset', + label_lookup: '/refgene', + chrom_info: '/chrom_info', + entrez_gene: '/entrez_gene', + current_data: '', + network_uri: '', + feature_uri: '', + clin_uri: '', + patient_uri: '', + feature_data_uri: '', + pathway_uri: '' + }, + /* + * URL's + * addresses to pathways used by MEDLINE tab + */ + help: { + links: { + user_guide: '/help/crc_agg/user_guide.html', + quick_start: '/help/crc_agg/quick_start.html', + contact_us: '/help/crc_agg/contact_us.html', + analysis_summary: '/help/crc_agg/analysis/analysis_summary.html', + bug_report: 'http://code.google.com/p/regulome-explorer/issues/entry', + user_group: 'http://groups.google.com/group/regulome-explorer' + } + }, + pathways: { + wikipw_url: 'http://www.wikipathways.org/index.php?title=Special%3ASearchPathways&doSearch=1&sa=Search&species=Homo+sapiens&query=', + biocarta_url: 'http://www.biocarta.com/pathfiles/h_', + kegg_url: 'http://www.genome.jp/kegg-bin/search_pathway_text?map=map&mode=1&viewImage=true&keyword=', + pw_commons_url: 'http://www.pathwaycommons.org/pc/webservice.do?version=3.0&snapshot_id=GLOBAL_FILTER_SETTINGS&record_type=PATHWAY&format=html&cmd=get_by_keyword&q=' + }, + + display_options: { + circvis: { + rings: { + karyotype: { + hidden: false + }, + cnvr: { + hidden: false + }, + pairwise_scores: { + value_field: re.model.association.types[0].query.id, + hidden: false, + + manual_y_color_scale:false, + min_y_color:'#0000FF', + max_y_color:'#FF0000', + manual_y_values: false, + min_y_value:0, + max_y_value:1 + } + }, + tooltips: { + feature: { + Feature: function(node) { + var pos = node.label.indexOf('_'); + var label = (pos > 0 ? node.label.slice(0, pos) : node.label); + label = (label == 'GisticArm' ? "Arm " + node.label.split('_')[1] : label); + return label; + }, + Source: function(node) { + return re.label_map[node.source] + }, + 'Location': function(node) { + return 'Chr' + node.chr + ' ' + node.start + (node.end == '' ? '' : '-' + node.end) + ' '; + }, + Annotations: parseAnnotationList + }, + unlocated_feature : {}, + karyotype_feature: {}, + edge: {}, + link_objects: [{ + label: 'UCSC Genome Browser', + url: 'http://genome.ucsc.edu/cgi-bin/hgTracks', + uri: '?db=hg18&position=chr', + config_object: function(feature) { + return 'http://genome.ucsc.edu/cgi-bin/hgTracks?db=hg18&position=chr' + feature.chr + ':' + feature.start + (feature.end == '' ? '' : '-' + feature.end); + } + }, //ucsc_genome_browser + { + label: 'Ensemble', + url: 'http://uswest.ensembl.org/Homo_sapiens/Location/View', + uri: '?r=', + config_object: function(feature) { + return 'http://uswest.ensembl.org/Homo_sapiens/Location/View?r=' + feature.chr + ':' + feature.start + (feature.end == '' ? '' : '-' + feature.end); + } + }, //ensemble + { + label: 'Cosmic', + url: 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic', + uri: '?action=bygene&ln=', + config_object: function(feature) { + return ['CNVR', 'MIRN','METH'].indexOf(feature.source) < 0 ? 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic?action=bygene&ln=' + feature.label : null; + } + }, { + label: 'NCBI', + url: 'http://www.ncbi.nlm.nih.gov/gene/', + uri: '', + selector : Ext.DomQuery.compile('a[href*=zzzZZZzzz]'), + config_object: function(feature) { + if (['CNVR', 'MIRN','METH'].indexOf(feature.source) >= 0) return null; + Ext.Ajax.request({url:re.node.uri + re.node.services.lookup+'/'+feature.label,success:entrezHandler, failure: lookupFailed}); + + function lookupFailed() { + var node = re.display_options.circvis.tooltips.link_objects[3].selector('')[0]; + node.setAttribute('href','http://www.ncbi.nlm.nih.gov/gene?term='+feature.label); + } + + function entrezHandler(response) { + var gene,entrez; + var node = re.display_options.circvis.tooltips.link_objects[3].selector('')[0]; + try { + gene = Ext.decode(response.responseText); + entrez = gene[Object.keys(gene)[0]]; + node.setAttribute('href',node.getAttribute('href').replace('zzzZZZzzz',entrez)); + } catch (err) { + lookupFailed(); + } + } + return 'http://www.ncbi.nlm.nih.gov/gene/' + 'zzzZZZzzz'; + } + }, { + label: 'miRBase', + url: 'http://mirbase.org/cgi-bin/query.pl', + uri: '?terms=', + config_object: function(feature) { + return feature.source == 'MIRN' ? 'http://www.mirbase.org/cgi-bin/query.pl?terms=' + feature.label : null; + } + } + ], + //link_objects + edge_links: {}, + feature_links : {} + }, + ticks: { + tick_overlap_distance: null, + tile_ticks_manually: false, + wedge_width: 1, + wedge_width_manually: false, + wedge_height: 1, + wedge_height_manually: false + }, + network: { + tile_nodes: false, + node_overlap_distance: null + }, + width: 800, + height: 800, + ring_radius: 55, + rotation: 0, + chrom_keys: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "X", "Y"] + }, + cytoscape: { + frame_ready: false, + ready: false, + layout: 'force_directed' + } + }, + circvis_obj: {}, + cytoscape: { + obj: {}, + data: [], + swfPath: "/addama/apps/CDN/js/cytoscape_web/1.0/swf/CytoscapeWeb", + flashInstallerPath: "/addama/apps/CDN/js/cytoscape_web/1.0/swf/playerProductInstall" + }, + plot: { + locatable_source_list: ['GEXP', 'METH', 'CNVR', 'MIRN', 'GNAB', 'RPPA'], + unlocatable_source_list: ['CLIN', 'SAMP', 'PRDM'], + link_sources_array: [], + + colors: { + link_type_colors: pv.colors("#c2c4ff", "#e7cb94", "#cedb9c", "#e7969c", "#e1daf9", "#b8e2ef"), + link_sources_colors: {}, + source_color_scale: pv.Colors.category10(), + stroke_style_attribute: 'white', + getStrokeStyleAttribute: function() { + return re.plot.colors.stroke_style_attribute; + }, + setStrokeStyleAttribute: function(attr) { + re.plot.colors.stroke_style_attribute = attr; + } + }, + inter_scale: pv.Scale.linear(0.00005, 0.0004).range('lightpink', 'red'), + linear_unit: 100000, + chrome_length: [], + + scatterplot_data: null + }, + ui: { + filters: { + single_feature: true + }, + chromosomes: [], + dataset_labels: [], + getDatasetLabels: function() { + return re.ui.dataset_labels; + }, + setDatasetLabels: function(obj) { + re.ui.dataset_labels = obj; + }, + /* + * Order combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + limit_list: [{ + value: 10, + label: '10' + }, { + value: 20, + label: '20' + }, { + value: 40, + label: '40' + }, { + value: 100, + label: '100' + }, { + value: 200, + label: '200' + }, { + value: 1000, + label: '1000' + }, { + value: 2000, + label: '2000' + }], + /* + * Limit combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + order_list: [] + }, + +/* + Window handles + global handles to the masks and windows used by events + */ + + windows: { + details_window: null, + helpWindowReference: null, + masks: { + details_window_mask: null, + network_mask: null + } + }, + data: { + parsed_data: { + network: null, + unlocated: null, + features: null, + unlocated_features: null, + located_features: null + }, + responses: { + network: null + }, + patients: { + data: null + } + } +}); + + +(function() { + re.ui.chromosomes.push({ + value: '*', + label: 'All' + }); + for (var i = 1; i <= 22; i++) { + re.ui.chromosomes.push({ + value: i + '', + label: i + '' + }); + } + re.ui.chromosomes.push({ + value: 'X', + label: 'X' + }); + re.ui.chromosomes.push({ + value: 'Y', + label: 'Y' + }); + + /* + Label map + Hash maps feature type id to feature type label + */ + re.label_map = { + '*': 'All', + 'GEXP': 'Gene Expression', + 'METH': 'DNA Methylation ', + 'CNVR': 'Somatic Copy Number', + 'CLIN': 'Clinical', + 'MIRN': 'MicroRNA Expression', + 'GNAB': 'Somatic Mutation', + 'SAMP': 'Tumor Sample', + 'PRDM': 'Paradigm Feature', + 'RPPA': 'Protein Level - RPPA' + }; + re.plot.all_source_list = pv.blend([re.plot.locatable_source_list, re.plot.unlocatable_source_list]); + re.plot.all_source_map = pv.numerate(re.plot.all_source_list); + re.plot.locatable_source_map = pv.numerate(re.plot.locatable_source_list); + + re.plot.proximal_distance = 2.5 * re.plot.linear_unit; + + re.plot.colors.features = { + 'GEXP': '#1f77b4', + //blue + 'METH': '#2ca02c', + //green + 'CNVR': '#ff7f0e', + //orange + 'MIRN': '#9467bd', + //purple + 'GNAB': '#d62728', + //red + 'PRDM': '#8c564b', + //pink + 'RPPA': '#e377c2', + //brown + 'CLIN': '#7f7f7f', + 'SAMP': '#bcbd22' + //#17becf + }; + + re.plot.colors.node_colors = function(source) { + if (source in re.plot.colors.features) { + return pv.color(re.plot.colors.features[source]); + } + return "blue"; + }; + re.model.association.types.forEach(function(obj) { + re.ui.order_list.push({ + value: obj.id, + label: obj.label + }); + }); + + if (re.analysis.directed_association) { + re.ui.feature1 = { + label: 'Target', + id: 'target' + }; + re.ui.feature2 = { + label: 'Predictor', + id: 'predictor' + }; + } else { + re.ui.feature1 = { + label: 'Feature 1', + id: 'feature1' + }; + re.ui.feature2 = { + label: 'Feature 2', + id: 'feature2' + }; + } + re.build_tooltips(); + +})(); \ No newline at end of file diff --git a/src/instances/random_forest/appspot/globals.js.orig b/src/instances/random_forest/appspot/globals.js.orig new file mode 100644 index 0000000..668f032 --- /dev/null +++ b/src/instances/random_forest/appspot/globals.js.orig @@ -0,0 +1,431 @@ +/* + globals.js + + Import this before MVC scripts. + */ +if (re === undefined) { + re = {}; +} + +vq.utils.VisUtils.extend(re, { + + title: 'Random Forest Associations Explorer', + google: { + analytics_id: 'UA-20488457-2' + }, + analysis: { + dataset_method_clause: ' where method=\'RF-ACE\'', + directed_association: true + }, + state: { + once_loaded: false, + query_cancel: false, + network_query: '' + }, + node: { + uri: '/node', + services: { + data: '/data', + lookup:'/lookup/label/entrez' + } + }, + rest: { + query: '/query', + echo: '/echo', + convert: '/convert' + }, + params: { + json_out: '&tqx=out:json_array', + query: 'tq=' + }, + databases: { + base_uri: '', + metadata: { + uri: '/addama/datasources/csacr' + }, + rf_ace: { + uri: '/addama/datasources/tcga' + }, + solr: { + uri: '/addama/indexes/solr', + select: '/select/' + } + }, + tables: { + dataset: '/regulome_explorer_dataset', + label_lookup: '/refgene', + chrom_info: '/chrom_info', + entrez_gene: '/entrez_gene', + current_data: '', + network_uri: '', + feature_uri: '', + clin_uri: '', + patient_uri: '', + feature_data_uri: '', + pathway_uri: '' + }, + /* + * URL's + * addresses to pathways used by MEDLINE tab + */ + help: { + links: { + user_guide: '/help/crc_agg/user_guide.html', + quick_start: '/help/crc_agg/quick_start.html', + contact_us: '/help/crc_agg/contact_us.html', + analysis_summary: '/help/crc_agg/analysis/analysis_summary.html', + bug_report: 'http://code.google.com/p/regulome-explorer/issues/entry', + user_group: 'http://groups.google.com/group/regulome-explorer' + } + }, + pathways: { + wikipw_url: 'http://www.wikipathways.org/index.php?title=Special%3ASearchPathways&doSearch=1&sa=Search&species=Homo+sapiens&query=', + biocarta_url: 'http://www.biocarta.com/pathfiles/h_', + kegg_url: 'http://www.genome.jp/kegg-bin/search_pathway_text?map=map&mode=1&viewImage=true&keyword=', + pw_commons_url: 'http://www.pathwaycommons.org/pc/webservice.do?version=3.0&snapshot_id=GLOBAL_FILTER_SETTINGS&record_type=PATHWAY&format=html&cmd=get_by_keyword&q=' + }, + + display_options: { + circvis: { + rings: { + karyotype: { + hidden: false + }, + cnvr: { + hidden: false + }, + pairwise_scores: { + value_field: re.model.association.types[0].query.id, + hidden: false, + + manual_y_color_scale:false, + min_y_color:'#0000FF', + max_y_color:'#FF0000', + manual_y_values: false, + min_y_value:0, + max_y_value:1 + } + }, + tooltips: { + feature: { + Feature: function(node) { + var pos = node.label.indexOf('_'); + var label = (pos > 0 ? node.label.slice(0, pos) : node.label); + label = (label == 'GisticArm' ? "Arm " + node.label.split('_')[1] : label); + return label; + }, + Source: function(node) { + return re.label_map[node.source] + }, + 'Location': function(node) { + return 'Chr' + node.chr + ' ' + node.start + (node.end == '' ? '' : '-' + node.end) + ' '; + }, + Annotations: parseAnnotationList + }, + edge: function(edge) {}, + link_objects: [{ + label: 'UCSC Genome Browser', + url: 'http://genome.ucsc.edu/cgi-bin/hgTracks', + uri: '?db=hg18&position=chr', + config_object: function(feature) { + return 'http://genome.ucsc.edu/cgi-bin/hgTracks?db=hg18&position=chr' + feature.chr + ':' + feature.start + (feature.end == '' ? '' : '-' + feature.end); + } + }, //ucsc_genome_browser + { + label: 'Ensemble', + url: 'http://uswest.ensembl.org/Homo_sapiens/Location/View', + uri: '?r=', + config_object: function(feature) { + return 'http://uswest.ensembl.org/Homo_sapiens/Location/View?r=' + feature.chr + ':' + feature.start + (feature.end == '' ? '' : '-' + feature.end); + } + }, //ensemble + { + label: 'Cosmic', + url: 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic', + uri: '?action=bygene&ln=', + config_object: function(feature) { + return ['CNVR', 'MIRN','METH'].indexOf(feature.source) < 0 ? 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic?action=bygene&ln=' + feature.label : null; + } + }, { + label: 'NCBI', + url: 'http://www.ncbi.nlm.nih.gov/gene/', + uri: '', + selector : Ext.DomQuery.compile('a[href*=zzzZZZzzz]'), + config_object: function(feature) { + if (['CNVR', 'MIRN','METH'].indexOf(feature.source) >= 0) return null; + Ext.Ajax.request({url:re.node.uri + re.node.services.lookup+'/'+feature.label,success:entrezHandler, failure: lookupFailed}); + + function lookupFailed() { + var node = re.display_options.circvis.tooltips.link_objects[3].selector('')[0]; + node.setAttribute('href','http://www.ncbi.nlm.nih.gov/gene?term='+feature.label); + } + + function entrezHandler(response) { + var gene,entrez; + var node = re.display_options.circvis.tooltips.link_objects[3].selector('')[0]; + try { + gene = Ext.decode(response.responseText); + entrez = gene[Object.keys(gene)[0]]; + node.setAttribute('href',node.getAttribute('href').replace('zzzZZZzzz',entrez)); + } catch (err) { + lookupFailed(); + } + } + return 'http://www.ncbi.nlm.nih.gov/gene/' + 'zzzZZZzzz'; + } + // },{ + // label: 'OMIM', + // url: 'http://omim.org/search/', + // uri: '?index=entry&start=1&limit=10&search=', + // config_object: function(feature) { + // return ['CNVR', 'MIRN'].indexOf(feature.source) < 0 ? 'http://omim.org/search?index=entry&start=1&limit=10&search=' + feature.label : null; + // } + }, { + label: 'miRBase', + url: 'http://mirbase.org/cgi-bin/query.pl', + uri: '?terms=', + config_object: function(feature) { + return feature.source == 'MIRN' ? 'http://www.mirbase.org/cgi-bin/query.pl?terms=' + feature.label : null; + } + } + ], + //link_objects + links: {} + }, + ticks: { + tick_overlap_distance: null, + tile_ticks_manually: false, + wedge_width: 1, + wedge_width_manually: false, + wedge_height: 1, + wedge_height_manually: false + }, + network: { + tile_nodes: false, + node_overlap_distance: null + }, + width: 800, + height: 800, + ring_radius: 55, + rotation: 0, + chrom_keys: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "X", "Y"] + }, + cytoscape: { + frame_ready: false, + ready: false, + layout: 'force_directed' + } + }, + circvis_obj: {}, + cytoscape: { + obj: {}, + data: [], + swfPath: "http://cdn.cancerregulome.org/js/cytoscape_web/1.0/swf/CytoscapeWeb", + flashInstallerPath: "http://cdn.cancerregulome.org/js/cytoscape_web/1.0/swf/playerProductInstall" + }, + plot: { + locatable_source_list: ['GEXP', 'METH', 'CNVR', 'MIRN', 'GNAB', 'RPPA'], + unlocatable_source_list: ['CLIN', 'SAMP', 'PRDM'], + link_sources_array: [], + + colors: { + link_type_colors: pv.colors("#c2c4ff", "#e7cb94", "#cedb9c", "#e7969c", "#e1daf9", "#b8e2ef"), + link_sources_colors: {}, + source_color_scale: pv.Colors.category10(), + stroke_style_attribute: 'white', + getStrokeStyleAttribute: function() { + return re.plot.colors.stroke_style_attribute; + }, + setStrokeStyleAttribute: function(attr) { + re.plot.colors.stroke_style_attribute = attr; + } + }, + inter_scale: pv.Scale.linear(0.00005, 0.0004).range('lightpink', 'red'), + linear_unit: 100000, + chrome_length: [], + + scatterplot_data: null + }, + ui: { + filters: { + single_feature: true + }, + chromosomes: [], + dataset_labels: [], + getDatasetLabels: function() { + return re.ui.dataset_labels; + }, + setDatasetLabels: function(obj) { + re.ui.dataset_labels = obj; + }, + /* + * Order combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + limit_list: [{ + value: 10, + label: '10' + }, { + value: 20, + label: '20' + }, { + value: 40, + label: '40' + }, { + value: 100, + label: '100' + }, { + value: 200, + label: '200' + }, { + value: 1000, + label: '1000' + }, { + value: 2000, + label: '2000' + }], + /* + * Limit combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + order_list: [] + }, + +/* + Window handles + global handles to the masks and windows used by events + */ + + windows: { + details_window: null, + helpWindowReference: null, + masks: { + details_window_mask: null, + network_mask: null + } + }, + data: { + parsed_data: { + network: null, + unlocated: null, + features: null, + unlocated_features: null, + located_features: null + }, + responses: { + network: null + }, + patients: { + data: null + } + } +}); + + +(function() { + re.ui.chromosomes.push({ + value: '*', + label: 'All' + }); + for (var i = 1; i <= 22; i++) { + re.ui.chromosomes.push({ + value: i + '', + label: i + '' + }); + } + re.ui.chromosomes.push({ + value: 'X', + label: 'X' + }); + re.ui.chromosomes.push({ + value: 'Y', + label: 'Y' + }); + +/* + Label map + Hash maps feature type id to feature type label + */ + re.label_map = { + '*': 'All', + 'GEXP': 'Gene Expression', + 'METH': 'Methylation', + 'CNVR': 'Copy # Var Region', + 'CLIN': 'Clinical', + 'MIRN': 'microRNA', + 'GNAB': 'Gene Aberration', + 'SAMP': 'Tumor Sample', + 'PRDM': 'Paradigm Feature', + 'RPPA': 'RPPA' + }; + re.plot.all_source_list = pv.blend([re.plot.locatable_source_list, re.plot.unlocatable_source_list]); + re.plot.all_source_map = pv.numerate(re.plot.all_source_list); + re.plot.locatable_source_map = pv.numerate(re.plot.locatable_source_list); + + re.plot.proximal_distance = 2.5 * re.plot.linear_unit; + + re.plot.colors.features = { + 'GEXP': '#1f77b4', + //blue + 'METH': '#2ca02c', + //green + 'CNVR': '#ff7f0e', + //orange + 'MIRN': '#9467bd', + //purple + 'GNAB': '#d62728', + //red + 'PRDM': '#8c564b', + //pink + 'RPPA': '#e377c2', + //brown + 'CLIN': '#7f7f7f', + 'SAMP': '#bcbd22' + //#17becf + }; + + re.plot.colors.node_colors = function(source) { + if (source in re.plot.colors.features) { + return pv.color(re.plot.colors.features[source]); + } + return "blue"; + }; + re.model.association.types.forEach(function(obj) { + re.ui.order_list.push({ + value: obj.id, + label: obj.label + }); + }); + + if (re.analysis.directed_association) { + re.ui.feature1 = { + label: 'Target', + id: 'target' + }; + re.ui.feature2 = { + label: 'Predictor', + id: 'predictor' + }; + } else { + re.ui.feature1 = { + label: 'Feature 1', + id: 'feature1' + }; + re.ui.feature2 = { + label: 'Feature 2', + id: 'feature2' + }; + } + re.display_options.circvis.tooltips.link_objects.forEach(function(link) { + re.display_options.circvis.tooltips.links[link.label] = link.config_object; + }); + + re.model.association.types.forEach(function(assoc) { + vq.utils.VisUtils.extend(re.display_options.circvis.tooltips.feature, assoc.vis.tooltip.entry); + }); + +})(); \ No newline at end of file diff --git a/src/instances/random_forest/appspot/topbar.css b/src/instances/random_forest/appspot/topbar.css new file mode 100644 index 0000000..42616b7 --- /dev/null +++ b/src/instances/random_forest/appspot/topbar.css @@ -0,0 +1,65 @@ +.floating_topbar { + border-radius: 6px; + background: #F6F6F6; + border: 2px solid #ccc; + height: 50px; + width: 25px; + float: right; + z-index: 1000; + box-shadow: 5px 5px 5px #ccc; +} + +.floating_topbar img { + width: 50px; + position: absolute; + top: -10px; + right: 10px; + z-index: 1000; +} + +.floating_topbar div { + width: 750px; + padding: 5px 30px 5px 5px; + z-index: 999; + top: 3px; + float: inherit; + border-radius: 8px 0 0 8px; +} + +/*MESSAGE STYLES*/ +.msg { + font-size:14px; + border-radius: 8px; + background: #F6F6F6; + border: 2px solid #ccc; + margin-top: 2px; + padding: 10px 15px; + color: #555; +} + +.msg-error { + font-size:14px; + border-radius: 8px; + background: #FFB2B2; + border: 2px solid #ccc; + margin-top: 2px; + padding: 10px 15px; + color: #555; +} + +.msg-container { + position:absolute; + left:35%; + top:10px; + width:300px; + z-index:20000; +} + +.msg-container h3 { + margin: 0 0 8px; + font-weight: bold; + font-size: 15px; +} +.msg-container p { + margin: 0; +} \ No newline at end of file diff --git a/src/instances/random_forest/index.html b/src/instances/random_forest/index.html new file mode 100755 index 0000000..8033f28 --- /dev/null +++ b/src/instances/random_forest/index.html @@ -0,0 +1,110 @@ + + + + + Regulome Explorer: Random Forest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/src/instances/random_forest/index_debug.html b/src/instances/random_forest/index_debug.html new file mode 100644 index 0000000..b5c26c4 --- /dev/null +++ b/src/instances/random_forest/index_debug.html @@ -0,0 +1,107 @@ + + + + + Random Forest Associations Explorer + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/src/instances/random_forest/index_local.html b/src/instances/random_forest/index_local.html new file mode 100644 index 0000000..588ad9b --- /dev/null +++ b/src/instances/random_forest/index_local.html @@ -0,0 +1,110 @@ + + + + + Regulome Explorer: Random Forest + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + diff --git a/src/instances/random_forest/js/association.js b/src/instances/random_forest/js/association.js new file mode 100644 index 0000000..2d53181 --- /dev/null +++ b/src/instances/random_forest/js/association.js @@ -0,0 +1,102 @@ +if (re.model === undefined) re.model = {}; + +re.model.association = { + types : [ + { id : 'logged_pvalue', + label : '-log10(p)', + ui : { + filter : { + component: { + xtype : 'numberfield', + id:'logged_pvalue', + name :'logged_pvalue', + allowNegative: true, + decimalPrecision : 0, + emptyText : 'Input value...', + invalidText:'This value is not valid.', + maxValue:300, + minValue:0.0, + tabIndex : 1, + validateOnBlur : true, + fieldLabel : '-log10(p) >=', + defaultValue: 6, + value : 6 + } + }, + grid : { + column : { header : "-log10(p)", width : 50 , id: 'logged_pvalue' , dataIndex : 'logged_pvalue', hidden: false}, + store_index : 'logged_pvalue' + } + }, + query : { + id : 'logged_pvalue', + clause : 'logged_pvalue >= ', + order_direction : 'DESC' + }, + vis : { + network : { + edgeSchema : {name: "logged_pvalue", type: "number" } + }, + tooltip : { + entry : { '-log10(p)' : 'logged_pvalue' } + }, + scatterplot: { + values: { + min:0, + floor : 0, + ceil: 300 + }, + color_scale : pv.Scale.linear(0,50).range('blue','red') + } + } + }, + { id : 'correlation', + label : 'Correlation', + ui : { + filter : { + component: new re.multirangeField( + { id:'correlation', + label: 'Correlation', + decimalPrecision : 3, + emptyText : 'Input value...', + invalidText:'This value is not valid.', + validateOnBlur : true, + default_value: 0, + min_value: -1, + max_value: 1, + defaultValue: 0, + value : 0 + } + ) + }, + grid : { + column : { header: "Correlation", width:50, id:'correlation',dataIndex:'correlation'}, + store_index : 'correlation' + } + }, + query : { + id : 'correlation', + clause : flex_field_query, + order_direction : 'DESC' + }, + vis : { + network : { + edgeSchema : { name: "correlation", type: "number" } + }, + tooltip : { + entry : { Correlation : 'correlation'} + }, + scatterplot : { + scale_type :'linear', + values : { + min : -1, + max : 1 + }, + color_scale : pv.Scale.linear(-1,0,1).range('red','blue','red') + } + } + } + ] +}; + +re.model.association_map = pv.numerate(re.model.association.types, function(obj) { return obj.id;}); \ No newline at end of file diff --git a/src/instances/random_forest/js/globals.js b/src/instances/random_forest/js/globals.js new file mode 100644 index 0000000..68f3669 --- /dev/null +++ b/src/instances/random_forest/js/globals.js @@ -0,0 +1,515 @@ +/* + globals.js + + Import this before MVC scripts. + */ +if (re === undefined) { + re = {}; +} + +vq.utils.VisUtils.extend(re, { + + title: 'Regulome Explorer: Random Forest', + google: { + analytics_id: 'UA-20488457-2' + }, + analysis: { + dataset_method_clause: ' where method=\'RF-ACE\'', + directed_association: true, + hidden: false + }, + state: { + once_loaded: false, + query_cancel: false, + network_query: '' + }, + node: { + uri: '/node', + services: { + data: '/data', + lookup:'/lookup/label/entrez' + } + }, + rest: { + query: '/query', + echo: '/echo', + convert: '/convert', + select: '/distributed_select' + }, + params: { + json_out: '&tqx=out:json_array', + query: 'tq=', + network_query: 'q=', + network_json_out: '&wt=json', + network_dataset_select: '&fq=%2Bdataset%3A' + }, + databases: { + base_uri: '', + metadata: { + uri: '/google-dsapi-svc/addama/datasources/csacr' + }, + rf_ace: { + uri: '/google-dsapi-svc/addama/datasources/re' + }, + networks: { + uri: '/data' + }, + medline: { + uri: '/solr/core0', + select: '/select/' + }, + ffn : { + uri: '/addama/services/datastores/dev_ffn_20140520' + } + }, + tables: { + dataset: '/regulome_explorer_dataset', + label_lookup: '/refgene', + chrom_info: '/chrom_info', + entrez_gene: '/entrez_gene', + current_data: '', + network_uri: '', + feature_uri: '', + features_uri: '', + clin_uri: '', + patient_uri: '', + feature_data_uri: '', + pathway_uri: '', + pathways:'/pathways', + ffn: '/feature_matrix' + }, + /* + * URL's + * addresses to pathways used by MEDLINE tab + */ + help: { + strings: { + // help strings + filteringHelpString: 'The Filter Panel can be used to specify the type of associations to display in the View Panels. Queries may specify attributes of each feature, as well as the attributes of the association.', + pathwaysHelpString: 'The Pathway Panel provides a view onto the individual members of the selected pathway. It displays the distribution of assoication types for each member. Hovering over a member activates a highlight mode on the cirular layout panel. Clicking on a feature locks that highlight mode in.', + toolsHelpString: 'The Tool Panel provides a way for filtering, selecting, and exporting different datasets. ' + 'The Panel can also be minimized by clicking the `>>` icon, which then expands main panel view. ' + 'See each individual tool help for further details on their capabilities.', + dataLevelViewHelpString: 'The Data-level View is a data table displaying the feature selected in the Genome-level ' + 'view and its related links. This view allows the user to easily navigate all the related data values ' + 'associated with a single feature.', + chromosomeLevelHelpString: 'The Chromosome-level View provides a way to navigate the features of a given dataset on ' + 'a single chromosome level. The view will be populated with chromosome information once a chromosome is ' + 'selected by either clicking on a specific chromosome number or end-point of a link in the Genome-level view.

' + 'Feature information on a given chromosome is displayed in 4 different plots. The Distal Intra-Chromosome ' + 'Correlates plot shows the location of the predictors for a target within a chromosome. The Proximal Feature ' + 'Predictors plot also displays feature associations within the chromosome, but only displays ones where the ' + 'start and end location of a predictor is less than 250,000 bp in length. The Unmapped Feature Coorelates ' + 'shows features for which there does not exist a mapped location. Finally, the Feature Locations plot shows ' + 'the locations of the various targets involved in the links. All plots have tooltips giving more details of ' + 'the underlying data. Coorelation scatterplots are displayed when an item is selected within a plot.

' + 'A sliding scale showing all feature locations is given at the bottom of the view. A range can be selected to zoom ' + 'in on a given chromosome location by clicking the mouse and dragging it over a region. The same zoom and ' + 'selection capability is also available within the top 4 plots.', + genomeLevelHelpString: 'The Genome-level View is an interactive circular plot showing the links between target and ' + 'predictor features within the dataset. Tooltips over various points give the underlying data associated with ' + 'a node or link. Clicking on the links within the plot will display a coorelation scatterplot of the associated ' + 'features. Mouse clicks on chromosomes, links, and nodes within the plot also bring up drill-down information ' + 'in the Chromosome-level and Data-level views.

' + 'The subset of data shown in the circular plot can be filtered by using the tools panel filtering section. Once a plot ' + 'of interest has been found, an export of the plot can be achieved by using the tools panel export option. ' + 'The mouse-click behavior of the interactive plot can be changed by choosing different options in the tools ' + 'panel selection area.' + }, + links: { + user_guide: 'http://wiki.cancerregulome.org', + quick_start: 'http://cdn.cancerregulome.org/help/msae/quick_start.html', + contact_us: 'http://wiki.cancerregulome.org', + analysis_summary: '/help/all_pairs/analysis.html', + bug_report: 'http://code.google.com/p/regulome-explorer/issues/entry', + user_group: 'http://groups.google.com/group/regulome-explorer', + ideogram: '/help/msae/images/ideogram.png' + } + }, + pathways: { + wikipw_url: 'http://www.wikipathways.org/index.php?title=Special%3ASearchPathways&doSearch=1&sa=Search&species=Homo+sapiens&query=', + biocarta_url: 'http://www.biocarta.com/pathfiles/h_', + kegg_url: 'http://www.genome.jp/kegg-bin/search_pathway_text?map=map&mode=1&viewImage=true&keyword=', + pw_commons_url: 'http://www.pathwaycommons.org/pc/webservice.do?version=3.0&snapshot_id=GLOBAL_FILTER_SETTINGS&record_type=PATHWAY&format=html&cmd=get_by_keyword&q=' + }, + + display_options: { + circvis: { + rings: { + karyotype: { + hidden: false, + radius: 28 + }, + cnvr: { + hidden: true, + radius: 40 + }, + pairwise_scores: { + value_field: re.model.association.types[0].query.id, + hidden: true, + radius: 80, + + manual_y_color_scale:false, + min_y_color:'#0000FF', + max_y_color:'#FF0000', + manual_y_values: false, + min_y_value:0, + max_y_value:1 + } + }, + quantiled_data: { + GEXP: true, + CNVR: true, + METH: true + }, + tooltips: { + feature: { + Feature: function(node) { + var pos = node.label.indexOf('_'); + var label = (pos > 0 ? node.label.slice(0, pos) : node.label); + label = (label == 'GisticArm' ? "Arm " + node.label.split('_')[1] : label); + return label; + }, + Source: function(node) { + return re.label_map[node.source] + }, + 'Location': function(node) { + return 'Chr' + node.chr + ' ' + node.start + (node.end == '' ? '' : '-' + node.end) + ' '; + }, + Annotations: parseAnnotationList + }, + unlocated_feature : {}, + karyotype_feature: {}, + edge: {}, + link_objects: [ + { + label: 'Pubcrawl', + url: 'http://explorer.cancerregulome.org/pubcrawl/', + uri: '?term=fbxw7&dataset=gbm_1031', + config_object: function(feature) { + return 'http://explorer.cancerregulome.org/pubcrawl/?term='+feature.label+'&dataset=' + re.tables.current_data; + } + }, //pubcrawl + { + label: 'UCSC Genome Browser', + url: 'http://genome.ucsc.edu/cgi-bin/hgTracks', + uri: '?db=hg19&position=chr', + config_object: function(feature) { + return 'http://genome.ucsc.edu/cgi-bin/hgTracks?db=hg19&position=chr' + feature.chr + ':' + feature.start + (feature.end == '' ? '' : '-' + feature.end); + } + }, //ucsc_genome_browser + { + label: 'Ensemble', + url: 'http://uswest.ensembl.org/Homo_sapiens/Location/View', + uri: '?r=', + config_object: function(feature) { + return 'http://uswest.ensembl.org/Homo_sapiens/Location/View?r=' + feature.chr + ':' + feature.start + (feature.end == '' ? '' : '-' + feature.end); + } + }, //ensemble + { + label: 'Cosmic', + url: 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic', + uri: '?action=bygene&ln=', + config_object: function(feature) { + return ['CNVR', 'MIRN','METH'].indexOf(feature.source) < 0 ? 'http://www.sanger.ac.uk/perl/genetics/CGP/cosmic?action=bygene&ln=' + feature.label : null; + } + }, { + label: 'NCBI', + url: 'http://www.ncbi.nlm.nih.gov/gene/', + uri: '', + selector : Ext.DomQuery.compile('a[href*=zzzZZZzzz]'), + config_object: function(feature) { + return 'http://www.ncbi.nlm.nih.gov/gene?term='+feature.label; + } + }, { + label: 'miRBase', + url: 'http://mirbase.org/cgi-bin/query.pl', + uri: '?terms=', + config_object: function(feature) { + return feature.source == 'MIRN' ? 'http://www.mirbase.org/cgi-bin/query.pl?terms=' + feature.label : null; + } + } + ], + //link_objects + edge_links: {}, + feature_links : {} + }, + ticks: { + tick_overlap_distance: null, + tile_ticks_manually: false, + wedge_width: 1, + wedge_width_manually: false, + wedge_height: 1, + wedge_height_manually: false + }, + network: { + tile_nodes: false, + node_overlap_distance: null + }, + width: 800, + height: 800, + ring_radius: 55, + rotation: 0, + chrom_keys: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "X", "Y"] + }, + cytoscape: { + frame_ready: false, + ready: false, + layout: 'force_directed' + } + }, + circvis_obj: {}, + cytoscape: { + obj: {}, + data: [], + swfPath: "http://cdn.cancerregulome.org/js/cytoscape_web/1.0/swf/CytoscapeWeb", + flashInstallerPath: "http://cdn.cancerregulome.org/js/cytoscape_web/1.0/swf/playerProductInstall" + }, + plot: { + locatable_source_list: ['GEXP', 'METH', 'CNVR', 'MIRN', 'GNAB', 'RPPA'], + unlocatable_source_list: ['CLIN', 'SAMP', 'PRDM'], + link_sources_array: [], + + colors: { + link_type_colors: pv.colors("#c2c4ff", "#e7cb94", "#cedb9c", "#e7969c", "#e1daf9", "#b8e2ef"), + link_sources_colors: {}, + source_color_scale: pv.Colors.category10(), + stroke_style_attribute: 'white', + getStrokeStyleAttribute: function() { + return re.plot.colors.stroke_style_attribute; + }, + setStrokeStyleAttribute: function(attr) { + re.plot.colors.stroke_style_attribute = attr; + }, + categorical_values: { + 'NA' :'#444444', + '0': '#1f77b4', //blue + '1': '#ff7f0e', //orange + }, + category_colors : [ + '#2ca02c', + '#9467bd', + '#d62728', + '#8c564b', + '#e377c2', + '#7f7f7f', + '#bcbd22', + "#c2c4ff", + "#e7cb94", + "#cedb9c", + "#e7969c", + "#e1daf9", + "#b8e2ef" + ] + }, + inter_scale: pv.Scale.linear(0.00005, 0.0004).range('lightpink', 'red'), + linear_unit: 100000, + chrome_length: [], + legend: {}, + scatterplot_data: null, + + category_equivalents :{ + 'NEG': '0' , + 'NEGATIVE' : '0', + 'TUMOR_FREE' : '0', + 'NO': '0', + 'POS': '1', + 'POSITIVE' : '1', + 'WITH_TUMOR' : '1', + 'YES': '1' + } + }, + ui: { + filters: { + single_feature: true, + link_distance: true + }, + chromosomes: [], + dataset_labels: [], + categorical_sources_map : {}, + + // Removes heading and trailing whitespaces from a string + getDatasetLabels: function() { + return re.ui.dataset_labels; + }, + setDatasetLabels: function(obj) { + re.ui.dataset_labels = obj; + }, + current_pathway_members: [], + getCurrentPathwayMembers: function() { + return re.ui.current_pathway_members; + }, + setCurrentPathwayMembers: function(obj) { + re.ui.current_pathway_members = obj; + }, + pathway_members_query_counts: {}, + getPathwayMembersQueryCounts: function() { + return re.ui.pathway_members_query_counts; + }, + setPathwayMembersQueryCounts: function(obj, ct) { + re.ui.pathway_members_query_counts[obj] = ct; + }, + pathway_bar_mouseover_behavior: {}, + getPathwayBarBehavior: function() { + return re.ui.pathway_bar_mouseover_behavior; + }, + setPathwayBarBehavior: function(obj) { + re.ui.pathway_bar_mouseover_behavior = obj; + }, + pathway_bar_mouseover_behavior_reset: {}, + getPathwayBarBehaviorReset: function() { + return re.ui.pathway_bar_mouseover_behavior_reset; + }, + setPathwayBarBehaviorReset: function(obj) { + re.ui.pathway_bar_mouseover_behavior_reset = obj; + }, + /* + * Order combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + limit_list: [{ + value: 10, + label: '10' + }, { + value: 20, + label: '20' + }, { + value: 40, + label: '40' + }, { + value: 100, + label: '100' + }, { + value: 200, + label: '200' + }, { + value: 1000, + label: '1000' + }, { + value: 2000, + label: '2000' + }], + /* + * Limit combo list + * Objects consist of fields: + * value: - String - id to be passed to controller + * label - String - id to be used by UI + */ + order_list: [] + }, + + /* + Window handles + global handles to the masks and windows used by events + */ + + windows: { + details_window: null, + helpWindowReference: null, + masks: { + details_window_mask: null, + network_mask: null + } + }, + data: { + parsed_data: { + network: null, + unlocated: null, + features: null, + unlocated_features: null, + located_features: null + }, + responses: { + network: null + }, + patients: { + data: null + }, + lookups: { + friendleFeatureNames: [] + } + } +}); + + +(function() { + re.ui.chromosomes.push({ + value: '*', + label: 'All' + }); + for (var i = 1; i <= 22; i++) { + re.ui.chromosomes.push({ + value: i + '', + label: i + '' + }); + } + re.ui.chromosomes.push({ + value: 'X', + label: 'X' + }); + re.ui.chromosomes.push({ + value: 'Y', + label: 'Y' + }); + + /* + Label map + Hash maps feature type id to feature type label + */ + re.label_map = { + '*': 'All', + 'GEXP': 'Gene Expression', + 'METH': 'DNA Methylation', + 'CNVR': 'Somatic Copy Number', + 'CLIN': 'Clinical', + 'MIRN': 'MicroRNA Expression', + 'GNAB': 'Somatic Mutation', + 'SAMP': 'Tumor Sample', + 'PRDM': 'Paradigm Feature', + 'RPPA': 'Protein Level - RPPA' + }; + re.plot.all_source_list = pv.blend([re.plot.locatable_source_list, re.plot.unlocatable_source_list]); + re.plot.all_source_map = pv.numerate(re.plot.all_source_list); + re.plot.locatable_source_map = pv.numerate(re.plot.locatable_source_list); + + re.plot.proximal_distance = 2.5 * re.plot.linear_unit; + + re.plot.colors.features = { + 'GEXP': '#1f77b4', + //blue + 'METH': '#2ca02c', + //green + 'CNVR': '#ff7f0e', + //orange + 'MIRN': '#9467bd', + //purple + 'GNAB': '#d62728', + //red + 'PRDM': '#8c564b', + //pink + 'RPPA': '#e377c2', + //brown + 'CLIN': '#7f7f7f', + 'SAMP': '#bcbd22' + //#17becf + }; + + re.plot.legend.dataRingTypes = ['1. Cytoband','2. Gene Expression','3. Methylation','4. Copy Number','5. Unmapped Associations']; + re.plot.colors.quants = {"Q1":"#000099", "Q2":"#66A3FF","Q3":"#959595","Q4":"#FF8080","Q5":"#800000"}; + re.plot.colors.quantinfo = {"Q1":"<5%", "Q2":"5-25%","Q3":"25-75%","Q4":"75-95%","Q5":">95%"};//,"Q6":"90-95%","Q7":">95%"}; + + re.plot.colors.node_colors = function(source) { + if (source in re.plot.colors.features) { + return pv.color(re.plot.colors.features[source]); + } + return "blue"; + }; + re.model.association.types.forEach(function(obj) { + if ( obj.ui.filter === undefined || obj.ui.filter.component === undefined) { return; } + re.ui.order_list.push({ + value: obj.id, + label: obj.label + }); + }); + + if (re.analysis.directed_association) { + re.ui.feature1 = { + label: 'Target', + id: 'target' + }; + re.ui.feature2 = { + label: 'Predictor', + id: 'predictor' + }; + } else { + re.ui.feature1 = { + label: 'Feature 1', + id: 'feature1' + }; + re.ui.feature2 = { + label: 'Feature 2', + id: 'feature2' + }; + } + + re.build_tooltips(); + +})(); \ No newline at end of file diff --git a/src/webapp/css/icons.css b/src/webapp/css/icons.css new file mode 100644 index 0000000..33086e7 --- /dev/null +++ b/src/webapp/css/icons.css @@ -0,0 +1,14 @@ + + /*icons*/ + .data { background-image:url(../images/control_equalizer.png) !important } + .advParameters { background-image:url(../images/table_gear.png) !important } + .home { background-image:url(../images/house.png) !important} + .circvis {background-image:url(../images/color_wheel.png) !important } + .fastbreak { background-image:url(../images/link_break.png) !important } + .gene_select { background-image:url(../images/zoom.png) !important} + .navigation {background-image:url(../images/world.png) !important } + .table { background-image:url(../images/table.png) !important} + .forest { background-image:url(../images/forest.png) !important} + .parallel_coordinates { background-image:url(../images/control_equalizer.png) !important } + .comparator { background-image:url(../images/contrast.png) !important } + .feature_associations { background-image:url(../images/arrow_refresh.png) !important } \ No newline at end of file diff --git a/src/webapp/data/cytoband.hg18.json b/src/webapp/data/cytoband.hg18.json new file mode 100644 index 0000000..a811d5f --- /dev/null +++ b/src/webapp/data/cytoband.hg18.json @@ -0,0 +1,6036 @@ +var cytoband = [ + { + "chr": "1", + "end": 2300000, + "options": "label=p36.33,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 5300000, + "options": "label=p36.32,type=gpos25", + "start": 2300000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 7100000, + "options": "label=p36.31,type=gneg", + "start": 5300000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 9200000, + "options": "label=p36.23,type=gpos25", + "start": 7100000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 12600000, + "options": "label=p36.22,type=gneg", + "start": 9200000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 16100000, + "options": "label=p36.21,type=gpos50", + "start": 12600000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 20300000, + "options": "label=p36.13,type=gneg", + "start": 16100000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 23800000, + "options": "label=p36.12,type=gpos25", + "start": 20300000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 27800000, + "options": "label=p36.11,type=gneg", + "start": 23800000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 30000000, + "options": "label=p35.3,type=gpos25", + "start": 27800000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 32200000, + "options": "label=p35.2,type=gneg", + "start": 30000000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 34400000, + "options": "label=p35.1,type=gpos25", + "start": 32200000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 39600000, + "options": "label=p34.3,type=gneg", + "start": 34400000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 43900000, + "options": "label=p34.2,type=gpos25", + "start": 39600000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 46500000, + "options": "label=p34.1,type=gneg", + "start": 43900000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 51300000, + "options": "label=p33,type=gpos75", + "start": 46500000, + "value": "#828282" + }, + { + "chr": "1", + "end": 56200000, + "options": "label=p32.3,type=gneg", + "start": 51300000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 58700000, + "options": "label=p32.2,type=gpos50", + "start": 56200000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 60900000, + "options": "label=p32.1,type=gneg", + "start": 58700000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 68700000, + "options": "label=p31.3,type=gpos50", + "start": 60900000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 69500000, + "options": "label=p31.2,type=gneg", + "start": 68700000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 84700000, + "options": "label=p31.1,type=gpos100", + "start": 69500000, + "value": "#000" + }, + { + "chr": "1", + "end": 88100000, + "options": "label=p22.3,type=gneg", + "start": 84700000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 92000000, + "options": "label=p22.2,type=gpos75", + "start": 88100000, + "value": "#828282" + }, + { + "chr": "1", + "end": 94500000, + "options": "label=p22.1,type=gneg", + "start": 92000000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 99400000, + "options": "label=p21.3,type=gpos75", + "start": 94500000, + "value": "#828282" + }, + { + "chr": "1", + "end": 102000000, + "options": "label=p21.2,type=gneg", + "start": 99400000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 107000000, + "options": "label=p21.1,type=gpos100", + "start": 102000000, + "value": "#000" + }, + { + "chr": "1", + "end": 111600000, + "options": "label=p13.3,type=gneg", + "start": 107000000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 115900000, + "options": "label=p13.2,type=gpos50", + "start": 111600000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 117600000, + "options": "label=p13.1,type=gneg", + "start": 115900000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 120700000, + "options": "label=p12,type=gpos50", + "start": 117600000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 121100000, + "options": "label=p11.2,type=gneg", + "start": 120700000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 124300000, + "options": "label=p11.1,type=acen", + "start": 121100000, + "value": "#d92f27" + }, + { + "chr": "1", + "end": 128000000, + "options": "label=q11,type=acen", + "start": 124300000, + "value": "#d92f27" + }, + { + "chr": "1", + "end": 142400000, + "options": "label=q12,type=gvar", + "start": 128000000, + "value": "#dcdcdc" + }, + { + "chr": "1", + "end": 148000000, + "options": "label=q21.1,type=gneg", + "start": 142400000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 149600000, + "options": "label=q21.2,type=gpos50", + "start": 148000000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 153300000, + "options": "label=q21.3,type=gneg", + "start": 149600000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 154800000, + "options": "label=q22,type=gpos50", + "start": 153300000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 157300000, + "options": "label=q23.1,type=gneg", + "start": 154800000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 158800000, + "options": "label=q23.2,type=gpos50", + "start": 157300000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 163800000, + "options": "label=q23.3,type=gneg", + "start": 158800000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 165500000, + "options": "label=q24.1,type=gpos50", + "start": 163800000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 169100000, + "options": "label=q24.2,type=gneg", + "start": 165500000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 171200000, + "options": "label=q24.3,type=gpos75", + "start": 169100000, + "value": "#828282" + }, + { + "chr": "1", + "end": 174300000, + "options": "label=q25.1,type=gneg", + "start": 171200000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 178600000, + "options": "label=q25.2,type=gpos50", + "start": 174300000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 184000000, + "options": "label=q25.3,type=gneg", + "start": 178600000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 189000000, + "options": "label=q31.1,type=gpos100", + "start": 184000000, + "value": "#000" + }, + { + "chr": "1", + "end": 192100000, + "options": "label=q31.2,type=gneg", + "start": 189000000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 197500000, + "options": "label=q31.3,type=gpos100", + "start": 192100000, + "value": "#000" + }, + { + "chr": "1", + "end": 205300000, + "options": "label=q32.1,type=gneg", + "start": 197500000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 209500000, + "options": "label=q32.2,type=gpos25", + "start": 205300000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 212100000, + "options": "label=q32.3,type=gneg", + "start": 209500000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 222100000, + "options": "label=q41,type=gpos100", + "start": 212100000, + "value": "#000" + }, + { + "chr": "1", + "end": 222700000, + "options": "label=q42.11,type=gneg", + "start": 222100000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 225100000, + "options": "label=q42.12,type=gpos25", + "start": 222700000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 228800000, + "options": "label=q42.13,type=gneg", + "start": 225100000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 232700000, + "options": "label=q42.2,type=gpos50", + "start": 228800000, + "value": "#c8c8c8" + }, + { + "chr": "1", + "end": 234600000, + "options": "label=q42.3,type=gneg", + "start": 232700000, + "value": "#ffffff" + }, + { + "chr": "1", + "end": 241700000, + "options": "label=q43,type=gpos75", + "start": 234600000, + "value": "#828282" + }, + { + "chr": "1", + "end": 247249719, + "options": "label=q44,type=gneg", + "start": 241700000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 3000000, + "options": "label=p15.3,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 3800000, + "options": "label=p15.2,type=gpos25", + "start": 3000000, + "value": "#c8c8c8" + }, + { + "chr": "10", + "end": 6700000, + "options": "label=p15.1,type=gneg", + "start": 3800000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 12300000, + "options": "label=p14,type=gpos75", + "start": 6700000, + "value": "#828282" + }, + { + "chr": "10", + "end": 17300000, + "options": "label=p13,type=gneg", + "start": 12300000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 19900000, + "options": "label=p12.33,type=gpos75", + "start": 17300000, + "value": "#828282" + }, + { + "chr": "10", + "end": 20500000, + "options": "label=p12.32,type=gneg", + "start": 19900000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 22800000, + "options": "label=p12.31,type=gpos75", + "start": 20500000, + "value": "#828282" + }, + { + "chr": "10", + "end": 24100000, + "options": "label=p12.2,type=gneg", + "start": 22800000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 28300000, + "options": "label=p12.1,type=gpos50", + "start": 24100000, + "value": "#c8c8c8" + }, + { + "chr": "10", + "end": 31400000, + "options": "label=p11.23,type=gneg", + "start": 28300000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 34500000, + "options": "label=p11.22,type=gpos25", + "start": 31400000, + "value": "#c8c8c8" + }, + { + "chr": "10", + "end": 38800000, + "options": "label=p11.21,type=gneg", + "start": 34500000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 40300000, + "options": "label=p11.1,type=acen", + "start": 38800000, + "value": "#d92f27" + }, + { + "chr": "10", + "end": 42100000, + "options": "label=q11.1,type=acen", + "start": 40300000, + "value": "#d92f27" + }, + { + "chr": "10", + "end": 46100000, + "options": "label=q11.21,type=gneg", + "start": 42100000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 50100000, + "options": "label=q11.22,type=gpos25", + "start": 46100000, + "value": "#c8c8c8" + }, + { + "chr": "10", + "end": 53300000, + "options": "label=q11.23,type=gneg", + "start": 50100000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 61200000, + "options": "label=q21.1,type=gpos100", + "start": 53300000, + "value": "#000" + }, + { + "chr": "10", + "end": 64800000, + "options": "label=q21.2,type=gneg", + "start": 61200000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 71300000, + "options": "label=q21.3,type=gpos100", + "start": 64800000, + "value": "#000" + }, + { + "chr": "10", + "end": 74600000, + "options": "label=q22.1,type=gneg", + "start": 71300000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 77400000, + "options": "label=q22.2,type=gpos50", + "start": 74600000, + "value": "#c8c8c8" + }, + { + "chr": "10", + "end": 82000000, + "options": "label=q22.3,type=gneg", + "start": 77400000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 87900000, + "options": "label=q23.1,type=gpos100", + "start": 82000000, + "value": "#000" + }, + { + "chr": "10", + "end": 89600000, + "options": "label=q23.2,type=gneg", + "start": 87900000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 92900000, + "options": "label=q23.31,type=gpos75", + "start": 89600000, + "value": "#828282" + }, + { + "chr": "10", + "end": 94200000, + "options": "label=q23.32,type=gneg", + "start": 92900000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 98000000, + "options": "label=q23.33,type=gpos50", + "start": 94200000, + "value": "#c8c8c8" + }, + { + "chr": "10", + "end": 99400000, + "options": "label=q24.1,type=gneg", + "start": 98000000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 102000000, + "options": "label=q24.2,type=gpos50", + "start": 99400000, + "value": "#c8c8c8" + }, + { + "chr": "10", + "end": 103000000, + "options": "label=q24.31,type=gneg", + "start": 102000000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 104900000, + "options": "label=q24.32,type=gpos25", + "start": 103000000, + "value": "#c8c8c8" + }, + { + "chr": "10", + "end": 105700000, + "options": "label=q24.33,type=gneg", + "start": 104900000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 111800000, + "options": "label=q25.1,type=gpos100", + "start": 105700000, + "value": "#000" + }, + { + "chr": "10", + "end": 114900000, + "options": "label=q25.2,type=gneg", + "start": 111800000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 119100000, + "options": "label=q25.3,type=gpos75", + "start": 114900000, + "value": "#828282" + }, + { + "chr": "10", + "end": 121700000, + "options": "label=q26.11,type=gneg", + "start": 119100000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 123100000, + "options": "label=q26.12,type=gpos50", + "start": 121700000, + "value": "#c8c8c8" + }, + { + "chr": "10", + "end": 127400000, + "options": "label=q26.13,type=gneg", + "start": 123100000, + "value": "#ffffff" + }, + { + "chr": "10", + "end": 130500000, + "options": "label=q26.2,type=gpos50", + "start": 127400000, + "value": "#c8c8c8" + }, + { + "chr": "10", + "end": 135374737, + "options": "label=q26.3,type=gneg", + "start": 130500000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 2800000, + "options": "label=p15.5,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 10700000, + "options": "label=p15.4,type=gpos50", + "start": 2800000, + "value": "#c8c8c8" + }, + { + "chr": "11", + "end": 12600000, + "options": "label=p15.3,type=gneg", + "start": 10700000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 16100000, + "options": "label=p15.2,type=gpos50", + "start": 12600000, + "value": "#c8c8c8" + }, + { + "chr": "11", + "end": 21600000, + "options": "label=p15.1,type=gneg", + "start": 16100000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 26000000, + "options": "label=p14.3,type=gpos100", + "start": 21600000, + "value": "#000" + }, + { + "chr": "11", + "end": 27200000, + "options": "label=p14.2,type=gneg", + "start": 26000000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 31000000, + "options": "label=p14.1,type=gpos75", + "start": 27200000, + "value": "#828282" + }, + { + "chr": "11", + "end": 36400000, + "options": "label=p13,type=gneg", + "start": 31000000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 43400000, + "options": "label=p12,type=gpos100", + "start": 36400000, + "value": "#000" + }, + { + "chr": "11", + "end": 48800000, + "options": "label=p11.2,type=gneg", + "start": 43400000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 51400000, + "options": "label=p11.12,type=gpos75", + "start": 48800000, + "value": "#828282" + }, + { + "chr": "11", + "end": 52900000, + "options": "label=p11.11,type=acen", + "start": 51400000, + "value": "#d92f27" + }, + { + "chr": "11", + "end": 56400000, + "options": "label=q11,type=acen", + "start": 52900000, + "value": "#d92f27" + }, + { + "chr": "11", + "end": 59700000, + "options": "label=q12.1,type=gpos75", + "start": 56400000, + "value": "#828282" + }, + { + "chr": "11", + "end": 61400000, + "options": "label=q12.2,type=gneg", + "start": 59700000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 63100000, + "options": "label=q12.3,type=gpos25", + "start": 61400000, + "value": "#c8c8c8" + }, + { + "chr": "11", + "end": 67100000, + "options": "label=q13.1,type=gneg", + "start": 63100000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 69200000, + "options": "label=q13.2,type=gpos25", + "start": 67100000, + "value": "#c8c8c8" + }, + { + "chr": "11", + "end": 70700000, + "options": "label=q13.3,type=gneg", + "start": 69200000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 74900000, + "options": "label=q13.4,type=gpos50", + "start": 70700000, + "value": "#c8c8c8" + }, + { + "chr": "11", + "end": 76700000, + "options": "label=q13.5,type=gneg", + "start": 74900000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 85300000, + "options": "label=q14.1,type=gpos100", + "start": 76700000, + "value": "#000" + }, + { + "chr": "11", + "end": 87900000, + "options": "label=q14.2,type=gneg", + "start": 85300000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 92300000, + "options": "label=q14.3,type=gpos100", + "start": 87900000, + "value": "#000" + }, + { + "chr": "11", + "end": 96700000, + "options": "label=q21,type=gneg", + "start": 92300000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 101600000, + "options": "label=q22.1,type=gpos100", + "start": 96700000, + "value": "#000" + }, + { + "chr": "11", + "end": 102400000, + "options": "label=q22.2,type=gneg", + "start": 101600000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 110000000, + "options": "label=q22.3,type=gpos100", + "start": 102400000, + "value": "#000" + }, + { + "chr": "11", + "end": 112800000, + "options": "label=q23.1,type=gneg", + "start": 110000000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 115400000, + "options": "label=q23.2,type=gpos50", + "start": 112800000, + "value": "#c8c8c8" + }, + { + "chr": "11", + "end": 120700000, + "options": "label=q23.3,type=gneg", + "start": 115400000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 123500000, + "options": "label=q24.1,type=gpos50", + "start": 120700000, + "value": "#c8c8c8" + }, + { + "chr": "11", + "end": 127400000, + "options": "label=q24.2,type=gneg", + "start": 123500000, + "value": "#ffffff" + }, + { + "chr": "11", + "end": 130300000, + "options": "label=q24.3,type=gpos50", + "start": 127400000, + "value": "#c8c8c8" + }, + { + "chr": "11", + "end": 134452384, + "options": "label=q25,type=gneg", + "start": 130300000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 3100000, + "options": "label=p13.33,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 5300000, + "options": "label=p13.32,type=gpos25", + "start": 3100000, + "value": "#c8c8c8" + }, + { + "chr": "12", + "end": 10000000, + "options": "label=p13.31,type=gneg", + "start": 5300000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 12600000, + "options": "label=p13.2,type=gpos75", + "start": 10000000, + "value": "#828282" + }, + { + "chr": "12", + "end": 14800000, + "options": "label=p13.1,type=gneg", + "start": 12600000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 19900000, + "options": "label=p12.3,type=gpos100", + "start": 14800000, + "value": "#000" + }, + { + "chr": "12", + "end": 21200000, + "options": "label=p12.2,type=gneg", + "start": 19900000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 26300000, + "options": "label=p12.1,type=gpos100", + "start": 21200000, + "value": "#000" + }, + { + "chr": "12", + "end": 27700000, + "options": "label=p11.23,type=gneg", + "start": 26300000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 30600000, + "options": "label=p11.22,type=gpos50", + "start": 27700000, + "value": "#c8c8c8" + }, + { + "chr": "12", + "end": 33200000, + "options": "label=p11.21,type=gneg", + "start": 30600000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 35400000, + "options": "label=p11.1,type=acen", + "start": 33200000, + "value": "#d92f27" + }, + { + "chr": "12", + "end": 36500000, + "options": "label=q11,type=acen", + "start": 35400000, + "value": "#d92f27" + }, + { + "chr": "12", + "end": 44600000, + "options": "label=q12,type=gpos100", + "start": 36500000, + "value": "#000" + }, + { + "chr": "12", + "end": 47400000, + "options": "label=q13.11,type=gneg", + "start": 44600000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 48400000, + "options": "label=q13.12,type=gpos25", + "start": 47400000, + "value": "#c8c8c8" + }, + { + "chr": "12", + "end": 53100000, + "options": "label=q13.13,type=gneg", + "start": 48400000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 55200000, + "options": "label=q13.2,type=gpos25", + "start": 53100000, + "value": "#c8c8c8" + }, + { + "chr": "12", + "end": 56300000, + "options": "label=q13.3,type=gneg", + "start": 55200000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 61400000, + "options": "label=q14.1,type=gpos75", + "start": 56300000, + "value": "#828282" + }, + { + "chr": "12", + "end": 63400000, + "options": "label=q14.2,type=gneg", + "start": 61400000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 66000000, + "options": "label=q14.3,type=gpos50", + "start": 63400000, + "value": "#c8c8c8" + }, + { + "chr": "12", + "end": 69800000, + "options": "label=q15,type=gneg", + "start": 66000000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 74100000, + "options": "label=q21.1,type=gpos75", + "start": 69800000, + "value": "#828282" + }, + { + "chr": "12", + "end": 78700000, + "options": "label=q21.2,type=gneg", + "start": 74100000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 85100000, + "options": "label=q21.31,type=gpos100", + "start": 78700000, + "value": "#000" + }, + { + "chr": "12", + "end": 87500000, + "options": "label=q21.32,type=gneg", + "start": 85100000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 91200000, + "options": "label=q21.33,type=gpos100", + "start": 87500000, + "value": "#000" + }, + { + "chr": "12", + "end": 94800000, + "options": "label=q22,type=gneg", + "start": 91200000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 100000000, + "options": "label=q23.1,type=gpos75", + "start": 94800000, + "value": "#828282" + }, + { + "chr": "12", + "end": 102400000, + "options": "label=q23.2,type=gneg", + "start": 100000000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 107500000, + "options": "label=q23.3,type=gpos50", + "start": 102400000, + "value": "#c8c8c8" + }, + { + "chr": "12", + "end": 110200000, + "options": "label=q24.11,type=gneg", + "start": 107500000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 110800000, + "options": "label=q24.12,type=gpos25", + "start": 110200000, + "value": "#c8c8c8" + }, + { + "chr": "12", + "end": 112800000, + "options": "label=q24.13,type=gneg", + "start": 110800000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 115300000, + "options": "label=q24.21,type=gpos50", + "start": 112800000, + "value": "#c8c8c8" + }, + { + "chr": "12", + "end": 116700000, + "options": "label=q24.22,type=gneg", + "start": 115300000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 119100000, + "options": "label=q24.23,type=gpos50", + "start": 116700000, + "value": "#c8c8c8" + }, + { + "chr": "12", + "end": 124500000, + "options": "label=q24.31,type=gneg", + "start": 119100000, + "value": "#ffffff" + }, + { + "chr": "12", + "end": 128700000, + "options": "label=q24.32,type=gpos50", + "start": 124500000, + "value": "#c8c8c8" + }, + { + "chr": "12", + "end": 132349534, + "options": "label=q24.33,type=gneg", + "start": 128700000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 3800000, + "options": "label=p13,type=gvar", + "start": 0, + "value": "#dcdcdc" + }, + { + "chr": "13", + "end": 8300000, + "options": "label=p12,type=stalk", + "start": 3800000, + "value": "#467fa4" + }, + { + "chr": "13", + "end": 13500000, + "options": "label=p11.2,type=gvar", + "start": 8300000, + "value": "#dcdcdc" + }, + { + "chr": "13", + "end": 16000000, + "options": "label=p11.1,type=acen", + "start": 13500000, + "value": "#d92f27" + }, + { + "chr": "13", + "end": 18400000, + "options": "label=q11,type=acen", + "start": 16000000, + "value": "#d92f27" + }, + { + "chr": "13", + "end": 22200000, + "options": "label=q12.11,type=gneg", + "start": 18400000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 24400000, + "options": "label=q12.12,type=gpos25", + "start": 22200000, + "value": "#c8c8c8" + }, + { + "chr": "13", + "end": 26700000, + "options": "label=q12.13,type=gneg", + "start": 24400000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 27800000, + "options": "label=q12.2,type=gpos25", + "start": 26700000, + "value": "#c8c8c8" + }, + { + "chr": "13", + "end": 31100000, + "options": "label=q12.3,type=gneg", + "start": 27800000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 32900000, + "options": "label=q13.1,type=gpos50", + "start": 31100000, + "value": "#c8c8c8" + }, + { + "chr": "13", + "end": 34700000, + "options": "label=q13.2,type=gneg", + "start": 32900000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 39500000, + "options": "label=q13.3,type=gpos75", + "start": 34700000, + "value": "#828282" + }, + { + "chr": "13", + "end": 44300000, + "options": "label=q14.11,type=gneg", + "start": 39500000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 45900000, + "options": "label=q14.12,type=gpos25", + "start": 44300000, + "value": "#c8c8c8" + }, + { + "chr": "13", + "end": 46200000, + "options": "label=q14.13,type=gneg", + "start": 45900000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 48900000, + "options": "label=q14.2,type=gpos50", + "start": 46200000, + "value": "#c8c8c8" + }, + { + "chr": "13", + "end": 52200000, + "options": "label=q14.3,type=gneg", + "start": 48900000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 57600000, + "options": "label=q21.1,type=gpos100", + "start": 52200000, + "value": "#000" + }, + { + "chr": "13", + "end": 60500000, + "options": "label=q21.2,type=gneg", + "start": 57600000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 64100000, + "options": "label=q21.31,type=gpos75", + "start": 60500000, + "value": "#828282" + }, + { + "chr": "13", + "end": 67200000, + "options": "label=q21.32,type=gneg", + "start": 64100000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 72100000, + "options": "label=q21.33,type=gpos100", + "start": 67200000, + "value": "#000" + }, + { + "chr": "13", + "end": 74200000, + "options": "label=q22.1,type=gneg", + "start": 72100000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 76000000, + "options": "label=q22.2,type=gpos50", + "start": 74200000, + "value": "#c8c8c8" + }, + { + "chr": "13", + "end": 77800000, + "options": "label=q22.3,type=gneg", + "start": 76000000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 86500000, + "options": "label=q31.1,type=gpos100", + "start": 77800000, + "value": "#000" + }, + { + "chr": "13", + "end": 88800000, + "options": "label=q31.2,type=gneg", + "start": 86500000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 93800000, + "options": "label=q31.3,type=gpos100", + "start": 88800000, + "value": "#000" + }, + { + "chr": "13", + "end": 97000000, + "options": "label=q32.1,type=gneg", + "start": 93800000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 98100000, + "options": "label=q32.2,type=gpos25", + "start": 97000000, + "value": "#c8c8c8" + }, + { + "chr": "13", + "end": 100500000, + "options": "label=q32.3,type=gneg", + "start": 98100000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 103700000, + "options": "label=q33.1,type=gpos100", + "start": 100500000, + "value": "#000" + }, + { + "chr": "13", + "end": 105800000, + "options": "label=q33.2,type=gneg", + "start": 103700000, + "value": "#ffffff" + }, + { + "chr": "13", + "end": 109100000, + "options": "label=q33.3,type=gpos100", + "start": 105800000, + "value": "#000" + }, + { + "chr": "13", + "end": 114142980, + "options": "label=q34,type=gneg", + "start": 109100000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 3100000, + "options": "label=p13,type=gvar", + "start": 0, + "value": "#dcdcdc" + }, + { + "chr": "14", + "end": 6700000, + "options": "label=p12,type=stalk", + "start": 3100000, + "value": "#467fa4" + }, + { + "chr": "14", + "end": 13600000, + "options": "label=p11.2,type=gvar", + "start": 6700000, + "value": "#dcdcdc" + }, + { + "chr": "14", + "end": 15600000, + "options": "label=p11.1,type=acen", + "start": 13600000, + "value": "#d92f27" + }, + { + "chr": "14", + "end": 19100000, + "options": "label=q11.1,type=acen", + "start": 15600000, + "value": "#d92f27" + }, + { + "chr": "14", + "end": 23600000, + "options": "label=q11.2,type=gneg", + "start": 19100000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 31800000, + "options": "label=q12,type=gpos100", + "start": 23600000, + "value": "#000" + }, + { + "chr": "14", + "end": 34100000, + "options": "label=q13.1,type=gneg", + "start": 31800000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 35600000, + "options": "label=q13.2,type=gpos50", + "start": 34100000, + "value": "#c8c8c8" + }, + { + "chr": "14", + "end": 36900000, + "options": "label=q13.3,type=gneg", + "start": 35600000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 41000000, + "options": "label=q21.1,type=gpos100", + "start": 36900000, + "value": "#000" + }, + { + "chr": "14", + "end": 43200000, + "options": "label=q21.2,type=gneg", + "start": 41000000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 48300000, + "options": "label=q21.3,type=gpos100", + "start": 43200000, + "value": "#000" + }, + { + "chr": "14", + "end": 52300000, + "options": "label=q22.1,type=gneg", + "start": 48300000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 54400000, + "options": "label=q22.2,type=gpos25", + "start": 52300000, + "value": "#c8c8c8" + }, + { + "chr": "14", + "end": 55800000, + "options": "label=q22.3,type=gneg", + "start": 54400000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 61200000, + "options": "label=q23.1,type=gpos75", + "start": 55800000, + "value": "#828282" + }, + { + "chr": "14", + "end": 64000000, + "options": "label=q23.2,type=gneg", + "start": 61200000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 67000000, + "options": "label=q23.3,type=gpos50", + "start": 64000000, + "value": "#c8c8c8" + }, + { + "chr": "14", + "end": 69300000, + "options": "label=q24.1,type=gneg", + "start": 67000000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 72900000, + "options": "label=q24.2,type=gpos50", + "start": 69300000, + "value": "#c8c8c8" + }, + { + "chr": "14", + "end": 78400000, + "options": "label=q24.3,type=gneg", + "start": 72900000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 82600000, + "options": "label=q31.1,type=gpos100", + "start": 78400000, + "value": "#000" + }, + { + "chr": "14", + "end": 84000000, + "options": "label=q31.2,type=gneg", + "start": 82600000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 88900000, + "options": "label=q31.3,type=gpos100", + "start": 84000000, + "value": "#000" + }, + { + "chr": "14", + "end": 90500000, + "options": "label=q32.11,type=gneg", + "start": 88900000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 92800000, + "options": "label=q32.12,type=gpos25", + "start": 90500000, + "value": "#c8c8c8" + }, + { + "chr": "14", + "end": 95400000, + "options": "label=q32.13,type=gneg", + "start": 92800000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 100400000, + "options": "label=q32.2,type=gpos50", + "start": 95400000, + "value": "#c8c8c8" + }, + { + "chr": "14", + "end": 102200000, + "options": "label=q32.31,type=gneg", + "start": 100400000, + "value": "#ffffff" + }, + { + "chr": "14", + "end": 103000000, + "options": "label=q32.32,type=gpos50", + "start": 102200000, + "value": "#c8c8c8" + }, + { + "chr": "14", + "end": 106368585, + "options": "label=q32.33,type=gneg", + "start": 103000000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 3500000, + "options": "label=p13,type=gvar", + "start": 0, + "value": "#dcdcdc" + }, + { + "chr": "15", + "end": 7900000, + "options": "label=p12,type=stalk", + "start": 3500000, + "value": "#467fa4" + }, + { + "chr": "15", + "end": 14100000, + "options": "label=p11.2,type=gvar", + "start": 7900000, + "value": "#dcdcdc" + }, + { + "chr": "15", + "end": 17000000, + "options": "label=p11.1,type=acen", + "start": 14100000, + "value": "#d92f27" + }, + { + "chr": "15", + "end": 18400000, + "options": "label=q11.1,type=acen", + "start": 17000000, + "value": "#d92f27" + }, + { + "chr": "15", + "end": 23300000, + "options": "label=q11.2,type=gneg", + "start": 18400000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 25700000, + "options": "label=q12,type=gpos50", + "start": 23300000, + "value": "#c8c8c8" + }, + { + "chr": "15", + "end": 28000000, + "options": "label=q13.1,type=gneg", + "start": 25700000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 29000000, + "options": "label=q13.2,type=gpos50", + "start": 28000000, + "value": "#c8c8c8" + }, + { + "chr": "15", + "end": 31400000, + "options": "label=q13.3,type=gneg", + "start": 29000000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 37900000, + "options": "label=q14,type=gpos75", + "start": 31400000, + "value": "#828282" + }, + { + "chr": "15", + "end": 40700000, + "options": "label=q15.1,type=gneg", + "start": 37900000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 41400000, + "options": "label=q15.2,type=gpos25", + "start": 40700000, + "value": "#c8c8c8" + }, + { + "chr": "15", + "end": 42700000, + "options": "label=q15.3,type=gneg", + "start": 41400000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 47600000, + "options": "label=q21.1,type=gpos75", + "start": 42700000, + "value": "#828282" + }, + { + "chr": "15", + "end": 51100000, + "options": "label=q21.2,type=gneg", + "start": 47600000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 55800000, + "options": "label=q21.3,type=gpos75", + "start": 51100000, + "value": "#828282" + }, + { + "chr": "15", + "end": 57100000, + "options": "label=q22.1,type=gneg", + "start": 55800000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 61500000, + "options": "label=q22.2,type=gpos25", + "start": 57100000, + "value": "#c8c8c8" + }, + { + "chr": "15", + "end": 64900000, + "options": "label=q22.31,type=gneg", + "start": 61500000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 65000000, + "options": "label=q22.32,type=gpos25", + "start": 64900000, + "value": "#c8c8c8" + }, + { + "chr": "15", + "end": 65300000, + "options": "label=q22.33,type=gneg", + "start": 65000000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 70400000, + "options": "label=q23,type=gpos25", + "start": 65300000, + "value": "#c8c8c8" + }, + { + "chr": "15", + "end": 73100000, + "options": "label=q24.1,type=gneg", + "start": 70400000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 74400000, + "options": "label=q24.2,type=gpos25", + "start": 73100000, + "value": "#c8c8c8" + }, + { + "chr": "15", + "end": 76100000, + "options": "label=q24.3,type=gneg", + "start": 74400000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 79500000, + "options": "label=q25.1,type=gpos50", + "start": 76100000, + "value": "#c8c8c8" + }, + { + "chr": "15", + "end": 83000000, + "options": "label=q25.2,type=gneg", + "start": 79500000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 86900000, + "options": "label=q25.3,type=gpos50", + "start": 83000000, + "value": "#c8c8c8" + }, + { + "chr": "15", + "end": 92100000, + "options": "label=q26.1,type=gneg", + "start": 86900000, + "value": "#ffffff" + }, + { + "chr": "15", + "end": 96300000, + "options": "label=q26.2,type=gpos50", + "start": 92100000, + "value": "#c8c8c8" + }, + { + "chr": "15", + "end": 100338915, + "options": "label=q26.3,type=gneg", + "start": 96300000, + "value": "#ffffff" + }, + { + "chr": "16", + "end": 6300000, + "options": "label=p13.3,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "16", + "end": 10300000, + "options": "label=p13.2,type=gpos50", + "start": 6300000, + "value": "#c8c8c8" + }, + { + "chr": "16", + "end": 12500000, + "options": "label=p13.13,type=gneg", + "start": 10300000, + "value": "#ffffff" + }, + { + "chr": "16", + "end": 14700000, + "options": "label=p13.12,type=gpos50", + "start": 12500000, + "value": "#c8c8c8" + }, + { + "chr": "16", + "end": 16700000, + "options": "label=p13.11,type=gneg", + "start": 14700000, + "value": "#ffffff" + }, + { + "chr": "16", + "end": 20500000, + "options": "label=p12.3,type=gpos50", + "start": 16700000, + "value": "#c8c8c8" + }, + { + "chr": "16", + "end": 21700000, + "options": "label=p12.2,type=gneg", + "start": 20500000, + "value": "#ffffff" + }, + { + "chr": "16", + "end": 27600000, + "options": "label=p12.1,type=gpos50", + "start": 21700000, + "value": "#c8c8c8" + }, + { + "chr": "16", + "end": 34400000, + "options": "label=p11.2,type=gneg", + "start": 27600000, + "value": "#ffffff" + }, + { + "chr": "16", + "end": 38200000, + "options": "label=p11.1,type=acen", + "start": 34400000, + "value": "#d92f27" + }, + { + "chr": "16", + "end": 40700000, + "options": "label=q11.1,type=acen", + "start": 38200000, + "value": "#d92f27" + }, + { + "chr": "16", + "end": 45500000, + "options": "label=q11.2,type=gvar", + "start": 40700000, + "value": "#dcdcdc" + }, + { + "chr": "16", + "end": 51200000, + "options": "label=q12.1,type=gneg", + "start": 45500000, + "value": "#ffffff" + }, + { + "chr": "16", + "end": 54500000, + "options": "label=q12.2,type=gpos50", + "start": 51200000, + "value": "#c8c8c8" + }, + { + "chr": "16", + "end": 56700000, + "options": "label=q13,type=gneg", + "start": 54500000, + "value": "#ffffff" + }, + { + "chr": "16", + "end": 65200000, + "options": "label=q21,type=gpos100", + "start": 56700000, + "value": "#000" + }, + { + "chr": "16", + "end": 69400000, + "options": "label=q22.1,type=gneg", + "start": 65200000, + "value": "#ffffff" + }, + { + "chr": "16", + "end": 69800000, + "options": "label=q22.2,type=gpos50", + "start": 69400000, + "value": "#c8c8c8" + }, + { + "chr": "16", + "end": 73300000, + "options": "label=q22.3,type=gneg", + "start": 69800000, + "value": "#ffffff" + }, + { + "chr": "16", + "end": 78200000, + "options": "label=q23.1,type=gpos75", + "start": 73300000, + "value": "#828282" + }, + { + "chr": "16", + "end": 80500000, + "options": "label=q23.2,type=gneg", + "start": 78200000, + "value": "#ffffff" + }, + { + "chr": "16", + "end": 82700000, + "options": "label=q23.3,type=gpos50", + "start": 80500000, + "value": "#c8c8c8" + }, + { + "chr": "16", + "end": 85600000, + "options": "label=q24.1,type=gneg", + "start": 82700000, + "value": "#ffffff" + }, + { + "chr": "16", + "end": 87200000, + "options": "label=q24.2,type=gpos25", + "start": 85600000, + "value": "#c8c8c8" + }, + { + "chr": "16", + "end": 88827254, + "options": "label=q24.3,type=gneg", + "start": 87200000, + "value": "#ffffff" + }, + { + "chr": "17", + "end": 3600000, + "options": "label=p13.3,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "17", + "end": 6800000, + "options": "label=p13.2,type=gpos50", + "start": 3600000, + "value": "#c8c8c8" + }, + { + "chr": "17", + "end": 11200000, + "options": "label=p13.1,type=gneg", + "start": 6800000, + "value": "#ffffff" + }, + { + "chr": "17", + "end": 15900000, + "options": "label=p12,type=gpos75", + "start": 11200000, + "value": "#828282" + }, + { + "chr": "17", + "end": 22100000, + "options": "label=p11.2,type=gneg", + "start": 15900000, + "value": "#ffffff" + }, + { + "chr": "17", + "end": 22200000, + "options": "label=p11.1,type=acen", + "start": 22100000, + "value": "#d92f27" + }, + { + "chr": "17", + "end": 23200000, + "options": "label=q11.1,type=acen", + "start": 22200000, + "value": "#d92f27" + }, + { + "chr": "17", + "end": 28800000, + "options": "label=q11.2,type=gneg", + "start": 23200000, + "value": "#ffffff" + }, + { + "chr": "17", + "end": 35400000, + "options": "label=q12,type=gpos50", + "start": 28800000, + "value": "#c8c8c8" + }, + { + "chr": "17", + "end": 35600000, + "options": "label=q21.1,type=gneg", + "start": 35400000, + "value": "#ffffff" + }, + { + "chr": "17", + "end": 37800000, + "options": "label=q21.2,type=gpos25", + "start": 35600000, + "value": "#c8c8c8" + }, + { + "chr": "17", + "end": 41900000, + "options": "label=q21.31,type=gneg", + "start": 37800000, + "value": "#ffffff" + }, + { + "chr": "17", + "end": 44800000, + "options": "label=q21.32,type=gpos25", + "start": 41900000, + "value": "#c8c8c8" + }, + { + "chr": "17", + "end": 47600000, + "options": "label=q21.33,type=gneg", + "start": 44800000, + "value": "#ffffff" + }, + { + "chr": "17", + "end": 54900000, + "options": "label=q22,type=gpos75", + "start": 47600000, + "value": "#828282" + }, + { + "chr": "17", + "end": 55600000, + "options": "label=q23.1,type=gneg", + "start": 54900000, + "value": "#ffffff" + }, + { + "chr": "17", + "end": 58400000, + "options": "label=q23.2,type=gpos75", + "start": 55600000, + "value": "#828282" + }, + { + "chr": "17", + "end": 59900000, + "options": "label=q23.3,type=gneg", + "start": 58400000, + "value": "#ffffff" + }, + { + "chr": "17", + "end": 61600000, + "options": "label=q24.1,type=gpos50", + "start": 59900000, + "value": "#c8c8c8" + }, + { + "chr": "17", + "end": 64600000, + "options": "label=q24.2,type=gneg", + "start": 61600000, + "value": "#ffffff" + }, + { + "chr": "17", + "end": 68400000, + "options": "label=q24.3,type=gpos75", + "start": 64600000, + "value": "#828282" + }, + { + "chr": "17", + "end": 72200000, + "options": "label=q25.1,type=gneg", + "start": 68400000, + "value": "#ffffff" + }, + { + "chr": "17", + "end": 72900000, + "options": "label=q25.2,type=gpos25", + "start": 72200000, + "value": "#c8c8c8" + }, + { + "chr": "17", + "end": 78774742, + "options": "label=q25.3,type=gneg", + "start": 72900000, + "value": "#ffffff" + }, + { + "chr": "18", + "end": 2900000, + "options": "label=p11.32,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "18", + "end": 7200000, + "options": "label=p11.31,type=gpos50", + "start": 2900000, + "value": "#c8c8c8" + }, + { + "chr": "18", + "end": 8500000, + "options": "label=p11.23,type=gneg", + "start": 7200000, + "value": "#ffffff" + }, + { + "chr": "18", + "end": 10900000, + "options": "label=p11.22,type=gpos25", + "start": 8500000, + "value": "#c8c8c8" + }, + { + "chr": "18", + "end": 15400000, + "options": "label=p11.21,type=gneg", + "start": 10900000, + "value": "#ffffff" + }, + { + "chr": "18", + "end": 16100000, + "options": "label=p11.1,type=acen", + "start": 15400000, + "value": "#d92f27" + }, + { + "chr": "18", + "end": 17300000, + "options": "label=q11.1,type=acen", + "start": 16100000, + "value": "#d92f27" + }, + { + "chr": "18", + "end": 23300000, + "options": "label=q11.2,type=gneg", + "start": 17300000, + "value": "#ffffff" + }, + { + "chr": "18", + "end": 31000000, + "options": "label=q12.1,type=gpos100", + "start": 23300000, + "value": "#000" + }, + { + "chr": "18", + "end": 35500000, + "options": "label=q12.2,type=gneg", + "start": 31000000, + "value": "#ffffff" + }, + { + "chr": "18", + "end": 41800000, + "options": "label=q12.3,type=gpos75", + "start": 35500000, + "value": "#828282" + }, + { + "chr": "18", + "end": 46400000, + "options": "label=q21.1,type=gneg", + "start": 41800000, + "value": "#ffffff" + }, + { + "chr": "18", + "end": 52000000, + "options": "label=q21.2,type=gpos75", + "start": 46400000, + "value": "#828282" + }, + { + "chr": "18", + "end": 54400000, + "options": "label=q21.31,type=gneg", + "start": 52000000, + "value": "#ffffff" + }, + { + "chr": "18", + "end": 57100000, + "options": "label=q21.32,type=gpos50", + "start": 54400000, + "value": "#c8c8c8" + }, + { + "chr": "18", + "end": 59800000, + "options": "label=q21.33,type=gneg", + "start": 57100000, + "value": "#ffffff" + }, + { + "chr": "18", + "end": 64900000, + "options": "label=q22.1,type=gpos100", + "start": 59800000, + "value": "#000" + }, + { + "chr": "18", + "end": 66900000, + "options": "label=q22.2,type=gneg", + "start": 64900000, + "value": "#ffffff" + }, + { + "chr": "18", + "end": 71300000, + "options": "label=q22.3,type=gpos25", + "start": 66900000, + "value": "#c8c8c8" + }, + { + "chr": "18", + "end": 76117153, + "options": "label=q23,type=gneg", + "start": 71300000, + "value": "#ffffff" + }, + { + "chr": "19", + "end": 6900000, + "options": "label=p13.3,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "19", + "end": 12600000, + "options": "label=p13.2,type=gpos25", + "start": 6900000, + "value": "#c8c8c8" + }, + { + "chr": "19", + "end": 13800000, + "options": "label=p13.13,type=gneg", + "start": 12600000, + "value": "#ffffff" + }, + { + "chr": "19", + "end": 16100000, + "options": "label=p13.12,type=gpos25", + "start": 13800000, + "value": "#c8c8c8" + }, + { + "chr": "19", + "end": 19800000, + "options": "label=p13.11,type=gneg", + "start": 16100000, + "value": "#ffffff" + }, + { + "chr": "19", + "end": 26700000, + "options": "label=p12,type=gvar", + "start": 19800000, + "value": "#dcdcdc" + }, + { + "chr": "19", + "end": 28500000, + "options": "label=p11,type=acen", + "start": 26700000, + "value": "#d92f27" + }, + { + "chr": "19", + "end": 30200000, + "options": "label=q11,type=acen", + "start": 28500000, + "value": "#d92f27" + }, + { + "chr": "19", + "end": 37100000, + "options": "label=q12,type=gvar", + "start": 30200000, + "value": "#dcdcdc" + }, + { + "chr": "19", + "end": 40300000, + "options": "label=q13.11,type=gneg", + "start": 37100000, + "value": "#ffffff" + }, + { + "chr": "19", + "end": 43000000, + "options": "label=q13.12,type=gpos25", + "start": 40300000, + "value": "#c8c8c8" + }, + { + "chr": "19", + "end": 43400000, + "options": "label=q13.13,type=gneg", + "start": 43000000, + "value": "#ffffff" + }, + { + "chr": "19", + "end": 47800000, + "options": "label=q13.2,type=gpos25", + "start": 43400000, + "value": "#c8c8c8" + }, + { + "chr": "19", + "end": 50000000, + "options": "label=q13.31,type=gneg", + "start": 47800000, + "value": "#ffffff" + }, + { + "chr": "19", + "end": 53800000, + "options": "label=q13.32,type=gpos25", + "start": 50000000, + "value": "#c8c8c8" + }, + { + "chr": "19", + "end": 57600000, + "options": "label=q13.33,type=gneg", + "start": 53800000, + "value": "#ffffff" + }, + { + "chr": "19", + "end": 59100000, + "options": "label=q13.41,type=gpos25", + "start": 57600000, + "value": "#c8c8c8" + }, + { + "chr": "19", + "end": 61400000, + "options": "label=q13.42,type=gneg", + "start": 59100000, + "value": "#ffffff" + }, + { + "chr": "19", + "end": 63811651, + "options": "label=q13.43,type=gpos25", + "start": 61400000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 4300000, + "options": "label=p25.3,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 7000000, + "options": "label=p25.2,type=gpos50", + "start": 4300000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 12800000, + "options": "label=p25.1,type=gneg", + "start": 7000000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 17000000, + "options": "label=p24.3,type=gpos75", + "start": 12800000, + "value": "#828282" + }, + { + "chr": "2", + "end": 19100000, + "options": "label=p24.2,type=gneg", + "start": 17000000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 23900000, + "options": "label=p24.1,type=gpos75", + "start": 19100000, + "value": "#828282" + }, + { + "chr": "2", + "end": 27700000, + "options": "label=p23.3,type=gneg", + "start": 23900000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 29800000, + "options": "label=p23.2,type=gpos25", + "start": 27700000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 31900000, + "options": "label=p23.1,type=gneg", + "start": 29800000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 36400000, + "options": "label=p22.3,type=gpos75", + "start": 31900000, + "value": "#828282" + }, + { + "chr": "2", + "end": 38400000, + "options": "label=p22.2,type=gneg", + "start": 36400000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 41600000, + "options": "label=p22.1,type=gpos50", + "start": 38400000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 47600000, + "options": "label=p21,type=gneg", + "start": 41600000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 52700000, + "options": "label=p16.3,type=gpos100", + "start": 47600000, + "value": "#000" + }, + { + "chr": "2", + "end": 54800000, + "options": "label=p16.2,type=gneg", + "start": 52700000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 61100000, + "options": "label=p16.1,type=gpos100", + "start": 54800000, + "value": "#000" + }, + { + "chr": "2", + "end": 64000000, + "options": "label=p15,type=gneg", + "start": 61100000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 70500000, + "options": "label=p14,type=gpos50", + "start": 64000000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 72600000, + "options": "label=p13.3,type=gneg", + "start": 70500000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 73900000, + "options": "label=p13.2,type=gpos50", + "start": 72600000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 75400000, + "options": "label=p13.1,type=gneg", + "start": 73900000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 83700000, + "options": "label=p12,type=gpos100", + "start": 75400000, + "value": "#000" + }, + { + "chr": "2", + "end": 91000000, + "options": "label=p11.2,type=gneg", + "start": 83700000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 93300000, + "options": "label=p11.1,type=acen", + "start": 91000000, + "value": "#d92f27" + }, + { + "chr": "2", + "end": 95700000, + "options": "label=q11.1,type=acen", + "start": 93300000, + "value": "#d92f27" + }, + { + "chr": "2", + "end": 102100000, + "options": "label=q11.2,type=gneg", + "start": 95700000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 105300000, + "options": "label=q12.1,type=gpos50", + "start": 102100000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 106700000, + "options": "label=q12.2,type=gneg", + "start": 105300000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 108600000, + "options": "label=q12.3,type=gpos25", + "start": 106700000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 113800000, + "options": "label=q13,type=gneg", + "start": 108600000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 118600000, + "options": "label=q14.1,type=gpos50", + "start": 113800000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 122100000, + "options": "label=q14.2,type=gneg", + "start": 118600000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 129600000, + "options": "label=q14.3,type=gpos50", + "start": 122100000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 132200000, + "options": "label=q21.1,type=gneg", + "start": 129600000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 134800000, + "options": "label=q21.2,type=gpos25", + "start": 132200000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 136600000, + "options": "label=q21.3,type=gneg", + "start": 134800000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 142400000, + "options": "label=q22.1,type=gpos100", + "start": 136600000, + "value": "#000" + }, + { + "chr": "2", + "end": 144700000, + "options": "label=q22.2,type=gneg", + "start": 142400000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 148400000, + "options": "label=q22.3,type=gpos100", + "start": 144700000, + "value": "#000" + }, + { + "chr": "2", + "end": 149600000, + "options": "label=q23.1,type=gneg", + "start": 148400000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 150300000, + "options": "label=q23.2,type=gpos25", + "start": 149600000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 154600000, + "options": "label=q23.3,type=gneg", + "start": 150300000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 159600000, + "options": "label=q24.1,type=gpos75", + "start": 154600000, + "value": "#828282" + }, + { + "chr": "2", + "end": 163500000, + "options": "label=q24.2,type=gneg", + "start": 159600000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 169500000, + "options": "label=q24.3,type=gpos75", + "start": 163500000, + "value": "#828282" + }, + { + "chr": "2", + "end": 177700000, + "options": "label=q31.1,type=gneg", + "start": 169500000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 180400000, + "options": "label=q31.2,type=gpos50", + "start": 177700000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 182700000, + "options": "label=q31.3,type=gneg", + "start": 180400000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 189100000, + "options": "label=q32.1,type=gpos75", + "start": 182700000, + "value": "#828282" + }, + { + "chr": "2", + "end": 191600000, + "options": "label=q32.2,type=gneg", + "start": 189100000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 197100000, + "options": "label=q32.3,type=gpos75", + "start": 191600000, + "value": "#828282" + }, + { + "chr": "2", + "end": 203500000, + "options": "label=q33.1,type=gneg", + "start": 197100000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 205600000, + "options": "label=q33.2,type=gpos50", + "start": 203500000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 209100000, + "options": "label=q33.3,type=gneg", + "start": 205600000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 215100000, + "options": "label=q34,type=gpos100", + "start": 209100000, + "value": "#000" + }, + { + "chr": "2", + "end": 221300000, + "options": "label=q35,type=gneg", + "start": 215100000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 224900000, + "options": "label=q36.1,type=gpos75", + "start": 221300000, + "value": "#828282" + }, + { + "chr": "2", + "end": 225800000, + "options": "label=q36.2,type=gneg", + "start": 224900000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 230700000, + "options": "label=q36.3,type=gpos100", + "start": 225800000, + "value": "#000" + }, + { + "chr": "2", + "end": 235300000, + "options": "label=q37.1,type=gneg", + "start": 230700000, + "value": "#ffffff" + }, + { + "chr": "2", + "end": 237000000, + "options": "label=q37.2,type=gpos50", + "start": 235300000, + "value": "#c8c8c8" + }, + { + "chr": "2", + "end": 242951149, + "options": "label=q37.3,type=gneg", + "start": 237000000, + "value": "#ffffff" + }, + { + "chr": "20", + "end": 5000000, + "options": "label=p13,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "20", + "end": 9000000, + "options": "label=p12.3,type=gpos75", + "start": 5000000, + "value": "#828282" + }, + { + "chr": "20", + "end": 11900000, + "options": "label=p12.2,type=gneg", + "start": 9000000, + "value": "#ffffff" + }, + { + "chr": "20", + "end": 17800000, + "options": "label=p12.1,type=gpos75", + "start": 11900000, + "value": "#828282" + }, + { + "chr": "20", + "end": 21200000, + "options": "label=p11.23,type=gneg", + "start": 17800000, + "value": "#ffffff" + }, + { + "chr": "20", + "end": 22300000, + "options": "label=p11.22,type=gpos25", + "start": 21200000, + "value": "#c8c8c8" + }, + { + "chr": "20", + "end": 25700000, + "options": "label=p11.21,type=gneg", + "start": 22300000, + "value": "#ffffff" + }, + { + "chr": "20", + "end": 27100000, + "options": "label=p11.1,type=acen", + "start": 25700000, + "value": "#d92f27" + }, + { + "chr": "20", + "end": 28400000, + "options": "label=q11.1,type=acen", + "start": 27100000, + "value": "#d92f27" + }, + { + "chr": "20", + "end": 31500000, + "options": "label=q11.21,type=gneg", + "start": 28400000, + "value": "#ffffff" + }, + { + "chr": "20", + "end": 33900000, + "options": "label=q11.22,type=gpos25", + "start": 31500000, + "value": "#c8c8c8" + }, + { + "chr": "20", + "end": 37100000, + "options": "label=q11.23,type=gneg", + "start": 33900000, + "value": "#ffffff" + }, + { + "chr": "20", + "end": 41100000, + "options": "label=q12,type=gpos75", + "start": 37100000, + "value": "#828282" + }, + { + "chr": "20", + "end": 41600000, + "options": "label=q13.11,type=gneg", + "start": 41100000, + "value": "#ffffff" + }, + { + "chr": "20", + "end": 45800000, + "options": "label=q13.12,type=gpos25", + "start": 41600000, + "value": "#c8c8c8" + }, + { + "chr": "20", + "end": 49200000, + "options": "label=q13.13,type=gneg", + "start": 45800000, + "value": "#ffffff" + }, + { + "chr": "20", + "end": 54400000, + "options": "label=q13.2,type=gpos75", + "start": 49200000, + "value": "#828282" + }, + { + "chr": "20", + "end": 55900000, + "options": "label=q13.31,type=gneg", + "start": 54400000, + "value": "#ffffff" + }, + { + "chr": "20", + "end": 57900000, + "options": "label=q13.32,type=gpos50", + "start": 55900000, + "value": "#c8c8c8" + }, + { + "chr": "20", + "end": 62435964, + "options": "label=q13.33,type=gneg", + "start": 57900000, + "value": "#ffffff" + }, + { + "chr": "21", + "end": 2900000, + "options": "label=p13,type=gvar", + "start": 0, + "value": "#dcdcdc" + }, + { + "chr": "21", + "end": 6300000, + "options": "label=p12,type=stalk", + "start": 2900000, + "value": "#467fa4" + }, + { + "chr": "21", + "end": 10000000, + "options": "label=p11.2,type=gvar", + "start": 6300000, + "value": "#dcdcdc" + }, + { + "chr": "21", + "end": 12300000, + "options": "label=p11.1,type=acen", + "start": 10000000, + "value": "#d92f27" + }, + { + "chr": "21", + "end": 13200000, + "options": "label=q11.1,type=acen", + "start": 12300000, + "value": "#d92f27" + }, + { + "chr": "21", + "end": 15300000, + "options": "label=q11.2,type=gneg", + "start": 13200000, + "value": "#ffffff" + }, + { + "chr": "21", + "end": 22900000, + "options": "label=q21.1,type=gpos100", + "start": 15300000, + "value": "#000" + }, + { + "chr": "21", + "end": 25800000, + "options": "label=q21.2,type=gneg", + "start": 22900000, + "value": "#ffffff" + }, + { + "chr": "21", + "end": 30500000, + "options": "label=q21.3,type=gpos75", + "start": 25800000, + "value": "#828282" + }, + { + "chr": "21", + "end": 34700000, + "options": "label=q22.11,type=gneg", + "start": 30500000, + "value": "#ffffff" + }, + { + "chr": "21", + "end": 36700000, + "options": "label=q22.12,type=gpos50", + "start": 34700000, + "value": "#c8c8c8" + }, + { + "chr": "21", + "end": 38600000, + "options": "label=q22.13,type=gneg", + "start": 36700000, + "value": "#ffffff" + }, + { + "chr": "21", + "end": 41400000, + "options": "label=q22.2,type=gpos50", + "start": 38600000, + "value": "#c8c8c8" + }, + { + "chr": "21", + "end": 46944323, + "options": "label=q22.3,type=gneg", + "start": 41400000, + "value": "#ffffff" + }, + { + "chr": "22", + "end": 3000000, + "options": "label=p13,type=gvar", + "start": 0, + "value": "#dcdcdc" + }, + { + "chr": "22", + "end": 6600000, + "options": "label=p12,type=stalk", + "start": 3000000, + "value": "#467fa4" + }, + { + "chr": "22", + "end": 9600000, + "options": "label=p11.2,type=gvar", + "start": 6600000, + "value": "#dcdcdc" + }, + { + "chr": "22", + "end": 11800000, + "options": "label=p11.1,type=acen", + "start": 9600000, + "value": "#d92f27" + }, + { + "chr": "22", + "end": 16300000, + "options": "label=q11.1,type=acen", + "start": 11800000, + "value": "#d92f27" + }, + { + "chr": "22", + "end": 20500000, + "options": "label=q11.21,type=gneg", + "start": 16300000, + "value": "#ffffff" + }, + { + "chr": "22", + "end": 21800000, + "options": "label=q11.22,type=gpos25", + "start": 20500000, + "value": "#c8c8c8" + }, + { + "chr": "22", + "end": 24300000, + "options": "label=q11.23,type=gneg", + "start": 21800000, + "value": "#ffffff" + }, + { + "chr": "22", + "end": 27900000, + "options": "label=q12.1,type=gpos50", + "start": 24300000, + "value": "#c8c8c8" + }, + { + "chr": "22", + "end": 30500000, + "options": "label=q12.2,type=gneg", + "start": 27900000, + "value": "#ffffff" + }, + { + "chr": "22", + "end": 35900000, + "options": "label=q12.3,type=gpos50", + "start": 30500000, + "value": "#c8c8c8" + }, + { + "chr": "22", + "end": 39300000, + "options": "label=q13.1,type=gneg", + "start": 35900000, + "value": "#ffffff" + }, + { + "chr": "22", + "end": 42600000, + "options": "label=q13.2,type=gpos50", + "start": 39300000, + "value": "#c8c8c8" + }, + { + "chr": "22", + "end": 47000000, + "options": "label=q13.31,type=gneg", + "start": 42600000, + "value": "#ffffff" + }, + { + "chr": "22", + "end": 48200000, + "options": "label=q13.32,type=gpos50", + "start": 47000000, + "value": "#c8c8c8" + }, + { + "chr": "22", + "end": 49691432, + "options": "label=q13.33,type=gneg", + "start": 48200000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 3500000, + "options": "label=p26.3,type=gpos50", + "start": 0, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 5500000, + "options": "label=p26.2,type=gneg", + "start": 3500000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 8700000, + "options": "label=p26.1,type=gpos50", + "start": 5500000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 11500000, + "options": "label=p25.3,type=gneg", + "start": 8700000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 12400000, + "options": "label=p25.2,type=gpos25", + "start": 11500000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 14700000, + "options": "label=p25.1,type=gneg", + "start": 12400000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 23800000, + "options": "label=p24.3,type=gpos100", + "start": 14700000, + "value": "#000" + }, + { + "chr": "3", + "end": 26400000, + "options": "label=p24.2,type=gneg", + "start": 23800000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 30800000, + "options": "label=p24.1,type=gpos75", + "start": 26400000, + "value": "#828282" + }, + { + "chr": "3", + "end": 32100000, + "options": "label=p23,type=gneg", + "start": 30800000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 36500000, + "options": "label=p22.3,type=gpos50", + "start": 32100000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 39300000, + "options": "label=p22.2,type=gneg", + "start": 36500000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 43600000, + "options": "label=p22.1,type=gpos75", + "start": 39300000, + "value": "#828282" + }, + { + "chr": "3", + "end": 44400000, + "options": "label=p21.33,type=gneg", + "start": 43600000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 44700000, + "options": "label=p21.32,type=gpos50", + "start": 44400000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 51400000, + "options": "label=p21.31,type=gneg", + "start": 44700000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 51700000, + "options": "label=p21.2,type=gpos25", + "start": 51400000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 54400000, + "options": "label=p21.1,type=gneg", + "start": 51700000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 58500000, + "options": "label=p14.3,type=gpos50", + "start": 54400000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 63700000, + "options": "label=p14.2,type=gneg", + "start": 58500000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 71800000, + "options": "label=p14.1,type=gpos50", + "start": 63700000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 74200000, + "options": "label=p13,type=gneg", + "start": 71800000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 81800000, + "options": "label=p12.3,type=gpos75", + "start": 74200000, + "value": "#828282" + }, + { + "chr": "3", + "end": 83700000, + "options": "label=p12.2,type=gneg", + "start": 81800000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 87200000, + "options": "label=p12.1,type=gpos75", + "start": 83700000, + "value": "#828282" + }, + { + "chr": "3", + "end": 89400000, + "options": "label=p11.2,type=gneg", + "start": 87200000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 91700000, + "options": "label=p11.1,type=acen", + "start": 89400000, + "value": "#d92f27" + }, + { + "chr": "3", + "end": 93200000, + "options": "label=q11.1,type=acen", + "start": 91700000, + "value": "#d92f27" + }, + { + "chr": "3", + "end": 99800000, + "options": "label=q11.2,type=gvar", + "start": 93200000, + "value": "#dcdcdc" + }, + { + "chr": "3", + "end": 101500000, + "options": "label=q12.1,type=gneg", + "start": 99800000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 102500000, + "options": "label=q12.2,type=gpos25", + "start": 101500000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 104400000, + "options": "label=q12.3,type=gneg", + "start": 102500000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 107800000, + "options": "label=q13.11,type=gpos75", + "start": 104400000, + "value": "#828282" + }, + { + "chr": "3", + "end": 109500000, + "options": "label=q13.12,type=gneg", + "start": 107800000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 112800000, + "options": "label=q13.13,type=gpos50", + "start": 109500000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 115000000, + "options": "label=q13.2,type=gneg", + "start": 112800000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 118800000, + "options": "label=q13.31,type=gpos75", + "start": 115000000, + "value": "#828282" + }, + { + "chr": "3", + "end": 120500000, + "options": "label=q13.32,type=gneg", + "start": 118800000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 123400000, + "options": "label=q13.33,type=gpos75", + "start": 120500000, + "value": "#828282" + }, + { + "chr": "3", + "end": 125400000, + "options": "label=q21.1,type=gneg", + "start": 123400000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 127700000, + "options": "label=q21.2,type=gpos25", + "start": 125400000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 131500000, + "options": "label=q21.3,type=gneg", + "start": 127700000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 135700000, + "options": "label=q22.1,type=gpos25", + "start": 131500000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 137400000, + "options": "label=q22.2,type=gneg", + "start": 135700000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 140400000, + "options": "label=q22.3,type=gpos25", + "start": 137400000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 144400000, + "options": "label=q23,type=gneg", + "start": 140400000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 150400000, + "options": "label=q24,type=gpos100", + "start": 144400000, + "value": "#000" + }, + { + "chr": "3", + "end": 153500000, + "options": "label=q25.1,type=gneg", + "start": 150400000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 156300000, + "options": "label=q25.2,type=gpos50", + "start": 153500000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 158100000, + "options": "label=q25.31,type=gneg", + "start": 156300000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 159900000, + "options": "label=q25.32,type=gpos50", + "start": 158100000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 161200000, + "options": "label=q25.33,type=gneg", + "start": 159900000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 169200000, + "options": "label=q26.1,type=gpos100", + "start": 161200000, + "value": "#000" + }, + { + "chr": "3", + "end": 172500000, + "options": "label=q26.2,type=gneg", + "start": 169200000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 177300000, + "options": "label=q26.31,type=gpos75", + "start": 172500000, + "value": "#828282" + }, + { + "chr": "3", + "end": 180600000, + "options": "label=q26.32,type=gneg", + "start": 177300000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 184200000, + "options": "label=q26.33,type=gpos75", + "start": 180600000, + "value": "#828282" + }, + { + "chr": "3", + "end": 186000000, + "options": "label=q27.1,type=gneg", + "start": 184200000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 187500000, + "options": "label=q27.2,type=gpos25", + "start": 186000000, + "value": "#c8c8c8" + }, + { + "chr": "3", + "end": 189400000, + "options": "label=q27.3,type=gneg", + "start": 187500000, + "value": "#ffffff" + }, + { + "chr": "3", + "end": 193800000, + "options": "label=q28,type=gpos75", + "start": 189400000, + "value": "#828282" + }, + { + "chr": "3", + "end": 199501827, + "options": "label=q29,type=gneg", + "start": 193800000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 3100000, + "options": "label=p16.3,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 5200000, + "options": "label=p16.2,type=gpos25", + "start": 3100000, + "value": "#c8c8c8" + }, + { + "chr": "4", + "end": 10900000, + "options": "label=p16.1,type=gneg", + "start": 5200000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 15300000, + "options": "label=p15.33,type=gpos50", + "start": 10900000, + "value": "#c8c8c8" + }, + { + "chr": "4", + "end": 18500000, + "options": "label=p15.32,type=gneg", + "start": 15300000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 23100000, + "options": "label=p15.31,type=gpos75", + "start": 18500000, + "value": "#828282" + }, + { + "chr": "4", + "end": 27900000, + "options": "label=p15.2,type=gneg", + "start": 23100000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 35500000, + "options": "label=p15.1,type=gpos100", + "start": 27900000, + "value": "#000" + }, + { + "chr": "4", + "end": 40900000, + "options": "label=p14,type=gneg", + "start": 35500000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 45600000, + "options": "label=p13,type=gpos50", + "start": 40900000, + "value": "#c8c8c8" + }, + { + "chr": "4", + "end": 48700000, + "options": "label=p12,type=gneg", + "start": 45600000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 50700000, + "options": "label=p11,type=acen", + "start": 48700000, + "value": "#d92f27" + }, + { + "chr": "4", + "end": 52400000, + "options": "label=q11,type=acen", + "start": 50700000, + "value": "#d92f27" + }, + { + "chr": "4", + "end": 59200000, + "options": "label=q12,type=gneg", + "start": 52400000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 66300000, + "options": "label=q13.1,type=gpos100", + "start": 59200000, + "value": "#000" + }, + { + "chr": "4", + "end": 70400000, + "options": "label=q13.2,type=gneg", + "start": 66300000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 76500000, + "options": "label=q13.3,type=gpos75", + "start": 70400000, + "value": "#828282" + }, + { + "chr": "4", + "end": 79200000, + "options": "label=q21.1,type=gneg", + "start": 76500000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 82600000, + "options": "label=q21.21,type=gpos50", + "start": 79200000, + "value": "#c8c8c8" + }, + { + "chr": "4", + "end": 84300000, + "options": "label=q21.22,type=gneg", + "start": 82600000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 87100000, + "options": "label=q21.23,type=gpos25", + "start": 84300000, + "value": "#c8c8c8" + }, + { + "chr": "4", + "end": 88200000, + "options": "label=q21.3,type=gneg", + "start": 87100000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 94000000, + "options": "label=q22.1,type=gpos75", + "start": 88200000, + "value": "#828282" + }, + { + "chr": "4", + "end": 95400000, + "options": "label=q22.2,type=gneg", + "start": 94000000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 99100000, + "options": "label=q22.3,type=gpos75", + "start": 95400000, + "value": "#828282" + }, + { + "chr": "4", + "end": 102500000, + "options": "label=q23,type=gneg", + "start": 99100000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 107900000, + "options": "label=q24,type=gpos50", + "start": 102500000, + "value": "#c8c8c8" + }, + { + "chr": "4", + "end": 114100000, + "options": "label=q25,type=gneg", + "start": 107900000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 120600000, + "options": "label=q26,type=gpos75", + "start": 114100000, + "value": "#828282" + }, + { + "chr": "4", + "end": 124000000, + "options": "label=q27,type=gneg", + "start": 120600000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 129100000, + "options": "label=q28.1,type=gpos50", + "start": 124000000, + "value": "#c8c8c8" + }, + { + "chr": "4", + "end": 131300000, + "options": "label=q28.2,type=gneg", + "start": 129100000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 139500000, + "options": "label=q28.3,type=gpos100", + "start": 131300000, + "value": "#000" + }, + { + "chr": "4", + "end": 141700000, + "options": "label=q31.1,type=gneg", + "start": 139500000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 145000000, + "options": "label=q31.21,type=gpos25", + "start": 141700000, + "value": "#c8c8c8" + }, + { + "chr": "4", + "end": 147700000, + "options": "label=q31.22,type=gneg", + "start": 145000000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 151000000, + "options": "label=q31.23,type=gpos25", + "start": 147700000, + "value": "#c8c8c8" + }, + { + "chr": "4", + "end": 155100000, + "options": "label=q31.3,type=gneg", + "start": 151000000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 161500000, + "options": "label=q32.1,type=gpos100", + "start": 155100000, + "value": "#000" + }, + { + "chr": "4", + "end": 164500000, + "options": "label=q32.2,type=gneg", + "start": 161500000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 170400000, + "options": "label=q32.3,type=gpos100", + "start": 164500000, + "value": "#000" + }, + { + "chr": "4", + "end": 172200000, + "options": "label=q33,type=gneg", + "start": 170400000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 176600000, + "options": "label=q34.1,type=gpos75", + "start": 172200000, + "value": "#828282" + }, + { + "chr": "4", + "end": 177800000, + "options": "label=q34.2,type=gneg", + "start": 176600000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 182600000, + "options": "label=q34.3,type=gpos100", + "start": 177800000, + "value": "#000" + }, + { + "chr": "4", + "end": 187300000, + "options": "label=q35.1,type=gneg", + "start": 182600000, + "value": "#ffffff" + }, + { + "chr": "4", + "end": 191273063, + "options": "label=q35.2,type=gpos25", + "start": 187300000, + "value": "#c8c8c8" + }, + { + "chr": "5", + "end": 4400000, + "options": "label=p15.33,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 6000000, + "options": "label=p15.32,type=gpos25", + "start": 4400000, + "value": "#c8c8c8" + }, + { + "chr": "5", + "end": 8200000, + "options": "label=p15.31,type=gneg", + "start": 6000000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 15100000, + "options": "label=p15.2,type=gpos50", + "start": 8200000, + "value": "#c8c8c8" + }, + { + "chr": "5", + "end": 18500000, + "options": "label=p15.1,type=gneg", + "start": 15100000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 23300000, + "options": "label=p14.3,type=gpos100", + "start": 18500000, + "value": "#000" + }, + { + "chr": "5", + "end": 24700000, + "options": "label=p14.2,type=gneg", + "start": 23300000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 29300000, + "options": "label=p14.1,type=gpos100", + "start": 24700000, + "value": "#000" + }, + { + "chr": "5", + "end": 34400000, + "options": "label=p13.3,type=gneg", + "start": 29300000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 38500000, + "options": "label=p13.2,type=gpos25", + "start": 34400000, + "value": "#c8c8c8" + }, + { + "chr": "5", + "end": 42400000, + "options": "label=p13.1,type=gneg", + "start": 38500000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 45800000, + "options": "label=p12,type=gpos50", + "start": 42400000, + "value": "#c8c8c8" + }, + { + "chr": "5", + "end": 47700000, + "options": "label=p11,type=acen", + "start": 45800000, + "value": "#d92f27" + }, + { + "chr": "5", + "end": 50500000, + "options": "label=q11.1,type=acen", + "start": 47700000, + "value": "#d92f27" + }, + { + "chr": "5", + "end": 58900000, + "options": "label=q11.2,type=gneg", + "start": 50500000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 63000000, + "options": "label=q12.1,type=gpos75", + "start": 58900000, + "value": "#828282" + }, + { + "chr": "5", + "end": 63700000, + "options": "label=q12.2,type=gneg", + "start": 63000000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 66500000, + "options": "label=q12.3,type=gpos75", + "start": 63700000, + "value": "#828282" + }, + { + "chr": "5", + "end": 68400000, + "options": "label=q13.1,type=gneg", + "start": 66500000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 73300000, + "options": "label=q13.2,type=gpos50", + "start": 68400000, + "value": "#c8c8c8" + }, + { + "chr": "5", + "end": 76400000, + "options": "label=q13.3,type=gneg", + "start": 73300000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 81300000, + "options": "label=q14.1,type=gpos50", + "start": 76400000, + "value": "#c8c8c8" + }, + { + "chr": "5", + "end": 82800000, + "options": "label=q14.2,type=gneg", + "start": 81300000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 91900000, + "options": "label=q14.3,type=gpos100", + "start": 82800000, + "value": "#000" + }, + { + "chr": "5", + "end": 97300000, + "options": "label=q15,type=gneg", + "start": 91900000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 102800000, + "options": "label=q21.1,type=gpos100", + "start": 97300000, + "value": "#000" + }, + { + "chr": "5", + "end": 104500000, + "options": "label=q21.2,type=gneg", + "start": 102800000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 109600000, + "options": "label=q21.3,type=gpos100", + "start": 104500000, + "value": "#000" + }, + { + "chr": "5", + "end": 111500000, + "options": "label=q22.1,type=gneg", + "start": 109600000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 113100000, + "options": "label=q22.2,type=gpos50", + "start": 111500000, + "value": "#c8c8c8" + }, + { + "chr": "5", + "end": 115200000, + "options": "label=q22.3,type=gneg", + "start": 113100000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 121500000, + "options": "label=q23.1,type=gpos100", + "start": 115200000, + "value": "#000" + }, + { + "chr": "5", + "end": 127300000, + "options": "label=q23.2,type=gneg", + "start": 121500000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 130400000, + "options": "label=q23.3,type=gpos100", + "start": 127300000, + "value": "#000" + }, + { + "chr": "5", + "end": 135400000, + "options": "label=q31.1,type=gneg", + "start": 130400000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 139000000, + "options": "label=q31.2,type=gpos25", + "start": 135400000, + "value": "#c8c8c8" + }, + { + "chr": "5", + "end": 143100000, + "options": "label=q31.3,type=gneg", + "start": 139000000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 147200000, + "options": "label=q32,type=gpos75", + "start": 143100000, + "value": "#828282" + }, + { + "chr": "5", + "end": 152100000, + "options": "label=q33.1,type=gneg", + "start": 147200000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 155600000, + "options": "label=q33.2,type=gpos50", + "start": 152100000, + "value": "#c8c8c8" + }, + { + "chr": "5", + "end": 159900000, + "options": "label=q33.3,type=gneg", + "start": 155600000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 167400000, + "options": "label=q34,type=gpos100", + "start": 159900000, + "value": "#000" + }, + { + "chr": "5", + "end": 172200000, + "options": "label=q35.1,type=gneg", + "start": 167400000, + "value": "#ffffff" + }, + { + "chr": "5", + "end": 176500000, + "options": "label=q35.2,type=gpos25", + "start": 172200000, + "value": "#c8c8c8" + }, + { + "chr": "5", + "end": 180857866, + "options": "label=q35.3,type=gneg", + "start": 176500000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 2300000, + "options": "label=p25.3,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 4100000, + "options": "label=p25.2,type=gpos25", + "start": 2300000, + "value": "#c8c8c8" + }, + { + "chr": "6", + "end": 7000000, + "options": "label=p25.1,type=gneg", + "start": 4100000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 10600000, + "options": "label=p24.3,type=gpos50", + "start": 7000000, + "value": "#c8c8c8" + }, + { + "chr": "6", + "end": 11200000, + "options": "label=p24.2,type=gneg", + "start": 10600000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 13500000, + "options": "label=p24.1,type=gpos25", + "start": 11200000, + "value": "#c8c8c8" + }, + { + "chr": "6", + "end": 15500000, + "options": "label=p23,type=gneg", + "start": 13500000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 23500000, + "options": "label=p22.3,type=gpos75", + "start": 15500000, + "value": "#828282" + }, + { + "chr": "6", + "end": 26100000, + "options": "label=p22.2,type=gneg", + "start": 23500000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 29900000, + "options": "label=p22.1,type=gpos50", + "start": 26100000, + "value": "#c8c8c8" + }, + { + "chr": "6", + "end": 31900000, + "options": "label=p21.33,type=gneg", + "start": 29900000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 33600000, + "options": "label=p21.32,type=gpos25", + "start": 31900000, + "value": "#c8c8c8" + }, + { + "chr": "6", + "end": 36800000, + "options": "label=p21.31,type=gneg", + "start": 33600000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 40600000, + "options": "label=p21.2,type=gpos25", + "start": 36800000, + "value": "#c8c8c8" + }, + { + "chr": "6", + "end": 45200000, + "options": "label=p21.1,type=gneg", + "start": 40600000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 51100000, + "options": "label=p12.3,type=gpos100", + "start": 45200000, + "value": "#000" + }, + { + "chr": "6", + "end": 52600000, + "options": "label=p12.2,type=gneg", + "start": 51100000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 57200000, + "options": "label=p12.1,type=gpos100", + "start": 52600000, + "value": "#000" + }, + { + "chr": "6", + "end": 58400000, + "options": "label=p11.2,type=gneg", + "start": 57200000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 60500000, + "options": "label=p11.1,type=acen", + "start": 58400000, + "value": "#d92f27" + }, + { + "chr": "6", + "end": 63400000, + "options": "label=q11.1,type=acen", + "start": 60500000, + "value": "#d92f27" + }, + { + "chr": "6", + "end": 63500000, + "options": "label=q11.2,type=gneg", + "start": 63400000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 70000000, + "options": "label=q12,type=gpos100", + "start": 63500000, + "value": "#000" + }, + { + "chr": "6", + "end": 75900000, + "options": "label=q13,type=gneg", + "start": 70000000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 83900000, + "options": "label=q14.1,type=gpos50", + "start": 75900000, + "value": "#c8c8c8" + }, + { + "chr": "6", + "end": 84700000, + "options": "label=q14.2,type=gneg", + "start": 83900000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 87500000, + "options": "label=q14.3,type=gpos50", + "start": 84700000, + "value": "#c8c8c8" + }, + { + "chr": "6", + "end": 92100000, + "options": "label=q15,type=gneg", + "start": 87500000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 98700000, + "options": "label=q16.1,type=gpos100", + "start": 92100000, + "value": "#000" + }, + { + "chr": "6", + "end": 99900000, + "options": "label=q16.2,type=gneg", + "start": 98700000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 104800000, + "options": "label=q16.3,type=gpos100", + "start": 99900000, + "value": "#000" + }, + { + "chr": "6", + "end": 113900000, + "options": "label=q21,type=gneg", + "start": 104800000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 117100000, + "options": "label=q22.1,type=gpos75", + "start": 113900000, + "value": "#828282" + }, + { + "chr": "6", + "end": 118600000, + "options": "label=q22.2,type=gneg", + "start": 117100000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 126200000, + "options": "label=q22.31,type=gpos100", + "start": 118600000, + "value": "#000" + }, + { + "chr": "6", + "end": 127300000, + "options": "label=q22.32,type=gneg", + "start": 126200000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 130400000, + "options": "label=q22.33,type=gpos75", + "start": 127300000, + "value": "#828282" + }, + { + "chr": "6", + "end": 131300000, + "options": "label=q23.1,type=gneg", + "start": 130400000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 135200000, + "options": "label=q23.2,type=gpos50", + "start": 131300000, + "value": "#c8c8c8" + }, + { + "chr": "6", + "end": 139100000, + "options": "label=q23.3,type=gneg", + "start": 135200000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 142900000, + "options": "label=q24.1,type=gpos75", + "start": 139100000, + "value": "#828282" + }, + { + "chr": "6", + "end": 145700000, + "options": "label=q24.2,type=gneg", + "start": 142900000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 149100000, + "options": "label=q24.3,type=gpos75", + "start": 145700000, + "value": "#828282" + }, + { + "chr": "6", + "end": 152600000, + "options": "label=q25.1,type=gneg", + "start": 149100000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 155600000, + "options": "label=q25.2,type=gpos50", + "start": 152600000, + "value": "#c8c8c8" + }, + { + "chr": "6", + "end": 160900000, + "options": "label=q25.3,type=gneg", + "start": 155600000, + "value": "#ffffff" + }, + { + "chr": "6", + "end": 164400000, + "options": "label=q26,type=gpos50", + "start": 160900000, + "value": "#c8c8c8" + }, + { + "chr": "6", + "end": 170899992, + "options": "label=q27,type=gneg", + "start": 164400000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 2100000, + "options": "label=p22.3,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 4500000, + "options": "label=p22.2,type=gpos25", + "start": 2100000, + "value": "#c8c8c8" + }, + { + "chr": "7", + "end": 7200000, + "options": "label=p22.1,type=gneg", + "start": 4500000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 13300000, + "options": "label=p21.3,type=gpos100", + "start": 7200000, + "value": "#000" + }, + { + "chr": "7", + "end": 15200000, + "options": "label=p21.2,type=gneg", + "start": 13300000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 19500000, + "options": "label=p21.1,type=gpos100", + "start": 15200000, + "value": "#000" + }, + { + "chr": "7", + "end": 24900000, + "options": "label=p15.3,type=gneg", + "start": 19500000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 28000000, + "options": "label=p15.2,type=gpos50", + "start": 24900000, + "value": "#c8c8c8" + }, + { + "chr": "7", + "end": 31800000, + "options": "label=p15.1,type=gneg", + "start": 28000000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 35600000, + "options": "label=p14.3,type=gpos75", + "start": 31800000, + "value": "#828282" + }, + { + "chr": "7", + "end": 37500000, + "options": "label=p14.2,type=gneg", + "start": 35600000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 43300000, + "options": "label=p14.1,type=gpos75", + "start": 37500000, + "value": "#828282" + }, + { + "chr": "7", + "end": 46600000, + "options": "label=p13,type=gneg", + "start": 43300000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 49800000, + "options": "label=p12.3,type=gpos75", + "start": 46600000, + "value": "#828282" + }, + { + "chr": "7", + "end": 50900000, + "options": "label=p12.2,type=gneg", + "start": 49800000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 53900000, + "options": "label=p12.1,type=gpos75", + "start": 50900000, + "value": "#828282" + }, + { + "chr": "7", + "end": 57400000, + "options": "label=p11.2,type=gneg", + "start": 53900000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 59100000, + "options": "label=p11.1,type=acen", + "start": 57400000, + "value": "#d92f27" + }, + { + "chr": "7", + "end": 61100000, + "options": "label=q11.1,type=acen", + "start": 59100000, + "value": "#d92f27" + }, + { + "chr": "7", + "end": 66100000, + "options": "label=q11.21,type=gneg", + "start": 61100000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 71800000, + "options": "label=q11.22,type=gpos50", + "start": 66100000, + "value": "#c8c8c8" + }, + { + "chr": "7", + "end": 77400000, + "options": "label=q11.23,type=gneg", + "start": 71800000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 86200000, + "options": "label=q21.11,type=gpos100", + "start": 77400000, + "value": "#000" + }, + { + "chr": "7", + "end": 88000000, + "options": "label=q21.12,type=gneg", + "start": 86200000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 90900000, + "options": "label=q21.13,type=gpos75", + "start": 88000000, + "value": "#828282" + }, + { + "chr": "7", + "end": 92600000, + "options": "label=q21.2,type=gneg", + "start": 90900000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 97900000, + "options": "label=q21.3,type=gpos75", + "start": 92600000, + "value": "#828282" + }, + { + "chr": "7", + "end": 104400000, + "options": "label=q22.1,type=gneg", + "start": 97900000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 105900000, + "options": "label=q22.2,type=gpos50", + "start": 104400000, + "value": "#c8c8c8" + }, + { + "chr": "7", + "end": 107200000, + "options": "label=q22.3,type=gneg", + "start": 105900000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 114400000, + "options": "label=q31.1,type=gpos75", + "start": 107200000, + "value": "#828282" + }, + { + "chr": "7", + "end": 117200000, + "options": "label=q31.2,type=gneg", + "start": 114400000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 120900000, + "options": "label=q31.31,type=gpos75", + "start": 117200000, + "value": "#828282" + }, + { + "chr": "7", + "end": 123600000, + "options": "label=q31.32,type=gneg", + "start": 120900000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 126900000, + "options": "label=q31.33,type=gpos75", + "start": 123600000, + "value": "#828282" + }, + { + "chr": "7", + "end": 129000000, + "options": "label=q32.1,type=gneg", + "start": 126900000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 130100000, + "options": "label=q32.2,type=gpos25", + "start": 129000000, + "value": "#c8c8c8" + }, + { + "chr": "7", + "end": 132400000, + "options": "label=q32.3,type=gneg", + "start": 130100000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 137300000, + "options": "label=q33,type=gpos50", + "start": 132400000, + "value": "#c8c8c8" + }, + { + "chr": "7", + "end": 142800000, + "options": "label=q34,type=gneg", + "start": 137300000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 147500000, + "options": "label=q35,type=gpos75", + "start": 142800000, + "value": "#828282" + }, + { + "chr": "7", + "end": 152200000, + "options": "label=q36.1,type=gneg", + "start": 147500000, + "value": "#ffffff" + }, + { + "chr": "7", + "end": 154700000, + "options": "label=q36.2,type=gpos25", + "start": 152200000, + "value": "#c8c8c8" + }, + { + "chr": "7", + "end": 158821424, + "options": "label=q36.3,type=gneg", + "start": 154700000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 2200000, + "options": "label=p23.3,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 6200000, + "options": "label=p23.2,type=gpos75", + "start": 2200000, + "value": "#828282" + }, + { + "chr": "8", + "end": 12700000, + "options": "label=p23.1,type=gneg", + "start": 6200000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 19100000, + "options": "label=p22,type=gpos100", + "start": 12700000, + "value": "#000" + }, + { + "chr": "8", + "end": 23400000, + "options": "label=p21.3,type=gneg", + "start": 19100000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 27400000, + "options": "label=p21.2,type=gpos50", + "start": 23400000, + "value": "#c8c8c8" + }, + { + "chr": "8", + "end": 29700000, + "options": "label=p21.1,type=gneg", + "start": 27400000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 38500000, + "options": "label=p12,type=gpos75", + "start": 29700000, + "value": "#828282" + }, + { + "chr": "8", + "end": 39500000, + "options": "label=p11.23,type=gneg", + "start": 38500000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 39900000, + "options": "label=p11.22,type=gpos25", + "start": 39500000, + "value": "#c8c8c8" + }, + { + "chr": "8", + "end": 43200000, + "options": "label=p11.21,type=gneg", + "start": 39900000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 45200000, + "options": "label=p11.1,type=acen", + "start": 43200000, + "value": "#d92f27" + }, + { + "chr": "8", + "end": 48100000, + "options": "label=q11.1,type=acen", + "start": 45200000, + "value": "#d92f27" + }, + { + "chr": "8", + "end": 50400000, + "options": "label=q11.21,type=gneg", + "start": 48100000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 52800000, + "options": "label=q11.22,type=gpos75", + "start": 50400000, + "value": "#828282" + }, + { + "chr": "8", + "end": 55600000, + "options": "label=q11.23,type=gneg", + "start": 52800000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 61700000, + "options": "label=q12.1,type=gpos50", + "start": 55600000, + "value": "#c8c8c8" + }, + { + "chr": "8", + "end": 62400000, + "options": "label=q12.2,type=gneg", + "start": 61700000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 66100000, + "options": "label=q12.3,type=gpos50", + "start": 62400000, + "value": "#c8c8c8" + }, + { + "chr": "8", + "end": 68100000, + "options": "label=q13.1,type=gneg", + "start": 66100000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 70600000, + "options": "label=q13.2,type=gpos50", + "start": 68100000, + "value": "#c8c8c8" + }, + { + "chr": "8", + "end": 74000000, + "options": "label=q13.3,type=gneg", + "start": 70600000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 78500000, + "options": "label=q21.11,type=gpos100", + "start": 74000000, + "value": "#000" + }, + { + "chr": "8", + "end": 80300000, + "options": "label=q21.12,type=gneg", + "start": 78500000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 84900000, + "options": "label=q21.13,type=gpos75", + "start": 80300000, + "value": "#828282" + }, + { + "chr": "8", + "end": 87200000, + "options": "label=q21.2,type=gneg", + "start": 84900000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 93500000, + "options": "label=q21.3,type=gpos100", + "start": 87200000, + "value": "#000" + }, + { + "chr": "8", + "end": 99100000, + "options": "label=q22.1,type=gneg", + "start": 93500000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 101600000, + "options": "label=q22.2,type=gpos25", + "start": 99100000, + "value": "#c8c8c8" + }, + { + "chr": "8", + "end": 106100000, + "options": "label=q22.3,type=gneg", + "start": 101600000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 110600000, + "options": "label=q23.1,type=gpos75", + "start": 106100000, + "value": "#828282" + }, + { + "chr": "8", + "end": 112200000, + "options": "label=q23.2,type=gneg", + "start": 110600000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 117700000, + "options": "label=q23.3,type=gpos100", + "start": 112200000, + "value": "#000" + }, + { + "chr": "8", + "end": 119200000, + "options": "label=q24.11,type=gneg", + "start": 117700000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 122500000, + "options": "label=q24.12,type=gpos50", + "start": 119200000, + "value": "#c8c8c8" + }, + { + "chr": "8", + "end": 127300000, + "options": "label=q24.13,type=gneg", + "start": 122500000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 131500000, + "options": "label=q24.21,type=gpos50", + "start": 127300000, + "value": "#c8c8c8" + }, + { + "chr": "8", + "end": 136500000, + "options": "label=q24.22,type=gneg", + "start": 131500000, + "value": "#ffffff" + }, + { + "chr": "8", + "end": 140000000, + "options": "label=q24.23,type=gpos75", + "start": 136500000, + "value": "#828282" + }, + { + "chr": "8", + "end": 146274826, + "options": "label=q24.3,type=gneg", + "start": 140000000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 2200000, + "options": "label=p24.3,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 4600000, + "options": "label=p24.2,type=gpos25", + "start": 2200000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 9000000, + "options": "label=p24.1,type=gneg", + "start": 4600000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 14100000, + "options": "label=p23,type=gpos75", + "start": 9000000, + "value": "#828282" + }, + { + "chr": "9", + "end": 16600000, + "options": "label=p22.3,type=gneg", + "start": 14100000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 18500000, + "options": "label=p22.2,type=gpos25", + "start": 16600000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 19900000, + "options": "label=p22.1,type=gneg", + "start": 18500000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 25500000, + "options": "label=p21.3,type=gpos100", + "start": 19900000, + "value": "#000" + }, + { + "chr": "9", + "end": 28100000, + "options": "label=p21.2,type=gneg", + "start": 25500000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 32800000, + "options": "label=p21.1,type=gpos100", + "start": 28100000, + "value": "#000" + }, + { + "chr": "9", + "end": 36300000, + "options": "label=p13.3,type=gneg", + "start": 32800000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 38000000, + "options": "label=p13.2,type=gpos25", + "start": 36300000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 40200000, + "options": "label=p13.1,type=gneg", + "start": 38000000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 42400000, + "options": "label=p12,type=gpos50", + "start": 40200000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 46700000, + "options": "label=p11.2,type=gneg", + "start": 42400000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 51800000, + "options": "label=p11.1,type=acen", + "start": 46700000, + "value": "#d92f27" + }, + { + "chr": "9", + "end": 60300000, + "options": "label=q11,type=acen", + "start": 51800000, + "value": "#d92f27" + }, + { + "chr": "9", + "end": 70000000, + "options": "label=q12,type=gvar", + "start": 60300000, + "value": "#dcdcdc" + }, + { + "chr": "9", + "end": 70500000, + "options": "label=q13,type=gneg", + "start": 70000000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 72700000, + "options": "label=q21.11,type=gpos25", + "start": 70500000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 73100000, + "options": "label=q21.12,type=gneg", + "start": 72700000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 79300000, + "options": "label=q21.13,type=gpos50", + "start": 73100000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 80300000, + "options": "label=q21.2,type=gneg", + "start": 79300000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 83400000, + "options": "label=q21.31,type=gpos50", + "start": 80300000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 86100000, + "options": "label=q21.32,type=gneg", + "start": 83400000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 89600000, + "options": "label=q21.33,type=gpos50", + "start": 86100000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 91000000, + "options": "label=q22.1,type=gneg", + "start": 89600000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 93000000, + "options": "label=q22.2,type=gpos25", + "start": 91000000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 95600000, + "options": "label=q22.31,type=gneg", + "start": 93000000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 98200000, + "options": "label=q22.32,type=gpos25", + "start": 95600000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 101600000, + "options": "label=q22.33,type=gneg", + "start": 98200000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 107200000, + "options": "label=q31.1,type=gpos100", + "start": 101600000, + "value": "#000" + }, + { + "chr": "9", + "end": 110300000, + "options": "label=q31.2,type=gneg", + "start": 107200000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 113900000, + "options": "label=q31.3,type=gpos25", + "start": 110300000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 116700000, + "options": "label=q32,type=gneg", + "start": 113900000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 122000000, + "options": "label=q33.1,type=gpos75", + "start": 116700000, + "value": "#828282" + }, + { + "chr": "9", + "end": 125800000, + "options": "label=q33.2,type=gneg", + "start": 122000000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 129300000, + "options": "label=q33.3,type=gpos25", + "start": 125800000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 132500000, + "options": "label=q34.11,type=gneg", + "start": 129300000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 132800000, + "options": "label=q34.12,type=gpos25", + "start": 132500000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 134900000, + "options": "label=q34.13,type=gneg", + "start": 132800000, + "value": "#ffffff" + }, + { + "chr": "9", + "end": 136600000, + "options": "label=q34.2,type=gpos25", + "start": 134900000, + "value": "#c8c8c8" + }, + { + "chr": "9", + "end": 140273252, + "options": "label=q34.3,type=gneg", + "start": 136600000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 4300000, + "options": "label=p22.33,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 6000000, + "options": "label=p22.32,type=gpos50", + "start": 4300000, + "value": "#c8c8c8" + }, + { + "chr": "X", + "end": 9500000, + "options": "label=p22.31,type=gneg", + "start": 6000000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 17100000, + "options": "label=p22.2,type=gpos50", + "start": 9500000, + "value": "#c8c8c8" + }, + { + "chr": "X", + "end": 19200000, + "options": "label=p22.13,type=gneg", + "start": 17100000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 21800000, + "options": "label=p22.12,type=gpos50", + "start": 19200000, + "value": "#c8c8c8" + }, + { + "chr": "X", + "end": 24900000, + "options": "label=p22.11,type=gneg", + "start": 21800000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 29400000, + "options": "label=p21.3,type=gpos100", + "start": 24900000, + "value": "#000" + }, + { + "chr": "X", + "end": 31500000, + "options": "label=p21.2,type=gneg", + "start": 29400000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 37500000, + "options": "label=p21.1,type=gpos100", + "start": 31500000, + "value": "#000" + }, + { + "chr": "X", + "end": 42300000, + "options": "label=p11.4,type=gneg", + "start": 37500000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 47300000, + "options": "label=p11.3,type=gpos75", + "start": 42300000, + "value": "#828282" + }, + { + "chr": "X", + "end": 49700000, + "options": "label=p11.23,type=gneg", + "start": 47300000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 54700000, + "options": "label=p11.22,type=gpos25", + "start": 49700000, + "value": "#c8c8c8" + }, + { + "chr": "X", + "end": 56600000, + "options": "label=p11.21,type=gneg", + "start": 54700000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 59500000, + "options": "label=p11.1,type=acen", + "start": 56600000, + "value": "#d92f27" + }, + { + "chr": "X", + "end": 65000000, + "options": "label=q11.1,type=acen", + "start": 59500000, + "value": "#d92f27" + }, + { + "chr": "X", + "end": 65100000, + "options": "label=q11.2,type=gneg", + "start": 65000000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 67700000, + "options": "label=q12,type=gpos50", + "start": 65100000, + "value": "#c8c8c8" + }, + { + "chr": "X", + "end": 72200000, + "options": "label=q13.1,type=gneg", + "start": 67700000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 73800000, + "options": "label=q13.2,type=gpos50", + "start": 72200000, + "value": "#c8c8c8" + }, + { + "chr": "X", + "end": 76000000, + "options": "label=q13.3,type=gneg", + "start": 73800000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 84500000, + "options": "label=q21.1,type=gpos100", + "start": 76000000, + "value": "#000" + }, + { + "chr": "X", + "end": 86200000, + "options": "label=q21.2,type=gneg", + "start": 84500000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 91900000, + "options": "label=q21.31,type=gpos100", + "start": 86200000, + "value": "#000" + }, + { + "chr": "X", + "end": 93500000, + "options": "label=q21.32,type=gneg", + "start": 91900000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 98200000, + "options": "label=q21.33,type=gpos75", + "start": 93500000, + "value": "#828282" + }, + { + "chr": "X", + "end": 102500000, + "options": "label=q22.1,type=gneg", + "start": 98200000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 103600000, + "options": "label=q22.2,type=gpos50", + "start": 102500000, + "value": "#c8c8c8" + }, + { + "chr": "X", + "end": 110500000, + "options": "label=q22.3,type=gneg", + "start": 103600000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 116800000, + "options": "label=q23,type=gpos75", + "start": 110500000, + "value": "#828282" + }, + { + "chr": "X", + "end": 120700000, + "options": "label=q24,type=gneg", + "start": 116800000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 129800000, + "options": "label=q25,type=gpos100", + "start": 120700000, + "value": "#000" + }, + { + "chr": "X", + "end": 130300000, + "options": "label=q26.1,type=gneg", + "start": 129800000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 133500000, + "options": "label=q26.2,type=gpos25", + "start": 130300000, + "value": "#c8c8c8" + }, + { + "chr": "X", + "end": 137800000, + "options": "label=q26.3,type=gneg", + "start": 133500000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 140100000, + "options": "label=q27.1,type=gpos75", + "start": 137800000, + "value": "#828282" + }, + { + "chr": "X", + "end": 141900000, + "options": "label=q27.2,type=gneg", + "start": 140100000, + "value": "#ffffff" + }, + { + "chr": "X", + "end": 146900000, + "options": "label=q27.3,type=gpos100", + "start": 141900000, + "value": "#000" + }, + { + "chr": "X", + "end": 154913754, + "options": "label=q28,type=gneg", + "start": 146900000, + "value": "#ffffff" + }, + { + "chr": "Y", + "end": 1700000, + "options": "label=p11.32,type=gneg", + "start": 0, + "value": "#ffffff" + }, + { + "chr": "Y", + "end": 3300000, + "options": "label=p11.31,type=gpos50", + "start": 1700000, + "value": "#c8c8c8" + }, + { + "chr": "Y", + "end": 11200000, + "options": "label=p11.2,type=gneg", + "start": 3300000, + "value": "#ffffff" + }, + { + "chr": "Y", + "end": 11300000, + "options": "label=p11.1,type=acen", + "start": 11200000, + "value": "#d92f27" + }, + { + "chr": "Y", + "end": 12500000, + "options": "label=q11.1,type=acen", + "start": 11300000, + "value": "#d92f27" + }, + { + "chr": "Y", + "end": 14300000, + "options": "label=q11.21,type=gneg", + "start": 12500000, + "value": "#ffffff" + }, + { + "chr": "Y", + "end": 19000000, + "options": "label=q11.221,type=gpos50", + "start": 14300000, + "value": "#c8c8c8" + }, + { + "chr": "Y", + "end": 21300000, + "options": "label=q11.222,type=gneg", + "start": 19000000, + "value": "#ffffff" + }, + { + "chr": "Y", + "end": 25400000, + "options": "label=q11.223,type=gpos50", + "start": 21300000, + "value": "#c8c8c8" + }, + { + "chr": "Y", + "end": 27200000, + "options": "label=q11.23,type=gneg", + "start": 25400000, + "value": "#ffffff" + }, + { + "chr": "Y", + "end": 57772954, + "options": "label=q12,type=gvar", + "start": 27200000, + "value": "#dcdcdc" + } +]; \ No newline at end of file diff --git a/src/webapp/data/cytoband.hg19.json b/src/webapp/data/cytoband.hg19.json new file mode 100644 index 0000000..907dcb1 --- /dev/null +++ b/src/webapp/data/cytoband.hg19.json @@ -0,0 +1,6036 @@ +var cytoband = [ + { + "start": 0, + "chr": "1", + "end": 2300000, + "options": "label=p36.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 2300000, + "chr": "1", + "end": 5400000, + "options": "label=p36.32;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 5400000, + "chr": "1", + "end": 7200000, + "options": "label=p36.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 7200000, + "chr": "1", + "end": 9200000, + "options": "label=p36.23;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 9200000, + "chr": "1", + "end": 12700000, + "options": "label=p36.22;type=gneg;", + "value": "#ffffff" + }, + { + "start": 12700000, + "chr": "1", + "end": 16200000, + "options": "label=p36.21;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 16200000, + "chr": "1", + "end": 20400000, + "options": "label=p36.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 20400000, + "chr": "1", + "end": 23900000, + "options": "label=p36.12;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 23900000, + "chr": "1", + "end": 28000000, + "options": "label=p36.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 28000000, + "chr": "1", + "end": 30200000, + "options": "label=p35.3;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 30200000, + "chr": "1", + "end": 32400000, + "options": "label=p35.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 32400000, + "chr": "1", + "end": 34600000, + "options": "label=p35.1;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 34600000, + "chr": "1", + "end": 40100000, + "options": "label=p34.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 40100000, + "chr": "1", + "end": 44100000, + "options": "label=p34.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 44100000, + "chr": "1", + "end": 46800000, + "options": "label=p34.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 46800000, + "chr": "1", + "end": 50700000, + "options": "label=p33;type=gpos75;", + "value": "#828282" + }, + { + "start": 50700000, + "chr": "1", + "end": 56100000, + "options": "label=p32.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 56100000, + "chr": "1", + "end": 59000000, + "options": "label=p32.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 59000000, + "chr": "1", + "end": 61300000, + "options": "label=p32.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 61300000, + "chr": "1", + "end": 68900000, + "options": "label=p31.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 68900000, + "chr": "1", + "end": 69700000, + "options": "label=p31.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 69700000, + "chr": "1", + "end": 84900000, + "options": "label=p31.1;type=gpos100;", + "value": "#000" + }, + { + "start": 84900000, + "chr": "1", + "end": 88400000, + "options": "label=p22.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 88400000, + "chr": "1", + "end": 92000000, + "options": "label=p22.2;type=gpos75;", + "value": "#828282" + }, + { + "start": 92000000, + "chr": "1", + "end": 94700000, + "options": "label=p22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 94700000, + "chr": "1", + "end": 99700000, + "options": "label=p21.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 99700000, + "chr": "1", + "end": 102200000, + "options": "label=p21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 102200000, + "chr": "1", + "end": 107200000, + "options": "label=p21.1;type=gpos100;", + "value": "#000" + }, + { + "start": 107200000, + "chr": "1", + "end": 111800000, + "options": "label=p13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 111800000, + "chr": "1", + "end": 116100000, + "options": "label=p13.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 116100000, + "chr": "1", + "end": 117800000, + "options": "label=p13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 117800000, + "chr": "1", + "end": 120600000, + "options": "label=p12;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 120600000, + "chr": "1", + "end": 121500000, + "options": "label=p11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 121500000, + "chr": "1", + "end": 125000000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 125000000, + "chr": "1", + "end": 128900000, + "options": "label=q11;type=acen;", + "value": "#d92f27" + }, + { + "start": 128900000, + "chr": "1", + "end": 142600000, + "options": "label=q12;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 142600000, + "chr": "1", + "end": 147000000, + "options": "label=q21.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 147000000, + "chr": "1", + "end": 150300000, + "options": "label=q21.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 150300000, + "chr": "1", + "end": 155000000, + "options": "label=q21.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 155000000, + "chr": "1", + "end": 156500000, + "options": "label=q22;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 156500000, + "chr": "1", + "end": 159100000, + "options": "label=q23.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 159100000, + "chr": "1", + "end": 160500000, + "options": "label=q23.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 160500000, + "chr": "1", + "end": 165500000, + "options": "label=q23.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 165500000, + "chr": "1", + "end": 167200000, + "options": "label=q24.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 167200000, + "chr": "1", + "end": 170900000, + "options": "label=q24.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 170900000, + "chr": "1", + "end": 172900000, + "options": "label=q24.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 172900000, + "chr": "1", + "end": 176000000, + "options": "label=q25.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 176000000, + "chr": "1", + "end": 180300000, + "options": "label=q25.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 180300000, + "chr": "1", + "end": 185800000, + "options": "label=q25.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 185800000, + "chr": "1", + "end": 190800000, + "options": "label=q31.1;type=gpos100;", + "value": "#000" + }, + { + "start": 190800000, + "chr": "1", + "end": 193800000, + "options": "label=q31.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 193800000, + "chr": "1", + "end": 198700000, + "options": "label=q31.3;type=gpos100;", + "value": "#000" + }, + { + "start": 198700000, + "chr": "1", + "end": 207200000, + "options": "label=q32.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 207200000, + "chr": "1", + "end": 211500000, + "options": "label=q32.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 211500000, + "chr": "1", + "end": 214500000, + "options": "label=q32.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 214500000, + "chr": "1", + "end": 224100000, + "options": "label=q41;type=gpos100;", + "value": "#000" + }, + { + "start": 224100000, + "chr": "1", + "end": 224600000, + "options": "label=q42.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 224600000, + "chr": "1", + "end": 227000000, + "options": "label=q42.12;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 227000000, + "chr": "1", + "end": 230700000, + "options": "label=q42.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 230700000, + "chr": "1", + "end": 234700000, + "options": "label=q42.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 234700000, + "chr": "1", + "end": 236600000, + "options": "label=q42.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 236600000, + "chr": "1", + "end": 243700000, + "options": "label=q43;type=gpos75;", + "value": "#828282" + }, + { + "start": 243700000, + "chr": "1", + "end": 249250621, + "options": "label=q44;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "10", + "end": 3000000, + "options": "label=p15.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 3000000, + "chr": "10", + "end": 3800000, + "options": "label=p15.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 3800000, + "chr": "10", + "end": 6600000, + "options": "label=p15.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 6600000, + "chr": "10", + "end": 12200000, + "options": "label=p14;type=gpos75;", + "value": "#828282" + }, + { + "start": 12200000, + "chr": "10", + "end": 17300000, + "options": "label=p13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 17300000, + "chr": "10", + "end": 18600000, + "options": "label=p12.33;type=gpos75;", + "value": "#828282" + }, + { + "start": 18600000, + "chr": "10", + "end": 18700000, + "options": "label=p12.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 18700000, + "chr": "10", + "end": 22600000, + "options": "label=p12.31;type=gpos75;", + "value": "#828282" + }, + { + "start": 22600000, + "chr": "10", + "end": 24600000, + "options": "label=p12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 24600000, + "chr": "10", + "end": 29600000, + "options": "label=p12.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 29600000, + "chr": "10", + "end": 31300000, + "options": "label=p11.23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 31300000, + "chr": "10", + "end": 34400000, + "options": "label=p11.22;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 34400000, + "chr": "10", + "end": 38000000, + "options": "label=p11.21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 38000000, + "chr": "10", + "end": 40200000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 40200000, + "chr": "10", + "end": 42300000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 42300000, + "chr": "10", + "end": 46100000, + "options": "label=q11.21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 46100000, + "chr": "10", + "end": 49900000, + "options": "label=q11.22;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 49900000, + "chr": "10", + "end": 52900000, + "options": "label=q11.23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 52900000, + "chr": "10", + "end": 61200000, + "options": "label=q21.1;type=gpos100;", + "value": "#000" + }, + { + "start": 61200000, + "chr": "10", + "end": 64500000, + "options": "label=q21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 64500000, + "chr": "10", + "end": 70600000, + "options": "label=q21.3;type=gpos100;", + "value": "#000" + }, + { + "start": 70600000, + "chr": "10", + "end": 74900000, + "options": "label=q22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 74900000, + "chr": "10", + "end": 77700000, + "options": "label=q22.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 77700000, + "chr": "10", + "end": 82000000, + "options": "label=q22.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 82000000, + "chr": "10", + "end": 87900000, + "options": "label=q23.1;type=gpos100;", + "value": "#000" + }, + { + "start": 87900000, + "chr": "10", + "end": 89500000, + "options": "label=q23.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 89500000, + "chr": "10", + "end": 92900000, + "options": "label=q23.31;type=gpos75;", + "value": "#828282" + }, + { + "start": 92900000, + "chr": "10", + "end": 94100000, + "options": "label=q23.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 94100000, + "chr": "10", + "end": 97000000, + "options": "label=q23.33;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 97000000, + "chr": "10", + "end": 99300000, + "options": "label=q24.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 99300000, + "chr": "10", + "end": 101900000, + "options": "label=q24.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 101900000, + "chr": "10", + "end": 103000000, + "options": "label=q24.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 103000000, + "chr": "10", + "end": 104900000, + "options": "label=q24.32;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 104900000, + "chr": "10", + "end": 105800000, + "options": "label=q24.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 105800000, + "chr": "10", + "end": 111900000, + "options": "label=q25.1;type=gpos100;", + "value": "#000" + }, + { + "start": 111900000, + "chr": "10", + "end": 114900000, + "options": "label=q25.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 114900000, + "chr": "10", + "end": 119100000, + "options": "label=q25.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 119100000, + "chr": "10", + "end": 121700000, + "options": "label=q26.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 121700000, + "chr": "10", + "end": 123100000, + "options": "label=q26.12;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 123100000, + "chr": "10", + "end": 127500000, + "options": "label=q26.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 127500000, + "chr": "10", + "end": 130600000, + "options": "label=q26.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 130600000, + "chr": "10", + "end": 135534747, + "options": "label=q26.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "11", + "end": 2800000, + "options": "label=p15.5;type=gneg;", + "value": "#ffffff" + }, + { + "start": 2800000, + "chr": "11", + "end": 10700000, + "options": "label=p15.4;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 10700000, + "chr": "11", + "end": 12700000, + "options": "label=p15.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 12700000, + "chr": "11", + "end": 16200000, + "options": "label=p15.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 16200000, + "chr": "11", + "end": 21700000, + "options": "label=p15.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 21700000, + "chr": "11", + "end": 26100000, + "options": "label=p14.3;type=gpos100;", + "value": "#000" + }, + { + "start": 26100000, + "chr": "11", + "end": 27200000, + "options": "label=p14.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 27200000, + "chr": "11", + "end": 31000000, + "options": "label=p14.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 31000000, + "chr": "11", + "end": 36400000, + "options": "label=p13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 36400000, + "chr": "11", + "end": 43500000, + "options": "label=p12;type=gpos100;", + "value": "#000" + }, + { + "start": 43500000, + "chr": "11", + "end": 48800000, + "options": "label=p11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 48800000, + "chr": "11", + "end": 51600000, + "options": "label=p11.12;type=gpos75;", + "value": "#828282" + }, + { + "start": 51600000, + "chr": "11", + "end": 53700000, + "options": "label=p11.11;type=acen;", + "value": "#d92f27" + }, + { + "start": 53700000, + "chr": "11", + "end": 55700000, + "options": "label=q11;type=acen;", + "value": "#d92f27" + }, + { + "start": 55700000, + "chr": "11", + "end": 59900000, + "options": "label=q12.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 59900000, + "chr": "11", + "end": 61700000, + "options": "label=q12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 61700000, + "chr": "11", + "end": 63400000, + "options": "label=q12.3;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 63400000, + "chr": "11", + "end": 65900000, + "options": "label=q13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 65900000, + "chr": "11", + "end": 68400000, + "options": "label=q13.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 68400000, + "chr": "11", + "end": 70400000, + "options": "label=q13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 70400000, + "chr": "11", + "end": 75200000, + "options": "label=q13.4;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 75200000, + "chr": "11", + "end": 77100000, + "options": "label=q13.5;type=gneg;", + "value": "#ffffff" + }, + { + "start": 77100000, + "chr": "11", + "end": 85600000, + "options": "label=q14.1;type=gpos100;", + "value": "#000" + }, + { + "start": 85600000, + "chr": "11", + "end": 88300000, + "options": "label=q14.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 88300000, + "chr": "11", + "end": 92800000, + "options": "label=q14.3;type=gpos100;", + "value": "#000" + }, + { + "start": 92800000, + "chr": "11", + "end": 97200000, + "options": "label=q21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 97200000, + "chr": "11", + "end": 102100000, + "options": "label=q22.1;type=gpos100;", + "value": "#000" + }, + { + "start": 102100000, + "chr": "11", + "end": 102900000, + "options": "label=q22.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 102900000, + "chr": "11", + "end": 110400000, + "options": "label=q22.3;type=gpos100;", + "value": "#000" + }, + { + "start": 110400000, + "chr": "11", + "end": 112500000, + "options": "label=q23.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 112500000, + "chr": "11", + "end": 114500000, + "options": "label=q23.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 114500000, + "chr": "11", + "end": 121200000, + "options": "label=q23.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 121200000, + "chr": "11", + "end": 123900000, + "options": "label=q24.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 123900000, + "chr": "11", + "end": 127800000, + "options": "label=q24.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 127800000, + "chr": "11", + "end": 130800000, + "options": "label=q24.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 130800000, + "chr": "11", + "end": 135006516, + "options": "label=q25;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "12", + "end": 3300000, + "options": "label=p13.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 3300000, + "chr": "12", + "end": 5400000, + "options": "label=p13.32;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 5400000, + "chr": "12", + "end": 10100000, + "options": "label=p13.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 10100000, + "chr": "12", + "end": 12800000, + "options": "label=p13.2;type=gpos75;", + "value": "#828282" + }, + { + "start": 12800000, + "chr": "12", + "end": 14800000, + "options": "label=p13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 14800000, + "chr": "12", + "end": 20000000, + "options": "label=p12.3;type=gpos100;", + "value": "#000" + }, + { + "start": 20000000, + "chr": "12", + "end": 21300000, + "options": "label=p12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 21300000, + "chr": "12", + "end": 26500000, + "options": "label=p12.1;type=gpos100;", + "value": "#000" + }, + { + "start": 26500000, + "chr": "12", + "end": 27800000, + "options": "label=p11.23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 27800000, + "chr": "12", + "end": 30700000, + "options": "label=p11.22;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 30700000, + "chr": "12", + "end": 33300000, + "options": "label=p11.21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 33300000, + "chr": "12", + "end": 35800000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 35800000, + "chr": "12", + "end": 38200000, + "options": "label=q11;type=acen;", + "value": "#d92f27" + }, + { + "start": 38200000, + "chr": "12", + "end": 46400000, + "options": "label=q12;type=gpos100;", + "value": "#000" + }, + { + "start": 46400000, + "chr": "12", + "end": 49100000, + "options": "label=q13.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 49100000, + "chr": "12", + "end": 51500000, + "options": "label=q13.12;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 51500000, + "chr": "12", + "end": 54900000, + "options": "label=q13.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 54900000, + "chr": "12", + "end": 56600000, + "options": "label=q13.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 56600000, + "chr": "12", + "end": 58100000, + "options": "label=q13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 58100000, + "chr": "12", + "end": 63100000, + "options": "label=q14.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 63100000, + "chr": "12", + "end": 65100000, + "options": "label=q14.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 65100000, + "chr": "12", + "end": 67700000, + "options": "label=q14.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 67700000, + "chr": "12", + "end": 71500000, + "options": "label=q15;type=gneg;", + "value": "#ffffff" + }, + { + "start": 71500000, + "chr": "12", + "end": 75700000, + "options": "label=q21.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 75700000, + "chr": "12", + "end": 80300000, + "options": "label=q21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 80300000, + "chr": "12", + "end": 86700000, + "options": "label=q21.31;type=gpos100;", + "value": "#000" + }, + { + "start": 86700000, + "chr": "12", + "end": 89000000, + "options": "label=q21.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 89000000, + "chr": "12", + "end": 92600000, + "options": "label=q21.33;type=gpos100;", + "value": "#000" + }, + { + "start": 92600000, + "chr": "12", + "end": 96200000, + "options": "label=q22;type=gneg;", + "value": "#ffffff" + }, + { + "start": 96200000, + "chr": "12", + "end": 101600000, + "options": "label=q23.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 101600000, + "chr": "12", + "end": 103800000, + "options": "label=q23.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 103800000, + "chr": "12", + "end": 109000000, + "options": "label=q23.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 109000000, + "chr": "12", + "end": 111700000, + "options": "label=q24.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 111700000, + "chr": "12", + "end": 112300000, + "options": "label=q24.12;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 112300000, + "chr": "12", + "end": 114300000, + "options": "label=q24.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 114300000, + "chr": "12", + "end": 116800000, + "options": "label=q24.21;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 116800000, + "chr": "12", + "end": 118100000, + "options": "label=q24.22;type=gneg;", + "value": "#ffffff" + }, + { + "start": 118100000, + "chr": "12", + "end": 120700000, + "options": "label=q24.23;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 120700000, + "chr": "12", + "end": 125900000, + "options": "label=q24.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 125900000, + "chr": "12", + "end": 129300000, + "options": "label=q24.32;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 129300000, + "chr": "12", + "end": 133851895, + "options": "label=q24.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "13", + "end": 4500000, + "options": "label=p13;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 4500000, + "chr": "13", + "end": 10000000, + "options": "label=p12;type=stalk;", + "value": "#467fa4" + }, + { + "start": 10000000, + "chr": "13", + "end": 16300000, + "options": "label=p11.2;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 16300000, + "chr": "13", + "end": 17900000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 17900000, + "chr": "13", + "end": 19500000, + "options": "label=q11;type=acen;", + "value": "#d92f27" + }, + { + "start": 19500000, + "chr": "13", + "end": 23300000, + "options": "label=q12.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 23300000, + "chr": "13", + "end": 25500000, + "options": "label=q12.12;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 25500000, + "chr": "13", + "end": 27800000, + "options": "label=q12.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 27800000, + "chr": "13", + "end": 28900000, + "options": "label=q12.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 28900000, + "chr": "13", + "end": 32200000, + "options": "label=q12.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 32200000, + "chr": "13", + "end": 34000000, + "options": "label=q13.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 34000000, + "chr": "13", + "end": 35500000, + "options": "label=q13.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 35500000, + "chr": "13", + "end": 40100000, + "options": "label=q13.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 40100000, + "chr": "13", + "end": 45200000, + "options": "label=q14.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 45200000, + "chr": "13", + "end": 45800000, + "options": "label=q14.12;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 45800000, + "chr": "13", + "end": 47300000, + "options": "label=q14.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 47300000, + "chr": "13", + "end": 50900000, + "options": "label=q14.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 50900000, + "chr": "13", + "end": 55300000, + "options": "label=q14.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 55300000, + "chr": "13", + "end": 59600000, + "options": "label=q21.1;type=gpos100;", + "value": "#000" + }, + { + "start": 59600000, + "chr": "13", + "end": 62300000, + "options": "label=q21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 62300000, + "chr": "13", + "end": 65700000, + "options": "label=q21.31;type=gpos75;", + "value": "#828282" + }, + { + "start": 65700000, + "chr": "13", + "end": 68600000, + "options": "label=q21.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 68600000, + "chr": "13", + "end": 73300000, + "options": "label=q21.33;type=gpos100;", + "value": "#000" + }, + { + "start": 73300000, + "chr": "13", + "end": 75400000, + "options": "label=q22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 75400000, + "chr": "13", + "end": 77200000, + "options": "label=q22.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 77200000, + "chr": "13", + "end": 79000000, + "options": "label=q22.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 79000000, + "chr": "13", + "end": 87700000, + "options": "label=q31.1;type=gpos100;", + "value": "#000" + }, + { + "start": 87700000, + "chr": "13", + "end": 90000000, + "options": "label=q31.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 90000000, + "chr": "13", + "end": 95000000, + "options": "label=q31.3;type=gpos100;", + "value": "#000" + }, + { + "start": 95000000, + "chr": "13", + "end": 98200000, + "options": "label=q32.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 98200000, + "chr": "13", + "end": 99300000, + "options": "label=q32.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 99300000, + "chr": "13", + "end": 101700000, + "options": "label=q32.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 101700000, + "chr": "13", + "end": 104800000, + "options": "label=q33.1;type=gpos100;", + "value": "#000" + }, + { + "start": 104800000, + "chr": "13", + "end": 107000000, + "options": "label=q33.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 107000000, + "chr": "13", + "end": 110300000, + "options": "label=q33.3;type=gpos100;", + "value": "#000" + }, + { + "start": 110300000, + "chr": "13", + "end": 115169878, + "options": "label=q34;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "14", + "end": 3700000, + "options": "label=p13;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 3700000, + "chr": "14", + "end": 8100000, + "options": "label=p12;type=stalk;", + "value": "#467fa4" + }, + { + "start": 8100000, + "chr": "14", + "end": 16100000, + "options": "label=p11.2;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 16100000, + "chr": "14", + "end": 17600000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 17600000, + "chr": "14", + "end": 19100000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 19100000, + "chr": "14", + "end": 24600000, + "options": "label=q11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 24600000, + "chr": "14", + "end": 33300000, + "options": "label=q12;type=gpos100;", + "value": "#000" + }, + { + "start": 33300000, + "chr": "14", + "end": 35300000, + "options": "label=q13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 35300000, + "chr": "14", + "end": 36600000, + "options": "label=q13.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 36600000, + "chr": "14", + "end": 37800000, + "options": "label=q13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 37800000, + "chr": "14", + "end": 43500000, + "options": "label=q21.1;type=gpos100;", + "value": "#000" + }, + { + "start": 43500000, + "chr": "14", + "end": 47200000, + "options": "label=q21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 47200000, + "chr": "14", + "end": 50900000, + "options": "label=q21.3;type=gpos100;", + "value": "#000" + }, + { + "start": 50900000, + "chr": "14", + "end": 54100000, + "options": "label=q22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 54100000, + "chr": "14", + "end": 55500000, + "options": "label=q22.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 55500000, + "chr": "14", + "end": 58100000, + "options": "label=q22.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 58100000, + "chr": "14", + "end": 62100000, + "options": "label=q23.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 62100000, + "chr": "14", + "end": 64800000, + "options": "label=q23.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 64800000, + "chr": "14", + "end": 67900000, + "options": "label=q23.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 67900000, + "chr": "14", + "end": 70200000, + "options": "label=q24.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 70200000, + "chr": "14", + "end": 73800000, + "options": "label=q24.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 73800000, + "chr": "14", + "end": 79300000, + "options": "label=q24.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 79300000, + "chr": "14", + "end": 83600000, + "options": "label=q31.1;type=gpos100;", + "value": "#000" + }, + { + "start": 83600000, + "chr": "14", + "end": 84900000, + "options": "label=q31.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 84900000, + "chr": "14", + "end": 89800000, + "options": "label=q31.3;type=gpos100;", + "value": "#000" + }, + { + "start": 89800000, + "chr": "14", + "end": 91900000, + "options": "label=q32.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 91900000, + "chr": "14", + "end": 94700000, + "options": "label=q32.12;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 94700000, + "chr": "14", + "end": 96300000, + "options": "label=q32.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 96300000, + "chr": "14", + "end": 101400000, + "options": "label=q32.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 101400000, + "chr": "14", + "end": 103200000, + "options": "label=q32.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 103200000, + "chr": "14", + "end": 104000000, + "options": "label=q32.32;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 104000000, + "chr": "14", + "end": 107349540, + "options": "label=q32.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "15", + "end": 3900000, + "options": "label=p13;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 3900000, + "chr": "15", + "end": 8700000, + "options": "label=p12;type=stalk;", + "value": "#467fa4" + }, + { + "start": 8700000, + "chr": "15", + "end": 15800000, + "options": "label=p11.2;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 15800000, + "chr": "15", + "end": 19000000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 19000000, + "chr": "15", + "end": 20700000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 20700000, + "chr": "15", + "end": 25700000, + "options": "label=q11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 25700000, + "chr": "15", + "end": 28100000, + "options": "label=q12;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 28100000, + "chr": "15", + "end": 30300000, + "options": "label=q13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 30300000, + "chr": "15", + "end": 31200000, + "options": "label=q13.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 31200000, + "chr": "15", + "end": 33600000, + "options": "label=q13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 33600000, + "chr": "15", + "end": 40100000, + "options": "label=q14;type=gpos75;", + "value": "#828282" + }, + { + "start": 40100000, + "chr": "15", + "end": 42800000, + "options": "label=q15.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 42800000, + "chr": "15", + "end": 43600000, + "options": "label=q15.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 43600000, + "chr": "15", + "end": 44800000, + "options": "label=q15.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 44800000, + "chr": "15", + "end": 49500000, + "options": "label=q21.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 49500000, + "chr": "15", + "end": 52900000, + "options": "label=q21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 52900000, + "chr": "15", + "end": 59100000, + "options": "label=q21.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 59100000, + "chr": "15", + "end": 59300000, + "options": "label=q22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 59300000, + "chr": "15", + "end": 63700000, + "options": "label=q22.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 63700000, + "chr": "15", + "end": 67200000, + "options": "label=q22.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 67200000, + "chr": "15", + "end": 67300000, + "options": "label=q22.32;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 67300000, + "chr": "15", + "end": 67500000, + "options": "label=q22.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 67500000, + "chr": "15", + "end": 72700000, + "options": "label=q23;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 72700000, + "chr": "15", + "end": 75200000, + "options": "label=q24.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 75200000, + "chr": "15", + "end": 76600000, + "options": "label=q24.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 76600000, + "chr": "15", + "end": 78300000, + "options": "label=q24.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 78300000, + "chr": "15", + "end": 81700000, + "options": "label=q25.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 81700000, + "chr": "15", + "end": 85200000, + "options": "label=q25.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 85200000, + "chr": "15", + "end": 89100000, + "options": "label=q25.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 89100000, + "chr": "15", + "end": 94300000, + "options": "label=q26.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 94300000, + "chr": "15", + "end": 98500000, + "options": "label=q26.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 98500000, + "chr": "15", + "end": 102531392, + "options": "label=q26.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "16", + "end": 7900000, + "options": "label=p13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 7900000, + "chr": "16", + "end": 10500000, + "options": "label=p13.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 10500000, + "chr": "16", + "end": 12600000, + "options": "label=p13.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 12600000, + "chr": "16", + "end": 14800000, + "options": "label=p13.12;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 14800000, + "chr": "16", + "end": 16800000, + "options": "label=p13.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 16800000, + "chr": "16", + "end": 21200000, + "options": "label=p12.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 21200000, + "chr": "16", + "end": 24200000, + "options": "label=p12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 24200000, + "chr": "16", + "end": 28100000, + "options": "label=p12.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 28100000, + "chr": "16", + "end": 34600000, + "options": "label=p11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 34600000, + "chr": "16", + "end": 36600000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 36600000, + "chr": "16", + "end": 38600000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 38600000, + "chr": "16", + "end": 47000000, + "options": "label=q11.2;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 47000000, + "chr": "16", + "end": 52600000, + "options": "label=q12.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 52600000, + "chr": "16", + "end": 56700000, + "options": "label=q12.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 56700000, + "chr": "16", + "end": 57400000, + "options": "label=q13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 57400000, + "chr": "16", + "end": 66700000, + "options": "label=q21;type=gpos100;", + "value": "#000" + }, + { + "start": 66700000, + "chr": "16", + "end": 70800000, + "options": "label=q22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 70800000, + "chr": "16", + "end": 72900000, + "options": "label=q22.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 72900000, + "chr": "16", + "end": 74100000, + "options": "label=q22.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 74100000, + "chr": "16", + "end": 79200000, + "options": "label=q23.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 79200000, + "chr": "16", + "end": 81700000, + "options": "label=q23.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 81700000, + "chr": "16", + "end": 84200000, + "options": "label=q23.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 84200000, + "chr": "16", + "end": 87100000, + "options": "label=q24.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 87100000, + "chr": "16", + "end": 88700000, + "options": "label=q24.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 88700000, + "chr": "16", + "end": 90354753, + "options": "label=q24.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "17", + "end": 3300000, + "options": "label=p13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 3300000, + "chr": "17", + "end": 6500000, + "options": "label=p13.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 6500000, + "chr": "17", + "end": 10700000, + "options": "label=p13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 10700000, + "chr": "17", + "end": 16000000, + "options": "label=p12;type=gpos75;", + "value": "#828282" + }, + { + "start": 16000000, + "chr": "17", + "end": 22200000, + "options": "label=p11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 22200000, + "chr": "17", + "end": 24000000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 24000000, + "chr": "17", + "end": 25800000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 25800000, + "chr": "17", + "end": 31800000, + "options": "label=q11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 31800000, + "chr": "17", + "end": 38100000, + "options": "label=q12;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 38100000, + "chr": "17", + "end": 38400000, + "options": "label=q21.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 38400000, + "chr": "17", + "end": 40900000, + "options": "label=q21.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 40900000, + "chr": "17", + "end": 44900000, + "options": "label=q21.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 44900000, + "chr": "17", + "end": 47400000, + "options": "label=q21.32;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 47400000, + "chr": "17", + "end": 50200000, + "options": "label=q21.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 50200000, + "chr": "17", + "end": 57600000, + "options": "label=q22;type=gpos75;", + "value": "#828282" + }, + { + "start": 57600000, + "chr": "17", + "end": 58300000, + "options": "label=q23.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 58300000, + "chr": "17", + "end": 61100000, + "options": "label=q23.2;type=gpos75;", + "value": "#828282" + }, + { + "start": 61100000, + "chr": "17", + "end": 62600000, + "options": "label=q23.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 62600000, + "chr": "17", + "end": 64200000, + "options": "label=q24.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 64200000, + "chr": "17", + "end": 67100000, + "options": "label=q24.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 67100000, + "chr": "17", + "end": 70900000, + "options": "label=q24.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 70900000, + "chr": "17", + "end": 74800000, + "options": "label=q25.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 74800000, + "chr": "17", + "end": 75300000, + "options": "label=q25.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 75300000, + "chr": "17", + "end": 81195210, + "options": "label=q25.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "18", + "end": 2900000, + "options": "label=p11.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 2900000, + "chr": "18", + "end": 7100000, + "options": "label=p11.31;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 7100000, + "chr": "18", + "end": 8500000, + "options": "label=p11.23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 8500000, + "chr": "18", + "end": 10900000, + "options": "label=p11.22;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 10900000, + "chr": "18", + "end": 15400000, + "options": "label=p11.21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 15400000, + "chr": "18", + "end": 17200000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 17200000, + "chr": "18", + "end": 19000000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 19000000, + "chr": "18", + "end": 25000000, + "options": "label=q11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 25000000, + "chr": "18", + "end": 32700000, + "options": "label=q12.1;type=gpos100;", + "value": "#000" + }, + { + "start": 32700000, + "chr": "18", + "end": 37200000, + "options": "label=q12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 37200000, + "chr": "18", + "end": 43500000, + "options": "label=q12.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 43500000, + "chr": "18", + "end": 48200000, + "options": "label=q21.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 48200000, + "chr": "18", + "end": 53800000, + "options": "label=q21.2;type=gpos75;", + "value": "#828282" + }, + { + "start": 53800000, + "chr": "18", + "end": 56200000, + "options": "label=q21.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 56200000, + "chr": "18", + "end": 59000000, + "options": "label=q21.32;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 59000000, + "chr": "18", + "end": 61600000, + "options": "label=q21.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 61600000, + "chr": "18", + "end": 66800000, + "options": "label=q22.1;type=gpos100;", + "value": "#000" + }, + { + "start": 66800000, + "chr": "18", + "end": 68700000, + "options": "label=q22.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 68700000, + "chr": "18", + "end": 73100000, + "options": "label=q22.3;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 73100000, + "chr": "18", + "end": 78077248, + "options": "label=q23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "19", + "end": 6900000, + "options": "label=p13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 6900000, + "chr": "19", + "end": 13900000, + "options": "label=p13.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 13900000, + "chr": "19", + "end": 14000000, + "options": "label=p13.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 14000000, + "chr": "19", + "end": 16300000, + "options": "label=p13.12;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 16300000, + "chr": "19", + "end": 20000000, + "options": "label=p13.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 20000000, + "chr": "19", + "end": 24400000, + "options": "label=p12;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 24400000, + "chr": "19", + "end": 26500000, + "options": "label=p11;type=acen;", + "value": "#d92f27" + }, + { + "start": 26500000, + "chr": "19", + "end": 28600000, + "options": "label=q11;type=acen;", + "value": "#d92f27" + }, + { + "start": 28600000, + "chr": "19", + "end": 32400000, + "options": "label=q12;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 32400000, + "chr": "19", + "end": 35500000, + "options": "label=q13.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 35500000, + "chr": "19", + "end": 38300000, + "options": "label=q13.12;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 38300000, + "chr": "19", + "end": 38700000, + "options": "label=q13.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 38700000, + "chr": "19", + "end": 43400000, + "options": "label=q13.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 43400000, + "chr": "19", + "end": 45200000, + "options": "label=q13.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 45200000, + "chr": "19", + "end": 48000000, + "options": "label=q13.32;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 48000000, + "chr": "19", + "end": 51400000, + "options": "label=q13.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 51400000, + "chr": "19", + "end": 53600000, + "options": "label=q13.41;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 53600000, + "chr": "19", + "end": 56300000, + "options": "label=q13.42;type=gneg;", + "value": "#ffffff" + }, + { + "start": 56300000, + "chr": "19", + "end": 59128983, + "options": "label=q13.43;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 0, + "chr": "2", + "end": 4400000, + "options": "label=p25.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 4400000, + "chr": "2", + "end": 7100000, + "options": "label=p25.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 7100000, + "chr": "2", + "end": 12200000, + "options": "label=p25.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 12200000, + "chr": "2", + "end": 16700000, + "options": "label=p24.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 16700000, + "chr": "2", + "end": 19200000, + "options": "label=p24.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 19200000, + "chr": "2", + "end": 24000000, + "options": "label=p24.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 24000000, + "chr": "2", + "end": 27900000, + "options": "label=p23.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 27900000, + "chr": "2", + "end": 30000000, + "options": "label=p23.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 30000000, + "chr": "2", + "end": 32100000, + "options": "label=p23.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 32100000, + "chr": "2", + "end": 36600000, + "options": "label=p22.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 36600000, + "chr": "2", + "end": 38600000, + "options": "label=p22.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 38600000, + "chr": "2", + "end": 41800000, + "options": "label=p22.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 41800000, + "chr": "2", + "end": 47800000, + "options": "label=p21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 47800000, + "chr": "2", + "end": 52900000, + "options": "label=p16.3;type=gpos100;", + "value": "#000" + }, + { + "start": 52900000, + "chr": "2", + "end": 55000000, + "options": "label=p16.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 55000000, + "chr": "2", + "end": 61300000, + "options": "label=p16.1;type=gpos100;", + "value": "#000" + }, + { + "start": 61300000, + "chr": "2", + "end": 64100000, + "options": "label=p15;type=gneg;", + "value": "#ffffff" + }, + { + "start": 64100000, + "chr": "2", + "end": 68600000, + "options": "label=p14;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 68600000, + "chr": "2", + "end": 71500000, + "options": "label=p13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 71500000, + "chr": "2", + "end": 73500000, + "options": "label=p13.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 73500000, + "chr": "2", + "end": 75000000, + "options": "label=p13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 75000000, + "chr": "2", + "end": 83300000, + "options": "label=p12;type=gpos100;", + "value": "#000" + }, + { + "start": 83300000, + "chr": "2", + "end": 90500000, + "options": "label=p11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 90500000, + "chr": "2", + "end": 93300000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 93300000, + "chr": "2", + "end": 96800000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 96800000, + "chr": "2", + "end": 102700000, + "options": "label=q11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 102700000, + "chr": "2", + "end": 106000000, + "options": "label=q12.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 106000000, + "chr": "2", + "end": 107500000, + "options": "label=q12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 107500000, + "chr": "2", + "end": 110200000, + "options": "label=q12.3;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 110200000, + "chr": "2", + "end": 114400000, + "options": "label=q13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 114400000, + "chr": "2", + "end": 118800000, + "options": "label=q14.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 118800000, + "chr": "2", + "end": 122400000, + "options": "label=q14.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 122400000, + "chr": "2", + "end": 129900000, + "options": "label=q14.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 129900000, + "chr": "2", + "end": 132500000, + "options": "label=q21.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 132500000, + "chr": "2", + "end": 135100000, + "options": "label=q21.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 135100000, + "chr": "2", + "end": 136800000, + "options": "label=q21.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 136800000, + "chr": "2", + "end": 142200000, + "options": "label=q22.1;type=gpos100;", + "value": "#000" + }, + { + "start": 142200000, + "chr": "2", + "end": 144100000, + "options": "label=q22.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 144100000, + "chr": "2", + "end": 148700000, + "options": "label=q22.3;type=gpos100;", + "value": "#000" + }, + { + "start": 148700000, + "chr": "2", + "end": 149900000, + "options": "label=q23.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 149900000, + "chr": "2", + "end": 150500000, + "options": "label=q23.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 150500000, + "chr": "2", + "end": 154900000, + "options": "label=q23.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 154900000, + "chr": "2", + "end": 159800000, + "options": "label=q24.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 159800000, + "chr": "2", + "end": 163700000, + "options": "label=q24.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 163700000, + "chr": "2", + "end": 169700000, + "options": "label=q24.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 169700000, + "chr": "2", + "end": 178000000, + "options": "label=q31.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 178000000, + "chr": "2", + "end": 180600000, + "options": "label=q31.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 180600000, + "chr": "2", + "end": 183000000, + "options": "label=q31.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 183000000, + "chr": "2", + "end": 189400000, + "options": "label=q32.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 189400000, + "chr": "2", + "end": 191900000, + "options": "label=q32.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 191900000, + "chr": "2", + "end": 197400000, + "options": "label=q32.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 197400000, + "chr": "2", + "end": 203300000, + "options": "label=q33.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 203300000, + "chr": "2", + "end": 204900000, + "options": "label=q33.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 204900000, + "chr": "2", + "end": 209000000, + "options": "label=q33.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 209000000, + "chr": "2", + "end": 215300000, + "options": "label=q34;type=gpos100;", + "value": "#000" + }, + { + "start": 215300000, + "chr": "2", + "end": 221500000, + "options": "label=q35;type=gneg;", + "value": "#ffffff" + }, + { + "start": 221500000, + "chr": "2", + "end": 225200000, + "options": "label=q36.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 225200000, + "chr": "2", + "end": 226100000, + "options": "label=q36.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 226100000, + "chr": "2", + "end": 231000000, + "options": "label=q36.3;type=gpos100;", + "value": "#000" + }, + { + "start": 231000000, + "chr": "2", + "end": 235600000, + "options": "label=q37.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 235600000, + "chr": "2", + "end": 237300000, + "options": "label=q37.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 237300000, + "chr": "2", + "end": 243199373, + "options": "label=q37.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "20", + "end": 5100000, + "options": "label=p13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 5100000, + "chr": "20", + "end": 9200000, + "options": "label=p12.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 9200000, + "chr": "20", + "end": 12100000, + "options": "label=p12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 12100000, + "chr": "20", + "end": 17900000, + "options": "label=p12.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 17900000, + "chr": "20", + "end": 21300000, + "options": "label=p11.23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 21300000, + "chr": "20", + "end": 22300000, + "options": "label=p11.22;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 22300000, + "chr": "20", + "end": 25600000, + "options": "label=p11.21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 25600000, + "chr": "20", + "end": 27500000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 27500000, + "chr": "20", + "end": 29400000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 29400000, + "chr": "20", + "end": 32100000, + "options": "label=q11.21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 32100000, + "chr": "20", + "end": 34400000, + "options": "label=q11.22;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 34400000, + "chr": "20", + "end": 37600000, + "options": "label=q11.23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 37600000, + "chr": "20", + "end": 41700000, + "options": "label=q12;type=gpos75;", + "value": "#828282" + }, + { + "start": 41700000, + "chr": "20", + "end": 42100000, + "options": "label=q13.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 42100000, + "chr": "20", + "end": 46400000, + "options": "label=q13.12;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 46400000, + "chr": "20", + "end": 49800000, + "options": "label=q13.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 49800000, + "chr": "20", + "end": 55000000, + "options": "label=q13.2;type=gpos75;", + "value": "#828282" + }, + { + "start": 55000000, + "chr": "20", + "end": 56500000, + "options": "label=q13.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 56500000, + "chr": "20", + "end": 58400000, + "options": "label=q13.32;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 58400000, + "chr": "20", + "end": 63025520, + "options": "label=q13.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "21", + "end": 2800000, + "options": "label=p13;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 2800000, + "chr": "21", + "end": 6800000, + "options": "label=p12;type=stalk;", + "value": "#467fa4" + }, + { + "start": 6800000, + "chr": "21", + "end": 10900000, + "options": "label=p11.2;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 10900000, + "chr": "21", + "end": 13200000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 13200000, + "chr": "21", + "end": 14300000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 14300000, + "chr": "21", + "end": 16400000, + "options": "label=q11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 16400000, + "chr": "21", + "end": 24000000, + "options": "label=q21.1;type=gpos100;", + "value": "#000" + }, + { + "start": 24000000, + "chr": "21", + "end": 26800000, + "options": "label=q21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 26800000, + "chr": "21", + "end": 31500000, + "options": "label=q21.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 31500000, + "chr": "21", + "end": 35800000, + "options": "label=q22.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 35800000, + "chr": "21", + "end": 37800000, + "options": "label=q22.12;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 37800000, + "chr": "21", + "end": 39700000, + "options": "label=q22.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 39700000, + "chr": "21", + "end": 42600000, + "options": "label=q22.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 42600000, + "chr": "21", + "end": 48129895, + "options": "label=q22.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "22", + "end": 3800000, + "options": "label=p13;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 3800000, + "chr": "22", + "end": 8300000, + "options": "label=p12;type=stalk;", + "value": "#467fa4" + }, + { + "start": 8300000, + "chr": "22", + "end": 12200000, + "options": "label=p11.2;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 12200000, + "chr": "22", + "end": 14700000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 14700000, + "chr": "22", + "end": 17900000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 17900000, + "chr": "22", + "end": 22200000, + "options": "label=q11.21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 22200000, + "chr": "22", + "end": 23500000, + "options": "label=q11.22;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 23500000, + "chr": "22", + "end": 25900000, + "options": "label=q11.23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 25900000, + "chr": "22", + "end": 29600000, + "options": "label=q12.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 29600000, + "chr": "22", + "end": 32200000, + "options": "label=q12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 32200000, + "chr": "22", + "end": 37600000, + "options": "label=q12.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 37600000, + "chr": "22", + "end": 41000000, + "options": "label=q13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 41000000, + "chr": "22", + "end": 44200000, + "options": "label=q13.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 44200000, + "chr": "22", + "end": 48400000, + "options": "label=q13.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 48400000, + "chr": "22", + "end": 49400000, + "options": "label=q13.32;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 49400000, + "chr": "22", + "end": 51304566, + "options": "label=q13.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "3", + "end": 2800000, + "options": "label=p26.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 2800000, + "chr": "3", + "end": 4000000, + "options": "label=p26.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 4000000, + "chr": "3", + "end": 8700000, + "options": "label=p26.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 8700000, + "chr": "3", + "end": 11800000, + "options": "label=p25.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 11800000, + "chr": "3", + "end": 13300000, + "options": "label=p25.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 13300000, + "chr": "3", + "end": 16400000, + "options": "label=p25.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 16400000, + "chr": "3", + "end": 23900000, + "options": "label=p24.3;type=gpos100;", + "value": "#000" + }, + { + "start": 23900000, + "chr": "3", + "end": 26400000, + "options": "label=p24.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 26400000, + "chr": "3", + "end": 30900000, + "options": "label=p24.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 30900000, + "chr": "3", + "end": 32100000, + "options": "label=p23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 32100000, + "chr": "3", + "end": 36500000, + "options": "label=p22.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 36500000, + "chr": "3", + "end": 39400000, + "options": "label=p22.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 39400000, + "chr": "3", + "end": 43700000, + "options": "label=p22.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 43700000, + "chr": "3", + "end": 44100000, + "options": "label=p21.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 44100000, + "chr": "3", + "end": 44200000, + "options": "label=p21.32;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 44200000, + "chr": "3", + "end": 50600000, + "options": "label=p21.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 50600000, + "chr": "3", + "end": 52300000, + "options": "label=p21.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 52300000, + "chr": "3", + "end": 54400000, + "options": "label=p21.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 54400000, + "chr": "3", + "end": 58600000, + "options": "label=p14.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 58600000, + "chr": "3", + "end": 63700000, + "options": "label=p14.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 63700000, + "chr": "3", + "end": 69800000, + "options": "label=p14.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 69800000, + "chr": "3", + "end": 74200000, + "options": "label=p13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 74200000, + "chr": "3", + "end": 79800000, + "options": "label=p12.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 79800000, + "chr": "3", + "end": 83500000, + "options": "label=p12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 83500000, + "chr": "3", + "end": 87200000, + "options": "label=p12.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 87200000, + "chr": "3", + "end": 87900000, + "options": "label=p11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 87900000, + "chr": "3", + "end": 91000000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 91000000, + "chr": "3", + "end": 93900000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 93900000, + "chr": "3", + "end": 98300000, + "options": "label=q11.2;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 98300000, + "chr": "3", + "end": 100000000, + "options": "label=q12.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 100000000, + "chr": "3", + "end": 100900000, + "options": "label=q12.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 100900000, + "chr": "3", + "end": 102800000, + "options": "label=q12.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 102800000, + "chr": "3", + "end": 106200000, + "options": "label=q13.11;type=gpos75;", + "value": "#828282" + }, + { + "start": 106200000, + "chr": "3", + "end": 107900000, + "options": "label=q13.12;type=gneg;", + "value": "#ffffff" + }, + { + "start": 107900000, + "chr": "3", + "end": 111300000, + "options": "label=q13.13;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 111300000, + "chr": "3", + "end": 113500000, + "options": "label=q13.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 113500000, + "chr": "3", + "end": 117300000, + "options": "label=q13.31;type=gpos75;", + "value": "#828282" + }, + { + "start": 117300000, + "chr": "3", + "end": 119000000, + "options": "label=q13.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 119000000, + "chr": "3", + "end": 121900000, + "options": "label=q13.33;type=gpos75;", + "value": "#828282" + }, + { + "start": 121900000, + "chr": "3", + "end": 123800000, + "options": "label=q21.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 123800000, + "chr": "3", + "end": 125800000, + "options": "label=q21.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 125800000, + "chr": "3", + "end": 129200000, + "options": "label=q21.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 129200000, + "chr": "3", + "end": 133700000, + "options": "label=q22.1;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 133700000, + "chr": "3", + "end": 135700000, + "options": "label=q22.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 135700000, + "chr": "3", + "end": 138700000, + "options": "label=q22.3;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 138700000, + "chr": "3", + "end": 142800000, + "options": "label=q23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 142800000, + "chr": "3", + "end": 148900000, + "options": "label=q24;type=gpos100;", + "value": "#000" + }, + { + "start": 148900000, + "chr": "3", + "end": 152100000, + "options": "label=q25.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 152100000, + "chr": "3", + "end": 155000000, + "options": "label=q25.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 155000000, + "chr": "3", + "end": 157000000, + "options": "label=q25.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 157000000, + "chr": "3", + "end": 159000000, + "options": "label=q25.32;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 159000000, + "chr": "3", + "end": 160700000, + "options": "label=q25.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 160700000, + "chr": "3", + "end": 167600000, + "options": "label=q26.1;type=gpos100;", + "value": "#000" + }, + { + "start": 167600000, + "chr": "3", + "end": 170900000, + "options": "label=q26.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 170900000, + "chr": "3", + "end": 175700000, + "options": "label=q26.31;type=gpos75;", + "value": "#828282" + }, + { + "start": 175700000, + "chr": "3", + "end": 179000000, + "options": "label=q26.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 179000000, + "chr": "3", + "end": 182700000, + "options": "label=q26.33;type=gpos75;", + "value": "#828282" + }, + { + "start": 182700000, + "chr": "3", + "end": 184500000, + "options": "label=q27.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 184500000, + "chr": "3", + "end": 186000000, + "options": "label=q27.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 186000000, + "chr": "3", + "end": 187900000, + "options": "label=q27.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 187900000, + "chr": "3", + "end": 192300000, + "options": "label=q28;type=gpos75;", + "value": "#828282" + }, + { + "start": 192300000, + "chr": "3", + "end": 198022430, + "options": "label=q29;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "4", + "end": 4500000, + "options": "label=p16.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 4500000, + "chr": "4", + "end": 6000000, + "options": "label=p16.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 6000000, + "chr": "4", + "end": 11300000, + "options": "label=p16.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 11300000, + "chr": "4", + "end": 15200000, + "options": "label=p15.33;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 15200000, + "chr": "4", + "end": 17800000, + "options": "label=p15.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 17800000, + "chr": "4", + "end": 21300000, + "options": "label=p15.31;type=gpos75;", + "value": "#828282" + }, + { + "start": 21300000, + "chr": "4", + "end": 27700000, + "options": "label=p15.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 27700000, + "chr": "4", + "end": 35800000, + "options": "label=p15.1;type=gpos100;", + "value": "#000" + }, + { + "start": 35800000, + "chr": "4", + "end": 41200000, + "options": "label=p14;type=gneg;", + "value": "#ffffff" + }, + { + "start": 41200000, + "chr": "4", + "end": 44600000, + "options": "label=p13;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 44600000, + "chr": "4", + "end": 48200000, + "options": "label=p12;type=gneg;", + "value": "#ffffff" + }, + { + "start": 48200000, + "chr": "4", + "end": 50400000, + "options": "label=p11;type=acen;", + "value": "#d92f27" + }, + { + "start": 50400000, + "chr": "4", + "end": 52700000, + "options": "label=q11;type=acen;", + "value": "#d92f27" + }, + { + "start": 52700000, + "chr": "4", + "end": 59500000, + "options": "label=q12;type=gneg;", + "value": "#ffffff" + }, + { + "start": 59500000, + "chr": "4", + "end": 66600000, + "options": "label=q13.1;type=gpos100;", + "value": "#000" + }, + { + "start": 66600000, + "chr": "4", + "end": 70500000, + "options": "label=q13.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 70500000, + "chr": "4", + "end": 76300000, + "options": "label=q13.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 76300000, + "chr": "4", + "end": 78900000, + "options": "label=q21.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 78900000, + "chr": "4", + "end": 82400000, + "options": "label=q21.21;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 82400000, + "chr": "4", + "end": 84100000, + "options": "label=q21.22;type=gneg;", + "value": "#ffffff" + }, + { + "start": 84100000, + "chr": "4", + "end": 86900000, + "options": "label=q21.23;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 86900000, + "chr": "4", + "end": 88000000, + "options": "label=q21.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 88000000, + "chr": "4", + "end": 93700000, + "options": "label=q22.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 93700000, + "chr": "4", + "end": 95100000, + "options": "label=q22.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 95100000, + "chr": "4", + "end": 98800000, + "options": "label=q22.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 98800000, + "chr": "4", + "end": 101100000, + "options": "label=q23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 101100000, + "chr": "4", + "end": 107700000, + "options": "label=q24;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 107700000, + "chr": "4", + "end": 114100000, + "options": "label=q25;type=gneg;", + "value": "#ffffff" + }, + { + "start": 114100000, + "chr": "4", + "end": 120800000, + "options": "label=q26;type=gpos75;", + "value": "#828282" + }, + { + "start": 120800000, + "chr": "4", + "end": 123800000, + "options": "label=q27;type=gneg;", + "value": "#ffffff" + }, + { + "start": 123800000, + "chr": "4", + "end": 128800000, + "options": "label=q28.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 128800000, + "chr": "4", + "end": 131100000, + "options": "label=q28.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 131100000, + "chr": "4", + "end": 139500000, + "options": "label=q28.3;type=gpos100;", + "value": "#000" + }, + { + "start": 139500000, + "chr": "4", + "end": 141500000, + "options": "label=q31.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 141500000, + "chr": "4", + "end": 146800000, + "options": "label=q31.21;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 146800000, + "chr": "4", + "end": 148500000, + "options": "label=q31.22;type=gneg;", + "value": "#ffffff" + }, + { + "start": 148500000, + "chr": "4", + "end": 151100000, + "options": "label=q31.23;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 151100000, + "chr": "4", + "end": 155600000, + "options": "label=q31.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 155600000, + "chr": "4", + "end": 161800000, + "options": "label=q32.1;type=gpos100;", + "value": "#000" + }, + { + "start": 161800000, + "chr": "4", + "end": 164500000, + "options": "label=q32.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 164500000, + "chr": "4", + "end": 170100000, + "options": "label=q32.3;type=gpos100;", + "value": "#000" + }, + { + "start": 170100000, + "chr": "4", + "end": 171900000, + "options": "label=q33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 171900000, + "chr": "4", + "end": 176300000, + "options": "label=q34.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 176300000, + "chr": "4", + "end": 177500000, + "options": "label=q34.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 177500000, + "chr": "4", + "end": 183200000, + "options": "label=q34.3;type=gpos100;", + "value": "#000" + }, + { + "start": 183200000, + "chr": "4", + "end": 187100000, + "options": "label=q35.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 187100000, + "chr": "4", + "end": 191154276, + "options": "label=q35.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 0, + "chr": "5", + "end": 4500000, + "options": "label=p15.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 4500000, + "chr": "5", + "end": 6300000, + "options": "label=p15.32;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 6300000, + "chr": "5", + "end": 9800000, + "options": "label=p15.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 9800000, + "chr": "5", + "end": 15000000, + "options": "label=p15.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 15000000, + "chr": "5", + "end": 18400000, + "options": "label=p15.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 18400000, + "chr": "5", + "end": 23300000, + "options": "label=p14.3;type=gpos100;", + "value": "#000" + }, + { + "start": 23300000, + "chr": "5", + "end": 24600000, + "options": "label=p14.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 24600000, + "chr": "5", + "end": 28900000, + "options": "label=p14.1;type=gpos100;", + "value": "#000" + }, + { + "start": 28900000, + "chr": "5", + "end": 33800000, + "options": "label=p13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 33800000, + "chr": "5", + "end": 38400000, + "options": "label=p13.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 38400000, + "chr": "5", + "end": 42500000, + "options": "label=p13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 42500000, + "chr": "5", + "end": 46100000, + "options": "label=p12;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 46100000, + "chr": "5", + "end": 48400000, + "options": "label=p11;type=acen;", + "value": "#d92f27" + }, + { + "start": 48400000, + "chr": "5", + "end": 50700000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 50700000, + "chr": "5", + "end": 58900000, + "options": "label=q11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 58900000, + "chr": "5", + "end": 62900000, + "options": "label=q12.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 62900000, + "chr": "5", + "end": 63200000, + "options": "label=q12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 63200000, + "chr": "5", + "end": 66700000, + "options": "label=q12.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 66700000, + "chr": "5", + "end": 68400000, + "options": "label=q13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 68400000, + "chr": "5", + "end": 73300000, + "options": "label=q13.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 73300000, + "chr": "5", + "end": 76900000, + "options": "label=q13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 76900000, + "chr": "5", + "end": 81400000, + "options": "label=q14.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 81400000, + "chr": "5", + "end": 82800000, + "options": "label=q14.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 82800000, + "chr": "5", + "end": 92300000, + "options": "label=q14.3;type=gpos100;", + "value": "#000" + }, + { + "start": 92300000, + "chr": "5", + "end": 98200000, + "options": "label=q15;type=gneg;", + "value": "#ffffff" + }, + { + "start": 98200000, + "chr": "5", + "end": 102800000, + "options": "label=q21.1;type=gpos100;", + "value": "#000" + }, + { + "start": 102800000, + "chr": "5", + "end": 104500000, + "options": "label=q21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 104500000, + "chr": "5", + "end": 109600000, + "options": "label=q21.3;type=gpos100;", + "value": "#000" + }, + { + "start": 109600000, + "chr": "5", + "end": 111500000, + "options": "label=q22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 111500000, + "chr": "5", + "end": 113100000, + "options": "label=q22.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 113100000, + "chr": "5", + "end": 115200000, + "options": "label=q22.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 115200000, + "chr": "5", + "end": 121400000, + "options": "label=q23.1;type=gpos100;", + "value": "#000" + }, + { + "start": 121400000, + "chr": "5", + "end": 127300000, + "options": "label=q23.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 127300000, + "chr": "5", + "end": 130600000, + "options": "label=q23.3;type=gpos100;", + "value": "#000" + }, + { + "start": 130600000, + "chr": "5", + "end": 136200000, + "options": "label=q31.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 136200000, + "chr": "5", + "end": 139500000, + "options": "label=q31.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 139500000, + "chr": "5", + "end": 144500000, + "options": "label=q31.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 144500000, + "chr": "5", + "end": 149800000, + "options": "label=q32;type=gpos75;", + "value": "#828282" + }, + { + "start": 149800000, + "chr": "5", + "end": 152700000, + "options": "label=q33.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 152700000, + "chr": "5", + "end": 155700000, + "options": "label=q33.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 155700000, + "chr": "5", + "end": 159900000, + "options": "label=q33.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 159900000, + "chr": "5", + "end": 168500000, + "options": "label=q34;type=gpos100;", + "value": "#000" + }, + { + "start": 168500000, + "chr": "5", + "end": 172800000, + "options": "label=q35.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 172800000, + "chr": "5", + "end": 176600000, + "options": "label=q35.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 176600000, + "chr": "5", + "end": 180915260, + "options": "label=q35.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "6", + "end": 2300000, + "options": "label=p25.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 2300000, + "chr": "6", + "end": 4200000, + "options": "label=p25.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 4200000, + "chr": "6", + "end": 7100000, + "options": "label=p25.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 7100000, + "chr": "6", + "end": 10600000, + "options": "label=p24.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 10600000, + "chr": "6", + "end": 11600000, + "options": "label=p24.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 11600000, + "chr": "6", + "end": 13400000, + "options": "label=p24.1;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 13400000, + "chr": "6", + "end": 15200000, + "options": "label=p23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 15200000, + "chr": "6", + "end": 25200000, + "options": "label=p22.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 25200000, + "chr": "6", + "end": 27000000, + "options": "label=p22.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 27000000, + "chr": "6", + "end": 30400000, + "options": "label=p22.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 30400000, + "chr": "6", + "end": 32100000, + "options": "label=p21.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 32100000, + "chr": "6", + "end": 33500000, + "options": "label=p21.32;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 33500000, + "chr": "6", + "end": 36600000, + "options": "label=p21.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 36600000, + "chr": "6", + "end": 40500000, + "options": "label=p21.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 40500000, + "chr": "6", + "end": 46200000, + "options": "label=p21.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 46200000, + "chr": "6", + "end": 51800000, + "options": "label=p12.3;type=gpos100;", + "value": "#000" + }, + { + "start": 51800000, + "chr": "6", + "end": 52900000, + "options": "label=p12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 52900000, + "chr": "6", + "end": 57000000, + "options": "label=p12.1;type=gpos100;", + "value": "#000" + }, + { + "start": 57000000, + "chr": "6", + "end": 58700000, + "options": "label=p11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 58700000, + "chr": "6", + "end": 61000000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 61000000, + "chr": "6", + "end": 63300000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 63300000, + "chr": "6", + "end": 63400000, + "options": "label=q11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 63400000, + "chr": "6", + "end": 70000000, + "options": "label=q12;type=gpos100;", + "value": "#000" + }, + { + "start": 70000000, + "chr": "6", + "end": 75900000, + "options": "label=q13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 75900000, + "chr": "6", + "end": 83900000, + "options": "label=q14.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 83900000, + "chr": "6", + "end": 84900000, + "options": "label=q14.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 84900000, + "chr": "6", + "end": 88000000, + "options": "label=q14.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 88000000, + "chr": "6", + "end": 93100000, + "options": "label=q15;type=gneg;", + "value": "#ffffff" + }, + { + "start": 93100000, + "chr": "6", + "end": 99500000, + "options": "label=q16.1;type=gpos100;", + "value": "#000" + }, + { + "start": 99500000, + "chr": "6", + "end": 100600000, + "options": "label=q16.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 100600000, + "chr": "6", + "end": 105500000, + "options": "label=q16.3;type=gpos100;", + "value": "#000" + }, + { + "start": 105500000, + "chr": "6", + "end": 114600000, + "options": "label=q21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 114600000, + "chr": "6", + "end": 118300000, + "options": "label=q22.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 118300000, + "chr": "6", + "end": 118500000, + "options": "label=q22.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 118500000, + "chr": "6", + "end": 126100000, + "options": "label=q22.31;type=gpos100;", + "value": "#000" + }, + { + "start": 126100000, + "chr": "6", + "end": 127100000, + "options": "label=q22.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 127100000, + "chr": "6", + "end": 130300000, + "options": "label=q22.33;type=gpos75;", + "value": "#828282" + }, + { + "start": 130300000, + "chr": "6", + "end": 131200000, + "options": "label=q23.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 131200000, + "chr": "6", + "end": 135200000, + "options": "label=q23.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 135200000, + "chr": "6", + "end": 139000000, + "options": "label=q23.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 139000000, + "chr": "6", + "end": 142800000, + "options": "label=q24.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 142800000, + "chr": "6", + "end": 145600000, + "options": "label=q24.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 145600000, + "chr": "6", + "end": 149000000, + "options": "label=q24.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 149000000, + "chr": "6", + "end": 152500000, + "options": "label=q25.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 152500000, + "chr": "6", + "end": 155500000, + "options": "label=q25.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 155500000, + "chr": "6", + "end": 161000000, + "options": "label=q25.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 161000000, + "chr": "6", + "end": 164500000, + "options": "label=q26;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 164500000, + "chr": "6", + "end": 171115067, + "options": "label=q27;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "7", + "end": 2800000, + "options": "label=p22.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 2800000, + "chr": "7", + "end": 4500000, + "options": "label=p22.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 4500000, + "chr": "7", + "end": 7300000, + "options": "label=p22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 7300000, + "chr": "7", + "end": 13800000, + "options": "label=p21.3;type=gpos100;", + "value": "#000" + }, + { + "start": 13800000, + "chr": "7", + "end": 16500000, + "options": "label=p21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 16500000, + "chr": "7", + "end": 20900000, + "options": "label=p21.1;type=gpos100;", + "value": "#000" + }, + { + "start": 20900000, + "chr": "7", + "end": 25500000, + "options": "label=p15.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 25500000, + "chr": "7", + "end": 28000000, + "options": "label=p15.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 28000000, + "chr": "7", + "end": 28800000, + "options": "label=p15.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 28800000, + "chr": "7", + "end": 35000000, + "options": "label=p14.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 35000000, + "chr": "7", + "end": 37200000, + "options": "label=p14.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 37200000, + "chr": "7", + "end": 43300000, + "options": "label=p14.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 43300000, + "chr": "7", + "end": 45400000, + "options": "label=p13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 45400000, + "chr": "7", + "end": 49000000, + "options": "label=p12.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 49000000, + "chr": "7", + "end": 50500000, + "options": "label=p12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 50500000, + "chr": "7", + "end": 54000000, + "options": "label=p12.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 54000000, + "chr": "7", + "end": 58000000, + "options": "label=p11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 58000000, + "chr": "7", + "end": 59900000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 59900000, + "chr": "7", + "end": 61700000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 61700000, + "chr": "7", + "end": 67000000, + "options": "label=q11.21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 67000000, + "chr": "7", + "end": 72200000, + "options": "label=q11.22;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 72200000, + "chr": "7", + "end": 77500000, + "options": "label=q11.23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 77500000, + "chr": "7", + "end": 86400000, + "options": "label=q21.11;type=gpos100;", + "value": "#000" + }, + { + "start": 86400000, + "chr": "7", + "end": 88200000, + "options": "label=q21.12;type=gneg;", + "value": "#ffffff" + }, + { + "start": 88200000, + "chr": "7", + "end": 91100000, + "options": "label=q21.13;type=gpos75;", + "value": "#828282" + }, + { + "start": 91100000, + "chr": "7", + "end": 92800000, + "options": "label=q21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 92800000, + "chr": "7", + "end": 98000000, + "options": "label=q21.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 98000000, + "chr": "7", + "end": 103800000, + "options": "label=q22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 103800000, + "chr": "7", + "end": 104500000, + "options": "label=q22.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 104500000, + "chr": "7", + "end": 107400000, + "options": "label=q22.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 107400000, + "chr": "7", + "end": 114600000, + "options": "label=q31.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 114600000, + "chr": "7", + "end": 117400000, + "options": "label=q31.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 117400000, + "chr": "7", + "end": 121100000, + "options": "label=q31.31;type=gpos75;", + "value": "#828282" + }, + { + "start": 121100000, + "chr": "7", + "end": 123800000, + "options": "label=q31.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 123800000, + "chr": "7", + "end": 127100000, + "options": "label=q31.33;type=gpos75;", + "value": "#828282" + }, + { + "start": 127100000, + "chr": "7", + "end": 129200000, + "options": "label=q32.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 129200000, + "chr": "7", + "end": 130400000, + "options": "label=q32.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 130400000, + "chr": "7", + "end": 132600000, + "options": "label=q32.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 132600000, + "chr": "7", + "end": 138200000, + "options": "label=q33;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 138200000, + "chr": "7", + "end": 143100000, + "options": "label=q34;type=gneg;", + "value": "#ffffff" + }, + { + "start": 143100000, + "chr": "7", + "end": 147900000, + "options": "label=q35;type=gpos75;", + "value": "#828282" + }, + { + "start": 147900000, + "chr": "7", + "end": 152600000, + "options": "label=q36.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 152600000, + "chr": "7", + "end": 155100000, + "options": "label=q36.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 155100000, + "chr": "7", + "end": 159138663, + "options": "label=q36.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "8", + "end": 2200000, + "options": "label=p23.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 2200000, + "chr": "8", + "end": 6200000, + "options": "label=p23.2;type=gpos75;", + "value": "#828282" + }, + { + "start": 6200000, + "chr": "8", + "end": 12700000, + "options": "label=p23.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 12700000, + "chr": "8", + "end": 19000000, + "options": "label=p22;type=gpos100;", + "value": "#000" + }, + { + "start": 19000000, + "chr": "8", + "end": 23300000, + "options": "label=p21.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 23300000, + "chr": "8", + "end": 27400000, + "options": "label=p21.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 27400000, + "chr": "8", + "end": 28800000, + "options": "label=p21.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 28800000, + "chr": "8", + "end": 36500000, + "options": "label=p12;type=gpos75;", + "value": "#828282" + }, + { + "start": 36500000, + "chr": "8", + "end": 38300000, + "options": "label=p11.23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 38300000, + "chr": "8", + "end": 39700000, + "options": "label=p11.22;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 39700000, + "chr": "8", + "end": 43100000, + "options": "label=p11.21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 43100000, + "chr": "8", + "end": 45600000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 45600000, + "chr": "8", + "end": 48100000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 48100000, + "chr": "8", + "end": 52200000, + "options": "label=q11.21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 52200000, + "chr": "8", + "end": 52600000, + "options": "label=q11.22;type=gpos75;", + "value": "#828282" + }, + { + "start": 52600000, + "chr": "8", + "end": 55500000, + "options": "label=q11.23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 55500000, + "chr": "8", + "end": 61600000, + "options": "label=q12.1;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 61600000, + "chr": "8", + "end": 62200000, + "options": "label=q12.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 62200000, + "chr": "8", + "end": 66000000, + "options": "label=q12.3;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 66000000, + "chr": "8", + "end": 68000000, + "options": "label=q13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 68000000, + "chr": "8", + "end": 70500000, + "options": "label=q13.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 70500000, + "chr": "8", + "end": 73900000, + "options": "label=q13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 73900000, + "chr": "8", + "end": 78300000, + "options": "label=q21.11;type=gpos100;", + "value": "#000" + }, + { + "start": 78300000, + "chr": "8", + "end": 80100000, + "options": "label=q21.12;type=gneg;", + "value": "#ffffff" + }, + { + "start": 80100000, + "chr": "8", + "end": 84600000, + "options": "label=q21.13;type=gpos75;", + "value": "#828282" + }, + { + "start": 84600000, + "chr": "8", + "end": 86900000, + "options": "label=q21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 86900000, + "chr": "8", + "end": 93300000, + "options": "label=q21.3;type=gpos100;", + "value": "#000" + }, + { + "start": 93300000, + "chr": "8", + "end": 99000000, + "options": "label=q22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 99000000, + "chr": "8", + "end": 101600000, + "options": "label=q22.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 101600000, + "chr": "8", + "end": 106200000, + "options": "label=q22.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 106200000, + "chr": "8", + "end": 110500000, + "options": "label=q23.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 110500000, + "chr": "8", + "end": 112100000, + "options": "label=q23.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 112100000, + "chr": "8", + "end": 117700000, + "options": "label=q23.3;type=gpos100;", + "value": "#000" + }, + { + "start": 117700000, + "chr": "8", + "end": 119200000, + "options": "label=q24.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 119200000, + "chr": "8", + "end": 122500000, + "options": "label=q24.12;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 122500000, + "chr": "8", + "end": 127300000, + "options": "label=q24.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 127300000, + "chr": "8", + "end": 131500000, + "options": "label=q24.21;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 131500000, + "chr": "8", + "end": 136400000, + "options": "label=q24.22;type=gneg;", + "value": "#ffffff" + }, + { + "start": 136400000, + "chr": "8", + "end": 139900000, + "options": "label=q24.23;type=gpos75;", + "value": "#828282" + }, + { + "start": 139900000, + "chr": "8", + "end": 146364022, + "options": "label=q24.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "9", + "end": 2200000, + "options": "label=p24.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 2200000, + "chr": "9", + "end": 4600000, + "options": "label=p24.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 4600000, + "chr": "9", + "end": 9000000, + "options": "label=p24.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 9000000, + "chr": "9", + "end": 14200000, + "options": "label=p23;type=gpos75;", + "value": "#828282" + }, + { + "start": 14200000, + "chr": "9", + "end": 16600000, + "options": "label=p22.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 16600000, + "chr": "9", + "end": 18500000, + "options": "label=p22.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 18500000, + "chr": "9", + "end": 19900000, + "options": "label=p22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 19900000, + "chr": "9", + "end": 25600000, + "options": "label=p21.3;type=gpos100;", + "value": "#000" + }, + { + "start": 25600000, + "chr": "9", + "end": 28000000, + "options": "label=p21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 28000000, + "chr": "9", + "end": 33200000, + "options": "label=p21.1;type=gpos100;", + "value": "#000" + }, + { + "start": 33200000, + "chr": "9", + "end": 36300000, + "options": "label=p13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 36300000, + "chr": "9", + "end": 38400000, + "options": "label=p13.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 38400000, + "chr": "9", + "end": 41000000, + "options": "label=p13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 41000000, + "chr": "9", + "end": 43600000, + "options": "label=p12;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 43600000, + "chr": "9", + "end": 47300000, + "options": "label=p11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 47300000, + "chr": "9", + "end": 49000000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 49000000, + "chr": "9", + "end": 50700000, + "options": "label=q11;type=acen;", + "value": "#d92f27" + }, + { + "start": 50700000, + "chr": "9", + "end": 65900000, + "options": "label=q12;type=gvar;", + "value": "#dcdcdc" + }, + { + "start": 65900000, + "chr": "9", + "end": 68700000, + "options": "label=q13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 68700000, + "chr": "9", + "end": 72200000, + "options": "label=q21.11;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 72200000, + "chr": "9", + "end": 74000000, + "options": "label=q21.12;type=gneg;", + "value": "#ffffff" + }, + { + "start": 74000000, + "chr": "9", + "end": 79200000, + "options": "label=q21.13;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 79200000, + "chr": "9", + "end": 81100000, + "options": "label=q21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 81100000, + "chr": "9", + "end": 84100000, + "options": "label=q21.31;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 84100000, + "chr": "9", + "end": 86900000, + "options": "label=q21.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 86900000, + "chr": "9", + "end": 90400000, + "options": "label=q21.33;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 90400000, + "chr": "9", + "end": 91800000, + "options": "label=q22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 91800000, + "chr": "9", + "end": 93900000, + "options": "label=q22.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 93900000, + "chr": "9", + "end": 96600000, + "options": "label=q22.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 96600000, + "chr": "9", + "end": 99300000, + "options": "label=q22.32;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 99300000, + "chr": "9", + "end": 102600000, + "options": "label=q22.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 102600000, + "chr": "9", + "end": 108200000, + "options": "label=q31.1;type=gpos100;", + "value": "#000" + }, + { + "start": 108200000, + "chr": "9", + "end": 111300000, + "options": "label=q31.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 111300000, + "chr": "9", + "end": 114900000, + "options": "label=q31.3;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 114900000, + "chr": "9", + "end": 117700000, + "options": "label=q32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 117700000, + "chr": "9", + "end": 122500000, + "options": "label=q33.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 122500000, + "chr": "9", + "end": 125800000, + "options": "label=q33.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 125800000, + "chr": "9", + "end": 130300000, + "options": "label=q33.3;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 130300000, + "chr": "9", + "end": 133500000, + "options": "label=q34.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 133500000, + "chr": "9", + "end": 134000000, + "options": "label=q34.12;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 134000000, + "chr": "9", + "end": 135900000, + "options": "label=q34.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 135900000, + "chr": "9", + "end": 137400000, + "options": "label=q34.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 137400000, + "chr": "9", + "end": 141213431, + "options": "label=q34.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "X", + "end": 4300000, + "options": "label=p22.33;type=gneg;", + "value": "#ffffff" + }, + { + "start": 4300000, + "chr": "X", + "end": 6000000, + "options": "label=p22.32;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 6000000, + "chr": "X", + "end": 9500000, + "options": "label=p22.31;type=gneg;", + "value": "#ffffff" + }, + { + "start": 9500000, + "chr": "X", + "end": 17100000, + "options": "label=p22.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 17100000, + "chr": "X", + "end": 19300000, + "options": "label=p22.13;type=gneg;", + "value": "#ffffff" + }, + { + "start": 19300000, + "chr": "X", + "end": 21900000, + "options": "label=p22.12;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 21900000, + "chr": "X", + "end": 24900000, + "options": "label=p22.11;type=gneg;", + "value": "#ffffff" + }, + { + "start": 24900000, + "chr": "X", + "end": 29300000, + "options": "label=p21.3;type=gpos100;", + "value": "#000" + }, + { + "start": 29300000, + "chr": "X", + "end": 31500000, + "options": "label=p21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 31500000, + "chr": "X", + "end": 37600000, + "options": "label=p21.1;type=gpos100;", + "value": "#000" + }, + { + "start": 37600000, + "chr": "X", + "end": 42400000, + "options": "label=p11.4;type=gneg;", + "value": "#ffffff" + }, + { + "start": 42400000, + "chr": "X", + "end": 46400000, + "options": "label=p11.3;type=gpos75;", + "value": "#828282" + }, + { + "start": 46400000, + "chr": "X", + "end": 49800000, + "options": "label=p11.23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 49800000, + "chr": "X", + "end": 54800000, + "options": "label=p11.22;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 54800000, + "chr": "X", + "end": 58100000, + "options": "label=p11.21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 58100000, + "chr": "X", + "end": 60600000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 60600000, + "chr": "X", + "end": 63000000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 63000000, + "chr": "X", + "end": 64600000, + "options": "label=q11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 64600000, + "chr": "X", + "end": 67800000, + "options": "label=q12;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 67800000, + "chr": "X", + "end": 71800000, + "options": "label=q13.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 71800000, + "chr": "X", + "end": 73900000, + "options": "label=q13.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 73900000, + "chr": "X", + "end": 76000000, + "options": "label=q13.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 76000000, + "chr": "X", + "end": 84600000, + "options": "label=q21.1;type=gpos100;", + "value": "#000" + }, + { + "start": 84600000, + "chr": "X", + "end": 86200000, + "options": "label=q21.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 86200000, + "chr": "X", + "end": 91800000, + "options": "label=q21.31;type=gpos100;", + "value": "#000" + }, + { + "start": 91800000, + "chr": "X", + "end": 93500000, + "options": "label=q21.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 93500000, + "chr": "X", + "end": 98300000, + "options": "label=q21.33;type=gpos75;", + "value": "#828282" + }, + { + "start": 98300000, + "chr": "X", + "end": 102600000, + "options": "label=q22.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 102600000, + "chr": "X", + "end": 103700000, + "options": "label=q22.2;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 103700000, + "chr": "X", + "end": 108700000, + "options": "label=q22.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 108700000, + "chr": "X", + "end": 116500000, + "options": "label=q23;type=gpos75;", + "value": "#828282" + }, + { + "start": 116500000, + "chr": "X", + "end": 120900000, + "options": "label=q24;type=gneg;", + "value": "#ffffff" + }, + { + "start": 120900000, + "chr": "X", + "end": 128700000, + "options": "label=q25;type=gpos100;", + "value": "#000" + }, + { + "start": 128700000, + "chr": "X", + "end": 130400000, + "options": "label=q26.1;type=gneg;", + "value": "#ffffff" + }, + { + "start": 130400000, + "chr": "X", + "end": 133600000, + "options": "label=q26.2;type=gpos25;", + "value": "#c8c8c8" + }, + { + "start": 133600000, + "chr": "X", + "end": 138000000, + "options": "label=q26.3;type=gneg;", + "value": "#ffffff" + }, + { + "start": 138000000, + "chr": "X", + "end": 140300000, + "options": "label=q27.1;type=gpos75;", + "value": "#828282" + }, + { + "start": 140300000, + "chr": "X", + "end": 142100000, + "options": "label=q27.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 142100000, + "chr": "X", + "end": 147100000, + "options": "label=q27.3;type=gpos100;", + "value": "#000" + }, + { + "start": 147100000, + "chr": "X", + "end": 155270560, + "options": "label=q28;type=gneg;", + "value": "#ffffff" + }, + { + "start": 0, + "chr": "Y", + "end": 2500000, + "options": "label=p11.32;type=gneg;", + "value": "#ffffff" + }, + { + "start": 2500000, + "chr": "Y", + "end": 3000000, + "options": "label=p11.31;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 3000000, + "chr": "Y", + "end": 11600000, + "options": "label=p11.2;type=gneg;", + "value": "#ffffff" + }, + { + "start": 11600000, + "chr": "Y", + "end": 12500000, + "options": "label=p11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 12500000, + "chr": "Y", + "end": 13400000, + "options": "label=q11.1;type=acen;", + "value": "#d92f27" + }, + { + "start": 13400000, + "chr": "Y", + "end": 15100000, + "options": "label=q11.21;type=gneg;", + "value": "#ffffff" + }, + { + "start": 15100000, + "chr": "Y", + "end": 19800000, + "options": "label=q11.221;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 19800000, + "chr": "Y", + "end": 22100000, + "options": "label=q11.222;type=gneg;", + "value": "#ffffff" + }, + { + "start": 22100000, + "chr": "Y", + "end": 26200000, + "options": "label=q11.223;type=gpos50;", + "value": "#a6a6a6" + }, + { + "start": 26200000, + "chr": "Y", + "end": 28800000, + "options": "label=q11.23;type=gneg;", + "value": "#ffffff" + }, + { + "start": 28800000, + "chr": "Y", + "end": 59373566, + "options": "label=q12;type=gvar;", + "value": "#dcdcdc" + } + ]; diff --git a/src/webapp/help/contact_us.html b/src/webapp/help/contact_us.html new file mode 100644 index 0000000..2092910 --- /dev/null +++ b/src/webapp/help/contact_us.html @@ -0,0 +1,30 @@ + + +Contact Us + + +

Multi-Scale Association Explorer

+

Please direct questions in regards to this +project to the following: +

Email

+

Publication/Analysis: CRC Aggressiveness re at csacr dot org + + +

User Groups

+

Regulome Explorer: http://groups.google.com/group/regulome-explorer + + diff --git a/src/webapp/help/quick_start.html b/src/webapp/help/quick_start.html new file mode 100644 index 0000000..61f7ae7 --- /dev/null +++ b/src/webapp/help/quick_start.html @@ -0,0 +1,261 @@ + +Quick_Start + + +

Quick Start for Multi-Scale Association +Explorer

+ +

+ +

The Multi-Scale Association Explorer (MSAE) enables the exploration of associations derived from +genomic, clinical, and other biomedical data features.  

+ +

+ +

The MSAE + can be used in many ways.  Four use cases are:

+ +

 

+
    +
  1. Examine a specific gene
  2. +
  3. Examine a +particular data type such as Gene Expression or DNA Methylation
  4. +
  5. Examine a chromosomal region
  6. +
  7. Examine association values with a particular value or range of +values.  
  8. +
+

+ +The following examples begin from the dataset located at: + http://explorer.cancerregulome.org/re/?dataset=gbm_1006_nomask +

Below is an example of examining a specific gene in the MSAE:

+ +

+ +

+ +

1. Gene Search for Gene +Expression - RPS4Y1

+ +

In the filter window, select +Gene Expression under Type.  Then type RPS4Y1 in the Label Box.  Click +on Filter.

+ +

+ +

+ +

+ +

2. Use your mouse to place the arrow +over the blue tick representing RPS4Y1 gene expression to see the information +card.

+ +

+ +

3. Pin the +information card to the window.  To do this, click on the “T” + in the upper left corner.  The T will switch over to an “O” + after pinning. Information Card Video Tutorial +

+ +

+ +

+

+ +

+ +

4. To see additional information about +this gene, click on one of the links at the bottom of the information +card.

+ +

+ +

5. Click +on the blue tick to open the RPS4Y1 feature in the chromosome-level +view.

+ +

+ +

6. In the +chromosome-level view, you can see the RPS4Y1 feature on the feature types and +assocation panels.Linear Browser Video + Tutorial +

+

+ +

+ +

+ +

+ +

+ +

+ +

+
+

+ diff --git a/src/webapp/help/user_guide.html b/src/webapp/help/user_guide.html new file mode 100644 index 0000000..77e8c7a --- /dev/null +++ b/src/webapp/help/user_guide.html @@ -0,0 +1,598 @@ + +User Guide - Multi-Scale Association + Explorer + + +

User Guide for Multi-Scale Association +Explorer

+ +

+ +

The Multi-Scale Association Explorer (MSAE) is a visualization tool that +allows exploration of analytically-derived associations among a set of features.  The primary context of the visualization + is the genomic coordinates of the features. Features that do not possess a genomic location are represented, + as well. The data most often includes a combination of: +

  • Genomic: gene expression, mutation calls, copy number variation, methylation, microRNA
  • +
  • Clinical: patient attributes, patient diagnosis, clinical notations
  • +
  • Pathological: tissue sample analysis, blood sample analysis, tumor analysis
  • +

+ +

+ + +

The association value may be any numerical, categorical, or statistical value that gives some evidence + for an association +between a pair of feature variables.  The precise meaning of the value depends on the analysis used to derive the association.

+ +

+ +

The MSAE +consists of a Genome-level View in the left pane and a Filter Associations +window in the right pane.

+ +

+ +

+ +

+ +

Genome-level +View

+ +

+ +

The +human genome is displayed in circular format with the chromosomes designated by +gray circular labels with black print.  The data is overlaid on this genome +as a series of  three concentric rings:

+ +

+ +

Features - (Outermost ring) color-coded ticks +represent different molecular features

+ +

+ +

Cytogenetic Bands +- (Middle ring) Genome labeled with cytogenetic bands

+ +

+ +

Associations lacking genomic coordinates - (Inner ring) A display of associations in + which one feature possesses genomic coordinates (the location of the displayed association) and the second feature does not. +

+ +

+ +

+ +

+ +

Features

+ +

The outer ring consists of ticks which are color-coded to +represent the various feature types used in the analysis. + For example, green represents DNA methylation data.  

+ +

+ +

Information + Card

+ +

Hovering over a tick displays a small +information card.  This card includes Feature, Source, Location, +Annotation, and Aggressiveness fields as well as links to external public +resources. This card can be moved on the display with your mouse by +placing the pointer on the black rectangle in the upper left corner.  The +card can be pinned to the display by clicking on the “T” in the +upper left corner, which switches over to an “O” on pinning. + Multiple cards can be pinned to the display in order to compare data from +different molecular features.

+ +

+ +

+Video tutorial on information cards. +

+ +

 

+ +

Example of (pinned) information cards:

+ +

+ +

+ +

Clicking a tick brings up a +chromosome-level view with a zoom-in on the designated region (see more +information under Chromosome-level + View).

+ +

+ +

Cytogenetic Bands

+ +

The middle ring +displays the genome with cytogenetic bands.

+ +

+ +

Hovering over a band displays a +small information card which can be moved and pinned to the display as described +under Information Card.  This +information card includes the cytogenetic band and location +information.

+ +

+ +

Association Value

+ +

Hovering over a graph edge or unlocated association (inner ring) displays a small information card which can +be moved and pinned to the display as described under Information Card.

+ +

+ +

Chromosome-level View

+ +

After clicking on +a feature tick, graph node, or chromosome label, the chromosome-level view is shown at +the bottom of the screen.  The linear browser displays several tracks mapped to chromosomal position: +

    +
  • Bottom-most: the position and length of each feature tick in the current query result.
  • +
  • Second from Bottom: associations possessing one feature that has no genomic coordinate. The location of the + association corresponds to the feature possessing a genomic location.
  • +
  • Second from Top: associations between proximal features. Associated genomic features that are located in + close proximity are displayed as a single dot.
  • +
  • Top-most: associations between distal features. Associated genomic features that are located on the same chromosome, but + at a distance such that a line/edge is displayed.
  • +
+  A full-chromosome map +is at the bottom of this view.

+ +

+ +

+Video tutorial on the chromosome-level view +

+ +

+ +

Below is an example of a zoomed-in region on chromosome Y. + +

+ +

+ +

+ +

Hovering over +a feature type or association displays a small information card which +can be moved and pinned to the display as described under Information Card.

+ +

+ +

A pink scaling window is present +at the bottom of this view.  Clicking on the window and moving it with your +mouse allows different regions to be shown in the display.  In addition, +the pink scaling window can be resized to display larger or smaller regions by +clicking on the edge of the window and dragging to the desired +size.

+ +

+ +

Rescaling in +the association and feature types panels can be done by clicking on +the association or feature types panels.  A purple scaling window +will appear and this can be resized to zoom-in on the region of +interest. +

Filter Associations + Window

You can look at data of interest by using the +filter window.  You create a filter and then press Filter to run the +filter.  The genome-level view will then reflect the filter results. + Reset resets the filter but does not reset the genome-level view. + To return to a default view, click on Reset and then click on +Filter. +

There are several filter fields +under two subheadings - Molecular Feature and Association

Molecular Feature

    +
  1. Type allows filtering by a +specific type of experimental feature (for example, gene expression).  The +default is All.
  2. +
  3. Label allows filtering by +gene symbol (ex. SCN5A).  This field allows inclusion of an asterisk for +wildcard matching (ex. APC*)
  4. +
  5. Lookup finds a +chromosomal location for a particular gene symbol.  For example, you can +type SCN5A in the Label field and press Lookup.  The result is the +chromosomal coordinates for this gene.
  6. +
  7. Chromosome allows filtering by chromosome number.
  8. +
  9. Start and Stop allow filtering by genomic coordinates. + 
  10. +

Association

    +
  1. The association type (if there are multiple types) can be selected such that the query results are ordered by that value. +  You can +select a numeric operation and a specific numeric association value. Depending on the value type, the filter field is displayed + in a variety of manners. The range-type field allows the user to filter the value in a variety of manners using a pull-down window. + There are 4 numeric options in the pull-down window: + 
  2. +

    +
  1. >= greater than or equal to a specific +value    
  2. +
  3. <= less than or equal +to a specific value  
  4. +
  5. Abs is Absolute +value.  For example, Abs=0.5 means displays association values >= 0.5 +and <=-0.5.   The default value is Abs=0.
  6. +
  7. Btw is Between.  For example, Btw=0.5 means display + association values between -0.5 and 0.5.
  8. +

    +
  1. Maximum +Results specifies the maximum number of results to display in the genome-level +view.  Please note that the time required to load the display is dependent +on the maximum number of results that need to be loaded. + 
  2. +

Here are a few examples of +filtering associations:

1. Gene Expression Gene Search - MS4A1

Go to the dataset at + http://explorer.cancerregulome.org/re/?dataset=brca_13apr12_rf&t_label=MS4A1. Click on reset if you have already used the +filter.

Target Type - Gene Expression

Target Label - MS4A1

Click on +Filter

+

2. Methylation Search - +MLH1

Click on reset if you have already used the +filter.

Target Type - microRNA

Target Label- hsa-miR-21

Click on +Filter

+

3. Gene Aberration Search

Click +on reset if you have already used the filter.

Target Type +- Gene Aberration

Click on Filter.

4. Chromosome Search - +20

Click on reset if you have already used the +filter.

Type - All

Target Chromosome - 20

Click on +Filter

5.  Association Values - +pvalue<= 0.01.

Click on reset if you have already used the + filter.

Target Type - Gene Expression

In the Association subpanel, set the pvalue <= 0.001 + + Order By - Pvalue +

Click on Filter

Display Data and Saving Data

Data Table

A table of the data +being displayed graphically can be seen under the Data Table tab.  The data +in the table can be sorted in terms of each column by clicking on the column +label.

Saving +Data

Data can be saved by using the Data menu and +selecting Export.  Data tables can be saved with the TSV or CSV option. + Visualizations of the genome-level view and chromosome-level view can be +saved with the SVG or PNG option.  

+ +

Advanced +Options

Under the Display menu, there are several +options to customize the genome-level view.  

    +
  1. Outer Ticks allows you to modify Overlap +Distance, Wedge Height, and Wedge Width.
  2. +
  3. Rotate Clockwise allows you to rotate the genome-level view by a +specified number of degrees.
  4. +
  5. Rings allows +you to turn rings on and off.  The default is to display Cytogenetic Bands +and Aggressiveness Scores.  
  6. +

Under the Mode menu, selecting +Circular Plot allows you to select one of two options to interact with the +genome-level view.  Explore fixes the view on the window.  This is the +default.  Navigate allows you to move the view so you can focus on one area +of the genome.  If you select Navigate, you can then click on any region of +the concentric circles and drag the entire circle to a different location. + Changing the mode back to Explore fixes the view on the window +again.

+ +

+

+Video tutorial advanced display options. +

+ +

Walk-through for One Feature

1. Gene Search for Gene Expression - +RPS4Y1

Go to the dataset at + http://explorer.cancerregulome.org/re/?dataset=brca_13apr12_rf&t_label=MS4A1. + In the Target filter window, select Gene Expression +under Type.  Then type MS4A1 in the Target Label Box.   + Click on Filter.

+

2. Use your mouse to place the arrow over the blue tick +representing MS4A1 gene expression ( to see the information card.) It is the left-most blue tick on Chromosome Y.

3. Pin the information card to +the window.  To do this, click on the “T” in the upper left +corner.  The T will switch over to an “O” after pinning. +


4. To see +additional information about this gene, click on one of the links at the bottom +of the information card.

5. Click on the blue tick to open the MS4A1 feature in the +chromosome-level view.

6. In the chromosome-level view, you can see the MS4A1 feature +on the feature types panel and associations on the association panels above.


7. Hover over the dot in the "Proximal Feature Predictors" track above the MS4A1 gene expression feature. + An information card displays the association with a copy number variation region feature on Chromosome Y. This is + the large orange tile displayed in the feature track. +


8. Click on the dot representing the above-described association. A plot appears in a new window. + The distribution of association values is shown between the two features in the selected association.

+


+ 9. In the new Details Window, click on the tab at the top marked "MEDLINE". An article in the PubMed database is + displayed which relates to the expression of MS4A1 and chromosomal abnormalities on sex chromsomes. The article is displayed + when the PMID is clicked on (blue link.) +

+


+ + diff --git a/src/webapp/index.html.maintenance b/src/webapp/index.html.maintenance new file mode 100644 index 0000000..f455c3e --- /dev/null +++ b/src/webapp/index.html.maintenance @@ -0,0 +1,53 @@ + + + + + + + + + + + + Regulome Explorer + + + + + + + + + + + + + + +
+
+
+ +
+
+

Regulome Explorer is down for maintenance.

+
+
+
+ The site is currently down for maintenance.
+ In the meantime, read about other TCGA projects and the work going on at the Institute for +Systems Biology. +
+
+


+
+
+
+
© 2012, Institute for Systems Biology, All Rights Reserved
+
+
+ + diff --git a/src/webapp/inventory.html b/src/webapp/inventory.html new file mode 100644 index 0000000..7832c34 --- /dev/null +++ b/src/webapp/inventory.html @@ -0,0 +1,47 @@ + + + Inventory + + + + + + + + + + + + + + + + + +
+ + diff --git a/src/webapp/js/controller/data_plot.js b/src/webapp/js/controller/data_plot.js new file mode 100755 index 0000000..a3ac5ef --- /dev/null +++ b/src/webapp/js/controller/data_plot.js @@ -0,0 +1,1673 @@ +function registerPlotListeners() { + + var d = vq.events.Dispatcher; + d.addListener('data_ready','associations',function(data) { + if (re.state.query_cancel) { return;} + generateColorScale(); + renderCircleData(data); + renderCircleLegend('top-right'); + renderPathwayMembers('below-top-right', data); + }); + d.addListener('data_ready','sf_associations',function(data) { + if (re.state.query_cancel) { return;} + generateColorScale(); + renderSFCircleData(data); + renderCircleLegend('center'); + }); + d.addListener( 'data_ready','graph',function(data) { + var obj = { + network : data, + div : 'graph-panel' + }; + initializeGraph(obj); + var e = new vq.events.Event('graph_ready','graph',{}); + e.dispatch(); + }); + d.addListener( 'frame_ready','graph',function() { + if (!re.display_options.cytoscape.ready) { + renderGraph(); + } + }); + d.addListener('data_ready','dataset_labels',function(obj){ + generateColorMaps(obj); + }); + d.addListener('data_ready','annotations',function(obj){ + re.plot.chrome_length = obj['chrom_leng']; + }); + d.addListener('data_ready', 'patient_categories', function(obj) { + updatePatientCategories(obj); + }); + d.addListener('data_ready','pathways',function(obj){ + re.plot.pw_name = obj['pw_name']; + }); + d.addListener('render_scatterplot','details', function(obj){ + wipeScatterplotLegend(); + scatterplot_draw(obj); + }); + d.addListener('render_linearbrowser', function(obj){ + renderLinearData(obj); + renderLinearLegend(); + }); + d.addListener('render_complete','circvis', function(obj){ + re.circvis_obj = obj; + }); + d.addListener('render_complete','graph', function(obj){ + //re.cytoscape.obj = obj.graph; + }); + d.addListener('modify_circvis', function(obj){ + modifyCircle(obj); + }); + d.addListener('layout_network', function(obj){ + if (re.display_options.cytoscape.ready) { + layoutGraph(); + } + }); + +} +function updatePatientCategories(data) { + re.plot.scatterplot_category = {}; + re.plot.scatterplot_category.values = data.patient_values.split(':'); + re.plot.scatterplot_category.alias = data.alias; + vq.events.Dispatcher.dispatch(new vq.events.Event('data_ready', 'features', re.plot.scatterplot_data)); +} + +function layoutGraph() { + re.cytoscape.obj.layout(getNetworkLayout()); +} + +function getNetworkLayout() { + var layout = {name : "ForceDirected", options : {gravitation : -500,mass: 3, + tension: .01,drag:0.1,maxDistance:1000, minDistance: 30, + iterations:400, autoStabilize: false, maxTime: 3000, restLength: 30}}; + + switch(re.display_options.cytoscape.layout) { + case('tree'): + layout = {name : 'Tree', + options:{ + orientation: "topToBottom", + depthSpace: 50, + breadthSpace: 30, + subtreeSpace: 5 + }}; + break; + case('radial'): + layout = {name : 'Radial', + options:{ + angleWidth: 360, + radius: 150 + }}; + break; + case('force_directed'): + default: + break; + } + + return layout; +} + +function modifyCircle(object) { + if (object.pan_enable != null) { + re.circvis_obj.setPanEnabled(object.pan_enable); + } + if (object.zoom_enable != null) { + re.circvis_obj.setZoomEnabled(object.zoom_enable); + } +} + +function generateColorScale() { + var pairwise_settings = re.display_options.circvis.rings.pairwise_scores; + var field = re.display_options.circvis.rings.pairwise_scores.value_field; + var association = re.model.association.types[re.model.association_map[field]]; + var settings = association.vis.scatterplot; + pairwise_settings.color_scale = pv.Scale.linear(settings.color_scale.domain()); + pairwise_settings.color_scale.range.apply(pairwise_settings.color_scale,settings.color_scale.range()); + + if (pairwise_settings.manual_y_values) { + var min = pairwise_settings.min_y_value; + var max = pairwise_settings.max_y_value; + pairwise_settings.color_scale.domain(min,max); + } + + if (pairwise_settings.manual_y_color_scale) { pairwise_settings.color_scale.range(pairwise_settings.min_y_color,pairwise_settings.max_y_color);} + + +} + +function generateColorMaps(dataset_labels) { + var current_source_list = dataset_labels['feature_sources'].map(function(row) { return row.source;}); + var num_sources = current_source_list.length; + re.plot.link_sources_array = []; + current_source_list.forEach(function(row, index) { + var color = re.plot.colors.link_type_colors(index); + for (var i = 0; i < num_sources; i++) { + re.plot.link_sources_array.push(color); + color = color.darker(.3); + } + }); + var source_map = pv.numerate(dataset_labels['feature_sources'], function(row) {return row.source;}); + var current_data = re.plot.all_source_list.filter(function(input_row){return source_map[input_row] != undefined;}); + var current_map = pv.numerate(current_data); + + //re.plot.colors.node_colors = function(source) { return re.plot.colors.source_color_scale(current_map[source]);}; + re.plot.colors.link_sources_colors = function(link) { return re.plot.link_sources_array[current_map[link[0]] * current_data.length + current_map[link[1]]];} +} + +function renderCircleLegend(anchor) { + legend_draw(document.getElementById('circle-legend-panel'),anchor); +} + +function renderPathwayMembers(anchor, data) { + var memberCounts = {}; + var networks = []; + if (data != null){ + networks = data["network"]; + document.getElementById("pathway-member-item").innerHTML = ""; + } + pathway_members_draw(document.getElementById('pathway-member-item'),anchor,networks); +} + +function renderLinearLegend(anchor) { + legend_draw(document.getElementById('linear-legend-panel')); +} + +function wipeScatterplotLegend(categories,color_map) { + document.getElementById('scatterplot-legend-panel').innerHTML = ""; +} + +function renderScatterplotLegend(categories,color_map) { + scatterplot_legend_draw(document.getElementById('scatterplot-legend-panel'),categories,color_map); +} + +function renderCircleData(data) { + Ext.getCmp('circle-colorscale-panel').el.dom.innerHTML = ''; + buildNetworkCircvis(data, document.getElementById('circle-panel')); +} + +function renderSFCircleData(data) { + buildSFCircvis(data, document.getElementById('circle-panel')); + var field = re.display_options.circvis.rings.pairwise_scores.value_field; + var association = re.model.association.types[re.model.association_map[field]]; + colorscale_draw( association,'circle-colorscale-panel'); +} + +function renderLinearData(obj) { + linear_plot(vq.utils.VisUtils.extend(obj,{div:'linear-panel'})); +} + +function renderGraph(data) { + + populateGraph(); +} + +function inter_chrom_click(node) { + initiateDetailsPopup(node); +} + +function initiateDetailsPopup(link) { + var e =new vq.events.Event('click_association','vis',link); + e.dispatch(); +} + +function colorscale_draw(association_obj, div) { + var color_scale = re.display_options.circvis.rings.pairwise_scores.color_scale; + var dom = color_scale.domain(); + var width = 240, + scale_width = 160, + box_width = 4, + end = dom[dom.length-1], + start = dom[0], + step_size = end - start, + steps = scale_width / box_width; + var vis= new pv.Panel() + .height(70) + .width(width) + .strokeStyle(null) + .canvas(div); + var x_axis = pv.Scale.linear(start,end).range(0,scale_width); + var legend = vis.add(pv.Panel) + .left((width-scale_width)/2) + .right((width-scale_width)/2) + .strokeStyle('black') + .lineWidth(1) + .bottom(30) + .height(30); + legend.add(pv.Bar) + .data(pv.range(start,end,step_size/steps)) + .width(box_width) + .left(function() { return this.index * box_width;}) + .fillStyle(color_scale); + legend.add(pv.Rule) + .data(x_axis.ticks(2)) + .left(x_axis) + .strokeStyle('#000') + .lineWidth(1) + .anchor('bottom').add(pv.Label) + .font('10px bold Courier, monospace') + .text(x_axis.tickFormat); + vis.anchor('bottom').add(pv.Label) + .text(association_obj.label); + vis.render(); + +} + +function scatterplot_legend_draw(div,categories,color_map) { + + var width = 100, + offset = 10, + lineHeight = 10, + box_width = 10; + + var vis= new pv.Panel() + .height(400) + .width(width) + .strokeStyle(null) + .canvas(div); + var legend = vis.add(pv.Panel) + .top(30) + .left(offset) + .right(width-offset) + .strokeStyle(null); + + var entry = legend.add(pv.Panel) + .data(categories) + .top(function() { return this.index * lineHeight;}) + .height(lineHeight); + + entry.add(pv.Bar) + .width(lineHeight) + .left(1) + .top(1) + .bottom(0) + .fillStyle(function(cat) { return color_map[cat];}); + + entry.add(pv.Label) + .left(lineHeight) + .bottom(0) + .textAlign('left') + .textBaseline('bottom') + .font("11px helvetica"); + + vis.render(); + +} + +function pathway_members_draw(div,anchor,networks) { + var dataset_labels = re.ui.getDatasetLabels(); + if (re.ui.getCurrentPathwayMembers() == null || re.ui.getCurrentPathwayMembers().length == 0) + return; + var currentMemberList = re.ui.getCurrentPathwayMembers().split(/\s*,\s*/); + currentMemberList.sort(); + var memberSourceCountArray = {}; + var memberCountArray = []; + for (var k = 0; k < currentMemberList.length; k++){ + if (currentMemberList[k] == null || currentMemberList[k] == "") + continue; + var member = currentMemberList[k]; + var mobj = {}; + var mcount = 0; + var gexpcount = 0; + var methcount = 0; + var cnvrcount = 0; + var mirncount = 0; + var gnabcount = 0; + var prdmcount = 0; + var rppacount = 0; + var clincount = 0; + var sampcount = 0; + for (var n = 0; n < networks.length; n++){ + var label = networks[n].node1.label; + var psource = networks[n].node2.source; + if (Ext.getCmp("filter_type").getValue() == re.ui.feature2.id ) + label = networks[n].node2.label; + if (label == member){ + mcount++; + if (psource == 'GEXP') + gexpcount++; + if (psource == 'METH') + methcount++; + if (psource == 'CNVR') + cnvrcount++; + if (psource == 'MIRN') + mirncount++; + if (psource == 'GNAB') + gnabcount++; + if (psource == 'PRDM') + prdmcount++; + if (psource == 'RPPA') + rppacount++; + if (psource == 'CLIN') + clincount++; + if (psource == 'SAMP') + sampcount++; + } + } + mobj["GEXP"] = gexpcount; + mobj["METH"] = methcount; + mobj["CNVR"] = cnvrcount; + mobj["MIRN"] = mirncount; + mobj["GNAB"] = gnabcount; + mobj["PRDM"] = prdmcount; + mobj["RPPA"] = rppacount; + mobj["CLIN"] = clincount; + mobj["SAMP"] = sampcount; + mobj["offset"] = 35; + memberSourceCountArray[member] = mobj; + if (mcount > 0) + memberCountArray[member] = mcount; + } + + var sortedMembers = {}; + var tuples = []; + for (var key in memberCountArray) tuples.push([key, memberCountArray[key]]); + tuples.sort(function(a, b) { + a = a[1]; + b = b[1]; + return b < a ? -1 : (b > a ? 1 : 0); + }); + for (var i = 0; i < tuples.length; i++) { + var key = tuples[i][0]; + var value = tuples[i][1]; + if (key == "remove" || !isUnsignedInteger(value)){ + continue; + } + sortedMembers[key] = value; + } + var stuples = []; + for (var member in sortedMembers){ + stuples.push([member,sortedMembers[member]]); + } + for (var member in currentMemberList){ + var memberstr = currentMemberList[member]; + var add = true; + for (var s =0; s < stuples.length; s++){ + if (memberstr == stuples[s][0]){ + add = false; + break; + } + } + if (add && memberstr.length > 1){ + stuples.push([memberstr, 0]); + } + } + stuples.sort(function(a,b){ + return b[1] - a[1]; + }); + var source_map = pv.numerate(dataset_labels['feature_sources'], function(row) {return row.source;}); + + var current_data = re.plot.all_source_list.filter(function(input_row){return source_map[input_row] != undefined;}); + var current_map = pv.numerate(current_data); + + re.plot.colors.link_sources_colors = function(link) { return re.plot.link_sources_array[current_map[link[0]] * current_data.length + current_map[link[1]]];} + + var top_padding = 20, + left_padding = 0; + var legend_height = (30 + stuples.length * 13), + legend_width = 400; + + var pathway_members_query_counts = re.ui.getPathwayMembersQueryCounts(); + var locatable_sources = re.plot.locatable_source_list; + var horizontal_offset = 65; + var bar_height = 12; + var label_offset = 10; + var scale_factor = 5; + + var draw_data = []; + stuples.forEach(function(mv, index) { + var pathway_member = mv[0]; + + var sources = []; + var total = 0; + locatable_sources.forEach(function(src, source_index) { + var count = memberSourceCountArray[pathway_member][src]; + + if (count > 0) { + sources.push({ + source_index: source_index, + label_index: index, + offset: total, + width: count + }); + + total = total + count; + } + }); + + var obj = { + label: pathway_member, + label_index: index, + sources: sources + }; + + draw_data.push(obj); + }); + + var vis = new pv.Panel() + .left(0) + .top(0) + .width(legend_width) + .height(legend_height) + .canvas(div); + + var draw_panel = vis.add(pv.Panel) + .def("active_label_index", -1) + .left(left_padding) + .top(top_padding) + .events("all") + .event("click", function() { + this.active_label_index(-1); + this.render(); + re.circvis_obj.highlightConnectedNodes(''); + }); + + var entries = draw_panel.add(pv.Panel) + .data(draw_data) + .top(function() { return this.index * bar_height;}) + .height(bar_height) + .strokeStyle(function(d) { + // Red rectangle for highlighting the selected pathway member + return d.label_index == draw_panel.active_label_index() ? "red" : pv.color("rgba(1, 1, 1, 0)"); + }) + .event("mouseover", function(d) { + if (draw_panel.active_label_index() == -1 && pathway_members_query_counts[d.label] > 0) { + re.circvis_obj.highlightConnectedNodes(d.label); + } + }) + .event("mouseout", function() { + if (draw_panel.active_label_index() == -1) { + re.circvis_obj.highlightConnectedNodes(''); + } + }) + .event("click", function(d) { + if (pathway_members_query_counts[d.label] > 0) { + draw_panel.active_label_index(d.label_index); + draw_panel.render(); + re.circvis_obj.highlightConnectedNodes(d.label); + } + }); + + // Pathway member name labels + entries.add(pv.Panel) + .left(label_offset) + .width(horizontal_offset-label_offset) + .fillStyle("white") + .event("dblclick", function(d) { + var url = 'http://www.genecards.org/cgi-bin/carddisp.pl?gene=' + d.label; + var newwindow=window.open(url,"Gene Card:" + d.label,'height=500,width=800'); + if (window.focus) { + newwindow.focus() + } + return false; + }) + .anchor("left").add(pv.Label) + .textStyle(function(d) { + return pathway_members_query_counts[d.label] == 0 ? "red" : "black"; + }) + .font(function(d) { + if (d.label_index == draw_panel.active_label_index()) { + return "bold 10px sans-serif"; + } + else { + return "10px sans-serif"; + } + }) + .text(function(d) { + return d.label; + }); + + var x_scale = pv.Scale.linear(0, 50*4).range(0, legend_width); + + draw_panel.add(pv.Panel) + .left(horizontal_offset) + .add(pv.Rule) + .data(x_scale.ticks()) + .strokeStyle("#eee") + .left(function(d) { + return scale_factor * d; + }) + .anchor("top").add(pv.Label) + .text(x_scale.tickFormat); + + // Horizontal bar for each source + entries.add(pv.Panel) + .left(horizontal_offset) + .add(pv.Bar) + .data(function(d) { + return d.sources; + }) + .left(function(d) { + return scale_factor * d.offset; + }) + .width(function(d) { + return scale_factor * d.width; + }) + .fillStyle(function(d) { + var color = re.plot.colors.node_colors(locatable_sources[d.source_index]); + + if (d.label_index == draw_panel.active_label_index()) { + return color; + } + else { + color.opacity = 0.7; + return color; + } + }) + .bottom(1.0); + + vis.render(); +} + +function legend_draw(div,anchor) { + var dataset_labels = re.ui.getDatasetLabels(); + var source_map = pv.numerate(dataset_labels['feature_sources'], function(row) {return row.source;}); + var current_locatable_data = re.plot.locatable_source_list.filter(function(input_row){return source_map[input_row] != undefined;}); + var current_data = re.plot.all_source_list.filter(function(input_row){return source_map[input_row] != undefined;}); + var current_map = pv.numerate(current_data); + var anchor = anchor || 'top-right'; + var width=800, height=800; + var padding = 20; + var indent = 12; + var lineHeight = 12; + var nFeatureTypes = current_locatable_data.length; + var variableTypeBoxHeight = padding + 5 + nFeatureTypes * lineHeight; + //var dataRingTypes = ['1. Cytoband','2. Gene Expression','3. Methylation','4. Copy Number','5. Unmapped Associations']; + + var dataRingBoxHeight = padding + re.plot.legend.dataRingTypes.length * lineHeight; + var quantileBoxHeight = padding + Object.keys(re.plot.colors.quantinfo).length * lineHeight; + // Three legend boxes on top of each other + var legend_height = variableTypeBoxHeight + 15;//+ dataRingBoxHeight + quantileBoxHeight + 3 * 5; + var legend_width = 150; + var top = 20, left = 0; + if (arguments[1] != undefined) {anchor = arguments[1];} + switch(anchor) { + case('center'): + Ext.getCmp('circle-legend-panel').setPosition(375,330); + Ext.getCmp('circle-legend-panel').doLayout(); + break; + case('top-right'): + Ext.getCmp('circle-legend-panel').setPosition(880,20); + Ext.getCmp('circle-legend-panel').doLayout(); + break; + case('below-top-right'): + Ext.getCmp('pathway-legend-panel').setPosition(880,legend_height + 20); + Ext.getCmp('pathway-legend-panel').doLayout(); + default: + break; + } + re.plot.colors.link_sources_colors = function(link) { return re.plot.link_sources_array[current_map[link[0]] * current_data.length + current_map[link[1]]];} + // Container for all sub-legends (variable types, data rings, and quantiles) + var vis= new pv.Panel() + .left(left) + .top(top) + .width(legend_width) + .height(legend_height) + .lineWidth(1) + .strokeStyle('black') + .canvas(div); + + // Create variable type sub-legend box + var drawPanel = vis.add(pv.Panel) + + // Draw title for variable type sub-legend box: + // Take it 5px away from top and 12px away from the left + drawPanel.add(pv.Label) + .textAlign('left') + .left(indent) + .top(padding) + .text('Variable Types') + .font("15px helvetica"); // Title that starts from 5px from the top and extends to 20px from the top + + var color_panel = drawPanel.add(pv.Panel) + .top(padding) + .left(indent); + + var entry = color_panel.add(pv.Panel) + .data(current_locatable_data) + .top(function() { return this.index * lineHeight;}) + .height(lineHeight); + entry.add(pv.Bar) + .left(0) + .width(lineHeight) + .top(1) + .bottom(0) + .fillStyle(function(type) { return re.plot.colors.node_colors(type);}); + entry.add(pv.Label) + .text(function(id) { return re.label_map[id] || id;}) + .bottom(0) + .left(lineHeight) + .textAlign('left') + .textBaseline('bottom') + .font("11px helvetica"); + + var ringPanel = vis.add(pv.Panel) + .top(variableTypeBoxHeight) + .left(0); // .top(function(){ return current_locatable_data.length*12;}) + + // var quantPanel = vis.add(pv.Panel) + // .top(variableTypeBoxHeight) + // .left(0); + + // quantPanel.add(pv.Label) + // .textAlign('left') + // .top(padding) + // .left(indent) + // .text('Quantile colors') + // .font("15px helvetica"); + + // var qrings = quantPanel.add(pv.Panel) + // .data(Object.keys(re.plot.colors.quants)) + // .top(function() { return padding + this.index * lineHeight;}) + // .height(lineHeight); + // qrings.add(pv.Bar) + // .left(indent) + // .width(lineHeight) + // .top(1) + // .bottom(0) + // .fillStyle(function(type) { + // return re.plot.colors.quants[type]; + // }) + // qrings.add(pv.Label) + // .text(function(q) { return q + " " + re.plot.colors.quantinfo[q];}) + // .bottom(0) + // .left(25) + // .textAlign('left') + // .textBaseline('bottom') + // .font("11px helvetica"); + vis.render(); +} + +function singlefeature_circvis(parsed_data,div) { + var width=800, height=800; + var ring_radius = width / 10; + var chrom_keys = ["1","2","3","4","5","6","7","8","9","10", + "11","12","13","14","15","16","17","18","19","20","21","22","X","Y"]; + var stroke_style = re.plot.colors.getStrokeStyleAttribute(); + + function genome_listener(chr) { + var e = new vq.events.Event('render_linearbrowser','circvis',{data:vq.utils.VisUtils.clone(parsed_data),chr:chr}); + e.dispatch(); + } + + function wedge_listener(feature) { + var chr = feature.chr; + var neighborhood = getFeatureNeighborhood(feature,2.5*re.MILLION); + var start = neighborhood.start; + var range_length = neighborhood.end - neighborhood.start; + var e = new vq.events.Event('render_linearbrowser','circvis',{data:vq.utils.VisUtils.clone(parsed_data),chr:chr,start:start,range:range_length}); + e.dispatch(); + } + + var karyotype_tooltip_items = { + 'Cytogenetic Band' : function(feature) { + return vq.utils.VisUtils.options_map(feature)['label']; + }, + Location : function(feature) { return 'Chr' + feature.chr + ' ' + feature.start + '-' + feature.end;} + }; + + var scatterplot_data = parsed_data['features']; + + var pairwise_settings = re.display_options.circvis.rings.pairwise_scores; + var field = re.display_options.circvis.rings.pairwise_scores.value_field; + var association = re.model.association.types[re.model.association_map[field]]; + var settings = association.vis.scatterplot; + + if (settings.values === undefined) { settings.values = {};} + var min = settings.values.min === undefined ? pv.min(scatterplot_data, function(o) { return o[field];}) : settings.values.min; + var max = settings.values.max === undefined ? pv.max(scatterplot_data, function(o) { return o[field];}) : settings.values.max; + var scale_type = settings.scale_type; + + if (pairwise_settings.manual_y_values) { min = pairwise_settings.min_y_value; max = pairwise_settings.max_y_value;} + + var chrom_leng = vq.utils.VisUtils.clone(re.plot.chrome_length); + var ticks = vq.utils.VisUtils.clone(parsed_data['features']); + var isolated_feature = parsed_data['isolated_feature']; + + var data = { + GENOME: { + DATA:{ + key_order : chrom_keys, + key_length : chrom_leng + }, + OPTIONS: { + radial_grid_line_width: 1, + label_layout_style : 'clock', + listener : genome_listener, + label_font_style : '18pt helvetica' + } + }, + TICKS : { + DATA : { + data_array : ticks + }, + OPTIONS :{ + display_legend : false, + listener : wedge_listener, + stroke_style :stroke_style, + fill_style : function(tick) {return re.plot.colors.node_colors(tick.source); }, + tooltip_items : re.display_options.circvis.tooltips.feature, + tooltip_links : re.display_options.circvis.tooltips.feature_links + } + }, + PLOT: { + width : width, + height : height, + horizontal_padding : 30, + vertical_padding : 30, + container : div, + enable_pan : false, + enable_zoom : false, + show_legend: false, + legend_include_genome : false, + legend_corner : 'ne', + legend_radius : width / 15 + }, + WEDGE:[ + { + PLOT : { + height : ring_radius/2, + type : 'karyotype' + }, + DATA:{ + data_array : cytoband + }, + OPTIONS: { + legend_label : 'Cytogenetic Bands' , + legend_description : 'Chromosomal Cytogenetic Bands', + outer_padding : 10, + tooltip_items : karyotype_tooltip_items + } + },{ + PLOT : { + height : ring_radius, + type : 'scatterplot' + }, + DATA:{ + data_array : scatterplot_data, + value_key : field + }, + OPTIONS: { + legend_label : association.label , + legend_description : association.label + ' Values', + outer_padding : 10, + base_value : (max - min) / 2, + min_value : min, + max_value : max, + radius : 2, + draw_axes : true, + listener: function(node) { initiateDetailsPopup({sourceNode:node,targetNode:{id:isolated_feature}});}, + shape:'dot', + fill_style : function(feature) {return pairwise_settings.color_scale(feature[field]); }, + stroke_style : function(feature) {return pairwise_settings.color_scale(feature[field]); }, + tooltip_items : re.display_options.circvis.tooltips.feature, + tooltip_links : re.display_options.circvis.tooltips.feature_links + } + } + ] + }; + return data; +} + +function buildSFCircvis(parsed_data,div) { + re.display_options.circvis.rings.pairwise_scores.hidden=false; + var circle_vis = new vq.CircVis(); + var config = singlefeature_circvis(parsed_data,div); + var obj = modifyCircvisObject(config); + var dataObject ={DATATYPE : "vq.models.CircVisData", CONTENTS : obj }; + circle_vis.draw(dataObject); + + var e = new vq.events.Event('render_complete','circvis',circle_vis); + e.dispatch(); + + return circle_vis; +} + + +function wedge_plot(parsed_data,div) { + var width=800, height=800; + var ring_radius = width / 20; + var chrom_keys = ["1","2","3","4","5","6","7","8","9","10", + "11","12","13","14","15","16","17","18","19","20","21","22","X","Y"]; + var stroke_style = re.plot.colors.getStrokeStyleAttribute(); + + function genome_listener(chr) { + var e = new vq.events.Event('render_linearbrowser','circvis',{data:vq.utils.VisUtils.clone(parsed_data),chr:chr}); + e.dispatch(); + } + + function wedge_listener(feature) { + var chr = feature.chr; + var neighborhood = getFeatureNeighborhood(feature,2.5*re.MILLION); + var start = neighborhood.start; + var range_length = neighborhood.end - neighborhood.start; + var e = new vq.events.Event('render_linearbrowser','circvis',{data:vq.utils.VisUtils.clone(parsed_data),chr:chr,start:start,range:range_length}); + e.dispatch(); + } + + var link_tooltip_items = { }; + link_tooltip_items[re.ui.feature1.label] = function(link) { return link.sourceNode.pretty_label+ ' ' + link.sourceNode.source + ' Chr' + link.sourceNode.chr + ' ' + link.sourceNode.start + + '-' + link.sourceNode.end + ' ' +link.sourceNode.label_mod;}; + + link_tooltip_items[re.ui.feature2.label] = function(link) { return link.targetNode.pretty_label+ ' ' + link.targetNode.source + ' Chr' + link.targetNode.chr + ' ' + link.targetNode.start + + '-' + link.targetNode.end + ' ' + link.targetNode.label_mod;}; + + var karyotype_tooltip_items = { + 'Cytogenetic Band' : function(feature) { + return vq.utils.VisUtils.options_map(feature)['label'];}, + Location : function(feature) { return 'Chr' + feature.chr + ' ' + feature.start + '-' + feature.end;} + }, + unlocated_tooltip_items = {}; + unlocated_tooltip_items[re.ui.feature1.label] = function(feature) { return feature.sourceNode.source + ' ' + feature.sourceNode.pretty_label + + (feature.sourceNode.chr ? ' Chr'+ feature.sourceNode.chr : '') + + (feature.sourceNode.start > -1 ? ' '+ feature.sourceNode.start : '') + + (!isNaN(feature.sourceNode.end) ? '-'+ feature.sourceNode.end : '') + ' '+ + feature.sourceNode.label_mod;}; + unlocated_tooltip_items[re.ui.feature2.label] = function(feature) { return feature.targetNode.source + ' ' + feature.targetNode.pretty_label + + (feature.targetNode.chr ? ' Chr'+ feature.targetNode.chr : '') + + (feature.targetNode.start > -1 ? ' '+ feature.targetNode.start : '') + + (!isNaN(feature.targetNode.end) ? '-'+ feature.targetNode.end : '') + ' ' + + feature.targetNode.label_mod;}; + + re.model.association.types.forEach( function(assoc) { + vq.utils.VisUtils.extend(link_tooltip_items, assoc.vis.tooltip.entry); + vq.utils.VisUtils.extend(unlocated_tooltip_items, assoc.vis.tooltip.entry); + }); + + var chrom_leng = vq.utils.VisUtils.clone(re.plot.chrome_length); + var ticks = vq.utils.VisUtils.clone(parsed_data['features']); + var types = re.model.association.types.map(function(assoc) { return assoc.query.id;}); + var unlocated_map = vq.utils.VisUtils.clone(parsed_data['unlocated']).filter(function(link) { return link.node1.chr != '';}) + .map(function(link) { + var node = { chr:link.node1.chr, start:link.node1.start,end:link.node1.end, value: 0}; + node.sourceNode = vq.utils.VisUtils.extend({},link.node1); node.targetNode = vq.utils.VisUtils.extend({},link.node2); + types.forEach(function(assoc) { + node[assoc] = link[assoc]; + }); + return node; + }).concat(vq.utils.VisUtils.clone(parsed_data['unlocated']).filter(function(link) { return link.node2.chr != '';}) + .map(function(link) { + var node = { chr:link.node2.chr, start:link.node2.start,end:link.node2.end, value: 0}; + node.sourceNode = vq.utils.VisUtils.extend({},link.node1); node.targetNode = vq.utils.VisUtils.extend({},link.node2); + types.forEach(function(assoc) { + node[assoc] = link[assoc]; + }); + return node; + })); + + var data = { + GENOME: { + DATA:{ + key_order : chrom_keys, + key_length : chrom_leng + }, + OPTIONS: { + radial_grid_line_width: 1, + label_layout_style : 'clock', + listener : genome_listener, + label_font_style : '18pt helvetica' + } + }, + TICKS : { + DATA : { + data_array : ticks + }, + OPTIONS :{ + display_legend : false, + listener : wedge_listener, + stroke_style :stroke_style, + fill_style : function(tick) {return re.plot.colors.node_colors(tick.source); }, + tooltip_links :re.display_options.circvis.tooltips.feature_links, + tooltip_items : re.display_options.circvis.tooltips.feature //optional + } + }, + PLOT: { + width : width, + height : height, + horizontal_padding : 30, + vertical_padding : 30, + container : div, + enable_pan : false, + enable_zoom : false, + show_legend: false, + legend_include_genome : false, + legend_corner : 'ne', + legend_radius : width / 15 + }, + WEDGE:[ + { + PLOT : { + height : ring_radius/4, + type : 'karyotype' + }, + DATA:{ + data_array : cytoband + }, + OPTIONS: { + legend_label : 'Cytogenetic Bands' , + legend_description : 'Chromosomal Cytogenetic Bands', + outer_padding : 6, + tooltip_items : karyotype_tooltip_items, + background_style: re.display_options.circvis.rings.karyotype.color_background + } + }, + { + PLOT : { + height : ring_radius/4, + type : 'scatterplot' + }, + DATA:{ + data_array : unlocated_map + }, + OPTIONS: { + legend_label : 'Unmapped Feature Correlates' , + legend_description : 'Feature Correlates with No Genomic Position', + outer_padding : 6, + base_value : 0, + min_value : -1, + max_value : 1, + radius : 4, + draw_axes : false, + shape:'dot', + fill_style : function(feature) { + return re.plot.colors.link_sources_colors([feature.sourceNode.source,feature.targetNode.source]); + }, + stroke_style : stroke_style, + background_style: re.display_options.circvis.rings.color_background, + tooltip_items : unlocated_tooltip_items, + listener : initiateDetailsPopup + } + } + ], + + NETWORK:{ + DATA:{ + data_array : parsed_data['network'] + }, + OPTIONS: { + outer_padding : 6, + node_highlight_mode : 'isolate', + node_fill_style : 'ticks', + node_stroke_style : stroke_style, + link_line_width : 2, + node_key : function(node) { + return node['id']; + }, + node_listener : wedge_listener, + link_listener: initiateDetailsPopup, + link_stroke_style : function(link) { + return re.plot.colors.link_sources_colors([link.sourceNode.source,link.targetNode.source]);}, + constant_link_alpha : 0.7, + node_tooltip_items : re.display_options.circvis.tooltips.feature, + node_tooltip_links : re.display_options.circvis.tooltips.feature_links, + tile_nodes: true, + node_overlap_distance : 10000, + link_tooltip_items : link_tooltip_items + } + } + }; + return data; +} + +function buildNetworkCircvis(data,div) { + re.display_options.circvis.rings.pairwise_scores.hidden=true; + var circle_vis = new vq.CircVis(); + var config = wedge_plot(data,div); + var obj = modifyCircvisObject(config); + var dataObject ={DATATYPE : "vq.models.CircVisData", CONTENTS : obj }; + circle_vis.draw(dataObject); + + var e = new vq.events.Event('render_complete','circvis',circle_vis); + e.dispatch(); + + return circle_vis; +} + +function getFeatureNeighborhood(feature,window_size) { + var f= vq.utils.VisUtils.clone(feature); + f.start = f.start - window_size; + f.end = (f.end || feature.start) + window_size; + return f; +} + +function linear_plot(obj) { + var div = obj.div || null, parsed_data = obj.data || [], chrom = obj.chr || '1', start = obj.start || null, range_length = obj.range || null; + var ucsc_genome_url = 'http://genome.ucsc.edu/cgi-bin/hgTracks'; + var tile_listener = function(feature){ + window.open(ucsc_genome_url + '?db=hg18&position=chr' + feature.chr + ':' + feature.start + + '-'+ feature.end,'_blank'); + return false; + }; + + var unlocated_tooltip_items = { }; + unlocated_tooltip_items[re.ui.feature1.label] = function(tie) { + return tie.sourceNode.pretty_label + ' ' + tie.sourceNode.source}; + unlocated_tooltip_items[re.ui.feature2.label] = function(tie) { + return tie.targetNode.pretty_label + ' ' + tie.targetNode.source }; + + var located_tooltip_items = { + Feature : function(tie) { + return tie.label + ' ' + tie.source + ' Chr' +tie.chr + ' ' + + tie.start + (tie.end != null ? '-'+tie.end : '') + ' '+ tie.label_mod;} + }; + var inter_tooltip_items = { }; + inter_tooltip_items[re.ui.feature1.label] = function(tie) { + return tie.sourceNode.pretty_label + ' ' + tie.sourceNode.source + ' Chr' +tie.sourceNode.chr + ' ' +tie.sourceNode.start +'-'+ + tie.sourceNode.end + ' ' + tie.sourceNode.label_mod;}; + inter_tooltip_items[re.ui.feature2.label] = function(tie) { + return tie.targetNode.pretty_label + ' ' + tie.targetNode.source + + ' Chr' + tie.targetNode.chr+ ' ' +tie.targetNode.start +'-'+tie.targetNode.end + ' ' + tie.targetNode.label_mod}; + + re.model.association.types.forEach( function(assoc) { + vq.utils.VisUtils.extend(unlocated_tooltip_items, assoc.vis.tooltip.entry); + vq.utils.VisUtils.extend(inter_tooltip_items, assoc.vis.tooltip.entry); + }); + + + var hit_map = parsed_data['unlocated'].filter(function(link) { return link.node1.chr == chrom;}) + .map(function(link) { + var obj = {}; + re.model.association.types.forEach(function(assoc) { + obj[assoc.ui.grid.store_index] = link[assoc.query.id]; + }) + var node1_clone = vq.utils.VisUtils.extend(obj,link.node1); + node1_clone.start = node1_clone.start; node1_clone.end = node1_clone.end; + node1_clone.sourceNode = vq.utils.VisUtils.extend({},link.node1); + node1_clone.targetNode = vq.utils.VisUtils.extend({},link.node2); + return node1_clone; + }).concat(parsed_data['unlocated'].filter(function(link) { return link.node2.chr == chrom;}) + .map(function(link) { + var obj = {}; + re.model.association.types.forEach(function(assoc) { + obj[assoc.ui.grid.store_index] = link[assoc.query.id]; + }) + var node1_clone = vq.utils.VisUtils.extend(obj,link.node2); + node1_clone.start = node1_clone.start; node1_clone.end = node1_clone.end; + node1_clone.sourceNode = vq.utils.VisUtils.extend({},link.node1); + node1_clone.targetNode = vq.utils.VisUtils.extend({},link.node2); + return node1_clone; + })); + + + var tie_map = parsed_data['network'].filter(function(link) { + return link.node1.chr == chrom && link.node2.chr == chrom && + Math.abs(link.node1.start - link.node2.start) > re.plot.proximal_distance;}) + .map(function(link) { + var obj = {}; + re.model.association.types.forEach(function(assoc) { + obj[assoc.ui.grid.store_index] = link[assoc.query.id]; + }); + var node1_clone = vq.utils.VisUtils.extend(obj,link.node1); + node1_clone.start = link.node1.start <= link.node2.start ? + link.node1.start : link.node2.start; + node1_clone.end = link.node1.start <= link.node2.start ? link.node2.start : link.node1.start; + node1_clone.start = node1_clone.start;node1_clone.end = node1_clone.end; + node1_clone.sourceNode = vq.utils.VisUtils.extend({},link.node1); + node1_clone.targetNode = vq.utils.VisUtils.extend({},link.node2); + re.model.association.types.forEach(function(assoc) { + node1_clone[assoc.ui.grid.store_index] = link[assoc.query.id]; + }); + return node1_clone; + }); + + var neighbor_map = parsed_data['network'].filter(function(link) { + return link.node1.chr == chrom && link.node2.chr == chrom && + Math.abs(link.node1.start - link.node2.start) < re.plot.proximal_distance;}) + .map(function(link) { + var obj = {}; + re.model.association.types.forEach(function(assoc) { + obj[assoc.ui.grid.store_index] = link[assoc.query.id]; + }); + var node1_clone = vq.utils.VisUtils.extend(obj,link.node1); + node1_clone.start = node1_clone.start;node1_clone.end = node1_clone.end; + node1_clone.sourceNode = vq.utils.VisUtils.extend({},link.node1); + node1_clone.targetNode = vq.utils.VisUtils.extend({},link.node2); + return node1_clone; + }); + + var locations = vq.utils.VisUtils.clone(parsed_data['features']).filter(function(node) { return node.chr == chrom;}) + .map(function (location) { + return vq.utils.VisUtils.extend(location,{ start: location.start, end : location.end , label : location.value}); + }); + var node2_locations = parsed_data['network'] + .filter(function(link) { return link.node2.chr == chrom;}) + .map(function(link) { + return vq.utils.VisUtils.extend(link.node2, { start : link.node2.start, end: link.node2.end}); + }); + + locations = locations.concat(node2_locations); + + var location_map = pv.numerate(locations,function(node) { return node.id+'';}); + + locations = pv.permute(locations,pv.values(location_map)); + + var data_obj = function() { return { + PLOT : { + width:800, + height:700, + min_position:1, + max_position:maxPos, + vertical_padding:20, + horizontal_padding:20, + container : div, + context_height: 100, + axes : { + x: { + label : 'Chromosome ' + obj.chr + ' (Mb)', + scale_multiplier : (1 / re.MILLION) + } + }}, + TRACKS : [ + { type: 'tile', + label : 'Feature Locations', + description : 'Genome Location of Features', + CONFIGURATION: { + fill_style : function(node) { return re.plot.colors.node_colors(node.source);}, //required + stroke_style : function(node) { return re.plot.colors.node_colors(node.source);}, //required + track_height : 50, //required + tile_height:13, //required + track_padding: 10, //required + tile_padding:5, //required + tile_overlap_distance:1 * re.MILLION, + notifier:tile_listener, //optional + track_fill_style : pv.color('#EEDEDD'), + track_line_width : 1, + track_stroke_style: pv.color('#000000') + }, + OPTIONS: { + tooltip_links :re.display_options.circvis.tooltips.feature_links, + tooltip_items : re.display_options.circvis.tooltips.feature //optional + }, + data_array : locations + }, { type: 'glyph', + label : 'Associations lacking Genomic Coordinates', + description : '', + CONFIGURATION: { + fill_style : function(hit) { return re.plot.colors.node_colors(hit.source);}, + stroke_style : null, + track_height : 60, + track_padding: 20, + tile_padding:6, //required + tile_overlap_distance:.1 * re.MILLION, //required + shape : 'dot', + tile_show_all_tiles : true, + radius : 3, + track_fill_style : pv.color('#EEEEEE'), + track_line_width : 1, + track_stroke_style: pv.color('#000000'), + notifier:inter_chrom_click + }, + OPTIONS: { + tooltip_items : unlocated_tooltip_items + }, + data_array : hit_map + }, + { type: 'glyph', + label : 'Proximal Feature Associations', + description : '', + CONFIGURATION: { + fill_style : function(link) { return re.plot.colors.link_sources_colors([link.sourceNode.source,link.targetNode.source])}, + stroke_style : null, + track_height : 80, + track_padding: 20, + tile_padding:4, //required + tile_overlap_distance:1 * re.MILLION, //required + shape : 'dot', + tile_show_all_tiles : true, + radius : 3, + track_fill_style : pv.color('#DDEEEE'), + track_line_width : 1, + track_stroke_style: pv.color('#000000'), + notifier:inter_chrom_click + }, + OPTIONS: { + tooltip_items : inter_tooltip_items + }, + data_array : neighbor_map + }, + { type: 'tile', + label : 'Distal Intra-Chromosomal Associations', + description : '', + CONFIGURATION: { + fill_style : function(link) { return re.plot.colors.link_sources_colors([link.sourceNode.source,link.targetNode.source]);}, + stroke_style : function(link) { return re.plot.colors.link_sources_colors([link.sourceNode.source,link.targetNode.source]);}, + track_height : 280, + track_padding: 15, //required + tile_height : 2, + tile_padding:7, //required + tile_overlap_distance:.1 * re.MILLION, //required + tile_show_all_tiles : true, + track_fill_style : pv.color('#EEDDEE'), + track_line_width : 1, + track_stroke_style: pv.color('#000000'), + notifier : inter_chrom_click + }, + OPTIONS: { + tooltip_items : inter_tooltip_items + }, + data_array : tie_map + }] + } + }; + var chrom_leng = vq.utils.VisUtils.clone(re.plot.chrome_length); + var chr_match = chrom_leng.filter(function(chr_obj) { return chr_obj.chr_name == chrom;}); + var maxPos = Math.ceil(chr_match[0]['chr_length']); + + var lin_browser = new vq.LinearBrowser(); + var lin_data = {DATATYPE: 'vq.models.LinearBrowserData',CONTENTS: data_obj()}; + + lin_browser.draw(lin_data); + + if (start != null && start > 0 && range_length != null && range_length > 0) { + lin_browser.setFocusRange(start,range_length); + } + + + var e = new vq.events.Event('render_complete','linear',obj); + e.dispatch(); + + return lin_browser; +} + + +function isOrdinal(label) { + return label =='B'; +} + +function isNominal(label) { + return label =='C'; +} + +function isNonLinear(label) { + return isOrdinal(label) || isNominal(label); +} + + +function isNAValue(data_type,value) { + if (isNonLinear(data_type)) return value == 'NA'; + else return isNaN(value); +} + +re.MILLION = 1000000; + +function scatterplot_draw(params) { + var data = params.data || re.plot.scatterplot_data || {data:[]}, + div = params.div || null, + regression_type = params.regression_type || 'none', + reverse_axes = params.reverse_axes || false, + discretize_x = params.discretize_x || false, + discretize_y = params.discretize_y || false; + re.plot.scatterplot_data = data; + if (data === undefined) {return;} //prevent null plot + var dataset_labels=re.ui.getDatasetLabels(); + var patient_labels = dataset_labels['patients']; + var f1 = data.f1alias, f2 = data.f2alias; + var f1id = data.f1alias, f2id=data.f2alias; + var f1label = re.functions.lookupFFN(data.f1alias), + f2label = re.functions.lookupFFN(data.f2alias); + var f1AxisLabel = f1label + re.functions.prettyFeatureLabelSuffix(data.f1alias), + f2AxisLabel = f2label + re.functions.prettyFeatureLabelSuffix(data.f2alias); + var f1values, f2values; + var category_labels = new Array(2); + var categories = re.plot.scatterplot_category ? re.plot.scatterplot_category.values : undefined; + var label_fn, uniq_cat, temp; + + function makeLabelMap(label_fn) { + var fn = label_fn; + return function(cat) { + return fn ? fn(cat) : cat; + }; + } + if (isNonLinear(f1id[0])) { + f1values = data.f1values; + //calculate human readable tick labels: + label_fn= re.functions.getValueToLabelFunction(f1id, f1label); + //labels to display for category values; + uniq_cat = pv.uniq(f1values); + category_labels[0] = makeLabelMap(label_fn); + } else { + f1values = data.f1values.map(function(val) {return parseFloat(val);}); + } + + if (isNonLinear(f2id[0])) { + f2values = data.f2values; + //calculate human readable tick labels: + label_fn= re.functions.getValueToLabelFunction(f2id, f2label); + //labels to display for category values; + uniq_cat = pv.uniq(f2values); + category_labels[1] = makeLabelMap(label_fn); + } else { + f2values = data.f2values.map(function(val) {return parseFloat(val);}); + } + + var dot_colors; + var fill_style_fn = undefined; + var stroke_style_fn = undefined; + if (categories !== undefined) { + var category_feature_alias = re.plot.scatterplot_category.alias; + var labelFunction = re.functions.getValueToLabelFunction(category_feature_alias, re.functions.lookupFFN(category_feature_alias)); + //labels to display for category values; + var uniq_categories = pv.uniq(categories); + var mappedValues = labelFunction ? uniq_categories.map(labelFunction) : uniq_categories; + mappedValues.sort(); + mappedValues.sort(function(a,b) { + if (b === 'NA'){ return -1;} + else if (a === 'NA') { return 1;} + return 0;}); + + dot_colors = re.functions.assignValueColors(categories); + + var mappedColors = {}; + Object.keys(dot_colors).forEach(function(category){ + var modified_cat = labelFunction ? labelFunction(category) : category; + mappedColors[modified_cat] = dot_colors[category]; + }); + + fill_style_fn = function(d) { + return dot_colors[d.category]; + }; + stroke_style_fn = function(d) { + return dot_colors[d.category]; + } + renderScatterplotLegend(mappedValues,mappedColors); + } + else { + fill_style_fn = function() {return pv.color('steelblue').alpha(0.2);}; + stroke_style_fn = function() {return "steelblue";}; + } + if (f1values.length != f2values.length) { + vq.events.Dispatcher.dispatch(new vq.events.Event('render_fail','scatterplot','Data cannot be rendered correctly.')); + return; + } + var data_array = []; + for (var i=0; i< f1values.length; i++) { + if (!isNAValue(f1id[0],f1values[i]) && !isNAValue(f2id[0],f2values[i]) ) { + var obj = {}; + obj[f1] = f1values[i], obj[f2]=f2values[i], obj['patient_id'] = patient_labels[i]; + if (categories !== undefined) { + obj.category = categories[i]; + obj.patient_id = patient_labels[i] + " " + categories[i]; + } + data_array.push(obj); + } + } + function reverseAxes() { + config.CONTENTS.xcolumnid = f2;config.CONTENTS.ycolumnid=f1;config.CONTENTS.xcolumnlabel=f2AxisLabel;config.CONTENTS.ycolumnlabel=f1AxisLabel; + tooltip[data.f1alias]=f2;tooltip[data.f2alias]=f1; + config.CONTENTS.tooltip_items=tooltip; + //swap label maps + if (cubbyhole || violin) { category_labels.unshift(category_labels[1]); category_labels.pop(); } + } + var tooltip = {}; + tooltip[data.f1alias] = f1,tooltip[data.f2alias] = f2,tooltip['Sample'] = 'patient_id'; + + if(discretize_x && !isNonLinear(f1id[0])) { + var values1 = data_array.map(function(obj){return obj[f1];}); + var binFunc1 = binData(values1); + var cat1 = new Array(); + data_array.forEach(function(val) { + val[f1] = binFunc1(val[f1]); + cat1.push(val[f1]); + }); + //calculate human readable tick labels: + label_fn= re.functions.getValueToLabelFunction(f1id, f1label); + //labels to display for category values; + uniq_cat = pv.uniq(cat1); + category_labels[0] = makeLabelMap(label_fn); + } + + if(discretize_y && !isNonLinear(f2id[0])) { + var values2 = data_array.map(function(obj){return obj[f2];}); + var binFunc2 = binData(values2); + var cat2 = new Array(); + data_array.forEach(function(val) { + val[f2] = binFunc2(val[f2]); + cat2.push(val[f2]); + }); + //calculate human readable tick labels: + label_fn= re.functions.getValueToLabelFunction(f2id, f2label); + //labels to display for category values; + uniq_cat = pv.uniq(cat2); + category_labels[1] = makeLabelMap(label_fn); + } + + f1id = (discretize_x ? 'C' : f1id[0]) + f1id.slice(1); + f2id = (discretize_y ? 'C' : f2id[0]) + f2id.slice(1); + var violin = (isNonLinear(f1id[0]) ^ isNonLinear(f2id[0])); //one is nonlinear, one is not + var cubbyhole = isNonLinear(f1id[0]) && isNonLinear(f2id[0]); + + var sp,config; + if (violin) { + sp = new vq.ViolinPlot(); + config ={DATATYPE : "vq.models.ViolinPlotData", CONTENTS : { + PLOT : {container: div, + width : 540, + height: 300, + vertical_padding : 40, + horizontal_padding: 100, + font :"14px sans"}, + data_array: data_array, + xcolumnid: f1, + ycolumnid: f2, + valuecolumnid: 'patient_id', + xcolumnlabel : f1AxisLabel, + ycolumnlabel : f2AxisLabel, + valuecolumnlabel : '', + tooltip_items : tooltip, + show_points : true, + regression :regression_type, + fill_style: fill_style_fn, + stroke_style: stroke_style_fn, + x_axis_tick_format: function(d) { + var e = d + ''; + var c = category_labels[0](e); + return c !== e ? c : (isNaN(parseFloat(d)) ? e : parseFloat(d).toPrecision(3)) ; + }, + y_axis_tick_format: function(d) { + return parseFloat(d).toPrecision(3); + } + }}; + if (isNonLinear(f2id[0])) { + reverseAxes(); + } + sp.draw(config); + } + else if(cubbyhole) { + sp = new vq.CubbyHole(); + config ={DATATYPE : "vq.models.CubbyHoleData", CONTENTS : { + PLOT : {container: div, + width : 540, + height: 300, + vertical_padding : 40, horizontal_padding: 100, font :"14px sans"}, + data_array: data_array, + xcolumnid: f1, + ycolumnid: f2, + valuecolumnid: 'patient_id', + xcolumnlabel : f1AxisLabel, + ycolumnlabel : f2AxisLabel, + valuecolumnlabel : '', + tooltip_items : tooltip, + show_points : true, + radial_interval : 7, + fill_style: fill_style_fn, + stroke_style: stroke_style_fn, + x_axis_tick_format: function(d) { + var e = d + ''; + var c = category_labels[0](e); + return c !== e ? c : (isNaN(parseFloat(d)) ? e : parseFloat(d).toPrecision(3)) ; + }, + y_axis_tick_format: function(d) { + var e = d + ''; + var c = category_labels[1](e); + return c !== e ? c : (isNaN(parseFloat(d)) ? e : parseFloat(d).toPrecision(3)) ; + } + }}; + if (reverse_axes) { + reverseAxes(); + } + sp.draw(config); + } + else { + sp = new vq.ScatterPlot(); + + config ={DATATYPE : "vq.models.ScatterPlotData", CONTENTS : { + PLOT : {container: div, + width : 540, + height: 300, + vertical_padding : 40, horizontal_padding: 100, font :"14px sans"}, + data_array: data_array, + xcolumnid: f1, + ycolumnid: f2, + valuecolumnid: 'patient_id', + xcolumnlabel : f1AxisLabel, + ycolumnlabel : f2AxisLabel, + valuecolumnlabel : '', + tooltip_items : tooltip, + radial_interval : 7, + regression :regression_type, + fill_style: fill_style_fn, + stroke_style: stroke_style_fn, + x_axis_tick_format: function(d) { + return d.toPrecision(3); + }, + y_axis_tick_format: function(d) { + return d.toPrecision(3); + } + }}; + if (reverse_axes) { + reverseAxes(); + } + sp.draw(config); + } + + var e = new vq.events.Event('render_complete','scatterplot',sp); + e.dispatch(); + return sp; +} + + +function initializeGraph(obj) { + var div_id = obj.div; + + // initialization options + var options = { + // where you have the Cytoscape Web SWF + swfPath: re.cytoscape['swfPath'], + // where you have the Flash installer SWF + flashInstallerPath: re.cytoscape['flashInstallerPath'] + }; + re.cytoscape.obj = new org.cytoscapeweb.Visualization(div_id, options); + re.cytoscape.obj["customTooltip"] = function(data){ + return "Chr: "+ data.chr + "\n" + "Start: " + data.start + "\n" + "End: " + data.end; + }; + re.cytoscape.data = obj.network; +} + + +function populateGraph(obj) { + + // you could also use other formats (e.g. GraphML) or grab the network data via AJAX + var network = { + dataSchema: { + nodes: [ { name: "label", type: "string" }, + //{ name: "genescore", type: "number" }, + { name: "type", type: "string" }, + { name: "chr", type: "string" }, + { name: "start", type: "int" }, + { name: "end", type: "int" } + ], + edges: [ { name: "label", type:"string"}, + { name: "directed", type: "boolean", defValue: false} ] + .concat( re.ui.filters.link_distance ? {name:'link_distance', type: 'int'}: []) + .concat( + re.model.association.types.map(function(obj) { return obj.vis.network.edgeSchema;})) + }, + data: re.cytoscape.data + }; + + var visual_style = { + nodes: { + shape:'ELLIPSE', + size: 25, + color: { + defaultValue: '#FFF', + customMapper: { functionName :'mapFeatureType'} + }, + labelFontSize : 20, + labelHorizontalAnchor: "center", + labelVerticalAnchor : "top", + tooltipText: {customMapper: { functionName: "customTooltip" }} + }, + edges: { + width: 3, + color: "#0B94B1" + } + }; + + // init and draw + + function rgbToHex(R,G,B) {return '#' + toHex(R)+toHex(G)+toHex(B)} + function toHex(n) { + n = parseInt(n,10); + if (isNaN(n)) return "00"; + n = Math.max(0,Math.min(n,255)); + return "0123456789ABCDEF".charAt((n-n%16)/16) + + "0123456789ABCDEF".charAt(n%16); + } + + re.cytoscape.obj["mapFeatureType"] = function(data) { + var color = re.plot.colors.node_colors(data.type); + return rgbToHex(color.r,color.g,color.b); + }; + var layout =getNetworkLayout(); + + re.cytoscape.obj.ready(function() { + re.cytoscape.obj.initialized = true; + re.cytoscape.obj.addListener("click", "edges", function(event){ + var data = event.target.data; + var target = data.target.split(":"); + var source = data.source.split(":"); + var association = {sourceNode: {id: data.source, label: source[2] }, + targetNode: {id: data.target, label: target[2]}}; + initiateDetailsPopup(association); + }); + re.display_options.cytoscape.ready = true; + var e = new vq.events.Event('render_complete','graph',{}); + e.dispatch(); + }); + + re.cytoscape.obj.draw({ network: network, + + // let's try another layout + layout:layout, + + // set the style at initialisation + visualStyle: visual_style, + nodeTooltipsEnabled: true + }); +} + + +function modifyCircvisObject(obj) { + if (re.display_options.circvis.ticks.wedge_width_manually) { + obj.PLOT.width=re.display_options.circvis.width; + } + if (re.display_options.circvis.ticks.wedge_width_manually) { + obj.PLOT.height=re.display_options.circvis.height; + } + var chrom_keys = re.display_options.circvis.chrom_keys; + + var chrom_leng = vq.utils.VisUtils.clone(re.plot.chrom_length); + + if (re.display_options.circvis.ticks.tile_ticks_manually) { + obj.TICKS.OPTIONS.tile_ticks = true; + obj.TICKS.OPTIONS.overlap_distance = re.display_options.circvis.ticks.tick_overlap_distance; + } + + obj.PLOT.rotate_degrees = re.display_options.circvis.rotation; + if (re.display_options.circvis.ticks.wedge_width_manually) { + obj.TICKS.OPTIONS.wedge_width = re.display_options.circvis.ticks.wedge_width; + } + if (re.display_options.circvis.ticks.wedge_height_manually) { + obj.TICKS.OPTIONS.wedge_height = re.display_options.circvis.ticks.wedge_height; + } + return obj; +} + diff --git a/src/webapp/js/controller/data_retrieval.js b/src/webapp/js/controller/data_retrieval.js new file mode 100755 index 0000000..ff7743e --- /dev/null +++ b/src/webapp/js/controller/data_retrieval.js @@ -0,0 +1,958 @@ +function registerDataRetrievalListeners() { + var d = vq.events.Dispatcher; + d.addListener('dataset_selected', function(obj) { + selectDataset(obj.label); + setGlobalDiseaseVariable(obj.disease); + loadDatasetLabels(obj.disease); + }); + d.addListener('data_request', 'associations', function(obj) { + loadNetworkData(obj); + }); + d.addListener('data_request', 'label_position', function(obj) { + lookupLabelPosition(obj); + }); + d.addListener('data_request', 'annotations', function(obj) { + loadAnnotations(); + }); + d.addListener('click_association', function(link) { + loadFeatureData(link); + }); + d.addListener('data_request', 'patient_categories', function(obj) { + loadPatientCategories(obj); + }); +} + +function setGlobalDiseaseVariable(disease) { + if (disease) { + re.disease = disease.toUpperCase(); + } else { + re.disease = 'GLOBAL'; + } + +} + +function selectDataset(set_label) { + re.tables.current_data = set_label; + re.tables.network_uri = '/mv_' + set_label + '_feature_networks'; + re.tables.feature_uri = '/v_' + set_label + '_feature_sources'; + re.tables.clin_uri = '/v_' + set_label + '_feature_categorical_labels'; + re.tables.patient_uri = '/v_' + set_label + '_patients'; + re.tables.features_uri = '/' + set_label + '_features'; +} + +function loadDatasetLabels(disease) { + var dataset_labels = { + feature_sources: null, + categorical_feature_labels: null, + patients: null, + pathways: null, + ffn_map: null, + }; + var clin_label_query_str = '?' + re.params.query + 'select `alias`, `label`, `source`, `interesting_score`' + 'order by `interesting_score` desc' + re.params.json_out; + var clin_label_query = re.databases.base_uri + re.databases.rf_ace.uri + re.tables.clin_uri + re.rest.query + clin_label_query_str; + var synchronizer = new vq.utils.SyncCallbacks(loadComplete, this); + + function clinicalLabelQueryHandler(response) { + try { + if (errorInQuery(response.responseText)) { + throwQueryError('categorical_feature_labels', response); + } + dataset_labels['categorical_feature_labels'] = Ext.decode(response.responseText); + } catch (err) { + throwQueryError('categorical_feature_labels', response); + } + } + + function loadComplete() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_complete', 'dataset_labels', dataset_labels)); + } + + function loadFailed() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_fail', 'dataset_labels', { + msg: 'Failed to load dataset labels.' + })); + } + Ext.Ajax.request({ + url: clin_label_query, + success: synchronizer.add(clinicalLabelQueryHandler, this), + failure: function(response) { + queryFailed('dataset_labels', response); + } + }); + var sources_query_str = '?' + re.params.query + 'select source' + re.params.json_out; + var sources_query = re.databases.base_uri + re.databases.rf_ace.uri + re.tables.feature_uri + re.rest.query + sources_query_str; + + function featureSourceQueryHandler(response) { + try { + if (errorInQuery(response.responseText)) { + throwQueryError('feature_sources', response); + } + dataset_labels['feature_sources'] = Ext.decode(response.responseText); + } catch (err) { + throwQueryError('feature_sources', response); + } + } + Ext.Ajax.request({ + url: sources_query, + success: synchronizer.add(featureSourceQueryHandler, this), + failure: function(response) { + queryFailed('feature_source', response); + } + }); + var patient_query_str = '?' + re.params.query + 'limit 1' + re.params.json_out; + var patient_query = re.databases.base_uri + re.databases.rf_ace.uri + re.tables.patient_uri + re.rest.query + patient_query_str; + + function patientQueryHandle(response) { + try { + if (errorInQuery(response.responseText)) { + throwQueryError('patients', response); + } + dataset_labels['patients'] = Ext.decode(response.responseText)[0]['barcode'].split(':'); + } catch (err) { + throwQueryError('patients_barcode', response); + } + } + Ext.Ajax.request({ + url: patient_query, + success: synchronizer.add(patientQueryHandle, this), + failure: function(response) { + queryFailed('patient_labels', response); + } + }); + var pw_query_str = '?' + re.params.query + ('select pname, pmembers, purl, psource order by pname') + re.params.json_out; + var pw_query = re.databases.base_uri + re.databases.metadata.uri + re.tables.pathways + re.rest.query + pw_query_str; + + function handlePathwayQuery(response) { + try { + dataset_labels['pathways'] = Ext.decode(response.responseText); + } catch (err) { + throwQueryError('pathways', response); + } + } + Ext.Ajax.request({ + url: pw_query, + success: synchronizer.add(handlePathwayQuery, this), + failure: function(response) { + queryFailed('pathways', response); + } + }); + + var collection_label = re.disease.toUpperCase(); + + var uri = re.databases.base_uri + re.databases.ffn.uri + "/" + collection_label + re.tables.ffn; + var query = "?_include=id&_include=label&source=CLIN&source=SAMP&source=RPPA"; + var json = {}; + + function ffnQueryHandle(response) { + try { + json = Ext.decode(response.responseText); + } catch (err) { + throwQueryError('disease_ffn', response); + } + if (json.items) { + dataset_labels['ffn_map'] = json.items; + } else { + dataset_labels['ffn_map'] = []; + } + } + + var url = uri + query; + + Ext.Ajax.request({ + url: url, + success: synchronizer.add(ffnQueryHandle, this), + failure: function(response) { + queryFailed('disease_ffn', response); + } + }); + +} + +function lookupLabelPosition(label_obj) { + var label = label_obj.label || ''; + var query_str = 'select chr, start, end, alias where alias = \'' + label + '\' limit 1'; + var position_query_str = '?' + re.params.query + query_str + re.params.json_out; + var position_url = re.databases.base_uri + re.databases.metadata.uri + re.tables.label_lookup + re.rest.query + position_query_str; + var position_array = []; + + function positionQueryHandle(response) { + try { + if (errorInQuery(response.responseText)) { + throwQueryError('label_position', response); + } + position_array = Ext.decode(response.responseText); + } catch (err) { + throwQueryError('label_position', response); + } + + if (position_array.length == 1) { + loadComplete(); + } else { + noResults('label_position'); + } + } + + function loadComplete() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_complete', 'label_position', vq.utils.VisUtils.extend({ + feature: position_array[0] + }, label_obj))); + } + + function loadFailed() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_fail', 'label_position', { + msg: 'Retrieval Timeout' + })); + } + + Ext.Ajax.request({ + url: position_url, + success: positionQueryHandle, + failure: function(response) { + queryFailed('label_position', response); + } + }); + +} + +function loadPatientCategories(alias) { + var query_str = 'select alias, patient_values where alias = \'' + alias + '\' limit 1'; + var query_json = { + tq: query_str, + tqx: 'out:json_array' + }; + var category_query_str = '?' + Ext.urlEncode(query_json); + var category_query = re.databases.base_uri + re.databases.rf_ace.uri + re.tables.features_uri + re.rest.query + category_query_str; + + function categoryQueryHandle(response) { + try { + if (errorInQuery(response.responseText)) { + throwQueryError('patient_categories', response); + } + var data = Ext.decode(response.responseText); + if (data.length == 1) { + loadComplete(data[0]); + } else { + //noResults('features'); + } + } catch (err) { + throwQueryError('features', response); + } + } + + function loadComplete(categories) { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_complete', 'patient_categories', categories)); + } + + Ext.Ajax.request({ + url: category_query, + success: categoryQueryHandle, + failure: function(response) { + queryFailed('features', response); + } + }); +} + +function loadFeatureData(link) { + + var synchronizer = new vq.utils.SyncCallbacks(loadComplete, this); + var patients = { + data: null, + ffv: null + }; + var query_str = 'select alias, patient_values ' + 'where alias = \'' + link.sourceNode.id + '\' or alias = \'' + link.targetNode.id + '\' limit 2'; + var query_json = { + tq: query_str, + tqx: 'out:json_array' + }; + var patient_query_str = '?' + Ext.urlEncode(query_json); + var patient_query = re.databases.base_uri + re.databases.rf_ace.uri + re.tables.features_uri + re.rest.query + patient_query_str; + + function patientQueryHandle(response) { + try { + if (errorInQuery(response.responseText)) { + throwQueryError('features', response); + } + var testResponse = Ext.decode(response.responseText); + if (testResponse.length == 2) { + patients['data'] = testResponse; + } else { + patients['data'] = []; + noResults('features'); + } + } catch (err) { + throwQueryError('features', response); + } + } + + function loadComplete() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_complete', 'features', patients)); + } + + function loadFailed() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_fail', 'features', { + msg: 'Retrieval Timeout' + })); + } + + Ext.Ajax.request({ + url: patient_query, + success: synchronizer.add(patientQueryHandle, this), + failure: function(response) { + queryFailed('features', response); + } + }); + + var collection_label = re.disease.toUpperCase(); + var ffv_uri = re.databases.base_uri + re.databases.ffn.uri + "/" + collection_label + re.tables.ffn; + var ffv_query = "?_include=id&_include=ffv_precedence&id=" + encodeURIComponent(link.sourceNode.id) + "&id=" + encodeURIComponent(link.targetNode.id); + var json = {}; + var friendly_feature_value_uri = ffv_uri + ffv_query; + + function ffvQueryHandle(response) { + try { + json = Ext.decode(response.responseText); + } catch (err) { + throwQueryError('friendly_feature_values', response); + } + if (json.items) { + patients['ffv'] = json.items; + } else { + patients['ffv'] = []; + } + } + + Ext.Ajax.request({ + url: friendly_feature_value_uri, + success: synchronizer.add(ffvQueryHandle, this), + failure: function(response) { + queryFailed('friendly feature values', response); + } + }); +} + +function loadFeaturesInAFM(label) { + function loadComplete(ct) { + re.ui.setPathwayMembersQueryCounts(label, ct); + vq.events.Dispatcher.dispatch(new vq.events.Event('query_complete', 'features', features)); + } + var features = { + data: null + }; + + var query_str = "select alias where `label` ='" + label + "' limit 1"; + var query_json = { + tq: query_str, + tqx: 'out:json_array' + }; + var patient_query_str = '?' + Ext.urlEncode(query_json); + var patient_query = re.databases.base_uri + re.databases.rf_ace.uri + re.tables.features_uri + re.rest.query + patient_query_str; + + function mQueryHandle(response) { + try { + var r = Ext.decode(response.responseText); + + re.ui.setPathwayMembersQueryCounts(label, r.length); + } catch (err) { + throwQueryError('features', response); + } + } + + Ext.Ajax.request({ + url: patient_query, + success: mQueryHandle, + failure: function(response) { + queryFailed('features', response); + } + }); + + function loadFailed() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_fail', 'features', { + msg: 'Retrieval Timeout' + })); + } +} + +function loadAnnotations() { + var annotations = { + 'chrom_leng': null + }; + var chrom_query_str = '?' + re.params.query + ('select chr_name, chr_length') + re.params.json_out; + var chrom_query = re.databases.base_uri + re.databases.metadata.uri + re.tables.chrom_info + re.rest.query + chrom_query_str; + + function handleChromInfoQuery(response) { + try { + if (errorInQuery(response.responseText)) { + throwQueryError('annotations', response); + } + annotations['chrom_leng'] = Ext.decode(response.responseText); + } catch (err) { + throwQueryError('annotations', response); + } + + if (annotations['chrom_leng'].length >= 1) { + loadComplete(); + } else { + noResults('annotations'); + } + } + + function loadComplete() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_complete', 'annotations', annotations)); + } + + function loadFailed() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_fail', 'annotations', { + msg: 'Retrieval Timeout' + })); + } + Ext.Ajax.request({ + url: chrom_query, + success: handleChromInfoQuery, + failure: function(response) { + queryFailed('annotations', response); + } + }); +} + +function loadNetworkData(response) { + if (response['isolate']) { + loadNetworkDataSingleFeature(response); + return; + } + + switch (response['filter_type']) { + + case (re.ui.feature1.id): + case (re.ui.feature2.id): + case (re.ui.feature1.label): + case (re.ui.feature2.label): + loadNetworkDataByFeature(response); + break; + case ('association'): + default: + loadNetworkDataByAssociation(response); + } +} + +function loadNetworkDataSingleFeature(params) { + var responses = []; + var feature_types = ['t', 'p']; + + function loadComplete() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_complete', 'sf_associations', { + results: responses, + isolated_feature: params['t_label'], + query: params + })); + } + + function loadFailed() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_fail', 'associations', { + msg: 'Retrieval Timeout' + })); + } + + function handleNetworkQuery(response) { + try { + if (errorInQuery(response.responseText)) { + throwQueryError('associations', response); + } + responses.push(Ext.decode(response.responseText).response.docs); + } catch (err) { //an error detected in one of the responses + throwQueryError('associations', response); + return; + } + if (responses.length >= feature_types.length) { + responses = pv.blend(responses); + if (responses.length >= 1) { + loadComplete(); + return; + } else { //no matching results + noResults('associations'); + } + } else { // haven't gathered all of the responses yet + return; + } + + } + + var query_obj = { + order: params['order'], + // limit: Math.ceil((parseInt(params['limit']) / feature_types.length)) + '' + limit: params['limit'] + }; + + re.model.association.types.forEach(function(obj) { + if (Ext.getCmp(obj.id) === undefined) { + return; + } + if (obj.ui.filter.component instanceof re.multirangeField) { + query_obj[obj.id + '_value'] = Ext.getCmp(obj.id + '_value').getValue(); + query_obj[obj.id + '_fn'] = Ext.getCmp(obj.id + '_fn').getValue(); + } else { + query_obj[obj.id] = Ext.getCmp(obj.id).getValue(); + } + }); + + feature_types.forEach(function(f) { + var obj = vq.utils.VisUtils.clone(query_obj); + var of = (f === 't' ? 'p' : 't'); // other feature + obj[f + '_label'] = params['t_label']; + obj[f + '_type'] = params['t_type']; + obj[of + '_label'] = params['p_label']; + obj[of + '_type'] = params['p_type']; + obj[of + '_chr'] = params['p_chr']; + obj[of + '_start'] = params['p_start']; + obj[of + '_stop'] = params['p_stop']; + var network_query = buildSingleFeatureGQLQuery(obj, f == 't' ? re.ui.feature1.id : re.ui.feature2.id); + var association_query_str = '?' + re.params.network_query + network_query + re.params.network_json_out + re.params.network_dataset_select + re.tables.current_data; + var association_query = re.databases.networks.uri + re.rest.select + '/' + association_query_str; + requestWithRetry(association_query, handleNetworkQuery, 'associations', 1); + }); +} + + +function loadNetworkDataByFeature(params) { + var feature = params['filter_type'] == re.ui.feature1.id ? 't' : 'p'; + if (params[feature + '_type'] && params[feature + '_type'] == 'Pathway') params[feature + '_type'] = ''; + var labels = re.functions.parseLabelList(params[feature + '_label']); + + function loadComplete() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_complete', 'associations', { + results: responses, + query: params + })); + } + + function loadFailed() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_fail', 'associations', { + msg: 'Retrieval Timeout' + })); + } + + var responses = []; + + function handleNetworkQuery(response) { + try { + if (errorInQuery(response.responseText)) { + throwQueryError('associations', response); + } + var results = Ext.decode(response.responseText).response.docs; + responses.push(results); + } catch (err) { //an error detected in one of the responses + throwQueryError('associations', response); + } + if (responses.length >= labels.length) { + responses = pv.blend(responses); + if (responses.length >= 1) { + loadComplete(); + return; + } else { //no matching results + noResults('associations'); + } + } else { // haven't gathered all of the responses yet + return; + } + } + //some lists have empty labels. + labels = labels.filter(function(l) { + return l != null && l != ''; + }); + labels.forEach(function(label) { + params[feature + '_label'] = label; + var network_query = buildGQLQuery(params); + var association_query_str = '?' + re.params.network_query + network_query + re.params.network_json_out + re.params.network_dataset_select + re.tables.current_data; + var association_query = re.databases.networks.uri + re.rest.select + '/' + association_query_str; + + requestWithRetry(association_query, handleNetworkQuery, 'associations', 1); + }); + +} + +function loadNetworkDataByAssociation(params) { + + if (re.analysis.directed_association != undefined && re.analysis.directed_association == false) { + loadUndirectedNetworkDataByAssociation(params); + return; + } else { + loadDirectedNetworkDataByAssociation(params); + return; + } +} + +function loadDirectedNetworkDataByAssociation(params) { + + var responses = []; + + re.state.network_query = buildGQLQuery(params); + var association_query_str = '?' + re.params.network_query + re.state.network_query + re.params.network_json_out + re.params.network_dataset_select + re.tables.current_data; + var association_query = re.databases.networks.uri + re.rest.select + association_query_str; + + function handleNetworkQuery(response) { + try { + if (errorInQuery(response.responseText)) { + throwQueryError('associations', response); + } + responses = Ext.decode(response.responseText).response.docs; + // responses = Ext.decode(response.responseText); + } catch (err) { + throwQueryError('associations', response); + } + + if (responses.length >= 1) { + loadComplete(); + } else { + noResults('associations'); + } + } + + function loadComplete() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_complete', 'associations', { + results: responses, + query: params + })); + } + + function loadFailed() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_fail', 'associations', { + msg: 'Retrieval Timeout' + })); + } + + requestWithRetry(association_query, handleNetworkQuery, 'associations', 1); +} + +function loadUndirectedNetworkDataByAssociation(params) { + + var responses = []; + + function handleNetworkQuery(response) { + try { + if (errorInQuery(response.responseText)) { + throwQueryError('associations', response); + } + responses.push(Ext.decode(response.responseText).response.docs); + } catch (err) { + throwQueryError('associations', response); + } + + if (responses.length == 1) { + if (isEqual(params, flipParams(params))) { + responses = pv.blend(responses); + loadComplete(); + } else { + flipQuery(); + } + } else if (responses.length == 2) { + responses = pv.blend(responses); + if (responses.length < 1) { + noResults('associations'); + } else { + loadComplete(); + } + } else { + return; + } + } + + function loadComplete() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_complete', 'associations', { + results: responses, + query: params + })); + } + + function loadFailed() { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_fail', 'associations', { + msg: 'Retrieval Timeout' + })); + } + + re.state.network_query = buildGQLQuery(params); + var association_query_str = '?' + re.params.network_query + re.state.network_query + re.params.network_json_out + re.params.network_dataset_select + re.tables.current_data; + var association_query = re.databases.networks.uri + re.rest.select + '/' + association_query_str; + + requestWithRetry(association_query, handleNetworkQuery, 'associations', 1); + + function flipQuery() { + var flip_params = flipParams(params); + re.state.network_query = buildGQLQuery(flip_params); + association_query_str = '?' + re.params.network_query + re.state.network_query + re.params.network_json_out + re.params.network_dataset_select + re.tables.current_data; + association_query = re.databases.networks.uri + re.rest.select + '/' + association_query_str; + + requestWithRetry(association_query, handleNetworkQuery, 'associations', 1); + } +} + +function queryFailed(data_type, response) { + var msg = ''; + msg = response.isTimeout ? 'Timeout. Re-submitting the filter may provide the results.' : response.statusText; + vq.events.Dispatcher.dispatch(new vq.events.Event('query_fail', data_type, { + msg: 'Query Error: ' + msg + })); +} + +function requestWithRetry(query, handler, failed_type, times) { + var that = this; + var repeat = times > -1 ? times : 1; + var requestRetry = function() { + var q = query, + h = handler, + f = failed_type, + r = repeat; + requestWithRetry.call(that, q, h, f, r); + }; + + Ext.Ajax.request({ + //timeout:8000, //decrease timeout + url: query, + success: handler, + failure: function(response) { + if (--repeat === 0) { + queryFailed(failed_type, response); + } else if (response.isTimeout) { + requestRetry(); + } + } + }); +} + +/* Handler functions */ + +function noResults(query_type) { + vq.events.Dispatcher.dispatch(new vq.events.Event('query_fail', query_type, { + msg: 'No matching results found.' + })); +} + +function throwQueryError(query_type, response) { + var text = response.responseText; + var json_index = text.indexOf('(') + 1; + // -2 because we want to cut the ); out of the end of the message + var json = Ext.decode(text.slice(json_index, -2)); + var error = json.errors[0]; + vq.events.Dispatcher.dispatch(new vq.events.Event('query_fail', query_type, { + msg: error.message //+ error.detailed_message + })); +} + +/* + Utility functions + */ + +function flipParams(params) { + var temp = vq.utils.VisUtils.clone(params); + return vq.utils.VisUtils.extend(temp, { + t_type: params['p_type'], + p_type: params['t_type'], + + t_label: params['p_label'], + p_label: params['t_label'], + + t_label_desc: params['p_label_desc'], + p_label_desc: params['t_label_desc'], + + t_chr: params['p_chr'], + p_chr: params['t_chr'], + + t_start: params['p_start'], + p_start: params['t_start'], + + t_stop: params['p_stop'], + p_stop: params['t_stop'] + + }); +} + +function buildGQLQuery(args) { + var flparam = 'alias1,alias2,'; + if (re.ui.filters.link_distance) { + flparam += ',link_distance'; + } + //try out solr query + re.model.association.types.forEach(function(obj) { + flparam += ',' + obj.query.id; + }); + var qparam = ''; + if (args['t_type'] != '' && args['t_type'] != '*') { + qparam += '+f1source:"' + args['t_type'] + '"'; + } + if (args['p_type'] != '' && args['p_type'] != '*') { + qparam += '+f2source:"' + args['p_type'] + '"'; + } + if (args['t_label'] != '' && args['t_label'] != '*') { + qparam += re.functions.convertListToSolrQueryClause(args['t_label'], 'f1label'); + } + if (args['p_label'] != '' && args['p_label'] != '*') { + qparam += re.functions.convertListToSolrQueryClause(args['p_label'], 'f2label'); + } + if (args['t_label_desc'] != '') { + qparam += '+f1label_desc:"' + args['t_label_desc'] + '"'; + } + if (args['p_label_desc'] != '') { + qparam += '+f2label_desc:"' + args['p_label_desc'] + '"'; + } + if (args['t_chr'] != '' && args['t_chr'] != '*') { + qparam += re.functions.convertListToSolrQueryClause(args['t_chr'], 'f1chr'); + + } + if (args['p_chr'] != '' && args['p_chr'] != '*') { + qparam += re.functions.convertListToSolrQueryClause(args['p_chr'], 'f2chr'); + + } + if ((args['p_start'] != '') && (args['p_stop'] != '')) { + qparam += '+f2start:[' + args['p_start'] + ' TO ' + args['p_stop'] + '] ' + + '+f2end:[' + args['p_start'] + ' TO ' + args['p_stop'] + ']'; + } else if (args['p_start'] != '') { + qparam += '+f2start:[' + args['p_start'] + ' TO *]'; + } else if (args['p_stop'] != '') { + qparam += '+f2end:[* TO ' + args['p_stop'] + ']'; + } + + if ((args['t_start'] != '') && (args['t_stop'] != '')) { + qparam += '+f1start:[' + args['t_start'] + ' TO ' + args['t_stop'] + '] ' + + '+f1end:[' + args['t_start'] + ' TO ' + args['t_stop'] + ']'; + } else if (args['t_start'] != '') { + qparam += '+f1start:[' + args['t_start'] + ' TO *]'; + } else if (args['t_stop'] != '') { + qparam += '+f1end:[* TO ' + args['t_stop'] + ']'; + } + + if (args['cis']) { + qparam += '-link_distance:"500000000"'; + + } + if (args['cis'] && args['cis_distance_value'] != '') { + var clause1 = solr_flex_field_query('link_distance', args['cis_distance_value'], args['cis_distance_fn']); + qparam += ((clause1.length < 1) ? '' : clause1); + } + + if (args['trans']) { + qparam += '+link_distance:"500000000"'; + } + + var fqparam = ''; + re.model.association.types.forEach(function(obj) { + if (typeof obj.query.clause == 'function') { + var clause = solr_flex_field_query(obj.query.id, args[obj.query.id + '_value'], args[obj.query.id + '_fn']); + fqparam += ((clause.length < 1) ? '' : clause); + return; + } + if (args[obj.query.id] != '') { + var clause_array = trim(obj.query.clause).split(" "); + if (clause_array.length > 1) { + var clause = solr_flex_field_query(obj.query.id, args[obj.query.id], clause_array[clause_array.length - 1]); + fqparam += ((clause.length < 1) ? '' : clause); + } + } + }); + + var order_id = (re.model.association.types[re.model.association_map[args['order']]].query.order_id === undefined) ? args['order'] : re.model.association.types[re.model.association_map[args['order']]].query.order_id; + var fn; + if (fn = args[order_id + '_fn'] == 'Abs') { + order_id = 'abs(' + order_id + ')'; + } + var sort = order_id + ' ' + ((re.model.association.types[re.model.association_map[args['order']]].query.order_direction).toLowerCase() || 'desc'); + var limit = args['limit']; + + if (qparam == '') { + qparam = '*:*'; + } + return encodeURIComponent(qparam) + '&fq=' + encodeURIComponent(fqparam) + '&sort=' + encodeURIComponent(sort) + '&rows=' + encodeURIComponent(limit) + '&fl=' + encodeURIComponent(flparam); +} + + +function buildSingleFeatureGQLQuery(args, feature) { + var flparam = 'alias1,alias2'; + if (re.ui.filters.link_distance) { + flparam += ',link_distance'; + } + re.model.association.types.forEach(function(obj) { + flparam += ',' + obj.query.id; + }); + + var qparam = ''; + + + if (args['t_type'] && args['t_type'] != '' && args['t_type'] != '*') { + qparam += '+f1source:"' + args['t_type'] + '"'; + } + if (args['p_type'] && args['p_type'] != '' && args['p_type'] != '*') { + qparam += '+f2source:"' + args['p_type'] + '"'; + } + if (args['t_label'] && args['t_label'] != '' && args['t_label'] != '*') { + qparam += '+f1label:' + re.functions.parseSolrLabel(args['t_label']) + ' '; + } + if (args['p_label'] && args['p_label'] != '' && args['p_label'] != '*') { + qparam += '+f2label:' + re.functions.parseSolrLabel(args['p_label']) + ' '; + } + if (args['t_label_desc'] && args['t_label_desc'] != '') { + qparam += '+f1label_desc:"' + args['t_label_desc'] + '"'; + } + if (args['p_label_desc'] && args['p_label_desc'] != '') { + qparam += '+f2label_desc:"' + args['p_label_desc'] + '"'; + } + if (args['t_chr'] && args['t_chr'] != '' && args['t_chr'] != '*') { + qparam += '+f1chr:"' + args['t_chr'] + '"'; + } + if (args['p_chr'] && args['p_chr'] != '' && args['p_chr'] != '*') { + qparam += '+f2chr:"' + args['p_chr'] + '"'; + } + if (args['t_start'] && args['t_start'] != '') { + qparam += '+f1start:[' + args['t_start'] + ' TO *]'; + } + if (args['p_start'] && args['p_start'] != '') { + qparam += '+f2start:[' + args['p_start'] + ' TO *]'; + } + if (args['t_stop'] && args['t_stop'] != '') { + if (args['t_start'] != '') { + qparam += '+f1end:[' + args['t_start'] + ' TO ' + args['t_stop'] + ']'; + } else qparam += '+f1end:[* TO ' + args['t_stop'] + ']'; + + } + if (args['p_stop'] && args['p_stop'] != '') { + if (args['p_start'] != '') { + qparam += '%2Bf2end:[' + args['p_start'] + ' TO ' + args['p_stop'] + ']'; + } else qparam += '%2Bf2end:[* TO ' + args['p_stop'] + ']'; + } + + if (args['cis'] && args['cis_distance_value'] != '') { + var clause1 = solr_flex_field_query('link_distance', args['cis_distance_value'], args['cis_distance_fn']); + qparam += ((clause1.length < 1) ? '' : clause1); + } else if (args['cis']) { + qparam += '-link_distance:"500000000"'; + } + if (args['trans']) { + qparam += '+link_distance:"500000000"'; + } + + var fqparam = ''; + re.model.association.types.forEach(function(obj) { + if (typeof obj.query.clause == 'function') { + var clause = solr_flex_field_query(obj.query.id, args[obj.query.id + '_value'], args[obj.query.id + '_fn']); + fqparam += ((clause.length < 1) ? '' : clause); + return; + } + if (args[obj.query.id] != '') { + var clause_array = trim(obj.query.clause).split(" "); + if (clause_array.length > 1) { + var clause = solr_flex_field_query(obj.query.id, args[obj.query.id], clause_array[clause_array.length - 1]); + fqparam += ((clause.length < 1) ? '' : clause); + } + } + }); + + var order_id = (re.model.association.types[re.model.association_map[args['order']]].query.order_id === undefined) ? args['order'] : re.model.association.types[re.model.association_map[args['order']]].query.order_id; + var fn; + if ((fn = args[order_id + '_fn'] == 'Abs') || (fn === '<=' && parseFloat(arg[order_id + '_value']) <= 0)) { + order_id = 'abs(' + order_id + ')'; + } + + var sort = order_id + ' ' + ((re.model.association.types[re.model.association_map[args['order']]].query.order_direction).toLowerCase() || 'desc'); + var limit = args['limit']; + + if (qparam == '') { + qparam = '*:*'; + } + return encodeURIComponent(qparam) + '&fq=' + encodeURIComponent(fqparam) + '&sort=' + encodeURIComponent(sort) + '&rows=' + encodeURIComponent(limit) + '&fl=' + encodeURIComponent(flparam); +} \ No newline at end of file diff --git a/src/webapp/js/model/data_loader.js b/src/webapp/js/model/data_loader.js new file mode 100755 index 0000000..0045860 --- /dev/null +++ b/src/webapp/js/model/data_loader.js @@ -0,0 +1,340 @@ + +function registerModelListeners() { + + var d = vq.events.Dispatcher; + d.addListener('query_complete', 'associations', function(data) { + if (re.state.query_cancel) { return; } + parseNetwork(data); + // generateNetworkDefinition(data); + }); + d.addListener('query_complete', 'sf_associations', function(data) { + if (re.state.query_cancel) { return; } + parseSFValues(data); + }); + d.addListener('query_complete', 'dataset_labels', function(data) { + loadFFN(data.ffn_map); + parseDatasetLabels(data); + }); + d.addListener('query_complete', 'annotations', function(data) { + parseAnnotations(data); + }); + d.addListener('query_complete', 'features', function(data) { + parseFeatures(data); + }); + d.addListener('query_complete', 'patient_categories', function(data) { + parsePatientCategories(data); + }); +} + +function parseDatasetLabels(data) { + re.ui.setDatasetLabels(data); + vq.events.Dispatcher.dispatch(new vq.events.Event('data_ready', 'dataset_labels', data)); +} + +function loadFFN(data) { + var ffn_map = {}; + + data.forEach(function(val) { + ffn_map[val.id] = val.label; + }); + re.functions.ingestFFNMap(ffn_map); +} + + +function parseAnnotations(data) { + vq.events.Dispatcher.dispatch(new vq.events.Event('data_ready', 'annotations', data)); +} + +function parsePatientCategories(data) { + vq.events.Dispatcher.dispatch(new vq.events.Event('data_ready', 'patient_categories', data)); +} + +function getValueMap(ffv_array, id) { + if (ffv_array && ffv_array.length) { + var i = ffv_array.length; + while (--i) { + if (ffv_array[i] && ffv_array[i].id && ffv_array[i].id === id) { + break; + } + } + return ffv_array[i]['ffv_precedence'] || {}; + } + return {}; +} + +function parseFeatures(data) { + //data is only in the first and second row of this array + var feature1 = data['data'][0], + feature2 = data['data'][1], + features = {f1alias : feature1.alias, f2alias: feature2.alias }; + + var ffv_map = getValueMap(data['ffv'], feature1.alias); + if (Object.keys(ffv_map).length) { + features.f1values = feature1.patient_values.split(':').map(function(value) { + if (ffv_map[value] !== undefined) { + return ffv_map[value].ffv; + } else { + return value; + } + }); + } else { + features.f1values = feature1.patient_values.split(':'); + } + + ffv_map = getValueMap(data['ffv'], feature2.alias); + if (Object.keys(ffv_map).length) { + features.f2values = feature2.patient_values.split(':').map(function(value) { + if (ffv_map[value] !== undefined) { + return ffv_map[value].ffv; + } else { + return value; + } + }); + } else { + features.f2values = feature2.patient_values.split(':'); + } + + vq.events.Dispatcher.dispatch(new vq.events.Event('data_ready', 'features', features)); +} + +function rectifyChrPosition(str_val) { + return isNaN(parseInt(str_val, 10)) ? -1 : parseInt(str_val, 10); +} + +function generateNetworkDefinition(responses) { + + var network = {nodes: [], edges: []}; + var source_array = [], source_map = {}; + network.edges = responses.map(function(row) { + var node1 = row.alias1.split(':'), + node2 = row.alias2.split(':'), + f1id = row.alias1 + '', + f2id = row.alias2 + ''; + + if (node1.length < 7 || node2.length < 7) { + console.error('Feature data is malformed. Association Data features consist of 7 required properties.'); + } + var source_id = (source_map[f1id] === undefined ? (source_array.push({ + id : f1id, type : node1[1], label : node1[2], chr : node1[3].slice(3), + start: rectifyChrPosition(node1[4]), + end:rectifyChrPosition(node1[5]) !== -1 ? rectifyChrPosition(node1[5]) : rectifyChrPosition(node1[4])} + ) - 1) : + source_map[f1id]); + + source_map[f1id] = source_id; + + var target_id = (source_map[f2id] === undefined ? (source_array.push({id : f2id, + type : node2[1], label : node2[2], chr : node2[3].slice(3), + start: rectifyChrPosition(node2[4]), + end:rectifyChrPosition(node2[5]) !== -1 ? rectifyChrPosition(node2[5]) : rectifyChrPosition(node2[4])} + ) - 1) : + source_map[f2id]); + + source_map[f2id] = target_id; + + var obj = {id:f1id + '-' + f2id, label : source_id.label + ' -> ' + target_id.label, source:f1id ,target: f2id, directed: re.analysis.directed_association}; + + if (re.ui.filters.link_distance) { + obj.link_distance = row.link_distance; + } + + re.model.association.types.forEach(function(assoc) { + if ( row[assoc.query.id] === undefined) { + console.log('Data parsing notice: Association attribute is malformed. Expected attribute with label \'' + assoc.query.id + '\''); + row[assoc.query.id] = NaN; + } + obj[assoc.ui.grid.store_index] = row[assoc.query.id]; + }); + return obj; + }); + + network.nodes = source_array; + + var e = new vq.events.Event('data_ready','graph',network); + e.dispatch(); +} + +function cleanResults(response) { + + var map = {}, + distinct_responses = []; + + response.results.forEach( function(val,index,resp) { + if (map[val.alias1 + '__' + val.alias2] || map[val.alias2 + '__' + val.alias1]) { + return; + } + map[val.alias1 + '__' + val.alias2] = 1; + map[val.alias2 + '__' + val.alias1] = 1; + distinct_responses.push(val); + return; + }); + + var params = response.query; + var orderBy = params['order']; + var orderDir = re.model.association.types[re.model.association_map[params['order']]].query.order_direction || 'desc'; + var orderFunc = orderDir === 'asc' ? function(a,b) { return a - b; } : function(a,b) { return b-a;}; + + distinct_responses.sort(function(a,b) { + return orderFunc(a[orderBy], b[orderBy]); + }); + + return distinct_responses.slice(0, params['limit']); +} + +function parseNetwork(response) { + + function loadComplete() { + generateNetworkDefinition(sorted_sliced_responses); + vq.events.Dispatcher.dispatch(new vq.events.Event('data_ready','associations', parsed_data)); + } + + function loadFailed() { + vq.events.Dispatcher.dispatch(new vq.events.Event('load_fail','associations',{msg:'Error in loading association data'})); + } + + var parsed_data = {network : null,unlocated : null, features : null,unlocated_features:null,located_features:null}; + var sorted_sliced_responses = cleanResults(response); + + var whole_net = sorted_sliced_responses.map(function(row) { + var obj = { + node1: parseFeatureAlias(row.alias1), + node2: parseFeatureAlias(row.alias2) + }; + + if (re.ui.filters.link_distance) { + obj.link_distance = row.link_distance; + } + re.model.association.types.forEach(function(assoc) { + if (row[assoc.query.id] === undefined) { + console.log('Data parsing notice: Association attribute is malformed. Expected attribute with label \'' + assoc.query.id + '\''); + row[assoc.query.id] = NaN; + } + obj[assoc.ui.grid.store_index] = row[assoc.query.id]; + }); + + return obj; + } + ); + var located_responses = whole_net.filter(function(feature) { + return feature.node1.chr !== '' && feature.node2.chr !== '';}); + + var unlocated_responses = whole_net.filter(function(feature) { + return feature.node1.chr === '' || feature.node2.chr === '' || feature.node1.chr === 'NA' || feature.node2.chr === 'NA';}); + + var feature_ids = {}; + var features = []; + whole_net.forEach(function(link) { + if (feature_ids[link.node1.id] == null) {feature_ids[link.node1.id]=1;features.push(vq.utils.VisUtils.extend({value:link.node1.label},link.node1)); } + if (feature_ids[link.node2.id] == null) {feature_ids[link.node2.id]=1;features.push(vq.utils.VisUtils.extend({value:link.node2.label},link.node2)); } + }); + + parsed_data['features'] = features; + parsed_data['network'] = located_responses; + parsed_data['unlocated'] = unlocated_responses; + parsed_data['unlocated_features'] = vq.utils.VisUtils.clone(features).filter(function(feature) { + return feature.chr === ''; + }); + parsed_data['located_features'] = vq.utils.VisUtils.clone(features).filter(function(feature) { + return feature.chr !== ''; + }); + + loadComplete(); +} + + +function parseSFValues(response) { + + var parsed_data = {features:[]}; + function loadComplete() { + vq.events.Dispatcher.dispatch(new vq.events.Event('data_ready','sf_associations', parsed_data)); + } + + function loadFailed() { + vq.events.Dispatcher.dispatch(new vq.events.Event('load_fail','associations',{msg:'Zero mappable features found.'})); + } + + var sorted_sliced_responses = cleanResults(response); + + var row1 = sorted_sliced_responses[0], row2 = sorted_sliced_responses[1]; + var alias = ''; + var aliases = {}; + if (row1 && row2) { + [row1,row2].forEach(function(row){ + aliases[row.alias1] = aliases[row.alias1] + 1 || 1; + aliases[row.alias2] = aliases[row.alias2] + 1 || 1; + }); + var keys = Object.keys(aliases); + for (var i in keys) { + if (aliases[keys[i]] == 2) { alias = keys[i];} + } + } else { + if (row1.alias2.indexOf('chr') >=0 ) { + alias = row1.alias1; + } + else if (row1.alias1.indexOf('chr') >=0 ) { + alias = row1.alias2; + } + } + if (alias === '') { loadFailed();} + + var data = []; + data = sorted_sliced_responses.map(function(row) { + var obj = row; + obj.alias = (row.alias1 == alias ? row.alias2 : row.alias1); + return obj; + }) + .map(parseFeatureObject); + if (data.length < 1)loadFailed(); + + parsed_data.features = data.filter(function(feature) { return feature.chr !== '' && feature.start !== ''; } ); + parsed_data['isolated_feature'] = alias; + if (parsed_data.features.length > 0) loadComplete(); + else loadFailed(); +} + +function parseFeatureObject(sf_obj) { + var return_obj = parseFeatureAlias(sf_obj.alias); + if (re.ui.filters.link_distance) { + return_obj.link_distance = sf_obj.link_distance; + } + re.model.association.types.forEach(function(assoc) { + return_obj[assoc.ui.grid.store_index] = sf_obj[assoc.query.id]; + }); +} + +function parseFeatureAlias(alias) { + + var node = alias.split(':'); + var label_mod = node.length >=8 ? node[7] : ''; + var chr = ''; + + var start = parseInt(node[4], 10); + start = isNaN(start) ? '' : start; + + var end = parseInt(node[5], 10); + end = isNaN(end) ? '' : end; + + try{ + chr = node[3].slice(3); + } + catch(e) { + chr = ''; + } + + if (node.length < 7) { + console.error('Feature data is malformed. Features consist of 7 required properties: ' + node); + } + + var obj = { + id : alias, + source : node[1], + label : node[2], + chr : chr, + label_mod : label_mod, + start : start, + end : end, + pretty_label : re.functions.lookupFFN(alias) + }; + + return obj; +} diff --git a/src/webapp/js/namespace.js b/src/webapp/js/namespace.js new file mode 100644 index 0000000..f4cf00b --- /dev/null +++ b/src/webapp/js/namespace.js @@ -0,0 +1,2 @@ +if (re === undefined) {var re = {}; } +else { console.log('namespace is already defined.') } \ No newline at end of file diff --git a/src/webapp/js/overrides.js b/src/webapp/js/overrides.js new file mode 100644 index 0000000..6ea5d03 --- /dev/null +++ b/src/webapp/js/overrides.js @@ -0,0 +1,503 @@ +/* + * Pathed Menu Component + */ +Ext.ns("org.cancerregulome.explorer.view"); + +org.cancerregulome.explorer.view.PathedMenu = Ext.extend(Ext.menu.Menu, { + menusByPath: {}, + + constructor: function(config) { + Ext.apply(this, config); + org.cancerregulome.explorer.view.PathedMenu.superclass.constructor.call(this); + }, + + addPathedItems: function(records) { + var sortedRecords = []; + Ext.each(records, function(record) { + sortedRecords.push(record); + }); + sortedRecords.sort(function(a, b) { + if (a.json && b.json) { + var apath = a.json.org_path; + var bpath = b.json.org_path; + if (apath == bpath) return 0; + if (apath > bpath) return 1; + if (apath < bpath) return -1; + } + return 0; + }); + + Ext.each(sortedRecords, function(record) { + var item = record.json; + if (item) { + item.path = item.org_path; + if (!item.path) item.path = "/Other"; + + var label = item.label; + var description = item.description; + + var config = { + id: Ext.id(), + text: label, + handler: function() { + window.history.pushState({ dataset: label }, '', '?' + Ext.urlEncode({ dataset: label })); + vq.events.Dispatcher.dispatch(new vq.events.Event('dataset_selected', 'dataset_grid', label)); + Ext.getCmp('filter_parent').setTitle('Filtering \'' + description + '\''); + } + }; + + this.addPathedItem(new Ext.menu.Item(Ext.applyIf(config, item))); + } + }, this); + }, + + addPathedItem: function(menuItem) { + if (menuItem && menuItem.path) { + var parts = menuItem.path.split("/"); + var lastMenu = this; + var currentPath = ""; + + for (var i = 1; i < parts.length; i++) { + var part = parts[i]; + currentPath += "/" + part; + var existingMenu = this.menusByPath[currentPath]; + if (!existingMenu) { + existingMenu = new Ext.menu.Menu({path:currentPath}); + this.menusByPath[currentPath] = existingMenu; + lastMenu.add({text:part, menu: existingMenu}); + } + lastMenu = existingMenu; + } + + lastMenu.addMenuItem(menuItem); + } + } +}); + +//var pathedMenu = new org.cancerregulome.explorer.view.PathedMenu({}); + +org.cancerregulome.explorer.view.DatasetTree = Ext.extend(Ext.tree.TreeNode, { + constructor: function(config) { + Ext.apply(this, config); + org.cancerregulome.explorer.view.DatasetTree.superclass.constructor.call(this); + }, + + addNodes: function(records, keys) { + var that = this; + keys = keys || ['source','disease','dataset_date']; + var sets = records.map(function(record){return record.json;}).filter(function(json_r){return json_r;}); + var nested_sets = pv.nest(sets); + + function sortDates(a,b) { + if (!a ^ !b) {return !a ? 1 : -1;} // one of them is null, empty, undefined + if(!!~[a,null,b].indexOf('Final')) return [a,null,b].indexOf('Final') -1; + try { + var af = a.split('-').map(function(val) { return parseInt(val);}), + bf = b.split('-').map(function(val) { return parseInt(val);}); + } + catch(e) { //failed to split or parse + return 0; + } + if(af.length != 3 && bf.length != 3) { return 0;} //can't parse + return bf[2] - af[2] != 0 ? bf[2] - af[2] : + bf[0] - af[0] != 0 ? bf[0] - af[0] : + bf[1] - af[1]; + } + function sortStrings(a,b) { + if (!a ^ !b) // one is null, empty, undefined and the other is not + return !a ? 1 : -1; + else if (a.toUpperCase() > b.toUpperCase() )return 1; + else if (b.toUpperCase() > a.toUpperCase() ) return -1; + return 0; + } + Ext.each(keys,function(key){ + var key_func = function(a) { return a[key];}; + nested_sets.key.call(nested_sets,key_func); + nested_sets.sortKeys.call(nested_sets,key === 'dataset_date' ? sortDates : sortStrings); + }); + nested_sets = nested_sets.entries(); + + Ext.each(nested_sets, function(branch) { extendBranch.call(that,branch,0);}); + + function extendBranch(group,depth) { + var node = this; + if (depth >= keys.length) { + var config = { + id: Ext.id(), + text: group.description, + leaf:true, + listeners: {'click' : function(node,e) { + var label = node.attributes.label; + selectDatasetByLabel(label); + } + } + }; + return node.appendChild(new Ext.tree.TreeNode(Ext.applyIf(config, group))); + } + else { + var label = group.key || 'Other'; + var init_properties = {text:label,node:branch,singleclickExpand:true}; + if (depth == 0) Ext.apply(init_properties,{expanded: true}); //expand first branch + var branch = new Ext.tree.TreeNode(init_properties); + node.appendChild(branch); + Ext.each(group.values,function(sub_group) { extendBranch.call(branch,sub_group, depth+1);}); + } + } +} +}); + + + + +org.cancerregulome.explorer.view.DatasetMenu = Ext.extend(Ext.menu.Menu, { + constructor: function(config) { + Ext.apply(this, config); + org.cancerregulome.explorer.view.DatasetMenu.superclass.constructor.call(this); + }, + + addPathedItems: function(records, keys) { + var that = this; + keys = keys || ['source','disease','dataset_date']; + var sets = records.map(function(record){return record.json;}).filter(function(json_r){return json_r;}); + var nested_sets = pv.nest(sets); + + function sortDates(a,b) { + if (!a ^ !b) {return !a ? 1 : -1;} // one of them is null, empty, undefined + if(!!~[a,null,b].indexOf('Final')) return [a,null,b].indexOf('Final') -1; + try { + var af = a.split('-').map(function(val) { return parseInt(val);}), + bf = b.split('-').map(function(val) { return parseInt(val);}); + } + catch(e) { //failed to split or parse + return 0; + } + if(af.length != 3 && bf.length != 3) { return 0;} //can't parse + return bf[2] - af[2] != 0 ? bf[2] - af[2] : + bf[0] - af[0] != 0 ? bf[0] - af[0] : + bf[1] - af[1]; + } + function sortStrings(a,b) { + if (!a ^ !b) // one is null, empty, undefined and the other is not + return !a ? 1 : -1; + else if (a.toUpperCase() > b.toUpperCase() )return 1; + else if (b.toUpperCase() > a.toUpperCase() ) return -1; + return 0; + } + Ext.each(keys,function(key){ + var key_func = function(a) { return a[key];}; + nested_sets.key.call(nested_sets,key_func); + nested_sets.sortKeys.call(nested_sets,key === 'dataset_date' ? sortDates : sortStrings); + }); + nested_sets = nested_sets.entries(); + + Ext.each(nested_sets, function(branch) { extendBranch.call(that,branch,0);}); + + function extendBranch(group,depth) { + var menu = this; + if (depth >= keys.length) { + var config = { + id: Ext.id(), + text: group.description, + handler: function() { + window.history.pushState({ dataset: group.label }, '', '?' + Ext.urlEncode({ dataset: group.label })); + vq.events.Dispatcher.dispatch(new vq.events.Event('dataset_selected', 'dataset_grid', group.label)); + Ext.getCmp('filter_parent').setTitle('Filtering \'' + group.description + '\''); + } + }; + return menu.addMenuItem(new Ext.menu.Item(Ext.applyIf(config, group))); + } + else { + var branch = new Ext.menu.Menu(); + var label = group.key || 'Other'; + menu.add({text:label,menu:branch}); + Ext.each(group.values,function(sub_group) { extendBranch.call(branch,sub_group, depth+1);}); + } + } + } + +}); + +Ext.override(Ext.LoadMask, { + show: function() { + this.onBeforeLoad(); + var me = this, + msgEl = Ext.query("div.ext-el-mask-msg",this.el.dom)[0]; + if ( me.cancelEvent != undefined && typeof me.cancelEvent == "function") { + var btn = new Ext.Button({ + cls : 'loadCancelButton', + text : 'Cancel', + listeners : { + 'click': function() { me.cancelEvent.call(this);} + }, + renderTo : msgEl, + width : 60 + }); + } + } +}); + +Ext.override(Ext.form.FieldSet, { + onCheckClick: function() { + var me = this, + checked = this.checkbox.dom.checked; + me.setDisabled(!checked); + } +}); + +re.simplerangeField = Ext.extend(Ext.form.CompositeField, { + constructor: function(config) { + var default_value = config.default_value || 0; + var min_value = config.min_value || -1; + var max_value = config.max_value || 1; + var label = config.label || ''; + var id = config.id || label+ 'id'; + var default_fn = config.default_fn || '>='; + + config = Ext.apply( { + anchor: '-20', + msgTarget: 'side', + fieldLabel: label, + items : [ + { + //the width of this field in the HBox layout is set directly + //the other 2 items are given flex: 1, so will share the rest of the space + width: 50, + id: id + '_fn', + name :id + '_fn', + xtype: 'combo', + mode: 'local', + defaultValue: default_fn, + value: default_fn, + triggerAction: 'all', + forceSelection: true, + editable: false, + fieldLabel: 'Fn', + displayField: 'name', + valueField: 'value', + store: new Ext.data.JsonStore({ + fields : ['name', 'value'], + data : [ + {name : '>=', value: '>='}, + {name : '<=', value: '<='} + ] + }), + listeners: { + render: function(c) { + Ext.QuickTips.register({ + target: c, + title: '', + text: 'Implies if ' + label +' value (x)=.5, >= filters for all values greater than/equal to 0.5, <= filters for all values less than/equal to 0.5' + }); + } + } + }, + {xtype : 'numberfield', + id:id+'_value', + name :id+'_value', + allowNegative: true, + decimalPrecision : 2, + emptyText : 'Input value...', + invalidText:'This value is not valid.', + minValue:min_value, + maxValue:max_value, + width: 70, + tabIndex : 1, + validateOnBlur : true, + fieldLabel : label, + defaultValue : default_value, + value : default_value, + listeners: { + render: function(c) { + Ext.QuickTips.register({ + target: c, + title: '', + text: 'Numeric field with 2 decimal precision' + }); + } + } + } + + ]}, config); + + re.simplerangeField.superclass.constructor.call(this, config); + } +}); + +re.modalNumericField = Ext.extend(Ext.form.CompositeField, { + constructor: function(config) { + var default_value = config.default_value || 0; + var min_value = config.min_value || -1; + var max_value = config.max_value || 1; + var modes = config.modes; + var label = config.label || ''; + var id = config.id || label + 'id'; + + var fieldLabel = config.fieldLabel; + config.fieldLabel = ''; + + var mode_items = modes.map(function(mode){ + return { + name: id + '_radio', + boxLabel: mode.label, + inputValue: mode.value + }; + }); + if (mode_items.length) { mode_items[0].checked = true; } + + config = Ext.apply( { + + title: label, + autoHeight: true, + items : [ + { + xtype : 'numberfield', + id:id+'_value', + name :id+'_value', + anchor: '95%', + + allowNegative: true, + decimalPrecision : 2, + emptyText : 'Input value...', + invalidText:'This value is not valid.', + minValue:min_value, + maxValue:max_value, + tabIndex : 1, + validateOnBlur : true, + fieldLabel : fieldLabel, + defaultValue : default_value, + value : default_value, + listeners: { + render: function(c) { + Ext.QuickTips.register({ + target: c, + title: '', + text: 'Numeric field with 2 decimal precision' + }); + } + } + },{ + id: id + '_fn', + name :id + '_fn', + xtype: 'radiogroup', + anchor: '95%', + columns: mode_items.length, + items: mode_items, + listeners: { + render: function(c) { + Ext.QuickTips.register({ + target: c, + title: '', + text: 'Select the type of ' + label + }); + } + } + } + ]}, config); + re.modalNumericField.superclass.constructor.call(this, config); + } +}); + +re.multirangeField = Ext.extend(Ext.form.CompositeField, { + constructor: function(config) { + var default_value = config.default_value || 0; + var min_value = config.min_value || -1; + var max_value = config.max_value || 1; + var label = config.label || ''; + var id = config.id || label+ 'id'; + + config = Ext.apply( { + anchor: '-20', + msgTarget: 'side', + fieldLabel: label, + items : [ + { + //the width of this field in the HBox layout is set directly + //the other 2 items are given flex: 1, so will share the rest of the space + width: 50, + id: id + '_fn', + name :id + '_fn', + xtype: 'combo', + mode: 'local', + defaultValue: 'Abs', + value: 'Abs', + triggerAction: 'all', + forceSelection: true, + editable: false, + fieldLabel: 'Fn', + displayField: 'name', + valueField: 'value', + store: new Ext.data.JsonStore({ + fields : ['name', 'value'], + data : [ + {name : '>=', value: '>='}, + {name : '<=', value: '<='}, + {name : 'Abs', value: 'Abs'}, + {name : 'Btw', value: 'Btw'} + ] + }), + listeners: { + render: function(c) { + Ext.QuickTips.register({ + target: c, + title: '', + text: 'Implies if ' + label +' value (x)=.5, Abs is a filtering of (x >= .5 OR x <= -.5)
Btw is a filtering of (x >= -.5 AND x <= .5)' + }); + } + } + }, + {xtype : 'numberfield', + id:id+'_value', + name :id+'_value', + allowNegative: true, + decimalPrecision : 2, + emptyText : 'Input value...', + invalidText:'This value is not valid.', + minValue:min_value, + maxValue:max_value, + width: 70, + tabIndex : 1, + validateOnBlur : true, + fieldLabel : 'Range('+ label + ')', + defaultValue : default_value, + value : default_value, + listeners: { + render: function(c) { + Ext.QuickTips.register({ + target: c, + title: '', + text: 'Numeric field with 2 decimal precision' + }); + } + } + } + ]}, config); + + re.multirangeField.superclass.constructor.call(this, config); + } +}); + + Ext.override(Ext.form.ComboBox, { + setValue: function(v, fireSelect) { + var text = v; + if (this.valueField) { + var r = this.findRecord(this.valueField, v); + if (r) { + text = r.data[this.displayField]; + if (fireSelect) { + var index = this.store.indexOf(r); + this.selectedIndex = index; + this.fireEvent('select', this, r, index); + } + } else if (Ext.isDefined(this.valueNotFoundText)) { + text = this.valueNotFoundText; + } + } + this.lastSelectionText = text; + if (this.hiddenField) { + this.hiddenField.value = v; + } + Ext.form.ComboBox.superclass.setValue.call(this, text); + this.value = v; + return this; + } + }); \ No newline at end of file diff --git a/src/webapp/js/utils.js b/src/webapp/js/utils.js new file mode 100644 index 0000000..73bc03b --- /dev/null +++ b/src/webapp/js/utils.js @@ -0,0 +1,716 @@ + +vq.utils.VisUtils.extend(re, { + functions: { + numberWithCommas: function(x) { + var parts = x.toString().split("."); + return parts[0].replace(/\B(?=(\d{3})+(?=$))/g, ",") + (parts[1] ? "." + parts[1] : ""); + }, + + numberWithSuffix: function(x) { + var formatted = re.functions.numberWithCommas(x), + firstComma = formatted.indexOf(','), + numberOfCommas = formatted.split(',').length, + prefix = formatted.slice(0,firstComma), + number = parseInt(prefix, 10); + + var suffix = 'bp'; + + if (numberOfCommas == 1) { + suffix = 'kb'; + } else if (numberOfCommas == 2) { + suffix = 'Mb'; + } + + var nextNumber = parseInt(formatted.slice(firstComma+1, firstComma+2), 10); + if (nextNumber >=5 ) { number++; } + + return number + suffix; + }, + + prettyLabel: function(alias) { + var feature = re.functions.parseFeatureLabel(alias); + var label = feature.label; + var newlabel = ''; + var modifiers; + + if ( feature.source === 'METH' ) { + modifiers = feature.modifier.split('_'); + var probe = modifiers[0]; + + newlabel = label; + + if (modifiers.length > 1) { + var annotations = modifiers.slice(1); + newlabel += ' (' + annotations.join(", ") + ')'; + } + + newlabel += ' ' + probe; + } + + else if ( feature.source === 'CNVR' ) { + if (feature.modifier.length > 1) { + modifiers = feature.modifier.split('_'); + var parentheses = '('; + //parse Gistic features. + if (modifiers.indexOf('Gistic') >= 0 && modifiers.indexOf('ROI') >= 0) { + parentheses += 'Gistic'; + if (modifiers.indexOf('d') >= 0) { parentheses += ', discrete'; } + if (modifiers.indexOf('r') >= 0) { parentheses += ', continuous'; } + } else if (modifiers.indexOf('GisticArm') >=0 ) { + parentheses += 'Gistic Arm'; + } + parentheses+=')'; + newlabel += label + ' '; + // look for deletion or amplification + if (modifiers.indexOf('del') >= 0) { + newlabel += 'Deletion'; + } else if (modifiers.indexOf('amp') >= 0) { + newlabel += 'Amplification'; + } + //append paretheses + if (parentheses.length > 2) { + newlabel += ' ' + parentheses; + } + } else { + var differenceWithSuffix = re.functions.numberWithSuffix(parseInt(feature.stop, 10) - parseInt(feature.start, 10)); + newlabel = feature.chr + ':' + re.functions.numberWithCommas(feature.start) + '-' + + re.functions.numberWithCommas(feature.stop) + ' (' + + differenceWithSuffix + ', ' + label + ')'; + } + } + + else if ( feature.source ==='GNAB' ) { + newlabel = label + ' ' + feature.modifier; + } + else if ( feature.source ==='RPPA') { + modifiers = feature.modifier; + var phospho = /[_-](p[STY]\d*)/g; + var match = phospho.exec(modifiers); + + newlabel = label; + + if ( match !== null && match.length > 1) { + newlabel += ' (' + match[1] +')'; + } + + } else if ( feature.source ==='SAMP' || feature.source ==='CLIN') { + if (!!~label.indexOf('I(')) { + //strip first two characters and last one. + var cleanLabel = label.slice(2,-1); + var conditions = cleanLabel.split('|'); + if (conditions.length > 1) { + var alternatives = conditions[0].split(','); + if (alternatives.length > 1) { + newlabel = conditions[1] + ' ' + alternatives[0] + ' vs ' + alternatives[1]; + } else { + newlabel = conditions[1] + ' ' + conditions[0]; + } + } else { + newlabel = 'In ' + cleanLabel; + } + } else { + newlabel = label; + } + } else { + newlabel = label; + } + return newlabel; + }, + + prettyFeatureLabelSuffix: function(alias) { + var feature = re.functions.parseFeatureLabel(alias); + var suffix = re.label_map[feature.source] || ''; + if ( suffix !== undefined ) { return ' (' + suffix + ')'; } + return ''; + }, + + parseFeatureLabel : function(alias) { + var feature = alias.split(':'); + if (feature.length < 8) { feature[7] = ''; } + return { + type : feature[0], + source : feature[1], + label : feature[2], + chr : feature[3], + start : feature[4], + stop : feature[5], + strand : feature[6], + modifier : feature[7] + }; + }, + + getValueToLabelFunction: function(alias, prettyLabel) { + var feature = re.functions.parseFeatureLabel(alias); + var value_map = {'NA' : 'NA'}; + if (!!~feature.label.indexOf('I(')) { + var values = feature.label.slice(2,-1); + var conditions = values.split('|'); + if (conditions.length > 1) { + var alternatives = conditions[0].split(','); + if (alternatives.length > 1) { + value_map['0'] = alternatives[1]; value_map['1'] = alternatives[0]; + } else { + value_map['0'] = 'Not ' + conditions[0]; value_map['1'] = conditions[0]; + } + } else{ + value_map['0'] = 'False'; value_map['1'] = 'True'; + } + } else if (feature.type === 'B' && feature.source === 'GNAB') { + value_map['0'] = 'Non-mutated'; + value_map['1'] = 'Mutated'; + } + if (Object.keys(value_map).length >= 1) { + return function(value) { + return value_map[value] ? value_map[value] : value; + }; + } else { + return null; + } + }, + + assignValueColors : function(value_array) { + var uniq_values = pv.uniq(value_array); + + var plot_obj = re.plot; + var color_obj = plot_obj.colors; + var color_map = {'NA':color_obj.categorical_values['NA']}; + var num_colors = color_obj.category_colors.length; + if (uniq_values.length > num_colors +1) { return pv.Colors.category10(uniq_values); } + var index = 0; + uniq_values.forEach(function(val) { + if (color_obj.categorical_values[val]){ + color_map[val] = color_obj.categorical_values[val]; + }else if (plot_obj.category_equivalents[val]){ + color_map[val] = color_obj.categorical_values[plot_obj.category_equivalents[val]]; + } else { + color_map[val] = color_obj.category_colors[index]; + index = index + 1; + if (index >= num_colors) { return color_map;} + } + }); + return color_map; + }, + + convertChrListToQueryClause: function(list_str, column_name) { + var tokens = list_str.split(',').map(trim).map(unescapeComma); + var and_tokens = new Array(); + var or_tokens = new Array(); + //split the list into inclusions/or's and exclusions/!(and)'s + tokens.forEach(function(a){ + if (a.charAt(0) == '!') { + and_tokens.push(a.slice(1)); + } + else //take all characters after the ! + or_tokens.push(a); + }); + var clause = ''; + if (and_tokens.length) { + clause = '('; + var u; + while ((u=and_tokens.pop()) != null) { + clause += column_name + '!=\'' + u + '\' and '; + } + clause = clause.slice(0,-5) + ')'; + } + else { + var t; + if (or_tokens.length){ + clause = '('; + while ((t = or_tokens.pop()) != null) { + clause += column_name + '=\'' + t + '\' or '; + } + clause = clause.slice(0,-4) + ')'; + } + } + return clause; + }, + + parseLabelList: function(list_str) { + return list_str.trim().split(',').map(trim).filter(function(s) { return s !== ''; }).map(unescapeComma); + }, + + parseSolrLabel: function(label) { + return !~label.indexOf('*') ? '"' + label + '"' : label; + }, + + convertListToSolrQueryClause: function(list_str, column_name) { + var tokens = re.functions.parseLabelList(list_str); + var and_tokens = new Array(); + var or_tokens = new Array(); + //split the list into inclusions/or's and exclusions/!(and)'s + tokens.forEach(function(a){ + var b = a.replace(new RegExp('[*%]', 'g'), '*'); + if (a.charAt(0) == '!') { + and_tokens.push(b.slice(1)); + } + else //take all characters after the ! + or_tokens.push(b); + }); + var clause = ''; + if (and_tokens.length) { + clause +='-' + column_name + ':('; + var u; + while ((u=and_tokens.pop()) != null) { + clause += re.functions.parseSolrLabel(u); //don't add quotes for wildcard + } + clause += ')'; + } + if (or_tokens.length){ + var t; + clause += '+' + column_name + ':('; + while ((t = or_tokens.pop()) != null) { + clause += re.functions.parseSolrLabel(t); + } + clause += ')'; + } + return clause; + }, + + lookupFFN : function(feature_id) { + var source = re.functions.parseFeatureLabel(feature_id).source; + + if (source === 'CLIN' || source === 'SAMP' || source === 'RPPA' ){ + if ( re.data.lookups.friendlyFeatureNames[feature_id] !== undefined ) + return re.data.lookups.friendlyFeatureNames[feature_id]; + } + return re.functions.prettyLabel(feature_id); + }, + + ingestFFNMap : function( obj ) { + if (re.data === undefined) re.data = {}; + if (re.data.lookups === undefined) re.data.lookups = {}; + re.data.lookups.friendlyFeatureNames = obj; + } + } +}); + +var isFunction = function(obj) { + return typeof obj === 'function'; + }; + +var has = function(obj, key) { + return hasOwnProperty.call(obj, key); + }; + + + // Internal recursive comparison function for `isEqual`. + var eq = function(a, b, aStack, bStack) { + // Identical objects are equal. `0 === -0`, but they aren't identical. + // See the [Harmony `egal` proposal](http://wiki.ecmascript.org/doku.php?id=harmony:egal). + if (a === b) return a !== 0 || 1 / a == 1 / b; + // A strict comparison is necessary because `null == undefined`. + if (a == null || b == null) return a === b; + // Compare `[[Class]]` names. + var className = toString.call(a); + if (className != toString.call(b)) return false; + switch (className) { + // Strings, numbers, dates, and booleans are compared by value. + case '[object String]': + // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is + // equivalent to `new String("5")`. + return a == String(b); + case '[object Number]': + // `NaN`s are equivalent, but non-reflexive. An `egal` comparison is performed for + // other numeric values. + return a != +a ? b != +b : (a == 0 ? 1 / a == 1 / b : a == +b); + case '[object Date]': + case '[object Boolean]': + // Coerce dates and booleans to numeric primitive values. Dates are compared by their + // millisecond representations. Note that invalid dates with millisecond representations + // of `NaN` are not equivalent. + return +a == +b; + // RegExps are compared by their source patterns and flags. + case '[object RegExp]': + return a.source == b.source && + a.global == b.global && + a.multiline == b.multiline && + a.ignoreCase == b.ignoreCase; + } + if (typeof a != 'object' || typeof b != 'object') return false; + // Assume equality for cyclic structures. The algorithm for detecting cyclic + // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`. + var length = aStack.length; + while (length--) { + // Linear search. Performance is inversely proportional to the number of + // unique nested structures. + if (aStack[length] == a) return bStack[length] == b; + } + // Objects with different constructors are not equivalent, but `Object`s + // from different frames are. + var aCtor = a.constructor, bCtor = b.constructor; + if (aCtor !== bCtor && !(isFunction(aCtor) && (aCtor instanceof aCtor) && + isFunction(bCtor) && (bCtor instanceof bCtor))) { + return false; + } + // Add the first object to the stack of traversed objects. + aStack.push(a); + bStack.push(b); + var size = 0, result = true; + // Recursively compare objects and arrays. + if (className == '[object Array]') { + // Compare array lengths to determine if a deep comparison is necessary. + size = a.length; + result = size == b.length; + if (result) { + // Deep compare the contents, ignoring non-numeric properties. + while (size--) { + if (!(result = eq(a[size], b[size], aStack, bStack))) break; + } + } + } else { + // Deep compare objects. + for (var key in a) { + if (has(a, key)) { + // Count the expected number of properties. + size++; + // Deep compare each member. + if (!(result = has(b, key) && eq(a[key], b[key], aStack, bStack))) break; + } + } + // Ensure that both objects contain the same number of properties. + if (result) { + for (key in b) { + if (has(b, key) && !(size--)) break; + } + result = !size; + } + } + // Remove the first object from the stack of traversed objects. + aStack.pop(); + bStack.pop(); + return result; + }; + + // Perform a deep comparison to check if two objects are equal. + function isEqual(a, b) { + return eq(a, b, [], []); + }; + + +function errorInQuery(response) { + return !!~response.indexOf('status:\'error\''); +} + +function flex_field_query(label, value, fn) { + var where = ''; + if (value + '' != '') { + if (fn == 'Btw') { + where += '(' + label + '>= -' + value + ' and ' + label + '<=' + value + ')'; + } else if (fn == '<=') { + where += '(' + label + '<=' + value + ')'; + } else if (fn == '>=') { + where += '(' + label + '>=' + value + ')'; + } else { + if (parseFloat(value) != '0') { + where += '(' + label + '>=' + value + ' or ' + label + '<= -' + value + ')'; + } + } + } + return where; +} + +function solr_flex_field_query(label, value, fn) { + var qparam = ''; + if (value + '' != '') { + if (fn == 'Btw') { + qparam += '+' + label + ':[-' + value + ' TO ' + value + ']'; + } else if (fn == '<=') { + qparam += '+' + label +':[* TO ' + value + ']'; + } else if (fn == '>=') { + qparam += '+' + label +':[' + value + ' TO *]'; + } else { + if (parseFloat(value) != '0') { + qparam += '-' + label + ':[-'+value+' TO ' + value + ']'; + } + } + } + return qparam; +} + +function escapeComma(string) { + return string.replace(",","%2C"); +} + +function unescapeComma(string) { + return string.replace("%2C",","); +} + +function trim (str) { + return str.replace(/^\s+/, '').replace(/\s+$/, ''); +} + +// Tests if s is an unsigned integer +function isUnsignedInteger (s) { + return (s.toString().search(/^[0-9]+$/) == 0); +} + +function parseAnnotationList(feature) { + var list = []; + var annotations = null; + if (feature.source == 'GNAB') { + list = feature.label_mod.split('_'); + annotations = (list[0] == 'dom' ? 'domain ' + list[1] + '-' + list[2] : ''); + list = (annotations == '' ? list : list.slice(3)); + annotations = annotations + list.map(translateGNABAnnotation).filter(function(a) { + return a != ''; + }).join(', '); + } + else if (feature.source == 'CNVR') { + list = feature.label_mod.split('_'); + annotations = list.map(translateCNVRAnnotation).join(', '); + } + else { + annotations = feature.label_mod == '' ? annotations : feature.label_mod; + } + return annotations; +} + +function translateGNABAnnotation(annotation) { + switch (annotation) { + case ('mut'): + return ''; + break; + case ('nonsilent'): + return 'nonsilent'; + break; + case ('dna_bin'): + return 'any'; + break; + default: + return annotation; + break; + } +} + + +function translateCNVRAnnotation(annotation) { + switch (annotation) { + case ('del'): + return 'deletion'; + break; + case ('amp'): + return 'amplification'; + break; + case ('ins'): + return 'insertion'; + break; + default: + return annotation; + break; + } +} + + +/** + http://www.webtoolkit.info/javascript-base64.html + */ + +var Base64 = { + + // private property + _keyStr: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=", + + // public method for encoding + encode: function(input) { + var output = ""; + var chr1, chr2, chr3, enc1, enc2, enc3, enc4; + var i = 0; + + input = Base64._utf8_encode(input); + + while (i < input.length) { + + chr1 = input.charCodeAt(i++); + chr2 = input.charCodeAt(i++); + chr3 = input.charCodeAt(i++); + + enc1 = chr1 >> 2; + enc2 = ((chr1 & 3) << 4) | (chr2 >> 4); + enc3 = ((chr2 & 15) << 2) | (chr3 >> 6); + enc4 = chr3 & 63; + + if (isNaN(chr2)) { + enc3 = enc4 = 64; + } else if (isNaN(chr3)) { + enc4 = 64; + } + + output = output + this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) + this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4); + + } + + return output; + }, + // private method for UTF-8 encoding + _utf8_encode: function(string) { + string = string.replace(/\r\n/g, "\n"); + var utftext = ""; + + for (var n = 0; n < string.length; n++) { + + var c = string.charCodeAt(n); + + if (c < 128) { + utftext += String.fromCharCode(c); + } else if ((c > 127) && (c < 2048)) { + utftext += String.fromCharCode((c >> 6) | 192); + utftext += String.fromCharCode((c & 63) | 128); + } else { + utftext += String.fromCharCode((c >> 12) | 224); + utftext += String.fromCharCode(((c >> 6) & 63) | 128); + utftext += String.fromCharCode((c & 63) | 128); + } + + } + + return utftext; + } +}; + +/* + Misc data/file retrieval + */ + +function postData(url, data, success, fail) { + var form = document.createElement('form'); + form.setAttribute('style', 'display:none'); + form.setAttribute('action', url); + form.setAttribute('method', 'post'); + var params = { + 'data': Base64.encode(data) + }; + Object.keys(params).forEach(function(key) { + var hiddenField = document.createElement("input"); + hiddenField.setAttribute("type", "hidden"); + hiddenField.setAttribute("name", key); + hiddenField.setAttribute("value", params[key]); + form.appendChild(hiddenField); + }); + document.body.appendChild(form); + form.submit(); + document.body.removeChild(form); + +} + +function downloadData(data, filename, in_format, out_format) { + + function dataSuccess(response) {} + + function dataFail(response) {} + var url = re.node.uri + re.node.services.data + re.rest.echo + '/' + filename.split('.')[0] + '/' + in_format; + postData(url, data, dataSuccess, dataFail); +} + +function binData(values){ + var quartiles = pv.Scale.quantile(values).quantiles(4).quantiles(); + //Freedman-Diaconis' choice for bin size + var setSize = 2 * (quartiles[3] - quartiles[1]) / Math.pow(values.length,0.33); + var max =pv.max(values), min = pv.min(values); + //max # of bins is 10 + setSize = (max - min)/setSize >= 9 ? (max - min) / 10 : setSize; + var firstBin = min+setSize/2; + var bins = pv.range(firstBin,max-setSize/2+setSize/10,setSize); + return function(val) { + return bins[Math.min(Math.max(Math.floor((val-firstBin) / setSize),0),bins.length-1)]; + }; +} + +function convertData(data, filename, in_format, out_format) { + function dataSuccess(response) {} + + function dataFail(response) {} + + var url = re.node.uri + re.node.services.data + re.rest.convert + '/' + filename.split('.')[0] + '/' + in_format + '/' + out_format; + postData(url, data, dataSuccess, dataFail); + +} + +var serializeSVG = function(elem) { + var out = "", + indent = 0; + + SvgToString = function(elem) { + if (elem) { + var attrs = elem.attributes; + var attr; + var i; + var childs = elem.childNodes; + + for (i = 0; i < indent; i++) out += " "; + out += "<" + elem.nodeName; + for (i = attrs.length - 1; i >= 0; i--) { + attr = attrs.item(i); + out += " " + attr.nodeName + "=\"" + attr.nodeValue + "\""; + } + + if (elem.hasChildNodes()) { + out += ">\n"; + indent++; + for (i = 0; i < childs.length; i++) { + if (childs.item(i).nodeType == 1) // element node .. + SvgToString(childs.item(i)); + else if (childs.item(i).nodeType == 3) // text node .. + { + for (j = 0; j < indent; j++) out += " "; + out += childs.item(i).nodeValue + "\n"; + } + } + indent--; + for (i = 0; i < indent; i++) out += " "; + out += "\n"; + } else { + out += " />\n"; + } + + } + return out; + }; + + return SvgToString(elem); +}; + +re.setRingHidden = function(ring, value) { + re.display_options.circvis.rings[ring].hidden = value; +}; + +re.isRingHidden = function(ring) { + return re.display_options.circvis.rings[ring]['hidden']; +}; + + +re.build_tooltips = function() { + + re.display_options.circvis.tooltips.karyotype_feature = { + 'Cytogenetic Band' : function(feature) { return vq.utils.VisUtils.options_map(feature)['label'];}, + Location : function(feature) { return 'Chr' + feature.chr + ' ' + feature.start + '-' + feature.end;} + }; + re.display_options.circvis.tooltips.unlocated_feature[re.ui.feature1.label] = function(feature) { return feature.sourceNode.source + ' ' + feature.sourceNode.label + + (feature.sourceNode.chr ? ' Chr'+ feature.sourceNode.chr : '') + + (feature.sourceNode.start > -1 ? ' '+ feature.sourceNode.start : '') + + (!isNaN(feature.sourceNode.end) ? '-'+ feature.sourceNode.end : '') + ' '+ + feature.sourceNode.label_mod;}; + re.display_options.circvis.tooltips.unlocated_feature[re.ui.feature2.label] = function(feature) { return feature.targetNode.source + ' ' + feature.targetNode.label + + (feature.targetNode.chr ? ' Chr'+ feature.targetNode.chr : '') + + (feature.targetNode.start > -1 ? ' '+ feature.targetNode.start : '') + + (!isNaN(feature.targetNode.end) ? '-'+ feature.targetNode.end : '') + ' ' + + feature.targetNode.label_mod;}; + + re.model.association.types.forEach( function(assoc) { + vq.utils.VisUtils.extend(re.display_options.circvis.tooltips.unlocated_feature, assoc.vis.tooltip.entry); + }); + + re.display_options.circvis.tooltips.edge[re.ui.feature1.label] = function(link) { return link.sourceNode.label+ ' ' + link.sourceNode.source + ' Chr' + link.sourceNode.chr + ' ' + link.sourceNode.start + + '-' + link.sourceNode.end + ' ' +link.sourceNode.label_mod;}; + + re.display_options.circvis.tooltips.edge[re.ui.feature2.label] = function(link) { return link.targetNode.label+ ' ' + link.targetNode.source + ' Chr' + link.targetNode.chr + ' ' + link.targetNode.start + + '-' + link.targetNode.end + ' ' + link.targetNode.label_mod;}; + + re.model.association.types.forEach(function(assoc) { + vq.utils.VisUtils.extend(re.display_options.circvis.tooltips.edge, assoc.vis.tooltip.entry); + }); + + re.display_options.circvis.tooltips.link_objects.forEach(function(link) { + re.display_options.circvis.tooltips.feature_links[link.label] = link.config_object; + }); + +}; \ No newline at end of file diff --git a/src/webapp/js/view/google_drive.js b/src/webapp/js/view/google_drive.js new file mode 100755 index 0000000..2681931 --- /dev/null +++ b/src/webapp/js/view/google_drive.js @@ -0,0 +1,249 @@ +Ext.ns("org.cancerregulome.explorer.utils"); + +org.cancerregulome.explorer.utils.GoogleDriveClient = Ext.extend(Ext.util.Observable, { + redirectUrl:null, + taskRunner:null, + + constructor:function (config) { + Ext.apply(this, config); + + org.cancerregulome.explorer.utils.GoogleDriveClient.superclass.constructor.call(this); + + this.addEvents("logged_in", "logged_out", "make_ready"); + + this.on("make_ready", this.makeReady, this); + + var me = this; + var runFn = function () { + console.log("run"); + me.makeReady(); + }; + this.checkLoginTask = { run:runFn, interval:2000, repeat: 30 }; + this.taskRunner = new Ext.util.TaskRunner(); + }, + + makeReady:function () { + Ext.Ajax.request({ + url:"/google-drive-svc/", + method:"GET", + scope:this, + success:function (o) { + var json = Ext.util.JSON.decode(o.responseText); + if (json.rejected) { + this.taskRunner.stopAll(); + } + if (json.redirect) { + this.redirectUrl = json.redirect; + this.fireEvent("logged_out"); + } else if (json["client_id"]) { + this.redirectUrl = null; + this.taskRunner.stopAll(); + this.fireEvent("logged_in", json); + } else { + // TODO: Fire events + } + }, + failure:function (o, e) { + // TODO : Fire events + } + }); + }, + + login:function () { + if (this.redirectUrl) { + console.log("start running"); + this.taskRunner.start(this.checkLoginTask); + + window.open(this.redirectUrl, "_blank", ""); + } else { + alert("cannot log you in, something weird is going on"); + } + }, + + logout:function () { + Ext.Ajax.request({ + url:"/google-drive-svc/logout", + method:"GET", + scope:this, + success:function () { + this.fireEvent("make_ready"); + } + }); + }, + + writeSvgToPng: function(title, contents) { + var fileMeta = { + title:title, + description: "Generated by Regulome Explorer: " + document.location, + mimeType: "image/png", + svgToPng: true + }; + this.doPost(fileMeta, contents); + }, + + writeFile:function (title, contents, mimeType) { + var fileMeta = {title:title, description: "Generated by Regulome Explorer: " + document.location}; + if (mimeType) { + fileMeta["mimeType"] = mimeType; + fileMeta["asGoogleDoc"] = true; + } + + this.doPost(fileMeta, contents); + }, + + doPost: function(fileMeta, contents) { + var title = fileMeta.title; + if (!title) title = "RE_data_export"; + + var loadingMsg = Ext.MessageBox.show({ + title: "Google Drive", + msg: "Uploading '" + title + "'. Please wait a few moments...", + icon: Ext.MessageBox.INFO + }); + + Ext.Ajax.request({ + url:"/google-drive-svc/", + method:"POST", + params:{ + meta:Ext.util.JSON.encode(fileMeta), content:contents + }, + scope:this, + success:function (o) { + var json = Ext.util.JSON.decode(o.responseText); + + loadingMsg.hide(); + if (json && json.id) { + Ext.MessageBox.show({ + title: "Google Drive", + msg: "Succesfully loaded '" + title + "'.

Open Google Drive", + buttons: Ext.MessageBox.OK, + icon: Ext.MessageBox.INFO + }); + } + }, + failure:function () { + loadingMsg.hide(); + Ext.MessageBox.show({ + title: "Google Drive", + msg: "Failed to upload '" + title + "'. Please try again.", + icon: Ext.MessageBox.WARNING, + buttons: Ext.MessageBox.OK + }); + } + }); + } +}); + +org.cancerregulome.explorer.utils.GetGoogleDriveMenu = function() { + var googleDriveClient = new org.cancerregulome.explorer.utils.GoogleDriveClient({}); + var googleDriveLogin = new Ext.menu.Item({ + text: "Login to Google Profile", + icon: "https://www.google.com/images/icons/ui/gprofile_button-64.png", + handler: function() { + alert("Not ready yet"); + } + }); + + var loggedInItems = [ + new Ext.menu.Item({ + text: "Spreadsheet", + icon: "https://ssl.gstatic.com/docs/doclist/images/icon_10_spreadsheet_list.png", + disabled: true, + handler: function() { + googleDriveClient.writeFile("RE_data_spreadsheet", org.cancerregulome.explorer.utils.RetrieveSpreadsheetContent(), "text/csv"); + } + }), + new Ext.menu.Item({ + text: 'Circular', + disabled: true, + menu: [ + { + text: 'SVG', + handler: function() { + googleDriveClient.writeFile("RE_circular_view.svg", retrieveSVG('circle-panel')); + } + }, + { + text: 'PNG', + handler: function() { + googleDriveClient.writeSvgToPng("RE_circular_view.png", retrieveSVG('circle-panel')); + } + } + ] + }), + new Ext.menu.Item({ + text: 'Linear', + disabled: true, + menu: [ + { + text: 'SVG', + handler: function() { + googleDriveClient.writeFile("RE_linear_view.svg", retrieveSVG('linear-panel')); + } + }, + { + text: 'PNG', + handler: function() { + googleDriveClient.writeSvgToPng("RE_linear_view.png", retrieveSVG('linear-panel')); + } + } + ] + }) + ]; + + googleDriveClient.on("logged_in", function(userProfile) { + Ext.each(loggedInItems, function(lii) { + lii.enable(); + }); + + googleDriveLogin.setText("Log out " + userProfile.email); + googleDriveLogin.setHandler(function() { + googleDriveClient.logout(); + }); + }); + googleDriveClient.on("logged_out", function() { + Ext.each(loggedInItems, function(lii) { + lii.disable(); + }); + + googleDriveLogin.setText("Login to Google Profile"); + googleDriveLogin.setHandler(function() { + googleDriveClient.login(); + }); + }); + googleDriveClient.makeReady(); + + var openGoogleDrive = { + text: "Open Google Drive", + icon: "https://developers.google.com/drive/images/drive_icon.png", + handler: function() { + window.open("http://drive.google.com", "_blank", ""); + } + }; + + return { + text: 'Export to Google Drive', + icon: "https://developers.google.com/drive/images/drive_icon.png", + menu: [ googleDriveLogin, "-", openGoogleDrive, "-", loggedInItems ] + } +}; + + +org.cancerregulome.explorer.utils.RetrieveSpreadsheetContent = function() { + var textdata = retrieveEdges(); + if (textdata) { + var data = JSON.parse(textdata); + if (data && data.length) { + var text = ""; + Ext.each(data, function(row) { + var rowdata = []; + Ext.each(row, function(cell) { + rowdata.push("\"" + cell + "\""); + }); + text += rowdata.join(",") + "\n"; + }); + return text; + } + } + return null; +} diff --git a/src/webapp/js/view/layout.js b/src/webapp/js/view/layout.js new file mode 100755 index 0000000..affc01e --- /dev/null +++ b/src/webapp/js/view/layout.js @@ -0,0 +1,2294 @@ +function registerLayoutListeners() { + var d = vq.events.Dispatcher; + d.addListener('data_ready', 'dataset_labels', function(obj) { + loadListStores(obj); + // resetFormPanel(); + checkFormURL(); + rectifyForm(); + if (invalidFilter()) {return;} + requestFilteredData(); + re.state.once_loaded = true; + }); + d.addListener('load_fail', 'associations', function(obj) { + Ext.Msg.alert('Query failed', obj.msg); + re.windows.masks.network_mask.hide(); + }); + d.addListener('query_fail', 'associations', function(obj) { + Ext.Msg.alert('Query failed', obj.msg); + re.windows.masks.network_mask.hide(); + }); + d.addListener('click_association', function(link) { + openDetailsWindow(link); + }); + d.addListener('data_ready', 'features', function(obj) { + renderScatterPlot(obj); + re.windows.masks.details_window_mask.hide(); + }); + d.addListener('data_ready', 'annotations', function(obj) { + loadDataset(); + }); + d.addListener('render_complete', 'circvis', function(circvis_plot) { + re.state.query_cancel = false; + exposeCirclePlot(); + }); + d.addListener('graph_ready', 'graph', function(data) { + if (Ext.getCmp('view-region').layout.activeItem.id == 'network-panel') { + requestGraphRender(); + } + }); + d.addListener('data_ready', 'associations', function(data) { + loadDataTableStore(data); + updateFilterPanel(); + }); + d.addListener('data_ready', 'sf_associations', function(data) { + loadDataTableStore(data); + if (Ext.getCmp('view-region').layout.activeItem.id == 'network-panel') { + Ext.getCmp('view-region').layout.setActiveItem('rf-graphical'); + } + }); + d.addListener('render_complete', 'linear', function(obj) { + exposeLinearPlot(obj); + enableLinearExport(); + }); + d.addListener('render_complete', 'scatterplot', function(obj) { + scatterplot_obj = obj; + }); + d.addListener('query_complete', 'label_position', function(obj) { + completeLabelLookup(obj); + }); + d.addListener('query_fail', 'label_position', function(obj) { + failedLabelLookup(obj); + }); + d.addListener('query_fail', 'features', function(obj) { + Ext.Msg.alert('Query failed', obj.msg); + re.windows.masks.details_window_mask.hide(); + re.windows.details_window.hide(); + }); + d.addListener('query_cancel', 'associations', function(data) { + re.state.query_cancel = true; + }); +} + + +/* + URL-based Form manipulation + */ + + +window.onpopstate = function(event) { + if (re.state.once_loaded) { + loadDataset(); + } +}; + +function extractURL() { + var json = null; + var url = location.search; + if (url.length > 1) json = Ext.urlDecode(url.slice(1)); + return json; +} + +function isDatasetURLSpecified() { + var json = extractURL(); + if (json != null && json.dataset !== undefined) { + return true; + } + return false; +} + +function isHiddenDatasetURLSpecified() { + var json = extractURL(); + if ( json != null && json.dataset !== undefined && json.hidden == "true" ) { + return true; + } + return false; +} + +function checkDatasetURL() { + var json = extractURL(); + re.analysis.hidden = false; + if (isDatasetURLSpecified()) { + var exists = selectDatasetByLabel(json.dataset); + if (isHiddenDatasetURLSpecified() ) { + re.analysis.hidden = true; + if (!exists) { + insertDatasetToStore(json.dataset); + selectDatasetByLabel(json.dataset); + } + } + } +} + +function rectifyForm() { + ['t', 'p'].forEach(function(f) { + if (Ext.getCmp(f+'_clin').isVisible()) { + var value = Ext.getCmp(f+'_label').getValue(); + Ext.getCmp(f+'_clin').setValue(value || '*',true); + Ext.getCmp(f+'_label').setValue('',true); + } + }); + //if pathway is selected on either form panel + ['t'].forEach(function(f) { + var combo = Ext.getCmp(f+'_pathway'); + if (combo.isVisible()) { + var value = combo.getValue(); + var record = combo.findRecord(combo.valueField, value); + var id = f === 't' ? re.ui.feature1.id : re.ui.feature2.id; + pathwaySelection(record,id, f); + } + }); +} + +function checkFormURL() { + var json = extractURL(); + if (json != null) setFormState(json); +} + +function setFormState(json) { + Ext.iterate(json, setComponentState) +} + +function setComponentState(key, value) { + var field = Ext.getCmp(key); + if (field !== undefined && 'setValue' in field) { + Ext.getCmp(key).setValue(value, true); + } + if (key.indexOf('_pathway') >= 0) { + field.setVisible(true); + Ext.getCmp(key[0] + '_label').setVisible(false); + } +} + +function getURI() { + return location.protocol + '//' + location.href; +} + +function removeDefaultValues(json) { + //remove default clinical label values. They've already been copied to the label field + ['t', 'p'].forEach(function(f) { + if (Ext.getCmp(f+'_clin').isVisible()) { + if (json[f + '_label'] == Ext.getCmp(f + '_clin').defaultValue) { + delete json[f + '_label']; + } + } + }); + //remove all of the other default value fields + for (var i in json) { + if (json[i] == null || json[i] == Ext.getCmp(i).defaultValue) { + delete json[i]; + } + } + return json; +} + +function removeDisabledValues(json){ + if (!Ext.getCmp('cis').checked){ + delete json['cis_distance_fn']; + delete json['cis_distance_value']; + } + return json; +} + +function fixPathwayValues(json) { + if (Ext.getCmp('t_pathway').isVisible()){ + delete json['t_label']; + json['t_type'] = "Pathway"; + } + + return json; +} + +function generateStateJSON() { + var json = getFilterSelections(); + //don't preserve empty or obvious values + json = removeDefaultValues(json); + json = removeDisabledValues(json); + json = fixPathwayValues(json); + var obj = {}; + var dataset = getSelectedDatasetLabel(); + if(dataset) obj.dataset = dataset; + if (re.analysis.hidden === true) { + obj.hidden = "true"; + } + obj = vq.utils.VisUtils.extend(obj, json); + return obj; +} + +function generateStateURL() { + return getURI() + '?' + Ext.urlEncode(generateStateJSON()); +} + +function preserveState() { + window.history.pushState(generateStateJSON(), '', '?' + Ext.urlEncode(generateStateJSON())); +} + + +/* + Window manipulation + */ + +function hideDatasetWindow() { + re.windows.dataset_window.hide(); +} + +/* + hide mask after scatterplot dispatches a 'completion' event? + */ + +function openDetailsWindow(association) { + re.windows.details_window.show(); + re.windows.masks.details_window_mask = new Ext.LoadMask('details-window', { + msg: "Loading Data..." + }); + re.windows.masks.details_window_mask.show(); + renderMedlineDocuments(association); +} + +function retrieveSVG(parent_panel) { + var serializer = new XMLSerializer(); + var svg_tags; + var panel_dom = Ext.DomQuery.selectNode('div#' + parent_panel + '>svg'); + //!important for web browsers that attempt to render the image after export. + panel_dom.setAttribute('xmlns', "http://www.w3.org/2000/svg"); + if (panel_dom !== undefined) { + svg_tags = serializeSVG(panel_dom); + } + return svg_tags; +} + +function exportImage() { + var parent_panel = 'circle-panel'; + if (this.parentMenu.parentMenu.activeItem.id == 'linear-export-menu') parent_panel = 'linear-panel'; + var svg = retrieveSVG(parent_panel); + if (svg === undefined) { + Ext.Msg.alert('SVG does not exist', 'SVG cannot be exported.');; + return; + } + if (this.value == 'svg') downloadData(svg, 'export.svg', 'svg'); + else convertData(svg, 'export.svg', 'svg', this.value); +} + +function exportCytoscape() { +// var parent_panel = 'cytoscape-panel'; + if (re.cytoscape.obj.initialized == null){ + Ext.Msg.alert("Export error", "Network tab/image is not initialized"); + return; + } + var svg = re.cytoscape.obj.svg(); + if (svg === undefined) { + Ext.Msg.alert('SVG does not exist', 'SVG cannot be exported.');; + return; + } + downloadData(svg, "re_cytoscapeweb_" + re.tables.current_data + ".svg", 'svg'); +} + +function loadDataDialog() { + re.windows.dataset_window.show(); + Ext.getCmp('dataset-grid').store.load(); +} + + +function exportScatterplotData(format) { + convertData(retrieveFeatures(), re.tables.current_data + '_features','json', format); +} + +function retrieveFeatures() { + var data = re.plot.scatterplot_data; + var f1 = data.f1alias, f2 = data.f2alias; + var columns = ['id'].concat(re.ui.getDatasetLabels()['patients']); + var rows = [[f1].concat(data.f1values),[f2].concat(data.f2values)]; + if (re.plot.scatterplot_category ) { + var category = [re.plot.scatterplot_category.alias].concat(re.plot.scatterplot_category.values); + rows = rows.concat([category]); + } + return Ext.encode([columns].concat(rows)); +} + +function exportData() { + convertData(retrieveEdges(), 'data_table', 'json', this.value); +} + +function retrieveEdges() { + var colModel = Ext.getCmp('data_grid').getColumnModel(); + var id_list = colModel.columns.map(function(col) { + return col.id; + }); + id_list = id_list.filter(function(id) { return id.indexOf('info_') !== 0; }); + return Ext.encode( //make into JSON + [id_list].concat( //append headers first + Ext.StoreMgr.get('data_grid_store').getRange() //grab all records from last query + .map(function(record) { //change each record in array + return id_list.map(function(id) { //into an array of values based on column id + return record.data[id]; + }); + }))); +} + +function openHelpWindow(subject, text) { + if (re.windows.helpWindowReference == null || re.windows.helpWindowReference.closed) { + re.windows.helpWindowReference = window.open('', 'help-popup', 'width=400,height=300,resizable=1,scrollbars=1,status=0,' + 'titlebar=0,toolbar=0,location=0,directories=0,menubar=0,copyhistory=0'); + } + re.windows.helpWindowReference.document.title = 'Help - ' + subject; + re.windows.helpWindowReference.document.body.innerHTML = '' + subject + '

' + text + '
'; + re.windows.helpWindowReference.focus(); +} + +function openBrowserWindow(url, width, height) { + var w = width || 640, + h = height || 480; + window.open(url, 'help-popup', 'width=' + w + ',height=' + h + ',resizable=1,scrollbars=1,status=0,' + 'titlebar=0,toolbar=0,location=0,directories=0,menubar=0,copyhistory=0'); +} + +function openBrowserTab(url) { + var new_window = window.open(url, '_blank'); + new_window.focus(); +} + +function pathwaySelection(record, feature_id, prefix) { + var prefix = prefix || 't'; + Ext.getCmp("filter_type").setValue(feature_id); + record.json.label = record.json.label.replace('\\r', ''); + Ext.getCmp(prefix + '_label').setValue(record.json.label); + Ext.getCmp('limit').setValue('25'); + re.ui.setCurrentPathwayMembers(record.json.label); + var memberDataArray = []; + var memberTokens = (record.json.label).split(",").sort(); + for (var tk = 0; tk 1) + url = "" + record.json.value + " "; + Ext.getCmp("pathway_member_panel").setTitle(url + " " + memberDataArray.length + " Genes"); +} + +/* + Filters + */ + +function invalidIsolateRequest(request_obj) { + var invalid = true; + if (request_obj.t_type == 'CLIN' && request_obj.t_label != '*') { + invalid = false; + } else if (request_obj.t_label != '' && request_obj.t_label.indexOf('*') < 0 && request_obj.t_label.indexOf('%') < 0) { + invalid = false; + } + return invalid; +} + +function invalidFeatureFilterCheck() { + + //make sure labels are defined for a filter query + if ( (!Ext.getCmp('t_clin').isVisible() && (Ext.getCmp('filter_type').getValue() === re.ui.feature1.id && Ext.getCmp('t_label').getValue().length === 0)) || + (Ext.getCmp('t_clin').isVisible() && (Ext.getCmp('filter_type').getValue() === re.ui.feature1.id && Ext.getCmp('t_clin').getValue().length === 0)) || + (!Ext.getCmp('t_clin').isVisible() && (Ext.getCmp('filter_type').getValue() === re.ui.feature2.id && Ext.getCmp('p_label').getValue().length === 0)) || + (Ext.getCmp('t_clin').isVisible() && (Ext.getCmp('filter_type').getValue() === re.ui.feature2.id && Ext.getCmp('p_clin').getValue().length === 0))) { + Ext.Msg.alert('Invalid Request', 'At least one feature label must be specified for the filtered feature.'); + return true; + } + return false; +} + +function invalidFilter() { + //make sure a label is defined for feature isolation query + if (Ext.getCmp('isolate').checked && invalidIsolateRequest(getFilterSelections())) { + Ext.Msg.alert('Invalid Request', 'An exact feature label must be specified.'); + return true; + } + //make sure labels are defined for a filter query + if (invalidFeatureFilterCheck()) { + return true; + } + return false; +} + +function manualFilterRequest() { + + //make sure labels are defined for a filter query + if (invalidFilter()) { + return; + } + + re.state.query_cancel = false; + re.display_options.cytoscape.ready = false; + preserveState(); + requestFilteredData(); +} + +function requestFilteredData() { + vq.events.Dispatcher.dispatch(new vq.events.Event('data_request', 'associations', getFilterSelections())); + prepareVisPanels(); +} + +/* + getFilterSelections + gathers the selections of each filter widget, packs it into a single object, and returns it + easier to consume by event listeners, hopefully? + */ + +function getFilterSelections() { + var type_1 = Ext.getCmp('t_type').getValue(); + var label_1=Ext.getCmp('t_label').getValue(); + + if (Ext.getCmp('t_clin').isVisible()) { + label_1 = Ext.getCmp('t_clin').getValue(); + } else if (type_1 === 'Pathway') { + type_1 = "*"; + } + + var type_2 = Ext.getCmp('p_type').getValue(); + var label_2=Ext.getCmp('p_label').getValue(); + + if (Ext.getCmp('p_clin').isVisible()) { + label_2 = Ext.getCmp('p_clin').getValue(); + } + + return packFilterSelections( + type_1, label_1, Ext.getCmp('t_chr').getValue(), Ext.getCmp('t_start').getValue(), Ext.getCmp('t_stop').getValue(), + type_2, label_2, Ext.getCmp('p_chr').getValue(), Ext.getCmp('p_start').getValue(), Ext.getCmp('p_stop').getValue(), + Ext.getCmp('order').getValue(), Ext.getCmp('limit').getValue(), Ext.getCmp('filter_type').getValue(), + Ext.getCmp('isolate').checked, + Ext.getCmp('cis').checked, + Ext.getCmp('trans').checked, + Ext.getCmp('cis_distance_value').getValue(), + Ext.getCmp('cis_distance_fn').getValue(), + Ext.getCmp('t_label_desc').getValue(), + Ext.getCmp('p_label_desc').getValue(), + Ext.getCmp('t_pathway').getValue() + ); +} + + +function packFilterSelections() { + var return_obj = { + t_type: arguments[0] || '', + t_label: arguments[1] || '', + t_chr: arguments[2] || '', + t_start: arguments[3] || '', + t_stop: arguments[4] || '', + p_type: arguments[5] || '', + p_label: arguments[6] || '', + p_chr: arguments[7] || '', + p_start: arguments[8] || '', + p_stop: arguments[9] || '', + order: arguments[10], + limit: arguments[11], + filter_type: arguments[12], + isolate: arguments[13], + cis: arguments[14], + trans: arguments[15], + cis_distance_value: arguments[16], + cis_distance_fn: arguments[17], + t_label_desc: arguments[18], + p_label_desc: arguments[19], + t_pathway: arguments[20] || '' + }; + + re.model.association.types.forEach(function(obj) { + if (Ext.getCmp(obj.id) === undefined) { + return; + } + if (obj.ui.filter.component instanceof re.multirangeField) { + return_obj[obj.id + '_value'] = Ext.getCmp(obj.id + '_value').getValue(); + return_obj[obj.id + '_fn'] = Ext.getCmp(obj.id + '_fn').getValue(); + } else{ + return_obj[obj.id] = Ext.getCmp(obj.id).getValue(); + } + }); + return return_obj; +} + + +function resetFormPanel() { + Ext.getCmp('t_type').setValue(Ext.getCmp('t_type').defaultValue), Ext.getCmp('t_label').reset(), + Ext.getCmp('t_chr').reset(), Ext.getCmp('t_clin').reset(), Ext.getCmp('t_start').reset(), Ext.getCmp('t_stop').reset(), + Ext.getCmp('p_type').setValue(Ext.getCmp('p_type').defaultValue), Ext.getCmp('p_label').reset(), Ext.getCmp('p_chr').reset(), Ext.getCmp('p_clin').reset(), + Ext.getCmp('p_start').reset(), Ext.getCmp('p_stop').reset(), + Ext.getCmp('order').reset(), Ext.getCmp('limit').reset(), Ext.getCmp('filter_type').reset(), + Ext.getCmp('t_pathway').reset(), + Ext.getCmp('t_pathway').setVisible(false),Ext.getCmp('t_clin').setVisible(false),Ext.getCmp('p_clin').setVisible(false); + Ext.getCmp('t_label').setVisible(true); Ext.getCmp('p_label').setVisible(true); + + re.model.association.types.forEach(function(obj) { + if (Ext.getCmp(obj.id) === undefined) { + return; + } + Ext.getCmp(obj.id).reset(); + if (obj.ui.filter.component instanceof re.multirangeField) { + Ext.getCmp(obj.id + '_fn').reset(); + } + }); + Ext.getCmp("pathway_member_panel").setTitle("Pathways/Groupings"); +} + +function updateFilterPanel() { + // if f1 has a label value and f1 is a list + if (Ext.getCmp('t_pathway').getValue() !== '' && Ext.getCmp('t_label').getValue().indexOf(",") > -1) { + //set filter type to feature 1, assign pathway, expand panel + Ext.getCmp("filter_type").setValue(re.ui.feature1.id); + re.ui.setCurrentPathwayMembers(Ext.getCmp('t_label').getValue()); + Ext.getCmp('pathway_member_panel').expand(); + } + } + +/* + should be called by an event listener + */ + +function loadListStores(dataset_labels) { + var labels = dataset_labels['feature_sources'].map(function(row) { return row.source;}); + var label_list = labels.map(function(l) { + return { + value: l, + label: re.label_map[l] || l + }; + }); + label_list.unshift({ + value: '*', + label: 'All' + }); + label_list.push({ + value: 'Pathway', + label: 'Pathway' + }); + + var obj = re.plot.locatable_source_list.filter(function(b) { return labels.indexOf(b) >= 0 }); + var t_type = obj ? obj[0] : labels[0]; + Ext.StoreMgr.get('f1_type_combo_store').loadData(label_list); + Ext.getCmp('t_type').setValue(t_type); + Ext.getCmp('t_type').defaultValue = t_type; + Ext.StoreMgr.get('f2_type_combo_store').loadData(label_list.filter(function (b){ return b.label !== 'Pathway'; })); + Ext.getCmp('p_type').setValue("*"); + var label_map = {}; + var cat_feature_list = [ + { + source: '*', + value: '*', + label: 'All', + alias: '*', + interesting_score: 999999999 + } + ]; + + dataset_labels['categorical_feature_labels'].forEach(function(row) { + if (label_map[row.source] === undefined) { + label_map[row.source] = 1; + } + cat_feature_list.push({ + source: row.source, + value: escapeComma(row.label), + label: re.functions.lookupFFN(row.alias), + alias: row.alias, + interesting_score: row.interesting_score + }); + }); + re.ui.categorical_sources_map = label_map; + re.ui.categorical_feature_list = cat_feature_list; + + var label_source_list = Object.keys(label_map); + var feature_filter = (label_map['CLIN']) ? 'CLIN' : label_source_list[0]; + if ( cat_feature_list.length > 0 ) { + var list = re.ui.categorical_feature_list.filter(function(l) { return l.source === feature_filter || l.source ==='*';}); + Ext.StoreMgr.get('f1_clin_list_store').loadData(list, false); + Ext.StoreMgr.get('f2_clin_list_store').loadData(list, false); + } + + Ext.getCmp('t_clin').setValue('*'); + Ext.getCmp('t_clin').defaultValue = '*'; + Ext.getCmp('p_clin').setValue('*'); + Ext.getCmp('p_clin').defaultValue = '*'; + + var pathway_list = dataset_labels['pathways'].map(function(row) { + return { + value: row.pname + ":" + row.psource, + label: row.pmembers, + url: row.purl + }; + }); + Ext.StoreMgr.get('f1_pathway_list_store').loadData(pathway_list); + + var scatterplot_categorical_features = cat_feature_list.filter( function(feature) { + var type = feature.alias[0]; + return type === 'C' || type === 'B'; + }); + + Ext.StoreMgr.get('categorical_feature_store').loadData(scatterplot_categorical_features); + + if (re.plot.default_colorby_feature_alias !== undefined) { + Ext.getCmp('scatterplot_colorby_combobox').setValue(re.plot.default_colorby_feature_alias); + } else { + + } + +} + +function loadDataTableStore(data) { + var columns = ['datatype_b', 'pretty_label_b', 'chr_b', 'start_b']; + var colModel = Ext.getCmp('data_grid').getColumnModel(); + var load_data = []; + if (data['unlocated'] === undefined) { + load_data = data['features'].map(function(node) { + var obj = { + id_a: node.id, + datatype_a: node.source, + pretty_label_a: node.pretty_label, + label_a: node.label, + chr_a: node.chr, + start_a: node.start, + end_a: node.end + }; + if(re.ui.filters.link_distance) { + obj['link_distance'] = node.link_distance; + } + re.model.association.types.forEach(function(assoc) { + obj[assoc.ui.grid.store_index] = node[assoc.ui.grid.store_index]; + }); + return obj; + }); + + columns.forEach(function(col) { + colModel.setHidden(colModel.getIndexById(col), true); + }); + } else { + load_data = pv.blend([data['network'], data['unlocated']]).map(function(row) { + var obj = { + id_a: row.node1.id, + datatype_a: row.node1.source, + pretty_label_a: row.node1.pretty_label, + label_a: row.node1.label, + chr_a: row.node1.chr, + start_a: row.node1.start, + end_a: row.node1.end, + id_b: row.node2.id, + datatype_b: row.node2.source, + pretty_label_b: row.node2.pretty_label, + label_b: row.node2.label, + chr_b: row.node2.chr, + start_b: row.node2.start, + end_b: row.node2.end + }; + if(re.ui.filters.link_distance) { + obj['link_distance'] = row.link_distance; + } + re.model.association.types.forEach(function(assoc) { + obj[assoc.ui.grid.store_index] = row[assoc.ui.grid.store_index]; + }); + return obj; + }); + columns.forEach(function(col) { + colModel.setHidden(colModel.getIndexById(col), false); + }); + } + + var order = Ext.getCmp('order').getValue(); + var fn = Ext.getCmp(order + '_fn') ? Ext.getCmp(order + '_fn').getValue() : ''; + var config = re.model.association.types[re.model.association_map[order]]; + var store_index = config.ui.grid.store_index; + var c,d; + if(fn ==='Abs'){ + load_data.sort(function(a,b) { + c = a[store_index]; + c = c >= 0 ? c : c * -1; + d = b[store_index]; + d = d >= 0 ? d : d * -1; + return d - c; + }); + } else { + Ext.StoreMgr.get('data_grid_store').setDefaultSort(config.ui.grid.column.id, + (config.query.order_direction).toUpperCase() + ); + } + Ext.StoreMgr.get('data_grid_store').loadData(load_data); + + return; +} + +/* + loadSelectedDataset + should dispatch an event after validating dataset selection + */ + +function loadDataset() { + checkDatasetURL(); + if (!isDatasetURLSpecified()) {loadDataDialog(); return;} + if (Ext.getCmp('dataset-grid').getSelectionModel().getSelected() === undefined) { + Ext.Msg.alert('Valid Dataset not selected', 'Please choose a dataset to begin.',loadDataDialog); + preserveState(); + return; + } + loadSelectedDataset(); +} + +function insertDatasetToStore(label) { + var disease = label.slice(0, label.indexOf('_')).toUpperCase(); + var obj = { + description : "Hidden dataset", + dataset_date : 'Now', + label : label, + method: 'hidden', + source : 'Unknown source', + disease : disease, + contact : '', + comments : '' + }; + Ext.StoreMgr.get('dataset_grid_store').loadData(obj, true); +} + + + +function selectDatasetByLabel(label) { + var record_index = Ext.StoreMgr.get('dataset_grid_store').findExact('label', label); + if (record_index >= 0) { + Ext.getCmp('dataset-grid').getSelectionModel().selectRow(record_index); + return true; + } + else { + Ext.getCmp('dataset-grid').getSelectionModel().clearSelections(true); + return false; + } +} + +function getSelectedDataset() { + if (Ext.getCmp('dataset-tabpanel').layout.activeItem.id == 'dataset-tree' && + Ext.getCmp('dataset-tree').getSelectionModel().getSelectedNode() !== null && + re.analysis.hidden !== true ) { + var label = Ext.getCmp('dataset-tree').getSelectionModel().getSelectedNode().attributes.label; + var record_index = Ext.StoreMgr.get('dataset_grid_store').findExact('label', label); + if (record_index >= 0) { + Ext.getCmp('dataset-grid').getSelectionModel().selectRow(record_index); + } + } + return Ext.getCmp('dataset-grid').getSelectionModel().getSelected(); +} + +function getSelectedDatasetDisease() { + var selected_record = getSelectedDataset(); + var selected_dataset = null; + if (selected_record != null) { + selected_dataset = selected_record.json.disease; + } + return selected_dataset; +} + +function getSelectedDatasetLabel() { + var selected_record = getSelectedDataset(); + var selected_dataset = null; + if (selected_record != null) { + selected_dataset = selected_record.json.label; + } + return selected_dataset; +} + +function getSelectedDatasetDescription() { + var selected_record = getSelectedDataset(); + var selected_dataset = ''; + if (selected_record != null) { + selected_dataset = selected_record.json.description; + } + return selected_dataset; +} + + +function manualLoadSelectedDataset() { + re.analysis.hidden = false; + preserveState(); + loadSelectedDataset(); +} + +function loadSelectedDataset() { + var selected_dataset_label = getSelectedDatasetLabel(); + var selected_dataset_disease = getSelectedDatasetDisease(); + var selected_description = getSelectedDatasetDescription(); + if (selected_dataset_label != '') { + vq.events.Dispatcher.dispatch(new vq.events.Event('dataset_selected', 'dataset-grid', {label: selected_dataset_label, disease: selected_dataset_disease})); + hideDatasetWindow(); + Ext.getCmp('filter_parent').setTitle('Filtering \'' + selected_description + '\''); + } else { + Ext.Msg.alert('Dataset not selected', 'Select a dataset to load.'); + } +} + +function completeLabelLookup(lookup_obj) { + var feature = lookup_obj.feature || {}; + if (feature === {}) { + return; + } + var ui = (lookup_obj.ui == 'f2' ? 'p' : 't'); + var chr_ui = Ext.getCmp(ui + '_chr'); + var start_ui = Ext.getCmp(ui + '_start'); + var end_ui = Ext.getCmp(ui + '_stop'); + var chr = feature.chr.slice(3); + var start = Math.max(feature.start - 5000, 0); + var stop = feature.end + 5000; + chr_ui.setValue(chr); + start_ui.setValue(start); + end_ui.setValue(stop); + var label_ui = Ext.getCmp(ui + '_label'); + label_ui.setValue(''); +} + +function failedLabelLookup() { + var alert = Ext.Msg.alert('Failure ', 'Specified Gene Label was not found.', function() { + task.cancel() + }); + var task = new Ext.util.DelayedTask(function() { + alert.hide(); + }); + task.delay(1300); +} + +function requestGraphRender() { + var e = new vq.events.Event('frame_ready', 'graph', {}); + e.dispatch(); +} + +/* + renderScatterPlot + should be wrapped in an event listener external to the ui layout code + */ +function renderScatterPlot() { + var regression_type = Ext.getCmp('scatterplot_regression_radiogroup').getValue().getRawValue(); + var reverse_axes = Ext.getCmp('scatterplot_axes_checkbox').getValue(); + var discretize_x = Ext.getCmp('scatterplot_discrete_x_checkbox').getValue(); + var discretize_y = Ext.getCmp('scatterplot_discrete_y_checkbox').getValue(); + var event_obj = { + div: document.getElementById('scatterplot_panel'), + regression_type: regression_type, + reverse_axes: reverse_axes, + discretize_x: discretize_x, + discretize_y: discretize_y + }; + if (arguments.length == 1) //data passed into function + event_obj['data'] = arguments[0]; + + Ext.getCmp('details-tabpanel').layout.setActiveItem('scatterplot_parent'); + Ext.getCmp('scatterplot_parent').show(); + vq.events.Dispatcher.dispatch( + new vq.events.Event('render_scatterplot', 'details', event_obj)); +} + +/* + MEDLINE functions + */ + +function renderMedlineDocuments(association) { + var term1 = association.sourceNode.label; + var term2 = association.targetNode.label; + retrieveMedlineDocuments(term1, term2); + Ext.StoreMgr.get('dataDocument_grid_store').load({ + params: { + start: 0, + rows: 20 + } + }); +} + +function retrieveMedlineDocuments(term1, term2) { + Ext.StoreMgr.get('dataDocument_grid_store').on({ + beforeload: { + fn: function(store, options) { + store.proxy.setUrl(re.databases.medline.uri + re.databases.medline.select + '?qt=distributed_select&q=%2Btext%3A\"' + term1 + '\" %2Btext%3A\"' + term2 + '\"&fq=%2Bpub_date_year%3A%5B1991 TO 2011%5D&wt=json' + '&hl=true&hl.fl=article_title,abstract_text&hl.snippets=100&hl.fragsize=50000&h.mergeContiguous=true&sort=pub_date_year%20desc'); + } + } + }); +} + +/* + Grid Column rendering functions + */ + +function renderPMID(value, p, record) { + return String.format('{0}', record.data.pmid); +} + +function renderTitle(value, p, record) { + var jsonData = record.store.reader.jsonData; + if (jsonData.highlighting[record.id] != undefined && jsonData.highlighting[record.id].article_title != undefined) { + return jsonData.highlighting[record.id].article_title[0]; + } else return record.data.article_title; +} + +/*clean divs*/ + +function enableLinearExport() { + Ext.getCmp('linear-export-menu').setDisabled(false); +} + +function prepareVisPanels() { + re.windows.masks.network_mask = new Ext.LoadMask('view-region', { + msg: "Loading Data...", + cancelEvent: function() { + vq.events.Dispatcher.dispatch( + new vq.events.Event('query_cancel', 'associations', {})); + } + }); + re.windows.masks.network_mask.show(); + wipeLinearPlot(); +} + +function wipeLinearPlot() { + Ext.getCmp('linear-parent').setTitle('Chromosome-level View'); + document.getElementById('linear-panel').innerHTML = ''; + Ext.getCmp('linear-parent').collapse(true); +} + +function exposeCirclePlot() { + Ext.getCmp('circle-parent').expand(true); + re.windows.masks.network_mask.hide(); +} + +function exposeLinearPlot(feature_obj) { + Ext.getCmp('linear-parent').expand(true); + Ext.getCmp('linear-parent').setTitle('Chromosome-level View: Chromosome ' + feature_obj.chr); + var task = new Ext.util.DelayedTask(function() { + var rf = Ext.getCmp('rf-graphical').body; + var d = rf.dom; + rf.scroll('b', d.scrollHeight - d.offsetHeight, true); + }); + task.delay(300); +} + +function openRFPanel() { + loadDataLabelLists(function() { + if (Ext.get('circle-panel').dom.firstChild.id !== "") { + getFilterSelections(); + } + }); +} + +function registerAllListeners() { + registerLayoutListeners(); + registerDataRetrievalListeners(); + registerModelListeners(); + registerPlotListeners(); +} + +Ext.onReady(function() { + Ext.QuickTips.init(); + Ext.Ajax.disableCaching = false; + Ext.Ajax.defaultHeaders = { + 'Accept' : 'application/json,application/xml', + 'Content-Type' : 'application/json' + }; + + registerAllListeners(); + + var randomforestPanel = new Ext.Panel({ + id: 'randomforest-panel', + name: 'randomforest-panel', + layout: 'border', + frame: false, + border: false, + defaults: { + bodyStyle: 'padding:5px', + animFloat: false, + floatable: false + }, + items: [{ + region: 'center', + id: 'view-region', + xtype: 'tabpanel', + border: false, + activeTab: 0, + deferredRender: false, + items: [{ + xtype: 'panel', + id: 'rf-graphical', + layout: 'auto', + title: 'Multi-Scale', + autoScroll: 'true', + items: [{ + xtype: 'panel', + id: 'circle-parent', + layout: 'absolute', + height: 900, + width: 1050, + collapsible: true, + title: 'Genome-level View', + tools: [{ + id: 'help', + handler: function(event, toolEl, panel) { + openHelpWindow('Genome-level View', re.help.strings.genomeLevelHelpString); + } + }], + items: [{ + xtype: 'panel', + id: 'circle-panel', + width: 800, + x: 20, + y: 20, + html:'Select a Dataset to begin' + }, { + xtype: 'panel', + id: 'circle-legend-panel', + width: 150, + border: false, + frame: false, + x: 880, + y: 20 + }, { + xtype: 'panel', + id: 'circle-colorscale-panel', + width: 150, + border: false, + frame: false, + x: 330, + y: 450 + }] + }, { + xtype: 'panel', + id: 'linear-parent', + layout: 'absolute', + height: 800, + width: 1050, + collapsible: true, + collapsed: true, + title: 'Chromosome-level View', + tools: [{ + id: 'help', + handler: function(event, toolEl, panel) { + openHelpWindow('Chromosome-level View', re.help.strings.chromosomeLevelHelpString); + } + }], + items: [{ + xtype: 'panel', + id: 'linear-panel', + width: 800, + x: 20, + y: 20, + html: 'For a Chromosome-level view of the data, select a point of focus from the Genome-level View.

' + 'Click on:' + '

  1. Chromosome Label
  2. Tick Label
  3. ' + }, { + xtype: 'panel', + id: 'linear-legend-panel', + width: 150, + border: false, + frame: false, + x: 820, + y: 20 + }] + }] + }, { + xtype: 'panel', + id: 'network-panel', + name: 'network-panel', + title: 'Network', + autoScroll: false, + layout: 'auto', + monitorResize: true, + collapsible: false, + listeners: { + activate: function() { + requestGraphRender(); + } + }, + items: { + layout: 'fit', + items: { + xtype: 'panel', + id: 'graph-panel', + name: 'graph-panel' + } + } + }, { + xtype: 'panel', + id: 'grid-panel', + name: 'grid-panel', + title: 'Data Table', + monitorResize: true, + autoScroll: false, + layout: 'fit', + height: 650, + width: 1050, + collapsible: false, + tools: [{ + id: 'help', + handler: function(event, toolEl, panel) { + openHelpWindow('Data-level View', re.help.strings.dataLevelViewHelpString); + } + }], + items: [{ + xtype: 'grid', + id: 'data_grid', + name: 'data_grid', + autoScroll: true, + monitorResize: true, + autoWidth: true, + height: 650, + viewConfig: { + forceFit: true + }, + cm: new Ext.grid.ColumnModel({ + columns: [{ + header: "Id", + width: 40, + hidden: true, + id: 'id_a', + dataIndex: 'id_a' + }, { + width: 30, + align: 'center', + icon: '../images/icons/zoom.png', + id: 'info_a', + xtype: 'actioncolumn', + handler: function(grid, rowIndex, colIndex) { + var record = grid.store.getAt(rowIndex); + var fieldName = grid.getColumnModel().getColumnId(colIndex); + var feature = fieldName.split('_')[1]; + var t = grid.getView().getCell(rowIndex,colIndex); + var data = { + source:record.json['datatype_' + feature], + label:record.json['label_' + feature], chr:record.json['chr_' + feature], + start:record.json['start_' + feature], end:record.json['end_' + feature] || '' + }; + var hovercard = new vq.Hovercard(options(t)); + hovercard.show(t, data); + } + },{ + header: "Label", + width: 80, + id: 'pretty_label_a', + dataIndex: 'pretty_label_a', + groupName: 'Target' + }, { + header: "Type", + width: 40, + id: 'datatype_a', + dataIndex: 'datatype_a', + groupName: 'Target' + }, { + header: "Chr", + width: 30, + id: 'chr_a', + dataIndex: 'chr_a', + groupName: 'Target' + }, { + header: "Start", + width: 70, + id: 'start_a', + dataIndex: 'start_a', + groupName: 'Target' + }, { + header: "End", + width: 70, + id: 'end_a', + dataIndex: 'end_a', + hidden: true, + groupName: 'Target' + }, { + header: "Id", + width: 40, + hidden: true, + id: 'id_b', + dataIndex: 'id_b' + }, { + width: 30, + align: 'center', + icon: '../images/icons/zoom.png', + id: 'info_b', + xtype: 'actioncolumn', + handler: function(grid, rowIndex, colIndex) { + var record = grid.store.getAt(rowIndex); + var fieldName = grid.getColumnModel().getColumnId(colIndex); + var feature = fieldName.split('_')[1]; + var t = grid.getView().getCell(rowIndex,colIndex); + var data = { + source:record.json['datatype_' + feature], + label:record.json['label_' + feature], chr:record.json['chr_' + feature], + start:record.json['start_' + feature], end:record.json['end_' + feature] || '' + }; + var hovercard = new vq.Hovercard(options(t)); + hovercard.show(t, data); + } + },{ + header: "Label", + width: 80, + id: 'pretty_label_b', + dataIndex: 'pretty_label_b', + groupName: 'Target' + }, { + header: "Type", + width: 40, + id: 'datatype_b', + dataIndex: 'datatype_b', + groupName: 'Target' + }, { + header: "Chr", + width: 40, + id: 'chr_b', + dataIndex: 'chr_b', + groupName: 'Target' + }, { + header: "Start", + width: 70, + id: 'start_b', + dataIndex: 'start_b', + groupName: 'Target' + }, { + header: "End", + width: 70, + id: 'end_b', + dataIndex: 'end_b', + hidden: true, + groupName: 'Target' + } + ].concat(re.ui.filters.link_distance ? + { + header: "Distance", + width: 50, + id: 'link_distance', + dataIndex: 'link_distance', + renderer: function(value) { + return value >= 500000000 ? 'Inf' : value; + } + } : + [] + ) + .concat(re.model.association.types.map(function(obj) { + if (obj.ui != null) + return obj.ui.grid.column; + })), + defaults: { + sortable: true, + width: 100 + } + }), + store: new Ext.data.JsonStore({ + autoLoad: false, + storeId: 'data_grid_store', + fields: ['id_a', 'datatype_a', 'pretty_label_a', 'chr_a', 'start_a', 'end_a', + 'id_b', 'datatype_b', 'pretty_label_b', 'chr_b', 'start_b', 'end_b'] + .concat( re.ui.filters.link_distance ? 'link_distance': []) + .concat(re.model.association.types.map(function(obj) { + return obj.ui.grid.store_index; + })) + }), + listeners: { + rowclick: function(grid, rowIndex, event) { + + var target = event.getTarget(null, null, true); + if (target.hasClass('x-action-col-icon')) { + return; + } + var record = grid.getStore().getAt(rowIndex); + var link = {}; + link.sourceNode = {}; + link.targetNode = {}; + link.sourceNode.id = record.get('id_a'); + link.targetNode.id = record.get('id_b'); + link.sourceNode.label = record.get('pretty_label_a'); + link.targetNode.label = record.get('pretty_label_b'); + //initiateDetailsPopup(link); + vq.events.Dispatcher.dispatch(new vq.events.Event('click_association', 'associations_table', link)); + } + // mouseover: function (e,t) { + // var row; + // var col; + // if((row = this.getView().findRowIndex(t)) !== false && (col = this.getView().findCellIndex(t)) != false ){ + // var record = this.store.getAt(row); + // var fieldName = this.getColumnModel().getDataIndex(col); + // // var anchor = this.getView().getCell(row+1, col+1) || this.getView().getCell(row+1, col-1) || + // // this.getView().getCell(row-5, colorscale_draw+1); + + // var feature = fieldName.split('_')[0]; + // if(record.json[feature+'_id']===undefined) { return false;} + // var data = { + // source:record.json[feature+'_source'], + // label:record.json[feature+'_label'], chr:record.json[feature+'_chr'], + // start:record.json[feature+'_start'], end:'' + // }; + // var hovercard = new vq.Hovercard(options(t)); + // hovercard.show(t, data) + + // } + // } + } + }] + }] + }, + re.ui.panels.east] + }); + +var options = function(t) { return { + include_header : false, + include_footer : true, + include_frame : true, + self_hover : false, + timeout : 0, + target : t, + data_config : re.display_options.circvis.tooltips.feature, + tool_config : re.display_options.circvis.tooltips.feature_links, + }; + }; + + + + new Ext.Viewport({ + layout: { + type: 'border', + padding: 5 + }, + defaults: { + split: true + }, + items: [{ + region: 'north', + id: 'toolbar-region', + collapsible: false, + border: false, + title: re.title || 'Multi-Scale Explorer', + split: false, + height: 27, + layout: 'fit', + tbar: [{ + id: 'dataMenu', + text: 'Data', + labelStyle: 'font-weight:bold;', + menu: [{ + text: 'Select', + handler: loadDataDialog + }, { + text: 'Export', + menu: [{ + text: 'CSV', + value: 'csv', + handler: exportData + }, { + text: 'TSV', + value: 'tsv', + handler: exportData + }, { + text: 'Circular', + id: 'circular-export-menu', + menu: [{ + text: 'SVG', + value: 'svg', + handler: exportImage + // }, { + // text: 'PNG', + // value: 'png', + // handler: exportImage + }] + }, { + text: 'Linear', + id: 'linear-export-menu', + disabled:true, + menu: [{ + text: 'SVG', + value: 'svg', + handler: exportImage + // }, { + // text: 'PNG', + // value: 'png', + // handler: exportImage + }] + }, { + text: 'Network', + id: 'network-export-menu', + handler: exportCytoscape + }] + }, + org.cancerregulome.explorer.utils.GetGoogleDriveMenu()] + }, { + id: 'displayMenu', + text: 'Display', + labelStyle: 'font-weight:bold;', + menu: [{ + id: 'networkMenu', + text: 'Network', + labelStyle: 'font-weight:bold;', + menu: [{ + checked: true, + text: 'Force Directed', + xtype: 'menucheckitem', + handler: networkLayoutHandler, + group: 'networklayout_group' + }, { + text: 'Radial', + xtype: 'menucheckitem', + handler: networkLayoutHandler, + checked: false, + group: 'networklayout_group' + }, { + text: 'Tree', + xtype: 'menucheckitem', + handler: networkLayoutHandler, + checked: false, + group: 'networklayout_group' + }] + }, { + text: 'Circular Plot', + menu: [{ + text: 'Outer Ticks:', + menu: [{ + xtype: 'compositefield', + items: [{ + xtype: 'checkbox', + id: 'tile_ticks_checkbox', + checked: false, + label: 'Specifiy Tick Tiling', + handler: function(checkbox, checked) { + Ext.getCmp('tile_ticks_field').setDisabled(!checked); + re.display_options.circvis.ticks.tile_ticks_manually = checked; + re.display_options.circvis.ticks.tick_overlap_distance = Ext.getCmp('tile_ticks_field').getValue(); + } + }, { + xtype: 'label', + text: 'Overlap Distance' + }, { + id: 'tile_ticks_field', + xtype: 'numberfield', + width: 75, + value: '7200', + minValue: -2, + maxValue: 20000000.0, + disabled: true, + listeners: { + change: function(field, value) { + re.display_options.circvis.ticks.tick_overlap_distance = value; + + } + } + }, { + xtype: 'label', + text: 'bp' + }], + text: 'Tile Overlap', + width: 220 + }, { + xtype: 'compositefield', + width: 240, + items: [{ + xtype: 'checkbox', + id: 'tick_wedge_height_manually', + checked: false, + label: 'Wedge Height', + handler: function(checkbox, checked) { + Ext.getCmp('circvis_tick_wedge_height').setDisabled(!checked); + re.display_options.circvis.ticks.wedge_height_manually = checked; + re.display_options.circvis.ticks.wedge_height = Ext.getCmp('circvis_tick_wedge_height').getValue(); + } + }, { + xtype: 'label', + text: 'Wedge Height' + }, { + id: 'circvis_tick_wedge_height', + xtype: 'numberfield', + minValue: 1, + maxValue: 30, + value: 10, + width: 75, + disabled: true, + listeners: { + change: function(field, value) { + re.display_options.circvis.ticks.wedge_height = value; + } + } + }, { + xtype: 'label', + text: 'pixels' + }] + }, { + xtype: 'compositefield', + width: 240, + items: [{ + xtype: 'checkbox', + id: 'tick_wedge_width_manually', + checked: false, + label: 'Wedge Width', + handler: function(checkbox, checked) { + Ext.getCmp('circvis_tick_wedge_width').setDisabled(!checked); + re.display_options.circvis.ticks.wedge_width_manually = checked; + re.display_options.circvis.ticks.wedge_width = Ext.getCmp('circvis_tick_wedge_width').getValue(); + } + }, { + xtype: 'label', + text: 'Wedge Width' + }, { + id: 'circvis_tick_wedge_width', + xtype: 'numberfield', + minValue: 0.1, + maxValue: 360, + value: 0.5, + width: 75, + disabled: true, + listeners: { + change: function(field, value) { + re.display_options.circvis.ticks.wedge_width = value; + } + } + }, { + xtype: 'label', + text: 'degrees' + }] + }] + }, { + text: 'Rotate Clockwise', + menu: [{ + xtype: 'compositefield', + width: 140, + items: [{ + id: 'circvis_rotation_degrees', + xtype: 'numberfield', + minValue: 0, + maxValue: 360, + value: 0, + width: 75, + listeners: { + change: function(field, value) { + re.display_options.circvis.rotation = value; + } + } + }, { + xtype: 'label', + text: 'degrees' + }] + }] + }] + }, { + id: 'circularScatterplotMenu', + text: 'Scatterplot', + menu: [{ + text: 'Association', + labelStyle: 'font-weight:bold;', + menu: re.model.association.types.map(function(obj, index) { + var return_obj = { + text: obj.label, + value: obj.id, + xtype: 'menucheckitem', + handler: scatterplotFieldHandler, + checked: false, + group: 'scatterplot_group' + }; + if (index == 0) { + return_obj.checked = true; + } + return return_obj; + }) + }, { + + text: 'Plot Range', + menu:[{ + xtype:'compositefield', + width: 220, + items:[{xtype:'checkbox', + handler: function(checbox,checked) { re.display_options.circvis.rings.pairwise_scores.manual_y_values = checked; + Ext.getCmp('min_y_axis').setDisabled(!checked); + Ext.getCmp('max_y_axis').setDisabled(!checked);} + },{ + xtype:'label', + text:'Min' + },{ + xtype:'numberfield', + width: 50, + value:0, + id:'min_y_axis', + allowBlank:false, + allowDecimals: true, + decimalPrecision:6, + disabled:!re.display_options.circvis.rings.pairwise_scores.manual_y_values, + listeners: { + render: function(field) { + re.display_options.circvis.rings.pairwise_scores.min_y_value = field.value; + }, + change: function(field, value) { + re.display_options.circvis.rings.pairwise_scores.min_y_value = value;} + } + },{ + xtype:'label', + text:'Max' + },{ + xtype:'numberfield', + text:'Max', + width: 50, + value:1, + id:'max_y_axis', + allowBlank:false, + allowDecimals: true, + decimalPrecision:6, + disabled:!re.display_options.circvis.rings.pairwise_scores.manual_y_values, + listeners: { + render:function(field) { + re.display_options.circvis.rings.pairwise_scores.max_y_value = field.value; + }, + change: function(field, value) { + re.display_options.circvis.rings.pairwise_scores.max_y_value = value;} + } + }]}] + }, { + text: 'Color Scale', + + menu:[ + { + xtype:'compositefield', + items:[ + { + xtype:'checkbox', + handler: function(checbox,checked) { re.display_options.circvis.rings.pairwise_scores.manual_y_color_scale = checked; + Ext.getCmp('min_y_color_menu').setDisabled(!checked); + Ext.getCmp('max_y_color_menu').setDisabled(!checked);} + },{ + xtype:'label', + text:'Set Manually' + }] + },{ + xtype:'compositefield', + id:'min_y_color_menu', + width:200, + disabled: !re.display_options.circvis.rings.pairwise_scores.manual_y_color_scale, + items:[{ + text:'Min Color', + xtype:'label' + },{ + id:'min_y_color', + xtype:'colorpickerfield', + value:'#0000FF', + editMode:'all', + width:120, + handler :function(field, value) { + re.display_options.circvis.rings.pairwise_scores.min_y_color = '#' +value; + } + }] + }, { + xtype:'compositefield', + id:'max_y_color_menu', + width:200, + disabled: !re.display_options.circvis.rings.pairwise_scores.manual_y_color_scale, + items:[{ + text:'Max Color', + xtype:'label' + },{ + id:'max_y_color', + xtype:'colorpickerfield', + width:120, + value:'#FF0000', + hideOnClick:false, + editMode:'all', + handler:function(field, value) { + re.display_options.circvis.rings.pairwise_scores.max_y_color = '#' +value; + } + + }] + }] + }] + }] + }, { + id: 'modalMenu', + text: 'Mode', + labelStyle: 'font-weight:bold;', + menu: [{ + text: 'Circular Plot', + menu: [{ + xtype: 'menucheckitem', + handler: modeHandler, + checked: true, + id: 'explore_check', + group: 'mode_group', + text: 'Explore', + value: 'explore' + }, { + xtype: 'menucheckitem', + handler: modeHandler, + group: 'mode_group', + id: 'nav_check', + text: 'Navigate', + value: 'navigate' + }, { + xtype: 'menucheckitem', + handler: modeHandler, + group: 'mode_group', + disabled: true, + id: 'select_check', + text: 'Select', + value: 'Select' + }] + }] + }, { + id: 'helpMenu', + text: 'Help', + labelStyle: 'font-weight:bold;', + menu: [{ + text: 'User Guide', + handler: userGuideHandler + }, { + text: 'Quick Start Guide', + handler: function() { + openBrowserTab(re.help.links.quick_start) + } + }, { + text: 'Circular Ideogram', + handler: function() { + openBrowserTab(re.help.links.ideogram) + } + }, { + handler: function() { + openBrowserTab(re.help.links.user_group) + }, + text: 'User Group' + }, { + handler: openIssueHandler, + text: 'Report an Issue/Bug' + }] + }, { + id: 'aboutMenu', + text: 'About', + labelStyle: 'font-weight:bold;', + menu: [{ + text: 'CSACR', + handler: function() { + openBrowserTab('http://www.cancerregulome.org/') + } + }, { + handler: openCodeRepository, + text: 'Code Repository' + }, { + text: 'This Analysis', + handler: function() { + openBrowserTab(re.help.links.analysis_summary) + } + }, { + text: 'Contact Us', + handler: function() { + openBrowserTab(re.help.links.contact_us) + } + }] + }] +}, { + region: 'center', + id: 'center-panel', + name: 'center-panel', + layout: 'card', + border: false, + closable: false, + activeItem: 0, + height: 800, + margins: '0 5 5 0', + items: [ + randomforestPanel] +}], +renderTo: Ext.getBody() +}); + + +function ringHandler(item) { + re.setRingHidden(item.getId(), item.checked); //hidden if true! + requestFeatureFilteredRedraw(); +} + +function userGuideHandler(item) { + openBrowserTab(re.help.links.user_guide); +} + +function openIssueHandler(item) { + openBrowserTab(re.help.links.bug_report); +} + +function openCodeRepository(item) { + openBrowserTab('http://code.google.com/p/regulome-explorer/'); +} + +function modeHandler(item) { + switch (item.getId()) { + case ('nav_check'): + vq.events.Dispatcher.dispatch(new vq.events.Event('modify_circvis', 'main_menu', { + pan_enable: true, + zoom_enable: true + })); + break; + case ('explore_check'): + default: + vq.events.Dispatcher.dispatch(new vq.events.Event('modify_circvis', 'main_menu', { + pan_enable: false, + zoom_enable: false + })); + } +} + +function scatterplotFieldHandler(item) { + re.display_options.circvis.rings.pairwise_scores.value_field = re.model.association.types[re.model.association_map[item.value]].id; +} + +function networkLayoutHandler(item) { + switch (item.text) { + case ('Radial'): + re.display_options.cytoscape.layout = 'radial'; + break; + case ('Tree'): + re.display_options.cytoscape.layout = 'tree'; + break; + case ('Force Directed'): + default: + re.display_options.cytoscape.layout = 'force_directed'; + break; + } + vq.events.Dispatcher.dispatch(new vq.events.Event('layout_network', 'main_menu', {})); +} + +re.windows.export_window = new Ext.Window({ + id: 'export-window', + renderTo: 'view-region', + modal: true, + closeAction: 'hide', + layout: 'anchor', + width: 600, + height: 500, + title: "Export Image", + closable: true, + tools: [{ + id: 'help', + handler: function(event, toolEl, panel) { + openHelpWindow('Export', re.help.strings.exportHelpString); + } + }], + layoutConfig: { + animate: true + }, + maximizable: false, + items: { + xtype: 'textarea', + id: 'export-textarea', + name: 'export-textarea', + padding: '5 0 0 0', + autoScroll: true, + anchor: '100% 100%' + } +}); +re.windows.export_window.hide(); + +var loadListener = function(store, records) { + store.removeListener('load', loadListener); + var e = new vq.events.Event('data_request', 'annotations', {}); + e.dispatch(); + + pathedMenu.addPathedItems(records); + datasetTree.addNodes(records); +}; + +var datasetTree = new org.cancerregulome.explorer.view.DatasetTree({text:'Datasets',expanded:true,autoScroll:true}); +var datasetGrid = new Ext.grid.GridPanel({ + title:'Grid', + id: 'dataset-grid', + autoScroll: true, + loadMask: true, + monitorResize: true, + autoWidth: true, + height: 250, + viewConfig: { + forceFit: true + }, + cm: new Ext.grid.ColumnModel({ + columns: [{ + header: "Description", + width: 120, + id: 'description', + dataIndex: 'description' + }, { + header: "Date", + width: 90, + id: 'dataset_date', + dataIndex: 'dataset_date', + hidden: false + }, { + header: "Label", + width: 120, + id: 'label', + dataIndex: 'label', + hidden: true + }, { + header: "Method", + width: 70, + id: 'method', + dataIndex: 'method' + }, { + header: "Source", + width: 70, + id: 'source', + dataIndex: 'source' + }, { + header: "Disease", + width: 70, + id: 'disease', + dataIndex: 'disease' + }, { + header: "Contact", + width: 200, + id: 'contact', + dataIndex: 'contact' + }, { + header: "Comments", + width: 100, + id: 'comments', + dataIndex: 'comments' + }], + defaults: { + sortable: true, + width: 100 + } + + }), + store: new Ext.data.JsonStore({ + autoLoad: true, + storeId: 'dataset_grid_store', + idProperty: 'label', + proxy: new Ext.data.HttpProxy({ + url: re.databases.base_uri + re.databases.rf_ace.uri + re.tables.dataset + re.rest.query + '?' + re.params.query + 'select `description`, `dataset_date`,`label`, `method`, `source`, `disease`, `contact`, `comments`' + re.analysis.dataset_method_clause + ' order by default_display DESC' + re.params.json_out + }), + fields: ['description', 'label', 'dataset_date', 'method', 'source', 'disease', 'contact', 'comments'], + listeners: { + load: loadListener + } + }) + }); + + re.windows.dataset_window = new Ext.Window({ + id: 'dataset-window', + renderTo: Ext.getBody(), + modal: true, + closeAction: 'hide', + layout:'fit', + width: 800, + height: 300, + title: "Load Dataset", + closable: true, + layoutConfig: { + animate: true + }, + maximizable: false, + items: { + xtype: 'tabpanel', + id:'dataset-tabpanel', + activeTab: 'dataset-tree', + deferredRender : false, + items: [ + { + xtype:'treepanel', + title:'Tree', + id:'dataset-tree', + rootVisible:false, + autoScroll:true, + root: datasetTree + }, + datasetGrid + ] + }, + bbar: [{ + text: 'Load', + handler: manualLoadSelectedDataset + }, { + text: 'Cancel', + handler: hideDatasetWindow + }] + }); + re.windows.dataset_window.hide(); + +var medlineStore = new Ext.data.JsonStore({ + root: 'response.docs', + totalProperty: 'response.numFound', + idProperty: 'pmid', + remoteSort: true, + storeId: 'dataDocument_grid_store', + fields: ['pmid', 'article_title', 'abstract_text', 'pub_date_month', 'pub_date_year'], + proxy: new Ext.data.HttpProxy({ + url: re.databases.medline.uri + re.databases.medline.select + '?' + }), + listeners: { + 'load' : function(store, records) { + if (records.length < 1) { Ext.getCmp('details-tabpanel').items.get(1).setDisabled(true);} + else { Ext.getCmp('details-tabpanel').items.get(1).setDisabled(false);} + } + } +}); + +re.windows.details_window = new Ext.Window({ + id: 'details-window', + renderTo: 'view-region', + modal: false, + closeAction: 'hide', + layout: 'fit', + width: 800, + height: 600, + constrain: true, + title: "Details", + closable: true, + layoutConfig: { + animate: true + }, + maximizable: false, + items: [{ + xtype: 'tabpanel', + id: 'details-tabpanel', + name: 'details-tabpanel', + activeTab: 'scatterplot_parent', + layoutOnCardChange: true, + items: [{ + xtype: 'panel', + id: 'scatterplot_parent', + name: 'scatterplot_parent', + title: 'Data Plot', + layout: 'border', + margins: '3 0 3 3', + height: 550, + width: 680, + frame: true, + items: [{ + xtype: 'panel', + id: 'scatterplot_panel', + name: 'scatterplot_panel', + region: 'center' + }, { + + xtype: 'panel', + id: 'scatterplot-legend-panel', + name: 'scatterplot-legend-panel', + region: 'east', + width:120 + },{ + xtype: 'panel', + id: 'scatterplot_controls', + name: 'scatterplot_controls', + region:'south', + height:130, + split:false, + layout: 'form', + items: [{ + xtype: 'radiogroup', + id: 'scatterplot_regression_radiogroup', + fieldLabel: 'Regression', + items: [{ + checked: true, + boxLabel: 'None', + inputValue: 'none', + name: 'sp_rb' + }, { + boxLabel: 'Linear', + inputValue: 'linear', + name: 'sp_rb' + }, + { + boxLabel: 'Median-median', + inputValue: 'median', + name: 'sp_rb' + }, + { + boxLabel: 'Loess tri-cube', + inputValue: 'loess', + name: 'sp_rb' + }], + listeners: { + change: function(checked_radio) { + renderScatterPlot(); + } + } + }, { + xtype: 'compositefield', + defaultMargins: '0 20 0 0', + items: [{ + xtype: 'checkbox', + id: 'scatterplot_axes_checkbox', + boxLabel: 'Reverse Axes', + listeners: { + check: function(checked) { + renderScatterPlot(); + } + } + }, { + xtype: 'checkbox', + id: 'scatterplot_discrete_x_checkbox', + boxLabel: 'Discretize '+re.ui.feature1.label, + listeners: { + check: function(checked) { + renderScatterPlot(); + } + } + }, { + xtype: 'checkbox', + id: 'scatterplot_discrete_y_checkbox', + boxLabel: 'Discretize ' +re.ui.feature2.label, + listeners: { + check: function(checked) { + renderScatterPlot(); + } + } + }] + }, { + xtype: 'compositefield', + defaultMargins: '0 20 0 0', + items: [ + new Ext.form.ComboBox({ + id: 'scatterplot_colorby_combobox', + disabled: true, + emptyText: 'Select feature...', + fieldLabel: 'Color By', + displayField: 'label', + valueField: 'alias', + mode: 'local', + width:250, + triggerAction : 'all', + store: new Ext.data.JsonStore({ + id: 'categorical_feature_store', + fields: ['alias', 'label', 'interesting_score'], + data: [], + sortInfo: { + field: 'interesting_score', + direction: 'DESC' + } + }), + listeners: { + select: { + fn: function(combo, value) { + var alias = value.data.alias; + vq.events.Dispatcher.dispatch(new vq.events.Event('data_request', 'patient_categories', alias)); + } + } + } + }), + { + xtype: 'checkbox', + id: 'scatterplot_colorby_checkbox', + boxLabel: 'Enable', + listeners: { + check: { + fn: function(checkbox) { + if (checkbox.checked == true) { + var combo = Ext.getCmp('scatterplot_colorby_combobox'); + var alias = combo.getValue(); + combo.enable(); + if (alias.length > 0) { + vq.events.Dispatcher.dispatch(new vq.events.Event('data_request', 'patient_categories', alias)); + } + } + else { + Ext.getCmp('scatterplot_colorby_combobox').disable(); + re.plot.scatterplot_category = undefined; + renderScatterPlot(); + } + } + } + } + } + ] + }], + buttons:[{ + id:'csv_scatterplot_export', + text:'CSV', + listeners: { + click: function(button, e) { + exportScatterplotData('csv'); + } + } + },{ + id:'tsv_scatterplot_export', + text:'TSV', + listeners: { + click: function(button, e) { + exportScatterplotData('tsv'); + } + } + }] + }] + }, { + xtype: 'panel', + id: 'medline_parent', + name: 'medline_parent', + title: 'MEDLINE', + layout: 'anchor', + margins: '3 0 3 3', + height: 500, + width: 600, + frame: true, + items: [{ + id: 'dataDocument-panel', + name: 'dataDocument-panel', + layout: 'anchor', + anchor: '100% 100%', + collapsible: false, + items: [{ + xtype: 'grid', + id: 'dataDocument_grid', + name: 'dataDocument_grid', + autoScroll: true, + autoWidth: true, + loadMask: true, + anchor: '100% 100%', + store: medlineStore, + viewConfig: { + forceFit: true, + enableRowBody: true, + showPreview: true, + getRowClass: function(record, rowIndex, p, store) { + var jsonData = store.reader.jsonData; + if (jsonData.highlighting[record.id] != undefined && jsonData.highlighting[record.id].abstract_text != undefined) { + p.body = '

    ' + jsonData.highlighting[record.id].abstract_text[0] + '

    '; + } else p.body = '

    ' + record.data.abstract_text + '

    '; + return 'x-grid3-row-expanded'; + } + }, + cm: new Ext.grid.ColumnModel({ + columns: [{ + header: "PMID", + width: 50, + id: 'pmid', + dataIndex: 'pmid', + groupName: 'Documents', + renderer: renderPMID + }, { + header: "Title", + width: 300, + id: 'article_title', + dataIndex: 'article_title', + groupName: 'Documents', + renderer: renderTitle + }, { + header: "Month", + width: 75, + id: 'pub_date_month', + dataIndex: 'pub_date_month', + groupName: 'Documents' + }, { + header: "Year", + width: 75, + id: 'pub_date_year', + dataIndex: 'pub_date_year', + groupName: 'Documents' + }], + defaults: { + sortable: true + } + }), + bbar: new Ext.PagingToolbar({ + pageSize: 20, + store: medlineStore, + displayInfo: true, + displayMsg: 'Displaying documents {0} - {1} of {2}', + emptyMsg: "No documents", + items: ['-', + { + pressed: true, + enableToggle: true, + text: 'Show Preview', + cls: 'x-btn-text-icon details', + toggleHandler: function(btn, pressed) { + var view = Ext.getCmp('dataDocument_grid').getView(); + view.showPreview = pressed; + view.refresh(); + } + }] + }) + }] + }] + }] // medline tab + }] //tabpanel +}); +re.windows.details_window.hide(); + +}); + +var pathedMenu = new org.cancerregulome.explorer.view.DatasetMenu({}); diff --git a/src/webapp/js/view/panels.js b/src/webapp/js/view/panels.js new file mode 100755 index 0000000..82d6e55 --- /dev/null +++ b/src/webapp/js/view/panels.js @@ -0,0 +1,677 @@ +if (re === undefined) { + re = {}; +} +vq.utils.VisUtils.extend(re, { + ui: {} +}); +re.ui.panels = { + east: { + region: 'east', + collapsible: true, + floatable: true, + autoHide:false, + autoScroll: true, + split: true, + width: 290, + id: 'filter_parent', + title: 'Filtering', + layout: { + type: 'accordion' + }, + tools: [{ + id: 'help', + handler: function(event, toolEl, panel){ + openHelpWindow('Tools',re.help.strings.toolsHelpString); + } + }], + items: [{ + xtype: 'panel', + id:'associations_filter', + title: 'Filter Associations', + autoScroll: true, + height: 500, + tools: [{ + id: 'help', + handler: function(event, toolEl, panel){ + openHelpWindow('Filtering',re.help.strings.filteringHelpString); + } + }], + items: [{ + xtype:'form', + id: 'association_filter_panel', + name: 'association_filter_panel', + bodyStyle:'padding:5px 5px 5px 5px', + defaults:{ + anchor:'100%' + }, + border: false, + labelAlign: 'right', + labelWidth: 70, + labelSeparator: '', + defaultType:'textfield', + monitorValid: true, + keys: [{ + key: [Ext.EventObject.ENTER], + fn: function(key, e) { + var cmp = Ext.getCmp(e.browserEvent.target.id); + if (cmp.assertValue) { + cmp.assertValue(); + } + else cmp.setValue(cmp.getRawValue()); + Ext.ComponentMgr.get('re_filter_button').fireEvent('click'); + } + }], + buttons: [{ + text: 'Filter', + id:'re_filter_button', + disabled: false, + listeners: { + click: function(button, e) { + manualFilterRequest(); + } + } + }, { + text: 'Reset', + listeners : { + click : function(button,e) { + resetFormPanel(); + } + } + }], + items: [{ + xtype:'fieldset', + id:re.ui.feature1.id, + title:re.ui.feature1.label, + collapsible: true, + defaults: { + anchor:'100%' + }, + labelWidth: 70, + labelSeparator: '', + forceSelection: true, + defaultType:'textfield', + autoHeight:true, + items: [{ + xtype:'checkbox', + id:'isolate', + fieldLabel:'Isolate', + defaultValue:false, + checked:false, + listeners: { + check: function(cb, checked) { + Ext.getCmp('t_chr').setDisabled(checked); + Ext.getCmp('t_start').setDisabled(checked); + Ext.getCmp('t_stop').setDisabled(checked); + Ext.getCmp('filter_type').setDisabled(checked); + Ext.getCmp('filter_type').setValue(checked ? 'feature1' : 'association'); + } + } + }, { + xtype:'combo', + name:'t_type', + id:'t_type', + mode:'local', + allowBlank : true, + store: new Ext.data.JsonStore({ + autoLoad : false, + fields : ['value','label'], + idProperty:'value', + data: [{ + source: '*', + value: '*', + label:'All' + }], + storeId:'f1_type_combo_store' + }), + fieldLabel:'Type', + valueField:'value', + displayField:'label', + tabIndex : 0, + typeAhead : true, + selectOnFocus:true, + triggerAction : 'all', + forceSelection : true, + emptyText : 'Select a Type...', + defaultValue : "*", + value : "*", + listeners: { + select : function(field,record, index) { + if (re.ui.categorical_sources_map[record.id]) { + //get filtered list + var list = re.ui.categorical_feature_list.filter(function(l) { return l.source === record.id || l.source ==='*';}); + Ext.StoreMgr.get('f1_clin_list_store').loadData(list,false); + Ext.getCmp('t_clin').setValue('*'); + + Ext.getCmp('t_label').setVisible(false); + Ext.getCmp('t_clin').setVisible(true); + Ext.getCmp('t_pathway').setVisible(false); + } else if (record.id === 'Pathway') { + Ext.getCmp('t_label').setVisible(false); + Ext.getCmp('t_clin').setVisible(false); + Ext.getCmp('t_pathway').setVisible(true); + } else { + Ext.getCmp('t_label').setVisible(true); + Ext.getCmp('t_clin').setVisible(false); + Ext.getCmp('t_pathway').setVisible(false); + } + } + } + }, { + name:'t_pathway', + mode:'local', + id:'t_pathway', + xtype:'combo', + allowBlank : false, + hidden:true, + store: new Ext.data.JsonStore({ + autoLoad : false, + data: [], + fields : ['value','label', "url"], + idProperty:'value', + storeId:'f1_pathway_list_store' + }), + listWidth:300, + fieldLabel:'Pathway', + selectOnFocus:true, + forceSelection : true, + triggerAction : 'all', + defaultValue:'', + value:'', + valueField:'value', + displayField:'value', + emptyText:'Select Pathway...', + listeners : { + select : function(field,record,index) { + pathwaySelection(record,re.ui.feature1.id,'t'); + } + } + },{ + xtype:'textfield', + name:'t_label', + id:'t_label', + emptyText : 'Input Label...', + tabIndex: 1, + selectOnFocus:true, + fieldLabel:'Label', + defaultValue : '', + value : '' + }, { + xtype:'textfield', + name:'t_label_desc', + id:'t_label_desc', + emptyText : 'Input Label Modifier', + tabIndex: 1, + selectOnFocus:true, + fieldLabel:'Label Modifier', + defaultValue : '', + hidden: true, + value : '' + }, { + name:'t_clin', + mode:'local', + id:'t_clin', + xtype:'combo', + allowBlank : false, + hidden:true, + store: new Ext.data.JsonStore({ + autoLoad : false, + data: [], + fields : ['value','label','source', 'interesting_score'], + idProperty:'value', + storeId:'f1_clin_list_store', + sortInfo: { + field: 'interesting_score', + direction: 'DESC' + } + }), + listWidth:200, + fieldLabel:'Features', + selectOnFocus:true, + forceSelection : true, + triggerAction : 'all', + valueField:'value', + displayField:'label', + emptyText:'CLIN Feature...', + defaultValue:'*', + value:'*' + }, { + xtype:'combo', + name:'t_chr', + id:'t_chr', + mode:'local', + allowBlank : false, + store: new Ext.data.JsonStore({ + autoLoad : true, + fields : ['value','label'], + idProperty:'value', + data: re.ui.chromosomes, + storeId:'f1_chr_combo_store' + }), + fieldLabel:'Chromosome', + valueField:'value', + displayField:'label', + tabIndex : 2, + selectOnFocus:true, + //forceSelection : true, + triggerAction : 'all', + emptyText : 'Select Chr...', + defaultValue:'*', + value : '*' + }, { + xtype:'compositefield', + fieldLabel:'Position', + defaults:{labelWidth:0,width:80,anchor:'100%'}, + items:[{ + xtype : 'numberfield', + id:'t_start', + name :'t_start', + allowNegative: false, + decimalPrecision : 0, + emptyText : 'Start >=', + invalidText:'This value is not valid.', + maxValue: 250999999, + minValue:1, + tabIndex : 3, + validateOnBlur : true, + allowDecimals : false, + defaultValue : '', + },{ + xtype : 'numberfield', + id:'t_stop', + name :'t_stop', + allowNegative: false, + decimalPrecision : 0, + emptyText : 'Stop <=', + invalidText:'This value is not valid.', + maxValue: 250999999, + minValue:1, + tabIndex : 4, + validateOnBlur : true, + allowDecimals : false, + defaultValue : '', + value : '' + }] + }] + }, { + xtype:'fieldset', + id:re.ui.feature2.id, + title:re.ui.feature2.label, + checkboxToggle:false, + maskDisabled:true, + collapsed: false, + collapsible: true, + defaults: { + anchor:'100%' + }, + labelWidth: 70, + labelSeparator : '', + defaultType:'textfield', + autoHeight:true, + listeners: { + disabled : function(){ + var me = this; + Ext.getCmp('filter_type').setDisabled(me.disabled); + } + }, + items: [{ + xtype:'combo', + name:'p_type', + id:'p_type', + mode:'local', + allowBlank : true, + store: new Ext.data.JsonStore({ + autoLoad : false, + fields : ['value','label','source'], + idProperty:'value', + data: [{ + source: '*', + value: '*', + label:'All' + }], + storeId:'f2_type_combo_store' + }), + fieldLabel:'Type', + valueField:'value', + displayField:'label', + tabIndex : 5, + typeAhead : true, + selectOnFocus:true, + triggerAction : 'all', + forceSelection : true, + emptyText : 'Select a Type...', + defaultValue : '*', + value : '*', + listeners : { + select : function(field,record, index) { + if (re.ui.categorical_sources_map[record.id]) { + //get filtered list + var list = re.ui.categorical_feature_list.filter(function(l) { return l.source === record.id || l.source === '*';}); + Ext.StoreMgr.get('f2_clin_list_store').loadData(list,false); + Ext.getCmp('p_clin').setValue('*'); + + Ext.getCmp('p_label').setVisible(false); + Ext.getCmp('p_clin').setVisible(true); + // Ext.getCmp('p_pathway').setVisible(false); + } else if (record.id === 'Pathway') { + Ext.getCmp('p_label').setVisible(false); + Ext.getCmp('p_clin').setVisible(false); + // Ext.getCmp('p_pathway').setVisible(true); + } else { + Ext.getCmp('p_label').setVisible(true); + Ext.getCmp('p_clin').setVisible(false); + // Ext.getCmp('p_pathway').setVisible(false); + } + } + } + // },{ + // name:'p_pathway', + // mode:'local', + // id:'p_pathway', + // xtype:'combo', + // allowBlank : false, + // hidden:true, + // store: new Ext.data.JsonStore({ + // autoLoad : false, + // data: [], + // fields : ['value','label', "url"], + // idProperty:'value', + // storeId:'f2_pathway_list_store' + // }), + // listWidth:300, + // fieldLabel:'Pathway', + // selectOnFocus:true, + // forceSelection : true, + // triggerAction : 'all', + // defaultValue:'', + // value:'', + // valueField:'value', + // displayField:'value', + // emptyText:'Select Pathway...', + // listeners : { + // select : function(field,record,index) { + // pathwaySelection(record,re.ui.feature2.id,'p'); + // } + // } + }, { + xtype:'textfield', + name:'p_label', + id:'p_label', + emptyText : 'Input Label...', + tabIndex: 6, + selectOnFocus:true, + fieldLabel:'Label', + defaultValue : '', + value: '' + }, { + xtype:'textfield', + name:'p_label_desc', + id:'p_label_desc', + emptyText : 'Input Label Modifier', + tabIndex: 1, + selectOnFocus:true, + fieldLabel:'Label Modifier', + defaultValue : '', + hidden: true, + value : '' + },{ + mode:'local', + name:'p_clin', + id:'p_clin', + xtype:'combo', + allowBlank : false, + hidden:true, + store: new Ext.data.JsonStore({ + autoLoad : false, + data: [], + fields : ['value','label','source', 'interesting_score'], + idProperty:'value', + storeId:'f2_clin_list_store', + sortInfo: { + field: 'interesting_score', + direction: 'DESC' + } + }), + listWidth:200, + fieldLabel:'Features', + selectOnFocus:true, + forceSelection : true, + triggerAction : 'all', + valueField:'value', + displayField:'label', + emptyText:'CLIN Feature...', + defaultValue:'*', + value:'*' + }, { + xtype:'combo', + name:'p_chr', + id:'p_chr', + mode:'local', + allowBlank : true, + store: new Ext.data.JsonStore({ + autoLoad : true, + fields : ['value','label'], + idProperty:'value', + data: re.ui.chromosomes, + storeId:'f2_chr_combo_store' + }), + fieldLabel:'Chromosome', + valueField:'value', + displayField:'label', + tabIndex : 7, + selectOnFocus:true, + //forceSelection : true, + triggerAction : 'all', + emptyText : 'Select Chr...', + defaultValue : '*', + value : '*' + }, { + xtype:'compositefield', + fieldLabel:'Position', + defaults:{labelWidth:0,width:80,anchor:'100%'}, + items:[{ + xtype : 'numberfield', + id:'p_start', + name :'p_start', + allowNegative: false, + decimalPrecision : 0, + emptyText : 'Start >=', + invalidText:'This value is not valid.', + maxValue: 250999999, + minValue:1, + tabIndex : 8, + validateOnBlur : true, + allowDecimals : false, + defaultValue : '', + },{ + xtype : 'numberfield', + id:'p_stop', + name :'p_stop', + allowNegative: false, + decimalPrecision : 0, + emptyText : 'Stop <=', + invalidText:'This value is not valid.', + maxValue: 250999999, + minValue:1, + tabIndex : 9, + validateOnBlur : true, + allowDecimals : false, + defaultValue : '', + value : '' + }] + } + ] + }, { + xtype:'fieldset', + defaults:{ + anchor:'100%' + }, + labelWidth: 110, + labelSeparator : '', + title:'Association', + collapsible: true, + autoHeight:true, + items: + re.model.association.types.filter(function(assoc) { + return assoc.ui != undefined && assoc.ui.filter != undefined && assoc.ui.filter.component != undefined; + }).map( function (obj) { + return obj.ui.filter.component; + }).concat([{ + xtype: 'combo', + name: 'order', + id: 'order', + mode:'local', + allowBlank : true, + store: new Ext.data.JsonStore({ + autoLoad : true, + fields : ['value','label'], + idProperty:'value', + data: re.ui.order_list, + storeId:'order_combo_store' + }), + fieldLabel:'Order By', + valueField:'value', + displayField:'label', + tabIndex : 10, + typeAhead : true, + selectOnFocus:true, + triggerAction : 'all', + defaultValue : re.ui.order_list[0]['value'], + value : re.ui.order_list[0]['value'] + }, { + xtype: 'combo', + name: 'limit', + id: 'limit', + mode:'local', + allowBlank : true, + store: new Ext.data.JsonStore({ + autoLoad : true, + fields : ['value','label'], + idProperty:'value', + data: re.ui.limit_list, + storeId:'limit_combo_store' + }), + fieldLabel:'Max Results', + valueField:'value', + displayField:'label', + tabIndex : 11, + typeAhead : true, + selectOnFocus:true, + triggerAction : 'all', + defaultValue : 200, + value : 200 + }]).concat([{ + xtype: 'fieldset', + defaults: { anchor:'90%'}, + labelWidth:60, + collapsible: true, + collapsed: true, + autoHeight: true, + labelSeparator: '', + title: 'Distance', + items: [ + { + fieldLabel: 'Inter-Chromosomal', + xtype:'compositefield', + items: [{ + xtype: 'checkbox', + name: 'cis', + id: 'cis', + boxLabel: 'Cis', + inputValue: 'false', + defaultValue:false, + listeners: { + check: function(cb, checked) { + Ext.getCmp('trans').setDisabled(checked); + Ext.getCmp('cis_distance').setDisabled(!checked); + } + } + }, { + xtype: 'checkbox', + id:'trans', + name: 'trans', + boxLabel: 'Trans', + defaultValue:false, + listeners: { + check: function(cb, checked) { + Ext.getCmp('cis').setDisabled(checked); + } + } + }] + }, + new re.simplerangeField({ + id: 'cis_distance', + name: 'cis_distance', + label:'Distance', + disabled: true, + max_value: 3e8, + min_value: 0, + tabIndex: 12, + validateOnBlur: true, + allowDecimals: false, + default_value: '50000', + default_fn: '<=' + }) + ] + }]) + }, { + xtype:'combo', + fieldLabel:'Filter By', + displayField: 'label', + valueField:'id', + anchor:'90%', + id:'filter_type', + mode: 'local', + defaultValue: 'association', + value: 'association', + typeAhead : true, + forceSelection : true, + selectOnFocus: true, + tabIndex: 13, + triggerAction : 'all', + allowBlank : false, + store: { + xtype: 'jsonstore', + fields:['label','id'], + autoLoad: true, + idProperty:'id', + data: [{ + label:'Association', + id:'association' + }, + re.ui.feature1, re.ui.feature2] + }, + listeners: { + render: function(c) { + Ext.QuickTips.register({ + target: c, + title: '', + text: 'Association: Top X Results matching ' + 'any of the specified labels
    ' + re.ui.feature1.label + ': Top X ' + 'Results for each of the specified labels in that fieldset
    ' + re.ui.feature2.label + ': Top X Results for each of the specified ' + 'labels in that fieldset' + }); + } + } + }] + }] + }, { + xtype: 'panel', + id:'pathway_member_panel', + title : 'Pathways/Groupings', + autoScroll : true, + collapsed: true, + height : 250, + tools: [{ + id: 'help', + handler: function(event, toolEl, panel){ + openHelpWindow('Filtering',re.help.strings.filteringHelpString); + } + }], + items: [{ + xtype: 'panel', + id: 'pathway-member-item', + width: 300, + height: 800, + x: 20, + y: 20 + }] + }] + } +};